diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 00000000..b469f6fb --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,24 @@ +# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuration-options + +changelog: + exclude: + labels: + - ignore-for-release + - DO NOT MERGE + - invalid + - dependencies + - tests + authors: + - octocat + - dependabot + categories: + - title: Breaking Changes 🛠 + labels: + - breaking-change + - title: Exciting New Features 🎉 + labels: + - enhancement + - Feature + - title: Other Changes + labels: + - "*" diff --git a/.github/workflows/nightly_ci_build.yml b/.github/workflows/nightly_ci_build.yml index ac8d39e1..e16a89f0 100644 --- a/.github/workflows/nightly_ci_build.yml +++ b/.github/workflows/nightly_ci_build.yml @@ -1,11 +1,14 @@ -name: nightly_build +name: CLI CI on: + # Run on weeknights, and also whenever a push is made push: - # schedule: - # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule - # 5:24 am UTC (11:24pm MDT the day before) every weekday night in MDT - # - cron: '24 5 * * 2-6' + schedule: + # # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule + # # 5:24 am UTC (11:24pm MDT the day before) every weekday night in MDT + - cron: '24 5 * * 2-6' + # pull_request: + # types: [review_requested] env: # Favor_Local_Gems enforces develop branch of all Ruby dependencies @@ -13,23 +16,29 @@ env: # If CI is then successful, we have a breaking change in a dependency somewhere. FAVOR_LOCAL_GEMS: true GEM_DEVELOPER_KEY: ${{ secrets.GEM_DEVELOPER_KEY }} - UO_NUM_PARALLEL: 2 - # GHA machines only have 2 cores. Trying to run more than that is even slower. - # https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources - + UO_NUM_PARALLEL: 4 + # GHA machines have 4 cores. Trying to run more concurrently will slow everything down. + # https://github.blog/2024-01-17-github-hosted-runners-double-the-power-for-open-source/ jobs: weeknight-tests: - # ubuntu-latest works since https://github.com/rbenv/ruby-build/releases/tag/v20220710 (July 10, 2022) - # https://github.com/rbenv/ruby-build/discussions/1940 + strategy: + matrix: + # os: container operations in GHA only work on Ubuntu + simulation-type: [basic, GEB, residential, electric] + # python-version: No need to test more than 1 python-version runs-on: ubuntu-latest container: - image: docker://nrel/openstudio:3.6.1 + image: docker://nrel/openstudio:3.7.0 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + - name: Change Owner of Container Working Directory + # working dir permissions workaround from https://github.com/actions/runner-images/issues/6775#issuecomment-1377299658 + run: chown root:root . - name: Set up Python - uses: actions/setup-python@v4 + if: ${{ matrix.simulation-type == 'electric' }} + uses: actions/setup-python@v5 with: - # Disco needs python 3.10 + # Disco needs python ~=3.10 python-version: '3.10' - name: Install Ruby dependencies run: | @@ -37,25 +46,26 @@ jobs: bundle update bundle exec certified-update - name: Install python dependencies - run: bundle exec uo install_python - - name: Run Rspec - continue-on-error: true - # Continue to upload step even if a test fails, so we can troubleshoot - run: bundle exec rspec + if: ${{ matrix.simulation-type == 'electric' || matrix.simulation-type == 'basic' }} + run: bundle exec rspec -e 'Install python dependencies' + - name: Test project setup + # We only need to run these tests once, not every matrix iteration. + if: ${{ matrix.simulation-type == 'basic' }} + run: | + bundle exec rspec -e 'Admin' + bundle exec rspec -e 'Create project' + bundle exec rspec -e 'Make and manipulate ScenarioFiles' + bundle exec rspec -e 'Update project directory' + - name: Test simulations + run: bundle exec rspec -e 'Run and work with a small ${{ matrix.simulation-type }} simulation' - name: Upload artifacts # Save results for examination - useful for debugging uses: actions/upload-artifact@v3 - # Only upload if rspec fails + # Using v4 would mean we have to change our path design, and/or the test dir names + # Only upload if a previous step fails if: failure() with: name: rspec_results path: | - spec/test_directory**/run/ - # coverage/ + spec/test_directory**/ retention-days: 7 # save for 1 week before deleting - # coveralls action docs: https://github.com/marketplace/actions/coveralls-github-action - # - name: Coveralls - # uses: coverallsapp/github-action@1.1.3 - # with: - # github-token: ${{ secrets.GITHUB_TOKEN }} - # path-to-lcov: "./coverage/lcov/urbanopt-cli.lcov" diff --git a/.gitignore b/.gitignore index cd37d71b..8e1cd488 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,4 @@ Gemfile.lock example_files/python_deps/Miniconda* example_files/python_deps/python_config.json example_files/python_deps/python +example_files/python_deps/python-3.10 diff --git a/CHANGELOG.md b/CHANGELOG.md index c237aa83..0eedee79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## Version 0.11.0 +Date Range: 07/20/23 - 01/26/24 + +### Exciting New Features 🎉 +* error handling for non-US weatherfiles by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/443 +* Ground Heat Exchanger Workflow by @tanushree04 in https://github.com/urbanopt/urbanopt-cli/pull/426 +* Initial implementation of geometry orientation and aspect ratio by @rawadelkontar in https://github.com/urbanopt/urbanopt-cli/pull/444 +### Other Changes +* Update installer 0.10.0 by @tijcolem in https://github.com/urbanopt/urbanopt-cli/pull/433 +* Remove jenkins by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/432 +* Coverage badges by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/434 +* Update README.md by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/435 +* Categorize tests to parallelize CI by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/442 +* use unsecured http as default rubygems source in project_dir by @vtnate in https://github.com/urbanopt/urbanopt-cli/pull/445 + +**Full Changelog**: https://github.com/urbanopt/urbanopt-cli/compare/v0.10.0...v0.11.0 + ## Version 0.10.0 Date Range: 06/14/22 - 7/20/23 diff --git a/CMakeLists.txt b/CMakeLists.txt index 2df89e13..4a2e3e68 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.10.2) cmake_policy(SET CMP0048 NEW) -project(URBANoptCLI VERSION 0.9.3) +project(URBANoptCLI VERSION 0.10.0) include(FindOpenStudioSDK.cmake) @@ -89,16 +89,16 @@ option(BUILD_PACKAGE "Build package" OFF) # need to update the MD5sum for each platform and url below if(UNIX) if(APPLE) - set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20230616-darwin.tar.gz") - set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "0e1a97892eec849f469afd1a8f115321") + set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20230731-darwin.tar.gz") + set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "6dcaeb17c6567d5e5242c470b0ff2eb0") else() - set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20230616-linux.tar.gz") - set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "8d0ca0d83c184a4b4a9c389ca79ffe8b") + set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20230731-linux.tar.gz") + set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "ff67d59a162288cb7e5d4632e970e53d") endif() elseif(WIN32) if(CMAKE_CL_64) - set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20230616-windows.tar.gz") - set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "97ec22034dd6585a6356c01ba7a66c29") + set(URBANOPT_CLI_GEMS_ZIP_FILENAME "urbanopt-cli-gems-20230801-windows.tar.gz") + set(URBANOPT_CLI_GEMS_ZIP_EXPECTED_MD5 "2293f9f07643d110a84afaa0c1049c03") endif() endif() diff --git a/FindOpenStudioSDK.cmake b/FindOpenStudioSDK.cmake index 802306d9..6a82a4ef 100644 --- a/FindOpenStudioSDK.cmake +++ b/FindOpenStudioSDK.cmake @@ -1,5 +1,5 @@ set(OPENSTUDIO_VERSION_MAJOR 3) -set(OPENSTUDIO_VERSION_MINOR 5) +set(OPENSTUDIO_VERSION_MINOR 6) set(OPENSTUDIO_VERSION_PATCH 1) set(OPENSTUDIO_VERSION "${OPENSTUDIO_VERSION_MAJOR}.${OPENSTUDIO_VERSION_MINOR}.${OPENSTUDIO_VERSION_PATCH}") @@ -16,23 +16,23 @@ else() set(OPENSTUDIO_BASELINK "https://openstudio-builds.s3.amazonaws.com/${OPENSTUDIO_VERSION}" CACHE STRING "Base link to where the openstudio archives are hosted" FORCE) - set(OPENSTUDIO_VERSION_SHA "+22e1db7be5") + set(OPENSTUDIO_VERSION_SHA "+bb9481519e") if(APPLE) - set(OPENSTUDIO_EXPECTED_HASH f21b03a44aa9ac3e52a4bdfa20009171) + set(OPENSTUDIO_EXPECTED_HASH ba881908f683ec695c209399f261b299) set(OPENSTUDIO_PLATFORM "Darwin-x86_64") set(OPENSTUDIO_EXT "tar.gz") elseif(UNIX) if(LSB_RELEASE_VERSION_SHORT MATCHES "20.04") - set(OPENSTUDIO_EXPECTED_HASH 6e5c93002f0cfb445dcdcdb1270261a4) - set(OPENSTUDIO_PLATFORM "Ubuntu-20.04") + set(OPENSTUDIO_EXPECTED_HASH 5e67958249d99f96149b4d5576c3d0ef) + set(OPENSTUDIO_PLATFORM "Ubuntu-20.04-x86_64") else() # Assumes 20.04 - set(OPENSTUDIO_EXPECTED_HASH 6e5c93002f0cfb445dcdcdb1270261a4) - set(OPENSTUDIO_PLATFORM "Ubuntu-20.04") + set(OPENSTUDIO_EXPECTED_HASH 5e67958249d99f96149b4d5576c3d0ef) + set(OPENSTUDIO_PLATFORM "Ubuntu-20.04-x86_64") endif() set(OPENSTUDIO_EXT "tar.gz") elseif(WIN32) - set(OPENSTUDIO_EXPECTED_HASH bc83efcb140d20f8f9758559a58c4347) + set(OPENSTUDIO_EXPECTED_HASH 802f8cffeac24f011e636baf1e6ffd40) set(OPENSTUDIO_PLATFORM "Windows") set(OPENSTUDIO_EXT "tar.gz") endif() diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index babb259d..00000000 --- a/Jenkinsfile +++ /dev/null @@ -1,10 +0,0 @@ -//Jenkins pipelines are stored in shared libaries. Please see: https://github.com/tijcolem/nrel_cbci_jenkins_libs - -@Library('cbci_shared_libs') _ - -// Build for PR to develop branch only. -if ((env.CHANGE_ID) && (env.CHANGE_TARGET) ) { // check if set - - urbanopt_cli() - -} diff --git a/LICENSE.md b/LICENSE.md index 5962a8b8..b8379cac 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,42 +1,15 @@ -URBANopt (tm), Copyright (c) 2019-2023, Alliance for Sustainable Energy, LLC, and other -contributors. All rights reserved. +URBANopt (tm), Copyright (c) 2019-2024, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved. -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -Redistributions of source code must retain the above copyright notice, this list -of conditions and the following disclaimer. +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -Redistributions in binary form must reproduce the above copyright notice, this -list of conditions and the following disclaimer in the documentation and/or other -materials provided with the distribution. +Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -Neither the name of the copyright holder nor the names of its contributors may be -used to endorse or promote products derived from this software without specific -prior written permission. +Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -Redistribution of this software, without modification, must refer to the software -by the same designation. Redistribution of a modified version of this software -(i) may not refer to the modified version by the same designation, or by any -confusingly similar designation, and (ii) must refer to the underlying software -originally provided by Alliance as "URBANopt". Except to comply with the foregoing, -the term "URBANopt", or any confusingly similar designation may not be used to -refer to any modified version of this software or any modified version of the -underlying software originally provided by Alliance without the prior written -consent of Alliance. +Redistribution of this software, without modification, must refer to the software by the same designation. Redistribution of a modified version of this software (i) may not refer to the modified version by the same designation, or by any confusingly similar designation, and (ii) must refer to the underlying software originally provided by Alliance as “URBANopt”. Except to comply with the foregoing, the term “URBANopt”, or any confusingly similar designation may not be used to refer to any modified version of this software or any modified version of the underlying software originally provided by Alliance without the prior written consent of Alliance. -The name of the copyright holder(s), any contributors, the United States Government, -the United States Department of Energy, or any of their employees may not be used to -endorse or promote products derived from this software without specific prior written -permission from the respective party. +The name of the copyright holder(s), any contributors, the United States Government, the United States Department of Energy, or any of their employees may not be used to endorse or promote products derived from this software without specific prior written permission from the respective party. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL -THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE UNITED STATES GOVERNMENT, OR THE UNITED STATES -DEPARTMENT OF ENERGY, NOR ANY OF THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.md b/README.md index 27ea4499..7cc81ff4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,18 @@ -[![Coverage Status](https://coveralls.io/repos/github/urbanopt/urbanopt-cli/badge.svg?branch=develop)](https://coveralls.io/github/urbanopt/urbanopt-cli?branch=develop) -[![nightly_build](https://github.com/urbanopt/urbanopt-cli/actions/workflows/nightly_build.yml/badge.svg)](https://github.com/urbanopt/urbanopt-cli/actions/workflows/nightly_build.yml) +[![CLI build status](https://github.com/urbanopt/urbanopt-cli/actions/workflows/nightly_ci_build.yml/badge.svg)](https://github.com/urbanopt/urbanopt-cli/actions/workflows/nightly_ci_build.yml)
+[![Core-gem](https://github.com/urbanopt/urbanopt-core-gem/actions/workflows/nightly_build.yml/badge.svg)](https://github.com/urbanopt/urbanopt-core-gem/actions/workflows/nightly_build.yml) +[![Coverage Status](https://coveralls.io/repos/github/urbanopt/urbanopt-core-gem/badge.svg?branch=develop)](https://coveralls.io/github/urbanopt/urbanopt-core-gem?branch=develop)
+[![Geojson-gem](https://github.com/urbanopt/urbanopt-geojson-gem/actions/workflows/nightly_build.yml/badge.svg)](https://github.com/urbanopt/urbanopt-geojson-gem/actions/workflows/nightly_build.yml) +[![Coverage Status](https://coveralls.io/repos/github/urbanopt/urbanopt-geojson-gem/badge.svg?branch=develop)](https://coveralls.io/github/urbanopt/urbanopt-geojson-gem?branch=develop)
+[![Reopt-gem](https://github.com/urbanopt/urbanopt-reopt-gem/actions/workflows/nightly_ci_build.yml/badge.svg)](https://github.com/urbanopt/urbanopt-reopt-gem/actions/workflows/nightly_ci_build.yml) +[![Coverage Status](https://coveralls.io/repos/github/urbanopt/urbanopt-reopt-gem/badge.svg?branch=develop)](https://coveralls.io/github/urbanopt/urbanopt-reopt-gem?branch=develop)
+[![Reporting-gem](https://github.com/urbanopt/urbanopt-reporting-gem/actions/workflows/nightly_ci_build.yml/badge.svg)](https://github.com/urbanopt/urbanopt-reporting-gem/actions/workflows/nightly_ci_build.yml) +[![Coverage Status](https://coveralls.io/repos/github/urbanopt/urbanopt-reporting-gem/badge.svg?branch=develop)](https://coveralls.io/github/urbanopt/urbanopt-reporting-gem?branch=develop)
+[![RNM-gem](https://github.com/urbanopt/urbanopt-rnm-us-gem/actions/workflows/nightly_ci_build.yml/badge.svg)](https://github.com/urbanopt/urbanopt-rnm-us-gem/actions/workflows/nightly_ci_build.yml) +[![Coverage Status](https://coveralls.io/repos/github/urbanopt/urbanopt-rnm-us-gem/badge.svg?branch=develop)](https://coveralls.io/github/urbanopt/urbanopt-rnm-us-gem?branch=develop)
+[![Scenario-gem](https://github.com/urbanopt/urbanopt-scenario-gem/actions/workflows/nightly_ci_build.yml/badge.svg)](https://github.com/urbanopt/urbanopt-scenario-gem/actions/workflows/nightly_ci_build.yml) +[![Coverage Status](https://coveralls.io/repos/github/urbanopt/urbanopt-scenario-gem/badge.svg?branch=develop)](https://coveralls.io/github/urbanopt/urbanopt-scenario-gem?branch=develop)
+[![Example-project CI](https://github.com/urbanopt/urbanopt-example-geojson-project/actions/workflows/weekly_build.yml/badge.svg)](https://github.com/urbanopt/urbanopt-example-geojson-project/actions/workflows/weekly_build.yml) +[![Coverage Status](https://coveralls.io/repos/github/urbanopt/urbanopt-example-geojson-project/badge.svg?branch=develop)](https://coveralls.io/github/urbanopt/urbanopt-example-geojson-project?branch=develop) # URBANopt CLI @@ -7,7 +20,7 @@ This is the command line interface (CLI) for the URBANopt™ SDK. ## Installation (Using Ruby) -Using ruby add this line to your application's Gemfile: +Add this line to your application's Gemfile: ```ruby gem 'urbanopt-cli' @@ -28,7 +41,7 @@ gem install urbanopt-cli ## Installation (Using Installer) -The UrbanOpt installer is an alternate way to install the UrbanOpt CLI that also includes Ruby 2.5.x and OpenStudio SDK. +The UrbanOpt installer is an alternate way to install the UrbanOpt CLI that also includes Ruby 2.7.2 and the OpenStudio SDK. Below are installation instructions for each platform. ### Linux (Ubuntu 18.04) @@ -65,7 +78,7 @@ The `setup-env.sh` generates env variables and stores them in a file `.env_uo.sh . ~/.env_uo.sh ``` -When launching new shell terminals run `. ~/.env_uo.s` to setup the environment.  +When launching new shell terminals run `. ~/.env_uo.sh` to setup the environment.  ### Windows (64-bit Windows 7 – 10) @@ -155,7 +168,7 @@ Post-process simulations for a full scenario: uo process -- --scenario --feature ``` -- Valid `TYPE`s are: `default`, `opendss`, `reopt-scenario`, `reopt-feature` +- Valid `TYPE`s are: `default`, `opendss`, `reopt-scenario`, `reopt-feature`, `reopt-resilience`, `disco` Delete a scenario you have already run: @@ -173,10 +186,12 @@ uo --version Python dependencies are currently versioned as follows: -| Python Package | Version | -| ----------- | ----------- | -| urbanopt-ditto-reader | 0.4.0 | -| NREL-disco | 0.3.4 from https://github.com/NREL/disco.git | +| Python Package | Version | +| --------------------------- | ------- | +| urbanopt-ditto-reader | 0.6.3 | +| NREL-disco | 0.5.0 | +| geojson-modelica-translator | 0.6.0 | +| ThermalNetwork | 0.2.3 | ## Development diff --git a/example_files/Gemfile b/example_files/Gemfile index 0e28fd37..93e63e65 100644 --- a/example_files/Gemfile +++ b/example_files/Gemfile @@ -1,4 +1,4 @@ -source 'https://rubygems.org' +source 'http://rubygems.org' ruby '~> 2.7.0' @@ -35,7 +35,7 @@ if allow_local && File.exist?('../openstudio-common-measures-gem') elsif allow_local gem 'openstudio-common-measures', github: 'NREL/openstudio-common-measures-gem', branch: 'develop' else - gem 'openstudio-common-measures', '~> 0.8.0' + gem 'openstudio-common-measures', '~> 0.9.0' end if allow_local && File.exist?('../openstudio-model-articulation-gem') @@ -43,7 +43,7 @@ if allow_local && File.exist?('../openstudio-model-articulation-gem') elsif allow_local gem 'openstudio-model-articulation', github: 'NREL/openstudio-model-articulation-gem', branch: 'develop' else - gem 'openstudio-model-articulation', '~> 0.8.0' + gem 'openstudio-model-articulation', '~> 0.9.0' end if allow_local && File.exist?('../openstudio-load-flexibility-measures-gem') @@ -51,7 +51,7 @@ if allow_local && File.exist?('../openstudio-load-flexibility-measures-gem') elsif allow_local gem 'openstudio-load-flexibility-measures', github: 'NREL/openstudio-load-flexibility-measures-gem', branch: 'develop' else - gem 'openstudio-load-flexibility-measures', '~> 0.7.0' + gem 'openstudio-load-flexibility-measures', '~> 0.8.0' end if allow_local && File.exist?('../openstudio-ee-gem') @@ -59,7 +59,7 @@ if allow_local && File.exist?('../openstudio-ee-gem') elsif allow_local gem 'openstudio-ee', github: 'NREL/openstudio-ee-gem', branch: 'develop' else - gem 'openstudio-ee', '~> 0.8.0' + gem 'openstudio-ee', '~> 0.9.0' end if allow_local && File.exist?('../openstudio-calibration-gem') @@ -67,7 +67,7 @@ if allow_local && File.exist?('../openstudio-calibration-gem') elsif allow_local gem 'openstudio-calibration', github: 'NREL/openstudio-calibration-gem', branch: 'develop' else - gem 'openstudio-calibration', '~> 0.8.0' + gem 'openstudio-calibration', '~> 0.9.0' end if allow_local && File.exist?('../../openstudio-geb') @@ -75,7 +75,7 @@ if allow_local && File.exist?('../../openstudio-geb') elsif allow_local gem 'openstudio-geb', github: 'LBNL-ETA/openstudio-geb-gem', branch: 'master' else - gem 'openstudio-geb', '~> 0.3.2' + gem 'openstudio-geb', '~> 0.4.0' end if allow_local && File.exists?('../urbanopt-geojson-gem') @@ -83,7 +83,7 @@ if allow_local && File.exists?('../urbanopt-geojson-gem') elsif allow_local gem 'urbanopt-geojson', github: 'URBANopt/urbanopt-geojson-gem', branch: 'develop' else - gem 'urbanopt-geojson', '~> 0.10.0' + gem 'urbanopt-geojson', '~> 0.11.1' end # NEVER put SCENARIO-GEM in this file...it will make all simulations fail due to the sqlite dependency @@ -94,5 +94,5 @@ if allow_local && File.exist?('../urbanopt-reporting-gem') elsif allow_local gem 'urbanopt-reporting', github: 'URBANopt/urbanopt-reporting-gem', branch: 'develop' else - gem 'urbanopt-reporting', '~> 0.8.0' + gem 'urbanopt-reporting', '~> 0.9.1' end diff --git a/example_files/base_workflow_res.osw b/example_files/base_workflow_res.osw deleted file mode 100644 index cd096187..00000000 --- a/example_files/base_workflow_res.osw +++ /dev/null @@ -1,276 +0,0 @@ -{ - "seed_file": null, - "weather_file": null, - "measure_paths": [], - "file_paths": [], - "run_directory": null, - "steps": [ - { - "measure_dir_name": "BuildResidentialModel", - "arguments": { - "__SKIP__": true - } - },{ - "measure_dir_name": "set_run_period", - "arguments": { - "__SKIP__": true, - "timesteps_per_hour": 4, - "begin_date": "2019-06-01", - "end_date": "2019-09-30" - } - },{ - "measure_dir_name": "ChangeBuildingLocation", - "arguments": { - "__SKIP__": true, - "weather_file_name": "USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw", - "climate_zone": "ASHRAE 169-2013-6A" - } - },{ - "measure_dir_name": "create_bar_from_building_type_ratios", - "arguments": { - "__SKIP__": true, - "bldg_type_a": null, - "bldg_type_a_num_units": 0, - "bldg_type_b": "SmallOffice", - "bldg_type_b_fract_bldg_area": 0, - "bldg_type_b_num_units": 0, - "bldg_type_c": "SmallOffice", - "bldg_type_c_fract_bldg_area": 0, - "bldg_type_c_num_units": 0, - "bldg_type_d": "SmallOffice", - "bldg_type_d_fract_bldg_area": 0, - "bldg_type_d_num_units": 0, - "single_floor_area": null, - "floor_height": 0, - "num_stories_above_grade": null, - "num_stories_below_grade": null, - "building_rotation": 0, - "template": "90.1-2004", - "ns_to_ew_ratio": 0, - "wwr": 0, - "party_wall_fraction": 0, - "story_multiplier": "None", - "bar_division_method": "Multiple Space Types - Individual Stories Sliced" - } - },{ - "name": "create_typical_building_from_model 1", - "measure_dir_name": "create_typical_building_from_model", - "arguments": { - "__SKIP__": true, - "add_hvac": false, - "add_refrigeration": false - } - },{ - "measure_dir_name": "blended_space_type_from_model", - "arguments": { - "__SKIP__": true, - "blend_method": "Building Story" - } - },{ - "measure_dir_name": "add_ev_load", - "arguments": { - "__SKIP__": true, - "chg_station_type": "Typical Public", - "delay_type": "Min Delay", - "charge_behavior": "Business as Usual", - "ev_use_model_occupancy": false, - "ev_percent": 100 - } - },{ - "measure_dir_name": "add_ems_to_control_ev_charging", - "arguments": { - "__SKIP__": true, - "curtailment_frac": 0.5 - } - },{ - "measure_dir_name": "urban_geometry_creation_zoning", - "arguments": { - "__SKIP__": true, - "geojson_file": "exportGeo.json", - "feature_id": "5", - "surrounding_buildings": "None" - } - },{ - "name": "create_typical_building_from_model 2", - "measure_dir_name": "create_typical_building_from_model", - "arguments": { - "__SKIP__": true, - "template": "90.1-2004", - "add_constructions": false, - "add_space_type_loads": false, - "add_elevators": false, - "add_exterior_lights": false, - "add_exhaust": false, - "add_swh": false, - "add_refrigeration": false, - "remove_objects": false, - "system_type": "Inferred", - "add_hvac": true, - "use_upstream_args": false - } - },{ - "measure_dir_name": "add_chilled_water_storage_tank", - "arguments": { - "__SKIP__": true, - "objective": "Partial Storage", - "primary_loop_sp": 6.7, - "secondary_loop_sp": 6.7, - "primary_delta_t": "Use Existing Loop Value", - "discharge_start": "08:00", - "discharge_end": "21:00", - "charge_start": "23:00", - "charge_end": "07:00", - "run_output_path": "." - } - },{ - "measure_dir_name": "add_ems_emissions_reporting", - "arguments": { - "__SKIP__": true, - "future_subregion": "RMPAc", - "hourly_historical_subregion": "Rocky Mountains", - "annual_historical_subregion": "RMPA", - "future_year": 2020, - "hourly_historical_year": 2019, - "annual_historical_year": 2019 - } - },{ - "measure_dir_name":"PredictedMeanVote", - "arguments":{ - "__SKIP__": true, - "comfortWarnings":true, - "workEfficiencySchedule":"Work Efficiency Schedule", - "clothingSchedule":"Clothing Schedule", - "airVelocitySchedule":"Air Velocity Schedule" - } - },{ - "measure_dir_name": "reduce_epd_by_percentage_for_peak_hours", - "arguments": { - "__SKIP__": true, - "epd_reduce_percent": 50, - "start_time": "17:00:00", - "end_time": "21:00:00", - "start_date1": "07-01", - "end_date1": "08-31" - } - }, - { - "measure_dir_name": "AdjustThermostatSetpointsByDegreesForPeakHours", - "arguments": { - "__SKIP__": true, - "cooling_adjustment": 2, - "cooling_daily_starttime": "16:01:00", - "cooling_daily_endtime": "20:00:00", - "cooling_startdate": "06-01", - "cooling_enddate": "09-30", - "heating_adjustment": 2, - "heating_daily_starttime": "16:01:00", - "heating_daily_endtime": "20:00:00", - "heating_startdate_1": "01-01", - "heating_enddate_1": "05-31", - "heating_startdate_2": "10-01", - "heating_enddate_2": "12-31" - } - },{ - "measure_dir_name": "IncreaseInsulationRValueForExteriorWalls", - "arguments": { - "__SKIP__": true, - "r_value": 10 - } - },{ - "measure_dir_name": "ReduceElectricEquipmentLoadsByPercentage", - "arguments": { - "__SKIP__": true, - "elecequip_power_reduction_percent": 20 - } - },{ - "measure_dir_name": "ReduceLightingLoadsByPercentage", - "arguments": { - "__SKIP__": true, - "lighting_power_reduction_percent": 30 - } - },{ - "measure_dir_name": "add_central_ice_storage", - "arguments": { - "__SKIP__": true, - "chiller_resize_factor": 0.8, - "discharge_start": "08:00", - "discharge_end": "20:00", - "charge_start": "23:00", - "inter_sp": 46 - } - },{ - "measure_dir_name":"add_hpwh", - "arguments":{ - "__SKIP__":true - } - },{ - "measure_dir_name": "add_packaged_ice_storage", - "arguments": { - "__SKIP__": true, - "size_mult": "0.75", - "charge_start": "23:00" - } - }, - { - "measure_dir_name":"export_time_series_modelica", - "arguments":{ - "__SKIP__":false - } - },{ - "measure_dir_name":"export_modelica_loads", - "arguments":{ - "__SKIP__":false - } - }, - { - "measure_dir_name": "envelope_and_internal_load_breakdown", - "arguments": { - "__SKIP__": true - } - }, - { - "measure_dir_name": "generic_qaqc", - "arguments": { - "template": "90.1-2004", - "check_eui_reasonableness": true, - "check_eui_reasonableness_tol": 0.25, - "check_eui_by_end_use": true, - "check_eui_by_end_use_tol": 0.25, - "check_mech_sys_part_load_eff": true, - "check_mech_sys_part_load_eff_tol": 0.25, - "check_mech_sys_capacity": false, - "check_simultaneous_heating_and_cooling": true, - "check_simultaneous_heating_and_cooling_max_tol": 0.25, - "check_internal_loads": true, - "check_internal_loads_tol": 0.25, - "check_schedules": true, - "check_schedules_tol": 0.25, - "check_envelope_conductance": true, - "check_envelope_conductance_tol": 0.25, - "check_domestic_hot_water": true, - "check_domestic_hot_water_tol": 0.50, - "check_mech_sys_efficiency": true, - "check_mech_sys_efficiency_tol": 0.25, - "check_mech_sys_type": false, - "check_supply_air_and_thermostat_temp_difference": true, - "check_supply_air_and_thermostat_temp_difference_tol": 4.0, - "__SKIP__": true - } - },{ - "measure_dir_name": "default_feature_reports", - "arguments": { - "feature_id": null, - "feature_name": null, - "feature_type": null, - "feature_location": null - } - },{ - "measure_dir_name": "openstudio_results", - "arguments": { - "__SKIP__": true - } - } - ], - "name": null, - "description": null -} diff --git a/example_files/example_project_combined.json b/example_files/example_project_combined.json index 88e4e6c6..18164187 100644 --- a/example_files/example_project_combined.json +++ b/example_files/example_project_combined.json @@ -650,7 +650,10 @@ "system_type": "Residential - furnace and central air conditioner", "heating_system_fuel_type": "natural gas", "onsite_parking_fraction": 1, - "template": "Residential IECC 2015 - Customizable Template Sep 2020" + "template": "Residential IECC 2015 - Customizable Template Sep 2020", + "geometry_unit_orientation": 90.0, + "geometry_unit_aspect_ratio" : 1.0 + }, "geometry": { "type": "Polygon", @@ -793,6 +796,7 @@ "number_of_stories": 2, "number_of_stories_above_ground": 2, "foundation_type": "slab", + "number_of_residential_units": 4, "hpxml_directory": "17" }, "geometry": { @@ -879,4 +883,4 @@ "name": "New Scenario" } ] -} \ No newline at end of file +} diff --git a/example_files/example_project_with_ghe.json b/example_files/example_project_with_ghe.json new file mode 100644 index 00000000..4e6aa53a --- /dev/null +++ b/example_files/example_project_with_ghe.json @@ -0,0 +1,859 @@ +{ + "type": "FeatureCollection", + "project": { + "id": "7c33a001-bccb-413e-ac87-67558b5d4b07", + "name": "New Project", + "surface_elevation": null, + "import_surrounding_buildings_as_shading": null, + "weather_filename": "USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw", + "tariff_filename": null, + "climate_zone": "6A", + "cec_climate_zone": null, + "begin_date": "2017-01-01T07:00:00.000Z", + "end_date": "2017-12-31T07:00:00.000Z", + "timesteps_per_hour": 1, + "default_template": "90.1-2013" + }, + "features": [ + { + "type": "Feature", + "properties": { + "id": "53340c2c-ab20-40db-aba1-11ac607c52a7", + "name": "Site Origin", + "type": "Site Origin", + "begin_date": "2017-01-01T07:00:00.000Z", + "end_date": "2017-12-31T07:00:00.000Z", + "cec_climate_zone": null, + "climate_zone": "6A", + "default_template": "90.1-2013", + "import_surrounding_buildings_as_shading": null, + "surface_elevation": null, + "tariff_filename": null, + "timesteps_per_hour": 1, + "weather_filename": "USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.84948467732347, + 42.81677154451123 + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "1", + "name": "Mixed_use 1", + "type": "Building", + "building_type": "Mixed use", + "floor_area": 752184, + "footprint_area": 188046, + "number_of_stories": 4, + "mixed_type_1": "Office", + "mixed_type_1_percentage": 50, + "mixed_type_2": "Food service", + "mixed_type_2_percentage": 50, + "mixed_type_3": "Strip shopping mall", + "mixed_type_3_percentage": 0, + "mixed_type_4": "Lodging", + "mixed_type_4_percentage": 0 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.84650338745196, + 42.81331301863236 + ], + [ + -78.84652443964629, + 42.81463974371101 + ], + [ + -78.84680142363833, + 42.815293654042534 + ], + [ + -78.84744455124724, + 42.81514110006128 + ], + [ + -78.84728610028628, + 42.81478165791734 + ], + [ + -78.84786797764677, + 42.814643631760134 + ], + [ + -78.84721106637106, + 42.813153418927016 + ], + [ + -78.84650338745196, + 42.81331301863236 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "2", + "name": "Restaurant 1", + "type": "Building", + "building_type": "Food service", + "floor_area": 22313, + "footprint_area": 22313, + "number_of_stories": 1, + "ev_charging": true, + "ev_charging_behavior": "Business as Usual", + "ev_percent": 100, + "ev_curtailment_frac": 0.5, + "ev_use_model_occupancy": true + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.8500120420453, + 42.81812185529549 + ], + [ + -78.85038975191084, + 42.81803226424341 + ], + [ + -78.850630729414, + 42.81857888627522 + ], + [ + -78.85025301954843, + 42.81866847653532 + ], + [ + -78.8500120420453, + 42.81812185529549 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "3", + "name": "Restaurant 10", + "type": "Building", + "building_type": "Food service", + "floor_area": 125631, + "footprint_area": 41877, + "number_of_stories": 3, + "ev_charging": true, + "ev_charging_station_type": "Typical Public" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.84962224800356, + 42.81329273502644 + ], + [ + -78.84929833482822, + 42.81337083838241 + ], + [ + -78.84983265832118, + 42.814563298664666 + ], + [ + -78.85015657149653, + 42.81448519681467 + ], + [ + -78.84962224800356, + 42.81329273502644 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "4", + "name": "Restaurant 12", + "type": "Building", + "building_type": "Food service", + "floor_area": 31623, + "footprint_area": 10541, + "number_of_stories": 3, + "ev_charging": true, + "ev_charging_station_type": "Typical Public" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.84907318596754, + 42.81342719667407 + ], + [ + -78.84862090048105, + 42.81353625345659 + ], + [ + -78.84871721918239, + 42.813751210926796 + ], + [ + -78.84916950466888, + 42.81364215452331 + ], + [ + -78.84907318596754, + 42.81342719667407 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "5", + "name": "District Office 1", + "type": "Building", + "building_type": "Office", + "system_type": "VAV district chilled water with district hot water reheat", + "floor_area": 8804, + "footprint_area": 8804, + "number_of_stories": 1, + "ev_charging": true, + "ev_charging_station_type": "Typical Work" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.84809175426629, + 42.81367038997507 + ], + [ + -78.84848670778973, + 42.81357515750889 + ], + [ + -78.84857883872144, + 42.81378076888831 + ], + [ + -78.84818388519801, + 42.81387600103781 + ], + [ + -78.84809175426629, + 42.81367038997507 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "6", + "name": "District Office 2", + "type": "Building", + "building_type": "Office", + "system_type": "VAV district chilled water with district hot water reheat", + "floor_area": 10689, + "footprint_area": 10689, + "number_of_stories": 1, + "ev_charging": true + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.84846106738529, + 42.814495803077364 + ], + [ + -78.8486903952376, + 42.81444050756261 + ], + [ + -78.8484977578349, + 42.81401059666683 + ], + [ + -78.84826842998261, + 42.81406589256599 + ], + [ + -78.84846106738529, + 42.814495803077364 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "7", + "name": "Office 1", + "type": "Building", + "building_type": "Office", + "system_type": "VAV district chilled water with district hot water reheat", + "number_of_stories": 6, + "detailed_model_filename": "7.osm" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.84733878006863, + 42.816466983030836 + ], + [ + -78.84854275129324, + 42.81617669028003 + ], + [ + -78.848356395545, + 42.81576080994094 + ], + [ + -78.84715242432038, + 42.81605110464406 + ], + [ + -78.84733878006863, + 42.816466983030836 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "8", + "name": "Hospital 1", + "type": "Building", + "building_type": "Outpatient health care", + "system_type": "VAV district chilled water with district hot water reheat", + "number_of_stories": 10, + "detailed_model_filename": "8.osm" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.84973966335251, + 42.8154441454509 + ], + [ + -78.85049562542395, + 42.81525669280299 + ], + [ + -78.85078257620685, + 42.81588131780643 + ], + [ + -78.8505086568277, + 42.81594736368234 + ], + [ + -78.85041233812638, + 42.815732413845666 + ], + [ + -78.84991755499783, + 42.81585689105046 + ], + [ + -78.84973966335251, + 42.8154441454509 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "9", + "name": "Hospital 2", + "type": "Building", + "building_type": "Inpatient health care", + "number_of_stories": 3, + "detailed_model_filename": "9.osm" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.85083627755732, + 42.81600678613279 + ], + [ + -78.85056039001891, + 42.816076133580566 + ], + [ + -78.85072568130569, + 42.816450649528036 + ], + [ + -78.84940134236577, + 42.81677160705479 + ], + [ + -78.84958014898304, + 42.81716858994267 + ], + [ + -78.8507262115271, + 42.816890840117026 + ], + [ + -78.8508565789851, + 42.81719595796099 + ], + [ + -78.85132137101688, + 42.81708331517635 + ], + [ + -78.85083627755732, + 42.81600678613279 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "10", + "name": "Mixed use 2", + "type": "Building", + "building_type": "Mixed use", + "floor_area": 1278384, + "footprint_area": 159798, + "number_of_stories": 8, + "mixed_type_1": "Strip shopping mall", + "mixed_type_1_percentage": 25, + "mixed_type_2": "Food service", + "mixed_type_2_percentage": 25, + "mixed_type_3": "Office", + "mixed_type_3_percentage": 15, + "mixed_type_4": "Lodging", + "mixed_type_4_percentage": 35 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.85115264550463, + 42.81786093060211 + ], + [ + -78.85163483958878, + 42.81774467026972 + ], + [ + -78.85246596719499, + 42.819583261120755 + ], + [ + -78.85082390085432, + 42.819979162017745 + ], + [ + -78.85060552295334, + 42.81947573727234 + ], + [ + -78.85174564783776, + 42.81920483484765 + ], + [ + -78.85115264550463, + 42.81786093060211 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "11", + "name": "Restaurant 13", + "type": "Building", + "building_type": "Food service", + "floor_area": 32511, + "footprint_area": 10837, + "number_of_stories": 3 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.84961163640645, + 42.81460851835703 + ], + [ + -78.84914661048371, + 42.81472064501696 + ], + [ + -78.84905029178236, + 42.81450569091638 + ], + [ + -78.84951531770513, + 42.81439356386673 + ], + [ + -78.84961163640645, + 42.81460851835703 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "12", + "name": "Mall 1", + "type": "Building", + "building_type": "Strip shopping mall", + "floor_area": 374409, + "footprint_area": 124803, + "number_of_stories": 3 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.84768338040897, + 42.817161656757065 + ], + [ + -78.8482630702579, + 42.8170218879136 + ], + [ + -78.84915297130291, + 42.81900776764229 + ], + [ + -78.84857328145401, + 42.81914753199706 + ], + [ + -78.84768338040897, + 42.817161656757065 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "13", + "name": "Hotel 1", + "type": "Building", + "building_type": "Lodging", + "floor_area": 316160, + "footprint_area": 31616, + "number_of_stories": 10 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.8494955083645, + 42.819748790984335 + ], + [ + -78.84891089471263, + 42.81989327725856 + ], + [ + -78.8491389243777, + 42.82038967009544 + ], + [ + -78.84972353802956, + 42.82024518498119 + ], + [ + -78.8494955083645, + 42.819748790984335 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "7932a208-dcb6-4d23-a46f-288896eaa1bc", + "geometryType": "Rectangle", + "name": "New District System_1", + "type": "District System", + "district_system_type": "Ground Heat Exchanger", + "footprint_area": 11237, + "footprint_perimeter": 425, + "floor_area": 11237 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.84863142413666, + 42.813370258279036 + ], + [ + -78.84852414737549, + 42.81311449850455 + ], + [ + -78.84811397152369, + 42.813207081350356 + ], + [ + -78.84822124828486, + 42.813462840742005 + ], + [ + -78.84863142413666, + 42.813370258279036 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "c141750a-1588-4d52-a48f-143f562bbf58", + "type": "ThermalJunction", + "DSId": "7932a208-dcb6-4d23-a46f-288896eaa1bc", + "is_ghe_start_loop": true, + "junction_type": "DES", + "connection_type": "Series" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.84859427149203, + 42.81337864415956 + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "61caaec1-b89e-4992-8d74-614ba012410d", + "type": "ThermalJunction", + "buildingId": "4", + "junction_type": "DES", + "connection_type": "Series" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.84866300528785, + 42.81352610099487 + ] + } + }, + { + "type": "Feature", + "properties": { + "type": "ThermalConnector", + "id": "2aff6cc6-c572-4b26-8d5e-861430e74214", + "startJunctionId": "c141750a-1588-4d52-a48f-143f562bbf58", + "endJunctionId": "61caaec1-b89e-4992-8d74-614ba012410d", + "startFeatureId": "7932a208-dcb6-4d23-a46f-288896eaa1bc", + "endFeatureId": "4", + "total_length": 57, + "connector_type": "OnePipe", + "fluid_temperature_type": "Hot", + "flow_direction": "Supply" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -78.84859427149203, + 42.81337864415956 + ], + [ + -78.84866300528785, + 42.81352610099487 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "c8721cd3-370f-4c05-84dd-5078765374aa", + "type": "ThermalJunction", + "buildingId": "4", + "junction_type": "DES", + "connection_type": "Series" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.84866909176027, + 42.813643803541 + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "2bb0321d-894b-4d54-a394-db753f3ae8e1", + "type": "ThermalJunction", + "buildingId": "5", + "junction_type": "DES", + "connection_type": "Series" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.84853165495203, + 42.81367546753221 + ] + } + }, + { + "type": "Feature", + "properties": { + "type": "ThermalConnector", + "id": "edaab88a-f105-456e-b0c0-1c58733de17b", + "startJunctionId": "c8721cd3-370f-4c05-84dd-5078765374aa", + "endJunctionId": "2bb0321d-894b-4d54-a394-db753f3ae8e1", + "startFeatureId": "4", + "endFeatureId": "5", + "total_length": 39, + "connector_type": "OnePipe", + "fluid_temperature_type": "Hot", + "flow_direction": "Supply" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -78.84866909176027, + 42.813643803541 + ], + [ + -78.84853165495203, + 42.81367546753221 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "3d81cbe7-b0ff-4afc-9996-54ad53aac9a4", + "type": "ThermalJunction", + "buildingId": "5", + "junction_type": "DES", + "connection_type": "Series" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.8484384462089, + 42.813586794504644 + ] + } + }, + { + "type": "Feature", + "properties": { + "id": "35574fbd-c29c-4f80-a1a1-49e0700d4f73", + "type": "ThermalJunction", + "DSId": "7932a208-dcb6-4d23-a46f-288896eaa1bc", + "junction_type": "DES", + "connection_type": "Series" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.84836979234511, + 42.81342931227285 + ] + } + }, + { + "type": "Feature", + "properties": { + "type": "ThermalConnector", + "id": "b3ac3ba6-7094-42dc-81eb-5967f90077f2", + "startJunctionId": "3d81cbe7-b0ff-4afc-9996-54ad53aac9a4", + "endJunctionId": "35574fbd-c29c-4f80-a1a1-49e0700d4f73", + "startFeatureId": "5", + "endFeatureId": "7932a208-dcb6-4d23-a46f-288896eaa1bc", + "total_length": 60, + "connector_type": "OnePipe", + "fluid_temperature_type": "Hot", + "flow_direction": "Supply" + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -78.8484384462089, + 42.813586794504644 + ], + [ + -78.84836979234511, + 42.81342931227285 + ] + ] + } + } + ], + "mappers": [], + "scenarios": [ + { + "feature_mappings": [], + "id": "72301739-c6c3-4dd7-bf1a-f37c8eff40db", + "name": "New Scenario" + } + ] +} \ No newline at end of file diff --git a/example_files/mappers/Baseline.rb b/example_files/mappers/Baseline.rb index 3c7dc2bb..5ce00973 100644 --- a/example_files/mappers/Baseline.rb +++ b/example_files/mappers/Baseline.rb @@ -1,6 +1,6 @@ # ********************************************************************************* # URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. -# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md # ********************************************************************************* require 'urbanopt/reporting' @@ -261,103 +261,23 @@ def commercial_building_types ] end - def get_arg_default(arg) - case arg.type.valueName.downcase - when 'boolean' - return arg.defaultValueAsBool - when 'double' - return arg.defaultValueAsDouble - when 'integer' - return arg.defaultValueAsInteger - when 'string' - return arg.defaultValueAsString - when 'choice' - return arg.defaultValueAsString - end - end - - def get_lookup_tsv(args, filepath) - rows = [] - headers = [] - units = [] - CSV.foreach(filepath, { col_sep: "\t" }) do |row| - if headers.empty? - row.each do |header| - next if header == 'Source' - - if args.key?(header.gsub('Dependency=', '').to_sym) - header = header.gsub('Dependency=', '') - end - unless header.include?('Dependency=') - header = header.to_sym - end - headers << header - end - next - elsif units.empty? - row.each do |unit| - units << unit - end - next - end - if headers.length != row.length - row = row[0..-2] # leave out Source column - end - rows << headers.zip(row).to_h - end - return rows - end - - def get_lookup_row(args, rows, template_vals) - rows.each do |row| - if row.key?('Dependency=Climate Zone') && (row['Dependency=Climate Zone'] != template_vals[:climate_zone]) - next - end - if row.key?('Dependency=IECC Year') && (row['Dependency=IECC Year'] != template_vals[:iecc_year]) - next - end - if row.key?('Dependency=Template Month') && (row['Dependency=Template Month'] != template_vals[:t_month]) - next - end - if row.key?('Dependency=Template Year') && (row['Dependency=Template Year'] != template_vals[:t_year]) - next - end - - row.delete('Dependency=Climate Zone') - row.delete('Dependency=IECC Year') - row.delete('Dependency=Template Month') - row.delete('Dependency=Template Year') - - row.each do |k, v| - next unless v.nil? - - row.delete(k) - end - - intersection = args.keys & row.keys - return row if intersection.empty? # found the correct row - - skip = false - intersection.each do |k| - if args[k] != row[k] - skip = true - end - end - - return row unless skip - end - return nil - end - def get_climate_zone_iecc(epw) headers = CSV.open(epw, 'r', &:first) wmo = headers[5] - zones_csv = File.join(File.dirname(__FILE__), '../resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/climate_zones.csv') + zones_csv = Pathname(__FILE__).dirname.parent / 'resources' / 'hpxml-measures' / 'HPXMLtoOpenStudio' / 'resources' / 'data' / 'climate_zones.csv' + + # Check if the CSV file is empty + if File.empty?(epw) + raise "Error: Your weather file #{epw} is empty." + end + CSV.foreach(zones_csv) do |row| if row[0].to_s == wmo.to_s return row[6].to_s end end + + return nil end # epw_state to subregions mapping methods @@ -607,8 +527,6 @@ def create_osw(scenario, features, feature_names) end if residential_building_types.include? building_type - debug = false - # Check for required residential fields is_defined(feature, :number_of_stories_above_ground) is_defined(feature, :foundation_type) @@ -622,338 +540,39 @@ def create_osw(scenario, features, feature_names) end end - args = {} - - # Custom HPXML Files - begin - args[:hpxml_dir] = feature.hpxml_directory - rescue StandardError - end - - # Simulation Control - args[:simulation_control_timestep] = 60 - begin - args[:simulation_control_timestep] = 60 / feature.timesteps_per_hour - rescue StandardError - end - - args[:simulation_control_run_period] = 'Jan 1 - Dec 31' - args[:simulation_control_run_period_calendar_year] = 2007 - begin - abbr_monthnames = Date::ABBR_MONTHNAMES - begin_month = abbr_monthnames[feature.begin_date[5, 2].to_i] - begin_day_of_month = feature.begin_date[8, 2].to_i - end_month = abbr_monthnames[feature.end_date[5, 2].to_i] - end_day_of_month = feature.end_date[8, 2].to_i - args[:simulation_control_run_period] = "#{begin_month} #{begin_day_of_month} - #{end_month} #{end_day_of_month}" - args[:simulation_control_run_period_calendar_year] = feature.begin_date[0, 4].to_i - rescue StandardError - end - - args[:weather_station_epw_filepath] = "../../../weather/#{feature.weather_filename}" - - # Geometry - args[:geometry_building_num_units] = 1 - args[:geometry_unit_num_floors_above_grade] = 1 - case building_type - when 'Single-Family Detached' - args[:geometry_unit_type] = 'single-family detached' - args[:geometry_unit_num_floors_above_grade] = feature.number_of_stories_above_ground - when 'Single-Family Attached' - args[:geometry_unit_type] = 'single-family attached' - begin - args[:geometry_building_num_units] = feature.number_of_residential_units - rescue StandardError - end - args[:geometry_unit_num_floors_above_grade] = feature.number_of_stories_above_ground - args[:air_leakage_type] = 'unit exterior only' - when 'Multifamily' - args[:geometry_unit_type] = 'apartment unit' - begin - args[:geometry_building_num_units] = feature.number_of_residential_units - rescue StandardError - end - args[:air_leakage_type] = 'unit exterior only' - end - - args[:geometry_num_floors_above_grade] = feature.number_of_stories_above_ground - - args[:geometry_foundation_type] = 'SlabOnGrade' - args[:geometry_foundation_height] = 0.0 - case feature.foundation_type - when 'crawlspace - vented' - args[:geometry_foundation_type] = 'VentedCrawlspace' - args[:geometry_foundation_height] = 3.0 - when 'crawlspace - unvented' - args[:geometry_foundation_type] = 'UnventedCrawlspace' - args[:geometry_foundation_height] = 3.0 - when 'crawlspace - conditioned' - args[:geometry_foundation_type] = 'ConditionedCrawlspace' - args[:geometry_foundation_height] = 3.0 - when 'basement - unconditioned' - args[:geometry_foundation_type] = 'UnconditionedBasement' - args[:geometry_foundation_height] = 8.0 - when 'basement - conditioned' - args[:geometry_foundation_type] = 'ConditionedBasement' - args[:geometry_foundation_height] = 8.0 - when 'ambient' - args[:geometry_foundation_type] = 'Ambient' - args[:geometry_foundation_height] = 8.0 - end - - begin - case feature.attic_type - when 'attic - vented' - args[:geometry_attic_type] = 'VentedAttic' - begin - args[:geometry_roof_type] = feature.roof_type - rescue StandardError - end - when 'attic - unvented' - args[:geometry_attic_type] = 'UnventedAttic' - begin - args[:geometry_roof_type] = feature.roof_type - rescue StandardError - end - when 'attic - conditioned' - args[:geometry_attic_type] = 'ConditionedAttic' - begin - args[:geometry_roof_type] = feature.roof_type - rescue StandardError - end - when 'flat roof' - args[:geometry_attic_type] = 'FlatRoof' - end - rescue StandardError - end - - args[:geometry_roof_type] = 'gable' - begin - case feature.roof_type - when 'Hip' - args[:geometry_roof_type] = 'hip' - end - rescue StandardError + epw = File.join(File.dirname(__FILE__), '../weather', feature.weather_filename) + climate_zone = get_climate_zone_iecc(epw) + if climate_zone.nil? + abort("Error: No match found for the WMO station from your weather file #{Pathname(epw).expand_path} in our US WMO list. + This is known to happen when your weather file is from somewhere outside of the United States. + Please replace your weather file with one from an analogous weather location in the United States.") end - begin - args[:geometry_unit_cfa] = feature.floor_area / args[:geometry_building_num_units] - rescue StandardError - end - - begin - args[:geometry_unit_num_bedrooms] = feature.number_of_bedrooms / args[:geometry_building_num_units] - rescue StandardError - end - - # Occupancy Calculation Type - begin - if feature.occupancy_calculation_type == 'operational' - # set args[:geometry_unit_num_occupants] - begin - args[:geometry_unit_num_occupants] = feature.number_of_occupants / args[:geometry_building_num_units] - rescue StandardError # number_of_occupants is not defined: assume equal to number of bedrooms - args[:geometry_unit_num_occupants] = args[:geometry_unit_num_bedrooms] - end - elsif feature.occupancy_calculation_type == 'asset' - # do not set args[:geometry_unit_num_occupants] - end - rescue StandardError # occupancy_calculation_type is not defined: do nothing, i.e., asset calculation - end - - args[:geometry_average_ceiling_height] = 8.0 - begin - args[:geometry_average_ceiling_height] = feature.maximum_roof_height / feature.number_of_stories_above_ground - rescue StandardError - end - - begin - num_garage_spaces = 0 - if feature.onsite_parking_fraction - num_garage_spaces = 1 - if args[:geometry_unit_cfa] > 2500.0 - num_garage_spaces = 2 - end - end - args[:geometry_garage_width] = 12.0 * num_garage_spaces - args[:geometry_garage_protrusion] = 1.0 - rescue StandardError - end - - args[:neighbor_left_distance] = 0.0 - args[:neighbor_right_distance] = 0.0 - - # SCHEDULES - - feature_ids = [] - scenario.feature_file.features.each do |feature| - feature_ids << feature.id - end - - args[:feature_id] = feature_ids.index(feature_id) - args[:schedules_random_seed] = feature_ids.index(feature_id) - args[:schedules_type] = 'stochastic' # smooth or stochastic - args[:schedules_variation] = 'unit' # building or unit - - # HVAC - - system_type = 'Residential - furnace and central air conditioner' - begin - system_type = feature.system_type - rescue StandardError - end - - args[:heating_system_type] = 'none' - if system_type.include?('electric resistance') - args[:heating_system_type] = 'ElectricResistance' - elsif system_type.include?('furnace') - args[:heating_system_type] = 'Furnace' - elsif system_type.include?('boiler') - args[:heating_system_type] = 'Boiler' - end - - args[:cooling_system_type] = 'none' - if system_type.include?('central air conditioner') - args[:cooling_system_type] = 'central air conditioner' - elsif system_type.include?('room air conditioner') - args[:cooling_system_type] = 'room air conditioner' - elsif system_type.include?('evaporative cooler') - args[:cooling_system_type] = 'evaporative cooler' - end - - args[:heat_pump_type] = 'none' - if system_type.include?('air-to-air') - args[:heat_pump_type] = 'air-to-air' - elsif system_type.include?('mini-split') - args[:heat_pump_type] = 'mini-split' - elsif system_type.include?('ground-to-air') - args[:heat_pump_type] = 'ground-to-air' - end - - args[:heating_system_fuel] = 'natural gas' - begin - args[:heating_system_fuel] = feature.heating_system_fuel_type - rescue StandardError - end - - if args[:heating_system_type] == 'ElectricResistance' - args[:heating_system_fuel] = 'electricity' - end - - # APPLIANCES - - args[:cooking_range_oven_fuel_type] = args[:heating_system_fuel] - args[:clothes_dryer_fuel_type] = args[:heating_system_fuel] - - # WATER HEATER - - args[:water_heater_fuel_type] = args[:heating_system_fuel] + # Start general residential mapping + args = {} + require File.join(File.dirname(__FILE__), 'residential/util') + residential(scenario, feature, args, building_type) + # Then onto optional "template" mapping + # mappers/residential/template template = nil begin template = feature.template rescue StandardError end - # IECC / EnergyStar / Other - if !template.nil? && template.include?('Residential IECC') - - captures = template.match(/Residential IECC (?\d+) - Customizable Template (?\w+) (?\d+)/) - template_vals = Hash[captures.names.zip(captures.captures)] - template_vals = template_vals.transform_keys(&:to_sym) - - epw = File.join(File.dirname(__FILE__), '../weather', feature.weather_filename) - template_vals[:climate_zone] = get_climate_zone_iecc(epw) - - # ENCLOSURE - - enclosure_filepath = File.join(File.dirname(__FILE__), 'residential/enclosure.tsv') - enclosure = get_lookup_tsv(args, enclosure_filepath) - row = get_lookup_row(args, enclosure, template_vals) - - # Determine which surfaces to place insulation on - if args[:geometry_foundation_type].include? 'Basement' - row[:foundation_wall_assembly_r] = row[:foundation_wall_assembly_r_basement] - row[:floor_over_foundation_assembly_r] = 2.1 - row[:floor_over_garage_assembly_r] = 2.1 - elsif args[:geometry_foundation_type].include? 'Crawlspace' - row[:foundation_wall_assembly_r] = row[:foundation_wall_assembly_r_crawlspace] - row[:floor_over_foundation_assembly_r] = 2.1 - row[:floor_over_garage_assembly_r] = 2.1 - end - row.delete(:foundation_wall_assembly_r_basement) - row.delete(:foundation_wall_assembly_r_crawlspace) - if ['ConditionedAttic'].include?(args[:geometry_attic_type]) - row[:roof_assembly_r] = row[:ceiling_assembly_r] - row[:ceiling_assembly_r] = 2.1 - end - args.update(row) unless row.nil? - - # HVAC - - if args[:heating_system_type] != 'none' - heating_system_filepath = File.join(File.dirname(__FILE__), 'residential/heating_system.tsv') - heating_system = get_lookup_tsv(args, heating_system_filepath) - row = get_lookup_row(args, heating_system, template_vals) - args.update(row) unless row.nil? - end - - if args[:cooling_system_type] != 'none' - cooling_system_filepath = File.join(File.dirname(__FILE__), 'residential/cooling_system.tsv') - cooling_system = get_lookup_tsv(args, cooling_system_filepath) - row = get_lookup_row(args, cooling_system, template_vals) - args.update(row) unless row.nil? - end - - if args[:heat_pump_type] != 'none' - heat_pump_filepath = File.join(File.dirname(__FILE__), 'residential/heat_pump.tsv') - heat_pump = get_lookup_tsv(args, heat_pump_filepath) - row = get_lookup_row(args, heat_pump, template_vals) - args.update(row) unless row.nil? - end - - # APPLIANCES - - ['refrigerator', 'clothes_washer', 'dishwasher', 'clothes_dryer'].each do |appliance| - appliances_filepath = File.join(File.dirname(__FILE__), "residential/#{appliance}.tsv") - appliances = get_lookup_tsv(args, appliances_filepath) - row = get_lookup_row(args, appliances, template_vals) - - args.update(row) unless row.nil? - - end - - # MECHANICAL VENTILATION - - mechvent_filepath = File.join(File.dirname(__FILE__), 'residential/mechanical_ventilation.tsv') - mechvent = get_lookup_tsv(args, mechvent_filepath) - row = get_lookup_row(args, mechvent, template_vals) - args.update(row) unless row.nil? - - # EXHAUST - # deprecated in OpenStudio-HPXML v1.5.0 - # exhaust_filepath = File.join(File.dirname(__FILE__), 'residential/exhaust.tsv') - # exhaust = get_lookup_tsv(args, exhaust_filepath) - # row = get_lookup_row(args, exhaust, template_vals) - # args.update(row) unless row.nil? - - # WATER HEATER - - water_heater_filepath = File.join(File.dirname(__FILE__), 'residential/water_heater.tsv') - water_heater = get_lookup_tsv(args, water_heater_filepath) - row = get_lookup_row(args, water_heater, template_vals) - args.update(row) unless row.nil? + if !template.nil? + require File.join(File.dirname(__FILE__), 'residential/template/util') + residential_template(args, template, climate_zone) end - # Parse BuildResidentialModel measure xml so we can override defaults with template values + # Parse BuildResidentialModel measure xml so we can override defaults default_args = {} - OpenStudio::Extension.set_measure_argument(osw, 'BuildResidentialModel', '__SKIP__', false) measures_dir = File.absolute_path(File.join(File.dirname(__FILE__), '../resources/hpxml-measures')) measure_xml = File.read(File.join(measures_dir, 'BuildResidentialHPXML', 'measure.xml')) measure = REXML::Document.new(measure_xml).root measure.elements.each('arguments/argument') do |arg| arg_name = arg.elements['name'].text.to_sym - next if [:hpxml_path].include? arg_name default_args[arg_name] = nil if arg.elements['default_value'] @@ -962,14 +581,16 @@ def create_osw(scenario, features, feature_names) end end + build_res_model_args = [:feature_id, :schedules_type, :schedules_random_seed, :schedules_variation, :geometry_num_floors_above_grade, :hpxml_dir, :output_dir] args.each_key do |arg_name| unless default_args.key?(arg_name) - next if [:feature_id, :schedules_type, :schedules_random_seed, :schedules_variation, :geometry_num_floors_above_grade, :hpxml_dir].include?(arg_name) + next if build_res_model_args.include?(arg_name) puts "Argument '#{arg_name}' is unknown." end end + debug = false default_args.each do |arg_name, arg_default| next if arg_default.nil? @@ -988,6 +609,7 @@ def create_osw(scenario, features, feature_names) end end + OpenStudio::Extension.set_measure_argument(osw, 'BuildResidentialModel', '__SKIP__', false) args.each_key do |arg_name| OpenStudio::Extension.set_measure_argument(osw, 'BuildResidentialModel', arg_name, args[arg_name]) end @@ -1038,8 +660,12 @@ def create_osw(scenario, features, feature_names) # convert to hash building_hash = feature.to_hash - # check for detailed model filename OpenStudio::Extension.set_measure_argument(osw, 'PredictedMeanVote', '__SKIP__', false) + + # Changing location here means we always read the geojson weather file, no matter what. + OpenStudio::Extension.set_measure_argument(osw, 'ChangeBuildingLocation', '__SKIP__', false) + + # check for detailed model filename if building_hash.key?(:detailed_model_filename) detailed_model_filename = building_hash[:detailed_model_filename] osw[:file_paths] << File.join(File.dirname(__FILE__), '../osm_building/') @@ -1048,7 +674,7 @@ def create_osw(scenario, features, feature_names) # skip PMV measure with detailed models: OpenStudio::Extension.set_measure_argument(osw, 'PredictedMeanVote', '__SKIP__', true) - # in case detailed model filename is not present + # For when the user DIDN'T BYO osm file else building_type_1 = building_hash[:building_type] @@ -1144,10 +770,6 @@ def time_mapping(time) return new_time end - # ChangeBuildingLocation - # set skip measure to false change building location - OpenStudio::Extension.set_measure_argument(osw, 'ChangeBuildingLocation', '__SKIP__', false) - # cec climate zone takes precedence cec_found = false begin @@ -1326,6 +948,8 @@ def time_mapping(time) OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'system_type', system_type, 'create_typical_building_from_model 2') end + OpenStudio::Extension.set_measure_argument(osw, 'export_time_series_modelica', '__SKIP__', false) + OpenStudio::Extension.set_measure_argument(osw, 'export_modelica_loads', '__SKIP__', false) else raise "Building type #{building_type} not currently supported." end @@ -1481,6 +1105,6 @@ def time_mapping(time) return osw end - end + end # end class end end diff --git a/example_files/mappers/ChilledWaterStorage.rb b/example_files/mappers/ChilledWaterStorage.rb index b02b4893..1f59d23f 100644 --- a/example_files/mappers/ChilledWaterStorage.rb +++ b/example_files/mappers/ChilledWaterStorage.rb @@ -1,6 +1,6 @@ # ********************************************************************************* # URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. -# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md # ********************************************************************************* # Mapper created by LBNL using the measure from openstudio-geb gem diff --git a/example_files/mappers/CreateBar.rb b/example_files/mappers/CreateBar.rb index 78d67857..94a33f06 100644 --- a/example_files/mappers/CreateBar.rb +++ b/example_files/mappers/CreateBar.rb @@ -1,6 +1,6 @@ # ********************************************************************************* # URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. -# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md # ********************************************************************************* require 'urbanopt/reporting' diff --git a/example_files/mappers/EvCharging.rb b/example_files/mappers/EvCharging.rb index 02a3386a..c3cdf816 100644 --- a/example_files/mappers/EvCharging.rb +++ b/example_files/mappers/EvCharging.rb @@ -1,6 +1,6 @@ # ********************************************************************************* # URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. -# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md # ********************************************************************************* require 'urbanopt/reporting' diff --git a/example_files/mappers/FlexibleHotWater.rb b/example_files/mappers/FlexibleHotWater.rb index 05dd1a65..d65b672d 100644 --- a/example_files/mappers/FlexibleHotWater.rb +++ b/example_files/mappers/FlexibleHotWater.rb @@ -1,6 +1,6 @@ # ********************************************************************************* # URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. -# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md # ********************************************************************************* require 'urbanopt/reporting' diff --git a/example_files/mappers/Floorspace.rb b/example_files/mappers/Floorspace.rb index 0220654c..5942f241 100644 --- a/example_files/mappers/Floorspace.rb +++ b/example_files/mappers/Floorspace.rb @@ -1,6 +1,6 @@ # ********************************************************************************* # URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. -# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md # ********************************************************************************* require 'urbanopt/reporting' diff --git a/example_files/mappers/HighEfficiency.rb b/example_files/mappers/HighEfficiency.rb index 3cd52f66..ab7c5d46 100644 --- a/example_files/mappers/HighEfficiency.rb +++ b/example_files/mappers/HighEfficiency.rb @@ -1,6 +1,6 @@ # ********************************************************************************* # URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. -# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md # ********************************************************************************* require 'urbanopt/reporting' diff --git a/example_files/mappers/HighEfficiencyCreateBar.rb b/example_files/mappers/HighEfficiencyCreateBar.rb index 8cf09624..2579aaf7 100644 --- a/example_files/mappers/HighEfficiencyCreateBar.rb +++ b/example_files/mappers/HighEfficiencyCreateBar.rb @@ -1,6 +1,6 @@ # ********************************************************************************* # URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. -# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md # ********************************************************************************* require 'urbanopt/reporting' diff --git a/example_files/mappers/HighEfficiencyFloorspace.rb b/example_files/mappers/HighEfficiencyFloorspace.rb index 4e7895ae..24c3053b 100644 --- a/example_files/mappers/HighEfficiencyFloorspace.rb +++ b/example_files/mappers/HighEfficiencyFloorspace.rb @@ -1,6 +1,6 @@ # ********************************************************************************* # URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. -# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md # ********************************************************************************* require 'urbanopt/reporting' diff --git a/example_files/mappers/PeakHoursMelsShedding.rb b/example_files/mappers/PeakHoursMelsShedding.rb index a1a0ec4d..9f8955ee 100644 --- a/example_files/mappers/PeakHoursMelsShedding.rb +++ b/example_files/mappers/PeakHoursMelsShedding.rb @@ -1,6 +1,6 @@ # ********************************************************************************* # URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. -# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md # ********************************************************************************* # Mapper created by LBNL using the measure from openstudio-geb gem diff --git a/example_files/mappers/PeakHoursThermostatAdjust.rb b/example_files/mappers/PeakHoursThermostatAdjust.rb index 575eae5c..7bc47e84 100644 --- a/example_files/mappers/PeakHoursThermostatAdjust.rb +++ b/example_files/mappers/PeakHoursThermostatAdjust.rb @@ -1,6 +1,6 @@ # ********************************************************************************* # URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. -# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md # ********************************************************************************* # Mapper created by LBNL using the measure from openstudio-geb gem diff --git a/example_files/mappers/ThermalStorage.rb b/example_files/mappers/ThermalStorage.rb index ee5dd7d5..b56dce57 100644 --- a/example_files/mappers/ThermalStorage.rb +++ b/example_files/mappers/ThermalStorage.rb @@ -1,6 +1,6 @@ # ********************************************************************************* # URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. -# See also https://github.com/urbanopt/urbanopt-reopt-gem/blob/develop/LICENSE.md +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md # ********************************************************************************* require 'urbanopt/reporting' diff --git a/example_files/mappers/base_workflow.osw b/example_files/mappers/base_workflow.osw index 0b552963..736dee77 100644 --- a/example_files/mappers/base_workflow.osw +++ b/example_files/mappers/base_workflow.osw @@ -6,6 +6,11 @@ "run_directory": null, "steps": [ { + "measure_dir_name": "BuildResidentialModel", + "arguments": { + "__SKIP__": true + } + },{ "measure_dir_name": "set_run_period", "arguments": { "__SKIP__": true, @@ -205,17 +210,19 @@ "size_mult": "0.75", "charge_start": "23:00" } - },{ + }, + { "measure_dir_name":"export_time_series_modelica", "arguments":{ - "__SKIP__":false + "__SKIP__": true } },{ "measure_dir_name":"export_modelica_loads", "arguments":{ - "__SKIP__":false + "__SKIP__": true } - },{ + }, + { "measure_dir_name": "envelope_and_internal_load_breakdown", "arguments": { "__SKIP__": true diff --git a/example_files/residential/clothes_dryer.tsv b/example_files/mappers/residential/template/iecc/clothes_dryer.tsv similarity index 100% rename from example_files/residential/clothes_dryer.tsv rename to example_files/mappers/residential/template/iecc/clothes_dryer.tsv diff --git a/example_files/residential/clothes_washer.tsv b/example_files/mappers/residential/template/iecc/clothes_washer.tsv similarity index 100% rename from example_files/residential/clothes_washer.tsv rename to example_files/mappers/residential/template/iecc/clothes_washer.tsv diff --git a/example_files/residential/cooling_system.tsv b/example_files/mappers/residential/template/iecc/cooling_system.tsv similarity index 100% rename from example_files/residential/cooling_system.tsv rename to example_files/mappers/residential/template/iecc/cooling_system.tsv diff --git a/example_files/residential/dishwasher.tsv b/example_files/mappers/residential/template/iecc/dishwasher.tsv similarity index 100% rename from example_files/residential/dishwasher.tsv rename to example_files/mappers/residential/template/iecc/dishwasher.tsv diff --git a/example_files/residential/enclosure.tsv b/example_files/mappers/residential/template/iecc/enclosure.tsv similarity index 100% rename from example_files/residential/enclosure.tsv rename to example_files/mappers/residential/template/iecc/enclosure.tsv diff --git a/example_files/residential/heat_pump.tsv b/example_files/mappers/residential/template/iecc/heat_pump.tsv similarity index 100% rename from example_files/residential/heat_pump.tsv rename to example_files/mappers/residential/template/iecc/heat_pump.tsv diff --git a/example_files/residential/heating_system.tsv b/example_files/mappers/residential/template/iecc/heating_system.tsv similarity index 100% rename from example_files/residential/heating_system.tsv rename to example_files/mappers/residential/template/iecc/heating_system.tsv diff --git a/example_files/residential/mechanical_ventilation.tsv b/example_files/mappers/residential/template/iecc/mechanical_ventilation.tsv similarity index 100% rename from example_files/residential/mechanical_ventilation.tsv rename to example_files/mappers/residential/template/iecc/mechanical_ventilation.tsv diff --git a/example_files/residential/refrigerator.tsv b/example_files/mappers/residential/template/iecc/refrigerator.tsv similarity index 100% rename from example_files/residential/refrigerator.tsv rename to example_files/mappers/residential/template/iecc/refrigerator.tsv diff --git a/example_files/residential/water_heater.tsv b/example_files/mappers/residential/template/iecc/water_heater.tsv similarity index 100% rename from example_files/residential/water_heater.tsv rename to example_files/mappers/residential/template/iecc/water_heater.tsv diff --git a/example_files/mappers/residential/template/util.rb b/example_files/mappers/residential/template/util.rb new file mode 100644 index 00000000..44addb19 --- /dev/null +++ b/example_files/mappers/residential/template/util.rb @@ -0,0 +1,138 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + + +def residential_template(args, template, climate_zone) + '''Assign arguments from tsv files.''' + + # IECC / EnergyStar / Other + if template.include?('Residential IECC') + + captures = template.match(/Residential IECC (?\d+) - Customizable Template (?\w+) (?\d+)/) + template_vals = Hash[captures.names.zip(captures.captures)] + template_vals = template_vals.transform_keys(&:to_sym) + template_vals[:climate_zone] = climate_zone + + # ENCLOSURE + + enclosure_filepath = File.join(File.dirname(__FILE__), 'iecc/enclosure.tsv') + enclosure = get_lookup_tsv(args, enclosure_filepath) + row = get_lookup_row(args, enclosure, template_vals) + + # Determine which surfaces to place insulation on + if args[:geometry_foundation_type].include? 'Basement' + row[:foundation_wall_assembly_r] = row[:foundation_wall_assembly_r_basement] + row[:floor_over_foundation_assembly_r] = 2.1 + row[:floor_over_garage_assembly_r] = 2.1 + elsif args[:geometry_foundation_type].include? 'Crawlspace' + row[:foundation_wall_assembly_r] = row[:foundation_wall_assembly_r_crawlspace] + row[:floor_over_foundation_assembly_r] = 2.1 + row[:floor_over_garage_assembly_r] = 2.1 + end + row.delete(:foundation_wall_assembly_r_basement) + row.delete(:foundation_wall_assembly_r_crawlspace) + if ['ConditionedAttic'].include?(args[:geometry_attic_type]) + row[:roof_assembly_r] = row[:ceiling_assembly_r] + row[:ceiling_assembly_r] = 2.1 + end + args.update(row) unless row.nil? + + # HVAC + + { args[:heating_system_type] => 'iecc/heating_system.tsv', + args[:cooling_system_type] => 'iecc/cooling_system.tsv', + args[:heat_pump_type] => 'iecc/heat_pump.tsv' }.each do |type, path| + + if type != 'none' + filepath = File.join(File.dirname(__FILE__), path) + lookup_tsv = get_lookup_tsv(args, filepath) + row = get_lookup_row(args, lookup_tsv, template_vals) + args.update(row) unless row.nil? + end + end + + # APPLIANCES / MECHANICAL VENTILATION / WATER HEATER + + ['refrigerator', 'clothes_washer', 'dishwasher', 'clothes_dryer', 'mechanical_ventilation', 'water_heater'].each do |appliance| + filepath = File.join(File.dirname(__FILE__), "iecc/#{appliance}.tsv") + lookup_tsv = get_lookup_tsv(args, filepath) + row = get_lookup_row(args, lookup_tsv, template_vals) + args.update(row) unless row.nil? + end + end +end + +def get_lookup_tsv(args, filepath) + rows = [] + headers = [] + units = [] + CSV.foreach(filepath, { col_sep: "\t" }) do |row| + if headers.empty? + row.each do |header| + next if header == 'Source' + + if args.key?(header.gsub('Dependency=', '').to_sym) + header = header.gsub('Dependency=', '') + end + unless header.include?('Dependency=') + header = header.to_sym + end + headers << header + end + next + elsif units.empty? + row.each do |unit| + units << unit + end + next + end + if headers.length != row.length + row = row[0..-2] # leave out Source column + end + rows << headers.zip(row).to_h + end + return rows +end + +def get_lookup_row(args, rows, template_vals) + rows.each do |row| + if row.key?('Dependency=Climate Zone') && (row['Dependency=Climate Zone'] != template_vals[:climate_zone]) + next + end + if row.key?('Dependency=IECC Year') && (row['Dependency=IECC Year'] != template_vals[:iecc_year]) + next + end + if row.key?('Dependency=Template Month') && (row['Dependency=Template Month'] != template_vals[:t_month]) + next + end + if row.key?('Dependency=Template Year') && (row['Dependency=Template Year'] != template_vals[:t_year]) + next + end + + row.delete('Dependency=Climate Zone') + row.delete('Dependency=IECC Year') + row.delete('Dependency=Template Month') + row.delete('Dependency=Template Year') + + row.each do |k, v| + next unless v.nil? + + row.delete(k) + end + + intersection = args.keys & row.keys + return row if intersection.empty? # found the correct row + + skip = false + intersection.each do |k| + if args[k] != row[k] + skip = true + end + end + + return row unless skip + end + return nil +end diff --git a/example_files/mappers/residential/util.rb b/example_files/mappers/residential/util.rb new file mode 100644 index 00000000..31aa7317 --- /dev/null +++ b/example_files/mappers/residential/util.rb @@ -0,0 +1,276 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + + +def residential(scenario, feature, args, building_type) + '''Assign arguments from geojson file.''' + + # Schedules + feature_ids = [] + scenario.feature_file.features.each do |f| + feature_ids << f.id + end + + # BuildResidentialModel arguments + args[:hpxml_path] = '../feature.xml' + args[:output_dir] = '..' + args[:feature_id] = feature.id + args[:schedules_type] = 'stochastic' # smooth or stochastic + args[:schedules_random_seed] = feature_ids.index(feature.id) + args[:schedules_variation] = 'unit' # building or unit + args[:geometry_num_floors_above_grade] = feature.number_of_stories_above_ground + + # Optionals + number_of_residential_units = 1 + begin + number_of_residential_units = feature.number_of_residential_units + rescue StandardError + end + args[:geometry_building_num_units] = number_of_residential_units + + begin + args[:hpxml_dir] = feature.hpxml_directory + return + rescue StandardError + end + + timestep = 60 + begin + timestep = 60 / feature.timesteps_per_hour + rescue StandardError + end + + run_period = 'Jan 1 - Dec 31' + calendar_year = 2007 + begin + abbr_monthnames = Date::ABBR_MONTHNAMES + begin_month = abbr_monthnames[feature.begin_date[5, 2].to_i] + begin_day_of_month = feature.begin_date[8, 2].to_i + end_month = abbr_monthnames[feature.end_date[5, 2].to_i] + end_day_of_month = feature.end_date[8, 2].to_i + run_period = "#{begin_month} #{begin_day_of_month} - #{end_month} #{end_day_of_month}" + calendar_year = feature.begin_date[0, 4].to_i + rescue StandardError + end + + occupancy_calculation_type = nil + begin + occupancy_calculation_type = feature.occupancy_calculation_type + rescue StandardError + end + + number_of_occupants = nil + begin + number_of_occupants = feature.number_of_occupants + rescue StandardError + end + + maximum_roof_height = 8.0 + begin + maximum_roof_height = feature.maximum_roof_height + rescue StandardError + end + + roof_type = 'Gable' + begin + roof_type = feature.roof_type + rescue StandardError + end + + geometry_unit_orientation = nil + begin + geometry_unit_orientation = feature.geometry_unit_orientation + rescue StandardError + end + + geometry_unit_aspect_ratio = nil + begin + geometry_unit_aspect_ratio = feature.geometry_unit_aspect_ratio + rescue StandardError + end + + onsite_parking_fraction = false + begin + onsite_parking_fraction = feature.onsite_parking_fraction + rescue StandardError + end + + # Apply residential + residential_simulation(args, timestep, run_period, calendar_year, feature.weather_filename) + residential_geometry_unit(args, building_type, feature.floor_area, feature.number_of_bedrooms, geometry_unit_orientation, geometry_unit_aspect_ratio, occupancy_calculation_type, number_of_occupants, maximum_roof_height) + residential_geometry_foundation(args, feature.foundation_type) + residential_geometry_attic(args, feature.attic_type, roof_type) + residential_geometry_garage(args, onsite_parking_fraction) + residential_geometry_neighbor(args) + residential_hvac(args, feature.system_type, feature.heating_system_fuel_type) + residential_appliances(args) +end + +def residential_simulation(args, timestep, run_period, calendar_year, weather_filename) + args[:simulation_control_timestep] = timestep + args[:simulation_control_run_period] = run_period + args[:simulation_control_run_period_calendar_year] = calendar_year + args[:weather_station_epw_filepath] = "../../../weather/#{weather_filename}" +end + +def residential_geometry_unit(args, building_type, floor_area, number_of_bedrooms, geometry_unit_orientation, geometry_unit_aspect_ratio, occupancy_calculation_type, number_of_occupants, maximum_roof_height) + number_of_stories_above_ground = args[:geometry_num_floors_above_grade] + args[:geometry_unit_num_floors_above_grade] = 1 + case building_type + when 'Single-Family Detached' + args[:geometry_building_num_units] = 1 + args[:geometry_unit_type] = 'single-family detached' + args[:geometry_unit_num_floors_above_grade] = number_of_stories_above_ground + when 'Single-Family Attached' + args[:geometry_unit_type] = 'single-family attached' + args[:geometry_unit_num_floors_above_grade] = number_of_stories_above_ground + args[:air_leakage_type] = 'unit exterior only' + when 'Multifamily' + args[:geometry_unit_type] = 'apartment unit' + args[:air_leakage_type] = 'unit exterior only' + end + + args[:geometry_unit_cfa] = floor_area / args[:geometry_building_num_units] + + args[:geometry_unit_num_bedrooms] = number_of_bedrooms / args[:geometry_building_num_units] + + # Geometry Orientation and Aspect Ratio + # Orientation (North=0, East=90, South=180, West=270) + args[:geometry_unit_orientation] = geometry_unit_orientation if !geometry_unit_orientation.nil? + + # Aspect Ratio + # The ratio of front/back wall length to left/right wall length for the unit, excluding any protruding garage wall area. + args[:geometry_unit_aspect_ratio] = geometry_unit_aspect_ratio if !geometry_unit_aspect_ratio.nil? + + # Occupancy Calculation Type + if occupancy_calculation_type == 'operational' + # set args[:geometry_unit_num_occupants] + begin + args[:geometry_unit_num_occupants] = number_of_occupants / args[:geometry_building_num_units] + rescue StandardError # number_of_occupants is not defined: assume equal to number of bedrooms + args[:geometry_unit_num_occupants] = args[:geometry_unit_num_bedrooms] + end + else # nil or asset + # do not set args[:geometry_unit_num_occupants] + end + + args[:geometry_average_ceiling_height] = maximum_roof_height / number_of_stories_above_ground +end + +def residential_geometry_foundation(args, foundation_type) + args[:geometry_foundation_type] = 'SlabOnGrade' + args[:geometry_foundation_height] = 0.0 + case foundation_type + when 'crawlspace - vented' + args[:geometry_foundation_type] = 'VentedCrawlspace' + args[:geometry_foundation_height] = 3.0 + when 'crawlspace - unvented' + args[:geometry_foundation_type] = 'UnventedCrawlspace' + args[:geometry_foundation_height] = 3.0 + when 'crawlspace - conditioned' + args[:geometry_foundation_type] = 'ConditionedCrawlspace' + args[:geometry_foundation_height] = 3.0 + when 'basement - unconditioned' + args[:geometry_foundation_type] = 'UnconditionedBasement' + args[:geometry_foundation_height] = 8.0 + when 'basement - conditioned' + args[:geometry_foundation_type] = 'ConditionedBasement' + args[:geometry_foundation_height] = 8.0 + when 'ambient' + args[:geometry_foundation_type] = 'Ambient' + args[:geometry_foundation_height] = 8.0 + end +end + +def residential_geometry_attic(args, attic_type, roof_type) + begin + case attic_type + when 'attic - vented' + args[:geometry_attic_type] = 'VentedAttic' + when 'attic - unvented' + args[:geometry_attic_type] = 'UnventedAttic' + when 'attic - conditioned' + args[:geometry_attic_type] = 'ConditionedAttic' + when 'flat roof' + args[:geometry_attic_type] = 'FlatRoof' + end + rescue StandardError + end + + case roof_type + when 'Gable' + args[:geometry_roof_type] = 'gable' + when 'Hip' + args[:geometry_roof_type] = 'hip' + end +end + +def residential_geometry_garage(args, onsite_parking_fraction) + num_garage_spaces = 0 + if onsite_parking_fraction + num_garage_spaces = 1 + if args[:geometry_unit_cfa] > 2500.0 + num_garage_spaces = 2 + end + end + args[:geometry_garage_width] = 12.0 * num_garage_spaces + args[:geometry_garage_protrusion] = 1.0 +end + +def residential_geometry_neighbor(args) + args[:neighbor_left_distance] = 0.0 + args[:neighbor_right_distance] = 0.0 +end + +def residential_hvac(args, system_type, heating_system_fuel_type) + system_type = 'Residential - furnace and central air conditioner' + begin + system_type = system_type + rescue StandardError + end + + args[:heating_system_type] = 'none' + if system_type.include?('electric resistance') + args[:heating_system_type] = 'ElectricResistance' + elsif system_type.include?('furnace') + args[:heating_system_type] = 'Furnace' + elsif system_type.include?('boiler') + args[:heating_system_type] = 'Boiler' + end + + args[:cooling_system_type] = 'none' + if system_type.include?('central air conditioner') + args[:cooling_system_type] = 'central air conditioner' + elsif system_type.include?('room air conditioner') + args[:cooling_system_type] = 'room air conditioner' + elsif system_type.include?('evaporative cooler') + args[:cooling_system_type] = 'evaporative cooler' + end + + args[:heat_pump_type] = 'none' + if system_type.include?('air-to-air') + args[:heat_pump_type] = 'air-to-air' + elsif system_type.include?('mini-split') + args[:heat_pump_type] = 'mini-split' + elsif system_type.include?('ground-to-air') + args[:heat_pump_type] = 'ground-to-air' + end + + args[:heating_system_fuel] = 'natural gas' + begin + args[:heating_system_fuel] = heating_system_fuel_type + rescue StandardError + end + + if args[:heating_system_type] == 'ElectricResistance' + args[:heating_system_fuel] = 'electricity' + end +end + +def residential_appliances(args) + args[:cooking_range_oven_fuel_type] = args[:heating_system_fuel] + args[:clothes_dryer_fuel_type] = args[:heating_system_fuel] + args[:water_heater_fuel_type] = args[:heating_system_fuel] +end diff --git a/example_files/measures/BuildResidentialModel/measure.rb b/example_files/measures/BuildResidentialModel/measure.rb index 5d74d40a..ac6b0965 100644 --- a/example_files/measures/BuildResidentialModel/measure.rb +++ b/example_files/measures/BuildResidentialModel/measure.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # see the URL below for information on how to write OpenStudio measures # http://nrel.github.io/OpenStudio-user-documentation/measures/measure_writing_guide/ @@ -63,8 +68,13 @@ def arguments(model) args << arg arg = OpenStudio::Measure::OSArgument.makeStringArgument('hpxml_dir', false) - arg.setDisplayName('Custom HPXML Files') - arg.setDescription('The name of the folder containing HPXML files, relative to the xml_building folder.') + arg.setDisplayName('Folder Containing Custom HPXML File') + arg.setDescription('The name of the folder containing a custom HPXML file, relative to the xml_building folder.') + args << arg + + arg = OpenStudio::Measure::OSArgument.makeStringArgument('output_dir', true) + arg.setDisplayName('Directory for Output Files') + arg.setDescription('Absolute/relative path for the output files directory.') args << arg measures_dir = File.absolute_path(File.join(File.dirname(__FILE__), '../../resources/hpxml-measures')) @@ -73,8 +83,6 @@ def arguments(model) measure = get_measure_instance(full_measure_path) measure.arguments(model).each do |arg| - next if ['hpxml_path'].include? arg.name - args << arg end @@ -95,72 +103,76 @@ def run(model, runner, user_arguments) # optionals: get or remove args.each_key do |arg| - # TODO: how to check if arg is an optional or not? - if args[arg].is_initialized args[arg] = args[arg].get else args.delete(arg) end - rescue StandardError + rescue StandardError # this is needed for when args[arg] is actually a value end - # get file/dir paths + # get hpxml-measures directory resources_dir = File.absolute_path(File.join(File.dirname(__FILE__), '../../resources')) - - # apply HPXML measures measures_dir = File.join(resources_dir, 'hpxml-measures') check_dir_exists(measures_dir, runner) - # these will get added back in by unit_model - model.getBuilding.remove - model.getShadowCalculation.remove - model.getSimulationControl.remove - model.getSite.remove - model.getTimestep.remove - # either create units or get pre-made units if args[:hpxml_dir].nil? units = get_unit_positions(runner, args) if units.empty? return false end + + standards_number_of_living_units = units.size else - hpxml_dir = File.join(File.dirname(__FILE__), "../../xml_building/#{args[:hpxml_dir]}") + xml_building_folder = "xml_building" + hpxml_dir = File.join(File.dirname(__FILE__), "../../#{xml_building_folder}/#{args[:hpxml_dir]}") if !File.exist?(hpxml_dir) - runner.registerError("HPXML directory #{File.expand_path(hpxml_dir)} was specified for feature ID = #{args[:feature_id]}, but could not be found.") + runner.registerError("HPXML directory '#{File.join(xml_building_folder, File.basename(hpxml_dir))}' was specified for feature ID = #{args[:feature_id]}, but could not be found.") return false end units = [] - Dir["#{hpxml_dir}/*.xml"].each do |hpxml_path| - name, ext = File.basename(hpxml_path).split('.') - units << { 'name' => name, 'hpxml_path' => hpxml_path } + hpxml_paths = Dir["#{hpxml_dir}/*.xml"] + if hpxml_paths.size != 1 + runner.registerError("HPXML directory '#{File.join(xml_building_folder, File.basename(hpxml_dir))}' must contain exactly 1 HPXML file; the single file can describe multiple dwelling units of a feature.") + return false + end + hpxml_path = hpxml_paths[0] + units << { 'hpxml_path' => hpxml_path } + + hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: 'ALL') + standards_number_of_living_units = 0 + hpxml.buildings.each do |hpxml_bldg| + number_of_units = 1 + number_of_units = hpxml_bldg.building_construction.number_of_units if !hpxml_bldg.building_construction.number_of_units.nil? + standards_number_of_living_units += number_of_units end end - standards_number_of_living_units = units.size - if args[:hpxml_dir].nil? && args.key?(:geometry_building_num_units) && (standards_number_of_living_units != Integer(args[:geometry_building_num_units])) - runner.registerError("The number of created units (#{units.size}) differs from the specified number of units (#{standards_number_of_living_units}).") + if args.key?(:geometry_building_num_units) && (standards_number_of_living_units != Integer(args[:geometry_building_num_units])) + runner.registerError("The number of actual dwelling units (#{standards_number_of_living_units}) differs from the specified number of units (#{Integer(args[:geometry_building_num_units])}).") return false end + hpxml_path = File.expand_path(args[:hpxml_path]) units.each_with_index do |unit, unit_num| - unit_model = OpenStudio::Model::Model.new measures = {} - hpxml_path = File.expand_path("../#{unit['name']}.xml") - if !unit.key?('hpxml_path') + if !unit.key?('hpxml_path') # create a single new HPXML file describing all dwelling units of the feature # BuildResidentialHPXML measure_subdir = 'BuildResidentialHPXML' full_measure_path = File.join(measures_dir, measure_subdir, 'measure.rb') check_file_exists(full_measure_path, runner) - measures[measure_subdir] = [] measure_args = args.clone.collect { |k, v| [k.to_s, v] }.to_h measure_args['hpxml_path'] = hpxml_path + if unit_num > 0 + measure_args['existing_hpxml_path'] = hpxml_path + measure_args['battery_present'] = 'false' # limitation of OS-HPXML + end begin measure_args['software_info_program_used'] = File.basename(File.absolute_path(File.join(File.dirname(__FILE__), '../../..'))) rescue StandardError @@ -178,155 +190,103 @@ def run(model, runner, user_arguments) measure_args['geometry_foundation_type'] = unit['geometry_foundation_type'] if unit.key?('geometry_foundation_type') measure_args['geometry_attic_type'] = unit['geometry_attic_type'] if unit.key?('geometry_attic_type') measure_args['geometry_unit_orientation'] = unit['geometry_unit_orientation'] if unit.key?('geometry_unit_orientation') - measure_args.delete('feature_id') - measure_args.delete('schedules_type') - measure_args.delete('schedules_random_seed') - measure_args.delete('schedules_variation') - measure_args.delete('geometry_num_floors_above_grade') - measures[measure_subdir] << measure_args - else + # don't assign these to BuildResidentialHPXML + measure = get_measure_instance(full_measure_path) + arg_names = measure.arguments(model).collect { |arg| arg.name.to_sym } + args_to_delete = args.keys - arg_names + args_to_delete.each do |arg_to_delete| + measure_args.delete(arg_to_delete.to_s) + end + + measures[measure_subdir] = [measure_args] + + if !apply_measures(measures_dir, measures, runner, model, true, 'OpenStudio::Measure::ModelMeasure', 'feature.osw') + return false + end + else # we're using an HPXML file from the xml_building folder FileUtils.cp(File.expand_path(unit['hpxml_path']), hpxml_path) + end + end # end units.each_with_index do |unit, unit_num| + + # call BuildResidentialScheduleFile / HPXMLtoOpenStudio after HPXML file is created + measures = {} - # BuildResidentialScheduleFile + # BuildResidentialScheduleFile + if args[:schedules_type] == 'stochastic' # if smooth, don't run the measure; schedules type stochastic currently hardcoded in Baseline.rb measure_subdir = 'BuildResidentialScheduleFile' full_measure_path = File.join(measures_dir, measure_subdir, 'measure.rb') check_file_exists(full_measure_path, runner) - measures[measure_subdir] = [] measure_args = {} measure_args['hpxml_path'] = hpxml_path measure_args['hpxml_output_path'] = hpxml_path - measure_args['schedules_random_seed'] = args[:schedules_random_seed] # variation by building; deterministic - if args[:schedules_variation] == 'unit' - measure_args['schedules_random_seed'] *= (unit_num + 1) # variation across units; deterministic - end - measure_args['output_csv_path'] = File.expand_path("../#{unit['name']}.csv") + measure_args['schedules_random_seed'] = args[:schedules_random_seed] + measure_args['building_id'] = 'ALL' # FIXME: schedules variation by building currently not supported; by unit currently hardcoded in Baseline.rb + measure_args['output_csv_path'] = 'schedules.csv' - measures[measure_subdir] << measure_args if args[:schedules_type] == 'stochastic' # only run BuildResidentialScheduleFile measure if stochastic; if smooth, don't run the measure + measures[measure_subdir] = [measure_args] + end - # HPXMLtoOpenStudio - measure_subdir = 'HPXMLtoOpenStudio' - full_measure_path = File.join(measures_dir, measure_subdir, 'measure.rb') - check_file_exists(full_measure_path, runner) - measures[measure_subdir] = [] + # HPXMLtoOpenStudio + measure_subdir = 'HPXMLtoOpenStudio' + full_measure_path = File.join(measures_dir, measure_subdir, 'measure.rb') + check_file_exists(full_measure_path, runner) - measure_args = {} - measure_args['hpxml_path'] = hpxml_path - measure_args['output_dir'] = File.expand_path('..') - measure_args['debug'] = true + measure_args = {} + measure_args['hpxml_path'] = hpxml_path + measure_args['output_dir'] = File.expand_path(args[:output_dir]) + measure_args['debug'] = true + measure_args['building_id'] = 'ALL' - measures[measure_subdir] << measure_args + measures[measure_subdir] = [measure_args] - # if !apply_child_measures(measures_dir, measures, runner, unit_model, workflow_json, "#{unit['name']}.osw", true) - if !apply_measures(measures_dir, measures, runner, unit_model, true, 'OpenStudio::Measure::ModelMeasure', "#{unit['name']}.osw") - return false - end + if !apply_measures(measures_dir, measures, runner, model, true, 'OpenStudio::Measure::ModelMeasure', 'feature.osw') + return false + end - # store metadata for default feature reports measure - standards_number_of_above_ground_stories = Integer(args[:geometry_num_floors_above_grade]) - standards_number_of_stories = Integer(args[:geometry_num_floors_above_grade]) - number_of_conditioned_stories = Integer(args[:geometry_num_floors_above_grade]) - if ['UnconditionedBasement', 'ConditionedBasement'].include?(args[:geometry_foundation_type]) - standards_number_of_stories += 1 - if ['ConditionedBasement'].include?(args[:geometry_foundation_type]) - number_of_conditioned_stories += 1 - end + # store metadata for default_feature_reports measure + standards_number_of_above_ground_stories = Integer(args[:geometry_num_floors_above_grade]) + standards_number_of_stories = Integer(args[:geometry_num_floors_above_grade]) + number_of_conditioned_stories = Integer(args[:geometry_num_floors_above_grade]) + if ['UnconditionedBasement', 'ConditionedBasement'].include?(args[:geometry_foundation_type]) + standards_number_of_stories += 1 + if ['ConditionedBasement'].include?(args[:geometry_foundation_type]) + number_of_conditioned_stories += 1 end + end - case args[:geometry_unit_type] - when 'single-family detached' - building_type = 'Single-Family Detached' - when 'single-family attached' - building_type = 'Single-Family Attached' - when 'apartment unit' - building_type = 'Multifamily' - end + case args[:geometry_unit_type] + when 'single-family detached' + building_type = 'Single-Family Detached' + when 'single-family attached' + building_type = 'Single-Family Attached' + when 'apartment unit' + building_type = 'Multifamily' + end - unit_model.getSpaces.each do |unit_space| - unit_space_type = OpenStudio::Model::SpaceType.new(unit_model) - unit_space_type.setStandardsSpaceType(unit_space.name.to_s) - unit_space.setSpaceType(unit_space_type) - end + model.getSpaces.each do |space| + space_type = OpenStudio::Model::SpaceType.new(model) + space_type.setStandardsSpaceType(space.name.to_s) + space.setSpaceType(space_type) + end - unit_model.getSpaceTypes.each do |space_type| - next unless space_type.standardsSpaceType.is_initialized - next if !space_type.standardsSpaceType.get.include?('living space') + model.getSpaceTypes.each do |space_type| + next unless space_type.standardsSpaceType.is_initialized + # set building_type on SpaceType for conditioned spaces to populate space_type_areas hash in default_feature_reports + if space_type.standardsSpaceType.get.include?('conditioned space') || space_type.standardsSpaceType.get.include?('conditioned_space') space_type.setStandardsBuildingType(building_type) end - - unit_model.getBuilding.setStandardsBuildingType('Residential') - unit_model.getBuilding.setStandardsNumberOfAboveGroundStories(standards_number_of_above_ground_stories) - unit_model.getBuilding.setStandardsNumberOfStories(standards_number_of_stories) - unit_model.getBuilding.setNominalFloortoFloorHeight(Float(args[:geometry_average_ceiling_height])) - unit_model.getBuilding.setStandardsNumberOfLivingUnits(standards_number_of_living_units) - unit_model.getBuilding.additionalProperties.setFeature('NumberOfConditionedStories', number_of_conditioned_stories) - - if unit_num == 0 # for the first building unit, add everything - - model.addObjects(unit_model.objects, true) - - else # for single-family attached and multifamily, add "almost" everything - - y_shift = 100.0 * unit_num # meters - - # shift the unit so it's not right on top of the previous one - unit_model.getSpaces.sort.each do |space| - space.setYOrigin(y_shift) - end - - # shift shading surfaces - m = OpenStudio::Matrix.new(4, 4, 0) - m[0, 0] = 1 - m[1, 1] = 1 - m[2, 2] = 1 - m[3, 3] = 1 - m[1, 3] = y_shift - t = OpenStudio::Transformation.new(m) - - unit_model.getShadingSurfaceGroups.each do |shading_surface_group| - next if shading_surface_group.space.is_initialized # already got shifted - - shading_surface_group.shadingSurfaces.each do |shading_surface| - shading_surface.setVertices(t * shading_surface.vertices) - end - end - - # prefix all objects with name using unit number. May be cleaner if source models are setup with unique names - prefix_all_unit_model_objects(unit_model, unit) - - # we already have the following unique objects from the first building unit - unit_model.getConvergenceLimits.remove - unit_model.getOutputDiagnostics.remove - unit_model.getRunPeriodControlDaylightSavingTime.remove - unit_model.getShadowCalculation.remove - unit_model.getSimulationControl.remove - unit_model.getSiteGroundTemperatureDeep.remove - unit_model.getSiteGroundTemperatureShallow.remove - unit_model.getSite.remove - unit_model.getInsideSurfaceConvectionAlgorithm.remove - unit_model.getOutsideSurfaceConvectionAlgorithm.remove - unit_model.getTimestep.remove - unit_model.getFoundationKivaSettings.remove - unit_model.getOutputJSON.remove - unit_model.getOutputControlFiles.remove - unit_model.getPerformancePrecisionTradeoffs.remove - - unit_model_objects = [] - unit_model.objects.each do |obj| - unit_model_objects << obj unless obj.to_Building.is_initialized # if we remove this, we lose all thermal zones - end - - model.addObjects(unit_model_objects, true) - - end end - # save the "re-composed" model with all building units to file - building_path = File.expand_path(File.join('..', 'whole_building.osm')) - model.save(building_path, true) + model.getBuilding.setStandardsBuildingType('Residential') + model.getBuilding.setStandardsNumberOfAboveGroundStories(standards_number_of_above_ground_stories) + model.getBuilding.setStandardsNumberOfStories(standards_number_of_stories) + model.getBuilding.setNominalFloortoFloorHeight(Float(args[:geometry_average_ceiling_height])) + model.getBuilding.setStandardsNumberOfLivingUnits(standards_number_of_living_units) + model.getBuilding.additionalProperties.setFeature('NumberOfConditionedStories', number_of_conditioned_stories) return true end @@ -335,26 +295,23 @@ def get_unit_positions(runner, args) units = [] case args[:geometry_unit_type] when 'single-family detached' - units << { 'name' => 'unit 1' } + units << {} when 'single-family attached' (1..args[:geometry_building_num_units]).to_a.each do |unit_num| case unit_num when 1 - units << { 'name' => "unit #{unit_num}", - 'geometry_unit_left_wall_is_adiabatic' => true } + units << { 'geometry_unit_left_wall_is_adiabatic' => true } when args[:geometry_building_num_units] - units << { 'name' => "unit #{unit_num}", - 'geometry_unit_right_wall_is_adiabatic' => true } + units << { 'geometry_unit_right_wall_is_adiabatic' => true } else - units << { 'name' => "unit #{unit_num}", - 'geometry_unit_left_wall_is_adiabatic' => true, + units << { 'geometry_unit_left_wall_is_adiabatic' => true, 'geometry_unit_right_wall_is_adiabatic' => true } end end when 'apartment unit' num_units_per_floor = (Float(args[:geometry_building_num_units]) / Float(args[:geometry_num_floors_above_grade])).ceil if num_units_per_floor == 1 - runner.registerError("num_units_per_floor='#{num_units_per_floor}' not supported.") + runner.registerError("Unit type '#{args[:geometry_unit_type]}' with num_units_per_floor=#{num_units_per_floor} is not supported.") return units end @@ -406,8 +363,7 @@ def get_unit_positions(runner, args) end position += 1 - units << { 'name' => "unit #{unit_num}", - 'geometry_unit_left_wall_is_adiabatic' => geometry_unit_left_wall_is_adiabatic, + units << { 'geometry_unit_left_wall_is_adiabatic' => geometry_unit_left_wall_is_adiabatic, 'geometry_unit_right_wall_is_adiabatic' => geometry_unit_right_wall_is_adiabatic, 'geometry_unit_front_wall_is_adiabatic' => geometry_unit_front_wall_is_adiabatic, 'geometry_unit_back_wall_is_adiabatic' => geometry_unit_back_wall_is_adiabatic, @@ -418,74 +374,6 @@ def get_unit_positions(runner, args) end return units end - - def prefix_all_unit_model_objects(unit_model, unit) - # EMS objects - ems_map = {} - - unit_model.getEnergyManagementSystemSensors.each do |sensor| - old_sensor_name = sensor.name.to_s - new_sensor_name = make_variable_name("#{unit['name']}_#{sensor.name}") - - ems_map[old_sensor_name] = new_sensor_name - - old_sensor_key_name = sensor.keyName.to_s - new_sensor_key_name = make_variable_name("#{unit['name']}_#{sensor.keyName}") unless sensor.keyName.empty? - sensor.setKeyName(new_sensor_key_name) unless sensor.keyName.empty? - end - - unit_model.getEnergyManagementSystemActuators.each do |actuator| - old_actuator_name = actuator.name.to_s - new_actuator_name = make_variable_name("#{unit['name']}_#{actuator.name}") - - ems_map[old_actuator_name] = new_actuator_name - end - - unit_model.getEnergyManagementSystemOutputVariables.each do |output_variable| - next if output_variable.emsVariableObject.is_initialized - - old_ems_variable_name = output_variable.emsVariableName.to_s - new_ems_variable_name = make_variable_name("#{unit['name']}_#{output_variable.emsVariableName}") - - ems_map[old_ems_variable_name] = new_ems_variable_name - output_variable.setEMSVariableName(new_ems_variable_name) - end - - # variables in program lines don't get updated automatically - characters = ['', ' ', ',', '(', ')', '+', '-', '*', '/', ';'] - unit_model.getEnergyManagementSystemPrograms.each do |program| - old_program_name = program.name.to_s - new_program_name = make_variable_name("#{unit['name']}_#{program.name}") - - new_lines = [] - program.lines.each_with_index do |line, i| - ems_map.each do |old_name, new_name| - # old_name between at least 1 character, with the exception of '' on left and ' ' on right - characters.each do |lhs| - characters.each do |rhs| - next if lhs == '' && ['', ' '].include?(rhs) - - line = line.gsub("#{lhs}#{old_name}#{rhs}", "#{lhs}#{new_name}#{rhs}") if line.include?("#{lhs}#{old_name}#{rhs}") - end - end - end - new_lines << line - end - program.setLines(new_lines) - end - - # All model objects - unit_model.objects.each do |model_object| - next if model_object.name.nil? - - new_model_object_name = make_variable_name("#{unit['name']}_#{model_object.name}") - model_object.setName(new_model_object_name) - end - end - - def make_variable_name(str) - return str.gsub(' ', '_').gsub('-', '_') - end end # register the measure to be used by the application diff --git a/example_files/measures/BuildResidentialModel/measure.xml b/example_files/measures/BuildResidentialModel/measure.xml index 9afc20bf..5c1b4228 100644 --- a/example_files/measures/BuildResidentialModel/measure.xml +++ b/example_files/measures/BuildResidentialModel/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_model 259dc35f-65e8-47d4-913f-69efede5a267 - 62a1cfcd-d73a-4ea0-80e6-9c045acf63e7 - 2023-07-13T21:29:35Z + 43b14be0-3b56-4458-b665-1d6c4fa747af + 2023-12-18T21:19:53Z 2C38F48B BuildResidentialModel Build Residential Model @@ -76,8 +76,32 @@ hpxml_dir - Custom HPXML Files - The name of the folder containing HPXML files, relative to the xml_building folder. + Folder Containing Custom HPXML File + The name of the folder containing a custom HPXML file, relative to the xml_building folder. + String + false + false + + + output_dir + Directory for Output Files + Absolute/relative path for the output files directory. + String + true + false + + + hpxml_path + HPXML File Path + Absolute/relative path of the HPXML file. + String + true + false + + + existing_hpxml_path + Existing HPXML File Path + Absolute/relative path of the existing HPXML file. If not provided, a new HPXML file with one Building element is created. If provided, a new Building element will be appended to this HPXML file (e.g., to create a multifamily HPXML file describing multiple dwelling units). String false false @@ -147,7 +171,7 @@ simulation_control_timestep Simulation Control: Timestep - Value must be a divisor of 60. If not provided, the OS-HPXML default is used. + Value must be a divisor of 60. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-simulation-control'>HPXML Simulation Control</a>) is used. Integer min false @@ -156,7 +180,7 @@ simulation_control_run_period Simulation Control: Run Period - Enter a date like "Jan 1 - Dec 31". If not provided, the OS-HPXML default is used. + Enter a date like 'Jan 1 - Dec 31'. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-simulation-control'>HPXML Simulation Control</a>) is used. String false false @@ -164,7 +188,7 @@ simulation_control_run_period_calendar_year Simulation Control: Run Period Calendar Year - This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file. If not provided, the OS-HPXML default is used. + This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-simulation-control'>HPXML Simulation Control</a>) is used. Integer year false @@ -173,7 +197,7 @@ simulation_control_daylight_saving_enabled Simulation Control: Daylight Saving Enabled - Whether to use daylight saving. If not provided, the OS-HPXML default is used. + Whether to use daylight saving. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-building-site'>HPXML Building Site</a>) is used. Boolean false false @@ -191,7 +215,7 @@ simulation_control_daylight_saving_period Simulation Control: Daylight Saving Period - Enter a date like "Mar 15 - Dec 15". If not provided, the OS-HPXML default is used. + Enter a date like 'Mar 15 - Dec 15'. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-building-site'>HPXML Building Site</a>) is used. String false false @@ -199,7 +223,7 @@ simulation_control_temperature_capacitance_multiplier Simulation Control: Temperature Capacitance Multiplier - Affects the transient calculation of indoor air temperatures. If not provided, the OS-HPXML default is used. + Affects the transient calculation of indoor air temperatures. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-simulation-control'>HPXML Simulation Control</a>) is used. String false false @@ -207,7 +231,7 @@ site_type Site: Type - The type of site. If not provided, the OS-HPXML default is used. + The type of site. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. Choice false false @@ -229,7 +253,7 @@ site_shielding_of_home Site: Shielding of Home - Presence of nearby buildings, trees, obstructions for infiltration model. If not provided, the OS-HPXML default is used. + Presence of nearby buildings, trees, obstructions for infiltration model. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. Choice false false @@ -251,7 +275,7 @@ site_ground_conductivity Site: Ground Conductivity - Conductivity of the ground soil. If not provided, the OS-HPXML default is used. + Conductivity of the ground soil. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. Double Btu/hr-ft-F false @@ -595,6 +619,14 @@ false false + + unit_multiplier + Building Construction: Unit Multiplier + The number of similar dwelling units. EnergyPlus simulation results will be multiplied this value. If not provided, defaults to 1. + Integer + false + false + geometry_unit_type Geometry: Unit Type @@ -616,6 +648,10 @@ apartment unit apartment unit + + manufactured home + manufactured home + @@ -747,7 +783,7 @@ geometry_unit_num_bathrooms Geometry: Unit Number of Bathrooms - The number of bathrooms in the unit. If not provided, the OS-HPXML default is used. + The number of bathrooms in the unit. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-building-construction'>HPXML Building Construction</a>) is used. Integer # false @@ -804,7 +840,7 @@ geometry_garage_protrusion Geometry: Garage Protrusion - The fraction of the garage that is protruding from the living space. Only applies to single-family detached units. + The fraction of the garage that is protruding from the conditioned space. Only applies to single-family detached units. Double Frac true @@ -871,6 +907,14 @@ AboveApartment AboveApartment + + BellyAndWingWithSkirt + BellyAndWingWithSkirt + + + BellyAndWingNoSkirt + BellyAndWingNoSkirt + @@ -1064,7 +1108,7 @@ neighbor_front_height Neighbor: Front Height - The height of the neighboring building to the front. If not provided, the OS-HPXML default is used. + The height of the neighboring building to the front. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. Double ft false @@ -1073,7 +1117,7 @@ neighbor_back_height Neighbor: Back Height - The height of the neighboring building to the back. If not provided, the OS-HPXML default is used. + The height of the neighboring building to the back. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. Double ft false @@ -1082,7 +1126,7 @@ neighbor_left_height Neighbor: Left Height - The height of the neighboring building to the left. If not provided, the OS-HPXML default is used. + The height of the neighboring building to the left. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. Double ft false @@ -1091,7 +1135,7 @@ neighbor_right_height Neighbor: Right Height - The height of the neighboring building to the right. If not provided, the OS-HPXML default is used. + The height of the neighboring building to the right. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. Double ft false @@ -1147,7 +1191,7 @@ foundation_wall_type Foundation Wall: Type - The material type of the foundation wall. If not provided, the OS-HPXML default is used. + The material type of the foundation wall. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-foundation-walls'>HPXML Foundation Walls</a>) is used. Choice false false @@ -1189,7 +1233,7 @@ foundation_wall_thickness Foundation Wall: Thickness - The thickness of the foundation wall. If not provided, the OS-HPXML default is used. + The thickness of the foundation wall. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-foundation-walls'>HPXML Foundation Walls</a>) is used. Double in false @@ -1228,7 +1272,7 @@ foundation_wall_insulation_distance_to_top Foundation Wall: Insulation Distance To Top - The distance from the top of the foundation wall to the top of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default is used. + The distance from the top of the foundation wall to the top of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-foundation-walls'>HPXML Foundation Walls</a>) is used. Double ft false @@ -1237,7 +1281,7 @@ foundation_wall_insulation_distance_to_bottom Foundation Wall: Insulation Distance To Bottom - The distance from the top of the foundation wall to the bottom of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default is used. + The distance from the top of the foundation wall to the bottom of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-foundation-walls'>HPXML Foundation Walls</a>) is used. Double ft false @@ -1304,7 +1348,7 @@ slab_thickness Slab: Thickness - The thickness of the slab. Zero can be entered if there is a dirt floor instead of a slab. If not provided, the OS-HPXML default is used. + The thickness of the slab. Zero can be entered if there is a dirt floor instead of a slab. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-slabs'>HPXML Slabs</a>) is used. Double in false @@ -1313,7 +1357,7 @@ slab_carpet_fraction Slab: Carpet Fraction - Fraction of the slab floor area that is carpeted. If not provided, the OS-HPXML default is used. + Fraction of the slab floor area that is carpeted. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-slabs'>HPXML Slabs</a>) is used. Double Frac false @@ -1322,7 +1366,7 @@ slab_carpet_r Slab: Carpet R-value - R-value of the slab carpet. If not provided, the OS-HPXML default is used. + R-value of the slab carpet. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-slabs'>HPXML Slabs</a>) is used. Double h-ft^2-R/Btu false @@ -1341,7 +1385,7 @@ roof_material_type Roof: Material Type - The material type of the roof. If not provided, the OS-HPXML default is used. + The material type of the roof. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-roofs'>HPXML Roofs</a>) is used. Choice false false @@ -1387,7 +1431,7 @@ roof_color Roof: Color - The color of the roof. If not provided, the OS-HPXML default is used. + The color of the roof. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-roofs'>HPXML Roofs</a>) is used. Choice false false @@ -1446,11 +1490,10 @@ roof_radiant_barrier_grade Roof: Radiant Barrier Grade - The grade of the radiant barrier. If not provided, the OS-HPXML default is used. + The grade of the radiant barrier. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-roofs'>HPXML Roofs</a>) is used. Choice false false - 1 1 @@ -1524,7 +1567,7 @@ wall_siding_type Wall: Siding Type - The siding type of the walls. Also applies to rim joists. If not provided, the OS-HPXML default is used. + The siding type of the walls. Also applies to rim joists. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-walls'>HPXML Walls</a>) is used. Choice false false @@ -1578,7 +1621,7 @@ wall_color Wall: Color - The color of the walls. Also applies to rim joists. If not provided, the OS-HPXML default is used. + The color of the walls. Also applies to rim joists. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-walls'>HPXML Walls</a>) is used. Choice false false @@ -1708,7 +1751,7 @@ window_fraction_operable Windows: Fraction Operable - Fraction of windows that are operable. If not provided, the OS-HPXML default is used. + Fraction of windows that are operable. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-windows'>HPXML Windows</a>) is used. Double Frac false @@ -1717,7 +1760,7 @@ window_natvent_availability Windows: Natural Ventilation Availability - For operable windows, the number of days/week that windows can be opened by occupants for natural ventilation. If not provided, the OS-HPXML default is used. + For operable windows, the number of days/week that windows can be opened by occupants for natural ventilation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-windows'>HPXML Windows</a>) is used. Integer Days/week false @@ -1745,7 +1788,7 @@ window_interior_shading_winter Windows: Winter Interior Shading - Interior shading coefficient for the winter season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used. + Interior shading coefficient for the winter season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-windows'>HPXML Windows</a>) is used. Double Frac false @@ -1754,7 +1797,7 @@ window_interior_shading_summer Windows: Summer Interior Shading - Interior shading coefficient for the summer season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used. + Interior shading coefficient for the summer season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-windows'>HPXML Windows</a>) is used. Double Frac false @@ -1763,7 +1806,7 @@ window_exterior_shading_winter Windows: Winter Exterior Shading - Exterior shading coefficient for the winter season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used. + Exterior shading coefficient for the winter season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-windows'>HPXML Windows</a>) is used. Double Frac false @@ -1772,7 +1815,7 @@ window_exterior_shading_summer Windows: Summer Exterior Shading - Exterior shading coefficient for the summer season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used. + Exterior shading coefficient for the summer season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-windows'>HPXML Windows</a>) is used. Double Frac false @@ -1781,7 +1824,7 @@ window_shading_summer_season Windows: Shading Summer Season - Enter a date like "May 1 - Sep 30". Defines the summer season for purposes of shading coefficients; the rest of the year is assumed to be winter. If not provided, the OS-HPXML default is used. + Enter a date like 'May 1 - Sep 30'. Defines the summer season for purposes of shading coefficients; the rest of the year is assumed to be winter. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-windows'>HPXML Windows</a>) is used. String false false @@ -2092,7 +2135,7 @@ air_leakage_has_flue_or_chimney_in_conditioned_space Air Leakage: Has Flue or Chimney in Conditioned Space - Presence of flue or chimney with combustion air from conditioned space; used for infiltration model. If not provided, the OS-HPXML default is used. + Presence of flue or chimney with combustion air from conditioned space; used for infiltration model. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#flue-or-chimney'>Flue or Chimney</a>) is used. Boolean false false @@ -2145,17 +2188,13 @@ Stove - PortableHeater - PortableHeater + SpaceHeater + SpaceHeater Fireplace Fireplace - - FixedHeater - FixedHeater - Shared Boiler w/ Baseboard Shared Boiler w/ Baseboard @@ -2218,7 +2257,7 @@ heating_system_heating_capacity Heating System: Heating Capacity - The output heating capacity of the heating system. If not provided, the OS-HPXML autosized default is used. + The output heating capacity of the heating system. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-heating-systems'>HPXML Heating Systems</a>) is used. Double Btu/hr false @@ -2326,7 +2365,7 @@ cooling_system_cooling_compressor_type Cooling System: Cooling Compressor Type - The compressor type of the cooling system. Only applies to central air conditioner. If not provided, the OS-HPXML default is used. + The compressor type of the cooling system. Only applies to central air conditioner and mini-split. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#central-air-conditioner'>Central Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-air-conditioner'>Mini-Split Air Conditioner</a>) is used. Choice false false @@ -2348,7 +2387,7 @@ cooling_system_cooling_sensible_heat_fraction Cooling System: Cooling Sensible Heat Fraction - The sensible heat fraction of the cooling system. Ignored for evaporative cooler. If not provided, the OS-HPXML default is used. + The sensible heat fraction of the cooling system. Ignored for evaporative cooler. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#central-air-conditioner'>Central Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner'>Room Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-air-conditioner'>Packaged Terminal Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-air-conditioner'>Mini-Split Air Conditioner</a>) is used. Double Frac false @@ -2357,7 +2396,7 @@ cooling_system_cooling_capacity Cooling System: Cooling Capacity - The output cooling capacity of the cooling system. If not provided, the OS-HPXML autosized default is used. + The output cooling capacity of the cooling system. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#central-air-conditioner'>Central Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner'>Room Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-air-conditioner'>Packaged Terminal Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#evaporative-cooler'>Evaporative Cooler</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-air-conditioner'>Mini-Split Air Conditioner</a>) is used. Double Btu/hr false @@ -2413,7 +2452,7 @@ cooling_system_crankcase_heater_watts Cooling System: Crankcase Heater Power Watts - Cooling system crankcase heater power consumption in Watts. Applies only to central air conditioner, mini-split, packaged terminal air conditioner and room air conditioner. If not provided, the OS-HPXML default is used. + Cooling system crankcase heater power consumption in Watts. Applies only to central air conditioner, room air conditioner, packaged terminal air conditioner and mini-split. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#central-air-conditioner'>Central Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner'>Room Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-air-conditioner'>Packaged Terminal Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-air-conditioner'>Mini-Split Air Conditioner</a>) is used. Double W false @@ -2469,7 +2508,7 @@ cooling_system_integrated_heating_system_capacity Cooling System: Integrated Heating System Heating Capacity - The output heating capacity of the heating system integrated into cooling system. If not provided, the OS-HPXML autosized default is used. Only used for packaged terminal air conditioner and room air conditioner. + The output heating capacity of the heating system integrated into cooling system. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner'>Room Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-air-conditioner'>Packaged Terminal Air Conditioner</a>) is used. Only used for room air conditioner and packaged terminal air conditioner. Double Btu/hr false @@ -2590,7 +2629,7 @@ heat_pump_cooling_compressor_type Heat Pump: Cooling Compressor Type - The compressor type of the heat pump. Only applies to air-to-air. If not provided, the OS-HPXML default is used. + The compressor type of the heat pump. Only applies to air-to-air and mini-split. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-to-air-heat-pump'>Air-to-Air Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-heat-pump'>Mini-Split Heat Pump</a>) is used. Choice false false @@ -2612,7 +2651,7 @@ heat_pump_cooling_sensible_heat_fraction Heat Pump: Cooling Sensible Heat Fraction - The sensible heat fraction of the heat pump. If not provided, the OS-HPXML default is used. + The sensible heat fraction of the heat pump. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-to-air-heat-pump'>Air-to-Air Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-heat-pump'>Mini-Split Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-heat-pump'>Packaged Terminal Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner-w-reverse-cycle'>Room Air Conditioner w/ Reverse Cycle</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#ground-to-air-heat-pump'>Ground-to-Air Heat Pump</a>) is used. Double Frac false @@ -2621,7 +2660,7 @@ heat_pump_heating_capacity Heat Pump: Heating Capacity - The output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default is used. + The output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-to-air-heat-pump'>Air-to-Air Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-heat-pump'>Mini-Split Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-heat-pump'>Packaged Terminal Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner-w-reverse-cycle'>Room Air Conditioner w/ Reverse Cycle</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#ground-to-air-heat-pump'>Ground-to-Air Heat Pump</a>) is used. Double Btu/hr false @@ -2630,7 +2669,7 @@ heat_pump_heating_capacity_retention_fraction Heat Pump: Heating Capacity Retention Fraction - The output heating capacity of the heat pump at a user-specified temperature (e.g., 17F or 5F) divided by the above nominal heating capacity. Applies to all heat pump types except ground-to-air. If not provided, the OS-HPXML default is used. + The output heating capacity of the heat pump at a user-specified temperature (e.g., 17F or 5F) divided by the above nominal heating capacity. Applies to all heat pump types except ground-to-air. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-to-air-heat-pump'>Air-to-Air Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-heat-pump'>Mini-Split Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-heat-pump'>Packaged Terminal Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner-w-reverse-cycle'>Room Air Conditioner w/ Reverse Cycle</a>) is used. Double Frac false @@ -2648,7 +2687,7 @@ heat_pump_cooling_capacity Heat Pump: Cooling Capacity - The output cooling capacity of the heat pump. If not provided, the OS-HPXML autosized default is used. + The output cooling capacity of the heat pump. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-to-air-heat-pump'>Air-to-Air Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-heat-pump'>Mini-Split Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-heat-pump'>Packaged Terminal Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner-w-reverse-cycle'>Room Air Conditioner w/ Reverse Cycle</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#ground-to-air-heat-pump'>Ground-to-Air Heat Pump</a>) is used. Double Btu/hr false @@ -2677,7 +2716,7 @@ heat_pump_compressor_lockout_temp Heat Pump: Compressor Lockout Temperature - The temperature below which the heat pump compressor is disabled. If both this and Backup Heating Lockout Temperature are provided and use the same value, it essentially defines a switchover temperature (for, e.g., a dual-fuel heat pump). Applies to all heat pump types other than ground-to-air. If not provided, the OS-HPXML default is used. + The temperature below which the heat pump compressor is disabled. If both this and Backup Heating Lockout Temperature are provided and use the same value, it essentially defines a switchover temperature (for, e.g., a dual-fuel heat pump). Applies to all heat pump types other than ground-to-air. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-to-air-heat-pump'>Air-to-Air Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-heat-pump'>Mini-Split Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-heat-pump'>Packaged Terminal Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner-w-reverse-cycle'>Room Air Conditioner w/ Reverse Cycle</a>) is used. Double deg-F false @@ -2745,7 +2784,7 @@ heat_pump_backup_heating_capacity Heat Pump: Backup Heating Capacity - The backup output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default is used. Only applies if Backup Type is 'integrated'. + The backup output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#backup'>Backup</a>) is used. Only applies if Backup Type is 'integrated'. Double Btu/hr false @@ -2754,7 +2793,7 @@ heat_pump_backup_heating_lockout_temp Heat Pump: Backup Heating Lockout Temperature - The temperature above which the heat pump backup system is disabled. If both this and Compressor Lockout Temperature are provided and use the same value, it essentially defines a switchover temperature (for, e.g., a dual-fuel heat pump). Applies for both Backup Type of 'integrated' and 'separate'. If not provided, the OS-HPXML default is used. + The temperature above which the heat pump backup system is disabled. If both this and Compressor Lockout Temperature are provided and use the same value, it essentially defines a switchover temperature (for, e.g., a dual-fuel heat pump). Applies for both Backup Type of 'integrated' and 'separate'. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#backup'>Backup</a>) is used. Double deg-F false @@ -2763,7 +2802,7 @@ heat_pump_sizing_methodology Heat Pump: Sizing Methodology - The auto-sizing methodology to use when the heat pump capacity is not provided. If not provided, the OS-HPXML default is used. + The auto-sizing methodology to use when the heat pump capacity is not provided. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-hvac-sizing-control'>HPXML HVAC Sizing Control</a>) is used. Choice false false @@ -2821,7 +2860,7 @@ heat_pump_crankcase_heater_watts Heat Pump: Crankcase Heater Power Watts - Heat Pump crankcase heater power consumption in Watts. Applies only to air-to-air, mini-split, packaged terminal heat pump and room air conditioner with reverse cycle. If not provided, the OS-HPXML default is used. + Heat Pump crankcase heater power consumption in Watts. Applies only to air-to-air, mini-split, packaged terminal heat pump and room air conditioner with reverse cycle. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-to-air-heat-pump'>Air-to-Air Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-heat-pump'>Mini-Split Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-heat-pump'>Packaged Terminal Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner-w-reverse-cycle'>Room Air Conditioner w/ Reverse Cycle</a>) is used. Double W false @@ -2865,17 +2904,13 @@ Stove - PortableHeater - PortableHeater + SpaceHeater + SpaceHeater Fireplace Fireplace - - FixedHeater - FixedHeater - @@ -2930,7 +2965,7 @@ heating_system_2_heating_capacity Heating System 2: Heating Capacity - The output heating capacity of the second heating system. If not provided, the OS-HPXML autosized default is used. + The output heating capacity of the second heating system. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-heating-systems'>HPXML Heating Systems</a>) is used. Double Btu/hr false @@ -2985,7 +3020,7 @@ hvac_control_heating_season_period HVAC Control: Heating Season Period - Enter a date like 'Nov 1 - Jun 30'. If not provided, the OS-HPXML default is used. Can also provide 'BuildingAmerica' to use automatic seasons from the Building America House Simulation Protocols. + Enter a date like 'Nov 1 - Jun 30'. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-hvac-control'>HPXML HVAC Control</a>) is used. Can also provide 'BuildingAmerica' to use automatic seasons from the Building America House Simulation Protocols. String false false @@ -2993,7 +3028,7 @@ hvac_control_cooling_season_period HVAC Control: Cooling Season Period - Enter a date like 'Jun 1 - Oct 31'. If not provided, the OS-HPXML default is used. Can also provide 'BuildingAmerica' to use automatic seasons from the Building America House Simulation Protocols. + Enter a date like 'Jun 1 - Oct 31'. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-hvac-control'>HPXML HVAC Control</a>) is used. Can also provide 'BuildingAmerica' to use automatic seasons from the Building America House Simulation Protocols. String false false @@ -3042,14 +3077,14 @@ ducts_supply_location Ducts: Supply Location - The location of the supply ducts. If not provided, the OS-HPXML default is used. + The location of the supply ducts. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-distribution'>Air Distribution</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -3059,6 +3094,10 @@ basement - unconditioned basement - unconditioned + + crawlspace + crawlspace + crawlspace - vented crawlspace - vented @@ -3071,6 +3110,10 @@ crawlspace - conditioned crawlspace - conditioned + + attic + attic + attic - vented attic - vented @@ -3115,6 +3158,10 @@ other non-freezing space other non-freezing space + + manufactured home belly + manufactured home belly + @@ -3156,23 +3203,32 @@ ducts_supply_surface_area Ducts: Supply Surface Area - The surface area of the supply ducts. If not provided, the OS-HPXML default is used. + The supply ducts surface area in the given location. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-distribution'>Air Distribution</a>) is used. Double ft^2 false false + + ducts_supply_surface_area_fraction + Ducts: Supply Area Fraction + The fraction of supply ducts surface area in the given location. Only used if Surface Area is not provided. If the fraction is less than 1, the remaining duct area is assumed to be in conditioned space. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-distribution'>Air Distribution</a>) is used. + Double + frac + false + false + ducts_return_location Ducts: Return Location - The location of the return ducts. If not provided, the OS-HPXML default is used. + The location of the return ducts. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-distribution'>Air Distribution</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -3182,6 +3238,10 @@ basement - unconditioned basement - unconditioned + + crawlspace + crawlspace + crawlspace - vented crawlspace - vented @@ -3194,6 +3254,10 @@ crawlspace - conditioned crawlspace - conditioned + + attic + attic + attic - vented attic - vented @@ -3238,6 +3302,10 @@ other non-freezing space other non-freezing space + + manufactured home belly + manufactured home belly + @@ -3279,16 +3347,25 @@ ducts_return_surface_area Ducts: Return Surface Area - The surface area of the return ducts. If not provided, the OS-HPXML default is used. + The return ducts surface area in the given location. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-distribution'>Air Distribution</a>) is used. Double ft^2 false false + + ducts_return_surface_area_fraction + Ducts: Return Area Fraction + The fraction of return ducts surface area in the given location. Only used if Surface Area is not provided. If the fraction is less than 1, the remaining duct area is assumed to be in conditioned space. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-distribution'>Air Distribution</a>) is used. + Double + frac + false + false + ducts_number_of_return_registers Ducts: Number of Return Registers - The number of return registers of the ducts. Only used to calculate default return duct surface area. If not provided, the OS-HPXML default is used. + The number of return registers of the ducts. Only used to calculate default return duct surface area. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-distribution'>Air Distribution</a>) is used. Integer # false @@ -3336,7 +3413,7 @@ mech_vent_flow_rate Mechanical Ventilation: Flow Rate - The flow rate of the mechanical ventilation. If not provided, the OS-HPXML default is used. + The flow rate of the mechanical ventilation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-ventilation-fan'>Whole Ventilation Fan</a>) is used. Double CFM false @@ -3345,7 +3422,7 @@ mech_vent_hours_in_operation Mechanical Ventilation: Hours In Operation - The hours in operation of the mechanical ventilation. If not provided, the OS-HPXML default is used. + The hours in operation of the mechanical ventilation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-ventilation-fan'>Whole Ventilation Fan</a>) is used. Double hrs/day false @@ -3393,7 +3470,7 @@ mech_vent_fan_power Mechanical Ventilation: Fan Power - The fan power of the mechanical ventilation. If not provided, the OS-HPXML default is used. + The fan power of the mechanical ventilation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-ventilation-fan'>Whole Ventilation Fan</a>) is used. Double W false @@ -3613,7 +3690,7 @@ kitchen_fans_quantity Kitchen Fans: Quantity - The quantity of the kitchen fans. If not provided, the OS-HPXML default is used. + The quantity of the kitchen fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Integer # false @@ -3622,7 +3699,7 @@ kitchen_fans_flow_rate Kitchen Fans: Flow Rate - The flow rate of the kitchen fan. If not provided, the OS-HPXML default is used. + The flow rate of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Double CFM false @@ -3631,7 +3708,7 @@ kitchen_fans_hours_in_operation Kitchen Fans: Hours In Operation - The hours in operation of the kitchen fan. If not provided, the OS-HPXML default is used. + The hours in operation of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Double hrs/day false @@ -3640,7 +3717,7 @@ kitchen_fans_power Kitchen Fans: Fan Power - The fan power of the kitchen fan. If not provided, the OS-HPXML default is used. + The fan power of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Double W false @@ -3649,7 +3726,7 @@ kitchen_fans_start_hour Kitchen Fans: Start Hour - The start hour of the kitchen fan. If not provided, the OS-HPXML default is used. + The start hour of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Integer hr false @@ -3658,7 +3735,7 @@ bathroom_fans_quantity Bathroom Fans: Quantity - The quantity of the bathroom fans. If not provided, the OS-HPXML default is used. + The quantity of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Integer # false @@ -3667,7 +3744,7 @@ bathroom_fans_flow_rate Bathroom Fans: Flow Rate - The flow rate of the bathroom fans. If not provided, the OS-HPXML default is used. + The flow rate of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Double CFM false @@ -3676,7 +3753,7 @@ bathroom_fans_hours_in_operation Bathroom Fans: Hours In Operation - The hours in operation of the bathroom fans. If not provided, the OS-HPXML default is used. + The hours in operation of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Double hrs/day false @@ -3685,7 +3762,7 @@ bathroom_fans_power Bathroom Fans: Fan Power - The fan power of the bathroom fans. If not provided, the OS-HPXML default is used. + The fan power of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Double W false @@ -3694,7 +3771,7 @@ bathroom_fans_start_hour Bathroom Fans: Start Hour - The start hour of the bathroom fans. If not provided, the OS-HPXML default is used. + The start hour of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Integer hr false @@ -3722,7 +3799,7 @@ whole_house_fan_flow_rate Whole House Fan: Flow Rate - The flow rate of the whole house fan. If not provided, the OS-HPXML default is used. + The flow rate of the whole house fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-house-fan'>Whole House Fan</a>) is used. Double CFM false @@ -3731,7 +3808,7 @@ whole_house_fan_power Whole House Fan: Fan Power - The fan power of the whole house fan. If not provided, the OS-HPXML default is used. + The fan power of the whole house fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-house-fan'>Whole House Fan</a>) is used. Double W false @@ -3810,14 +3887,14 @@ water_heater_location Water Heater: Location - The location of water heater. If not provided, the OS-HPXML default is used. + The location of water heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-water-heating-systems'>HPXML Water Heating Systems</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -3831,6 +3908,10 @@ garage garage + + attic + attic + attic - vented attic - vented @@ -3839,6 +3920,10 @@ attic - unvented attic - unvented + + crawlspace + crawlspace + crawlspace - vented crawlspace - vented @@ -3876,7 +3961,7 @@ water_heater_tank_volume Water Heater: Tank Volume - Nominal volume of water heater tank. Only applies to storage water heater, heat pump water heater, and space-heating boiler with storage tank. If not provided, the OS-HPXML default is used. + Nominal volume of water heater tank. Only applies to storage water heater, heat pump water heater, and space-heating boiler with storage tank. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#conventional-storage'>Conventional Storage</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#heat-pump'>Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#combi-boiler-w-storage'>Combi Boiler w/ Storage</a>) is used. Double gal false @@ -3913,7 +3998,7 @@ water_heater_usage_bin Water Heater: Usage Bin - The usage of the water heater. Only applies if Efficiency Type is UniformEnergyFactor and Type is not instantaneous water heater. Does not apply to space-heating boilers. If not provided, the OS-HPXML default is used. + The usage of the water heater. Only applies if Efficiency Type is UniformEnergyFactor and Type is not instantaneous water heater. Does not apply to space-heating boilers. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#conventional-storage'>Conventional Storage</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#heat-pump'>Heat Pump</a>) is used. Choice false false @@ -3939,7 +4024,7 @@ water_heater_recovery_efficiency Water Heater: Recovery Efficiency - Ratio of energy delivered to water heater to the energy content of the fuel consumed by the water heater. Only used for non-electric storage water heaters. If not provided, the OS-HPXML default is used. + Ratio of energy delivered to water heater to the energy content of the fuel consumed by the water heater. Only used for non-electric storage water heaters. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#conventional-storage'>Conventional Storage</a>) is used. Double Frac false @@ -3948,7 +4033,7 @@ water_heater_heating_capacity Water Heater: Heating Capacity - Heating capacity. Only applies to storage water heater. If not provided, the OS-HPXML default is used. + Heating capacity. Only applies to storage water heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#conventional-storage'>Conventional Storage</a>) is used. Double Btu/hr false @@ -3957,7 +4042,7 @@ water_heater_standby_loss Water Heater: Standby Loss - The standby loss of water heater. Only applies to space-heating boilers. If not provided, the OS-HPXML default is used. + The standby loss of water heater. Only applies to space-heating boilers. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#combi-boiler-w-storage'>Combi Boiler w/ Storage</a>) is used. Double deg-F/hr false @@ -3975,7 +4060,7 @@ water_heater_setpoint_temperature Water Heater: Setpoint Temperature - The setpoint temperature of water heater. If not provided, the OS-HPXML default is used. + The setpoint temperature of water heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-water-heating-systems'>HPXML Water Heating Systems</a>) is used. Double deg-F false @@ -4012,7 +4097,7 @@ water_heater_tank_model_type Water Heater: Tank Type - Type of tank model to use. The 'stratified' tank generally provide more accurate results, but may significantly increase run time. Applies only to storage water heater. If not provided, the OS-HPXML default is used. + Type of tank model to use. The 'stratified' tank generally provide more accurate results, but may significantly increase run time. Applies only to storage water heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#conventional-storage'>Conventional Storage</a>) is used. Choice false false @@ -4030,7 +4115,7 @@ water_heater_operating_mode Water Heater: Operating Mode - The water heater operating mode. The 'heat pump only' option only uses the heat pump, while 'hybrid/auto' allows the backup electric resistance to come on in high demand situations. This is ignored if a scheduled operating mode type is selected. Applies only to heat pump water heater. If not provided, the OS-HPXML default is used. + The water heater operating mode. The 'heat pump only' option only uses the heat pump, while 'hybrid/auto' allows the backup electric resistance to come on in high demand situations. This is ignored if a scheduled operating mode type is selected. Applies only to heat pump water heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#heat-pump'>Heat Pump</a>) is used. Choice false false @@ -4067,7 +4152,7 @@ hot_water_distribution_standard_piping_length Hot Water Distribution: Standard Piping Length - If the distribution system is Standard, the length of the piping. If not provided, the OS-HPXML default is used. + If the distribution system is Standard, the length of the piping. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#standard'>Standard</a>) is used. Double ft false @@ -4107,7 +4192,7 @@ hot_water_distribution_recirc_piping_length Hot Water Distribution: Recirculation Piping Length - If the distribution system is Recirculation, the length of the recirculation piping. If not provided, the OS-HPXML default is used. + If the distribution system is Recirculation, the length of the recirculation piping. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#recirculation'>Recirculation</a>) is used. Double ft false @@ -4116,7 +4201,7 @@ hot_water_distribution_recirc_branch_piping_length Hot Water Distribution: Recirculation Branch Piping Length - If the distribution system is Recirculation, the length of the recirculation branch piping. If not provided, the OS-HPXML default is used. + If the distribution system is Recirculation, the length of the recirculation branch piping. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#recirculation'>Recirculation</a>) is used. Double ft false @@ -4125,7 +4210,7 @@ hot_water_distribution_recirc_pump_power Hot Water Distribution: Recirculation Pump Power - If the distribution system is Recirculation, the recirculation pump power. If not provided, the OS-HPXML default is used. + If the distribution system is Recirculation, the recirculation pump power. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#recirculation'>Recirculation</a>) is used. Double W false @@ -4134,7 +4219,7 @@ hot_water_distribution_pipe_r Hot Water Distribution: Pipe Insulation Nominal R-Value - Nominal R-value of the pipe insulation. If not provided, the OS-HPXML default is used. + Nominal R-value of the pipe insulation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-hot-water-distribution'>HPXML Hot Water Distribution</a>) is used. Double h-ft^2-R/Btu false @@ -4233,7 +4318,7 @@ water_fixtures_usage_multiplier Hot Water Fixtures: Usage Multiplier - Multiplier on the hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-water-fixtures'>HPXML Water Fixtures</a>) is used. Double false false @@ -4360,7 +4445,7 @@ solar_thermal_storage_volume Solar Thermal: Storage Volume - The storage volume of the solar thermal system. If not provided, the OS-HPXML default is used. + The storage volume of the solar thermal system. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#detailed-inputs'>Detailed Inputs</a>) is used. Double gal false @@ -4398,7 +4483,7 @@ pv_system_module_type PV System: Module Type - Module type of the PV system. If not provided, the OS-HPXML default is used. + Module type of the PV system. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Choice false false @@ -4420,7 +4505,7 @@ pv_system_location PV System: Location - Location of the PV system. If not provided, the OS-HPXML default is used. + Location of the PV system. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Choice false false @@ -4438,7 +4523,7 @@ pv_system_tracking PV System: Tracking - Type of tracking for the PV system. If not provided, the OS-HPXML default is used. + Type of tracking for the PV system. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Choice false false @@ -4494,7 +4579,7 @@ pv_system_inverter_efficiency PV System: Inverter Efficiency - Inverter efficiency of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default is used. + Inverter efficiency of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Double Frac false @@ -4503,7 +4588,7 @@ pv_system_system_losses_fraction PV System: System Losses Fraction - System losses fraction of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default is used. + System losses fraction of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Double Frac false @@ -4540,7 +4625,7 @@ pv_system_2_module_type PV System 2: Module Type - Module type of the second PV system. If not provided, the OS-HPXML default is used. + Module type of the second PV system. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Choice false false @@ -4562,7 +4647,7 @@ pv_system_2_location PV System 2: Location - Location of the second PV system. If not provided, the OS-HPXML default is used. + Location of the second PV system. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Choice false false @@ -4580,7 +4665,7 @@ pv_system_2_tracking PV System 2: Tracking - Type of tracking for the second PV system. If not provided, the OS-HPXML default is used. + Type of tracking for the second PV system. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Choice false false @@ -4655,14 +4740,14 @@ battery_location Battery: Location - The space type for the lithium ion battery location. If not provided, the OS-HPXML default is used. + The space type for the lithium ion battery location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-batteries'>HPXML Batteries</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -4672,6 +4757,10 @@ basement - unconditioned basement - unconditioned + + crawlspace + crawlspace + crawlspace - vented crawlspace - vented @@ -4684,6 +4773,10 @@ crawlspace - conditioned crawlspace - conditioned + + attic + attic + attic - vented attic - vented @@ -4705,7 +4798,7 @@ battery_power Battery: Rated Power Output - The rated power output of the lithium ion battery. If not provided, the OS-HPXML default is used. + The rated power output of the lithium ion battery. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-batteries'>HPXML Batteries</a>) is used. Double W false @@ -4714,7 +4807,7 @@ battery_capacity Battery: Nominal Capacity - The nominal capacity of the lithium ion battery. If not provided, the OS-HPXML default is used. + The nominal capacity of the lithium ion battery. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-batteries'>HPXML Batteries</a>) is used. Double kWh false @@ -4723,7 +4816,7 @@ battery_usable_capacity Battery: Usable Capacity - The usable capacity of the lithium ion battery. If not provided, the OS-HPXML default is used. + The usable capacity of the lithium ion battery. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-batteries'>HPXML Batteries</a>) is used. Double kWh false @@ -4732,7 +4825,7 @@ battery_round_trip_efficiency Battery: Round Trip Efficiency - The round trip efficiency of the lithium ion battery. If not provided, the OS-HPXML default is used. + The round trip efficiency of the lithium ion battery. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-batteries'>HPXML Batteries</a>) is used. Double Frac false @@ -4787,7 +4880,7 @@ lighting_interior_usage_multiplier Lighting: Interior Usage Multiplier - Multiplier on the lighting energy usage (interior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the lighting energy usage (interior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-lighting'>HPXML Lighting</a>) is used. Double false false @@ -4822,7 +4915,7 @@ lighting_exterior_usage_multiplier Lighting: Exterior Usage Multiplier - Multiplier on the lighting energy usage (exterior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the lighting energy usage (exterior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-lighting'>HPXML Lighting</a>) is used. Double false false @@ -4857,7 +4950,7 @@ lighting_garage_usage_multiplier Lighting: Garage Usage Multiplier - Multiplier on the lighting energy usage (garage) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the lighting energy usage (garage) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-lighting'>HPXML Lighting</a>) is used. Double false false @@ -4884,7 +4977,7 @@ holiday_lighting_daily_kwh Holiday Lighting: Daily Consumption - The daily energy consumption for holiday lighting (exterior). If not provided, the OS-HPXML default is used. + The daily energy consumption for holiday lighting (exterior). If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-lighting'>HPXML Lighting</a>) is used. Double kWh/day false @@ -4893,7 +4986,7 @@ holiday_lighting_period Holiday Lighting: Period - Enter a date like "Nov 25 - Jan 5". If not provided, the OS-HPXML default is used. + Enter a date like 'Nov 25 - Jan 5'. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-lighting'>HPXML Lighting</a>) is used. String false false @@ -5002,14 +5095,14 @@ clothes_washer_location Clothes Washer: Location - The space type for the clothes washer location. If not provided, the OS-HPXML default is used. + The space type for the clothes washer location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -5063,7 +5156,7 @@ clothes_washer_efficiency Clothes Washer: Efficiency - The efficiency of the clothes washer. If not provided, the OS-HPXML default is used. + The efficiency of the clothes washer. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double ft^3/kWh-cyc false @@ -5072,7 +5165,7 @@ clothes_washer_rated_annual_kwh Clothes Washer: Rated Annual Consumption - The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default is used. + The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double kWh/yr false @@ -5081,7 +5174,7 @@ clothes_washer_label_electric_rate Clothes Washer: Label Electric Rate - The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default is used. + The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double $/kWh false @@ -5090,7 +5183,7 @@ clothes_washer_label_gas_rate Clothes Washer: Label Gas Rate - The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default is used. + The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double $/therm false @@ -5099,7 +5192,7 @@ clothes_washer_label_annual_gas_cost Clothes Washer: Label Annual Cost with Gas DHW - The annual cost of using the system under test conditions. Input is obtained from the EnergyGuide label. If not provided, the OS-HPXML default is used. + The annual cost of using the system under test conditions. Input is obtained from the EnergyGuide label. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double $ false @@ -5108,7 +5201,7 @@ clothes_washer_label_usage Clothes Washer: Label Usage - The clothes washer loads per week. If not provided, the OS-HPXML default is used. + The clothes washer loads per week. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double cyc/wk false @@ -5117,7 +5210,7 @@ clothes_washer_capacity Clothes Washer: Drum Volume - Volume of the washer drum. Obtained from the EnergyStar website or the manufacturer's literature. If not provided, the OS-HPXML default is used. + Volume of the washer drum. Obtained from the EnergyStar website or the manufacturer's literature. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double ft^3 false @@ -5126,7 +5219,7 @@ clothes_washer_usage_multiplier Clothes Washer: Usage Multiplier - Multiplier on the clothes washer energy and hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the clothes washer energy and hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double false false @@ -5153,14 +5246,14 @@ clothes_dryer_location Clothes Dryer: Location - The space type for the clothes dryer location. If not provided, the OS-HPXML default is used. + The space type for the clothes dryer location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-dryer'>HPXML Clothes Dryer</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -5249,7 +5342,7 @@ clothes_dryer_efficiency Clothes Dryer: Efficiency - The efficiency of the clothes dryer. If not provided, the OS-HPXML default is used. + The efficiency of the clothes dryer. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-dryer'>HPXML Clothes Dryer</a>) is used. Double lb/kWh false @@ -5258,7 +5351,7 @@ clothes_dryer_vented_flow_rate Clothes Dryer: Vented Flow Rate - The exhaust flow rate of the vented clothes dryer. If not provided, the OS-HPXML default is used. + The exhaust flow rate of the vented clothes dryer. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-dryer'>HPXML Clothes Dryer</a>) is used. Double CFM false @@ -5267,7 +5360,7 @@ clothes_dryer_usage_multiplier Clothes Dryer: Usage Multiplier - Multiplier on the clothes dryer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the clothes dryer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-dryer'>HPXML Clothes Dryer</a>) is used. Double false false @@ -5294,14 +5387,14 @@ dishwasher_location Dishwasher: Location - The space type for the dishwasher location. If not provided, the OS-HPXML default is used. + The space type for the dishwasher location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -5355,7 +5448,7 @@ dishwasher_efficiency Dishwasher: Efficiency - The efficiency of the dishwasher. If not provided, the OS-HPXML default is used. + The efficiency of the dishwasher. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Double RatedAnnualkWh or EnergyFactor false @@ -5364,7 +5457,7 @@ dishwasher_label_electric_rate Dishwasher: Label Electric Rate - The label electric rate of the dishwasher. If not provided, the OS-HPXML default is used. + The label electric rate of the dishwasher. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Double $/kWh false @@ -5373,7 +5466,7 @@ dishwasher_label_gas_rate Dishwasher: Label Gas Rate - The label gas rate of the dishwasher. If not provided, the OS-HPXML default is used. + The label gas rate of the dishwasher. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Double $/therm false @@ -5382,7 +5475,7 @@ dishwasher_label_annual_gas_cost Dishwasher: Label Annual Gas Cost - The label annual gas cost of the dishwasher. If not provided, the OS-HPXML default is used. + The label annual gas cost of the dishwasher. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Double $ false @@ -5391,7 +5484,7 @@ dishwasher_label_usage Dishwasher: Label Usage - The dishwasher loads per week. If not provided, the OS-HPXML default is used. + The dishwasher loads per week. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Double cyc/wk false @@ -5400,7 +5493,7 @@ dishwasher_place_setting_capacity Dishwasher: Number of Place Settings - The number of place settings for the unit. Data obtained from manufacturer's literature. If not provided, the OS-HPXML default is used. + The number of place settings for the unit. Data obtained from manufacturer's literature. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Integer # false @@ -5409,7 +5502,7 @@ dishwasher_usage_multiplier Dishwasher: Usage Multiplier - Multiplier on the dishwasher energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the dishwasher energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Double false false @@ -5436,14 +5529,14 @@ refrigerator_location Refrigerator: Location - The space type for the refrigerator location. If not provided, the OS-HPXML default is used. + The space type for the refrigerator location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-refrigerators'>HPXML Refrigerators</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -5478,7 +5571,7 @@ refrigerator_rated_annual_kwh Refrigerator: Rated Annual Consumption - The EnergyGuide rated annual energy consumption for a refrigerator. If not provided, the OS-HPXML default is used. + The EnergyGuide rated annual energy consumption for a refrigerator. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-refrigerators'>HPXML Refrigerators</a>) is used. Double kWh/yr false @@ -5487,7 +5580,7 @@ refrigerator_usage_multiplier Refrigerator: Usage Multiplier - Multiplier on the refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-refrigerators'>HPXML Refrigerators</a>) is used. Double false false @@ -5514,14 +5607,14 @@ extra_refrigerator_location Extra Refrigerator: Location - The space type for the extra refrigerator location. If not provided, the OS-HPXML default is used. + The space type for the extra refrigerator location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-refrigerators'>HPXML Refrigerators</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -5556,7 +5649,7 @@ extra_refrigerator_rated_annual_kwh Extra Refrigerator: Rated Annual Consumption - The EnergyGuide rated annual energy consumption for an extra rrefrigerator. If not provided, the OS-HPXML default is used. + The EnergyGuide rated annual energy consumption for an extra rrefrigerator. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-refrigerators'>HPXML Refrigerators</a>) is used. Double kWh/yr false @@ -5565,7 +5658,7 @@ extra_refrigerator_usage_multiplier Extra Refrigerator: Usage Multiplier - Multiplier on the extra refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the extra refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-refrigerators'>HPXML Refrigerators</a>) is used. Double false false @@ -5592,14 +5685,14 @@ freezer_location Freezer: Location - The space type for the freezer location. If not provided, the OS-HPXML default is used. + The space type for the freezer location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-freezers'>HPXML Freezers</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -5634,7 +5727,7 @@ freezer_rated_annual_kwh Freezer: Rated Annual Consumption - The EnergyGuide rated annual energy consumption for a freezer. If not provided, the OS-HPXML default is used. + The EnergyGuide rated annual energy consumption for a freezer. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-freezers'>HPXML Freezers</a>) is used. Double kWh/yr false @@ -5643,7 +5736,7 @@ freezer_usage_multiplier Freezer: Usage Multiplier - Multiplier on the freezer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the freezer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-freezers'>HPXML Freezers</a>) is used. Double false false @@ -5670,14 +5763,14 @@ cooking_range_oven_location Cooking Range/Oven: Location - The space type for the cooking range/oven location. If not provided, the OS-HPXML default is used. + The space type for the cooking range/oven location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-cooking-range-oven'>HPXML Cooking Range/Oven</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -5747,7 +5840,7 @@ cooking_range_oven_is_induction Cooking Range/Oven: Is Induction - Whether the cooking range is induction. If not provided, the OS-HPXML default is used. + Whether the cooking range is induction. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-cooking-range-oven'>HPXML Cooking Range/Oven</a>) is used. Boolean false false @@ -5765,7 +5858,7 @@ cooking_range_oven_is_convection Cooking Range/Oven: Is Convection - Whether the oven is convection. If not provided, the OS-HPXML default is used. + Whether the oven is convection. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-cooking-range-oven'>HPXML Cooking Range/Oven</a>) is used. Boolean false false @@ -5783,7 +5876,7 @@ cooking_range_oven_usage_multiplier Cooking Range/Oven: Usage Multiplier - Multiplier on the cooking range/oven energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the cooking range/oven energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-cooking-range-oven'>HPXML Cooking Range/Oven</a>) is used. Double false false @@ -5810,7 +5903,7 @@ ceiling_fan_efficiency Ceiling Fan: Efficiency - The efficiency rating of the ceiling fan(s) at medium speed. If not provided, the OS-HPXML default is used. + The efficiency rating of the ceiling fan(s) at medium speed. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-ceiling-fans'>HPXML Ceiling Fans</a>) is used. Double CFM/W false @@ -5819,7 +5912,7 @@ ceiling_fan_quantity Ceiling Fan: Quantity - Total number of ceiling fans. If not provided, the OS-HPXML default is used. + Total number of ceiling fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-ceiling-fans'>HPXML Ceiling Fans</a>) is used. Integer # false @@ -5828,7 +5921,7 @@ ceiling_fan_cooling_setpoint_temp_offset Ceiling Fan: Cooling Setpoint Temperature Offset - The cooling setpoint temperature offset during months when the ceiling fans are operating. Only applies if ceiling fan quantity is greater than zero. If not provided, the OS-HPXML default is used. + The cooling setpoint temperature offset during months when the ceiling fans are operating. Only applies if ceiling fan quantity is greater than zero. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-ceiling-fans'>HPXML Ceiling Fans</a>) is used. Double deg-F false @@ -5856,7 +5949,7 @@ misc_plug_loads_television_annual_kwh Misc Plug Loads: Television Annual kWh - The annual energy consumption of the television plug loads. If not provided, the OS-HPXML default is used. + The annual energy consumption of the television plug loads. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double kWh/yr false @@ -5865,7 +5958,7 @@ misc_plug_loads_television_usage_multiplier Misc Plug Loads: Television Usage Multiplier - Multiplier on the television energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the television energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double false false @@ -5873,7 +5966,7 @@ misc_plug_loads_other_annual_kwh Misc Plug Loads: Other Annual kWh - The annual energy consumption of the other residual plug loads. If not provided, the OS-HPXML default is used. + The annual energy consumption of the other residual plug loads. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double kWh/yr false @@ -5882,7 +5975,7 @@ misc_plug_loads_other_frac_sensible Misc Plug Loads: Other Sensible Fraction - Fraction of other residual plug loads' internal gains that are sensible. If not provided, the OS-HPXML default is used. + Fraction of other residual plug loads' internal gains that are sensible. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double Frac false @@ -5891,7 +5984,7 @@ misc_plug_loads_other_frac_latent Misc Plug Loads: Other Latent Fraction - Fraction of other residual plug loads' internal gains that are latent. If not provided, the OS-HPXML default is used. + Fraction of other residual plug loads' internal gains that are latent. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double Frac false @@ -5900,7 +5993,7 @@ misc_plug_loads_other_usage_multiplier Misc Plug Loads: Other Usage Multiplier - Multiplier on the other energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the other energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double false false @@ -5927,7 +6020,7 @@ misc_plug_loads_well_pump_annual_kwh Misc Plug Loads: Well Pump Annual kWh - The annual energy consumption of the well pump plug loads. If not provided, the OS-HPXML default is used. + The annual energy consumption of the well pump plug loads. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double kWh/yr false @@ -5936,7 +6029,7 @@ misc_plug_loads_well_pump_usage_multiplier Misc Plug Loads: Well Pump Usage Multiplier - Multiplier on the well pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the well pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double false false @@ -5963,7 +6056,7 @@ misc_plug_loads_vehicle_annual_kwh Misc Plug Loads: Vehicle Annual kWh - The annual energy consumption of the electric vehicle plug loads. If not provided, the OS-HPXML default is used. + The annual energy consumption of the electric vehicle plug loads. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double kWh/yr false @@ -5972,7 +6065,7 @@ misc_plug_loads_vehicle_usage_multiplier Misc Plug Loads: Vehicle Usage Multiplier - Multiplier on the electric vehicle energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the electric vehicle energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double false false @@ -6030,7 +6123,7 @@ misc_fuel_loads_grill_annual_therm Misc Fuel Loads: Grill Annual therm - The annual energy consumption of the fuel loads grill. If not provided, the OS-HPXML default is used. + The annual energy consumption of the fuel loads grill. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>) is used. Double therm/yr false @@ -6039,7 +6132,7 @@ misc_fuel_loads_grill_usage_multiplier Misc Fuel Loads: Grill Usage Multiplier - Multiplier on the fuel loads grill energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the fuel loads grill energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>) is used. Double false false @@ -6097,7 +6190,7 @@ misc_fuel_loads_lighting_annual_therm Misc Fuel Loads: Lighting Annual therm - The annual energy consumption of the fuel loads lighting. If not provided, the OS-HPXML default is used. + The annual energy consumption of the fuel loads lighting. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>)is used. Double therm/yr false @@ -6106,7 +6199,7 @@ misc_fuel_loads_lighting_usage_multiplier Misc Fuel Loads: Lighting Usage Multiplier - Multiplier on the fuel loads lighting energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the fuel loads lighting energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>) is used. Double false false @@ -6164,7 +6257,7 @@ misc_fuel_loads_fireplace_annual_therm Misc Fuel Loads: Fireplace Annual therm - The annual energy consumption of the fuel loads fireplace. If not provided, the OS-HPXML default is used. + The annual energy consumption of the fuel loads fireplace. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>) is used. Double therm/yr false @@ -6173,7 +6266,7 @@ misc_fuel_loads_fireplace_frac_sensible Misc Fuel Loads: Fireplace Sensible Fraction - Fraction of fireplace residual fuel loads' internal gains that are sensible. If not provided, the OS-HPXML default is used. + Fraction of fireplace residual fuel loads' internal gains that are sensible. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>) is used. Double Frac false @@ -6182,7 +6275,7 @@ misc_fuel_loads_fireplace_frac_latent Misc Fuel Loads: Fireplace Latent Fraction - Fraction of fireplace residual fuel loads' internal gains that are latent. If not provided, the OS-HPXML default is used. + Fraction of fireplace residual fuel loads' internal gains that are latent. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>) is used. Double Frac false @@ -6191,7 +6284,7 @@ misc_fuel_loads_fireplace_usage_multiplier Misc Fuel Loads: Fireplace Usage Multiplier - Multiplier on the fuel loads fireplace energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the fuel loads fireplace energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>) is used. Double false false @@ -6218,7 +6311,7 @@ pool_pump_annual_kwh Pool: Pump Annual kWh - The annual energy consumption of the pool pump. If not provided, the OS-HPXML default is used. + The annual energy consumption of the pool pump. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#pool-pump'>Pool Pump</a>) is used. Double kWh/yr false @@ -6227,7 +6320,7 @@ pool_pump_usage_multiplier Pool: Pump Usage Multiplier - Multiplier on the pool pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the pool pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#pool-pump'>Pool Pump</a>) is used. Double false false @@ -6262,7 +6355,7 @@ pool_heater_annual_kwh Pool: Heater Annual kWh - The annual energy consumption of the electric resistance pool heater. If not provided, the OS-HPXML default is used. + The annual energy consumption of the electric resistance pool heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#pool-heater'>Pool Heater</a>) is used. Double kWh/yr false @@ -6271,7 +6364,7 @@ pool_heater_annual_therm Pool: Heater Annual therm - The annual energy consumption of the gas fired pool heater. If not provided, the OS-HPXML default is used. + The annual energy consumption of the gas fired pool heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#pool-heater'>Pool Heater</a>) is used. Double therm/yr false @@ -6280,15 +6373,15 @@ pool_heater_usage_multiplier Pool: Heater Usage Multiplier - Multiplier on the pool heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the pool heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#pool-heater'>Pool Heater</a>) is used. Double false false - hot_tub_present - Hot Tub: Present - Whether there is a hot tub. + permanent_spa_present + Permanent Spa: Present + Whether there is a permanent spa. Boolean true false @@ -6305,26 +6398,26 @@ - hot_tub_pump_annual_kwh - Hot Tub: Pump Annual kWh - The annual energy consumption of the hot tub pump. If not provided, the OS-HPXML default is used. + permanent_spa_pump_annual_kwh + Permanent Spa: Pump Annual kWh + The annual energy consumption of the permanent spa pump. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#permanent-spa-pump'>Permanent Spa Pump</a>) is used. Double kWh/yr false false - hot_tub_pump_usage_multiplier - Hot Tub: Pump Usage Multiplier - Multiplier on the hot tub pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + permanent_spa_pump_usage_multiplier + Permanent Spa: Pump Usage Multiplier + Multiplier on the permanent spa pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#permanent-spa-pump'>Permanent Spa Pump</a>) is used. Double false false - hot_tub_heater_type - Hot Tub: Heater Type - The type of hot tub heater. Use 'none' if there is no hot tub heater. + permanent_spa_heater_type + Permanent Spa: Heater Type + The type of permanent spa heater. Use 'none' if there is no permanent spa heater. Choice true false @@ -6349,27 +6442,27 @@ - hot_tub_heater_annual_kwh - Hot Tub: Heater Annual kWh - The annual energy consumption of the electric resistance hot tub heater. If not provided, the OS-HPXML default is used. + permanent_spa_heater_annual_kwh + Permanent Spa: Heater Annual kWh + The annual energy consumption of the electric resistance permanent spa heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#permanent-spa-heater'>Permanent Spa Heater</a>) is used. Double kWh/yr false false - hot_tub_heater_annual_therm - Hot Tub: Heater Annual therm - The annual energy consumption of the gas fired hot tub heater. If not provided, the OS-HPXML default is used. + permanent_spa_heater_annual_therm + Permanent Spa: Heater Annual therm + The annual energy consumption of the gas fired permanent spa heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#permanent-spa-heater'>Permanent Spa Heater</a>) is used. Double therm/yr false false - hot_tub_heater_usage_multiplier - Hot Tub: Heater Usage Multiplier - Multiplier on the hot tub heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + permanent_spa_heater_usage_multiplier + Permanent Spa: Heater Usage Multiplier + Multiplier on the permanent spa heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#permanent-spa-heater'>Permanent Spa Heater</a>) is used. Double false false @@ -6742,31 +6835,49 @@ measure.rb rb script - B83724CD + 283BDAF5 constants.rb rb resource - 2050FF10 + 82A13855 geometry.rb rb resource - 58F1B7DD + 5C6DA7A8 unit_conversions.rb rb resource - 5E82ABE2 + 9B7AAA98 util.rb rb resource - 055F0A54 + 42CACEFB + + + test_build_residential_model.rb + rb + test + 4584D81F + + + xml_building/17/feature1.xml + xml + test + CADEF9CC + + + xml_building/17/feature2.xml + xml + test + CADEF9CC diff --git a/example_files/measures/BuildResidentialModel/resources/geometry.rb b/example_files/measures/BuildResidentialModel/resources/geometry.rb index b6fd0a6f..6b2863dd 100644 --- a/example_files/measures/BuildResidentialModel/resources/geometry.rb +++ b/example_files/measures/BuildResidentialModel/resources/geometry.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + require_relative 'constants' require_relative 'unit_conversions' require_relative 'util' @@ -1526,11 +1531,11 @@ def self.process_occupants(model, runner, num_occ, occ_gain, sens_frac, lat_frac runner.registerInfo("Removed existing people from space '#{space.name}'.") end objects_to_remove.uniq.each do |object| - + object.remove rescue StandardError # no op - + end space_num_occ = unit_occ * UnitConversions.convert(space.floorArea, 'm^2', 'ft^2') / ffa diff --git a/example_files/measures/BuildResidentialModel/resources/unit_conversions.rb b/example_files/measures/BuildResidentialModel/resources/unit_conversions.rb index 30b64a55..2b138405 100644 --- a/example_files/measures/BuildResidentialModel/resources/unit_conversions.rb +++ b/example_files/measures/BuildResidentialModel/resources/unit_conversions.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + class WholeBuildingUnitConversions # As there is a performance penalty to using OpenStudio's built-in unit convert() # method, we use, our own methods here. diff --git a/example_files/measures/BuildResidentialModel/resources/util.rb b/example_files/measures/BuildResidentialModel/resources/util.rb index f991973e..25efa95a 100644 --- a/example_files/measures/BuildResidentialModel/resources/util.rb +++ b/example_files/measures/BuildResidentialModel/resources/util.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # Add classes or functions here than can be used across a variety of our python classes and modules. require_relative 'constants' require_relative 'unit_conversions' diff --git a/example_files/measures/BuildResidentialModel/tests/test_build_residential_model.rb b/example_files/measures/BuildResidentialModel/tests/test_build_residential_model.rb new file mode 100644 index 00000000..09a836ea --- /dev/null +++ b/example_files/measures/BuildResidentialModel/tests/test_build_residential_model.rb @@ -0,0 +1,344 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + +# frozen_string_literal: true + +require_relative '../../../resources/hpxml-measures/HPXMLtoOpenStudio/resources/minitest_helper' +require_relative '../../../mappers/residential/util' +require_relative '../../../mappers/residential/template//util' +require 'openstudio' +require 'openstudio/measure/ShowRunnerOutput' +require_relative '../measure.rb' +require 'csv' + +class BuildResidentialModelTest < Minitest::Test + def setup + @tests_path = File.dirname(__FILE__) + @run_path = File.join(@tests_path, 'run') + @hpxml_path = File.join(@run_path, 'feature.xml') + FileUtils.mkdir_p(@run_path) + + @args = {} + _initialize_arguments() + end + + def teardown + FileUtils.rm_rf(@run_path) + end + + def _initialize_arguments() + # BuildResidentialModel arguments + @args[:hpxml_path] = @hpxml_path + @args[:output_dir] = @run_path + @args[:feature_id] = 1 + @args[:schedules_type] = 'stochastic' + @args[:schedules_random_seed] = 1 + @args[:schedules_variation] = 'unit' + @args[:geometry_num_floors_above_grade] = 1 + + # Optionals / Feature + @args[:geometry_building_num_units] = 1 + @timestep = 60 + @run_period = 'Jan 1 - Dec 31' + @calendar_year = 2007 + @weather_filename = 'USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw' + @building_type = 'Single-Family Detached' + @floor_area = 3055 + @number_of_bedrooms = 3 + @geometry_unit_orientation = nil + @geometry_aspect_ratio = nil + @occupancy_calculation_type = nil + @number_of_occupants = nil + @maximum_roof_height = 8.0 + @foundation_type = 'crawlspace - unvented' + @attic_type = 'attic - vented' + @roof_type = 'Gable' + @onsite_parking_fraction = false + @system_type = 'Residential - furnace and central air conditioner' + @heating_system_fuel_type = 'natural gas' + @template = nil + @climate_zone = '5A' + end + + def test_hpxml_dir + # in https://github.com/urbanopt/urbanopt-geojson-gem/blob/develop/lib/urbanopt/geojson/schema/building_properties.json, see: + # - "hpxml_directory" + + @args[:hpxml_dir] = '18' + _test_measure(expected_errors: ["HPXML directory 'xml_building/18' was specified for feature ID = 1, but could not be found."]) + + @args[:hpxml_dir] = '../measures/BuildResidentialModel/tests/xml_building/17' + _test_measure(expected_errors: ["HPXML directory 'xml_building/17' must contain exactly 1 HPXML file; the single file can describe multiple dwelling units of a feature."]) + + @args[:hpxml_dir] = '17' + _test_measure(expected_errors: ['The number of actual dwelling units (4) differs from the specified number of units (1).']) + + @args[:geometry_building_num_units] = 4 + + _test_measure() + end + + def test_schedules_type + # Baseline.rb mapper currently hardcodes schedules_type to "stochastic" + + schedules_types = ['stochastic', 'smooth'] + + schedules_types.each do |schedules_type| + @args[:schedules_type] = schedules_type + + _apply_residential() + _test_measure() + end + end + + def test_feature_building_types_num_units_and_stories + # in https://github.com/urbanopt/urbanopt-geojson-gem/blob/develop/lib/urbanopt/geojson/schema/building_properties.json, see: + # - "buildingType" + # - "number_of_residential_units" + # - "number_of_stories_above_ground" + + feature_building_types = ['Single-Family Detached', 'Single-Family Attached', 'Multifamily'] + feature_number_of_residential_unitss = (1..3).to_a + feature_number_of_stories_above_grounds = (1..2).to_a + + feature_building_types.each do |feature_building_type| + feature_number_of_residential_unitss.each do |feature_number_of_residential_units| + feature_number_of_stories_above_grounds.each do |feature_number_of_stories_above_ground| + @building_type = feature_building_type + @args[:geometry_num_floors_above_grade] = feature_number_of_stories_above_ground + @args[:geometry_building_num_units] = feature_number_of_residential_units + + expected_errors = [] + if feature_building_type == 'Multifamily' + num_units_per_floor = (Float(@args[:geometry_building_num_units]) / Float(@args[:geometry_num_floors_above_grade])).ceil + if num_units_per_floor == 1 + expected_errors = ["Unit type 'apartment unit' with num_units_per_floor=#{num_units_per_floor} is not supported."] + end + end + + _apply_residential() + _test_measure(expected_errors: expected_errors) + end + end + end + end + + def test_feature_building_foundation_and_attic_types_and_num_stories + # in https://github.com/urbanopt/urbanopt-geojson-gem/blob/develop/lib/urbanopt/geojson/schema/building_properties.json, see: + # - "buildingType" + # - "foundationType" + # - "atticType" + # - "number_of_stories_above_ground" + + feature_building_types = ['Single-Family Detached', 'Single-Family Attached', 'Multifamily'] + feature_foundation_types = ['slab', 'crawlspace - vented', 'crawlspace - conditioned', 'basement - unconditioned', 'basement - conditioned', 'ambient'] + feature_attic_types = ['attic - vented', 'attic - conditioned', 'flat roof'] + feature_number_of_stories_above_grounds = (1..2).to_a + + feature_building_types.each do |feature_building_type| + feature_foundation_types.each do |feature_foundation_type| + feature_attic_types.each do |feature_attic_type| + feature_number_of_stories_above_grounds.each do |feature_number_of_stories_above_ground| + @building_type = feature_building_type + @foundation_type = feature_foundation_type + @attic_type = feature_attic_type + @args[:geometry_num_floors_above_grade] = feature_number_of_stories_above_ground + + expected_errors = [] + if feature_attic_type == 'attic - conditioned' && feature_number_of_stories_above_ground == 1 + expected_errors = ['Units with a conditioned attic must have at least two above-grade floors.'] + end + if feature_building_type == 'Multifamily' + num_units_per_floor = (Float(@args[:geometry_building_num_units]) / Float(@args[:geometry_num_floors_above_grade])).ceil + if num_units_per_floor == 1 + expected_errors = ["Unit type 'apartment unit' with num_units_per_floor=#{num_units_per_floor} is not supported."] + end + end + + _apply_residential() + _test_measure(expected_errors: expected_errors) + end + end + end + end + end + + def test_feature_building_types_num_units_and_bedrooms + # in https://github.com/urbanopt/urbanopt-geojson-gem/blob/develop/lib/urbanopt/geojson/schema/building_properties.json, see: + # - "buildingType" + # - "number_of_residential_units" + # - "number_of_bedrooms" + + feature_building_types = ['Single-Family Detached', 'Multifamily'] + feature_number_of_residential_unitss = (2..4).to_a + feature_number_of_bedroomss = (11..13).to_a + + feature_building_types.each do |feature_building_type| + feature_number_of_residential_unitss.each do |feature_number_of_residential_units| + feature_number_of_bedroomss.each do |feature_number_of_bedrooms| + @building_type = feature_building_type + @args[:geometry_building_num_units] = feature_number_of_residential_units + @number_of_bedrooms = feature_number_of_bedrooms + + _apply_residential() + _test_measure() + end + end + end + end + + def test_feature_building_occ_calc_types_num_occupants_and_units + # in https://github.com/urbanopt/urbanopt-geojson-gem/blob/develop/lib/urbanopt/geojson/schema/building_properties.json, see: + # - "buildingType" + # - "occupancy_calculation_type" + # - "number_of_residential_units" + # - "number_of_occupants" + + feature_building_types = ['Single-Family Detached', 'Multifamily'] + feature_occupancy_calculation_types = ['asset', 'operational'] + feature_number_of_residential_unitss = (2..3).to_a + feature_number_of_occupantss = [nil, 3] + + feature_building_types.each do |feature_building_type| + feature_occupancy_calculation_types.each do |feature_occupancy_calculation_type| + feature_number_of_residential_unitss.each do |feature_number_of_residential_units| + feature_number_of_occupantss.each do |feature_number_of_occupants| + @building_type = feature_building_type + @occupancy_calculation_type = feature_occupancy_calculation_type + @args[:geometry_building_num_units] = feature_number_of_residential_units + @number_of_occupants = feature_number_of_occupants + + _apply_residential() + _test_measure() + end + end + end + end + end + + def test_feature_building_foundation_types_and_garages + # in https://github.com/urbanopt/urbanopt-geojson-gem/blob/develop/lib/urbanopt/geojson/schema/building_properties.json, see: + # - "buildingType" + # - "foundationType" + # - "onsite_parking_fraction" + + feature_building_types = ['Single-Family Detached', 'Single-Family Attached', 'Multifamily'] + feature_foundation_types = ['slab', 'crawlspace - vented', 'crawlspace - conditioned', 'basement - unconditioned', 'basement - conditioned', 'ambient'] + feature_onsite_parking_fractions = [false, true] + + feature_building_types.each do |feature_building_type| + feature_foundation_types.each do |feature_foundation_type| + feature_onsite_parking_fractions.each do |feature_onsite_parking_fraction| + @building_type = feature_building_type + @foundation_type = feature_foundation_type + @onsite_parking_fraction = feature_onsite_parking_fraction + @args[:geometry_building_num_units] = 2 + + expected_errors = [] + if feature_foundation_type == 'ambient' && feature_onsite_parking_fraction + expected_errors = ['Cannot handle garages with an ambient foundation type.'] + end + if feature_building_type == 'Multifamily' && feature_foundation_type.include?('- conditioned') + expected_errors = ['Conditioned basement/crawlspace foundation type for apartment units is not currently supported.'] + end + + _apply_residential() + _test_measure(expected_errors: expected_errors) + end + end + end + end + + def test_hvac_system_and_fuel_types + # in https://github.com/urbanopt/urbanopt-geojson-gem/blob/develop/lib/urbanopt/geojson/schema/building_properties.json, see: + # - "systemType" (those prefixed with "Residential") + # - "heatingSystemFuelType" + + feature_system_types = ['Residential - electric resistance and no cooling', 'Residential - electric resistance and central air conditioner', 'Residential - electric resistance and room air conditioner', 'Residential - electric resistance and evaporative cooler', 'Residential - furnace and no cooling', 'Residential - furnace and central air conditioner', 'Residential - furnace and room air conditioner', 'Residential - furnace and evaporative cooler', 'Residential - boiler and no cooling', 'Residential - boiler and central air conditioner', 'Residential - boiler and room air conditioner', 'Residential - boiler and evaporative cooler', 'Residential - air-to-air heat pump', 'Residential - mini-split heat pump', 'Residential - ground-to-air heat pump'] + feature_heating_system_fuel_types = ['electricity', 'natural gas', 'fuel oil', 'propane', 'wood'] + + feature_system_types.each do |feature_system_type| + feature_heating_system_fuel_types.each do |feature_heating_system_fuel_type| + @system_type = feature_system_type + @heating_system_fuel_type = feature_heating_system_fuel_type + + _apply_residential() + _test_measure() + end + end + end + + def test_residential_template_types + # in https://github.com/urbanopt/urbanopt-geojson-gem/blob/develop/lib/urbanopt/geojson/schema/building_properties.json, see: + # - "templateType" + + feature_templates = ['Residential IECC 2006 - Customizable Template Sep 2020', 'Residential IECC 2009 - Customizable Template Sep 2020', 'Residential IECC 2012 - Customizable Template Sep 2020', 'Residential IECC 2015 - Customizable Template Sep 2020', 'Residential IECC 2018 - Customizable Template Sep 2020', 'Residential IECC 2006 - Customizable Template Apr 2022', 'Residential IECC 2009 - Customizable Template Apr 2022', 'Residential IECC 2012 - Customizable Template Apr 2022', 'Residential IECC 2015 - Customizable Template Apr 2022', 'Residential IECC 2018 - Customizable Template Apr 2022'] + + feature_templates.each do |feature_template| + @args = {} + _initialize_arguments() + + @template = feature_template + + _apply_residential() + _apply_residential_template() + _test_measure() + end + end + + def _apply_residential() + residential_simulation(@args, @timestep, @run_period, @calendar_year, @weather_filename) + residential_geometry_unit(@args, @building_type, @floor_area, @number_of_bedrooms, @geometry_unit_orientation, @geometry_unit_aspect_ratio, @occupancy_calculation_type, @number_of_occupants, @maximum_roof_height) + residential_geometry_foundation(@args, @foundation_type) + residential_geometry_attic(@args, @attic_type, @roof_type) + residential_geometry_garage(@args, @onsite_parking_fraction) + residential_geometry_neighbor(@args) + residential_hvac(@args, @system_type, @heating_system_fuel_type) + residential_appliances(@args) + end + + def _apply_residential_template() + residential_template(@args, @template, @climate_zone) + end + + def _test_measure(expected_errors: []) + # create an instance of the measure + measure = BuildResidentialModel.new + + runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) + model = OpenStudio::Model::Model.new + + # get arguments + arguments = measure.arguments(model) + argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) + + # populate argument with specified hash value if specified + arguments.each do |arg| + temp_arg_var = arg.clone + if @args.has_key?(arg.name.to_sym) + assert(temp_arg_var.setValue(@args[arg.name.to_sym])) + end + argument_map[arg.name] = temp_arg_var + end + + # run the measure + measure.run(model, runner, argument_map) + result = runner.result + + # assert that it ran correctly + if !expected_errors.empty? + # show_output(result) unless result.value.valueName == 'Fail' + assert_equal('Fail', result.value.valueName) + + error_msgs = result.errors.map { |x| x.logMessage } + expected_errors.each do |expected_error| + assert_includes(error_msgs, expected_error) + end + else + show_output(result) unless result.value.valueName == 'Success' + assert_equal('Success', result.value.valueName) + end + end +end diff --git a/example_files/measures/BuildResidentialModel/tests/xml_building/17/feature1.xml b/example_files/measures/BuildResidentialModel/tests/xml_building/17/feature1.xml new file mode 100644 index 00000000..477ab565 --- /dev/null +++ b/example_files/measures/BuildResidentialModel/tests/xml_building/17/feature1.xml @@ -0,0 +1,2112 @@ + + + + HPXML + BuildResidentialHPXML + 2023-11-30T15:05:03-07:00 + create + + + uo-example-project + + + 60 + 1 + 1 + 12 + 31 + 2017 + + + + + + + proposed workscope + + + + + attached on one side + no units above or below + 180 + + + single-family attached + 2.0 + 2.0 + 8.0 + 1 + 4580.0 + 36640.0 + + + schedules.csv + + + + + + USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 + + ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 36640.0 + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + attic - vented + 1280.1 + 0 + 6.0 + false + + + 2.3 + + + + + attic - vented + 1280.1 + 180 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1082.8 + 0 + + + 16.66666667 + + + + + outside + conditioned space + + + + 541.4 + 90 + + + 16.66666667 + + + + + outside + conditioned space + + + + 1082.8 + 180 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 270 + + + 4.0 + + + + + outside + attic - vented + gable + + + + 143.1 + 90 + + + 4.0 + + + + + + + attic - vented + conditioned space + ceiling + + + + 2290.0 + + + 38.46153846 + + + + + + + conditioned space + 2290.0 + 169.2 + + + + 10.0 + 2.0 + + + + + + 0.0 + 0.0 + + + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.8 + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + 48.7 + 90 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.6 + + + + + + 48.7 + 90 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.6 + + + + + + 94.9 + 180 + 0.32 + 0.4 + + 2.0 + 9.0 + 13.0 + + + + + + 100.0 + 180 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + fuel oil + + AFUE + 0.85 + + 1.0 + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + + + + + + + + + + regular velocity + + supply + + Percent + 0.1 + to outside + + + + return + + Percent + 0.1 + to outside + + + + + supply + 8.0 + + + + return + 8.0 + + + + 4580.0 + + + + + + + energy recovery ventilator + true + 0.48 + 0.72 + + + + kitchen + true + + + + bath + true + + + + + + + fuel oil + storage water heater + 40.0 + 1.0 + 0.53 + + + + + + + + + + shower head + false + + + + faucet + false + + + 1.0 + + + + + + + 2.92 + 75.0 + 0.12 + 1.09 + 7.0 + 6.0 + 4.5 + + + + fuel oil + 3.03 + + + + 199.0 + 12 + 0.12 + 1.09 + 18.0 + 4.0 + + + + 423.0 + true + + + + fuel oil + + + + + + + + + interior + 0.1 + + + + + + + interior + 0.0 + + + + + + + interior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + + + + + + TV other + + + + other + + + + + + + + proposed workscope + + + + + attached on two sides + no units above or below + 180 + + + single-family attached + 2.0 + 2.0 + 8.0 + 1 + 4580.0 + 36640.0 + + + schedules_2.csv + + + + + + USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 + + ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 36640.0 + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + attic - vented + 1280.1 + 0 + 6.0 + false + + + 2.3 + + + + + attic - vented + 1280.1 + 180 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1082.8 + 0 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 90 + + + 4.0 + + + + + outside + conditioned space + + + + 1082.8 + 180 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 90 + + + 4.0 + + + + + + + attic - vented + conditioned space + ceiling + + + + 2290.0 + + + 38.46153846 + + + + + + + conditioned space + 2290.0 + 135.4 + + + + 10.0 + 2.0 + + + + + + 0.0 + 0.0 + + + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.8 + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + 94.9 + 180 + 0.32 + 0.4 + + 2.0 + 9.0 + 13.0 + + + + + + 100.0 + 180 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + fuel oil + + AFUE + 0.85 + + 1.0 + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + + + + + + + + + + regular velocity + + supply + + Percent + 0.1 + to outside + + + + return + + Percent + 0.1 + to outside + + + + + supply + 8.0 + + + + return + 8.0 + + + + 4580.0 + + + + + + + energy recovery ventilator + true + 0.48 + 0.72 + + + + kitchen + true + + + + bath + true + + + + + + + fuel oil + storage water heater + 40.0 + 1.0 + 0.53 + + + + + + + + + + shower head + false + + + + faucet + false + + + 1.0 + + + + + + + 2.92 + 75.0 + 0.12 + 1.09 + 7.0 + 6.0 + 4.5 + + + + fuel oil + 3.03 + + + + 199.0 + 12 + 0.12 + 1.09 + 18.0 + 4.0 + + + + 423.0 + true + + + + fuel oil + + + + + + + + + interior + 0.1 + + + + + + + interior + 0.0 + + + + + + + interior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + + + + + + TV other + + + + other + + + + + + + + proposed workscope + + + + + attached on two sides + no units above or below + 180 + + + single-family attached + 2.0 + 2.0 + 8.0 + 1 + 4580.0 + 36640.0 + + + schedules_3.csv + + + + + + USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 + + ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 36640.0 + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + attic - vented + 1280.1 + 0 + 6.0 + false + + + 2.3 + + + + + attic - vented + 1280.1 + 180 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1082.8 + 0 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 90 + + + 4.0 + + + + + outside + conditioned space + + + + 1082.8 + 180 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 90 + + + 4.0 + + + + + + + attic - vented + conditioned space + ceiling + + + + 2290.0 + + + 38.46153846 + + + + + + + conditioned space + 2290.0 + 135.4 + + + + 10.0 + 2.0 + + + + + + 0.0 + 0.0 + + + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.8 + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + 94.9 + 180 + 0.32 + 0.4 + + 2.0 + 9.0 + 13.0 + + + + + + 100.0 + 180 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + fuel oil + + AFUE + 0.85 + + 1.0 + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + + + + + + + + + + regular velocity + + supply + + Percent + 0.1 + to outside + + + + return + + Percent + 0.1 + to outside + + + + + supply + 8.0 + + + + return + 8.0 + + + + 4580.0 + + + + + + + energy recovery ventilator + true + 0.48 + 0.72 + + + + kitchen + true + + + + bath + true + + + + + + + fuel oil + storage water heater + 40.0 + 1.0 + 0.53 + + + + + + + + + + shower head + false + + + + faucet + false + + + 1.0 + + + + + + + 2.92 + 75.0 + 0.12 + 1.09 + 7.0 + 6.0 + 4.5 + + + + fuel oil + 3.03 + + + + 199.0 + 12 + 0.12 + 1.09 + 18.0 + 4.0 + + + + 423.0 + true + + + + fuel oil + + + + + + + + + interior + 0.1 + + + + + + + interior + 0.0 + + + + + + + interior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + + + + + + TV other + + + + other + + + + + + + + proposed workscope + + + + + attached on one side + no units above or below + 180 + + + single-family attached + 2.0 + 2.0 + 8.0 + 1 + 4580.0 + 36640.0 + + + schedules_4.csv + + + + + + USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 + + ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 36640.0 + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + attic - vented + 1280.1 + 0 + 6.0 + false + + + 2.3 + + + + + attic - vented + 1280.1 + 180 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1082.8 + 0 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 90 + + + 4.0 + + + + + outside + conditioned space + + + + 1082.8 + 180 + + + 16.66666667 + + + + + outside + conditioned space + + + + 541.4 + 270 + + + 16.66666667 + + + + + outside + attic - vented + gable + + + + 143.1 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 90 + + + 4.0 + + + + + + + attic - vented + conditioned space + ceiling + + + + 2290.0 + + + 38.46153846 + + + + + + + conditioned space + 2290.0 + 169.2 + + + + 10.0 + 2.0 + + + + + + 0.0 + 0.0 + + + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.8 + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + 94.9 + 180 + 0.32 + 0.4 + + 2.0 + 9.0 + 13.0 + + + + + + 100.0 + 180 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + 48.7 + 270 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.6 + + + + + + 48.7 + 270 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.6 + + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + fuel oil + + AFUE + 0.85 + + 1.0 + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + + + + + + + + + + regular velocity + + supply + + Percent + 0.1 + to outside + + + + return + + Percent + 0.1 + to outside + + + + + supply + 8.0 + + + + return + 8.0 + + + + 4580.0 + + + + + + + energy recovery ventilator + true + 0.48 + 0.72 + + + + kitchen + true + + + + bath + true + + + + + + + fuel oil + storage water heater + 40.0 + 1.0 + 0.53 + + + + + + + + + + shower head + false + + + + faucet + false + + + 1.0 + + + + + + + 2.92 + 75.0 + 0.12 + 1.09 + 7.0 + 6.0 + 4.5 + + + + fuel oil + 3.03 + + + + 199.0 + 12 + 0.12 + 1.09 + 18.0 + 4.0 + + + + 423.0 + true + + + + fuel oil + + + + + + + + + interior + 0.1 + + + + + + + interior + 0.0 + + + + + + + interior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + + + + + + TV other + + + + other + + + + + \ No newline at end of file diff --git a/example_files/measures/BuildResidentialModel/tests/xml_building/17/feature2.xml b/example_files/measures/BuildResidentialModel/tests/xml_building/17/feature2.xml new file mode 100644 index 00000000..477ab565 --- /dev/null +++ b/example_files/measures/BuildResidentialModel/tests/xml_building/17/feature2.xml @@ -0,0 +1,2112 @@ + + + + HPXML + BuildResidentialHPXML + 2023-11-30T15:05:03-07:00 + create + + + uo-example-project + + + 60 + 1 + 1 + 12 + 31 + 2017 + + + + + + + proposed workscope + + + + + attached on one side + no units above or below + 180 + + + single-family attached + 2.0 + 2.0 + 8.0 + 1 + 4580.0 + 36640.0 + + + schedules.csv + + + + + + USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 + + ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 36640.0 + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + attic - vented + 1280.1 + 0 + 6.0 + false + + + 2.3 + + + + + attic - vented + 1280.1 + 180 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1082.8 + 0 + + + 16.66666667 + + + + + outside + conditioned space + + + + 541.4 + 90 + + + 16.66666667 + + + + + outside + conditioned space + + + + 1082.8 + 180 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 270 + + + 4.0 + + + + + outside + attic - vented + gable + + + + 143.1 + 90 + + + 4.0 + + + + + + + attic - vented + conditioned space + ceiling + + + + 2290.0 + + + 38.46153846 + + + + + + + conditioned space + 2290.0 + 169.2 + + + + 10.0 + 2.0 + + + + + + 0.0 + 0.0 + + + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.8 + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + 48.7 + 90 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.6 + + + + + + 48.7 + 90 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.6 + + + + + + 94.9 + 180 + 0.32 + 0.4 + + 2.0 + 9.0 + 13.0 + + + + + + 100.0 + 180 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + fuel oil + + AFUE + 0.85 + + 1.0 + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + + + + + + + + + + regular velocity + + supply + + Percent + 0.1 + to outside + + + + return + + Percent + 0.1 + to outside + + + + + supply + 8.0 + + + + return + 8.0 + + + + 4580.0 + + + + + + + energy recovery ventilator + true + 0.48 + 0.72 + + + + kitchen + true + + + + bath + true + + + + + + + fuel oil + storage water heater + 40.0 + 1.0 + 0.53 + + + + + + + + + + shower head + false + + + + faucet + false + + + 1.0 + + + + + + + 2.92 + 75.0 + 0.12 + 1.09 + 7.0 + 6.0 + 4.5 + + + + fuel oil + 3.03 + + + + 199.0 + 12 + 0.12 + 1.09 + 18.0 + 4.0 + + + + 423.0 + true + + + + fuel oil + + + + + + + + + interior + 0.1 + + + + + + + interior + 0.0 + + + + + + + interior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + + + + + + TV other + + + + other + + + + + + + + proposed workscope + + + + + attached on two sides + no units above or below + 180 + + + single-family attached + 2.0 + 2.0 + 8.0 + 1 + 4580.0 + 36640.0 + + + schedules_2.csv + + + + + + USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 + + ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 36640.0 + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + attic - vented + 1280.1 + 0 + 6.0 + false + + + 2.3 + + + + + attic - vented + 1280.1 + 180 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1082.8 + 0 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 90 + + + 4.0 + + + + + outside + conditioned space + + + + 1082.8 + 180 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 90 + + + 4.0 + + + + + + + attic - vented + conditioned space + ceiling + + + + 2290.0 + + + 38.46153846 + + + + + + + conditioned space + 2290.0 + 135.4 + + + + 10.0 + 2.0 + + + + + + 0.0 + 0.0 + + + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.8 + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + 94.9 + 180 + 0.32 + 0.4 + + 2.0 + 9.0 + 13.0 + + + + + + 100.0 + 180 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + fuel oil + + AFUE + 0.85 + + 1.0 + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + + + + + + + + + + regular velocity + + supply + + Percent + 0.1 + to outside + + + + return + + Percent + 0.1 + to outside + + + + + supply + 8.0 + + + + return + 8.0 + + + + 4580.0 + + + + + + + energy recovery ventilator + true + 0.48 + 0.72 + + + + kitchen + true + + + + bath + true + + + + + + + fuel oil + storage water heater + 40.0 + 1.0 + 0.53 + + + + + + + + + + shower head + false + + + + faucet + false + + + 1.0 + + + + + + + 2.92 + 75.0 + 0.12 + 1.09 + 7.0 + 6.0 + 4.5 + + + + fuel oil + 3.03 + + + + 199.0 + 12 + 0.12 + 1.09 + 18.0 + 4.0 + + + + 423.0 + true + + + + fuel oil + + + + + + + + + interior + 0.1 + + + + + + + interior + 0.0 + + + + + + + interior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + + + + + + TV other + + + + other + + + + + + + + proposed workscope + + + + + attached on two sides + no units above or below + 180 + + + single-family attached + 2.0 + 2.0 + 8.0 + 1 + 4580.0 + 36640.0 + + + schedules_3.csv + + + + + + USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 + + ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 36640.0 + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + attic - vented + 1280.1 + 0 + 6.0 + false + + + 2.3 + + + + + attic - vented + 1280.1 + 180 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1082.8 + 0 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 90 + + + 4.0 + + + + + outside + conditioned space + + + + 1082.8 + 180 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 90 + + + 4.0 + + + + + + + attic - vented + conditioned space + ceiling + + + + 2290.0 + + + 38.46153846 + + + + + + + conditioned space + 2290.0 + 135.4 + + + + 10.0 + 2.0 + + + + + + 0.0 + 0.0 + + + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.8 + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + 94.9 + 180 + 0.32 + 0.4 + + 2.0 + 9.0 + 13.0 + + + + + + 100.0 + 180 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + fuel oil + + AFUE + 0.85 + + 1.0 + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + + + + + + + + + + regular velocity + + supply + + Percent + 0.1 + to outside + + + + return + + Percent + 0.1 + to outside + + + + + supply + 8.0 + + + + return + 8.0 + + + + 4580.0 + + + + + + + energy recovery ventilator + true + 0.48 + 0.72 + + + + kitchen + true + + + + bath + true + + + + + + + fuel oil + storage water heater + 40.0 + 1.0 + 0.53 + + + + + + + + + + shower head + false + + + + faucet + false + + + 1.0 + + + + + + + 2.92 + 75.0 + 0.12 + 1.09 + 7.0 + 6.0 + 4.5 + + + + fuel oil + 3.03 + + + + 199.0 + 12 + 0.12 + 1.09 + 18.0 + 4.0 + + + + 423.0 + true + + + + fuel oil + + + + + + + + + interior + 0.1 + + + + + + + interior + 0.0 + + + + + + + interior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + + + + + + TV other + + + + other + + + + + + + + proposed workscope + + + + + attached on one side + no units above or below + 180 + + + single-family attached + 2.0 + 2.0 + 8.0 + 1 + 4580.0 + 36640.0 + + + schedules_4.csv + + + + + + USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 + + ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 36640.0 + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + attic - vented + 1280.1 + 0 + 6.0 + false + + + 2.3 + + + + + attic - vented + 1280.1 + 180 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1082.8 + 0 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 90 + + + 4.0 + + + + + outside + conditioned space + + + + 1082.8 + 180 + + + 16.66666667 + + + + + outside + conditioned space + + + + 541.4 + 270 + + + 16.66666667 + + + + + outside + attic - vented + gable + + + + 143.1 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 90 + + + 4.0 + + + + + + + attic - vented + conditioned space + ceiling + + + + 2290.0 + + + 38.46153846 + + + + + + + conditioned space + 2290.0 + 169.2 + + + + 10.0 + 2.0 + + + + + + 0.0 + 0.0 + + + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.8 + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + 94.9 + 180 + 0.32 + 0.4 + + 2.0 + 9.0 + 13.0 + + + + + + 100.0 + 180 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + 48.7 + 270 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.6 + + + + + + 48.7 + 270 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.6 + + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + fuel oil + + AFUE + 0.85 + + 1.0 + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + + + + + + + + + + regular velocity + + supply + + Percent + 0.1 + to outside + + + + return + + Percent + 0.1 + to outside + + + + + supply + 8.0 + + + + return + 8.0 + + + + 4580.0 + + + + + + + energy recovery ventilator + true + 0.48 + 0.72 + + + + kitchen + true + + + + bath + true + + + + + + + fuel oil + storage water heater + 40.0 + 1.0 + 0.53 + + + + + + + + + + shower head + false + + + + faucet + false + + + 1.0 + + + + + + + 2.92 + 75.0 + 0.12 + 1.09 + 7.0 + 6.0 + 4.5 + + + + fuel oil + 3.03 + + + + 199.0 + 12 + 0.12 + 1.09 + 18.0 + 4.0 + + + + 423.0 + true + + + + fuel oil + + + + + + + + + interior + 0.1 + + + + + + + interior + 0.0 + + + + + + + interior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + + + + + + TV other + + + + other + + + + + \ No newline at end of file diff --git a/example_files/osm_building/7.osm b/example_files/osm_building/7.osm index 2f0b762f..573726ac 100644 --- a/example_files/osm_building/7.osm +++ b/example_files/osm_building/7.osm @@ -87,7 +87,6 @@ OS:WeatherFile, -78.73, !- Longitude {deg} -5, !- Time Zone {hr} 215, !- Elevation {m} - file:///C:/gitrepos/urbanopt-example-geojson-project/weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw, !- Url ; !- Checksum OS:Site:WaterMainsTemperature, @@ -13827,4 +13826,3 @@ OS:Curve:Cubic, 1.1674, !- Coefficient4 x**3 0, !- Minimum Value of x 1.3; !- Maximum Value of x - diff --git a/example_files/osm_building/8.osm b/example_files/osm_building/8.osm index 023c9ec2..d2fccd3e 100644 --- a/example_files/osm_building/8.osm +++ b/example_files/osm_building/8.osm @@ -87,7 +87,6 @@ OS:WeatherFile, -78.73, !- Longitude {deg} -5, !- Time Zone {hr} 215, !- Elevation {m} - file:///C:/gitrepos/urbanopt-example-geojson-project/weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw, !- Url ; !- Checksum OS:Site:WaterMainsTemperature, @@ -25371,4 +25370,3 @@ OS:Curve:Cubic, 1.1674, !- Coefficient4 x**3 0, !- Minimum Value of x 1.3; !- Maximum Value of x - diff --git a/example_files/osm_building/9.osm b/example_files/osm_building/9.osm index 8d8055b9..5422ad46 100644 --- a/example_files/osm_building/9.osm +++ b/example_files/osm_building/9.osm @@ -87,7 +87,6 @@ OS:WeatherFile, -78.73, !- Longitude {deg} -5, !- Time Zone {hr} 215, !- Elevation {m} - file:///C:/gitrepos/urbanopt-example-geojson-project/weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw, !- Url ; !- Checksum OS:Site:WaterMainsTemperature, @@ -14919,4 +14918,3 @@ OS:Curve:Cubic, OS:AdditionalProperties, {4b9bd2a9-38d4-48bf-a65b-3b2905990a4f}, !- Handle {dbe1c071-cef9-4a66-ab11-96e1d7867765}; !- Object Name - diff --git a/example_files/python_deps/dependencies.json b/example_files/python_deps/dependencies.json index 96ab0445..0899e1d9 100644 --- a/example_files/python_deps/dependencies.json +++ b/example_files/python_deps/dependencies.json @@ -1,5 +1,6 @@ [ - { "name": "urbanopt-ditto-reader", "version": "0.5.1"}, - { "name": "NREL-disco", "version": "0.4.1"}, - { "name": "geojson-modelica-translator", "version": "0.5.0"} + { "name": "ThermalNetwork", "version": "0.2.3"}, + { "name": "urbanopt-ditto-reader", "version": "0.6.3"}, + { "name": "NREL-disco", "version": "0.5.0"}, + { "name": "geojson-modelica-translator", "version": "0.6.0"} ] diff --git a/example_files/resources/hpxml-measures/.gitattributes b/example_files/resources/hpxml-measures/.gitattributes new file mode 100644 index 00000000..90fb947a --- /dev/null +++ b/example_files/resources/hpxml-measures/.gitattributes @@ -0,0 +1,3 @@ +# Declare files that will always have CRLF line endings on checkout. + +workflow/**/*.xml text eol=crlf diff --git a/example_files/resources/hpxml-measures/.github/pull_request_template.md b/example_files/resources/hpxml-measures/.github/pull_request_template.md index 237a37db..7ab8bf1d 100644 --- a/example_files/resources/hpxml-measures/.github/pull_request_template.md +++ b/example_files/resources/hpxml-measures/.github/pull_request_template.md @@ -9,8 +9,8 @@ PR Author: Check these when they're done. Not all may apply. ~~strikethrough~~ a PR Reviewer: Verify each has been completed. - [ ] Schematron validator (`EPvalidator.xml`) has been updated -- [ ] Sample files have been added/updated (via `tasks.rb`) -- [ ] Tests have been added/updated (e.g., `HPXMLtoOpenStudio/tests` and/or `workflow/tests/hpxml_translator_test.rb`) +- [ ] Sample files have been added/updated (`openstudio tasks.rb update_hpxmls`) +- [ ] Tests have been added/updated (e.g., `HPXMLtoOpenStudio/tests/test*.rb` and/or `workflow/tests/test*.rb`) - [ ] Documentation has been updated - [ ] Changelog has been updated - [ ] `openstudio tasks.rb update_measures` has been run diff --git a/example_files/resources/hpxml-measures/.github/workflows/add_to_project.yml b/example_files/resources/hpxml-measures/.github/workflows/add_to_project.yml new file mode 100644 index 00000000..8dc9884b --- /dev/null +++ b/example_files/resources/hpxml-measures/.github/workflows/add_to_project.yml @@ -0,0 +1,17 @@ +name: Add issue to project +on: + issues: + types: + - opened + - reopened + - transferred + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.3.0 + with: + project-url: https://github.com/orgs/NREL/projects/78 + github-token: ${{ secrets.GHB_TOKEN }} \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/.github/workflows/config.yml b/example_files/resources/hpxml-measures/.github/workflows/config.yml index d171f7c6..518dc474 100644 --- a/example_files/resources/hpxml-measures/.github/workflows/config.yml +++ b/example_files/resources/hpxml-measures/.github/workflows/config.yml @@ -11,7 +11,7 @@ jobs: run-unit-tests: runs-on: ubuntu-latest container: - image: docker://nrel/openstudio:3.6.1 + image: docker://nrel/openstudio:3.7.0 steps: - uses: actions/checkout@v3 with: @@ -43,6 +43,12 @@ jobs: path: coverage name: coverage + - name: Store results + uses: actions/upload-artifact@v3 + with: + path: workflow/tests/results + name: results + - name: Build documentation run: | cd docs @@ -54,10 +60,33 @@ jobs: name: documentation path: docs/_build/html/ - run-workflow-tests: + run-workflow1-tests: + runs-on: ubuntu-latest + container: + image: docker://nrel/openstudio:3.7.0 + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.head_ref }} + + - name: Install software + run: | + rm -f Gemfile.lock && bundle install + + - name: Run workflow tests + run: | + bundle exec rake test_workflow1 + + - name: Store results + uses: actions/upload-artifact@v3 + with: + path: workflow/tests/results + name: results + + run-workflow2-tests: runs-on: ubuntu-latest container: - image: docker://nrel/openstudio:3.6.1 + image: docker://nrel/openstudio:3.7.0 steps: - uses: actions/checkout@v3 with: @@ -69,7 +98,7 @@ jobs: - name: Run workflow tests run: | - bundle exec rake test_workflow + bundle exec rake test_workflow2 - name: Store results uses: actions/upload-artifact@v3 @@ -86,8 +115,8 @@ jobs: - name: Install software and run test shell: pwsh run: | - $env:OS_VERSION="3.6.1" - $env:OS_SHA="bb9481519e" + $env:OS_VERSION="3.7.0" + $env:OS_SHA="d5269793f1" Invoke-WebRequest -OutFile Windows.tar.gz -URI "https://github.com/NREL/OpenStudio/releases/download/v${env:OS_VERSION}/OpenStudio-${env:OS_VERSION}+${env:OS_SHA}-Windows.tar.gz" tar -xzf Windows.tar.gz & .\OpenStudio-${env:OS_VERSION}+${env:OS_SHA}-Windows\bin\openstudio.exe workflow\run_simulation.rb -x workflow\sample_files\base.xml --hourly ALL --add-component-loads --add-stochastic-schedules @@ -95,7 +124,7 @@ jobs: compare-results: if: github.event_name == 'pull_request' runs-on: ubuntu-latest - needs: [run-workflow-tests] + needs: [run-workflow1-tests, run-workflow2-tests, run-unit-tests] steps: - uses: actions/checkout@v3 with: @@ -147,7 +176,7 @@ jobs: update-results: runs-on: ubuntu-latest - needs: [run-workflow-tests] + needs: [run-workflow1-tests, run-workflow2-tests, run-unit-tests] steps: - uses: actions/checkout@v3 with: diff --git a/example_files/resources/hpxml-measures/.gitignore b/example_files/resources/hpxml-measures/.gitignore index a0fcb5bb..d9c6bb29 100644 --- a/example_files/resources/hpxml-measures/.gitignore +++ b/example_files/resources/hpxml-measures/.gitignore @@ -1,3 +1,4 @@ +.ruby-version /coverage /docs/_build /results diff --git a/example_files/resources/hpxml-measures/.readthedocs.yml b/example_files/resources/hpxml-measures/.readthedocs.yml index bfe20b3a..aa4109f6 100644 --- a/example_files/resources/hpxml-measures/.readthedocs.yml +++ b/example_files/resources/hpxml-measures/.readthedocs.yml @@ -4,6 +4,10 @@ sphinx: configuration: docs/source/conf.py build: - os: ubuntu-22.04 + os: "ubuntu-22.04" tools: - python: "3.8" \ No newline at end of file + python: "3.11" + +python: + install: + - requirements: docs/requirements.txt \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/README.md b/example_files/resources/hpxml-measures/BuildResidentialHPXML/README.md new file mode 100644 index 00000000..3ad5ef7c --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/README.md @@ -0,0 +1,5596 @@ + +###### (Automatically generated documentation) + +# HPXML Builder + +## Description +Builds a residential HPXML file. + +Note: OS-HPXML default values can be found in the OS-HPXML documentation or can be seen by using the 'apply_defaults' argument. + +## Arguments + + +**HPXML File Path** + +Absolute/relative path of the HPXML file. + +- **Name:** ``hpxml_path`` +- **Type:** ``String`` + +- **Required:** ``true`` + +
+ +**Existing HPXML File Path** + +Absolute/relative path of the existing HPXML file. If not provided, a new HPXML file with one Building element is created. If provided, a new Building element will be appended to this HPXML file (e.g., to create a multifamily HPXML file describing multiple dwelling units). + +- **Name:** ``existing_hpxml_path`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Software Info: Program Used** + +The name of the software program used. + +- **Name:** ``software_info_program_used`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Software Info: Program Version** + +The version of the software program used. + +- **Name:** ``software_info_program_version`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Schedules: CSV File Paths** + +Absolute/relative paths of csv files containing user-specified detailed schedules. If multiple files, use a comma-separated list. + +- **Name:** ``schedules_filepaths`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Schedules: Vacancy Period** + +Specifies the vacancy period. Enter a date like "Dec 15 - Jan 15". Optionally, can enter hour of the day like "Dec 15 2 - Jan 15 20" (start hour can be 0 through 23 and end hour can be 1 through 24). + +- **Name:** ``schedules_vacancy_period`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Schedules: Power Outage Period** + +Specifies the power outage period. Enter a date like "Dec 15 - Jan 15". Optionally, can enter hour of the day like "Dec 15 2 - Jan 15 20" (start hour can be 0 through 23 and end hour can be 1 through 24). + +- **Name:** ``schedules_power_outage_period`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Schedules: Power Outage Period Window Natural Ventilation Availability** + +The availability of the natural ventilation schedule during the outage period. + +- **Name:** ``schedules_power_outage_window_natvent_availability`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `regular schedule`, `always available`, `always unavailable` + +
+ +**Simulation Control: Timestep** + +Value must be a divisor of 60. If not provided, the OS-HPXML default (see HPXML Simulation Control) is used. + +- **Name:** ``simulation_control_timestep`` +- **Type:** ``Integer`` + +- **Units:** ``min`` + +- **Required:** ``false`` + +
+ +**Simulation Control: Run Period** + +Enter a date like 'Jan 1 - Dec 31'. If not provided, the OS-HPXML default (see HPXML Simulation Control) is used. + +- **Name:** ``simulation_control_run_period`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Simulation Control: Run Period Calendar Year** + +This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file. If not provided, the OS-HPXML default (see HPXML Simulation Control) is used. + +- **Name:** ``simulation_control_run_period_calendar_year`` +- **Type:** ``Integer`` + +- **Units:** ``year`` + +- **Required:** ``false`` + +
+ +**Simulation Control: Daylight Saving Enabled** + +Whether to use daylight saving. If not provided, the OS-HPXML default (see HPXML Building Site) is used. + +- **Name:** ``simulation_control_daylight_saving_enabled`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Simulation Control: Daylight Saving Period** + +Enter a date like 'Mar 15 - Dec 15'. If not provided, the OS-HPXML default (see HPXML Building Site) is used. + +- **Name:** ``simulation_control_daylight_saving_period`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Simulation Control: Temperature Capacitance Multiplier** + +Affects the transient calculation of indoor air temperatures. If not provided, the OS-HPXML default (see HPXML Simulation Control) is used. + +- **Name:** ``simulation_control_temperature_capacitance_multiplier`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Site: Type** + +The type of site. If not provided, the OS-HPXML default (see HPXML Site) is used. + +- **Name:** ``site_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `suburban`, `urban`, `rural` + +
+ +**Site: Shielding of Home** + +Presence of nearby buildings, trees, obstructions for infiltration model. If not provided, the OS-HPXML default (see HPXML Site) is used. + +- **Name:** ``site_shielding_of_home`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `exposed`, `normal`, `well-shielded` + +
+ +**Site: Ground Conductivity** + +Conductivity of the ground soil. If not provided, the OS-HPXML default (see HPXML Site) is used. + +- **Name:** ``site_ground_conductivity`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr-ft-F`` + +- **Required:** ``false`` + +
+ +**Site: Zip Code** + +Zip code of the home address. + +- **Name:** ``site_zip_code`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Site: IECC Zone** + +IECC zone of the home address. + +- **Name:** ``site_iecc_zone`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `1A`, `1B`, `1C`, `2A`, `2B`, `2C`, `3A`, `3B`, `3C`, `4A`, `4B`, `4C`, `5A`, `5B`, `5C`, `6A`, `6B`, `6C`, `7`, `8` + +
+ +**Site: State Code** + +State code of the home address. + +- **Name:** ``site_state_code`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `AK`, `AL`, `AR`, `AZ`, `CA`, `CO`, `CT`, `DC`, `DE`, `FL`, `GA`, `HI`, `IA`, `ID`, `IL`, `IN`, `KS`, `KY`, `LA`, `MA`, `MD`, `ME`, `MI`, `MN`, `MO`, `MS`, `MT`, `NC`, `ND`, `NE`, `NH`, `NJ`, `NM`, `NV`, `NY`, `OH`, `OK`, `OR`, `PA`, `RI`, `SC`, `SD`, `TN`, `TX`, `UT`, `VA`, `VT`, `WA`, `WI`, `WV`, `WY` + +
+ +**Site: Time Zone UTC Offset** + +Time zone UTC offset of the home address. Must be between -12 and 14. + +- **Name:** ``site_time_zone_utc_offset`` +- **Type:** ``Double`` + +- **Units:** ``hr`` + +- **Required:** ``false`` + +
+ +**Weather Station: EnergyPlus Weather (EPW) Filepath** + +Path of the EPW file. + +- **Name:** ``weather_station_epw_filepath`` +- **Type:** ``String`` + +- **Required:** ``true`` + +
+ +**Building Construction: Year Built** + +The year the building was built. + +- **Name:** ``year_built`` +- **Type:** ``Integer`` + +- **Required:** ``false`` + +
+ +**Building Construction: Unit Multiplier** + +The number of similar dwelling units. EnergyPlus simulation results will be multiplied this value. If not provided, defaults to 1. + +- **Name:** ``unit_multiplier`` +- **Type:** ``Integer`` + +- **Required:** ``false`` + +
+ +**Geometry: Unit Type** + +The type of dwelling unit. Use single-family attached for a dwelling unit with 1 or more stories, attached units to one or both sides, and no units above/below. Use apartment unit for a dwelling unit with 1 story, attached units to one, two, or three sides, and units above and/or below. + +- **Name:** ``geometry_unit_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `single-family detached`, `single-family attached`, `apartment unit`, `manufactured home` + +
+ +**Geometry: Unit Left Wall Is Adiabatic** + +Presence of an adiabatic left wall. + +- **Name:** ``geometry_unit_left_wall_is_adiabatic`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Geometry: Unit Right Wall Is Adiabatic** + +Presence of an adiabatic right wall. + +- **Name:** ``geometry_unit_right_wall_is_adiabatic`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Geometry: Unit Front Wall Is Adiabatic** + +Presence of an adiabatic front wall, for example, the unit is adjacent to a conditioned corridor. + +- **Name:** ``geometry_unit_front_wall_is_adiabatic`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Geometry: Unit Back Wall Is Adiabatic** + +Presence of an adiabatic back wall. + +- **Name:** ``geometry_unit_back_wall_is_adiabatic`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Geometry: Unit Number of Floors Above Grade** + +The number of floors above grade in the unit. Attic type ConditionedAttic is included. Assumed to be 1 for apartment units. + +- **Name:** ``geometry_unit_num_floors_above_grade`` +- **Type:** ``Integer`` + +- **Units:** ``#`` + +- **Required:** ``true`` + +
+ +**Geometry: Unit Conditioned Floor Area** + +The total floor area of the unit's conditioned space (including any conditioned basement floor area). + +- **Name:** ``geometry_unit_cfa`` +- **Type:** ``Double`` + +- **Units:** ``ft^2`` + +- **Required:** ``true`` + +
+ +**Geometry: Unit Aspect Ratio** + +The ratio of front/back wall length to left/right wall length for the unit, excluding any protruding garage wall area. + +- **Name:** ``geometry_unit_aspect_ratio`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Geometry: Unit Orientation** + +The unit's orientation is measured clockwise from north (e.g., North=0, East=90, South=180, West=270). + +- **Name:** ``geometry_unit_orientation`` +- **Type:** ``Double`` + +- **Units:** ``degrees`` + +- **Required:** ``true`` + +
+ +**Geometry: Unit Number of Bedrooms** + +The number of bedrooms in the unit. + +- **Name:** ``geometry_unit_num_bedrooms`` +- **Type:** ``Integer`` + +- **Units:** ``#`` + +- **Required:** ``true`` + +
+ +**Geometry: Unit Number of Bathrooms** + +The number of bathrooms in the unit. If not provided, the OS-HPXML default (see HPXML Building Construction) is used. + +- **Name:** ``geometry_unit_num_bathrooms`` +- **Type:** ``Integer`` + +- **Units:** ``#`` + +- **Required:** ``false`` + +
+ +**Geometry: Unit Number of Occupants** + +The number of occupants in the unit. If not provided, an *asset* calculation is performed assuming standard occupancy, in which various end use defaults (e.g., plug loads, appliances, and hot water usage) are calculated based on Number of Bedrooms and Conditioned Floor Area per ANSI/RESNET/ICC 301-2019. If provided, an *operational* calculation is instead performed in which the end use defaults are adjusted using the relationship between Number of Bedrooms and Number of Occupants from RECS 2015. + +- **Name:** ``geometry_unit_num_occupants`` +- **Type:** ``Double`` + +- **Units:** ``#`` + +- **Required:** ``false`` + +
+ +**Geometry: Building Number of Units** + +The number of units in the building. Required for single-family attached and apartment units. + +- **Name:** ``geometry_building_num_units`` +- **Type:** ``Integer`` + +- **Units:** ``#`` + +- **Required:** ``false`` + +
+ +**Geometry: Average Ceiling Height** + +Average distance from the floor to the ceiling. + +- **Name:** ``geometry_average_ceiling_height`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Geometry: Garage Width** + +The width of the garage. Enter zero for no garage. Only applies to single-family detached units. + +- **Name:** ``geometry_garage_width`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Geometry: Garage Depth** + +The depth of the garage. Only applies to single-family detached units. + +- **Name:** ``geometry_garage_depth`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Geometry: Garage Protrusion** + +The fraction of the garage that is protruding from the conditioned space. Only applies to single-family detached units. + +- **Name:** ``geometry_garage_protrusion`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Geometry: Garage Position** + +The position of the garage. Only applies to single-family detached units. + +- **Name:** ``geometry_garage_position`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `Right`, `Left` + +
+ +**Geometry: Foundation Type** + +The foundation type of the building. Foundation types ConditionedBasement and ConditionedCrawlspace are not allowed for apartment units. + +- **Name:** ``geometry_foundation_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `SlabOnGrade`, `VentedCrawlspace`, `UnventedCrawlspace`, `ConditionedCrawlspace`, `UnconditionedBasement`, `ConditionedBasement`, `Ambient`, `AboveApartment`, `BellyAndWingWithSkirt`, `BellyAndWingNoSkirt` + +
+ +**Geometry: Foundation Height** + +The height of the foundation (e.g., 3ft for crawlspace, 8ft for basement). Only applies to basements/crawlspaces. + +- **Name:** ``geometry_foundation_height`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Geometry: Foundation Height Above Grade** + +The depth above grade of the foundation wall. Only applies to basements/crawlspaces. + +- **Name:** ``geometry_foundation_height_above_grade`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Geometry: Rim Joist Height** + +The height of the rim joists. Only applies to basements/crawlspaces. + +- **Name:** ``geometry_rim_joist_height`` +- **Type:** ``Double`` + +- **Units:** ``in`` + +- **Required:** ``false`` + +
+ +**Geometry: Attic Type** + +The attic type of the building. Attic type ConditionedAttic is not allowed for apartment units. + +- **Name:** ``geometry_attic_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `FlatRoof`, `VentedAttic`, `UnventedAttic`, `ConditionedAttic`, `BelowApartment` + +
+ +**Geometry: Roof Type** + +The roof type of the building. Ignored if the building has a flat roof. + +- **Name:** ``geometry_roof_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `gable`, `hip` + +
+ +**Geometry: Roof Pitch** + +The roof pitch of the attic. Ignored if the building has a flat roof. + +- **Name:** ``geometry_roof_pitch`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `1:12`, `2:12`, `3:12`, `4:12`, `5:12`, `6:12`, `7:12`, `8:12`, `9:12`, `10:12`, `11:12`, `12:12` + +
+ +**Geometry: Eaves Depth** + +The eaves depth of the roof. + +- **Name:** ``geometry_eaves_depth`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Neighbor: Front Distance** + +The distance between the unit and the neighboring building to the front (not including eaves). A value of zero indicates no neighbors. Used for shading. + +- **Name:** ``neighbor_front_distance`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Neighbor: Back Distance** + +The distance between the unit and the neighboring building to the back (not including eaves). A value of zero indicates no neighbors. Used for shading. + +- **Name:** ``neighbor_back_distance`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Neighbor: Left Distance** + +The distance between the unit and the neighboring building to the left (not including eaves). A value of zero indicates no neighbors. Used for shading. + +- **Name:** ``neighbor_left_distance`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Neighbor: Right Distance** + +The distance between the unit and the neighboring building to the right (not including eaves). A value of zero indicates no neighbors. Used for shading. + +- **Name:** ``neighbor_right_distance`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Neighbor: Front Height** + +The height of the neighboring building to the front. If not provided, the OS-HPXML default (see HPXML Site) is used. + +- **Name:** ``neighbor_front_height`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``false`` + +
+ +**Neighbor: Back Height** + +The height of the neighboring building to the back. If not provided, the OS-HPXML default (see HPXML Site) is used. + +- **Name:** ``neighbor_back_height`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``false`` + +
+ +**Neighbor: Left Height** + +The height of the neighboring building to the left. If not provided, the OS-HPXML default (see HPXML Site) is used. + +- **Name:** ``neighbor_left_height`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``false`` + +
+ +**Neighbor: Right Height** + +The height of the neighboring building to the right. If not provided, the OS-HPXML default (see HPXML Site) is used. + +- **Name:** ``neighbor_right_height`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``false`` + +
+ +**Floor: Over Foundation Assembly R-value** + +Assembly R-value for the floor over the foundation. Ignored if the building has a slab-on-grade foundation. + +- **Name:** ``floor_over_foundation_assembly_r`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``true`` + +
+ +**Floor: Over Garage Assembly R-value** + +Assembly R-value for the floor over the garage. Ignored unless the building has a garage under conditioned space. + +- **Name:** ``floor_over_garage_assembly_r`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``true`` + +
+ +**Floor: Type** + +The type of floors. + +- **Name:** ``floor_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `WoodFrame`, `StructuralInsulatedPanel`, `SolidConcrete`, `SteelFrame` + +
+ +**Foundation Wall: Type** + +The material type of the foundation wall. If not provided, the OS-HPXML default (see HPXML Foundation Walls) is used. + +- **Name:** ``foundation_wall_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `solid concrete`, `concrete block`, `concrete block foam core`, `concrete block perlite core`, `concrete block vermiculite core`, `concrete block solid core`, `double brick`, `wood` + +
+ +**Foundation Wall: Thickness** + +The thickness of the foundation wall. If not provided, the OS-HPXML default (see HPXML Foundation Walls) is used. + +- **Name:** ``foundation_wall_thickness`` +- **Type:** ``Double`` + +- **Units:** ``in`` + +- **Required:** ``false`` + +
+ +**Foundation Wall: Insulation Nominal R-value** + +Nominal R-value for the foundation wall insulation. Only applies to basements/crawlspaces. + +- **Name:** ``foundation_wall_insulation_r`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``true`` + +
+ +**Foundation Wall: Insulation Location** + +Whether the insulation is on the interior or exterior of the foundation wall. Only applies to basements/crawlspaces. + +- **Name:** ``foundation_wall_insulation_location`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `interior`, `exterior` + +
+ +**Foundation Wall: Insulation Distance To Top** + +The distance from the top of the foundation wall to the top of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default (see HPXML Foundation Walls) is used. + +- **Name:** ``foundation_wall_insulation_distance_to_top`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``false`` + +
+ +**Foundation Wall: Insulation Distance To Bottom** + +The distance from the top of the foundation wall to the bottom of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default (see HPXML Foundation Walls) is used. + +- **Name:** ``foundation_wall_insulation_distance_to_bottom`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``false`` + +
+ +**Foundation Wall: Assembly R-value** + +Assembly R-value for the foundation walls. Only applies to basements/crawlspaces. If provided, overrides the previous foundation wall insulation inputs. If not provided, it is ignored. + +- **Name:** ``foundation_wall_assembly_r`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``false`` + +
+ +**Rim Joist: Assembly R-value** + +Assembly R-value for the rim joists. Only applies to basements/crawlspaces. Required if a rim joist height is provided. + +- **Name:** ``rim_joist_assembly_r`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``false`` + +
+ +**Slab: Perimeter Insulation Nominal R-value** + +Nominal R-value of the vertical slab perimeter insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. + +- **Name:** ``slab_perimeter_insulation_r`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``true`` + +
+ +**Slab: Perimeter Insulation Depth** + +Depth from grade to bottom of vertical slab perimeter insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. + +- **Name:** ``slab_perimeter_depth`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Slab: Under Slab Insulation Nominal R-value** + +Nominal R-value of the horizontal under slab insulation. Applies to slab-on-grade foundations and basement/crawlspace floors. + +- **Name:** ``slab_under_insulation_r`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``true`` + +
+ +**Slab: Under Slab Insulation Width** + +Width from slab edge inward of horizontal under-slab insulation. Enter 999 to specify that the under slab insulation spans the entire slab. Applies to slab-on-grade foundations and basement/crawlspace floors. + +- **Name:** ``slab_under_width`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Slab: Thickness** + +The thickness of the slab. Zero can be entered if there is a dirt floor instead of a slab. If not provided, the OS-HPXML default (see HPXML Slabs) is used. + +- **Name:** ``slab_thickness`` +- **Type:** ``Double`` + +- **Units:** ``in`` + +- **Required:** ``false`` + +
+ +**Slab: Carpet Fraction** + +Fraction of the slab floor area that is carpeted. If not provided, the OS-HPXML default (see HPXML Slabs) is used. + +- **Name:** ``slab_carpet_fraction`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Slab: Carpet R-value** + +R-value of the slab carpet. If not provided, the OS-HPXML default (see HPXML Slabs) is used. + +- **Name:** ``slab_carpet_r`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``false`` + +
+ +**Ceiling: Assembly R-value** + +Assembly R-value for the ceiling (attic floor). + +- **Name:** ``ceiling_assembly_r`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``true`` + +
+ +**Roof: Material Type** + +The material type of the roof. If not provided, the OS-HPXML default (see HPXML Roofs) is used. + +- **Name:** ``roof_material_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `asphalt or fiberglass shingles`, `concrete`, `cool roof`, `slate or tile shingles`, `expanded polystyrene sheathing`, `metal surfacing`, `plastic/rubber/synthetic sheeting`, `shingles`, `wood shingles or shakes` + +
+ +**Roof: Color** + +The color of the roof. If not provided, the OS-HPXML default (see HPXML Roofs) is used. + +- **Name:** ``roof_color`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `dark`, `light`, `medium`, `medium dark`, `reflective` + +
+ +**Roof: Assembly R-value** + +Assembly R-value of the roof. + +- **Name:** ``roof_assembly_r`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``true`` + +
+ +**Roof: Has Radiant Barrier** + +Presence of a radiant barrier in the attic. + +- **Name:** ``roof_radiant_barrier`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Roof: Radiant Barrier Grade** + +The grade of the radiant barrier. If not provided, the OS-HPXML default (see HPXML Roofs) is used. + +- **Name:** ``roof_radiant_barrier_grade`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `1`, `2`, `3` + +
+ +**Wall: Type** + +The type of walls. + +- **Name:** ``wall_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `WoodStud`, `ConcreteMasonryUnit`, `DoubleWoodStud`, `InsulatedConcreteForms`, `LogWall`, `StructuralInsulatedPanel`, `SolidConcrete`, `SteelFrame`, `Stone`, `StrawBale`, `StructuralBrick` + +
+ +**Wall: Siding Type** + +The siding type of the walls. Also applies to rim joists. If not provided, the OS-HPXML default (see HPXML Walls) is used. + +- **Name:** ``wall_siding_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `aluminum siding`, `asbestos siding`, `brick veneer`, `composite shingle siding`, `fiber cement siding`, `masonite siding`, `none`, `stucco`, `synthetic stucco`, `vinyl siding`, `wood siding` + +
+ +**Wall: Color** + +The color of the walls. Also applies to rim joists. If not provided, the OS-HPXML default (see HPXML Walls) is used. + +- **Name:** ``wall_color`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `dark`, `light`, `medium`, `medium dark`, `reflective` + +
+ +**Wall: Assembly R-value** + +Assembly R-value of the walls. + +- **Name:** ``wall_assembly_r`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``true`` + +
+ +**Windows: Front Window-to-Wall Ratio** + +The ratio of window area to wall area for the unit's front facade. Enter 0 if specifying Front Window Area instead. + +- **Name:** ``window_front_wwr`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Windows: Back Window-to-Wall Ratio** + +The ratio of window area to wall area for the unit's back facade. Enter 0 if specifying Back Window Area instead. + +- **Name:** ``window_back_wwr`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Windows: Left Window-to-Wall Ratio** + +The ratio of window area to wall area for the unit's left facade (when viewed from the front). Enter 0 if specifying Left Window Area instead. + +- **Name:** ``window_left_wwr`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Windows: Right Window-to-Wall Ratio** + +The ratio of window area to wall area for the unit's right facade (when viewed from the front). Enter 0 if specifying Right Window Area instead. + +- **Name:** ``window_right_wwr`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Windows: Front Window Area** + +The amount of window area on the unit's front facade. Enter 0 if specifying Front Window-to-Wall Ratio instead. + +- **Name:** ``window_area_front`` +- **Type:** ``Double`` + +- **Units:** ``ft^2`` + +- **Required:** ``true`` + +
+ +**Windows: Back Window Area** + +The amount of window area on the unit's back facade. Enter 0 if specifying Back Window-to-Wall Ratio instead. + +- **Name:** ``window_area_back`` +- **Type:** ``Double`` + +- **Units:** ``ft^2`` + +- **Required:** ``true`` + +
+ +**Windows: Left Window Area** + +The amount of window area on the unit's left facade (when viewed from the front). Enter 0 if specifying Left Window-to-Wall Ratio instead. + +- **Name:** ``window_area_left`` +- **Type:** ``Double`` + +- **Units:** ``ft^2`` + +- **Required:** ``true`` + +
+ +**Windows: Right Window Area** + +The amount of window area on the unit's right facade (when viewed from the front). Enter 0 if specifying Right Window-to-Wall Ratio instead. + +- **Name:** ``window_area_right`` +- **Type:** ``Double`` + +- **Units:** ``ft^2`` + +- **Required:** ``true`` + +
+ +**Windows: Aspect Ratio** + +Ratio of window height to width. + +- **Name:** ``window_aspect_ratio`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Windows: Fraction Operable** + +Fraction of windows that are operable. If not provided, the OS-HPXML default (see HPXML Windows) is used. + +- **Name:** ``window_fraction_operable`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Windows: Natural Ventilation Availability** + +For operable windows, the number of days/week that windows can be opened by occupants for natural ventilation. If not provided, the OS-HPXML default (see HPXML Windows) is used. + +- **Name:** ``window_natvent_availability`` +- **Type:** ``Integer`` + +- **Units:** ``Days/week`` + +- **Required:** ``false`` + +
+ +**Windows: U-Factor** + +Full-assembly NFRC U-factor. + +- **Name:** ``window_ufactor`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr-ft^2-R`` + +- **Required:** ``true`` + +
+ +**Windows: SHGC** + +Full-assembly NFRC solar heat gain coefficient. + +- **Name:** ``window_shgc`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Windows: Winter Interior Shading** + +Interior shading coefficient for the winter season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see HPXML Windows) is used. + +- **Name:** ``window_interior_shading_winter`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Windows: Summer Interior Shading** + +Interior shading coefficient for the summer season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see HPXML Windows) is used. + +- **Name:** ``window_interior_shading_summer`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Windows: Winter Exterior Shading** + +Exterior shading coefficient for the winter season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see HPXML Windows) is used. + +- **Name:** ``window_exterior_shading_winter`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Windows: Summer Exterior Shading** + +Exterior shading coefficient for the summer season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see HPXML Windows) is used. + +- **Name:** ``window_exterior_shading_summer`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Windows: Shading Summer Season** + +Enter a date like 'May 1 - Sep 30'. Defines the summer season for purposes of shading coefficients; the rest of the year is assumed to be winter. If not provided, the OS-HPXML default (see HPXML Windows) is used. + +- **Name:** ``window_shading_summer_season`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Windows: Storm Type** + +The type of storm, if present. If not provided, assumes there is no storm. + +- **Name:** ``window_storm_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `clear`, `low-e` + +
+ +**Overhangs: Front Depth** + +The depth of overhangs for windows for the front facade. + +- **Name:** ``overhangs_front_depth`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Overhangs: Front Distance to Top of Window** + +The overhangs distance to the top of window for the front facade. + +- **Name:** ``overhangs_front_distance_to_top_of_window`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Overhangs: Front Distance to Bottom of Window** + +The overhangs distance to the bottom of window for the front facade. + +- **Name:** ``overhangs_front_distance_to_bottom_of_window`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Overhangs: Back Depth** + +The depth of overhangs for windows for the back facade. + +- **Name:** ``overhangs_back_depth`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Overhangs: Back Distance to Top of Window** + +The overhangs distance to the top of window for the back facade. + +- **Name:** ``overhangs_back_distance_to_top_of_window`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Overhangs: Back Distance to Bottom of Window** + +The overhangs distance to the bottom of window for the back facade. + +- **Name:** ``overhangs_back_distance_to_bottom_of_window`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Overhangs: Left Depth** + +The depth of overhangs for windows for the left facade. + +- **Name:** ``overhangs_left_depth`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Overhangs: Left Distance to Top of Window** + +The overhangs distance to the top of window for the left facade. + +- **Name:** ``overhangs_left_distance_to_top_of_window`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Overhangs: Left Distance to Bottom of Window** + +The overhangs distance to the bottom of window for the left facade. + +- **Name:** ``overhangs_left_distance_to_bottom_of_window`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Overhangs: Right Depth** + +The depth of overhangs for windows for the right facade. + +- **Name:** ``overhangs_right_depth`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Overhangs: Right Distance to Top of Window** + +The overhangs distance to the top of window for the right facade. + +- **Name:** ``overhangs_right_distance_to_top_of_window`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Overhangs: Right Distance to Bottom of Window** + +The overhangs distance to the bottom of window for the right facade. + +- **Name:** ``overhangs_right_distance_to_bottom_of_window`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``true`` + +
+ +**Skylights: Front Roof Area** + +The amount of skylight area on the unit's front conditioned roof facade. + +- **Name:** ``skylight_area_front`` +- **Type:** ``Double`` + +- **Units:** ``ft^2`` + +- **Required:** ``true`` + +
+ +**Skylights: Back Roof Area** + +The amount of skylight area on the unit's back conditioned roof facade. + +- **Name:** ``skylight_area_back`` +- **Type:** ``Double`` + +- **Units:** ``ft^2`` + +- **Required:** ``true`` + +
+ +**Skylights: Left Roof Area** + +The amount of skylight area on the unit's left conditioned roof facade (when viewed from the front). + +- **Name:** ``skylight_area_left`` +- **Type:** ``Double`` + +- **Units:** ``ft^2`` + +- **Required:** ``true`` + +
+ +**Skylights: Right Roof Area** + +The amount of skylight area on the unit's right conditioned roof facade (when viewed from the front). + +- **Name:** ``skylight_area_right`` +- **Type:** ``Double`` + +- **Units:** ``ft^2`` + +- **Required:** ``true`` + +
+ +**Skylights: U-Factor** + +Full-assembly NFRC U-factor. + +- **Name:** ``skylight_ufactor`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr-ft^2-R`` + +- **Required:** ``true`` + +
+ +**Skylights: SHGC** + +Full-assembly NFRC solar heat gain coefficient. + +- **Name:** ``skylight_shgc`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Skylights: Storm Type** + +The type of storm, if present. If not provided, assumes there is no storm. + +- **Name:** ``skylight_storm_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `clear`, `low-e` + +
+ +**Doors: Area** + +The area of the opaque door(s). + +- **Name:** ``door_area`` +- **Type:** ``Double`` + +- **Units:** ``ft^2`` + +- **Required:** ``true`` + +
+ +**Doors: R-value** + +R-value of the opaque door(s). + +- **Name:** ``door_rvalue`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``true`` + +
+ +**Air Leakage: Units** + +The unit of measure for the air leakage. + +- **Name:** ``air_leakage_units`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `ACH`, `CFM`, `ACHnatural`, `CFMnatural`, `EffectiveLeakageArea` + +
+ +**Air Leakage: House Pressure** + +The house pressure relative to outside. Required when units are ACH or CFM. + +- **Name:** ``air_leakage_house_pressure`` +- **Type:** ``Double`` + +- **Units:** ``Pa`` + +- **Required:** ``true`` + +
+ +**Air Leakage: Value** + +Air exchange rate value. For 'EffectiveLeakageArea', provide value in sq. in. + +- **Name:** ``air_leakage_value`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Air Leakage: Type** + +Type of air leakage. If 'unit total', represents the total infiltration to the unit as measured by a compartmentalization test, in which case the air leakage value will be adjusted by the ratio of exterior envelope surface area to total envelope surface area. Otherwise, if 'unit exterior only', represents the infiltration to the unit from outside only as measured by a guarded test. Required when unit type is single-family attached or apartment unit. + +- **Name:** ``air_leakage_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `unit total`, `unit exterior only` + +
+ +**Air Leakage: Has Flue or Chimney in Conditioned Space** + +Presence of flue or chimney with combustion air from conditioned space; used for infiltration model. If not provided, the OS-HPXML default (see Flue or Chimney) is used. + +- **Name:** ``air_leakage_has_flue_or_chimney_in_conditioned_space`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Heating System: Type** + +The type of heating system. Use 'none' if there is no heating system or if there is a heat pump serving a heating load. + +- **Name:** ``heating_system_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `none`, `Furnace`, `WallFurnace`, `FloorFurnace`, `Boiler`, `ElectricResistance`, `Stove`, `SpaceHeater`, `Fireplace`, `Shared Boiler w/ Baseboard`, `Shared Boiler w/ Ductless Fan Coil` + +
+ +**Heating System: Fuel Type** + +The fuel type of the heating system. Ignored for ElectricResistance. + +- **Name:** ``heating_system_fuel`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `electricity`, `natural gas`, `fuel oil`, `propane`, `wood`, `wood pellets`, `coal` + +
+ +**Heating System: Rated AFUE or Percent** + +The rated heating efficiency value of the heating system. + +- **Name:** ``heating_system_heating_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Heating System: Heating Capacity** + +The output heating capacity of the heating system. If not provided, the OS-HPXML autosized default (see HPXML Heating Systems) is used. + +- **Name:** ``heating_system_heating_capacity`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr`` + +- **Required:** ``false`` + +
+ +**Heating System: Fraction Heat Load Served** + +The heating load served by the heating system. + +- **Name:** ``heating_system_fraction_heat_load_served`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Heating System: Pilot Light** + +The fuel usage of the pilot light. Applies only to Furnace, WallFurnace, FloorFurnace, Stove, Boiler, and Fireplace with non-electric fuel type. If not provided, assumes no pilot light. + +- **Name:** ``heating_system_pilot_light`` +- **Type:** ``Double`` + +- **Units:** ``Btuh`` + +- **Required:** ``false`` + +
+ +**Heating System: Airflow Defect Ratio** + +The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the heating system per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to Furnace. If not provided, assumes no defect. + +- **Name:** ``heating_system_airflow_defect_ratio`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Cooling System: Type** + +The type of cooling system. Use 'none' if there is no cooling system or if there is a heat pump serving a cooling load. + +- **Name:** ``cooling_system_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `none`, `central air conditioner`, `room air conditioner`, `evaporative cooler`, `mini-split`, `packaged terminal air conditioner` + +
+ +**Cooling System: Efficiency Type** + +The efficiency type of the cooling system. System types central air conditioner and mini-split use SEER or SEER2. System types room air conditioner and packaged terminal air conditioner use EER or CEER. Ignored for system type evaporative cooler. + +- **Name:** ``cooling_system_cooling_efficiency_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `SEER`, `SEER2`, `EER`, `CEER` + +
+ +**Cooling System: Efficiency** + +The rated efficiency value of the cooling system. Ignored for evaporative cooler. + +- **Name:** ``cooling_system_cooling_efficiency`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Cooling System: Cooling Compressor Type** + +The compressor type of the cooling system. Only applies to central air conditioner and mini-split. If not provided, the OS-HPXML default (see Central Air Conditioner, Mini-Split Air Conditioner) is used. + +- **Name:** ``cooling_system_cooling_compressor_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `single stage`, `two stage`, `variable speed` + +
+ +**Cooling System: Cooling Sensible Heat Fraction** + +The sensible heat fraction of the cooling system. Ignored for evaporative cooler. If not provided, the OS-HPXML default (see Central Air Conditioner, Room Air Conditioner, Packaged Terminal Air Conditioner, Mini-Split Air Conditioner) is used. + +- **Name:** ``cooling_system_cooling_sensible_heat_fraction`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Cooling System: Cooling Capacity** + +The output cooling capacity of the cooling system. If not provided, the OS-HPXML autosized default (see Central Air Conditioner, Room Air Conditioner, Packaged Terminal Air Conditioner, Evaporative Cooler, Mini-Split Air Conditioner) is used. + +- **Name:** ``cooling_system_cooling_capacity`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr`` + +- **Required:** ``false`` + +
+ +**Cooling System: Fraction Cool Load Served** + +The cooling load served by the cooling system. + +- **Name:** ``cooling_system_fraction_cool_load_served`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Cooling System: Is Ducted** + +Whether the cooling system is ducted or not. Only used for mini-split and evaporative cooler. It's assumed that central air conditioner is ducted, and room air conditioner and packaged terminal air conditioner are not ducted. + +- **Name:** ``cooling_system_is_ducted`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Cooling System: Airflow Defect Ratio** + +The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the cooling system per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to central air conditioner and ducted mini-split. If not provided, assumes no defect. + +- **Name:** ``cooling_system_airflow_defect_ratio`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Cooling System: Charge Defect Ratio** + +The refrigerant charge defect ratio, defined as (InstalledCharge - DesignCharge) / DesignCharge, of the cooling system per ANSI/RESNET/ACCA Standard 310. A value of zero means no refrigerant charge defect. Applies only to central air conditioner and mini-split. If not provided, assumes no defect. + +- **Name:** ``cooling_system_charge_defect_ratio`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Cooling System: Crankcase Heater Power Watts** + +Cooling system crankcase heater power consumption in Watts. Applies only to central air conditioner, room air conditioner, packaged terminal air conditioner and mini-split. If not provided, the OS-HPXML default (see Central Air Conditioner, Room Air Conditioner, Packaged Terminal Air Conditioner, Mini-Split Air Conditioner) is used. + +- **Name:** ``cooling_system_crankcase_heater_watts`` +- **Type:** ``Double`` + +- **Units:** ``W`` + +- **Required:** ``false`` + +
+ +**Cooling System: Integrated Heating System Fuel Type** + +The fuel type of the heating system integrated into cooling system. Only used for packaged terminal air conditioner and room air conditioner. + +- **Name:** ``cooling_system_integrated_heating_system_fuel`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `electricity`, `natural gas`, `fuel oil`, `propane`, `wood`, `wood pellets`, `coal` + +
+ +**Cooling System: Integrated Heating System Efficiency** + +The rated heating efficiency value of the heating system integrated into cooling system. Only used for packaged terminal air conditioner and room air conditioner. + +- **Name:** ``cooling_system_integrated_heating_system_efficiency_percent`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Cooling System: Integrated Heating System Heating Capacity** + +The output heating capacity of the heating system integrated into cooling system. If not provided, the OS-HPXML autosized default (see Room Air Conditioner, Packaged Terminal Air Conditioner) is used. Only used for room air conditioner and packaged terminal air conditioner. + +- **Name:** ``cooling_system_integrated_heating_system_capacity`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr`` + +- **Required:** ``false`` + +
+ +**Cooling System: Integrated Heating System Fraction Heat Load Served** + +The heating load served by the heating system integrated into cooling system. Only used for packaged terminal air conditioner and room air conditioner. + +- **Name:** ``cooling_system_integrated_heating_system_fraction_heat_load_served`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Heat Pump: Type** + +The type of heat pump. Use 'none' if there is no heat pump. + +- **Name:** ``heat_pump_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `none`, `air-to-air`, `mini-split`, `ground-to-air`, `packaged terminal heat pump`, `room air conditioner with reverse cycle` + +
+ +**Heat Pump: Heating Efficiency Type** + +The heating efficiency type of heat pump. System types air-to-air and mini-split use HSPF or HSPF2. System types ground-to-air, packaged terminal heat pump and room air conditioner with reverse cycle use COP. + +- **Name:** ``heat_pump_heating_efficiency_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `HSPF`, `HSPF2`, `COP` + +
+ +**Heat Pump: Heating Efficiency** + +The rated heating efficiency value of the heat pump. + +- **Name:** ``heat_pump_heating_efficiency`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Heat Pump: Cooling Efficiency Type** + +The cooling efficiency type of heat pump. System types air-to-air and mini-split use SEER or SEER2. System types ground-to-air, packaged terminal heat pump and room air conditioner with reverse cycle use EER. + +- **Name:** ``heat_pump_cooling_efficiency_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `SEER`, `SEER2`, `EER`, `CEER` + +
+ +**Heat Pump: Cooling Efficiency** + +The rated cooling efficiency value of the heat pump. + +- **Name:** ``heat_pump_cooling_efficiency`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Heat Pump: Cooling Compressor Type** + +The compressor type of the heat pump. Only applies to air-to-air and mini-split. If not provided, the OS-HPXML default (see Air-to-Air Heat Pump, Mini-Split Heat Pump) is used. + +- **Name:** ``heat_pump_cooling_compressor_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `single stage`, `two stage`, `variable speed` + +
+ +**Heat Pump: Cooling Sensible Heat Fraction** + +The sensible heat fraction of the heat pump. If not provided, the OS-HPXML default (see Air-to-Air Heat Pump, Mini-Split Heat Pump, Packaged Terminal Heat Pump, Room Air Conditioner w/ Reverse Cycle, Ground-to-Air Heat Pump) is used. + +- **Name:** ``heat_pump_cooling_sensible_heat_fraction`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Heat Pump: Heating Capacity** + +The output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default (see Air-to-Air Heat Pump, Mini-Split Heat Pump, Packaged Terminal Heat Pump, Room Air Conditioner w/ Reverse Cycle, Ground-to-Air Heat Pump) is used. + +- **Name:** ``heat_pump_heating_capacity`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr`` + +- **Required:** ``false`` + +
+ +**Heat Pump: Heating Capacity Retention Fraction** + +The output heating capacity of the heat pump at a user-specified temperature (e.g., 17F or 5F) divided by the above nominal heating capacity. Applies to all heat pump types except ground-to-air. If not provided, the OS-HPXML default (see Air-to-Air Heat Pump, Mini-Split Heat Pump, Packaged Terminal Heat Pump, Room Air Conditioner w/ Reverse Cycle) is used. + +- **Name:** ``heat_pump_heating_capacity_retention_fraction`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Heat Pump: Heating Capacity Retention Temperature** + +The user-specified temperature (e.g., 17F or 5F) for the above heating capacity retention fraction. Applies to all heat pump types except ground-to-air. Required if the Heating Capacity Retention Fraction is provided. + +- **Name:** ``heat_pump_heating_capacity_retention_temp`` +- **Type:** ``Double`` + +- **Units:** ``deg-F`` + +- **Required:** ``false`` + +
+ +**Heat Pump: Cooling Capacity** + +The output cooling capacity of the heat pump. If not provided, the OS-HPXML autosized default (see Air-to-Air Heat Pump, Mini-Split Heat Pump, Packaged Terminal Heat Pump, Room Air Conditioner w/ Reverse Cycle, Ground-to-Air Heat Pump) is used. + +- **Name:** ``heat_pump_cooling_capacity`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr`` + +- **Required:** ``false`` + +
+ +**Heat Pump: Fraction Heat Load Served** + +The heating load served by the heat pump. + +- **Name:** ``heat_pump_fraction_heat_load_served`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Heat Pump: Fraction Cool Load Served** + +The cooling load served by the heat pump. + +- **Name:** ``heat_pump_fraction_cool_load_served`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Heat Pump: Compressor Lockout Temperature** + +The temperature below which the heat pump compressor is disabled. If both this and Backup Heating Lockout Temperature are provided and use the same value, it essentially defines a switchover temperature (for, e.g., a dual-fuel heat pump). Applies to all heat pump types other than ground-to-air. If not provided, the OS-HPXML default (see Air-to-Air Heat Pump, Mini-Split Heat Pump, Packaged Terminal Heat Pump, Room Air Conditioner w/ Reverse Cycle) is used. + +- **Name:** ``heat_pump_compressor_lockout_temp`` +- **Type:** ``Double`` + +- **Units:** ``deg-F`` + +- **Required:** ``false`` + +
+ +**Heat Pump: Backup Type** + +The backup type of the heat pump. If 'integrated', represents e.g. built-in electric strip heat or dual-fuel integrated furnace. If 'separate', represents e.g. electric baseboard or boiler based on the Heating System 2 specified below. Use 'none' if there is no backup heating. + +- **Name:** ``heat_pump_backup_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `none`, `integrated`, `separate` + +
+ +**Heat Pump: Backup Fuel Type** + +The backup fuel type of the heat pump. Only applies if Backup Type is 'integrated'. + +- **Name:** ``heat_pump_backup_fuel`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `electricity`, `natural gas`, `fuel oil`, `propane` + +
+ +**Heat Pump: Backup Rated Efficiency** + +The backup rated efficiency value of the heat pump. Percent for electricity fuel type. AFUE otherwise. Only applies if Backup Type is 'integrated'. + +- **Name:** ``heat_pump_backup_heating_efficiency`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Heat Pump: Backup Heating Capacity** + +The backup output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default (see Backup) is used. Only applies if Backup Type is 'integrated'. + +- **Name:** ``heat_pump_backup_heating_capacity`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr`` + +- **Required:** ``false`` + +
+ +**Heat Pump: Backup Heating Lockout Temperature** + +The temperature above which the heat pump backup system is disabled. If both this and Compressor Lockout Temperature are provided and use the same value, it essentially defines a switchover temperature (for, e.g., a dual-fuel heat pump). Applies for both Backup Type of 'integrated' and 'separate'. If not provided, the OS-HPXML default (see Backup) is used. + +- **Name:** ``heat_pump_backup_heating_lockout_temp`` +- **Type:** ``Double`` + +- **Units:** ``deg-F`` + +- **Required:** ``false`` + +
+ +**Heat Pump: Sizing Methodology** + +The auto-sizing methodology to use when the heat pump capacity is not provided. If not provided, the OS-HPXML default (see HPXML HVAC Sizing Control) is used. + +- **Name:** ``heat_pump_sizing_methodology`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `ACCA`, `HERS`, `MaxLoad` + +
+ +**Heat Pump: Is Ducted** + +Whether the heat pump is ducted or not. Only used for mini-split. It's assumed that air-to-air and ground-to-air are ducted, and packaged terminal heat pump and room air conditioner with reverse cycle are not ducted. If not provided, assumes not ducted. + +- **Name:** ``heat_pump_is_ducted`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Heat Pump: Airflow Defect Ratio** + +The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the heat pump per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to air-to-air, ducted mini-split, and ground-to-air. If not provided, assumes no defect. + +- **Name:** ``heat_pump_airflow_defect_ratio`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Heat Pump: Charge Defect Ratio** + +The refrigerant charge defect ratio, defined as (InstalledCharge - DesignCharge) / DesignCharge, of the heat pump per ANSI/RESNET/ACCA Standard 310. A value of zero means no refrigerant charge defect. Applies to all heat pump types. If not provided, assumes no defect. + +- **Name:** ``heat_pump_charge_defect_ratio`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Heat Pump: Crankcase Heater Power Watts** + +Heat Pump crankcase heater power consumption in Watts. Applies only to air-to-air, mini-split, packaged terminal heat pump and room air conditioner with reverse cycle. If not provided, the OS-HPXML default (see Air-to-Air Heat Pump, Mini-Split Heat Pump, Packaged Terminal Heat Pump, Room Air Conditioner w/ Reverse Cycle) is used. + +- **Name:** ``heat_pump_crankcase_heater_watts`` +- **Type:** ``Double`` + +- **Units:** ``W`` + +- **Required:** ``false`` + +
+ +**Heating System 2: Type** + +The type of the second heating system. + +- **Name:** ``heating_system_2_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `none`, `Furnace`, `WallFurnace`, `FloorFurnace`, `Boiler`, `ElectricResistance`, `Stove`, `SpaceHeater`, `Fireplace` + +
+ +**Heating System 2: Fuel Type** + +The fuel type of the second heating system. Ignored for ElectricResistance. + +- **Name:** ``heating_system_2_fuel`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `electricity`, `natural gas`, `fuel oil`, `propane`, `wood`, `wood pellets`, `coal` + +
+ +**Heating System 2: Rated AFUE or Percent** + +The rated heating efficiency value of the second heating system. + +- **Name:** ``heating_system_2_heating_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Heating System 2: Heating Capacity** + +The output heating capacity of the second heating system. If not provided, the OS-HPXML autosized default (see HPXML Heating Systems) is used. + +- **Name:** ``heating_system_2_heating_capacity`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr`` + +- **Required:** ``false`` + +
+ +**Heating System 2: Fraction Heat Load Served** + +The heat load served fraction of the second heating system. Ignored if this heating system serves as a backup system for a heat pump. + +- **Name:** ``heating_system_2_fraction_heat_load_served`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**HVAC Control: Heating Weekday Setpoint Schedule** + +Specify the constant or 24-hour comma-separated weekday heating setpoint schedule. Required unless a detailed CSV schedule is provided. + +- **Name:** ``hvac_control_heating_weekday_setpoint`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**HVAC Control: Heating Weekend Setpoint Schedule** + +Specify the constant or 24-hour comma-separated weekend heating setpoint schedule. Required unless a detailed CSV schedule is provided. + +- **Name:** ``hvac_control_heating_weekend_setpoint`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**HVAC Control: Cooling Weekday Setpoint Schedule** + +Specify the constant or 24-hour comma-separated weekday cooling setpoint schedule. Required unless a detailed CSV schedule is provided. + +- **Name:** ``hvac_control_cooling_weekday_setpoint`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**HVAC Control: Cooling Weekend Setpoint Schedule** + +Specify the constant or 24-hour comma-separated weekend cooling setpoint schedule. Required unless a detailed CSV schedule is provided. + +- **Name:** ``hvac_control_cooling_weekend_setpoint`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**HVAC Control: Heating Season Period** + +Enter a date like 'Nov 1 - Jun 30'. If not provided, the OS-HPXML default (see HPXML HVAC Control) is used. Can also provide 'BuildingAmerica' to use automatic seasons from the Building America House Simulation Protocols. + +- **Name:** ``hvac_control_heating_season_period`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**HVAC Control: Cooling Season Period** + +Enter a date like 'Jun 1 - Oct 31'. If not provided, the OS-HPXML default (see HPXML HVAC Control) is used. Can also provide 'BuildingAmerica' to use automatic seasons from the Building America House Simulation Protocols. + +- **Name:** ``hvac_control_cooling_season_period`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Ducts: Leakage Units** + +The leakage units of the ducts. + +- **Name:** ``ducts_leakage_units`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `CFM25`, `CFM50`, `Percent` + +
+ +**Ducts: Supply Leakage to Outside Value** + +The leakage value to outside for the supply ducts. + +- **Name:** ``ducts_supply_leakage_to_outside_value`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Ducts: Return Leakage to Outside Value** + +The leakage value to outside for the return ducts. + +- **Name:** ``ducts_return_leakage_to_outside_value`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Ducts: Supply Location** + +The location of the supply ducts. If not provided, the OS-HPXML default (see Air Distribution) is used. + +- **Name:** ``ducts_supply_location`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `conditioned space`, `basement - conditioned`, `basement - unconditioned`, `crawlspace`, `crawlspace - vented`, `crawlspace - unvented`, `crawlspace - conditioned`, `attic`, `attic - vented`, `attic - unvented`, `garage`, `exterior wall`, `under slab`, `roof deck`, `outside`, `other housing unit`, `other heated space`, `other multifamily buffer space`, `other non-freezing space`, `manufactured home belly` + +
+ +**Ducts: Supply Insulation R-Value** + +The insulation r-value of the supply ducts excluding air films. + +- **Name:** ``ducts_supply_insulation_r`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``true`` + +
+ +**Ducts: Supply Buried Insulation Level** + +Whether the supply ducts are buried in, e.g., attic loose-fill insulation. Partially buried ducts have insulation that does not cover the top of the ducts. Fully buried ducts have insulation that just covers the top of the ducts. Deeply buried ducts have insulation that continues above the top of the ducts. + +- **Name:** ``ducts_supply_buried_insulation_level`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `not buried`, `partially buried`, `fully buried`, `deeply buried` + +
+ +**Ducts: Supply Surface Area** + +The supply ducts surface area in the given location. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see Air Distribution) is used. + +- **Name:** ``ducts_supply_surface_area`` +- **Type:** ``Double`` + +- **Units:** ``ft^2`` + +- **Required:** ``false`` + +
+ +**Ducts: Supply Area Fraction** + +The fraction of supply ducts surface area in the given location. Only used if Surface Area is not provided. If the fraction is less than 1, the remaining duct area is assumed to be in conditioned space. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see Air Distribution) is used. + +- **Name:** ``ducts_supply_surface_area_fraction`` +- **Type:** ``Double`` + +- **Units:** ``frac`` + +- **Required:** ``false`` + +
+ +**Ducts: Return Location** + +The location of the return ducts. If not provided, the OS-HPXML default (see Air Distribution) is used. + +- **Name:** ``ducts_return_location`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `conditioned space`, `basement - conditioned`, `basement - unconditioned`, `crawlspace`, `crawlspace - vented`, `crawlspace - unvented`, `crawlspace - conditioned`, `attic`, `attic - vented`, `attic - unvented`, `garage`, `exterior wall`, `under slab`, `roof deck`, `outside`, `other housing unit`, `other heated space`, `other multifamily buffer space`, `other non-freezing space`, `manufactured home belly` + +
+ +**Ducts: Return Insulation R-Value** + +The insulation r-value of the return ducts excluding air films. + +- **Name:** ``ducts_return_insulation_r`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``true`` + +
+ +**Ducts: Return Buried Insulation Level** + +Whether the return ducts are buried in, e.g., attic loose-fill insulation. Partially buried ducts have insulation that does not cover the top of the ducts. Fully buried ducts have insulation that just covers the top of the ducts. Deeply buried ducts have insulation that continues above the top of the ducts. + +- **Name:** ``ducts_return_buried_insulation_level`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `not buried`, `partially buried`, `fully buried`, `deeply buried` + +
+ +**Ducts: Return Surface Area** + +The return ducts surface area in the given location. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see Air Distribution) is used. + +- **Name:** ``ducts_return_surface_area`` +- **Type:** ``Double`` + +- **Units:** ``ft^2`` + +- **Required:** ``false`` + +
+ +**Ducts: Return Area Fraction** + +The fraction of return ducts surface area in the given location. Only used if Surface Area is not provided. If the fraction is less than 1, the remaining duct area is assumed to be in conditioned space. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see Air Distribution) is used. + +- **Name:** ``ducts_return_surface_area_fraction`` +- **Type:** ``Double`` + +- **Units:** ``frac`` + +- **Required:** ``false`` + +
+ +**Ducts: Number of Return Registers** + +The number of return registers of the ducts. Only used to calculate default return duct surface area. If not provided, the OS-HPXML default (see Air Distribution) is used. + +- **Name:** ``ducts_number_of_return_registers`` +- **Type:** ``Integer`` + +- **Units:** ``#`` + +- **Required:** ``false`` + +
+ +**Mechanical Ventilation: Fan Type** + +The type of the mechanical ventilation. Use 'none' if there is no mechanical ventilation system. + +- **Name:** ``mech_vent_fan_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `none`, `exhaust only`, `supply only`, `energy recovery ventilator`, `heat recovery ventilator`, `balanced`, `central fan integrated supply` + +
+ +**Mechanical Ventilation: Flow Rate** + +The flow rate of the mechanical ventilation. If not provided, the OS-HPXML default (see Whole Ventilation Fan) is used. + +- **Name:** ``mech_vent_flow_rate`` +- **Type:** ``Double`` + +- **Units:** ``CFM`` + +- **Required:** ``false`` + +
+ +**Mechanical Ventilation: Hours In Operation** + +The hours in operation of the mechanical ventilation. If not provided, the OS-HPXML default (see Whole Ventilation Fan) is used. + +- **Name:** ``mech_vent_hours_in_operation`` +- **Type:** ``Double`` + +- **Units:** ``hrs/day`` + +- **Required:** ``false`` + +
+ +**Mechanical Ventilation: Total Recovery Efficiency Type** + +The total recovery efficiency type of the mechanical ventilation. + +- **Name:** ``mech_vent_recovery_efficiency_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `Unadjusted`, `Adjusted` + +
+ +**Mechanical Ventilation: Total Recovery Efficiency** + +The Unadjusted or Adjusted total recovery efficiency of the mechanical ventilation. Applies to energy recovery ventilator. + +- **Name:** ``mech_vent_total_recovery_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Mechanical Ventilation: Sensible Recovery Efficiency** + +The Unadjusted or Adjusted sensible recovery efficiency of the mechanical ventilation. Applies to energy recovery ventilator and heat recovery ventilator. + +- **Name:** ``mech_vent_sensible_recovery_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Mechanical Ventilation: Fan Power** + +The fan power of the mechanical ventilation. If not provided, the OS-HPXML default (see Whole Ventilation Fan) is used. + +- **Name:** ``mech_vent_fan_power`` +- **Type:** ``Double`` + +- **Units:** ``W`` + +- **Required:** ``false`` + +
+ +**Mechanical Ventilation: Number of Units Served** + +Number of dwelling units served by the mechanical ventilation system. Must be 1 if single-family detached. Used to apportion flow rate and fan power to the unit. + +- **Name:** ``mech_vent_num_units_served`` +- **Type:** ``Integer`` + +- **Units:** ``#`` + +- **Required:** ``true`` + +
+ +**Shared Mechanical Ventilation: Fraction Recirculation** + +Fraction of the total supply air that is recirculated, with the remainder assumed to be outdoor air. The value must be 0 for exhaust only systems. Required for a shared mechanical ventilation system. + +- **Name:** ``mech_vent_shared_frac_recirculation`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Shared Mechanical Ventilation: Preheating Fuel** + +Fuel type of the preconditioning heating equipment. Only used for a shared mechanical ventilation system. If not provided, assumes no preheating. + +- **Name:** ``mech_vent_shared_preheating_fuel`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `electricity`, `natural gas`, `fuel oil`, `propane`, `wood`, `wood pellets`, `coal` + +
+ +**Shared Mechanical Ventilation: Preheating Efficiency** + +Efficiency of the preconditioning heating equipment. Only used for a shared mechanical ventilation system. If not provided, assumes no preheating. + +- **Name:** ``mech_vent_shared_preheating_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``COP`` + +- **Required:** ``false`` + +
+ +**Shared Mechanical Ventilation: Preheating Fraction Ventilation Heat Load Served** + +Fraction of heating load introduced by the shared ventilation system that is met by the preconditioning heating equipment. If not provided, assumes no preheating. + +- **Name:** ``mech_vent_shared_preheating_fraction_heat_load_served`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Shared Mechanical Ventilation: Precooling Fuel** + +Fuel type of the preconditioning cooling equipment. Only used for a shared mechanical ventilation system. If not provided, assumes no precooling. + +- **Name:** ``mech_vent_shared_precooling_fuel`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `electricity` + +
+ +**Shared Mechanical Ventilation: Precooling Efficiency** + +Efficiency of the preconditioning cooling equipment. Only used for a shared mechanical ventilation system. If not provided, assumes no precooling. + +- **Name:** ``mech_vent_shared_precooling_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``COP`` + +- **Required:** ``false`` + +
+ +**Shared Mechanical Ventilation: Precooling Fraction Ventilation Cool Load Served** + +Fraction of cooling load introduced by the shared ventilation system that is met by the preconditioning cooling equipment. If not provided, assumes no precooling. + +- **Name:** ``mech_vent_shared_precooling_fraction_cool_load_served`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Mechanical Ventilation 2: Fan Type** + +The type of the second mechanical ventilation. Use 'none' if there is no second mechanical ventilation system. + +- **Name:** ``mech_vent_2_fan_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `none`, `exhaust only`, `supply only`, `energy recovery ventilator`, `heat recovery ventilator`, `balanced` + +
+ +**Mechanical Ventilation 2: Flow Rate** + +The flow rate of the second mechanical ventilation. + +- **Name:** ``mech_vent_2_flow_rate`` +- **Type:** ``Double`` + +- **Units:** ``CFM`` + +- **Required:** ``true`` + +
+ +**Mechanical Ventilation 2: Hours In Operation** + +The hours in operation of the second mechanical ventilation. + +- **Name:** ``mech_vent_2_hours_in_operation`` +- **Type:** ``Double`` + +- **Units:** ``hrs/day`` + +- **Required:** ``true`` + +
+ +**Mechanical Ventilation 2: Total Recovery Efficiency Type** + +The total recovery efficiency type of the second mechanical ventilation. + +- **Name:** ``mech_vent_2_recovery_efficiency_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `Unadjusted`, `Adjusted` + +
+ +**Mechanical Ventilation 2: Total Recovery Efficiency** + +The Unadjusted or Adjusted total recovery efficiency of the second mechanical ventilation. Applies to energy recovery ventilator. + +- **Name:** ``mech_vent_2_total_recovery_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Mechanical Ventilation 2: Sensible Recovery Efficiency** + +The Unadjusted or Adjusted sensible recovery efficiency of the second mechanical ventilation. Applies to energy recovery ventilator and heat recovery ventilator. + +- **Name:** ``mech_vent_2_sensible_recovery_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Mechanical Ventilation 2: Fan Power** + +The fan power of the second mechanical ventilation. + +- **Name:** ``mech_vent_2_fan_power`` +- **Type:** ``Double`` + +- **Units:** ``W`` + +- **Required:** ``true`` + +
+ +**Kitchen Fans: Quantity** + +The quantity of the kitchen fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. + +- **Name:** ``kitchen_fans_quantity`` +- **Type:** ``Integer`` + +- **Units:** ``#`` + +- **Required:** ``false`` + +
+ +**Kitchen Fans: Flow Rate** + +The flow rate of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. + +- **Name:** ``kitchen_fans_flow_rate`` +- **Type:** ``Double`` + +- **Units:** ``CFM`` + +- **Required:** ``false`` + +
+ +**Kitchen Fans: Hours In Operation** + +The hours in operation of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. + +- **Name:** ``kitchen_fans_hours_in_operation`` +- **Type:** ``Double`` + +- **Units:** ``hrs/day`` + +- **Required:** ``false`` + +
+ +**Kitchen Fans: Fan Power** + +The fan power of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. + +- **Name:** ``kitchen_fans_power`` +- **Type:** ``Double`` + +- **Units:** ``W`` + +- **Required:** ``false`` + +
+ +**Kitchen Fans: Start Hour** + +The start hour of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. + +- **Name:** ``kitchen_fans_start_hour`` +- **Type:** ``Integer`` + +- **Units:** ``hr`` + +- **Required:** ``false`` + +
+ +**Bathroom Fans: Quantity** + +The quantity of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. + +- **Name:** ``bathroom_fans_quantity`` +- **Type:** ``Integer`` + +- **Units:** ``#`` + +- **Required:** ``false`` + +
+ +**Bathroom Fans: Flow Rate** + +The flow rate of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. + +- **Name:** ``bathroom_fans_flow_rate`` +- **Type:** ``Double`` + +- **Units:** ``CFM`` + +- **Required:** ``false`` + +
+ +**Bathroom Fans: Hours In Operation** + +The hours in operation of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. + +- **Name:** ``bathroom_fans_hours_in_operation`` +- **Type:** ``Double`` + +- **Units:** ``hrs/day`` + +- **Required:** ``false`` + +
+ +**Bathroom Fans: Fan Power** + +The fan power of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. + +- **Name:** ``bathroom_fans_power`` +- **Type:** ``Double`` + +- **Units:** ``W`` + +- **Required:** ``false`` + +
+ +**Bathroom Fans: Start Hour** + +The start hour of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used. + +- **Name:** ``bathroom_fans_start_hour`` +- **Type:** ``Integer`` + +- **Units:** ``hr`` + +- **Required:** ``false`` + +
+ +**Whole House Fan: Present** + +Whether there is a whole house fan. + +- **Name:** ``whole_house_fan_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Whole House Fan: Flow Rate** + +The flow rate of the whole house fan. If not provided, the OS-HPXML default (see Whole House Fan) is used. + +- **Name:** ``whole_house_fan_flow_rate`` +- **Type:** ``Double`` + +- **Units:** ``CFM`` + +- **Required:** ``false`` + +
+ +**Whole House Fan: Fan Power** + +The fan power of the whole house fan. If not provided, the OS-HPXML default (see Whole House Fan) is used. + +- **Name:** ``whole_house_fan_power`` +- **Type:** ``Double`` + +- **Units:** ``W`` + +- **Required:** ``false`` + +
+ +**Water Heater: Type** + +The type of water heater. Use 'none' if there is no water heater. + +- **Name:** ``water_heater_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `none`, `storage water heater`, `instantaneous water heater`, `heat pump water heater`, `space-heating boiler with storage tank`, `space-heating boiler with tankless coil` + +
+ +**Water Heater: Fuel Type** + +The fuel type of water heater. Ignored for heat pump water heater. + +- **Name:** ``water_heater_fuel_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `electricity`, `natural gas`, `fuel oil`, `propane`, `wood`, `coal` + +
+ +**Water Heater: Location** + +The location of water heater. If not provided, the OS-HPXML default (see HPXML Water Heating Systems) is used. + +- **Name:** ``water_heater_location`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `conditioned space`, `basement - conditioned`, `basement - unconditioned`, `garage`, `attic`, `attic - vented`, `attic - unvented`, `crawlspace`, `crawlspace - vented`, `crawlspace - unvented`, `crawlspace - conditioned`, `other exterior`, `other housing unit`, `other heated space`, `other multifamily buffer space`, `other non-freezing space` + +
+ +**Water Heater: Tank Volume** + +Nominal volume of water heater tank. Only applies to storage water heater, heat pump water heater, and space-heating boiler with storage tank. If not provided, the OS-HPXML default (see Conventional Storage, Heat Pump, Combi Boiler w/ Storage) is used. + +- **Name:** ``water_heater_tank_volume`` +- **Type:** ``Double`` + +- **Units:** ``gal`` + +- **Required:** ``false`` + +
+ +**Water Heater: Efficiency Type** + +The efficiency type of water heater. Does not apply to space-heating boilers. + +- **Name:** ``water_heater_efficiency_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `EnergyFactor`, `UniformEnergyFactor` + +
+ +**Water Heater: Efficiency** + +Rated Energy Factor or Uniform Energy Factor. Does not apply to space-heating boilers. + +- **Name:** ``water_heater_efficiency`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Water Heater: Usage Bin** + +The usage of the water heater. Only applies if Efficiency Type is UniformEnergyFactor and Type is not instantaneous water heater. Does not apply to space-heating boilers. If not provided, the OS-HPXML default (see Conventional Storage, Heat Pump) is used. + +- **Name:** ``water_heater_usage_bin`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `very small`, `low`, `medium`, `high` + +
+ +**Water Heater: Recovery Efficiency** + +Ratio of energy delivered to water heater to the energy content of the fuel consumed by the water heater. Only used for non-electric storage water heaters. If not provided, the OS-HPXML default (see Conventional Storage) is used. + +- **Name:** ``water_heater_recovery_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Water Heater: Heating Capacity** + +Heating capacity. Only applies to storage water heater. If not provided, the OS-HPXML default (see Conventional Storage) is used. + +- **Name:** ``water_heater_heating_capacity`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr`` + +- **Required:** ``false`` + +
+ +**Water Heater: Standby Loss** + +The standby loss of water heater. Only applies to space-heating boilers. If not provided, the OS-HPXML default (see Combi Boiler w/ Storage) is used. + +- **Name:** ``water_heater_standby_loss`` +- **Type:** ``Double`` + +- **Units:** ``deg-F/hr`` + +- **Required:** ``false`` + +
+ +**Water Heater: Jacket R-value** + +The jacket R-value of water heater. Doesn't apply to instantaneous water heater or space-heating boiler with tankless coil. If not provided, defaults to no jacket insulation. + +- **Name:** ``water_heater_jacket_rvalue`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``false`` + +
+ +**Water Heater: Setpoint Temperature** + +The setpoint temperature of water heater. If not provided, the OS-HPXML default (see HPXML Water Heating Systems) is used. + +- **Name:** ``water_heater_setpoint_temperature`` +- **Type:** ``Double`` + +- **Units:** ``deg-F`` + +- **Required:** ``false`` + +
+ +**Water Heater: Number of Units Served** + +Number of dwelling units served (directly or indirectly) by the water heater. Must be 1 if single-family detached. Used to apportion water heater tank losses to the unit. + +- **Name:** ``water_heater_num_units_served`` +- **Type:** ``Integer`` + +- **Units:** ``#`` + +- **Required:** ``true`` + +
+ +**Water Heater: Uses Desuperheater** + +Requires that the dwelling unit has a air-to-air, mini-split, or ground-to-air heat pump or a central air conditioner or mini-split air conditioner. If not provided, assumes no desuperheater. + +- **Name:** ``water_heater_uses_desuperheater`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Water Heater: Tank Type** + +Type of tank model to use. The 'stratified' tank generally provide more accurate results, but may significantly increase run time. Applies only to storage water heater. If not provided, the OS-HPXML default (see Conventional Storage) is used. + +- **Name:** ``water_heater_tank_model_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `mixed`, `stratified` + +
+ +**Water Heater: Operating Mode** + +The water heater operating mode. The 'heat pump only' option only uses the heat pump, while 'hybrid/auto' allows the backup electric resistance to come on in high demand situations. This is ignored if a scheduled operating mode type is selected. Applies only to heat pump water heater. If not provided, the OS-HPXML default (see Heat Pump) is used. + +- **Name:** ``water_heater_operating_mode`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `hybrid/auto`, `heat pump only` + +
+ +**Hot Water Distribution: System Type** + +The type of the hot water distribution system. + +- **Name:** ``hot_water_distribution_system_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `Standard`, `Recirculation` + +
+ +**Hot Water Distribution: Standard Piping Length** + +If the distribution system is Standard, the length of the piping. If not provided, the OS-HPXML default (see Standard) is used. + +- **Name:** ``hot_water_distribution_standard_piping_length`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``false`` + +
+ +**Hot Water Distribution: Recirculation Control Type** + +If the distribution system is Recirculation, the type of hot water recirculation control, if any. + +- **Name:** ``hot_water_distribution_recirc_control_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `no control`, `timer`, `temperature`, `presence sensor demand control`, `manual demand control` + +
+ +**Hot Water Distribution: Recirculation Piping Length** + +If the distribution system is Recirculation, the length of the recirculation piping. If not provided, the OS-HPXML default (see Recirculation) is used. + +- **Name:** ``hot_water_distribution_recirc_piping_length`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``false`` + +
+ +**Hot Water Distribution: Recirculation Branch Piping Length** + +If the distribution system is Recirculation, the length of the recirculation branch piping. If not provided, the OS-HPXML default (see Recirculation) is used. + +- **Name:** ``hot_water_distribution_recirc_branch_piping_length`` +- **Type:** ``Double`` + +- **Units:** ``ft`` + +- **Required:** ``false`` + +
+ +**Hot Water Distribution: Recirculation Pump Power** + +If the distribution system is Recirculation, the recirculation pump power. If not provided, the OS-HPXML default (see Recirculation) is used. + +- **Name:** ``hot_water_distribution_recirc_pump_power`` +- **Type:** ``Double`` + +- **Units:** ``W`` + +- **Required:** ``false`` + +
+ +**Hot Water Distribution: Pipe Insulation Nominal R-Value** + +Nominal R-value of the pipe insulation. If not provided, the OS-HPXML default (see HPXML Hot Water Distribution) is used. + +- **Name:** ``hot_water_distribution_pipe_r`` +- **Type:** ``Double`` + +- **Units:** ``h-ft^2-R/Btu`` + +- **Required:** ``false`` + +
+ +**Drain Water Heat Recovery: Facilities Connected** + +Which facilities are connected for the drain water heat recovery. Use 'none' if there is no drain water heat recovery system. + +- **Name:** ``dwhr_facilities_connected`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `none`, `one`, `all` + +
+ +**Drain Water Heat Recovery: Equal Flow** + +Whether the drain water heat recovery has equal flow. + +- **Name:** ``dwhr_equal_flow`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Drain Water Heat Recovery: Efficiency** + +The efficiency of the drain water heat recovery. + +- **Name:** ``dwhr_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Hot Water Fixtures: Is Shower Low Flow** + +Whether the shower fixture is low flow. + +- **Name:** ``water_fixtures_shower_low_flow`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Hot Water Fixtures: Is Sink Low Flow** + +Whether the sink fixture is low flow. + +- **Name:** ``water_fixtures_sink_low_flow`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Hot Water Fixtures: Usage Multiplier** + +Multiplier on the hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Water Fixtures) is used. + +- **Name:** ``water_fixtures_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Solar Thermal: System Type** + +The type of solar thermal system. Use 'none' if there is no solar thermal system. + +- **Name:** ``solar_thermal_system_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `none`, `hot water` + +
+ +**Solar Thermal: Collector Area** + +The collector area of the solar thermal system. + +- **Name:** ``solar_thermal_collector_area`` +- **Type:** ``Double`` + +- **Units:** ``ft^2`` + +- **Required:** ``true`` + +
+ +**Solar Thermal: Collector Loop Type** + +The collector loop type of the solar thermal system. + +- **Name:** ``solar_thermal_collector_loop_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `liquid direct`, `liquid indirect`, `passive thermosyphon` + +
+ +**Solar Thermal: Collector Type** + +The collector type of the solar thermal system. + +- **Name:** ``solar_thermal_collector_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `evacuated tube`, `single glazing black`, `double glazing black`, `integrated collector storage` + +
+ +**Solar Thermal: Collector Azimuth** + +The collector azimuth of the solar thermal system. Azimuth is measured clockwise from north (e.g., North=0, East=90, South=180, West=270). + +- **Name:** ``solar_thermal_collector_azimuth`` +- **Type:** ``Double`` + +- **Units:** ``degrees`` + +- **Required:** ``true`` + +
+ +**Solar Thermal: Collector Tilt** + +The collector tilt of the solar thermal system. Can also enter, e.g., RoofPitch, RoofPitch+20, Latitude, Latitude-15, etc. + +- **Name:** ``solar_thermal_collector_tilt`` +- **Type:** ``String`` + +- **Required:** ``true`` + +
+ +**Solar Thermal: Collector Rated Optical Efficiency** + +The collector rated optical efficiency of the solar thermal system. + +- **Name:** ``solar_thermal_collector_rated_optical_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Solar Thermal: Collector Rated Thermal Losses** + +The collector rated thermal losses of the solar thermal system. + +- **Name:** ``solar_thermal_collector_rated_thermal_losses`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr-ft^2-R`` + +- **Required:** ``true`` + +
+ +**Solar Thermal: Storage Volume** + +The storage volume of the solar thermal system. If not provided, the OS-HPXML default (see Detailed Inputs) is used. + +- **Name:** ``solar_thermal_storage_volume`` +- **Type:** ``Double`` + +- **Units:** ``gal`` + +- **Required:** ``false`` + +
+ +**Solar Thermal: Solar Fraction** + +The solar fraction of the solar thermal system. If provided, overrides all other solar thermal inputs. + +- **Name:** ``solar_thermal_solar_fraction`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**PV System: Present** + +Whether there is a PV system present. + +- **Name:** ``pv_system_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**PV System: Module Type** + +Module type of the PV system. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used. + +- **Name:** ``pv_system_module_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `standard`, `premium`, `thin film` + +
+ +**PV System: Location** + +Location of the PV system. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used. + +- **Name:** ``pv_system_location`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `roof`, `ground` + +
+ +**PV System: Tracking** + +Type of tracking for the PV system. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used. + +- **Name:** ``pv_system_tracking`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `fixed`, `1-axis`, `1-axis backtracked`, `2-axis` + +
+ +**PV System: Array Azimuth** + +Array azimuth of the PV system. Azimuth is measured clockwise from north (e.g., North=0, East=90, South=180, West=270). + +- **Name:** ``pv_system_array_azimuth`` +- **Type:** ``Double`` + +- **Units:** ``degrees`` + +- **Required:** ``true`` + +
+ +**PV System: Array Tilt** + +Array tilt of the PV system. Can also enter, e.g., RoofPitch, RoofPitch+20, Latitude, Latitude-15, etc. + +- **Name:** ``pv_system_array_tilt`` +- **Type:** ``String`` + +- **Required:** ``true`` + +
+ +**PV System: Maximum Power Output** + +Maximum power output of the PV system. For a shared system, this is the total building maximum power output. + +- **Name:** ``pv_system_max_power_output`` +- **Type:** ``Double`` + +- **Units:** ``W`` + +- **Required:** ``true`` + +
+ +**PV System: Inverter Efficiency** + +Inverter efficiency of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used. + +- **Name:** ``pv_system_inverter_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**PV System: System Losses Fraction** + +System losses fraction of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used. + +- **Name:** ``pv_system_system_losses_fraction`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**PV System: Number of Bedrooms Served** + +Number of bedrooms served by PV system. Required if single-family attached or apartment unit. Used to apportion PV generation to the unit of a SFA/MF building. If there are two PV systems, this will apply to both. + +- **Name:** ``pv_system_num_bedrooms_served`` +- **Type:** ``Integer`` + +- **Units:** ``#`` + +- **Required:** ``false`` + +
+ +**PV System 2: Present** + +Whether there is a second PV system present. + +- **Name:** ``pv_system_2_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**PV System 2: Module Type** + +Module type of the second PV system. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used. + +- **Name:** ``pv_system_2_module_type`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `standard`, `premium`, `thin film` + +
+ +**PV System 2: Location** + +Location of the second PV system. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used. + +- **Name:** ``pv_system_2_location`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `roof`, `ground` + +
+ +**PV System 2: Tracking** + +Type of tracking for the second PV system. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used. + +- **Name:** ``pv_system_2_tracking`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `fixed`, `1-axis`, `1-axis backtracked`, `2-axis` + +
+ +**PV System 2: Array Azimuth** + +Array azimuth of the second PV system. Azimuth is measured clockwise from north (e.g., North=0, East=90, South=180, West=270). + +- **Name:** ``pv_system_2_array_azimuth`` +- **Type:** ``Double`` + +- **Units:** ``degrees`` + +- **Required:** ``true`` + +
+ +**PV System 2: Array Tilt** + +Array tilt of the second PV system. Can also enter, e.g., RoofPitch, RoofPitch+20, Latitude, Latitude-15, etc. + +- **Name:** ``pv_system_2_array_tilt`` +- **Type:** ``String`` + +- **Required:** ``true`` + +
+ +**PV System 2: Maximum Power Output** + +Maximum power output of the second PV system. For a shared system, this is the total building maximum power output. + +- **Name:** ``pv_system_2_max_power_output`` +- **Type:** ``Double`` + +- **Units:** ``W`` + +- **Required:** ``true`` + +
+ +**Battery: Present** + +Whether there is a lithium ion battery present. + +- **Name:** ``battery_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Battery: Location** + +The space type for the lithium ion battery location. If not provided, the OS-HPXML default (see HPXML Batteries) is used. + +- **Name:** ``battery_location`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `conditioned space`, `basement - conditioned`, `basement - unconditioned`, `crawlspace`, `crawlspace - vented`, `crawlspace - unvented`, `crawlspace - conditioned`, `attic`, `attic - vented`, `attic - unvented`, `garage`, `outside` + +
+ +**Battery: Rated Power Output** + +The rated power output of the lithium ion battery. If not provided, the OS-HPXML default (see HPXML Batteries) is used. + +- **Name:** ``battery_power`` +- **Type:** ``Double`` + +- **Units:** ``W`` + +- **Required:** ``false`` + +
+ +**Battery: Nominal Capacity** + +The nominal capacity of the lithium ion battery. If not provided, the OS-HPXML default (see HPXML Batteries) is used. + +- **Name:** ``battery_capacity`` +- **Type:** ``Double`` + +- **Units:** ``kWh`` + +- **Required:** ``false`` + +
+ +**Battery: Usable Capacity** + +The usable capacity of the lithium ion battery. If not provided, the OS-HPXML default (see HPXML Batteries) is used. + +- **Name:** ``battery_usable_capacity`` +- **Type:** ``Double`` + +- **Units:** ``kWh`` + +- **Required:** ``false`` + +
+ +**Battery: Round Trip Efficiency** + +The round trip efficiency of the lithium ion battery. If not provided, the OS-HPXML default (see HPXML Batteries) is used. + +- **Name:** ``battery_round_trip_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Lighting: Present** + +Whether there is lighting energy use. + +- **Name:** ``lighting_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Lighting: Interior Fraction CFL** + +Fraction of all lamps (interior) that are compact fluorescent. Lighting not specified as CFL, LFL, or LED is assumed to be incandescent. + +- **Name:** ``lighting_interior_fraction_cfl`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Lighting: Interior Fraction LFL** + +Fraction of all lamps (interior) that are linear fluorescent. Lighting not specified as CFL, LFL, or LED is assumed to be incandescent. + +- **Name:** ``lighting_interior_fraction_lfl`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Lighting: Interior Fraction LED** + +Fraction of all lamps (interior) that are light emitting diodes. Lighting not specified as CFL, LFL, or LED is assumed to be incandescent. + +- **Name:** ``lighting_interior_fraction_led`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Lighting: Interior Usage Multiplier** + +Multiplier on the lighting energy usage (interior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Lighting) is used. + +- **Name:** ``lighting_interior_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Lighting: Exterior Fraction CFL** + +Fraction of all lamps (exterior) that are compact fluorescent. Lighting not specified as CFL, LFL, or LED is assumed to be incandescent. + +- **Name:** ``lighting_exterior_fraction_cfl`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Lighting: Exterior Fraction LFL** + +Fraction of all lamps (exterior) that are linear fluorescent. Lighting not specified as CFL, LFL, or LED is assumed to be incandescent. + +- **Name:** ``lighting_exterior_fraction_lfl`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Lighting: Exterior Fraction LED** + +Fraction of all lamps (exterior) that are light emitting diodes. Lighting not specified as CFL, LFL, or LED is assumed to be incandescent. + +- **Name:** ``lighting_exterior_fraction_led`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Lighting: Exterior Usage Multiplier** + +Multiplier on the lighting energy usage (exterior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Lighting) is used. + +- **Name:** ``lighting_exterior_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Lighting: Garage Fraction CFL** + +Fraction of all lamps (garage) that are compact fluorescent. Lighting not specified as CFL, LFL, or LED is assumed to be incandescent. + +- **Name:** ``lighting_garage_fraction_cfl`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Lighting: Garage Fraction LFL** + +Fraction of all lamps (garage) that are linear fluorescent. Lighting not specified as CFL, LFL, or LED is assumed to be incandescent. + +- **Name:** ``lighting_garage_fraction_lfl`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Lighting: Garage Fraction LED** + +Fraction of all lamps (garage) that are light emitting diodes. Lighting not specified as CFL, LFL, or LED is assumed to be incandescent. + +- **Name:** ``lighting_garage_fraction_led`` +- **Type:** ``Double`` + +- **Required:** ``true`` + +
+ +**Lighting: Garage Usage Multiplier** + +Multiplier on the lighting energy usage (garage) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Lighting) is used. + +- **Name:** ``lighting_garage_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Holiday Lighting: Present** + +Whether there is holiday lighting. + +- **Name:** ``holiday_lighting_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Holiday Lighting: Daily Consumption** + +The daily energy consumption for holiday lighting (exterior). If not provided, the OS-HPXML default (see HPXML Lighting) is used. + +- **Name:** ``holiday_lighting_daily_kwh`` +- **Type:** ``Double`` + +- **Units:** ``kWh/day`` + +- **Required:** ``false`` + +
+ +**Holiday Lighting: Period** + +Enter a date like 'Nov 25 - Jan 5'. If not provided, the OS-HPXML default (see HPXML Lighting) is used. + +- **Name:** ``holiday_lighting_period`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Dehumidifier: Type** + +The type of dehumidifier. + +- **Name:** ``dehumidifier_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `none`, `portable`, `whole-home` + +
+ +**Dehumidifier: Efficiency Type** + +The efficiency type of dehumidifier. + +- **Name:** ``dehumidifier_efficiency_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `EnergyFactor`, `IntegratedEnergyFactor` + +
+ +**Dehumidifier: Efficiency** + +The efficiency of the dehumidifier. + +- **Name:** ``dehumidifier_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``liters/kWh`` + +- **Required:** ``true`` + +
+ +**Dehumidifier: Capacity** + +The capacity (water removal rate) of the dehumidifier. + +- **Name:** ``dehumidifier_capacity`` +- **Type:** ``Double`` + +- **Units:** ``pint/day`` + +- **Required:** ``true`` + +
+ +**Dehumidifier: Relative Humidity Setpoint** + +The relative humidity setpoint of the dehumidifier. + +- **Name:** ``dehumidifier_rh_setpoint`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Dehumidifier: Fraction Dehumidification Load Served** + +The dehumidification load served fraction of the dehumidifier. + +- **Name:** ``dehumidifier_fraction_dehumidification_load_served`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``true`` + +
+ +**Clothes Washer: Present** + +Whether there is a clothes washer present. + +- **Name:** ``clothes_washer_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Clothes Washer: Location** + +The space type for the clothes washer location. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used. + +- **Name:** ``clothes_washer_location`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `conditioned space`, `basement - conditioned`, `basement - unconditioned`, `garage`, `other housing unit`, `other heated space`, `other multifamily buffer space`, `other non-freezing space` + +
+ +**Clothes Washer: Efficiency Type** + +The efficiency type of the clothes washer. + +- **Name:** ``clothes_washer_efficiency_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `ModifiedEnergyFactor`, `IntegratedModifiedEnergyFactor` + +
+ +**Clothes Washer: Efficiency** + +The efficiency of the clothes washer. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used. + +- **Name:** ``clothes_washer_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``ft^3/kWh-cyc`` + +- **Required:** ``false`` + +
+ +**Clothes Washer: Rated Annual Consumption** + +The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used. + +- **Name:** ``clothes_washer_rated_annual_kwh`` +- **Type:** ``Double`` + +- **Units:** ``kWh/yr`` + +- **Required:** ``false`` + +
+ +**Clothes Washer: Label Electric Rate** + +The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used. + +- **Name:** ``clothes_washer_label_electric_rate`` +- **Type:** ``Double`` + +- **Units:** ``$/kWh`` + +- **Required:** ``false`` + +
+ +**Clothes Washer: Label Gas Rate** + +The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used. + +- **Name:** ``clothes_washer_label_gas_rate`` +- **Type:** ``Double`` + +- **Units:** ``$/therm`` + +- **Required:** ``false`` + +
+ +**Clothes Washer: Label Annual Cost with Gas DHW** + +The annual cost of using the system under test conditions. Input is obtained from the EnergyGuide label. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used. + +- **Name:** ``clothes_washer_label_annual_gas_cost`` +- **Type:** ``Double`` + +- **Units:** ``$`` + +- **Required:** ``false`` + +
+ +**Clothes Washer: Label Usage** + +The clothes washer loads per week. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used. + +- **Name:** ``clothes_washer_label_usage`` +- **Type:** ``Double`` + +- **Units:** ``cyc/wk`` + +- **Required:** ``false`` + +
+ +**Clothes Washer: Drum Volume** + +Volume of the washer drum. Obtained from the EnergyStar website or the manufacturer's literature. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used. + +- **Name:** ``clothes_washer_capacity`` +- **Type:** ``Double`` + +- **Units:** ``ft^3`` + +- **Required:** ``false`` + +
+ +**Clothes Washer: Usage Multiplier** + +Multiplier on the clothes washer energy and hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used. + +- **Name:** ``clothes_washer_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Clothes Dryer: Present** + +Whether there is a clothes dryer present. + +- **Name:** ``clothes_dryer_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Clothes Dryer: Location** + +The space type for the clothes dryer location. If not provided, the OS-HPXML default (see HPXML Clothes Dryer) is used. + +- **Name:** ``clothes_dryer_location`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `conditioned space`, `basement - conditioned`, `basement - unconditioned`, `garage`, `other housing unit`, `other heated space`, `other multifamily buffer space`, `other non-freezing space` + +
+ +**Clothes Dryer: Fuel Type** + +Type of fuel used by the clothes dryer. + +- **Name:** ``clothes_dryer_fuel_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `electricity`, `natural gas`, `fuel oil`, `propane`, `wood`, `coal` + +
+ +**Clothes Dryer: Efficiency Type** + +The efficiency type of the clothes dryer. + +- **Name:** ``clothes_dryer_efficiency_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `EnergyFactor`, `CombinedEnergyFactor` + +
+ +**Clothes Dryer: Efficiency** + +The efficiency of the clothes dryer. If not provided, the OS-HPXML default (see HPXML Clothes Dryer) is used. + +- **Name:** ``clothes_dryer_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``lb/kWh`` + +- **Required:** ``false`` + +
+ +**Clothes Dryer: Vented Flow Rate** + +The exhaust flow rate of the vented clothes dryer. If not provided, the OS-HPXML default (see HPXML Clothes Dryer) is used. + +- **Name:** ``clothes_dryer_vented_flow_rate`` +- **Type:** ``Double`` + +- **Units:** ``CFM`` + +- **Required:** ``false`` + +
+ +**Clothes Dryer: Usage Multiplier** + +Multiplier on the clothes dryer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Clothes Dryer) is used. + +- **Name:** ``clothes_dryer_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Dishwasher: Present** + +Whether there is a dishwasher present. + +- **Name:** ``dishwasher_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Dishwasher: Location** + +The space type for the dishwasher location. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used. + +- **Name:** ``dishwasher_location`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `conditioned space`, `basement - conditioned`, `basement - unconditioned`, `garage`, `other housing unit`, `other heated space`, `other multifamily buffer space`, `other non-freezing space` + +
+ +**Dishwasher: Efficiency Type** + +The efficiency type of dishwasher. + +- **Name:** ``dishwasher_efficiency_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `RatedAnnualkWh`, `EnergyFactor` + +
+ +**Dishwasher: Efficiency** + +The efficiency of the dishwasher. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used. + +- **Name:** ``dishwasher_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``RatedAnnualkWh or EnergyFactor`` + +- **Required:** ``false`` + +
+ +**Dishwasher: Label Electric Rate** + +The label electric rate of the dishwasher. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used. + +- **Name:** ``dishwasher_label_electric_rate`` +- **Type:** ``Double`` + +- **Units:** ``$/kWh`` + +- **Required:** ``false`` + +
+ +**Dishwasher: Label Gas Rate** + +The label gas rate of the dishwasher. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used. + +- **Name:** ``dishwasher_label_gas_rate`` +- **Type:** ``Double`` + +- **Units:** ``$/therm`` + +- **Required:** ``false`` + +
+ +**Dishwasher: Label Annual Gas Cost** + +The label annual gas cost of the dishwasher. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used. + +- **Name:** ``dishwasher_label_annual_gas_cost`` +- **Type:** ``Double`` + +- **Units:** ``$`` + +- **Required:** ``false`` + +
+ +**Dishwasher: Label Usage** + +The dishwasher loads per week. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used. + +- **Name:** ``dishwasher_label_usage`` +- **Type:** ``Double`` + +- **Units:** ``cyc/wk`` + +- **Required:** ``false`` + +
+ +**Dishwasher: Number of Place Settings** + +The number of place settings for the unit. Data obtained from manufacturer's literature. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used. + +- **Name:** ``dishwasher_place_setting_capacity`` +- **Type:** ``Integer`` + +- **Units:** ``#`` + +- **Required:** ``false`` + +
+ +**Dishwasher: Usage Multiplier** + +Multiplier on the dishwasher energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used. + +- **Name:** ``dishwasher_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Refrigerator: Present** + +Whether there is a refrigerator present. + +- **Name:** ``refrigerator_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Refrigerator: Location** + +The space type for the refrigerator location. If not provided, the OS-HPXML default (see HPXML Refrigerators) is used. + +- **Name:** ``refrigerator_location`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `conditioned space`, `basement - conditioned`, `basement - unconditioned`, `garage`, `other housing unit`, `other heated space`, `other multifamily buffer space`, `other non-freezing space` + +
+ +**Refrigerator: Rated Annual Consumption** + +The EnergyGuide rated annual energy consumption for a refrigerator. If not provided, the OS-HPXML default (see HPXML Refrigerators) is used. + +- **Name:** ``refrigerator_rated_annual_kwh`` +- **Type:** ``Double`` + +- **Units:** ``kWh/yr`` + +- **Required:** ``false`` + +
+ +**Refrigerator: Usage Multiplier** + +Multiplier on the refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Refrigerators) is used. + +- **Name:** ``refrigerator_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Extra Refrigerator: Present** + +Whether there is an extra refrigerator present. + +- **Name:** ``extra_refrigerator_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Extra Refrigerator: Location** + +The space type for the extra refrigerator location. If not provided, the OS-HPXML default (see HPXML Refrigerators) is used. + +- **Name:** ``extra_refrigerator_location`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `conditioned space`, `basement - conditioned`, `basement - unconditioned`, `garage`, `other housing unit`, `other heated space`, `other multifamily buffer space`, `other non-freezing space` + +
+ +**Extra Refrigerator: Rated Annual Consumption** + +The EnergyGuide rated annual energy consumption for an extra rrefrigerator. If not provided, the OS-HPXML default (see HPXML Refrigerators) is used. + +- **Name:** ``extra_refrigerator_rated_annual_kwh`` +- **Type:** ``Double`` + +- **Units:** ``kWh/yr`` + +- **Required:** ``false`` + +
+ +**Extra Refrigerator: Usage Multiplier** + +Multiplier on the extra refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Refrigerators) is used. + +- **Name:** ``extra_refrigerator_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Freezer: Present** + +Whether there is a freezer present. + +- **Name:** ``freezer_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Freezer: Location** + +The space type for the freezer location. If not provided, the OS-HPXML default (see HPXML Freezers) is used. + +- **Name:** ``freezer_location`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `conditioned space`, `basement - conditioned`, `basement - unconditioned`, `garage`, `other housing unit`, `other heated space`, `other multifamily buffer space`, `other non-freezing space` + +
+ +**Freezer: Rated Annual Consumption** + +The EnergyGuide rated annual energy consumption for a freezer. If not provided, the OS-HPXML default (see HPXML Freezers) is used. + +- **Name:** ``freezer_rated_annual_kwh`` +- **Type:** ``Double`` + +- **Units:** ``kWh/yr`` + +- **Required:** ``false`` + +
+ +**Freezer: Usage Multiplier** + +Multiplier on the freezer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Freezers) is used. + +- **Name:** ``freezer_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Cooking Range/Oven: Present** + +Whether there is a cooking range/oven present. + +- **Name:** ``cooking_range_oven_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Cooking Range/Oven: Location** + +The space type for the cooking range/oven location. If not provided, the OS-HPXML default (see HPXML Cooking Range/Oven) is used. + +- **Name:** ``cooking_range_oven_location`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `conditioned space`, `basement - conditioned`, `basement - unconditioned`, `garage`, `other housing unit`, `other heated space`, `other multifamily buffer space`, `other non-freezing space` + +
+ +**Cooking Range/Oven: Fuel Type** + +Type of fuel used by the cooking range/oven. + +- **Name:** ``cooking_range_oven_fuel_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `electricity`, `natural gas`, `fuel oil`, `propane`, `wood`, `coal` + +
+ +**Cooking Range/Oven: Is Induction** + +Whether the cooking range is induction. If not provided, the OS-HPXML default (see HPXML Cooking Range/Oven) is used. + +- **Name:** ``cooking_range_oven_is_induction`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Cooking Range/Oven: Is Convection** + +Whether the oven is convection. If not provided, the OS-HPXML default (see HPXML Cooking Range/Oven) is used. + +- **Name:** ``cooking_range_oven_is_convection`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Cooking Range/Oven: Usage Multiplier** + +Multiplier on the cooking range/oven energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Cooking Range/Oven) is used. + +- **Name:** ``cooking_range_oven_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Ceiling Fan: Present** + +Whether there are any ceiling fans. + +- **Name:** ``ceiling_fan_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Ceiling Fan: Efficiency** + +The efficiency rating of the ceiling fan(s) at medium speed. If not provided, the OS-HPXML default (see HPXML Ceiling Fans) is used. + +- **Name:** ``ceiling_fan_efficiency`` +- **Type:** ``Double`` + +- **Units:** ``CFM/W`` + +- **Required:** ``false`` + +
+ +**Ceiling Fan: Quantity** + +Total number of ceiling fans. If not provided, the OS-HPXML default (see HPXML Ceiling Fans) is used. + +- **Name:** ``ceiling_fan_quantity`` +- **Type:** ``Integer`` + +- **Units:** ``#`` + +- **Required:** ``false`` + +
+ +**Ceiling Fan: Cooling Setpoint Temperature Offset** + +The cooling setpoint temperature offset during months when the ceiling fans are operating. Only applies if ceiling fan quantity is greater than zero. If not provided, the OS-HPXML default (see HPXML Ceiling Fans) is used. + +- **Name:** ``ceiling_fan_cooling_setpoint_temp_offset`` +- **Type:** ``Double`` + +- **Units:** ``deg-F`` + +- **Required:** ``false`` + +
+ +**Misc Plug Loads: Television Present** + +Whether there are televisions. + +- **Name:** ``misc_plug_loads_television_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Misc Plug Loads: Television Annual kWh** + +The annual energy consumption of the television plug loads. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used. + +- **Name:** ``misc_plug_loads_television_annual_kwh`` +- **Type:** ``Double`` + +- **Units:** ``kWh/yr`` + +- **Required:** ``false`` + +
+ +**Misc Plug Loads: Television Usage Multiplier** + +Multiplier on the television energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used. + +- **Name:** ``misc_plug_loads_television_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Misc Plug Loads: Other Annual kWh** + +The annual energy consumption of the other residual plug loads. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used. + +- **Name:** ``misc_plug_loads_other_annual_kwh`` +- **Type:** ``Double`` + +- **Units:** ``kWh/yr`` + +- **Required:** ``false`` + +
+ +**Misc Plug Loads: Other Sensible Fraction** + +Fraction of other residual plug loads' internal gains that are sensible. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used. + +- **Name:** ``misc_plug_loads_other_frac_sensible`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Misc Plug Loads: Other Latent Fraction** + +Fraction of other residual plug loads' internal gains that are latent. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used. + +- **Name:** ``misc_plug_loads_other_frac_latent`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Misc Plug Loads: Other Usage Multiplier** + +Multiplier on the other energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used. + +- **Name:** ``misc_plug_loads_other_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Misc Plug Loads: Well Pump Present** + +Whether there is a well pump. + +- **Name:** ``misc_plug_loads_well_pump_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Misc Plug Loads: Well Pump Annual kWh** + +The annual energy consumption of the well pump plug loads. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used. + +- **Name:** ``misc_plug_loads_well_pump_annual_kwh`` +- **Type:** ``Double`` + +- **Units:** ``kWh/yr`` + +- **Required:** ``false`` + +
+ +**Misc Plug Loads: Well Pump Usage Multiplier** + +Multiplier on the well pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used. + +- **Name:** ``misc_plug_loads_well_pump_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Misc Plug Loads: Vehicle Present** + +Whether there is an electric vehicle. + +- **Name:** ``misc_plug_loads_vehicle_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Misc Plug Loads: Vehicle Annual kWh** + +The annual energy consumption of the electric vehicle plug loads. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used. + +- **Name:** ``misc_plug_loads_vehicle_annual_kwh`` +- **Type:** ``Double`` + +- **Units:** ``kWh/yr`` + +- **Required:** ``false`` + +
+ +**Misc Plug Loads: Vehicle Usage Multiplier** + +Multiplier on the electric vehicle energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used. + +- **Name:** ``misc_plug_loads_vehicle_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Misc Fuel Loads: Grill Present** + +Whether there is a fuel loads grill. + +- **Name:** ``misc_fuel_loads_grill_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Misc Fuel Loads: Grill Fuel Type** + +The fuel type of the fuel loads grill. + +- **Name:** ``misc_fuel_loads_grill_fuel_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `natural gas`, `fuel oil`, `propane`, `wood`, `wood pellets` + +
+ +**Misc Fuel Loads: Grill Annual therm** + +The annual energy consumption of the fuel loads grill. If not provided, the OS-HPXML default (see HPXML Fuel Loads) is used. + +- **Name:** ``misc_fuel_loads_grill_annual_therm`` +- **Type:** ``Double`` + +- **Units:** ``therm/yr`` + +- **Required:** ``false`` + +
+ +**Misc Fuel Loads: Grill Usage Multiplier** + +Multiplier on the fuel loads grill energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Fuel Loads) is used. + +- **Name:** ``misc_fuel_loads_grill_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Misc Fuel Loads: Lighting Present** + +Whether there is fuel loads lighting. + +- **Name:** ``misc_fuel_loads_lighting_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Misc Fuel Loads: Lighting Fuel Type** + +The fuel type of the fuel loads lighting. + +- **Name:** ``misc_fuel_loads_lighting_fuel_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `natural gas`, `fuel oil`, `propane`, `wood`, `wood pellets` + +
+ +**Misc Fuel Loads: Lighting Annual therm** + +The annual energy consumption of the fuel loads lighting. If not provided, the OS-HPXML default (see HPXML Fuel Loads)is used. + +- **Name:** ``misc_fuel_loads_lighting_annual_therm`` +- **Type:** ``Double`` + +- **Units:** ``therm/yr`` + +- **Required:** ``false`` + +
+ +**Misc Fuel Loads: Lighting Usage Multiplier** + +Multiplier on the fuel loads lighting energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Fuel Loads) is used. + +- **Name:** ``misc_fuel_loads_lighting_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Misc Fuel Loads: Fireplace Present** + +Whether there is fuel loads fireplace. + +- **Name:** ``misc_fuel_loads_fireplace_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Misc Fuel Loads: Fireplace Fuel Type** + +The fuel type of the fuel loads fireplace. + +- **Name:** ``misc_fuel_loads_fireplace_fuel_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `natural gas`, `fuel oil`, `propane`, `wood`, `wood pellets` + +
+ +**Misc Fuel Loads: Fireplace Annual therm** + +The annual energy consumption of the fuel loads fireplace. If not provided, the OS-HPXML default (see HPXML Fuel Loads) is used. + +- **Name:** ``misc_fuel_loads_fireplace_annual_therm`` +- **Type:** ``Double`` + +- **Units:** ``therm/yr`` + +- **Required:** ``false`` + +
+ +**Misc Fuel Loads: Fireplace Sensible Fraction** + +Fraction of fireplace residual fuel loads' internal gains that are sensible. If not provided, the OS-HPXML default (see HPXML Fuel Loads) is used. + +- **Name:** ``misc_fuel_loads_fireplace_frac_sensible`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Misc Fuel Loads: Fireplace Latent Fraction** + +Fraction of fireplace residual fuel loads' internal gains that are latent. If not provided, the OS-HPXML default (see HPXML Fuel Loads) is used. + +- **Name:** ``misc_fuel_loads_fireplace_frac_latent`` +- **Type:** ``Double`` + +- **Units:** ``Frac`` + +- **Required:** ``false`` + +
+ +**Misc Fuel Loads: Fireplace Usage Multiplier** + +Multiplier on the fuel loads fireplace energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Fuel Loads) is used. + +- **Name:** ``misc_fuel_loads_fireplace_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Pool: Present** + +Whether there is a pool. + +- **Name:** ``pool_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Pool: Pump Annual kWh** + +The annual energy consumption of the pool pump. If not provided, the OS-HPXML default (see Pool Pump) is used. + +- **Name:** ``pool_pump_annual_kwh`` +- **Type:** ``Double`` + +- **Units:** ``kWh/yr`` + +- **Required:** ``false`` + +
+ +**Pool: Pump Usage Multiplier** + +Multiplier on the pool pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see Pool Pump) is used. + +- **Name:** ``pool_pump_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Pool: Heater Type** + +The type of pool heater. Use 'none' if there is no pool heater. + +- **Name:** ``pool_heater_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `none`, `electric resistance`, `gas fired`, `heat pump` + +
+ +**Pool: Heater Annual kWh** + +The annual energy consumption of the electric resistance pool heater. If not provided, the OS-HPXML default (see Pool Heater) is used. + +- **Name:** ``pool_heater_annual_kwh`` +- **Type:** ``Double`` + +- **Units:** ``kWh/yr`` + +- **Required:** ``false`` + +
+ +**Pool: Heater Annual therm** + +The annual energy consumption of the gas fired pool heater. If not provided, the OS-HPXML default (see Pool Heater) is used. + +- **Name:** ``pool_heater_annual_therm`` +- **Type:** ``Double`` + +- **Units:** ``therm/yr`` + +- **Required:** ``false`` + +
+ +**Pool: Heater Usage Multiplier** + +Multiplier on the pool heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see Pool Heater) is used. + +- **Name:** ``pool_heater_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Permanent Spa: Present** + +Whether there is a permanent spa. + +- **Name:** ``permanent_spa_present`` +- **Type:** ``Boolean`` + +- **Required:** ``true`` + +
+ +**Permanent Spa: Pump Annual kWh** + +The annual energy consumption of the permanent spa pump. If not provided, the OS-HPXML default (see Permanent Spa Pump) is used. + +- **Name:** ``permanent_spa_pump_annual_kwh`` +- **Type:** ``Double`` + +- **Units:** ``kWh/yr`` + +- **Required:** ``false`` + +
+ +**Permanent Spa: Pump Usage Multiplier** + +Multiplier on the permanent spa pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see Permanent Spa Pump) is used. + +- **Name:** ``permanent_spa_pump_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Permanent Spa: Heater Type** + +The type of permanent spa heater. Use 'none' if there is no permanent spa heater. + +- **Name:** ``permanent_spa_heater_type`` +- **Type:** ``Choice`` + +- **Required:** ``true`` + +- **Choices:** `none`, `electric resistance`, `gas fired`, `heat pump` + +
+ +**Permanent Spa: Heater Annual kWh** + +The annual energy consumption of the electric resistance permanent spa heater. If not provided, the OS-HPXML default (see Permanent Spa Heater) is used. + +- **Name:** ``permanent_spa_heater_annual_kwh`` +- **Type:** ``Double`` + +- **Units:** ``kWh/yr`` + +- **Required:** ``false`` + +
+ +**Permanent Spa: Heater Annual therm** + +The annual energy consumption of the gas fired permanent spa heater. If not provided, the OS-HPXML default (see Permanent Spa Heater) is used. + +- **Name:** ``permanent_spa_heater_annual_therm`` +- **Type:** ``Double`` + +- **Units:** ``therm/yr`` + +- **Required:** ``false`` + +
+ +**Permanent Spa: Heater Usage Multiplier** + +Multiplier on the permanent spa heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see Permanent Spa Heater) is used. + +- **Name:** ``permanent_spa_heater_usage_multiplier`` +- **Type:** ``Double`` + +- **Required:** ``false`` + +
+ +**Emissions: Scenario Names** + +Names of emissions scenarios. If multiple scenarios, use a comma-separated list. If not provided, no emissions scenarios are calculated. + +- **Name:** ``emissions_scenario_names`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Emissions: Types** + +Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list. + +- **Name:** ``emissions_types`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Emissions: Electricity Units** + +Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed. + +- **Name:** ``emissions_electricity_units`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Emissions: Electricity Values or File Paths** + +Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list. + +- **Name:** ``emissions_electricity_values_or_filepaths`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Emissions: Electricity Files Number of Header Rows** + +The number of header rows in the electricity emissions factor file. Only applies when an electricity filepath is used. If multiple scenarios, use a comma-separated list. + +- **Name:** ``emissions_electricity_number_of_header_rows`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Emissions: Electricity Files Column Numbers** + +The column number in the electricity emissions factor file. Only applies when an electricity filepath is used. If multiple scenarios, use a comma-separated list. + +- **Name:** ``emissions_electricity_column_numbers`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Emissions: Fossil Fuel Units** + +Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed. + +- **Name:** ``emissions_fossil_fuel_units`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Emissions: Natural Gas Values** + +Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list. + +- **Name:** ``emissions_natural_gas_values`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Emissions: Propane Values** + +Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list. + +- **Name:** ``emissions_propane_values`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Emissions: Fuel Oil Values** + +Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list. + +- **Name:** ``emissions_fuel_oil_values`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Emissions: Coal Values** + +Coal emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list. + +- **Name:** ``emissions_coal_values`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Emissions: Wood Values** + +Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list. + +- **Name:** ``emissions_wood_values`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Emissions: Wood Pellets Values** + +Wood pellets emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list. + +- **Name:** ``emissions_wood_pellets_values`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Scenario Names** + +Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If not provided, no utility bills scenarios are calculated. + +- **Name:** ``utility_bill_scenario_names`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Electricity File Paths** + +Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_electricity_filepaths`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Electricity Fixed Charges** + +Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_electricity_fixed_charges`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Natural Gas Fixed Charges** + +Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_natural_gas_fixed_charges`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Propane Fixed Charges** + +Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_propane_fixed_charges`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Fuel Oil Fixed Charges** + +Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_fuel_oil_fixed_charges`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Coal Fixed Charges** + +Coal utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_coal_fixed_charges`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Wood Fixed Charges** + +Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_wood_fixed_charges`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Wood Pellets Fixed Charges** + +Wood pellets utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_wood_pellets_fixed_charges`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Electricity Marginal Rates** + +Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_electricity_marginal_rates`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Natural Gas Marginal Rates** + +Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_natural_gas_marginal_rates`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Propane Marginal Rates** + +Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_propane_marginal_rates`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Fuel Oil Marginal Rates** + +Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_fuel_oil_marginal_rates`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Coal Marginal Rates** + +Coal utility bill marginal rates. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_coal_marginal_rates`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Wood Marginal Rates** + +Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_wood_marginal_rates`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: Wood Pellets Marginal Rates** + +Wood pellets utility bill marginal rates. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_wood_pellets_marginal_rates`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: PV Compensation Types** + +Utility bill PV compensation types. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_pv_compensation_types`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: PV Net Metering Annual Excess Sellback Rate Types** + +Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_pv_net_metering_annual_excess_sellback_rate_types`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: PV Net Metering Annual Excess Sellback Rates** + +Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_pv_net_metering_annual_excess_sellback_rates`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: PV Feed-In Tariff Rates** + +Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_pv_feed_in_tariff_rates`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: PV Monthly Grid Connection Fee Units** + +Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_pv_monthly_grid_connection_fee_units`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Utility Bills: PV Monthly Grid Connection Fees** + +Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list. + +- **Name:** ``utility_bill_pv_monthly_grid_connection_fees`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Additional Properties** + +Additional properties specified as key-value pairs (i.e., key=value). If multiple additional properties, use a |-separated list. For example, 'LowIncome=false|Remodeled|Description=2-story home in Denver'. These properties will be stored in the HPXML file under /HPXML/SoftwareInfo/extension/AdditionalProperties. + +- **Name:** ``additional_properties`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Combine like surfaces?** + +If true, combines like surfaces to simplify the HPXML file generated. + +- **Name:** ``combine_like_surfaces`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Apply Default Values?** + +If true, applies OS-HPXML default values to the HPXML output file. Setting to true will also force validation of the HPXML output file before applying OS-HPXML default values. + +- **Name:** ``apply_defaults`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Apply Validation?** + +If true, validates the HPXML output file. Set to false for faster performance. Note that validation is not needed if the HPXML file will be validated downstream (e.g., via the HPXMLtoOpenStudio measure). + +- **Name:** ``apply_validation`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ + + + + diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/README.md.erb b/example_files/resources/hpxml-measures/BuildResidentialHPXML/README.md.erb new file mode 100644 index 00000000..0e9bc87d --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/README.md.erb @@ -0,0 +1,41 @@ +<%#= README.md.erb is used to auto-generate README.md. %> +###### (Automatically generated documentation) + +# <%= name %> + +## Description +<%= description %> + +<%= modelerDescription %> + +## Arguments + +<% arguments.each do |argument| %> +**<%= argument[:display_name] %>** + +<%= argument[:description] %> + +- **Name:** ``<%= argument[:name] %>`` +- **Type:** ``<%= argument[:type] %>`` +<% if argument[:units] %> +- **Units:** ``<%= argument[:units] %>`` +<% end %> +- **Required:** ``<%= argument[:required] %>`` +<% if argument[:type] == "Choice" %> +- **Choices:** `<%= argument[:choice_values].join("`, `") %>` +<% end %> +
+<% end %> + +<% if arguments.size == 0 %> +<%= "This measure does not have any user arguments" %> +<% end %> + +<% if outputs.size > 0 %> +## Outputs +All possible measure outputs are listed below. Actual outputs depend on measure argument values provided. + +<% outputs.each do |output| %> +- ``<%= output[:display_name] %>`` +<% end %> +<% end %> diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb b/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb index 41db0b18..69060759 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true # Require all gems up front; this is much faster than multiple resource @@ -35,6 +40,8 @@ def modeler_description # define the arguments that the user will input def arguments(model) # rubocop:disable Lint/UnusedMethodArgument + docs_base_url = "https://openstudio-hpxml.readthedocs.io/en/v#{Version::OS_HPXML_Version}/workflow_inputs.html" + args = OpenStudio::Measure::OSArgumentVector.new arg = OpenStudio::Measure::OSArgument.makeStringArgument('hpxml_path', true) @@ -42,6 +49,11 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDescription('Absolute/relative path of the HPXML file.') args << arg + arg = OpenStudio::Measure::OSArgument.makeStringArgument('existing_hpxml_path', false) + arg.setDisplayName('Existing HPXML File Path') + arg.setDescription('Absolute/relative path of the existing HPXML file. If not provided, a new HPXML file with one Building element is created. If provided, a new Building element will be appended to this HPXML file (e.g., to create a multifamily HPXML file describing multiple dwelling units).') + args << arg + arg = OpenStudio::Measure::OSArgument.makeStringArgument('software_info_program_used', false) arg.setDisplayName('Software Info: Program Used') arg.setDescription('The name of the software program used.') @@ -80,33 +92,33 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('simulation_control_timestep', false) arg.setDisplayName('Simulation Control: Timestep') arg.setUnits('min') - arg.setDescription('Value must be a divisor of 60. If not provided, the OS-HPXML default is used.') + arg.setDescription("Value must be a divisor of 60. If not provided, the OS-HPXML default (see HPXML Simulation Control) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeStringArgument('simulation_control_run_period', false) arg.setDisplayName('Simulation Control: Run Period') - arg.setDescription('Enter a date like "Jan 1 - Dec 31". If not provided, the OS-HPXML default is used.') + arg.setDescription("Enter a date like 'Jan 1 - Dec 31'. If not provided, the OS-HPXML default (see HPXML Simulation Control) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('simulation_control_run_period_calendar_year', false) arg.setDisplayName('Simulation Control: Run Period Calendar Year') arg.setUnits('year') - arg.setDescription('This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file. If not provided, the OS-HPXML default is used.') + arg.setDescription("This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file. If not provided, the OS-HPXML default (see HPXML Simulation Control) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('simulation_control_daylight_saving_enabled', false) arg.setDisplayName('Simulation Control: Daylight Saving Enabled') - arg.setDescription('Whether to use daylight saving. If not provided, the OS-HPXML default is used.') + arg.setDescription("Whether to use daylight saving. If not provided, the OS-HPXML default (see HPXML Building Site) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeStringArgument('simulation_control_daylight_saving_period', false) arg.setDisplayName('Simulation Control: Daylight Saving Period') - arg.setDescription('Enter a date like "Mar 15 - Dec 15". If not provided, the OS-HPXML default is used.') + arg.setDescription("Enter a date like 'Mar 15 - Dec 15'. If not provided, the OS-HPXML default (see HPXML Building Site) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeStringArgument('simulation_control_temperature_capacitance_multiplier', false) arg.setDisplayName('Simulation Control: Temperature Capacitance Multiplier') - arg.setDescription('Affects the transient calculation of indoor air temperatures. If not provided, the OS-HPXML default is used.') + arg.setDescription("Affects the transient calculation of indoor air temperatures. If not provided, the OS-HPXML default (see HPXML Simulation Control) is used.") args << arg site_type_choices = OpenStudio::StringVector.new @@ -116,7 +128,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('site_type', site_type_choices, false) arg.setDisplayName('Site: Type') - arg.setDescription('The type of site. If not provided, the OS-HPXML default is used.') + arg.setDescription("The type of site. If not provided, the OS-HPXML default (see HPXML Site) is used.") args << arg site_shielding_of_home_choices = OpenStudio::StringVector.new @@ -126,12 +138,12 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('site_shielding_of_home', site_shielding_of_home_choices, false) arg.setDisplayName('Site: Shielding of Home') - arg.setDescription('Presence of nearby buildings, trees, obstructions for infiltration model. If not provided, the OS-HPXML default is used.') + arg.setDescription("Presence of nearby buildings, trees, obstructions for infiltration model. If not provided, the OS-HPXML default (see HPXML Site) is used.") args << arg arg = OpenStudio::Measure::OSArgument.makeDoubleArgument('site_ground_conductivity', false) arg.setDisplayName('Site: Ground Conductivity') - arg.setDescription('Conductivity of the ground soil. If not provided, the OS-HPXML default is used.') + arg.setDescription("Conductivity of the ground soil. If not provided, the OS-HPXML default (see HPXML Site) is used.") arg.setUnits('Btu/hr-ft-F') args << arg @@ -181,6 +193,12 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument unit_type_choices << HPXML::ResidentialTypeSFD unit_type_choices << HPXML::ResidentialTypeSFA unit_type_choices << HPXML::ResidentialTypeApartment + unit_type_choices << HPXML::ResidentialTypeManufactured + + arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('unit_multiplier', false) + arg.setDisplayName('Building Construction: Unit Multiplier') + arg.setDescription('The number of similar dwelling units. EnergyPlus simulation results will be multiplied this value. If not provided, defaults to 1.') + args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geometry_unit_type', unit_type_choices, true) arg.setDisplayName('Geometry: Unit Type') @@ -255,7 +273,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('geometry_unit_num_bathrooms', false) arg.setDisplayName('Geometry: Unit Number of Bathrooms') arg.setUnits('#') - arg.setDescription('The number of bathrooms in the unit. If not provided, the OS-HPXML default is used.') + arg.setDescription("The number of bathrooms in the unit. If not provided, the OS-HPXML default (see HPXML Building Construction) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geometry_unit_num_occupants', false) @@ -294,7 +312,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geometry_garage_protrusion', true) arg.setDisplayName('Geometry: Garage Protrusion') arg.setUnits('Frac') - arg.setDescription("The fraction of the garage that is protruding from the living space. Only applies to #{HPXML::ResidentialTypeSFD} units.") + arg.setDescription("The fraction of the garage that is protruding from the conditioned space. Only applies to #{HPXML::ResidentialTypeSFD} units.") arg.setDefaultValue(0.0) args << arg @@ -317,6 +335,8 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument foundation_type_choices << HPXML::FoundationTypeBasementConditioned foundation_type_choices << HPXML::FoundationTypeAmbient foundation_type_choices << HPXML::FoundationTypeAboveApartment # I.e., adiabatic + foundation_type_choices << "#{HPXML::FoundationTypeBellyAndWing}WithSkirt" + foundation_type_choices << "#{HPXML::FoundationTypeBellyAndWing}NoSkirt" arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geometry_foundation_type', foundation_type_choices, true) arg.setDisplayName('Geometry: Foundation Type') @@ -425,25 +445,25 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('neighbor_front_height', false) arg.setDisplayName('Neighbor: Front Height') arg.setUnits('ft') - arg.setDescription('The height of the neighboring building to the front. If not provided, the OS-HPXML default is used.') + arg.setDescription("The height of the neighboring building to the front. If not provided, the OS-HPXML default (see HPXML Site) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('neighbor_back_height', false) arg.setDisplayName('Neighbor: Back Height') arg.setUnits('ft') - arg.setDescription('The height of the neighboring building to the back. If not provided, the OS-HPXML default is used.') + arg.setDescription("The height of the neighboring building to the back. If not provided, the OS-HPXML default (see HPXML Site) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('neighbor_left_height', false) arg.setDisplayName('Neighbor: Left Height') arg.setUnits('ft') - arg.setDescription('The height of the neighboring building to the left. If not provided, the OS-HPXML default is used.') + arg.setDescription("The height of the neighboring building to the left. If not provided, the OS-HPXML default (see HPXML Site) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('neighbor_right_height', false) arg.setDisplayName('Neighbor: Right Height') arg.setUnits('ft') - arg.setDescription('The height of the neighboring building to the right. If not provided, the OS-HPXML default is used.') + arg.setDescription("The height of the neighboring building to the right. If not provided, the OS-HPXML default (see HPXML Site) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('floor_over_foundation_assembly_r', true) @@ -484,13 +504,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('foundation_wall_type', foundation_wall_type_choices, false) arg.setDisplayName('Foundation Wall: Type') - arg.setDescription('The material type of the foundation wall. If not provided, the OS-HPXML default is used.') + arg.setDescription("The material type of the foundation wall. If not provided, the OS-HPXML default (see HPXML Foundation Walls) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('foundation_wall_thickness', false) arg.setDisplayName('Foundation Wall: Thickness') arg.setUnits('in') - arg.setDescription('The thickness of the foundation wall. If not provided, the OS-HPXML default is used.') + arg.setDescription("The thickness of the foundation wall. If not provided, the OS-HPXML default (see HPXML Foundation Walls) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('foundation_wall_insulation_r', true) @@ -514,13 +534,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('foundation_wall_insulation_distance_to_top', false) arg.setDisplayName('Foundation Wall: Insulation Distance To Top') arg.setUnits('ft') - arg.setDescription('The distance from the top of the foundation wall to the top of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default is used.') + arg.setDescription("The distance from the top of the foundation wall to the top of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default (see HPXML Foundation Walls) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('foundation_wall_insulation_distance_to_bottom', false) arg.setDisplayName('Foundation Wall: Insulation Distance To Bottom') arg.setUnits('ft') - arg.setDescription('The distance from the top of the foundation wall to the bottom of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default is used.') + arg.setDescription("The distance from the top of the foundation wall to the bottom of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default (see HPXML Foundation Walls) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('foundation_wall_assembly_r', false) @@ -566,19 +586,19 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_thickness', false) arg.setDisplayName('Slab: Thickness') arg.setUnits('in') - arg.setDescription('The thickness of the slab. Zero can be entered if there is a dirt floor instead of a slab. If not provided, the OS-HPXML default is used.') + arg.setDescription("The thickness of the slab. Zero can be entered if there is a dirt floor instead of a slab. If not provided, the OS-HPXML default (see HPXML Slabs) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_carpet_fraction', false) arg.setDisplayName('Slab: Carpet Fraction') arg.setUnits('Frac') - arg.setDescription('Fraction of the slab floor area that is carpeted. If not provided, the OS-HPXML default is used.') + arg.setDescription("Fraction of the slab floor area that is carpeted. If not provided, the OS-HPXML default (see HPXML Slabs) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('slab_carpet_r', false) arg.setDisplayName('Slab: Carpet R-value') arg.setUnits('h-ft^2-R/Btu') - arg.setDescription('R-value of the slab carpet. If not provided, the OS-HPXML default is used.') + arg.setDescription("R-value of the slab carpet. If not provided, the OS-HPXML default (see HPXML Slabs) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('ceiling_assembly_r', true) @@ -601,7 +621,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('roof_material_type', roof_material_type_choices, false) arg.setDisplayName('Roof: Material Type') - arg.setDescription('The material type of the roof. If not provided, the OS-HPXML default is used.') + arg.setDescription("The material type of the roof. If not provided, the OS-HPXML default (see HPXML Roofs) is used.") args << arg color_choices = OpenStudio::StringVector.new @@ -613,7 +633,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('roof_color', color_choices, false) arg.setDisplayName('Roof: Color') - arg.setDescription('The color of the roof. If not provided, the OS-HPXML default is used.') + arg.setDescription("The color of the roof. If not provided, the OS-HPXML default (see HPXML Roofs) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('roof_assembly_r', true) @@ -636,8 +656,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('roof_radiant_barrier_grade', roof_radiant_barrier_grade_choices, false) arg.setDisplayName('Roof: Radiant Barrier Grade') - arg.setDescription('The grade of the radiant barrier. If not provided, the OS-HPXML default is used.') - arg.setDefaultValue('1') + arg.setDescription("The grade of the radiant barrier. If not provided, the OS-HPXML default (see HPXML Roofs) is used.") args << arg wall_type_choices = OpenStudio::StringVector.new @@ -674,12 +693,12 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('wall_siding_type', wall_siding_type_choices, false) arg.setDisplayName('Wall: Siding Type') - arg.setDescription('The siding type of the walls. Also applies to rim joists. If not provided, the OS-HPXML default is used.') + arg.setDescription("The siding type of the walls. Also applies to rim joists. If not provided, the OS-HPXML default (see HPXML Walls) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('wall_color', color_choices, false) arg.setDisplayName('Wall: Color') - arg.setDescription('The color of the walls. Also applies to rim joists. If not provided, the OS-HPXML default is used.') + arg.setDescription("The color of the walls. Also applies to rim joists. If not provided, the OS-HPXML default (see HPXML Walls) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('wall_assembly_r', true) @@ -755,13 +774,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_fraction_operable', false) arg.setDisplayName('Windows: Fraction Operable') arg.setUnits('Frac') - arg.setDescription('Fraction of windows that are operable. If not provided, the OS-HPXML default is used.') + arg.setDescription("Fraction of windows that are operable. If not provided, the OS-HPXML default (see HPXML Windows) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('window_natvent_availability', false) arg.setDisplayName('Windows: Natural Ventilation Availability') arg.setUnits('Days/week') - arg.setDescription('For operable windows, the number of days/week that windows can be opened by occupants for natural ventilation. If not provided, the OS-HPXML default is used.') + arg.setDescription("For operable windows, the number of days/week that windows can be opened by occupants for natural ventilation. If not provided, the OS-HPXML default (see HPXML Windows) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_ufactor', true) @@ -780,30 +799,30 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_interior_shading_winter', false) arg.setDisplayName('Windows: Winter Interior Shading') arg.setUnits('Frac') - arg.setDescription('Interior shading coefficient for the winter season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used.') + arg.setDescription("Interior shading coefficient for the winter season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see HPXML Windows) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_interior_shading_summer', false) arg.setDisplayName('Windows: Summer Interior Shading') arg.setUnits('Frac') - arg.setDescription('Interior shading coefficient for the summer season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used.') + arg.setDescription("Interior shading coefficient for the summer season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see HPXML Windows) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_exterior_shading_winter', false) arg.setDisplayName('Windows: Winter Exterior Shading') arg.setUnits('Frac') - arg.setDescription('Exterior shading coefficient for the winter season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used.') + arg.setDescription("Exterior shading coefficient for the winter season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see HPXML Windows) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('window_exterior_shading_summer', false) arg.setDisplayName('Windows: Summer Exterior Shading') arg.setUnits('Frac') - arg.setDescription('Exterior shading coefficient for the summer season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used.') + arg.setDescription("Exterior shading coefficient for the summer season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see HPXML Windows) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeStringArgument('window_shading_summer_season', false) arg.setDisplayName('Windows: Shading Summer Season') - arg.setDescription('Enter a date like "May 1 - Sep 30". Defines the summer season for purposes of shading coefficients; the rest of the year is assumed to be winter. If not provided, the OS-HPXML default is used.') + arg.setDescription("Enter a date like 'May 1 - Sep 30'. Defines the summer season for purposes of shading coefficients; the rest of the year is assumed to be winter. If not provided, the OS-HPXML default (see HPXML Windows) is used.") args << arg storm_window_type_choices = OpenStudio::StringVector.new @@ -996,7 +1015,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeBoolArgument('air_leakage_has_flue_or_chimney_in_conditioned_space', false) arg.setDisplayName('Air Leakage: Has Flue or Chimney in Conditioned Space') - arg.setDescription('Presence of flue or chimney with combustion air from conditioned space; used for infiltration model. If not provided, the OS-HPXML default is used.') + arg.setDescription("Presence of flue or chimney with combustion air from conditioned space; used for infiltration model. If not provided, the OS-HPXML default (see Flue or Chimney) is used.") args << arg heating_system_type_choices = OpenStudio::StringVector.new @@ -1007,9 +1026,8 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument heating_system_type_choices << HPXML::HVACTypeBoiler heating_system_type_choices << HPXML::HVACTypeElectricResistance heating_system_type_choices << HPXML::HVACTypeStove - heating_system_type_choices << HPXML::HVACTypePortableHeater + heating_system_type_choices << HPXML::HVACTypeSpaceHeater heating_system_type_choices << HPXML::HVACTypeFireplace - heating_system_type_choices << HPXML::HVACTypeFixedHeater heating_system_type_choices << "Shared #{HPXML::HVACTypeBoiler} w/ Baseboard" heating_system_type_choices << "Shared #{HPXML::HVACTypeBoiler} w/ Ductless Fan Coil" @@ -1062,7 +1080,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_heating_capacity', false) arg.setDisplayName('Heating System: Heating Capacity') - arg.setDescription('The output heating capacity of the heating system. If not provided, the OS-HPXML autosized default is used.') + arg.setDescription("The output heating capacity of the heating system. If not provided, the OS-HPXML autosized default (see HPXML Heating Systems) is used.") arg.setUnits('Btu/hr') args << arg @@ -1105,18 +1123,18 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('cooling_system_cooling_compressor_type', compressor_type_choices, false) arg.setDisplayName('Cooling System: Cooling Compressor Type') - arg.setDescription("The compressor type of the cooling system. Only applies to #{HPXML::HVACTypeCentralAirConditioner}. If not provided, the OS-HPXML default is used.") + arg.setDescription("The compressor type of the cooling system. Only applies to #{HPXML::HVACTypeCentralAirConditioner} and #{HPXML::HVACTypeMiniSplitAirConditioner}. If not provided, the OS-HPXML default (see Central Air Conditioner, Mini-Split Air Conditioner) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooling_system_cooling_sensible_heat_fraction', false) arg.setDisplayName('Cooling System: Cooling Sensible Heat Fraction') - arg.setDescription("The sensible heat fraction of the cooling system. Ignored for #{HPXML::HVACTypeEvaporativeCooler}. If not provided, the OS-HPXML default is used.") + arg.setDescription("The sensible heat fraction of the cooling system. Ignored for #{HPXML::HVACTypeEvaporativeCooler}. If not provided, the OS-HPXML default (see Central Air Conditioner, Room Air Conditioner, Packaged Terminal Air Conditioner, Mini-Split Air Conditioner) is used.") arg.setUnits('Frac') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooling_system_cooling_capacity', false) arg.setDisplayName('Cooling System: Cooling Capacity') - arg.setDescription('The output cooling capacity of the cooling system. If not provided, the OS-HPXML autosized default is used.') + arg.setDescription("The output cooling capacity of the cooling system. If not provided, the OS-HPXML autosized default (see Central Air Conditioner, Room Air Conditioner, Packaged Terminal Air Conditioner, Evaporative Cooler, Mini-Split Air Conditioner) is used.") arg.setUnits('Btu/hr') args << arg @@ -1147,7 +1165,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooling_system_crankcase_heater_watts', false) arg.setDisplayName('Cooling System: Crankcase Heater Power Watts') - arg.setDescription("Cooling system crankcase heater power consumption in Watts. Applies only to #{HPXML::HVACTypeCentralAirConditioner}, #{HPXML::HVACTypeMiniSplitAirConditioner}, #{HPXML::HVACTypePTAC} and #{HPXML::HVACTypeRoomAirConditioner}. If not provided, the OS-HPXML default is used.") + arg.setDescription("Cooling system crankcase heater power consumption in Watts. Applies only to #{HPXML::HVACTypeCentralAirConditioner}, #{HPXML::HVACTypeRoomAirConditioner}, #{HPXML::HVACTypePTAC} and #{HPXML::HVACTypeMiniSplitAirConditioner}. If not provided, the OS-HPXML default (see Central Air Conditioner, Room Air Conditioner, Packaged Terminal Air Conditioner, Mini-Split Air Conditioner) is used.") arg.setUnits('W') args << arg @@ -1164,7 +1182,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooling_system_integrated_heating_system_capacity', false) arg.setDisplayName('Cooling System: Integrated Heating System Heating Capacity') - arg.setDescription("The output heating capacity of the heating system integrated into cooling system. If not provided, the OS-HPXML autosized default is used. Only used for #{HPXML::HVACTypePTAC} and #{HPXML::HVACTypeRoomAirConditioner}.") + arg.setDescription("The output heating capacity of the heating system integrated into cooling system. If not provided, the OS-HPXML autosized default (see Room Air Conditioner, Packaged Terminal Air Conditioner) is used. Only used for #{HPXML::HVACTypeRoomAirConditioner} and #{HPXML::HVACTypePTAC}.") arg.setUnits('Btu/hr') args << arg @@ -1187,9 +1205,6 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument heat_pump_heating_efficiency_type_choices << HPXML::UnitsHSPF2 heat_pump_heating_efficiency_type_choices << HPXML::UnitsCOP - heat_pump_fuel_choices = OpenStudio::StringVector.new - heat_pump_fuel_choices << HPXML::FuelTypeElectricity - heat_pump_backup_type_choices = OpenStudio::StringVector.new heat_pump_backup_type_choices << 'none' heat_pump_backup_type_choices << HPXML::HeatPumpBackupTypeIntegrated @@ -1238,24 +1253,24 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heat_pump_cooling_compressor_type', compressor_type_choices, false) arg.setDisplayName('Heat Pump: Cooling Compressor Type') - arg.setDescription("The compressor type of the heat pump. Only applies to #{HPXML::HVACTypeHeatPumpAirToAir}. If not provided, the OS-HPXML default is used.") + arg.setDescription("The compressor type of the heat pump. Only applies to #{HPXML::HVACTypeHeatPumpAirToAir} and #{HPXML::HVACTypeHeatPumpMiniSplit}. If not provided, the OS-HPXML default (see Air-to-Air Heat Pump, Mini-Split Heat Pump) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_cooling_sensible_heat_fraction', false) arg.setDisplayName('Heat Pump: Cooling Sensible Heat Fraction') - arg.setDescription('The sensible heat fraction of the heat pump. If not provided, the OS-HPXML default is used.') + arg.setDescription("The sensible heat fraction of the heat pump. If not provided, the OS-HPXML default (see Air-to-Air Heat Pump, Mini-Split Heat Pump, Packaged Terminal Heat Pump, Room Air Conditioner w/ Reverse Cycle, Ground-to-Air Heat Pump) is used.") arg.setUnits('Frac') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_heating_capacity', false) arg.setDisplayName('Heat Pump: Heating Capacity') - arg.setDescription('The output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default is used.') + arg.setDescription("The output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default (see Air-to-Air Heat Pump, Mini-Split Heat Pump, Packaged Terminal Heat Pump, Room Air Conditioner w/ Reverse Cycle, Ground-to-Air Heat Pump) is used.") arg.setUnits('Btu/hr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_heating_capacity_retention_fraction', false) arg.setDisplayName('Heat Pump: Heating Capacity Retention Fraction') - arg.setDescription("The output heating capacity of the heat pump at a user-specified temperature (e.g., 17F or 5F) divided by the above nominal heating capacity. Applies to all heat pump types except #{HPXML::HVACTypeHeatPumpGroundToAir}. If not provided, the OS-HPXML default is used.") + arg.setDescription("The output heating capacity of the heat pump at a user-specified temperature (e.g., 17F or 5F) divided by the above nominal heating capacity. Applies to all heat pump types except #{HPXML::HVACTypeHeatPumpGroundToAir}. If not provided, the OS-HPXML default (see Air-to-Air Heat Pump, Mini-Split Heat Pump, Packaged Terminal Heat Pump, Room Air Conditioner w/ Reverse Cycle) is used.") arg.setUnits('Frac') args << arg @@ -1267,7 +1282,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_cooling_capacity', false) arg.setDisplayName('Heat Pump: Cooling Capacity') - arg.setDescription('The output cooling capacity of the heat pump. If not provided, the OS-HPXML autosized default is used.') + arg.setDescription("The output cooling capacity of the heat pump. If not provided, the OS-HPXML autosized default (see Air-to-Air Heat Pump, Mini-Split Heat Pump, Packaged Terminal Heat Pump, Room Air Conditioner w/ Reverse Cycle, Ground-to-Air Heat Pump) is used.") arg.setUnits('Btu/hr') args << arg @@ -1287,7 +1302,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_compressor_lockout_temp', false) arg.setDisplayName('Heat Pump: Compressor Lockout Temperature') - arg.setDescription("The temperature below which the heat pump compressor is disabled. If both this and Backup Heating Lockout Temperature are provided and use the same value, it essentially defines a switchover temperature (for, e.g., a dual-fuel heat pump). Applies to all heat pump types other than #{HPXML::HVACTypeHeatPumpGroundToAir}. If not provided, the OS-HPXML default is used.") + arg.setDescription("The temperature below which the heat pump compressor is disabled. If both this and Backup Heating Lockout Temperature are provided and use the same value, it essentially defines a switchover temperature (for, e.g., a dual-fuel heat pump). Applies to all heat pump types other than #{HPXML::HVACTypeHeatPumpGroundToAir}. If not provided, the OS-HPXML default (see Air-to-Air Heat Pump, Mini-Split Heat Pump, Packaged Terminal Heat Pump, Room Air Conditioner w/ Reverse Cycle) is used.") arg.setUnits('deg-F') args << arg @@ -1311,19 +1326,19 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_backup_heating_capacity', false) arg.setDisplayName('Heat Pump: Backup Heating Capacity') - arg.setDescription("The backup output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default is used. Only applies if Backup Type is '#{HPXML::HeatPumpBackupTypeIntegrated}'.") + arg.setDescription("The backup output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default (see Backup) is used. Only applies if Backup Type is '#{HPXML::HeatPumpBackupTypeIntegrated}'.") arg.setUnits('Btu/hr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_backup_heating_lockout_temp', false) arg.setDisplayName('Heat Pump: Backup Heating Lockout Temperature') - arg.setDescription("The temperature above which the heat pump backup system is disabled. If both this and Compressor Lockout Temperature are provided and use the same value, it essentially defines a switchover temperature (for, e.g., a dual-fuel heat pump). Applies for both Backup Type of '#{HPXML::HeatPumpBackupTypeIntegrated}' and '#{HPXML::HeatPumpBackupTypeSeparate}'. If not provided, the OS-HPXML default is used.") + arg.setDescription("The temperature above which the heat pump backup system is disabled. If both this and Compressor Lockout Temperature are provided and use the same value, it essentially defines a switchover temperature (for, e.g., a dual-fuel heat pump). Applies for both Backup Type of '#{HPXML::HeatPumpBackupTypeIntegrated}' and '#{HPXML::HeatPumpBackupTypeSeparate}'. If not provided, the OS-HPXML default (see Backup) is used.") arg.setUnits('deg-F') args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heat_pump_sizing_methodology', heat_pump_sizing_choices, false) arg.setDisplayName('Heat Pump: Sizing Methodology') - arg.setDescription('The auto-sizing methodology to use when the heat pump capacity is not provided. If not provided, the OS-HPXML default is used.') + arg.setDescription("The auto-sizing methodology to use when the heat pump capacity is not provided. If not provided, the OS-HPXML default (see HPXML HVAC Sizing Control) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('heat_pump_is_ducted', false) @@ -1345,7 +1360,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_crankcase_heater_watts', false) arg.setDisplayName('Heat Pump: Crankcase Heater Power Watts') - arg.setDescription("Heat Pump crankcase heater power consumption in Watts. Applies only to #{HPXML::HVACTypeHeatPumpAirToAir}, #{HPXML::HVACTypeHeatPumpMiniSplit}, #{HPXML::HVACTypeHeatPumpPTHP} and #{HPXML::HVACTypeHeatPumpRoom}. If not provided, the OS-HPXML default is used.") + arg.setDescription("Heat Pump crankcase heater power consumption in Watts. Applies only to #{HPXML::HVACTypeHeatPumpAirToAir}, #{HPXML::HVACTypeHeatPumpMiniSplit}, #{HPXML::HVACTypeHeatPumpPTHP} and #{HPXML::HVACTypeHeatPumpRoom}. If not provided, the OS-HPXML default (see Air-to-Air Heat Pump, Mini-Split Heat Pump, Packaged Terminal Heat Pump, Room Air Conditioner w/ Reverse Cycle) is used.") arg.setUnits('W') args << arg @@ -1357,9 +1372,8 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument heating_system_2_type_choices << HPXML::HVACTypeBoiler heating_system_2_type_choices << HPXML::HVACTypeElectricResistance heating_system_2_type_choices << HPXML::HVACTypeStove - heating_system_2_type_choices << HPXML::HVACTypePortableHeater + heating_system_2_type_choices << HPXML::HVACTypeSpaceHeater heating_system_2_type_choices << HPXML::HVACTypeFireplace - heating_system_2_type_choices << HPXML::HVACTypeFixedHeater arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heating_system_2_type', heating_system_2_type_choices, true) arg.setDisplayName('Heating System 2: Type') @@ -1382,7 +1396,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_2_heating_capacity', false) arg.setDisplayName('Heating System 2: Heating Capacity') - arg.setDescription('The output heating capacity of the second heating system. If not provided, the OS-HPXML autosized default is used.') + arg.setDescription("The output heating capacity of the second heating system. If not provided, the OS-HPXML autosized default (see HPXML Heating Systems) is used.") arg.setUnits('Btu/hr') args << arg @@ -1419,12 +1433,12 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeStringArgument('hvac_control_heating_season_period', false) arg.setDisplayName('HVAC Control: Heating Season Period') - arg.setDescription("Enter a date like 'Nov 1 - Jun 30'. If not provided, the OS-HPXML default is used. Can also provide '#{HPXML::BuildingAmerica}' to use automatic seasons from the Building America House Simulation Protocols.") + arg.setDescription("Enter a date like 'Nov 1 - Jun 30'. If not provided, the OS-HPXML default (see HPXML HVAC Control) is used. Can also provide '#{HPXML::BuildingAmerica}' to use automatic seasons from the Building America House Simulation Protocols.") args << arg arg = OpenStudio::Measure::OSArgument::makeStringArgument('hvac_control_cooling_season_period', false) arg.setDisplayName('HVAC Control: Cooling Season Period') - arg.setDescription("Enter a date like 'Jun 1 - Oct 31'. If not provided, the OS-HPXML default is used. Can also provide '#{HPXML::BuildingAmerica}' to use automatic seasons from the Building America House Simulation Protocols.") + arg.setDescription("Enter a date like 'Jun 1 - Oct 31'. If not provided, the OS-HPXML default (see HPXML HVAC Control) is used. Can also provide '#{HPXML::BuildingAmerica}' to use automatic seasons from the Building America House Simulation Protocols.") args << arg duct_leakage_units_choices = OpenStudio::StringVector.new @@ -1433,12 +1447,14 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument duct_leakage_units_choices << HPXML::UnitsPercent duct_location_choices = OpenStudio::StringVector.new - duct_location_choices << HPXML::LocationLivingSpace + duct_location_choices << HPXML::LocationConditionedSpace duct_location_choices << HPXML::LocationBasementConditioned duct_location_choices << HPXML::LocationBasementUnconditioned + duct_location_choices << HPXML::LocationCrawlspace duct_location_choices << HPXML::LocationCrawlspaceVented duct_location_choices << HPXML::LocationCrawlspaceUnvented duct_location_choices << HPXML::LocationCrawlspaceConditioned + duct_location_choices << HPXML::LocationAttic duct_location_choices << HPXML::LocationAtticVented duct_location_choices << HPXML::LocationAtticUnvented duct_location_choices << HPXML::LocationGarage @@ -1450,6 +1466,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument duct_location_choices << HPXML::LocationOtherHeatedSpace duct_location_choices << HPXML::LocationOtherMultifamilyBufferSpace duct_location_choices << HPXML::LocationOtherNonFreezingSpace + duct_location_choices << HPXML::LocationManufacturedHomeBelly arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('ducts_leakage_units', duct_leakage_units_choices, true) arg.setDisplayName('Ducts: Leakage Units') @@ -1471,7 +1488,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('ducts_supply_location', duct_location_choices, false) arg.setDisplayName('Ducts: Supply Location') - arg.setDescription('The location of the supply ducts. If not provided, the OS-HPXML default is used.') + arg.setDescription("The location of the supply ducts. If not provided, the OS-HPXML default (see Air Distribution) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('ducts_supply_insulation_r', true) @@ -1494,13 +1511,19 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('ducts_supply_surface_area', false) arg.setDisplayName('Ducts: Supply Surface Area') - arg.setDescription('The surface area of the supply ducts. If not provided, the OS-HPXML default is used.') + arg.setDescription("The supply ducts surface area in the given location. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see Air Distribution) is used.") arg.setUnits('ft^2') args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('ducts_supply_surface_area_fraction', false) + arg.setDisplayName('Ducts: Supply Area Fraction') + arg.setDescription("The fraction of supply ducts surface area in the given location. Only used if Surface Area is not provided. If the fraction is less than 1, the remaining duct area is assumed to be in conditioned space. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see Air Distribution) is used.") + arg.setUnits('frac') + args << arg + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('ducts_return_location', duct_location_choices, false) arg.setDisplayName('Ducts: Return Location') - arg.setDescription('The location of the return ducts. If not provided, the OS-HPXML default is used.') + arg.setDescription("The location of the return ducts. If not provided, the OS-HPXML default (see Air Distribution) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('ducts_return_insulation_r', true) @@ -1517,13 +1540,19 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('ducts_return_surface_area', false) arg.setDisplayName('Ducts: Return Surface Area') - arg.setDescription('The surface area of the return ducts. If not provided, the OS-HPXML default is used.') + arg.setDescription("The return ducts surface area in the given location. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see Air Distribution) is used.") arg.setUnits('ft^2') args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('ducts_return_surface_area_fraction', false) + arg.setDisplayName('Ducts: Return Area Fraction') + arg.setDescription("The fraction of return ducts surface area in the given location. Only used if Surface Area is not provided. If the fraction is less than 1, the remaining duct area is assumed to be in conditioned space. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see Air Distribution) is used.") + arg.setUnits('frac') + args << arg + arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('ducts_number_of_return_registers', false) arg.setDisplayName('Ducts: Number of Return Registers') - arg.setDescription('The number of return registers of the ducts. Only used to calculate default return duct surface area. If not provided, the OS-HPXML default is used.') + arg.setDescription("The number of return registers of the ducts. Only used to calculate default return duct surface area. If not provided, the OS-HPXML default (see Air Distribution) is used.") arg.setUnits('#') args << arg @@ -1548,13 +1577,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('mech_vent_flow_rate', false) arg.setDisplayName('Mechanical Ventilation: Flow Rate') - arg.setDescription('The flow rate of the mechanical ventilation. If not provided, the OS-HPXML default is used.') + arg.setDescription("The flow rate of the mechanical ventilation. If not provided, the OS-HPXML default (see Whole Ventilation Fan) is used.") arg.setUnits('CFM') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('mech_vent_hours_in_operation', false) arg.setDisplayName('Mechanical Ventilation: Hours In Operation') - arg.setDescription('The hours in operation of the mechanical ventilation. If not provided, the OS-HPXML default is used.') + arg.setDescription("The hours in operation of the mechanical ventilation. If not provided, the OS-HPXML default (see Whole Ventilation Fan) is used.") arg.setUnits('hrs/day') args << arg @@ -1580,7 +1609,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('mech_vent_fan_power', false) arg.setDisplayName('Mechanical Ventilation: Fan Power') - arg.setDescription('The fan power of the mechanical ventilation. If not provided, the OS-HPXML default is used.') + arg.setDescription("The fan power of the mechanical ventilation. If not provided, the OS-HPXML default (see Whole Ventilation Fan) is used.") arg.setUnits('W') args << arg @@ -1691,61 +1720,61 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('kitchen_fans_quantity', false) arg.setDisplayName('Kitchen Fans: Quantity') - arg.setDescription('The quantity of the kitchen fans. If not provided, the OS-HPXML default is used.') + arg.setDescription("The quantity of the kitchen fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") arg.setUnits('#') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('kitchen_fans_flow_rate', false) arg.setDisplayName('Kitchen Fans: Flow Rate') - arg.setDescription('The flow rate of the kitchen fan. If not provided, the OS-HPXML default is used.') + arg.setDescription("The flow rate of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") arg.setUnits('CFM') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('kitchen_fans_hours_in_operation', false) arg.setDisplayName('Kitchen Fans: Hours In Operation') - arg.setDescription('The hours in operation of the kitchen fan. If not provided, the OS-HPXML default is used.') + arg.setDescription("The hours in operation of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") arg.setUnits('hrs/day') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('kitchen_fans_power', false) arg.setDisplayName('Kitchen Fans: Fan Power') - arg.setDescription('The fan power of the kitchen fan. If not provided, the OS-HPXML default is used.') + arg.setDescription("The fan power of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") arg.setUnits('W') args << arg arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('kitchen_fans_start_hour', false) arg.setDisplayName('Kitchen Fans: Start Hour') - arg.setDescription('The start hour of the kitchen fan. If not provided, the OS-HPXML default is used.') + arg.setDescription("The start hour of the kitchen fan. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") arg.setUnits('hr') args << arg arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('bathroom_fans_quantity', false) arg.setDisplayName('Bathroom Fans: Quantity') - arg.setDescription('The quantity of the bathroom fans. If not provided, the OS-HPXML default is used.') + arg.setDescription("The quantity of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") arg.setUnits('#') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('bathroom_fans_flow_rate', false) arg.setDisplayName('Bathroom Fans: Flow Rate') - arg.setDescription('The flow rate of the bathroom fans. If not provided, the OS-HPXML default is used.') + arg.setDescription("The flow rate of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") arg.setUnits('CFM') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('bathroom_fans_hours_in_operation', false) arg.setDisplayName('Bathroom Fans: Hours In Operation') - arg.setDescription('The hours in operation of the bathroom fans. If not provided, the OS-HPXML default is used.') + arg.setDescription("The hours in operation of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") arg.setUnits('hrs/day') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('bathroom_fans_power', false) arg.setDisplayName('Bathroom Fans: Fan Power') - arg.setDescription('The fan power of the bathroom fans. If not provided, the OS-HPXML default is used.') + arg.setDescription("The fan power of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") arg.setUnits('W') args << arg arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('bathroom_fans_start_hour', false) arg.setDisplayName('Bathroom Fans: Start Hour') - arg.setDescription('The start hour of the bathroom fans. If not provided, the OS-HPXML default is used.') + arg.setDescription("The start hour of the bathroom fans. If not provided, the OS-HPXML default (see Local Ventilation Fan) is used.") arg.setUnits('hr') args << arg @@ -1757,13 +1786,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('whole_house_fan_flow_rate', false) arg.setDisplayName('Whole House Fan: Flow Rate') - arg.setDescription('The flow rate of the whole house fan. If not provided, the OS-HPXML default is used.') + arg.setDescription("The flow rate of the whole house fan. If not provided, the OS-HPXML default (see Whole House Fan) is used.") arg.setUnits('CFM') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('whole_house_fan_power', false) arg.setDisplayName('Whole House Fan: Fan Power') - arg.setDescription('The fan power of the whole house fan. If not provided, the OS-HPXML default is used.') + arg.setDescription("The fan power of the whole house fan. If not provided, the OS-HPXML default (see Whole House Fan) is used.") arg.setUnits('W') args << arg @@ -1784,12 +1813,14 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument water_heater_fuel_choices << HPXML::FuelTypeCoal water_heater_location_choices = OpenStudio::StringVector.new - water_heater_location_choices << HPXML::LocationLivingSpace + water_heater_location_choices << HPXML::LocationConditionedSpace water_heater_location_choices << HPXML::LocationBasementConditioned water_heater_location_choices << HPXML::LocationBasementUnconditioned water_heater_location_choices << HPXML::LocationGarage + water_heater_location_choices << HPXML::LocationAttic water_heater_location_choices << HPXML::LocationAtticVented water_heater_location_choices << HPXML::LocationAtticUnvented + water_heater_location_choices << HPXML::LocationCrawlspace water_heater_location_choices << HPXML::LocationCrawlspaceVented water_heater_location_choices << HPXML::LocationCrawlspaceUnvented water_heater_location_choices << HPXML::LocationCrawlspaceConditioned @@ -1823,12 +1854,12 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('water_heater_location', water_heater_location_choices, false) arg.setDisplayName('Water Heater: Location') - arg.setDescription('The location of water heater. If not provided, the OS-HPXML default is used.') + arg.setDescription("The location of water heater. If not provided, the OS-HPXML default (see HPXML Water Heating Systems) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('water_heater_tank_volume', false) arg.setDisplayName('Water Heater: Tank Volume') - arg.setDescription("Nominal volume of water heater tank. Only applies to #{HPXML::WaterHeaterTypeStorage}, #{HPXML::WaterHeaterTypeHeatPump}, and #{HPXML::WaterHeaterTypeCombiStorage}. If not provided, the OS-HPXML default is used.") + arg.setDescription("Nominal volume of water heater tank. Only applies to #{HPXML::WaterHeaterTypeStorage}, #{HPXML::WaterHeaterTypeHeatPump}, and #{HPXML::WaterHeaterTypeCombiStorage}. If not provided, the OS-HPXML default (see Conventional Storage, Heat Pump, Combi Boiler w/ Storage) is used.") arg.setUnits('gal') args << arg @@ -1846,24 +1877,24 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('water_heater_usage_bin', water_heater_usage_bin_choices, false) arg.setDisplayName('Water Heater: Usage Bin') - arg.setDescription("The usage of the water heater. Only applies if Efficiency Type is UniformEnergyFactor and Type is not #{HPXML::WaterHeaterTypeTankless}. Does not apply to space-heating boilers. If not provided, the OS-HPXML default is used.") + arg.setDescription("The usage of the water heater. Only applies if Efficiency Type is UniformEnergyFactor and Type is not #{HPXML::WaterHeaterTypeTankless}. Does not apply to space-heating boilers. If not provided, the OS-HPXML default (see Conventional Storage, Heat Pump) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('water_heater_recovery_efficiency', false) arg.setDisplayName('Water Heater: Recovery Efficiency') - arg.setDescription('Ratio of energy delivered to water heater to the energy content of the fuel consumed by the water heater. Only used for non-electric storage water heaters. If not provided, the OS-HPXML default is used.') + arg.setDescription("Ratio of energy delivered to water heater to the energy content of the fuel consumed by the water heater. Only used for non-electric storage water heaters. If not provided, the OS-HPXML default (see Conventional Storage) is used.") arg.setUnits('Frac') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('water_heater_heating_capacity', false) arg.setDisplayName('Water Heater: Heating Capacity') - arg.setDescription("Heating capacity. Only applies to #{HPXML::WaterHeaterTypeStorage}. If not provided, the OS-HPXML default is used.") + arg.setDescription("Heating capacity. Only applies to #{HPXML::WaterHeaterTypeStorage}. If not provided, the OS-HPXML default (see Conventional Storage) is used.") arg.setUnits('Btu/hr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('water_heater_standby_loss', false) arg.setDisplayName('Water Heater: Standby Loss') - arg.setDescription('The standby loss of water heater. Only applies to space-heating boilers. If not provided, the OS-HPXML default is used.') + arg.setDescription("The standby loss of water heater. Only applies to space-heating boilers. If not provided, the OS-HPXML default (see Combi Boiler w/ Storage) is used.") arg.setUnits('deg-F/hr') args << arg @@ -1875,7 +1906,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('water_heater_setpoint_temperature', false) arg.setDisplayName('Water Heater: Setpoint Temperature') - arg.setDescription('The setpoint temperature of water heater. If not provided, the OS-HPXML default is used.') + arg.setDescription("The setpoint temperature of water heater. If not provided, the OS-HPXML default (see HPXML Water Heating Systems) is used.") arg.setUnits('deg-F') args << arg @@ -1897,7 +1928,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('water_heater_tank_model_type', water_heater_tank_model_type_choices, false) arg.setDisplayName('Water Heater: Tank Type') - arg.setDescription("Type of tank model to use. The '#{HPXML::WaterHeaterTankModelTypeStratified}' tank generally provide more accurate results, but may significantly increase run time. Applies only to #{HPXML::WaterHeaterTypeStorage}. If not provided, the OS-HPXML default is used.") + arg.setDescription("Type of tank model to use. The '#{HPXML::WaterHeaterTankModelTypeStratified}' tank generally provide more accurate results, but may significantly increase run time. Applies only to #{HPXML::WaterHeaterTypeStorage}. If not provided, the OS-HPXML default (see Conventional Storage) is used.") args << arg water_heater_operating_mode_choices = OpenStudio::StringVector.new @@ -1906,7 +1937,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('water_heater_operating_mode', water_heater_operating_mode_choices, false) arg.setDisplayName('Water Heater: Operating Mode') - arg.setDescription("The water heater operating mode. The '#{HPXML::WaterHeaterOperatingModeHeatPumpOnly}' option only uses the heat pump, while '#{HPXML::WaterHeaterOperatingModeHybridAuto}' allows the backup electric resistance to come on in high demand situations. This is ignored if a scheduled operating mode type is selected. Applies only to #{HPXML::WaterHeaterTypeHeatPump}. If not provided, the OS-HPXML default is used.") + arg.setDescription("The water heater operating mode. The '#{HPXML::WaterHeaterOperatingModeHeatPumpOnly}' option only uses the heat pump, while '#{HPXML::WaterHeaterOperatingModeHybridAuto}' allows the backup electric resistance to come on in high demand situations. This is ignored if a scheduled operating mode type is selected. Applies only to #{HPXML::WaterHeaterTypeHeatPump}. If not provided, the OS-HPXML default (see Heat Pump) is used.") args << arg hot_water_distribution_system_type_choices = OpenStudio::StringVector.new @@ -1922,7 +1953,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('hot_water_distribution_standard_piping_length', false) arg.setDisplayName('Hot Water Distribution: Standard Piping Length') arg.setUnits('ft') - arg.setDescription("If the distribution system is #{HPXML::DHWDistTypeStandard}, the length of the piping. If not provided, the OS-HPXML default is used.") + arg.setDescription("If the distribution system is #{HPXML::DHWDistTypeStandard}, the length of the piping. If not provided, the OS-HPXML default (see Standard) is used.") args << arg recirculation_control_type_choices = OpenStudio::StringVector.new @@ -1941,25 +1972,25 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('hot_water_distribution_recirc_piping_length', false) arg.setDisplayName('Hot Water Distribution: Recirculation Piping Length') arg.setUnits('ft') - arg.setDescription("If the distribution system is #{HPXML::DHWDistTypeRecirc}, the length of the recirculation piping. If not provided, the OS-HPXML default is used.") + arg.setDescription("If the distribution system is #{HPXML::DHWDistTypeRecirc}, the length of the recirculation piping. If not provided, the OS-HPXML default (see Recirculation) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('hot_water_distribution_recirc_branch_piping_length', false) arg.setDisplayName('Hot Water Distribution: Recirculation Branch Piping Length') arg.setUnits('ft') - arg.setDescription("If the distribution system is #{HPXML::DHWDistTypeRecirc}, the length of the recirculation branch piping. If not provided, the OS-HPXML default is used.") + arg.setDescription("If the distribution system is #{HPXML::DHWDistTypeRecirc}, the length of the recirculation branch piping. If not provided, the OS-HPXML default (see Recirculation) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('hot_water_distribution_recirc_pump_power', false) arg.setDisplayName('Hot Water Distribution: Recirculation Pump Power') arg.setUnits('W') - arg.setDescription("If the distribution system is #{HPXML::DHWDistTypeRecirc}, the recirculation pump power. If not provided, the OS-HPXML default is used.") + arg.setDescription("If the distribution system is #{HPXML::DHWDistTypeRecirc}, the recirculation pump power. If not provided, the OS-HPXML default (see Recirculation) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('hot_water_distribution_pipe_r', false) arg.setDisplayName('Hot Water Distribution: Pipe Insulation Nominal R-Value') arg.setUnits('h-ft^2-R/Btu') - arg.setDescription('Nominal R-value of the pipe insulation. If not provided, the OS-HPXML default is used.') + arg.setDescription("Nominal R-value of the pipe insulation. If not provided, the OS-HPXML default (see HPXML Hot Water Distribution) is used.") args << arg dwhr_facilities_connected_choices = OpenStudio::StringVector.new @@ -2000,7 +2031,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('water_fixtures_usage_multiplier', false) arg.setDisplayName('Hot Water Fixtures: Usage Multiplier') - arg.setDescription('Multiplier on the hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Water Fixtures) is used.") args << arg solar_thermal_system_type_choices = OpenStudio::StringVector.new @@ -2074,7 +2105,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('solar_thermal_storage_volume', false) arg.setDisplayName('Solar Thermal: Storage Volume') arg.setUnits('gal') - arg.setDescription('The storage volume of the solar thermal system. If not provided, the OS-HPXML default is used.') + arg.setDescription("The storage volume of the solar thermal system. If not provided, the OS-HPXML default (see Detailed Inputs) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('solar_thermal_solar_fraction', true) @@ -2107,17 +2138,17 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('pv_system_module_type', pv_system_module_type_choices, false) arg.setDisplayName('PV System: Module Type') - arg.setDescription('Module type of the PV system. If not provided, the OS-HPXML default is used.') + arg.setDescription("Module type of the PV system. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('pv_system_location', pv_system_location_choices, false) arg.setDisplayName('PV System: Location') - arg.setDescription('Location of the PV system. If not provided, the OS-HPXML default is used.') + arg.setDescription("Location of the PV system. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('pv_system_tracking', pv_system_tracking_choices, false) arg.setDisplayName('PV System: Tracking') - arg.setDescription('Type of tracking for the PV system. If not provided, the OS-HPXML default is used.') + arg.setDescription("Type of tracking for the PV system. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('pv_system_array_azimuth', true) @@ -2144,13 +2175,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('pv_system_inverter_efficiency', false) arg.setDisplayName('PV System: Inverter Efficiency') arg.setUnits('Frac') - arg.setDescription('Inverter efficiency of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default is used.') + arg.setDescription("Inverter efficiency of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('pv_system_system_losses_fraction', false) arg.setDisplayName('PV System: System Losses Fraction') arg.setUnits('Frac') - arg.setDescription('System losses fraction of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default is used.') + arg.setDescription("System losses fraction of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('pv_system_num_bedrooms_served', false) @@ -2167,17 +2198,17 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('pv_system_2_module_type', pv_system_module_type_choices, false) arg.setDisplayName('PV System 2: Module Type') - arg.setDescription('Module type of the second PV system. If not provided, the OS-HPXML default is used.') + arg.setDescription("Module type of the second PV system. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('pv_system_2_location', pv_system_location_choices, false) arg.setDisplayName('PV System 2: Location') - arg.setDescription('Location of the second PV system. If not provided, the OS-HPXML default is used.') + arg.setDescription("Location of the second PV system. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('pv_system_2_tracking', pv_system_tracking_choices, false) arg.setDisplayName('PV System 2: Tracking') - arg.setDescription('Type of tracking for the second PV system. If not provided, the OS-HPXML default is used.') + arg.setDescription("Type of tracking for the second PV system. If not provided, the OS-HPXML default (see HPXML Photovoltaics) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('pv_system_2_array_azimuth', true) @@ -2202,12 +2233,14 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument args << arg battery_location_choices = OpenStudio::StringVector.new - battery_location_choices << HPXML::LocationLivingSpace + battery_location_choices << HPXML::LocationConditionedSpace battery_location_choices << HPXML::LocationBasementConditioned battery_location_choices << HPXML::LocationBasementUnconditioned + battery_location_choices << HPXML::LocationCrawlspace battery_location_choices << HPXML::LocationCrawlspaceVented battery_location_choices << HPXML::LocationCrawlspaceUnvented battery_location_choices << HPXML::LocationCrawlspaceConditioned + battery_location_choices << HPXML::LocationAttic battery_location_choices << HPXML::LocationAtticVented battery_location_choices << HPXML::LocationAtticUnvented battery_location_choices << HPXML::LocationGarage @@ -2221,30 +2254,30 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('battery_location', battery_location_choices, false) arg.setDisplayName('Battery: Location') - arg.setDescription('The space type for the lithium ion battery location. If not provided, the OS-HPXML default is used.') + arg.setDescription("The space type for the lithium ion battery location. If not provided, the OS-HPXML default (see HPXML Batteries) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('battery_power', false) arg.setDisplayName('Battery: Rated Power Output') - arg.setDescription('The rated power output of the lithium ion battery. If not provided, the OS-HPXML default is used.') + arg.setDescription("The rated power output of the lithium ion battery. If not provided, the OS-HPXML default (see HPXML Batteries) is used.") arg.setUnits('W') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('battery_capacity', false) arg.setDisplayName('Battery: Nominal Capacity') - arg.setDescription('The nominal capacity of the lithium ion battery. If not provided, the OS-HPXML default is used.') + arg.setDescription("The nominal capacity of the lithium ion battery. If not provided, the OS-HPXML default (see HPXML Batteries) is used.") arg.setUnits('kWh') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('battery_usable_capacity', false) arg.setDisplayName('Battery: Usable Capacity') - arg.setDescription('The usable capacity of the lithium ion battery. If not provided, the OS-HPXML default is used.') + arg.setDescription("The usable capacity of the lithium ion battery. If not provided, the OS-HPXML default (see HPXML Batteries) is used.") arg.setUnits('kWh') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('battery_round_trip_efficiency', false) arg.setDisplayName('Battery: Round Trip Efficiency') - arg.setDescription('The round trip efficiency of the lithium ion battery. If not provided, the OS-HPXML default is used.') + arg.setDescription("The round trip efficiency of the lithium ion battery. If not provided, the OS-HPXML default (see HPXML Batteries) is used.") arg.setUnits('Frac') args << arg @@ -2274,7 +2307,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('lighting_interior_usage_multiplier', false) arg.setDisplayName('Lighting: Interior Usage Multiplier') - arg.setDescription('Multiplier on the lighting energy usage (interior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the lighting energy usage (interior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Lighting) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('lighting_exterior_fraction_cfl', true) @@ -2297,7 +2330,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('lighting_exterior_usage_multiplier', false) arg.setDisplayName('Lighting: Exterior Usage Multiplier') - arg.setDescription('Multiplier on the lighting energy usage (exterior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the lighting energy usage (exterior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Lighting) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('lighting_garage_fraction_cfl', true) @@ -2320,7 +2353,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('lighting_garage_usage_multiplier', false) arg.setDisplayName('Lighting: Garage Usage Multiplier') - arg.setDescription('Multiplier on the lighting energy usage (garage) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the lighting energy usage (garage) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Lighting) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('holiday_lighting_present', true) @@ -2332,12 +2365,12 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('holiday_lighting_daily_kwh', false) arg.setDisplayName('Holiday Lighting: Daily Consumption') arg.setUnits('kWh/day') - arg.setDescription('The daily energy consumption for holiday lighting (exterior). If not provided, the OS-HPXML default is used.') + arg.setDescription("The daily energy consumption for holiday lighting (exterior). If not provided, the OS-HPXML default (see HPXML Lighting) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeStringArgument('holiday_lighting_period', false) arg.setDisplayName('Holiday Lighting: Period') - arg.setDescription('Enter a date like "Nov 25 - Jan 5". If not provided, the OS-HPXML default is used.') + arg.setDescription("Enter a date like 'Nov 25 - Jan 5'. If not provided, the OS-HPXML default (see HPXML Lighting) is used.") args << arg dehumidifier_type_choices = OpenStudio::StringVector.new @@ -2390,7 +2423,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument args << arg appliance_location_choices = OpenStudio::StringVector.new - appliance_location_choices << HPXML::LocationLivingSpace + appliance_location_choices << HPXML::LocationConditionedSpace appliance_location_choices << HPXML::LocationBasementConditioned appliance_location_choices << HPXML::LocationBasementUnconditioned appliance_location_choices << HPXML::LocationGarage @@ -2411,7 +2444,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('clothes_washer_location', appliance_location_choices, false) arg.setDisplayName('Clothes Washer: Location') - arg.setDescription('The space type for the clothes washer location. If not provided, the OS-HPXML default is used.') + arg.setDescription("The space type for the clothes washer location. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('clothes_washer_efficiency_type', clothes_washer_efficiency_type_choices, true) @@ -2423,48 +2456,48 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('clothes_washer_efficiency', false) arg.setDisplayName('Clothes Washer: Efficiency') arg.setUnits('ft^3/kWh-cyc') - arg.setDescription('The efficiency of the clothes washer. If not provided, the OS-HPXML default is used.') + arg.setDescription("The efficiency of the clothes washer. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('clothes_washer_rated_annual_kwh', false) arg.setDisplayName('Clothes Washer: Rated Annual Consumption') arg.setUnits('kWh/yr') - arg.setDescription('The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default is used.') + arg.setDescription("The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('clothes_washer_label_electric_rate', false) arg.setDisplayName('Clothes Washer: Label Electric Rate') arg.setUnits('$/kWh') - arg.setDescription('The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default is used.') + arg.setDescription("The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('clothes_washer_label_gas_rate', false) arg.setDisplayName('Clothes Washer: Label Gas Rate') arg.setUnits('$/therm') - arg.setDescription('The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default is used.') + arg.setDescription("The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('clothes_washer_label_annual_gas_cost', false) arg.setDisplayName('Clothes Washer: Label Annual Cost with Gas DHW') arg.setUnits('$') - arg.setDescription('The annual cost of using the system under test conditions. Input is obtained from the EnergyGuide label. If not provided, the OS-HPXML default is used.') + arg.setDescription("The annual cost of using the system under test conditions. Input is obtained from the EnergyGuide label. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('clothes_washer_label_usage', false) arg.setDisplayName('Clothes Washer: Label Usage') arg.setUnits('cyc/wk') - arg.setDescription('The clothes washer loads per week. If not provided, the OS-HPXML default is used.') + arg.setDescription("The clothes washer loads per week. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('clothes_washer_capacity', false) arg.setDisplayName('Clothes Washer: Drum Volume') arg.setUnits('ft^3') - arg.setDescription("Volume of the washer drum. Obtained from the EnergyStar website or the manufacturer's literature. If not provided, the OS-HPXML default is used.") + arg.setDescription("Volume of the washer drum. Obtained from the EnergyStar website or the manufacturer's literature. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('clothes_washer_usage_multiplier', false) arg.setDisplayName('Clothes Washer: Usage Multiplier') - arg.setDescription('Multiplier on the clothes washer energy and hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the clothes washer energy and hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Clothes Washer) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('clothes_dryer_present', true) @@ -2475,7 +2508,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('clothes_dryer_location', appliance_location_choices, false) arg.setDisplayName('Clothes Dryer: Location') - arg.setDescription('The space type for the clothes dryer location. If not provided, the OS-HPXML default is used.') + arg.setDescription("The space type for the clothes dryer location. If not provided, the OS-HPXML default (see HPXML Clothes Dryer) is used.") args << arg clothes_dryer_fuel_choices = OpenStudio::StringVector.new @@ -2505,18 +2538,18 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('clothes_dryer_efficiency', false) arg.setDisplayName('Clothes Dryer: Efficiency') arg.setUnits('lb/kWh') - arg.setDescription('The efficiency of the clothes dryer. If not provided, the OS-HPXML default is used.') + arg.setDescription("The efficiency of the clothes dryer. If not provided, the OS-HPXML default (see HPXML Clothes Dryer) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('clothes_dryer_vented_flow_rate', false) arg.setDisplayName('Clothes Dryer: Vented Flow Rate') - arg.setDescription('The exhaust flow rate of the vented clothes dryer. If not provided, the OS-HPXML default is used.') + arg.setDescription("The exhaust flow rate of the vented clothes dryer. If not provided, the OS-HPXML default (see HPXML Clothes Dryer) is used.") arg.setUnits('CFM') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('clothes_dryer_usage_multiplier', false) arg.setDisplayName('Clothes Dryer: Usage Multiplier') - arg.setDescription('Multiplier on the clothes dryer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the clothes dryer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Clothes Dryer) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('dishwasher_present', true) @@ -2527,7 +2560,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('dishwasher_location', appliance_location_choices, false) arg.setDisplayName('Dishwasher: Location') - arg.setDescription('The space type for the dishwasher location. If not provided, the OS-HPXML default is used.') + arg.setDescription("The space type for the dishwasher location. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used.") args << arg dishwasher_efficiency_type_choices = OpenStudio::StringVector.new @@ -2543,42 +2576,42 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('dishwasher_efficiency', false) arg.setDisplayName('Dishwasher: Efficiency') arg.setUnits('RatedAnnualkWh or EnergyFactor') - arg.setDescription('The efficiency of the dishwasher. If not provided, the OS-HPXML default is used.') + arg.setDescription("The efficiency of the dishwasher. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('dishwasher_label_electric_rate', false) arg.setDisplayName('Dishwasher: Label Electric Rate') arg.setUnits('$/kWh') - arg.setDescription('The label electric rate of the dishwasher. If not provided, the OS-HPXML default is used.') + arg.setDescription("The label electric rate of the dishwasher. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('dishwasher_label_gas_rate', false) arg.setDisplayName('Dishwasher: Label Gas Rate') arg.setUnits('$/therm') - arg.setDescription('The label gas rate of the dishwasher. If not provided, the OS-HPXML default is used.') + arg.setDescription("The label gas rate of the dishwasher. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('dishwasher_label_annual_gas_cost', false) arg.setDisplayName('Dishwasher: Label Annual Gas Cost') arg.setUnits('$') - arg.setDescription('The label annual gas cost of the dishwasher. If not provided, the OS-HPXML default is used.') + arg.setDescription("The label annual gas cost of the dishwasher. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('dishwasher_label_usage', false) arg.setDisplayName('Dishwasher: Label Usage') arg.setUnits('cyc/wk') - arg.setDescription('The dishwasher loads per week. If not provided, the OS-HPXML default is used.') + arg.setDescription("The dishwasher loads per week. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('dishwasher_place_setting_capacity', false) arg.setDisplayName('Dishwasher: Number of Place Settings') arg.setUnits('#') - arg.setDescription("The number of place settings for the unit. Data obtained from manufacturer's literature. If not provided, the OS-HPXML default is used.") + arg.setDescription("The number of place settings for the unit. Data obtained from manufacturer's literature. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('dishwasher_usage_multiplier', false) arg.setDisplayName('Dishwasher: Usage Multiplier') - arg.setDescription('Multiplier on the dishwasher energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the dishwasher energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Dishwasher) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('refrigerator_present', true) @@ -2589,18 +2622,18 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('refrigerator_location', appliance_location_choices, false) arg.setDisplayName('Refrigerator: Location') - arg.setDescription('The space type for the refrigerator location. If not provided, the OS-HPXML default is used.') + arg.setDescription("The space type for the refrigerator location. If not provided, the OS-HPXML default (see HPXML Refrigerators) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('refrigerator_rated_annual_kwh', false) arg.setDisplayName('Refrigerator: Rated Annual Consumption') arg.setUnits('kWh/yr') - arg.setDescription('The EnergyGuide rated annual energy consumption for a refrigerator. If not provided, the OS-HPXML default is used.') + arg.setDescription("The EnergyGuide rated annual energy consumption for a refrigerator. If not provided, the OS-HPXML default (see HPXML Refrigerators) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('refrigerator_usage_multiplier', false) arg.setDisplayName('Refrigerator: Usage Multiplier') - arg.setDescription('Multiplier on the refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Refrigerators) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('extra_refrigerator_present', true) @@ -2611,18 +2644,18 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('extra_refrigerator_location', appliance_location_choices, false) arg.setDisplayName('Extra Refrigerator: Location') - arg.setDescription('The space type for the extra refrigerator location. If not provided, the OS-HPXML default is used.') + arg.setDescription("The space type for the extra refrigerator location. If not provided, the OS-HPXML default (see HPXML Refrigerators) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('extra_refrigerator_rated_annual_kwh', false) arg.setDisplayName('Extra Refrigerator: Rated Annual Consumption') arg.setUnits('kWh/yr') - arg.setDescription('The EnergyGuide rated annual energy consumption for an extra rrefrigerator. If not provided, the OS-HPXML default is used.') + arg.setDescription("The EnergyGuide rated annual energy consumption for an extra rrefrigerator. If not provided, the OS-HPXML default (see HPXML Refrigerators) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('extra_refrigerator_usage_multiplier', false) arg.setDisplayName('Extra Refrigerator: Usage Multiplier') - arg.setDescription('Multiplier on the extra refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the extra refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Refrigerators) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('freezer_present', true) @@ -2633,18 +2666,18 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('freezer_location', appliance_location_choices, false) arg.setDisplayName('Freezer: Location') - arg.setDescription('The space type for the freezer location. If not provided, the OS-HPXML default is used.') + arg.setDescription("The space type for the freezer location. If not provided, the OS-HPXML default (see HPXML Freezers) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('freezer_rated_annual_kwh', false) arg.setDisplayName('Freezer: Rated Annual Consumption') arg.setUnits('kWh/yr') - arg.setDescription('The EnergyGuide rated annual energy consumption for a freezer. If not provided, the OS-HPXML default is used.') + arg.setDescription("The EnergyGuide rated annual energy consumption for a freezer. If not provided, the OS-HPXML default (see HPXML Freezers) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('freezer_usage_multiplier', false) arg.setDisplayName('Freezer: Usage Multiplier') - arg.setDescription('Multiplier on the freezer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the freezer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Freezers) is used.") args << arg cooking_range_oven_fuel_choices = OpenStudio::StringVector.new @@ -2663,7 +2696,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('cooking_range_oven_location', appliance_location_choices, false) arg.setDisplayName('Cooking Range/Oven: Location') - arg.setDescription('The space type for the cooking range/oven location. If not provided, the OS-HPXML default is used.') + arg.setDescription("The space type for the cooking range/oven location. If not provided, the OS-HPXML default (see HPXML Cooking Range/Oven) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('cooking_range_oven_fuel_type', cooking_range_oven_fuel_choices, true) @@ -2674,17 +2707,17 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeBoolArgument('cooking_range_oven_is_induction', false) arg.setDisplayName('Cooking Range/Oven: Is Induction') - arg.setDescription('Whether the cooking range is induction. If not provided, the OS-HPXML default is used.') + arg.setDescription("Whether the cooking range is induction. If not provided, the OS-HPXML default (see HPXML Cooking Range/Oven) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('cooking_range_oven_is_convection', false) arg.setDisplayName('Cooking Range/Oven: Is Convection') - arg.setDescription('Whether the oven is convection. If not provided, the OS-HPXML default is used.') + arg.setDescription("Whether the oven is convection. If not provided, the OS-HPXML default (see HPXML Cooking Range/Oven) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooking_range_oven_usage_multiplier', false) arg.setDisplayName('Cooking Range/Oven: Usage Multiplier') - arg.setDescription('Multiplier on the cooking range/oven energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the cooking range/oven energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Cooking Range/Oven) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('ceiling_fan_present', true) @@ -2696,19 +2729,19 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('ceiling_fan_efficiency', false) arg.setDisplayName('Ceiling Fan: Efficiency') arg.setUnits('CFM/W') - arg.setDescription('The efficiency rating of the ceiling fan(s) at medium speed. If not provided, the OS-HPXML default is used.') + arg.setDescription("The efficiency rating of the ceiling fan(s) at medium speed. If not provided, the OS-HPXML default (see HPXML Ceiling Fans) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('ceiling_fan_quantity', false) arg.setDisplayName('Ceiling Fan: Quantity') arg.setUnits('#') - arg.setDescription('Total number of ceiling fans. If not provided, the OS-HPXML default is used.') + arg.setDescription("Total number of ceiling fans. If not provided, the OS-HPXML default (see HPXML Ceiling Fans) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('ceiling_fan_cooling_setpoint_temp_offset', false) arg.setDisplayName('Ceiling Fan: Cooling Setpoint Temperature Offset') arg.setUnits('deg-F') - arg.setDescription('The cooling setpoint temperature offset during months when the ceiling fans are operating. Only applies if ceiling fan quantity is greater than zero. If not provided, the OS-HPXML default is used.') + arg.setDescription("The cooling setpoint temperature offset during months when the ceiling fans are operating. Only applies if ceiling fan quantity is greater than zero. If not provided, the OS-HPXML default (see HPXML Ceiling Fans) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('misc_plug_loads_television_present', true) @@ -2719,36 +2752,36 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_plug_loads_television_annual_kwh', false) arg.setDisplayName('Misc Plug Loads: Television Annual kWh') - arg.setDescription('The annual energy consumption of the television plug loads. If not provided, the OS-HPXML default is used.') + arg.setDescription("The annual energy consumption of the television plug loads. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used.") arg.setUnits('kWh/yr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_plug_loads_television_usage_multiplier', false) arg.setDisplayName('Misc Plug Loads: Television Usage Multiplier') - arg.setDescription('Multiplier on the television energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the television energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_plug_loads_other_annual_kwh', false) arg.setDisplayName('Misc Plug Loads: Other Annual kWh') - arg.setDescription('The annual energy consumption of the other residual plug loads. If not provided, the OS-HPXML default is used.') + arg.setDescription("The annual energy consumption of the other residual plug loads. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used.") arg.setUnits('kWh/yr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_plug_loads_other_frac_sensible', false) arg.setDisplayName('Misc Plug Loads: Other Sensible Fraction') - arg.setDescription("Fraction of other residual plug loads' internal gains that are sensible. If not provided, the OS-HPXML default is used.") + arg.setDescription("Fraction of other residual plug loads' internal gains that are sensible. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used.") arg.setUnits('Frac') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_plug_loads_other_frac_latent', false) arg.setDisplayName('Misc Plug Loads: Other Latent Fraction') - arg.setDescription("Fraction of other residual plug loads' internal gains that are latent. If not provided, the OS-HPXML default is used.") + arg.setDescription("Fraction of other residual plug loads' internal gains that are latent. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used.") arg.setUnits('Frac') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_plug_loads_other_usage_multiplier', false) arg.setDisplayName('Misc Plug Loads: Other Usage Multiplier') - arg.setDescription('Multiplier on the other energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the other energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('misc_plug_loads_well_pump_present', true) @@ -2759,13 +2792,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_plug_loads_well_pump_annual_kwh', false) arg.setDisplayName('Misc Plug Loads: Well Pump Annual kWh') - arg.setDescription('The annual energy consumption of the well pump plug loads. If not provided, the OS-HPXML default is used.') + arg.setDescription("The annual energy consumption of the well pump plug loads. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used.") arg.setUnits('kWh/yr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_plug_loads_well_pump_usage_multiplier', false) arg.setDisplayName('Misc Plug Loads: Well Pump Usage Multiplier') - arg.setDescription('Multiplier on the well pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the well pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('misc_plug_loads_vehicle_present', true) @@ -2776,13 +2809,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_plug_loads_vehicle_annual_kwh', false) arg.setDisplayName('Misc Plug Loads: Vehicle Annual kWh') - arg.setDescription('The annual energy consumption of the electric vehicle plug loads. If not provided, the OS-HPXML default is used.') + arg.setDescription("The annual energy consumption of the electric vehicle plug loads. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used.") arg.setUnits('kWh/yr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_plug_loads_vehicle_usage_multiplier', false) arg.setDisplayName('Misc Plug Loads: Vehicle Usage Multiplier') - arg.setDescription('Multiplier on the electric vehicle energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the electric vehicle energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Plug Loads) is used.") args << arg misc_fuel_loads_fuel_choices = OpenStudio::StringVector.new @@ -2806,13 +2839,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_fuel_loads_grill_annual_therm', false) arg.setDisplayName('Misc Fuel Loads: Grill Annual therm') - arg.setDescription('The annual energy consumption of the fuel loads grill. If not provided, the OS-HPXML default is used.') + arg.setDescription("The annual energy consumption of the fuel loads grill. If not provided, the OS-HPXML default (see HPXML Fuel Loads) is used.") arg.setUnits('therm/yr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_fuel_loads_grill_usage_multiplier', false) arg.setDisplayName('Misc Fuel Loads: Grill Usage Multiplier') - arg.setDescription('Multiplier on the fuel loads grill energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the fuel loads grill energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Fuel Loads) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('misc_fuel_loads_lighting_present', true) @@ -2829,13 +2862,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_fuel_loads_lighting_annual_therm', false) arg.setDisplayName('Misc Fuel Loads: Lighting Annual therm') - arg.setDescription('The annual energy consumption of the fuel loads lighting. If not provided, the OS-HPXML default is used.') + arg.setDescription("The annual energy consumption of the fuel loads lighting. If not provided, the OS-HPXML default (see HPXML Fuel Loads)is used.") arg.setUnits('therm/yr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_fuel_loads_lighting_usage_multiplier', false) arg.setDisplayName('Misc Fuel Loads: Lighting Usage Multiplier') - arg.setDescription('Multiplier on the fuel loads lighting energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the fuel loads lighting energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Fuel Loads) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeBoolArgument('misc_fuel_loads_fireplace_present', true) @@ -2852,25 +2885,25 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_fuel_loads_fireplace_annual_therm', false) arg.setDisplayName('Misc Fuel Loads: Fireplace Annual therm') - arg.setDescription('The annual energy consumption of the fuel loads fireplace. If not provided, the OS-HPXML default is used.') + arg.setDescription("The annual energy consumption of the fuel loads fireplace. If not provided, the OS-HPXML default (see HPXML Fuel Loads) is used.") arg.setUnits('therm/yr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_fuel_loads_fireplace_frac_sensible', false) arg.setDisplayName('Misc Fuel Loads: Fireplace Sensible Fraction') - arg.setDescription("Fraction of fireplace residual fuel loads' internal gains that are sensible. If not provided, the OS-HPXML default is used.") + arg.setDescription("Fraction of fireplace residual fuel loads' internal gains that are sensible. If not provided, the OS-HPXML default (see HPXML Fuel Loads) is used.") arg.setUnits('Frac') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_fuel_loads_fireplace_frac_latent', false) arg.setDisplayName('Misc Fuel Loads: Fireplace Latent Fraction') - arg.setDescription("Fraction of fireplace residual fuel loads' internal gains that are latent. If not provided, the OS-HPXML default is used.") + arg.setDescription("Fraction of fireplace residual fuel loads' internal gains that are latent. If not provided, the OS-HPXML default (see HPXML Fuel Loads) is used.") arg.setUnits('Frac') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('misc_fuel_loads_fireplace_usage_multiplier', false) arg.setDisplayName('Misc Fuel Loads: Fireplace Usage Multiplier') - arg.setDescription('Multiplier on the fuel loads fireplace energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the fuel loads fireplace energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see HPXML Fuel Loads) is used.") args << arg heater_type_choices = OpenStudio::StringVector.new @@ -2887,13 +2920,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('pool_pump_annual_kwh', false) arg.setDisplayName('Pool: Pump Annual kWh') - arg.setDescription('The annual energy consumption of the pool pump. If not provided, the OS-HPXML default is used.') + arg.setDescription("The annual energy consumption of the pool pump. If not provided, the OS-HPXML default (see Pool Pump) is used.") arg.setUnits('kWh/yr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('pool_pump_usage_multiplier', false) arg.setDisplayName('Pool: Pump Usage Multiplier') - arg.setDescription('Multiplier on the pool pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the pool pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see Pool Pump) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('pool_heater_type', heater_type_choices, true) @@ -2904,59 +2937,59 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('pool_heater_annual_kwh', false) arg.setDisplayName('Pool: Heater Annual kWh') - arg.setDescription("The annual energy consumption of the #{HPXML::HeaterTypeElectricResistance} pool heater. If not provided, the OS-HPXML default is used.") + arg.setDescription("The annual energy consumption of the #{HPXML::HeaterTypeElectricResistance} pool heater. If not provided, the OS-HPXML default (see Pool Heater) is used.") arg.setUnits('kWh/yr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('pool_heater_annual_therm', false) arg.setDisplayName('Pool: Heater Annual therm') - arg.setDescription("The annual energy consumption of the #{HPXML::HeaterTypeGas} pool heater. If not provided, the OS-HPXML default is used.") + arg.setDescription("The annual energy consumption of the #{HPXML::HeaterTypeGas} pool heater. If not provided, the OS-HPXML default (see Pool Heater) is used.") arg.setUnits('therm/yr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('pool_heater_usage_multiplier', false) arg.setDisplayName('Pool: Heater Usage Multiplier') - arg.setDescription('Multiplier on the pool heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg.setDescription("Multiplier on the pool heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see Pool Heater) is used.") args << arg - arg = OpenStudio::Measure::OSArgument::makeBoolArgument('hot_tub_present', true) - arg.setDisplayName('Hot Tub: Present') - arg.setDescription('Whether there is a hot tub.') + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('permanent_spa_present', true) + arg.setDisplayName('Permanent Spa: Present') + arg.setDescription('Whether there is a permanent spa.') arg.setDefaultValue(false) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('hot_tub_pump_annual_kwh', false) - arg.setDisplayName('Hot Tub: Pump Annual kWh') - arg.setDescription('The annual energy consumption of the hot tub pump. If not provided, the OS-HPXML default is used.') + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('permanent_spa_pump_annual_kwh', false) + arg.setDisplayName('Permanent Spa: Pump Annual kWh') + arg.setDescription("The annual energy consumption of the permanent spa pump. If not provided, the OS-HPXML default (see Permanent Spa Pump) is used.") arg.setUnits('kWh/yr') args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('hot_tub_pump_usage_multiplier', false) - arg.setDisplayName('Hot Tub: Pump Usage Multiplier') - arg.setDescription('Multiplier on the hot tub pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('permanent_spa_pump_usage_multiplier', false) + arg.setDisplayName('Permanent Spa: Pump Usage Multiplier') + arg.setDescription("Multiplier on the permanent spa pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see Permanent Spa Pump) is used.") args << arg - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('hot_tub_heater_type', heater_type_choices, true) - arg.setDisplayName('Hot Tub: Heater Type') - arg.setDescription("The type of hot tub heater. Use '#{HPXML::TypeNone}' if there is no hot tub heater.") + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('permanent_spa_heater_type', heater_type_choices, true) + arg.setDisplayName('Permanent Spa: Heater Type') + arg.setDescription("The type of permanent spa heater. Use '#{HPXML::TypeNone}' if there is no permanent spa heater.") arg.setDefaultValue(HPXML::TypeNone) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('hot_tub_heater_annual_kwh', false) - arg.setDisplayName('Hot Tub: Heater Annual kWh') - arg.setDescription("The annual energy consumption of the #{HPXML::HeaterTypeElectricResistance} hot tub heater. If not provided, the OS-HPXML default is used.") + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('permanent_spa_heater_annual_kwh', false) + arg.setDisplayName('Permanent Spa: Heater Annual kWh') + arg.setDescription("The annual energy consumption of the #{HPXML::HeaterTypeElectricResistance} permanent spa heater. If not provided, the OS-HPXML default (see Permanent Spa Heater) is used.") arg.setUnits('kWh/yr') args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('hot_tub_heater_annual_therm', false) - arg.setDisplayName('Hot Tub: Heater Annual therm') - arg.setDescription("The annual energy consumption of the #{HPXML::HeaterTypeGas} hot tub heater. If not provided, the OS-HPXML default is used.") + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('permanent_spa_heater_annual_therm', false) + arg.setDisplayName('Permanent Spa: Heater Annual therm') + arg.setDescription("The annual energy consumption of the #{HPXML::HeaterTypeGas} permanent spa heater. If not provided, the OS-HPXML default (see Permanent Spa Heater) is used.") arg.setUnits('therm/yr') args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('hot_tub_heater_usage_multiplier', false) - arg.setDisplayName('Hot Tub: Heater Usage Multiplier') - arg.setDescription('Multiplier on the hot tub heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.') + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('permanent_spa_heater_usage_multiplier', false) + arg.setDisplayName('Permanent Spa: Heater Usage Multiplier') + arg.setDescription("Multiplier on the permanent spa heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see Permanent Spa Heater) is used.") args << arg arg = OpenStudio::Measure::OSArgument.makeStringArgument('emissions_scenario_names', false) @@ -3111,7 +3144,6 @@ def run(model, runner, user_arguments) args[:apply_validation] = args[:apply_validation].is_initialized ? args[:apply_validation].get : false args[:apply_defaults] = args[:apply_defaults].is_initialized ? args[:apply_defaults].get : false - args[:apply_validation] = true if args[:apply_defaults] args[:geometry_unit_left_wall_is_adiabatic] = (args[:geometry_unit_left_wall_is_adiabatic].is_initialized && args[:geometry_unit_left_wall_is_adiabatic].get) args[:geometry_unit_right_wall_is_adiabatic] = (args[:geometry_unit_right_wall_is_adiabatic].is_initialized && args[:geometry_unit_right_wall_is_adiabatic].get) args[:geometry_unit_front_wall_is_adiabatic] = (args[:geometry_unit_front_wall_is_adiabatic].is_initialized && args[:geometry_unit_front_wall_is_adiabatic].get) @@ -3149,16 +3181,20 @@ def run(model, runner, user_arguments) hpxml_path = File.expand_path(hpxml_path) end - hpxml_doc = HPXMLFile.create(runner, model, args, epw_path, hpxml_path) + # Existing HPXML File + if args[:existing_hpxml_path].is_initialized + existing_hpxml_path = args[:existing_hpxml_path].get + unless (Pathname.new existing_hpxml_path).absolute? + existing_hpxml_path = File.expand_path(existing_hpxml_path) + end + end + + hpxml_doc = HPXMLFile.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) if not hpxml_doc runner.registerError('Unsuccessful creation of HPXML file.') return false end - # Write HPXML file again if defaults applied - if args[:apply_defaults] - XMLHelper.write_file(hpxml_doc, hpxml_path) - end runner.registerInfo("Wrote file: #{hpxml_path}") # Uncomment for debugging purposes @@ -3177,6 +3213,10 @@ def validate_arguments(args) def argument_warnings(args) warnings = [] + max_uninsulated_floor_rvalue = 6.0 + max_uninsulated_ceiling_rvalue = 3.0 + max_uninsulated_roof_rvalue = 3.0 + warning = ([HPXML::WaterHeaterTypeHeatPump].include?(args[:water_heater_type]) && (args[:water_heater_fuel_type] != HPXML::FuelTypeElectricity)) warnings << 'Cannot model a heat pump water heater with non-electric fuel type.' if warning @@ -3186,19 +3226,16 @@ def argument_warnings(args) warning = (args[:geometry_foundation_type] == HPXML::FoundationTypeSlab) && (args[:geometry_foundation_height_above_grade] > 0) warnings << 'Specified a slab foundation type with a non-zero height above grade.' if warning - warning = (args[:heating_system_2_type] != 'none') && (args[:heating_system_2_fraction_heat_load_served] >= 0.5) && (args[:heating_system_2_fraction_heat_load_served] < 1.0) - warnings << 'The fraction of heat load served by the second heating system is greater than or equal to 50%.' if warning - - warning = [HPXML::FoundationTypeCrawlspaceVented, HPXML::FoundationTypeCrawlspaceUnvented, HPXML::FoundationTypeBasementUnconditioned].include?(args[:geometry_foundation_type]) && ((args[:foundation_wall_insulation_r] > 0) || args[:foundation_wall_assembly_r].is_initialized) && (args[:floor_over_foundation_assembly_r] > 2.1) + warning = [HPXML::FoundationTypeCrawlspaceVented, HPXML::FoundationTypeCrawlspaceUnvented, HPXML::FoundationTypeBasementUnconditioned].include?(args[:geometry_foundation_type]) && ((args[:foundation_wall_insulation_r] > 0) || args[:foundation_wall_assembly_r].is_initialized) && (args[:floor_over_foundation_assembly_r] > max_uninsulated_floor_rvalue) warnings << 'Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.' if warning - warning = [HPXML::AtticTypeVented, HPXML::AtticTypeUnvented].include?(args[:geometry_attic_type]) && (args[:ceiling_assembly_r] > 2.1) && (args[:roof_assembly_r] > 2.3) + warning = [HPXML::AtticTypeVented, HPXML::AtticTypeUnvented].include?(args[:geometry_attic_type]) && (args[:ceiling_assembly_r] > max_uninsulated_ceiling_rvalue) && (args[:roof_assembly_r] > max_uninsulated_roof_rvalue) warnings << 'Home with unconditioned attic type has both ceiling insulation and roof insulation.' if warning - warning = (args[:geometry_foundation_type] == HPXML::FoundationTypeBasementConditioned) && (args[:floor_over_foundation_assembly_r] > 2.1) + warning = (args[:geometry_foundation_type] == HPXML::FoundationTypeBasementConditioned) && (args[:floor_over_foundation_assembly_r] > max_uninsulated_floor_rvalue) warnings << 'Home with conditioned basement has floor insulation.' if warning - warning = (args[:geometry_attic_type] == HPXML::AtticTypeConditioned) && (args[:ceiling_assembly_r] > 2.1) + warning = (args[:geometry_attic_type] == HPXML::AtticTypeConditioned) && (args[:ceiling_assembly_r] > max_uninsulated_ceiling_rvalue) warnings << 'Home with conditioned attic has ceiling insulation.' if warning return warnings @@ -3219,12 +3256,6 @@ def argument_errors(args) error = (args[:geometry_unit_type] == HPXML::ResidentialTypeApartment) && ([HPXML::FoundationTypeBasementConditioned, HPXML::FoundationTypeCrawlspaceConditioned].include? args[:geometry_foundation_type]) errors << 'Conditioned basement/crawlspace foundation type for apartment units is not currently supported.' if error - error = (args[:ducts_supply_location].is_initialized != args[:ducts_supply_surface_area].is_initialized) || (args[:ducts_return_location].is_initialized != args[:ducts_return_surface_area].is_initialized) - errors << 'Duct location and surface area not both defaulted or not both specified.' if error - - error = (args[:heating_system_2_type] != 'none') && (args[:heating_system_2_fraction_heat_load_served] == 1.0) - errors << 'The fraction of heat load served by the second heating system is 100%.' if error - error = (args[:heating_system_type] == 'none') && (args[:heat_pump_type] == 'none') && (args[:heating_system_2_type] != 'none') errors << 'A second heating system was specified without a primary heating system.' if error @@ -3355,7 +3386,7 @@ def argument_errors(args) end class HPXMLFile - def self.create(runner, model, args, epw_path, hpxml_path) + def self.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) epw_file = OpenStudio::EpwFile.new(epw_path) if (args[:hvac_control_heating_season_period].to_s == HPXML::BuildingAmerica) || (args[:hvac_control_cooling_season_period].to_s == HPXML::BuildingAmerica) || (args[:apply_defaults]) weather = WeatherProcess.new(epw_path: epw_path, runner: nil) @@ -3370,75 +3401,88 @@ def self.create(runner, model, args, epw_path, hpxml_path) sorted_surfaces = model.getSurfaces.sort_by { |s| s.additionalProperties.getFeatureAsInteger('Index').get } sorted_subsurfaces = model.getSubSurfaces.sort_by { |ss| ss.additionalProperties.getFeatureAsInteger('Index').get } - hpxml = HPXML.new - - set_header(hpxml, args) - set_site(hpxml, args) - set_neighbor_buildings(hpxml, args) - set_building_occupancy(hpxml, args) - set_building_construction(hpxml, args) - set_climate_and_risk_zones(hpxml, args) - set_air_infiltration_measurements(hpxml, args) - set_roofs(hpxml, args, sorted_surfaces) - set_rim_joists(hpxml, model, args, sorted_surfaces) - set_walls(hpxml, model, args, sorted_surfaces) - set_foundation_walls(hpxml, model, args, sorted_surfaces) - set_floors(hpxml, args, sorted_surfaces) - set_slabs(hpxml, model, args, sorted_surfaces) - set_windows(hpxml, model, args, sorted_subsurfaces) - set_skylights(hpxml, args, sorted_subsurfaces) - set_doors(hpxml, model, args, sorted_subsurfaces) - set_attics(hpxml, args) - set_foundations(hpxml, args) - set_heating_systems(hpxml, args) - set_cooling_systems(hpxml, args) - set_heat_pumps(hpxml, args) - set_secondary_heating_systems(hpxml, args) - set_hvac_distribution(hpxml, args) - set_hvac_control(hpxml, args, epw_file, weather) - set_ventilation_fans(hpxml, args) - set_water_heating_systems(hpxml, args) - set_hot_water_distribution(hpxml, args) - set_water_fixtures(hpxml, args) - set_solar_thermal(hpxml, args, epw_file) - set_pv_systems(hpxml, args, epw_file) - set_battery(hpxml, args) - set_lighting(hpxml, args) - set_dehumidifier(hpxml, args) - set_clothes_washer(hpxml, args) - set_clothes_dryer(hpxml, args) - set_dishwasher(hpxml, args) - set_refrigerator(hpxml, args) - set_extra_refrigerator(hpxml, args) - set_freezer(hpxml, args) - set_cooking_range_oven(hpxml, args) - set_ceiling_fans(hpxml, args) - set_misc_plug_loads_television(hpxml, args) - set_misc_plug_loads_other(hpxml, args) - set_misc_plug_loads_vehicle(hpxml, args) - set_misc_plug_loads_well_pump(hpxml, args) - set_misc_fuel_loads_grill(hpxml, args) - set_misc_fuel_loads_lighting(hpxml, args) - set_misc_fuel_loads_fireplace(hpxml, args) - set_pool(hpxml, args) - set_hot_tub(hpxml, args) - collapse_surfaces(hpxml, args) - renumber_hpxml_ids(hpxml) - - hpxml_doc = hpxml.to_oga() + hpxml = HPXML.new(hpxml_path: existing_hpxml_path, building_id: 'ALL') + + if not set_header(runner, hpxml, args) + return false + end + + hpxml_bldg = add_building(hpxml, args) + set_site(hpxml_bldg, args) + set_neighbor_buildings(hpxml_bldg, args) + set_building_occupancy(hpxml_bldg, args) + set_building_construction(hpxml_bldg, args) + set_building_header(hpxml_bldg, args) + set_climate_and_risk_zones(hpxml_bldg, args) + set_air_infiltration_measurements(hpxml_bldg, args) + set_roofs(hpxml_bldg, args, sorted_surfaces) + set_rim_joists(hpxml_bldg, model, args, sorted_surfaces) + set_walls(hpxml_bldg, model, args, sorted_surfaces) + set_foundation_walls(hpxml_bldg, model, args, sorted_surfaces) + set_floors(hpxml_bldg, args, sorted_surfaces) + set_slabs(hpxml_bldg, model, args, sorted_surfaces) + set_windows(hpxml_bldg, model, args, sorted_subsurfaces) + set_skylights(hpxml_bldg, args, sorted_subsurfaces) + set_doors(hpxml_bldg, model, args, sorted_subsurfaces) + set_attics(hpxml_bldg, args) + set_foundations(hpxml_bldg, args) + set_heating_systems(hpxml_bldg, args) + set_cooling_systems(hpxml_bldg, args) + set_heat_pumps(hpxml_bldg, args) + set_secondary_heating_systems(hpxml_bldg, args) + set_hvac_distribution(hpxml_bldg, args) + set_hvac_control(hpxml, hpxml_bldg, args, epw_file, weather) + set_ventilation_fans(hpxml_bldg, args) + set_water_heating_systems(hpxml_bldg, args) + set_hot_water_distribution(hpxml_bldg, args) + set_water_fixtures(hpxml_bldg, args) + set_solar_thermal(hpxml_bldg, args, epw_file) + set_pv_systems(hpxml_bldg, args, epw_file) + set_battery(hpxml_bldg, args) + set_lighting(hpxml_bldg, args) + set_dehumidifier(hpxml_bldg, args) + set_clothes_washer(hpxml_bldg, args) + set_clothes_dryer(hpxml_bldg, args) + set_dishwasher(hpxml_bldg, args) + set_refrigerator(hpxml_bldg, args) + set_extra_refrigerator(hpxml_bldg, args) + set_freezer(hpxml_bldg, args) + set_cooking_range_oven(hpxml_bldg, args) + set_ceiling_fans(hpxml_bldg, args) + set_misc_plug_loads_television(hpxml_bldg, args) + set_misc_plug_loads_other(hpxml_bldg, args) + set_misc_plug_loads_vehicle(hpxml_bldg, args) + set_misc_plug_loads_well_pump(hpxml_bldg, args) + set_misc_fuel_loads_grill(hpxml_bldg, args) + set_misc_fuel_loads_lighting(hpxml_bldg, args) + set_misc_fuel_loads_fireplace(hpxml_bldg, args) + set_pool(hpxml_bldg, args) + set_permanent_spa(hpxml_bldg, args) + collapse_surfaces(hpxml_bldg, args) + renumber_hpxml_ids(hpxml_bldg) + + hpxml_doc = hpxml.to_doc() + hpxml.set_unique_hpxml_ids(hpxml_doc, true) if hpxml.buildings.size > 1 XMLHelper.write_file(hpxml_doc, hpxml_path) - if args[:apply_validation] - # Check for invalid HPXML file + if args[:apply_defaults] + # Always check for invalid HPXML file before applying defaults if not validate_hpxml(runner, hpxml, hpxml_doc, hpxml_path) return false end - end - if args[:apply_defaults] eri_version = Constants.ERIVersions[-1] - HPXMLDefaults.apply(runner, hpxml, eri_version, weather, epw_file: epw_file) - hpxml_doc = hpxml.to_oga() + HPXMLDefaults.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: epw_file) + hpxml_doc = hpxml.to_doc() + hpxml.set_unique_hpxml_ids(hpxml_doc, true) if hpxml.buildings.size > 1 + XMLHelper.write_file(hpxml_doc, hpxml_path) + end + + if args[:apply_validation] + # Optionally check for invalid HPXML file (with or without defaults applied) + if not validate_hpxml(runner, hpxml, hpxml_doc, hpxml_path) + return false + end end return hpxml_doc @@ -3446,7 +3490,10 @@ def self.create(runner, model, args, epw_path, hpxml_path) def self.validate_hpxml(runner, hpxml, hpxml_doc, hpxml_path) # Check for errors in the HPXML object - errors = hpxml.check_for_errors() + errors = [] + hpxml.buildings.each do |hpxml_bldg| + errors += hpxml_bldg.check_for_errors() + end if errors.size > 0 fail "ERROR: Invalid HPXML object produced.\n#{errors}" end @@ -3499,7 +3546,7 @@ def self.create_geometry_envelope(runner, model, args) args[:geometry_foundation_height] = 0.0 args[:geometry_foundation_height_above_grade] = 0.0 args[:geometry_rim_joist_height] = 0.0 - elsif args[:geometry_foundation_type] == HPXML::FoundationTypeAmbient + elsif (args[:geometry_foundation_type] == HPXML::FoundationTypeAmbient) || args[:geometry_foundation_type].start_with?(HPXML::FoundationTypeBellyAndWing) args[:geometry_rim_joist_height] = 0.0 end @@ -3514,6 +3561,8 @@ def self.create_geometry_envelope(runner, model, args) success = Geometry.create_single_family_attached(model: model, **args) elsif args[:geometry_unit_type] == HPXML::ResidentialTypeApartment success = Geometry.create_apartment(model: model, **args) + elsif args[:geometry_unit_type] == HPXML::ResidentialTypeManufactured + success = Geometry.create_single_family_detached(runner: runner, model: model, **args) end return false if not success @@ -3526,23 +3575,40 @@ def self.create_geometry_envelope(runner, model, args) return true end - def self.set_header(hpxml, args) + def self.unavailable_period_exists(hpxml, column_name, begin_month, begin_day, begin_hour, end_month, end_day, end_hour, natvent_availability = nil) + natvent_availability = HPXML::ScheduleUnavailable if natvent_availability.nil? + + hpxml.header.unavailable_periods.each do |unavailable_period| + begin_hour = 0 if begin_hour.nil? + end_hour = 24 if end_hour.nil? + + next unless (unavailable_period.column_name == column_name) && + (unavailable_period.begin_month == begin_month) && + (unavailable_period.begin_day == begin_day) && + (unavailable_period.begin_hour == begin_hour) && + (unavailable_period.end_month == end_month) && + (unavailable_period.end_day == end_day) && + (unavailable_period.end_hour == end_hour) && + (unavailable_period.natvent_availability == natvent_availability) + + return true + end + return false + end + + def self.set_header(runner, hpxml, args) + errors = [] + hpxml.header.xml_type = 'HPXML' hpxml.header.xml_generated_by = 'BuildResidentialHPXML' hpxml.header.transaction = 'create' - hpxml.header.building_id = 'MyBuilding' - hpxml.header.event_type = 'proposed workscope' - - if args[:window_natvent_availability].is_initialized - hpxml.header.natvent_days_per_week = args[:window_natvent_availability].get - end - if args[:schedules_filepaths].is_initialized - hpxml.header.schedules_filepaths = args[:schedules_filepaths].get.split(',').map(&:strip) - end if args[:schedules_vacancy_period].is_initialized begin_month, begin_day, begin_hour, end_month, end_day, end_hour = Schedule.parse_date_time_range(args[:schedules_vacancy_period].get) - hpxml.header.unavailable_periods.add(column_name: 'Vacancy', begin_month: begin_month, begin_day: begin_day, begin_hour: begin_hour, end_month: end_month, end_day: end_day, end_hour: end_hour, natvent_availability: HPXML::ScheduleUnavailable) + + if not unavailable_period_exists(hpxml, 'Vacancy', begin_month, begin_day, begin_hour, end_month, end_day, end_hour) + hpxml.header.unavailable_periods.add(column_name: 'Vacancy', begin_month: begin_month, begin_day: begin_day, begin_hour: begin_hour, end_month: end_month, end_day: end_day, end_hour: end_hour, natvent_availability: HPXML::ScheduleUnavailable) + end end if args[:schedules_power_outage_period].is_initialized begin_month, begin_day, begin_hour, end_month, end_day, end_hour = Schedule.parse_date_time_range(args[:schedules_power_outage_period].get) @@ -3551,22 +3617,39 @@ def self.set_header(hpxml, args) natvent_availability = args[:schedules_power_outage_window_natvent_availability].get end - hpxml.header.unavailable_periods.add(column_name: 'Power Outage', begin_month: begin_month, begin_day: begin_day, begin_hour: begin_hour, end_month: end_month, end_day: end_day, end_hour: end_hour, natvent_availability: natvent_availability) + if not unavailable_period_exists(hpxml, 'Power Outage', begin_month, begin_day, begin_hour, end_month, end_day, end_hour, natvent_availability) + hpxml.header.unavailable_periods.add(column_name: 'Power Outage', begin_month: begin_month, begin_day: begin_day, begin_hour: begin_hour, end_month: end_month, end_day: end_day, end_hour: end_hour, natvent_availability: natvent_availability) + end end if args[:software_info_program_used].is_initialized + if !hpxml.header.software_program_used.nil? && (hpxml.header.software_program_used != args[:software_info_program_used].get) + errors << "'Software Info: Program Used' cannot vary across dwelling units." + end hpxml.header.software_program_used = args[:software_info_program_used].get end if args[:software_info_program_version].is_initialized + if !hpxml.header.software_program_version.nil? && (hpxml.header.software_program_version != args[:software_info_program_version].get) + errors << "'Software Info: Program Version' cannot vary across dwelling units." + end hpxml.header.software_program_version = args[:software_info_program_version].get end if args[:simulation_control_timestep].is_initialized + if !hpxml.header.timestep.nil? && (hpxml.header.timestep != args[:simulation_control_timestep].get) + errors << "'Simulation Control: Timestep' cannot vary across dwelling units." + end hpxml.header.timestep = args[:simulation_control_timestep].get end if args[:simulation_control_run_period].is_initialized begin_month, begin_day, _begin_hour, end_month, end_day, _end_hour = Schedule.parse_date_time_range(args[:simulation_control_run_period].get) + if (!hpxml.header.sim_begin_month.nil? && (hpxml.header.sim_begin_month != begin_month)) || + (!hpxml.header.sim_begin_day.nil? && (hpxml.header.sim_begin_day != begin_day)) || + (!hpxml.header.sim_end_month.nil? && (hpxml.header.sim_end_month != end_month)) || + (!hpxml.header.sim_end_day.nil? && (hpxml.header.sim_end_day != end_day)) + errors << "'Simulation Control: Run Period' cannot vary across dwelling units." + end hpxml.header.sim_begin_month = begin_month hpxml.header.sim_begin_day = begin_day hpxml.header.sim_end_month = end_month @@ -3574,44 +3657,19 @@ def self.set_header(hpxml, args) end if args[:simulation_control_run_period_calendar_year].is_initialized + if !hpxml.header.sim_calendar_year.nil? && (hpxml.header.sim_calendar_year != Integer(args[:simulation_control_run_period_calendar_year].get)) + errors << "'Simulation Control: Run Period Calendar Year' cannot vary across dwelling units." + end hpxml.header.sim_calendar_year = args[:simulation_control_run_period_calendar_year].get end - if args[:simulation_control_daylight_saving_enabled].is_initialized - hpxml.header.dst_enabled = args[:simulation_control_daylight_saving_enabled].get - end - if args[:simulation_control_daylight_saving_period].is_initialized - begin_month, begin_day, _begin_hour, end_month, end_day, _end_hour = Schedule.parse_date_time_range(args[:simulation_control_daylight_saving_period].get) - hpxml.header.dst_begin_month = begin_month - hpxml.header.dst_begin_day = begin_day - hpxml.header.dst_end_month = end_month - hpxml.header.dst_end_day = end_day - end - if args[:simulation_control_temperature_capacitance_multiplier].is_initialized + if !hpxml.header.temperature_capacitance_multiplier.nil? && (hpxml.header.temperature_capacitance_multiplier != Float(args[:simulation_control_temperature_capacitance_multiplier].get)) + errors << "'Simulation Control: Temperature Capacitance Multiplier' cannot vary across dwelling units." + end hpxml.header.temperature_capacitance_multiplier = args[:simulation_control_temperature_capacitance_multiplier].get end - if args[:window_shading_summer_season].is_initialized - begin_month, begin_day, _begin_hour, end_month, end_day, _end_hour = Schedule.parse_date_time_range(args[:window_shading_summer_season].get) - hpxml.header.shading_summer_begin_month = begin_month - hpxml.header.shading_summer_begin_day = begin_day - hpxml.header.shading_summer_end_month = end_month - hpxml.header.shading_summer_end_day = end_day - end - - if args[:site_zip_code].is_initialized - hpxml.header.zip_code = args[:site_zip_code].get - end - - if args[:site_state_code].is_initialized - hpxml.header.state_code = args[:site_state_code].get - end - - if args[:site_time_zone_utc_offset].is_initialized - hpxml.header.time_zone_utc_offset = args[:site_time_zone_utc_offset].get - end - if args[:emissions_scenario_names].is_initialized emissions_scenario_names = args[:emissions_scenario_names].get.split(',').map(&:strip) emissions_types = args[:emissions_types].get.split(',').map(&:strip) @@ -3659,6 +3717,7 @@ def self.set_header(hpxml, args) fuel_values[HPXML::FuelTypeWoodPellets]) emissions_scenarios.each do |emissions_scenario| name, emissions_type, elec_units, elec_value_or_schedule_filepath, elec_num_headers, elec_column_num, fuel_units, natural_gas_value, propane_value, fuel_oil_value, coal_value, wood_value, wood_pellets_value = emissions_scenario + elec_value = Float(elec_value_or_schedule_filepath) rescue nil if elec_value.nil? elec_schedule_filepath = elec_value_or_schedule_filepath @@ -3672,6 +3731,38 @@ def self.set_header(hpxml, args) wood_value = Float(wood_value) rescue nil wood_pellets_value = Float(wood_pellets_value) rescue nil + emissions_scenario_exists = false + hpxml.header.emissions_scenarios.each do |es| + if (es.name != name) || (es.emissions_type != emissions_type) + next + end + + if (es.emissions_type != emissions_type) || + (!elec_units.nil? && es.elec_units != elec_units) || + (!elec_value.nil? && es.elec_value != elec_value) || + (!elec_schedule_filepath.nil? && es.elec_schedule_filepath != elec_schedule_filepath) || + (!elec_num_headers.nil? && es.elec_schedule_number_of_header_rows != elec_num_headers) || + (!elec_column_num.nil? && es.elec_schedule_column_number != elec_column_num) || + (!es.natural_gas_units.nil? && !fuel_units.nil? && es.natural_gas_units != fuel_units) || + (!natural_gas_value.nil? && es.natural_gas_value != natural_gas_value) || + (!es.propane_units.nil? && !fuel_units.nil? && es.propane_units != fuel_units) || + (!propane_value.nil? && es.propane_value != propane_value) || + (!es.fuel_oil_units.nil? && !fuel_units.nil? && es.fuel_oil_units != fuel_units) || + (!fuel_oil_value.nil? && es.fuel_oil_value != fuel_oil_value) || + (!es.coal_units.nil? && !fuel_units.nil? && es.coal_units != fuel_units) || + (!coal_value.nil? && es.coal_value != coal_value) || + (!es.wood_units.nil? && !fuel_units.nil? && es.wood_units != fuel_units) || + (!wood_value.nil? && es.wood_value != wood_value) || + (!es.wood_pellets_units.nil? && !fuel_units.nil? && es.wood_pellets_units != fuel_units) || + (!wood_pellets_value.nil? && es.wood_pellets_value != wood_pellets_value) + errors << "HPXML header already includes an emissions scenario named '#{name}' with type '#{emissions_type}'." + else + emissions_scenario_exists = true + end + end + + next if emissions_scenario_exists + hpxml.header.emissions_scenarios.add(name: name, emissions_type: emissions_type, elec_units: elec_units, @@ -3785,6 +3876,7 @@ def self.set_header(hpxml, args) bills_scenarios.each do |bills_scenario| name, elec_tariff_filepath, elec_fixed_charge, natural_gas_fixed_charge, propane_fixed_charge, fuel_oil_fixed_charge, coal_fixed_charge, wood_fixed_charge, wood_pellets_fixed_charge, elec_marginal_rate, natural_gas_marginal_rate, propane_marginal_rate, fuel_oil_marginal_rate, coal_marginal_rate, wood_marginal_rate, wood_pellets_marginal_rate, pv_compensation_type, pv_net_metering_annual_excess_sellback_rate_type, pv_net_metering_annual_excess_sellback_rate, pv_feed_in_tariff_rate, pv_monthly_grid_connection_fee_unit, pv_monthly_grid_connection_fee = bills_scenario + elec_tariff_filepath = (elec_tariff_filepath.to_s.include?('.') ? elec_tariff_filepath : nil) elec_fixed_charge = Float(elec_fixed_charge) rescue nil natural_gas_fixed_charge = Float(natural_gas_fixed_charge) rescue nil @@ -3820,6 +3912,39 @@ def self.set_header(hpxml, args) pv_monthly_grid_connection_fee_dollars = Float(pv_monthly_grid_connection_fee) rescue nil end + utility_bill_scenario_exists = false + hpxml.header.utility_bill_scenarios.each do |ubs| + next if ubs.name != name + + if (!elec_tariff_filepath.nil? && ubs.elec_tariff_filepath != elec_tariff_filepath) || + (!elec_fixed_charge.nil? && ubs.elec_fixed_charge != elec_fixed_charge) || + (!natural_gas_fixed_charge.nil? && ubs.natural_gas_fixed_charge != natural_gas_fixed_charge) || + (!propane_fixed_charge.nil? && ubs.propane_fixed_charge != propane_fixed_charge) || + (!fuel_oil_fixed_charge.nil? && ubs.fuel_oil_fixed_charge != fuel_oil_fixed_charge) || + (!coal_fixed_charge.nil? && ubs.coal_fixed_charge != coal_fixed_charge) || + (!wood_fixed_charge.nil? && ubs.wood_fixed_charge != wood_fixed_charge) || + (!wood_pellets_fixed_charge.nil? && ubs.wood_pellets_fixed_charge != wood_pellets_fixed_charge) || + (!elec_marginal_rate.nil? && ubs.elec_marginal_rate != elec_marginal_rate) || + (!natural_gas_marginal_rate.nil? && ubs.natural_gas_marginal_rate != natural_gas_marginal_rate) || + (!propane_marginal_rate.nil? && ubs.propane_marginal_rate != propane_marginal_rate) || + (!fuel_oil_marginal_rate.nil? && ubs.fuel_oil_marginal_rate != fuel_oil_marginal_rate) || + (!coal_marginal_rate.nil? && ubs.coal_marginal_rate != coal_marginal_rate) || + (!wood_marginal_rate.nil? && ubs.wood_marginal_rate != wood_marginal_rate) || + (!wood_pellets_marginal_rate.nil? && ubs.wood_pellets_marginal_rate != wood_pellets_marginal_rate) || + (!pv_compensation_type.nil? && ubs.pv_compensation_type != pv_compensation_type) || + (!pv_net_metering_annual_excess_sellback_rate_type.nil? && ubs.pv_net_metering_annual_excess_sellback_rate_type != pv_net_metering_annual_excess_sellback_rate_type) || + (!pv_net_metering_annual_excess_sellback_rate.nil? && ubs.pv_net_metering_annual_excess_sellback_rate != pv_net_metering_annual_excess_sellback_rate) || + (!pv_feed_in_tariff_rate.nil? && ubs.pv_feed_in_tariff_rate != pv_feed_in_tariff_rate) || + (!pv_monthly_grid_connection_fee_dollars_per_kw.nil? && ubs.pv_monthly_grid_connection_fee_dollars_per_kw != pv_monthly_grid_connection_fee_dollars_per_kw) || + (!pv_monthly_grid_connection_fee_dollars.nil? && ubs.pv_monthly_grid_connection_fee_dollars != pv_monthly_grid_connection_fee_dollars) + errors << "HPXML header already includes a utility bill scenario named '#{name}'." + else + utility_bill_scenario_exists = true + end + end + + next if utility_bill_scenario_exists + hpxml.header.utility_bill_scenarios.add(name: name, elec_tariff_filepath: elec_tariff_filepath, elec_fixed_charge: elec_fixed_charge, @@ -3845,28 +3970,62 @@ def self.set_header(hpxml, args) end end - if args[:additional_properties].is_initialized - extension_properties = {} - additional_properties = args[:additional_properties].get.split('|').map(&:strip) - additional_properties.each do |additional_property| - key, value = additional_property.split('=').map(&:strip) - extension_properties[key] = value - end - hpxml.header.extension_properties = extension_properties + errors.each do |error| + runner.registerError(error) + end + return errors.empty? + end + + def self.add_building(hpxml, args) + if args[:site_zip_code].is_initialized + zip_code = args[:site_zip_code].get end + + if args[:site_state_code].is_initialized + state_code = args[:site_state_code].get + end + + if args[:site_time_zone_utc_offset].is_initialized + time_zone_utc_offset = args[:site_time_zone_utc_offset].get + end + + if args[:simulation_control_daylight_saving_enabled].is_initialized + dst_enabled = args[:simulation_control_daylight_saving_enabled].get + end + if args[:simulation_control_daylight_saving_period].is_initialized + begin_month, begin_day, _begin_hour, end_month, end_day, _end_hour = Schedule.parse_date_time_range(args[:simulation_control_daylight_saving_period].get) + dst_begin_month = begin_month + dst_begin_day = begin_day + dst_end_month = end_month + dst_end_day = end_day + end + + hpxml.buildings.add(building_id: 'MyBuilding', + site_id: 'SiteID', + event_type: 'proposed workscope', + zip_code: zip_code, + state_code: state_code, + time_zone_utc_offset: time_zone_utc_offset, + dst_enabled: dst_enabled, + dst_begin_month: dst_begin_month, + dst_begin_day: dst_begin_day, + dst_end_month: dst_end_month, + dst_end_day: dst_end_day) + + return hpxml.buildings[-1] end - def self.set_site(hpxml, args) + def self.set_site(hpxml_bldg, args) if args[:site_shielding_of_home].is_initialized - hpxml.site.shielding_of_home = args[:site_shielding_of_home].get + hpxml_bldg.site.shielding_of_home = args[:site_shielding_of_home].get end if args[:site_ground_conductivity].is_initialized - hpxml.site.ground_conductivity = args[:site_ground_conductivity].get + hpxml_bldg.site.ground_conductivity = args[:site_ground_conductivity].get end if args[:site_type].is_initialized - hpxml.site.site_type = args[:site_type].get + hpxml_bldg.site.site_type = args[:site_type].get end adb_walls = [args[:geometry_unit_left_wall_is_adiabatic], args[:geometry_unit_right_wall_is_adiabatic], args[:geometry_unit_front_wall_is_adiabatic], args[:geometry_unit_back_wall_is_adiabatic]] @@ -3874,36 +4033,36 @@ def self.set_site(hpxml, args) if [HPXML::ResidentialTypeSFA, HPXML::ResidentialTypeApartment].include? args[:geometry_unit_type] if n_walls_attached == 3 - hpxml.site.surroundings = HPXML::SurroundingsThreeSides + hpxml_bldg.site.surroundings = HPXML::SurroundingsThreeSides elsif n_walls_attached == 2 - hpxml.site.surroundings = HPXML::SurroundingsTwoSides + hpxml_bldg.site.surroundings = HPXML::SurroundingsTwoSides elsif n_walls_attached == 1 - hpxml.site.surroundings = HPXML::SurroundingsOneSide + hpxml_bldg.site.surroundings = HPXML::SurroundingsOneSide else - hpxml.site.surroundings = HPXML::SurroundingsStandAlone + hpxml_bldg.site.surroundings = HPXML::SurroundingsStandAlone end if args[:geometry_attic_type] == HPXML::AtticTypeBelowApartment if args[:geometry_foundation_type] == HPXML::FoundationTypeAboveApartment - hpxml.site.vertical_surroundings = HPXML::VerticalSurroundingsAboveAndBelow + hpxml_bldg.site.vertical_surroundings = HPXML::VerticalSurroundingsAboveAndBelow else - hpxml.site.vertical_surroundings = HPXML::VerticalSurroundingsAbove + hpxml_bldg.site.vertical_surroundings = HPXML::VerticalSurroundingsAbove end else if args[:geometry_foundation_type] == HPXML::FoundationTypeAboveApartment - hpxml.site.vertical_surroundings = HPXML::VerticalSurroundingsBelow + hpxml_bldg.site.vertical_surroundings = HPXML::VerticalSurroundingsBelow else - hpxml.site.vertical_surroundings = HPXML::VerticalSurroundingsNoAboveOrBelow + hpxml_bldg.site.vertical_surroundings = HPXML::VerticalSurroundingsNoAboveOrBelow end end - elsif [HPXML::ResidentialTypeSFD].include? args[:geometry_unit_type] - hpxml.site.surroundings = HPXML::SurroundingsStandAlone - hpxml.site.vertical_surroundings = HPXML::VerticalSurroundingsNoAboveOrBelow + elsif [HPXML::ResidentialTypeSFD, HPXML::ResidentialTypeManufactured].include? args[:geometry_unit_type] + hpxml_bldg.site.surroundings = HPXML::SurroundingsStandAlone + hpxml_bldg.site.vertical_surroundings = HPXML::VerticalSurroundingsNoAboveOrBelow end - hpxml.site.azimuth_of_front_of_home = args[:geometry_unit_orientation] + hpxml_bldg.site.azimuth_of_front_of_home = args[:geometry_unit_orientation] end - def self.set_neighbor_buildings(hpxml, args) + def self.set_neighbor_buildings(hpxml_bldg, args) nbr_map = { Constants.FacadeFront => [args[:neighbor_front_distance], args[:neighbor_front_height]], Constants.FacadeBack => [args[:neighbor_back_distance], args[:neighbor_back_height]], Constants.FacadeLeft => [args[:neighbor_left_distance], args[:neighbor_left_height]], @@ -3919,19 +4078,19 @@ def self.set_neighbor_buildings(hpxml, args) height = neighbor_height.get end - hpxml.neighbor_buildings.add(azimuth: azimuth, - distance: distance, - height: height) + hpxml_bldg.neighbor_buildings.add(azimuth: azimuth, + distance: distance, + height: height) end end - def self.set_building_occupancy(hpxml, args) + def self.set_building_occupancy(hpxml_bldg, args) if args[:geometry_unit_num_occupants].is_initialized - hpxml.building_occupancy.number_of_residents = args[:geometry_unit_num_occupants].get + hpxml_bldg.building_occupancy.number_of_residents = args[:geometry_unit_num_occupants].get end end - def self.set_building_construction(hpxml, args) + def self.set_building_construction(hpxml_bldg, args) if args[:geometry_unit_type] == HPXML::ResidentialTypeApartment args[:geometry_unit_num_floors_above_grade] = 1 end @@ -3947,34 +4106,70 @@ def self.set_building_construction(hpxml, args) conditioned_building_volume = args[:geometry_unit_cfa] * args[:geometry_average_ceiling_height] - hpxml.building_construction.number_of_conditioned_floors = number_of_conditioned_floors - hpxml.building_construction.number_of_conditioned_floors_above_grade = number_of_conditioned_floors_above_grade - hpxml.building_construction.number_of_bedrooms = args[:geometry_unit_num_bedrooms] - hpxml.building_construction.number_of_bathrooms = number_of_bathrooms - hpxml.building_construction.conditioned_floor_area = args[:geometry_unit_cfa] - hpxml.building_construction.conditioned_building_volume = conditioned_building_volume - hpxml.building_construction.average_ceiling_height = args[:geometry_average_ceiling_height] - hpxml.building_construction.residential_facility_type = args[:geometry_unit_type] + hpxml_bldg.building_construction.number_of_conditioned_floors = number_of_conditioned_floors + hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = number_of_conditioned_floors_above_grade + hpxml_bldg.building_construction.number_of_bedrooms = args[:geometry_unit_num_bedrooms] + hpxml_bldg.building_construction.number_of_bathrooms = number_of_bathrooms + hpxml_bldg.building_construction.conditioned_floor_area = args[:geometry_unit_cfa] + hpxml_bldg.building_construction.conditioned_building_volume = conditioned_building_volume + hpxml_bldg.building_construction.average_ceiling_height = args[:geometry_average_ceiling_height] + hpxml_bldg.building_construction.residential_facility_type = args[:geometry_unit_type] if args[:year_built].is_initialized - hpxml.building_construction.year_built = args[:year_built].get + hpxml_bldg.building_construction.year_built = args[:year_built].get + end + + if args[:unit_multiplier].is_initialized + hpxml_bldg.building_construction.number_of_units = args[:unit_multiplier].get end end - def self.set_climate_and_risk_zones(hpxml, args) - hpxml.climate_and_risk_zones.weather_station_id = 'WeatherStation' + def self.set_building_header(hpxml_bldg, args) + if args[:schedules_filepaths].is_initialized + hpxml_bldg.header.schedules_filepaths = args[:schedules_filepaths].get.split(',').map(&:strip) + end + + if args[:heat_pump_sizing_methodology].is_initialized + hpxml_bldg.header.heat_pump_sizing_methodology = args[:heat_pump_sizing_methodology].get + end + + if args[:window_natvent_availability].is_initialized + hpxml_bldg.header.natvent_days_per_week = args[:window_natvent_availability].get + end + + if args[:window_shading_summer_season].is_initialized + begin_month, begin_day, _begin_hour, end_month, end_day, _end_hour = Schedule.parse_date_time_range(args[:window_shading_summer_season].get) + hpxml_bldg.header.shading_summer_begin_month = begin_month + hpxml_bldg.header.shading_summer_begin_day = begin_day + hpxml_bldg.header.shading_summer_end_month = end_month + hpxml_bldg.header.shading_summer_end_day = end_day + end + + if args[:additional_properties].is_initialized + extension_properties = {} + additional_properties = args[:additional_properties].get.split('|').map(&:strip) + additional_properties.each do |additional_property| + key, value = additional_property.split('=').map(&:strip) + extension_properties[key] = value + end + hpxml_bldg.header.extension_properties = extension_properties + end + end + + def self.set_climate_and_risk_zones(hpxml_bldg, args) + hpxml_bldg.climate_and_risk_zones.weather_station_id = 'WeatherStation' if args[:site_iecc_zone].is_initialized - hpxml.climate_and_risk_zones.climate_zone_ieccs.add(zone: args[:site_iecc_zone].get, - year: 2006) + hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs.add(zone: args[:site_iecc_zone].get, + year: 2006) end weather_station_name = File.basename(args[:weather_station_epw_filepath]).gsub('.epw', '') - hpxml.climate_and_risk_zones.weather_station_name = weather_station_name - hpxml.climate_and_risk_zones.weather_station_epw_filepath = args[:weather_station_epw_filepath] + hpxml_bldg.climate_and_risk_zones.weather_station_name = weather_station_name + hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath = args[:weather_station_epw_filepath] end - def self.set_air_infiltration_measurements(hpxml, args) + def self.set_air_infiltration_measurements(hpxml_bldg, args) if args[:air_leakage_units] == HPXML::UnitsELA effective_leakage_area = args[:air_leakage_value] else @@ -3989,22 +4184,22 @@ def self.set_air_infiltration_measurements(hpxml, args) air_leakage_type = args[:air_leakage_type] end end - infiltration_volume = hpxml.building_construction.conditioned_building_volume + infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume - hpxml.air_infiltration_measurements.add(id: "AirInfiltrationMeasurement#{hpxml.air_infiltration_measurements.size + 1}", - house_pressure: house_pressure, - unit_of_measure: unit_of_measure, - air_leakage: air_leakage, - effective_leakage_area: effective_leakage_area, - infiltration_volume: infiltration_volume, - infiltration_type: air_leakage_type) + hpxml_bldg.air_infiltration_measurements.add(id: "AirInfiltrationMeasurement#{hpxml_bldg.air_infiltration_measurements.size + 1}", + house_pressure: house_pressure, + unit_of_measure: unit_of_measure, + air_leakage: air_leakage, + effective_leakage_area: effective_leakage_area, + infiltration_volume: infiltration_volume, + infiltration_type: air_leakage_type) if args[:air_leakage_has_flue_or_chimney_in_conditioned_space].is_initialized - hpxml.air_infiltration.has_flue_or_chimney_in_conditioned_space = args[:air_leakage_has_flue_or_chimney_in_conditioned_space].get + hpxml_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space = args[:air_leakage_has_flue_or_chimney_in_conditioned_space].get end end - def self.set_roofs(hpxml, args, sorted_surfaces) + def self.set_roofs(hpxml_bldg, args, sorted_surfaces) args[:geometry_roof_pitch] *= 12.0 if (args[:geometry_attic_type] == HPXML::AtticTypeFlatRoof) || (args[:geometry_attic_type] == HPXML::AtticTypeBelowApartment) args[:geometry_roof_pitch] = 0.0 @@ -4036,21 +4231,21 @@ def self.set_roofs(hpxml, args, sorted_surfaces) azimuth = Geometry.get_surface_azimuth(surface: surface, orientation: args[:geometry_unit_orientation]) end - hpxml.roofs.add(id: "Roof#{hpxml.roofs.size + 1}", - interior_adjacent_to: Geometry.get_adjacent_to(surface: surface), - azimuth: azimuth, - area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2'), - roof_type: roof_type, - roof_color: roof_color, - pitch: args[:geometry_roof_pitch], - radiant_barrier: radiant_barrier, - radiant_barrier_grade: radiant_barrier_grade, - insulation_assembly_r_value: args[:roof_assembly_r]) - @surface_ids[surface.name.to_s] = hpxml.roofs[-1].id + hpxml_bldg.roofs.add(id: "Roof#{hpxml_bldg.roofs.size + 1}", + interior_adjacent_to: Geometry.get_adjacent_to(surface: surface), + azimuth: azimuth, + area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2'), + roof_type: roof_type, + roof_color: roof_color, + pitch: args[:geometry_roof_pitch], + radiant_barrier: radiant_barrier, + radiant_barrier_grade: radiant_barrier_grade, + insulation_assembly_r_value: args[:roof_assembly_r]) + @surface_ids[surface.name.to_s] = hpxml_bldg.roofs[-1].id end end - def self.set_rim_joists(hpxml, model, args, sorted_surfaces) + def self.set_rim_joists(hpxml_bldg, model, args, sorted_surfaces) sorted_surfaces.each do |surface| next if surface.surfaceType != 'Wall' next unless ['Outdoors', 'Adiabatic'].include? surface.outsideBoundaryCondition @@ -4069,7 +4264,7 @@ def self.set_rim_joists(hpxml, model, args, sorted_surfaces) if adjacent_surface.nil? # adjacent to a space that is not explicitly in the model unless [HPXML::ResidentialTypeSFD].include?(args[:geometry_unit_type]) exterior_adjacent_to = interior_adjacent_to - if exterior_adjacent_to == HPXML::LocationLivingSpace # living adjacent to living + if exterior_adjacent_to == HPXML::LocationConditionedSpace # conditioned space adjacent to conditioned space exterior_adjacent_to = HPXML::LocationOtherHousingUnit end end @@ -4094,34 +4289,34 @@ def self.set_rim_joists(hpxml, model, args, sorted_surfaces) azimuth = Geometry.get_surface_azimuth(surface: surface, orientation: args[:geometry_unit_orientation]) - hpxml.rim_joists.add(id: "RimJoist#{hpxml.rim_joists.size + 1}", - exterior_adjacent_to: exterior_adjacent_to, - interior_adjacent_to: interior_adjacent_to, - azimuth: azimuth, - area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2'), - siding: siding, - color: color, - insulation_assembly_r_value: insulation_assembly_r_value) - @surface_ids[surface.name.to_s] = hpxml.rim_joists[-1].id + hpxml_bldg.rim_joists.add(id: "RimJoist#{hpxml_bldg.rim_joists.size + 1}", + exterior_adjacent_to: exterior_adjacent_to, + interior_adjacent_to: interior_adjacent_to, + azimuth: azimuth, + area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2'), + siding: siding, + color: color, + insulation_assembly_r_value: insulation_assembly_r_value) + @surface_ids[surface.name.to_s] = hpxml_bldg.rim_joists[-1].id end end - def self.set_walls(hpxml, model, args, sorted_surfaces) + def self.set_walls(hpxml_bldg, model, args, sorted_surfaces) sorted_surfaces.each do |surface| next if surface.surfaceType != 'Wall' next if Geometry.surface_is_rim_joist(surface, args[:geometry_rim_joist_height]) interior_adjacent_to = Geometry.get_adjacent_to(surface: surface) - next unless [HPXML::LocationLivingSpace, HPXML::LocationAtticUnvented, HPXML::LocationAtticVented, HPXML::LocationGarage].include? interior_adjacent_to + next unless [HPXML::LocationConditionedSpace, HPXML::LocationAtticUnvented, HPXML::LocationAtticVented, HPXML::LocationGarage].include? interior_adjacent_to exterior_adjacent_to = HPXML::LocationOutside if surface.adjacentSurface.is_initialized exterior_adjacent_to = Geometry.get_adjacent_to(surface: surface.adjacentSurface.get) - elsif surface.outsideBoundaryCondition == 'Adiabatic' # can be adjacent to living space, attic + elsif surface.outsideBoundaryCondition == 'Adiabatic' # can be adjacent to conditioned space, attic adjacent_surface = Geometry.get_adiabatic_adjacent_surface(model: model, surface: surface) if adjacent_surface.nil? # adjacent to a space that is not explicitly in the model exterior_adjacent_to = interior_adjacent_to - if exterior_adjacent_to == HPXML::LocationLivingSpace # living adjacent to living + if exterior_adjacent_to == HPXML::LocationConditionedSpace # conditioned space adjacent to conditioned space exterior_adjacent_to = HPXML::LocationOtherHousingUnit end else # adjacent to a space that is explicitly in the model @@ -4129,7 +4324,7 @@ def self.set_walls(hpxml, model, args, sorted_surfaces) end end - next if exterior_adjacent_to == HPXML::LocationLivingSpace # already captured these surfaces + next if exterior_adjacent_to == HPXML::LocationConditionedSpace # already captured these surfaces attic_locations = [HPXML::LocationAtticUnconditioned, HPXML::LocationAtticUnvented, HPXML::LocationAtticVented] attic_wall_type = nil @@ -4156,35 +4351,35 @@ def self.set_walls(hpxml, model, args, sorted_surfaces) azimuth = Geometry.get_surface_azimuth(surface: surface, orientation: args[:geometry_unit_orientation]) - hpxml.walls.add(id: "Wall#{hpxml.walls.size + 1}", - exterior_adjacent_to: exterior_adjacent_to, - interior_adjacent_to: interior_adjacent_to, - azimuth: azimuth, - wall_type: wall_type, - attic_wall_type: attic_wall_type, - siding: siding, - color: color, - area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2')) - @surface_ids[surface.name.to_s] = hpxml.walls[-1].id + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: exterior_adjacent_to, + interior_adjacent_to: interior_adjacent_to, + azimuth: azimuth, + wall_type: wall_type, + attic_wall_type: attic_wall_type, + siding: siding, + color: color, + area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2')) + @surface_ids[surface.name.to_s] = hpxml_bldg.walls[-1].id is_uncond_attic_roof_insulated = false if attic_locations.include? interior_adjacent_to - hpxml.roofs.each do |roof| + hpxml_bldg.roofs.each do |roof| next unless (roof.interior_adjacent_to == interior_adjacent_to) && (roof.insulation_assembly_r_value > 4.0) is_uncond_attic_roof_insulated = true end end - if hpxml.walls[-1].is_thermal_boundary || is_uncond_attic_roof_insulated # Assume wall is insulated if roof is insulated - hpxml.walls[-1].insulation_assembly_r_value = args[:wall_assembly_r] + if hpxml_bldg.walls[-1].is_thermal_boundary || is_uncond_attic_roof_insulated # Assume wall is insulated if roof is insulated + hpxml_bldg.walls[-1].insulation_assembly_r_value = args[:wall_assembly_r] else - hpxml.walls[-1].insulation_assembly_r_value = 4.0 # Uninsulated + hpxml_bldg.walls[-1].insulation_assembly_r_value = 4.0 # Uninsulated end end end - def self.set_foundation_walls(hpxml, model, args, sorted_surfaces) + def self.set_foundation_walls(hpxml_bldg, model, args, sorted_surfaces) sorted_surfaces.each do |surface| next if surface.surfaceType != 'Wall' next unless ['Foundation', 'Adiabatic'].include? surface.outsideBoundaryCondition @@ -4203,7 +4398,7 @@ def self.set_foundation_walls(hpxml, model, args, sorted_surfaces) if adjacent_surface.nil? # adjacent to a space that is not explicitly in the model unless [HPXML::ResidentialTypeSFD].include?(args[:geometry_unit_type]) exterior_adjacent_to = interior_adjacent_to - if exterior_adjacent_to == HPXML::LocationLivingSpace # living adjacent to living + if exterior_adjacent_to == HPXML::LocationConditionedSpace # conditioned space adjacent to conditioned space exterior_adjacent_to = HPXML::LocationOtherHousingUnit end end @@ -4257,27 +4452,27 @@ def self.set_foundation_walls(hpxml, model, args, sorted_surfaces) azimuth = Geometry.get_surface_azimuth(surface: surface, orientation: args[:geometry_unit_orientation]) - hpxml.foundation_walls.add(id: "FoundationWall#{hpxml.foundation_walls.size + 1}", - exterior_adjacent_to: exterior_adjacent_to, - interior_adjacent_to: interior_adjacent_to, - type: type, - azimuth: azimuth, - height: args[:geometry_foundation_height], - area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2'), - thickness: thickness, - depth_below_grade: args[:geometry_foundation_height] - args[:geometry_foundation_height_above_grade], - insulation_assembly_r_value: insulation_assembly_r_value, - insulation_interior_r_value: insulation_interior_r_value, - insulation_interior_distance_to_top: insulation_interior_distance_to_top, - insulation_interior_distance_to_bottom: insulation_interior_distance_to_bottom, - insulation_exterior_r_value: insulation_exterior_r_value, - insulation_exterior_distance_to_top: insulation_exterior_distance_to_top, - insulation_exterior_distance_to_bottom: insulation_exterior_distance_to_bottom) - @surface_ids[surface.name.to_s] = hpxml.foundation_walls[-1].id + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: exterior_adjacent_to, + interior_adjacent_to: interior_adjacent_to, + type: type, + azimuth: azimuth, + height: args[:geometry_foundation_height], + area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2'), + thickness: thickness, + depth_below_grade: args[:geometry_foundation_height] - args[:geometry_foundation_height_above_grade], + insulation_assembly_r_value: insulation_assembly_r_value, + insulation_interior_r_value: insulation_interior_r_value, + insulation_interior_distance_to_top: insulation_interior_distance_to_top, + insulation_interior_distance_to_bottom: insulation_interior_distance_to_bottom, + insulation_exterior_r_value: insulation_exterior_r_value, + insulation_exterior_distance_to_top: insulation_exterior_distance_to_top, + insulation_exterior_distance_to_bottom: insulation_exterior_distance_to_bottom) + @surface_ids[surface.name.to_s] = hpxml_bldg.foundation_walls[-1].id end end - def self.set_floors(hpxml, args, sorted_surfaces) + def self.set_floors(hpxml_bldg, args, sorted_surfaces) if [HPXML::FoundationTypeBasementConditioned, HPXML::FoundationTypeCrawlspaceConditioned].include?(args[:geometry_foundation_type]) && (args[:floor_over_foundation_assembly_r] > 2.1) args[:floor_over_foundation_assembly_r] = 2.1 # Uninsulated @@ -4292,7 +4487,7 @@ def self.set_floors(hpxml, args, sorted_surfaces) next unless ['Floor', 'RoofCeiling'].include? surface.surfaceType interior_adjacent_to = Geometry.get_adjacent_to(surface: surface) - next unless [HPXML::LocationLivingSpace, HPXML::LocationGarage].include? interior_adjacent_to + next unless [HPXML::LocationConditionedSpace, HPXML::LocationGarage].include? interior_adjacent_to exterior_adjacent_to = HPXML::LocationOutside if surface.adjacentSurface.is_initialized @@ -4308,40 +4503,40 @@ def self.set_floors(hpxml, args, sorted_surfaces) next if interior_adjacent_to == exterior_adjacent_to next if (surface.surfaceType == 'RoofCeiling') && (exterior_adjacent_to == HPXML::LocationOutside) - next if [HPXML::LocationLivingSpace, + next if [HPXML::LocationConditionedSpace, HPXML::LocationBasementConditioned, HPXML::LocationCrawlspaceConditioned].include? exterior_adjacent_to - hpxml.floors.add(id: "Floor#{hpxml.floors.size + 1}", - exterior_adjacent_to: exterior_adjacent_to, - interior_adjacent_to: interior_adjacent_to, - floor_type: args[:floor_type], - area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2'), - floor_or_ceiling: floor_or_ceiling) - if hpxml.floors[-1].floor_or_ceiling.nil? - if hpxml.floors[-1].is_floor - hpxml.floors[-1].floor_or_ceiling = HPXML::FloorOrCeilingFloor - elsif hpxml.floors[-1].is_ceiling - hpxml.floors[-1].floor_or_ceiling = HPXML::FloorOrCeilingCeiling + hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", + exterior_adjacent_to: exterior_adjacent_to, + interior_adjacent_to: interior_adjacent_to, + floor_type: args[:floor_type], + area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2'), + floor_or_ceiling: floor_or_ceiling) + if hpxml_bldg.floors[-1].floor_or_ceiling.nil? + if hpxml_bldg.floors[-1].is_floor + hpxml_bldg.floors[-1].floor_or_ceiling = HPXML::FloorOrCeilingFloor + elsif hpxml_bldg.floors[-1].is_ceiling + hpxml_bldg.floors[-1].floor_or_ceiling = HPXML::FloorOrCeilingCeiling end end - @surface_ids[surface.name.to_s] = hpxml.floors[-1].id + @surface_ids[surface.name.to_s] = hpxml_bldg.floors[-1].id - if hpxml.floors[-1].is_thermal_boundary + if hpxml_bldg.floors[-1].is_thermal_boundary if [HPXML::LocationAtticUnvented, HPXML::LocationAtticVented].include? exterior_adjacent_to - hpxml.floors[-1].insulation_assembly_r_value = args[:ceiling_assembly_r] + hpxml_bldg.floors[-1].insulation_assembly_r_value = args[:ceiling_assembly_r] elsif [HPXML::LocationGarage].include? exterior_adjacent_to - hpxml.floors[-1].insulation_assembly_r_value = args[:floor_over_garage_assembly_r] + hpxml_bldg.floors[-1].insulation_assembly_r_value = args[:floor_over_garage_assembly_r] else - hpxml.floors[-1].insulation_assembly_r_value = args[:floor_over_foundation_assembly_r] + hpxml_bldg.floors[-1].insulation_assembly_r_value = args[:floor_over_foundation_assembly_r] end else - hpxml.floors[-1].insulation_assembly_r_value = 2.1 # Uninsulated + hpxml_bldg.floors[-1].insulation_assembly_r_value = 2.1 # Uninsulated end end end - def self.set_slabs(hpxml, model, args, sorted_surfaces) + def self.set_slabs(hpxml_bldg, model, args, sorted_surfaces) sorted_surfaces.each do |surface| next unless ['Foundation'].include? surface.outsideBoundaryCondition next if surface.surfaceType != 'Floor' @@ -4368,10 +4563,6 @@ def self.set_slabs(hpxml, model, args, sorted_surfaces) exposed_perimeter -= Geometry.get_unexposed_garage_perimeter(**args) end - if [HPXML::LocationLivingSpace, HPXML::LocationGarage].include? interior_adjacent_to - depth_below_grade = 0 - end - if args[:slab_under_width] == 999 under_slab_insulation_spans_entire_slab = true else @@ -4390,31 +4581,30 @@ def self.set_slabs(hpxml, model, args, sorted_surfaces) carpet_r_value = args[:slab_carpet_r].get end - hpxml.slabs.add(id: "Slab#{hpxml.slabs.size + 1}", - interior_adjacent_to: interior_adjacent_to, - area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2'), - thickness: thickness, - exposed_perimeter: exposed_perimeter, - perimeter_insulation_depth: args[:slab_perimeter_depth], - under_slab_insulation_width: under_slab_insulation_width, - perimeter_insulation_r_value: args[:slab_perimeter_insulation_r], - under_slab_insulation_r_value: args[:slab_under_insulation_r], - under_slab_insulation_spans_entire_slab: under_slab_insulation_spans_entire_slab, - depth_below_grade: depth_below_grade, - carpet_fraction: carpet_fraction, - carpet_r_value: carpet_r_value) - @surface_ids[surface.name.to_s] = hpxml.slabs[-1].id + hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}", + interior_adjacent_to: interior_adjacent_to, + area: UnitConversions.convert(surface.grossArea, 'm^2', 'ft^2'), + thickness: thickness, + exposed_perimeter: exposed_perimeter, + perimeter_insulation_depth: args[:slab_perimeter_depth], + under_slab_insulation_width: under_slab_insulation_width, + perimeter_insulation_r_value: args[:slab_perimeter_insulation_r], + under_slab_insulation_r_value: args[:slab_under_insulation_r], + under_slab_insulation_spans_entire_slab: under_slab_insulation_spans_entire_slab, + carpet_fraction: carpet_fraction, + carpet_r_value: carpet_r_value) + @surface_ids[surface.name.to_s] = hpxml_bldg.slabs[-1].id next unless interior_adjacent_to == HPXML::LocationCrawlspaceConditioned # Increase Conditioned Building Volume & Infiltration Volume - conditioned_crawlspace_volume = hpxml.slabs[-1].area * args[:geometry_foundation_height] - hpxml.building_construction.conditioned_building_volume += conditioned_crawlspace_volume - hpxml.air_infiltration_measurements[0].infiltration_volume += conditioned_crawlspace_volume + conditioned_crawlspace_volume = hpxml_bldg.slabs[-1].area * args[:geometry_foundation_height] + hpxml_bldg.building_construction.conditioned_building_volume += conditioned_crawlspace_volume + hpxml_bldg.air_infiltration_measurements[0].infiltration_volume += conditioned_crawlspace_volume end end - def self.set_windows(hpxml, model, args, sorted_subsurfaces) + def self.set_windows(hpxml_bldg, model, args, sorted_subsurfaces) sorted_subsurfaces.each do |sub_surface| next if sub_surface.subSurfaceType != 'FixedWindow' @@ -4450,7 +4640,7 @@ def self.set_windows(hpxml, model, args, sorted_subsurfaces) end # Get max z coordinate of this window - sub_surface_z = Geometry.getSurfaceZValues([sub_surface]).max + UnitConversions.convert(sub_surface.space.get.zOrigin, 'm', 'ft') + sub_surface_z = Geometry.get_surface_z_values([sub_surface]).max + UnitConversions.convert(sub_surface.space.get.zOrigin, 'm', 'ft') overhangs_depth = args[:geometry_eaves_depth] overhangs_distance_to_top_of_window = eaves_z - sub_surface_z # difference between max z coordinates of eaves and this window @@ -4486,25 +4676,25 @@ def self.set_windows(hpxml, model, args, sorted_subsurfaces) wall_idref = @surface_ids[surface.name.to_s] next if wall_idref.nil? - hpxml.windows.add(id: "Window#{hpxml.windows.size + 1}", - area: UnitConversions.convert(sub_surface.grossArea, 'm^2', 'ft^2'), - azimuth: azimuth, - ufactor: args[:window_ufactor], - shgc: args[:window_shgc], - storm_type: window_storm_type, - overhangs_depth: overhangs_depth, - overhangs_distance_to_top_of_window: overhangs_distance_to_top_of_window, - overhangs_distance_to_bottom_of_window: overhangs_distance_to_bottom_of_window, - interior_shading_factor_winter: interior_shading_factor_winter, - interior_shading_factor_summer: interior_shading_factor_summer, - exterior_shading_factor_winter: exterior_shading_factor_winter, - exterior_shading_factor_summer: exterior_shading_factor_summer, - fraction_operable: fraction_operable, - wall_idref: wall_idref) + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: UnitConversions.convert(sub_surface.grossArea, 'm^2', 'ft^2'), + azimuth: azimuth, + ufactor: args[:window_ufactor], + shgc: args[:window_shgc], + storm_type: window_storm_type, + overhangs_depth: overhangs_depth, + overhangs_distance_to_top_of_window: overhangs_distance_to_top_of_window, + overhangs_distance_to_bottom_of_window: overhangs_distance_to_bottom_of_window, + interior_shading_factor_winter: interior_shading_factor_winter, + interior_shading_factor_summer: interior_shading_factor_summer, + exterior_shading_factor_winter: exterior_shading_factor_winter, + exterior_shading_factor_summer: exterior_shading_factor_summer, + fraction_operable: fraction_operable, + wall_idref: wall_idref) end end - def self.set_skylights(hpxml, args, sorted_subsurfaces) + def self.set_skylights(hpxml_bldg, args, sorted_subsurfaces) sorted_subsurfaces.each do |sub_surface| next if sub_surface.subSurfaceType != 'Skylight' @@ -4520,17 +4710,17 @@ def self.set_skylights(hpxml, args, sorted_subsurfaces) roof_idref = @surface_ids[surface.name.to_s] next if roof_idref.nil? - hpxml.skylights.add(id: "Skylight#{hpxml.skylights.size + 1}", - area: UnitConversions.convert(sub_surface.grossArea, 'm^2', 'ft^2'), - azimuth: azimuth, - ufactor: args[:skylight_ufactor], - shgc: args[:skylight_shgc], - storm_type: skylight_storm_type, - roof_idref: roof_idref) + hpxml_bldg.skylights.add(id: "Skylight#{hpxml_bldg.skylights.size + 1}", + area: UnitConversions.convert(sub_surface.grossArea, 'm^2', 'ft^2'), + azimuth: azimuth, + ufactor: args[:skylight_ufactor], + shgc: args[:skylight_shgc], + storm_type: skylight_storm_type, + roof_idref: roof_idref) end end - def self.set_doors(hpxml, model, args, sorted_subsurfaces) + def self.set_doors(hpxml_bldg, model, args, sorted_subsurfaces) sorted_subsurfaces.each do |sub_surface| next if sub_surface.subSurfaceType != 'Door' @@ -4546,18 +4736,18 @@ def self.set_doors(hpxml, model, args, sorted_subsurfaces) wall_idref = @surface_ids[surface.name.to_s] next if wall_idref.nil? - hpxml.doors.add(id: "Door#{hpxml.doors.size + 1}", - wall_idref: wall_idref, - area: UnitConversions.convert(sub_surface.grossArea, 'm^2', 'ft^2'), - azimuth: args[:geometry_unit_orientation], - r_value: args[:door_rvalue]) + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: wall_idref, + area: UnitConversions.convert(sub_surface.grossArea, 'm^2', 'ft^2'), + azimuth: args[:geometry_unit_orientation], + r_value: args[:door_rvalue]) end end - def self.set_attics(hpxml, args) - surf_ids = { 'roofs' => { 'surfaces' => hpxml.roofs, 'ids' => [] }, - 'walls' => { 'surfaces' => hpxml.walls, 'ids' => [] }, - 'floors' => { 'surfaces' => hpxml.floors, 'ids' => [] } } + def self.set_attics(hpxml_bldg, args) + surf_ids = { 'roofs' => { 'surfaces' => hpxml_bldg.roofs, 'ids' => [] }, + 'walls' => { 'surfaces' => hpxml_bldg.walls, 'ids' => [] }, + 'floors' => { 'surfaces' => hpxml_bldg.floors, 'ids' => [] } } attic_locations = [HPXML::LocationAtticUnconditioned, HPXML::LocationAtticUnvented, HPXML::LocationAtticVented] surf_ids.values.each do |surf_hash| @@ -4570,27 +4760,27 @@ def self.set_attics(hpxml, args) end # Add attached roofs for cathedral ceiling - living_space = HPXML::LocationLivingSpace + conditioned_space = HPXML::LocationConditionedSpace surf_ids['roofs']['surfaces'].each do |surface| - next if (living_space != surface.interior_adjacent_to) && - (living_space != surface.exterior_adjacent_to) + next if (conditioned_space != surface.interior_adjacent_to) && + (conditioned_space != surface.exterior_adjacent_to) surf_ids['roofs']['ids'] << surface.id end - hpxml.attics.add(id: "Attic#{hpxml.attics.size + 1}", - attic_type: args[:geometry_attic_type], - attached_to_roof_idrefs: surf_ids['roofs']['ids'], - attached_to_wall_idrefs: surf_ids['walls']['ids'], - attached_to_floor_idrefs: surf_ids['floors']['ids']) + hpxml_bldg.attics.add(id: "Attic#{hpxml_bldg.attics.size + 1}", + attic_type: args[:geometry_attic_type], + attached_to_roof_idrefs: surf_ids['roofs']['ids'], + attached_to_wall_idrefs: surf_ids['walls']['ids'], + attached_to_floor_idrefs: surf_ids['floors']['ids']) end - def self.set_foundations(hpxml, args) - surf_ids = { 'slabs' => { 'surfaces' => hpxml.slabs, 'ids' => [] }, - 'floors' => { 'surfaces' => hpxml.floors, 'ids' => [] }, - 'foundation_walls' => { 'surfaces' => hpxml.foundation_walls, 'ids' => [] }, - 'walls' => { 'surfaces' => hpxml.walls, 'ids' => [] }, - 'rim_joists' => { 'surfaces' => hpxml.rim_joists, 'ids' => [] }, } + def self.set_foundations(hpxml_bldg, args) + surf_ids = { 'slabs' => { 'surfaces' => hpxml_bldg.slabs, 'ids' => [] }, + 'floors' => { 'surfaces' => hpxml_bldg.floors, 'ids' => [] }, + 'foundation_walls' => { 'surfaces' => hpxml_bldg.foundation_walls, 'ids' => [] }, + 'walls' => { 'surfaces' => hpxml_bldg.walls, 'ids' => [] }, + 'rim_joists' => { 'surfaces' => hpxml_bldg.rim_joists, 'ids' => [] }, } foundation_locations = [HPXML::LocationBasementConditioned, HPXML::LocationBasementUnconditioned, @@ -4602,23 +4792,37 @@ def self.set_foundations(hpxml, args) surf_hash['surfaces'].each do |surface| next unless (foundation_locations.include? surface.interior_adjacent_to) || (foundation_locations.include? surface.exterior_adjacent_to) || - (surf_type == 'slabs' && surface.interior_adjacent_to == HPXML::LocationLivingSpace) || - (surf_type == 'floors' && surface.exterior_adjacent_to == HPXML::LocationOutside) + (surf_type == 'slabs' && surface.interior_adjacent_to == HPXML::LocationConditionedSpace) || + (surf_type == 'floors' && [HPXML::LocationOutside, HPXML::LocationManufacturedHomeUnderBelly].include?(surface.exterior_adjacent_to)) surf_hash['ids'] << surface.id end end - hpxml.foundations.add(id: "Foundation#{hpxml.foundations.size + 1}", - foundation_type: args[:geometry_foundation_type], - attached_to_slab_idrefs: surf_ids['slabs']['ids'], - attached_to_floor_idrefs: surf_ids['floors']['ids'], - attached_to_foundation_wall_idrefs: surf_ids['foundation_walls']['ids'], - attached_to_wall_idrefs: surf_ids['walls']['ids'], - attached_to_rim_joist_idrefs: surf_ids['rim_joists']['ids']) + if args[:geometry_foundation_type].start_with?(HPXML::FoundationTypeBellyAndWing) + foundation_type = HPXML::FoundationTypeBellyAndWing + if args[:geometry_foundation_type].end_with?('WithSkirt') + belly_wing_skirt_present = true + elsif args[:geometry_foundation_type].end_with?('NoSkirt') + belly_wing_skirt_present = false + else + fail 'Unepected belly and wing foundation type.' + end + else + foundation_type = args[:geometry_foundation_type] + end + + hpxml_bldg.foundations.add(id: "Foundation#{hpxml_bldg.foundations.size + 1}", + foundation_type: foundation_type, + attached_to_slab_idrefs: surf_ids['slabs']['ids'], + attached_to_floor_idrefs: surf_ids['floors']['ids'], + attached_to_foundation_wall_idrefs: surf_ids['foundation_walls']['ids'], + attached_to_wall_idrefs: surf_ids['walls']['ids'], + attached_to_rim_joist_idrefs: surf_ids['rim_joists']['ids'], + belly_wing_skirt_present: belly_wing_skirt_present) end - def self.set_heating_systems(hpxml, args) + def self.set_heating_systems(hpxml_bldg, args) heating_system_type = args[:heating_system_type] return if heating_system_type == 'none' @@ -4639,9 +4843,8 @@ def self.set_heating_systems(hpxml, args) heating_efficiency_afue = args[:heating_system_heating_efficiency] elsif [HPXML::HVACTypeElectricResistance, HPXML::HVACTypeStove, - HPXML::HVACTypePortableHeater, - HPXML::HVACTypeFireplace, - HPXML::HVACTypeFixedHeater].include?(heating_system_type) + HPXML::HVACTypeSpaceHeater, + HPXML::HVACTypeFireplace].include?(heating_system_type) heating_efficiency_percent = args[:heating_system_heating_efficiency] end @@ -4670,22 +4873,22 @@ def self.set_heating_systems(hpxml, args) heating_system_type = HPXML::HVACTypeBoiler end - hpxml.heating_systems.add(id: "HeatingSystem#{hpxml.heating_systems.size + 1}", - heating_system_type: heating_system_type, - heating_system_fuel: heating_system_fuel, - heating_capacity: heating_capacity, - fraction_heat_load_served: fraction_heat_load_served, - heating_efficiency_afue: heating_efficiency_afue, - heating_efficiency_percent: heating_efficiency_percent, - airflow_defect_ratio: airflow_defect_ratio, - pilot_light: pilot_light, - pilot_light_btuh: pilot_light_btuh, - is_shared_system: is_shared_system, - number_of_units_served: number_of_units_served, - primary_system: true) + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + heating_system_type: heating_system_type, + heating_system_fuel: heating_system_fuel, + heating_capacity: heating_capacity, + fraction_heat_load_served: fraction_heat_load_served, + heating_efficiency_afue: heating_efficiency_afue, + heating_efficiency_percent: heating_efficiency_percent, + airflow_defect_ratio: airflow_defect_ratio, + pilot_light: pilot_light, + pilot_light_btuh: pilot_light_btuh, + is_shared_system: is_shared_system, + number_of_units_served: number_of_units_served, + primary_system: true) end - def self.set_cooling_systems(hpxml, args) + def self.set_cooling_systems(hpxml_bldg, args) cooling_system_type = args[:cooling_system_type] return if cooling_system_type == 'none' @@ -4695,7 +4898,7 @@ def self.set_cooling_systems(hpxml, args) end if args[:cooling_system_cooling_compressor_type].is_initialized - if cooling_system_type == HPXML::HVACTypeCentralAirConditioner + if [HPXML::HVACTypeCentralAirConditioner, HPXML::HVACTypeMiniSplitAirConditioner].include? cooling_system_type compressor_type = args[:cooling_system_cooling_compressor_type].get end end @@ -4754,28 +4957,28 @@ def self.set_cooling_systems(hpxml, args) end end - hpxml.cooling_systems.add(id: "CoolingSystem#{hpxml.cooling_systems.size + 1}", - cooling_system_type: cooling_system_type, - cooling_system_fuel: HPXML::FuelTypeElectricity, - cooling_capacity: cooling_capacity, - fraction_cool_load_served: args[:cooling_system_fraction_cool_load_served], - compressor_type: compressor_type, - cooling_shr: cooling_shr, - cooling_efficiency_seer: cooling_efficiency_seer, - cooling_efficiency_seer2: cooling_efficiency_seer2, - cooling_efficiency_eer: cooling_efficiency_eer, - cooling_efficiency_ceer: cooling_efficiency_ceer, - airflow_defect_ratio: airflow_defect_ratio, - charge_defect_ratio: charge_defect_ratio, - crankcase_heater_watts: cooling_system_crankcase_heater_watts, - primary_system: true, - integrated_heating_system_fuel: integrated_heating_system_fuel, - integrated_heating_system_capacity: integrated_heating_system_capacity, - integrated_heating_system_efficiency_percent: integrated_heating_system_efficiency_percent, - integrated_heating_system_fraction_heat_load_served: integrated_heating_system_fraction_heat_load_served) + hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", + cooling_system_type: cooling_system_type, + cooling_system_fuel: HPXML::FuelTypeElectricity, + cooling_capacity: cooling_capacity, + fraction_cool_load_served: args[:cooling_system_fraction_cool_load_served], + compressor_type: compressor_type, + cooling_shr: cooling_shr, + cooling_efficiency_seer: cooling_efficiency_seer, + cooling_efficiency_seer2: cooling_efficiency_seer2, + cooling_efficiency_eer: cooling_efficiency_eer, + cooling_efficiency_ceer: cooling_efficiency_ceer, + airflow_defect_ratio: airflow_defect_ratio, + charge_defect_ratio: charge_defect_ratio, + crankcase_heater_watts: cooling_system_crankcase_heater_watts, + primary_system: true, + integrated_heating_system_fuel: integrated_heating_system_fuel, + integrated_heating_system_capacity: integrated_heating_system_capacity, + integrated_heating_system_efficiency_percent: integrated_heating_system_efficiency_percent, + integrated_heating_system_fraction_heat_load_served: integrated_heating_system_fraction_heat_load_served) end - def self.set_heat_pumps(hpxml, args) + def self.set_heat_pumps(hpxml_bldg, args) heat_pump_type = args[:heat_pump_type] return if heat_pump_type == 'none' @@ -4811,7 +5014,7 @@ def self.set_heat_pumps(hpxml, args) end backup_type = args[:heat_pump_backup_type] - backup_system_idref = "HeatingSystem#{hpxml.heating_systems.size + 1}" + backup_system_idref = "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}" end if args[:heat_pump_compressor_lockout_temp].is_initialized @@ -4834,7 +5037,7 @@ def self.set_heat_pumps(hpxml, args) end if args[:heat_pump_cooling_compressor_type].is_initialized - if [HPXML::HVACTypeHeatPumpAirToAir].include? heat_pump_type + if [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit].include? heat_pump_type compressor_type = args[:heat_pump_cooling_compressor_type].get end end @@ -4886,44 +5089,40 @@ def self.set_heat_pumps(hpxml, args) primary_cooling_system = true end - if args[:heat_pump_sizing_methodology].is_initialized - hpxml.header.heat_pump_sizing_methodology = args[:heat_pump_sizing_methodology].get - end - - hpxml.heat_pumps.add(id: "HeatPump#{hpxml.heat_pumps.size + 1}", - heat_pump_type: heat_pump_type, - heat_pump_fuel: HPXML::FuelTypeElectricity, - heating_capacity: heating_capacity, - heating_capacity_retention_fraction: heating_capacity_retention_fraction, - heating_capacity_retention_temp: heating_capacity_retention_temp, - compressor_type: compressor_type, - compressor_lockout_temp: compressor_lockout_temp, - cooling_shr: cooling_shr, - cooling_capacity: cooling_capacity, - fraction_heat_load_served: fraction_heat_load_served, - fraction_cool_load_served: fraction_cool_load_served, - backup_type: backup_type, - backup_system_idref: backup_system_idref, - backup_heating_fuel: backup_heating_fuel, - backup_heating_capacity: backup_heating_capacity, - backup_heating_efficiency_afue: backup_heating_efficiency_afue, - backup_heating_efficiency_percent: backup_heating_efficiency_percent, - backup_heating_switchover_temp: backup_heating_switchover_temp, - backup_heating_lockout_temp: backup_heating_lockout_temp, - heating_efficiency_hspf: heating_efficiency_hspf, - heating_efficiency_hspf2: heating_efficiency_hspf2, - cooling_efficiency_seer: cooling_efficiency_seer, - cooling_efficiency_seer2: cooling_efficiency_seer2, - heating_efficiency_cop: heating_efficiency_cop, - cooling_efficiency_eer: cooling_efficiency_eer, - airflow_defect_ratio: airflow_defect_ratio, - charge_defect_ratio: charge_defect_ratio, - crankcase_heater_watts: heat_pump_crankcase_heater_watts, - primary_heating_system: primary_heating_system, - primary_cooling_system: primary_cooling_system) + hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", + heat_pump_type: heat_pump_type, + heat_pump_fuel: HPXML::FuelTypeElectricity, + heating_capacity: heating_capacity, + heating_capacity_retention_fraction: heating_capacity_retention_fraction, + heating_capacity_retention_temp: heating_capacity_retention_temp, + compressor_type: compressor_type, + compressor_lockout_temp: compressor_lockout_temp, + cooling_shr: cooling_shr, + cooling_capacity: cooling_capacity, + fraction_heat_load_served: fraction_heat_load_served, + fraction_cool_load_served: fraction_cool_load_served, + backup_type: backup_type, + backup_system_idref: backup_system_idref, + backup_heating_fuel: backup_heating_fuel, + backup_heating_capacity: backup_heating_capacity, + backup_heating_efficiency_afue: backup_heating_efficiency_afue, + backup_heating_efficiency_percent: backup_heating_efficiency_percent, + backup_heating_switchover_temp: backup_heating_switchover_temp, + backup_heating_lockout_temp: backup_heating_lockout_temp, + heating_efficiency_hspf: heating_efficiency_hspf, + heating_efficiency_hspf2: heating_efficiency_hspf2, + cooling_efficiency_seer: cooling_efficiency_seer, + cooling_efficiency_seer2: cooling_efficiency_seer2, + heating_efficiency_cop: heating_efficiency_cop, + cooling_efficiency_eer: cooling_efficiency_eer, + airflow_defect_ratio: airflow_defect_ratio, + charge_defect_ratio: charge_defect_ratio, + crankcase_heater_watts: heat_pump_crankcase_heater_watts, + primary_heating_system: primary_heating_system, + primary_cooling_system: primary_cooling_system) end - def self.set_secondary_heating_systems(hpxml, args) + def self.set_secondary_heating_systems(hpxml_bldg, args) heating_system_type = args[:heating_system_2_type] heating_system_is_heatpump_backup = (args[:heat_pump_type] != 'none' && args[:heat_pump_backup_type] == HPXML::HeatPumpBackupTypeSeparate) @@ -4941,7 +5140,7 @@ def self.set_secondary_heating_systems(hpxml, args) if [HPXML::HVACTypeFurnace, HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFloorFurnace].include?(heating_system_type) || heating_system_type.include?(HPXML::HVACTypeBoiler) heating_efficiency_afue = args[:heating_system_2_heating_efficiency] - elsif [HPXML::HVACTypeElectricResistance, HPXML::HVACTypeStove, HPXML::HVACTypePortableHeater, HPXML::HVACTypeFireplace].include?(heating_system_type) + elsif [HPXML::HVACTypeElectricResistance, HPXML::HVACTypeStove, HPXML::HVACTypeSpaceHeater, HPXML::HVACTypeFireplace].include?(heating_system_type) heating_efficiency_percent = args[:heating_system_2_heating_efficiency] end @@ -4953,42 +5152,42 @@ def self.set_secondary_heating_systems(hpxml, args) fraction_heat_load_served = args[:heating_system_2_fraction_heat_load_served] end - hpxml.heating_systems.add(id: "HeatingSystem#{hpxml.heating_systems.size + 1}", - heating_system_type: heating_system_type, - heating_system_fuel: heating_system_fuel, - heating_capacity: heating_capacity, - fraction_heat_load_served: fraction_heat_load_served, - heating_efficiency_afue: heating_efficiency_afue, - heating_efficiency_percent: heating_efficiency_percent) + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + heating_system_type: heating_system_type, + heating_system_fuel: heating_system_fuel, + heating_capacity: heating_capacity, + fraction_heat_load_served: fraction_heat_load_served, + heating_efficiency_afue: heating_efficiency_afue, + heating_efficiency_percent: heating_efficiency_percent) end - def self.set_hvac_distribution(hpxml, args) + def self.set_hvac_distribution(hpxml_bldg, args) # HydronicDistribution? - hpxml.heating_systems.each do |heating_system| + hpxml_bldg.heating_systems.each do |heating_system| next unless [heating_system.heating_system_type].include?(HPXML::HVACTypeBoiler) next if args[:heating_system_type].include?('Fan Coil') - hpxml.hvac_distributions.add(id: "HVACDistribution#{hpxml.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeHydronic, - hydronic_type: HPXML::HydronicTypeBaseboard) - heating_system.distribution_system_idref = hpxml.hvac_distributions[-1].id + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeHydronic, + hydronic_type: HPXML::HydronicTypeBaseboard) + heating_system.distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id end # AirDistribution? air_distribution_systems = [] - hpxml.heating_systems.each do |heating_system| + hpxml_bldg.heating_systems.each do |heating_system| if [HPXML::HVACTypeFurnace].include?(heating_system.heating_system_type) air_distribution_systems << heating_system end end - hpxml.cooling_systems.each do |cooling_system| + hpxml_bldg.cooling_systems.each do |cooling_system| if [HPXML::HVACTypeCentralAirConditioner].include?(cooling_system.cooling_system_type) air_distribution_systems << cooling_system elsif [HPXML::HVACTypeEvaporativeCooler, HPXML::HVACTypeMiniSplitAirConditioner].include?(cooling_system.cooling_system_type) && args[:cooling_system_is_ducted] air_distribution_systems << cooling_system end end - hpxml.heat_pumps.each do |heat_pump| + hpxml_bldg.heat_pumps.each do |heat_pump| if [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type air_distribution_systems << heat_pump elsif [HPXML::HVACTypeHeatPumpMiniSplit].include?(heat_pump.heat_pump_type) @@ -5000,7 +5199,9 @@ def self.set_hvac_distribution(hpxml, args) # FanCoil? fan_coil_distribution_systems = [] - hpxml.heating_systems.each do |heating_system| + hpxml_bldg.heating_systems.each do |heating_system| + next unless heating_system.primary_system + if args[:heating_system_type].include?('Fan Coil') fan_coil_distribution_systems << heating_system end @@ -5012,7 +5213,7 @@ def self.set_hvac_distribution(hpxml, args) number_of_return_registers = args[:ducts_number_of_return_registers].get end - if [HPXML::HVACTypeEvaporativeCooler].include?(args[:cooling_system_type]) && hpxml.heating_systems.size == 0 && hpxml.heat_pumps.size == 0 + if [HPXML::HVACTypeEvaporativeCooler].include?(args[:cooling_system_type]) && hpxml_bldg.heating_systems.size == 0 && hpxml_bldg.heat_pumps.size == 0 number_of_return_registers = nil if args[:cooling_system_is_ducted] number_of_return_registers = 0 @@ -5020,23 +5221,23 @@ def self.set_hvac_distribution(hpxml, args) end if air_distribution_systems.size > 0 - hpxml.hvac_distributions.add(id: "HVACDistribution#{hpxml.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeAir, - air_type: HPXML::AirTypeRegularVelocity, - number_of_return_registers: number_of_return_registers) + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeAir, + air_type: HPXML::AirTypeRegularVelocity, + number_of_return_registers: number_of_return_registers) air_distribution_systems.each do |hvac_system| - hvac_system.distribution_system_idref = hpxml.hvac_distributions[-1].id + hvac_system.distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id end - set_duct_leakages(args, hpxml.hvac_distributions[-1]) - set_ducts(args, hpxml.hvac_distributions[-1]) + set_duct_leakages(args, hpxml_bldg.hvac_distributions[-1]) + set_ducts(hpxml_bldg, args, hpxml_bldg.hvac_distributions[-1]) end if fan_coil_distribution_systems.size > 0 - hpxml.hvac_distributions.add(id: "HVACDistribution#{hpxml.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeAir, - air_type: HPXML::AirTypeFanCoil) + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeAir, + air_type: HPXML::AirTypeFanCoil) fan_coil_distribution_systems.each do |hvac_system| - hvac_system.distribution_system_idref = hpxml.hvac_distributions[-1].id + hvac_system.distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id end end end @@ -5053,23 +5254,74 @@ def self.set_duct_leakages(args, hvac_distribution) duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) end - def self.set_ducts(args, hvac_distribution) + def self.get_location(location, foundation_type, attic_type) + if location == HPXML::LocationCrawlspace + if foundation_type == HPXML::FoundationTypeCrawlspaceUnvented + return HPXML::LocationCrawlspaceUnvented + elsif foundation_type == HPXML::FoundationTypeCrawlspaceVented + return HPXML::LocationCrawlspaceVented + elsif foundation_type == HPXML::FoundationTypeCrawlspaceConditioned + return HPXML::LocationCrawlspaceConditioned + else + fail "Specified '#{location}' but foundation type is '#{foundation_type}'." + end + elsif location == HPXML::LocationAttic + if attic_type == HPXML::AtticTypeUnvented + return HPXML::LocationAtticUnvented + elsif attic_type == HPXML::AtticTypeVented + return HPXML::LocationAtticVented + elsif attic_type == HPXML::AtticTypeConditioned + return HPXML::LocationConditionedSpace + else + fail "Specified '#{location}' but attic type is '#{attic_type}'." + end + end + return location + end + + def self.set_ducts(hpxml_bldg, args, hvac_distribution) if args[:ducts_supply_location].is_initialized - ducts_supply_location = args[:ducts_supply_location].get + ducts_supply_location = get_location(args[:ducts_supply_location].get, hpxml_bldg.foundations[-1].foundation_type, hpxml_bldg.attics[-1].attic_type) end if args[:ducts_return_location].is_initialized - ducts_return_location = args[:ducts_return_location].get + ducts_return_location = get_location(args[:ducts_return_location].get, hpxml_bldg.foundations[-1].foundation_type, hpxml_bldg.attics[-1].attic_type) end if args[:ducts_supply_surface_area].is_initialized ducts_supply_surface_area = args[:ducts_supply_surface_area].get end + if args[:ducts_supply_surface_area_fraction].is_initialized + ducts_supply_area_fraction = args[:ducts_supply_surface_area_fraction].get + end + if args[:ducts_return_surface_area].is_initialized ducts_return_surface_area = args[:ducts_return_surface_area].get end + if args[:ducts_return_surface_area_fraction].is_initialized + ducts_return_area_fraction = args[:ducts_return_surface_area_fraction].get + end + + if (not ducts_supply_location.nil?) && ducts_supply_surface_area.nil? && ducts_supply_area_fraction.nil? + # Supply duct location without any area inputs provided; set area fraction + if ducts_supply_location == HPXML::LocationConditionedSpace + ducts_supply_area_fraction = 1.0 + else + ducts_supply_area_fraction = HVAC.get_default_duct_fraction_outside_conditioned_space(args[:geometry_unit_num_floors_above_grade]) + end + end + + if (not ducts_return_location.nil?) && ducts_return_surface_area.nil? && ducts_return_area_fraction.nil? + # Return duct location without any area inputs provided; set area fraction + if ducts_return_location == HPXML::LocationConditionedSpace + ducts_return_area_fraction = 1.0 + else + ducts_return_area_fraction = HVAC.get_default_duct_fraction_outside_conditioned_space(args[:geometry_unit_num_floors_above_grade]) + end + end + if args[:ducts_supply_buried_insulation_level].is_initialized ducts_supply_buried_insulation_level = args[:ducts_supply_buried_insulation_level].get end @@ -5083,7 +5335,8 @@ def self.set_ducts(args, hvac_distribution) duct_insulation_r_value: args[:ducts_supply_insulation_r], duct_buried_insulation_level: ducts_supply_buried_insulation_level, duct_location: ducts_supply_location, - duct_surface_area: ducts_supply_surface_area) + duct_surface_area: ducts_supply_surface_area, + duct_fraction_area: ducts_supply_area_fraction) if not ([HPXML::HVACTypeEvaporativeCooler].include?(args[:cooling_system_type]) && args[:cooling_system_is_ducted]) hvac_distribution.ducts.add(id: "Ducts#{hvac_distribution.ducts.size + 1}", @@ -5091,20 +5344,56 @@ def self.set_ducts(args, hvac_distribution) duct_insulation_r_value: args[:ducts_return_insulation_r], duct_buried_insulation_level: ducts_return_buried_insulation_level, duct_location: ducts_return_location, - duct_surface_area: ducts_return_surface_area) + duct_surface_area: ducts_return_surface_area, + duct_fraction_area: ducts_return_area_fraction) + end + + if (not ducts_supply_area_fraction.nil?) && (ducts_supply_area_fraction < 1) + # OS-HPXML needs duct fractions to sum to 1; add remaining ducts in conditioned space. + hvac_distribution.ducts.add(id: "Ducts#{hvac_distribution.ducts.size + 1}", + duct_type: HPXML::DuctTypeSupply, + duct_insulation_r_value: 0.0, + duct_location: HPXML::LocationConditionedSpace, + duct_fraction_area: 1.0 - ducts_supply_area_fraction) + end + + if not hvac_distribution.ducts.find { |d| d.duct_type == HPXML::DuctTypeReturn }.nil? + if (not ducts_return_area_fraction.nil?) && (ducts_return_area_fraction < 1) + # OS-HPXML needs duct fractions to sum to 1; add remaining ducts in conditioned space. + hvac_distribution.ducts.add(id: "Ducts#{hvac_distribution.ducts.size + 1}", + duct_type: HPXML::DuctTypeReturn, + duct_insulation_r_value: 0.0, + duct_location: HPXML::LocationConditionedSpace, + duct_fraction_area: 1.0 - ducts_return_area_fraction) + end end # If duct surface areas are defaulted, set CFA served if hvac_distribution.ducts.select { |d| d.duct_surface_area.nil? }.size > 0 - hvac_distribution.conditioned_floor_area_served = args[:geometry_unit_cfa] + max_fraction_load_served = 0.0 + hvac_distribution.hvac_systems.each do |hvac_system| + if hvac_system.respond_to?(:fraction_heat_load_served) + if hvac_system.is_a?(HPXML::HeatingSystem) && hvac_system.is_heat_pump_backup_system + # HP backup system, use HP fraction heat load served + fraction_heat_load_served = hvac_system.primary_heat_pump.fraction_heat_load_served + else + fraction_heat_load_served = hvac_system.fraction_heat_load_served + end + max_fraction_load_served = [max_fraction_load_served, fraction_heat_load_served].max + end + if hvac_system.respond_to?(:fraction_cool_load_served) + max_fraction_load_served = [max_fraction_load_served, hvac_system.fraction_cool_load_served].max + end + end + hvac_distribution.conditioned_floor_area_served = args[:geometry_unit_cfa] * max_fraction_load_served end end - def self.set_hvac_control(hpxml, args, epw_file, weather) + def self.set_hvac_control(hpxml, hpxml_bldg, args, epw_file, weather) return if (args[:heating_system_type] == 'none') && (args[:cooling_system_type] == 'none') && (args[:heat_pump_type] == 'none') # Heating - if hpxml.total_fraction_heat_load_served > 0 + if hpxml_bldg.total_fraction_heat_load_served > 0 if args[:hvac_control_heating_weekday_setpoint].is_initialized && args[:hvac_control_heating_weekend_setpoint].is_initialized if args[:hvac_control_heating_weekday_setpoint].get == args[:hvac_control_heating_weekend_setpoint].get && !args[:hvac_control_heating_weekday_setpoint].get.include?(',') @@ -5133,7 +5422,7 @@ def self.set_hvac_control(hpxml, args, epw_file, weather) end # Cooling - if hpxml.total_fraction_cool_load_served > 0 + if hpxml_bldg.total_fraction_cool_load_served > 0 if args[:hvac_control_cooling_weekday_setpoint].is_initialized && args[:hvac_control_cooling_weekend_setpoint].is_initialized if args[:hvac_control_cooling_weekday_setpoint].get == args[:hvac_control_cooling_weekend_setpoint].get && !args[:hvac_control_cooling_weekday_setpoint].get.include?(',') @@ -5165,25 +5454,25 @@ def self.set_hvac_control(hpxml, args, epw_file, weather) end - hpxml.hvac_controls.add(id: "HVACControl#{hpxml.hvac_controls.size + 1}", - heating_setpoint_temp: heating_setpoint_temp, - cooling_setpoint_temp: cooling_setpoint_temp, - weekday_heating_setpoints: weekday_heating_setpoints, - weekend_heating_setpoints: weekend_heating_setpoints, - weekday_cooling_setpoints: weekday_cooling_setpoints, - weekend_cooling_setpoints: weekend_cooling_setpoints, - ceiling_fan_cooling_setpoint_temp_offset: ceiling_fan_cooling_setpoint_temp_offset, - seasons_heating_begin_month: seasons_heating_begin_month, - seasons_heating_begin_day: seasons_heating_begin_day, - seasons_heating_end_month: seasons_heating_end_month, - seasons_heating_end_day: seasons_heating_end_day, - seasons_cooling_begin_month: seasons_cooling_begin_month, - seasons_cooling_begin_day: seasons_cooling_begin_day, - seasons_cooling_end_month: seasons_cooling_end_month, - seasons_cooling_end_day: seasons_cooling_end_day) + hpxml_bldg.hvac_controls.add(id: "HVACControl#{hpxml_bldg.hvac_controls.size + 1}", + heating_setpoint_temp: heating_setpoint_temp, + cooling_setpoint_temp: cooling_setpoint_temp, + weekday_heating_setpoints: weekday_heating_setpoints, + weekend_heating_setpoints: weekend_heating_setpoints, + weekday_cooling_setpoints: weekday_cooling_setpoints, + weekend_cooling_setpoints: weekend_cooling_setpoints, + ceiling_fan_cooling_setpoint_temp_offset: ceiling_fan_cooling_setpoint_temp_offset, + seasons_heating_begin_month: seasons_heating_begin_month, + seasons_heating_begin_day: seasons_heating_begin_day, + seasons_heating_end_month: seasons_heating_end_month, + seasons_heating_end_day: seasons_heating_end_day, + seasons_cooling_begin_month: seasons_cooling_begin_month, + seasons_cooling_begin_day: seasons_cooling_begin_day, + seasons_cooling_end_month: seasons_cooling_end_month, + seasons_cooling_end_day: seasons_cooling_end_day) end - def self.set_ventilation_fans(hpxml, args) + def self.set_ventilation_fans(hpxml_bldg, args) if args[:mech_vent_fan_type] != 'none' if [HPXML::MechVentTypeERV].include?(args[:mech_vent_fan_type]) @@ -5204,7 +5493,7 @@ def self.set_ventilation_fans(hpxml, args) distribution_system_idref = nil if args[:mech_vent_fan_type] == HPXML::MechVentTypeCFIS - hpxml.hvac_distributions.each do |hvac_distribution| + hpxml_bldg.hvac_distributions.each do |hvac_distribution| next unless hvac_distribution.distribution_system_type == HPXML::HVACDistributionTypeAir next if hvac_distribution.air_type != HPXML::AirTypeRegularVelocity @@ -5241,27 +5530,27 @@ def self.set_ventilation_fans(hpxml, args) rated_flow_rate = args[:mech_vent_flow_rate].get end - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: args[:mech_vent_fan_type], - cfis_addtl_runtime_operating_mode: cfis_addtl_runtime_operating_mode, - rated_flow_rate: rated_flow_rate, - hours_in_operation: hours_in_operation, - used_for_whole_building_ventilation: true, - total_recovery_efficiency: total_recovery_efficiency, - total_recovery_efficiency_adjusted: total_recovery_efficiency_adjusted, - sensible_recovery_efficiency: sensible_recovery_efficiency, - sensible_recovery_efficiency_adjusted: sensible_recovery_efficiency_adjusted, - fan_power: fan_power, - distribution_system_idref: distribution_system_idref, - is_shared_system: is_shared_system, - in_unit_flow_rate: in_unit_flow_rate, - fraction_recirculation: fraction_recirculation, - preheating_fuel: preheating_fuel, - preheating_efficiency_cop: preheating_efficiency_cop, - preheating_fraction_load_served: preheating_fraction_load_served, - precooling_fuel: precooling_fuel, - precooling_efficiency_cop: precooling_efficiency_cop, - precooling_fraction_load_served: precooling_fraction_load_served) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: args[:mech_vent_fan_type], + cfis_addtl_runtime_operating_mode: cfis_addtl_runtime_operating_mode, + rated_flow_rate: rated_flow_rate, + hours_in_operation: hours_in_operation, + used_for_whole_building_ventilation: true, + total_recovery_efficiency: total_recovery_efficiency, + total_recovery_efficiency_adjusted: total_recovery_efficiency_adjusted, + sensible_recovery_efficiency: sensible_recovery_efficiency, + sensible_recovery_efficiency_adjusted: sensible_recovery_efficiency_adjusted, + fan_power: fan_power, + distribution_system_idref: distribution_system_idref, + is_shared_system: is_shared_system, + in_unit_flow_rate: in_unit_flow_rate, + fraction_recirculation: fraction_recirculation, + preheating_fuel: preheating_fuel, + preheating_efficiency_cop: preheating_efficiency_cop, + preheating_fraction_load_served: preheating_fraction_load_served, + precooling_fuel: precooling_fuel, + precooling_efficiency_cop: precooling_efficiency_cop, + precooling_fraction_load_served: precooling_fraction_load_served) end if args[:mech_vent_2_fan_type] != 'none' @@ -5286,16 +5575,16 @@ def self.set_ventilation_fans(hpxml, args) hours_in_operation = args[:mech_vent_2_hours_in_operation] fan_power = args[:mech_vent_2_fan_power] - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: args[:mech_vent_2_fan_type], - rated_flow_rate: args[:mech_vent_2_flow_rate], - hours_in_operation: hours_in_operation, - used_for_whole_building_ventilation: true, - total_recovery_efficiency: total_recovery_efficiency, - total_recovery_efficiency_adjusted: total_recovery_efficiency_adjusted, - sensible_recovery_efficiency: sensible_recovery_efficiency, - sensible_recovery_efficiency_adjusted: sensible_recovery_efficiency_adjusted, - fan_power: fan_power) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: args[:mech_vent_2_fan_type], + rated_flow_rate: args[:mech_vent_2_flow_rate], + hours_in_operation: hours_in_operation, + used_for_whole_building_ventilation: true, + total_recovery_efficiency: total_recovery_efficiency, + total_recovery_efficiency_adjusted: total_recovery_efficiency_adjusted, + sensible_recovery_efficiency: sensible_recovery_efficiency, + sensible_recovery_efficiency_adjusted: sensible_recovery_efficiency_adjusted, + fan_power: fan_power) end if !args[:kitchen_fans_quantity].is_initialized || (args[:kitchen_fans_quantity].get > 0) @@ -5319,14 +5608,14 @@ def self.set_ventilation_fans(hpxml, args) quantity = args[:kitchen_fans_quantity].get end - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - rated_flow_rate: rated_flow_rate, - used_for_local_ventilation: true, - hours_in_operation: hours_in_operation, - fan_location: HPXML::LocationKitchen, - fan_power: fan_power, - start_hour: start_hour, - count: quantity) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + rated_flow_rate: rated_flow_rate, + used_for_local_ventilation: true, + hours_in_operation: hours_in_operation, + fan_location: HPXML::LocationKitchen, + fan_power: fan_power, + start_hour: start_hour, + count: quantity) end if !args[:bathroom_fans_quantity].is_initialized || (args[:bathroom_fans_quantity].get > 0) @@ -5350,14 +5639,14 @@ def self.set_ventilation_fans(hpxml, args) quantity = args[:bathroom_fans_quantity].get end - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - rated_flow_rate: rated_flow_rate, - used_for_local_ventilation: true, - hours_in_operation: hours_in_operation, - fan_location: HPXML::LocationBath, - fan_power: fan_power, - start_hour: start_hour, - count: quantity) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + rated_flow_rate: rated_flow_rate, + used_for_local_ventilation: true, + hours_in_operation: hours_in_operation, + fan_location: HPXML::LocationBath, + fan_power: fan_power, + start_hour: start_hour, + count: quantity) end if args[:whole_house_fan_present] @@ -5369,14 +5658,14 @@ def self.set_ventilation_fans(hpxml, args) fan_power = args[:whole_house_fan_power].get end - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - rated_flow_rate: rated_flow_rate, - used_for_seasonal_cooling_load_reduction: true, - fan_power: fan_power) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + rated_flow_rate: rated_flow_rate, + used_for_seasonal_cooling_load_reduction: true, + fan_power: fan_power) end end - def self.set_water_heating_systems(hpxml, args) + def self.set_water_heating_systems(hpxml_bldg, args) water_heater_type = args[:water_heater_type] return if water_heater_type == 'none' @@ -5387,7 +5676,7 @@ def self.set_water_heating_systems(hpxml, args) end if args[:water_heater_location].is_initialized - location = args[:water_heater_location].get + location = get_location(args[:water_heater_location].get, hpxml_bldg.foundations[-1].foundation_type, hpxml_bldg.attics[-1].attic_type) end if args[:water_heater_tank_volume].is_initialized @@ -5426,8 +5715,8 @@ def self.set_water_heating_systems(hpxml, args) fuel_type = nil heating_capacity = nil energy_factor = nil - if hpxml.heating_systems.size > 0 - related_hvac_idref = hpxml.heating_systems[0].id + if hpxml_bldg.heating_systems.size > 0 + related_hvac_idref = hpxml_bldg.heating_systems[0].id end end @@ -5456,13 +5745,13 @@ def self.set_water_heating_systems(hpxml, args) uses_desuperheater = args[:water_heater_uses_desuperheater].get if uses_desuperheater related_hvac_idref = nil - hpxml.cooling_systems.each do |cooling_system| + hpxml_bldg.cooling_systems.each do |cooling_system| next unless [HPXML::HVACTypeCentralAirConditioner, HPXML::HVACTypeMiniSplitAirConditioner].include? cooling_system.cooling_system_type related_hvac_idref = cooling_system.id end - hpxml.heat_pumps.each do |heat_pump| + hpxml_bldg.heat_pumps.each do |heat_pump| next unless [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit, HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type @@ -5486,30 +5775,30 @@ def self.set_water_heating_systems(hpxml, args) end end - hpxml.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml.water_heating_systems.size + 1}", - water_heater_type: water_heater_type, - fuel_type: fuel_type, - location: location, - tank_volume: tank_volume, - fraction_dhw_load_served: 1.0, - energy_factor: energy_factor, - uniform_energy_factor: uniform_energy_factor, - usage_bin: usage_bin, - recovery_efficiency: recovery_efficiency, - uses_desuperheater: uses_desuperheater, - related_hvac_idref: related_hvac_idref, - standby_loss_units: standby_loss_units, - standby_loss_value: standby_loss_value, - jacket_r_value: jacket_r_value, - temperature: temperature, - heating_capacity: heating_capacity, - is_shared_system: is_shared_system, - number_of_units_served: number_of_units_served, - tank_model_type: tank_model_type, - operating_mode: operating_mode) + hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", + water_heater_type: water_heater_type, + fuel_type: fuel_type, + location: location, + tank_volume: tank_volume, + fraction_dhw_load_served: 1.0, + energy_factor: energy_factor, + uniform_energy_factor: uniform_energy_factor, + usage_bin: usage_bin, + recovery_efficiency: recovery_efficiency, + uses_desuperheater: uses_desuperheater, + related_hvac_idref: related_hvac_idref, + standby_loss_units: standby_loss_units, + standby_loss_value: standby_loss_value, + jacket_r_value: jacket_r_value, + temperature: temperature, + heating_capacity: heating_capacity, + is_shared_system: is_shared_system, + number_of_units_served: number_of_units_served, + tank_model_type: tank_model_type, + operating_mode: operating_mode) end - def self.set_hot_water_distribution(hpxml, args) + def self.set_hot_water_distribution(hpxml_bldg, args) return if args[:water_heater_type] == 'none' if args[:dwhr_facilities_connected] != 'none' @@ -5548,36 +5837,36 @@ def self.set_hot_water_distribution(hpxml, args) pipe_r_value = args[:hot_water_distribution_pipe_r].get end - hpxml.hot_water_distributions.add(id: "HotWaterDistribution#{hpxml.hot_water_distributions.size + 1}", - system_type: args[:hot_water_distribution_system_type], - standard_piping_length: standard_piping_length, - recirculation_control_type: recirculation_control_type, - recirculation_piping_length: recirculation_piping_length, - recirculation_branch_piping_length: recirculation_branch_piping_length, - recirculation_pump_power: recirculation_pump_power, - pipe_r_value: pipe_r_value, - dwhr_facilities_connected: dwhr_facilities_connected, - dwhr_equal_flow: dwhr_equal_flow, - dwhr_efficiency: dwhr_efficiency) + hpxml_bldg.hot_water_distributions.add(id: "HotWaterDistribution#{hpxml_bldg.hot_water_distributions.size + 1}", + system_type: args[:hot_water_distribution_system_type], + standard_piping_length: standard_piping_length, + recirculation_control_type: recirculation_control_type, + recirculation_piping_length: recirculation_piping_length, + recirculation_branch_piping_length: recirculation_branch_piping_length, + recirculation_pump_power: recirculation_pump_power, + pipe_r_value: pipe_r_value, + dwhr_facilities_connected: dwhr_facilities_connected, + dwhr_equal_flow: dwhr_equal_flow, + dwhr_efficiency: dwhr_efficiency) end - def self.set_water_fixtures(hpxml, args) + def self.set_water_fixtures(hpxml_bldg, args) return if args[:water_heater_type] == 'none' - hpxml.water_fixtures.add(id: "WaterFixture#{hpxml.water_fixtures.size + 1}", - water_fixture_type: HPXML::WaterFixtureTypeShowerhead, - low_flow: args[:water_fixtures_shower_low_flow]) + hpxml_bldg.water_fixtures.add(id: "WaterFixture#{hpxml_bldg.water_fixtures.size + 1}", + water_fixture_type: HPXML::WaterFixtureTypeShowerhead, + low_flow: args[:water_fixtures_shower_low_flow]) - hpxml.water_fixtures.add(id: "WaterFixture#{hpxml.water_fixtures.size + 1}", - water_fixture_type: HPXML::WaterFixtureTypeFaucet, - low_flow: args[:water_fixtures_sink_low_flow]) + hpxml_bldg.water_fixtures.add(id: "WaterFixture#{hpxml_bldg.water_fixtures.size + 1}", + water_fixture_type: HPXML::WaterFixtureTypeFaucet, + low_flow: args[:water_fixtures_sink_low_flow]) if args[:water_fixtures_usage_multiplier].is_initialized - hpxml.water_heating.water_fixtures_usage_multiplier = args[:water_fixtures_usage_multiplier].get + hpxml_bldg.water_heating.water_fixtures_usage_multiplier = args[:water_fixtures_usage_multiplier].get end end - def self.set_solar_thermal(hpxml, args, epw_file) + def self.set_solar_thermal(hpxml_bldg, args, epw_file) return if args[:solar_thermal_system_type] == 'none' if args[:solar_thermal_solar_fraction] > 0 @@ -5596,25 +5885,25 @@ def self.set_solar_thermal(hpxml, args, epw_file) end end - if hpxml.water_heating_systems.size == 0 + if hpxml_bldg.water_heating_systems.size == 0 fail 'Solar thermal system specified but no water heater found.' end - hpxml.solar_thermal_systems.add(id: "SolarThermalSystem#{hpxml.solar_thermal_systems.size + 1}", - system_type: args[:solar_thermal_system_type], - collector_area: collector_area, - collector_loop_type: collector_loop_type, - collector_type: collector_type, - collector_azimuth: collector_azimuth, - collector_tilt: collector_tilt, - collector_frta: collector_frta, - collector_frul: collector_frul, - storage_volume: storage_volume, - water_heating_system_idref: hpxml.water_heating_systems[0].id, - solar_fraction: solar_fraction) + hpxml_bldg.solar_thermal_systems.add(id: "SolarThermalSystem#{hpxml_bldg.solar_thermal_systems.size + 1}", + system_type: args[:solar_thermal_system_type], + collector_area: collector_area, + collector_loop_type: collector_loop_type, + collector_type: collector_type, + collector_azimuth: collector_azimuth, + collector_tilt: collector_tilt, + collector_frta: collector_frta, + collector_frul: collector_frul, + storage_volume: storage_volume, + water_heating_system_idref: hpxml_bldg.water_heating_systems[0].id, + solar_fraction: solar_fraction) end - def self.set_pv_systems(hpxml, args, epw_file) + def self.set_pv_systems(hpxml_bldg, args, epw_file) [args[:pv_system_present], args[:pv_system_2_present]].each_with_index do |pv_system_present, i| next unless pv_system_present @@ -5643,36 +5932,36 @@ def self.set_pv_systems(hpxml, args, epw_file) end end - hpxml.pv_systems.add(id: "PVSystem#{hpxml.pv_systems.size + 1}", - location: location, - module_type: module_type, - tracking: tracking, - array_azimuth: [args[:pv_system_array_azimuth], args[:pv_system_2_array_azimuth]][i], - array_tilt: Geometry.get_absolute_tilt([args[:pv_system_array_tilt], args[:pv_system_2_array_tilt]][i], args[:geometry_roof_pitch], epw_file), - max_power_output: max_power_output, - system_losses_fraction: system_losses_fraction, - is_shared_system: is_shared_system, - number_of_bedrooms_served: number_of_bedrooms_served) + hpxml_bldg.pv_systems.add(id: "PVSystem#{hpxml_bldg.pv_systems.size + 1}", + location: location, + module_type: module_type, + tracking: tracking, + array_azimuth: [args[:pv_system_array_azimuth], args[:pv_system_2_array_azimuth]][i], + array_tilt: Geometry.get_absolute_tilt([args[:pv_system_array_tilt], args[:pv_system_2_array_tilt]][i], args[:geometry_roof_pitch], epw_file), + max_power_output: max_power_output, + system_losses_fraction: system_losses_fraction, + is_shared_system: is_shared_system, + number_of_bedrooms_served: number_of_bedrooms_served) end - if hpxml.pv_systems.size > 0 + if hpxml_bldg.pv_systems.size > 0 # Add inverter efficiency; assume a single inverter even if multiple PV arrays if args[:pv_system_inverter_efficiency].is_initialized inverter_efficiency = args[:pv_system_inverter_efficiency].get end - hpxml.inverters.add(id: "Inverter#{hpxml.inverters.size + 1}", - inverter_efficiency: inverter_efficiency) - hpxml.pv_systems.each do |pv_system| - pv_system.inverter_idref = hpxml.inverters[-1].id + hpxml_bldg.inverters.add(id: "Inverter#{hpxml_bldg.inverters.size + 1}", + inverter_efficiency: inverter_efficiency) + hpxml_bldg.pv_systems.each do |pv_system| + pv_system.inverter_idref = hpxml_bldg.inverters[-1].id end end end - def self.set_battery(hpxml, args) + def self.set_battery(hpxml_bldg, args) return unless args[:battery_present] if args[:battery_location].is_initialized - location = args[:battery_location].get + location = get_location(args[:battery_location].get, hpxml_bldg.foundations[-1].foundation_type, hpxml_bldg.attics[-1].attic_type) end if args[:battery_power].is_initialized @@ -5691,16 +5980,16 @@ def self.set_battery(hpxml, args) round_trip_efficiency = args[:battery_round_trip_efficiency].get end - hpxml.batteries.add(id: "Battery#{hpxml.batteries.size + 1}", - type: HPXML::BatteryTypeLithiumIon, - location: location, - rated_power_output: rated_power_output, - nominal_capacity_kwh: nominal_capacity_kwh, - usable_capacity_kwh: usable_capacity_kwh, - round_trip_efficiency: round_trip_efficiency) + hpxml_bldg.batteries.add(id: "Battery#{hpxml_bldg.batteries.size + 1}", + type: HPXML::BatteryTypeLithiumIon, + location: location, + rated_power_output: rated_power_output, + nominal_capacity_kwh: nominal_capacity_kwh, + usable_capacity_kwh: usable_capacity_kwh, + round_trip_efficiency: round_trip_efficiency) end - def self.set_lighting(hpxml, args) + def self.set_lighting(hpxml_bldg, args) if args[:lighting_present] has_garage = (args[:geometry_garage_width] * args[:geometry_garage_depth] > 0) @@ -5709,19 +5998,19 @@ def self.set_lighting(hpxml, args) interior_usage_multiplier = args[:lighting_interior_usage_multiplier].get end if interior_usage_multiplier.nil? || interior_usage_multiplier.to_f > 0 - hpxml.lighting_groups.add(id: "LightingGroup#{hpxml.lighting_groups.size + 1}", - location: HPXML::LocationInterior, - fraction_of_units_in_location: args[:lighting_interior_fraction_cfl], - lighting_type: HPXML::LightingTypeCFL) - hpxml.lighting_groups.add(id: "LightingGroup#{hpxml.lighting_groups.size + 1}", - location: HPXML::LocationInterior, - fraction_of_units_in_location: args[:lighting_interior_fraction_lfl], - lighting_type: HPXML::LightingTypeLFL) - hpxml.lighting_groups.add(id: "LightingGroup#{hpxml.lighting_groups.size + 1}", - location: HPXML::LocationInterior, - fraction_of_units_in_location: args[:lighting_interior_fraction_led], - lighting_type: HPXML::LightingTypeLED) - hpxml.lighting.interior_usage_multiplier = interior_usage_multiplier + hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}", + location: HPXML::LocationInterior, + fraction_of_units_in_location: args[:lighting_interior_fraction_cfl], + lighting_type: HPXML::LightingTypeCFL) + hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}", + location: HPXML::LocationInterior, + fraction_of_units_in_location: args[:lighting_interior_fraction_lfl], + lighting_type: HPXML::LightingTypeLFL) + hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}", + location: HPXML::LocationInterior, + fraction_of_units_in_location: args[:lighting_interior_fraction_led], + lighting_type: HPXML::LightingTypeLED) + hpxml_bldg.lighting.interior_usage_multiplier = interior_usage_multiplier end # Exterior @@ -5729,19 +6018,19 @@ def self.set_lighting(hpxml, args) exterior_usage_multiplier = args[:lighting_exterior_usage_multiplier].get end if exterior_usage_multiplier.nil? || exterior_usage_multiplier.to_f > 0 - hpxml.lighting_groups.add(id: "LightingGroup#{hpxml.lighting_groups.size + 1}", - location: HPXML::LocationExterior, - fraction_of_units_in_location: args[:lighting_exterior_fraction_cfl], - lighting_type: HPXML::LightingTypeCFL) - hpxml.lighting_groups.add(id: "LightingGroup#{hpxml.lighting_groups.size + 1}", - location: HPXML::LocationExterior, - fraction_of_units_in_location: args[:lighting_exterior_fraction_lfl], - lighting_type: HPXML::LightingTypeLFL) - hpxml.lighting_groups.add(id: "LightingGroup#{hpxml.lighting_groups.size + 1}", - location: HPXML::LocationExterior, - fraction_of_units_in_location: args[:lighting_exterior_fraction_led], - lighting_type: HPXML::LightingTypeLED) - hpxml.lighting.exterior_usage_multiplier = exterior_usage_multiplier + hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}", + location: HPXML::LocationExterior, + fraction_of_units_in_location: args[:lighting_exterior_fraction_cfl], + lighting_type: HPXML::LightingTypeCFL) + hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}", + location: HPXML::LocationExterior, + fraction_of_units_in_location: args[:lighting_exterior_fraction_lfl], + lighting_type: HPXML::LightingTypeLFL) + hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}", + location: HPXML::LocationExterior, + fraction_of_units_in_location: args[:lighting_exterior_fraction_led], + lighting_type: HPXML::LightingTypeLED) + hpxml_bldg.lighting.exterior_usage_multiplier = exterior_usage_multiplier end # Garage @@ -5750,41 +6039,41 @@ def self.set_lighting(hpxml, args) garage_usage_multiplier = args[:lighting_garage_usage_multiplier].get end if garage_usage_multiplier.nil? || garage_usage_multiplier.to_f > 0 - hpxml.lighting_groups.add(id: "LightingGroup#{hpxml.lighting_groups.size + 1}", - location: HPXML::LocationGarage, - fraction_of_units_in_location: args[:lighting_garage_fraction_cfl], - lighting_type: HPXML::LightingTypeCFL) - hpxml.lighting_groups.add(id: "LightingGroup#{hpxml.lighting_groups.size + 1}", - location: HPXML::LocationGarage, - fraction_of_units_in_location: args[:lighting_garage_fraction_lfl], - lighting_type: HPXML::LightingTypeLFL) - hpxml.lighting_groups.add(id: "LightingGroup#{hpxml.lighting_groups.size + 1}", - location: HPXML::LocationGarage, - fraction_of_units_in_location: args[:lighting_garage_fraction_led], - lighting_type: HPXML::LightingTypeLED) - hpxml.lighting.garage_usage_multiplier = garage_usage_multiplier + hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}", + location: HPXML::LocationGarage, + fraction_of_units_in_location: args[:lighting_garage_fraction_cfl], + lighting_type: HPXML::LightingTypeCFL) + hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}", + location: HPXML::LocationGarage, + fraction_of_units_in_location: args[:lighting_garage_fraction_lfl], + lighting_type: HPXML::LightingTypeLFL) + hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}", + location: HPXML::LocationGarage, + fraction_of_units_in_location: args[:lighting_garage_fraction_led], + lighting_type: HPXML::LightingTypeLED) + hpxml_bldg.lighting.garage_usage_multiplier = garage_usage_multiplier end end end return unless args[:holiday_lighting_present] - hpxml.lighting.holiday_exists = true + hpxml_bldg.lighting.holiday_exists = true if args[:holiday_lighting_daily_kwh].is_initialized - hpxml.lighting.holiday_kwh_per_day = args[:holiday_lighting_daily_kwh].get + hpxml_bldg.lighting.holiday_kwh_per_day = args[:holiday_lighting_daily_kwh].get end if args[:holiday_lighting_period].is_initialized begin_month, begin_day, _begin_hour, end_month, end_day, _end_hour = Schedule.parse_date_time_range(args[:holiday_lighting_period].get) - hpxml.lighting.holiday_period_begin_month = begin_month - hpxml.lighting.holiday_period_begin_day = begin_day - hpxml.lighting.holiday_period_end_month = end_month - hpxml.lighting.holiday_period_end_day = end_day + hpxml_bldg.lighting.holiday_period_begin_month = begin_month + hpxml_bldg.lighting.holiday_period_begin_day = begin_day + hpxml_bldg.lighting.holiday_period_end_month = end_month + hpxml_bldg.lighting.holiday_period_end_day = end_day end end - def self.set_dehumidifier(hpxml, args) + def self.set_dehumidifier(hpxml_bldg, args) return if args[:dehumidifier_type] == 'none' if args[:dehumidifier_efficiency_type] == 'EnergyFactor' @@ -5793,17 +6082,17 @@ def self.set_dehumidifier(hpxml, args) integrated_energy_factor = args[:dehumidifier_efficiency] end - hpxml.dehumidifiers.add(id: "Dehumidifier#{hpxml.dehumidifiers.size + 1}", - type: args[:dehumidifier_type], - capacity: args[:dehumidifier_capacity], - energy_factor: energy_factor, - integrated_energy_factor: integrated_energy_factor, - rh_setpoint: args[:dehumidifier_rh_setpoint], - fraction_served: args[:dehumidifier_fraction_dehumidification_load_served], - location: HPXML::LocationLivingSpace) + hpxml_bldg.dehumidifiers.add(id: "Dehumidifier#{hpxml_bldg.dehumidifiers.size + 1}", + type: args[:dehumidifier_type], + capacity: args[:dehumidifier_capacity], + energy_factor: energy_factor, + integrated_energy_factor: integrated_energy_factor, + rh_setpoint: args[:dehumidifier_rh_setpoint], + fraction_served: args[:dehumidifier_fraction_dehumidification_load_served], + location: HPXML::LocationConditionedSpace) end - def self.set_clothes_washer(hpxml, args) + def self.set_clothes_washer(hpxml_bldg, args) return if args[:water_heater_type] == 'none' return unless args[:clothes_washer_present] @@ -5847,20 +6136,20 @@ def self.set_clothes_washer(hpxml, args) usage_multiplier = args[:clothes_washer_usage_multiplier].get end - hpxml.clothes_washers.add(id: "ClothesWasher#{hpxml.clothes_washers.size + 1}", - location: location, - modified_energy_factor: modified_energy_factor, - integrated_modified_energy_factor: integrated_modified_energy_factor, - rated_annual_kwh: rated_annual_kwh, - label_electric_rate: label_electric_rate, - label_gas_rate: label_gas_rate, - label_annual_gas_cost: label_annual_gas_cost, - label_usage: label_usage, - capacity: capacity, - usage_multiplier: usage_multiplier) + hpxml_bldg.clothes_washers.add(id: "ClothesWasher#{hpxml_bldg.clothes_washers.size + 1}", + location: location, + modified_energy_factor: modified_energy_factor, + integrated_modified_energy_factor: integrated_modified_energy_factor, + rated_annual_kwh: rated_annual_kwh, + label_electric_rate: label_electric_rate, + label_gas_rate: label_gas_rate, + label_annual_gas_cost: label_annual_gas_cost, + label_usage: label_usage, + capacity: capacity, + usage_multiplier: usage_multiplier) end - def self.set_clothes_dryer(hpxml, args) + def self.set_clothes_dryer(hpxml_bldg, args) return if args[:water_heater_type] == 'none' return unless args[:clothes_washer_present] return unless args[:clothes_dryer_present] @@ -5889,17 +6178,17 @@ def self.set_clothes_dryer(hpxml, args) usage_multiplier = args[:clothes_dryer_usage_multiplier].get end - hpxml.clothes_dryers.add(id: "ClothesDryer#{hpxml.clothes_dryers.size + 1}", - location: location, - fuel_type: args[:clothes_dryer_fuel_type], - energy_factor: energy_factor, - combined_energy_factor: combined_energy_factor, - is_vented: is_vented, - vented_flow_rate: vented_flow_rate, - usage_multiplier: usage_multiplier) + hpxml_bldg.clothes_dryers.add(id: "ClothesDryer#{hpxml_bldg.clothes_dryers.size + 1}", + location: location, + fuel_type: args[:clothes_dryer_fuel_type], + energy_factor: energy_factor, + combined_energy_factor: combined_energy_factor, + is_vented: is_vented, + vented_flow_rate: vented_flow_rate, + usage_multiplier: usage_multiplier) end - def self.set_dishwasher(hpxml, args) + def self.set_dishwasher(hpxml_bldg, args) return if args[:water_heater_type] == 'none' return unless args[:dishwasher_present] @@ -5941,19 +6230,19 @@ def self.set_dishwasher(hpxml, args) usage_multiplier = args[:dishwasher_usage_multiplier].get end - hpxml.dishwashers.add(id: "Dishwasher#{hpxml.dishwashers.size + 1}", - location: location, - rated_annual_kwh: rated_annual_kwh, - energy_factor: energy_factor, - label_electric_rate: label_electric_rate, - label_gas_rate: label_gas_rate, - label_annual_gas_cost: label_annual_gas_cost, - label_usage: label_usage, - place_setting_capacity: place_setting_capacity, - usage_multiplier: usage_multiplier) + hpxml_bldg.dishwashers.add(id: "Dishwasher#{hpxml_bldg.dishwashers.size + 1}", + location: location, + rated_annual_kwh: rated_annual_kwh, + energy_factor: energy_factor, + label_electric_rate: label_electric_rate, + label_gas_rate: label_gas_rate, + label_annual_gas_cost: label_annual_gas_cost, + label_usage: label_usage, + place_setting_capacity: place_setting_capacity, + usage_multiplier: usage_multiplier) end - def self.set_refrigerator(hpxml, args) + def self.set_refrigerator(hpxml_bldg, args) return unless args[:refrigerator_present] if args[:refrigerator_rated_annual_kwh].is_initialized @@ -5968,14 +6257,14 @@ def self.set_refrigerator(hpxml, args) usage_multiplier = args[:refrigerator_usage_multiplier].get end - hpxml.refrigerators.add(id: "Refrigerator#{hpxml.refrigerators.size + 1}", - location: location, - rated_annual_kwh: rated_annual_kwh, - primary_indicator: true, - usage_multiplier: usage_multiplier) + hpxml_bldg.refrigerators.add(id: "Refrigerator#{hpxml_bldg.refrigerators.size + 1}", + location: location, + rated_annual_kwh: rated_annual_kwh, + primary_indicator: true, + usage_multiplier: usage_multiplier) end - def self.set_extra_refrigerator(hpxml, args) + def self.set_extra_refrigerator(hpxml_bldg, args) return unless args[:extra_refrigerator_present] if args[:extra_refrigerator_rated_annual_kwh].is_initialized @@ -5990,14 +6279,14 @@ def self.set_extra_refrigerator(hpxml, args) usage_multiplier = args[:extra_refrigerator_usage_multiplier].get end - hpxml.refrigerators.add(id: "Refrigerator#{hpxml.refrigerators.size + 1}", - location: location, - rated_annual_kwh: rated_annual_kwh, - primary_indicator: false, - usage_multiplier: usage_multiplier) + hpxml_bldg.refrigerators.add(id: "Refrigerator#{hpxml_bldg.refrigerators.size + 1}", + location: location, + rated_annual_kwh: rated_annual_kwh, + primary_indicator: false, + usage_multiplier: usage_multiplier) end - def self.set_freezer(hpxml, args) + def self.set_freezer(hpxml_bldg, args) return unless args[:freezer_present] if args[:freezer_rated_annual_kwh].is_initialized @@ -6012,13 +6301,13 @@ def self.set_freezer(hpxml, args) usage_multiplier = args[:freezer_usage_multiplier].get end - hpxml.freezers.add(id: "Freezer#{hpxml.freezers.size + 1}", - location: location, - rated_annual_kwh: rated_annual_kwh, - usage_multiplier: usage_multiplier) + hpxml_bldg.freezers.add(id: "Freezer#{hpxml_bldg.freezers.size + 1}", + location: location, + rated_annual_kwh: rated_annual_kwh, + usage_multiplier: usage_multiplier) end - def self.set_cooking_range_oven(hpxml, args) + def self.set_cooking_range_oven(hpxml_bldg, args) return unless args[:cooking_range_oven_present] if args[:cooking_range_oven_location].is_initialized @@ -6033,21 +6322,21 @@ def self.set_cooking_range_oven(hpxml, args) usage_multiplier = args[:cooking_range_oven_usage_multiplier].get end - hpxml.cooking_ranges.add(id: "CookingRange#{hpxml.cooking_ranges.size + 1}", - location: location, - fuel_type: args[:cooking_range_oven_fuel_type], - is_induction: is_induction, - usage_multiplier: usage_multiplier) + hpxml_bldg.cooking_ranges.add(id: "CookingRange#{hpxml_bldg.cooking_ranges.size + 1}", + location: location, + fuel_type: args[:cooking_range_oven_fuel_type], + is_induction: is_induction, + usage_multiplier: usage_multiplier) if args[:cooking_range_oven_is_convection].is_initialized is_convection = args[:cooking_range_oven_is_convection].get end - hpxml.ovens.add(id: "Oven#{hpxml.ovens.size + 1}", - is_convection: is_convection) + hpxml_bldg.ovens.add(id: "Oven#{hpxml_bldg.ovens.size + 1}", + is_convection: is_convection) end - def self.set_ceiling_fans(hpxml, args) + def self.set_ceiling_fans(hpxml_bldg, args) return unless args[:ceiling_fan_present] if args[:ceiling_fan_efficiency].is_initialized @@ -6058,12 +6347,12 @@ def self.set_ceiling_fans(hpxml, args) quantity = args[:ceiling_fan_quantity].get end - hpxml.ceiling_fans.add(id: "CeilingFan#{hpxml.ceiling_fans.size + 1}", - efficiency: efficiency, - count: quantity) + hpxml_bldg.ceiling_fans.add(id: "CeilingFan#{hpxml_bldg.ceiling_fans.size + 1}", + efficiency: efficiency, + count: quantity) end - def self.set_misc_plug_loads_television(hpxml, args) + def self.set_misc_plug_loads_television(hpxml_bldg, args) return unless args[:misc_plug_loads_television_present] if args[:misc_plug_loads_television_annual_kwh].is_initialized @@ -6074,13 +6363,13 @@ def self.set_misc_plug_loads_television(hpxml, args) usage_multiplier = args[:misc_plug_loads_television_usage_multiplier].get end - hpxml.plug_loads.add(id: "PlugLoad#{hpxml.plug_loads.size + 1}", - plug_load_type: HPXML::PlugLoadTypeTelevision, - kwh_per_year: kwh_per_year, - usage_multiplier: usage_multiplier) + hpxml_bldg.plug_loads.add(id: "PlugLoad#{hpxml_bldg.plug_loads.size + 1}", + plug_load_type: HPXML::PlugLoadTypeTelevision, + kwh_per_year: kwh_per_year, + usage_multiplier: usage_multiplier) end - def self.set_misc_plug_loads_other(hpxml, args) + def self.set_misc_plug_loads_other(hpxml_bldg, args) if args[:misc_plug_loads_other_annual_kwh].is_initialized kwh_per_year = args[:misc_plug_loads_other_annual_kwh].get end @@ -6097,15 +6386,15 @@ def self.set_misc_plug_loads_other(hpxml, args) usage_multiplier = args[:misc_plug_loads_other_usage_multiplier].get end - hpxml.plug_loads.add(id: "PlugLoad#{hpxml.plug_loads.size + 1}", - plug_load_type: HPXML::PlugLoadTypeOther, - kwh_per_year: kwh_per_year, - frac_sensible: frac_sensible, - frac_latent: frac_latent, - usage_multiplier: usage_multiplier) + hpxml_bldg.plug_loads.add(id: "PlugLoad#{hpxml_bldg.plug_loads.size + 1}", + plug_load_type: HPXML::PlugLoadTypeOther, + kwh_per_year: kwh_per_year, + frac_sensible: frac_sensible, + frac_latent: frac_latent, + usage_multiplier: usage_multiplier) end - def self.set_misc_plug_loads_well_pump(hpxml, args) + def self.set_misc_plug_loads_well_pump(hpxml_bldg, args) return unless args[:misc_plug_loads_well_pump_present] if args[:misc_plug_loads_well_pump_annual_kwh].is_initialized @@ -6116,13 +6405,13 @@ def self.set_misc_plug_loads_well_pump(hpxml, args) usage_multiplier = args[:misc_plug_loads_well_pump_usage_multiplier].get end - hpxml.plug_loads.add(id: "PlugLoad#{hpxml.plug_loads.size + 1}", - plug_load_type: HPXML::PlugLoadTypeWellPump, - kwh_per_year: kwh_per_year, - usage_multiplier: usage_multiplier) + hpxml_bldg.plug_loads.add(id: "PlugLoad#{hpxml_bldg.plug_loads.size + 1}", + plug_load_type: HPXML::PlugLoadTypeWellPump, + kwh_per_year: kwh_per_year, + usage_multiplier: usage_multiplier) end - def self.set_misc_plug_loads_vehicle(hpxml, args) + def self.set_misc_plug_loads_vehicle(hpxml_bldg, args) return unless args[:misc_plug_loads_vehicle_present] if args[:misc_plug_loads_vehicle_annual_kwh].is_initialized @@ -6133,13 +6422,13 @@ def self.set_misc_plug_loads_vehicle(hpxml, args) usage_multiplier = args[:misc_plug_loads_vehicle_usage_multiplier].get end - hpxml.plug_loads.add(id: "PlugLoad#{hpxml.plug_loads.size + 1}", - plug_load_type: HPXML::PlugLoadTypeElectricVehicleCharging, - kwh_per_year: kwh_per_year, - usage_multiplier: usage_multiplier) + hpxml_bldg.plug_loads.add(id: "PlugLoad#{hpxml_bldg.plug_loads.size + 1}", + plug_load_type: HPXML::PlugLoadTypeElectricVehicleCharging, + kwh_per_year: kwh_per_year, + usage_multiplier: usage_multiplier) end - def self.set_misc_fuel_loads_grill(hpxml, args) + def self.set_misc_fuel_loads_grill(hpxml_bldg, args) return unless args[:misc_fuel_loads_grill_present] if args[:misc_fuel_loads_grill_annual_therm].is_initialized @@ -6150,14 +6439,14 @@ def self.set_misc_fuel_loads_grill(hpxml, args) usage_multiplier = args[:misc_fuel_loads_grill_usage_multiplier].get end - hpxml.fuel_loads.add(id: "FuelLoad#{hpxml.fuel_loads.size + 1}", - fuel_load_type: HPXML::FuelLoadTypeGrill, - fuel_type: args[:misc_fuel_loads_grill_fuel_type], - therm_per_year: therm_per_year, - usage_multiplier: usage_multiplier) + hpxml_bldg.fuel_loads.add(id: "FuelLoad#{hpxml_bldg.fuel_loads.size + 1}", + fuel_load_type: HPXML::FuelLoadTypeGrill, + fuel_type: args[:misc_fuel_loads_grill_fuel_type], + therm_per_year: therm_per_year, + usage_multiplier: usage_multiplier) end - def self.set_misc_fuel_loads_lighting(hpxml, args) + def self.set_misc_fuel_loads_lighting(hpxml_bldg, args) return unless args[:misc_fuel_loads_lighting_present] if args[:misc_fuel_loads_lighting_annual_therm].is_initialized @@ -6168,14 +6457,14 @@ def self.set_misc_fuel_loads_lighting(hpxml, args) usage_multiplier = args[:misc_fuel_loads_lighting_usage_multiplier].get end - hpxml.fuel_loads.add(id: "FuelLoad#{hpxml.fuel_loads.size + 1}", - fuel_load_type: HPXML::FuelLoadTypeLighting, - fuel_type: args[:misc_fuel_loads_lighting_fuel_type], - therm_per_year: therm_per_year, - usage_multiplier: usage_multiplier) + hpxml_bldg.fuel_loads.add(id: "FuelLoad#{hpxml_bldg.fuel_loads.size + 1}", + fuel_load_type: HPXML::FuelLoadTypeLighting, + fuel_type: args[:misc_fuel_loads_lighting_fuel_type], + therm_per_year: therm_per_year, + usage_multiplier: usage_multiplier) end - def self.set_misc_fuel_loads_fireplace(hpxml, args) + def self.set_misc_fuel_loads_fireplace(hpxml_bldg, args) return unless args[:misc_fuel_loads_fireplace_present] if args[:misc_fuel_loads_fireplace_annual_therm].is_initialized @@ -6194,16 +6483,16 @@ def self.set_misc_fuel_loads_fireplace(hpxml, args) usage_multiplier = args[:misc_fuel_loads_fireplace_usage_multiplier].get end - hpxml.fuel_loads.add(id: "FuelLoad#{hpxml.fuel_loads.size + 1}", - fuel_load_type: HPXML::FuelLoadTypeFireplace, - fuel_type: args[:misc_fuel_loads_fireplace_fuel_type], - therm_per_year: therm_per_year, - frac_sensible: frac_sensible, - frac_latent: frac_latent, - usage_multiplier: usage_multiplier) + hpxml_bldg.fuel_loads.add(id: "FuelLoad#{hpxml_bldg.fuel_loads.size + 1}", + fuel_load_type: HPXML::FuelLoadTypeFireplace, + fuel_type: args[:misc_fuel_loads_fireplace_fuel_type], + therm_per_year: therm_per_year, + frac_sensible: frac_sensible, + frac_latent: frac_latent, + usage_multiplier: usage_multiplier) end - def self.set_pool(hpxml, args) + def self.set_pool(hpxml_bldg, args) return unless args[:pool_present] if args[:pool_pump_annual_kwh].is_initialized @@ -6234,101 +6523,101 @@ def self.set_pool(hpxml, args) heater_usage_multiplier = args[:pool_heater_usage_multiplier].get end - hpxml.pools.add(id: "Pool#{hpxml.pools.size + 1}", - type: HPXML::TypeUnknown, - pump_type: HPXML::TypeUnknown, - pump_kwh_per_year: pump_kwh_per_year, - pump_usage_multiplier: pump_usage_multiplier, - heater_type: pool_heater_type, - heater_load_units: heater_load_units, - heater_load_value: heater_load_value, - heater_usage_multiplier: heater_usage_multiplier) + hpxml_bldg.pools.add(id: "Pool#{hpxml_bldg.pools.size + 1}", + type: HPXML::TypeUnknown, + pump_type: HPXML::TypeUnknown, + pump_kwh_per_year: pump_kwh_per_year, + pump_usage_multiplier: pump_usage_multiplier, + heater_type: pool_heater_type, + heater_load_units: heater_load_units, + heater_load_value: heater_load_value, + heater_usage_multiplier: heater_usage_multiplier) end - def self.set_hot_tub(hpxml, args) - return unless args[:hot_tub_present] + def self.set_permanent_spa(hpxml_bldg, args) + return unless args[:permanent_spa_present] - if args[:hot_tub_pump_annual_kwh].is_initialized - pump_kwh_per_year = args[:hot_tub_pump_annual_kwh].get + if args[:permanent_spa_pump_annual_kwh].is_initialized + pump_kwh_per_year = args[:permanent_spa_pump_annual_kwh].get end - if args[:hot_tub_pump_usage_multiplier].is_initialized - pump_usage_multiplier = args[:hot_tub_pump_usage_multiplier].get + if args[:permanent_spa_pump_usage_multiplier].is_initialized + pump_usage_multiplier = args[:permanent_spa_pump_usage_multiplier].get end - hot_tub_heater_type = args[:hot_tub_heater_type] + permanent_spa_heater_type = args[:permanent_spa_heater_type] - if [HPXML::HeaterTypeElectricResistance, HPXML::HeaterTypeHeatPump].include?(hot_tub_heater_type) - if args[:hot_tub_heater_annual_kwh].is_initialized + if [HPXML::HeaterTypeElectricResistance, HPXML::HeaterTypeHeatPump].include?(permanent_spa_heater_type) + if args[:permanent_spa_heater_annual_kwh].is_initialized heater_load_units = HPXML::UnitsKwhPerYear - heater_load_value = args[:hot_tub_heater_annual_kwh].get + heater_load_value = args[:permanent_spa_heater_annual_kwh].get end end - if [HPXML::HeaterTypeGas].include?(hot_tub_heater_type) - if args[:hot_tub_heater_annual_therm].is_initialized + if [HPXML::HeaterTypeGas].include?(permanent_spa_heater_type) + if args[:permanent_spa_heater_annual_therm].is_initialized heater_load_units = HPXML::UnitsThermPerYear - heater_load_value = args[:hot_tub_heater_annual_therm].get + heater_load_value = args[:permanent_spa_heater_annual_therm].get end end - if args[:hot_tub_heater_usage_multiplier].is_initialized - heater_usage_multiplier = args[:hot_tub_heater_usage_multiplier].get + if args[:permanent_spa_heater_usage_multiplier].is_initialized + heater_usage_multiplier = args[:permanent_spa_heater_usage_multiplier].get end - hpxml.hot_tubs.add(id: "HotTub#{hpxml.hot_tubs.size + 1}", - type: HPXML::TypeUnknown, - pump_type: HPXML::TypeUnknown, - pump_kwh_per_year: pump_kwh_per_year, - pump_usage_multiplier: pump_usage_multiplier, - heater_type: hot_tub_heater_type, - heater_load_units: heater_load_units, - heater_load_value: heater_load_value, - heater_usage_multiplier: heater_usage_multiplier) + hpxml_bldg.permanent_spas.add(id: "PermanentSpa#{hpxml_bldg.permanent_spas.size + 1}", + type: HPXML::TypeUnknown, + pump_type: HPXML::TypeUnknown, + pump_kwh_per_year: pump_kwh_per_year, + pump_usage_multiplier: pump_usage_multiplier, + heater_type: permanent_spa_heater_type, + heater_load_units: heater_load_units, + heater_load_value: heater_load_value, + heater_usage_multiplier: heater_usage_multiplier) end - def self.collapse_surfaces(hpxml, args) + def self.collapse_surfaces(hpxml_bldg, args) if args[:combine_like_surfaces].is_initialized && args[:combine_like_surfaces].get # Collapse some surfaces whose azimuth is a minor effect to simplify HPXMLs. - (hpxml.roofs + hpxml.rim_joists + hpxml.walls + hpxml.foundation_walls).each do |surface| + (hpxml_bldg.roofs + hpxml_bldg.rim_joists + hpxml_bldg.walls + hpxml_bldg.foundation_walls).each do |surface| surface.azimuth = nil end - hpxml.collapse_enclosure_surfaces() + hpxml_bldg.collapse_enclosure_surfaces() else # Collapse surfaces so that we don't get, e.g., individual windows # or the front wall split because of the door. Exclude foundation walls # from the list so we get all 4 foundation walls. - hpxml.collapse_enclosure_surfaces([:roofs, :walls, :rim_joists, :floors, - :slabs, :windows, :skylights, :doors]) + hpxml_bldg.collapse_enclosure_surfaces([:roofs, :walls, :rim_joists, :floors, + :slabs, :windows, :skylights, :doors]) end # After surfaces are collapsed, round all areas - (hpxml.roofs + - hpxml.rim_joists + - hpxml.walls + - hpxml.foundation_walls + - hpxml.floors + - hpxml.slabs + - hpxml.windows + - hpxml.skylights + - hpxml.doors).each do |s| + (hpxml_bldg.roofs + + hpxml_bldg.rim_joists + + hpxml_bldg.walls + + hpxml_bldg.foundation_walls + + hpxml_bldg.floors + + hpxml_bldg.slabs + + hpxml_bldg.windows + + hpxml_bldg.skylights + + hpxml_bldg.doors).each do |s| s.area = s.area.round(1) end end - def self.renumber_hpxml_ids(hpxml) + def self.renumber_hpxml_ids(hpxml_bldg) # Renumber surfaces - { hpxml.walls => 'Wall', - hpxml.foundation_walls => 'FoundationWall', - hpxml.rim_joists => 'RimJoist', - hpxml.floors => 'Floor', - hpxml.roofs => 'Roof', - hpxml.slabs => 'Slab', - hpxml.windows => 'Window', - hpxml.doors => 'Door', - hpxml.skylights => 'Skylight' }.each do |surfs, surf_name| + { hpxml_bldg.walls => 'Wall', + hpxml_bldg.foundation_walls => 'FoundationWall', + hpxml_bldg.rim_joists => 'RimJoist', + hpxml_bldg.floors => 'Floor', + hpxml_bldg.roofs => 'Roof', + hpxml_bldg.slabs => 'Slab', + hpxml_bldg.windows => 'Window', + hpxml_bldg.doors => 'Door', + hpxml_bldg.skylights => 'Skylight' }.each do |surfs, surf_name| surfs.each_with_index do |surf, i| - (hpxml.attics + hpxml.foundations).each do |attic_or_fnd| + (hpxml_bldg.attics + hpxml_bldg.foundations).each do |attic_or_fnd| if attic_or_fnd.respond_to?(:attached_to_roof_idrefs) && !attic_or_fnd.attached_to_roof_idrefs.nil? && !attic_or_fnd.attached_to_roof_idrefs.delete(surf.id).nil? attic_or_fnd.attached_to_roof_idrefs << "#{surf_name}#{i + 1}" end @@ -6348,12 +6637,12 @@ def self.renumber_hpxml_ids(hpxml) attic_or_fnd.attached_to_foundation_wall_idrefs << "#{surf_name}#{i + 1}" end end - (hpxml.windows + hpxml.doors).each do |subsurf| + (hpxml_bldg.windows + hpxml_bldg.doors).each do |subsurf| if subsurf.respond_to?(:wall_idref) && (subsurf.wall_idref == surf.id) subsurf.wall_idref = "#{surf_name}#{i + 1}" end end - hpxml.skylights.each do |subsurf| + hpxml_bldg.skylights.each do |subsurf| if subsurf.respond_to?(:roof_idref) && (subsurf.roof_idref == surf.id) subsurf.roof_idref = "#{surf_name}#{i + 1}" end diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml b/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml index 45eb7f88..895e9df6 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml @@ -1,10 +1,10 @@ - 3.0 + 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 61a17495-a6d8-4328-a2c6-341c8ef4300c - 20230519T183248Z + 73f05c97-2d2b-4e1e-8709-67b264ec605e + 2023-11-13T20:11:04Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -19,6 +19,14 @@ true false
+ + existing_hpxml_path + Existing HPXML File Path + Absolute/relative path of the existing HPXML file. If not provided, a new HPXML file with one Building element is created. If provided, a new Building element will be appended to this HPXML file (e.g., to create a multifamily HPXML file describing multiple dwelling units). + String + false + false + software_info_program_used Software Info: Program Used @@ -84,7 +92,7 @@ simulation_control_timestep Simulation Control: Timestep - Value must be a divisor of 60. If not provided, the OS-HPXML default is used. + Value must be a divisor of 60. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-simulation-control'>HPXML Simulation Control</a>) is used. Integer min false @@ -93,7 +101,7 @@ simulation_control_run_period Simulation Control: Run Period - Enter a date like "Jan 1 - Dec 31". If not provided, the OS-HPXML default is used. + Enter a date like 'Jan 1 - Dec 31'. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-simulation-control'>HPXML Simulation Control</a>) is used. String false false @@ -101,7 +109,7 @@ simulation_control_run_period_calendar_year Simulation Control: Run Period Calendar Year - This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file. If not provided, the OS-HPXML default is used. + This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-simulation-control'>HPXML Simulation Control</a>) is used. Integer year false @@ -110,7 +118,7 @@ simulation_control_daylight_saving_enabled Simulation Control: Daylight Saving Enabled - Whether to use daylight saving. If not provided, the OS-HPXML default is used. + Whether to use daylight saving. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-building-site'>HPXML Building Site</a>) is used. Boolean false false @@ -128,7 +136,7 @@ simulation_control_daylight_saving_period Simulation Control: Daylight Saving Period - Enter a date like "Mar 15 - Dec 15". If not provided, the OS-HPXML default is used. + Enter a date like 'Mar 15 - Dec 15'. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-building-site'>HPXML Building Site</a>) is used. String false false @@ -136,7 +144,7 @@ simulation_control_temperature_capacitance_multiplier Simulation Control: Temperature Capacitance Multiplier - Affects the transient calculation of indoor air temperatures. If not provided, the OS-HPXML default is used. + Affects the transient calculation of indoor air temperatures. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-simulation-control'>HPXML Simulation Control</a>) is used. String false false @@ -144,7 +152,7 @@ site_type Site: Type - The type of site. If not provided, the OS-HPXML default is used. + The type of site. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. Choice false false @@ -166,7 +174,7 @@ site_shielding_of_home Site: Shielding of Home - Presence of nearby buildings, trees, obstructions for infiltration model. If not provided, the OS-HPXML default is used. + Presence of nearby buildings, trees, obstructions for infiltration model. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. Choice false false @@ -188,7 +196,7 @@ site_ground_conductivity Site: Ground Conductivity - Conductivity of the ground soil. If not provided, the OS-HPXML default is used. + Conductivity of the ground soil. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. Double Btu/hr-ft-F false @@ -532,6 +540,14 @@ false false + + unit_multiplier + Building Construction: Unit Multiplier + The number of similar dwelling units. EnergyPlus simulation results will be multiplied this value. If not provided, defaults to 1. + Integer + false + false + geometry_unit_type Geometry: Unit Type @@ -553,6 +569,10 @@ apartment unit apartment unit
+ + manufactured home + manufactured home +
@@ -684,7 +704,7 @@ geometry_unit_num_bathrooms Geometry: Unit Number of Bathrooms - The number of bathrooms in the unit. If not provided, the OS-HPXML default is used. + The number of bathrooms in the unit. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-building-construction'>HPXML Building Construction</a>) is used. Integer # false @@ -741,7 +761,7 @@ geometry_garage_protrusion Geometry: Garage Protrusion - The fraction of the garage that is protruding from the living space. Only applies to single-family detached units. + The fraction of the garage that is protruding from the conditioned space. Only applies to single-family detached units. Double Frac true @@ -808,6 +828,14 @@ AboveApartment AboveApartment
+ + BellyAndWingWithSkirt + BellyAndWingWithSkirt + + + BellyAndWingNoSkirt + BellyAndWingNoSkirt +
@@ -1001,7 +1029,7 @@ neighbor_front_height Neighbor: Front Height - The height of the neighboring building to the front. If not provided, the OS-HPXML default is used. + The height of the neighboring building to the front. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. Double ft false @@ -1010,7 +1038,7 @@ neighbor_back_height Neighbor: Back Height - The height of the neighboring building to the back. If not provided, the OS-HPXML default is used. + The height of the neighboring building to the back. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. Double ft false @@ -1019,7 +1047,7 @@ neighbor_left_height Neighbor: Left Height - The height of the neighboring building to the left. If not provided, the OS-HPXML default is used. + The height of the neighboring building to the left. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. Double ft false @@ -1028,7 +1056,7 @@ neighbor_right_height Neighbor: Right Height - The height of the neighboring building to the right. If not provided, the OS-HPXML default is used. + The height of the neighboring building to the right. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-site'>HPXML Site</a>) is used. Double ft false @@ -1084,7 +1112,7 @@ foundation_wall_type Foundation Wall: Type - The material type of the foundation wall. If not provided, the OS-HPXML default is used. + The material type of the foundation wall. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-foundation-walls'>HPXML Foundation Walls</a>) is used. Choice false false @@ -1126,7 +1154,7 @@ foundation_wall_thickness Foundation Wall: Thickness - The thickness of the foundation wall. If not provided, the OS-HPXML default is used. + The thickness of the foundation wall. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-foundation-walls'>HPXML Foundation Walls</a>) is used. Double in false @@ -1165,7 +1193,7 @@ foundation_wall_insulation_distance_to_top Foundation Wall: Insulation Distance To Top - The distance from the top of the foundation wall to the top of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default is used. + The distance from the top of the foundation wall to the top of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-foundation-walls'>HPXML Foundation Walls</a>) is used. Double ft false @@ -1174,7 +1202,7 @@ foundation_wall_insulation_distance_to_bottom Foundation Wall: Insulation Distance To Bottom - The distance from the top of the foundation wall to the bottom of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default is used. + The distance from the top of the foundation wall to the bottom of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-foundation-walls'>HPXML Foundation Walls</a>) is used. Double ft false @@ -1241,7 +1269,7 @@ slab_thickness Slab: Thickness - The thickness of the slab. Zero can be entered if there is a dirt floor instead of a slab. If not provided, the OS-HPXML default is used. + The thickness of the slab. Zero can be entered if there is a dirt floor instead of a slab. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-slabs'>HPXML Slabs</a>) is used. Double in false @@ -1250,7 +1278,7 @@ slab_carpet_fraction Slab: Carpet Fraction - Fraction of the slab floor area that is carpeted. If not provided, the OS-HPXML default is used. + Fraction of the slab floor area that is carpeted. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-slabs'>HPXML Slabs</a>) is used. Double Frac false @@ -1259,7 +1287,7 @@ slab_carpet_r Slab: Carpet R-value - R-value of the slab carpet. If not provided, the OS-HPXML default is used. + R-value of the slab carpet. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-slabs'>HPXML Slabs</a>) is used. Double h-ft^2-R/Btu false @@ -1278,7 +1306,7 @@ roof_material_type Roof: Material Type - The material type of the roof. If not provided, the OS-HPXML default is used. + The material type of the roof. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-roofs'>HPXML Roofs</a>) is used. Choice false false @@ -1324,7 +1352,7 @@ roof_color Roof: Color - The color of the roof. If not provided, the OS-HPXML default is used. + The color of the roof. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-roofs'>HPXML Roofs</a>) is used. Choice false false @@ -1383,11 +1411,10 @@ roof_radiant_barrier_grade Roof: Radiant Barrier Grade - The grade of the radiant barrier. If not provided, the OS-HPXML default is used. + The grade of the radiant barrier. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-roofs'>HPXML Roofs</a>) is used. Choice false false - 1 1 @@ -1461,7 +1488,7 @@ wall_siding_type Wall: Siding Type - The siding type of the walls. Also applies to rim joists. If not provided, the OS-HPXML default is used. + The siding type of the walls. Also applies to rim joists. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-walls'>HPXML Walls</a>) is used. Choice false false @@ -1515,7 +1542,7 @@ wall_color Wall: Color - The color of the walls. Also applies to rim joists. If not provided, the OS-HPXML default is used. + The color of the walls. Also applies to rim joists. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-walls'>HPXML Walls</a>) is used. Choice false false @@ -1645,7 +1672,7 @@ window_fraction_operable Windows: Fraction Operable - Fraction of windows that are operable. If not provided, the OS-HPXML default is used. + Fraction of windows that are operable. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-windows'>HPXML Windows</a>) is used. Double Frac false @@ -1654,7 +1681,7 @@ window_natvent_availability Windows: Natural Ventilation Availability - For operable windows, the number of days/week that windows can be opened by occupants for natural ventilation. If not provided, the OS-HPXML default is used. + For operable windows, the number of days/week that windows can be opened by occupants for natural ventilation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-windows'>HPXML Windows</a>) is used. Integer Days/week false @@ -1682,7 +1709,7 @@ window_interior_shading_winter Windows: Winter Interior Shading - Interior shading coefficient for the winter season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used. + Interior shading coefficient for the winter season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-windows'>HPXML Windows</a>) is used. Double Frac false @@ -1691,7 +1718,7 @@ window_interior_shading_summer Windows: Summer Interior Shading - Interior shading coefficient for the summer season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used. + Interior shading coefficient for the summer season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-windows'>HPXML Windows</a>) is used. Double Frac false @@ -1700,7 +1727,7 @@ window_exterior_shading_winter Windows: Winter Exterior Shading - Exterior shading coefficient for the winter season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used. + Exterior shading coefficient for the winter season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-windows'>HPXML Windows</a>) is used. Double Frac false @@ -1709,7 +1736,7 @@ window_exterior_shading_summer Windows: Summer Exterior Shading - Exterior shading coefficient for the summer season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used. + Exterior shading coefficient for the summer season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-windows'>HPXML Windows</a>) is used. Double Frac false @@ -1718,7 +1745,7 @@ window_shading_summer_season Windows: Shading Summer Season - Enter a date like "May 1 - Sep 30". Defines the summer season for purposes of shading coefficients; the rest of the year is assumed to be winter. If not provided, the OS-HPXML default is used. + Enter a date like 'May 1 - Sep 30'. Defines the summer season for purposes of shading coefficients; the rest of the year is assumed to be winter. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-windows'>HPXML Windows</a>) is used. String false false @@ -2029,7 +2056,7 @@ air_leakage_has_flue_or_chimney_in_conditioned_space Air Leakage: Has Flue or Chimney in Conditioned Space - Presence of flue or chimney with combustion air from conditioned space; used for infiltration model. If not provided, the OS-HPXML default is used. + Presence of flue or chimney with combustion air from conditioned space; used for infiltration model. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#flue-or-chimney'>Flue or Chimney</a>) is used. Boolean false false @@ -2082,17 +2109,13 @@ Stove - PortableHeater - PortableHeater + SpaceHeater + SpaceHeater Fireplace Fireplace - - FixedHeater - FixedHeater - Shared Boiler w/ Baseboard Shared Boiler w/ Baseboard @@ -2155,7 +2178,7 @@ heating_system_heating_capacity Heating System: Heating Capacity - The output heating capacity of the heating system. If not provided, the OS-HPXML autosized default is used. + The output heating capacity of the heating system. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-heating-systems'>HPXML Heating Systems</a>) is used. Double Btu/hr false @@ -2263,7 +2286,7 @@ cooling_system_cooling_compressor_type Cooling System: Cooling Compressor Type - The compressor type of the cooling system. Only applies to central air conditioner. If not provided, the OS-HPXML default is used. + The compressor type of the cooling system. Only applies to central air conditioner and mini-split. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#central-air-conditioner'>Central Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-air-conditioner'>Mini-Split Air Conditioner</a>) is used. Choice false false @@ -2285,7 +2308,7 @@ cooling_system_cooling_sensible_heat_fraction Cooling System: Cooling Sensible Heat Fraction - The sensible heat fraction of the cooling system. Ignored for evaporative cooler. If not provided, the OS-HPXML default is used. + The sensible heat fraction of the cooling system. Ignored for evaporative cooler. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#central-air-conditioner'>Central Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner'>Room Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-air-conditioner'>Packaged Terminal Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-air-conditioner'>Mini-Split Air Conditioner</a>) is used. Double Frac false @@ -2294,7 +2317,7 @@ cooling_system_cooling_capacity Cooling System: Cooling Capacity - The output cooling capacity of the cooling system. If not provided, the OS-HPXML autosized default is used. + The output cooling capacity of the cooling system. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#central-air-conditioner'>Central Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner'>Room Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-air-conditioner'>Packaged Terminal Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#evaporative-cooler'>Evaporative Cooler</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-air-conditioner'>Mini-Split Air Conditioner</a>) is used. Double Btu/hr false @@ -2350,7 +2373,7 @@ cooling_system_crankcase_heater_watts Cooling System: Crankcase Heater Power Watts - Cooling system crankcase heater power consumption in Watts. Applies only to central air conditioner, mini-split, packaged terminal air conditioner and room air conditioner. If not provided, the OS-HPXML default is used. + Cooling system crankcase heater power consumption in Watts. Applies only to central air conditioner, room air conditioner, packaged terminal air conditioner and mini-split. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#central-air-conditioner'>Central Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner'>Room Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-air-conditioner'>Packaged Terminal Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-air-conditioner'>Mini-Split Air Conditioner</a>) is used. Double W false @@ -2406,7 +2429,7 @@ cooling_system_integrated_heating_system_capacity Cooling System: Integrated Heating System Heating Capacity - The output heating capacity of the heating system integrated into cooling system. If not provided, the OS-HPXML autosized default is used. Only used for packaged terminal air conditioner and room air conditioner. + The output heating capacity of the heating system integrated into cooling system. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner'>Room Air Conditioner</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-air-conditioner'>Packaged Terminal Air Conditioner</a>) is used. Only used for room air conditioner and packaged terminal air conditioner. Double Btu/hr false @@ -2527,7 +2550,7 @@ heat_pump_cooling_compressor_type Heat Pump: Cooling Compressor Type - The compressor type of the heat pump. Only applies to air-to-air. If not provided, the OS-HPXML default is used. + The compressor type of the heat pump. Only applies to air-to-air and mini-split. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-to-air-heat-pump'>Air-to-Air Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-heat-pump'>Mini-Split Heat Pump</a>) is used. Choice false false @@ -2549,7 +2572,7 @@ heat_pump_cooling_sensible_heat_fraction Heat Pump: Cooling Sensible Heat Fraction - The sensible heat fraction of the heat pump. If not provided, the OS-HPXML default is used. + The sensible heat fraction of the heat pump. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-to-air-heat-pump'>Air-to-Air Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-heat-pump'>Mini-Split Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-heat-pump'>Packaged Terminal Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner-w-reverse-cycle'>Room Air Conditioner w/ Reverse Cycle</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#ground-to-air-heat-pump'>Ground-to-Air Heat Pump</a>) is used. Double Frac false @@ -2558,7 +2581,7 @@ heat_pump_heating_capacity Heat Pump: Heating Capacity - The output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default is used. + The output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-to-air-heat-pump'>Air-to-Air Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-heat-pump'>Mini-Split Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-heat-pump'>Packaged Terminal Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner-w-reverse-cycle'>Room Air Conditioner w/ Reverse Cycle</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#ground-to-air-heat-pump'>Ground-to-Air Heat Pump</a>) is used. Double Btu/hr false @@ -2567,7 +2590,7 @@ heat_pump_heating_capacity_retention_fraction Heat Pump: Heating Capacity Retention Fraction - The output heating capacity of the heat pump at a user-specified temperature (e.g., 17F or 5F) divided by the above nominal heating capacity. Applies to all heat pump types except ground-to-air. If not provided, the OS-HPXML default is used. + The output heating capacity of the heat pump at a user-specified temperature (e.g., 17F or 5F) divided by the above nominal heating capacity. Applies to all heat pump types except ground-to-air. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-to-air-heat-pump'>Air-to-Air Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-heat-pump'>Mini-Split Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-heat-pump'>Packaged Terminal Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner-w-reverse-cycle'>Room Air Conditioner w/ Reverse Cycle</a>) is used. Double Frac false @@ -2585,7 +2608,7 @@ heat_pump_cooling_capacity Heat Pump: Cooling Capacity - The output cooling capacity of the heat pump. If not provided, the OS-HPXML autosized default is used. + The output cooling capacity of the heat pump. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-to-air-heat-pump'>Air-to-Air Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-heat-pump'>Mini-Split Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-heat-pump'>Packaged Terminal Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner-w-reverse-cycle'>Room Air Conditioner w/ Reverse Cycle</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#ground-to-air-heat-pump'>Ground-to-Air Heat Pump</a>) is used. Double Btu/hr false @@ -2614,7 +2637,7 @@ heat_pump_compressor_lockout_temp Heat Pump: Compressor Lockout Temperature - The temperature below which the heat pump compressor is disabled. If both this and Backup Heating Lockout Temperature are provided and use the same value, it essentially defines a switchover temperature (for, e.g., a dual-fuel heat pump). Applies to all heat pump types other than ground-to-air. If not provided, the OS-HPXML default is used. + The temperature below which the heat pump compressor is disabled. If both this and Backup Heating Lockout Temperature are provided and use the same value, it essentially defines a switchover temperature (for, e.g., a dual-fuel heat pump). Applies to all heat pump types other than ground-to-air. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-to-air-heat-pump'>Air-to-Air Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-heat-pump'>Mini-Split Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-heat-pump'>Packaged Terminal Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner-w-reverse-cycle'>Room Air Conditioner w/ Reverse Cycle</a>) is used. Double deg-F false @@ -2682,7 +2705,7 @@ heat_pump_backup_heating_capacity Heat Pump: Backup Heating Capacity - The backup output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default is used. Only applies if Backup Type is 'integrated'. + The backup output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#backup'>Backup</a>) is used. Only applies if Backup Type is 'integrated'. Double Btu/hr false @@ -2691,7 +2714,7 @@ heat_pump_backup_heating_lockout_temp Heat Pump: Backup Heating Lockout Temperature - The temperature above which the heat pump backup system is disabled. If both this and Compressor Lockout Temperature are provided and use the same value, it essentially defines a switchover temperature (for, e.g., a dual-fuel heat pump). Applies for both Backup Type of 'integrated' and 'separate'. If not provided, the OS-HPXML default is used. + The temperature above which the heat pump backup system is disabled. If both this and Compressor Lockout Temperature are provided and use the same value, it essentially defines a switchover temperature (for, e.g., a dual-fuel heat pump). Applies for both Backup Type of 'integrated' and 'separate'. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#backup'>Backup</a>) is used. Double deg-F false @@ -2700,7 +2723,7 @@ heat_pump_sizing_methodology Heat Pump: Sizing Methodology - The auto-sizing methodology to use when the heat pump capacity is not provided. If not provided, the OS-HPXML default is used. + The auto-sizing methodology to use when the heat pump capacity is not provided. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-hvac-sizing-control'>HPXML HVAC Sizing Control</a>) is used. Choice false false @@ -2758,7 +2781,7 @@ heat_pump_crankcase_heater_watts Heat Pump: Crankcase Heater Power Watts - Heat Pump crankcase heater power consumption in Watts. Applies only to air-to-air, mini-split, packaged terminal heat pump and room air conditioner with reverse cycle. If not provided, the OS-HPXML default is used. + Heat Pump crankcase heater power consumption in Watts. Applies only to air-to-air, mini-split, packaged terminal heat pump and room air conditioner with reverse cycle. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-to-air-heat-pump'>Air-to-Air Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#mini-split-heat-pump'>Mini-Split Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#packaged-terminal-heat-pump'>Packaged Terminal Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#room-air-conditioner-w-reverse-cycle'>Room Air Conditioner w/ Reverse Cycle</a>) is used. Double W false @@ -2802,17 +2825,13 @@ Stove - PortableHeater - PortableHeater + SpaceHeater + SpaceHeater Fireplace Fireplace - - FixedHeater - FixedHeater - @@ -2867,7 +2886,7 @@ heating_system_2_heating_capacity Heating System 2: Heating Capacity - The output heating capacity of the second heating system. If not provided, the OS-HPXML autosized default is used. + The output heating capacity of the second heating system. If not provided, the OS-HPXML autosized default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-heating-systems'>HPXML Heating Systems</a>) is used. Double Btu/hr false @@ -2922,7 +2941,7 @@ hvac_control_heating_season_period HVAC Control: Heating Season Period - Enter a date like 'Nov 1 - Jun 30'. If not provided, the OS-HPXML default is used. Can also provide 'BuildingAmerica' to use automatic seasons from the Building America House Simulation Protocols. + Enter a date like 'Nov 1 - Jun 30'. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-hvac-control'>HPXML HVAC Control</a>) is used. Can also provide 'BuildingAmerica' to use automatic seasons from the Building America House Simulation Protocols. String false false @@ -2930,7 +2949,7 @@ hvac_control_cooling_season_period HVAC Control: Cooling Season Period - Enter a date like 'Jun 1 - Oct 31'. If not provided, the OS-HPXML default is used. Can also provide 'BuildingAmerica' to use automatic seasons from the Building America House Simulation Protocols. + Enter a date like 'Jun 1 - Oct 31'. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-hvac-control'>HPXML HVAC Control</a>) is used. Can also provide 'BuildingAmerica' to use automatic seasons from the Building America House Simulation Protocols. String false false @@ -2979,14 +2998,14 @@ ducts_supply_location Ducts: Supply Location - The location of the supply ducts. If not provided, the OS-HPXML default is used. + The location of the supply ducts. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-distribution'>Air Distribution</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -2996,6 +3015,10 @@ basement - unconditioned basement - unconditioned + + crawlspace + crawlspace + crawlspace - vented crawlspace - vented @@ -3008,6 +3031,10 @@ crawlspace - conditioned crawlspace - conditioned + + attic + attic + attic - vented attic - vented @@ -3052,6 +3079,10 @@ other non-freezing space other non-freezing space + + manufactured home belly + manufactured home belly + @@ -3093,23 +3124,32 @@ ducts_supply_surface_area Ducts: Supply Surface Area - The surface area of the supply ducts. If not provided, the OS-HPXML default is used. + The supply ducts surface area in the given location. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-distribution'>Air Distribution</a>) is used. Double ft^2 false false + + ducts_supply_surface_area_fraction + Ducts: Supply Area Fraction + The fraction of supply ducts surface area in the given location. Only used if Surface Area is not provided. If the fraction is less than 1, the remaining duct area is assumed to be in conditioned space. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-distribution'>Air Distribution</a>) is used. + Double + frac + false + false + ducts_return_location Ducts: Return Location - The location of the return ducts. If not provided, the OS-HPXML default is used. + The location of the return ducts. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-distribution'>Air Distribution</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -3119,6 +3159,10 @@ basement - unconditioned basement - unconditioned + + crawlspace + crawlspace + crawlspace - vented crawlspace - vented @@ -3131,6 +3175,10 @@ crawlspace - conditioned crawlspace - conditioned + + attic + attic + attic - vented attic - vented @@ -3175,6 +3223,10 @@ other non-freezing space other non-freezing space + + manufactured home belly + manufactured home belly + @@ -3216,16 +3268,25 @@ ducts_return_surface_area Ducts: Return Surface Area - The surface area of the return ducts. If not provided, the OS-HPXML default is used. + The return ducts surface area in the given location. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-distribution'>Air Distribution</a>) is used. Double ft^2 false false + + ducts_return_surface_area_fraction + Ducts: Return Area Fraction + The fraction of return ducts surface area in the given location. Only used if Surface Area is not provided. If the fraction is less than 1, the remaining duct area is assumed to be in conditioned space. If neither Surface Area nor Area Fraction provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-distribution'>Air Distribution</a>) is used. + Double + frac + false + false + ducts_number_of_return_registers Ducts: Number of Return Registers - The number of return registers of the ducts. Only used to calculate default return duct surface area. If not provided, the OS-HPXML default is used. + The number of return registers of the ducts. Only used to calculate default return duct surface area. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#air-distribution'>Air Distribution</a>) is used. Integer # false @@ -3273,7 +3334,7 @@ mech_vent_flow_rate Mechanical Ventilation: Flow Rate - The flow rate of the mechanical ventilation. If not provided, the OS-HPXML default is used. + The flow rate of the mechanical ventilation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-ventilation-fan'>Whole Ventilation Fan</a>) is used. Double CFM false @@ -3282,7 +3343,7 @@ mech_vent_hours_in_operation Mechanical Ventilation: Hours In Operation - The hours in operation of the mechanical ventilation. If not provided, the OS-HPXML default is used. + The hours in operation of the mechanical ventilation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-ventilation-fan'>Whole Ventilation Fan</a>) is used. Double hrs/day false @@ -3330,7 +3391,7 @@ mech_vent_fan_power Mechanical Ventilation: Fan Power - The fan power of the mechanical ventilation. If not provided, the OS-HPXML default is used. + The fan power of the mechanical ventilation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-ventilation-fan'>Whole Ventilation Fan</a>) is used. Double W false @@ -3550,7 +3611,7 @@ kitchen_fans_quantity Kitchen Fans: Quantity - The quantity of the kitchen fans. If not provided, the OS-HPXML default is used. + The quantity of the kitchen fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Integer # false @@ -3559,7 +3620,7 @@ kitchen_fans_flow_rate Kitchen Fans: Flow Rate - The flow rate of the kitchen fan. If not provided, the OS-HPXML default is used. + The flow rate of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Double CFM false @@ -3568,7 +3629,7 @@ kitchen_fans_hours_in_operation Kitchen Fans: Hours In Operation - The hours in operation of the kitchen fan. If not provided, the OS-HPXML default is used. + The hours in operation of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Double hrs/day false @@ -3577,7 +3638,7 @@ kitchen_fans_power Kitchen Fans: Fan Power - The fan power of the kitchen fan. If not provided, the OS-HPXML default is used. + The fan power of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Double W false @@ -3586,7 +3647,7 @@ kitchen_fans_start_hour Kitchen Fans: Start Hour - The start hour of the kitchen fan. If not provided, the OS-HPXML default is used. + The start hour of the kitchen fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Integer hr false @@ -3595,7 +3656,7 @@ bathroom_fans_quantity Bathroom Fans: Quantity - The quantity of the bathroom fans. If not provided, the OS-HPXML default is used. + The quantity of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Integer # false @@ -3604,7 +3665,7 @@ bathroom_fans_flow_rate Bathroom Fans: Flow Rate - The flow rate of the bathroom fans. If not provided, the OS-HPXML default is used. + The flow rate of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Double CFM false @@ -3613,7 +3674,7 @@ bathroom_fans_hours_in_operation Bathroom Fans: Hours In Operation - The hours in operation of the bathroom fans. If not provided, the OS-HPXML default is used. + The hours in operation of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Double hrs/day false @@ -3622,7 +3683,7 @@ bathroom_fans_power Bathroom Fans: Fan Power - The fan power of the bathroom fans. If not provided, the OS-HPXML default is used. + The fan power of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Double W false @@ -3631,7 +3692,7 @@ bathroom_fans_start_hour Bathroom Fans: Start Hour - The start hour of the bathroom fans. If not provided, the OS-HPXML default is used. + The start hour of the bathroom fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#local-ventilation-fan'>Local Ventilation Fan</a>) is used. Integer hr false @@ -3659,7 +3720,7 @@ whole_house_fan_flow_rate Whole House Fan: Flow Rate - The flow rate of the whole house fan. If not provided, the OS-HPXML default is used. + The flow rate of the whole house fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-house-fan'>Whole House Fan</a>) is used. Double CFM false @@ -3668,7 +3729,7 @@ whole_house_fan_power Whole House Fan: Fan Power - The fan power of the whole house fan. If not provided, the OS-HPXML default is used. + The fan power of the whole house fan. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-house-fan'>Whole House Fan</a>) is used. Double W false @@ -3747,14 +3808,14 @@ water_heater_location Water Heater: Location - The location of water heater. If not provided, the OS-HPXML default is used. + The location of water heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-water-heating-systems'>HPXML Water Heating Systems</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -3768,6 +3829,10 @@ garage garage + + attic + attic + attic - vented attic - vented @@ -3776,6 +3841,10 @@ attic - unvented attic - unvented + + crawlspace + crawlspace + crawlspace - vented crawlspace - vented @@ -3813,7 +3882,7 @@ water_heater_tank_volume Water Heater: Tank Volume - Nominal volume of water heater tank. Only applies to storage water heater, heat pump water heater, and space-heating boiler with storage tank. If not provided, the OS-HPXML default is used. + Nominal volume of water heater tank. Only applies to storage water heater, heat pump water heater, and space-heating boiler with storage tank. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#conventional-storage'>Conventional Storage</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#heat-pump'>Heat Pump</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#combi-boiler-w-storage'>Combi Boiler w/ Storage</a>) is used. Double gal false @@ -3850,7 +3919,7 @@ water_heater_usage_bin Water Heater: Usage Bin - The usage of the water heater. Only applies if Efficiency Type is UniformEnergyFactor and Type is not instantaneous water heater. Does not apply to space-heating boilers. If not provided, the OS-HPXML default is used. + The usage of the water heater. Only applies if Efficiency Type is UniformEnergyFactor and Type is not instantaneous water heater. Does not apply to space-heating boilers. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#conventional-storage'>Conventional Storage</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#heat-pump'>Heat Pump</a>) is used. Choice false false @@ -3876,7 +3945,7 @@ water_heater_recovery_efficiency Water Heater: Recovery Efficiency - Ratio of energy delivered to water heater to the energy content of the fuel consumed by the water heater. Only used for non-electric storage water heaters. If not provided, the OS-HPXML default is used. + Ratio of energy delivered to water heater to the energy content of the fuel consumed by the water heater. Only used for non-electric storage water heaters. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#conventional-storage'>Conventional Storage</a>) is used. Double Frac false @@ -3885,7 +3954,7 @@ water_heater_heating_capacity Water Heater: Heating Capacity - Heating capacity. Only applies to storage water heater. If not provided, the OS-HPXML default is used. + Heating capacity. Only applies to storage water heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#conventional-storage'>Conventional Storage</a>) is used. Double Btu/hr false @@ -3894,7 +3963,7 @@ water_heater_standby_loss Water Heater: Standby Loss - The standby loss of water heater. Only applies to space-heating boilers. If not provided, the OS-HPXML default is used. + The standby loss of water heater. Only applies to space-heating boilers. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#combi-boiler-w-storage'>Combi Boiler w/ Storage</a>) is used. Double deg-F/hr false @@ -3912,7 +3981,7 @@ water_heater_setpoint_temperature Water Heater: Setpoint Temperature - The setpoint temperature of water heater. If not provided, the OS-HPXML default is used. + The setpoint temperature of water heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-water-heating-systems'>HPXML Water Heating Systems</a>) is used. Double deg-F false @@ -3949,7 +4018,7 @@ water_heater_tank_model_type Water Heater: Tank Type - Type of tank model to use. The 'stratified' tank generally provide more accurate results, but may significantly increase run time. Applies only to storage water heater. If not provided, the OS-HPXML default is used. + Type of tank model to use. The 'stratified' tank generally provide more accurate results, but may significantly increase run time. Applies only to storage water heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#conventional-storage'>Conventional Storage</a>) is used. Choice false false @@ -3967,7 +4036,7 @@ water_heater_operating_mode Water Heater: Operating Mode - The water heater operating mode. The 'heat pump only' option only uses the heat pump, while 'hybrid/auto' allows the backup electric resistance to come on in high demand situations. This is ignored if a scheduled operating mode type is selected. Applies only to heat pump water heater. If not provided, the OS-HPXML default is used. + The water heater operating mode. The 'heat pump only' option only uses the heat pump, while 'hybrid/auto' allows the backup electric resistance to come on in high demand situations. This is ignored if a scheduled operating mode type is selected. Applies only to heat pump water heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#heat-pump'>Heat Pump</a>) is used. Choice false false @@ -4004,7 +4073,7 @@ hot_water_distribution_standard_piping_length Hot Water Distribution: Standard Piping Length - If the distribution system is Standard, the length of the piping. If not provided, the OS-HPXML default is used. + If the distribution system is Standard, the length of the piping. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#standard'>Standard</a>) is used. Double ft false @@ -4044,7 +4113,7 @@ hot_water_distribution_recirc_piping_length Hot Water Distribution: Recirculation Piping Length - If the distribution system is Recirculation, the length of the recirculation piping. If not provided, the OS-HPXML default is used. + If the distribution system is Recirculation, the length of the recirculation piping. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#recirculation'>Recirculation</a>) is used. Double ft false @@ -4053,7 +4122,7 @@ hot_water_distribution_recirc_branch_piping_length Hot Water Distribution: Recirculation Branch Piping Length - If the distribution system is Recirculation, the length of the recirculation branch piping. If not provided, the OS-HPXML default is used. + If the distribution system is Recirculation, the length of the recirculation branch piping. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#recirculation'>Recirculation</a>) is used. Double ft false @@ -4062,7 +4131,7 @@ hot_water_distribution_recirc_pump_power Hot Water Distribution: Recirculation Pump Power - If the distribution system is Recirculation, the recirculation pump power. If not provided, the OS-HPXML default is used. + If the distribution system is Recirculation, the recirculation pump power. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#recirculation'>Recirculation</a>) is used. Double W false @@ -4071,7 +4140,7 @@ hot_water_distribution_pipe_r Hot Water Distribution: Pipe Insulation Nominal R-Value - Nominal R-value of the pipe insulation. If not provided, the OS-HPXML default is used. + Nominal R-value of the pipe insulation. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-hot-water-distribution'>HPXML Hot Water Distribution</a>) is used. Double h-ft^2-R/Btu false @@ -4170,7 +4239,7 @@ water_fixtures_usage_multiplier Hot Water Fixtures: Usage Multiplier - Multiplier on the hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-water-fixtures'>HPXML Water Fixtures</a>) is used. Double false false @@ -4297,7 +4366,7 @@ solar_thermal_storage_volume Solar Thermal: Storage Volume - The storage volume of the solar thermal system. If not provided, the OS-HPXML default is used. + The storage volume of the solar thermal system. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#detailed-inputs'>Detailed Inputs</a>) is used. Double gal false @@ -4335,7 +4404,7 @@ pv_system_module_type PV System: Module Type - Module type of the PV system. If not provided, the OS-HPXML default is used. + Module type of the PV system. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Choice false false @@ -4357,7 +4426,7 @@ pv_system_location PV System: Location - Location of the PV system. If not provided, the OS-HPXML default is used. + Location of the PV system. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Choice false false @@ -4375,7 +4444,7 @@ pv_system_tracking PV System: Tracking - Type of tracking for the PV system. If not provided, the OS-HPXML default is used. + Type of tracking for the PV system. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Choice false false @@ -4431,7 +4500,7 @@ pv_system_inverter_efficiency PV System: Inverter Efficiency - Inverter efficiency of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default is used. + Inverter efficiency of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Double Frac false @@ -4440,7 +4509,7 @@ pv_system_system_losses_fraction PV System: System Losses Fraction - System losses fraction of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default is used. + System losses fraction of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Double Frac false @@ -4477,7 +4546,7 @@ pv_system_2_module_type PV System 2: Module Type - Module type of the second PV system. If not provided, the OS-HPXML default is used. + Module type of the second PV system. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Choice false false @@ -4499,7 +4568,7 @@ pv_system_2_location PV System 2: Location - Location of the second PV system. If not provided, the OS-HPXML default is used. + Location of the second PV system. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Choice false false @@ -4517,7 +4586,7 @@ pv_system_2_tracking PV System 2: Tracking - Type of tracking for the second PV system. If not provided, the OS-HPXML default is used. + Type of tracking for the second PV system. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-photovoltaics'>HPXML Photovoltaics</a>) is used. Choice false false @@ -4592,14 +4661,14 @@ battery_location Battery: Location - The space type for the lithium ion battery location. If not provided, the OS-HPXML default is used. + The space type for the lithium ion battery location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-batteries'>HPXML Batteries</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -4609,6 +4678,10 @@ basement - unconditioned basement - unconditioned + + crawlspace + crawlspace + crawlspace - vented crawlspace - vented @@ -4621,6 +4694,10 @@ crawlspace - conditioned crawlspace - conditioned + + attic + attic + attic - vented attic - vented @@ -4642,7 +4719,7 @@ battery_power Battery: Rated Power Output - The rated power output of the lithium ion battery. If not provided, the OS-HPXML default is used. + The rated power output of the lithium ion battery. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-batteries'>HPXML Batteries</a>) is used. Double W false @@ -4651,7 +4728,7 @@ battery_capacity Battery: Nominal Capacity - The nominal capacity of the lithium ion battery. If not provided, the OS-HPXML default is used. + The nominal capacity of the lithium ion battery. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-batteries'>HPXML Batteries</a>) is used. Double kWh false @@ -4660,7 +4737,7 @@ battery_usable_capacity Battery: Usable Capacity - The usable capacity of the lithium ion battery. If not provided, the OS-HPXML default is used. + The usable capacity of the lithium ion battery. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-batteries'>HPXML Batteries</a>) is used. Double kWh false @@ -4669,7 +4746,7 @@ battery_round_trip_efficiency Battery: Round Trip Efficiency - The round trip efficiency of the lithium ion battery. If not provided, the OS-HPXML default is used. + The round trip efficiency of the lithium ion battery. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-batteries'>HPXML Batteries</a>) is used. Double Frac false @@ -4724,7 +4801,7 @@ lighting_interior_usage_multiplier Lighting: Interior Usage Multiplier - Multiplier on the lighting energy usage (interior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the lighting energy usage (interior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-lighting'>HPXML Lighting</a>) is used. Double false false @@ -4759,7 +4836,7 @@ lighting_exterior_usage_multiplier Lighting: Exterior Usage Multiplier - Multiplier on the lighting energy usage (exterior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the lighting energy usage (exterior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-lighting'>HPXML Lighting</a>) is used. Double false false @@ -4794,7 +4871,7 @@ lighting_garage_usage_multiplier Lighting: Garage Usage Multiplier - Multiplier on the lighting energy usage (garage) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the lighting energy usage (garage) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-lighting'>HPXML Lighting</a>) is used. Double false false @@ -4821,7 +4898,7 @@ holiday_lighting_daily_kwh Holiday Lighting: Daily Consumption - The daily energy consumption for holiday lighting (exterior). If not provided, the OS-HPXML default is used. + The daily energy consumption for holiday lighting (exterior). If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-lighting'>HPXML Lighting</a>) is used. Double kWh/day false @@ -4830,7 +4907,7 @@ holiday_lighting_period Holiday Lighting: Period - Enter a date like "Nov 25 - Jan 5". If not provided, the OS-HPXML default is used. + Enter a date like 'Nov 25 - Jan 5'. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-lighting'>HPXML Lighting</a>) is used. String false false @@ -4939,14 +5016,14 @@ clothes_washer_location Clothes Washer: Location - The space type for the clothes washer location. If not provided, the OS-HPXML default is used. + The space type for the clothes washer location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -5000,7 +5077,7 @@ clothes_washer_efficiency Clothes Washer: Efficiency - The efficiency of the clothes washer. If not provided, the OS-HPXML default is used. + The efficiency of the clothes washer. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double ft^3/kWh-cyc false @@ -5009,7 +5086,7 @@ clothes_washer_rated_annual_kwh Clothes Washer: Rated Annual Consumption - The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default is used. + The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double kWh/yr false @@ -5018,7 +5095,7 @@ clothes_washer_label_electric_rate Clothes Washer: Label Electric Rate - The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default is used. + The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double $/kWh false @@ -5027,7 +5104,7 @@ clothes_washer_label_gas_rate Clothes Washer: Label Gas Rate - The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default is used. + The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double $/therm false @@ -5036,7 +5113,7 @@ clothes_washer_label_annual_gas_cost Clothes Washer: Label Annual Cost with Gas DHW - The annual cost of using the system under test conditions. Input is obtained from the EnergyGuide label. If not provided, the OS-HPXML default is used. + The annual cost of using the system under test conditions. Input is obtained from the EnergyGuide label. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double $ false @@ -5045,7 +5122,7 @@ clothes_washer_label_usage Clothes Washer: Label Usage - The clothes washer loads per week. If not provided, the OS-HPXML default is used. + The clothes washer loads per week. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double cyc/wk false @@ -5054,7 +5131,7 @@ clothes_washer_capacity Clothes Washer: Drum Volume - Volume of the washer drum. Obtained from the EnergyStar website or the manufacturer's literature. If not provided, the OS-HPXML default is used. + Volume of the washer drum. Obtained from the EnergyStar website or the manufacturer's literature. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double ft^3 false @@ -5063,7 +5140,7 @@ clothes_washer_usage_multiplier Clothes Washer: Usage Multiplier - Multiplier on the clothes washer energy and hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the clothes washer energy and hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-washer'>HPXML Clothes Washer</a>) is used. Double false false @@ -5090,14 +5167,14 @@ clothes_dryer_location Clothes Dryer: Location - The space type for the clothes dryer location. If not provided, the OS-HPXML default is used. + The space type for the clothes dryer location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-dryer'>HPXML Clothes Dryer</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -5186,7 +5263,7 @@ clothes_dryer_efficiency Clothes Dryer: Efficiency - The efficiency of the clothes dryer. If not provided, the OS-HPXML default is used. + The efficiency of the clothes dryer. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-dryer'>HPXML Clothes Dryer</a>) is used. Double lb/kWh false @@ -5195,7 +5272,7 @@ clothes_dryer_vented_flow_rate Clothes Dryer: Vented Flow Rate - The exhaust flow rate of the vented clothes dryer. If not provided, the OS-HPXML default is used. + The exhaust flow rate of the vented clothes dryer. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-dryer'>HPXML Clothes Dryer</a>) is used. Double CFM false @@ -5204,7 +5281,7 @@ clothes_dryer_usage_multiplier Clothes Dryer: Usage Multiplier - Multiplier on the clothes dryer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the clothes dryer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-clothes-dryer'>HPXML Clothes Dryer</a>) is used. Double false false @@ -5231,14 +5308,14 @@ dishwasher_location Dishwasher: Location - The space type for the dishwasher location. If not provided, the OS-HPXML default is used. + The space type for the dishwasher location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -5292,7 +5369,7 @@ dishwasher_efficiency Dishwasher: Efficiency - The efficiency of the dishwasher. If not provided, the OS-HPXML default is used. + The efficiency of the dishwasher. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Double RatedAnnualkWh or EnergyFactor false @@ -5301,7 +5378,7 @@ dishwasher_label_electric_rate Dishwasher: Label Electric Rate - The label electric rate of the dishwasher. If not provided, the OS-HPXML default is used. + The label electric rate of the dishwasher. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Double $/kWh false @@ -5310,7 +5387,7 @@ dishwasher_label_gas_rate Dishwasher: Label Gas Rate - The label gas rate of the dishwasher. If not provided, the OS-HPXML default is used. + The label gas rate of the dishwasher. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Double $/therm false @@ -5319,7 +5396,7 @@ dishwasher_label_annual_gas_cost Dishwasher: Label Annual Gas Cost - The label annual gas cost of the dishwasher. If not provided, the OS-HPXML default is used. + The label annual gas cost of the dishwasher. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Double $ false @@ -5328,7 +5405,7 @@ dishwasher_label_usage Dishwasher: Label Usage - The dishwasher loads per week. If not provided, the OS-HPXML default is used. + The dishwasher loads per week. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Double cyc/wk false @@ -5337,7 +5414,7 @@ dishwasher_place_setting_capacity Dishwasher: Number of Place Settings - The number of place settings for the unit. Data obtained from manufacturer's literature. If not provided, the OS-HPXML default is used. + The number of place settings for the unit. Data obtained from manufacturer's literature. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Integer # false @@ -5346,7 +5423,7 @@ dishwasher_usage_multiplier Dishwasher: Usage Multiplier - Multiplier on the dishwasher energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the dishwasher energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-dishwasher'>HPXML Dishwasher</a>) is used. Double false false @@ -5373,14 +5450,14 @@ refrigerator_location Refrigerator: Location - The space type for the refrigerator location. If not provided, the OS-HPXML default is used. + The space type for the refrigerator location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-refrigerators'>HPXML Refrigerators</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -5415,7 +5492,7 @@ refrigerator_rated_annual_kwh Refrigerator: Rated Annual Consumption - The EnergyGuide rated annual energy consumption for a refrigerator. If not provided, the OS-HPXML default is used. + The EnergyGuide rated annual energy consumption for a refrigerator. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-refrigerators'>HPXML Refrigerators</a>) is used. Double kWh/yr false @@ -5424,7 +5501,7 @@ refrigerator_usage_multiplier Refrigerator: Usage Multiplier - Multiplier on the refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-refrigerators'>HPXML Refrigerators</a>) is used. Double false false @@ -5451,14 +5528,14 @@ extra_refrigerator_location Extra Refrigerator: Location - The space type for the extra refrigerator location. If not provided, the OS-HPXML default is used. + The space type for the extra refrigerator location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-refrigerators'>HPXML Refrigerators</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -5493,7 +5570,7 @@ extra_refrigerator_rated_annual_kwh Extra Refrigerator: Rated Annual Consumption - The EnergyGuide rated annual energy consumption for an extra rrefrigerator. If not provided, the OS-HPXML default is used. + The EnergyGuide rated annual energy consumption for an extra rrefrigerator. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-refrigerators'>HPXML Refrigerators</a>) is used. Double kWh/yr false @@ -5502,7 +5579,7 @@ extra_refrigerator_usage_multiplier Extra Refrigerator: Usage Multiplier - Multiplier on the extra refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the extra refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-refrigerators'>HPXML Refrigerators</a>) is used. Double false false @@ -5529,14 +5606,14 @@ freezer_location Freezer: Location - The space type for the freezer location. If not provided, the OS-HPXML default is used. + The space type for the freezer location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-freezers'>HPXML Freezers</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -5571,7 +5648,7 @@ freezer_rated_annual_kwh Freezer: Rated Annual Consumption - The EnergyGuide rated annual energy consumption for a freezer. If not provided, the OS-HPXML default is used. + The EnergyGuide rated annual energy consumption for a freezer. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-freezers'>HPXML Freezers</a>) is used. Double kWh/yr false @@ -5580,7 +5657,7 @@ freezer_usage_multiplier Freezer: Usage Multiplier - Multiplier on the freezer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the freezer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-freezers'>HPXML Freezers</a>) is used. Double false false @@ -5607,14 +5684,14 @@ cooking_range_oven_location Cooking Range/Oven: Location - The space type for the cooking range/oven location. If not provided, the OS-HPXML default is used. + The space type for the cooking range/oven location. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-cooking-range-oven'>HPXML Cooking Range/Oven</a>) is used. Choice false false - living space - living space + conditioned space + conditioned space basement - conditioned @@ -5684,7 +5761,7 @@ cooking_range_oven_is_induction Cooking Range/Oven: Is Induction - Whether the cooking range is induction. If not provided, the OS-HPXML default is used. + Whether the cooking range is induction. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-cooking-range-oven'>HPXML Cooking Range/Oven</a>) is used. Boolean false false @@ -5702,7 +5779,7 @@ cooking_range_oven_is_convection Cooking Range/Oven: Is Convection - Whether the oven is convection. If not provided, the OS-HPXML default is used. + Whether the oven is convection. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-cooking-range-oven'>HPXML Cooking Range/Oven</a>) is used. Boolean false false @@ -5720,7 +5797,7 @@ cooking_range_oven_usage_multiplier Cooking Range/Oven: Usage Multiplier - Multiplier on the cooking range/oven energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the cooking range/oven energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-cooking-range-oven'>HPXML Cooking Range/Oven</a>) is used. Double false false @@ -5747,7 +5824,7 @@ ceiling_fan_efficiency Ceiling Fan: Efficiency - The efficiency rating of the ceiling fan(s) at medium speed. If not provided, the OS-HPXML default is used. + The efficiency rating of the ceiling fan(s) at medium speed. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-ceiling-fans'>HPXML Ceiling Fans</a>) is used. Double CFM/W false @@ -5756,7 +5833,7 @@ ceiling_fan_quantity Ceiling Fan: Quantity - Total number of ceiling fans. If not provided, the OS-HPXML default is used. + Total number of ceiling fans. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-ceiling-fans'>HPXML Ceiling Fans</a>) is used. Integer # false @@ -5765,7 +5842,7 @@ ceiling_fan_cooling_setpoint_temp_offset Ceiling Fan: Cooling Setpoint Temperature Offset - The cooling setpoint temperature offset during months when the ceiling fans are operating. Only applies if ceiling fan quantity is greater than zero. If not provided, the OS-HPXML default is used. + The cooling setpoint temperature offset during months when the ceiling fans are operating. Only applies if ceiling fan quantity is greater than zero. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-ceiling-fans'>HPXML Ceiling Fans</a>) is used. Double deg-F false @@ -5793,7 +5870,7 @@ misc_plug_loads_television_annual_kwh Misc Plug Loads: Television Annual kWh - The annual energy consumption of the television plug loads. If not provided, the OS-HPXML default is used. + The annual energy consumption of the television plug loads. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double kWh/yr false @@ -5802,7 +5879,7 @@ misc_plug_loads_television_usage_multiplier Misc Plug Loads: Television Usage Multiplier - Multiplier on the television energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the television energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double false false @@ -5810,7 +5887,7 @@ misc_plug_loads_other_annual_kwh Misc Plug Loads: Other Annual kWh - The annual energy consumption of the other residual plug loads. If not provided, the OS-HPXML default is used. + The annual energy consumption of the other residual plug loads. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double kWh/yr false @@ -5819,7 +5896,7 @@ misc_plug_loads_other_frac_sensible Misc Plug Loads: Other Sensible Fraction - Fraction of other residual plug loads' internal gains that are sensible. If not provided, the OS-HPXML default is used. + Fraction of other residual plug loads' internal gains that are sensible. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double Frac false @@ -5828,7 +5905,7 @@ misc_plug_loads_other_frac_latent Misc Plug Loads: Other Latent Fraction - Fraction of other residual plug loads' internal gains that are latent. If not provided, the OS-HPXML default is used. + Fraction of other residual plug loads' internal gains that are latent. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double Frac false @@ -5837,7 +5914,7 @@ misc_plug_loads_other_usage_multiplier Misc Plug Loads: Other Usage Multiplier - Multiplier on the other energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the other energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double false false @@ -5864,7 +5941,7 @@ misc_plug_loads_well_pump_annual_kwh Misc Plug Loads: Well Pump Annual kWh - The annual energy consumption of the well pump plug loads. If not provided, the OS-HPXML default is used. + The annual energy consumption of the well pump plug loads. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double kWh/yr false @@ -5873,7 +5950,7 @@ misc_plug_loads_well_pump_usage_multiplier Misc Plug Loads: Well Pump Usage Multiplier - Multiplier on the well pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the well pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double false false @@ -5900,7 +5977,7 @@ misc_plug_loads_vehicle_annual_kwh Misc Plug Loads: Vehicle Annual kWh - The annual energy consumption of the electric vehicle plug loads. If not provided, the OS-HPXML default is used. + The annual energy consumption of the electric vehicle plug loads. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double kWh/yr false @@ -5909,7 +5986,7 @@ misc_plug_loads_vehicle_usage_multiplier Misc Plug Loads: Vehicle Usage Multiplier - Multiplier on the electric vehicle energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the electric vehicle energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-plug-loads'>HPXML Plug Loads</a>) is used. Double false false @@ -5967,7 +6044,7 @@ misc_fuel_loads_grill_annual_therm Misc Fuel Loads: Grill Annual therm - The annual energy consumption of the fuel loads grill. If not provided, the OS-HPXML default is used. + The annual energy consumption of the fuel loads grill. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>) is used. Double therm/yr false @@ -5976,7 +6053,7 @@ misc_fuel_loads_grill_usage_multiplier Misc Fuel Loads: Grill Usage Multiplier - Multiplier on the fuel loads grill energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the fuel loads grill energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>) is used. Double false false @@ -6034,7 +6111,7 @@ misc_fuel_loads_lighting_annual_therm Misc Fuel Loads: Lighting Annual therm - The annual energy consumption of the fuel loads lighting. If not provided, the OS-HPXML default is used. + The annual energy consumption of the fuel loads lighting. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>)is used. Double therm/yr false @@ -6043,7 +6120,7 @@ misc_fuel_loads_lighting_usage_multiplier Misc Fuel Loads: Lighting Usage Multiplier - Multiplier on the fuel loads lighting energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the fuel loads lighting energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>) is used. Double false false @@ -6101,7 +6178,7 @@ misc_fuel_loads_fireplace_annual_therm Misc Fuel Loads: Fireplace Annual therm - The annual energy consumption of the fuel loads fireplace. If not provided, the OS-HPXML default is used. + The annual energy consumption of the fuel loads fireplace. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>) is used. Double therm/yr false @@ -6110,7 +6187,7 @@ misc_fuel_loads_fireplace_frac_sensible Misc Fuel Loads: Fireplace Sensible Fraction - Fraction of fireplace residual fuel loads' internal gains that are sensible. If not provided, the OS-HPXML default is used. + Fraction of fireplace residual fuel loads' internal gains that are sensible. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>) is used. Double Frac false @@ -6119,7 +6196,7 @@ misc_fuel_loads_fireplace_frac_latent Misc Fuel Loads: Fireplace Latent Fraction - Fraction of fireplace residual fuel loads' internal gains that are latent. If not provided, the OS-HPXML default is used. + Fraction of fireplace residual fuel loads' internal gains that are latent. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>) is used. Double Frac false @@ -6128,7 +6205,7 @@ misc_fuel_loads_fireplace_usage_multiplier Misc Fuel Loads: Fireplace Usage Multiplier - Multiplier on the fuel loads fireplace energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the fuel loads fireplace energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-fuel-loads'>HPXML Fuel Loads</a>) is used. Double false false @@ -6155,7 +6232,7 @@ pool_pump_annual_kwh Pool: Pump Annual kWh - The annual energy consumption of the pool pump. If not provided, the OS-HPXML default is used. + The annual energy consumption of the pool pump. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#pool-pump'>Pool Pump</a>) is used. Double kWh/yr false @@ -6164,7 +6241,7 @@ pool_pump_usage_multiplier Pool: Pump Usage Multiplier - Multiplier on the pool pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the pool pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#pool-pump'>Pool Pump</a>) is used. Double false false @@ -6199,7 +6276,7 @@ pool_heater_annual_kwh Pool: Heater Annual kWh - The annual energy consumption of the electric resistance pool heater. If not provided, the OS-HPXML default is used. + The annual energy consumption of the electric resistance pool heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#pool-heater'>Pool Heater</a>) is used. Double kWh/yr false @@ -6208,7 +6285,7 @@ pool_heater_annual_therm Pool: Heater Annual therm - The annual energy consumption of the gas fired pool heater. If not provided, the OS-HPXML default is used. + The annual energy consumption of the gas fired pool heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#pool-heater'>Pool Heater</a>) is used. Double therm/yr false @@ -6217,15 +6294,15 @@ pool_heater_usage_multiplier Pool: Heater Usage Multiplier - Multiplier on the pool heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + Multiplier on the pool heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#pool-heater'>Pool Heater</a>) is used. Double false false - hot_tub_present - Hot Tub: Present - Whether there is a hot tub. + permanent_spa_present + Permanent Spa: Present + Whether there is a permanent spa. Boolean true false @@ -6242,26 +6319,26 @@ - hot_tub_pump_annual_kwh - Hot Tub: Pump Annual kWh - The annual energy consumption of the hot tub pump. If not provided, the OS-HPXML default is used. + permanent_spa_pump_annual_kwh + Permanent Spa: Pump Annual kWh + The annual energy consumption of the permanent spa pump. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#permanent-spa-pump'>Permanent Spa Pump</a>) is used. Double kWh/yr false false - hot_tub_pump_usage_multiplier - Hot Tub: Pump Usage Multiplier - Multiplier on the hot tub pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + permanent_spa_pump_usage_multiplier + Permanent Spa: Pump Usage Multiplier + Multiplier on the permanent spa pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#permanent-spa-pump'>Permanent Spa Pump</a>) is used. Double false false - hot_tub_heater_type - Hot Tub: Heater Type - The type of hot tub heater. Use 'none' if there is no hot tub heater. + permanent_spa_heater_type + Permanent Spa: Heater Type + The type of permanent spa heater. Use 'none' if there is no permanent spa heater. Choice true false @@ -6286,27 +6363,27 @@ - hot_tub_heater_annual_kwh - Hot Tub: Heater Annual kWh - The annual energy consumption of the electric resistance hot tub heater. If not provided, the OS-HPXML default is used. + permanent_spa_heater_annual_kwh + Permanent Spa: Heater Annual kWh + The annual energy consumption of the electric resistance permanent spa heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#permanent-spa-heater'>Permanent Spa Heater</a>) is used. Double kWh/yr false false - hot_tub_heater_annual_therm - Hot Tub: Heater Annual therm - The annual energy consumption of the gas fired hot tub heater. If not provided, the OS-HPXML default is used. + permanent_spa_heater_annual_therm + Permanent Spa: Heater Annual therm + The annual energy consumption of the gas fired permanent spa heater. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#permanent-spa-heater'>Permanent Spa Heater</a>) is used. Double therm/yr false false - hot_tub_heater_usage_multiplier - Hot Tub: Heater Usage Multiplier - Multiplier on the hot tub heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used. + permanent_spa_heater_usage_multiplier + Permanent Spa: Heater Usage Multiplier + Multiplier on the permanent spa heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#permanent-spa-heater'>Permanent Spa Heater</a>) is used. Double false false @@ -6671,16 +6748,16 @@ - geometry.rb - rb - resource - E8F9FEA0 + README.md + md + readme + 92C872C5 - build_residential_hpxml_test.rb - rb - test - 010244DB + README.md.erb + erb + readmeerb + 513F28E9 @@ -6691,7 +6768,19 @@ measure.rb rb script - AE26AEE7 + DEA666BB + + + geometry.rb + rb + resource + 84CB0D65 + + + test_build_residential_hpxml.rb + rb + test + 5018D51F diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb b/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb index 7d2187a3..1d198049 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class Geometry @@ -80,7 +85,7 @@ def self.get_adiabatic_adjacent_surface(model:, next if surface == adjacent_surface next if adjacent_surface.surfaceType != adjacentSurfaceType next if adjacent_surface.outsideBoundaryCondition != 'Adiabatic' - next unless Geometry.has_same_vertices(surface, adjacent_surface) + next unless has_same_vertices(surface, adjacent_surface) return adjacent_surface end @@ -289,9 +294,9 @@ def self.create_single_family_detached(runner:, return false end - # create living zone - living_zone = OpenStudio::Model::ThermalZone.new(model) - living_zone.setName(HPXML::LocationLivingSpace) + # create conditioned zone + conditioned_zone = OpenStudio::Model::ThermalZone.new(model) + conditioned_zone.setName(HPXML::LocationConditionedSpace) # loop through the number of floors foundation_polygon_with_wrong_zs = nil @@ -343,11 +348,11 @@ def self.create_single_family_detached(runner:, se_point = OpenStudio::Point3d.new(length, 0, z) l_se_point = OpenStudio::Point3d.new(length - garage_width, 0, z) if ((garage_depth < width) || (garage_protrusion > 0)) && (garage_protrusion < 1) # garage protrudes but not fully - living_polygon = make_polygon(sw_point, nw_point, ne_point, garage_ne_point, garage_nw_point, l_se_point) - elsif garage_protrusion < 1 # garage fits perfectly within living space - living_polygon = make_polygon(sw_point, nw_point, garage_nw_point, garage_sw_point) + conditioned_polygon = make_polygon(sw_point, nw_point, ne_point, garage_ne_point, garage_nw_point, l_se_point) + elsif garage_protrusion < 1 # garage fits perfectly within conditioned space + conditioned_polygon = make_polygon(sw_point, nw_point, garage_nw_point, garage_sw_point) else # garage fully protrudes - living_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) + conditioned_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) end elsif garage_position == 'Left' sw_point = OpenStudio::Point3d.new(0, 0, z) @@ -356,14 +361,14 @@ def self.create_single_family_detached(runner:, se_point = OpenStudio::Point3d.new(length, 0, z) l_sw_point = OpenStudio::Point3d.new(garage_width, 0, z) if ((garage_depth < width) || (garage_protrusion > 0)) && (garage_protrusion < 1) # garage protrudes but not fully - living_polygon = make_polygon(garage_nw_point, nw_point, ne_point, se_point, l_sw_point, garage_ne_point) - elsif garage_protrusion < 1 # garage fits perfectly within living space - living_polygon = make_polygon(garage_se_point, garage_ne_point, ne_point, se_point) + conditioned_polygon = make_polygon(garage_nw_point, nw_point, ne_point, se_point, l_sw_point, garage_ne_point) + elsif garage_protrusion < 1 # garage fits perfectly within conditioned space + conditioned_polygon = make_polygon(garage_se_point, garage_ne_point, ne_point, se_point) else # garage fully protrudes - living_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) + conditioned_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) end end - foundation_polygon_with_wrong_zs = living_polygon + foundation_polygon_with_wrong_zs = conditioned_polygon else # first floor without garage or above first floor if has_garage @@ -378,9 +383,9 @@ def self.create_single_family_detached(runner:, se_point = OpenStudio::Point3d.new(length, 0, z) l_se_point = OpenStudio::Point3d.new(length - garage_width, 0, z) if garage_protrusion > 0 # garage protrudes - living_polygon = make_polygon(sw_point, nw_point, ne_point, garage_se_point, garage_sw_point, l_se_point) + conditioned_polygon = make_polygon(sw_point, nw_point, ne_point, garage_se_point, garage_sw_point, l_se_point) else # garage does not protrude - living_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) + conditioned_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) end elsif garage_position == 'Left' sw_point = OpenStudio::Point3d.new(0, 0, z) @@ -389,9 +394,9 @@ def self.create_single_family_detached(runner:, se_point = OpenStudio::Point3d.new(length, 0, z) l_sw_point = OpenStudio::Point3d.new(garage_width, 0, z) if garage_protrusion > 0 # garage protrudes - living_polygon = make_polygon(garage_sw_point, nw_point, ne_point, se_point, l_sw_point, garage_se_point) + conditioned_polygon = make_polygon(garage_sw_point, nw_point, ne_point, se_point, l_sw_point, garage_se_point) else # garage does not protrude - living_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) + conditioned_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) end end @@ -401,9 +406,9 @@ def self.create_single_family_detached(runner:, nw_point = OpenStudio::Point3d.new(0, width, z) ne_point = OpenStudio::Point3d.new(length, width, z) se_point = OpenStudio::Point3d.new(length, 0, z) - living_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) + conditioned_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) if z == rim_joist_height - foundation_polygon_with_wrong_zs = living_polygon + foundation_polygon_with_wrong_zs = conditioned_polygon end end @@ -411,26 +416,26 @@ def self.create_single_family_detached(runner:, end # make space - living_space = OpenStudio::Model::Space::fromFloorPrint(living_polygon, average_ceiling_height, model) - living_space = living_space.get - assign_indexes(model, living_polygon, living_space) + conditioned_space = OpenStudio::Model::Space::fromFloorPrint(conditioned_polygon, average_ceiling_height, model) + conditioned_space = conditioned_space.get + assign_indexes(model, conditioned_polygon, conditioned_space) if floor > 0 - living_space_name = "#{HPXML::LocationLivingSpace}|story #{floor + 1}" + conditioned_space_name = "#{HPXML::LocationConditionedSpace}|story #{floor + 1}" else - living_space_name = HPXML::LocationLivingSpace + conditioned_space_name = HPXML::LocationConditionedSpace end - living_space.setName(living_space_name) - living_space_type = OpenStudio::Model::SpaceType.new(model) - living_space_type.setStandardsSpaceType(HPXML::LocationLivingSpace) - living_space.setSpaceType(living_space_type) + conditioned_space.setName(conditioned_space_name) + conditioned_space_type = OpenStudio::Model::SpaceType.new(model) + conditioned_space_type.setStandardsSpaceType(HPXML::LocationConditionedSpace) + conditioned_space.setSpaceType(conditioned_space_type) - # set these to the living zone - living_space.setThermalZone(living_zone) + # set these to the conditioned zone + conditioned_space.setThermalZone(conditioned_zone) m = initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) m[2, 3] = z - living_space.changeTransformation(OpenStudio::Transformation.new(m)) + conditioned_space.changeTransformation(OpenStudio::Transformation.new(m)) end # Attic @@ -527,8 +532,8 @@ def self.create_single_family_detached(runner:, end attic_zone.setName(attic_space_name) elsif attic_type == HPXML::AtticTypeConditioned - attic_space.setThermalZone(living_zone) - attic_space_name = HPXML::LocationLivingSpace + attic_space.setThermalZone(conditioned_zone) + attic_space_name = HPXML::LocationConditionedSpace end attic_space.setName(attic_space_name) attic_space_type = OpenStudio::Model::SpaceType.new(model) @@ -547,7 +552,7 @@ def self.create_single_family_detached(runner:, HPXML::FoundationTypeCrawlspaceConditioned, HPXML::FoundationTypeBasementUnconditioned, HPXML::FoundationTypeBasementConditioned, - HPXML::FoundationTypeAmbient].include? foundation_type + HPXML::FoundationTypeAmbient].include?(foundation_type) || foundation_type.start_with?(HPXML::FoundationTypeBellyAndWing) z = -foundation_height @@ -577,6 +582,8 @@ def self.create_single_family_detached(runner:, foundation_space_name = HPXML::LocationBasementConditioned elsif foundation_type == HPXML::FoundationTypeAmbient foundation_space_name = HPXML::LocationOutside + elsif foundation_type.start_with?(HPXML::FoundationTypeBellyAndWing) + foundation_space_name = HPXML::LocationManufacturedHomeUnderBelly end foundation_zone.setName(foundation_space_name) foundation_space.setName(foundation_space_name) @@ -620,7 +627,7 @@ def self.create_single_family_detached(runner:, if has_garage && attic_type != HPXML::AtticTypeFlatRoof if num_floors > 1 - space_with_roof_over_garage = living_space + space_with_roof_over_garage = conditioned_space else space_with_roof_over_garage = garage_space end @@ -652,10 +659,10 @@ def self.create_single_family_detached(runner:, end if num_floors == 1 - nw_point = OpenStudio::Point3d.new(nw_point.x, nw_point.y, living_space.zOrigin + nw_point.z) - ne_point = OpenStudio::Point3d.new(ne_point.x, ne_point.y, living_space.zOrigin + ne_point.z) - sw_point = OpenStudio::Point3d.new(sw_point.x, sw_point.y, living_space.zOrigin + sw_point.z) - se_point = OpenStudio::Point3d.new(se_point.x, se_point.y, living_space.zOrigin + se_point.z) + nw_point = OpenStudio::Point3d.new(nw_point.x, nw_point.y, conditioned_space.zOrigin + nw_point.z) + ne_point = OpenStudio::Point3d.new(ne_point.x, ne_point.y, conditioned_space.zOrigin + ne_point.z) + sw_point = OpenStudio::Point3d.new(sw_point.x, sw_point.y, conditioned_space.zOrigin + sw_point.z) + se_point = OpenStudio::Point3d.new(se_point.x, se_point.y, conditioned_space.zOrigin + se_point.z) else nw_point = OpenStudio::Point3d.new(nw_point.x, nw_point.y, num_floors * nw_point.z + rim_joist_height) ne_point = OpenStudio::Point3d.new(ne_point.x, ne_point.y, num_floors * ne_point.z + rim_joist_height) @@ -673,8 +680,8 @@ def self.create_single_family_detached(runner:, if num_floors == 1 if not attic_type == HPXML::AtticTypeConditioned - roof_n_point = OpenStudio::Point3d.new((nw_point.x + ne_point.x) / 2, nw_point.y + garage_attic_height / roof_pitch, living_space.zOrigin + average_ceiling_height + garage_attic_height) - roof_s_point = OpenStudio::Point3d.new((sw_point.x + se_point.x) / 2, sw_point.y, living_space.zOrigin + average_ceiling_height + garage_attic_height) + roof_n_point = OpenStudio::Point3d.new((nw_point.x + ne_point.x) / 2, nw_point.y + garage_attic_height / roof_pitch, conditioned_space.zOrigin + average_ceiling_height + garage_attic_height) + roof_s_point = OpenStudio::Point3d.new((sw_point.x + se_point.x) / 2, sw_point.y, conditioned_space.zOrigin + average_ceiling_height + garage_attic_height) else roof_n_point = OpenStudio::Point3d.new((nw_point.x + ne_point.x) / 2, nw_point.y + garage_attic_height / roof_pitch, garage_attic_height + average_ceiling_height) roof_s_point = OpenStudio::Point3d.new((sw_point.x + se_point.x) / 2, sw_point.y, garage_attic_height + average_ceiling_height) @@ -709,7 +716,7 @@ def self.create_single_family_detached(runner:, if attic_type == HPXML::AtticTypeConditioned garage_attic_space_name = attic_space_name - garage_attic_space.setThermalZone(living_zone) + garage_attic_space.setThermalZone(conditioned_zone) else if num_floors > 1 garage_attic_space_name = attic_space_name @@ -832,9 +839,9 @@ def self.create_single_family_detached(runner:, end def self.has_same_vertices(surface1, surface2) - if getSurfaceXValues([surface1]).sort == getSurfaceXValues([surface2]).sort && - getSurfaceYValues([surface1]).sort == getSurfaceYValues([surface2]).sort && - getSurfaceZValues([surface1]).sort == getSurfaceZValues([surface2]).sort && + if get_surface_x_values([surface1]).sort == get_surface_x_values([surface2]).sort && + get_surface_y_values([surface1]).sort == get_surface_y_values([surface2]).sort && + get_surface_z_values([surface1]).sort == get_surface_z_values([surface2]).sort && surface1.space.get.zOrigin.round(5) == surface2.space.get.zOrigin.round(5) return true end @@ -862,7 +869,7 @@ def self.get_space_floor_z(space) space.surfaces.each do |surface| next unless surface.surfaceType.downcase == 'floor' - return getSurfaceZValues([surface])[0] + return get_surface_z_values([surface])[0] end end @@ -1364,13 +1371,13 @@ def self.add_window_to_wall(surface, win_width, win_height, win_center_x, win_ce multy = 1 end if (facade == Constants.FacadeBack) || (facade == Constants.FacadeLeft) - leftx = getSurfaceXValues([surface]).max - lefty = getSurfaceYValues([surface]).max + leftx = get_surface_x_values([surface]).max + lefty = get_surface_y_values([surface]).max else - leftx = getSurfaceXValues([surface]).min - lefty = getSurfaceYValues([surface]).min + leftx = get_surface_x_values([surface]).min + lefty = get_surface_y_values([surface]).min end - bottomz = getSurfaceZValues([surface]).min + bottomz = get_surface_z_values([surface]).min [upperleft, lowerleft, lowerright, upperright].each do |coord| newx = UnitConversions.convert(leftx + multx * coord[0], 'ft', 'm') newy = UnitConversions.convert(lefty + multy * coord[0], 'ft', 'm') @@ -1387,7 +1394,7 @@ def self.add_window_to_wall(surface, win_width, win_height, win_center_x, win_ce def self.get_conditioned_spaces(spaces) conditioned_spaces = [] spaces.each do |space| - next unless space.spaceType.get.standardsSpaceType.get == HPXML::LocationLivingSpace + next unless space.spaceType.get.standardsSpaceType.get == HPXML::LocationConditionedSpace conditioned_spaces << space end @@ -1412,9 +1419,9 @@ def self.is_rectangular_wall(surface) return false end - xvalues = getSurfaceXValues([surface]) - yvalues = getSurfaceYValues([surface]) - zvalues = getSurfaceZValues([surface]) + xvalues = get_surface_x_values([surface]) + yvalues = get_surface_y_values([surface]) + zvalues = get_surface_z_values([surface]) if not (((xvalues.uniq.size == 1) && (yvalues.uniq.size == 2)) || ((xvalues.uniq.size == 2) && (yvalues.uniq.size == 1))) return false @@ -1483,7 +1490,7 @@ def self.create_doors(runner:, min_story_avail_walls = [] min_story_avail_wall_minz = 99999 avail_walls.each do |avail_wall| - zvalues = getSurfaceZValues([avail_wall]) + zvalues = get_surface_z_values([avail_wall]) minz = zvalues.min + avail_wall.space.get.zOrigin if minz < min_story_avail_wall_minz min_story_avail_walls.clear @@ -1544,13 +1551,13 @@ def self.create_doors(runner:, multy = 1 end if (facade == Constants.FacadeBack) || (facade == Constants.FacadeLeft) - leftx = getSurfaceXValues([min_story_avail_wall]).max - lefty = getSurfaceYValues([min_story_avail_wall]).max + leftx = get_surface_x_values([min_story_avail_wall]).max + lefty = get_surface_y_values([min_story_avail_wall]).max else - leftx = getSurfaceXValues([min_story_avail_wall]).min - lefty = getSurfaceYValues([min_story_avail_wall]).min + leftx = get_surface_x_values([min_story_avail_wall]).min + lefty = get_surface_y_values([min_story_avail_wall]).min end - bottomz = getSurfaceZValues([min_story_avail_wall]).min + bottomz = get_surface_z_values([min_story_avail_wall]).min [upperleft, lowerleft, lowerright, upperright].each do |coord| newx = UnitConversions.convert(leftx + multx * coord[0], 'ft', 'm') @@ -1647,27 +1654,27 @@ def self.create_single_family_attached(model:, ne_point = OpenStudio::Point3d.new(x, 0, rim_joist_height) sw_point = OpenStudio::Point3d.new(0, -y, rim_joist_height) se_point = OpenStudio::Point3d.new(x, -y, rim_joist_height) - living_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) + conditioned_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) # foundation foundation_polygon = nil if (foundation_height > 0) && foundation_polygon.nil? - foundation_polygon = living_polygon + foundation_polygon = conditioned_polygon end - # create living zone - living_zone = OpenStudio::Model::ThermalZone.new(model) - living_zone.setName(HPXML::LocationLivingSpace) + # create conditioned zone + conditioned_zone = OpenStudio::Model::ThermalZone.new(model) + conditioned_zone.setName(HPXML::LocationConditionedSpace) # first floor - living_space = OpenStudio::Model::Space::fromFloorPrint(living_polygon, average_ceiling_height, model) - living_space = living_space.get - assign_indexes(model, living_polygon, living_space) - living_space.setName(HPXML::LocationLivingSpace) - living_space_type = OpenStudio::Model::SpaceType.new(model) - living_space_type.setStandardsSpaceType(HPXML::LocationLivingSpace) - living_space.setSpaceType(living_space_type) - living_space.setThermalZone(living_zone) + conditioned_space = OpenStudio::Model::Space::fromFloorPrint(conditioned_polygon, average_ceiling_height, model) + conditioned_space = conditioned_space.get + assign_indexes(model, conditioned_polygon, conditioned_space) + conditioned_space.setName(HPXML::LocationConditionedSpace) + conditioned_space_type = OpenStudio::Model::SpaceType.new(model) + conditioned_space_type.setStandardsSpaceType(HPXML::LocationConditionedSpace) + conditioned_space.setSpaceType(conditioned_space_type) + conditioned_space.setThermalZone(conditioned_zone) # Adiabatic surfaces for walls adb_facade_hash = { 'left' => adiabatic_left_wall, 'right' => adiabatic_right_wall, 'front' => adiabatic_front_wall, 'back' => adiabatic_back_wall } @@ -1681,8 +1688,8 @@ def self.create_single_family_attached(model:, next unless adb_facades.include? os_facade x_ft = UnitConversions.convert(x, 'm', 'ft') - max_x = getSurfaceXValues([surface]).max - min_x = getSurfaceXValues([surface]).min + max_x = get_surface_x_values([surface]).max + min_x = get_surface_x_values([surface]).min next if ((max_x - x_ft).abs >= 0.01) && (min_x > 0) surface.setOutsideBoundaryCondition('Adiabatic') @@ -1691,15 +1698,15 @@ def self.create_single_family_attached(model:, # additional floors for story in 2..num_floors - new_living_space = living_space.clone.to_Space.get - assign_indexes(model, living_polygon, new_living_space) - new_living_space.setName("living space|story #{story}") - new_living_space.setSpaceType(living_space_type) + new_conditioned_space = conditioned_space.clone.to_Space.get + assign_indexes(model, conditioned_polygon, new_conditioned_space) + new_conditioned_space.setName("conditioned space|story #{story}") + new_conditioned_space.setSpaceType(conditioned_space_type) m = initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) m[2, 3] = average_ceiling_height * (story - 1) - new_living_space.setTransformation(OpenStudio::Transformation.new(m)) - new_living_space.setThermalZone(living_zone) + new_conditioned_space.setTransformation(OpenStudio::Transformation.new(m)) + new_conditioned_space.setThermalZone(conditioned_zone) end # attic @@ -1707,10 +1714,10 @@ def self.create_single_family_attached(model:, if attic_type != HPXML::AtticTypeFlatRoof attic_space = get_attic_space(model, x, y, average_ceiling_height, num_floors, roof_pitch, roof_type, rim_joist_height) if attic_type == HPXML::AtticTypeConditioned - attic_space_name = HPXML::LocationLivingSpace + attic_space_name = HPXML::LocationConditionedSpace attic_space.setName(attic_space_name) - attic_space.setThermalZone(living_zone) - attic_space.setSpaceType(living_space_type) + attic_space.setThermalZone(conditioned_zone) + attic_space.setSpaceType(conditioned_space_type) attic_space_type = OpenStudio::Model::SpaceType.new(model) attic_space_type.setStandardsSpaceType(attic_space_name) else @@ -1782,7 +1789,7 @@ def self.create_single_family_attached(model:, os_facade = get_facade_for_surface(surface) if adb_facades.include? os_facade surface.setOutsideBoundaryCondition('Adiabatic') - elsif getSurfaceZValues([surface]).min < 0 + elsif get_surface_z_values([surface]).min < 0 surface.setOutsideBoundaryCondition('Foundation') if foundation_type != HPXML::FoundationTypeAmbient surface.setOutsideBoundaryCondition('Outdoors') if foundation_type == HPXML::FoundationTypeAmbient else @@ -1835,8 +1842,8 @@ def self.create_single_family_attached(model:, next unless adb_facades.include? os_facade x_ft = UnitConversions.convert(x, 'm', 'ft') - max_x = getSurfaceXValues([surface]).max - min_x = getSurfaceXValues([surface]).min + max_x = get_surface_x_values([surface]).max + min_x = get_surface_x_values([surface]).min next if ((max_x - x_ft).abs >= 0.01) && (min_x > 0) surface.setOutsideBoundaryCondition('Adiabatic') @@ -2016,26 +2023,26 @@ def self.create_apartment(model:, ne_point = OpenStudio::Point3d.new(x, 0, rim_joist_height) sw_point = OpenStudio::Point3d.new(0, -y, rim_joist_height) se_point = OpenStudio::Point3d.new(x, -y, rim_joist_height) - living_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) + conditioned_polygon = make_polygon(sw_point, nw_point, ne_point, se_point) # foundation if (foundation_height > 0) && foundation_polygon.nil? - foundation_polygon = living_polygon + foundation_polygon = conditioned_polygon end - # create living zone - living_zone = OpenStudio::Model::ThermalZone.new(model) - living_zone.setName(HPXML::LocationLivingSpace) + # create conditioned zone + conditioned_zone = OpenStudio::Model::ThermalZone.new(model) + conditioned_zone.setName(HPXML::LocationConditionedSpace) # first floor - living_space = OpenStudio::Model::Space::fromFloorPrint(living_polygon, average_ceiling_height, model) - living_space = living_space.get - assign_indexes(model, living_polygon, living_space) - living_space.setName(HPXML::LocationLivingSpace) - living_space_type = OpenStudio::Model::SpaceType.new(model) - living_space_type.setStandardsSpaceType(HPXML::LocationLivingSpace) - living_space.setSpaceType(living_space_type) - living_space.setThermalZone(living_zone) + conditioned_space = OpenStudio::Model::Space::fromFloorPrint(conditioned_polygon, average_ceiling_height, model) + conditioned_space = conditioned_space.get + assign_indexes(model, conditioned_polygon, conditioned_space) + conditioned_space.setName(HPXML::LocationConditionedSpace) + conditioned_space_type = OpenStudio::Model::SpaceType.new(model) + conditioned_space_type.setStandardsSpaceType(HPXML::LocationConditionedSpace) + conditioned_space.setSpaceType(conditioned_space_type) + conditioned_space.setThermalZone(conditioned_zone) # Map surface facades to adiabatic walls adb_facade_hash = { 'left' => adiabatic_left_wall, 'right' => adiabatic_right_wall, 'front' => adiabatic_front_wall, 'back' => adiabatic_back_wall } @@ -2050,15 +2057,15 @@ def self.create_apartment(model:, adb_levels += ['Floor'] end - # Make living space surfaces adiabatic + # Make conditioned space surfaces adiabatic model.getSpaces.each do |space| space.surfaces.each do |surface| os_facade = get_facade_for_surface(surface) if surface.surfaceType == 'Wall' if adb_facades.include? os_facade x_ft = UnitConversions.convert(x, 'm', 'ft') - max_x = getSurfaceXValues([surface]).max - min_x = getSurfaceXValues([surface]).min + max_x = get_surface_x_values([surface]).max + min_x = get_surface_x_values([surface]).min next if ((max_x - x_ft).abs >= 0.01) && (min_x > 0) surface.setOutsideBoundaryCondition('Adiabatic') @@ -2141,7 +2148,7 @@ def self.create_apartment(model:, os_facade = get_facade_for_surface(surface) if adb_facades.include?(os_facade) && (os_facade != 'RoofCeiling') && (os_facade != 'Floor') surface.setOutsideBoundaryCondition('Adiabatic') - elsif getSurfaceZValues([surface]).min < 0 + elsif get_surface_z_values([surface]).min < 0 surface.setOutsideBoundaryCondition('Foundation') if foundation_type != HPXML::FoundationTypeAmbient surface.setOutsideBoundaryCondition('Outdoors') if foundation_type == HPXML::FoundationTypeAmbient else @@ -2191,8 +2198,8 @@ def self.create_apartment(model:, next unless adb_facades.include? os_facade x_ft = UnitConversions.convert(x, 'm', 'ft') - max_x = getSurfaceXValues([surface]).max - min_x = getSurfaceXValues([surface]).min + max_x = get_surface_x_values([surface]).max + min_x = get_surface_x_values([surface]).min next if ((max_x - x_ft).abs >= 0.01) && (min_x > 0) surface.setOutsideBoundaryCondition('Adiabatic') @@ -2226,7 +2233,7 @@ def self.create_apartment(model:, # Shift all spaces up by foundation height for ambient foundation def self.apply_ambient_foundation_shift(model, foundation_type, foundation_height) - if foundation_type == HPXML::FoundationTypeAmbient + if [HPXML::FoundationTypeAmbient, HPXML::FoundationTypeBellyAndWing].include?(foundation_type) m = initialize_transformation_matrix(OpenStudio::Matrix.new(4, 4, 0)) m[2, 3] = -foundation_height model.getSpaces.each do |space| @@ -2368,9 +2375,9 @@ def self.get_edges_for_surfaces(surfaces, use_top_edge) edge_counter = 0 surfaces.each do |surface| if use_top_edge - matchz = getSurfaceZValues([surface]).max + matchz = get_surface_z_values([surface]).max else - matchz = getSurfaceZValues([surface]).min + matchz = get_surface_z_values([surface]).min end # get vertices @@ -2428,46 +2435,6 @@ def self.get_facade_for_surface(surface) return facade end - # Return an array of x values for surfaces passed in. The values will be relative to the parent origin. This was intended for spaces. - def self.getSurfaceXValues(surfaceArray) - xValueArray = [] - surfaceArray.each do |surface| - surface.vertices.each do |vertex| - xValueArray << UnitConversions.convert(vertex.x, 'm', 'ft').round(5) - end - end - return xValueArray - end - - # Return an array of y values for surfaces passed in. The values will be relative to the parent origin. This was intended for spaces. - def self.getSurfaceYValues(surfaceArray) - yValueArray = [] - surfaceArray.each do |surface| - surface.vertices.each do |vertex| - yValueArray << UnitConversions.convert(vertex.y, 'm', 'ft').round(5) - end - end - return yValueArray - end - - def self.get_surface_length(surface) - xvalues = getSurfaceXValues([surface]) - yvalues = getSurfaceYValues([surface]) - xrange = xvalues.max - xvalues.min - yrange = yvalues.max - yvalues.min - if xrange > yrange - return xrange - end - - return yrange - end - - def self.get_surface_height(surface) - zvalues = getSurfaceZValues([surface]) - zrange = zvalues.max - zvalues.min - return zrange - end - def self.get_conditioned_attic_height(spaces) # gable roof type get_conditioned_spaces(spaces).each do |space| @@ -2494,8 +2461,8 @@ def self.get_conditioned_attic_height(spaces) end def self.surface_is_rim_joist(surface, height) - return false unless (height - Geometry.get_surface_height(surface)).abs < 0.00001 - return false unless Geometry.getSurfaceZValues([surface]).max > 0 + return false unless (height - get_surface_height(surface)).abs < 0.00001 + return false unless get_surface_z_values([surface]).max > 0 return true end diff --git a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb similarity index 78% rename from example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb rename to example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb index 96be8fa3..ac9443d5 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +++ b/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../../HPXMLtoOpenStudio/resources/minitest_helper' @@ -7,7 +12,7 @@ require_relative '../measure.rb' require 'fileutils' -class BuildResidentialHPXMLTest < MiniTest::Test +class BuildResidentialHPXMLTest < Minitest::Test def setup @output_path = File.join(File.dirname(__FILE__), 'extra_files') @model_save = false # true helpful for debugging, i.e., can render osm in 3D @@ -22,11 +27,23 @@ def test_workflows hpxmls_files = { # Base files to derive from 'base-sfd.xml' => nil, + 'base-sfd2.xml' => 'base-sfd.xml', + 'base-sfa.xml' => 'base-sfd.xml', + 'base-sfa2.xml' => 'base-sfa.xml', + 'base-sfa3.xml' => 'base-sfa.xml', + 'base-mf.xml' => 'base-sfd.xml', + 'base-mf2.xml' => 'base-mf.xml', + 'base-mf3.xml' => 'base-mf.xml', + 'base-mf4.xml' => 'base-mf.xml', + + 'base-sfd-header.xml' => 'base-sfd.xml', + 'base-sfd-header-no-duplicates.xml' => 'base-sfd-header.xml', # Extra files to test 'extra-auto.xml' => 'base-sfd.xml', + 'extra-auto-duct-locations.xml' => 'extra-auto.xml', 'extra-pv-roofpitch.xml' => 'base-sfd.xml', 'extra-dhw-solar-latitude.xml' => 'base-sfd.xml', 'extra-second-refrigerator.xml' => 'base-sfd.xml', @@ -50,6 +67,12 @@ def test_workflows 'extra-emissions-fossil-fuel-factors.xml' => 'base-sfd.xml', 'extra-bills-fossil-fuel-rates.xml' => 'base-sfd.xml', 'extra-seasons-building-america.xml' => 'base-sfd.xml', + 'extra-ducts-crawlspace.xml' => 'base-sfd.xml', + 'extra-ducts-attic.xml' => 'base-sfd.xml', + 'extra-water-heater-crawlspace.xml' => 'base-sfd.xml', + 'extra-water-heater-attic.xml' => 'base-sfd.xml', + 'extra-battery-crawlspace.xml' => 'base-sfd.xml', + 'extra-battery-attic.xml' => 'base-sfd.xml', 'extra-sfa-atticroof-flat.xml' => 'base-sfa.xml', 'extra-sfa-atticroof-conditioned-eaves-gable.xml' => 'extra-sfa-slab.xml', @@ -150,8 +173,6 @@ def test_workflows 'error-sfd-conditioned-basement-zero-foundation-height.xml' => 'base-sfd.xml', 'error-sfd-adiabatic-walls.xml' => 'base-sfd.xml', 'error-mf-bottom-crawlspace-zero-foundation-height.xml' => 'base-mf.xml', - 'error-ducts-location-and-areas-not-same-type.xml' => 'base-sfd.xml', - 'error-second-heating-system-serves-total-heat-load.xml' => 'base-sfd.xml', 'error-second-heating-system-but-no-primary-heating.xml' => 'base-sfd.xml', 'error-second-heating-system-ducted-with-ducted-primary-heating.xml' => 'base-sfd.xml', 'error-sfa-no-building-num-units.xml' => 'base-sfa.xml', @@ -185,12 +206,15 @@ def test_workflows 'error-garage-too-wide.xml' => 'base-sfd.xml', 'error-garage-too-deep.xml' => 'base-sfd.xml', 'error-vented-attic-with-zero-floor-insulation.xml' => 'base-sfd.xml', + 'error-different-software-program.xml' => 'base-sfd-header.xml', + 'error-different-simulation-control.xml' => 'base-sfd-header.xml', + 'error-same-emissions-scenario-name.xml' => 'base-sfd-header.xml', + 'error-same-utility-bill-scenario-name.xml' => 'base-sfd-header.xml', 'warning-non-electric-heat-pump-water-heater.xml' => 'base-sfd.xml', 'warning-sfd-slab-non-zero-foundation-height.xml' => 'base-sfd.xml', 'warning-mf-bottom-slab-non-zero-foundation-height.xml' => 'base-mf.xml', 'warning-slab-non-zero-foundation-height-above-grade.xml' => 'base-sfd.xml', - 'warning-second-heating-system-serves-majority-heat.xml' => 'base-sfd.xml', 'warning-vented-crawlspace-with-wall-and-ceiling-insulation.xml' => 'base-sfd.xml', 'warning-unvented-crawlspace-with-wall-and-ceiling-insulation.xml' => 'base-sfd.xml', 'warning-unconditioned-basement-with-wall-and-ceiling-insulation.xml' => 'base-sfd.xml', @@ -201,65 +225,73 @@ def test_workflows } expected_errors = { - 'error-heating-system-and-heat-pump.xml' => 'Multiple central heating systems are not currently supported.', - 'error-cooling-system-and-heat-pump.xml' => 'Multiple central cooling systems are not currently supported.', - 'error-sfd-conditioned-basement-zero-foundation-height.xml' => "Foundation type of 'ConditionedBasement' cannot have a height of zero.", - 'error-sfd-adiabatic-walls.xml' => 'No adiabatic surfaces can be applied to single-family detached homes.', - 'error-mf-conditioned-basement' => 'Conditioned basement/crawlspace foundation type for apartment units is not currently supported.', - 'error-mf-conditioned-crawlspace' => 'Conditioned basement/crawlspace foundation type for apartment units is not currently supported.', - 'error-mf-bottom-crawlspace-zero-foundation-height.xml' => "Foundation type of 'UnventedCrawlspace' cannot have a height of zero.", - 'error-ducts-location-and-areas-not-same-type.xml' => 'Duct location and surface area not both defaulted or not both specified.', - 'error-second-heating-system-serves-total-heat-load.xml' => 'The fraction of heat load served by the second heating system is 100%.', - 'error-second-heating-system-but-no-primary-heating.xml' => 'A second heating system was specified without a primary heating system.', - 'error-second-heating-system-ducted-with-ducted-primary-heating.xml' => "A ducted heat pump with 'separate' ducted backup is not supported.", - 'error-sfa-no-building-num-units.xml' => 'Did not specify the number of units in the building for single-family attached or apartment units.', - 'error-sfa-above-apartment.xml' => 'Single-family attached units cannot be above another unit.', - 'error-sfa-below-apartment.xml' => 'Single-family attached units cannot be below another unit.', - 'error-sfa-all-adiabatic-walls.xml' => 'At least one wall must be set to non-adiabatic.', - 'error-mf-no-building-num-units.xml' => 'Did not specify the number of units in the building for single-family attached or apartment units.', - 'error-mf-all-adiabatic-walls.xml' => 'At least one wall must be set to non-adiabatic.', - 'error-mf-two-stories.xml' => 'Apartment units can only have one above-grade floor.', - 'error-mf-conditioned-attic.xml' => 'Conditioned attic type for apartment units is not currently supported.', - 'error-dhw-indirect-without-boiler.xml' => 'Must specify a boiler when modeling an indirect water heater type.', - 'error-conditioned-attic-with-one-floor-above-grade.xml' => 'Units with a conditioned attic must have at least two above-grade floors.', - 'error-zero-number-of-bedrooms.xml' => 'Number of bedrooms must be greater than zero.', - 'error-sfd-with-shared-system.xml' => 'Specified a shared system for a single-family detached unit.', - 'error-rim-joist-height-but-no-assembly-r.xml' => 'Specified a rim joist height but no rim joist assembly R-value.', - 'error-rim-joist-assembly-r-but-no-height.xml' => 'Specified a rim joist assembly R-value but no rim joist height.', - 'error-emissions-args-not-all-specified.xml' => 'Did not specify all required emissions arguments.', - 'error-emissions-args-not-all-same-size.xml' => 'One or more emissions arguments does not have enough comma-separated elements specified.', - 'error-emissions-natural-gas-args-not-all-specified.xml' => 'Did not specify fossil fuel emissions units for natural gas emissions values.', - 'error-bills-args-not-all-same-size.xml' => 'One or more utility bill arguments does not have enough comma-separated elements specified.', - 'error-invalid-aspect-ratio.xml' => 'Aspect ratio must be greater than zero.', - 'error-negative-foundation-height.xml' => 'Foundation height cannot be negative.', - 'error-too-many-floors.xml' => 'Number of above-grade floors must be six or less.', - 'error-invalid-garage-protrusion.xml' => 'Garage protrusion fraction must be between zero and one.', - 'error-sfa-no-non-adiabatic-walls.xml' => 'At least one wall must be set to non-adiabatic.', - 'error-hip-roof-and-protruding-garage.xml' => 'Cannot handle protruding garage and hip roof.', - 'error-protruding-garage-under-gable-roof.xml' => 'Cannot handle protruding garage and attic ridge running from front to back.', - 'error-ambient-with-garage.xml' => 'Cannot handle garages with an ambient foundation type.', - 'error-invalid-door-area.xml' => 'Door area cannot be negative.', - 'error-invalid-window-aspect-ratio.xml' => 'Window aspect ratio must be greater than zero.', - 'error-garage-too-wide.xml' => 'Garage is as wide as the single-family detached unit.', - 'error-garage-too-deep.xml' => 'Garage is as deep as the single-family detached unit.', - 'error-vented-attic-with-zero-floor-insulation.xml' => "Element 'AssemblyEffectiveRValue': [facet 'minExclusive'] The value '0.0' must be greater than '0'." + 'error-heating-system-and-heat-pump.xml' => ['Multiple central heating systems are not currently supported.'], + 'error-cooling-system-and-heat-pump.xml' => ['Multiple central cooling systems are not currently supported.'], + 'error-sfd-conditioned-basement-zero-foundation-height.xml' => ["Foundation type of 'ConditionedBasement' cannot have a height of zero."], + 'error-sfd-adiabatic-walls.xml' => ['No adiabatic surfaces can be applied to single-family detached homes.'], + 'error-mf-conditioned-basement' => ['Conditioned basement/crawlspace foundation type for apartment units is not currently supported.'], + 'error-mf-conditioned-crawlspace' => ['Conditioned basement/crawlspace foundation type for apartment units is not currently supported.'], + 'error-mf-bottom-crawlspace-zero-foundation-height.xml' => ["Foundation type of 'UnventedCrawlspace' cannot have a height of zero."], + 'error-second-heating-system-but-no-primary-heating.xml' => ['A second heating system was specified without a primary heating system.'], + 'error-second-heating-system-ducted-with-ducted-primary-heating.xml' => ["A ducted heat pump with 'separate' ducted backup is not supported."], + 'error-sfa-no-building-num-units.xml' => ['Did not specify the number of units in the building for single-family attached or apartment units.'], + 'error-sfa-above-apartment.xml' => ['Single-family attached units cannot be above another unit.'], + 'error-sfa-below-apartment.xml' => ['Single-family attached units cannot be below another unit.'], + 'error-sfa-all-adiabatic-walls.xml' => ['At least one wall must be set to non-adiabatic.'], + 'error-mf-no-building-num-units.xml' => ['Did not specify the number of units in the building for single-family attached or apartment units.'], + 'error-mf-all-adiabatic-walls.xml' => ['At least one wall must be set to non-adiabatic.'], + 'error-mf-two-stories.xml' => ['Apartment units can only have one above-grade floor.'], + 'error-mf-conditioned-attic.xml' => ['Conditioned attic type for apartment units is not currently supported.'], + 'error-dhw-indirect-without-boiler.xml' => ['Must specify a boiler when modeling an indirect water heater type.'], + 'error-conditioned-attic-with-one-floor-above-grade.xml' => ['Units with a conditioned attic must have at least two above-grade floors.'], + 'error-zero-number-of-bedrooms.xml' => ['Number of bedrooms must be greater than zero.'], + 'error-sfd-with-shared-system.xml' => ['Specified a shared system for a single-family detached unit.'], + 'error-rim-joist-height-but-no-assembly-r.xml' => ['Specified a rim joist height but no rim joist assembly R-value.'], + 'error-rim-joist-assembly-r-but-no-height.xml' => ['Specified a rim joist assembly R-value but no rim joist height.'], + 'error-emissions-args-not-all-specified.xml' => ['Did not specify all required emissions arguments.'], + 'error-emissions-args-not-all-same-size.xml' => ['One or more emissions arguments does not have enough comma-separated elements specified.'], + 'error-emissions-natural-gas-args-not-all-specified.xml' => ['Did not specify fossil fuel emissions units for natural gas emissions values.'], + 'error-bills-args-not-all-same-size.xml' => ['One or more utility bill arguments does not have enough comma-separated elements specified.'], + 'error-invalid-aspect-ratio.xml' => ['Aspect ratio must be greater than zero.'], + 'error-negative-foundation-height.xml' => ['Foundation height cannot be negative.'], + 'error-too-many-floors.xml' => ['Number of above-grade floors must be six or less.'], + 'error-invalid-garage-protrusion.xml' => ['Garage protrusion fraction must be between zero and one.'], + 'error-sfa-no-non-adiabatic-walls.xml' => ['At least one wall must be set to non-adiabatic.'], + 'error-hip-roof-and-protruding-garage.xml' => ['Cannot handle protruding garage and hip roof.'], + 'error-protruding-garage-under-gable-roof.xml' => ['Cannot handle protruding garage and attic ridge running from front to back.'], + 'error-ambient-with-garage.xml' => ['Cannot handle garages with an ambient foundation type.'], + 'error-invalid-door-area.xml' => ['Door area cannot be negative.'], + 'error-invalid-window-aspect-ratio.xml' => ['Window aspect ratio must be greater than zero.'], + 'error-garage-too-wide.xml' => ['Garage is as wide as the single-family detached unit.'], + 'error-garage-too-deep.xml' => ['Garage is as deep as the single-family detached unit.'], + 'error-vented-attic-with-zero-floor-insulation.xml' => ["Element 'AssemblyEffectiveRValue': [facet 'minExclusive'] The value '0.0' must be greater than '0'."], + 'error-different-software-program.xml' => ["'Software Info: Program Used' cannot vary across dwelling units.", + "'Software Info: Program Version' cannot vary across dwelling units."], + 'error-different-simulation-control.xml' => ["'Simulation Control: Timestep' cannot vary across dwelling units.", + "'Simulation Control: Run Period' cannot vary across dwelling units.", + "'Simulation Control: Run Period Calendar Year' cannot vary across dwelling units.", + "'Simulation Control: Temperature Capacitance Multiplier' cannot vary across dwelling units."], + 'error-same-emissions-scenario-name.xml' => ["HPXML header already includes an emissions scenario named 'Emissions' with type 'CO2e'."], + 'error-same-utility-bill-scenario-name.xml' => ["HPXML header already includes a utility bill scenario named 'Bills'."] } expected_warnings = { - 'warning-non-electric-heat-pump-water-heater.xml' => 'Cannot model a heat pump water heater with non-electric fuel type.', - 'warning-sfd-slab-non-zero-foundation-height.xml' => "Foundation type of 'SlabOnGrade' cannot have a non-zero height. Assuming height is zero.", - 'warning-mf-bottom-slab-non-zero-foundation-height.xml' => "Foundation type of 'SlabOnGrade' cannot have a non-zero height. Assuming height is zero.", - 'warning-slab-non-zero-foundation-height-above-grade.xml' => 'Specified a slab foundation type with a non-zero height above grade.', - 'warning-second-heating-system-serves-majority-heat.xml' => 'The fraction of heat load served by the second heating system is greater than or equal to 50%.', - 'warning-vented-crawlspace-with-wall-and-ceiling-insulation.xml' => 'Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.', - 'warning-unvented-crawlspace-with-wall-and-ceiling-insulation.xml' => 'Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.', - 'warning-unconditioned-basement-with-wall-and-ceiling-insulation.xml' => 'Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.', - 'warning-vented-attic-with-floor-and-roof-insulation.xml' => 'Home with unconditioned attic type has both ceiling insulation and roof insulation.', - 'warning-unvented-attic-with-floor-and-roof-insulation.xml' => 'Home with unconditioned attic type has both ceiling insulation and roof insulation.', - 'warning-conditioned-basement-with-ceiling-insulation.xml' => 'Home with conditioned basement has floor insulation.', - 'warning-conditioned-attic-with-floor-insulation.xml' => 'Home with conditioned attic has ceiling insulation.', + 'warning-non-electric-heat-pump-water-heater.xml' => ['Cannot model a heat pump water heater with non-electric fuel type.'], + 'warning-sfd-slab-non-zero-foundation-height.xml' => ["Foundation type of 'SlabOnGrade' cannot have a non-zero height. Assuming height is zero."], + 'warning-mf-bottom-slab-non-zero-foundation-height.xml' => ["Foundation type of 'SlabOnGrade' cannot have a non-zero height. Assuming height is zero."], + 'warning-slab-non-zero-foundation-height-above-grade.xml' => ['Specified a slab foundation type with a non-zero height above grade.'], + 'warning-vented-crawlspace-with-wall-and-ceiling-insulation.xml' => ['Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.'], + 'warning-unvented-crawlspace-with-wall-and-ceiling-insulation.xml' => ['Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.'], + 'warning-unconditioned-basement-with-wall-and-ceiling-insulation.xml' => ['Home with unconditioned basement/crawlspace foundation type has both foundation wall insulation and floor insulation.'], + 'warning-vented-attic-with-floor-and-roof-insulation.xml' => ['Home with unconditioned attic type has both ceiling insulation and roof insulation.'], + 'warning-unvented-attic-with-floor-and-roof-insulation.xml' => ['Home with unconditioned attic type has both ceiling insulation and roof insulation.'], + 'warning-conditioned-basement-with-ceiling-insulation.xml' => ['Home with conditioned basement has floor insulation.'], + 'warning-conditioned-attic-with-floor-insulation.xml' => ['Home with conditioned attic has ceiling insulation.'] } + schema_path = File.join(File.dirname(__FILE__), '../..', 'HPXMLtoOpenStudio', 'resources', 'hpxml_schema', 'HPXML.xsd') + schema_validator = XMLValidator.get_schema_validator(schema_path) + puts "Generating #{hpxmls_files.size} HPXML files..." hpxmls_files.each_with_index do |(hpxml_file, parent), i| @@ -306,20 +338,27 @@ def test_workflows end hpxml_path = File.absolute_path(File.join(@output_path, hpxml_file)) - hpxml = HPXML.new(hpxml_path: hpxml_path) + hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: 'ALL') hpxml.header.xml_generated_by = 'build_residential_hpxml_test.rb' hpxml.header.created_date_and_time = Time.new(2000, 1, 1).strftime('%Y-%m-%dT%H:%M:%S%:z') # Hard-code to prevent diffs - hpxml_doc = hpxml.to_oga() + hpxml_doc = hpxml.to_doc() XMLHelper.write_file(hpxml_doc, hpxml_path) - rescue Exception => e - flunk "Error: Did not successfully generate #{hpxml_file}.\n#{e}\n#{e.backtrace.join('\n')}" + + errors, _warnings = XMLValidator.validate_against_schema(hpxml_path, schema_validator) + next unless errors.size > 0 + + puts errors.to_s + puts "\nError: Did not successfully validate #{hpxml_file}." + exit! + rescue Exception + flunk "Error: Did not successfully generate #{hpxml_file}" end end # Check generated HPXML files hpxml = HPXML.new(hpxml_path: File.absolute_path(File.join(@output_path, 'extra-seasons-building-america.xml'))) - hvac_control = hpxml.hvac_controls[0] + hvac_control = hpxml.buildings[0].hvac_controls[0] assert_equal(10, hvac_control.seasons_heating_begin_month) assert_equal(1, hvac_control.seasons_heating_begin_day) assert_equal(6, hvac_control.seasons_heating_end_month) @@ -335,6 +374,7 @@ def test_workflows def _set_measure_argument_values(hpxml_file, args) args['hpxml_path'] = File.join(File.dirname(__FILE__), "extra_files/#{hpxml_file}") args['apply_defaults'] = true + args['apply_validation'] = true # Base if ['base-sfd.xml'].include? hpxml_file @@ -498,7 +538,7 @@ def _set_measure_argument_values(hpxml_file, args) args['whole_house_fan_present'] = false args['water_heater_type'] = HPXML::WaterHeaterTypeStorage args['water_heater_fuel_type'] = HPXML::FuelTypeElectricity - args['water_heater_location'] = HPXML::LocationLivingSpace + args['water_heater_location'] = HPXML::LocationConditionedSpace args['water_heater_tank_volume'] = 40 args['water_heater_efficiency_type'] = 'EnergyFactor' args['water_heater_efficiency'] = 0.95 @@ -556,7 +596,7 @@ def _set_measure_argument_values(hpxml_file, args) args['dehumidifier_rh_setpoint'] = 0.5 args['dehumidifier_fraction_dehumidification_load_served'] = 1 args['clothes_washer_present'] = true - args['clothes_washer_location'] = HPXML::LocationLivingSpace + args['clothes_washer_location'] = HPXML::LocationConditionedSpace args['clothes_washer_efficiency_type'] = 'IntegratedModifiedEnergyFactor' args['clothes_washer_efficiency'] = 1.21 args['clothes_washer_rated_annual_kwh'] = 380.0 @@ -566,13 +606,13 @@ def _set_measure_argument_values(hpxml_file, args) args['clothes_washer_label_usage'] = 6.0 args['clothes_washer_capacity'] = 3.2 args['clothes_dryer_present'] = true - args['clothes_dryer_location'] = HPXML::LocationLivingSpace + args['clothes_dryer_location'] = HPXML::LocationConditionedSpace args['clothes_dryer_fuel_type'] = HPXML::FuelTypeElectricity args['clothes_dryer_efficiency_type'] = 'CombinedEnergyFactor' args['clothes_dryer_efficiency'] = 3.73 args['clothes_dryer_vented_flow_rate'] = 150.0 args['dishwasher_present'] = true - args['dishwasher_location'] = HPXML::LocationLivingSpace + args['dishwasher_location'] = HPXML::LocationConditionedSpace args['dishwasher_efficiency_type'] = 'RatedAnnualkWh' args['dishwasher_efficiency'] = 307 args['dishwasher_label_electric_rate'] = 0.12 @@ -581,12 +621,12 @@ def _set_measure_argument_values(hpxml_file, args) args['dishwasher_label_usage'] = 4.0 args['dishwasher_place_setting_capacity'] = 12 args['refrigerator_present'] = true - args['refrigerator_location'] = HPXML::LocationLivingSpace + args['refrigerator_location'] = HPXML::LocationConditionedSpace args['refrigerator_rated_annual_kwh'] = 650.0 args['extra_refrigerator_present'] = false args['freezer_present'] = false args['cooking_range_oven_present'] = true - args['cooking_range_oven_location'] = HPXML::LocationLivingSpace + args['cooking_range_oven_location'] = HPXML::LocationConditionedSpace args['cooking_range_oven_fuel_type'] = HPXML::FuelTypeElectricity args['cooking_range_oven_is_induction'] = false args['cooking_range_oven_is_convection'] = false @@ -606,8 +646,10 @@ def _set_measure_argument_values(hpxml_file, args) args['misc_fuel_loads_fireplace_fuel_type'] = HPXML::FuelTypeNaturalGas args['pool_present'] = false args['pool_heater_type'] = HPXML::HeaterTypeElectricResistance - args['hot_tub_present'] = false - args['hot_tub_heater_type'] = HPXML::HeaterTypeElectricResistance + args['permanent_spa_present'] = false + args['permanent_spa_heater_type'] = HPXML::HeaterTypeElectricResistance + elsif ['base-sfd2.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd.xml') elsif ['base-sfa.xml'].include? hpxml_file args['geometry_unit_type'] = HPXML::ResidentialTypeSFA args['geometry_unit_cfa'] = 1800.0 @@ -622,6 +664,10 @@ def _set_measure_argument_values(hpxml_file, args) args['window_area_left'] = 0 args['window_area_right'] = 0 args['air_leakage_type'] = HPXML::InfiltrationTypeUnitTotal + elsif ['base-sfa2.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa.xml') + elsif ['base-sfa3.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfa2.xml') elsif ['base-mf.xml'].include? hpxml_file args['geometry_unit_type'] = HPXML::ResidentialTypeApartment args['geometry_unit_cfa'] = 900.0 @@ -640,13 +686,37 @@ def _set_measure_argument_values(hpxml_file, args) args['window_area_right'] = 0 args['ducts_supply_leakage_to_outside_value'] = 0.0 args['ducts_return_leakage_to_outside_value'] = 0.0 - args['ducts_supply_location'] = HPXML::LocationLivingSpace - args['ducts_return_location'] = HPXML::LocationLivingSpace + args['ducts_supply_location'] = HPXML::LocationConditionedSpace + args['ducts_return_location'] = HPXML::LocationConditionedSpace args['ducts_supply_insulation_r'] = 0.0 args['ducts_return_insulation_r'] = 0.0 args['ducts_number_of_return_registers'] = 1 args['door_area'] = 20.0 args['air_leakage_type'] = HPXML::InfiltrationTypeUnitTotal + elsif ['base-mf2.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf.xml') + elsif ['base-mf3.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf2.xml') + elsif ['base-mf4.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-mf3.xml') + elsif ['base-sfd-header.xml'].include? hpxml_file + args['software_info_program_used'] = 'Program' + args['software_info_program_version'] = '1' + args['schedules_vacancy_period'] = 'Jan 2 - Jan 5' + args['schedules_power_outage_period'] = 'Feb 10 - Feb 12' + args['schedules_power_outage_window_natvent_availability'] = HPXML::ScheduleAvailable + args['simulation_control_run_period'] = 'Jan 1 - Dec 31' + args['simulation_control_run_period_calendar_year'] = 2007 + args['simulation_control_temperature_capacitance_multiplier'] = 1.0 + args['emissions_scenario_names'] = 'Emissions' + args['emissions_types'] = 'CO2e' + args['emissions_electricity_units'] = 'kg/MWh' + args['emissions_electricity_values_or_filepaths'] = '1' + args['emissions_fossil_fuel_units'] = 'kg/MBtu' + args['emissions_natural_gas_values'] = '2' + args['utility_bill_scenario_names'] = 'Bills' + elsif ['base-sfd-header-no-duplicates.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml') end # Extras @@ -662,6 +732,9 @@ def _set_measure_argument_values(hpxml_file, args) args.delete('clothes_washer_location') args.delete('clothes_dryer_location') args.delete('refrigerator_location') + elsif ['extra-auto-duct-locations.xml'].include? hpxml_file + args['ducts_supply_location'] = HPXML::LocationAtticUnvented + args['ducts_return_location'] = HPXML::LocationAtticUnvented elsif ['extra-pv-roofpitch.xml'].include? hpxml_file args['pv_system_module_type'] = HPXML::PVModuleTypeStandard args['pv_system_2_module_type'] = HPXML::PVModuleTypeStandard @@ -671,16 +744,16 @@ def _set_measure_argument_values(hpxml_file, args) args['solar_thermal_system_type'] = HPXML::SolarThermalSystemType args['solar_thermal_collector_tilt'] = 'latitude-15' elsif ['extra-second-refrigerator.xml'].include? hpxml_file - args['extra_refrigerator_location'] = HPXML::LocationLivingSpace + args['extra_refrigerator_location'] = HPXML::LocationConditionedSpace elsif ['extra-second-heating-system-portable-heater-to-heating-system.xml'].include? hpxml_file args['heating_system_fuel'] = HPXML::FuelTypeElectricity args['heating_system_heating_capacity'] = 48000.0 args['heating_system_fraction_heat_load_served'] = 0.75 args['ducts_supply_leakage_to_outside_value'] = 0.0 args['ducts_return_leakage_to_outside_value'] = 0.0 - args['ducts_supply_location'] = HPXML::LocationLivingSpace - args['ducts_return_location'] = HPXML::LocationLivingSpace - args['heating_system_2_type'] = HPXML::HVACTypePortableHeater + args['ducts_supply_location'] = HPXML::LocationConditionedSpace + args['ducts_return_location'] = HPXML::LocationConditionedSpace + args['heating_system_2_type'] = HPXML::HVACTypeSpaceHeater args['heating_system_2_heating_capacity'] = 16000.0 elsif ['extra-second-heating-system-fireplace-to-heating-system.xml'].include? hpxml_file args['heating_system_type'] = HPXML::HVACTypeElectricResistance @@ -705,14 +778,15 @@ def _set_measure_argument_values(hpxml_file, args) args['heat_pump_fraction_heat_load_served'] = 0.75 args['ducts_supply_leakage_to_outside_value'] = 0.0 args['ducts_return_leakage_to_outside_value'] = 0.0 - args['ducts_supply_location'] = HPXML::LocationLivingSpace - args['ducts_return_location'] = HPXML::LocationLivingSpace - args['heating_system_2_type'] = HPXML::HVACTypePortableHeater + args['ducts_supply_location'] = HPXML::LocationConditionedSpace + args['ducts_return_location'] = HPXML::LocationConditionedSpace + args['heating_system_2_type'] = HPXML::HVACTypeSpaceHeater args['heating_system_2_heating_capacity'] = 16000.0 elsif ['extra-second-heating-system-fireplace-to-heat-pump.xml'].include? hpxml_file args['heating_system_type'] = 'none' args['cooling_system_type'] = 'none' args['heat_pump_type'] = HPXML::HVACTypeHeatPumpMiniSplit + args.delete('heat_pump_cooling_compressor_type') args['heat_pump_heating_efficiency'] = 10.0 args['heat_pump_cooling_efficiency'] = 19.0 args['heat_pump_heating_capacity'] = 48000.0 @@ -769,9 +843,9 @@ def _set_measure_argument_values(hpxml_file, args) args['pool_heater_type'] = HPXML::HeaterTypeGas args['pool_heater_annual_kwh'] = 0 elsif ['extra-gas-hot-tub-heater-with-zero-kwh.xml'].include? hpxml_file - args['hot_tub_present'] = true - args['hot_tub_heater_type'] = HPXML::HeaterTypeGas - args['hot_tub_heater_annual_kwh'] = 0 + args['permanent_spa_present'] = true + args['permanent_spa_heater_type'] = HPXML::HeaterTypeGas + args['permanent_spa_heater_annual_kwh'] = 0 elsif ['extra-no-rim-joists.xml'].include? hpxml_file args.delete('geometry_rim_joist_height') args.delete('rim_joist_assembly_r') @@ -807,6 +881,34 @@ def _set_measure_argument_values(hpxml_file, args) elsif ['extra-seasons-building-america.xml'].include? hpxml_file args['hvac_control_heating_season_period'] = HPXML::BuildingAmerica args['hvac_control_cooling_season_period'] = HPXML::BuildingAmerica + elsif ['extra-ducts-crawlspace.xml'].include? hpxml_file + args['geometry_foundation_type'] = HPXML::FoundationTypeCrawlspaceUnvented + args['geometry_foundation_height'] = 4 + args['floor_over_foundation_assembly_r'] = 18.7 + args['foundation_wall_insulation_distance_to_bottom'] = 4 + args['ducts_supply_location'] = HPXML::LocationCrawlspace + args['ducts_return_location'] = HPXML::LocationCrawlspace + elsif ['extra-ducts-attic.xml'].include? hpxml_file + args['ducts_supply_location'] = HPXML::LocationAttic + args['ducts_return_location'] = HPXML::LocationAttic + elsif ['extra-water-heater-crawlspace.xml'].include? hpxml_file + args['geometry_foundation_type'] = HPXML::FoundationTypeCrawlspaceUnvented + args['geometry_foundation_height'] = 4 + args['floor_over_foundation_assembly_r'] = 18.7 + args['foundation_wall_insulation_distance_to_bottom'] = 4 + args['water_heater_location'] = HPXML::LocationCrawlspace + elsif ['extra-water-heater-attic.xml'].include? hpxml_file + args['water_heater_location'] = HPXML::LocationAttic + elsif ['extra-battery-crawlspace.xml'].include? hpxml_file + args['geometry_foundation_type'] = HPXML::FoundationTypeCrawlspaceUnvented + args['geometry_foundation_height'] = 4 + args['floor_over_foundation_assembly_r'] = 18.7 + args['foundation_wall_insulation_distance_to_bottom'] = 4 + args['battery_present'] = true + args['battery_location'] = HPXML::LocationCrawlspace + elsif ['extra-battery-attic.xml'].include? hpxml_file + args['battery_present'] = true + args['battery_location'] = HPXML::LocationAttic elsif ['extra-sfa-atticroof-flat.xml'].include? hpxml_file args['geometry_attic_type'] = HPXML::AtticTypeFlatRoof args['ducts_supply_leakage_to_outside_value'] = 0.0 @@ -817,8 +919,8 @@ def _set_measure_argument_values(hpxml_file, args) args['geometry_unit_num_floors_above_grade'] = 2 args['geometry_attic_type'] = HPXML::AtticTypeConditioned args['geometry_eaves_depth'] = 2 - args['ducts_supply_location'] = HPXML::LocationLivingSpace - args['ducts_return_location'] = HPXML::LocationLivingSpace + args['ducts_supply_location'] = HPXML::LocationConditionedSpace + args['ducts_return_location'] = HPXML::LocationConditionedSpace elsif ['extra-sfa-atticroof-conditioned-eaves-hip.xml'].include? hpxml_file args['geometry_roof_type'] = 'hip' elsif ['extra-mf-eaves.xml'].include? hpxml_file @@ -1008,11 +1110,6 @@ def _set_measure_argument_values(hpxml_file, args) args['geometry_foundation_height'] = 0.0 args['geometry_attic_type'] = HPXML::AtticTypeBelowApartment args.delete('foundation_wall_insulation_distance_to_bottom') - elsif ['error-ducts-location-and-areas-not-same-type.xml'].include? hpxml_file - args.delete('ducts_supply_location') - elsif ['error-second-heating-system-serves-total-heat-load.xml'].include? hpxml_file - args['heating_system_2_type'] = HPXML::HVACTypeFireplace - args['heating_system_2_fraction_heat_load_served'] = 1.0 elsif ['error-second-heating-system-but-no-primary-heating.xml'].include? hpxml_file args['heating_system_type'] = 'none' args['heating_system_2_type'] = HPXML::HVACTypeFireplace @@ -1020,6 +1117,7 @@ def _set_measure_argument_values(hpxml_file, args) args['heating_system_type'] = 'none' args['cooling_system_type'] = 'none' args['heat_pump_type'] = HPXML::HVACTypeHeatPumpMiniSplit + args.delete('heat_pump_cooling_compressor_type') args['heat_pump_is_ducted'] = true args['heat_pump_backup_type'] = HPXML::HeatPumpBackupTypeSeparate args['heating_system_2_type'] = HPXML::HVACTypeFurnace @@ -1105,6 +1203,26 @@ def _set_measure_argument_values(hpxml_file, args) args['geometry_garage_depth'] = 40 elsif ['error-vented-attic-with-zero-floor-insulation.xml'].include? hpxml_file args['ceiling_assembly_r'] = 0 + elsif ['error-different-software-program.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml') + args['software_info_program_used'] = 'Program2' + args['software_info_program_version'] = '2' + args['emissions_scenario_names'] = 'Emissions2' + args['utility_bill_scenario_names'] = 'Bills2' + elsif ['error-different-simulation-control.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml') + args['simulation_control_timestep'] = 10 + args['simulation_control_run_period'] = 'Jan 2 - Dec 30' + args['simulation_control_run_period_calendar_year'] = 2008 + args['simulation_control_temperature_capacitance_multiplier'] = 2.0 + args['emissions_scenario_names'] = 'Emissions2' + args['utility_bill_scenario_names'] = 'Bills2' + elsif ['error-same-emissions-scenario-name.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml') + args['emissions_electricity_values_or_filepaths'] = '2' + elsif ['error-same-utility-bill-scenario-name.xml'].include? hpxml_file + args['existing_hpxml_path'] = File.join(File.dirname(__FILE__), 'extra_files/base-sfd-header.xml') + args['utility_bill_electricity_fixed_charges'] = '13.0' end # Warning @@ -1123,10 +1241,6 @@ def _set_measure_argument_values(hpxml_file, args) args['geometry_foundation_type'] = HPXML::FoundationTypeSlab args['geometry_foundation_height'] = 0.0 args.delete('foundation_wall_insulation_distance_to_bottom') - elsif ['warning-second-heating-system-serves-majority-heat.xml'].include? hpxml_file - args['heating_system_fraction_heat_load_served'] = 0.4 - args['heating_system_2_type'] = HPXML::HVACTypeFireplace - args['heating_system_2_fraction_heat_load_served'] = 0.6 elsif ['warning-vented-crawlspace-with-wall-and-ceiling-insulation.xml'].include? hpxml_file args['geometry_foundation_type'] = HPXML::FoundationTypeCrawlspaceVented args['geometry_foundation_height'] = 3.0 @@ -1157,28 +1271,32 @@ def _set_measure_argument_values(hpxml_file, args) elsif ['warning-conditioned-attic-with-floor-insulation.xml'].include? hpxml_file args['geometry_unit_num_floors_above_grade'] = 2 args['geometry_attic_type'] = HPXML::AtticTypeConditioned - args['ducts_supply_location'] = HPXML::LocationLivingSpace - args['ducts_return_location'] = HPXML::LocationLivingSpace + args['ducts_supply_location'] = HPXML::LocationConditionedSpace + args['ducts_return_location'] = HPXML::LocationConditionedSpace end end - def _test_measure(runner, expected_error, expected_warning) + def _test_measure(runner, expected_errors, expected_warnings) # check warnings/errors - if not expected_error.nil? - if runner.result.stepErrors.select { |s| s.include?(expected_error) }.size <= 0 - runner.result.stepErrors.each do |s| - puts "ERROR: #{s}" + if not expected_errors.nil? + expected_errors.each do |expected_error| + if runner.result.stepErrors.select { |s| s.include?(expected_error) }.size <= 0 + runner.result.stepErrors.each do |s| + puts "ERROR: #{s}" + end end + assert(runner.result.stepErrors.select { |s| s.include?(expected_error) }.size > 0) end - assert(runner.result.stepErrors.select { |s| s.include?(expected_error) }.size > 0) end - if not expected_warning.nil? - if runner.result.stepWarnings.select { |s| s.include?(expected_warning) }.size <= 0 - runner.result.stepWarnings.each do |s| - puts "WARNING: #{s}" + if not expected_warnings.nil? + expected_warnings.each do |expected_warning| + if runner.result.stepWarnings.select { |s| s.include?(expected_warning) }.size <= 0 + runner.result.stepWarnings.each do |s| + puts "WARNING: #{s}" + end end + assert(runner.result.stepWarnings.select { |s| s.include?(expected_warning) }.size > 0) end - assert(runner.result.stepWarnings.select { |s| s.include?(expected_warning) }.size > 0) end end end diff --git a/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/README.md b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/README.md new file mode 100644 index 00000000..5b8f30b6 --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/README.md @@ -0,0 +1,96 @@ + +###### (Automatically generated documentation) + +# Schedule File Builder + +## Description +Builds a residential schedule file. + +Generates a CSV of schedules at the specified file path, and inserts the CSV schedule file path into the output HPXML file (or overwrites it if one already exists). Stochastic schedules are generated using time-inhomogeneous Markov chains derived from American Time Use Survey data, and supplemented with sampling duration and power level from NEEA RBSA data as well as DHW draw duration and flow rate from Aquacraft/AWWA data. + +## Arguments + + +**HPXML File Path** + +Absolute/relative path of the HPXML file. + +- **Name:** ``hpxml_path`` +- **Type:** ``String`` + +- **Required:** ``true`` + +
+ +**Schedules: Column Names** + +A comma-separated list of the column names to generate. If not provided, defaults to all columns. Possible column names are: occupants, lighting_interior, lighting_garage, cooking_range, dishwasher, clothes_washer, clothes_dryer, ceiling_fan, plug_loads_other, plug_loads_tv, hot_water_dishwasher, hot_water_clothes_washer, hot_water_fixtures. + +- **Name:** ``schedules_column_names`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Schedules: Random Seed** + +This numeric field is the seed for the random number generator. Only applies if the schedules type is 'stochastic'. + +- **Name:** ``schedules_random_seed`` +- **Type:** ``Integer`` + +- **Units:** ``#`` + +- **Required:** ``false`` + +
+ +**Schedules: Output CSV Path** + +Absolute/relative path of the CSV file containing occupancy schedules. Relative paths are relative to the HPXML output path. + +- **Name:** ``output_csv_path`` +- **Type:** ``String`` + +- **Required:** ``true`` + +
+ +**HPXML Output File Path** + +Absolute/relative output path of the HPXML file. This HPXML file will include the output CSV path. + +- **Name:** ``hpxml_output_path`` +- **Type:** ``String`` + +- **Required:** ``true`` + +
+ +**Debug Mode?** + +Applicable when schedules type is stochastic. If true: Write extra state column(s). + +- **Name:** ``debug`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**BuildingID** + +The ID of the HPXML Building. Only required if there are multiple Building elements in the HPXML file. Use 'ALL' to apply schedules to all the HPXML Buildings (dwelling units) of a multifamily building. + +- **Name:** ``building_id`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ + + + + diff --git a/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/README.md.erb b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/README.md.erb new file mode 100644 index 00000000..0e9bc87d --- /dev/null +++ b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/README.md.erb @@ -0,0 +1,41 @@ +<%#= README.md.erb is used to auto-generate README.md. %> +###### (Automatically generated documentation) + +# <%= name %> + +## Description +<%= description %> + +<%= modelerDescription %> + +## Arguments + +<% arguments.each do |argument| %> +**<%= argument[:display_name] %>** + +<%= argument[:description] %> + +- **Name:** ``<%= argument[:name] %>`` +- **Type:** ``<%= argument[:type] %>`` +<% if argument[:units] %> +- **Units:** ``<%= argument[:units] %>`` +<% end %> +- **Required:** ``<%= argument[:required] %>`` +<% if argument[:type] == "Choice" %> +- **Choices:** `<%= argument[:choice_values].join("`, `") %>` +<% end %> +
+<% end %> + +<% if arguments.size == 0 %> +<%= "This measure does not have any user arguments" %> +<% end %> + +<% if outputs.size > 0 %> +## Outputs +All possible measure outputs are listed below. Actual outputs depend on measure argument values provided. + +<% outputs.each do |output| %> +- ``<%= output[:display_name] %>`` +<% end %> +<% end %> diff --git a/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb index 99332572..9f4b413f 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb +++ b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true # see the URL below for information on how to write OpenStudio measures @@ -68,6 +73,11 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDefaultValue(false) args << arg + arg = OpenStudio::Measure::OSArgument.makeStringArgument('building_id', false) + arg.setDisplayName('BuildingID') + arg.setDescription("The ID of the HPXML Building. Only required if there are multiple Building elements in the HPXML file. Use 'ALL' to apply schedules to all the HPXML Buildings (dwelling units) of a multifamily building.") + args << arg + return args end @@ -97,44 +107,84 @@ def run(model, runner, user_arguments) end args[:hpxml_output_path] = hpxml_output_path - hpxml = HPXML.new(hpxml_path: hpxml_path) + building_id = nil + building_id = args[:building_id].get if args[:building_id].is_initialized + hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: building_id) + + debug = false + if args[:debug].is_initialized + debug = args[:debug].get + end + args[:debug] = debug - # exit if number of occupants is zero - if hpxml.building_occupancy.number_of_residents == 0 - runner.registerInfo('Number of occupants set to zero; skipping generation of stochastic schedules.') - return true + # random seed + if args[:schedules_random_seed].is_initialized + args[:random_seed] = args[:schedules_random_seed].get + runner.registerInfo("Retrieved the schedules random seed; setting it to #{args[:random_seed]}.") + else + args[:random_seed] = 1 + runner.registerInfo('Unable to retrieve the schedules random seed; setting it to 1.') end # create EpwFile object - epw_path = Location.get_epw_path(hpxml, hpxml_path) + epw_path = Location.get_epw_path(hpxml.buildings[0], hpxml_path) epw_file = OpenStudio::EpwFile.new(epw_path) - # create the schedules - success = create_schedules(runner, hpxml, epw_file, args) - return false if not success + output_csv_basename, _ = args[:output_csv_path].split('.csv') - # modify the hpxml with the schedules path doc = XMLHelper.parse_file(hpxml_path) - extension = XMLHelper.create_elements_as_needed(XMLHelper.get_element(doc, '/HPXML'), ['SoftwareInfo', 'extension']) - schedules_filepaths = XMLHelper.get_values(extension, 'SchedulesFilePath', :string) - if !schedules_filepaths.include?(args[:output_csv_path]) - XMLHelper.add_element(extension, 'SchedulesFilePath', args[:output_csv_path], :string) + hpxml_doc = XMLHelper.get_element(doc, '/HPXML') + doc_buildings = XMLHelper.get_elements(hpxml_doc, 'Building') + doc_buildings.each_with_index do |building, i| + doc_building_id = XMLHelper.get_attribute_value(XMLHelper.get_element(building, 'BuildingID'), 'id') + + next if doc_buildings.size > 1 && building_id != 'ALL' && building_id != doc_building_id + + # deterministically vary schedules across building units + args[:random_seed] *= (i + 1) + + # get hpxml_bldg + hpxml_bldg = hpxml.buildings.find { |hb| hb.building_id == doc_building_id } + + # exit if number of occupants is zero + if hpxml_bldg.building_occupancy.number_of_residents == 0 + runner.registerInfo("#{doc_building_id}: Number of occupants set to zero; skipping generation of stochastic schedules.") + next + end + + # output csv path + args[:output_csv_path] = "#{output_csv_basename}.csv" + args[:output_csv_path] = "#{output_csv_basename}_#{i + 1}.csv" if i > 0 && building_id == 'ALL' + + # create the schedules + success = create_schedules(runner, hpxml, hpxml_bldg, epw_file, args) + return false if not success + + # modify the hpxml with the schedules path + extension = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'BuildingSummary', 'extension']) + schedules_filepaths = XMLHelper.get_values(extension, 'SchedulesFilePath', :string) + if !schedules_filepaths.include?(args[:output_csv_path]) + XMLHelper.add_element(extension, 'SchedulesFilePath', args[:output_csv_path], :string) + end + write_modified_hpxml(runner, doc, hpxml_path, hpxml_output_path, schedules_filepaths, args) end + return true + end + + def write_modified_hpxml(runner, doc, hpxml_path, hpxml_output_path, schedules_filepaths, args) # write out the modified hpxml if (hpxml_path != hpxml_output_path) || !schedules_filepaths.include?(args[:output_csv_path]) XMLHelper.write_file(doc, hpxml_output_path) runner.registerInfo("Wrote file: #{hpxml_output_path}") end - - return true end - def create_schedules(runner, hpxml, epw_file, args) + def create_schedules(runner, hpxml, hpxml_bldg, epw_file, args) info_msgs = [] get_simulation_parameters(hpxml, epw_file, args) - get_generator_inputs(hpxml, epw_file, args) + get_generator_inputs(hpxml_bldg, epw_file, args) args[:resources_path] = File.join(File.dirname(__FILE__), 'resources') schedule_generator = ScheduleGenerator.new(runner: runner, epw_file: epw_file, **args) @@ -177,26 +227,18 @@ def get_simulation_parameters(hpxml, epw_file, args) args[:total_days_in_year] = Constants.NumDaysInYear(calendar_year) end - def get_generator_inputs(hpxml, epw_file, args) + def get_generator_inputs(hpxml_bldg, epw_file, args) args[:state] = 'CO' args[:state] = epw_file.stateProvinceRegion if Constants.StateCodesMap.keys.include?(epw_file.stateProvinceRegion) - args[:state] = hpxml.header.state_code if !hpxml.header.state_code.nil? - - args[:random_seed] = args[:schedules_random_seed].get if args[:schedules_random_seed].is_initialized + args[:state] = hpxml_bldg.state_code if !hpxml_bldg.state_code.nil? args[:column_names] = args[:schedules_column_names].get.split(',').map(&:strip) if args[:schedules_column_names].is_initialized - if hpxml.building_occupancy.number_of_residents.nil? - args[:geometry_num_occupants] = Geometry.get_occupancy_default_num(hpxml.building_construction.number_of_bedrooms) + if hpxml_bldg.building_occupancy.number_of_residents.nil? + args[:geometry_num_occupants] = Geometry.get_occupancy_default_num(hpxml_bldg.building_construction.number_of_bedrooms) else - args[:geometry_num_occupants] = hpxml.building_occupancy.number_of_residents + args[:geometry_num_occupants] = hpxml_bldg.building_occupancy.number_of_residents end args[:geometry_num_occupants] = Float(Integer(args[:geometry_num_occupants])) - - debug = false - if args[:debug].is_initialized - debug = args[:debug].get - end - args[:debug] = debug end end diff --git a/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml index 96e3ea0f..da8362da 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml +++ b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml @@ -1,10 +1,10 @@ - 3.0 + 3.1 build_residential_schedule_file f770b2db-1a9f-4e99-99a7-7f3161a594b1 - 35b84be2-dc0f-4773-a72a-1da40dcaab8c - 20230421T211336Z + 48439a72-2880-4934-b216-38a24bf684b7 + 2023-11-02T14:39:58Z 03F02484 BuildResidentialScheduleFile Schedule File Builder @@ -71,6 +71,14 @@
+ + building_id + BuildingID + The ID of the HPXML Building. Only required if there are multiple Building elements in the HPXML file. Use 'ALL' to apply schedules to all the HPXML Buildings (dwelling units) of a multifamily building. + String + false + false + @@ -85,6 +93,35 @@ + + README.md + md + readme + 824BFECD + + + README.md.erb + erb + readmeerb + 513F28E9 + + + + OpenStudio + 3.2.0 + 3.2.0 + + measure.rb + rb + script + 6445A4FB + + + README.md + md + resource + A8A141BE + clothes_dryer_consumption_dist.csv csv @@ -109,6 +146,12 @@ resource 7F0BFEDA + + constants.rb + rb + resource + EED44A60 + cooking_consumption_dist.csv csv @@ -157,6 +200,18 @@ resource 419E598E + + schedules.rb + rb + resource + 8365F2E1 + + + schedules_config.md + md + resource + 916BF4C3 + shower_cluster_size_probability.csv csv @@ -854,45 +909,10 @@ 5FC694CF - README.md - md - resource - AAB89065 - - - schedules_config.md - md - resource - 916BF4C3 - - - constants.rb - rb - resource - EED44A60 - - - schedules.rb - rb - resource - 51D9D15E - - - - OpenStudio - 3.2.0 - 3.2.0 - - measure.rb - rb - script - 7FA6CE2D - - - build_residential_schedule_file_test.rb + test_build_residential_schedule_file.rb rb test - 1903613C + BF7A1992 diff --git a/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md index 2d892b6a..01341703 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md +++ b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md @@ -1,44 +1,69 @@ -The Stochastic Occupancy Modeling introduces major change to most occupant-related schedules. -Occupant activities are now generated on-the-fly and saved to .csv files used by Schedule:File objects. +Stochastic Occupancy Modeling introduces major changes to most occupant-related schedules. +Occupant activities are now generated on-the-fly and saved to CSV files used by `OpenStudio` Schedule:File objects. Schedules are generated using time-inhomogenous Markov chains derived from American Time Use Survey data, supplemented with sampling duration and power level from NEEA RBSA data, as well as DHW draw duration and flow rate data from Aquacraft/AWWA data. -It outputs a schedule.csv file (which will be available inside generated_files folder of each building simulation output). -The schedule.csv file contains the following columns: occupants, cooking_range, plug_loads, lighting_interior, lighting_exterior, lighting_garage, lighting_exterior_holiday, clothes_washer, clothes_dryer, dishwasher, baths, showers, sinks, ceiling_fan, clothes_dryer_exhaust, clothes_washer_power, dishwasher_power, sleep, vacancy. - -Each of the columns, except the occupants, sleep, and vacancy represent schedule values (kW for power schedules, and gallons per minute for water schedules) normalized using universal maximum values found in constants.rb. - -The occupants column represents the fractional percent of occupants present out of the total number of occupants assigned to the unit. -The sleep column represents the fractional percent of the total number of occupants who are sleeping. -And the vacancy column will either be 0 or 1 depending upon if the vacancy period is in effect. - -There are the same number of rows as the total simulation time-step (e.g., 35040 if 15-min, 8760 if hourly (8784, if leap year)). - -The ScheduleGenerator class uses Markov chain based simulation to generate the schedule.csv. To support that, several pre-generated set of files are used: - -`weekday` -`weekend` +The `BuildResidentialScheduleFile` measure outputs a schedule CSV file (available inside the `run` folder of each building simulation output). +The schedule CSV file contains the following columns: +* `occupants` +* `lighting_interior` +* `lighting_garage` +* `cooking_range` +* `dishwasher` +* `clothes_washer` +* `clothes_dryer` +* `ceiling_fan` +* `plug_loads_other` +* `plug_loads_tv` +* `hot_water_dishwasher` +* `hot_water_clothes_washer` +* `hot_water_fixtures` +* `sleep`* + +*Column `sleep` is optionally exported only when "debug" mode is enabled. + +Each of the columns, except `occupants`, represent schedule values (kW for power schedules, and gallons per minute for water schedules) normalized using universal maximum values found in `constants.rb`. + +The `occupants` column represents the fractional percent of occupants present out of the total number of occupants assigned to the unit. +The `sleep` column represents the fractional percent of the total number of occupants who are sleeping. + +There are the same number of rows as the total simulation time-step (e.g., 35040 if 15-min, 8760 if hourly [8784, if leap year]). + +The `ScheduleGenerator` class uses Markov chain based simulation to generate the schedule.csv. +To support that, several pre-generated set of files are used, contained in the following folders: +* `weekday` +* `weekend` These two folders contain the Markov chain initial probability, Markov chain transition and also appliance duration probabilities csv files. The appliance duration probabilities here are used during the Markov chain simulation to determine duration of various appliances. -The files are divided into four clusters (cluster0 to cluster3), for 4 types of occupant behavior types. +The files are divided into four clusters (cluster0 to cluster3), for 4 occupant behavior types. -`_power_consumption_dist.csv` +`_consumption_dist.csv` These files contain the 15-min power consumption kWh samples for the given end use, obtained from RBSA (average 15-min end use kWh for each submetered home; N=number of homes with that end use). The schedule generator randomly picks one of these values to determine the power level of the appliance schedule. -`_power_duration_dist.csv` +`_duration_dist.csv` These files contain the samples of runtime duration of different end uses, in 15-min increments, generated from the RBSA dataset. -So, a value of 3 means, 45 minutes. +So, a value of 3 means 45 minutes. Each row is for one household, and each column is the duration of one instance of the appliance running. +For the above `_consumption_dist.csv` and `_duration_dist.csv` files, `` may be: +* `clothes_dryer` +* `clothes_washer` +* `cooking` +* `dishwasher` + `_cluster_size_probability.csv` These files contain the probability distribution of the event cluster size for different domestic hot water end uses, obtained from the HotWaterEventScheduleGenerator Excel file. The first row is the probability of a cluster size of 1 event, second row for probability of cluster size of 2 events and so on. -`schedule_config.json` +For the above `_cluster_size_probability.csv` files, `` may be: +* `hot_water_clothes_washer` +* `hot_water_dishwasher` +* `shower` -This JSON file contains various miscellaneous configurations for the schedule generator, and their meanings and sources are defined within the file. +`constants.rb` +This file contains various miscellaneous configurations for the schedule generator, and their meanings and sources are defined within the file. diff --git a/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/constants.rb b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/constants.rb index e8d0802d..2fc503cd 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/constants.rb +++ b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/constants.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class Constants diff --git a/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb index 8bbbf72e..39f4835c 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb +++ b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require 'csv' @@ -33,17 +38,6 @@ def initialize(runner:, @debug = debug end - def get_random_seed - if @random_seed.nil? - @runner.registerInfo('Unable to retrieve the schedules random seed; setting it to 1.') - seed = 1 - else - @runner.registerInfo("Retrieved the schedules random seed; setting it to #{@random_seed}.") - seed = @random_seed - end - return seed - end - def self.export_columns return [SchedulesFile::ColumnOccupants, SchedulesFile::ColumnLightingInterior, @@ -89,7 +83,7 @@ def create(args:) def create_stochastic_schedules(args:) # initialize a random number generator - prng = Random.new(get_random_seed) + prng = Random.new(@random_seed) # pre-load the probability distribution csv files for speed cluster_size_prob_map = read_activity_cluster_size_probs(resources_path: args[:resources_path]) diff --git a/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/tests/test_build_residential_schedule_file.rb similarity index 58% rename from example_files/resources/hpxml-measures/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb rename to example_files/resources/hpxml-measures/BuildResidentialScheduleFile/tests/test_build_residential_schedule_file.rb index 15f0902f..3dd333ca 100644 --- a/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb +++ b/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/tests/test_build_residential_schedule_file.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../../HPXMLtoOpenStudio/resources/minitest_helper' @@ -29,10 +34,10 @@ def teardown def test_stochastic hpxml = _create_hpxml('base.xml') - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) @args_hash['output_csv_path'] = File.absolute_path(File.join(@tmp_output_path, 'occupancy-stochastic.csv')) - model, hpxml, result = _test_measure() + hpxml, result = _test_measure() info_msgs = result.info.map { |x| x.logMessage } assert(info_msgs.any? { |info_msg| info_msg.include?('stochastic schedule') }) @@ -42,8 +47,7 @@ def test_stochastic assert(!info_msgs.any? { |info_msg| info_msg.include?('RandomSeed') }) assert(info_msgs.any? { |info_msg| info_msg.include?('GeometryNumOccupants=3.0') }) - sf = SchedulesFile.new(model: model, - schedules_paths: hpxml.header.schedules_filepaths, + sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, year: 2007, output_path: @tmp_schedule_file_path) @@ -65,7 +69,7 @@ def test_stochastic def test_stochastic_subset_of_columns hpxml = _create_hpxml('base.xml') - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) columns = [SchedulesFile::ColumnCookingRange, SchedulesFile::ColumnDishwasher, @@ -78,13 +82,12 @@ def test_stochastic_subset_of_columns @args_hash['schedules_type'] = 'stochastic' @args_hash['output_csv_path'] = File.absolute_path(File.join(@tmp_output_path, 'occupancy-stochastic.csv')) @args_hash['schedules_column_names'] = columns.join(', ') - model, hpxml, result = _test_measure() + hpxml, result = _test_measure() info_msgs = result.info.map { |x| x.logMessage } assert(info_msgs.any? { |info_msg| info_msg.include?('ColumnNames') }) - sf = SchedulesFile.new(model: model, - schedules_paths: hpxml.header.schedules_filepaths, + sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, year: 2007, output_path: @tmp_schedule_file_path) @@ -98,12 +101,12 @@ def test_stochastic_subset_of_columns def test_stochastic_subset_of_columns_invalid_name hpxml = _create_hpxml('base.xml') - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) @args_hash['schedules_type'] = 'stochastic' @args_hash['output_csv_path'] = File.absolute_path(File.join(@tmp_output_path, 'occupancy-stochastic.csv')) @args_hash['schedules_column_names'] = "foobar, #{SchedulesFile::ColumnCookingRange}, foobar2" - _model, _hpxml, result = _test_measure(expect_fail: true) + _hpxml, result = _test_measure(expect_fail: true) error_msgs = result.errors.map { |x| x.logMessage } assert(error_msgs.any? { |error_msg| error_msg.include?("Invalid column name specified: 'foobar'.") }) @@ -112,11 +115,11 @@ def test_stochastic_subset_of_columns_invalid_name def test_stochastic_debug hpxml = _create_hpxml('base.xml') - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) @args_hash['output_csv_path'] = File.absolute_path(File.join(@tmp_output_path, 'occupancy-stochastic.csv')) @args_hash['debug'] = true - model, hpxml, result = _test_measure() + hpxml, result = _test_measure() info_msgs = result.info.map { |x| x.logMessage } assert(info_msgs.any? { |info_msg| info_msg.include?('stochastic schedule') }) @@ -126,8 +129,7 @@ def test_stochastic_debug assert(!info_msgs.any? { |info_msg| info_msg.include?('RandomSeed') }) assert(info_msgs.any? { |info_msg| info_msg.include?('GeometryNumOccupants=3.0') }) - sf = SchedulesFile.new(model: model, - schedules_paths: hpxml.header.schedules_filepaths, + sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, year: 2007, output_path: @tmp_schedule_file_path) @@ -149,11 +151,11 @@ def test_stochastic_debug def test_random_seed hpxml = _create_hpxml('base-location-baltimore-md.xml') - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) @args_hash['schedules_random_seed'] = 1 @args_hash['output_csv_path'] = File.absolute_path(File.join(@tmp_output_path, 'occupancy-stochastic.csv')) - model, hpxml, result = _test_measure() + hpxml, result = _test_measure() info_msgs = result.info.map { |x| x.logMessage } assert(info_msgs.any? { |info_msg| info_msg.include?('stochastic schedule') }) @@ -163,8 +165,7 @@ def test_random_seed assert(info_msgs.any? { |info_msg| info_msg.include?('RandomSeed=1') }) assert(info_msgs.any? { |info_msg| info_msg.include?('GeometryNumOccupants=3.0') }) - sf = SchedulesFile.new(model: model, - schedules_paths: hpxml.header.schedules_filepaths, + sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, year: 2007, output_path: @tmp_schedule_file_path) @@ -184,7 +185,7 @@ def test_random_seed assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) @args_hash['schedules_random_seed'] = 2 - model, hpxml, result = _test_measure() + hpxml, result = _test_measure() info_msgs = result.info.map { |x| x.logMessage } assert(info_msgs.any? { |info_msg| info_msg.include?('stochastic schedule') }) @@ -194,8 +195,7 @@ def test_random_seed assert(info_msgs.any? { |info_msg| info_msg.include?('RandomSeed=2') }) assert(info_msgs.any? { |info_msg| info_msg.include?('GeometryNumOccupants=3.0') }) - sf = SchedulesFile.new(model: model, - schedules_paths: hpxml.header.schedules_filepaths, + sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, year: 2007, output_path: @tmp_schedule_file_path) @@ -217,10 +217,10 @@ def test_random_seed def test_10_min_timestep hpxml = _create_hpxml('base-simcontrol-timestep-10-mins.xml') - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) @args_hash['output_csv_path'] = File.absolute_path(File.join(@tmp_output_path, 'occupancy-stochastic.csv')) - model, hpxml, result = _test_measure() + hpxml, result = _test_measure() info_msgs = result.info.map { |x| x.logMessage } assert(info_msgs.any? { |info_msg| info_msg.include?('stochastic schedule') }) @@ -230,8 +230,7 @@ def test_10_min_timestep assert(!info_msgs.any? { |info_msg| info_msg.include?('RandomSeed') }) assert(info_msgs.any? { |info_msg| info_msg.include?('GeometryNumOccupants=3.0') }) - sf = SchedulesFile.new(model: model, - schedules_paths: hpxml.header.schedules_filepaths, + sf = SchedulesFile.new(schedules_paths: hpxml.buildings[0].header.schedules_filepaths, year: 2007, output_path: @tmp_schedule_file_path) @@ -255,11 +254,11 @@ def test_non_integer_number_of_occupants num_occupants = 3.2 hpxml = _create_hpxml('base.xml') - hpxml.building_occupancy.number_of_residents = num_occupants - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + hpxml.buildings[0].building_occupancy.number_of_residents = num_occupants + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) @args_hash['output_csv_path'] = File.absolute_path(File.join(@tmp_output_path, 'occupancy-stochastic.csv')) - _model, _hpxml, result = _test_measure() + _hpxml, result = _test_measure() info_msgs = result.info.map { |x| x.logMessage } assert(info_msgs.any? { |info_msg| info_msg.include?("GeometryNumOccupants=#{Float(Integer(num_occupants))}") }) @@ -269,17 +268,145 @@ def test_zero_occupants num_occupants = 0.0 hpxml = _create_hpxml('base.xml') - hpxml.building_occupancy.number_of_residents = num_occupants - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + hpxml.buildings[0].building_occupancy.number_of_residents = num_occupants + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) @args_hash['output_csv_path'] = File.absolute_path(File.join(@tmp_output_path, 'occupancy-stochastic.csv')) - _model, _hpxml, result = _test_measure() + _hpxml, result = _test_measure() info_msgs = result.info.map { |x| x.logMessage } assert(1, info_msgs.size) assert(info_msgs.any? { |info_msg| info_msg.include?('Number of occupants set to zero; skipping generation of stochastic schedules.') }) assert(!File.exist?(@args_hash['output_csv_path'])) - assert_empty(hpxml.header.schedules_filepaths) + assert_empty(hpxml.buildings[0].header.schedules_filepaths) + end + + def test_multiple_buildings + hpxml = _create_hpxml('base-multiple-sfd-buildings.xml') + hpxml.buildings.each do |hpxml_bldg| + hpxml_bldg.header.schedules_filepaths = nil + end + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + + @args_hash['output_csv_path'] = File.absolute_path(File.join(@tmp_output_path, 'occupancy-stochastic.csv')) + @args_hash['building_id'] = 'ALL' + hpxml, result = _test_measure() + + info_msgs = result.info.map { |x| x.logMessage } + assert(info_msgs.any? { |info_msg| info_msg.include?('stochastic schedule') }) + assert(info_msgs.any? { |info_msg| info_msg.include?('SimYear=2007') }) + assert(info_msgs.any? { |info_msg| info_msg.include?('MinutesPerStep=60') }) + assert(info_msgs.any? { |info_msg| info_msg.include?('State=CO') }) + assert(!info_msgs.any? { |info_msg| info_msg.include?('RandomSeed') }) + assert(info_msgs.any? { |info_msg| info_msg.include?('GeometryNumOccupants=3.0') }) + + hpxml.buildings.each do |hpxml_bldg| + sf = SchedulesFile.new(schedules_paths: hpxml_bldg.header.schedules_filepaths, + year: 2007, + output_path: @tmp_schedule_file_path) + + if hpxml_bldg.building_id == 'MyBuilding' + assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) + assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic.csv') + assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(2086, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(534, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(213, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(134, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(151, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(298, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(325, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) + assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) + elsif hpxml_bldg.building_id == 'MyBuilding_2' + assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) + assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic_2.csv') + assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(356, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(165, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(101, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(166, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(221, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(266, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) + assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) + elsif hpxml_bldg.building_id == 'MyBuilding_3' + assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) + assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic_3.csv') + assert_in_epsilon(6045, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(1745, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(1745, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(421, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(239, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(81, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(127, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(224, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(209, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) + assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) + end + end + end + + def test_multiple_buildings_id + hpxml = _create_hpxml('base-multiple-sfd-buildings.xml') + hpxml.buildings.each do |hpxml_bldg| + hpxml_bldg.header.schedules_filepaths = nil + end + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + + @args_hash['output_csv_path'] = File.absolute_path(File.join(@tmp_output_path, 'occupancy-stochastic_2.csv')) + @args_hash['building_id'] = 'MyBuilding_2' + hpxml, result = _test_measure() + + info_msgs = result.info.map { |x| x.logMessage } + assert(info_msgs.any? { |info_msg| info_msg.include?('stochastic schedule') }) + assert(info_msgs.any? { |info_msg| info_msg.include?('SimYear=2007') }) + assert(info_msgs.any? { |info_msg| info_msg.include?('MinutesPerStep=60') }) + assert(info_msgs.any? { |info_msg| info_msg.include?('State=CO') }) + assert(!info_msgs.any? { |info_msg| info_msg.include?('RandomSeed') }) + assert(info_msgs.any? { |info_msg| info_msg.include?('GeometryNumOccupants=3.0') }) + + hpxml.buildings.each do |hpxml_bldg| + building_id = hpxml_bldg.building_id + + if building_id == @args_hash['building_id'] + sf = SchedulesFile.new(schedules_paths: hpxml_bldg.header.schedules_filepaths, + year: 2007, + output_path: @tmp_schedule_file_path) + + assert_equal(1, hpxml_bldg.header.schedules_filepaths.size) + assert(hpxml_bldg.header.schedules_filepaths[0].include? 'occupancy-stochastic_2.csv') + assert_in_epsilon(6072, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(1765, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(356, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(165, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(101, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(166, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesDryer, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(3250, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCeilingFan, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsOther, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(4840, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnPlugLoadsTV, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(221, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(266, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedules: sf.tmp_schedules), 0.1) + assert_in_epsilon(887, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnHotWaterFixtures, schedules: sf.tmp_schedules), 0.1) + assert(!sf.schedules.keys.include?(SchedulesFile::ColumnSleeping)) + else + assert_empty(hpxml_bldg.header.schedules_filepaths) + end + end end def _test_measure(expect_fail: false) @@ -315,12 +442,12 @@ def _test_measure(expect_fail: false) assert_equal('Success', result.value.valueName) end - hpxml = HPXML.new(hpxml_path: @tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: @tmp_hpxml_path, building_id: 'ALL') - return model, hpxml, result + return hpxml, result end def _create_hpxml(hpxml_name) - return HPXML.new(hpxml_path: File.join(@sample_files_path, hpxml_name)) + return HPXML.new(hpxml_path: File.join(@sample_files_path, hpxml_name), building_id: 'ALL') end end diff --git a/example_files/resources/hpxml-measures/Changelog.md b/example_files/resources/hpxml-measures/Changelog.md index 13bb0521..62b13403 100644 --- a/example_files/resources/hpxml-measures/Changelog.md +++ b/example_files/resources/hpxml-measures/Changelog.md @@ -1,3 +1,59 @@ +## OpenStudio-HPXML v1.7.0 + +__New Features__ +- Updates to OpenStudio 3.7.0/EnergyPlus 23.2. +- **Breaking change**: Updates to HPXML v4.0-rc2: + - HPXML namespace changed from http://hpxmlonline.com/2019/10 to http://hpxmlonline.com/2023/09. + - Replaces "living space" with "conditioned space", which better represents what is modeled. + - Replaces `HotTubs/HotTub` with `Spas/PermanentSpa`. + - Replaces `PortableHeater` and `FixedHeater` with `SpaceHeater`. +- Allows simulating whole multifamily (MF) buildings in a single combined simulation: + - **Breaking change**: Multiple elements move from `SoftwareInfo/extension` to `BuildingDetails/BuildingSummary/extension` to allow variation across units: + - `HVACSizingControl` + - `ShadingControl` + - `SchedulesFilePath` + - `NaturalVentilationAvailabilityDaysperWeek` + - Allows `NumberofUnits` to be used as a multiplier on dwelling unit simulation results to reduce simulation runtime. + - See the [OpenStudio-HPXML documentation](https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#whole-sfa-mf-buildings) for more detail. +- HVAC modeling updates: + - Updated assumptions for variable-speed air conditioners, heat pumps, and mini-splits based on NEEP data. Expect results to change, potentially significantly so depending on the scenario. + - Allows detailed heating and cooling performance data (min/max COPs and capacities at different outdoor temperatures) for variable-speed systems. + - Updates deep ground temperatures (used for modeling ground-source heat pumps) using L. Xing's simplified design model (2014). + - Replaces inverse calculations, used to calculate COPs from rated efficiencies, with regressions for single/two-speed central ACs and ASHPs. +- Output updates: + - **Breaking change**: "Hot Tub" outputs renamed to "Permanent Spa". + - Adds "Peak Electricity: Annual Total (W)" output. + - Adds battery resilience hours output; allows requesting timeseries output. + - ReportUtilityBills measure: Allows reporting monthly utility bills in addition to (or instead of) annual bills. +- BuildResidentialHPXML measure: + - Allow duct area fractions (as an alternative to duct areas in ft^2). + - Allow duct locations to be provided while defaulting duct areas (i.e., without providing duct area/fraction inputs). + - Add generic "attic" and "crawlspace" location choices for supply/return ducts, water heater, and battery. + - Always validate the HPXML file before applying defaults and only optionally validate the final HPXML file. +- Adds manufactured home belly as a foundation type and allows modeling ducts in a manufactured home belly. +- Battery losses now split between charging and discharging. +- Interior/exterior window shading multipliers are now modeled using the EnergyPlus incident solar multiplier. +- Allows `WaterFixture/FlowRate` as an alternative to `LowFlow`; hot water credit is now calculated based on fraction of low flow fixtures. +- Allows above-grade basements/crawlspaces defined solely with Wall (not FoundationWall) elements. +- Updates to 2022 EIA energy costs. +- Added README.md documentation for all OpenStudio measures. + +__Bugfixes__ +- Fixes battery resilience output to properly incorporate battery losses. +- Fixes lighting multipliers not being applied when kWh/yr inputs are used. +- Fixes running detailed schedules with mixed timesteps (e.g., hourly heating/cooling setpoints and 15-minutely miscellaneous plug load schedules). +- Fixes calculation of utility bill fixed costs for simulations with abbreviated run periods. +- Fixes error if heat pump `CompressorLockoutTemperature` == `BackupHeatingLockoutTemperature`. +- Fixes possible "Electricity category end uses do not sum to total" error for a heat pump w/o backup. +- Fixes ground source heat pump fan/pump adjustment to rated efficiency. +- Fixes error if conditioned basement has `InsulationSpansEntireSlab=true`. +- Fixes ReportSimulationOutput outputs for the Parametric Analysis Tool (PAT). +- Fixes missing radiation exchange between window and sky when an interior/exterior window shading multiplier less than 1 exists. +- Fixes monthly shallow ground temperatures (used primarily in HVAC autosizing) for the southern hemisphere. +- Various HVAC sizing bugfixes and improvements. +- Fixes low-speed heating COPs for some two-speed ASHPs and cooling COPs for some single-speed ACs/HPs. +- BuildResidentialHPXML measure: Fixes air distribution CFA served when there is not a central system that meets 100% of the load. + ## OpenStudio-HPXML v1.6.0 __New Features__ @@ -222,7 +278,7 @@ __New Features__ - **Breaking change**: Any heat pump backup heating requires `HeatPump/BackupType` ("integrated" or "separate") to be specified. - **Breaking change**: For homes with multiple PV arrays, all inverter efficiencies must have the same value. - **Breaking change**: HPXML schema version must now be '4.0' (proposed). - - Moves `ClothesDryer/extension/IsVented` to `ClothesDryer/IsVented`. + - Moves `ClothesDryer/extension/IsVented` to `ClothesDryer/Vented`. - Moves `ClothesDryer/extension/VentedFlowRate` to `ClothesDryer/VentedFlowRate`. - Moves `FoundationWall/Insulation/Layer/extension/DistanceToTopOfInsulation` to `FoundationWall/Insulation/Layer/DistanceToTopOfInsulation`. - Moves `FoundationWall/Insulation/Layer/extension/DistanceToBottomOfInsulation` to `FoundationWall/Insulation/Layer/DistanceToBottomOfInsulation`. diff --git a/example_files/resources/hpxml-measures/Gemfile b/example_files/resources/hpxml-measures/Gemfile index aa5d28de..07496be3 100644 --- a/example_files/resources/hpxml-measures/Gemfile +++ b/example_files/resources/hpxml-measures/Gemfile @@ -1,6 +1,6 @@ # frozen_string_literal: true -source 'https://rubygems.org' +source 'http://rubygems.org' gem 'oga' gem 'rake' diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/README.md b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/README.md new file mode 100644 index 00000000..758fa3a1 --- /dev/null +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/README.md @@ -0,0 +1,83 @@ + +###### (Automatically generated documentation) + +# HPXML to OpenStudio Translator + +## Description +Translates HPXML file to OpenStudio Model + + + +## Arguments + + +**HPXML File Path** + +Absolute/relative path of the HPXML file. + +- **Name:** ``hpxml_path`` +- **Type:** ``String`` + +- **Required:** ``true`` + +
+ +**Directory for Output Files** + +Absolute/relative path for the output files directory. + +- **Name:** ``output_dir`` +- **Type:** ``String`` + +- **Required:** ``true`` + +
+ +**Debug Mode?** + +If true: 1) Writes in.osm file, 2) Generates additional log output, and 3) Creates all EnergyPlus output files. + +- **Name:** ``debug`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Add component loads?** + +If true, adds the calculation of heating/cooling component loads (not enabled by default for faster performance). + +- **Name:** ``add_component_loads`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Skip Validation?** + +If true, bypasses HPXML input validation for faster performance. WARNING: This should only be used if the supplied HPXML file has already been validated against the Schema & Schematron documents. + +- **Name:** ``skip_validation`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**BuildingID** + +The ID of the HPXML Building. Only required if there are multiple Building elements in the HPXML file. Use 'ALL' to run all the HPXML Buildings (dwelling units) of a multifamily building in a single model. + +- **Name:** ``building_id`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ + + + + diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/README.md.erb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/README.md.erb new file mode 100644 index 00000000..0e9bc87d --- /dev/null +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/README.md.erb @@ -0,0 +1,41 @@ +<%#= README.md.erb is used to auto-generate README.md. %> +###### (Automatically generated documentation) + +# <%= name %> + +## Description +<%= description %> + +<%= modelerDescription %> + +## Arguments + +<% arguments.each do |argument| %> +**<%= argument[:display_name] %>** + +<%= argument[:description] %> + +- **Name:** ``<%= argument[:name] %>`` +- **Type:** ``<%= argument[:type] %>`` +<% if argument[:units] %> +- **Units:** ``<%= argument[:units] %>`` +<% end %> +- **Required:** ``<%= argument[:required] %>`` +<% if argument[:type] == "Choice" %> +- **Choices:** `<%= argument[:choice_values].join("`, `") %>` +<% end %> +
+<% end %> + +<% if arguments.size == 0 %> +<%= "This measure does not have any user arguments" %> +<% end %> + +<% if outputs.size > 0 %> +## Outputs +All possible measure outputs are listed below. Actual outputs depend on measure argument values provided. + +<% outputs.each do |output| %> +- ``<%= output[:display_name] %>`` +<% end %> +<% end %> diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb index f3b2afe5..aab4f3aa 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true # Require all gems up front; this is much faster than multiple resource @@ -63,7 +68,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument.makeStringArgument('building_id', false) arg.setDisplayName('BuildingID') - arg.setDescription('The ID of the HPXML Building. Only required if there are multiple Building elements in the HPXML file.') + arg.setDescription("The ID of the HPXML Building. Only required if there are multiple Building elements in the HPXML file. Use 'ALL' to run all the HPXML Buildings (dwelling units) of a multifamily building in a single model.") args << arg return args @@ -89,6 +94,7 @@ def run(model, runner, user_arguments) debug = runner.getBoolArgumentValue('debug', user_arguments) skip_validation = runner.getBoolArgumentValue('skip_validation', user_arguments) building_id = runner.getOptionalStringArgumentValue('building_id', user_arguments) + building_id = building_id.is_initialized ? building_id.get : nil unless (Pathname.new hpxml_path).absolute? hpxml_path = File.expand_path(hpxml_path) @@ -101,12 +107,6 @@ def run(model, runner, user_arguments) output_dir = File.expand_path(output_dir) end - if building_id.is_initialized - building_id = building_id.get - else - building_id = nil - end - begin if skip_validation schema_validator = nil @@ -117,6 +117,7 @@ def run(model, runner, user_arguments) schematron_path = File.join(File.dirname(__FILE__), 'resources', 'hpxml_schematron', 'EPvalidator.xml') schematron_validator = XMLValidator.get_schematron_validator(schematron_path) end + hpxml = HPXML.new(hpxml_path: hpxml_path, schema_validator: schema_validator, schematron_validator: schematron_validator, building_id: building_id) hpxml.errors.each do |error| runner.registerError(error) @@ -126,16 +127,91 @@ def run(model, runner, user_arguments) end return false unless hpxml.errors.empty? - epw_path = Location.get_epw_path(hpxml, hpxml_path) - weather = WeatherProcess.new(epw_path: epw_path, runner: runner) + eri_version = hpxml.header.eri_calculation_version # Hidden feature + eri_version = 'latest' if eri_version.nil? + eri_version = Constants.ERIVersions[-1] if eri_version == 'latest' + + # Process weather once upfront + epw_path = Location.get_epw_path(hpxml.buildings[0], hpxml_path) + weather = WeatherProcess.new(epw_path: epw_path, runner: runner, hpxml: hpxml) + epw_file = OpenStudio::EpwFile.new(epw_path) + hpxml.buildings.each_with_index do |hpxml_bldg, i| + next if i == 0 + next if Location.get_epw_path(hpxml_bldg, hpxml_path) == epw_path + + fail 'Weather station EPW filepath has different values across dwelling units.' + end + + if (building_id == 'ALL') && (hpxml.buildings.size > 1) + if hpxml.buildings.map { |hpxml_bldg| hpxml_bldg.batteries.size }.sum > 0 + # FUTURE: Figure out how to allow this. If we allow it, update docs and hpxml_translator_test.rb too. + # Batteries use "TrackFacilityElectricDemandStoreExcessOnSite"; to support modeling of batteries in whole + # SFA/MF building simulations, we'd need to create custom meters with electricity usage *for each unit* + # and switch to "TrackMeterDemandStoreExcessOnSite". + # https://github.com/NREL/OpenStudio-HPXML/issues/1499 + fail 'Modeling batteries for whole SFA/MF buildings is not currently supported.' + end + end + + # Apply HPXML defaults upfront; process schedules & emissions + hpxml_sch_map = {} + check_emissions_references(hpxml.header, hpxml_path) + hpxml.buildings.each_with_index do |hpxml_bldg, i| + check_schedule_references(hpxml_bldg.header, hpxml_path) + in_schedules_csv = 'in.schedules.csv' + in_schedules_csv = "in.schedules#{i + 1}.csv" if i > 0 + schedules_file = SchedulesFile.new(runner: runner, + schedules_paths: hpxml_bldg.header.schedules_filepaths, + year: Location.get_sim_calendar_year(hpxml.header.sim_calendar_year, epw_file), + unavailable_periods: hpxml.header.unavailable_periods, + output_path: File.join(output_dir, in_schedules_csv)) + HPXMLDefaults.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: epw_file, schedules_file: schedules_file) + hpxml_sch_map[hpxml_bldg] = schedules_file + end + validate_emissions_files(hpxml.header) + + # Write updated HPXML object (w/ defaults) to file for inspection + hpxml_defaults_path = File.join(output_dir, 'in.xml') + XMLHelper.write_file(hpxml.to_doc, hpxml_defaults_path) + + # Create OpenStudio model + hpxml_osm_map = {} + hpxml.buildings.each_with_index do |hpxml_bldg, i| + schedules_file = hpxml_sch_map[hpxml_bldg] + if hpxml.buildings.size > 1 + # Create the model for this single unit + unit_model = OpenStudio::Model::Model.new + create_unit_model(hpxml, hpxml_bldg, runner, unit_model, epw_path, epw_file, weather, debug, schedules_file, eri_version, i + 1) + hpxml_osm_map[hpxml_bldg] = unit_model + else + create_unit_model(hpxml, hpxml_bldg, runner, model, epw_path, epw_file, weather, debug, schedules_file, eri_version, i + 1) + hpxml_osm_map[hpxml_bldg] = model + end + end + + # Merge unit models into final model + if hpxml.buildings.size > 1 + add_unit_model_to_model(model, hpxml_osm_map) + end + + # Output + add_unmet_hours_output(model, hpxml_osm_map) + add_loads_output(model, add_component_loads, hpxml_osm_map) + set_output_files(model) + add_additional_properties(model, hpxml, hpxml_osm_map, hpxml_path, building_id, epw_file, hpxml_defaults_path) + # Uncomment to debug EMS + # add_ems_debug_output(model) if debug + # Write OSM file to run dir + osm_output_path = File.join(output_dir, 'in.osm') + File.write(osm_output_path, model.to_s) + runner.registerInfo("Wrote file: #{osm_output_path}") + + # Copy EPW file to run dir epw_output_path = File.join(output_dir, 'in.epw') FileUtils.cp(epw_path, epw_output_path) end - - OSModel.create(hpxml, runner, model, hpxml_path, epw_path, weather, output_dir, - add_component_loads, building_id, debug) rescue Exception => e runner.registerError("#{e.message}\n#{e.backtrace.join("\n")}") return false @@ -143,19 +219,198 @@ def run(model, runner, user_arguments) return true end -end -class OSModel - def self.create(hpxml, runner, model, hpxml_path, epw_path, weather, output_dir, - add_component_loads, building_id, debug) - @hpxml = hpxml - @debug = debug + def add_unit_model_to_model(model, hpxml_osm_map) + unique_objects = { 'OS:ConvergenceLimits' => 'ConvergenceLimits', + 'OS:Foundation:Kiva:Settings' => 'FoundationKivaSettings', + 'OS:OutputControl:Files' => 'OutputControlFiles', + 'OS:Output:Diagnostics' => 'OutputDiagnostics', + 'OS:Output:JSON' => 'OutputJSON', + 'OS:PerformancePrecisionTradeoffs' => 'PerformancePrecisionTradeoffs', + 'OS:RunPeriod' => 'RunPeriod', + 'OS:RunPeriodControl:DaylightSavingTime' => 'RunPeriodControlDaylightSavingTime', + 'OS:ShadowCalculation' => 'ShadowCalculation', + 'OS:SimulationControl' => 'SimulationControl', + 'OS:Site' => 'Site', + 'OS:Site:GroundTemperature:Deep' => 'SiteGroundTemperatureDeep', + 'OS:Site:GroundTemperature:Shallow' => 'SiteGroundTemperatureShallow', + 'OS:Site:WaterMainsTemperature' => 'SiteWaterMainsTemperature', + 'OS:SurfaceConvectionAlgorithm:Inside' => 'InsideSurfaceConvectionAlgorithm', + 'OS:SurfaceConvectionAlgorithm:Outside' => 'OutsideSurfaceConvectionAlgorithm', + 'OS:Timestep' => 'Timestep' } + + # Handle unique objects first: Grab one from the first model we find the + # object on (may not be the first unit). + unit_model_objects = [] + unique_handles_to_skip = [] + uuid_regex = /\{(.*?)\}/ + unique_objects.each do |idd_obj, osm_class| + first_model_object_by_type = nil + hpxml_osm_map.values.each do |unit_model| + next if unit_model.getObjectsByType(idd_obj.to_IddObjectType).empty? + + model_object = unit_model.send("get#{osm_class}") + + if first_model_object_by_type.nil? + # Retain object for model + unit_model_objects << model_object + first_model_object_by_type = model_object + if idd_obj == 'OS:Site:WaterMainsTemperature' # Handle referenced child object too + unit_model_objects << unit_model.getObjectsByName(model_object.temperatureSchedule.get.name.to_s)[0] + end + else + # Throw error if different values between this model_object and first_model_object_by_type + if model_object.to_s.gsub(uuid_regex, '') != first_model_object_by_type.to_s.gsub(uuid_regex, '') + fail "Unique object (#{idd_obj}) has different values across dwelling units." + end + + if idd_obj == 'OS:Site:WaterMainsTemperature' # Handle referenced child object too + if model_object.temperatureSchedule.get.to_s.gsub(uuid_regex, '') != first_model_object_by_type.temperatureSchedule.get.to_s.gsub(uuid_regex, '') + fail "Unique object (#{idd_obj}) has different values across dwelling units." + end + end + end + + unique_handles_to_skip << model_object.handle.to_s + if idd_obj == 'OS:Site:WaterMainsTemperature' # Handle referenced child object too + unique_handles_to_skip << model_object.temperatureSchedule.get.handle.to_s + end + end + end + + hpxml_osm_map.values.each_with_index do |unit_model, unit_number| + shift_geometry(unit_model, unit_number) + prefix_all_unit_model_objects(unit_model, unit_number) + + # Handle remaining (non-unique) objects now + unit_model.objects.each do |obj| + next if unit_number > 0 && obj.to_Building.is_initialized + next if unique_handles_to_skip.include? obj.handle.to_s - @eri_version = @hpxml.header.eri_calculation_version # Hidden feature - @eri_version = 'latest' if @eri_version.nil? - @eri_version = Constants.ERIVersions[-1] if @eri_version == 'latest' + unit_model_objects << obj + end + end - @apply_ashrae140_assumptions = @hpxml.header.apply_ashrae140_assumptions # Hidden feature + model.addObjects(unit_model_objects, true) + end + + def shift_geometry(unit_model, unit_number) + # Shift units so they aren't right on top and shade each other + y_shift = 200.0 * unit_number # meters + + # shift the unit so it's not right on top of the previous one + unit_model.getSpaces.sort.each do |space| + space.setYOrigin(y_shift) + end + + # shift shading surfaces + m = OpenStudio::Matrix.new(4, 4, 0) + m[0, 0] = 1 + m[1, 1] = 1 + m[2, 2] = 1 + m[3, 3] = 1 + m[1, 3] = y_shift + t = OpenStudio::Transformation.new(m) + + unit_model.getShadingSurfaceGroups.each do |shading_surface_group| + next if shading_surface_group.space.is_initialized # already got shifted + + shading_surface_group.shadingSurfaces.each do |shading_surface| + shading_surface.setVertices(t * shading_surface.vertices) + end + end + end + + def prefix_all_unit_model_objects(unit_model, unit_number) + # Prefix all objects with name using unit number + # FUTURE: Create objects with unique names up front so we don't have to do this + + # EMS objects + ems_map = {} + + unit_model.getEnergyManagementSystemSensors.each do |sensor| + ems_map[sensor.name.to_s] = make_variable_name(sensor.name, unit_number) + sensor.setKeyName(make_variable_name(sensor.keyName, unit_number)) unless sensor.keyName.empty? || sensor.keyName.downcase == 'environment' + end + + unit_model.getEnergyManagementSystemActuators.each do |actuator| + ems_map[actuator.name.to_s] = make_variable_name(actuator.name, unit_number) + end + + unit_model.getEnergyManagementSystemInternalVariables.each do |internal_variable| + ems_map[internal_variable.name.to_s] = make_variable_name(internal_variable.name, unit_number) + internal_variable.setInternalDataIndexKeyName(make_variable_name(internal_variable.internalDataIndexKeyName, unit_number)) unless internal_variable.internalDataIndexKeyName.empty? + end + + unit_model.getEnergyManagementSystemGlobalVariables.each do |global_variable| + ems_map[global_variable.name.to_s] = make_variable_name(global_variable.name, unit_number) + end + + unit_model.getEnergyManagementSystemOutputVariables.each do |output_variable| + next if output_variable.emsVariableObject.is_initialized + + new_ems_variable_name = make_variable_name(output_variable.emsVariableName, unit_number) + ems_map[output_variable.emsVariableName.to_s] = new_ems_variable_name + output_variable.setEMSVariableName(new_ems_variable_name) + end + + unit_model.getEnergyManagementSystemSubroutines.each do |subroutine| + ems_map[subroutine.name.to_s] = make_variable_name(subroutine.name, unit_number) + end + + # variables in program lines don't get updated automatically + lhs_characters = [' ', ',', '(', ')', '+', '-', '*', '/', ';'] + rhs_characters = [''] + lhs_characters + (unit_model.getEnergyManagementSystemPrograms + unit_model.getEnergyManagementSystemSubroutines).each do |program| + new_lines = [] + program.lines.each do |line| + ems_map.each do |old_name, new_name| + next unless line.include?(old_name) + + # old_name between at least 1 character, with the exception of '' on left and ' ' on right + lhs_characters.each do |lhs| + next unless line.include?("#{lhs}#{old_name}") + + rhs_characters.each do |rhs| + next unless line.include?("#{lhs}#{old_name}#{rhs}") + next if lhs == '' && ['', ' '].include?(rhs) + + line.gsub!("#{lhs}#{old_name}#{rhs}", "#{lhs}#{new_name}#{rhs}") + end + end + end + new_lines << line + end + program.setLines(new_lines) + end + + # All model objects + unit_model.objects.each do |model_object| + next if model_object.name.nil? + + if unit_number == 0 + # OpenStudio is unhappy if these schedules are renamed + next if model_object.name.to_s == unit_model.alwaysOnContinuousSchedule.name.to_s + next if model_object.name.to_s == unit_model.alwaysOnDiscreteSchedule.name.to_s + next if model_object.name.to_s == unit_model.alwaysOffDiscreteSchedule.name.to_s + end + + model_object.setName(make_variable_name(model_object.name, unit_number)) + end + end + + def make_variable_name(obj_name, unit_number) + return "unit#{unit_number + 1}_#{obj_name}".gsub(' ', '_').gsub('-', '_') + end + + def create_unit_model(hpxml, hpxml_bldg, runner, model, epw_path, epw_file, weather, debug, schedules_file, eri_version, unit_num) + @hpxml_header = hpxml.header + @hpxml_bldg = hpxml_bldg + @debug = debug + @schedules_file = schedules_file + @eri_version = eri_version + + @apply_ashrae140_assumptions = @hpxml_header.apply_ashrae140_assumptions # Hidden feature @apply_ashrae140_assumptions = false if @apply_ashrae140_assumptions.nil? # Here we turn off OS error-checking so that any invalid values provided @@ -167,21 +422,14 @@ def self.create(hpxml, runner, model, hpxml_path, epw_path, weather, output_dir, model.setStrictnessLevel('None'.to_StrictnessLevel) # Init - check_file_references(hpxml_path) - epw_file = Location.apply_weather_file(model, epw_path) - @schedules_file = SchedulesFile.new(runner: runner, model: model, - schedules_paths: @hpxml.header.schedules_filepaths, - year: Location.get_sim_calendar_year(@hpxml.header.sim_calendar_year, epw_file), - unavailable_periods: @hpxml.header.unavailable_periods, - output_path: File.join(output_dir, 'in.schedules.csv')) - set_defaults_and_globals(runner, output_dir, epw_file, weather, @schedules_file) - validate_emissions_files() - Location.apply(model, weather, epw_file, @hpxml) + OpenStudio::Model::WeatherFile.setWeatherFile(model, epw_file) + set_defaults_and_globals() + Location.apply(model, weather, epw_file, @hpxml_header, @hpxml_bldg) add_simulation_params(model) # Conditioned space/zone spaces = {} - create_or_get_space(model, spaces, HPXML::LocationLivingSpace) + create_or_get_space(model, spaces, HPXML::LocationConditionedSpace) set_foundation_and_walls_top() set_heating_and_cooling_seasons() add_setpoints(runner, model, weather, spaces) @@ -197,16 +445,16 @@ def self.create(hpxml, runner, model, hpxml_path, epw_path, weather, output_dir, add_skylights(model, spaces) add_conditioned_floor_area(model, spaces) add_thermal_mass(model, spaces) - Geometry.set_zone_volumes(spaces, @hpxml, @apply_ashrae140_assumptions) - Geometry.explode_surfaces(model, @hpxml, @walls_top) + Geometry.set_zone_volumes(spaces, @hpxml_bldg, @apply_ashrae140_assumptions) + Geometry.explode_surfaces(model, @hpxml_bldg, @walls_top) add_num_occupants(model, runner, spaces) # HVAC - @hvac_unavailable_periods = Schedule.get_unavailable_periods(runner, SchedulesFile::ColumnHVAC, @hpxml.header.unavailable_periods) + @hvac_unavailable_periods = Schedule.get_unavailable_periods(runner, SchedulesFile::ColumnHVAC, @hpxml_header.unavailable_periods) airloop_map = {} # Map of HPXML System ID -> AirLoopHVAC (or ZoneHVACFourPipeFanCoil) add_ideal_system(model, spaces, epw_path) - add_cooling_system(model, spaces, airloop_map) - add_heating_system(runner, model, spaces, airloop_map) + add_cooling_system(model, weather, spaces, airloop_map) + add_heating_system(runner, model, weather, spaces, airloop_map) add_heat_pump(runner, model, weather, spaces, airloop_map) add_dehumidifiers(runner, model, spaces) add_ceiling_fans(runner, model, weather, spaces) @@ -219,8 +467,8 @@ def self.create(hpxml, runner, model, hpxml_path, epw_path, weather, output_dir, add_mfls(runner, model, spaces) add_lighting(runner, model, epw_file, spaces) - # Pools & Hot Tubs - add_pools_and_hot_tubs(runner, model, spaces) + # Pools & Permanent Spas + add_pools_and_permanent_spas(runner, model, spaces) # Other add_cooling_season(model, weather) @@ -228,34 +476,13 @@ def self.create(hpxml, runner, model, hpxml_path, epw_path, weather, output_dir, add_photovoltaics(model) add_generators(model) add_batteries(runner, model, spaces) - add_additional_properties(model, hpxml_path, building_id, epw_file) - - # Output - add_unmet_hours_output(model, spaces) - add_loads_output(model, spaces, add_component_loads) - set_output_files(model) - # Uncomment to debug EMS - # add_ems_debug_output(model) - - if debug - osm_output_path = File.join(output_dir, 'in.osm') - File.write(osm_output_path, model.to_s) - runner.registerInfo("Wrote file: #{osm_output_path}") - end + add_building_unit(model, unit_num) end - private - - def self.check_file_references(hpxml_path) + def check_emissions_references(hpxml_header, hpxml_path) # Check/update file references - @hpxml.header.schedules_filepaths = @hpxml.header.schedules_filepaths.collect { |sfp| - FilePath.check_path(sfp, - File.dirname(hpxml_path), - 'Schedules') - } - - @hpxml.header.emissions_scenarios.each do |scenario| - if @hpxml.header.emissions_scenarios.select { |s| s.emissions_type == scenario.emissions_type && s.name == scenario.name }.size > 1 + hpxml_header.emissions_scenarios.each do |scenario| + if hpxml_header.emissions_scenarios.select { |s| s.emissions_type == scenario.emissions_type && s.name == scenario.name }.size > 1 fail "Found multiple Emissions Scenarios with the Scenario Name=#{scenario.name} and Emissions Type=#{scenario.emissions_type}." end next if scenario.elec_schedule_filepath.nil? @@ -266,8 +493,17 @@ def self.check_file_references(hpxml_path) end end - def self.validate_emissions_files() - @hpxml.header.emissions_scenarios.each do |scenario| + def check_schedule_references(hpxml_bldg_header, hpxml_path) + # Check/update file references + hpxml_bldg_header.schedules_filepaths = hpxml_bldg_header.schedules_filepaths.collect { |sfp| + FilePath.check_path(sfp, + File.dirname(hpxml_path), + 'Schedules') + } + end + + def validate_emissions_files(hpxml_header) + hpxml_header.emissions_scenarios.each do |scenario| next if scenario.elec_schedule_filepath.nil? data = File.readlines(scenario.elec_schedule_filepath) @@ -283,76 +519,69 @@ def self.validate_emissions_files() end end - def self.set_defaults_and_globals(runner, output_dir, epw_file, weather, schedules_file) + def set_defaults_and_globals() # Initialize @remaining_heat_load_frac = 1.0 @remaining_cool_load_frac = 1.0 # Set globals - @cfa = @hpxml.building_construction.conditioned_floor_area - @ncfl = @hpxml.building_construction.number_of_conditioned_floors - @ncfl_ag = @hpxml.building_construction.number_of_conditioned_floors_above_grade - @nbeds = @hpxml.building_construction.number_of_bedrooms - @default_azimuths = HPXMLDefaults.get_default_azimuths(@hpxml) - - # Apply defaults to HPXML object - HPXMLDefaults.apply(runner, @hpxml, @eri_version, weather, epw_file: epw_file, schedules_file: schedules_file) - - # Write updated HPXML object (w/ defaults) to file for inspection - @hpxml_defaults_path = File.join(output_dir, 'in.xml') - XMLHelper.write_file(@hpxml.to_oga, @hpxml_defaults_path) - - # Now that we've written in.xml, ensure that no capacities/airflows - # are zero in order to prevent potential E+ errors. - HVAC.ensure_nonzero_sizing_values(@hpxml) - - # Now that we've written in.xml, make adjustments for modeling purposes. - @frac_windows_operable = @hpxml.fraction_of_windows_operable() - @hpxml.collapse_enclosure_surfaces() # Speeds up simulation - @hpxml.delete_adiabatic_subsurfaces() # EnergyPlus doesn't allow this + @cfa = @hpxml_bldg.building_construction.conditioned_floor_area + @ncfl = @hpxml_bldg.building_construction.number_of_conditioned_floors + @ncfl_ag = @hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade + @nbeds = @hpxml_bldg.building_construction.number_of_bedrooms + @default_azimuths = HPXMLDefaults.get_default_azimuths(@hpxml_bldg) + + # Apply unit multipliers to HVAC systems and water heaters + HVAC.apply_unit_multiplier(@hpxml_bldg) + # Ensure that no capacities/airflows are zero in order to prevent potential E+ errors. + HVAC.ensure_nonzero_sizing_values(@hpxml_bldg) + # Make adjustments for modeling purposes + @frac_windows_operable = @hpxml_bldg.fraction_of_windows_operable() + @hpxml_bldg.collapse_enclosure_surfaces() # Speeds up simulation + @hpxml_bldg.delete_adiabatic_subsurfaces() # EnergyPlus doesn't allow this # We don't want this to be written to in.xml, because then if you ran the in.xml # file, you would get different results (operational calculation) relative to the # original file (asset calculation). - if @hpxml.building_occupancy.number_of_residents.nil? - @hpxml.building_occupancy.number_of_residents = Geometry.get_occupancy_default_num(@nbeds) + if @hpxml_bldg.building_occupancy.number_of_residents.nil? + @hpxml_bldg.building_occupancy.number_of_residents = Geometry.get_occupancy_default_num(@nbeds) end # If zero occupants, ensure end uses of interest are zeroed out - if (@hpxml.building_occupancy.number_of_residents == 0) && (not @apply_ashrae140_assumptions) - @hpxml.header.unavailable_periods.add(column_name: 'Vacancy', - begin_month: @hpxml.header.sim_begin_month, - begin_day: @hpxml.header.sim_begin_day, + if (@hpxml_bldg.building_occupancy.number_of_residents == 0) && (not @apply_ashrae140_assumptions) + @hpxml_header.unavailable_periods.add(column_name: 'Vacancy', + begin_month: @hpxml_header.sim_begin_month, + begin_day: @hpxml_header.sim_begin_day, begin_hour: 0, - end_month: @hpxml.header.sim_end_month, - end_day: @hpxml.header.sim_end_day, + end_month: @hpxml_header.sim_end_month, + end_day: @hpxml_header.sim_end_day, end_hour: 24, natvent_availability: HPXML::ScheduleUnavailable) end end - def self.add_simulation_params(model) - SimControls.apply(model, @hpxml) + def add_simulation_params(model) + SimControls.apply(model, @hpxml_header) end - def self.add_num_occupants(model, runner, spaces) + def add_num_occupants(model, runner, spaces) # Occupants - num_occ = @hpxml.building_occupancy.number_of_residents + num_occ = @hpxml_bldg.building_occupancy.number_of_residents return if num_occ <= 0 - Geometry.apply_occupants(model, runner, @hpxml, num_occ, spaces[HPXML::LocationLivingSpace], - @schedules_file, @hpxml.header.unavailable_periods) + Geometry.apply_occupants(model, runner, @hpxml_bldg, num_occ, spaces[HPXML::LocationConditionedSpace], + @schedules_file, @hpxml_header.unavailable_periods) end - def self.create_or_get_space(model, spaces, location) + def create_or_get_space(model, spaces, location) if spaces[location].nil? - Geometry.create_space_and_zone(model, spaces, location) + Geometry.create_space_and_zone(model, spaces, location, @hpxml_bldg.building_construction.number_of_units) end return spaces[location] end - def self.add_roofs(runner, model, spaces) - @hpxml.roofs.each do |roof| + def add_roofs(runner, model, spaces) + @hpxml_bldg.roofs.each do |roof| next if roof.net_area < 1.0 # skip modeling net surface area for surfaces comprised entirely of subsurface area if roof.azimuth.nil? @@ -463,8 +692,8 @@ def self.add_roofs(runner, model, spaces) end end - def self.add_walls(runner, model, spaces) - @hpxml.walls.each do |wall| + def add_walls(runner, model, spaces) + @hpxml_bldg.walls.each do |wall| next if wall.net_area < 1.0 # skip modeling net surface area for surfaces comprised entirely of subsurface area if wall.azimuth.nil? @@ -531,8 +760,8 @@ def self.add_walls(runner, model, spaces) end end - def self.add_rim_joists(runner, model, spaces) - @hpxml.rim_joists.each do |rim_joist| + def add_rim_joists(runner, model, spaces) + @hpxml_bldg.rim_joists.each do |rim_joist| if rim_joist.azimuth.nil? if rim_joist.is_exterior azimuths = @default_azimuths # Model as four directions for average exterior incident solar @@ -603,8 +832,8 @@ def self.add_rim_joists(runner, model, spaces) end end - def self.add_floors(runner, model, spaces) - @hpxml.floors.each do |floor| + def add_floors(runner, model, spaces) + @hpxml_bldg.floors.each do |floor| area = floor.area width = Math::sqrt(area) length = area / width @@ -632,6 +861,12 @@ def self.add_floors(runner, model, spaces) surface.setWindExposure('NoWind') elsif floor.is_floor surface.setSunExposure('NoSun') + if floor.exterior_adjacent_to == HPXML::LocationManufacturedHomeUnderBelly + foundation = @hpxml_bldg.foundations.find { |x| x.to_location == floor.exterior_adjacent_to } + if foundation.belly_wing_skirt_present + surface.setWindExposure('NoWind') + end + end end # Apply construction @@ -660,7 +895,7 @@ def self.add_floors(runner, model, spaces) else outside_film = Material.AirFilmFloorReduced end - if floor.interior_adjacent_to == HPXML::LocationLivingSpace + if floor.interior_adjacent_to == HPXML::LocationConditionedSpace mat_int_finish_or_covering = Material.CoveringBare end end @@ -671,116 +906,73 @@ def self.add_floors(runner, model, spaces) end end - def self.add_foundation_walls_slabs(runner, model, weather, spaces) - foundation_types = @hpxml.slabs.map { |s| s.interior_adjacent_to }.uniq + def add_foundation_walls_slabs(runner, model, weather, spaces) + foundation_types = @hpxml_bldg.slabs.map { |s| s.interior_adjacent_to }.uniq foundation_types.each do |foundation_type| - # Get attached foundation walls/slabs - fnd_walls = [] + # Get attached slabs/foundation walls slabs = [] - @hpxml.foundation_walls.each do |foundation_wall| - next unless foundation_wall.interior_adjacent_to == foundation_type - next if foundation_wall.net_area < 1.0 # skip modeling net surface area for surfaces comprised entirely of subsurface area - - fnd_walls << foundation_wall - end - @hpxml.slabs.each do |slab| + @hpxml_bldg.slabs.each do |slab| next unless slab.interior_adjacent_to == foundation_type slabs << slab slab.exposed_perimeter = [slab.exposed_perimeter, 1.0].max # minimum value to prevent error if no exposed slab end - # Calculate combinations of slabs/walls for each Kiva instance - kiva_instances = get_kiva_instances(fnd_walls, slabs) - - # Obtain some wall/slab information - fnd_wall_lengths = {} - fnd_walls.each do |foundation_wall| - next unless foundation_wall.is_exterior - - fnd_wall_lengths[foundation_wall] = foundation_wall.area / foundation_wall.height - end - slab_exp_perims = {} - slab_areas = {} slabs.each do |slab| - slab_exp_perims[slab] = slab.exposed_perimeter - slab_areas[slab] = slab.area - end - total_slab_exp_perim = slab_exp_perims.values.sum(0.0) - total_slab_area = slab_areas.values.sum(0.0) - total_fnd_wall_length = fnd_wall_lengths.values.sum(0.0) + slab_frac = slab.exposed_perimeter / slabs.map { |s| s.exposed_perimeter }.sum + ext_fnd_walls = slab.connected_foundation_walls.select { |fw| fw.net_area >= 1.0 && fw.is_exterior } - no_wall_slab_exp_perim = {} - - kiva_instances.each do |foundation_wall, slab| - # Apportion referenced walls/slabs for this Kiva instance - slab_frac = slab_exp_perims[slab] / total_slab_exp_perim - if total_fnd_wall_length > 0 - fnd_wall_frac = fnd_wall_lengths[foundation_wall] / total_fnd_wall_length + if ext_fnd_walls.empty? + # Slab w/o foundation walls + add_foundation_slab(model, weather, spaces, slab, -1 * slab.depth_below_grade.to_f, slab.exposed_perimeter, nil) else - fnd_wall_frac = 1.0 # Handle slab foundation type - end - - kiva_foundation = nil - if not foundation_wall.nil? - # Add exterior foundation wall surface - kiva_foundation = add_foundation_wall(runner, model, spaces, foundation_wall, slab_frac, - total_fnd_wall_length, total_slab_exp_perim) - end + # Slab w/ foundation walls + ext_fnd_walls_length = ext_fnd_walls.map { |fw| fw.area / fw.height }.sum + remaining_exposed_length = slab.exposed_perimeter + + # Since we don't know which FoundationWalls are adjacent to which Slabs, we apportion + # each FoundationWall to each slab. + ext_fnd_walls.each do |fnd_wall| + # Both the foundation wall and slab must have same exposed length to prevent Kiva errors. + # For the foundation wall, we are effectively modeling the net *exposed* area. + fnd_wall_length = fnd_wall.area / fnd_wall.height + apportioned_exposed_length = fnd_wall_length / ext_fnd_walls_length * slab.exposed_perimeter # Slab exposed perimeter apportioned to this foundation wall + apportioned_total_length = fnd_wall_length * slab_frac # Foundation wall length apportioned to this slab + exposed_length = [apportioned_exposed_length, apportioned_total_length].min + remaining_exposed_length -= exposed_length + + kiva_foundation = add_foundation_wall(runner, model, spaces, fnd_wall, exposed_length, fnd_wall_length) + add_foundation_slab(model, weather, spaces, slab, -1 * fnd_wall.depth_below_grade, exposed_length, kiva_foundation) + end - # Add single combined foundation slab surface (for similar surfaces) - slab_exp_perim = slab_exp_perims[slab] * fnd_wall_frac - slab_area = slab_areas[slab] * fnd_wall_frac - no_wall_slab_exp_perim[slab] = 0.0 if no_wall_slab_exp_perim[slab].nil? - if (not foundation_wall.nil?) && (slab_exp_perim > fnd_wall_lengths[foundation_wall] * slab_frac) - # Keep track of no-wall slab exposed perimeter - no_wall_slab_exp_perim[slab] += (slab_exp_perim - fnd_wall_lengths[foundation_wall] * slab_frac) - - # Reduce this slab's exposed perimeter so that EnergyPlus does not automatically - # create a second no-wall Kiva instance for each of our Kiva instances. - # Instead, we will later create our own Kiva instance to account for it. - # This reduces the number of Kiva instances we end up with. - exp_perim_frac = (fnd_wall_lengths[foundation_wall] * slab_frac) / slab_exp_perim - slab_exp_perim *= exp_perim_frac - slab_area *= exp_perim_frac - end - if not foundation_wall.nil? - z_origin = -1 * foundation_wall.depth_below_grade # Position based on adjacent foundation walls - else - z_origin = -1 * slab.depth_below_grade + if remaining_exposed_length > 1 # Skip if a small length (e.g., due to rounding) + # The slab's exposed perimeter exceeds the sum of attached exterior foundation wall lengths. + # This may legitimately occur for a walkout basement, where a portion of the slab has no + # adjacent foundation wall. + add_foundation_slab(model, weather, spaces, slab, 0, remaining_exposed_length, nil) + end end - add_foundation_slab(model, weather, spaces, slab, slab_exp_perim, - slab_area, z_origin, kiva_foundation) - end - - # For each slab, create a no-wall Kiva slab instance if needed. - slabs.each do |slab| - next unless no_wall_slab_exp_perim[slab] > 1.0 - - z_origin = 0 - slab_area = total_slab_area * no_wall_slab_exp_perim[slab] / total_slab_exp_perim - add_foundation_slab(model, weather, spaces, slab, no_wall_slab_exp_perim[slab], - slab_area, z_origin, nil) end # Interzonal foundation wall surfaces # The above-grade portion of these walls are modeled as EnergyPlus surfaces with standard adjacency. # The below-grade portion of these walls (in contact with ground) are not modeled, as Kiva does not # calculate heat flow between two zones through the ground. - fnd_walls.each do |foundation_wall| - next unless foundation_wall.is_interior + int_fnd_walls = @hpxml_bldg.foundation_walls.select { |fw| fw.is_interior && fw.interior_adjacent_to == foundation_type } + int_fnd_walls.each do |fnd_wall| + next unless fnd_wall.is_interior - ag_height = foundation_wall.height - foundation_wall.depth_below_grade - ag_net_area = foundation_wall.net_area * ag_height / foundation_wall.height + ag_height = fnd_wall.height - fnd_wall.depth_below_grade + ag_net_area = fnd_wall.net_area * ag_height / fnd_wall.height next if ag_net_area < 1.0 length = ag_net_area / ag_height z_origin = -1 * ag_height - if foundation_wall.azimuth.nil? + if fnd_wall.azimuth.nil? azimuth = @default_azimuths[0] # Arbitrary direction, doesn't receive exterior incident solar else - azimuth = foundation_wall.azimuth + azimuth = fnd_wall.azimuth end vertices = Geometry.create_wall_vertices(length, ag_height, z_origin, azimuth) @@ -789,10 +981,10 @@ def self.add_foundation_walls_slabs(runner, model, weather, spaces) surface.additionalProperties.setFeature('Azimuth', azimuth) surface.additionalProperties.setFeature('Tilt', 90.0) surface.additionalProperties.setFeature('SurfaceType', 'FoundationWall') - surface.setName(foundation_wall.id) + surface.setName(fnd_wall.id) surface.setSurfaceType('Wall') - set_surface_interior(model, spaces, surface, foundation_wall) - set_surface_exterior(model, spaces, surface, foundation_wall) + set_surface_interior(model, spaces, surface, fnd_wall) + set_surface_exterior(model, spaces, surface, fnd_wall) surface.setSunExposure('NoSun') surface.setWindExposure('NoWind') @@ -801,57 +993,50 @@ def self.add_foundation_walls_slabs(runner, model, weather, spaces) wall_type = HPXML::WallTypeConcrete inside_film = Material.AirFilmVertical outside_film = Material.AirFilmVertical - assembly_r = foundation_wall.insulation_assembly_r_value - mat_int_finish = Material.InteriorFinishMaterial(foundation_wall.interior_finish_type, foundation_wall.interior_finish_thickness) + assembly_r = fnd_wall.insulation_assembly_r_value + mat_int_finish = Material.InteriorFinishMaterial(fnd_wall.interior_finish_type, fnd_wall.interior_finish_thickness) if assembly_r.nil? - concrete_thick_in = foundation_wall.thickness - int_r = foundation_wall.insulation_interior_r_value - ext_r = foundation_wall.insulation_exterior_r_value + concrete_thick_in = fnd_wall.thickness + int_r = fnd_wall.insulation_interior_r_value + ext_r = fnd_wall.insulation_exterior_r_value mat_concrete = Material.Concrete(concrete_thick_in) mat_int_finish_rvalue = mat_int_finish.nil? ? 0.0 : mat_int_finish.rvalue assembly_r = int_r + ext_r + mat_concrete.rvalue + mat_int_finish_rvalue + inside_film.rvalue + outside_film.rvalue end mat_ext_finish = nil - Constructions.apply_wall_construction(runner, model, [surface], foundation_wall.id, wall_type, assembly_r, + Constructions.apply_wall_construction(runner, model, [surface], fnd_wall.id, wall_type, assembly_r, mat_int_finish, inside_film, outside_film, mat_ext_finish, nil, nil) end end end - def self.add_foundation_wall(runner, model, spaces, foundation_wall, slab_frac, - total_fnd_wall_length, total_slab_exp_perim) - - net_area = foundation_wall.net_area * slab_frac - gross_area = foundation_wall.area * slab_frac + def add_foundation_wall(runner, model, spaces, foundation_wall, exposed_length, fnd_wall_length) + exposed_fraction = exposed_length / fnd_wall_length + net_exposed_area = foundation_wall.net_area * exposed_fraction + gross_exposed_area = foundation_wall.area * exposed_fraction height = foundation_wall.height height_ag = height - foundation_wall.depth_below_grade z_origin = -1 * foundation_wall.depth_below_grade - length = gross_area / height if foundation_wall.azimuth.nil? azimuth = @default_azimuths[0] # Arbitrary; solar incidence in Kiva is applied as an orientation average (to the above grade portion of the wall) else azimuth = foundation_wall.azimuth end - if total_fnd_wall_length > total_slab_exp_perim - # Calculate exposed section of wall based on slab's total exposed perimeter. - length *= total_slab_exp_perim / total_fnd_wall_length - end + return if exposed_length < 0.1 # Avoid Kiva error if exposed wall length is too small - return if length < 0.1 # Avoid Kiva error if exposed wall length is too small - - if gross_area > net_area + if gross_exposed_area > net_exposed_area # Create a "notch" in the wall to account for the subsurfaces. This ensures that # we preserve the appropriate wall height, length, and area for Kiva. - subsurface_area = gross_area - net_area + subsurface_area = gross_exposed_area - net_exposed_area else subsurface_area = 0 end - vertices = Geometry.create_wall_vertices(length, height, z_origin, azimuth, subsurface_area: subsurface_area) + vertices = Geometry.create_wall_vertices(exposed_length, height, z_origin, azimuth, subsurface_area: subsurface_area) surface = OpenStudio::Model::Surface.new(vertices, model) - surface.additionalProperties.setFeature('Length', length) + surface.additionalProperties.setFeature('Length', exposed_length) surface.additionalProperties.setFeature('Azimuth', azimuth) surface.additionalProperties.setFeature('Tilt', 90.0) surface.additionalProperties.setFeature('SurfaceType', 'FoundationWall') @@ -893,7 +1078,7 @@ def self.add_foundation_wall(runner, model, spaces, foundation_wall, slab_frac, int_rigid_r = foundation_wall.insulation_interior_r_value end - soil_k_in = UnitConversions.convert(@hpxml.site.ground_conductivity, 'ft', 'in') + soil_k_in = UnitConversions.convert(@hpxml_bldg.site.ground_conductivity, 'ft', 'in') Constructions.apply_foundation_wall(model, [surface], "#{foundation_wall.id} construction", ext_rigid_offset, int_rigid_offset, ext_rigid_height, int_rigid_height, @@ -907,10 +1092,10 @@ def self.add_foundation_wall(runner, model, spaces, foundation_wall, slab_frac, return surface.adjacentFoundation.get end - def self.add_foundation_slab(model, weather, spaces, slab, slab_exp_perim, - slab_area, z_origin, kiva_foundation) - - slab_tot_perim = slab_exp_perim + def add_foundation_slab(model, weather, spaces, slab, z_origin, exposed_length, kiva_foundation) + exposed_fraction = exposed_length / slab.exposed_perimeter + slab_tot_perim = exposed_length + slab_area = slab.area * exposed_fraction if slab_tot_perim**2 - 16.0 * slab_area <= 0 # Cannot construct rectangle with this perimeter/area. Some of the # perimeter is presumably not exposed, so bump up perimeter value. @@ -961,18 +1146,18 @@ def self.add_foundation_slab(model, weather, spaces, slab, slab_exp_perim, mat_carpet = Material.CoveringBare(slab.carpet_fraction, slab.carpet_r_value) end - soil_k_in = UnitConversions.convert(@hpxml.site.ground_conductivity, 'ft', 'in') + soil_k_in = UnitConversions.convert(@hpxml_bldg.site.ground_conductivity, 'ft', 'in') Constructions.apply_foundation_slab(model, surface, "#{slab.id} construction", slab_under_r, slab_under_width, slab_gap_r, slab_perim_r, slab_perim_depth, slab_whole_r, slab.thickness, - slab_exp_perim, mat_carpet, soil_k_in, kiva_foundation) + exposed_length, mat_carpet, soil_k_in, kiva_foundation) kiva_foundation = surface.adjacentFoundation.get foundation_walls_insulated = false foundation_ceiling_insulated = false - @hpxml.foundation_walls.each do |fnd_wall| + @hpxml_bldg.foundation_walls.each do |fnd_wall| next unless fnd_wall.interior_adjacent_to == slab.interior_adjacent_to next unless fnd_wall.exterior_adjacent_to == HPXML::LocationGround @@ -982,8 +1167,8 @@ def self.add_foundation_slab(model, weather, spaces, slab, slab_exp_perim, foundation_walls_insulated = true end end - @hpxml.floors.each do |floor| - next unless floor.interior_adjacent_to == HPXML::LocationLivingSpace + @hpxml_bldg.floors.each do |floor| + next unless floor.interior_adjacent_to == HPXML::LocationConditionedSpace next unless floor.exterior_adjacent_to == slab.interior_adjacent_to if floor.insulation_assembly_r_value > 5 @@ -992,29 +1177,29 @@ def self.add_foundation_slab(model, weather, spaces, slab, slab_exp_perim, end Constructions.apply_kiva_initial_temp(kiva_foundation, slab, weather, - spaces[HPXML::LocationLivingSpace].thermalZone.get, - @hpxml.header.sim_begin_month, @hpxml.header.sim_begin_day, - @hpxml.header.sim_calendar_year, @schedules_file, + spaces[HPXML::LocationConditionedSpace].thermalZone.get, + @hpxml_header.sim_begin_month, @hpxml_header.sim_begin_day, + @hpxml_header.sim_calendar_year, @schedules_file, foundation_walls_insulated, foundation_ceiling_insulated) return kiva_foundation end - def self.add_conditioned_floor_area(model, spaces) + def add_conditioned_floor_area(model, spaces) # Check if we need to add floors between conditioned spaces (e.g., between first # and second story or conditioned basement ceiling). # This ensures that the E+ reported Conditioned Floor Area is correct. sum_cfa = 0.0 - @hpxml.floors.each do |floor| + @hpxml_bldg.floors.each do |floor| next unless floor.is_floor - next unless [HPXML::LocationLivingSpace, HPXML::LocationBasementConditioned].include?(floor.interior_adjacent_to) || - [HPXML::LocationLivingSpace, HPXML::LocationBasementConditioned].include?(floor.exterior_adjacent_to) + next unless [HPXML::LocationConditionedSpace, HPXML::LocationBasementConditioned].include?(floor.interior_adjacent_to) || + [HPXML::LocationConditionedSpace, HPXML::LocationBasementConditioned].include?(floor.exterior_adjacent_to) sum_cfa += floor.area end - @hpxml.slabs.each do |slab| - next unless [HPXML::LocationLivingSpace, HPXML::LocationBasementConditioned].include? slab.interior_adjacent_to + @hpxml_bldg.slabs.each do |slab| + next unless [HPXML::LocationConditionedSpace, HPXML::LocationBasementConditioned].include? slab.interior_adjacent_to sum_cfa += slab.area end @@ -1037,7 +1222,7 @@ def self.add_conditioned_floor_area(model, spaces) floor_surface.setWindExposure('NoWind') floor_surface.setName('inferred conditioned floor') floor_surface.setSurfaceType('Floor') - floor_surface.setSpace(create_or_get_space(model, spaces, HPXML::LocationLivingSpace)) + floor_surface.setSpace(create_or_get_space(model, spaces, HPXML::LocationConditionedSpace)) floor_surface.setOutsideBoundaryCondition('Adiabatic') floor_surface.additionalProperties.setFeature('SurfaceType', 'InferredFloor') floor_surface.additionalProperties.setFeature('Tilt', 0.0) @@ -1050,7 +1235,7 @@ def self.add_conditioned_floor_area(model, spaces) ceiling_surface.setWindExposure('NoWind') ceiling_surface.setName('inferred conditioned ceiling') ceiling_surface.setSurfaceType('RoofCeiling') - ceiling_surface.setSpace(create_or_get_space(model, spaces, HPXML::LocationLivingSpace)) + ceiling_surface.setSpace(create_or_get_space(model, spaces, HPXML::LocationConditionedSpace)) ceiling_surface.setOutsideBoundaryCondition('Adiabatic') ceiling_surface.additionalProperties.setFeature('SurfaceType', 'InferredCeiling') ceiling_surface.additionalProperties.setFeature('Tilt', 0.0) @@ -1059,22 +1244,22 @@ def self.add_conditioned_floor_area(model, spaces) apply_adiabatic_construction(model, [floor_surface, ceiling_surface], 'floor') end - def self.add_thermal_mass(model, spaces) + def add_thermal_mass(model, spaces) if @apply_ashrae140_assumptions # 1024 ft2 of interior partition wall mass, no furniture mass mat_int_finish = Material.InteriorFinishMaterial(HPXML::InteriorFinishGypsumBoard, 0.5) partition_wall_area = 1024.0 * 2 # Exposed partition wall area (both sides) Constructions.apply_partition_walls(model, 'PartitionWallConstruction', mat_int_finish, partition_wall_area, spaces) else - mat_int_finish = Material.InteriorFinishMaterial(@hpxml.partition_wall_mass.interior_finish_type, @hpxml.partition_wall_mass.interior_finish_thickness) - partition_wall_area = @hpxml.partition_wall_mass.area_fraction * @cfa # Exposed partition wall area (both sides) + mat_int_finish = Material.InteriorFinishMaterial(@hpxml_bldg.partition_wall_mass.interior_finish_type, @hpxml_bldg.partition_wall_mass.interior_finish_thickness) + partition_wall_area = @hpxml_bldg.partition_wall_mass.area_fraction * @cfa # Exposed partition wall area (both sides) Constructions.apply_partition_walls(model, 'PartitionWallConstruction', mat_int_finish, partition_wall_area, spaces) - Constructions.apply_furniture(model, @hpxml.furniture_mass, spaces) + Constructions.apply_furniture(model, @hpxml_bldg.furniture_mass, spaces) end end - def self.add_cooling_season(model, weather) + def add_cooling_season(model, weather) # Create cooling season schedule # Applies to natural ventilation and calculation of component loads, not HVAC equipment # Uses BAHSP cooling season, not user-specified cooling season (which may be, e.g., year-round) @@ -1086,22 +1271,20 @@ def self.add_cooling_season(model, weather) @clg_ssn_sensor.setKeyName(clg_season_sch.schedule.name.to_s) end - def self.add_windows(model, spaces) + def add_windows(model, spaces) # We already stored @fraction_of_windows_operable, so lets remove the # fraction_operable properties from windows and re-collapse the enclosure # so as to prevent potentially modeling multiple identical windows in E+, # which can increase simulation runtime. - @hpxml.windows.each do |window| + @hpxml_bldg.windows.each do |window| window.fraction_operable = nil end - @hpxml.collapse_enclosure_surfaces() + @hpxml_bldg.collapse_enclosure_surfaces() - shading_group = nil shading_schedules = {} - shading_ems = { sensors: {}, program: nil } surfaces = [] - @hpxml.windows.each_with_index do |window, i| + @hpxml_bldg.windows.each do |window| window_height = 4.0 # ft, default overhang_depth = nil @@ -1142,16 +1325,14 @@ def self.add_windows(model, spaces) if not overhang_depth.nil? overhang = sub_surface.addOverhang(UnitConversions.convert(overhang_depth, 'ft', 'm'), UnitConversions.convert(overhang_distance_to_top, 'ft', 'm')) - overhang.get.setName("#{sub_surface.name} - #{Constants.ObjectNameOverhangs}") + overhang.get.setName("#{sub_surface.name} overhangs") end # Apply construction Constructions.apply_window(model, sub_surface, 'WindowConstruction', ufactor, shgc) # Apply interior/exterior shading (as needed) - shading_vertices = Geometry.create_wall_vertices(window_length, window_height, z_origin, window.azimuth) - shading_group = Constructions.apply_window_skylight_shading(model, window, i, shading_vertices, surface, sub_surface, shading_group, - shading_schedules, shading_ems, Constants.ObjectNameWindowShade, @hpxml) + Constructions.apply_window_skylight_shading(model, window, sub_surface, shading_schedules, @hpxml_header, @hpxml_bldg) else # Window is on an interior surface, which E+ does not allow. Model # as a door instead so that we can get the appropriate conduction @@ -1188,14 +1369,11 @@ def self.add_windows(model, spaces) apply_adiabatic_construction(model, surfaces, 'wall') end - def self.add_skylights(model, spaces) + def add_skylights(model, spaces) surfaces = [] - - shading_group = nil shading_schedules = {} - shading_ems = { sensors: {}, program: nil } - @hpxml.skylights.each_with_index do |skylight, i| + @hpxml_bldg.skylights.each do |skylight| tilt = skylight.roof.pitch / 12.0 width = Math::sqrt(skylight.area) length = skylight.area / width @@ -1213,7 +1391,7 @@ def self.add_skylights(model, spaces) surface.additionalProperties.setFeature('SurfaceType', 'Skylight') surface.setName("surface #{skylight.id}") surface.setSurfaceType('RoofCeiling') - surface.setSpace(create_or_get_space(model, spaces, HPXML::LocationLivingSpace)) # Ensures it is included in Manual J sizing + surface.setSpace(create_or_get_space(model, spaces, HPXML::LocationConditionedSpace)) # Ensures it is included in Manual J sizing surface.setOutsideBoundaryCondition('Outdoors') # cannot be adiabatic because subsurfaces won't be created surfaces << surface @@ -1227,17 +1405,15 @@ def self.add_skylights(model, spaces) Constructions.apply_skylight(model, sub_surface, 'SkylightConstruction', ufactor, shgc) # Apply interior/exterior shading (as needed) - shading_vertices = Geometry.create_roof_vertices(length, width, z_origin, skylight.azimuth, tilt) - shading_group = Constructions.apply_window_skylight_shading(model, skylight, i, shading_vertices, surface, sub_surface, shading_group, - shading_schedules, shading_ems, Constants.ObjectNameSkylightShade, @hpxml) + Constructions.apply_window_skylight_shading(model, skylight, sub_surface, shading_schedules, @hpxml_header, @hpxml_bldg) end apply_adiabatic_construction(model, surfaces, 'roof') end - def self.add_doors(model, spaces) + def add_doors(model, spaces) surfaces = [] - @hpxml.doors.each do |door| + @hpxml_bldg.doors.each do |door| door_height = 6.67 # ft door_length = door.area / door_height z_origin = @foundation_top @@ -1277,7 +1453,7 @@ def self.add_doors(model, spaces) apply_adiabatic_construction(model, surfaces, 'wall') end - def self.apply_adiabatic_construction(model, surfaces, type) + def apply_adiabatic_construction(model, surfaces, type) # Arbitrary construction for heat capacitance. # Only applies to surfaces where outside boundary conditioned is # adiabatic or surface net area is near zero. @@ -1302,80 +1478,81 @@ def self.apply_adiabatic_construction(model, surfaces, type) end end - def self.add_hot_water_and_appliances(runner, model, weather, spaces) + def add_hot_water_and_appliances(runner, model, weather, spaces) # Assign spaces - @hpxml.clothes_washers.each do |clothes_washer| + @hpxml_bldg.clothes_washers.each do |clothes_washer| clothes_washer.additional_properties.space = get_space_from_location(clothes_washer.location, spaces) end - @hpxml.clothes_dryers.each do |clothes_dryer| + @hpxml_bldg.clothes_dryers.each do |clothes_dryer| clothes_dryer.additional_properties.space = get_space_from_location(clothes_dryer.location, spaces) end - @hpxml.dishwashers.each do |dishwasher| + @hpxml_bldg.dishwashers.each do |dishwasher| dishwasher.additional_properties.space = get_space_from_location(dishwasher.location, spaces) end - @hpxml.refrigerators.each do |refrigerator| + @hpxml_bldg.refrigerators.each do |refrigerator| refrigerator.additional_properties.space = get_space_from_location(refrigerator.location, spaces) end - @hpxml.freezers.each do |freezer| + @hpxml_bldg.freezers.each do |freezer| freezer.additional_properties.space = get_space_from_location(freezer.location, spaces) end - @hpxml.cooking_ranges.each do |cooking_range| + @hpxml_bldg.cooking_ranges.each do |cooking_range| cooking_range.additional_properties.space = get_space_from_location(cooking_range.location, spaces) end # Distribution - if @hpxml.water_heating_systems.size > 0 - hot_water_distribution = @hpxml.hot_water_distributions[0] + if @hpxml_bldg.water_heating_systems.size > 0 + hot_water_distribution = @hpxml_bldg.hot_water_distributions[0] end # Solar thermal system solar_thermal_system = nil - if @hpxml.solar_thermal_systems.size > 0 - solar_thermal_system = @hpxml.solar_thermal_systems[0] + if @hpxml_bldg.solar_thermal_systems.size > 0 + solar_thermal_system = @hpxml_bldg.solar_thermal_systems[0] end # Water Heater - unavailable_periods = Schedule.get_unavailable_periods(runner, SchedulesFile::ColumnWaterHeater, @hpxml.header.unavailable_periods) - has_uncond_bsmnt = @hpxml.has_location(HPXML::LocationBasementUnconditioned) + unavailable_periods = Schedule.get_unavailable_periods(runner, SchedulesFile::ColumnWaterHeater, @hpxml_header.unavailable_periods) + unit_multiplier = @hpxml_bldg.building_construction.number_of_units + has_uncond_bsmnt = @hpxml_bldg.has_location(HPXML::LocationBasementUnconditioned) plantloop_map = {} - @hpxml.water_heating_systems.each do |water_heating_system| + @hpxml_bldg.water_heating_systems.each do |water_heating_system| loc_space, loc_schedule = get_space_or_schedule_from_location(water_heating_system.location, model, spaces) ec_adj = HotWaterAndAppliances.get_dist_energy_consumption_adjustment(has_uncond_bsmnt, @cfa, @ncfl, water_heating_system, hot_water_distribution) sys_id = water_heating_system.id if water_heating_system.water_heater_type == HPXML::WaterHeaterTypeStorage - plantloop_map[sys_id] = Waterheater.apply_tank(model, runner, loc_space, loc_schedule, water_heating_system, ec_adj, solar_thermal_system, @eri_version, @schedules_file, unavailable_periods) + plantloop_map[sys_id] = Waterheater.apply_tank(model, runner, loc_space, loc_schedule, water_heating_system, ec_adj, solar_thermal_system, @eri_version, @schedules_file, unavailable_periods, unit_multiplier) elsif water_heating_system.water_heater_type == HPXML::WaterHeaterTypeTankless - plantloop_map[sys_id] = Waterheater.apply_tankless(model, runner, loc_space, loc_schedule, water_heating_system, ec_adj, solar_thermal_system, @eri_version, @schedules_file, unavailable_periods) + plantloop_map[sys_id] = Waterheater.apply_tankless(model, runner, loc_space, loc_schedule, water_heating_system, ec_adj, solar_thermal_system, @eri_version, @schedules_file, unavailable_periods, unit_multiplier) elsif water_heating_system.water_heater_type == HPXML::WaterHeaterTypeHeatPump - living_zone = spaces[HPXML::LocationLivingSpace].thermalZone.get - plantloop_map[sys_id] = Waterheater.apply_heatpump(model, runner, loc_space, loc_schedule, weather, water_heating_system, ec_adj, solar_thermal_system, living_zone, @eri_version, @schedules_file, unavailable_periods) + conditioned_zone = spaces[HPXML::LocationConditionedSpace].thermalZone.get + plantloop_map[sys_id] = Waterheater.apply_heatpump(model, runner, loc_space, loc_schedule, weather, water_heating_system, ec_adj, solar_thermal_system, conditioned_zone, @eri_version, @schedules_file, unavailable_periods, unit_multiplier) elsif [HPXML::WaterHeaterTypeCombiStorage, HPXML::WaterHeaterTypeCombiTankless].include? water_heating_system.water_heater_type - plantloop_map[sys_id] = Waterheater.apply_combi(model, runner, loc_space, loc_schedule, water_heating_system, ec_adj, solar_thermal_system, @eri_version, @schedules_file, unavailable_periods) + plantloop_map[sys_id] = Waterheater.apply_combi(model, runner, loc_space, loc_schedule, water_heating_system, ec_adj, solar_thermal_system, @eri_version, @schedules_file, unavailable_periods, unit_multiplier) else fail "Unhandled water heater (#{water_heating_system.water_heater_type})." end end # Hot water fixtures and appliances - HotWaterAndAppliances.apply(model, runner, @hpxml, weather, spaces, hot_water_distribution, + HotWaterAndAppliances.apply(model, runner, @hpxml_header, @hpxml_bldg, weather, spaces, hot_water_distribution, solar_thermal_system, @eri_version, @schedules_file, plantloop_map, - @hpxml.header.unavailable_periods) + @hpxml_header.unavailable_periods, @hpxml_bldg.building_construction.number_of_units) if (not solar_thermal_system.nil?) && (not solar_thermal_system.collector_area.nil?) # Detailed solar water heater loc_space, loc_schedule = get_space_or_schedule_from_location(solar_thermal_system.water_heating_system.location, model, spaces) - Waterheater.apply_solar_thermal(model, loc_space, loc_schedule, solar_thermal_system, plantloop_map) + Waterheater.apply_solar_thermal(model, loc_space, loc_schedule, solar_thermal_system, plantloop_map, unit_multiplier) end # Add combi-system EMS program with water use equipment information - Waterheater.apply_combi_system_EMS(model, @hpxml.water_heating_systems, plantloop_map) + Waterheater.apply_combi_system_EMS(model, @hpxml_bldg.water_heating_systems, plantloop_map) end - def self.add_cooling_system(model, spaces, airloop_map) - living_zone = spaces[HPXML::LocationLivingSpace].thermalZone.get + def add_cooling_system(model, weather, spaces, airloop_map) + conditioned_zone = spaces[HPXML::LocationConditionedSpace].thermalZone.get - HVAC.get_hpxml_hvac_systems(@hpxml).each do |hvac_system| + HVAC.get_hpxml_hvac_systems(@hpxml_bldg).each do |hvac_system| next if hvac_system[:cooling].nil? next unless hvac_system[:cooling].is_a? HPXML::CoolingSystem @@ -1405,22 +1582,23 @@ def self.add_cooling_system(model, spaces, airloop_map) HPXML::HVACTypeMiniSplitAirConditioner, HPXML::HVACTypePTAC].include? cooling_system.cooling_system_type - airloop_map[sys_id] = HVAC.apply_air_source_hvac_systems(model, cooling_system, heating_system, - sequential_cool_load_fracs, sequential_heat_load_fracs, - living_zone, @hvac_unavailable_periods) + airloop_map[sys_id] = HVAC.apply_air_source_hvac_systems(model, cooling_system, heating_system, sequential_cool_load_fracs, sequential_heat_load_fracs, + weather.data.AnnualMaxDrybulb, weather.data.AnnualMinDrybulb, + conditioned_zone, @hvac_unavailable_periods) elsif [HPXML::HVACTypeEvaporativeCooler].include? cooling_system.cooling_system_type - airloop_map[sys_id] = HVAC.apply_evaporative_cooler(model, cooling_system, - sequential_cool_load_fracs, living_zone, @hvac_unavailable_periods) + airloop_map[sys_id] = HVAC.apply_evaporative_cooler(model, cooling_system, sequential_cool_load_fracs, + conditioned_zone, @hvac_unavailable_periods, + @hpxml_bldg.building_construction.number_of_units) end end end - def self.add_heating_system(runner, model, spaces, airloop_map) - living_zone = spaces[HPXML::LocationLivingSpace].thermalZone.get + def add_heating_system(runner, model, weather, spaces, airloop_map) + conditioned_zone = spaces[HPXML::LocationConditionedSpace].thermalZone.get - HVAC.get_hpxml_hvac_systems(@hpxml).each do |hvac_system| + HVAC.get_hpxml_hvac_systems(@hpxml_bldg).each do |hvac_system| next if hvac_system[:heating].nil? next unless hvac_system[:heating].is_a? HPXML::HeatingSystem @@ -1449,43 +1627,42 @@ def self.add_heating_system(runner, model, spaces, airloop_map) sys_id = heating_system.id if [HPXML::HVACTypeFurnace].include? heating_system.heating_system_type - airloop_map[sys_id] = HVAC.apply_air_source_hvac_systems(model, nil, heating_system, - [0], sequential_heat_load_fracs, - living_zone, @hvac_unavailable_periods) + airloop_map[sys_id] = HVAC.apply_air_source_hvac_systems(model, nil, heating_system, [0], sequential_heat_load_fracs, + weather.data.AnnualMaxDrybulb, weather.data.AnnualMinDrybulb, + conditioned_zone, @hvac_unavailable_periods) elsif [HPXML::HVACTypeBoiler].include? heating_system.heating_system_type - airloop_map[sys_id] = HVAC.apply_boiler(model, runner, heating_system, - sequential_heat_load_fracs, living_zone, @hvac_unavailable_periods) + airloop_map[sys_id] = HVAC.apply_boiler(model, runner, heating_system, sequential_heat_load_fracs, conditioned_zone, + @hvac_unavailable_periods) elsif [HPXML::HVACTypeElectricResistance].include? heating_system.heating_system_type HVAC.apply_electric_baseboard(model, heating_system, - sequential_heat_load_fracs, living_zone, @hvac_unavailable_periods) + sequential_heat_load_fracs, conditioned_zone, @hvac_unavailable_periods) elsif [HPXML::HVACTypeStove, - HPXML::HVACTypePortableHeater, - HPXML::HVACTypeFixedHeater, + HPXML::HVACTypeSpaceHeater, HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFloorFurnace, HPXML::HVACTypeFireplace].include? heating_system.heating_system_type HVAC.apply_unit_heater(model, heating_system, - sequential_heat_load_fracs, living_zone, @hvac_unavailable_periods) + sequential_heat_load_fracs, conditioned_zone, @hvac_unavailable_periods) end next unless heating_system.is_heat_pump_backup_system # Store OS object for later use - equipment_list = model.getZoneHVACEquipmentLists.find { |el| el.thermalZone == living_zone } + equipment_list = model.getZoneHVACEquipmentLists.find { |el| el.thermalZone == conditioned_zone } @heat_pump_backup_system_object = equipment_list.equipment[-1] end end - def self.add_heat_pump(runner, model, weather, spaces, airloop_map) - living_zone = spaces[HPXML::LocationLivingSpace].thermalZone.get + def add_heat_pump(runner, model, weather, spaces, airloop_map) + conditioned_zone = spaces[HPXML::LocationConditionedSpace].thermalZone.get - HVAC.get_hpxml_hvac_systems(@hpxml).each do |hvac_system| + HVAC.get_hpxml_hvac_systems(@hpxml_bldg).each do |hvac_system| next if hvac_system[:cooling].nil? next unless hvac_system[:cooling].is_a? HPXML::HeatPump @@ -1506,26 +1683,27 @@ def self.add_heat_pump(runner, model, weather, spaces, airloop_map) airloop_map[sys_id] = HVAC.apply_water_loop_to_air_heat_pump(model, heat_pump, sequential_heat_load_fracs, sequential_cool_load_fracs, - living_zone, @hvac_unavailable_periods) + conditioned_zone, @hvac_unavailable_periods) elsif [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit, HPXML::HVACTypeHeatPumpPTHP, HPXML::HVACTypeHeatPumpRoom].include? heat_pump.heat_pump_type - airloop_map[sys_id] = HVAC.apply_air_source_hvac_systems(model, heat_pump, heat_pump, - sequential_cool_load_fracs, sequential_heat_load_fracs, - living_zone, @hvac_unavailable_periods) + airloop_map[sys_id] = HVAC.apply_air_source_hvac_systems(model, heat_pump, heat_pump, sequential_cool_load_fracs, sequential_heat_load_fracs, + weather.data.AnnualMaxDrybulb, weather.data.AnnualMinDrybulb, + conditioned_zone, @hvac_unavailable_periods) elsif [HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type airloop_map[sys_id] = HVAC.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, sequential_heat_load_fracs, sequential_cool_load_fracs, - living_zone, @hpxml.site.ground_conductivity, @hvac_unavailable_periods) + conditioned_zone, @hpxml_bldg.site.ground_conductivity, @hvac_unavailable_periods, + @hpxml_bldg.building_construction.number_of_units) end - next unless not heat_pump.backup_system.nil? + next if heat_pump.backup_system.nil? - equipment_list = model.getZoneHVACEquipmentLists.find { |el| el.thermalZone == living_zone } + equipment_list = model.getZoneHVACEquipmentLists.find { |el| el.thermalZone == conditioned_zone } # Set priority to be last (i.e., after the heat pump that it is backup for) equipment_list.setHeatingPriority(@heat_pump_backup_system_object, 99) @@ -1533,14 +1711,13 @@ def self.add_heat_pump(runner, model, weather, spaces, airloop_map) end end - def self.add_ideal_system(model, spaces, epw_path) + def add_ideal_system(model, spaces, epw_path) # Adds an ideal air system as needed to meet the load under certain circumstances: # 1. the sum of fractions load served is less than 1, or # 2. we're using an ideal air system for e.g. ASHRAE 140 loads calculation. - living_zone = spaces[HPXML::LocationLivingSpace].thermalZone.get - obj_name = Constants.ObjectNameIdealAirSystem + conditioned_zone = spaces[HPXML::LocationConditionedSpace].thermalZone.get - if @apply_ashrae140_assumptions && (@hpxml.total_fraction_heat_load_served + @hpxml.total_fraction_heat_load_served == 0.0) + if @apply_ashrae140_assumptions && (@hpxml_bldg.total_fraction_heat_load_served + @hpxml_bldg.total_fraction_heat_load_served == 0.0) cooling_load_frac = 1.0 heating_load_frac = 1.0 if @apply_ashrae140_assumptions @@ -1552,56 +1729,57 @@ def self.add_ideal_system(model, spaces, epw_path) fail 'Unexpected weather file for ASHRAE 140 run.' end end - HVAC.apply_ideal_air_loads(model, obj_name, [cooling_load_frac], [heating_load_frac], - living_zone, @hvac_unavailable_periods) + HVAC.apply_ideal_air_loads(model, [cooling_load_frac], [heating_load_frac], + conditioned_zone, @hvac_unavailable_periods) return end - if (@hpxml.total_fraction_heat_load_served < 1.0) && (@hpxml.total_fraction_heat_load_served > 0.0) - sequential_heat_load_fracs = HVAC.calc_sequential_load_fractions(@remaining_heat_load_frac - @hpxml.total_fraction_heat_load_served, @remaining_heat_load_frac, @heating_days) - @remaining_heat_load_frac -= (1.0 - @hpxml.total_fraction_heat_load_served) + if (@hpxml_bldg.total_fraction_heat_load_served < 1.0) && (@hpxml_bldg.total_fraction_heat_load_served > 0.0) + sequential_heat_load_fracs = HVAC.calc_sequential_load_fractions(@remaining_heat_load_frac - @hpxml_bldg.total_fraction_heat_load_served, @remaining_heat_load_frac, @heating_days) + @remaining_heat_load_frac -= (1.0 - @hpxml_bldg.total_fraction_heat_load_served) else sequential_heat_load_fracs = [0.0] end - if (@hpxml.total_fraction_cool_load_served < 1.0) && (@hpxml.total_fraction_cool_load_served > 0.0) - sequential_cool_load_fracs = HVAC.calc_sequential_load_fractions(@remaining_cool_load_frac - @hpxml.total_fraction_cool_load_served, @remaining_cool_load_frac, @cooling_days) - @remaining_cool_load_frac -= (1.0 - @hpxml.total_fraction_cool_load_served) + if (@hpxml_bldg.total_fraction_cool_load_served < 1.0) && (@hpxml_bldg.total_fraction_cool_load_served > 0.0) + sequential_cool_load_fracs = HVAC.calc_sequential_load_fractions(@remaining_cool_load_frac - @hpxml_bldg.total_fraction_cool_load_served, @remaining_cool_load_frac, @cooling_days) + @remaining_cool_load_frac -= (1.0 - @hpxml_bldg.total_fraction_cool_load_served) else sequential_cool_load_fracs = [0.0] end if (sequential_heat_load_fracs.sum > 0.0) || (sequential_cool_load_fracs.sum > 0.0) - HVAC.apply_ideal_air_loads(model, obj_name, sequential_cool_load_fracs, sequential_heat_load_fracs, - living_zone, @hvac_unavailable_periods) + HVAC.apply_ideal_air_loads(model, sequential_cool_load_fracs, sequential_heat_load_fracs, + conditioned_zone, @hvac_unavailable_periods) end end - def self.add_setpoints(runner, model, weather, spaces) - return if @hpxml.hvac_controls.size == 0 + def add_setpoints(runner, model, weather, spaces) + return if @hpxml_bldg.hvac_controls.size == 0 - hvac_control = @hpxml.hvac_controls[0] - living_zone = spaces[HPXML::LocationLivingSpace].thermalZone.get - has_ceiling_fan = (@hpxml.ceiling_fans.size > 0) + hvac_control = @hpxml_bldg.hvac_controls[0] + conditioned_zone = spaces[HPXML::LocationConditionedSpace].thermalZone.get + has_ceiling_fan = (@hpxml_bldg.ceiling_fans.size > 0) - HVAC.apply_setpoints(model, runner, weather, hvac_control, living_zone, has_ceiling_fan, @heating_days, @cooling_days, @hpxml.header.sim_calendar_year, @schedules_file) + HVAC.apply_setpoints(model, runner, weather, hvac_control, conditioned_zone, has_ceiling_fan, @heating_days, @cooling_days, @hpxml_header.sim_calendar_year, @schedules_file) end - def self.add_ceiling_fans(runner, model, weather, spaces) - return if @hpxml.ceiling_fans.size == 0 + def add_ceiling_fans(runner, model, weather, spaces) + return if @hpxml_bldg.ceiling_fans.size == 0 - ceiling_fan = @hpxml.ceiling_fans[0] - HVAC.apply_ceiling_fans(model, runner, weather, ceiling_fan, spaces[HPXML::LocationLivingSpace], - @schedules_file, @hpxml.header.unavailable_periods) + ceiling_fan = @hpxml_bldg.ceiling_fans[0] + HVAC.apply_ceiling_fans(model, runner, weather, ceiling_fan, spaces[HPXML::LocationConditionedSpace], + @schedules_file, @hpxml_header.unavailable_periods) end - def self.add_dehumidifiers(runner, model, spaces) - return if @hpxml.dehumidifiers.size == 0 + def add_dehumidifiers(runner, model, spaces) + return if @hpxml_bldg.dehumidifiers.size == 0 - HVAC.apply_dehumidifiers(runner, model, @hpxml.dehumidifiers, spaces[HPXML::LocationLivingSpace], @hpxml.header.unavailable_periods) + HVAC.apply_dehumidifiers(runner, model, @hpxml_bldg.dehumidifiers, spaces[HPXML::LocationConditionedSpace], @hpxml_header.unavailable_periods, + @hpxml_bldg.building_construction.number_of_units) end - def self.check_distribution_system(hvac_distribution, system_type) + def check_distribution_system(hvac_distribution, system_type) return if hvac_distribution.nil? hvac_distribution_type_map = { HPXML::HVACTypeFurnace => [HPXML::HVACDistributionTypeAir, HPXML::HVACDistributionTypeDSE], @@ -1619,9 +1797,9 @@ def self.check_distribution_system(hvac_distribution, system_type) end end - def self.add_mels(runner, model, spaces) + def add_mels(runner, model, spaces) # Misc - @hpxml.plug_loads.each do |plug_load| + @hpxml_bldg.plug_loads.each do |plug_load| if plug_load.plug_load_type == HPXML::PlugLoadTypeOther obj_name = Constants.ObjectNameMiscPlugLoads elsif plug_load.plug_load_type == HPXML::PlugLoadTypeTelevision @@ -1636,14 +1814,14 @@ def self.add_mels(runner, model, spaces) next end - MiscLoads.apply_plug(model, runner, plug_load, obj_name, spaces[HPXML::LocationLivingSpace], @apply_ashrae140_assumptions, - @schedules_file, @hpxml.header.unavailable_periods) + MiscLoads.apply_plug(model, runner, plug_load, obj_name, spaces[HPXML::LocationConditionedSpace], @apply_ashrae140_assumptions, + @schedules_file, @hpxml_header.unavailable_periods) end end - def self.add_mfls(runner, model, spaces) + def add_mfls(runner, model, spaces) # Misc - @hpxml.fuel_loads.each do |fuel_load| + @hpxml_bldg.fuel_loads.each do |fuel_load| if fuel_load.fuel_load_type == HPXML::FuelLoadTypeGrill obj_name = Constants.ObjectNameMiscGrill elsif fuel_load.fuel_load_type == HPXML::FuelLoadTypeLighting @@ -1656,44 +1834,33 @@ def self.add_mfls(runner, model, spaces) next end - MiscLoads.apply_fuel(model, runner, fuel_load, obj_name, spaces[HPXML::LocationLivingSpace], - @schedules_file, @hpxml.header.unavailable_periods) + MiscLoads.apply_fuel(model, runner, fuel_load, obj_name, spaces[HPXML::LocationConditionedSpace], + @schedules_file, @hpxml_header.unavailable_periods) end end - def self.add_lighting(runner, model, epw_file, spaces) - Lighting.apply(runner, model, epw_file, spaces, @hpxml.lighting_groups, @hpxml.lighting, @eri_version, - @schedules_file, @cfa, @hpxml.header.unavailable_periods) + def add_lighting(runner, model, epw_file, spaces) + Lighting.apply(runner, model, epw_file, spaces, @hpxml_bldg.lighting_groups, @hpxml_bldg.lighting, @eri_version, + @schedules_file, @cfa, @hpxml_header.unavailable_periods, @hpxml_bldg.building_construction.number_of_units) end - def self.add_pools_and_hot_tubs(runner, model, spaces) - @hpxml.pools.each do |pool| - next if pool.type == HPXML::TypeNone + def add_pools_and_permanent_spas(runner, model, spaces) + (@hpxml_bldg.pools + @hpxml_bldg.permanent_spas).each do |pool_or_spa| + next if pool_or_spa.type == HPXML::TypeNone - MiscLoads.apply_pool_or_hot_tub_heater(runner, model, pool, Constants.ObjectNameMiscPoolHeater, spaces[HPXML::LocationLivingSpace], - @schedules_file, @hpxml.header.unavailable_periods) - next if pool.pump_type == HPXML::TypeNone + MiscLoads.apply_pool_or_permanent_spa_heater(runner, model, pool_or_spa, spaces[HPXML::LocationConditionedSpace], + @schedules_file, @hpxml_header.unavailable_periods) + next if pool_or_spa.pump_type == HPXML::TypeNone - MiscLoads.apply_pool_or_hot_tub_pump(runner, model, pool, Constants.ObjectNameMiscPoolPump, spaces[HPXML::LocationLivingSpace], - @schedules_file, @hpxml.header.unavailable_periods) - end - - @hpxml.hot_tubs.each do |hot_tub| - next if hot_tub.type == HPXML::TypeNone - - MiscLoads.apply_pool_or_hot_tub_heater(runner, model, hot_tub, Constants.ObjectNameMiscHotTubHeater, spaces[HPXML::LocationLivingSpace], - @schedules_file, @hpxml.header.unavailable_periods) - next if hot_tub.pump_type == HPXML::TypeNone - - MiscLoads.apply_pool_or_hot_tub_pump(runner, model, hot_tub, Constants.ObjectNameMiscHotTubPump, spaces[HPXML::LocationLivingSpace], - @schedules_file, @hpxml.header.unavailable_periods) + MiscLoads.apply_pool_or_permanent_spa_pump(runner, model, pool_or_spa, spaces[HPXML::LocationConditionedSpace], + @schedules_file, @hpxml_header.unavailable_periods) end end - def self.add_airflow(runner, model, weather, spaces, airloop_map) + def add_airflow(runner, model, weather, spaces, airloop_map) # Ducts duct_systems = {} - @hpxml.hvac_distributions.each do |hvac_distribution| + @hpxml_bldg.hvac_distributions.each do |hvac_distribution| next unless hvac_distribution.distribution_system_type == HPXML::HVACDistributionTypeAir air_ducts = create_ducts(model, hvac_distribution, spaces) @@ -1721,24 +1888,50 @@ def self.add_airflow(runner, model, weather, spaces, airloop_map) end end + # Duct leakage to outside warnings? + # Need to check here instead of in schematron in case duct locations are defaulted + @hpxml_bldg.hvac_distributions.each do |hvac_distribution| + next unless hvac_distribution.distribution_system_type == HPXML::HVACDistributionTypeAir + next if hvac_distribution.duct_leakage_measurements.empty? + + # Skip if there's a duct outside conditioned space + next if hvac_distribution.ducts.select { |d| !HPXML::conditioned_locations_this_unit.include?(d.duct_location) }.size > 0 + + # Issue warning if duct leakage to outside above a certain threshold and ducts completely in conditioned space + issue_warning = false + units = hvac_distribution.duct_leakage_measurements[0].duct_leakage_units + lto_measurements = hvac_distribution.duct_leakage_measurements.select { |dlm| dlm.duct_leakage_total_or_to_outside == HPXML::DuctLeakageToOutside } + sum_lto = lto_measurements.map { |dlm| dlm.duct_leakage_value }.sum(0.0) + if units == HPXML::UnitsCFM25 + issue_warning = true if sum_lto > 0.04 * @cfa + elsif units == HPXML::UnitsCFM50 + issue_warning = true if sum_lto > 0.06 * @cfa + elsif units == HPXML::UnitsPercent + issue_warning = true if sum_lto > 0.05 + end + next unless issue_warning + + runner.registerWarning('Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment.') + end + # Create HVAC availability sensor - @hvac_availability_sensor = nil + hvac_availability_sensor = nil if not @hvac_unavailable_periods.empty? avail_sch = ScheduleConstant.new(model, SchedulesFile::ColumnHVAC, 1.0, Constants.ScheduleTypeLimitsFraction, unavailable_periods: @hvac_unavailable_periods) - avail_sch = avail_sch.schedule - @hvac_availability_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Schedule Value') - @hvac_availability_sensor.setName('availability s') - @hvac_availability_sensor.setKeyName(avail_sch.name.to_s) + hvac_availability_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Schedule Value') + hvac_availability_sensor.setName('hvac availability s') + hvac_availability_sensor.setKeyName(avail_sch.schedule.name.to_s) + hvac_availability_sensor.additionalProperties.setFeature('ObjectType', Constants.ObjectNameHVACAvailabilitySensor) end - Airflow.apply(model, runner, weather, spaces, @hpxml, @cfa, @nbeds, + Airflow.apply(model, runner, weather, spaces, @hpxml_header, @hpxml_bldg, @cfa, @nbeds, @ncfl_ag, duct_systems, airloop_map, @clg_ssn_sensor, @eri_version, @frac_windows_operable, @apply_ashrae140_assumptions, @schedules_file, - @hpxml.header.unavailable_periods, @hvac_availability_sensor) + @hpxml_header.unavailable_periods, hvac_availability_sensor) end - def self.create_ducts(model, hvac_distribution, spaces) + def create_ducts(model, hvac_distribution, spaces) air_ducts = [] # Duct leakage (supply/return => [value, units]) @@ -1817,96 +2010,131 @@ def self.create_ducts(model, hvac_distribution, spaces) return air_ducts end - def self.add_photovoltaics(model) - @hpxml.pv_systems.each do |pv_system| - next if pv_system.inverter.inverter_efficiency == @hpxml.pv_systems[0].inverter.inverter_efficiency + def add_photovoltaics(model) + @hpxml_bldg.pv_systems.each do |pv_system| + next if pv_system.inverter.inverter_efficiency == @hpxml_bldg.pv_systems[0].inverter.inverter_efficiency fail 'Expected all InverterEfficiency values to be equal.' end - @hpxml.pv_systems.each do |pv_system| - PV.apply(model, @nbeds, pv_system) + @hpxml_bldg.pv_systems.each do |pv_system| + PV.apply(model, @nbeds, pv_system, @hpxml_bldg.building_construction.number_of_units) end end - def self.add_generators(model) - @hpxml.generators.each do |generator| - Generator.apply(model, @nbeds, generator) + def add_generators(model) + @hpxml_bldg.generators.each do |generator| + Generator.apply(model, @nbeds, generator, @hpxml_bldg.building_construction.number_of_units) end end - def self.add_batteries(runner, model, spaces) - @hpxml.batteries.each do |battery| + def add_batteries(runner, model, spaces) + @hpxml_bldg.batteries.each do |battery| # Assign space battery.additional_properties.space = get_space_from_location(battery.location, spaces) - Battery.apply(runner, model, @hpxml.pv_systems, battery, @schedules_file) + Battery.apply(runner, model, @hpxml_bldg.pv_systems, battery, @schedules_file, @hpxml_bldg.building_construction.number_of_units) end end - def self.add_additional_properties(model, hpxml_path, building_id, epw_file) + def add_building_unit(model, unit_num) + return if unit_num.nil? + + unit = OpenStudio::Model::BuildingUnit.new(model) + unit.additionalProperties.setFeature('unit_num', unit_num) + model.getSpaces.each do |s| + s.setBuildingUnit(unit) + end + end + + def add_additional_properties(model, hpxml, hpxml_osm_map, hpxml_path, building_id, epw_file, hpxml_defaults_path) # Store some data for use in reporting measure additionalProperties = model.getBuilding.additionalProperties additionalProperties.setFeature('hpxml_path', hpxml_path) - additionalProperties.setFeature('hpxml_defaults_path', @hpxml_defaults_path) + additionalProperties.setFeature('hpxml_defaults_path', hpxml_defaults_path) additionalProperties.setFeature('building_id', building_id.to_s) - emissions_scenario_names = @hpxml.header.emissions_scenarios.map { |s| s.name }.to_s - additionalProperties.setFeature('emissions_scenario_names', emissions_scenario_names) - emissions_scenario_types = @hpxml.header.emissions_scenarios.map { |s| s.emissions_type }.to_s - additionalProperties.setFeature('emissions_scenario_types', emissions_scenario_types) - additionalProperties.setFeature('has_heating', @hpxml.total_fraction_heat_load_served > 0) - additionalProperties.setFeature('has_cooling', @hpxml.total_fraction_cool_load_served > 0) + additionalProperties.setFeature('emissions_scenario_names', hpxml.header.emissions_scenarios.map { |s| s.name }.to_s) + additionalProperties.setFeature('emissions_scenario_types', hpxml.header.emissions_scenarios.map { |s| s.emissions_type }.to_s) + heated_zones, cooled_zones = [], [] + hpxml_osm_map.each do |hpxml_bldg, unit_model| + conditioned_zone_name = unit_model.getThermalZones.find { |z| z.additionalProperties.getFeatureAsString('ObjectType').to_s == HPXML::LocationConditionedSpace }.name.to_s + + heated_zones << conditioned_zone_name if hpxml_bldg.total_fraction_heat_load_served > 0 + cooled_zones << conditioned_zone_name if hpxml_bldg.total_fraction_cool_load_served > 0 + end + additionalProperties.setFeature('heated_zones', heated_zones.to_s) + additionalProperties.setFeature('cooled_zones', cooled_zones.to_s) additionalProperties.setFeature('is_southern_hemisphere', epw_file.latitude < 0) end - def self.add_unmet_hours_output(model, spaces) + def add_unmet_hours_output(model, hpxml_osm_map) # We do our own unmet hours calculation via EMS so that we can incorporate, - # e.g., heating/cooling seasons into the logic. - hvac_control = @hpxml.hvac_controls[0] - if not hvac_control.nil? - sim_year = @hpxml.header.sim_calendar_year - htg_start_day = Schedule.get_day_num_from_month_day(sim_year, hvac_control.seasons_heating_begin_month, hvac_control.seasons_heating_begin_day) - htg_end_day = Schedule.get_day_num_from_month_day(sim_year, hvac_control.seasons_heating_end_month, hvac_control.seasons_heating_end_day) - clg_start_day = Schedule.get_day_num_from_month_day(sim_year, hvac_control.seasons_cooling_begin_month, hvac_control.seasons_cooling_begin_day) - clg_end_day = Schedule.get_day_num_from_month_day(sim_year, hvac_control.seasons_cooling_end_month, hvac_control.seasons_cooling_end_day) - end + # e.g., heating/cooling seasons into the logic. The calculation layers on top + # of the built-in EnergyPlus unmet hours output. + + # Create sensors and gather data + htg_sensors, clg_sensors = {}, {} + total_heat_load_serveds, total_cool_load_serveds = {}, {} + htg_start_days, htg_end_days, clg_start_days, clg_end_days = {}, {}, {}, {} + hpxml_osm_map.each_with_index do |(hpxml_bldg, unit_model), unit| + conditioned_zone_name = unit_model.getThermalZones.find { |z| z.additionalProperties.getFeatureAsString('ObjectType').to_s == HPXML::LocationConditionedSpace }.name.to_s + + # EMS sensors + htg_sensors[unit] = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Heating Setpoint Not Met Time') + htg_sensors[unit].setName('zone htg unmet s') + htg_sensors[unit].setKeyName(conditioned_zone_name) - living_zone = spaces[HPXML::LocationLivingSpace].thermalZone.get + clg_sensors[unit] = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Cooling Setpoint Not Met Time') + clg_sensors[unit].setName('zone clg unmet s') + clg_sensors[unit].setKeyName(conditioned_zone_name) - # EMS sensors - htg_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Heating Setpoint Not Met Time') - htg_sensor.setName('zone htg unmet s') - htg_sensor.setKeyName(living_zone.name.to_s) + total_heat_load_serveds[unit] = hpxml_bldg.total_fraction_heat_load_served + total_cool_load_serveds[unit] = hpxml_bldg.total_fraction_cool_load_served - clg_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Cooling Setpoint Not Met Time') - clg_sensor.setName('zone clg unmet s') - clg_sensor.setKeyName(living_zone.name.to_s) + hvac_control = hpxml_bldg.hvac_controls[0] + next unless not hvac_control.nil? + + sim_year = @hpxml_header.sim_calendar_year + htg_start_days[unit] = Schedule.get_day_num_from_month_day(sim_year, hvac_control.seasons_heating_begin_month, hvac_control.seasons_heating_begin_day) + htg_end_days[unit] = Schedule.get_day_num_from_month_day(sim_year, hvac_control.seasons_heating_end_month, hvac_control.seasons_heating_end_day) + clg_start_days[unit] = Schedule.get_day_num_from_month_day(sim_year, hvac_control.seasons_cooling_begin_month, hvac_control.seasons_cooling_begin_day) + clg_end_days[unit] = Schedule.get_day_num_from_month_day(sim_year, hvac_control.seasons_cooling_end_month, hvac_control.seasons_cooling_end_day) + end + + hvac_availability_sensor = model.getEnergyManagementSystemSensors.find { |s| s.additionalProperties.getFeatureAsString('ObjectType').to_s == Constants.ObjectNameHVACAvailabilitySensor } # EMS program clg_hrs = 'clg_unmet_hours' htg_hrs = 'htg_unmet_hours' program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) - program.setName(Constants.ObjectNameUnmetHoursProgram) + program.setName('unmet hours program') + program.additionalProperties.setFeature('ObjectType', Constants.ObjectNameUnmetHoursProgram) program.addLine("Set #{htg_hrs} = 0") program.addLine("Set #{clg_hrs} = 0") - if @hpxml.total_fraction_heat_load_served > 0 - if htg_end_day >= htg_start_day - line = "If ((DayOfYear >= #{htg_start_day}) && (DayOfYear <= #{htg_end_day}))" - else - line = "If ((DayOfYear >= #{htg_start_day}) || (DayOfYear <= #{htg_end_day}))" + for unit in 0..hpxml_osm_map.size - 1 + if total_heat_load_serveds[unit] > 0 + if htg_end_days[unit] >= htg_start_days[unit] + line = "If ((DayOfYear >= #{htg_start_days[unit]}) && (DayOfYear <= #{htg_end_days[unit]}))" + else + line = "If ((DayOfYear >= #{htg_start_days[unit]}) || (DayOfYear <= #{htg_end_days[unit]}))" + end + line += " && (#{hvac_availability_sensor.name} == 1)" if not hvac_availability_sensor.nil? + program.addLine(line) + program.addLine(" If #{htg_sensors[unit].name} > #{htg_hrs}") # Use max hourly value across all units + program.addLine(" Set #{htg_hrs} = #{htg_sensors[unit].name}") + program.addLine(' EndIf') + program.addLine('EndIf') end - line += " && (#{@hvac_availability_sensor.name} == 1)" if not @hvac_availability_sensor.nil? - program.addLine(line) - program.addLine(" Set #{htg_hrs} = #{htg_hrs} + #{htg_sensor.name}") - program.addLine('EndIf') - end - if @hpxml.total_fraction_cool_load_served > 0 - if clg_end_day >= clg_start_day - line = "If ((DayOfYear >= #{clg_start_day}) && (DayOfYear <= #{clg_end_day}))" + next unless total_cool_load_serveds[unit] > 0 + + if clg_end_days[unit] >= clg_start_days[unit] + line = "If ((DayOfYear >= #{clg_start_days[unit]}) && (DayOfYear <= #{clg_end_days[unit]}))" else - line = "If ((DayOfYear >= #{clg_start_day}) || (DayOfYear <= #{clg_end_day}))" + line = "If ((DayOfYear >= #{clg_start_days[unit]}) || (DayOfYear <= #{clg_end_days[unit]}))" end - line += " && (#{@hvac_availability_sensor.name} == 1)" if not @hvac_availability_sensor.nil? + line += " && (#{hvac_availability_sensor.name} == 1)" if not hvac_availability_sensor.nil? program.addLine(line) - program.addLine(" Set #{clg_hrs} = #{clg_hrs} + #{clg_sensor.name}") + program.addLine(" If #{clg_sensors[unit].name} > #{clg_hrs}") # Use max hourly value across all units + program.addLine(" Set #{clg_hrs} = #{clg_sensors[unit].name}") + program.addLine(' EndIf') program.addLine('EndIf') end @@ -1917,68 +2145,88 @@ def self.add_unmet_hours_output(model, spaces) program_calling_manager.addProgram(program) end - def self.add_loads_output(model, spaces, add_component_loads) - living_zone = spaces[HPXML::LocationLivingSpace].thermalZone.get - - if @apply_ashrae140_assumptions - total_heat_load_served = 1.0 - total_cool_load_served = 1.0 - else - total_heat_load_served = @hpxml.total_fraction_heat_load_served - total_cool_load_served = @hpxml.total_fraction_cool_load_served - end - - liv_load_sensors, intgain_dehumidifier = add_total_loads_output(model, living_zone, total_heat_load_served, total_cool_load_served) + def add_loads_output(model, add_component_loads, hpxml_osm_map) + loads_data = add_total_loads_output(model, hpxml_osm_map) return unless add_component_loads - add_component_loads_output(model, living_zone, liv_load_sensors, intgain_dehumidifier, total_heat_load_served, total_cool_load_served) + add_component_loads_output(model, hpxml_osm_map, loads_data) end - def self.add_total_loads_output(model, living_zone, total_heat_load_served, total_cool_load_served) - # Energy transferred in the conditioned space, used for determining heating (winter) vs cooling (summer) - liv_load_sensors = {} - liv_load_sensors[:htg] = OpenStudio::Model::EnergyManagementSystemSensor.new(model, "Heating:EnergyTransfer:Zone:#{living_zone.name.to_s.upcase}") - liv_load_sensors[:htg].setName('htg_load_liv') - liv_load_sensors[:clg] = OpenStudio::Model::EnergyManagementSystemSensor.new(model, "Cooling:EnergyTransfer:Zone:#{living_zone.name.to_s.upcase}") - liv_load_sensors[:clg].setName('clg_load_liv') - - # Total energy transferred (above plus ducts) - tot_load_sensors = {} - tot_load_sensors[:htg] = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Heating:EnergyTransfer') - tot_load_sensors[:htg].setName('htg_load_tot') - tot_load_sensors[:clg] = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Cooling:EnergyTransfer') - tot_load_sensors[:clg].setName('clg_load_tot') + def add_total_loads_output(model, hpxml_osm_map) + # Create sensors and gather data + htg_cond_load_sensors, clg_cond_load_sensors = {}, {} + htg_duct_load_sensors, clg_duct_load_sensors = {}, {} + total_heat_load_serveds, total_cool_load_serveds = {}, {} + dehumidifier_sensors = {} + + hpxml_osm_map.each_with_index do |(hpxml_bldg, unit_model), unit| + # Retrieve objects + conditioned_zone_name = unit_model.getThermalZones.find { |z| z.additionalProperties.getFeatureAsString('ObjectType').to_s == HPXML::LocationConditionedSpace }.name.to_s + duct_zone_names = unit_model.getThermalZones.select { |z| z.isPlenum }.map { |z| z.name.to_s } + dehumidifier = unit_model.getZoneHVACDehumidifierDXs + dehumidifier_name = dehumidifier[0].name.to_s unless dehumidifier.empty? + + # Fraction heat/cool load served + if @hpxml_header.apply_ashrae140_assumptions + total_heat_load_serveds[unit] = 1.0 + total_cool_load_serveds[unit] = 1.0 + else + total_heat_load_serveds[unit] = hpxml_bldg.total_fraction_heat_load_served + total_cool_load_serveds[unit] = hpxml_bldg.total_fraction_cool_load_served + end - # Need to adjusted E+ EnergyTransfer meters for dehumidifiers - intgain_dehumidifier = nil - model.getZoneHVACDehumidifierDXs.each do |e| - next unless e.thermalZone.get.name.to_s == living_zone.name.to_s + # Energy transferred in conditioned zone, used for determining heating (winter) vs cooling (summer) + htg_cond_load_sensors[unit] = OpenStudio::Model::EnergyManagementSystemSensor.new(model, "Heating:EnergyTransfer:Zone:#{conditioned_zone_name.upcase}") + htg_cond_load_sensors[unit].setName('htg_load_cond') + clg_cond_load_sensors[unit] = OpenStudio::Model::EnergyManagementSystemSensor.new(model, "Cooling:EnergyTransfer:Zone:#{conditioned_zone_name.upcase}") + clg_cond_load_sensors[unit].setName('clg_load_cond') - { 'Zone Dehumidifier Sensible Heating Energy' => 'ig_dehumidifier' }.each do |var, name| - intgain_dehumidifier = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) - intgain_dehumidifier.setName(name) - intgain_dehumidifier.setKeyName(e.name.to_s) + # Energy transferred in duct zone(s) + htg_duct_load_sensors[unit] = [] + clg_duct_load_sensors[unit] = [] + duct_zone_names.each do |duct_zone_name| + htg_duct_load_sensors[unit] << OpenStudio::Model::EnergyManagementSystemSensor.new(model, "Heating:EnergyTransfer:Zone:#{duct_zone_name.upcase}") + htg_duct_load_sensors[unit][-1].setName('htg_load_duct') + clg_duct_load_sensors[unit] << OpenStudio::Model::EnergyManagementSystemSensor.new(model, "Cooling:EnergyTransfer:Zone:#{duct_zone_name.upcase}") + clg_duct_load_sensors[unit][-1].setName('clg_load_duct') end + + # Need to adjusted E+ EnergyTransfer meters for dehumidifier internal gains + next if dehumidifier_name.nil? + + dehumidifier_sensors[unit] = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Dehumidifier Sensible Heating Energy') + dehumidifier_sensors[unit].setName('ig_dehumidifier') + dehumidifier_sensors[unit].setKeyName(dehumidifier_name) end # EMS program program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) - program.setName(Constants.ObjectNameTotalLoadsProgram) + program.setName('total loads program') + program.additionalProperties.setFeature('ObjectType', Constants.ObjectNameTotalLoadsProgram) program.addLine('Set loads_htg_tot = 0') program.addLine('Set loads_clg_tot = 0') - program.addLine("If #{liv_load_sensors[:htg].name} > 0") - s = " Set loads_htg_tot = (#{tot_load_sensors[:htg].name} - #{tot_load_sensors[:clg].name}) * #{total_heat_load_served}" - if not intgain_dehumidifier.nil? - s += " - #{intgain_dehumidifier.name}" + for unit in 0..hpxml_osm_map.size - 1 + program.addLine("If #{htg_cond_load_sensors[unit].name} > 0") + program.addLine(" Set loads_htg_tot = loads_htg_tot + (#{htg_cond_load_sensors[unit].name} - #{clg_cond_load_sensors[unit].name}) * #{total_heat_load_serveds[unit]}") + for i in 0..htg_duct_load_sensors[unit].size - 1 + program.addLine(" Set loads_htg_tot = loads_htg_tot + (#{htg_duct_load_sensors[unit][i].name} - #{clg_duct_load_sensors[unit][i].name}) * #{total_heat_load_serveds[unit]}") + end + if not dehumidifier_sensors[unit].nil? + program.addLine(" Set loads_htg_tot = loads_htg_tot - #{dehumidifier_sensors[unit].name}") + end + program.addLine('EndIf') end - program.addLine(s) - program.addLine("ElseIf #{liv_load_sensors[:clg].name} > 0") - s = " Set loads_clg_tot = (#{tot_load_sensors[:clg].name} - #{tot_load_sensors[:htg].name}) * #{total_cool_load_served}" - if not intgain_dehumidifier.nil? - s += " + #{intgain_dehumidifier.name}" + for unit in 0..hpxml_osm_map.size - 1 + program.addLine("If #{clg_cond_load_sensors[unit].name} > 0") + program.addLine(" Set loads_clg_tot = loads_clg_tot + (#{clg_cond_load_sensors[unit].name} - #{htg_cond_load_sensors[unit].name}) * #{total_cool_load_serveds[unit]}") + for i in 0..clg_duct_load_sensors[unit].size - 1 + program.addLine(" Set loads_clg_tot = loads_clg_tot + (#{clg_duct_load_sensors[unit][i].name} - #{htg_duct_load_sensors[unit][i].name}) * #{total_cool_load_serveds[unit]}") + end + if not dehumidifier_sensors[unit].nil? + program.addLine(" Set loads_clg_tot = loads_clg_tot + #{dehumidifier_sensors[unit].name}") + end + program.addLine('EndIf') end - program.addLine(s) - program.addLine('EndIf') # EMS calling manager program_calling_manager = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model) @@ -1986,27 +2234,11 @@ def self.add_total_loads_output(model, living_zone, total_heat_load_served, tota program_calling_manager.setCallingPoint('EndOfZoneTimestepAfterZoneReporting') program_calling_manager.addProgram(program) - return liv_load_sensors, intgain_dehumidifier + return htg_cond_load_sensors, clg_cond_load_sensors, total_heat_load_serveds, total_cool_load_serveds, dehumidifier_sensors end - def self.add_component_loads_output(model, living_zone, liv_load_sensors, intgain_dehumidifier, total_heat_load_served, total_cool_load_served) - # Prevent certain objects (e.g., OtherEquipment) from being counted towards both, e.g., ducts and internal gains - objects_already_processed = [] - - # EMS Sensors: Surfaces, SubSurfaces, InternalMass - surfaces_sensors = { walls: [], - rim_joists: [], - foundation_walls: [], - floors: [], - slabs: [], - ceilings: [], - roofs: [], - windows_conduction: [], - windows_solar: [], - doors: [], - skylights_conduction: [], - skylights_solar: [], - internal_mass: [] } + def add_component_loads_output(model, hpxml_osm_map, loads_data) + htg_cond_load_sensors, clg_cond_load_sensors, total_heat_load_serveds, total_cool_load_serveds, dehumidifier_sensors = loads_data # Output diagnostics needed for some output variables used below output_diagnostics = model.getOutputDiagnostics @@ -2014,397 +2246,376 @@ def self.add_component_loads_output(model, living_zone, liv_load_sensors, intgai area_tolerance = UnitConversions.convert(1.0, 'ft^2', 'm^2') - model.getSurfaces.sort.each do |s| - next unless s.space.get.thermalZone.get.name.to_s == living_zone.name.to_s + nonsurf_names = ['intgains', 'lighting', 'infil', 'mechvent', 'natvent', 'whf', 'ducts'] + surf_names = ['walls', 'rim_joists', 'foundation_walls', 'floors', 'slabs', 'ceilings', + 'roofs', 'windows_conduction', 'windows_solar', 'doors', 'skylights_conduction', + 'skylights_solar', 'internal_mass'] + + # EMS program + program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) + program.setName('component loads program') + program.additionalProperties.setFeature('ObjectType', Constants.ObjectNameComponentLoadsProgram) - surface_type = s.additionalProperties.getFeatureAsString('SurfaceType') - if not surface_type.is_initialized - fail "Could not identify surface type for surface: '#{s.name}'." + # Initialize + [:htg, :clg].each do |mode| + surf_names.each do |surf_name| + program.addLine("Set loads_#{mode}_#{surf_name} = 0") + end + nonsurf_names.each do |nonsurf_name| + program.addLine("Set loads_#{mode}_#{nonsurf_name} = 0") end + end - surface_type = surface_type.get + hpxml_osm_map.values.each_with_index do |unit_model, unit| + conditioned_zone = unit_model.getThermalZones.find { |z| z.additionalProperties.getFeatureAsString('ObjectType').to_s == HPXML::LocationConditionedSpace } - s.subSurfaces.each do |ss| - # Conduction (windows, skylights, doors) - key = { 'Window' => :windows_conduction, - 'Door' => :doors, - 'Skylight' => :skylights_conduction }[surface_type] - fail "Unexpected subsurface for component loads: '#{ss.name}'." if key.nil? + # Prevent certain objects (e.g., OtherEquipment) from being counted towards both, e.g., ducts and internal gains + objects_already_processed = [] - if (surface_type == 'Window') || (surface_type == 'Skylight') - vars = { 'Surface Inside Face Convection Heat Gain Energy' => 'ss_conv', - 'Surface Inside Face Internal Gains Radiation Heat Gain Energy' => 'ss_ig', - 'Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy' => 'ss_surf' } - else - vars = { 'Surface Inside Face Solar Radiation Heat Gain Energy' => 'ss_sol', - 'Surface Inside Face Lights Radiation Heat Gain Energy' => 'ss_lgt', - 'Surface Inside Face Convection Heat Gain Energy' => 'ss_conv', - 'Surface Inside Face Internal Gains Radiation Heat Gain Energy' => 'ss_ig', - 'Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy' => 'ss_surf' } + # EMS Sensors: Surfaces, SubSurfaces, InternalMass + surfaces_sensors = {} + surf_names.each do |surf_name| + surfaces_sensors[surf_name.to_sym] = [] + end + + unit_model.getSurfaces.sort.each do |s| + next unless s.space.get.thermalZone.get.name.to_s == conditioned_zone.name.to_s + + surface_type = s.additionalProperties.getFeatureAsString('SurfaceType') + if not surface_type.is_initialized + fail "Could not identify surface type for surface: '#{s.name}'." end - vars.each do |var, name| + surface_type = surface_type.get + + s.subSurfaces.each do |ss| + # Conduction (windows, skylights, doors) + key = { 'Window' => :windows_conduction, + 'Door' => :doors, + 'Skylight' => :skylights_conduction }[surface_type] + fail "Unexpected subsurface for component loads: '#{ss.name}'." if key.nil? + + if (surface_type == 'Window') || (surface_type == 'Skylight') + vars = { 'Surface Inside Face Convection Heat Gain Energy' => 'ss_conv', + 'Surface Inside Face Internal Gains Radiation Heat Gain Energy' => 'ss_ig', + 'Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy' => 'ss_surf' } + else + vars = { 'Surface Inside Face Solar Radiation Heat Gain Energy' => 'ss_sol', + 'Surface Inside Face Lights Radiation Heat Gain Energy' => 'ss_lgt', + 'Surface Inside Face Convection Heat Gain Energy' => 'ss_conv', + 'Surface Inside Face Internal Gains Radiation Heat Gain Energy' => 'ss_ig', + 'Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy' => 'ss_surf' } + end + + vars.each do |var, name| + surfaces_sensors[key] << [] + sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) + sensor.setName(name) + sensor.setKeyName(ss.name.to_s) + surfaces_sensors[key][-1] << sensor + end + + # Solar (windows, skylights) + next unless (surface_type == 'Window') || (surface_type == 'Skylight') + + key = { 'Window' => :windows_solar, + 'Skylight' => :skylights_solar }[surface_type] + vars = { 'Surface Window Transmitted Solar Radiation Energy' => 'ss_trans_in', + 'Surface Window Shortwave from Zone Back Out Window Heat Transfer Rate' => 'ss_back_out', + 'Surface Window Total Glazing Layers Absorbed Shortwave Radiation Rate' => 'ss_sw_abs', + 'Surface Window Total Glazing Layers Absorbed Solar Radiation Energy' => 'ss_sol_abs', + 'Surface Inside Face Initial Transmitted Diffuse Transmitted Out Window Solar Radiation Rate' => 'ss_trans_out' } + surfaces_sensors[key] << [] - sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) - sensor.setName(name) - sensor.setKeyName(ss.name.to_s) - surfaces_sensors[key][-1] << sensor + vars.each do |var, name| + sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) + sensor.setName(name) + sensor.setKeyName(ss.name.to_s) + surfaces_sensors[key][-1] << sensor + end end - # Solar (windows, skylights) - next unless (surface_type == 'Window') || (surface_type == 'Skylight') + next if s.netArea < area_tolerance # Skip parent surfaces (of subsurfaces) that have near zero net area - key = { 'Window' => :windows_solar, - 'Skylight' => :skylights_solar }[surface_type] - vars = { 'Surface Window Transmitted Solar Radiation Energy' => 'ss_trans_in', - 'Surface Window Shortwave from Zone Back Out Window Heat Transfer Rate' => 'ss_back_out', - 'Surface Window Total Glazing Layers Absorbed Shortwave Radiation Rate' => 'ss_sw_abs', - 'Surface Window Total Glazing Layers Absorbed Solar Radiation Energy' => 'ss_sol_abs', - 'Surface Inside Face Initial Transmitted Diffuse Transmitted Out Window Solar Radiation Rate' => 'ss_trans_out' } + key = { 'FoundationWall' => :foundation_walls, + 'RimJoist' => :rim_joists, + 'Wall' => :walls, + 'Slab' => :slabs, + 'Floor' => :floors, + 'Ceiling' => :ceilings, + 'Roof' => :roofs, + 'InferredCeiling' => :internal_mass, + 'InferredFloor' => :internal_mass }[surface_type] + fail "Unexpected surface for component loads: '#{s.name}'." if key.nil? surfaces_sensors[key] << [] - vars.each do |var, name| + { 'Surface Inside Face Convection Heat Gain Energy' => 's_conv', + 'Surface Inside Face Internal Gains Radiation Heat Gain Energy' => 's_ig', + 'Surface Inside Face Solar Radiation Heat Gain Energy' => 's_sol', + 'Surface Inside Face Lights Radiation Heat Gain Energy' => 's_lgt', + 'Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy' => 's_surf' }.each do |var, name| sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) sensor.setName(name) - sensor.setKeyName(ss.name.to_s) + sensor.setKeyName(s.name.to_s) surfaces_sensors[key][-1] << sensor end end - next if s.netArea < area_tolerance # Skip parent surfaces (of subsurfaces) that have near zero net area - - key = { 'FoundationWall' => :foundation_walls, - 'RimJoist' => :rim_joists, - 'Wall' => :walls, - 'Slab' => :slabs, - 'Floor' => :floors, - 'Ceiling' => :ceilings, - 'Roof' => :roofs, - 'InferredCeiling' => :internal_mass, - 'InferredFloor' => :internal_mass }[surface_type] - fail "Unexpected surface for component loads: '#{s.name}'." if key.nil? - - surfaces_sensors[key] << [] - { 'Surface Inside Face Convection Heat Gain Energy' => 's_conv', - 'Surface Inside Face Internal Gains Radiation Heat Gain Energy' => 's_ig', - 'Surface Inside Face Solar Radiation Heat Gain Energy' => 's_sol', - 'Surface Inside Face Lights Radiation Heat Gain Energy' => 's_lgt', - 'Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy' => 's_surf' }.each do |var, name| - sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) - sensor.setName(name) - sensor.setKeyName(s.name.to_s) - surfaces_sensors[key][-1] << sensor - end - end - - model.getInternalMasss.sort.each do |m| - next unless m.space.get.thermalZone.get.name.to_s == living_zone.name.to_s - - surfaces_sensors[:internal_mass] << [] - { 'Surface Inside Face Convection Heat Gain Energy' => 'im_conv', - 'Surface Inside Face Internal Gains Radiation Heat Gain Energy' => 'im_ig', - 'Surface Inside Face Solar Radiation Heat Gain Energy' => 'im_sol', - 'Surface Inside Face Lights Radiation Heat Gain Energy' => 'im_lgt', - 'Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy' => 'im_surf' }.each do |var, name| - sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) - sensor.setName(name) - sensor.setKeyName(m.name.to_s) - surfaces_sensors[:internal_mass][-1] << sensor - end - end - - # EMS Sensors: Infiltration, Mechanical Ventilation, Natural Ventilation, Whole House Fan - infil_sensors = [] - natvent_sensors = [] - whf_sensors = [] - { Constants.ObjectNameInfiltration => infil_sensors, - Constants.ObjectNameNaturalVentilation => natvent_sensors, - Constants.ObjectNameWholeHouseFan => whf_sensors }.each do |prefix, array| - model.getSpaceInfiltrationDesignFlowRates.sort.each do |i| - next unless i.name.to_s.start_with? prefix - next unless i.space.get.thermalZone.get.name.to_s == living_zone.name.to_s - - { 'Infiltration Sensible Heat Gain Energy' => prefix.gsub(' ', '_') + '_' + 'gain', - 'Infiltration Sensible Heat Loss Energy' => prefix.gsub(' ', '_') + '_' + 'loss' }.each do |var, name| + unit_model.getInternalMasss.sort.each do |m| + next unless m.space.get.thermalZone.get.name.to_s == conditioned_zone.name.to_s + + surfaces_sensors[:internal_mass] << [] + { 'Surface Inside Face Convection Heat Gain Energy' => 'im_conv', + 'Surface Inside Face Internal Gains Radiation Heat Gain Energy' => 'im_ig', + 'Surface Inside Face Solar Radiation Heat Gain Energy' => 'im_sol', + 'Surface Inside Face Lights Radiation Heat Gain Energy' => 'im_lgt', + 'Surface Inside Face Net Surface Thermal Radiation Heat Gain Energy' => 'im_surf' }.each do |var, name| + sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) + sensor.setName(name) + sensor.setKeyName(m.name.to_s) + surfaces_sensors[:internal_mass][-1] << sensor + end + end + + # EMS Sensors: Infiltration, Natural Ventilation, Whole House Fan + infil_sensors, natvent_sensors, whf_sensors = [], [], [] + unit_model.getSpaceInfiltrationDesignFlowRates.sort.each do |i| + next unless i.space.get.thermalZone.get.name.to_s == conditioned_zone.name.to_s + + object_type = i.additionalProperties.getFeatureAsString('ObjectType').get + + { 'Infiltration Sensible Heat Gain Energy' => 'airflow_gain', + 'Infiltration Sensible Heat Loss Energy' => 'airflow_loss' }.each do |var, name| airflow_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) airflow_sensor.setName(name) airflow_sensor.setKeyName(i.name.to_s) - array << airflow_sensor + if object_type == Constants.ObjectNameInfiltration + infil_sensors << airflow_sensor + elsif object_type == Constants.ObjectNameNaturalVentilation + natvent_sensors << airflow_sensor + elsif object_type == Constants.ObjectNameWholeHouseFan + whf_sensors << airflow_sensor + end end end - end - mechvents_sensors = [] - model.getElectricEquipments.sort.each do |o| - next unless o.name.to_s.start_with? Constants.ObjectNameMechanicalVentilation + # EMS Sensors: Mechanical Ventilation + mechvents_sensors = [] + unit_model.getElectricEquipments.sort.each do |o| + next unless o.endUseSubcategory == Constants.ObjectNameMechanicalVentilation - mechvents_sensors << [] - { 'Electric Equipment Convective Heating Energy' => 'mv_conv', - 'Electric Equipment Radiant Heating Energy' => 'mv_rad' }.each do |var, name| - mechvent_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) - mechvent_sensor.setName(name) - mechvent_sensor.setKeyName(o.name.to_s) - mechvents_sensors[-1] << mechvent_sensor objects_already_processed << o + { 'Electric Equipment Convective Heating Energy' => 'mv_conv', + 'Electric Equipment Radiant Heating Energy' => 'mv_rad' }.each do |var, name| + mechvent_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) + mechvent_sensor.setName(name) + mechvent_sensor.setKeyName(o.name.to_s) + mechvents_sensors << mechvent_sensor + end end - end - model.getOtherEquipments.sort.each do |o| - next unless o.name.to_s.start_with? Constants.ObjectNameMechanicalVentilationHouseFan + unit_model.getOtherEquipments.sort.each do |o| + next unless o.endUseSubcategory == Constants.ObjectNameMechanicalVentilationHouseFan - mechvents_sensors << [] - { 'Other Equipment Convective Heating Energy' => 'mv_conv', - 'Other Equipment Radiant Heating Energy' => 'mv_rad' }.each do |var, name| - mechvent_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) - mechvent_sensor.setName(name) - mechvent_sensor.setKeyName(o.name.to_s) - mechvents_sensors[-1] << mechvent_sensor objects_already_processed << o + { 'Other Equipment Convective Heating Energy' => 'mv_conv', + 'Other Equipment Radiant Heating Energy' => 'mv_rad' }.each do |var, name| + mechvent_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) + mechvent_sensor.setName(name) + mechvent_sensor.setKeyName(o.name.to_s) + mechvents_sensors << mechvent_sensor + end end - end - # EMS Sensors: Ducts - ducts_sensors = [] - ducts_mix_gain_sensor = nil - ducts_mix_loss_sensor = nil + # EMS Sensors: Ducts + ducts_sensors = [] + ducts_mix_gain_sensor = nil + ducts_mix_loss_sensor = nil + conditioned_zone.zoneMixing.each do |zone_mix| + object_type = zone_mix.additionalProperties.getFeatureAsString('ObjectType').to_s + next unless object_type == Constants.ObjectNameDuctLoad - has_duct_zone_mixing = false - living_zone.airLoopHVACs.sort.each do |airloop| - living_zone.zoneMixing.each do |zone_mix| - next unless zone_mix.name.to_s.start_with? airloop.name.to_s.gsub(' ', '_') + ducts_mix_gain_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Mixing Sensible Heat Gain Energy') + ducts_mix_gain_sensor.setName('duct_mix_gain') + ducts_mix_gain_sensor.setKeyName(conditioned_zone.name.to_s) - has_duct_zone_mixing = true + ducts_mix_loss_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Mixing Sensible Heat Loss Energy') + ducts_mix_loss_sensor.setName('duct_mix_loss') + ducts_mix_loss_sensor.setKeyName(conditioned_zone.name.to_s) end - end - - if has_duct_zone_mixing - ducts_mix_gain_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Mixing Sensible Heat Gain Energy') - ducts_mix_gain_sensor.setName('duct_mix_gain') - ducts_mix_gain_sensor.setKeyName(living_zone.name.to_s) - - ducts_mix_loss_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Mixing Sensible Heat Loss Energy') - ducts_mix_loss_sensor.setName('duct_mix_loss') - ducts_mix_loss_sensor.setKeyName(living_zone.name.to_s) - end - - # Duct losses - model.getOtherEquipments.sort.each do |o| - next if objects_already_processed.include? o + unit_model.getOtherEquipments.sort.each do |o| + next if objects_already_processed.include? o + next unless o.endUseSubcategory == Constants.ObjectNameDuctLoad - is_duct_load = o.additionalProperties.getFeatureAsBoolean(Constants.IsDuctLoadForReport) - next unless is_duct_load.is_initialized + objects_already_processed << o + { 'Other Equipment Convective Heating Energy' => 'ducts_conv', + 'Other Equipment Radiant Heating Energy' => 'ducts_rad' }.each do |var, name| + ducts_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) + ducts_sensor.setName(name) + ducts_sensor.setKeyName(o.name.to_s) + ducts_sensors << ducts_sensor + end + end - objects_already_processed << o - next unless is_duct_load.get + # EMS Sensors: Lighting + lightings_sensors = [] + unit_model.getLightss.sort.each do |e| + next unless e.space.get.thermalZone.get.name.to_s == conditioned_zone.name.to_s - ducts_sensors << [] - { 'Other Equipment Convective Heating Energy' => 'ducts_conv', - 'Other Equipment Radiant Heating Energy' => 'ducts_rad' }.each do |var, name| - ducts_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) - ducts_sensor.setName(name) - ducts_sensor.setKeyName(o.name.to_s) - ducts_sensors[-1] << ducts_sensor + { 'Lights Convective Heating Energy' => 'ig_lgt_conv', + 'Lights Radiant Heating Energy' => 'ig_lgt_rad', + 'Lights Visible Radiation Heating Energy' => 'ig_lgt_vis' }.each do |var, name| + intgains_lights_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) + intgains_lights_sensor.setName(name) + intgains_lights_sensor.setKeyName(e.name.to_s) + lightings_sensors << intgains_lights_sensor + end end - end - # EMS Sensors: Lighting - lightings_sensors = [] - lightings_sensors << [] - model.getLightss.sort.each do |e| - next unless e.space.get.thermalZone.get.name.to_s == living_zone.name.to_s + # EMS Sensors: Internal Gains + intgains_sensors = [] + unit_model.getElectricEquipments.sort.each do |o| + next if objects_already_processed.include? o + next unless o.space.get.thermalZone.get.name.to_s == conditioned_zone.name.to_s - lightings_sensors << [] - { 'Lights Convective Heating Energy' => 'ig_lgt_conv', - 'Lights Radiant Heating Energy' => 'ig_lgt_rad', - 'Lights Visible Radiation Heating Energy' => 'ig_lgt_vis' }.each do |var, name| - intgains_lights_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) - intgains_lights_sensor.setName(name) - intgains_lights_sensor.setKeyName(e.name.to_s) - lightings_sensors[-1] << intgains_lights_sensor + { 'Electric Equipment Convective Heating Energy' => 'ig_ee_conv', + 'Electric Equipment Radiant Heating Energy' => 'ig_ee_rad' }.each do |var, name| + intgains_elec_equip_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) + intgains_elec_equip_sensor.setName(name) + intgains_elec_equip_sensor.setKeyName(o.name.to_s) + intgains_sensors << intgains_elec_equip_sensor + end end - end - # EMS Sensors: Internal Gains - intgains_sensors = [] + unit_model.getOtherEquipments.sort.each do |o| + next if objects_already_processed.include? o + next unless o.space.get.thermalZone.get.name.to_s == conditioned_zone.name.to_s - model.getElectricEquipments.sort.each do |o| - next unless o.space.get.thermalZone.get.name.to_s == living_zone.name.to_s - next if objects_already_processed.include? o - - intgains_sensors << [] - { 'Electric Equipment Convective Heating Energy' => 'ig_ee_conv', - 'Electric Equipment Radiant Heating Energy' => 'ig_ee_rad' }.each do |var, name| - intgains_elec_equip_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) - intgains_elec_equip_sensor.setName(name) - intgains_elec_equip_sensor.setKeyName(o.name.to_s) - intgains_sensors[-1] << intgains_elec_equip_sensor + { 'Other Equipment Convective Heating Energy' => 'ig_oe_conv', + 'Other Equipment Radiant Heating Energy' => 'ig_oe_rad' }.each do |var, name| + intgains_other_equip_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) + intgains_other_equip_sensor.setName(name) + intgains_other_equip_sensor.setKeyName(o.name.to_s) + intgains_sensors << intgains_other_equip_sensor + end end - end - model.getOtherEquipments.sort.each do |o| - next unless o.space.get.thermalZone.get.name.to_s == living_zone.name.to_s - next if objects_already_processed.include? o + unit_model.getPeoples.sort.each do |e| + next unless e.space.get.thermalZone.get.name.to_s == conditioned_zone.name.to_s - intgains_sensors << [] - { 'Other Equipment Convective Heating Energy' => 'ig_oe_conv', - 'Other Equipment Radiant Heating Energy' => 'ig_oe_rad' }.each do |var, name| - intgains_other_equip_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) - intgains_other_equip_sensor.setName(name) - intgains_other_equip_sensor.setKeyName(o.name.to_s) - intgains_sensors[-1] << intgains_other_equip_sensor + { 'People Convective Heating Energy' => 'ig_ppl_conv', + 'People Radiant Heating Energy' => 'ig_ppl_rad' }.each do |var, name| + intgains_people = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) + intgains_people.setName(name) + intgains_people.setKeyName(e.name.to_s) + intgains_sensors << intgains_people + end end - end - model.getPeoples.sort.each do |e| - next unless e.space.get.thermalZone.get.name.to_s == living_zone.name.to_s - - intgains_sensors << [] - { 'People Convective Heating Energy' => 'ig_ppl_conv', - 'People Radiant Heating Energy' => 'ig_ppl_rad' }.each do |var, name| - intgains_people = OpenStudio::Model::EnergyManagementSystemSensor.new(model, var) - intgains_people.setName(name) - intgains_people.setKeyName(e.name.to_s) - intgains_sensors[-1] << intgains_people + if not dehumidifier_sensors[unit].nil? + intgains_sensors << dehumidifier_sensors[unit] end - end - if not intgain_dehumidifier.nil? - intgains_sensors[-1] << intgain_dehumidifier - end + intgains_dhw_sensors = {} - intgains_dhw_sensors = {} + (unit_model.getWaterHeaterMixeds + unit_model.getWaterHeaterStratifieds).sort.each do |wh| + next unless wh.ambientTemperatureThermalZone.is_initialized + next unless wh.ambientTemperatureThermalZone.get.name.to_s == conditioned_zone.name.to_s - (model.getWaterHeaterMixeds + model.getWaterHeaterStratifieds).sort.each do |wh| - next unless wh.ambientTemperatureThermalZone.is_initialized - next unless wh.ambientTemperatureThermalZone.get.name.to_s == living_zone.name.to_s + dhw_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Water Heater Heat Loss Energy') + dhw_sensor.setName('dhw_loss') + dhw_sensor.setKeyName(wh.name.to_s) - dhw_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Water Heater Heat Loss Energy') - dhw_sensor.setName('dhw_loss') - dhw_sensor.setKeyName(wh.name.to_s) + if wh.is_a? OpenStudio::Model::WaterHeaterMixed + oncycle_loss = wh.onCycleLossFractiontoThermalZone + offcycle_loss = wh.offCycleLossFractiontoThermalZone + else + oncycle_loss = wh.skinLossFractiontoZone + offcycle_loss = wh.offCycleFlueLossFractiontoZone + end - if wh.is_a? OpenStudio::Model::WaterHeaterMixed - oncycle_loss = wh.onCycleLossFractiontoThermalZone - offcycle_loss = wh.offCycleLossFractiontoThermalZone - else - oncycle_loss = wh.skinLossFractiontoZone - offcycle_loss = wh.offCycleFlueLossFractiontoZone + dhw_rtf_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Water Heater Runtime Fraction') + dhw_rtf_sensor.setName('dhw_rtf') + dhw_rtf_sensor.setKeyName(wh.name.to_s) + + intgains_dhw_sensors[dhw_sensor] = [offcycle_loss, oncycle_loss, dhw_rtf_sensor] + end + + # EMS program: Surfaces + surfaces_sensors.each do |k, surface_sensors| + program.addLine("Set hr_#{k} = 0") + surface_sensors.each do |sensors| + s = "Set hr_#{k} = hr_#{k}" + sensors.each do |sensor| + # remove ss_net if switch + if sensor.name.to_s.start_with?('ss_net', 'ss_sol_abs', 'ss_trans_in') + s += " - #{sensor.name}" + elsif sensor.name.to_s.start_with?('ss_sw_abs', 'ss_trans_out', 'ss_back_out') + s += " + #{sensor.name} * ZoneTimestep * 3600" + else + s += " + #{sensor.name}" + end + end + program.addLine(s) if sensors.size > 0 + end end - dhw_rtf_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Water Heater Runtime Fraction') - dhw_rtf_sensor.setName('dhw_rtf') - dhw_rtf_sensor.setKeyName(wh.name.to_s) + # EMS program: Internal Gains, Lighting, Infiltration, Natural Ventilation, Mechanical Ventilation, Ducts + { 'intgains' => intgains_sensors, + 'lighting' => lightings_sensors, + 'infil' => infil_sensors, + 'natvent' => natvent_sensors, + 'whf' => whf_sensors, + 'mechvent' => mechvents_sensors, + 'ducts' => ducts_sensors }.each do |loadtype, sensors| + program.addLine("Set hr_#{loadtype} = 0") + next if sensors.empty? - intgains_dhw_sensors[dhw_sensor] = [offcycle_loss, oncycle_loss, dhw_rtf_sensor] - end - - nonsurf_names = ['intgains', 'lighting', 'infil', 'mechvent', 'natvent', 'whf', 'ducts'] - - # EMS program - program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) - program.setName(Constants.ObjectNameComponentLoadsProgram) - - # EMS program: Surfaces - surfaces_sensors.each do |k, surface_sensors| - program.addLine("Set hr_#{k} = 0") - surface_sensors.each do |sensors| - s = "Set hr_#{k} = hr_#{k}" + s = "Set hr_#{loadtype} = hr_#{loadtype}" sensors.each do |sensor| - # remove ss_net if switch - if sensor.name.to_s.start_with?('ss_net', 'ss_sol_abs', 'ss_trans_in') + if ['intgains', 'lighting', 'mechvent', 'ducts'].include? loadtype s += " - #{sensor.name}" - elsif sensor.name.to_s.start_with?('ss_sw_abs', 'ss_trans_out', 'ss_back_out') - s += " + #{sensor.name} * ZoneTimestep * 3600" - else + elsif sensor.name.to_s.include? 'gain' + s += " - #{sensor.name}" + elsif sensor.name.to_s.include? 'loss' s += " + #{sensor.name}" end end - program.addLine(s) if sensors.size > 0 - end - end - - # EMS program: Lighting - program.addLine('Set hr_lighting = 0') - lightings_sensors.each do |lighting_sensors| - s = 'Set hr_lighting = hr_lighting' - lighting_sensors.each do |sensor| - s += " - #{sensor.name}" - end - program.addLine(s) if lighting_sensors.size > 0 - end - - # EMS program: Internal gains - program.addLine('Set hr_intgains = 0') - intgains_sensors.each do |intgain_sensors| - s = 'Set hr_intgains = hr_intgains' - intgain_sensors.each do |sensor| - s += " - #{sensor.name}" - end - program.addLine(s) if intgain_sensors.size > 0 - end - intgains_dhw_sensors.each do |sensor, vals| - off_loss, on_loss, rtf_sensor = vals - program.addLine("Set hr_intgains = hr_intgains + #{sensor.name} * (#{off_loss}*(1-#{rtf_sensor.name}) + #{on_loss}*#{rtf_sensor.name})") # Water heater tank losses to zone - end + program.addLine(s) + end + intgains_dhw_sensors.each do |sensor, vals| + off_loss, on_loss, rtf_sensor = vals + program.addLine("Set hr_intgains = hr_intgains + #{sensor.name} * (#{off_loss}*(1-#{rtf_sensor.name}) + #{on_loss}*#{rtf_sensor.name})") # Water heater tank losses to zone + end + if (not ducts_mix_loss_sensor.nil?) && (not ducts_mix_gain_sensor.nil?) + program.addLine("Set hr_ducts = hr_ducts + (#{ducts_mix_loss_sensor.name} - #{ducts_mix_gain_sensor.name})") + end + + # EMS program: Heating vs Cooling logic + program.addLine('Set htg_mode = 0') + program.addLine('Set clg_mode = 0') + program.addLine("If (#{htg_cond_load_sensors[unit].name} > 0)") # Assign hour to heating if heating load + program.addLine(" Set htg_mode = #{total_heat_load_serveds[unit]}") + program.addLine("ElseIf (#{clg_cond_load_sensors[unit].name} > 0)") # Assign hour to cooling if cooling load + program.addLine(" Set clg_mode = #{total_cool_load_serveds[unit]}") + program.addLine("ElseIf (#{@clg_ssn_sensor.name} > 0)") # No load, assign hour to cooling if in cooling season definition (Note: natural ventilation & whole house fan only operate during the cooling season) + program.addLine(" Set clg_mode = #{total_cool_load_serveds[unit]}") + program.addLine('Else') # No load, assign hour to heating if not in cooling season definition + program.addLine(" Set htg_mode = #{total_heat_load_serveds[unit]}") + program.addLine('EndIf') - # EMS program: Infiltration, Natural Ventilation, Mechanical Ventilation, Ducts - { infil_sensors => 'infil', - natvent_sensors => 'natvent', - whf_sensors => 'whf' }.each do |sensors, loadtype| - program.addLine("Set hr_#{loadtype} = 0") - s = "Set hr_#{loadtype} = hr_#{loadtype}" - sensors.each do |sensor| - if sensor.name.to_s.include? 'gain' - # FIXME: Workaround for https://github.com/NREL/EnergyPlus/issues/9934 - # Remove when the issue is resolved - if loadtype == 'infil' - s += " - (#{sensor.name} * 3600)" - else - s += " - #{sensor.name}" - end - elsif sensor.name.to_s.include? 'loss' - s += " + #{sensor.name}" + unit_multiplier = @hpxml_bldg.building_construction.number_of_units + [:htg, :clg].each do |mode| + if mode == :htg + sign = '' + else + sign = '-' end - end - program.addLine(s) if sensors.size > 0 - end - { mechvents_sensors => 'mechvent', - ducts_sensors => 'ducts' }.each do |all_sensors, loadtype| - program.addLine("Set hr_#{loadtype} = 0") - all_sensors.each do |sensors| - s = "Set hr_#{loadtype} = hr_#{loadtype}" - sensors.each do |sensor| - s += " - #{sensor.name}" + surf_names.each do |surf_name| + program.addLine("Set loads_#{mode}_#{surf_name} = loads_#{mode}_#{surf_name} + (#{sign}hr_#{surf_name} * #{mode}_mode * #{unit_multiplier})") + end + nonsurf_names.each do |nonsurf_name| + program.addLine("Set loads_#{mode}_#{nonsurf_name} = loads_#{mode}_#{nonsurf_name} + (#{sign}hr_#{nonsurf_name} * #{mode}_mode * #{unit_multiplier})") end - program.addLine(s) if sensors.size > 0 - end - end - if (not ducts_mix_loss_sensor.nil?) && (not ducts_mix_gain_sensor.nil?) - program.addLine("Set hr_ducts = hr_ducts + (#{ducts_mix_loss_sensor.name} - #{ducts_mix_gain_sensor.name})") - end - - # EMS program: Heating vs Cooling logic - program.addLine('Set htg_mode = 0') - program.addLine('Set clg_mode = 0') - program.addLine("If (#{liv_load_sensors[:htg].name} > 0)") # Assign hour to heating if heating load - program.addLine(" Set htg_mode = #{total_heat_load_served}") - program.addLine("ElseIf (#{liv_load_sensors[:clg].name} > 0)") # Assign hour to cooling if cooling load - program.addLine(" Set clg_mode = #{total_cool_load_served}") - program.addLine("ElseIf (#{@clg_ssn_sensor.name} > 0)") # No load, assign hour to cooling if in cooling season definition (Note: natural ventilation & whole house fan only operate during the cooling season) - program.addLine(" Set clg_mode = #{total_cool_load_served}") - program.addLine('Else') # No load, assign hour to heating if not in cooling season definition - program.addLine(" Set htg_mode = #{total_heat_load_served}") - program.addLine('EndIf') - - [:htg, :clg].each do |mode| - if mode == :htg - sign = '' - else - sign = '-' - end - surfaces_sensors.keys.each do |k| - program.addLine("Set loads_#{mode}_#{k} = #{sign}hr_#{k} * #{mode}_mode") - end - nonsurf_names.each do |nonsurf_name| - program.addLine("Set loads_#{mode}_#{nonsurf_name} = #{sign}hr_#{nonsurf_name} * #{mode}_mode") end end @@ -2415,7 +2626,7 @@ def self.add_component_loads_output(model, living_zone, liv_load_sensors, intgai program_calling_manager.addProgram(program) end - def self.set_output_files(model) + def set_output_files(model) oj = model.getOutputJSON oj.setOptionType('TimeSeriesAndTabular') oj.setOutputJSON(false) @@ -2423,6 +2634,7 @@ def self.set_output_files(model) ocf = model.getOutputControlFiles ocf.setOutputAUDIT(@debug) + ocf.setOutputCSV(@debug) ocf.setOutputBND(@debug) ocf.setOutputEIO(@debug) ocf.setOutputESO(@debug) @@ -2431,30 +2643,31 @@ def self.set_output_files(model) ocf.setOutputMTR(@debug) ocf.setOutputRDD(@debug) ocf.setOutputSHD(@debug) + ocf.setOutputCSV(@debug) ocf.setOutputSQLite(@debug) ocf.setOutputPerfLog(@debug) end - def self.add_ems_debug_output(model) + def add_ems_debug_output(model) oems = model.getOutputEnergyManagementSystem oems.setActuatorAvailabilityDictionaryReporting('Verbose') oems.setInternalVariableAvailabilityDictionaryReporting('Verbose') oems.setEMSRuntimeLanguageDebugOutputLevel('Verbose') end - def self.set_surface_interior(model, spaces, surface, hpxml_surface) + def set_surface_interior(model, spaces, surface, hpxml_surface) interior_adjacent_to = hpxml_surface.interior_adjacent_to if HPXML::conditioned_below_grade_locations.include? interior_adjacent_to - surface.setSpace(create_or_get_space(model, spaces, HPXML::LocationLivingSpace)) + surface.setSpace(create_or_get_space(model, spaces, HPXML::LocationConditionedSpace)) else surface.setSpace(create_or_get_space(model, spaces, interior_adjacent_to)) end end - def self.set_surface_exterior(model, spaces, surface, hpxml_surface) + def set_surface_exterior(model, spaces, surface, hpxml_surface) exterior_adjacent_to = hpxml_surface.exterior_adjacent_to is_adiabatic = hpxml_surface.is_adiabatic - if exterior_adjacent_to == HPXML::LocationOutside + if [HPXML::LocationOutside, HPXML::LocationManufacturedHomeUnderBelly].include? exterior_adjacent_to surface.setOutsideBoundaryCondition('Outdoors') elsif exterior_adjacent_to == HPXML::LocationGround surface.setOutsideBoundaryCondition('Foundation') @@ -2464,7 +2677,7 @@ def self.set_surface_exterior(model, spaces, surface, hpxml_surface) HPXML::LocationOtherNonFreezingSpace, HPXML::LocationOtherHousingUnit].include? exterior_adjacent_to set_surface_otherside_coefficients(surface, exterior_adjacent_to, model, spaces) elsif HPXML::conditioned_below_grade_locations.include? exterior_adjacent_to - adjacent_surface = surface.createAdjacentSurface(create_or_get_space(model, spaces, HPXML::LocationLivingSpace)).get + adjacent_surface = surface.createAdjacentSurface(create_or_get_space(model, spaces, HPXML::LocationConditionedSpace)).get adjacent_surface.additionalProperties.setFeature('SurfaceType', surface.additionalProperties.getFeatureAsString('SurfaceType').get) else adjacent_surface = surface.createAdjacentSurface(create_or_get_space(model, spaces, exterior_adjacent_to)).get @@ -2472,7 +2685,7 @@ def self.set_surface_exterior(model, spaces, surface, hpxml_surface) end end - def self.set_surface_otherside_coefficients(surface, exterior_adjacent_to, model, spaces) + def set_surface_otherside_coefficients(surface, exterior_adjacent_to, model, spaces) otherside_coeffs = nil model.getSurfacePropertyOtherSideCoefficientss.each do |c| next unless c.name.to_s == exterior_adjacent_to @@ -2493,7 +2706,7 @@ def self.set_surface_otherside_coefficients(surface, exterior_adjacent_to, model surface.setWindExposure('NoWind') end - def self.get_space_temperature_schedule(model, location, spaces) + def get_space_temperature_schedule(model, location, spaces) # Create outside boundary schedules to be actuated by EMS, # can be shared by any surface, duct adjacent to / located in those spaces @@ -2506,12 +2719,13 @@ def self.get_space_temperature_schedule(model, location, spaces) sch = OpenStudio::Model::ScheduleConstant.new(model) sch.setName(location) + sch.additionalProperties.setFeature('ObjectType', location) space_values = Geometry.get_temperature_scheduled_space_values(location) if location == HPXML::LocationOtherHeatedSpace # Create a sensor to get dynamic heating setpoint - htg_sch = spaces[HPXML::LocationLivingSpace].thermalZone.get.thermostatSetpointDualSetpoint.get.heatingSetpointTemperatureSchedule.get + htg_sch = spaces[HPXML::LocationConditionedSpace].thermalZone.get.thermostatSetpointDualSetpoint.get.heatingSetpointTemperatureSchedule.get sensor_htg_spt = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Schedule Value') sensor_htg_spt.setName('htg_spt') sensor_htg_spt.setKeyName(htg_sch.name.to_s) @@ -2527,7 +2741,7 @@ def self.get_space_temperature_schedule(model, location, spaces) if space_values[:indoor_weight] > 0 sensor_ia = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Air Temperature') sensor_ia.setName('cond_zone_temp') - sensor_ia.setKeyName(spaces[HPXML::LocationLivingSpace].thermalZone.get.name.to_s) + sensor_ia.setKeyName(spaces[HPXML::LocationConditionedSpace].thermalZone.get.name.to_s) end if space_values[:outdoor_weight] > 0 @@ -2578,7 +2792,7 @@ def self.get_space_temperature_schedule(model, location, spaces) # Returns an OS:Space, or temperature OS:Schedule for a MF space, or nil if outside # Should be called when the object's energy use is sensitive to ambient temperature # (e.g., water heaters and ducts). - def self.get_space_or_schedule_from_location(location, model, spaces) + def get_space_or_schedule_from_location(location, model, spaces) return if [HPXML::LocationOtherExterior, HPXML::LocationOutside, HPXML::LocationRoofDeck].include? location @@ -2603,7 +2817,7 @@ def self.get_space_or_schedule_from_location(location, model, spaces) # Returns an OS:Space, or nil if a MF space or outside # Should be called when the object's energy use is NOT sensitive to ambient temperature # (e.g., appliances). - def self.get_space_from_location(location, spaces) + def get_space_from_location(location, spaces) return if [HPXML::LocationOutside, HPXML::LocationOtherHeatedSpace, HPXML::LocationOtherHousingUnit, @@ -2611,13 +2825,13 @@ def self.get_space_from_location(location, spaces) HPXML::LocationOtherNonFreezingSpace].include? location if HPXML::conditioned_locations.include? location - location = HPXML::LocationLivingSpace + location = HPXML::LocationConditionedSpace end return spaces[location] end - def self.set_subsurface_exterior(surface, spaces, model, hpxml_surface) + def set_subsurface_exterior(surface, spaces, model, hpxml_surface) # Set its parent surface outside boundary condition, which will be also applied to subsurfaces through OS # The parent surface is entirely comprised of the subsurface. @@ -2629,36 +2843,25 @@ def self.set_subsurface_exterior(surface, spaces, model, hpxml_surface) end end - def self.get_kiva_instances(fnd_walls, slabs) - # Identify unique Kiva foundations that are required. - kiva_fnd_walls = [] - fnd_walls.each do |foundation_wall| - next unless foundation_wall.is_exterior - - kiva_fnd_walls << foundation_wall - end - if kiva_fnd_walls.empty? # Handle slab foundation type - kiva_fnd_walls << nil - end - - kiva_slabs = slabs - - return kiva_fnd_walls.product(kiva_slabs) - end - - def self.set_foundation_and_walls_top() + def set_foundation_and_walls_top() @foundation_top = 0 - @hpxml.foundation_walls.each do |foundation_wall| + @hpxml_bldg.floors.each do |floor| + # Keeping the floor at ground level for ASHRAE 140 tests yields the expected results + if floor.is_floor && floor.is_exterior && !@apply_ashrae140_assumptions + @foundation_top = 2.0 + end + end + @hpxml_bldg.foundation_walls.each do |foundation_wall| top = -1 * foundation_wall.depth_below_grade + foundation_wall.height @foundation_top = top if top > @foundation_top end - @walls_top = @foundation_top + 8.0 * @ncfl_ag + @walls_top = @foundation_top + @hpxml_bldg.building_construction.average_ceiling_height * @ncfl_ag end - def self.set_heating_and_cooling_seasons() - return if @hpxml.hvac_controls.size == 0 + def set_heating_and_cooling_seasons() + return if @hpxml_bldg.hvac_controls.size == 0 - hvac_control = @hpxml.hvac_controls[0] + hvac_control = @hpxml_bldg.hvac_controls[0] htg_start_month = hvac_control.seasons_heating_begin_month htg_start_day = hvac_control.seasons_heating_begin_day @@ -2669,8 +2872,8 @@ def self.set_heating_and_cooling_seasons() clg_end_month = hvac_control.seasons_cooling_end_month clg_end_day = hvac_control.seasons_cooling_end_day - @heating_days = Schedule.get_daily_season(@hpxml.header.sim_calendar_year, htg_start_month, htg_start_day, htg_end_month, htg_end_day) - @cooling_days = Schedule.get_daily_season(@hpxml.header.sim_calendar_year, clg_start_month, clg_start_day, clg_end_month, clg_end_day) + @heating_days = Schedule.get_daily_season(@hpxml_header.sim_calendar_year, htg_start_month, htg_start_day, htg_end_month, htg_end_day) + @cooling_days = Schedule.get_daily_season(@hpxml_header.sim_calendar_year, clg_start_month, clg_start_day, clg_end_month, clg_end_day) end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml index d9160397..44b489b8 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml @@ -1,10 +1,10 @@ - 3.0 + 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 59be9be7-88f6-4998-8ad8-f7f64685c765 - 20230522T164611Z + 6d2dc12a-bac9-4979-a4db-a4172c12a591 + 2023-11-27T16:49:25Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -87,7 +87,7 @@ building_id BuildingID - The ID of the HPXML Building. Only required if there are multiple Building elements in the HPXML file. + The ID of the HPXML Building. Only required if there are multiple Building elements in the HPXML file. Use 'ALL' to run all the HPXML Buildings (dwelling units) of a multifamily building in a single model. String false false @@ -122,34 +122,63 @@ - generator.rb + README.md + md + readme + A4165C6F + + + README.md.erb + erb + readmeerb + 513F28E9 + + + + OpenStudio + 3.3.0 + 3.3.0 + + measure.rb + rb + script + 78A58FBA + + + airflow.rb rb resource - FC0A4F2E + 58EDCD0B - util.rb + battery.rb rb - test - D22025B3 + resource + 3B7B4DDF - data/ashrae_622_wsf.csv - csv + constants.rb + rb resource - 308F75BA + E28C712B - data/climate_zones.csv + constructions.rb + rb + resource + D28BD90F + + + data/Xing_okstate_0664D_13659_Table_A-3.csv csv resource - 63C6A1E2 + 50B7055C - minitest_helper.rb - rb + data/ashrae_622_wsf.csv + csv resource - CDB0A906 + 308F75BA data/cambium/LRMER_95DecarbBy2035.csv @@ -182,154 +211,160 @@ 4C7D519B - schedule_files/setpoints.csv - csv + data/cambium/README.md + md resource - 706A63BC + FC171B98 - schedule_files/setpoints-10-mins.csv + data/climate_zones.csv csv resource - BC2195A6 + 63C6A1E2 - schedule_files/setpoints-cooling-only.csv + data/unavailable_periods.csv csv resource - 7465D8DD + 1E3D66E6 - schedule_files/setpoints-heating-only.csv - csv + energyplus.rb + rb resource - BD935921 + 801A6A26 - schedule_files/setpoints-daily-schedules.csv - csv + generator.rb + rb resource - A60258DE + C0DD8C33 - schedule_files/setpoints-daily-setbacks.csv - csv + geometry.rb + rb resource - 74292B8C + 866708CF - schedule_files/water-heater-operating-modes.csv - csv + hotwater_appliances.rb + rb resource - 86F45903 + 668B8044 - schedule_files/water-heater-setpoints-10-mins.csv - csv + hpxml.rb + rb resource - F9C90051 + 20268ABE - schedule_files/water-heater-setpoints.csv - csv + hpxml_defaults.rb + rb resource - 2DFF87CD + 9C9F94F7 - data/cambium/README.md + hpxml_schema/HPXML.xsd + xsd + resource + BB0FF5BB + + + hpxml_schema/README.md md resource - FC171B98 + D05DFB8A - simcontrols.rb - rb + hpxml_schematron/EPvalidator.xml + xml resource - 3AFD26FF + F76DC990 - test_location.rb - rb - test - 03FE784E + hpxml_schematron/iso-schematron.xsd + xsd + resource + 2785B05C - materials.rb + hvac.rb rb resource - 24DCB986 + B014F262 - test_simcontrols.rb + hvac_sizing.rb rb - test - CF8094A4 + resource + 00BE0F0C - hpxml_schematron/iso-schematron.xsd - xsd + lighting.rb + rb resource - 2785B05C + A109B2B5 - utility_bills.rb + location.rb rb resource - D605D60B + 03FF5192 - schedule_files/battery.csv - csv + materials.rb + rb resource - C1350909 + 24DCB986 - test_battery.rb + meta_measure.rb rb - test - E6B6B63E + resource + 17DD9336 - pv.rb + minitest_helper.rb rb resource - 2D1832F9 + CDB0A906 - test_pv.rb + misc_loads.rb rb - test - 63F44A56 + resource + 7D800940 - util.rb + output.rb rb resource - F3DBC2BD + 7AC7F779 - hpxml_schema/README.md - md + psychrometrics.rb + rb resource - D05DFB8A + 203B4A64 - energyplus.rb + pv.rb rb resource - 788F897B + B4742C47 - constants.rb - rb + schedule_files/battery.csv + csv resource - D202A548 + C1350909 - unit_conversions.rb - rb + schedule_files/occupancy-non-stochastic.csv + csv resource - 6D8BA8E5 + BB0B9176 schedule_files/occupancy-stochastic-10-mins.csv @@ -337,6 +372,12 @@ resource D4373DC9 + + schedule_files/occupancy-stochastic-30-mins.csv + csv + resource + D4373DC9 + schedule_files/occupancy-stochastic.csv csv @@ -344,243 +385,256 @@ DEED74EA - schedule_files/occupancy-non-stochastic.csv + schedule_files/occupancy-stochastic_2.csv csv resource - 1362DD15 + 7E648862 - output.rb - rb + schedule_files/occupancy-stochastic_3.csv + csv resource - 9E02B1C4 + 4DCFB9A0 - constructions.rb - rb + schedule_files/occupancy-stochastic_4.csv + csv resource - F6E89CBA + 632C7CCF - location.rb - rb + schedule_files/occupancy-stochastic_5.csv + csv resource - 8786A75C + 644329D0 - data/unavailable_periods.csv + schedule_files/occupancy-stochastic_6.csv csv resource - EEB2FB66 + F4CD8AA3 - test_water_heater.rb - rb - test - C9C9340E + schedule_files/setpoints-10-mins.csv + csv + resource + BC2195A6 - test_enclosure.rb - rb - test - 1929A0E1 + schedule_files/setpoints-cooling-only.csv + csv + resource + 7465D8DD - test_weather.rb - rb - test - 5B815DA9 + schedule_files/setpoints-daily-schedules.csv + csv + resource + A60258DE - test_lighting.rb - rb - test - 16756D02 + schedule_files/setpoints-daily-setbacks.csv + csv + resource + 74292B8C - meta_measure.rb - rb + schedule_files/setpoints-heating-only.csv + csv resource - 26D01154 + BD935921 - test_miscloads.rb - rb - test - 5C446C35 + schedule_files/setpoints.csv + csv + resource + 706A63BC - test_hotwater_appliance.rb - rb - test - F36FD60C + schedule_files/water-heater-operating-modes.csv + csv + resource + 86F45903 - battery.rb - rb + schedule_files/water-heater-setpoints-10-mins.csv + csv resource - EFBD06BD + F9C90051 - xmlvalidator.rb - rb + schedule_files/water-heater-setpoints.csv + csv resource - CFCD83CD + 2DFF87CD - test_schedules.rb + schedules.rb rb - test - 414F4C13 + resource + 62152E07 - hpxml_schema/HPXML.xsd - xsd + simcontrols.rb + rb resource - E0A455E1 + DA4D108D - test_airflow.rb + unit_conversions.rb rb - test - 57772CD3 + resource + 6D8BA8E5 - xmlhelper.rb + util.rb rb resource - 17D30902 + 6D409347 - test_hvac_sizing.rb + utility_bills.rb rb - test - D6D366C0 + resource + 07DB4C49 - test_hvac.rb + version.rb rb - test - E42B9F8E + resource + 6A05B3F0 - misc_loads.rb + waterheater.rb rb resource - 581B499D + 73019632 - lighting.rb + weather.rb rb resource - CA310A8D + 6E12B2EB - hotwater_appliances.rb + xmlhelper.rb rb resource - D1EC2F7F + 17D30902 - schedules.rb + xmlvalidator.rb rb resource - 4B208625 + 84D0E4E1 - airflow.rb + test_airflow.rb rb - resource - BCD3D2D4 + test + 2C8BEE99 - test_validation.rb + test_battery.rb rb test - 84F9B6C3 + B10A6D1C - hpxml_schematron/EPvalidator.xml - xml - resource - 34E29E03 + test_defaults.rb + rb + test + C42C6EE4 - hpxml.rb + test_enclosure.rb rb - resource - 0D093BA1 + test + 833E46A5 - test_defaults.rb + test_generator.rb rb test - 9F95A6CF + C4F6CF9B - geometry.rb + test_hotwater_appliance.rb rb - resource - 8B587D3F + test + F3ED25B6 - version.rb + test_hvac.rb rb - resource - 0B7B2B30 + test + 19EE9DA5 - test_generator.rb + test_hvac_sizing.rb rb test - 9641B04E + E2E504ED - waterheater.rb + test_lighting.rb rb - resource - 0FD0919B + test + 6C3A766C - weather.rb + test_location.rb rb - resource - 04DDB59E + test + 663B10FB - hvac_sizing.rb + test_miscloads.rb rb - resource - E6E07CB9 + test + 8B6BE984 - psychrometrics.rb + test_pv.rb rb - resource - F5311570 + test + DB1DEFCF - - OpenStudio - 3.3.0 - 3.3.0 - - measure.rb + test_schedules.rb rb - script - 2E1DFFAC + test + 19948562 - hpxml_defaults.rb + test_simcontrols.rb rb - resource - 738A5911 + test + 800361DB - hvac.rb + test_validation.rb rb - resource - F8084B3A + test + C1EF0839 + + + test_water_heater.rb + rb + test + 3181EB84 + + + test_weather.rb + rb + test + 8CA4439B + + + util.rb + rb + test + D22025B3 diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb index d20450fb..bd5bb716 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb @@ -1,10 +1,15 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class Airflow # Constants InfilPressureExponent = 0.65 - def self.apply(model, runner, weather, spaces, hpxml, cfa, nbeds, + def self.apply(model, runner, weather, spaces, hpxml_header, hpxml_bldg, cfa, nbeds, ncfl_ag, duct_systems, airloop_map, clg_ssn_sensor, eri_version, frac_windows_operable, apply_ashrae140_assumptions, schedules_file, unavailable_periods, hvac_availability_sensor) @@ -13,16 +18,16 @@ def self.apply(model, runner, weather, spaces, hpxml, cfa, nbeds, @runner = runner @spaces = spaces - @year = hpxml.header.sim_calendar_year - @living_space = spaces[HPXML::LocationLivingSpace] - @living_zone = @living_space.thermalZone.get + @year = hpxml_header.sim_calendar_year + @conditioned_space = spaces[HPXML::LocationConditionedSpace] + @conditioned_zone = @conditioned_space.thermalZone.get @nbeds = nbeds @ncfl_ag = ncfl_ag @eri_version = eri_version @apply_ashrae140_assumptions = apply_ashrae140_assumptions @cfa = cfa - @cooking_range_in_cond_space = hpxml.cooking_ranges.empty? ? true : HPXML::conditioned_locations_this_unit.include?(hpxml.cooking_ranges[0].location) - @clothes_dryer_in_cond_space = hpxml.clothes_dryers.empty? ? true : HPXML::conditioned_locations_this_unit.include?(hpxml.clothes_dryers[0].location) + @cooking_range_in_cond_space = hpxml_bldg.cooking_ranges.empty? ? true : HPXML::conditioned_locations_this_unit.include?(hpxml_bldg.cooking_ranges[0].location) + @clothes_dryer_in_cond_space = hpxml_bldg.clothes_dryers.empty? ? true : HPXML::conditioned_locations_this_unit.include?(hpxml_bldg.clothes_dryers[0].location) @hvac_availability_sensor = hvac_availability_sensor # Global sensors @@ -34,19 +39,19 @@ def self.apply(model, runner, weather, spaces, hpxml, cfa, nbeds, @wout_sensor.setName('out wt s') @win_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Air Humidity Ratio') - @win_sensor.setName("#{Constants.ObjectNameAirflow} win s") - @win_sensor.setKeyName(@living_zone.name.to_s) + @win_sensor.setName('win s') + @win_sensor.setKeyName(@conditioned_zone.name.to_s) @vwind_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Site Wind Speed') @vwind_sensor.setName('site vw s') @tin_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Mean Air Temperature') - @tin_sensor.setName("#{Constants.ObjectNameAirflow} tin s") - @tin_sensor.setKeyName(@living_zone.name.to_s) + @tin_sensor.setName('tin s') + @tin_sensor.setKeyName(@conditioned_zone.name.to_s) @tout_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Outdoor Air Drybulb Temperature') - @tout_sensor.setName("#{Constants.ObjectNameAirflow} tt s") - @tout_sensor.setKeyName(@living_zone.name.to_s) + @tout_sensor.setName('tout s') + @tout_sensor.setKeyName(@conditioned_zone.name.to_s) @adiabatic_const = nil @@ -56,7 +61,7 @@ def self.apply(model, runner, weather, spaces, hpxml, cfa, nbeds, vent_fans_bath = [] vent_fans_whf = [] vent_fans_cfis_suppl = [] - hpxml.ventilation_fans.each do |vent_fan| + hpxml_bldg.ventilation_fans.each do |vent_fan| next unless vent_fan.hours_in_operation.nil? || vent_fan.hours_in_operation > 0 if vent_fan.used_for_whole_building_ventilation @@ -77,7 +82,7 @@ def self.apply(model, runner, weather, spaces, hpxml, cfa, nbeds, end # Vented clothes dryers - vented_dryers = hpxml.clothes_dryers.select { |cd| cd.is_vented && cd.vented_flow_rate.to_f > 0 } + vented_dryers = hpxml_bldg.clothes_dryers.select { |cd| cd.is_vented && cd.vented_flow_rate.to_f > 0 } # Initialization initialize_cfis(model, vent_fans_mech, airloop_map, unavailable_periods) @@ -91,31 +96,31 @@ def self.apply(model, runner, weather, spaces, hpxml, cfa, nbeds, # Apply ducts duct_systems.each do |ducts, object| - apply_ducts(model, ducts, object, vent_fans_mech) + apply_ducts(model, ducts, object, vent_fans_mech, hpxml_bldg.building_construction.number_of_units) end # Apply infiltration/ventilation - set_wind_speed_correction(model, hpxml.site) - window_area = hpxml.windows.map { |w| w.area }.sum(0.0) + set_wind_speed_correction(model, hpxml_bldg.site) + window_area = hpxml_bldg.windows.map { |w| w.area }.sum(0.0) open_window_area = window_area * frac_windows_operable * 0.5 * 0.2 # Assume A) 50% of the area of an operable window can be open, and B) 20% of openable window area is actually open - vented_attic = hpxml.attics.find { |attic| attic.attic_type == HPXML::AtticTypeVented } - vented_crawl = hpxml.foundations.find { |foundation| foundation.foundation_type == HPXML::FoundationTypeCrawlspaceVented } + vented_attic = hpxml_bldg.attics.find { |attic| attic.attic_type == HPXML::AtticTypeVented } + vented_crawl = hpxml_bldg.foundations.find { |foundation| foundation.foundation_type == HPXML::FoundationTypeCrawlspaceVented } - _sla, living_ach50, nach, infil_volume, infil_height, a_ext = get_values_from_air_infiltration_measurements(hpxml, cfa, weather) + _sla, conditioned_ach50, nach, infil_volume, infil_height, a_ext = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) if @apply_ashrae140_assumptions - living_const_ach = nach - living_ach50 = nil + conditioned_const_ach = nach + conditioned_ach50 = nil end - living_const_ach *= a_ext unless living_const_ach.nil? - living_ach50 *= a_ext unless living_ach50.nil? - has_flue_chimney_in_cond_space = hpxml.air_infiltration.has_flue_or_chimney_in_conditioned_space + conditioned_const_ach *= a_ext unless conditioned_const_ach.nil? + conditioned_ach50 *= a_ext unless conditioned_ach50.nil? + has_flue_chimney_in_cond_space = hpxml_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space - apply_natural_ventilation_and_whole_house_fan(model, hpxml.site, vent_fans_whf, open_window_area, clg_ssn_sensor, hpxml.header.natvent_days_per_week, + apply_natural_ventilation_and_whole_house_fan(model, hpxml_bldg.site, vent_fans_whf, open_window_area, clg_ssn_sensor, hpxml_bldg.header.natvent_days_per_week, infil_volume, infil_height, unavailable_periods) - apply_infiltration_and_ventilation_fans(model, weather, hpxml.site, vent_fans_mech, vent_fans_kitchen, vent_fans_bath, vented_dryers, - has_flue_chimney_in_cond_space, living_ach50, living_const_ach, infil_volume, infil_height, + apply_infiltration_and_ventilation_fans(model, weather, hpxml_bldg.site, vent_fans_mech, vent_fans_kitchen, vent_fans_bath, vented_dryers, + has_flue_chimney_in_cond_space, conditioned_ach50, conditioned_const_ach, infil_volume, infil_height, vented_attic, vented_crawl, clg_ssn_sensor, schedules_file, vent_fans_cfis_suppl, unavailable_periods) end @@ -171,13 +176,13 @@ def self.get_infiltration_measurement_of_interest(infil_measurements) fail 'Unexpected error.' end - def self.get_values_from_air_infiltration_measurements(hpxml, cfa, weather) - measurement = get_infiltration_measurement_of_interest(hpxml.air_infiltration_measurements) + def self.get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) + measurement = get_infiltration_measurement_of_interest(hpxml_bldg.air_infiltration_measurements) volume = measurement.infiltration_volume height = measurement.infiltration_height if height.nil? - height = hpxml.inferred_infiltration_height(volume) + height = hpxml_bldg.inferred_infiltration_height(volume) end sla, ach50, nach = nil @@ -214,9 +219,9 @@ def self.get_values_from_air_infiltration_measurements(hpxml, cfa, weather) return sla, ach50, nach, volume, height, a_ext end - def self.get_default_mech_vent_flow_rate(hpxml, vent_fan, weather, cfa, nbeds) + def self.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds) # Calculates Qfan cfm requirement per ASHRAE 62.2-2019 - sla, _ach50, _nach, _volume, height, a_ext = get_values_from_air_infiltration_measurements(hpxml, cfa, weather) + sla, _ach50, _nach, _volume, height, a_ext = get_values_from_air_infiltration_measurements(hpxml_bldg, cfa, weather) nl = get_infiltration_NL_from_SLA(sla, height) q_inf = nl * weather.data.WSF * cfa / 7.3 # Effective annual average infiltration rate, cfm, eq. 4.5a @@ -341,8 +346,8 @@ def self.apply_natural_ventilation_and_whole_house_fan(model, site, vent_fans_wh end # Sensors - if @living_zone.thermostatSetpointDualSetpoint.is_initialized - thermostat = @living_zone.thermostatSetpointDualSetpoint.get + if @conditioned_zone.thermostatSetpointDualSetpoint.is_initialized + thermostat = @conditioned_zone.thermostatSetpointDualSetpoint.get htg_sp_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Schedule Value') htg_sp_sensor.setName('htg sp s') @@ -357,23 +362,25 @@ def self.apply_natural_ventilation_and_whole_house_fan(model, site, vent_fans_wh nv_flow = OpenStudio::Model::SpaceInfiltrationDesignFlowRate.new(model) nv_flow.setName(Constants.ObjectNameNaturalVentilation + ' flow') nv_flow.setSchedule(model.alwaysOnDiscreteSchedule) - nv_flow.setSpace(@living_space) + nv_flow.setSpace(@conditioned_space) nv_flow_actuator = OpenStudio::Model::EnergyManagementSystemActuator.new(nv_flow, *EPlus::EMSActuatorZoneInfiltrationFlowRate) nv_flow_actuator.setName("#{nv_flow.name} act") + nv_flow.additionalProperties.setFeature('ObjectType', Constants.ObjectNameNaturalVentilation) whf_flow = OpenStudio::Model::SpaceInfiltrationDesignFlowRate.new(model) whf_flow.setName(Constants.ObjectNameWholeHouseFan + ' flow') whf_flow.setSchedule(model.alwaysOnDiscreteSchedule) - whf_flow.setSpace(@living_space) + whf_flow.setSpace(@conditioned_space) whf_flow_actuator = OpenStudio::Model::EnergyManagementSystemActuator.new(whf_flow, *EPlus::EMSActuatorZoneInfiltrationFlowRate) whf_flow_actuator.setName("#{whf_flow.name} act") + whf_flow.additionalProperties.setFeature('ObjectType', Constants.ObjectNameWholeHouseFan) # Electric Equipment (for whole house fan electricity consumption) whf_equip_def = OpenStudio::Model::ElectricEquipmentDefinition.new(model) whf_equip_def.setName(Constants.ObjectNameWholeHouseFan) whf_equip = OpenStudio::Model::ElectricEquipment.new(whf_equip_def) whf_equip.setName(Constants.ObjectNameWholeHouseFan) - whf_equip.setSpace(@living_space) # no heat gain, so assign the equipment to an arbitrary space + whf_equip.setSpace(@conditioned_space) # no heat gain, so assign the equipment to an arbitrary space whf_equip_def.setFractionRadiant(0) whf_equip_def.setFractionLatent(0) whf_equip_def.setFractionLost(1) @@ -390,12 +397,12 @@ def self.apply_natural_ventilation_and_whole_house_fan(model, site, vent_fans_wh whf_zone = @spaces[HPXML::LocationAtticUnvented].thermalZone.get end if not whf_zone.nil? - # Air from living to WHF zone (attic) + # Air from conditioned space to WHF zone (attic) zone_mixing = OpenStudio::Model::ZoneMixing.new(whf_zone) zone_mixing.setName("#{Constants.ObjectNameWholeHouseFan} mix") - zone_mixing.setSourceZone(@living_zone) - liv_to_zone_flow_rate_actuator = OpenStudio::Model::EnergyManagementSystemActuator.new(zone_mixing, *EPlus::EMSActuatorZoneMixingFlowRate) - liv_to_zone_flow_rate_actuator.setName("#{zone_mixing.name} act") + zone_mixing.setSourceZone(@conditioned_zone) + cond_to_zone_flow_rate_actuator = OpenStudio::Model::EnergyManagementSystemActuator.new(zone_mixing, *EPlus::EMSActuatorZoneMixingFlowRate) + cond_to_zone_flow_rate_actuator.setName("#{zone_mixing.name} act") end area = 0.6 * open_window_area # ft^2, for Sherman-Grimsrud @@ -403,12 +410,13 @@ def self.apply_natural_ventilation_and_whole_house_fan(model, site, vent_fans_wh max_flow_rate = max_rate * infil_volume / UnitConversions.convert(1.0, 'hr', 'min') neutral_level = 0.5 hor_lk_frac = 0.0 - c_w, c_s = calc_wind_stack_coeffs(site, hor_lk_frac, neutral_level, @living_space, infil_height) + c_w, c_s = calc_wind_stack_coeffs(site, hor_lk_frac, neutral_level, @conditioned_space, infil_height) max_oa_hr = 0.0115 # From BA HSP max_oa_rh = 0.7 # From BA HSP # Program vent_program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) + vent_program.additionalProperties.setFeature('ObjectType', Constants.ObjectNameNaturalVentilation) vent_program.setName(Constants.ObjectNameNaturalVentilation + ' program') vent_program.addLine("Set Tin = #{@tin_sensor.name}") vent_program.addLine("Set Tout = #{@tout_sensor.name}") @@ -430,7 +438,7 @@ def self.apply_natural_ventilation_and_whole_house_fan(model, site, vent_fans_wh vent_program.addLine("Set ClgSsnAvail = #{nv_clg_ssn_sensor.name}") vent_program.addLine("Set #{nv_flow_actuator.name} = 0") # Init vent_program.addLine("Set #{whf_flow_actuator.name} = 0") # Init - vent_program.addLine("Set #{liv_to_zone_flow_rate_actuator.name} = 0") unless whf_zone.nil? # Init + vent_program.addLine("Set #{cond_to_zone_flow_rate_actuator.name} = 0") unless whf_zone.nil? # Init vent_program.addLine("Set #{whf_elec_actuator.name} = 0") # Init infil_constraints = 'If ((Wout < MaxHR) && (Phiout < MaxRH) && (Tin > Tout) && (Tin > Tnvsp) && (ClgSsnAvail > 0))' if not @hvac_availability_sensor.nil? @@ -449,7 +457,7 @@ def self.apply_natural_ventilation_and_whole_house_fan(model, site, vent_fans_wh vent_program.addLine(' Set Adj = (@Max Adj 0)') vent_program.addLine(' If (WHF_Flow > 0)') # If available, prioritize whole house fan vent_program.addLine(" Set #{whf_flow_actuator.name} = WHF_Flow*Adj") - vent_program.addLine(" Set #{liv_to_zone_flow_rate_actuator.name} = WHF_Flow*Adj") unless whf_zone.nil? + vent_program.addLine(" Set #{cond_to_zone_flow_rate_actuator.name} = WHF_Flow*Adj") unless whf_zone.nil? vent_program.addLine(' Set WHF_W = 0') vent_fans_whf.each do |vent_whf| vent_program.addLine(" Set WHF_W = WHF_W + #{vent_whf.fan_power} * #{whf_avail_sensors[vent_whf.id].name}") @@ -472,6 +480,19 @@ def self.apply_natural_ventilation_and_whole_house_fan(model, site, vent_fans_wh manager.setName("#{vent_program.name} calling manager") manager.setCallingPoint('BeginZoneTimestepAfterInitHeatBalance') manager.addProgram(vent_program) + + create_timeseries_flowrate_ems_output_var(model, nv_flow_actuator.name.to_s, vent_program) + create_timeseries_flowrate_ems_output_var(model, whf_flow_actuator.name.to_s, vent_program) + end + + def self.create_timeseries_flowrate_ems_output_var(model, ems_var_name, ems_program) + # This is only used to report timeseries flow rates when requested + ems_output_var = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, ems_var_name) + ems_output_var.setName("#{ems_var_name}_timeseries_outvar") + ems_output_var.setTypeOfDataInVariable('Averaged') + ems_output_var.setUpdateFrequency('ZoneTimestep') + ems_output_var.setEMSProgramOrSubroutineName(ems_program) + ems_output_var.setUnits('m^/s') end def self.create_nv_and_whf_avail_sch(model, obj_name, num_days_per_week, unavailable_periods = []) @@ -499,9 +520,10 @@ def self.create_nv_and_whf_avail_sch(model, obj_name, num_days_per_week, unavail return avail_sch end - def self.create_return_air_duct_zone(model, loop_name) + def self.create_return_air_duct_zone(model, loop_name, unit_multiplier) # Create the return air plenum zone, space ra_duct_zone = OpenStudio::Model::ThermalZone.new(model) + ra_duct_zone.setMultiplier(unit_multiplier) ra_duct_zone.setName(loop_name + ' ret air zone') ra_duct_zone.setVolume(1.0) @@ -539,7 +561,7 @@ def self.create_return_air_duct_zone(model, loop_name) return ra_duct_zone end - def self.create_other_equipment_object_and_actuator(model:, name:, space:, frac_lat:, frac_lost:, hpxml_fuel_type: nil, end_use: nil, is_duct_load_for_report: nil) + def self.create_other_equipment_object_and_actuator(model:, name:, space:, frac_lat:, frac_lost:, hpxml_fuel_type: nil, end_use: nil) other_equip_def = OpenStudio::Model::OtherEquipmentDefinition.new(model) other_equip_def.setName("#{name} equip") other_equip = OpenStudio::Model::OtherEquipment.new(other_equip_def) @@ -559,9 +581,6 @@ def self.create_other_equipment_object_and_actuator(model:, name:, space:, frac_ other_equip_def.setFractionRadiant(0.0) actuator = OpenStudio::Model::EnergyManagementSystemActuator.new(other_equip, *EPlus::EMSActuatorOtherEquipmentPower, other_equip.space.get) actuator.setName("#{other_equip.name} act") - if not is_duct_load_for_report.nil? - other_equip.additionalProperties.setFeature(Constants.IsDuctLoadForReport, is_duct_load_for_report) - end return actuator end @@ -654,7 +673,7 @@ def self.initialize_fan_objects(model, osm_object) end end - def self.apply_ducts(model, ducts, object, vent_fans_mech) + def self.apply_ducts(model, ducts, object, vent_fans_mech, unit_multiplier) ducts.each do |duct| if not duct.loc_schedule.nil? # Pass MF space temperature schedule name @@ -674,16 +693,16 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) # Most system types # Set the return plenum - ra_duct_zone = create_return_air_duct_zone(model, object.name.to_s) + ra_duct_zone = create_return_air_duct_zone(model, object.name.to_s, unit_multiplier) ra_duct_space = ra_duct_zone.spaces[0] - @living_zone.setReturnPlenum(ra_duct_zone, object) + @conditioned_zone.setReturnPlenum(ra_duct_zone, object) inlet_node = object.demandInletNode elsif object.is_a? OpenStudio::Model::ZoneHVACFourPipeFanCoil # Ducted fan coil # No return plenum - ra_duct_space = @living_space + ra_duct_space = @conditioned_space inlet_node = object.inletNode.get end @@ -714,33 +733,33 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) ah_wout_sensor.setName("#{ah_wout_var.name} s") ah_wout_sensor.setKeyName(inlet_node.name.to_s) - living_zone_return_air_node = nil - @living_zone.returnAirModelObjects.each do |return_air_model_obj| + conditioned_zone_return_air_node = nil + @conditioned_zone.returnAirModelObjects.each do |return_air_model_obj| next if return_air_model_obj.to_Node.get.airLoopHVAC.get != object - living_zone_return_air_node = return_air_model_obj + conditioned_zone_return_air_node = return_air_model_obj end # Return air temperature ra_t_var = OpenStudio::Model::EnergyManagementSystemGlobalVariable.new(model, "#{object.name} RA T".gsub(' ', '_')) - if not living_zone_return_air_node.nil? + if not conditioned_zone_return_air_node.nil? ra_t_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'System Node Temperature') ra_t_sensor.setName("#{ra_t_var.name} s") - ra_t_sensor.setKeyName(living_zone_return_air_node.name.to_s) + ra_t_sensor.setKeyName(conditioned_zone_return_air_node.name.to_s) else ra_t_sensor = @tin_sensor end # Return air humidity ratio ra_w_var = OpenStudio::Model::EnergyManagementSystemGlobalVariable.new(model, "#{object.name} Ra W".gsub(' ', '_')) - if not living_zone_return_air_node.nil? + if not conditioned_zone_return_air_node.nil? ra_w_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'System Node Humidity Ratio') ra_w_sensor.setName("#{ra_w_var.name} s") - ra_w_sensor.setKeyName(living_zone_return_air_node.name.to_s) + ra_w_sensor.setKeyName(conditioned_zone_return_air_node.name.to_s) else ra_w_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Mean Air Humidity Ratio') ra_w_sensor.setName("#{ra_w_var.name} s") - ra_w_sensor.setKeyName(@living_zone.name.to_s) + ra_w_sensor.setKeyName(@conditioned_zone.name.to_s) end # Get duct located zone or ambient temperature schedule objects @@ -748,7 +767,7 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) # Create one duct program for each duct location zone duct_locations.each_with_index do |duct_location, i| - next if (not duct_location.nil?) && (duct_location.name.to_s == @living_zone.name.to_s) + next if (not duct_location.nil?) && (duct_location.name.to_s == @conditioned_zone.name.to_s) object_name_idx = "#{object.name}_#{i}" @@ -784,7 +803,7 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) dz_w = "#{dz_w_sensor.name}" elsif duct_location.name.to_s == HPXML::LocationOtherHousingUnit dz_w_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Mean Air Humidity Ratio') - dz_w_sensor.setKeyName(@living_zone.name.to_s) + dz_w_sensor.setKeyName(@conditioned_zone.name.to_s) dz_w_sensor.setName("#{dz_w_var.name} s") dz_w = "#{dz_w_sensor.name}" else @@ -792,7 +811,7 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) dz_w_sensor1.setName("#{dz_w_var.name} s 1") dz_w_sensor2 = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Mean Air Humidity Ratio') dz_w_sensor2.setName("#{dz_w_var.name} s 2") - dz_w_sensor2.setKeyName(@living_zone.name.to_s) + dz_w_sensor2.setKeyName(@conditioned_zone.name.to_s) dz_w = "(#{dz_w_sensor1.name} + #{dz_w_sensor2.name}) / 2" end else @@ -814,47 +833,47 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) end # Other equipment objects to cancel out the supply air leakage directly into the return plenum - equip_act_infos << ['supply_sens_lk_to_liv', 'SupSensLkToLv', true, @living_space, 0.0, f_regain] - equip_act_infos << ['supply_lat_lk_to_liv', 'SupLatLkToLv', true, @living_space, 1.0 - f_regain, f_regain] + equip_act_infos << ['supply_sens_lk_to_cond', 'SupSensLkToCond', Constants.ObjectNameDuctLoad, @conditioned_space, 0.0, f_regain] + equip_act_infos << ['supply_lat_lk_to_cond', 'SupLatLkToCond', Constants.ObjectNameDuctLoad, @conditioned_space, 1.0 - f_regain, f_regain] - # Supply duct conduction load added to the living space - equip_act_infos << ['supply_cond_to_liv', 'SupCondToLv', true, @living_space, 0.0, f_regain] + # Supply duct conduction load added to the conditioned space + equip_act_infos << ['supply_cond_to_cond', 'SupCondToLv', Constants.ObjectNameDuctLoad, @conditioned_space, 0.0, f_regain] # Return duct conduction load added to the return plenum zone - equip_act_infos << ['return_cond_to_rp', 'RetCondToRP', true, ra_duct_space, 0.0, f_regain] + equip_act_infos << ['return_cond_to_rp', 'RetCondToRP', Constants.ObjectNameDuctLoad, ra_duct_space, 0.0, f_regain] # Return duct sensible leakage impact on the return plenum - equip_act_infos << ['return_sens_lk_to_rp', 'RetSensLkToRP', true, ra_duct_space, 0.0, f_regain] + equip_act_infos << ['return_sens_lk_to_rp', 'RetSensLkToRP', Constants.ObjectNameDuctLoad, ra_duct_space, 0.0, f_regain] # Return duct latent leakage impact on the return plenum - equip_act_infos << ['return_lat_lk_to_rp', 'RetLatLkToRP', true, ra_duct_space, 1.0 - f_regain, f_regain] + equip_act_infos << ['return_lat_lk_to_rp', 'RetLatLkToRP', Constants.ObjectNameDuctLoad, ra_duct_space, 1.0 - f_regain, f_regain] # Supply duct conduction impact on the duct zone if not duct_location.is_a? OpenStudio::Model::ThermalZone # Outside or scheduled temperature - equip_act_infos << ['supply_cond_to_dz', 'SupCondToDZ', false, @living_space, 0.0, 1.0] # Arbitrary space, all heat lost + equip_act_infos << ['supply_cond_to_dz', 'SupCondToDZ', nil, @conditioned_space, 0.0, 1.0] # Arbitrary space, all heat lost else - equip_act_infos << ['supply_cond_to_dz', 'SupCondToDZ', false, duct_location.spaces[0], 0.0, 0.0] + equip_act_infos << ['supply_cond_to_dz', 'SupCondToDZ', nil, duct_location.spaces[0], 0.0, 0.0] end # Return duct conduction impact on the duct zone if not duct_location.is_a? OpenStudio::Model::ThermalZone # Outside or scheduled temperature - equip_act_infos << ['return_cond_to_dz', 'RetCondToDZ', false, @living_space, 0.0, 1.0] # Arbitrary space, all heat lost + equip_act_infos << ['return_cond_to_dz', 'RetCondToDZ', nil, @conditioned_space, 0.0, 1.0] # Arbitrary space, all heat lost else - equip_act_infos << ['return_cond_to_dz', 'RetCondToDZ', false, duct_location.spaces[0], 0.0, 0.0] + equip_act_infos << ['return_cond_to_dz', 'RetCondToDZ', nil, duct_location.spaces[0], 0.0, 0.0] end # Supply duct sensible leakage impact on the duct zone if not duct_location.is_a? OpenStudio::Model::ThermalZone # Outside or scheduled temperature - equip_act_infos << ['supply_sens_lk_to_dz', 'SupSensLkToDZ', false, @living_space, 0.0, 1.0] # Arbitrary space, all heat lost + equip_act_infos << ['supply_sens_lk_to_dz', 'SupSensLkToDZ', nil, @conditioned_space, 0.0, 1.0] # Arbitrary space, all heat lost else - equip_act_infos << ['supply_sens_lk_to_dz', 'SupSensLkToDZ', false, duct_location.spaces[0], 0.0, 0.0] + equip_act_infos << ['supply_sens_lk_to_dz', 'SupSensLkToDZ', nil, duct_location.spaces[0], 0.0, 0.0] end # Supply duct latent leakage impact on the duct zone if not duct_location.is_a? OpenStudio::Model::ThermalZone # Outside or scheduled temperature - equip_act_infos << ['supply_lat_lk_to_dz', 'SupLatLkToDZ', false, @living_space, 0.0, 1.0] # Arbitrary space, all heat lost + equip_act_infos << ['supply_lat_lk_to_dz', 'SupLatLkToDZ', nil, @conditioned_space, 0.0, 1.0] # Arbitrary space, all heat lost else - equip_act_infos << ['supply_lat_lk_to_dz', 'SupLatLkToDZ', false, duct_location.spaces[0], 1.0, 0.0] + equip_act_infos << ['supply_lat_lk_to_dz', 'SupLatLkToDZ', nil, duct_location.spaces[0], 1.0, 0.0] end duct_vars = {} @@ -870,34 +889,34 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) equip_act_infos.each do |act_info| var_name = "#{prefix}#{act_info[0]}" object_name = "#{object_name_idx} #{prefix}#{act_info[1]}".gsub(' ', '_') - is_load_for_report = act_info[2] + end_use = act_info[2] space = act_info[3] if is_cfis && (space == ra_duct_space) # Move all CFIS return duct losses to the conditioned space so as to avoid extreme plenum temperatures # due to mismatch between return plenum duct loads and airloop airflow rate (which does not actually # increase due to the presence of CFIS). - space = @living_space + space = @conditioned_space end frac_lat = act_info[4] frac_lost = act_info[5] if not is_cfis duct_vars[var_name] = OpenStudio::Model::EnergyManagementSystemGlobalVariable.new(model, object_name) end - duct_actuators[var_name] = create_other_equipment_object_and_actuator(model: model, name: object_name, space: space, frac_lat: frac_lat, frac_lost: frac_lost, is_duct_load_for_report: is_load_for_report) + duct_actuators[var_name] = create_other_equipment_object_and_actuator(model: model, name: object_name, space: space, frac_lat: frac_lat, frac_lost: frac_lost, end_use: end_use) end end - # Two objects are required to model the air exchange between the duct zone and the living space since + # Two objects are required to model the air exchange between the duct zone and the conditioned space since # ZoneMixing objects can not account for direction of air flow (both are controlled by EMS) # List of: [Var name, object name, space, frac load latent, frac load outside] mix_act_infos = [] if duct_location.is_a? OpenStudio::Model::ThermalZone - # Accounts for leaks from the duct zone to the living zone - mix_act_infos << ['dz_to_liv_flow_rate', 'ZoneMixDZToLv', @living_zone, duct_location] - # Accounts for leaks from the living zone to the duct zone - mix_act_infos << ['liv_to_dz_flow_rate', 'ZoneMixLvToDZ', duct_location, @living_zone] + # Accounts for leaks from the duct zone to the conditioned zone + mix_act_infos << ['dz_to_cond_flow_rate', 'ZoneMixDZToCond', @conditioned_zone, duct_location] + # Accounts for leaks from the conditioned zone to the duct zone + mix_act_infos << ['cond_to_dz_flow_rate', 'ZoneMixCondToDZ', duct_location, @conditioned_zone] end [false, true].each do |is_cfis| @@ -922,6 +941,7 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) zone_mixing.setSourceZone(source_zone) duct_actuators[var_name] = OpenStudio::Model::EnergyManagementSystemActuator.new(zone_mixing, *EPlus::EMSActuatorZoneMixingFlowRate) duct_actuators[var_name].setName("#{zone_mixing.name} act") + zone_mixing.additionalProperties.setFeature('ObjectType', Constants.ObjectNameDuctLoad) end end @@ -965,7 +985,7 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) duct_subroutine = OpenStudio::Model::EnergyManagementSystemSubroutine.new(model) duct_subroutine.setName("#{object_name_idx} duct subroutine") - duct_subroutine.addLine("Set AH_MFR = #{ah_mfr_var.name}") + duct_subroutine.addLine("Set AH_MFR = #{ah_mfr_var.name} / #{unit_multiplier}") duct_subroutine.addLine('If AH_MFR>0') duct_subroutine.addLine(" Set AH_Tout = #{ah_tout_var.name}") duct_subroutine.addLine(" Set AH_Wout = #{ah_wout_var.name}") @@ -974,7 +994,7 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) duct_subroutine.addLine(" Set Fan_RTF = #{@fan_rtf_var[object].name}") duct_subroutine.addLine(" Set DZ_T = #{dz_t_var.name}") duct_subroutine.addLine(" Set DZ_W = #{dz_w_var.name}") - duct_subroutine.addLine(" Set AH_VFR = #{ah_vfr_var.name}") + duct_subroutine.addLine(" Set AH_VFR = #{ah_vfr_var.name} / #{unit_multiplier}") duct_subroutine.addLine(' Set h_SA = (@HFnTdbW AH_Tout AH_Wout)') # J/kg duct_subroutine.addLine(' Set h_RA = (@HFnTdbW RA_T RA_W)') # J/kg duct_subroutine.addLine(' Set h_fg = (@HfgAirFnWTdb AH_Wout AH_Tout)') # J/kg @@ -984,31 +1004,31 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) if not leakage_fracs[HPXML::DuctTypeSupply].nil? duct_subroutine.addLine(" Set f_sup = #{leakage_fracs[HPXML::DuctTypeSupply]}") # frac elsif not leakage_cfm25s[HPXML::DuctTypeSupply].nil? - duct_subroutine.addLine(" Set f_sup = #{UnitConversions.convert(leakage_cfm25s[HPXML::DuctTypeSupply], 'cfm', 'm^3/s').round(6)} / (#{@fan_mfr_max_var[object].name} * 1.0135)") # frac + duct_subroutine.addLine(" Set f_sup = #{UnitConversions.convert(leakage_cfm25s[HPXML::DuctTypeSupply], 'cfm', 'm^3/s').round(6)} / (#{@fan_mfr_max_var[object].name}/#{unit_multiplier} * 1.0135)") # frac else duct_subroutine.addLine(' Set f_sup = 0.0') # frac end if not leakage_fracs[HPXML::DuctTypeReturn].nil? duct_subroutine.addLine(" Set f_ret = #{leakage_fracs[HPXML::DuctTypeReturn]}") # frac elsif not leakage_cfm25s[HPXML::DuctTypeReturn].nil? - duct_subroutine.addLine(" Set f_ret = #{UnitConversions.convert(leakage_cfm25s[HPXML::DuctTypeReturn], 'cfm', 'm^3/s').round(6)} / (#{@fan_mfr_max_var[object].name} * 1.0135)") # frac + duct_subroutine.addLine(" Set f_ret = #{UnitConversions.convert(leakage_cfm25s[HPXML::DuctTypeReturn], 'cfm', 'm^3/s').round(6)} / (#{@fan_mfr_max_var[object].name}/#{unit_multiplier} * 1.0135)") # frac else duct_subroutine.addLine(' Set f_ret = 0.0') # frac end duct_subroutine.addLine(' Set sup_lk_mfr = f_sup * AH_MFR') # kg/s duct_subroutine.addLine(' Set ret_lk_mfr = f_ret * AH_MFR') # kg/s - # Supply leakage to living - duct_subroutine.addLine(' Set SupTotLkToLiv = sup_lk_mfr*(h_RA - h_SA)') # W - duct_subroutine.addLine(' Set SupLatLkToLv = sup_lk_mfr*h_fg*(RA_W-AH_Wout)') # W - duct_subroutine.addLine(' Set SupSensLkToLv = SupTotLkToLiv-SupLatLkToLv') # W + # Supply leakage to conditioned space + duct_subroutine.addLine(' Set SupTotLkToCond = sup_lk_mfr*(h_RA - h_SA)') # W + duct_subroutine.addLine(' Set SupLatLkToCond = sup_lk_mfr*h_fg*(RA_W-AH_Wout)') # W + duct_subroutine.addLine(' Set SupSensLkToCond = SupTotLkToCond-SupLatLkToCond') # W # Supply conduction duct_subroutine.addLine(" Set supply_ua = #{UnitConversions.convert(ua_values[HPXML::DuctTypeSupply], 'Btu/(hr*F)', 'W/K').round(3)}") duct_subroutine.addLine(' Set eTm = 0-((Fan_RTF/(AH_MFR*air_cp))*supply_ua)') duct_subroutine.addLine(' Set t_sup = DZ_T+((AH_Tout-DZ_T)*(@Exp eTm))') # deg-C - duct_subroutine.addLine(' Set SupCondToLv = AH_MFR*air_cp*(t_sup-AH_Tout)') # W - duct_subroutine.addLine(' Set SupCondToDZ = 0-SupCondToLv') # W + duct_subroutine.addLine(' Set SupCondToCond = AH_MFR*air_cp*(t_sup-AH_Tout)') # W + duct_subroutine.addLine(' Set SupCondToDZ = 0-SupCondToCond') # W # Return conduction duct_subroutine.addLine(" Set return_ua = #{UnitConversions.convert(ua_values[HPXML::DuctTypeReturn], 'Btu/(hr*F)', 'W/K').round(3)}") @@ -1022,9 +1042,9 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) duct_subroutine.addLine(' Set RetSensLkToRP = ret_lk_mfr*air_cp*(DZ_T-RA_T)') # W # Supply leakage to duct zone - # The below terms are not the same as SupLatLkToLv and SupSensLkToLv. + # The below terms are not the same as SupLatLkToCond and SupSensLkToCond. # To understand why, suppose the AHzone temperature equals the supply air temperature. In this case, the terms below - # should be zero while SupLatLkToLv and SupSensLkToLv should still be non-zero. + # should be zero while SupLatLkToCond and SupSensLkToCond should still be non-zero. duct_subroutine.addLine(' Set SupTotLkToDZ = sup_lk_mfr*(h_SA-h_DZ)') # W duct_subroutine.addLine(' Set SupLatLkToDZ = sup_lk_mfr*h_fg*(AH_Wout-DZ_W)') # W duct_subroutine.addLine(' Set SupSensLkToDZ = SupTotLkToDZ-SupLatLkToDZ') # W @@ -1033,17 +1053,17 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) duct_subroutine.addLine(" Set oa_vfr = #{f_oa} * f_imbalance * AH_VFR") # m3/s duct_subroutine.addLine(' Set sup_lk_vfr = f_sup * AH_VFR') # m3/s duct_subroutine.addLine(' Set ret_lk_vfr = f_ret * AH_VFR') # m3/s - duct_subroutine.addLine(' If f_sup > f_ret') # Living zone is depressurized relative to duct zone - duct_subroutine.addLine(' Set ZoneMixLvToDZ = 0') # m3/s - duct_subroutine.addLine(' Set ZoneMixDZToLv = (sup_lk_vfr-ret_lk_vfr)-oa_vfr') # m3/s - duct_subroutine.addLine(' Else') # Living zone is pressurized relative to duct zone - duct_subroutine.addLine(' Set ZoneMixLvToDZ = (ret_lk_vfr-sup_lk_vfr)+oa_vfr') # m3/s - duct_subroutine.addLine(' Set ZoneMixDZToLv = 0') # m3/s + duct_subroutine.addLine(' If f_sup > f_ret') # Conditioned zone is depressurized relative to duct zone + duct_subroutine.addLine(' Set ZoneMixCondToDZ = 0') # m3/s + duct_subroutine.addLine(' Set ZoneMixDZToCond = (sup_lk_vfr-ret_lk_vfr)-oa_vfr') # m3/s + duct_subroutine.addLine(' Else') # Conditioned zone is pressurized relative to duct zone + duct_subroutine.addLine(' Set ZoneMixCondToDZ = (ret_lk_vfr-sup_lk_vfr)+oa_vfr') # m3/s + duct_subroutine.addLine(' Set ZoneMixDZToCond = 0') # m3/s duct_subroutine.addLine(' EndIf') duct_subroutine.addLine('Else') # No air handler flow rate - duct_subroutine.addLine(' Set SupLatLkToLv = 0') - duct_subroutine.addLine(' Set SupSensLkToLv = 0') - duct_subroutine.addLine(' Set SupCondToLv = 0') + duct_subroutine.addLine(' Set SupLatLkToCond = 0') + duct_subroutine.addLine(' Set SupSensLkToCond = 0') + duct_subroutine.addLine(' Set SupCondToCond = 0') duct_subroutine.addLine(' Set RetCondToRP = 0') duct_subroutine.addLine(' Set RetLatLkToRP = 0') duct_subroutine.addLine(' Set RetSensLkToRP = 0') @@ -1051,12 +1071,12 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) duct_subroutine.addLine(' Set SupCondToDZ = 0') duct_subroutine.addLine(' Set SupLatLkToDZ = 0') duct_subroutine.addLine(' Set SupSensLkToDZ = 0') - duct_subroutine.addLine(' Set ZoneMixLvToDZ = 0') # m3/s - duct_subroutine.addLine(' Set ZoneMixDZToLv = 0') # m3/s + duct_subroutine.addLine(' Set ZoneMixCondToDZ = 0') # m3/s + duct_subroutine.addLine(' Set ZoneMixDZToCond = 0') # m3/s duct_subroutine.addLine('EndIf') - duct_subroutine.addLine("Set #{duct_vars['supply_lat_lk_to_liv'].name} = SupLatLkToLv") - duct_subroutine.addLine("Set #{duct_vars['supply_sens_lk_to_liv'].name} = SupSensLkToLv") - duct_subroutine.addLine("Set #{duct_vars['supply_cond_to_liv'].name} = SupCondToLv") + duct_subroutine.addLine("Set #{duct_vars['supply_lat_lk_to_cond'].name} = SupLatLkToCond") + duct_subroutine.addLine("Set #{duct_vars['supply_sens_lk_to_cond'].name} = SupSensLkToCond") + duct_subroutine.addLine("Set #{duct_vars['supply_cond_to_cond'].name} = SupCondToCond") duct_subroutine.addLine("Set #{duct_vars['return_cond_to_rp'].name} = RetCondToRP") duct_subroutine.addLine("Set #{duct_vars['return_lat_lk_to_rp'].name} = RetLatLkToRP") duct_subroutine.addLine("Set #{duct_vars['return_sens_lk_to_rp'].name} = RetSensLkToRP") @@ -1064,11 +1084,11 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) duct_subroutine.addLine("Set #{duct_vars['supply_cond_to_dz'].name} = SupCondToDZ") duct_subroutine.addLine("Set #{duct_vars['supply_lat_lk_to_dz'].name} = SupLatLkToDZ") duct_subroutine.addLine("Set #{duct_vars['supply_sens_lk_to_dz'].name} = SupSensLkToDZ") - if not duct_actuators['liv_to_dz_flow_rate'].nil? - duct_subroutine.addLine("Set #{duct_vars['liv_to_dz_flow_rate'].name} = ZoneMixLvToDZ") + if not duct_actuators['cond_to_dz_flow_rate'].nil? + duct_subroutine.addLine("Set #{duct_vars['cond_to_dz_flow_rate'].name} = ZoneMixCondToDZ") end - if not duct_actuators['dz_to_liv_flow_rate'].nil? - duct_subroutine.addLine("Set #{duct_vars['dz_to_liv_flow_rate'].name} = ZoneMixDZToLv") + if not duct_actuators['dz_to_cond_flow_rate'].nil? + duct_subroutine.addLine("Set #{duct_vars['dz_to_cond_flow_rate'].name} = ZoneMixDZToCond") end # Duct Program @@ -1088,9 +1108,9 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) duct_program.addLine("Set #{dz_t_var.name} = #{dz_t_sensor.name}") duct_program.addLine("Set #{dz_w_var.name} = #{dz_w}") duct_program.addLine("Run #{duct_subroutine.name}") - duct_program.addLine("Set #{duct_actuators['supply_sens_lk_to_liv'].name} = #{duct_vars['supply_sens_lk_to_liv'].name}") - duct_program.addLine("Set #{duct_actuators['supply_lat_lk_to_liv'].name} = #{duct_vars['supply_lat_lk_to_liv'].name}") - duct_program.addLine("Set #{duct_actuators['supply_cond_to_liv'].name} = #{duct_vars['supply_cond_to_liv'].name}") + duct_program.addLine("Set #{duct_actuators['supply_sens_lk_to_cond'].name} = #{duct_vars['supply_sens_lk_to_cond'].name}") + duct_program.addLine("Set #{duct_actuators['supply_lat_lk_to_cond'].name} = #{duct_vars['supply_lat_lk_to_cond'].name}") + duct_program.addLine("Set #{duct_actuators['supply_cond_to_cond'].name} = #{duct_vars['supply_cond_to_cond'].name}") duct_program.addLine("Set #{duct_actuators['return_sens_lk_to_rp'].name} = #{duct_vars['return_sens_lk_to_rp'].name}") duct_program.addLine("Set #{duct_actuators['return_lat_lk_to_rp'].name} = #{duct_vars['return_lat_lk_to_rp'].name}") duct_program.addLine("Set #{duct_actuators['return_cond_to_rp'].name} = #{duct_vars['return_cond_to_rp'].name}") @@ -1098,11 +1118,11 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) duct_program.addLine("Set #{duct_actuators['supply_cond_to_dz'].name} = #{duct_vars['supply_cond_to_dz'].name}") duct_program.addLine("Set #{duct_actuators['supply_sens_lk_to_dz'].name} = #{duct_vars['supply_sens_lk_to_dz'].name}") duct_program.addLine("Set #{duct_actuators['supply_lat_lk_to_dz'].name} = #{duct_vars['supply_lat_lk_to_dz'].name}") - if not duct_actuators['dz_to_liv_flow_rate'].nil? - duct_program.addLine("Set #{duct_actuators['dz_to_liv_flow_rate'].name} = #{duct_vars['dz_to_liv_flow_rate'].name}") + if not duct_actuators['dz_to_cond_flow_rate'].nil? + duct_program.addLine("Set #{duct_actuators['dz_to_cond_flow_rate'].name} = #{duct_vars['dz_to_cond_flow_rate'].name}") end - if not duct_actuators['liv_to_dz_flow_rate'].nil? - duct_program.addLine("Set #{duct_actuators['liv_to_dz_flow_rate'].name} = #{duct_vars['liv_to_dz_flow_rate'].name}") + if not duct_actuators['cond_to_dz_flow_rate'].nil? + duct_program.addLine("Set #{duct_actuators['cond_to_dz_flow_rate'].name} = #{duct_vars['cond_to_dz_flow_rate'].name}") end if @cfis_airloop.values.include? object @@ -1124,9 +1144,9 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) duct_program.addLine(" Set #{ra_t_var.name} = #{ra_t_sensor.name}") duct_program.addLine(" Set #{ra_w_var.name} = #{ra_w_sensor.name}") duct_program.addLine(" Run #{duct_subroutine.name}") - duct_program.addLine(" Set #{duct_actuators['cfis_supply_sens_lk_to_liv'].name} = #{duct_vars['supply_sens_lk_to_liv'].name}") - duct_program.addLine(" Set #{duct_actuators['cfis_supply_lat_lk_to_liv'].name} = #{duct_vars['supply_lat_lk_to_liv'].name}") - duct_program.addLine(" Set #{duct_actuators['cfis_supply_cond_to_liv'].name} = #{duct_vars['supply_cond_to_liv'].name}") + duct_program.addLine(" Set #{duct_actuators['cfis_supply_sens_lk_to_cond'].name} = #{duct_vars['supply_sens_lk_to_cond'].name}") + duct_program.addLine(" Set #{duct_actuators['cfis_supply_lat_lk_to_cond'].name} = #{duct_vars['supply_lat_lk_to_cond'].name}") + duct_program.addLine(" Set #{duct_actuators['cfis_supply_cond_to_cond'].name} = #{duct_vars['supply_cond_to_cond'].name}") duct_program.addLine(" Set #{duct_actuators['cfis_return_sens_lk_to_rp'].name} = #{duct_vars['return_sens_lk_to_rp'].name}") duct_program.addLine(" Set #{duct_actuators['cfis_return_lat_lk_to_rp'].name} = #{duct_vars['return_lat_lk_to_rp'].name}") duct_program.addLine(" Set #{duct_actuators['cfis_return_cond_to_rp'].name} = #{duct_vars['return_cond_to_rp'].name}") @@ -1134,17 +1154,17 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) duct_program.addLine(" Set #{duct_actuators['cfis_supply_cond_to_dz'].name} = #{duct_vars['supply_cond_to_dz'].name}") duct_program.addLine(" Set #{duct_actuators['cfis_supply_sens_lk_to_dz'].name} = #{duct_vars['supply_sens_lk_to_dz'].name}") duct_program.addLine(" Set #{duct_actuators['cfis_supply_lat_lk_to_dz'].name} = #{duct_vars['supply_lat_lk_to_dz'].name}") - if not duct_actuators['dz_to_liv_flow_rate'].nil? - duct_program.addLine(" Set #{duct_actuators['cfis_dz_to_liv_flow_rate'].name} = #{duct_vars['dz_to_liv_flow_rate'].name}") + if not duct_actuators['dz_to_cond_flow_rate'].nil? + duct_program.addLine(" Set #{duct_actuators['cfis_dz_to_cond_flow_rate'].name} = #{duct_vars['dz_to_cond_flow_rate'].name}") end - if not duct_actuators['liv_to_dz_flow_rate'].nil? - duct_program.addLine(" Set #{duct_actuators['cfis_liv_to_dz_flow_rate'].name} = #{duct_vars['liv_to_dz_flow_rate'].name}") + if not duct_actuators['cond_to_dz_flow_rate'].nil? + duct_program.addLine(" Set #{duct_actuators['cfis_cond_to_dz_flow_rate'].name} = #{duct_vars['cond_to_dz_flow_rate'].name}") end duct_program.addLine('Else') end - duct_program.addLine(" Set #{duct_actuators['cfis_supply_sens_lk_to_liv'].name} = 0") - duct_program.addLine(" Set #{duct_actuators['cfis_supply_lat_lk_to_liv'].name} = 0") - duct_program.addLine(" Set #{duct_actuators['cfis_supply_cond_to_liv'].name} = 0") + duct_program.addLine(" Set #{duct_actuators['cfis_supply_sens_lk_to_cond'].name} = 0") + duct_program.addLine(" Set #{duct_actuators['cfis_supply_lat_lk_to_cond'].name} = 0") + duct_program.addLine(" Set #{duct_actuators['cfis_supply_cond_to_cond'].name} = 0") duct_program.addLine(" Set #{duct_actuators['cfis_return_sens_lk_to_rp'].name} = 0") duct_program.addLine(" Set #{duct_actuators['cfis_return_lat_lk_to_rp'].name} = 0") duct_program.addLine(" Set #{duct_actuators['cfis_return_cond_to_rp'].name} = 0") @@ -1152,11 +1172,11 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) duct_program.addLine(" Set #{duct_actuators['cfis_supply_cond_to_dz'].name} = 0") duct_program.addLine(" Set #{duct_actuators['cfis_supply_sens_lk_to_dz'].name} = 0") duct_program.addLine(" Set #{duct_actuators['cfis_supply_lat_lk_to_dz'].name} = 0") - if not duct_actuators['dz_to_liv_flow_rate'].nil? - duct_program.addLine(" Set #{duct_actuators['cfis_dz_to_liv_flow_rate'].name} = 0") + if not duct_actuators['dz_to_cond_flow_rate'].nil? + duct_program.addLine(" Set #{duct_actuators['cfis_dz_to_cond_flow_rate'].name} = 0") end - if not duct_actuators['liv_to_dz_flow_rate'].nil? - duct_program.addLine(" Set #{duct_actuators['cfis_liv_to_dz_flow_rate'].name} = 0") + if not duct_actuators['cond_to_dz_flow_rate'].nil? + duct_program.addLine(" Set #{duct_actuators['cfis_cond_to_dz_flow_rate'].name} = 0") end if add_cfis_duct_losses duct_program.addLine('EndIf') @@ -1272,7 +1292,7 @@ def self.apply_local_ventilation(model, vent_object, obj_type_name, index, unava equip_def.setName(obj_name) equip = OpenStudio::Model::ElectricEquipment.new(equip_def) equip.setName(obj_name) - equip.setSpace(@living_space) # no heat gain, so assign the equipment to an arbitrary space + equip.setSpace(@conditioned_space) # no heat gain, so assign the equipment to an arbitrary space equip_def.setDesignLevel(vent_object.fan_power * vent_object.count) equip_def.setFractionRadiant(0) equip_def.setFractionLatent(0) @@ -1284,20 +1304,20 @@ def self.apply_local_ventilation(model, vent_object, obj_type_name, index, unava end def self.apply_dryer_exhaust(model, vented_dryer, schedules_file, index, unavailable_periods) - obj_name = "#{Constants.ObjectNameClothesDryerExhaust} #{index}" + obj_name = "#{Constants.ObjectNameClothesDryer} exhaust #{index}" # Create schedule obj_sch = nil if not schedules_file.nil? obj_sch_name = SchedulesFile::ColumnClothesDryer - obj_sch = schedules_file.create_schedule_file(col_name: obj_sch_name) + obj_sch = schedules_file.create_schedule_file(model, col_name: obj_sch_name) full_load_hrs = schedules_file.annual_equivalent_full_load_hrs(col_name: obj_sch_name) end if obj_sch.nil? cd_weekday_sch = vented_dryer.weekday_fractions cd_weekend_sch = vented_dryer.weekend_fractions cd_monthly_sch = vented_dryer.monthly_multipliers - obj_sch = MonthWeekdayWeekendSchedule.new(model, Constants.ObjectNameClothesDryer, cd_weekday_sch, cd_weekend_sch, cd_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: unavailable_periods) + obj_sch = MonthWeekdayWeekendSchedule.new(model, obj_name + ' schedule', cd_weekday_sch, cd_weekend_sch, cd_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: unavailable_periods) obj_sch = obj_sch.schedule obj_sch_name = obj_sch.name.to_s full_load_hrs = Schedule.annual_equivalent_full_load_hrs(@year, obj_sch) @@ -1318,6 +1338,7 @@ def self.apply_dryer_exhaust(model, vented_dryer, schedules_file, index, unavail def self.calc_hrv_erv_effectiveness(vent_mech_fans) # Create the mapping between mech vent instance and the effectiveness results hrv_erv_effectiveness_map = {} + p_atm = UnitConversions.convert(1.0, 'atm', 'psi') vent_mech_fans.each do |vent_mech| hrv_erv_effectiveness_map[vent_mech] = {} @@ -1331,7 +1352,7 @@ def self.calc_hrv_erv_effectiveness(vent_mech_fans) cp_a = 1006.0 p_fan = vent_mech.average_unit_fan_power # Watts - m_fan = UnitConversions.convert(vent_mech_cfm, 'cfm', 'm^3/s') * 16.02 * Psychrometrics.rhoD_fT_w_P(UnitConversions.convert(t_sup_in, 'C', 'F'), w_sup_in, 14.7) # kg/s + m_fan = UnitConversions.convert(vent_mech_cfm, 'cfm', 'm^3/s') * UnitConversions.convert(Psychrometrics.rhoD_fT_w_P(UnitConversions.convert(t_sup_in, 'C', 'F'), w_sup_in, p_atm), 'lbm/ft^3', 'kg/m^3') # kg/s if not vent_mech.sensible_recovery_efficiency.nil? # The following is derived from CSA 439, Clause 9.3.3.1, Eq. 12: @@ -1367,7 +1388,7 @@ def self.calc_hrv_erv_effectiveness(vent_mech_fans) t_exh_in = 24.0 w_exh_in = 0.0092 - m_fan = UnitConversions.convert(vent_mech_cfm, 'cfm', 'm^3/s') * UnitConversions.convert(Psychrometrics.rhoD_fT_w_P(UnitConversions.convert(t_sup_in, 'C', 'F'), w_sup_in, 14.7), 'lbm/ft^3', 'kg/m^3') # kg/s + m_fan = UnitConversions.convert(vent_mech_cfm, 'cfm', 'm^3/s') * UnitConversions.convert(Psychrometrics.rhoD_fT_w_P(UnitConversions.convert(t_sup_in, 'C', 'F'), w_sup_in, p_atm), 'lbm/ft^3', 'kg/m^3') # kg/s t_sup_out_gross = t_sup_in - vent_mech_sens_eff * (t_sup_in - t_exh_in) t_sup_out = t_sup_out_gross + p_fan / (m_fan * cp_a) @@ -1519,7 +1540,7 @@ def self.add_ee_for_vent_fan_power(model, obj_name, sup_fans = [], exh_fans = [] equip_def.setName(obj_name) equip = OpenStudio::Model::ElectricEquipment.new(equip_def) equip.setName(obj_name) - equip.setSpace(@living_space) + equip.setSpace(@conditioned_space) equip_def.setFractionRadiant(0) equip_def.setFractionLatent(0) equip.setSchedule(avail_sch) @@ -1541,9 +1562,9 @@ def self.add_ee_for_vent_fan_power(model, obj_name, sup_fans = [], exh_fans = [] def self.setup_mech_vent_vars_actuators(model:, program:) # Actuators for mech vent fan sens_name = "#{Constants.ObjectNameMechanicalVentilationHouseFan} sensible load" - fan_sens_load_actuator = create_other_equipment_object_and_actuator(model: model, name: sens_name, space: @living_space, frac_lat: 0.0, frac_lost: 0.0) + fan_sens_load_actuator = create_other_equipment_object_and_actuator(model: model, name: sens_name, space: @conditioned_space, frac_lat: 0.0, frac_lost: 0.0, end_use: Constants.ObjectNameMechanicalVentilationHouseFan) lat_name = "#{Constants.ObjectNameMechanicalVentilationHouseFan} latent load" - fan_lat_load_actuator = create_other_equipment_object_and_actuator(model: model, name: lat_name, space: @living_space, frac_lat: 1.0, frac_lost: 0.0) + fan_lat_load_actuator = create_other_equipment_object_and_actuator(model: model, name: lat_name, space: @conditioned_space, frac_lat: 1.0, frac_lost: 0.0, end_use: Constants.ObjectNameMechanicalVentilationHouseFan) program.addLine("Set #{fan_sens_load_actuator.name} = 0.0") program.addLine("Set #{fan_lat_load_actuator.name} = 0.0") # Air property at inlet nodes on both sides @@ -1627,6 +1648,9 @@ def self.apply_infiltration_adjustment_to_conditioned(model, infil_program, vent infil_program.addLine('Set Qinf_adj = Qtot - Qu - Qb') end infil_program.addLine("Set #{infil_flow_actuator.name} = Qinf_adj") + + create_timeseries_flowrate_ems_output_var(model, 'Qfan', infil_program) + create_timeseries_flowrate_ems_output_var(model, infil_flow_actuator.name.to_s, infil_program) end def self.calculate_fan_loads(infil_program, vent_mech_erv_hrv_tot, hrv_erv_effectiveness_map, fan_sens_load_actuator, fan_lat_load_actuator, q_var, preconditioned = false) @@ -1663,15 +1687,15 @@ def self.calculate_fan_loads(infil_program, vent_mech_erv_hrv_tot, hrv_erv_effec infil_program.addLine('Set ZoneInEnth = ERVSupOutEnth') infil_program.addLine('Set ZoneInTemp = ERVSupOutTemp') end - infil_program.addLine('Set FanTotalToLv = Fan_MFR * (ZoneInEnth - ZoneAirEnth)') - infil_program.addLine('Set FanSensToLv = Fan_MFR * ZoneCp * (ZoneInTemp - ZoneTemp)') - infil_program.addLine('Set FanLatToLv = FanTotalToLv - FanSensToLv') + infil_program.addLine('Set FanTotalToCond = Fan_MFR * (ZoneInEnth - ZoneAirEnth)') + infil_program.addLine('Set FanSensToCond = Fan_MFR * ZoneCp * (ZoneInTemp - ZoneTemp)') + infil_program.addLine('Set FanLatToCond = FanTotalToCond - FanSensToCond') # Actuator, # If preconditioned, handle actuators later in calculate_precond_loads if not preconditioned - infil_program.addLine("Set #{fan_sens_load_actuator.name} = #{fan_sens_load_actuator.name} + FanSensToLv") - infil_program.addLine("Set #{fan_lat_load_actuator.name} = #{fan_lat_load_actuator.name} + FanLatToLv") + infil_program.addLine("Set #{fan_sens_load_actuator.name} = #{fan_sens_load_actuator.name} + FanSensToCond") + infil_program.addLine("Set #{fan_lat_load_actuator.name} = #{fan_lat_load_actuator.name} + FanLatToCond") end end @@ -1680,19 +1704,20 @@ def self.calculate_precond_loads(model, infil_program, vent_mech_preheat, vent_m # Assume introducing no sensible loads to zone if preconditioned if not vent_mech_preheat.empty? htg_stp_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Thermostat Heating Setpoint Temperature') - htg_stp_sensor.setName("#{Constants.ObjectNameAirflow} htg stp s") - htg_stp_sensor.setKeyName(@living_zone.name.to_s) + htg_stp_sensor.setName('htg stp s') + htg_stp_sensor.setKeyName(@conditioned_zone.name.to_s) infil_program.addLine("Set HtgStp = #{htg_stp_sensor.name}") # heating thermostat setpoint end if not vent_mech_precool.empty? clg_stp_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Thermostat Cooling Setpoint Temperature') - clg_stp_sensor.setName("#{Constants.ObjectNameAirflow} clg stp s") - clg_stp_sensor.setKeyName(@living_zone.name.to_s) + clg_stp_sensor.setName('clg stp s') + clg_stp_sensor.setKeyName(@conditioned_zone.name.to_s) infil_program.addLine("Set ClgStp = #{clg_stp_sensor.name}") # cooling thermostat setpoint end vent_mech_preheat.each_with_index do |f_preheat, i| infil_program.addLine("If (OASupInTemp < HtgStp) && (#{clg_ssn_sensor.name} < 1)") - htg_energy_actuator = create_other_equipment_object_and_actuator(model: model, name: "shared mech vent preheating energy #{i}", space: @living_space, frac_lat: 0.0, frac_lost: 1.0, hpxml_fuel_type: f_preheat.preheating_fuel, end_use: Constants.ObjectNameMechanicalVentilationPreheating) + cnt = model.getOtherEquipments.select { |e| e.endUseSubcategory.start_with? Constants.ObjectNameMechanicalVentilationPreheating }.size # Ensure unique meter for each preheating system + htg_energy_actuator = create_other_equipment_object_and_actuator(model: model, name: "shared mech vent preheating energy #{i}", space: @conditioned_space, frac_lat: 0.0, frac_lost: 1.0, hpxml_fuel_type: f_preheat.preheating_fuel, end_use: "#{Constants.ObjectNameMechanicalVentilationPreheating}#{cnt + 1}") htg_energy_actuator.actuatedComponent.get.additionalProperties.setFeature('HPXML_ID', f_preheat.id) # Used by reporting measure infil_program.addLine(" Set Qpreheat = #{UnitConversions.convert(f_preheat.average_oa_unit_flow_rate, 'cfm', 'm^3/s').round(4)}") if [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? f_preheat.fan_type @@ -1706,7 +1731,7 @@ def self.calculate_precond_loads(model, infil_program, vent_mech_preheat, vent_m infil_program.addLine(' Set FanSensToSpt = Fan_MFR * ZoneCp * (ZoneInTemp - HtgStp)') infil_program.addLine(" Set PreHeatingWatt = (-FanSensToSpt) * #{f_preheat.preheating_fraction_load_served}") infil_program.addLine(" Set #{fan_sens_load_actuator.name} = #{fan_sens_load_actuator.name} + PreHeatingWatt") - infil_program.addLine(" Set #{fan_lat_load_actuator.name} = #{fan_lat_load_actuator.name} - FanLatToLv") + infil_program.addLine(" Set #{fan_lat_load_actuator.name} = #{fan_lat_load_actuator.name} - FanLatToCond") infil_program.addLine(' Else') infil_program.addLine(' Set PreHeatingWatt = 0.0') infil_program.addLine(' EndIf') @@ -1717,7 +1742,8 @@ def self.calculate_precond_loads(model, infil_program, vent_mech_preheat, vent_m end vent_mech_precool.each_with_index do |f_precool, i| infil_program.addLine("If (OASupInTemp > ClgStp) && (#{clg_ssn_sensor.name} > 0)") - clg_energy_actuator = create_other_equipment_object_and_actuator(model: model, name: "shared mech vent precooling energy #{i}", space: @living_space, frac_lat: 0.0, frac_lost: 1.0, hpxml_fuel_type: f_precool.precooling_fuel, end_use: Constants.ObjectNameMechanicalVentilationPrecooling) + cnt = model.getOtherEquipments.select { |e| e.endUseSubcategory.start_with? Constants.ObjectNameMechanicalVentilationPrecooling }.size # Ensure unique meter for each precooling system + clg_energy_actuator = create_other_equipment_object_and_actuator(model: model, name: "shared mech vent precooling energy #{i}", space: @conditioned_space, frac_lat: 0.0, frac_lost: 1.0, hpxml_fuel_type: f_precool.precooling_fuel, end_use: "#{Constants.ObjectNameMechanicalVentilationPrecooling}#{cnt + 1}") clg_energy_actuator.actuatedComponent.get.additionalProperties.setFeature('HPXML_ID', f_precool.id) # Used by reporting measure infil_program.addLine(" Set Qprecool = #{UnitConversions.convert(f_precool.average_oa_unit_flow_rate, 'cfm', 'm^3/s').round(4)}") if [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? f_precool.fan_type @@ -1731,7 +1757,7 @@ def self.calculate_precond_loads(model, infil_program, vent_mech_preheat, vent_m infil_program.addLine(' Set FanSensToSpt = Fan_MFR * ZoneCp * (ZoneInTemp - ClgStp)') infil_program.addLine(" Set PreCoolingWatt = FanSensToSpt * #{f_precool.precooling_fraction_load_served}") infil_program.addLine(" Set #{fan_sens_load_actuator.name} = #{fan_sens_load_actuator.name} - PreCoolingWatt") - infil_program.addLine(" Set #{fan_lat_load_actuator.name} = #{fan_lat_load_actuator.name} - FanLatToLv") # Fixme:Does this assumption still apply? + infil_program.addLine(" Set #{fan_lat_load_actuator.name} = #{fan_lat_load_actuator.name} - FanLatToCond") # Fixme:Does this assumption still apply? infil_program.addLine(' Else') infil_program.addLine(' Set PreCoolingWatt = 0.0') infil_program.addLine(' EndIf') @@ -1742,7 +1768,7 @@ def self.calculate_precond_loads(model, infil_program, vent_mech_preheat, vent_m end end - def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_mech, living_ach50, living_const_ach, infil_volume, infil_height, weather, + def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_mech, conditioned_ach50, conditioned_const_ach, infil_volume, infil_height, weather, vent_fans_kitchen, vent_fans_bath, vented_dryers, has_flue_chimney_in_cond_space, clg_ssn_sensor, schedules_file, vent_fans_cfis_suppl, unavailable_periods) # Categorize fans into different types @@ -1779,16 +1805,18 @@ def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_me infil_flow = OpenStudio::Model::SpaceInfiltrationDesignFlowRate.new(model) infil_flow.setName(Constants.ObjectNameInfiltration + ' flow') infil_flow.setSchedule(model.alwaysOnDiscreteSchedule) - infil_flow.setSpace(@living_space) + infil_flow.setSpace(@conditioned_space) infil_flow_actuator = OpenStudio::Model::EnergyManagementSystemActuator.new(infil_flow, *EPlus::EMSActuatorZoneInfiltrationFlowRate) infil_flow_actuator.setName("#{infil_flow.name} act") + infil_flow.additionalProperties.setFeature('ObjectType', Constants.ObjectNameInfiltration) - # Living Space Infiltration Calculation/Program + # Conditioned Space Infiltration Calculation/Program infil_program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) + infil_program.additionalProperties.setFeature('ObjectType', Constants.ObjectNameInfiltration) infil_program.setName(Constants.ObjectNameInfiltration + ' program') # Calculate infiltration without adjustment by ventilation - apply_infiltration_to_conditioned(site, living_ach50, living_const_ach, infil_program, weather, has_flue_chimney_in_cond_space, infil_volume, infil_height) + apply_infiltration_to_conditioned(site, conditioned_ach50, conditioned_const_ach, infil_program, weather, has_flue_chimney_in_cond_space, infil_volume, infil_height) # Common variable and load actuators across multiple mech vent calculations, create only once fan_sens_load_actuator, fan_lat_load_actuator = setup_mech_vent_vars_actuators(model: model, program: infil_program) @@ -1825,11 +1853,11 @@ def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_me end def self.apply_infiltration_and_ventilation_fans(model, weather, site, vent_fans_mech, vent_fans_kitchen, vent_fans_bath, vented_dryers, - has_flue_chimney_in_cond_space, living_ach50, living_const_ach, infil_volume, infil_height, vented_attic, + has_flue_chimney_in_cond_space, conditioned_ach50, conditioned_const_ach, infil_volume, infil_height, vented_attic, vented_crawl, clg_ssn_sensor, schedules_file, vent_fans_cfis_suppl, unavailable_periods) # Infiltration for unconditioned spaces - apply_infiltration_to_garage(model, site, living_ach50) + apply_infiltration_to_garage(model, site, conditioned_ach50) apply_infiltration_to_unconditioned_basement(model) apply_infiltration_to_vented_crawlspace(model, weather, vented_crawl) apply_infiltration_to_unvented_crawlspace(model) @@ -1837,23 +1865,23 @@ def self.apply_infiltration_and_ventilation_fans(model, weather, site, vent_fans apply_infiltration_to_unvented_attic(model) # Infiltration/ventilation for conditioned space - apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_mech, living_ach50, living_const_ach, infil_volume, infil_height, weather, + apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_mech, conditioned_ach50, conditioned_const_ach, infil_volume, infil_height, weather, vent_fans_kitchen, vent_fans_bath, vented_dryers, has_flue_chimney_in_cond_space, clg_ssn_sensor, schedules_file, vent_fans_cfis_suppl, unavailable_periods) end - def self.apply_infiltration_to_conditioned(site, living_ach50, living_const_ach, infil_program, weather, has_flue_chimney_in_cond_space, infil_volume, infil_height) + def self.apply_infiltration_to_conditioned(site, conditioned_ach50, conditioned_const_ach, infil_program, weather, has_flue_chimney_in_cond_space, infil_volume, infil_height) site_ap = site.additional_properties - if living_ach50.to_f > 0 + if conditioned_ach50.to_f > 0 # Based on "Field Validation of Algebraic Equations for Stack and # Wind Driven Air Infiltration Calculations" by Walker and Wilson (1998) - outside_air_density = UnitConversions.convert(weather.header.LocalPressure, 'atm', 'Btu/ft^3') / (Gas.Air.r * (weather.data.AnnualAvgDrybulb + 460.0)) + outside_air_density = UnitConversions.convert(weather.header.LocalPressure, 'atm', 'Btu/ft^3') / (Gas.Air.r * UnitConversions.convert(weather.data.AnnualAvgDrybulb, 'F', 'R')) n_i = InfilPressureExponent - living_sla = get_infiltration_SLA_from_ACH50(living_ach50, n_i, @cfa, infil_volume) # Calculate SLA - a_o = living_sla * @cfa # Effective Leakage Area (ft^2) + conditioned_sla = get_infiltration_SLA_from_ACH50(conditioned_ach50, n_i, @cfa, infil_volume) # Calculate SLA + a_o = conditioned_sla * @cfa # Effective Leakage Area (ft^2) # Flow Coefficient (cfm/inH2O^n) (based on ASHRAE HoF) inf_conv_factor = 776.25 # [ft/min]/[inH2O^(1/2)*ft^(3/2)/lbm^(1/2)] @@ -1903,7 +1931,7 @@ def self.apply_infiltration_to_conditioned(site, living_ach50, living_const_ach, f_i = 0.0 # Additive flue function (eq. 12) end f_s = ((1.0 + n_i * r_i) / (n_i + 1.0)) * (0.5 - 0.5 * m_i**1.2)**(n_i + 1.0) + f_i - stack_coef = f_s * (UnitConversions.convert(outside_air_density * Constants.g * infil_height, 'lbm/(ft*s^2)', 'inH2O') / (Constants.AssumedInsideTemp + 460.0))**n_i # inH2O^n/R^n + stack_coef = f_s * (UnitConversions.convert(outside_air_density * Constants.g * infil_height, 'lbm/(ft*s^2)', 'inH2O') / UnitConversions.convert(Constants.AssumedInsideTemp, 'F', 'R'))**n_i # inH2O^n/R^n # Calculate wind coefficient if not @spaces[HPXML::LocationCrawlspaceVented].nil? @@ -1940,9 +1968,8 @@ def self.apply_infiltration_to_conditioned(site, living_ach50, living_const_ach, infil_program.addLine('Set Qinf = (((c*Cs*(dT^n))^2)+temp1)^0.5') infil_program.addLine('Set Qinf = (@Max Qinf 0)') - elsif living_const_ach.to_f > 0 - living_ach = living_const_ach - infil_program.addLine("Set Qinf = #{living_ach * UnitConversions.convert(infil_volume, 'ft^3', 'm^3') / UnitConversions.convert(1.0, 'hr', 's')}") + elsif conditioned_const_ach.to_f > 0 + infil_program.addLine("Set Qinf = #{conditioned_const_ach * UnitConversions.convert(infil_volume, 'ft^3', 'm^3') / UnitConversions.convert(1.0, 'hr', 's')}") else infil_program.addLine('Set Qinf = 0') end @@ -1957,7 +1984,7 @@ def self.calc_wind_stack_coeffs(site, hor_lk_frac, neutral_level, space, space_h f_t_SG = site_ap.site_terrain_multiplier * ((space_height + coord_z) / 32.8)**site_ap.site_terrain_exponent / (site_ap.terrain_multiplier * (site_ap.height / 32.8)**site_ap.terrain_exponent) f_s_SG = 2.0 / 3.0 * (1 + hor_lk_frac / 2.0) * (2.0 * neutral_level * (1.0 - neutral_level))**0.5 / (neutral_level**0.5 + (1.0 - neutral_level)**0.5) f_w_SG = site_ap.s_g_shielding_coef * (1.0 - hor_lk_frac)**(1.0 / 3.0) * f_t_SG - c_s_SG = f_s_SG**2.0 * Constants.g * space_height / (Constants.AssumedInsideTemp + 460.0) + c_s_SG = f_s_SG**2.0 * Constants.g * space_height / UnitConversions.convert(Constants.AssumedInsideTemp, 'F', 'R') c_w_SG = f_w_SG**2.0 return c_w_SG, c_s_SG end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/battery.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/battery.rb index 000aabbc..803a856c 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/battery.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/battery.rb @@ -1,12 +1,17 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class Battery - def self.apply(runner, model, pv_systems, battery, schedules_file) + def self.apply(runner, model, pv_systems, battery, schedules_file, unit_multiplier) charging_schedule = nil discharging_schedule = nil if not schedules_file.nil? - charging_schedule = schedules_file.create_schedule_file(col_name: SchedulesFile::ColumnBatteryCharging) - discharging_schedule = schedules_file.create_schedule_file(col_name: SchedulesFile::ColumnBatteryDischarging) + charging_schedule = schedules_file.create_schedule_file(model, col_name: SchedulesFile::ColumnBatteryCharging) + discharging_schedule = schedules_file.create_schedule_file(model, col_name: SchedulesFile::ColumnBatteryDischarging) end if pv_systems.empty? && charging_schedule.nil? && discharging_schedule.nil? @@ -17,24 +22,29 @@ def self.apply(runner, model, pv_systems, battery, schedules_file) obj_name = battery.id rated_power_output = battery.rated_power_output # W - nominal_voltage = battery.nominal_voltage # V if not battery.nominal_capacity_kwh.nil? if battery.usable_capacity_kwh.nil? fail "UsableCapacity and NominalCapacity for Battery '#{battery.id}' must be in the same units." end nominal_capacity_kwh = battery.nominal_capacity_kwh # kWh - usable_fraction = battery.usable_capacity_kwh / nominal_capacity_kwh + usable_capacity_kwh = battery.usable_capacity_kwh + usable_fraction = usable_capacity_kwh / nominal_capacity_kwh else if battery.usable_capacity_ah.nil? fail "UsableCapacity and NominalCapacity for Battery '#{battery.id}' must be in the same units." end - nominal_capacity_kwh = get_kWh_from_Ah(battery.nominal_capacity_ah, nominal_voltage) # kWh + nominal_capacity_kwh = get_kWh_from_Ah(battery.nominal_capacity_ah, battery.nominal_voltage) # kWh + usable_capacity_kwh = get_kWh_from_Ah(battery.usable_capacity_ah, battery.nominal_voltage) # kWh usable_fraction = battery.usable_capacity_ah / battery.nominal_capacity_ah end - return if rated_power_output <= 0 || nominal_capacity_kwh <= 0 || nominal_voltage <= 0 + return if rated_power_output <= 0 || nominal_capacity_kwh <= 0 || battery.nominal_voltage <= 0 + + nominal_capacity_kwh *= unit_multiplier + usable_capacity_kwh *= unit_multiplier + rated_power_output *= unit_multiplier is_outside = (battery.location == HPXML::LocationOutside) if not is_outside @@ -46,7 +56,7 @@ def self.apply(runner, model, pv_systems, battery, schedules_file) default_nominal_cell_voltage = 3.342 # V, EnergyPlus default default_cell_capacity = 3.2 # Ah, EnergyPlus default - number_of_cells_in_series = Integer((nominal_voltage / default_nominal_cell_voltage).round) + number_of_cells_in_series = Integer((battery.nominal_voltage / default_nominal_cell_voltage).round) number_of_strings_in_parallel = Integer(((nominal_capacity_kwh * 1000.0) / ((default_nominal_cell_voltage * number_of_cells_in_series) * default_cell_capacity)).round) battery_mass = (nominal_capacity_kwh / 10.0) * 99.0 # kg battery_surface_area = 0.306 * (nominal_capacity_kwh**(2.0 / 3.0)) # m^2 @@ -64,7 +74,7 @@ def self.apply(runner, model, pv_systems, battery, schedules_file) elcs = OpenStudio::Model::ElectricLoadCenterStorageLiIonNMCBattery.new(model, number_of_cells_in_series, number_of_strings_in_parallel, battery_mass, battery_surface_area) elcs.setName("#{obj_name} li ion") - unless is_outside + if not is_outside elcs.setThermalZone(battery.additional_properties.space.thermalZone.get) end elcs.setRadiativeFraction(0.9 * frac_sens) @@ -80,7 +90,7 @@ def self.apply(runner, model, pv_systems, battery, schedules_file) elcs.setCellVoltageatEndofNominalZone(default_nominal_cell_voltage) if not voltage_dependence elcs.setBatteryCellInternalElectricalResistance(0.002) # 2 mOhm/cell, based on OCHRE defaults (which are based on fitting to lab results) - # FIXME: if the voltage reported during charge/discharge is different, energy may not balance + # Note: if the voltage reported during charge/discharge is different, energy may not balance # elcs.setFullyChargedCellVoltage(default_nominal_cell_voltage) # elcs.setCellVoltageatEndofExponentialZone(default_nominal_cell_voltage) end @@ -130,9 +140,13 @@ def self.apply(runner, model, pv_systems, battery, schedules_file) charge_sensor.setName('battery_charge') charge_sensor.setKeyName(elcs.name.to_s) + discharge_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Electric Storage Discharge Energy') + discharge_sensor.setName('battery_discharge') + discharge_sensor.setKeyName(elcs.name.to_s) + loss_adj_object_def = OpenStudio::Model::OtherEquipmentDefinition.new(model) loss_adj_object = OpenStudio::Model::OtherEquipment.new(loss_adj_object_def) - obj_name = Constants.ObjectNameBatteryLossesAdjustment(elcs.name) + obj_name = Constants.ObjectNameBatteryLossesAdjustment loss_adj_object.setName(obj_name) loss_adj_object.setEndUseSubcategory(obj_name) loss_adj_object.setFuelType(EPlus.fuel_type(HPXML::FuelTypeElectricity)) @@ -143,13 +157,16 @@ def self.apply(runner, model, pv_systems, battery, schedules_file) loss_adj_object_def.setFractionLatent(0) loss_adj_object_def.setFractionLost(frac_lost) loss_adj_object.setSchedule(model.alwaysOnDiscreteSchedule) + loss_adj_object.additionalProperties.setFeature('ObjectType', Constants.ObjectNameBatteryLossesAdjustment) battery_adj_actuator = OpenStudio::Model::EnergyManagementSystemActuator.new(loss_adj_object, *EPlus::EMSActuatorOtherEquipmentPower, loss_adj_object.space.get) battery_adj_actuator.setName('battery loss_adj_act') battery_losses_program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) battery_losses_program.setName('battery_losses') - battery_losses_program.addLine("Set losses = -1 * #{charge_sensor.name} * (1 - #{battery.round_trip_efficiency})") + battery_losses_program.addLine("Set charge_losses = (-1 * #{charge_sensor.name} * (1 - (#{battery.round_trip_efficiency} ^ 0.5))) / #{unit_multiplier}") + battery_losses_program.addLine("Set discharge_losses = (-1 * #{discharge_sensor.name} * (1 - (#{battery.round_trip_efficiency} ^ 0.5))) / #{unit_multiplier}") + battery_losses_program.addLine('Set losses = charge_losses + discharge_losses') battery_losses_program.addLine("Set #{battery_adj_actuator.name} = -1 * losses / ( 3600 * SystemTimeStep )") battery_losses_pcm = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model) @@ -157,12 +174,9 @@ def self.apply(runner, model, pv_systems, battery, schedules_file) battery_losses_pcm.setCallingPoint('EndOfSystemTimestepBeforeHVACReporting') battery_losses_pcm.addProgram(battery_losses_program) - battery_losses_output_var = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, 'losses') - battery_losses_output_var.setName("#{Constants.ObjectNameBatteryLossesAdjustment(elcs.name)} outvar") - battery_losses_output_var.setTypeOfDataInVariable('Summed') - battery_losses_output_var.setUpdateFrequency('SystemTimestep') - battery_losses_output_var.setEMSProgramOrSubroutineName(battery_losses_program) - battery_losses_output_var.setUnits('J') + elcd.additionalProperties.setFeature('HPXML_ID', battery.id) + elcs.additionalProperties.setFeature('HPXML_ID', battery.id) + elcs.additionalProperties.setFeature('UsableCapacity_kWh', Float(usable_capacity_kwh)) end def self.get_battery_default_values(has_garage = false) @@ -186,4 +200,15 @@ def self.get_Ah_from_kWh(nominal_capacity_kwh, nominal_voltage) def self.get_kWh_from_Ah(nominal_capacity_ah, nominal_voltage) return nominal_capacity_ah * nominal_voltage / 1000.0 end + + def self.get_usable_capacity_kWh(battery) + usable_capacity_kwh = battery.usable_capacity_kwh + if usable_capacity_kwh.nil? + usable_capacity_kwh = get_kWh_from_Ah(battery.usable_capacity_ah, battery.nominal_voltage) # kWh + end + return usable_capacity_kwh + end + + def self.get_min_max_state_of_charge() + end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb index 5d65f669..c745b39e 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class Constants @@ -86,34 +91,18 @@ def self.IECCZones '4A', '4B', '4C', '5A', '5B', '5C', '6A', '6B', '6C', '7', '8'] end - def self.IsDuctLoadForReport - return __method__.to_s - end - - def self.ObjectNameAirflow - return 'airflow' - end - def self.ObjectNameAirSourceHeatPump return 'air source heat pump' end - def self.ObjectNameBackupHeatingCoil - return 'backup htg coil' - end - - def self.ObjectNameBatteryLossesAdjustment(battery_name) - return "#{battery_name} losses adjustment" + def self.ObjectNameBatteryLossesAdjustment + return 'battery losses adjustment' end def self.ObjectNameBoiler return 'boiler' end - def self.ObjectNameBoilerPilotLight(boiler_name) - return "#{boiler_name} pilot light" - end - def self.ObjectNameCeilingFan return 'ceiling fan' end @@ -134,10 +123,6 @@ def self.ObjectNameClothesDryer return 'clothes dryer' end - def self.ObjectNameClothesDryerExhaust - return 'clothes dryer exhaust' - end - def self.ObjectNameComponentLoadsProgram return 'component loads program' end @@ -146,22 +131,10 @@ def self.ObjectNameCookingRange return 'cooking range' end - def self.ObjectNameCoolingSeason - return 'cooling season' - end - - def self.ObjectNameCoolingSetpoint - return 'cooling setpoint' - end - def self.ObjectNameDehumidifier return 'dehumidifier' end - def self.ObjectNameDesuperheater(water_heater_name) - return "#{water_heater_name} Desuperheater" - end - def self.ObjectNameDishwasher return 'dishwasher' end @@ -170,36 +143,28 @@ def self.ObjectNameDistributionWaste return 'dhw distribution waste' end - def self.ObjectNameDucts - return 'ducts' + def self.ObjectNameDuctLoad + return 'duct load' end def self.ObjectNameElectricBaseboard - return 'baseboard' - end - - def self.ObjectNameERVHRV - return 'erv or hrv' + return 'electric baseboard' end def self.ObjectNameEvaporativeCooler return 'evap cooler' end - def self.ObjectNameExteriorLighting - return 'exterior lighting' - end - - def self.ObjectNameFanPumpDisaggregateCool(fan_or_pump_name = '') - return "#{fan_or_pump_name} clg disaggregate" + def self.ObjectNameFanPumpDisaggregateCool + return 'disaggregate clg' end - def self.ObjectNameFanPumpDisaggregatePrimaryHeat(fan_or_pump_name = '') - return "#{fan_or_pump_name} htg primary disaggregate" + def self.ObjectNameFanPumpDisaggregatePrimaryHeat + return 'disaggregate htg primary' end - def self.ObjectNameFanPumpDisaggregateBackupHeat(fan_or_pump_name = '') - return "#{fan_or_pump_name} htg backup disaggregate" + def self.ObjectNameFanPumpDisaggregateBackupHeat + return 'disaggregate htg backup' end def self.ObjectNameFixtures @@ -214,42 +179,22 @@ def self.ObjectNameFurnace return 'furnace' end - def self.ObjectNamePTACHeating - return 'ptac heating' - end - - def self.ObjectNameRoomACHeating - return 'room ac heating' - end - - def self.ObjectNameFurniture - return 'furniture' - end - - def self.ObjectNameGarageLighting - return 'garage lighting' - end - def self.ObjectNameGroundSourceHeatPump return 'ground source heat pump' end - def self.ObjectNameGSHPSharedPump() + def self.ObjectNameGSHPSharedPump return 'gshp shared loop pump' end - def self.ObjectNameHeatingSeason - return 'heating season' - end - - def self.ObjectNameHeatingSetpoint - return 'heating setpoint' - end - def self.ObjectNameHotWaterRecircPump return 'dhw recirc pump' end + def self.ObjectNameHVACAvailabilitySensor + return 'hvac availability sensor' + end + def self.ObjectNameIdealAirSystem return 'ideal air system' end @@ -258,14 +203,22 @@ def self.ObjectNameInfiltration return 'infil' end - def self.ObjectNameInteriorLighting - return 'interior lighting' + def self.ObjectNameLightingExterior + return 'exterior lighting' end def self.ObjectNameLightingExteriorHoliday return 'exterior holiday lighting' end + def self.ObjectNameLightingGarage + return 'garage lighting' + end + + def self.ObjectNameLightingInterior + return 'interior lighting' + end + def self.ObjectNameMechanicalVentilation return 'mech vent' end @@ -338,12 +291,12 @@ def self.ObjectNameMiscPoolPump return 'misc pool pump' end - def self.ObjectNameMiscHotTubHeater - return 'misc hot tub heater' + def self.ObjectNameMiscPermanentSpaHeater + return 'misc permanent spa heater' end - def self.ObjectNameMiscHotTubPump - return 'misc hot tub pump' + def self.ObjectNameMiscPermanentSpaPump + return 'misc permanent spa pump' end def self.ObjectNameMiscPlugLoads @@ -374,42 +327,18 @@ def self.ObjectNameOccupants return 'occupants' end - def self.ObjectNameOverhangs - return 'overhangs' - end - - def self.ObjectNamePlantLoopDHW - return 'dhw loop' - end - - def self.ObjectNamePlantLoopSHW - return 'solar hot water loop' - end - def self.ObjectNameRefrigerator return 'fridge' end - def self.ObjectNameRelativeHumiditySetpoint - return 'rh setpoint' - end - def self.ObjectNameRoomAirConditioner return 'room ac' end - def self.ObjectNameSkylightShade - return 'skylight shade' - end - def self.ObjectNameSolarHotWater return 'solar hot water' end - def self.ObjectNameTankHX - return 'dhw source hx' - end - def self.ObjectNameTotalLoadsProgram return 'total loads program' end @@ -438,8 +367,8 @@ def self.ObjectNameWaterSensible return 'water sensible' end - def self.ObjectNameWaterHeaterAdjustment(water_heater_name) - return "#{water_heater_name} EC adjustment" + def self.ObjectNameWaterHeaterAdjustment + return 'water heater energy adjustment' end def self.ObjectNameWaterLoopHeatPump @@ -450,10 +379,6 @@ def self.ObjectNameWholeHouseFan return 'whole house fan' end - def self.ObjectNameWindowShade - return 'window shade' - end - def self.ScheduleTypeLimitsFraction return 'Fractional' end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb index f7b2259c..456cc99b 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class Constructions @@ -1090,7 +1095,7 @@ def self.apply_partition_walls(model, constr_name, mat_int_finish, partition_wal # Add remaining partition walls within spaces (those without geometric representation) # as internal mass object. obj_name = 'partition wall mass' - imdef = create_os_int_mass_and_def(model, obj_name, spaces[HPXML::LocationLivingSpace], partition_wall_area) + imdef = create_os_int_mass_and_def(model, obj_name, spaces[HPXML::LocationConditionedSpace], partition_wall_area) apply_wood_stud_wall(model, [imdef], constr_name, 0, 1, 3.5, false, 0.16, @@ -1118,7 +1123,7 @@ def self.apply_furniture(model, furniture_mass, spaces) furnSolarAbsorptance = 0.6 furnSpecHeat = mat.cp furnDensity = mat.rho - if location == HPXML::LocationLivingSpace + if location == HPXML::LocationConditionedSpace furnAreaFraction = furniture_mass.area_fraction furnMass = mass_lb_per_sqft elsif location == HPXML::LocationBasementUnconditioned @@ -1132,9 +1137,9 @@ def self.apply_furniture(model, furniture_mass, spaces) next if furnAreaFraction.nil? next if furnAreaFraction <= 0 - mat_obj_name_space = "#{Constants.ObjectNameFurniture} material #{space.name}" - constr_obj_name_space = "#{Constants.ObjectNameFurniture} construction #{space.name}" - mass_obj_name_space = "#{Constants.ObjectNameFurniture} mass #{space.name}" + mat_obj_name_space = "furniture material #{space.name}" + constr_obj_name_space = "furniture construction #{space.name}" + mass_obj_name_space = "furniture mass #{space.name}" furnThickness = UnitConversions.convert(furnMass / (furnDensity * furnAreaFraction), 'ft', 'in') @@ -1535,7 +1540,7 @@ def self.apply_kiva_initial_temp(foundation, slab, weather, conditioned_zone, initial_temp = indoor_temp else # Space temperature assumptions from ASHRAE 152 - Duct Efficiency Calculations.xls, Zone temperatures - ground_temp = weather.data.GroundMonthlyTemps[sim_begin_month - 1] + ground_temp = weather.data.ShallowGroundMonthlyTemps[sim_begin_month - 1] if slab.interior_adjacent_to == HPXML::LocationBasementUnconditioned if foundation_ceiling_insulated # Insulated ceiling: 75% ground, 25% outdoor, 0% indoor @@ -1617,103 +1622,59 @@ def self.apply_window_skylight(model, type, subsurface, constr_name, ufactor, sh constr.create_and_assign_constructions([subsurface], model) end - def self.apply_window_skylight_shading(model, window_or_skylight, index, shading_vertices, parent_surface, sub_surface, shading_group, - shading_schedules, shading_ems, name, hpxml) + def self.apply_window_skylight_shading(model, window_or_skylight, sub_surface, shading_schedules, hpxml_header, hpxml_bldg) sf_summer = window_or_skylight.interior_shading_factor_summer * window_or_skylight.exterior_shading_factor_summer sf_winter = window_or_skylight.interior_shading_factor_winter * window_or_skylight.exterior_shading_factor_winter if (sf_summer < 1.0) || (sf_winter < 1.0) # Apply shading - # We use a ShadingSurface instead of a Shade so that we perfectly get the result we want. - # The latter object is complex and it is essentially impossible to achieve the target reduction in transmitted - # solar (due to, e.g., re-reflectance, absorptance, angle modifiers, effects on convection, etc.). - - # Shading surface is used to reduce beam solar and sky diffuse solar - shading_surface = OpenStudio::Model::ShadingSurface.new(shading_vertices, model) - shading_surface.setName("#{window_or_skylight.id} shading surface") - shading_surface.additionalProperties.setFeature('Azimuth', window_or_skylight.azimuth) - shading_surface.additionalProperties.setFeature('ParentSurface', parent_surface.name.to_s) # Determine transmittance values throughout the year - trans_values = [] - num_days_in_year = Constants.NumDaysInYear(hpxml.header.sim_calendar_year) - if not hpxml.header.shading_summer_begin_month.nil? - summer_start_day_num = Schedule.get_day_num_from_month_day(hpxml.header.sim_calendar_year, - hpxml.header.shading_summer_begin_month, - hpxml.header.shading_summer_begin_day) - summer_end_day_num = Schedule.get_day_num_from_month_day(hpxml.header.sim_calendar_year, - hpxml.header.shading_summer_end_month, - hpxml.header.shading_summer_end_day) + sf_values = [] + num_days_in_year = Constants.NumDaysInYear(hpxml_header.sim_calendar_year) + if not hpxml_bldg.header.shading_summer_begin_month.nil? + summer_start_day_num = Schedule.get_day_num_from_month_day(hpxml_header.sim_calendar_year, + hpxml_bldg.header.shading_summer_begin_month, + hpxml_bldg.header.shading_summer_begin_day) + summer_end_day_num = Schedule.get_day_num_from_month_day(hpxml_header.sim_calendar_year, + hpxml_bldg.header.shading_summer_end_month, + hpxml_bldg.header.shading_summer_end_day) for i in 0..(num_days_in_year - 1) day_num = i + 1 if summer_end_day_num >= summer_start_day_num if (day_num >= summer_start_day_num) && (day_num <= summer_end_day_num) - trans_values << [sf_summer] * 24 + sf_values << [sf_summer] * 24 next end else if (day_num >= summer_start_day_num) || (day_num <= summer_end_day_num) - trans_values << [sf_summer] * 24 + sf_values << [sf_summer] * 24 next end end # If we got this far, winter - trans_values << [sf_winter] * 24 + sf_values << [sf_winter] * 24 end else # No summer (year-round winter) - trans_values = [[sf_winter] * 24] * num_days_in_year + sf_values = [[sf_winter] * 24] * num_days_in_year end # Create transmittance schedule - if shading_schedules[trans_values].nil? + if shading_schedules[sf_values].nil? sch_name = "trans schedule winter=#{sf_winter} summer=#{sf_summer}" - if trans_values.flatten.uniq.size == 1 - trans_sch = OpenStudio::Model::ScheduleConstant.new(model) - trans_sch.setValue(trans_values[0][0]) - trans_sch.setName(sch_name) + if sf_values.flatten.uniq.size == 1 + sf_sch = OpenStudio::Model::ScheduleConstant.new(model) + sf_sch.setValue(sf_values[0][0]) + sf_sch.setName(sch_name) else - trans_sch = HourlyByDaySchedule.new(model, sch_name, trans_values, trans_values, Constants.ScheduleTypeLimitsFraction, false).schedule + sf_sch = HourlyByDaySchedule.new(model, sch_name, sf_values, sf_values, Constants.ScheduleTypeLimitsFraction, false).schedule end - shading_schedules[trans_values] = trans_sch - end - shading_surface.setTransmittanceSchedule(shading_schedules[trans_values]) - - # EMS to actuate view factor to ground - sub_surface_type = sub_surface.subSurfaceType.downcase.to_s - actuator = OpenStudio::Model::EnergyManagementSystemActuator.new(sub_surface, *EPlus::EMSActuatorSurfaceViewFactorToGround) - actuator.setName("#{sub_surface_type}#{index}_actuator") - - if shading_ems[:sensors][trans_values].nil? - shading_schedule_name = shading_schedules[trans_values].name.to_s - shading_coeff_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Schedule Value') - shading_coeff_sensor.setName("#{sub_surface_type}_shading_coefficient") - shading_coeff_sensor.setKeyName(shading_schedule_name) - shading_ems[:sensors][trans_values] = shading_coeff_sensor + shading_schedules[sf_values] = sf_sch end - default_vf_to_ground = ((1.0 - Math::cos(sub_surface.tilt)) / 2.0).round(2) - shading_coeff = shading_ems[:sensors][trans_values].name - if shading_ems[:program].nil? - program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) - program.setName("#{sub_surface_type}_view_factor_to_ground_program") - program.addLine("Set #{actuator.name} = #{default_vf_to_ground}*#{shading_coeff}") - shading_ems[:program] = program - - program_cm = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model) - program_cm.setName("#{program.name} calling manager") - program_cm.setCallingPoint('BeginZoneTimestepAfterInitHeatBalance') # https://github.com/NREL/EnergyPlus/pull/8477#discussion_r567320478 - program_cm.addProgram(program) - else - shading_ems[:program].addLine("Set #{actuator.name} = #{default_vf_to_ground}*#{shading_coeff}") - end - - if shading_group.nil? - shading_group = OpenStudio::Model::ShadingSurfaceGroup.new(model) - shading_group.setName(name) - end - shading_surface.setShadingSurfaceGroup(shading_group) + ism = OpenStudio::Model::SurfacePropertyIncidentSolarMultiplier.new(sub_surface) + ism.setIncidentSolarMultiplierSchedule(shading_schedules[sf_values]) end - return shading_group end def self.calc_non_cavity_r(film_r, constr_set) diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/Xing_okstate_0664D_13659_Table_A-3.csv b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/Xing_okstate_0664D_13659_Table_A-3.csv new file mode 100644 index 00000000..f3c6a6d2 --- /dev/null +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/Xing_okstate_0664D_13659_Table_A-3.csv @@ -0,0 +1,4165 @@ +Region,Country,Station,Latitude,Longitude,"Ts,avg","Ts,amplitude,1","Ts,amplitude,2",PL1,PL2, +1,BEN,COTONOU,6.35,2.38,28.0,-1.5,0.7,56,32, +1,BEN,PARAKOU,9.35,2.62,27.6,-2.2,1.0,69,21, +1,BFA,BOBO-DIOULASSO,11.17,-4.32,27.8,-1.7,1.8,99,24, +1,BFA,DORI,14.03,-0.03,30.9,4.2,3.0,-11,17, +1,BFA,OUAGADOUGOU,12.35,-1.52,30.2,2.4,2.6,-32,23, +1,BWA,FRANCISTOWN,-21.22,27.50,24.0,-4.6,1.8,1,6, +1,BWA,MAUN,-19.98,23.42,26.2,-4.6,2.2,-5,4, +1,BWA,SERETSE-KHAMA-INTER,-24.55,25.92,22.9,-6.0,1.4,4,3, +1,CIV,ABIDJAN,5.25,-3.93,27.8,-1.8,0.7,64,30, +1,DZA,ANNABA,36.83,7.82,19.8,7.7,0.8,31,-33, +1,DZA,BATNA,35.75,6.32,17.9,10.8,-1.5,23,53, +1,DZA,BECHAR,31.50,-2.25,22.9,11.5,0.8,21,-23, +1,DZA,BEJAIA-AP,36.72,5.07,19.9,8.3,1.1,31,-22, +1,DZA,BISKRA,34.80,5.73,24.0,11.3,-1.1,22,48, +1,DZA,BORDJ-BOU-ARRERIDJ,36.07,4.77,17.7,11.0,1.8,24,-35, +1,DZA,CHLEF,36.22,1.33,21.3,10.2,0.0,25,1, +1,DZA,CONSTANTINE,36.28,6.62,18.3,10.6,-0.9,23,47, +1,DZA,DAR-EL-BEIDA,36.68,3.22,19.9,8.0,1.1,28,-33, +1,DZA,DJANET,24.27,9.47,25.4,9.7,2.1,14,17, +1,DZA,EL-BAYADH,33.67,1.00,17.5,12.0,-1.2,23,43, +1,DZA,EL-GOLEA,30.57,2.87,24.0,12.3,1.2,20,-16, +1,DZA,EL-OUED,33.50,6.78,24.0,11.5,1.0,21,-26, +1,DZA,GHARDAIA,32.40,3.80,23.6,11.7,1.0,21,-25, +1,DZA,HASSI-MESSAOUD,31.67,6.15,25.0,12.1,1.0,20,-13, +1,DZA,ILLIZI,26.50,8.42,26.5,10.4,1.6,18,5, +1,DZA,IN-AMENAS,28.05,9.63,24.3,10.9,1.3,18,-6, +1,DZA,IN-SALAH,27.23,2.50,27.5,11.2,1.4,19,-24, +1,DZA,JIJEL-ACHOUAT,36.80,5.88,20.6,8.4,1.0,29,-26, +1,DZA,MASCARA-MATEMORE,35.60,0.30,19.6,10.1,-1.6,24,49, +1,DZA,MECHERIA,33.58,-0.28,18.7,11.1,1.5,21,-33, +1,DZA,ORAN-SENIA,35.63,-0.60,20.0,7.8,1.4,27,-36, +1,DZA,SETIF,36.18,5.25,16.8,10.8,-1.5,23,36, +1,DZA,SKIKDA,36.88,6.90,20.9,7.5,0.7,34,-29, +1,DZA,TAMANRASSET,22.80,5.43,23.9,8.4,1.2,15,12, +1,DZA,TEBESSA,35.42,8.12,18.9,10.9,0.8,22,-32, +1,DZA,TIARET,35.35,1.47,17.2,10.9,-1.0,25,44, +1,DZA,TLEMCEN-ZENATA,35.02,-1.47,20.6,8.3,1.2,26,-33, +1,DZA,TOUGGOURT,33.12,6.13,23.9,11.6,1.2,20,-27, +1,EGY,ALEXANDRIA-NOUZHA,31.20,29.95,22.2,7.0,0.7,31,-4, +1,EGY,ASSWAN,23.97,32.78,27.6,9.0,1.7,19,10, +1,EGY,ASYUT,27.05,31.02,24.3,9.2,1.1,19,7, +1,EGY,BAHARIA,28.33,28.90,24.4,8.7,1.1,16,5, +1,EGY,BALTIM,31.55,31.10,22.7,6.8,0.9,33,6, +1,EGY,CAIRO-AP,30.13,31.40,24.0,7.7,0.7,21,9, +1,EGY,DAKHLA,25.48,29.00,26.0,9.8,1.3,17,10, +1,EGY,EL-ARISH,31.08,33.82,22.2,6.9,0.8,28,10, +1,EGY,EL-TOR,28.23,33.62,24.5,6.9,0.6,24,12, +1,EGY,HURGUADA,27.15,33.72,25.9,7.8,0.7,26,10, +1,EGY,ISMAILIA,30.60,32.25,23.6,8.0,0.8,26,5, +1,EGY,KHARGA,25.45,30.53,27.0,9.7,1.3,18,19, +1,EGY,KOSSEIR,26.13,34.15,26.0,6.5,0.5,27,6, +1,EGY,LUXOR,25.67,32.70,27.0,9.5,1.4,18,11, +1,EGY,MERSA-MATRUH,31.33,27.22,21.8,7.2,0.6,34,-10, +1,EGY,MINYA,28.08,30.73,24.1,9.0,0.8,21,2, +1,EGY,PORT-SAID-EL-GAMIL,31.28,32.23,23.0,6.9,0.5,35,5, +1,EGY,SIWA,29.20,25.32,24.8,9.6,1.1,20,2, +1,ESH,DAKHLA,23.72,-15.93,22.1,2.4,0.0,37,14, +1,ESP,FUERTEVENTURA-AP,28.45,-13.87,22.9,4.1,1.2,40,-10, +1,ESP,LA-PALMA-AP,28.62,-17.75,22.3,3.7,0.6,41,-24, +1,ESP,LANZAROTE-AP,28.95,-13.60,22.1,3.5,1.1,43,-12, +1,ESP,LAS-PALMAS-DE-GRAN,27.93,-15.38,22.3,3.4,0.6,41,-15, +1,ESP,MELILLA,35.28,-2.95,20.9,7.0,-1.0,29,46, +1,ESP,STA-CRUZ-DE-TENERI,28.45,-16.25,23.4,4.3,0.4,38,-26, +1,ESP,TENERIFE-LOS-RODEOS,28.47,-16.32,17.9,3.9,0.6,38,-19, +1,ESP,TENERIFE-SUR,28.05,-16.57,23.3,3.6,0.5,37,-8, +1,FRA,SERGE-FROLOW(ILE-T),-15.80,54.50,26.2,-2.4,0.3,49,0, +1,KEN,GARISSA,-0.47,39.63,30.3,-1.9,0.7,37,6, +1,KEN,KISUMU,-0.10,34.75,24.3,-0.6,0.6,24,-10, +1,KEN,KITALE,1.02,35.00,19.9,-0.8,0.6,51,-5, +1,KEN,LODWAR,3.12,35.62,31.5,-0.1,0.6,14,-2, +1,KEN,MAKINDU,-2.28,37.83,23.4,-1.2,0.7,12,-5, +1,KEN,MARSABIT,2.30,37.90,21.8,0.0,0.4,-7,13, +1,KEN,MERU,0.08,37.65,21.8,-0.7,1.2,57,3, +1,KEN,MOMBASA,-4.03,39.62,27.9,-1.5,0.9,24,16, +1,KEN,MOYALE,3.53,39.03,24.2,-2.3,1.0,36,-38, +1,KEN,NAIROBI-KENYATTA-AP,-1.32,36.92,20.1,-1.0,0.8,35,-5, +1,KEN,NAKURU,-0.27,36.10,19.8,-1.0,0.6,60,-23, +1,KEN,NYERI,-0.50,36.97,18.4,-1.0,0.9,38,3, +1,KEN,VOI,-3.40,38.57,25.4,-1.6,0.6,34,11, +1,LBY,AGEDABIA,30.72,20.17,23.0,8.3,1.1,25,5, +1,LBY,BENINA,32.10,20.27,22.1,8.0,0.4,29,9, +1,LBY,GHADAMES,30.13,9.50,24.6,10.9,1.2,19,-5, +1,LBY,KUFRA,24.22,23.30,25.5,9.2,1.2,15,10, +1,LBY,MISURATA,32.42,15.05,22.8,7.6,0.7,30,9, +1,LBY,NALUT,31.87,10.98,21.4,9.7,0.9,26,-10, +1,LBY,SEBHA,27.02,14.45,25.1,10.2,1.5,19,9, +1,LBY,SIRTE,31.20,16.58,22.8,7.1,1.0,33,-2, +1,LBY,TRIPOLI-INTL-AP,32.70,13.08,22.9,9.1,1.5,24,3, +1,LBY,ZUARA,32.88,12.08,22.9,8.0,1.1,33,-16, +1,MAR,AGADIR-AL-MASSIRA,30.32,-9.40,22.2,5.7,0.7,24,-8, +1,MAR,AL-HOCEIMA,35.18,-3.85,20.1,6.6,1.0,26,-31, +1,MAR,BENI-MELLAL,32.37,-6.40,22.1,9.4,1.1,22,-26, +1,MAR,CASABLANCA,33.57,-7.67,20.3,5.9,0.7,27,-17, +1,MAR,ERRACHIDIA,31.93,-4.40,22.2,11.5,0.8,20,-18, +1,MAR,ESSAOUIRA,31.52,-9.78,20.3,3.3,0.9,29,-3, +1,MAR,FES-SAIS,33.93,-4.98,19.5,9.1,0.9,28,-27, +1,MAR,MARRAKECH,31.62,-8.03,22.8,8.7,1.5,23,-30, +1,MAR,MEKNES,33.88,-5.53,19.7,8.5,-1.0,23,45, +1,MAR,MIDELT,32.68,-4.73,18.1,9.8,1.1,24,-21, +1,MAR,NADOR-AROUI,34.98,-3.02,20.5,6.9,1.4,30,-21, +1,MAR,NOUASSEUR,33.37,-7.58,19.8,6.4,0.8,28,-12, +1,MAR,OUARZAZATE,30.93,-6.90,21.5,10.0,1.5,18,-31, +1,MAR,OUJDA,34.78,-1.93,19.2,8.1,1.2,29,-34, +1,MAR,RABAT-SALE,34.05,-6.77,19.6,6.1,0.7,27,-9, +1,MAR,SAFI,32.28,-9.23,20.7,5.9,0.9,30,-24, +1,MAR,SIDI-IFNI,29.37,-10.18,21.2,2.4,0.7,26,11, +1,MAR,TAN-TAN,28.45,-11.15,20.6,3.6,0.5,44,2, +1,MAR,TANGER(AERODROME),35.73,-5.90,19.6,6.7,0.6,28,-29, +1,MAR,TAZA,34.22,-4.00,21.3,9.7,1.7,23,-36, +1,MAR,TETUAN-SANIA-RAMEL,35.58,-5.33,20.4,6.7,-0.8,28,53, +1,MDG,ANTANANARIVO-IVATO,-18.80,47.48,19.5,-3.3,0.9,21,18, +1,MDG,MAHAJANGA,-15.67,46.35,27.0,-1.8,0.7,34,24, +1,MDG,TAOLAGNARO,-25.03,46.95,24.0,-2.9,0.3,23,20, +1,MDG,TOAMASINA,-18.12,49.40,24.7,-3.2,0.2,33,-13, +1,MLI,BAMAKO-SENOU,12.53,-7.95,28.3,2.7,2.0,-51,16, +1,MLI,MOPTI,14.52,-4.10,30.9,3.9,2.3,-9,21, +1,MOZ,MAPUTO-MAVALANE,-25.92,32.57,24.0,-3.6,0.7,26,-8, +1,MRT,NOUADHIBOU,20.93,-17.03,23.7,2.2,0.6,54,-17, +1,MRT,NOUAKCHOTT,18.10,-15.95,27.3,3.5,1.5,42,-4, +1,MUS,AGALEGA,-10.43,56.75,27.3,-1.8,0.2,38,15, +1,MUS,PLAISANCE(MAURITIU),-20.43,57.68,24.4,-2.8,0.0,36,-7, +1,MUS,RODRIGUES,-19.68,63.42,24.8,-2.4,0.4,47,-8, +1,MUS,ST-BRANDON(ST-RA),-16.45,59.62,26.0,-1.8,0.2,43,-25, +1,MUS,VACOAS(MAURITIUS),-20.30,57.50,23.3,-3.0,0.1,32,15, +1,MYT,DZAOUDZI-PAMANZI(M),-12.80,45.28,26.9,-1.6,1.0,48,35, +1,NAM,GROOTFONTEIN,-19.60,18.12,24.0,-4.3,1.4,-7,10, +1,NAM,LUDERITZ(DIAZ-POIN),-26.63,15.10,17.9,-2.4,-0.2,29,4, +1,NAM,RUNDU,-17.92,19.77,25.3,-4.4,2.4,-9,9, +1,NAM,WINDHOEK,-22.57,17.10,22.8,-5.5,1.4,-4,9, +1,NER,AGADEZ,16.97,7.98,29.3,6.6,2.4,6,17, +1,NER,BIRNI-NKONNI,13.80,5.25,30.8,3.6,2.6,-15,20, +1,NER,MAGARIA,12.98,8.93,28.9,4.7,2.9,-7,18, +1,NER,MAINE-SOROA,13.23,11.98,29.1,4.8,2.8,-6,23, +1,NER,MARADI,13.47,7.08,29.7,4.4,2.5,-10,15, +1,NER,NIAMEY-AERO,13.48,2.17,31.0,3.0,2.8,-18,19, +1,NER,TAHOUA,14.90,5.25,30.6,4.1,2.6,-11,19, +1,NER,TILLABERY,14.20,1.45,31.8,3.5,2.7,-11,20, +1,NER,ZINDER,13.78,8.98,29.7,4.5,2.9,-10,18, +1,REU,SAINT-DENIS-GILLOT,-20.88,55.52,25.5,-3.4,0.4,29,6, +1,SEN,CAP-SKIRRING,12.40,-16.75,26.9,1.7,0.6,35,9, +1,SEN,DAKAR-YOFF,14.73,-17.50,26.7,3.7,0.6,55,25, +1,SEN,DIOURBEL,14.65,-16.23,31.2,2.8,1.4,10,21, +1,SEN,KAOLACK,14.13,-16.07,31.0,2.3,1.7,13,17, +1,SEN,LINGUERE,15.38,-15.12,32.0,3.3,1.5,-2,23, +1,SEN,MATAM,15.65,-13.25,32.2,4.3,2.3,-11,21, +1,SEN,PODOR,16.65,-14.97,30.6,4.2,1.9,8,20, +1,SEN,SAINT-LOUIS,16.05,-16.45,26.8,3.5,0.9,51,-4, +1,SEN,TAMBACOUNDA,13.77,-13.68,29.9,2.8,1.7,-45,24, +1,SEN,ZIGUINCHOR,12.55,-16.27,27.8,1.6,0.9,13,27, +1,SHN,WIDE-AWAKE-FIELD(A),-7.97,-14.40,25.6,-1.9,0.1,96,-15, +1,SYC,SEYCHELLES-INTL-AP,-4.67,55.52,27.7,-1.1,0.7,45,12, +1,TCD,NDJAMENA,12.13,15.03,30.5,3.3,3.0,-17,23, +1,TGO,LOME,6.17,1.25,27.6,-1.7,0.7,54,27, +1,TUN,BIZERTE,37.25,9.80,20.1,8.4,0.9,31,-32, +1,TUN,DJERBA-MELLITA,33.87,10.77,22.8,8.1,1.1,32,-13, +1,TUN,GABES,33.88,10.10,22.3,8.4,1.1,29,-16, +1,TUN,GAFSA,34.42,8.82,21.4,10.4,0.7,22,-22, +1,TUN,JENDOUBA,36.48,8.80,21.0,9.9,1.0,26,-41, +1,TUN,KAIROUAN,35.67,10.10,22.7,9.5,1.0,27,-31, +1,TUN,KELIBIA,36.85,11.08,20.3,7.9,-0.7,33,52, +1,TUN,MEDENINE,33.35,10.48,22.8,9.5,1.5,25,-12, +1,TUN,MONASTIR-SKANES,35.67,10.75,21.7,8.4,1.0,32,-27, +1,TUN,REMADA,32.32,10.40,22.8,9.6,1.4,24,-8, +1,TUN,SFAX-EL-MAOU,34.72,10.68,21.8,8.8,0.9,27,-21, +1,TUN,SIDI-BOUZID,35.00,9.48,21.8,10.1,0.7,23,-34, +1,TUN,TABARKA,36.95,8.75,20.3,8.0,0.9,28,-38, +1,TUN,THALA,35.55,8.68,16.1,9.9,-0.1,26,1, +1,TUN,TOZEUR,33.92,8.17,23.6,10.3,1.2,22,-22, +1,TUN,TUNIS-CARTHAGE,36.83,10.23,20.9,8.6,-0.1,30,4, +1,TZA,DAR-ES-SALAAM-AP,-6.87,39.20,25.9,-1.8,-0.1,38,-7, +1,ZAF,BETHLEHEM,-28.25,28.33,15.2,-5.9,1.3,12,0, +1,ZAF,BLOEMFONTEIN-AP,-29.10,26.30,18.4,-7.9,1.1,8,-5, +1,ZAF,CAPE-COLUMBINE,-32.83,17.85,17.2,-3.2,0.4,22,-22, +1,ZAF,CAPE-TOWN-INTL-AP,-33.97,18.60,18.8,-5.2,0.1,17,15, +1,ZAF,DE-AAR,-30.65,24.00,19.5,-7.8,0.7,12,-17, +1,ZAF,DURBAN-INTL-AP,-29.97,30.95,21.8,-3.5,0.8,27,-14, +1,ZAF,EAST-LONDON,-33.03,27.83,19.4,-3.4,0.5,32,-16, +1,ZAF,GEORGE-AP,-34.02,22.38,17.0,-3.7,0.0,27,11, +1,ZAF,GOUGH-ISLAND,-40.35,-9.88,12.8,-3.0,-0.2,38,34, +1,ZAF,KIMBERLEY,-28.80,24.77,20.8,-8.0,1.5,8,-13, +1,ZAF,MARION-ISLAND,-46.88,37.87,7.4,-2.3,-0.1,42,12, +1,ZAF,MOSSEL-BAY(CAPE-ST),-34.18,22.15,18.3,-3.2,-0.6,34,36, +1,ZAF,PIETERSBURG,-23.83,29.42,20.9,-4.9,1.1,9,-11, +1,ZAF,PORT-ELIZABETH,-33.98,25.62,18.4,-3.6,0.0,28,8, +1,ZAF,PRETORIA,-25.73,28.18,19.9,-5.2,1.5,6,-7, +1,ZAF,SPRINGBOK,-29.67,17.90,19.4,-6.2,0.9,21,3, +1,ZAF,UPINGTON,-28.40,21.27,22.6,-8.1,1.0,14,-10, +1,ZWE,BEITBRIDGE,-22.22,30.00,26.5,-5.5,1.4,4,-1, +1,ZWE,BULAWAYO-AP,-20.02,28.62,21.9,-4.0,1.6,-4,4, +1,ZWE,GWERU,-19.45,29.85,18.6,-3.5,1.3,-3,3, +1,ZWE,HARARE(KUTSAGA),-17.92,31.13,20.1,-3.2,1.5,-2,12, +1,ZWE,KAROI,-16.83,29.62,20.2,-2.9,2.0,-10,18, +1,ZWE,MASVINGO,-20.07,30.87,21.5,-4.3,1.4,-3,6, +1,ZWE,RUSAPE,-18.53,32.13,18.9,-3.7,1.1,-7,10, +2,,BASE ARTURO PRAT,-62.50,-59.68,-0.9,-2.3,0.5,29,25, +2,,BERNARDO O`HIGGINS,-63.32,-57.90,-1.9,-3.6,1.0,27,18, +2,,CASEY,-66.28,110.52,-7.5,-6.4,-2.5,16,11, +2,,DAVIS,-68.58,77.95,-8.4,-8.0,-2.9,17,6, +2,,FREI CHI BASE,-62.18,-58.98,-1.2,-2.5,0.4,38,22, +2,,HALLEY,-75.50,-26.65,-16.1,-9.6,-2.3,15,7, +2,,NEUMAYER,-70.67,-8.25,-13.1,-8.3,-2.1,25,0, +3,ARE,ABU-DHABI-BATEEN-AP,24.43,54.47,29.1,7.9,0.5,27,-1, +3,ARE,ABU-DHABI-INTL-AP,24.43,54.65,29.2,8.0,0.9,24,6, +3,ARE,AL-AIN-INTL-AP,24.27,55.60,30.0,9.1,0.9,22,15, +3,ARE,DUBAI-INTL-AP,25.25,55.33,29.3,7.9,0.6,25,8, +3,ARE,SHARJAH-INTL-AP,25.33,55.52,28.7,8.3,0.6,24,7, +3,BHR,BAHRAIN-INTL-AP,26.27,50.65,28.2,8.8,0.9,27,24, +3,CHN,ABAG-QI,44.02,114.95,5.3,16.5,0.2,24,8, +3,CHN,AIHUI,50.25,127.45,4.7,14.0,-1.8,30,30, +3,CHN,AKQI,40.93,78.45,9.8,13.6,1.0,19,23, +3,CHN,ALAR,40.50,81.05,14.2,17.2,2.3,15,15, +3,CHN,ALTAY,47.73,88.08,7.3,14.7,-1.9,28,7, +3,CHN,ANDA,46.38,125.32,7.7,15.0,-1.6,26,13, +3,CHN,ANDIR,37.93,83.65,14.3,16.8,1.1,14,6, +3,CHN,ANKANG,32.72,109.03,17.6,10.9,0.5,18,-18, +3,CHN,ANQING,30.53,117.05,18.7,11.1,0.7,23,3, +3,CHN,ANYANG,36.05,114.40,15.8,12.9,1.2,18,1, +3,CHN,ARXAN,47.17,119.93,1.9,11.9,-0.2,29,1, +3,CHN,BACHU,39.80,78.57,15.2,16.6,2.7,15,9, +3,CHN,BAILING-MIAO,41.70,110.43,8.4,15.5,-1.0,23,17, +3,CHN,BAINGOIN,31.37,90.02,1.8,6.5,1.3,38,-46, +3,CHN,BAISE,23.90,106.60,23.2,7.0,1.1,19,16, +3,CHN,BALGUNTAY,42.67,86.33,9.8,14.8,0.8,18,9, +3,CHN,BAODING,38.85,115.57,14.9,14.4,1.2,19,7, +3,CHN,BAOJI,34.35,107.13,15.2,12.4,1.0,18,7, +3,CHN,BAOQING,46.32,132.18,7.2,14.4,-1.7,29,19, +3,CHN,BAOSHAN,25.12,99.18,18.2,6.3,0.9,21,2, +3,CHN,BARKAM,31.90,102.23,11.3,8.5,1.2,14,-10, +3,CHN,BATANG,30.00,99.10,15.7,7.9,0.8,15,2, +3,CHN,BAYAN-MOD,40.75,104.50,10.6,16.6,0.0,18,-3, +3,CHN,BAYANBULAK,43.03,84.15,0.2,9.3,1.1,30,38, +3,CHN,BAYTIK-SHAN,45.37,90.53,6.0,13.2,-1.4,25,27, +3,CHN,BEIHAI,21.48,109.10,23.7,6.4,1.0,25,24, +3,CHN,BEIJING,39.93,116.28,13.9,14.4,1.3,18,7, +3,CHN,BENGBU,32.95,117.37,17.5,11.6,1.0,23,14, +3,CHN,BENXI,41.32,123.78,10.2,14.7,-0.6,25,-5, +3,CHN,BIJIE,27.30,105.23,14.9,9.0,0.8,22,18, +3,CHN,BOXIAN,33.88,115.77,16.9,12.1,1.0,20,4, +3,CHN,BUGT(BAOGUOTU),42.33,120.70,9.2,14.1,-1.0,25,9, +3,CHN,BUGT(BOKETU),48.77,121.92,3.3,12.1,-1.3,29,35, +3,CHN,CANGZHOU,38.33,116.83,14.7,13.9,1.0,21,8, +3,CHN,CHANG-DAO,37.93,120.72,13.4,12.7,1.2,31,22, +3,CHN,CHANGBAI,41.35,128.17,5.8,13.1,-1.8,31,31, +3,CHN,CHANGCHUN,43.90,125.22,8.7,14.4,-1.2,26,7, +3,CHN,CHANGDE,29.05,111.68,19.1,10.4,0.3,24,4, +3,CHN,CHANGLING,44.25,123.97,8.3,14.9,-1.4,28,8, +3,CHN,CHANGSHA,28.23,112.87,18.9,10.8,0.8,27,9, +3,CHN,CHANGTING,25.85,116.37,20.4,9.3,1.3,21,9, +3,CHN,CHAOYANG,41.55,120.45,11.3,15.2,0.8,22,32, +3,CHN,CHENGDE,40.98,117.95,12.0,15.1,0.5,19,8, +3,CHN,CHENGDU,30.67,104.02,18.1,9.4,0.8,20,24, +3,CHN,CHENGSHANTOU,37.40,122.68,12.8,10.9,0.9,37,-3, +3,CHN,CHENZHOU,25.80,113.03,20.2,10.1,1.2,25,24, +3,CHN,CHIFENG,42.27,118.97,10.4,16.1,-0.3,22,1, +3,CHN,CHONGQING,29.58,106.47,20.0,9.7,1.0,21,-7, +3,CHN,CHUXIONG,25.02,101.52,18.0,5.9,1.2,8,0, +3,CHN,DA-QAIDAM,37.85,95.37,6.3,12.5,-1.5,25,32, +3,CHN,DACHEN-DAO,28.45,121.88,18.1,9.1,0.3,38,16, +3,CHN,DALIAN,38.90,121.63,12.1,13.3,1.4,28,8, +3,CHN,DALI,25.70,100.18,17.3,5.9,0.7,16,15, +3,CHN,DANDONG,40.05,124.33,10.5,13.9,0.5,27,-11, +3,CHN,DANXIAN,19.52,109.58,24.9,4.7,1.3,14,22, +3,CHN,DAOCHENG,29.05,100.30,7.0,8.8,0.8,27,28, +3,CHN,DARLAG,33.75,99.65,1.4,7.2,1.0,33,-22, +3,CHN,DATONG,40.10,113.33,10.6,15.6,0.1,19,10, +3,CHN,DAWU,30.98,101.12,11.3,8.4,1.2,15,-3, +3,CHN,DAXIAN,31.20,107.50,18.9,9.7,0.9,23,8, +3,CHN,DEGE,31.80,98.57,8.6,8.8,0.9,20,1, +3,CHN,DELINGHA,37.37,97.37,8.3,12.4,-0.5,20,47, +3,CHN,DENGQEN,31.42,95.60,6.5,9.1,0.0,24,12, +3,CHN,DEQEN,28.45,98.88,7.7,8.6,0.5,26,35, +3,CHN,DINGHAI,30.03,122.12,18.0,10.0,0.3,35,0, +3,CHN,DINGTAO,35.07,115.57,16.0,12.3,1.3,18,1, +3,CHN,DONGFANG,19.10,108.62,26.0,4.6,1.2,21,26, +3,CHN,DONGSHENG,39.83,109.98,9.8,14.5,-0.5,21,-1, +3,CHN,DONGTAI,32.85,120.28,16.4,11.5,0.5,27,6, +3,CHN,DULAN,36.30,98.10,7.1,11.1,-0.9,22,30, +3,CHN,DUNHUANG,40.15,94.68,13.2,17.0,1.1,17,37, +3,CHN,DUNHUA,43.37,128.20,6.6,13.8,-1.8,31,22, +3,CHN,DUOLUN,42.18,116.47,5.8,12.8,-1.8,29,30, +3,CHN,DUSHAN,25.83,107.55,16.8,8.2,1.0,24,21, +3,CHN,EJIN-QI,41.95,101.07,11.7,18.5,0.4,18,8, +3,CHN,EMEI-SHAN,29.52,103.33,6.0,7.5,-0.8,28,2, +3,CHN,ENSHI,30.28,109.47,18.4,9.9,0.6,22,6, +3,CHN,ERENHOT,43.65,112.00,8.0,17.4,-0.8,24,25, +3,CHN,FANGXIAN,32.03,110.77,16.8,11.1,0.5,20,11, +3,CHN,FENGJIE,31.02,109.53,18.4,9.8,0.9,23,2, +3,CHN,FENGNING,41.22,116.63,9.5,14.1,-0.8,23,0, +3,CHN,FOGANG,23.87,113.53,22.5,7.5,1.2,28,26, +3,CHN,FUDING,27.33,120.20,20.1,9.0,0.2,30,-6, +3,CHN,FUJIN,47.23,131.98,6.4,14.5,-1.8,31,27, +3,CHN,FUYANG,32.87,115.73,16.9,11.9,0.6,23,4, +3,CHN,FUYUN,46.98,89.52,7.1,17.9,-0.5,25,10, +3,CHN,FUZHOU,26.08,119.28,21.3,8.5,-0.1,33,-11, +3,CHN,GANGCA,37.33,100.13,2.5,8.0,1.4,33,-34, +3,CHN,GANYU,34.83,119.13,15.3,12.0,0.8,27,6, +3,CHN,GANZHOU,25.87,115.00,20.7,9.8,1.0,27,5, +3,CHN,GAOYAO,23.05,112.47,23.4,7.4,1.3,27,17, +3,CHN,GARZE,31.62,100.00,8.6,8.7,0.8,21,17, +3,CHN,GENGMA,23.55,99.40,21.8,5.4,1.2,10,13, +3,CHN,GOLMUD,36.42,94.90,9.2,12.8,0.4,19,-20, +3,CHN,GUAIZIHU,41.37,102.37,12.1,18.1,-0.1,18,7, +3,CHN,GUANGCHANG,26.85,116.33,20.2,10.2,1.4,22,0, +3,CHN,GUANGHUA,32.38,111.67,17.7,11.1,0.7,23,13, +3,CHN,GUANGNAN,24.07,105.07,18.3,6.8,1.5,14,11, +3,CHN,GUANGZHOU,23.17,113.33,23.8,6.9,1.3,28,21, +3,CHN,GUILIN,25.33,110.30,20.3,9.6,1.2,28,19, +3,CHN,GUIPING,23.40,110.08,23.6,7.3,0.9,29,22, +3,CHN,GUIYANG,26.58,106.73,16.4,8.7,1.1,23,18, +3,CHN,GUSHI,32.17,115.67,17.3,11.8,0.6,23,16, +3,CHN,HAIKOU,20.03,110.35,25.0,4.8,1.0,21,27, +3,CHN,HAILAR,49.22,119.75,3.8,13.8,-1.3,29,21, +3,CHN,HAILS,41.45,106.38,8.4,15.5,-0.9,21,18, +3,CHN,HAILUN,47.43,126.97,5.8,14.5,-1.7,29,26, +3,CHN,HAIYANG-DAO,39.05,123.22,12.5,12.9,1.1,31,6, +3,CHN,HAIYANG,36.77,121.17,13.8,12.0,0.8,29,6, +3,CHN,HALIUT,41.57,108.52,9.0,16.1,-0.9,21,18, +3,CHN,HAMI,42.82,93.52,13.2,18.6,1.4,15,26, +3,CHN,HANGZHOU,30.23,120.17,18.2,11.1,0.8,27,-5, +3,CHN,HANZHONG,33.07,107.03,16.3,10.6,0.5,20,-5, +3,CHN,HARBIN,45.75,126.77,7.7,14.7,-1.8,27,18, +3,CHN,HECHI,24.70,108.05,22.4,7.9,0.6,27,14, +3,CHN,HEFEI,31.87,117.23,17.5,11.7,0.6,23,9, +3,CHN,HENAN,34.73,101.60,2.6,7.9,1.3,34,-37, +3,CHN,HEQU,39.38,111.15,12.0,16.3,0.1,18,8, +3,CHN,HEYUAN,23.80,114.73,23.2,7.2,1.3,30,12, +3,CHN,HEZUO,35.00,102.90,5.5,9.7,-1.1,27,32, +3,CHN,HOBOKSAR,46.78,85.72,7.2,14.8,-1.0,26,20, +3,CHN,HOHHOT,40.82,111.68,10.2,15.8,-0.5,20,4, +3,CHN,HOTAN,37.13,79.93,16.3,15.4,1.9,12,0, +3,CHN,HUA-SHAN,34.48,110.08,8.6,10.6,-0.9,24,-26, +3,CHN,HUADE,41.90,114.00,6.6,14.9,-0.9,24,30, +3,CHN,HUADIAN,42.98,126.75,8.2,15.0,-1.7,26,15, +3,CHN,HUAILAI,40.40,115.50,12.0,14.4,0.6,19,39, +3,CHN,HUAJIALING,35.38,105.00,5.5,9.7,-1.1,30,25, +3,CHN,HUANG-SHAN,30.13,118.15,10.4,9.4,0.7,25,21, +3,CHN,HUILI,26.65,102.25,17.2,6.7,0.9,15,7, +3,CHN,HUIMIN,37.50,117.53,14.3,13.9,1.2,20,3, +3,CHN,HUIZE,26.42,103.28,14.6,6.5,1.0,14,2, +3,CHN,HULIN,45.77,132.97,6.7,14.1,-1.8,31,29, +3,CHN,HUMA,51.72,126.65,4.1,14.7,-1.6,28,29, +3,CHN,HUOSHAN,31.40,116.33,17.3,11.2,0.5,21,7, +3,CHN,JARTAI,39.78,105.75,11.4,17.6,1.2,21,44, +3,CHN,JARUD-QI,44.57,120.90,9.7,16.5,-1.0,22,7, +3,CHN,JI'AN(JIANGXI),27.12,114.97,20.2,10.4,1.1,23,1, +3,CHN,JI'AN(JILIN),41.10,126.15,9.8,15.0,-1.0,27,11, +3,CHN,JIANGCHENG,22.62,101.82,20.5,4.8,1.2,13,5, +3,CHN,JIANGLING,30.33,112.18,18.3,10.8,0.6,25,15, +3,CHN,JIEXIU,37.03,111.92,14.8,14.0,1.0,15,9, +3,CHN,JINAN,36.60,117.05,16.2,12.8,0.9,18,11, +3,CHN,JINGDEZHEN,29.30,117.20,19.4,10.8,1.1,25,-1, +3,CHN,JINGHE,44.62,82.90,12.1,18.6,-1.1,21,-35, +3,CHN,JINGHONG,22.00,100.78,24.5,3.9,1.8,1,2, +3,CHN,JINING,41.03,113.07,7.1,13.0,-1.9,26,13, +3,CHN,JINZHOU,41.13,121.12,11.3,14.6,0.5,24,32, +3,CHN,JIULONG,29.00,101.50,11.2,6.4,0.9,17,10, +3,CHN,JIUQUAN,39.77,98.48,10.8,16.1,0.1,21,2, +3,CHN,JIUXIAN-SHAN,25.72,118.10,13.9,6.6,0.4,22,5, +3,CHN,JIXI,45.28,130.95,7.0,14.3,-2.1,30,22, +3,CHN,JURH,42.40,112.90,8.2,16.1,-1.3,23,22, +3,CHN,KABA-HE,48.05,86.35,7.6,14.7,-1.7,29,11, +3,CHN,KANGDING,30.05,101.97,8.6,8.5,0.9,23,13, +3,CHN,KARAMAY,45.60,84.85,11.2,19.2,0.2,21,7, +3,CHN,KASHI,39.47,75.98,15.4,15.2,1.7,15,6, +3,CHN,KESHAN,48.05,125.88,5.8,14.7,-1.8,28,26, +3,CHN,KORLA,41.75,86.13,15.0,16.6,1.2,13,5, +3,CHN,KUANDIAN,40.72,124.78,9.4,14.1,-1.2,27,15, +3,CHN,KUNMING,25.02,102.68,16.6,5.8,1.1,13,2, +3,CHN,KUQA,41.72,82.95,14.4,16.1,1.6,14,8, +3,CHN,LANCANG,22.57,99.93,21.7,4.8,1.4,11,13, +3,CHN,LANGZHONG,31.58,105.97,18.9,9.8,0.5,20,2, +3,CHN,LANZHOU,36.05,103.88,14.7,13.1,1.9,14,-3, +3,CHN,LENGHU,38.83,93.38,6.6,13.5,-1.1,23,29, +3,CHN,LETING,39.43,118.90,12.6,13.9,0.9,22,9, +3,CHN,LHASA,29.67,91.13,10.4,9.2,1.6,19,7, +3,CHN,LHUNZE,28.42,92.47,8.0,8.8,1.3,26,25, +3,CHN,LIANGPING,30.68,107.80,18.3,9.7,0.7,22,-10, +3,CHN,LIANPING,24.37,114.48,22.0,7.8,1.1,26,22, +3,CHN,LIANXIAN,24.78,112.38,21.5,9.2,1.2,26,19, +3,CHN,LIJING,26.83,100.47,14.5,5.6,0.4,12,6, +3,CHN,LINCANG,23.95,100.22,19.6,5.1,1.1,12,5, +3,CHN,LINDONG,43.98,119.40,8.2,14.5,-1.6,24,6, +3,CHN,LINGLING,26.23,111.62,19.4,10.2,1.1,27,16, +3,CHN,LINGXIAN,37.33,116.57,15.1,13.1,0.9,19,7, +3,CHN,LINHAI,28.85,121.13,20.2,10.3,0.6,29,4, +3,CHN,LINHE,40.77,107.40,12.2,16.5,0.1,18,2, +3,CHN,LINJIANG,41.72,126.92,9.2,15.2,-1.2,26,19, +3,CHN,LINXI,43.60,118.07,7.7,14.1,-1.6,28,16, +3,CHN,LINYI,35.05,118.35,15.4,12.5,0.8,23,3, +3,CHN,LISHI,37.50,111.10,12.0,14.5,1.3,19,30, +3,CHN,LISHUI,28.45,119.92,20.1,10.5,0.7,26,-5, +3,CHN,LITANG,30.00,100.27,6.2,7.6,0.6,23,-4, +3,CHN,LIUZHOU,24.35,109.40,22.2,8.4,0.7,31,18, +3,CHN,LIYANG,31.43,119.48,17.7,11.4,0.7,25,8, +3,CHN,LONGKOU,37.62,120.32,14.0,13.2,1.3,27,25, +3,CHN,LONGZHOU,22.37,106.75,23.8,6.3,1.3,25,25, +3,CHN,LU-SHAN,29.58,115.98,13.9,9.5,0.2,25,9, +3,CHN,LUODIAN,25.43,106.77,21.7,7.9,0.8,19,15, +3,CHN,LUSHI,34.05,111.03,14.5,11.9,0.8,19,1, +3,CHN,LUSI,32.07,121.60,16.7,10.7,0.5,32,-10, +3,CHN,LUXI,24.53,103.77,16.6,6.5,1.3,14,17, +3,CHN,LUZHOU,28.88,105.43,19.6,9.1,0.8,21,1, +3,CHN,MACHENG,31.18,114.97,18.6,11.3,0.4,25,9, +3,CHN,MADOI,34.92,98.22,-1.2,6.9,-0.2,31,13, +3,CHN,MANDAL,42.53,110.13,8.5,16.3,-1.2,22,22, +3,CHN,MANGNAI,38.25,90.85,6.9,12.9,-1.1,23,35, +3,CHN,MAZONG-SHAN,41.80,97.03,7.9,15.1,-1.2,22,24, +3,CHN,MEIXIAN,24.30,116.12,22.8,7.8,1.5,25,12, +3,CHN,MENGJIN,34.82,112.43,15.8,12.1,1.1,22,20, +3,CHN,MENGLA,21.50,101.58,23.5,3.9,1.6,8,8, +3,CHN,MENGSHAN,24.20,110.52,21.6,8.0,1.2,25,11, +3,CHN,MENGZI,23.38,103.38,20.3,4.7,1.1,11,6, +3,CHN,MIANYANG,31.45,104.73,18.2,9.3,0.7,20,8, +3,CHN,MINQIN,38.63,103.08,11.4,15.9,0.9,19,29, +3,CHN,MOHE,52.13,122.52,1.7,12.7,-0.8,29,17, +3,CHN,MUDANJIANG,44.57,129.60,7.5,14.5,-1.6,29,20, +3,CHN,NAGQU,31.48,92.07,1.0,6.9,1.0,34,-32, +3,CHN,NANCHANG,28.60,115.92,19.5,10.4,1.0,25,3, +3,CHN,NANCHENG,27.58,116.65,19.4,10.5,1.0,22,1, +3,CHN,NANCHONG,30.80,106.08,18.9,9.9,0.8,20,4, +3,CHN,NANJING,32.00,118.80,17.1,11.5,0.6,26,-1, +3,CHN,NANNING,22.63,108.22,23.1,7.3,1.2,24,16, +3,CHN,NANPING,26.63,118.00,21.5,8.6,0.8,24,-5, +3,CHN,NANYANG,33.03,112.58,16.6,11.9,0.6,20,15, +3,CHN,NANYUE,27.30,112.70,13.9,9.2,1.0,24,25, +3,CHN,NAPO,23.30,105.95,20.3,6.2,0.8,19,15, +3,CHN,NARAN-BULAG,44.62,114.15,4.9,16.5,1.4,25,-30, +3,CHN,NEIJIANG,29.58,105.05,19.3,8.9,0.6,21,-4, +3,CHN,NENJIANG,49.17,125.23,4.7,14.2,-1.7,29,25, +3,CHN,NYINGCHI,29.57,94.47,11.3,7.3,0.9,24,0, +3,CHN,OTOG-QI,39.10,107.98,10.0,15.7,-0.2,20,5, +3,CHN,PAGRI,27.73,89.08,1.9,5.9,1.0,39,-30, +3,CHN,PINGLIANG,35.55,106.67,10.9,12.6,0.8,21,35, +3,CHN,PINGTAN,25.52,119.78,20.9,8.1,-0.1,40,0, +3,CHN,PINGWU,32.42,104.52,17.4,9.5,0.7,18,1, +3,CHN,PISHAN,37.62,78.28,15.1,16.4,1.8,14,10, +3,CHN,PUCHENG,27.92,118.53,19.2,9.5,1.0,24,6, +3,CHN,QAMDO,31.15,97.17,10.3,9.3,1.0,20,8, +3,CHN,QIAN-GORLOS,45.08,124.87,8.7,14.9,-1.5,26,15, +3,CHN,QINGDAO,36.07,120.33,14.3,11.3,1.1,31,-9, +3,CHN,QINGJIANG,33.60,119.03,16.1,11.6,0.8,26,7, +3,CHN,QINGLONG,40.40,118.95,11.2,14.8,0.6,21,41, +3,CHN,QINGYUAN,42.10,124.95,8.7,14.6,-1.3,25,17, +3,CHN,QINZHOU,21.95,108.62,23.3,7.0,1.7,27,21, +3,CHN,QIONGHAI,19.23,110.47,25.4,4.7,1.0,17,17, +3,CHN,QIQIHAR,47.38,123.92,7.0,14.7,-1.6,28,25, +3,CHN,QITAI,44.02,89.57,8.8,17.9,0.5,24,3, +3,CHN,QUMARLEB,34.13,95.78,0.6,6.9,0.2,34,8, +3,CHN,QUXIAN,28.97,118.87,18.9,10.5,0.5,26,-1, +3,CHN,RIZHAO,35.43,119.53,14.5,11.6,1.1,30,0, +3,CHN,RONGJIANG,25.97,108.53,20.5,8.9,0.9,23,19, +3,CHN,RUILI,24.02,97.83,22.4,5.0,1.5,11,11, +3,CHN,RUOERGAI,33.58,102.97,3.9,8.4,-1.3,33,36, +3,CHN,RUOQIANG,39.03,88.17,15.4,17.3,1.7,15,16, +3,CHN,SANGZHI,29.40,110.17,18.6,10.1,0.4,23,6, +3,CHN,SANHU-DAO,16.53,111.62,27.6,2.7,0.9,12,31, +3,CHN,SANSUI,26.97,108.67,16.6,9.9,0.6,24,27, +3,CHN,SERTAR,32.28,100.33,3.3,8.0,1.1,34,-40, +3,CHN,SHACHE,38.43,77.27,14.7,16.2,1.9,14,18, +3,CHN,SHANGCHUAN-DAO,21.73,112.77,23.5,6.3,-0.1,30,-8, +3,CHN,SHANGHAI-HONGQIAO,31.17,121.43,18.3,11.0,0.5,29,-1, +3,CHN,SHANGHAI,31.40,121.47,18.5,10.8,0.9,29,5, +3,CHN,SHANGZHI,45.22,127.97,6.4,14.4,-1.7,28,21, +3,CHN,SHANTOU,23.40,116.68,22.8,6.8,0.7,31,26, +3,CHN,SHANWEI,22.78,115.37,23.1,6.5,1.1,32,24, +3,CHN,SHAOGUAN,24.80,113.58,21.7,8.9,1.2,26,11, +3,CHN,SHAOWU,27.33,117.47,20.2,9.3,1.0,26,-6, +3,CHN,SHAOYANG,27.23,111.47,19.0,10.2,0.6,25,7, +3,CHN,SHENGSI,30.73,122.45,17.6,9.6,0.3,37,2, +3,CHN,SHENGXIAN,29.60,120.82,18.5,10.9,0.7,25,0, +3,CHN,SHENYANG,41.73,123.52,10.3,15.3,-0.5,26,2, +3,CHN,SHENZHEN,22.55,114.10,23.9,6.7,1.2,28,15, +3,CHN,SHEYANG,33.77,120.25,15.6,11.3,0.4,28,2, +3,CHN,SHIJIAZHUANG,38.03,114.42,15.3,14.0,1.3,19,10, +3,CHN,SHIPU,29.20,121.95,17.9,9.7,0.5,35,10, +3,CHN,SHIQUANHE,32.50,80.08,3.1,9.7,-2.1,36,43, +3,CHN,SHISANJIANFANG,43.22,91.73,12.0,17.9,1.2,19,9, +3,CHN,SIMAO,22.77,100.98,20.2,4.6,1.5,7,9, +3,CHN,SINAN,27.95,108.25,19.0,9.5,0.8,24,10, +3,CHN,SIPING,43.18,124.33,9.4,14.6,-1.0,26,7, +3,CHN,SOGXIAN,31.88,93.78,4.7,9.4,-1.4,31,40, +3,CHN,SONGPAN,32.65,103.57,9.8,8.3,0.7,19,-17, +3,CHN,SUIFENHE,44.38,131.15,5.9,12.9,-1.9,31,29, +3,CHN,SUNWU,49.43,127.35,4.0,14.0,-1.4,29,29, +3,CHN,TACHENG,46.73,83.00,9.8,14.4,-0.7,22,-12, +3,CHN,TAI-SHAN,36.25,117.10,7.9,11.1,-0.8,28,10, +3,CHN,TAILAI,46.40,123.42,8.3,15.1,-1.5,26,11, +3,CHN,TAIYUAN,37.78,112.55,12.5,13.9,0.7,18,19, +3,CHN,TANGSHAN,39.67,118.15,13.4,14.3,1.3,21,17, +3,CHN,TENGCHONG,25.12,98.48,17.1,5.4,1.4,22,13, +3,CHN,TIANJIN,39.10,117.17,14.4,14.5,1.4,20,6, +3,CHN,TIANMU-SHAN,30.35,119.42,11.2,9.5,0.0,27,2, +3,CHN,TIANSHUI,34.58,105.75,13.5,12.7,1.3,18,7, +3,CHN,TIKANLIK,40.63,87.70,14.8,17.6,1.5,15,11, +3,CHN,TINGRI,28.63,87.08,6.2,9.6,-0.5,32,7, +3,CHN,TONGDAO,26.17,109.78,18.3,9.6,1.2,23,1, +3,CHN,TONGDE,35.27,100.65,3.4,8.9,-1.4,30,46, +3,CHN,TONGHE,45.97,128.73,6.2,14.4,-1.7,29,30, +3,CHN,TONGLIAO,43.60,122.27,9.6,14.7,-1.3,24,4, +3,CHN,TULIHE,50.45,121.70,1.1,11.8,-1.0,30,6, +3,CHN,TUOTUOHE,34.22,92.43,-0.7,6.5,0.2,32,7, +3,CHN,TURPAN,42.93,89.20,17.8,19.6,2.4,13,9, +3,CHN,ULIASTAI,45.52,116.97,5.3,16.9,1.6,24,-31, +3,CHN,URUMQI,43.80,87.65,9.8,16.9,-0.4,24,1, +3,CHN,WANYUAN,32.07,108.03,16.9,10.3,0.2,20,10, +3,CHN,WEICHANG,41.93,117.75,8.1,13.9,-1.5,26,14, +3,CHN,WEIFANG,36.77,119.18,14.3,12.8,0.9,23,5, +3,CHN,WEINING,26.87,104.28,12.7,6.8,0.9,19,14, +3,CHN,WENZHOU,28.02,120.67,19.7,9.4,0.5,35,31, +3,CHN,WUDAOLIANG,35.22,93.08,-2.4,7.4,0.7,33,43, +3,CHN,WUDU,33.40,104.92,16.8,10.5,1.0,18,7, +3,CHN,WUGANG,26.73,110.63,18.6,10.2,0.9,24,24, +3,CHN,WUHAN,30.62,114.13,18.7,11.7,0.7,23,10, +3,CHN,WUHU,31.33,118.35,17.6,11.4,0.8,24,7, +3,CHN,WUSHAOLING,37.20,102.87,2.1,7.5,-1.1,34,51, +3,CHN,WUTAI-SHAN,38.95,113.52,1.5,8.4,-0.9,31,33, +3,CHN,WUYISHAN,27.77,118.03,20.2,9.3,1.1,26,9, +3,CHN,WUZHOU,23.48,111.30,23.3,7.6,1.2,29,27, +3,CHN,XAINZA,30.95,88.63,2.5,7.2,-1.7,34,48, +3,CHN,XI-UJIMQIN-QI,44.58,117.60,5.5,13.6,-2.0,31,27, +3,CHN,XIAMEN,24.48,118.08,22.4,7.3,0.8,37,41, +3,CHN,XIAN,34.30,108.93,15.7,12.1,0.8,17,-8, +3,CHN,XIAOERGOU,49.20,123.72,4.7,14.6,-1.5,29,27, +3,CHN,XICHANG,27.90,102.27,19.5,6.4,0.9,7,-5, +3,CHN,XIFENGZHEN,35.73,107.63,10.8,12.2,0.5,19,9, +3,CHN,XIGAZE,29.25,88.88,10.3,8.9,1.3,15,-17, +3,CHN,XIHUA,33.78,114.52,16.3,12.3,0.6,20,17, +3,CHN,XILIN-HOT,43.95,116.12,6.2,16.7,-0.2,26,0, +3,CHN,XIN-BARAG-YOUQI,48.67,116.82,4.6,17.5,1.1,24,-33, +3,CHN,XINGREN,25.43,105.18,17.0,7.2,1.3,19,14, +3,CHN,XINGTAI,37.07,114.50,16.3,13.5,1.1,19,7, +3,CHN,XINING,36.62,101.77,9.0,11.7,0.4,19,-5, +3,CHN,XINXIAN,36.23,115.67,15.0,13.1,1.1,20,11, +3,CHN,XINYANG,32.13,114.05,17.1,11.5,0.3,20,7, +3,CHN,XINYI,22.35,110.93,23.9,6.2,1.2,27,26, +3,CHN,XISHA-DAO,16.83,112.33,27.6,2.6,0.7,15,24, +3,CHN,XIUSHUI,29.03,114.58,19.0,10.6,0.8,23,4, +3,CHN,XUNWU,24.95,115.65,20.6,8.5,1.4,23,9, +3,CHN,XUZHOU,34.28,117.15,16.6,12.0,0.8,20,8, +3,CHN,YA'AN,29.98,103.00,17.9,9.3,0.8,19,9, +3,CHN,YAN'AN,36.60,109.50,12.3,13.2,0.8,17,7, +3,CHN,YANCHI,37.80,107.38,11.1,15.3,1.1,20,30, +3,CHN,YANGCHENG,35.48,112.40,14.0,12.5,0.7,19,5, +3,CHN,YANGJIANG,21.87,111.97,23.5,6.1,1.2,29,23, +3,CHN,YANJI,42.87,129.50,8.3,14.3,-1.2,28,25, +3,CHN,YANZHOU,35.57,116.85,15.6,12.6,1.1,20,-7, +3,CHN,YAXIAN,18.23,109.52,27.2,3.4,1.0,15,23, +3,CHN,YIBIN,28.80,104.60,20.0,9.0,0.8,20,6, +3,CHN,YICHANG,30.70,111.30,18.7,10.7,0.4,25,7, +3,CHN,YICHUN(HEILONGJ),47.72,128.90,5.5,14.2,-1.5,28,29, +3,CHN,YICHUN(JIANGXI),27.80,114.38,18.8,10.4,0.6,24,-4, +3,CHN,YINCHUAN,38.47,106.20,12.6,15.4,1.1,17,27, +3,CHN,YINGKOU,40.67,122.20,11.3,14.6,0.2,25,-7, +3,CHN,YINING,43.95,81.33,11.3,14.3,0.9,22,34, +3,CHN,YIWU,43.27,94.70,6.6,14.6,-0.9,25,24, +3,CHN,YIYUAN,36.18,118.15,14.1,13.5,1.5,20,16, +3,CHN,YONGAN,25.97,117.35,21.0,8.7,1.0,23,13, +3,CHN,YOUYANG,28.83,108.77,17.1,9.3,0.2,24,6, +3,CHN,YUANJIANG,23.60,101.98,25.6,5.4,1.5,8,5, +3,CHN,YUANLING,28.47,110.40,18.6,9.9,0.6,24,7, +3,CHN,YUANMOU,25.73,101.87,22.8,5.6,1.7,6,-2, +3,CHN,YUANPING,38.75,112.70,11.5,14.2,0.9,20,46, +3,CHN,YUEYANG,29.38,113.08,18.9,10.8,0.5,26,29, +3,CHN,YULIN,38.23,109.70,11.7,16.2,0.6,19,31, +3,CHN,YUMENZHEN,40.27,97.03,10.1,15.9,-0.9,22,-26, +3,CHN,YUNCHENG,35.05,111.05,15.8,13.2,0.9,17,2, +3,CHN,YUSHE,37.07,112.98,11.1,13.7,0.8,21,33, +3,CHN,YUSHU,33.02,97.02,6.4,9.8,-1.0,23,27, +3,CHN,YUXIAN,39.83,114.57,10.4,14.8,0.1,21,5, +3,CHN,ZADOI,32.90,95.30,2.8,9.1,1.6,34,-34, +3,CHN,ZAOYANG,32.15,112.67,17.7,11.1,0.8,25,14, +3,CHN,ZHANG-PING,25.30,117.40,22.5,7.7,1.0,26,8, +3,CHN,ZHANGJIAKOU,40.78,114.88,11.1,14.7,0.0,22,9, +3,CHN,ZHANGWU,42.42,122.53,10.4,14.7,-0.5,25,0, +3,CHN,ZHANGYE,38.93,100.43,11.4,15.2,0.9,17,18, +3,CHN,ZHANJIANG,21.22,110.40,24.2,6.1,0.9,25,28, +3,CHN,ZHANYI,25.58,103.83,16.0,6.1,1.3,10,8, +3,CHN,ZHAOTONG,27.33,103.75,14.0,7.9,0.7,18,-2, +3,CHN,ZHENGZHOU,34.72,113.65,16.4,12.4,0.8,18,-1, +3,CHN,ZHIJIANG,27.45,109.68,18.5,10.2,0.5,22,7, +3,CHN,ZHONGNING,37.48,105.68,13.0,14.9,1.4,16,17, +3,CHN,ZHONGXIANG,31.17,112.57,18.0,11.2,0.8,24,13, +3,CHN,ZHUMADIAN,33.00,114.02,16.6,11.9,0.4,23,1, +3,CHN,ZUNYI,27.70,106.88,17.2,9.4,0.5,24,17, +3,IND,AGARTALA,23.88,91.25,26.6,5.2,2.1,11,14, +3,IND,AHMADABAD,23.07,72.63,29.8,5.5,3.0,-4,22, +3,IND,AKOLA,20.70,77.07,30.1,4.6,3.1,-26,23, +3,IND,AMRITSAR,31.63,74.87,24.3,10.2,2.0,13,20, +3,IND,AURANGABAD-CHIKALTH,19.85,75.40,28.1,4.1,3.0,-30,20, +3,IND,BALASORE,21.52,86.93,27.6,4.4,2.3,1,13, +3,IND,BANGALORE,12.97,77.58,25.1,2.1,2.0,-47,10, +3,IND,BELGAUM-SAMBRA,15.85,74.62,24.7,2.1,1.7,-54,14, +3,IND,BHOPAL-BAIRAGARH,23.28,77.35,27.3,5.7,3.1,-12,24, +3,IND,BHUBANESWAR,20.25,85.83,27.6,3.4,1.9,-8,15, +3,IND,BHUJ-RUDRAMATA,23.25,69.67,28.3,5.9,3.2,6,19, +3,IND,BIKANER,28.00,73.30,28.9,9.6,2.5,8,22, +3,IND,BOMBAY-SANTACRUZ,19.12,72.85,28.2,2.1,1.7,4,30, +3,IND,CALCUTTA-DUM-DUM,22.65,88.45,27.8,4.6,2.4,0,12, +3,IND,CHITRADURGA,14.23,76.43,27.8,2.7,1.8,-59,10, +3,IND,COCHIN-WILLINGDON,9.95,76.27,27.9,0.7,1.0,-68,18, +3,IND,COIMBATORE-PEELAMED,11.03,77.05,27.2,1.5,1.6,-45,14, +3,IND,CUDDALORE,11.77,79.77,29.6,2.4,0.6,1,25, +3,IND,CWC-VISHAKHAPATNAM,17.70,83.30,28.6,2.3,1.2,1,15, +3,IND,DEHRADUN,30.32,78.03,23.0,7.6,2.1,8,22, +3,IND,GADAG,15.42,75.63,28.0,2.6,2.0,-60,9, +3,IND,GAUHATI,26.10,91.58,25.3,5.3,1.6,17,11, +3,IND,GOA-PANJIM,15.48,73.82,27.9,0.9,1.1,-22,24, +3,IND,GWALIOR,26.23,78.25,28.6,8.9,2.7,2,20, +3,IND,HISSAR,29.17,75.73,29.0,10.2,3.0,9,25, +3,IND,HYDERABAD-AP,17.45,78.47,27.4,4.0,1.9,-32,19, +3,IND,INDORE,22.72,75.80,26.9,5.2,3.2,-14,26, +3,IND,JABALPUR,23.20,79.95,27.8,6.4,2.7,-7,22, +3,IND,JAGDALPUR,19.08,82.03,26.6,3.9,2.2,-18,12, +3,IND,JAIPUR-SANGANER,26.82,75.80,28.2,8.1,2.8,2,26, +3,IND,JODHPUR,26.30,73.02,29.9,7.7,3.0,5,24, +3,IND,KAKINADA,16.95,82.23,29.5,3.4,1.1,-6,22, +3,IND,KOTA-AERODROME,25.15,75.85,29.7,7.3,3.4,-1,27, +3,IND,KOZHIKODE,11.25,75.78,28.3,-1.4,1.3,98,21, +3,IND,KURNOOL,15.80,78.07,31.5,3.2,2.2,-40,16, +3,IND,LUCKNOW-AMAUSI,26.75,80.88,27.6,8.2,2.8,4,23, +3,IND,MACHILIPATNAM,16.20,81.15,29.2,2.9,1.2,-9,22, +3,IND,MADRAS- MINAMBAKKAM,13.00,80.18,29.1,2.7,0.8,-3,25, +3,IND,MANGALORE-BAJPE,12.92,74.88,27.5,-0.8,1.1,88,24, +3,IND,MINICOY,8.30,73.15,29.1,0.7,0.9,-28,28, +3,IND,NAGPUR-SONEGAON,21.10,79.05,29.2,5.5,3.2,-21,24, +3,IND,NELLORE,14.45,79.98,30.3,3.5,1.2,-7,20, +3,IND,NEW-DELHI-SAFDARJUN,28.58,77.20,25.9,8.9,2.5,7,25, +3,IND,PATIALA,30.33,76.47,24.9,9.2,2.1,11,19, +3,IND,PATNA,25.60,85.10,26.8,6.9,2.5,6,19, +3,IND,PBO-ANANTAPUR,14.58,77.63,30.5,3.4,1.8,-37,14, +3,IND,POONA,18.53,73.85,25.9,3.3,2.5,-20,16, +3,IND,RAJKOT,22.30,70.78,29.3,4.4,2.9,-4,25, +3,IND,RATNAGIRI,16.98,73.33,27.7,1.3,1.3,-13,36, +3,IND,SHOLAPUR,17.67,75.90,30.7,3.5,2.5,-40,18, +3,IND,SRINAGAR,34.08,74.83,15.9,11.1,1.2,19,-5, +3,IND,SURAT,21.20,72.83,30.1,3.8,2.5,-4,25, +3,IND,THIRUVANANTHAPURAM,8.48,76.95,28.7,-1.6,0.5,79,33, +3,IND,TIRUCHCHIRAPALLI,10.77,78.72,29.4,2.9,1.2,-10,12, +3,IND,VERAVAL,20.90,70.37,29.0,3.1,1.8,14,27, +3,IOT,DIEGO-GARCIA-NAF,-7.30,72.40,27.7,-0.6,0.3,26,7, +3,IRN,ABADAN,30.37,48.25,27.1,12.4,1.3,20,0, +3,IRN,AHWAZ,31.33,48.67,28.3,12.7,1.1,21,4, +3,IRN,ANZALI,37.47,49.47,19.2,10.4,-0.3,28,-5, +3,IRN,ARAK,34.10,49.77,17.7,13.4,0.7,22,2, +3,IRN,BABULSAR,36.72,52.65,19.7,10.5,0.6,29,-21, +3,IRN,BANDARABBASS,27.22,56.37,28.8,8.4,1.1,21,14, +3,IRN,BIRJAND,32.87,59.20,19.7,12.2,1.0,13,18, +3,IRN,KASHAN,33.98,51.45,23.7,13.8,1.2,18,-7, +3,IRN,KERMANSHAH,34.27,47.12,18.4,13.4,0.9,24,-27, +3,IRN,KERMAN,30.25,56.97,20.2,11.6,0.7,16,14, +3,IRN,KHOY,38.55,44.97,16.9,14.9,1.2,21,20, +3,IRN,MASHHAD,36.27,59.63,17.9,13.0,0.0,19,1, +3,IRN,ORUMIEH,37.53,45.08,14.6,13.5,1.1,22,-9, +3,IRN,RAMSAR,36.90,50.67,18.5,10.1,0.1,31,12, +3,IRN,SABZEVAR,36.22,57.67,20.1,12.9,0.7,16,-18, +3,IRN,SHAHRUD,36.42,54.95,18.0,13.0,1.6,18,2, +3,IRN,SHIRAZ,29.53,52.53,22.1,12.1,0.8,22,-6, +3,IRN,TABRIZ,38.08,46.28,15.6,13.5,1.0,25,-19, +3,IRN,TEHRAN-MEHRABAD,35.68,51.32,19.8,13.4,1.0,22,-3, +3,IRN,TORBAT-HEYDARIEH,35.27,59.22,17.6,12.7,1.2,18,4, +3,IRN,ZAHEDAN,29.47,60.88,22.2,11.5,1.3,13,11, +3,IRN,ZANJAN,36.68,48.48,13.6,13.9,0.8,24,17, +3,JPN,ABASHIRI,44.02,144.28,8.0,11.6,-0.1,40,2, +3,JPN,AIKAWA,38.03,138.23,14.7,10.3,0.1,39,11, +3,JPN,AKITA,39.72,140.10,12.9,11.3,0.7,34,-13, +3,JPN,AOMORI,40.82,140.77,11.6,11.0,0.8,34,-11, +3,JPN,ASAHIKAWA,43.77,142.37,8.7,13.3,-1.3,33,20, +3,JPN,CHOSHI,35.73,140.85,16.5,8.2,0.8,39,-1, +3,JPN,FUKUE,32.70,128.83,17.7,8.8,0.5,37,-17, +3,JPN,FUKUOKA,33.58,130.38,17.9,9.8,0.6,33,-27, +3,JPN,FUTENMA,26.27,127.75,23.0,5.7,0.4,40,-4, +3,JPN,HACHIJOJIMA-AP,33.12,139.78,19.5,7.5,0.6,41,-4, +3,JPN,HACHIJOJIMA,33.12,139.78,19.2,7.5,0.6,42,-8, +3,JPN,HACHINOHE,40.53,141.52,11.5,10.4,0.8,36,-2, +3,JPN,HAKODATE,41.82,140.75,10.3,12.0,0.8,35,0, +3,JPN,HAMADA,34.90,132.07,16.4,9.4,0.8,35,-35, +3,JPN,HIROSHIMA,34.40,132.47,17.4,10.4,0.5,33,-18, +3,JPN,ISHIGAKIJIMA,24.33,124.17,24.6,5.2,-0.4,33,-40, +3,JPN,IWAKUNI,34.15,132.23,16.8,9.9,0.5,35,-21, +3,JPN,IZUHARA,34.20,129.30,16.8,9.2,0.9,35,-11, +3,JPN,KAGOSHIMA,31.55,130.55,19.6,9.0,0.8,34,-7, +3,JPN,KANAZAWA,36.58,136.63,15.9,10.7,0.6,35,-42, +3,JPN,KOFU,35.67,138.55,16.4,10.8,0.9,27,-11, +3,JPN,KUMAMOTO,32.82,130.70,18.1,10.2,0.9,32,-10, +3,JPN,KUSHIRO,42.98,144.38,7.3,10.4,0.7,44,-37, +3,JPN,MAEBASHI,36.40,139.07,15.9,10.6,0.6,33,-2, +3,JPN,MAIZURU,35.45,135.32,15.6,10.4,0.7,33,-22, +3,JPN,MATSUE,35.45,133.07,16.0,10.1,0.6,33,-19, +3,JPN,MATSUMOTO,36.25,137.97,12.9,12.3,0.8,29,16, +3,JPN,MATSUYAMA,33.85,132.78,17.4,9.9,0.7,33,-20, +3,JPN,MINAMIDAITOJIMA,25.83,131.23,23.9,5.2,0.1,38,-11, +3,JPN,MIYAKOJIMA,24.80,125.28,24.0,5.3,0.4,35,27, +3,JPN,MIYAKO,39.65,141.97,12.0,10.1,0.9,36,-15, +3,JPN,MIYAZAKI,31.93,131.42,18.7,9.3,0.9,32,-12, +3,JPN,MORIOKA,39.70,141.17,11.5,12.1,0.4,31,6, +3,JPN,MUROTOMISAKI,33.25,134.18,17.7,8.4,0.6,37,-4, +3,JPN,NAGASAKI,32.73,129.87,18.2,9.7,0.7,33,-11, +3,JPN,NAGOYA,35.17,136.97,17.1,10.7,0.9,32,-16, +3,JPN,NAHA,26.20,127.68,23.6,5.6,0.1,38,-16, +3,JPN,NAZE,28.38,129.50,22.3,6.7,0.3,34,-17, +3,JPN,NEMURO,43.33,145.58,7.3,9.9,0.7,49,-11, +3,JPN,NIIGATA,37.92,139.05,14.9,10.8,0.7,34,-24, +3,JPN,OITA,33.23,131.62,17.4,9.6,0.5,34,-15, +3,JPN,OMAEZAKI,34.60,138.22,17.4,8.8,1.0,38,-3, +3,JPN,ONAHAMA,36.95,140.90,14.6,9.2,0.9,39,-5, +3,JPN,OSAKA,34.68,135.52,18.0,10.6,0.6,34,-16, +3,JPN,OSHIMA,34.75,139.38,17.1,8.3,0.7,37,-13, +3,JPN,OWASE,34.07,136.20,17.2,9.4,0.8,34,-10, +3,JPN,RUMOI,43.95,141.63,9.1,12.1,-0.4,38,20, +3,JPN,SAIGO,36.20,133.33,15.4,9.7,0.7,36,-26, +3,JPN,SAKATA,38.92,139.85,13.7,10.8,0.6,35,-18, +3,JPN,SAPPORO,43.07,141.33,9.9,12.5,0.0,35,-4, +3,JPN,SENDAI,38.27,140.90,13.5,10.0,0.6,35,5, +3,JPN,SHIMIZU,32.72,133.02,19.1,8.4,0.8,36,-8, +3,JPN,SHIMONOSEKI,33.95,130.93,17.7,9.5,0.3,36,2, +3,JPN,SHIONOMISAKI,33.45,135.77,18.3,8.4,1.0,38,-7, +3,JPN,SUTTSU,42.80,140.22,9.6,11.3,0.8,39,-2, +3,JPN,TAKADA,37.10,138.25,14.9,11.1,0.5,34,-23, +3,JPN,TAKAMATSU,34.32,134.05,17.5,10.5,0.2,33,0, +3,JPN,TANEGASHIMA,30.73,130.98,20.5,7.4,0.8,36,-12, +3,JPN,TOKYO,35.68,139.77,17.4,9.4,0.7,34,-4, +3,JPN,TOTTORI,35.48,134.20,16.1,10.4,0.5,33,-24, +3,JPN,URAKAWA,42.17,142.78,9.3,10.9,0.3,41,-11, +3,JPN,WAJIMA,37.40,136.90,14.7,10.4,0.6,36,-17, +3,JPN,WAKAMATSU,37.48,139.92,13.0,12.6,1.0,30,-2, +3,JPN,WAKKANAI,45.42,141.68,8.0,11.1,1.0,42,-32, +3,JPN,YOKOSUKA,35.28,139.67,17.4,9.0,0.6,36,-22, +3,KAZ,AKKOL,52.00,70.95,5.2,15.5,-1.0,25,18, +3,KAZ,AKKUDUK,42.97,54.12,15.6,15.9,-0.1,17,9, +3,KAZ,AKTOBE,50.28,57.15,7.1,14.3,-2.6,28,14, +3,KAZ,ALMATY,43.23,76.93,11.1,14.2,-0.3,21,9, +3,KAZ,ARALSKOE-MORE,46.78,61.65,11.1,18.3,-1.5,21,-8, +3,KAZ,ASTANA,51.13,71.37,5.7,13.3,-1.9,31,15, +3,KAZ,ATBASAR,51.82,68.37,5.6,13.2,-2.3,31,12, +3,KAZ,ATYRAU,47.12,51.92,11.6,15.9,-1.3,20,3, +3,KAZ,BALHASH,46.80,75.08,8.8,17.6,-0.8,24,11, +3,KAZ,BALKASINO,52.53,68.75,4.2,12.5,-2.3,30,11, +3,KAZ,BERLIK,49.88,69.52,6.2,14.1,-2.2,29,15, +3,KAZ,BLACOVESCHENKA,54.37,66.97,4.6,13.1,-2.1,31,16, +3,KAZ,BOLSHE-NARYMSKOE,49.20,84.52,5.7,14.4,-1.8,31,15, +3,KAZ,CARDARA,41.37,68.00,17.1,15.1,0.4,16,27, +3,KAZ,DZHAMBEJTY,50.25,52.57,8.3,14.5,-2.4,27,9, +3,KAZ,DZHUSALY,45.50,64.08,12.4,17.6,-1.9,20,-16, +3,KAZ,ESIL,51.88,66.33,6.0,13.9,-2.1,29,13, +3,KAZ,FORT-SHEVCHENKO,44.55,50.25,14.6,14.3,0.7,21,-19, +3,KAZ,IRTYSHSK,53.35,75.45,5.8,14.1,-2.1,29,18, +3,KAZ,KARAGANDA,49.80,73.15,5.9,13.0,-1.9,30,21, +3,KAZ,KAZALINSK,45.77,62.12,12.6,17.8,-1.1,17,-12, +3,KAZ,KOKPEKTY,48.75,82.37,5.2,14.3,-1.6,31,23, +3,KAZ,KOKSHETAY,53.28,69.38,5.5,15.4,-1.7,26,28, +3,KAZ,KUSTANAI,53.22,63.62,5.6,13.2,-2.3,31,15, +3,KAZ,KYZYLORDA,44.85,65.50,13.0,17.6,-1.5,18,-25, +3,KAZ,KZYLZAR,48.30,69.65,7.9,17.4,-1.7,24,4, +3,KAZ,LENINOGORSK,50.33,83.55,5.5,12.0,-2.2,31,22, +3,KAZ,MUGODZARSKAJA,48.63,58.50,8.5,14.3,-1.8,24,8, +3,KAZ,PAVLODAR,52.30,76.93,5.8,14.0,-2.5,28,16, +3,KAZ,PETROPAVLOVSK,54.83,69.15,4.5,12.8,-1.9,29,14, +3,KAZ,RUZAEVKA,52.82,66.97,5.2,13.6,-2.3,30,17, +3,KAZ,SAM,45.40,56.12,12.5,17.6,-1.1,19,-3, +3,KAZ,SEMIJARKA,50.87,78.35,6.5,14.6,-2.3,27,12, +3,KAZ,SEMIPALATINSK,50.42,80.30,7.4,14.1,-2.1,25,5, +3,KAZ,SUCINSK,52.95,70.22,4.4,12.6,-2.1,30,17, +3,KAZ,TAIPAK,49.05,51.87,11.1,17.0,-1.4,20,-1, +3,KAZ,TEMIR,49.15,57.12,7.2,14.3,-2.6,28,15, +3,KAZ,TORGAI,49.63,63.50,8.2,17.8,-1.6,25,5, +3,KAZ,TURKESTAN,43.27,68.22,16.0,16.4,1.0,14,15, +3,KAZ,UIL,49.07,54.68,9.0,16.8,-2.1,24,9, +3,KAZ,URALSK,51.25,51.28,7.5,14.1,-2.0,30,11, +3,KAZ,URDZHAR,47.12,81.62,8.5,15.5,-1.9,27,9, +3,KAZ,URICKY,53.32,65.55,5.2,13.2,-2.5,31,17, +3,KAZ,ZHALTYR,51.62,69.80,5.5,13.7,-2.1,30,15, +3,KAZ,ZHAMBYL,42.85,71.38,13.6,15.2,0.3,18,10, +3,KAZ,ZHARKENT,44.17,80.07,11.8,14.7,0.8,21,32, +3,KAZ,ZHARYK,48.85,72.87,6.9,13.9,-2.2,27,11, +3,KAZ,ZHEZKAZGAN,47.80,67.72,9.0,17.3,-1.1,21,2, +3,KAZ,ZLIKHA,45.25,67.07,12.2,17.4,-1.5,20,-14, +3,KGZ,BISHKEK,42.85,74.53,12.7,13.7,0.9,21,41, +3,KGZ,DZHALAL-ABAD,40.92,72.95,16.2,15.2,1.2,15,14, +3,KGZ,NARYN,41.43,76.00,7.9,15.1,0.0,25,6, +3,KGZ,TALAS,42.52,72.22,11.9,13.9,0.2,20,6, +3,KGZ,TIAN-SHAN,41.88,78.23,-4.0,9.3,-1.9,39,-41, +3,KGZ,TOKMAK,42.83,75.28,13.3,13.0,1.0,20,30, +3,KOR,ANDONG,36.57,128.72,13.1,13.3,1.0,25,17, +3,KOR,BUSAN,35.10,129.03,15.7,10.0,1.1,34,4, +3,KOR,CHEONGJU,36.63,127.45,13.9,13.2,1.1,24,9, +3,KOR,CHEORWON,38.15,127.30,11.5,13.8,0.7,24,6, +3,KOR,CHUNCHEON,37.90,127.73,12.6,14.1,0.9,25,22, +3,KOR,CHUPUNGNYEONG,36.22,128.00,12.8,12.8,1.0,25,14, +3,KOR,DAEGU,35.88,128.62,15.5,11.5,0.7,26,6, +3,KOR,DAEGWALLYEONG,37.68,128.77,8.9,11.6,-0.1,29,-9, +3,KOR,DAEJEON,36.37,127.37,13.8,13.0,1.2,26,4, +3,KOR,DONGHAE-RADAR,37.50,129.13,14.0,10.0,1.0,29,3, +3,KOR,GANGNEUNG,37.75,128.90,14.3,11.7,1.6,27,11, +3,KOR,GUNSAN,36.00,126.77,14.3,11.8,0.6,31,-5, +3,KOR,GWANGJU,35.17,126.90,15.2,11.5,1.0,27,0, +3,KOR,INCHEON,37.47,126.63,13.7,12.2,0.9,29,-5, +3,KOR,JEJU,33.52,126.53,16.6,9.6,0.6,35,-16, +3,KOR,JEONJU,35.82,127.15,14.8,13.0,1.2,26,6, +3,KOR,JINJU,35.20,128.12,14.4,11.9,1.1,26,-13, +3,KOR,MASAN,35.18,128.57,15.9,10.5,1.2,31,-9, +3,KOR,MOKPO,34.82,126.38,15.3,11.0,0.8,32,-4, +3,KOR,POHANG,36.03,129.38,15.6,10.5,1.1,26,-1, +3,KOR,SEOGWIPO,33.25,126.57,17.9,9.0,0.8,36,-10, +3,KOR,SEOSAN,36.77,126.50,13.2,12.1,0.8,28,-16, +3,KOR,SEOUL,37.57,126.97,13.8,13.1,1.5,25,7, +3,KOR,SOKCHO,38.25,128.57,13.3,11.1,1.5,29,6, +3,KOR,SUWON,37.27,126.98,13.5,13.0,1.1,25,3, +3,KOR,TONGYEONG,34.85,128.43,15.5,10.1,1.0,32,-6, +3,KOR,ULJIN,36.98,129.42,13.9,10.1,1.2,29,-7, +3,KOR,ULLEUNGDO,37.48,130.90,13.9,10.2,0.8,34,-4, +3,KOR,ULSAN,35.55,129.32,15.5,10.9,1.0,28,-9, +3,KOR,WANDO,34.40,126.70,15.5,10.1,1.1,31,-12, +3,KOR,WONJU,37.33,127.95,13.1,13.7,1.0,21,3, +3,KOR,YEONGWOL,37.18,128.47,12.2,13.6,1.2,25,17, +3,KOR,YEOSU,34.73,127.75,15.4,9.9,1.2,32,0, +3,KWT,KUWAIT-INTL-AP,29.22,47.98,27.6,12.0,1.0,21,3, +3,MAC,TAIPA-GRANDE,22.17,113.57,23.4,6.9,0.8,33,30, +3,MMR,YANGON,16.77,96.17,27.8,1.3,1.7,-53,15, +3,MNG,ALTAI,46.40,96.25,2.8,12.8,0.1,26,2, +3,MNG,ARVAIHEER,46.27,102.78,4.4,13.1,-1.7,24,37, +3,MNG,BAITAG,46.12,91.47,7.2,17.5,0.2,23,2, +3,MNG,BARUUN-URT,46.68,113.28,4.4,17.0,1.1,23,-28, +3,MNG,BARUUNHARAA,48.92,106.07,4.3,14.3,-1.7,27,29, +3,MNG,BARUUNTURUUN,49.65,94.40,1.3,18.7,2.7,22,18, +3,MNG,BAYAN-OVOO,47.78,112.12,4.1,13.9,-1.8,30,28, +3,MNG,BAYANBULAG,46.83,98.08,0.7,12.5,0.9,20,8, +3,MNG,BAYANDELGER,45.73,112.37,5.2,16.4,-0.1,23,11, +3,MNG,BAYANHONGOR,46.13,100.68,4.0,14.4,0.1,24,11, +3,MNG,BULGAN,48.80,103.55,3.3,12.2,-1.4,29,36, +3,MNG,CHOIBALSAN,48.08,114.55,4.4,17.2,0.1,23,6, +3,MNG,CHOIR,46.45,108.22,4.3,15.6,1.6,25,-31, +3,MNG,DALANZADGAD,43.58,104.42,8.0,16.0,-1.3,22,27, +3,MNG,DASHBALBAR,49.55,114.40,3.7,13.3,-1.6,31,24, +3,MNG,ERDENEMANDAL,48.53,101.38,3.2,11.4,-1.2,28,30, +3,MNG,GALUUT,46.70,100.13,1.3,11.8,-1.2,29,13, +3,MNG,HATGAL,50.43,100.15,-0.7,9.6,-0.3,28,13, +3,MNG,HOVD,48.02,91.57,5.4,16.8,0.9,22,-16, +3,MNG,HUJIRT,46.90,102.77,3.8,12.0,-1.9,29,24, +3,MNG,HUTAG,49.38,102.70,4.7,14.0,-1.4,24,20, +3,MNG,KHALKH-GOL,47.62,118.62,4.4,14.2,-1.7,30,25, +3,MNG,MAANTI,47.30,107.48,1.8,15.5,1.3,23,-18, +3,MNG,MANDALGOBI,45.77,106.28,4.7,15.2,0.1,22,6, +3,MNG,MATAD,47.17,115.63,4.8,16.0,-0.2,26,6, +3,MNG,MUREN,49.63,100.17,3.9,12.8,-1.2,26,24, +3,MNG,OMNO-GOBI,49.02,91.72,3.1,14.9,1.0,24,-14, +3,MNG,RINCHINLHUMBE,51.12,99.67,-0.3,12.6,-1.1,26,-4, +3,MNG,SAIKHAN-OVOO,45.45,103.90,6.1,16.9,0.2,23,9, +3,MNG,SAINSHAND,44.90,110.12,7.3,17.4,-0.9,23,44, +3,MNG,TARIALAN,49.57,102.00,3.1,12.0,-0.9,27,39, +3,MNG,TOSONTSENGEL,48.73,98.20,1.3,12.1,-0.2,29,17, +3,MNG,TSETSERLEG,47.45,101.47,3.7,10.6,-1.6,29,28, +3,MNG,TSOGT-OVOO,44.42,105.32,7.4,16.6,-1.6,23,40, +3,MNG,ULAANBAATAR,47.92,106.87,2.6,15.3,1.0,22,2, +3,MNG,ULAANGOM,49.80,92.08,1.3,19.0,2.9,25,26, +3,MNG,ULGI,48.93,89.93,4.5,13.9,-1.1,24,34, +3,MNG,ULIASTAI,47.75,96.85,2.6,12.3,-0.7,29,19, +3,MNG,UNDERKHAAN,47.32,110.63,3.3,13.5,-1.3,28,30, +3,MNG,ZAMYN-UUD,43.73,111.90,7.9,18.3,-0.3,23,3, +3,OMN,KHASAB,26.20,56.23,30.0,7.4,0.8,24,18, +3,OMN,MASIRAH,20.67,58.90,28.2,2.8,2.2,-2,32, +3,OMN,SALALAH,17.03,54.08,28.0,2.8,1.7,-12,37, +3,OMN,SEEB-INTL-AP,23.58,58.28,29.9,6.8,1.2,12,37, +3,OMN,SOHAR-MAJIS,24.47,56.63,28.9,7.2,0.8,18,36, +3,OMN,SUR,22.53,59.47,30.2,6.2,1.2,8,29, +3,OMN,THUMRAIT,17.67,54.02,27.7,5.3,1.6,9,24, +3,PAK,ISLAMABAD-AP,33.62,73.10,22.8,10.2,1.7,16,21, +3,PAK,KARACHI-AP,24.90,67.13,28.3,5.4,2.0,8,18, +3,PRK,ANJU,39.62,125.65,11.1,14.3,0.3,27,2, +3,PRK,CHANGJIN,40.37,127.25,5.5,12.4,-2.1,34,32, +3,PRK,CHANGJON,38.73,128.18,13.2,11.7,2.0,29,15, +3,PRK,CHONGJIN,41.78,129.82,10.4,12.9,0.4,29,3, +3,PRK,CHUNGGANG,41.78,126.88,9.3,16.0,-1.3,25,7, +3,PRK,HAEJU,38.03,125.70,12.5,13.3,1.4,28,9, +3,PRK,HAMHEUNG,39.93,127.55,12.0,13.1,1.1,27,14, +3,PRK,HUICHON,40.17,126.25,11.5,15.3,0.5,24,16, +3,PRK,HYESAN,41.40,128.17,8.0,15.3,-1.8,29,25, +3,PRK,KAESONG,37.97,126.57,12.1,13.8,0.9,26,22, +3,PRK,KANGGYE,40.97,126.60,11.5,15.9,-0.1,21,-3, +3,PRK,KIMCHAEK,40.67,129.20,10.3,12.2,0.7,33,-4, +3,PRK,KUSONG,39.98,125.25,10.6,14.7,-0.4,26,6, +3,PRK,NAMPO,38.72,125.38,12.1,13.6,1.1,29,20, +3,PRK,PUNGSAN,40.82,128.15,5.4,12.4,-1.9,33,29, +3,PRK,PYONGGANG,38.42,127.28,10.3,13.5,-0.1,29,-5, +3,PRK,PYONGYANG,39.03,125.78,11.8,14.2,0.5,26,16, +3,PRK,RYONGYON,38.15,124.88,12.0,13.1,0.8,27,17, +3,PRK,SAMJIYON,41.82,128.30,3.8,11.8,-1.6,34,34, +3,PRK,SARIWON,38.52,125.77,12.0,14.2,0.9,25,25, +3,PRK,SENBONG,42.32,130.40,8.8,12.6,-0.1,34,8, +3,PRK,SINGYE,38.50,126.53,11.6,13.9,0.9,27,17, +3,PRK,SINPO,40.03,128.18,11.2,12.4,0.7,32,0, +3,PRK,SINUIJU,40.10,124.38,10.9,14.0,0.5,27,1, +3,PRK,SUPUNG,40.45,124.93,10.7,14.7,0.0,25,8, +3,PRK,WONSAN,39.18,127.43,12.4,11.9,1.3,27,16, +3,PRK,YANGDOK,39.22,126.65,10.5,14.2,0.1,24,0, +3,QAT,DOHA-INTL-AP,25.25,51.57,28.9,8.9,0.8,25,20, +3,RUS,AGATA,66.88,93.47,-4.0,13.3,-2.8,41,-4, +3,RUS,AGINSKOE,51.10,114.52,2.7,12.5,-1.3,29,26, +3,RUS,AGZU,47.60,138.40,4.7,12.5,-2.0,33,44, +3,RUS,AJAN,56.45,138.15,0.5,8.5,1.0,40,-24, +3,RUS,AKJAR,51.87,58.18,5.2,12.7,-2.1,31,18, +3,RUS,AKSA,50.27,113.27,2.8,12.2,-1.1,29,38, +3,RUS,ALDAN,58.62,125.37,-0.7,11.6,-1.6,26,3, +3,RUS,ALEJSKAJA,52.52,82.77,5.3,13.3,-1.9,29,17, +3,RUS,ALEKSANDROVSK-SAHAL,50.90,142.17,3.5,10.8,-1.5,43,55, +3,RUS,ALEKSANDROVSKIJ-ZAV,50.92,117.93,1.7,11.4,-0.8,30,22, +3,RUS,ALEKSANDROVSKOE,60.43,77.87,2.4,11.2,-1.8,32,24, +3,RUS,AMDERMA,69.75,61.70,-3.7,8.8,-1.3,54,-17, +3,RUS,AMGA,60.90,131.98,-1.6,15.1,-2.3,27,-17, +3,RUS,ANADYR,64.78,177.57,-2.4,10.4,-3.0,45,3, +3,RUS,ANUCINO,43.97,133.07,6.9,14.5,-1.6,30,29, +3,RUS,ARHARA,49.42,130.08,4.4,14.0,-1.3,29,29, +3,RUS,ARKA,60.08,142.33,-0.4,11.3,-1.6,28,0, +3,RUS,ASTRAHANKA,44.72,132.07,7.2,14.0,-1.7,33,29, +3,RUS,BAEVO,53.27,80.77,4.8,12.8,-2.1,30,19, +3,RUS,BAGDARIN,54.47,113.58,-0.5,11.8,-1.4,24,-3, +3,RUS,BAJANDAJ,53.10,105.53,2.0,11.3,-0.8,28,22, +3,RUS,BAKALY,55.18,53.80,5.5,12.1,-2.2,28,8, +3,RUS,BAKCHAR,57.08,81.92,3.2,11.6,-1.5,28,34, +3,RUS,BALAGANSK,54.00,103.07,2.8,12.6,-1.5,31,28, +3,RUS,BARABINSK,55.33,78.37,4.0,12.7,-1.8,30,21, +3,RUS,BARNAUL,53.43,83.52,5.7,13.2,-2.2,29,12, +3,RUS,BATAMAJ,63.52,129.48,-2.8,15.1,-2.6,30,-10, +3,RUS,BEREZOVO,63.93,65.05,0.2,9.7,-1.2,32,14, +3,RUS,BIJSK-ZONALNAJA,52.68,84.95,5.5,13.2,-2.1,31,24, +3,RUS,BIKIN,46.80,134.27,6.9,14.5,-1.5,27,26, +3,RUS,BIROBIDZHAN,48.73,132.95,5.5,14.2,-1.8,29,31, +3,RUS,BIRSK,55.42,55.53,5.5,12.4,-2.3,28,19, +3,RUS,BLAGOVESCENSK,50.25,127.57,5.2,14.7,-2.0,28,28, +3,RUS,BODAJBO,57.85,114.23,1.2,12.2,-1.1,27,3, +3,RUS,BOGORODSKOE,52.38,140.47,2.9,12.4,-0.1,37,7, +3,RUS,BOGUCANY,58.38,97.45,1.9,11.9,-1.3,30,19, +3,RUS,BOLSHERECHE,56.10,74.63,4.1,12.4,-1.7,28,17, +3,RUS,BOLSOJ-SANTAR,54.83,137.53,-0.3,9.0,-0.1,38,1, +3,RUS,BOL`SIE-UKI,56.93,72.67,4.0,12.2,-1.8,29,21, +3,RUS,BOMNAK,54.72,128.93,2.2,13.1,-1.2,28,16, +3,RUS,BORZJA,50.40,116.52,3.1,12.8,-1.7,30,23, +3,RUS,BOR,61.60,90.02,1.6,10.9,-1.1,32,21, +3,RUS,BRATSK,56.28,101.75,2.5,11.2,-2.0,29,21, +3,RUS,BUGARIHTA,54.05,115.02,0.1,13.1,-1.3,24,-7, +3,RUS,BUGULMA,54.58,52.80,5.3,12.0,-2.1,29,19, +3,RUS,BURUKAN,53.05,136.03,1.2,11.8,-0.4,31,-4, +3,RUS,BUZULUK,52.82,52.22,6.7,13.6,-2.2,26,10, +3,RUS,CEMAL,51.43,86.00,6.5,13.0,-1.7,28,16, +3,RUS,CENTRALNYJ-RUDNIK,55.22,87.65,2.9,10.9,-2.0,32,33, +3,RUS,CERLAK,54.17,74.80,4.7,13.6,-1.9,30,24, +3,RUS,CERNUSKA,56.50,56.13,5.1,12.0,-1.7,28,20, +3,RUS,CHANY,55.28,76.60,4.4,12.7,-1.6,30,18, +3,RUS,CHARA,56.90,118.27,-1.2,12.8,-1.9,27,-6, +3,RUS,CHELJABINSK-BALANDI,55.30,61.53,5.0,12.0,-1.6,26,15, +3,RUS,CHERDYN,60.40,56.52,3.6,10.9,-2.5,28,27, +3,RUS,CHERNISHEVSKIJ,63.03,112.50,-1.4,12.1,-1.5,29,1, +3,RUS,CHERNJAEVO,52.78,126.00,2.8,13.7,-0.7,27,22, +3,RUS,CHERSKIJ,68.75,161.28,-4.4,13.6,-3.2,39,-7, +3,RUS,CHITA,52.08,113.48,3.3,13.1,-1.4,29,32, +3,RUS,CHOKURDAH,70.62,147.88,-6.2,14.1,-2.8,43,-13, +3,RUS,CJULBJU,57.77,130.90,-0.1,13.9,-1.8,26,-8, +3,RUS,CULMAN,56.83,124.87,-1.4,12.2,-1.3,27,1, +3,RUS,CULYM,55.10,80.97,4.1,12.0,-1.8,29,17, +3,RUS,CURAPCA,62.03,132.60,-2.1,15.4,-2.5,28,-11, +3,RUS,DALNERECHENSK,45.87,133.73,6.1,14.2,-1.9,31,28, +3,RUS,DEMJANSKOE,59.60,69.28,2.6,11.6,-1.9,28,28, +3,RUS,DUDINKA,69.40,86.17,-4.4,12.4,-3.4,50,2, +3,RUS,DUVAN,55.70,57.90,4.4,11.5,-2.1,28,23, +3,RUS,DZALINDA,53.47,123.90,2.9,12.6,-1.1,30,17, +3,RUS,DZARDZAN,68.73,124.00,-4.3,14.4,-2.7,33,-13, +3,RUS,EGVEKINOT,66.35,-179.12,-2.3,9.0,-2.8,45,-2, +3,RUS,EKATERINBURG,56.83,60.63,4.9,12.0,-2.0,27,25, +3,RUS,EKATERINO-NIKOLSKOE,47.73,130.97,5.8,14.0,-2.0,30,24, +3,RUS,EKIMCHAN,53.07,132.98,0.9,12.2,-0.8,27,2, +3,RUS,ELABUGA,55.77,52.07,5.7,12.2,-2.0,27,15, +3,RUS,ENISEJSK,58.45,92.15,2.2,11.6,-0.9,30,37, +3,RUS,ERBOGACEN,61.27,108.02,-1.1,11.8,-1.3,29,-4, +3,RUS,EROFEJ-PAVLOVIC,53.97,121.93,2.1,12.8,-1.6,27,13, +3,RUS,GAJNY,60.28,54.35,3.5,10.2,-1.8,28,33, +3,RUS,GARI,59.43,62.33,3.8,11.6,-1.5,27,22, +3,RUS,GLAZOV,58.13,52.58,4.6,11.4,-2.1,28,17, +3,RUS,GMO-IM-EK-FEDOROV,77.72,104.30,-10.7,13.3,-1.9,39,21, +3,RUS,GORIN,51.20,136.80,3.2,13.6,-1.1,32,25, +3,RUS,GORJACINSK,52.98,108.28,2.3,9.8,-1.6,40,44, +3,RUS,GVASJUGI,47.67,136.18,4.2,13.9,-1.6,31,36, +3,RUS,HABAROVSK,48.52,135.17,5.3,14.0,-1.8,33,27, +3,RUS,HADAMA,53.95,98.82,1.5,10.7,-1.4,30,15, +3,RUS,HANTY-MANSIJSK,61.02,69.03,2.2,11.2,-1.6,28,35, +3,RUS,HATANGA,71.98,102.47,-6.5,14.2,-2.3,43,-12, +3,RUS,HILOK,51.35,110.47,1.9,11.4,-1.3,30,10, +3,RUS,HOLMSK,47.05,142.05,6.3,11.4,-1.7,43,48, +3,RUS,HORINSK,52.17,109.78,2.8,12.2,-1.5,30,21, +3,RUS,HOSEDA-HARD,67.08,59.38,-1.6,9.3,-2.0,39,8, +3,RUS,HULARIN,51.42,135.08,3.3,13.0,-1.5,32,31, +3,RUS,IGNASINO,53.47,122.40,2.1,13.4,-1.4,28,11, +3,RUS,ILYINSKIY,47.98,142.20,4.9,10.5,1.9,47,-39, +3,RUS,IM-MV-POPOVA,73.33,70.05,-7.1,11.8,-0.9,51,-24, +3,RUS,IM-POLINY-OSIPENKO,52.42,136.50,2.8,12.9,0.0,32,3, +3,RUS,IRKUTSK,52.27,104.32,2.7,11.3,-1.1,29,34, +3,RUS,ISILKUL,54.90,71.25,4.1,12.2,-1.8,31,18, +3,RUS,ISIM,56.10,69.43,4.2,12.5,-1.9,31,19, +3,RUS,ISIT,60.82,125.32,-0.6,13.5,-1.9,28,-1, +3,RUS,IVDEL,60.68,60.45,2.6,11.3,-1.1,24,40, +3,RUS,IZHEVSK,56.83,53.45,5.1,12.0,-2.0,27,15, +3,RUS,JAKUTSK,62.02,129.72,-1.3,14.9,-2.0,26,-11, +3,RUS,JANAUL,56.27,54.90,4.9,12.1,-2.0,29,22, +3,RUS,JUZHNO-KURILSK,44.02,145.87,6.4,9.5,1.0,52,-27, +3,RUS,JUZHNO-SAHALINSK,46.95,142.72,4.7,10.8,2.1,43,-45, +3,RUS,KACUG,53.97,105.90,1.9,12.1,-0.8,28,3, +3,RUS,KAJLASTUJ,49.83,118.38,3.8,13.7,-1.5,29,28, +3,RUS,KALACINSK,55.03,74.58,4.3,12.7,-2.1,30,17, +3,RUS,KALAKAN,55.12,116.77,-0.6,13.0,-1.6,27,-4, +3,RUS,KAMEN-NA-OBI,53.82,81.27,4.4,13.2,-2.5,29,21, +3,RUS,KAMENSKOE,62.43,166.08,-1.9,10.7,-2.1,39,2, +3,RUS,KAMYSLOV,56.85,62.72,4.7,12.2,-2.0,26,18, +3,RUS,KARASUK,53.70,78.07,5.1,13.5,-2.1,28,17, +3,RUS,KARGASOK,59.05,80.95,2.5,11.7,-1.4,30,26, +3,RUS,KAZACHINSK,56.32,107.62,1.5,11.6,-1.1,30,9, +3,RUS,KEDON,64.00,158.92,-5.0,13.9,-2.7,35,-13, +3,RUS,KEMEROVO,55.23,86.12,3.8,12.0,-2.2,32,25, +3,RUS,KIRENSK,57.77,108.07,1.2,11.4,-1.0,30,14, +3,RUS,KIROVSKIJ,45.08,133.53,6.7,14.2,-1.8,31,28, +3,RUS,KIRS,59.37,52.22,4.0,10.7,-1.6,29,27, +3,RUS,KJAHTA,50.37,106.45,3.9,12.3,-1.7,28,29, +3,RUS,KJUSJUR,70.68,127.40,-5.2,14.2,-3.0,40,-15, +3,RUS,KLJUCHI,56.32,160.83,2.3,10.0,-1.4,40,44, +3,RUS,KLJUCI,52.25,79.13,6.3,13.8,-2.3,29,12, +3,RUS,KOCHKI,54.30,80.50,4.2,12.8,-2.0,30,18, +3,RUS,KOLBA,55.08,93.37,3.3,11.4,-1.9,30,23, +3,RUS,KOLPASEVO,58.32,82.95,2.4,11.5,0.0,30,-6, +3,RUS,KOLYVAN,55.30,82.75,4.2,12.5,-2.2,29,18, +3,RUS,KORF,60.35,166.00,0.0,8.1,-0.7,39,24, +3,RUS,KRASNOOZERSK,53.97,79.23,4.6,12.8,-1.8,30,20, +3,RUS,KRASNOUFIMSK,56.65,57.78,4.8,12.0,-2.1,28,18, +3,RUS,KRASNYJ-CHIKOJ,50.37,108.75,2.7,13.1,-0.9,29,28, +3,RUS,KRASNYJ-JAR,46.53,135.32,5.6,14.4,-1.9,26,35, +3,RUS,KRESCHENKA,55.85,80.03,3.7,11.9,-1.6,29,20, +3,RUS,KUDYMKAR,58.98,54.65,4.0,10.9,-2.0,25,26, +3,RUS,KUPINO,54.37,77.28,4.8,13.0,-2.0,29,16, +3,RUS,KURGAN,55.47,65.40,4.7,12.5,-1.9,28,18, +3,RUS,KUR,49.93,134.63,3.7,14.0,-1.2,30,28, +3,RUS,KYRA,49.57,111.97,3.6,13.1,-1.8,29,32, +3,RUS,KYSTOVKA,56.60,76.57,3.5,12.1,-1.7,31,17, +3,RUS,KYZYL,51.72,94.50,3.5,14.1,-0.5,28,12, +3,RUS,LENSK,60.72,114.88,0.3,11.9,-1.1,28,4, +3,RUS,LEUSI,59.62,65.72,3.6,12.2,-1.7,26,26, +3,RUS,LOSINOBORSKOE,58.43,89.37,2.5,10.9,-2.0,33,23, +3,RUS,MAGADAN,59.55,150.78,-0.5,8.6,-0.7,34,10, +3,RUS,MAGDAGACI,53.47,125.82,3.2,12.7,-1.8,30,17, +3,RUS,MAGNITOGORSK,53.35,59.08,5.2,12.5,-2.3,29,9, +3,RUS,MAJSK,57.78,77.28,3.2,11.5,-1.3,30,22, +3,RUS,MAKUSINO,55.25,67.30,5.2,13.0,-2.3,27,9, +3,RUS,MALYE-KARMAKULY,72.37,52.70,-2.3,6.5,-1.4,54,0, +3,RUS,MAMA,58.32,112.87,0.8,11.8,-1.1,29,13, +3,RUS,MARESALE,69.72,66.80,-4.8,10.3,-1.6,55,-9, +3,RUS,MARIINSK,56.22,87.75,4.4,12.3,-1.8,28,23, +3,RUS,MARKOVO,64.68,170.42,-2.8,12.4,-3.1,39,0, +3,RUS,MASLJANINO,54.33,84.22,4.0,12.1,-1.8,28,21, +3,RUS,MELEUZ,52.95,55.97,6.0,12.8,-2.1,30,17, +3,RUS,MOGOCA,53.75,119.73,1.3,12.0,-0.7,27,15, +3,RUS,MONDY,51.68,100.98,1.0,9.5,-1.0,32,4, +3,RUS,MUZI,65.38,64.72,-0.5,9.9,-1.9,33,6, +3,RUS,NAGORNYJ,55.97,124.88,-1.5,12.1,-1.5,27,-10, +3,RUS,NAPAS,59.85,81.95,2.2,11.2,-1.9,30,20, +3,RUS,NARJAN-MAR,67.63,53.03,-0.5,7.9,-1.5,36,7, +3,RUS,NAZYVOEVSK,55.57,71.37,3.9,12.3,-1.9,30,22, +3,RUS,NERCHINSKIJ-ZAVOD,51.32,119.62,2.6,12.2,-1.0,30,15, +3,RUS,NIKOLAEVSK-NA-AMURE,53.15,140.70,1.9,11.2,-0.1,36,7, +3,RUS,NIKOLSKOE,55.20,165.98,3.6,6.5,1.7,51,-38, +3,RUS,NIZHNEANGARSK,55.78,109.55,1.9,10.6,-1.5,38,31, +3,RUS,NIZHNEUDINSK,54.88,99.03,3.0,11.8,-1.4,28,34, +3,RUS,NJAKSIMVOL,62.43,60.87,1.7,10.8,-1.4,27,20, +3,RUS,NJURBA,63.28,118.33,-1.8,13.3,-1.7,28,-1, +3,RUS,NOGLIKI,51.92,143.13,2.0,9.5,1.3,43,-25, +3,RUS,NORSK,52.35,129.92,3.0,13.5,-1.2,30,13, +3,RUS,NOVOKUZNETSK,53.82,86.88,4.8,12.2,-2.1,29,24, +3,RUS,NOVOSELENGINSK,51.10,106.65,3.6,13.6,-1.3,28,21, +3,RUS,NOVOSIBIRSK,55.08,82.90,4.1,12.1,-2.0,31,19, +3,RUS,NOZOVKA,57.08,54.75,5.3,12.1,-1.8,26,15, +3,RUS,OBLUCE,49.00,131.08,3.9,13.6,-1.3,30,36, +3,RUS,ODESSKOE,54.20,72.97,4.8,13.2,-2.0,28,18, +3,RUS,OHANSK,57.72,55.38,5.2,11.9,-2.0,26,21, +3,RUS,OHOTSK,59.37,143.20,-0.1,9.0,-0.6,39,11, +3,RUS,OJMJAKON,63.25,143.15,-6.2,17.4,-3.7,35,-21, +3,RUS,OKTJABRSKOE,62.45,66.05,1.2,10.1,-1.7,32,21, +3,RUS,OLEKMINSK,60.40,120.42,0.2,12.7,-1.6,27,6, +3,RUS,OLENEK,68.50,112.43,-5.0,14.4,-3.0,36,-13, +3,RUS,OLOVJANNAJA,50.95,115.58,3.3,13.0,-1.5,30,26, +3,RUS,OMSK,55.02,73.38,4.7,13.0,-2.0,30,12, +3,RUS,ORDYNSKOE,54.37,81.95,4.5,12.6,-2.3,32,20, +3,RUS,ORENBURG,51.68,55.10,6.8,13.7,-2.4,28,11, +3,RUS,ORLINGA,56.05,105.83,1.5,12.0,-1.8,30,2, +3,RUS,OSTROV-DIKSON,73.50,80.40,-8.4,13.2,0.5,44,20, +3,RUS,OSTROV-GOLOMJANNYJ,79.55,90.62,-11.5,12.4,-2.3,35,13, +3,RUS,OSTROV-KOTELNYJ,76.00,137.87,-10.3,14.3,-0.7,42,-1, +3,RUS,OSTROV-VIZE,79.50,76.98,-10.2,11.3,-2.1,37,11, +3,RUS,OSTROV-VRANGELJA,70.98,-178.48,-7.6,11.5,-1.2,42,-25, +3,RUS,OZERNAJA,51.48,156.48,3.2,7.1,1.8,54,-29, +3,RUS,PARTIZANSK,43.15,133.02,7.0,13.1,-1.7,35,36, +3,RUS,PECHORA,65.12,57.10,0.8,9.4,-1.5,33,18, +3,RUS,PERM,57.95,56.20,4.4,11.9,-1.9,27,27, +3,RUS,PERVOMAJSKOE,57.07,86.22,3.6,12.2,-2.0,30,27, +3,RUS,PETROPAVLOVSK-KAMCH,53.08,158.58,3.6,8.6,2.1,43,-44, +3,RUS,PETROVSKIJ-ZAVOD,51.32,108.87,1.7,11.9,-0.7,29,13, +3,RUS,PILVO,50.05,142.17,3.6,10.4,-1.8,44,49, +3,RUS,POGIBI,52.22,141.63,1.8,10.1,1.3,46,-25, +3,RUS,POGRANICHNOE,50.40,143.77,1.5,8.1,1.4,47,-8, +3,RUS,POGRANICHNYJ,44.40,131.38,7.2,13.9,-1.5,31,25, +3,RUS,POJARKOVO,49.62,128.65,4.6,14.3,-1.4,30,34, +3,RUS,POKROVSKAJA,61.48,129.15,-1.7,14.7,-2.0,27,-11, +3,RUS,POLARGMO-IM-ET-K,80.62,58.05,-9.3,10.3,-2.2,40,13, +3,RUS,POLTAVKA,54.37,71.75,4.6,13.2,-1.9,30,22, +3,RUS,POLTAVKA,44.03,131.32,8.0,13.8,-1.0,28,19, +3,RUS,PORONAJSK,49.22,143.10,3.1,10.0,0.0,46,19, +3,RUS,POSET,42.65,130.80,8.7,13.0,1.0,33,-35, +3,RUS,PREOBRAZHENIE,42.90,133.90,7.1,12.0,1.4,40,-38, +3,RUS,PRIARGUNSK,50.40,119.07,2.8,13.5,-0.7,29,16, +3,RUS,PUDINO,57.53,79.37,2.7,11.7,-1.0,30,22, +3,RUS,REBRIHA,53.07,82.30,4.9,13.2,-2.4,28,18, +3,RUS,ROMANOVKA,53.20,112.78,1.2,11.7,-1.0,28,11, +3,RUS,RUBCOVSK,51.50,81.22,5.7,13.4,-2.3,29,16, +3,RUS,RUDNAJA-PRISTAN,44.37,135.85,6.3,11.5,-2.0,38,47, +3,RUS,SADRINSK,56.07,63.65,5.1,12.1,-1.8,27,8, +3,RUS,SAIM,60.32,64.22,3.9,11.7,-2.0,25,19, +3,RUS,SALEHARD,66.53,66.67,-1.7,10.3,-1.9,38,3, +3,RUS,SAMARA,53.25,50.45,6.4,12.5,-2.3,28,7, +3,RUS,SAMARY,57.35,58.22,4.4,12.0,-1.8,28,28, +3,RUS,SANGARY,63.97,127.47,-2.0,14.3,-2.2,30,-4, +3,RUS,SARAN-PAUL,64.28,60.88,0.8,10.2,-0.6,29,11, +3,RUS,SARGATSKOE,55.60,73.48,3.9,12.5,-1.8,30,15, +3,RUS,SEJMCHAN,62.92,152.42,-3.3,14.3,-2.9,33,-8, +3,RUS,SEKTAGLI,50.43,131.02,3.4,14.3,-1.3,28,38, +3,RUS,SELAGONCY,66.25,114.28,-4.7,15.1,-3.0,37,-12, +3,RUS,SEVERNOE,56.35,78.35,4.0,12.6,-1.9,29,19, +3,RUS,SEVERO-KURILSK,50.68,156.13,3.7,7.3,1.7,54,-33, +3,RUS,SHILKA,51.87,116.03,2.6,12.8,-1.1,28,35, +3,RUS,SIMUSIR,46.85,151.87,4.3,7.0,0.9,51,-29, +3,RUS,SLAVGOROD,52.97,78.65,5.4,14.0,-2.2,29,17, +3,RUS,SMIDOVICH,48.62,133.83,5.2,14.0,-1.5,31,29, +3,RUS,SOFIJSKIJ-PRIISK,52.27,133.98,0.1,12.2,-1.0,27,-7, +3,RUS,SOLNETHNAYA,54.03,108.27,2.0,9.7,-1.3,40,45, +3,RUS,SOLOVEVSK,49.90,115.75,3.2,13.2,-1.3,30,18, +3,RUS,SOSNOVO-OZERSKOE,52.53,111.55,1.3,10.7,-1.1,32,22, +3,RUS,SOSVA,63.65,62.10,1.6,11.0,-1.5,33,27, +3,RUS,SRETENSK,52.23,117.70,2.8,12.7,-1.3,28,26, +3,RUS,STERLITAMAK,53.58,56.00,6.5,13.4,-2.2,28,12, +3,RUS,SUMIHA,55.23,63.32,5.1,12.5,-2.0,25,9, +3,RUS,SUNTAR,62.15,117.65,-0.5,13.3,-1.6,26,1, +3,RUS,SURGUT,61.25,73.50,1.4,10.8,-1.8,32,22, +3,RUS,SYKTYVKAR,61.72,50.83,3.4,10.4,-2.1,27,28, +3,RUS,SYM,60.35,88.37,1.4,11.0,-1.6,31,15, +3,RUS,TAJSHET,55.95,98.00,3.3,11.8,-1.6,29,32, +3,RUS,TANGUJ,55.38,101.03,2.7,11.9,-1.5,31,23, +3,RUS,TANHOJ,51.57,105.12,3.0,9.9,-1.2,36,29, +3,RUS,TARA,56.90,74.38,3.7,12.1,-1.7,28,19, +3,RUS,TARKO-SALE,64.92,77.82,-1.0,10.6,-2.1,34,5, +3,RUS,TATARSK,55.20,75.97,4.2,12.9,-2.1,29,18, +3,RUS,TAZOVSKOE,67.47,78.73,-3.5,11.6,-2.4,45,5, +3,RUS,TERNEJ,45.00,136.60,5.9,11.5,-1.8,40,47, +3,RUS,TEVRIZ,57.52,72.40,4.0,11.8,-1.9,32,29, +3,RUS,TIKSI,71.58,128.92,-6.7,13.7,-2.3,47,-17, +3,RUS,TISUL,55.75,88.32,4.2,11.8,-1.6,30,15, +3,RUS,TIVJAKU,48.60,137.05,2.9,13.2,-1.1,30,37, +3,RUS,TJUKALINSK,55.87,72.20,4.2,12.5,-1.7,30,21, +3,RUS,TJUMEN,57.12,65.43,4.6,12.3,-1.8,27,22, +3,RUS,TOBOLSK,58.15,68.25,3.6,12.1,-1.9,26,25, +3,RUS,TOGUCHIN,55.23,84.40,4.0,12.0,-2.2,29,24, +3,RUS,TOKO,56.28,131.13,-3.4,14.4,-2.6,32,-11, +3,RUS,TOMPO,63.95,135.87,-4.8,16.3,-3.6,34,-12, +3,RUS,TOMSK,56.50,84.92,4.0,12.0,-1.9,30,26, +3,RUS,TROICKO-PECHERSKOE,62.70,56.20,1.9,10.0,-1.2,29,29, +3,RUS,TROICKOE,49.45,136.57,5.4,14.2,-1.7,33,29, +3,RUS,TROIZK,54.08,61.62,5.5,13.3,-1.9,29,12, +3,RUS,TULUN,54.60,100.63,2.7,11.2,-1.4,30,30, +3,RUS,TUNKA,51.73,102.53,2.8,12.4,-0.9,29,12, +3,RUS,TURIJ-ROG,45.22,131.98,7.3,14.2,-1.8,29,31, +3,RUS,TURINSK,58.05,63.68,4.2,12.1,-2.0,27,21, +3,RUS,TUROCAK,52.27,87.17,4.5,12.6,-1.8,30,26, +3,RUS,TURUHANSK,65.78,87.93,-1.5,11.2,-1.9,33,8, +3,RUS,TYNDA,55.18,124.67,1.1,12.6,-1.2,26,14, +3,RUS,UAKIT,55.47,113.62,-1.1,11.1,-1.2,27,-3, +3,RUS,UEGA,60.72,142.78,-0.5,11.0,-1.7,29,11, +3,RUS,UFA,54.72,55.83,5.9,12.8,-1.8,27,16, +3,RUS,UHTA,63.55,53.82,1.7,9.6,-1.5,31,38, +3,RUS,ULAN-UDE,51.83,107.60,3.4,13.4,-1.4,28,30, +3,RUS,ULETY,51.35,112.47,3.5,11.7,-1.9,30,26, +3,RUS,URMI,49.40,133.23,4.1,13.7,-1.6,30,36, +3,RUS,UST-BARGUZIN,53.42,109.02,1.7,10.5,-0.9,37,34, +3,RUS,UST-CILMA,65.43,52.27,0.7,8.8,-0.6,33,10, +3,RUS,UST-ILIMSK,58.20,102.75,1.7,10.6,-1.9,32,27, +3,RUS,UST-ISIM,57.68,71.18,3.5,12.0,-1.6,28,32, +3,RUS,UST-JUDOMA,59.18,135.15,-0.7,14.9,-2.0,24,-21, +3,RUS,UST-KAMCHATSK,56.22,162.47,1.4,7.4,1.2,50,-25, +3,RUS,UST-KULOM,61.68,53.68,3.2,10.8,-1.5,26,22, +3,RUS,UST-KUT,56.87,105.70,1.1,10.2,-1.2,31,23, +3,RUS,UST-MAJA,60.38,134.45,-1.1,14.8,-1.8,26,-14, +3,RUS,UST-NJUKZHA,56.58,121.48,1.5,13.6,-1.0,27,13, +3,RUS,UST-UMALTA,51.63,133.32,2.5,13.3,-1.0,28,13, +3,RUS,UST-USA,65.97,56.92,0.2,8.5,-1.3,33,10, +3,RUS,USUGLI,52.65,115.17,1.9,12.2,-0.9,28,13, +3,RUS,VANZIL-KYNAK,60.35,84.08,1.6,11.2,-1.8,30,16, +3,RUS,VERESCAGINO,58.08,54.68,4.8,11.9,-1.9,24,16, +3,RUS,VERHNEIMBATSK,63.15,87.95,0.6,10.7,-1.3,32,14, +3,RUS,VERHNIJ-UFALEJ,56.08,60.30,4.4,11.5,-1.8,28,22, +3,RUS,VERHNJAJA-GUTARA,54.22,96.97,0.9,10.3,-1.8,28,-1, +3,RUS,VERHOJANSK,67.55,133.38,-5.1,16.6,-4.2,34,-17, +3,RUS,VERHOTUR`E,58.87,60.78,4.0,11.5,-1.7,27,22, +3,RUS,VESELAJA-GORKA,52.28,135.80,3.0,12.9,-1.5,32,45, +3,RUS,VESLJANA,62.98,50.90,2.3,9.8,-2.1,32,24, +3,RUS,VIKULOVO,56.82,70.62,4.6,12.4,-2.0,29,21, +3,RUS,VILJUJSK,63.77,121.62,-1.4,13.8,-2.2,26,-8, +3,RUS,VITIM,59.45,112.58,0.9,12.2,-1.6,28,7, +3,RUS,VLADIVOSTOK,43.12,131.93,7.5,12.7,1.3,35,-42, +3,RUS,VOLCIHA,52.02,80.37,5.2,13.2,-2.2,29,22, +3,RUS,VORKUTA,67.48,64.02,-1.8,9.1,-1.9,38,4, +3,RUS,VOROGOVO,61.03,89.63,1.8,11.0,-1.2,32,20, +3,RUS,ZAMOKTA,52.77,109.97,0.4,9.4,-1.4,31,11, +3,RUS,ZAVITAJA,50.12,129.47,4.2,14.4,-1.4,29,20, +3,RUS,ZDVINSK,54.70,78.67,4.3,12.8,-1.9,30,20, +3,RUS,ZEJA,53.70,127.30,3.1,13.9,-1.2,27,33, +3,RUS,ZHIGALOVO,54.80,105.22,1.9,12.0,-1.5,30,17, +3,RUS,ZHIGANSK,66.77,123.40,-3.9,14.6,-2.6,34,-10, +3,RUS,ZIMA,53.93,102.05,3.0,12.5,-1.7,26,28, +3,RUS,ZMEINOGORSK,51.15,82.20,5.4,12.3,-1.9,30,21, +3,RUS,ZOLOTOJ,47.32,138.98,4.9,10.4,2.4,47,-37, +3,RUS,ZURAVLEVKA,44.75,134.47,5.7,14.3,-1.8,32,35, +3,RUS,ZVERINOGOLOVSKAJA,54.47,64.87,5.4,13.2,-2.2,28,12, +3,RUS,ZYRJANKA,65.73,150.90,-3.8,14.5,-3.1,35,-7, +3,SAU,ABHA,18.23,42.65,21.5,5.5,0.8,16,-12, +3,SAU,AL-AHSA,25.30,49.48,28.5,11.2,1.0,19,18, +3,SAU,AL-BAHA,20.30,41.65,24.5,6.7,0.6,17,-1, +3,SAU,AL-JOUF,29.78,40.10,23.7,11.5,1.8,21,6, +3,SAU,AL-MADINAH,24.55,39.70,29.4,9.3,1.1,22,5, +3,SAU,AL-QAISUMAH,28.32,46.13,26.8,12.0,1.3,19,-3, +3,SAU,AL-TAIF,21.48,40.55,24.8,7.0,0.9,19,9, +3,SAU,AL-WEJH,26.20,36.48,26.6,5.1,1.2,28,23, +3,SAU,ARAR,30.90,41.13,24.1,12.0,1.3,21,-9, +3,SAU,BISHA,19.98,42.63,27.4,7.3,0.9,13,-10, +3,SAU,DHAHRAN,26.27,50.17,28.1,10.0,1.0,21,13, +3,SAU,GASSIM,26.30,43.77,26.3,11.0,1.1,21,10, +3,SAU,GIZAN,16.88,42.58,32.0,4.2,0.7,25,29, +3,SAU,GURIAT,31.40,37.28,21.6,10.2,0.9,22,3, +3,SAU,HAIL,27.43,41.68,24.2,11.2,1.2,23,4, +3,SAU,JEDDAH(KING-ABDUL),21.70,39.18,29.8,5.0,0.5,26,8, +3,SAU,KHAMIS-MUSHAIT,18.30,42.80,22.5,5.3,0.5,16,10, +3,SAU,KING-KHALED-INTL-AP,24.93,46.72,27.1,10.7,1.2,18,4, +3,SAU,MAKKAH,21.43,39.77,32.6,6.2,0.9,22,12, +3,SAU,NAJRAN,17.62,44.42,27.3,7.2,0.7,10,-21, +3,SAU,RAFHA,29.62,43.48,24.9,12.3,1.9,21,1, +3,SAU,RIYADH-OBS(OAP),24.70,46.73,27.9,10.6,1.0,19,2, +3,SAU,SHARORAH,17.47,47.10,29.6,7.7,1.5,12,-2, +3,SAU,TABUK,28.38,36.60,24.0,10.1,1.2,21,-4, +3,SAU,TURAIF,31.68,38.73,20.9,11.0,1.0,24,-3, +3,SAU,WADI-AL-DAWASSER-AP,20.50,45.25,29.5,9.1,1.0,14,4, +3,SAU,YENBO,24.13,38.07,29.0,6.4,1.0,28,17, +3,THA,ARANYAPRATHET,13.70,102.58,29.4,1.8,0.9,-17,-2, +3,THA,BANGKOK,13.73,100.57,29.7,1.5,0.7,-21,8, +3,THA,BHUMIBOL-DAM,17.25,99.02,29.4,2.9,1.8,-20,11, +3,THA,CHAIYAPHUM,15.80,102.03,28.4,2.4,1.4,-22,-1, +3,THA,CHANTHABURI,12.60,102.12,28.6,1.1,0.5,-27,18, +3,THA,CHIANG-MAI,18.78,98.98,27.1,2.9,1.9,-14,8, +3,THA,CHIANG-RAI,19.97,99.88,26.6,3.7,1.8,-6,6, +3,THA,CHON-BURI,13.37,100.98,29.6,1.6,0.7,-22,3, +3,THA,CHUMPHON,10.48,99.18,27.7,1.1,0.7,-39,13, +3,THA,DON-MUANG,13.92,100.60,29.4,1.2,0.7,-27,11, +3,THA,HAT-YAI,6.92,100.43,27.3,0.7,0.5,12,16, +3,THA,HUA-HIN,12.58,99.95,28.8,1.6,0.7,-13,0, +3,THA,KAM-PAENG-PHET,16.48,99.53,30.4,2.1,1.3,-11,9, +3,THA,KANCHANABURI,14.02,99.53,29.5,2.2,1.6,-45,2, +3,THA,KHLONG-YAI,11.77,102.88,28.5,0.0,0.5,9,30, +3,THA,KHON-KAEN,16.43,102.83,28.3,2.5,1.3,-11,9, +3,THA,KO-LANTA,7.53,99.05,29.0,0.8,0.1,-32,46, +3,THA,KO-SAMUI,9.47,100.05,29.1,1.1,0.0,-46,44, +3,THA,KO-SICHANG,13.17,100.80,29.4,1.7,0.7,-1,27, +3,THA,LAMPANG,18.28,99.52,28.6,2.4,2.0,-11,11, +3,THA,LAMPHUN,18.57,99.03,28.4,2.7,1.7,-11,11, +3,THA,LOEI,17.45,101.73,27.2,2.7,1.2,-9,6, +3,THA,LOP-BURI,14.80,100.62,30.0,1.7,1.5,-40,3, +3,THA,MAE-HONG-SON,19.30,97.83,28.4,3.3,2.1,-4,15, +3,THA,MAE-SARIANG,18.17,97.93,28.0,2.6,2.1,-6,14, +3,THA,MAE-SOT,16.67,98.55,27.4,2.2,1.7,-24,8, +3,THA,MUKDAHAN,16.53,104.72,27.9,3.0,1.4,-11,1, +3,THA,NAKHON-PHANOM,17.42,104.78,28.1,3.5,1.8,-3,7, +3,THA,NAKHON-RATCHASIMA,14.97,102.08,28.4,2.5,1.2,-23,-5, +3,THA,NAKHON-SAWAN,15.80,100.17,29.7,2.2,1.2,-26,8, +3,THA,"NAKHON-SI- +THAMMARAT",8.53,99.95,28.4,1.4,0.5,15,6, +3,THA,NAN,18.77,100.77,29.4,3.5,1.8,-11,17, +3,THA,NARATHIWAT,6.42,101.82,28.3,0.9,0.7,-16,28, +3,THA,NONG-KHAI,17.87,102.72,28.5,3.3,1.5,-1,10, +3,THA,PATTANI,6.78,101.15,27.5,0.7,0.1,2,22, +3,THA,PHAYAO,19.13,99.90,28.1,3.8,2.0,-11,9, +3,THA,PHETCHABUN,16.43,101.15,28.7,2.3,0.9,-15,2, +3,THA,PHITSANULOK,16.78,100.27,29.2,2.3,1.5,-13,11, +3,THA,PHRAE,18.17,100.17,28.5,2.7,1.5,-9,10, +3,THA,PHUKET-AP,8.13,98.32,28.8,1.5,0.1,4,13, +3,THA,PHUKET,7.88,98.40,28.9,0.6,0.7,-71,3, +3,THA,PRACHIN-BURI,14.05,101.37,30.0,1.7,0.8,-15,-4, +3,THA,PRACHUAP-KHIRIKHAN,11.82,99.82,28.3,1.6,0.8,-20,17, +3,THA,RANONG,9.98,98.62,28.6,1.2,0.7,-56,20, +3,THA,ROI-ET,16.05,103.68,28.2,2.7,1.2,-10,8, +3,THA,SAKON-NAKHON,17.15,104.13,27.9,3.3,1.5,-2,11, +3,THA,SATTAHIP,12.68,100.98,28.8,1.4,0.5,-16,12, +3,THA,SONGKHLA,7.20,100.62,28.0,0.8,0.4,-13,33, +3,THA,SUPHAN-BURI,14.47,100.13,29.7,1.9,1.2,-25,15, +3,THA,SURAT-THANI,9.12,99.15,27.7,0.8,0.6,0,16, +3,THA,SURIN,14.88,103.50,28.3,2.1,1.3,-24,3, +3,THA,TAK,16.88,99.15,29.8,2.4,1.8,-32,8, +3,THA,THA-TUM,15.32,103.68,29.2,3.0,1.1,-25,3, +3,THA,THONG-PHA-PHUM,14.75,98.63,29.1,2.3,1.3,-38,2, +3,THA,TRANG,7.52,99.62,28.0,0.9,0.5,-58,20, +3,THA,UBON-RATCHATHANI,15.25,104.87,28.2,1.9,1.2,-28,7, +3,THA,UDON-THANI,17.38,102.80,28.2,3.3,1.5,-12,-3, +3,THA,UTTARADIT,17.62,100.10,29.7,2.6,1.9,-20,12, +3,TJK,DUSHANBE,38.55,68.78,18.9,12.9,0.8,18,-16, +3,TKM,ASHGABAT-KESHI,37.92,58.33,19.0,13.8,-0.1,17,10, +3,TKM,BAJRAMALY,37.60,62.18,19.9,14.2,0.4,13,14, +3,TKM,BAKHERDEN,38.43,57.42,19.9,14.8,0.2,17,5, +3,TKM,BYRDALYK,38.47,64.37,19.5,13.5,0.0,12,11, +3,TKM,CARSANGA,37.52,66.02,20.9,13.4,-0.2,16,3, +3,TKM,CHARDZHEV,39.08,63.60,18.2,14.0,0.2,12,2, +3,TKM,DASHKHOVUZ,41.75,59.82,15.8,15.9,-0.1,17,11, +3,TKM,EKEZHE,41.03,57.77,17.0,16.9,0.3,15,6, +3,TKM,ERBENT,39.32,58.60,20.1,15.7,0.6,11,-20, +3,TKM,GAZANDZHYK,39.25,55.52,19.2,14.5,0.0,17,9, +3,TKM,GYSHGY,35.28,62.35,18.5,12.7,-1.0,18,-21, +3,TKM,GYZYLARBAT,38.98,56.28,18.9,14.9,-0.2,17,15, +3,TKM,KERKI,37.83,65.20,20.3,13.1,-0.1,15,7, +3,TKM,SARAGT,36.53,61.22,20.5,13.0,0.0,15,5, +3,TKM,TEDZHEN,37.38,60.52,20.0,13.8,0.1,15,6, +3,TKM,TURKMENBASHI,40.05,53.00,17.4,13.3,0.2,22,2, +3,TKM,UCHADZHY,38.08,62.80,20.3,14.8,0.0,14,0, +3,TWN,CHENG-KUNG,23.10,121.37,24.5,4.7,0.0,32,-14, +3,TWN,CHIANG-KAI-SHEK,25.08,121.22,22.9,6.4,-0.1,31,-7, +3,TWN,CHIAYI,23.50,120.45,23.6,5.9,0.8,28,28, +3,TWN,CHILUNG,25.15,121.80,23.4,6.4,0.0,31,-4, +3,TWN,CHINMEM-SHATOU(AFB),24.43,118.37,21.8,7.5,-0.3,37,-45, +3,TWN,DAWU,22.35,120.90,25.6,4.2,0.5,24,6, +3,TWN,DONGSHA-DAO,20.67,116.72,26.2,4.0,0.5,24,21, +3,TWN,HENGCHUN,22.00,120.75,25.8,3.6,0.6,25,18, +3,TWN,HSINCHU-CITY,24.83,120.93,22.8,6.7,0.0,33,-20, +3,TWN,HUA-LIEN-CITY,23.98,121.60,24.1,5.0,0.5,27,2, +3,TWN,ILAN-CITY,24.75,121.78,23.0,5.8,0.2,26,5, +3,TWN,JOYUTANG,23.88,120.85,21.9,4.5,0.8,21,24, +3,TWN,KAOHSIUNG-INTL-AP,22.58,120.35,25.6,4.3,1.1,23,23, +3,TWN,KAOHSIUNG,22.63,120.28,25.2,4.4,1.2,24,23, +3,TWN,LAN-YU,22.03,121.55,23.3,3.7,0.5,31,16, +3,TWN,MAZU,26.17,119.93,19.5,8.7,-0.3,39,-17, +3,TWN,MOUNT-ALISAN,23.52,120.80,14.0,4.2,0.8,23,16, +3,TWN,MOUNT-MORRISON,23.48,120.95,6.5,5.6,0.4,39,6, +3,TWN,PENGHU-ISLANDS,23.50,119.50,23.6,6.0,0.5,33,13, +3,TWN,PENGJIA-YU,25.63,122.07,22.5,6.4,0.4,32,-12, +3,TWN,SUAO-MET-STATION,24.60,121.85,23.2,6.0,0.1,30,2, +3,TWN,SUNGSHAN-TAIPEI,25.07,121.55,23.5,6.4,0.1,31,-6, +3,TWN,TAIBEI,25.03,121.52,24.0,6.6,0.6,32,27, +3,TWN,TAIDONG,22.75,121.15,25.1,4.6,0.5,27,10, +3,TWN,TAINAN,23.00,120.22,24.9,5.3,0.9,29,26, +3,TWN,TAIZHONG,24.15,120.68,24.5,5.4,1.1,29,24, +3,TWN,WU-CHI-OBSERVATORY,24.25,120.52,23.3,6.3,0.8,30,27, +3,UZB,AK-BAJTAL,43.15,64.33,15.2,17.6,-0.1,18,4, +3,UZB,BUHARA,39.72,64.62,17.5,14.6,0.2,13,1, +3,UZB,BUZAUBAJ,41.75,62.47,17.3,17.4,0.6,14,17, +3,UZB,CHIMBAJ,42.95,59.82,14.7,17.2,-1.1,16,-19, +3,UZB,DARGANATA,40.47,62.28,17.2,14.9,0.6,13,9, +3,UZB,DZIZAK,40.12,67.83,17.8,13.9,0.3,15,1, +3,UZB,FERGANA,40.37,71.75,17.4,14.2,0.6,16,-3, +3,UZB,KARSHI,38.80,65.72,19.0,14.1,-0.4,14,12, +3,UZB,KUNGRAD,43.08,58.93,14.5,16.5,-0.1,14,19, +3,UZB,NAMANGAN,40.98,71.58,17.4,14.0,0.6,15,-14, +3,UZB,NUKUS,42.45,59.62,15.1,16.9,0.2,16,11, +3,UZB,NURATA,40.55,65.68,17.4,13.7,-0.3,14,0, +3,UZB,PSKEM,41.90,70.37,12.9,14.6,1.0,18,25, +3,UZB,SAMARKAND,39.57,66.95,16.6,12.8,0.0,15,14, +3,UZB,SYR-DARJA,40.82,68.68,17.1,14.6,0.7,12,21, +3,UZB,TAMDY,41.73,64.62,17.1,16.0,0.6,13,23, +3,UZB,TASHKENT,41.27,69.27,17.4,13.6,-0.1,15,4, +3,UZB,TERMEZ,37.23,67.27,20.0,13.5,0.5,14,-6, +3,UZB,URGENCH,41.57,60.57,15.9,15.7,0.6,13,16, +3,VNM,BACH-LONG-VI,20.13,107.72,24.5,5.3,0.0,30,-6, +3,VNM,CA-MAU,9.18,105.15,27.8,0.8,0.8,-13,15, +3,VNM,CAO-BANG,22.67,106.25,22.9,5.8,1.2,19,20, +3,VNM,CON-SON,8.68,106.60,28.3,1.3,0.7,-11,19, +3,VNM,DA-NANG,16.07,108.35,26.6,3.8,0.5,16,25, +3,VNM,DONG-HOI,17.48,106.60,25.7,5.1,0.6,18,22, +3,VNM,HA-NOI,21.03,105.80,24.8,6.2,1.0,27,29, +3,VNM,HUE,16.43,107.58,26.0,4.6,0.7,12,23, +3,VNM,LANG-SON,21.83,106.77,22.4,6.3,1.2,22,21, +3,VNM,LAO-CAI,22.50,103.97,25.3,5.8,1.3,19,15, +3,VNM,NAM-DINH,20.43,106.15,24.4,6.0,1.0,25,19, +3,VNM,NHA-TRANG,12.22,109.22,27.7,2.8,0.2,13,6, +3,VNM,PHAN-THIET,10.93,108.10,28.1,1.3,0.5,-8,6, +3,VNM,PHU-LIEN,20.80,106.63,24.5,5.7,0.8,26,28, +3,VNM,PHU-QUOC,10.22,103.97,28.3,0.9,0.7,-25,14, +3,VNM,QUY-NHON,13.77,109.22,28.2,3.5,0.5,11,4, +3,VNM,TAN-SON-HOA,10.82,106.67,28.5,1.2,0.6,-36,14, +3,VNM,THANH-HOA,19.75,105.78,25.2,5.6,0.5,22,16, +3,VNM,TRUONG-SA,8.65,111.92,28.1,1.1,0.2,14,16, +3,VNM,VINH,18.67,105.68,25.1,5.8,0.6,21,20, +4,ARM,YEREVAN-YEREVAN-ARA,40.13,44.47,14.2,14.4,1.2,26,14, +4,AUT,AIGEN-IM-ENNSTAL,47.53,14.13,9.0,10.3,0.4,22,-14, +4,AUT,BREGENZ,47.50,9.75,11.3,9.1,-0.5,18,41, +4,AUT,EISENSTADT,47.85,16.53,11.5,9.9,-0.1,20,16, +4,AUT,FEUERKOGEL,47.82,13.72,5.5,7.4,-1.5,31,20, +4,AUT,GRAZ-THALERHOF-FLUG,47.00,15.43,11.1,11.5,0.7,19,8, +4,AUT,INNSBRUCK-FLUGHAFEN,47.27,11.35,10.5,9.9,0.4,17,11, +4,AUT,KLAGENFURT-FLUGHAFE,46.65,14.33,10.3,11.5,0.5,20,11, +4,AUT,KUFSTEIN,47.58,12.17,9.7,9.8,0.0,18,13, +4,AUT,LIENZ,46.83,12.82,9.0,11.2,0.3,22,8, +4,AUT,LINZ-HOERSCHING-FLU,48.23,14.18,10.7,10.0,0.1,20,9, +4,AUT,MARIAZELL,47.77,15.32,8.6,10.1,-0.1,23,5, +4,AUT,PATSCHERKOFEL,47.22,11.47,1.3,5.6,-0.2,49,2, +4,AUT,PREITENEGG,46.93,14.92,7.9,9.7,-0.3,25,8, +4,AUT,SALZBURG-FLUGHAFEN,47.80,13.00,10.9,9.4,0.1,19,11, +4,AUT,SONNBLICK,47.05,12.95,-3.2,6.2,-0.9,49,-38, +4,AUT,ST-POELTEN,48.18,15.62,10.7,10.2,-0.1,20,11, +4,AUT,TULLN,48.32,16.12,11.4,9.7,-0.4,18,17, +4,AUT,VILLACHERALPE,46.60,13.67,2.0,5.9,-1.5,46,45, +4,AUT,WIEN-HOHE-WARTE,48.25,16.37,12.1,9.7,-0.9,20,43, +4,AUT,WIEN-SCHWECHAT-FLUG,48.12,16.57,11.8,9.9,-0.1,21,8, +4,AUT,ZELTWEG,47.20,14.75,9.1,10.7,0.4,21,6, +4,AZE,LANKARAN,38.73,48.83,17.2,11.8,0.2,24,-3, +4,AZE,ZAKATALA,41.67,46.65,14.9,11.0,0.8,22,-32, +4,BEL,ANTWERPEN-DEURNE,51.20,4.47,11.9,6.9,-0.6,20,28, +4,BEL,BEAUVECHAIN,50.75,4.77,11.4,7.2,-0.2,22,8, +4,BEL,BIERSET,50.65,5.45,11.3,7.2,0.1,20,6, +4,BEL,BRASSCHAAT,51.33,4.50,11.4,7.4,-0.7,19,44, +4,BEL,BRUXELLES-NATIONAL,50.90,4.53,11.6,6.9,-0.3,21,9, +4,BEL,CHARLEROI-GOSSELIES,50.47,4.45,11.3,7.3,-0.7,20,46, +4,BEL,CHIEVRES,50.57,3.83,11.3,7.1,0.5,23,-30, +4,BEL,ELSENBORN,50.47,6.18,8.4,7.7,-0.6,22,26, +4,BEL,FLORENNES,50.23,4.65,10.6,6.9,-0.2,23,13, +4,BEL,GENK,50.93,5.50,12.2,7.5,-0.1,22,10, +4,BEL,GENT-INDUSTRIE-ZONE,51.18,3.82,12.5,6.8,-0.3,22,11, +4,BEL,GOETSENHOVEN,50.78,4.95,11.5,7.5,-0.2,26,5, +4,BEL,KLEINE-BROGEL,51.17,5.47,11.3,7.2,-0.7,17,42, +4,BEL,KOKSIJDE,51.08,2.65,11.3,6.0,0.6,29,-27, +4,BEL,OOSTENDE(AP),51.20,2.87,11.4,6.2,0.0,28,9, +4,BEL,SCHAFFEN,51.00,5.07,11.5,7.8,0.6,23,0, +4,BEL,SEMMERZAKE,50.93,3.67,11.7,7.3,0.0,25,7, +4,BEL,SPA-LA-SAUVENIERE,50.48,5.92,9.7,7.6,-0.8,23,-3, +4,BEL,ST-HUBERT,50.03,5.40,9.3,7.7,-0.2,23,6, +4,BEL,ST-TRUIDEN(BAFB),50.80,5.20,11.4,7.5,-0.2,25,4, +4,BEL,UCCLE,50.80,4.35,11.5,7.3,-0.8,22,53, +4,BGR,BOTEV-VRAH(TOP-SOM),42.67,24.83,1.4,5.9,1.0,49,-30, +4,BGR,BURGAS,42.48,27.48,13.7,10.1,-0.5,26,45, +4,BGR,KURDJALI,41.65,25.37,14.2,10.6,1.0,23,-28, +4,BGR,LOM,43.82,23.25,14.1,12.0,-0.1,19,12, +4,BGR,MUSSALA(TOP-SOMMET),42.18,23.58,-0.5,4.9,-0.8,41,7, +4,BGR,PLEVEN,43.42,24.60,13.5,11.7,0.8,21,-14, +4,BGR,PLOVDIV,42.13,24.75,14.4,11.2,0.7,22,-24, +4,BGR,ROUSSE,43.85,25.95,13.9,11.9,0.5,21,-10, +4,BGR,SANDANSKI,41.52,23.27,16.1,11.3,0.9,22,-17, +4,BGR,SLIVEN,42.67,26.32,14.2,10.7,0.6,24,-22, +4,BGR,SOFIA(OBSERV),42.65,23.38,12.3,11.2,0.5,22,7, +4,BGR,VARNA,43.20,27.92,13.2,10.4,-0.1,26,8, +4,BIH,BANJA-LUKA,44.78,17.22,12.9,10.0,0.1,19,8, +4,BIH,MOSTAR,43.33,17.78,15.8,10.3,0.7,24,-14, +4,BIH,SARAJEVO-BUTMIR,43.82,18.33,11.8,10.1,0.6,20,-7, +4,BLR,BARANOVICHI,53.12,26.00,8.1,10.7,-0.9,25,-2, +4,BLR,BOBRUISK,53.22,29.18,7.8,11.3,-1.4,24,-10, +4,BLR,BREST,52.12,23.68,9.2,11.0,-1.1,22,-26, +4,BLR,GOMEL,52.40,30.95,8.4,11.8,-1.3,23,-4, +4,BLR,GRODNO,53.60,24.05,8.1,10.7,-1.4,25,1, +4,BLR,KOSTUCKOVICHI,53.35,32.07,7.3,11.4,-1.2,26,7, +4,BLR,LEPEL,54.88,28.70,7.6,11.1,-1.4,23,0, +4,BLR,LIDA,53.85,25.32,7.8,10.8,-1.1,25,-1, +4,BLR,LYNTUPY,55.05,26.32,6.9,10.2,-1.3,27,13, +4,BLR,MINSK,53.93,27.63,7.4,11.1,-1.2,26,9, +4,BLR,MOGILEV,53.95,30.07,7.1,11.2,-1.6,25,10, +4,BLR,MOZYR,51.95,29.17,8.0,11.7,-0.8,24,6, +4,BLR,ORSHA,54.50,30.42,7.0,10.9,-1.6,23,8, +4,BLR,PINSK,52.12,26.12,9.1,11.1,-0.8,19,-21, +4,BLR,SLUTSK,53.03,27.55,8.2,11.4,-1.0,23,-2, +4,BLR,VERHNEDVINSK,55.82,27.95,7.3,11.0,-1.4,25,2, +4,BLR,VITEBSK,55.17,30.22,7.6,11.1,-1.7,23,1, +4,BLR,ZHITCKOVICHI,52.22,27.87,8.8,11.2,-1.1,23,-16, +4,CHE,AIGLE,46.33,6.92,11.4,9.0,0.0,19,11, +4,CHE,ALTDORF,46.87,8.63,11.5,8.6,0.0,19,16, +4,CHE,CHUR-EMS,46.87,9.53,10.7,9.7,1.0,19,17, +4,CHE,FAHY,47.43,6.95,10.4,8.3,-0.1,22,10, +4,CHE,GENEVE-COINTRIN,46.25,6.13,11.7,9.1,0.3,21,5, +4,CHE,GUETSCH,46.65,8.62,1.5,5.2,-1.3,50,47, +4,CHE,JUNGFRAUJOCH,46.55,7.98,-4.7,6.6,-0.1,36,8, +4,CHE,LOCARNO-MAGADINO,46.17,8.88,13.5,10.0,0.5,15,-16, +4,CHE,LOCARNO-MONTI,46.17,8.78,14.0,9.4,0.2,19,5, +4,CHE,PAYERNE,46.82,6.95,11.3,8.7,-1.0,20,45, +4,CHE,PIOTTA,46.52,8.68,8.9,9.7,0.1,25,7, +4,CHE,ROBBIA,46.35,10.07,8.7,9.5,0.3,23,-12, +4,CHE,SAENTIS,47.25,9.35,1.1,4.1,0.9,50,-38, +4,CHE,SAN-BERNARDINO,46.47,9.18,5.3,8.3,-1.5,33,22, +4,CHE,SION,46.22,7.33,11.8,10.0,0.6,16,-16, +4,CHE,ST-GALLEN,47.43,9.40,9.8,8.5,0.1,23,11, +4,CHE,WYNAU,47.25,7.78,10.6,8.9,0.0,19,16, +4,CHE,ZUERICH-METEOSCHWEI,47.38,8.57,10.8,9.3,-1.0,19,52, +4,CHE,ZURICH-KLOTEN,47.48,8.53,10.9,9.2,-0.3,17,10, +4,CPV,SAL,16.73,-22.95,25.0,2.9,1.2,55,1, +4,CYP,AKROTIRI,34.58,32.98,21.7,8.0,0.4,30,-4, +4,CYP,LARNACA-AP,34.88,33.63,21.6,8.6,0.6,30,-4, +4,CYP,PAPHOS-AP,34.72,32.48,21.3,7.8,0.1,32,0, +4,CZE,BRNO-TURANY,49.15,16.70,10.4,9.8,0.2,19,12, +4,CZE,CERVENA,49.77,17.55,7.6,10.3,-0.9,23,6, +4,CZE,CESKE-BUDEJOVICE,48.95,14.43,9.9,9.2,0.0,19,11, +4,CZE,CHEB,50.08,12.40,8.9,9.3,-0.6,21,12, +4,CZE,CHURANOV,49.07,13.62,6.4,8.2,-1.0,23,16, +4,CZE,DOKSANY,50.47,14.17,10.9,9.7,0.0,18,13, +4,CZE,DUKOVANY,49.10,16.13,10.2,9.4,-0.6,19,43, +4,CZE,HOLESOV,49.32,17.57,10.8,9.8,-0.5,22,14, +4,CZE,KARLOVY-VARY,50.20,12.92,8.5,9.1,-0.7,17,22, +4,CZE,KOCELOVICE,49.47,13.83,9.3,9.4,-0.6,18,31, +4,CZE,KOSTELNI-MYSLOVA,49.18,15.47,8.8,9.6,-0.4,22,9, +4,CZE,KRESIN-KRAMOLIN,49.58,15.08,9.4,9.2,-0.7,21,39, +4,CZE,KUCHAROVICE,48.88,16.08,10.5,9.6,0.0,19,7, +4,CZE,LIBEREC,50.77,15.02,9.3,9.0,-0.1,20,10, +4,CZE,LUKA,49.65,16.95,9.0,10.2,0.2,22,9, +4,CZE,LYSA-HORA,49.55,18.45,5.1,7.9,-1.6,30,14, +4,CZE,MILESOVKA,50.55,13.93,7.7,8.6,-0.5,21,28, +4,CZE,OSTRAVA-MOSNOV,49.68,18.12,10.4,8.8,-0.1,22,5, +4,CZE,PEC-POD-SNEZKOU,50.67,15.75,6.5,9.3,-1.3,25,9, +4,CZE,PLZEN-LINE,49.17,13.27,9.9,8.9,-0.6,21,-2, +4,CZE,PRADED-MOUNTAIN,50.07,17.23,2.7,6.7,-1.5,40,33, +4,CZE,PRAHA-LIBUS,50.02,14.45,10.5,9.6,-0.2,19,15, +4,CZE,PRAHA-RUZYNE,50.10,14.25,10.0,9.1,-0.6,20,30, +4,CZE,PRIBYSLAV,49.58,15.77,8.9,9.3,0.1,23,10, +4,CZE,PRIMDA,49.67,12.67,8.1,9.2,-0.1,19,15, +4,CZE,SVRATOUCH,49.73,16.03,7.7,10.0,-0.7,24,-1, +4,CZE,TEMELIN,49.20,14.33,9.8,9.8,-0.8,19,23, +4,CZE,TUSIMICE,50.38,13.33,10.4,9.6,-0.6,19,27, +4,CZE,USTI-NAD-LABEM,50.68,14.03,10.0,9.7,-0.5,18,36, +4,CZE,USTI-NAD-ORLICI,49.98,16.43,9.0,9.7,-0.1,23,9, +4,DEU,ALTENSTADT,47.83,10.87,9.9,9.2,-0.5,21,28, +4,DEU,ANGERMUENDE,53.02,14.00,9.9,8.7,-0.6,22,28, +4,DEU,ARKONA(CAPE),54.68,13.43,9.5,7.4,-0.7,30,19, +4,DEU,ARTERN,51.38,11.30,10.1,8.9,-0.2,24,6, +4,DEU,BERGEN,52.82,9.93,10.4,8.2,-1.0,22,36, +4,DEU,BERLIN-SCHONEFELD,52.38,13.52,9.9,9.2,-0.2,22,8, +4,DEU,BOIZENBURG(AUT),53.38,10.72,9.7,8.7,-0.2,24,7, +4,DEU,BOLTENHAGEN,54.00,11.20,9.8,7.7,-0.6,28,38, +4,DEU,BREMEN,53.05,8.80,10.2,7.3,-0.1,22,8, +4,DEU,BROCKEN(PEAK),51.80,10.62,4.3,6.6,-1.1,33,27, +4,DEU,BRUGGEN(RAF),51.20,6.13,11.4,6.8,-0.6,22,33, +4,DEU,BUECHEL,50.17,7.07,9.4,8.0,-1.0,21,35, +4,DEU,BUECKEBURG,52.28,9.08,11.6,8.2,-0.2,21,10, +4,DEU,CELLE,52.60,10.02,11.1,8.2,-1.0,20,40, +4,DEU,COTTBUS,51.78,14.33,12.1,9.6,-1.0,23,14, +4,DEU,DIEPHOLZ,52.58,8.35,10.9,7.9,-0.7,22,43, +4,DEU,DOBERLUG-KIRCHHAIN,51.65,13.58,10.5,8.7,-0.3,24,6, +4,DEU,DRESDEN-KLOTZSCHE,51.13,13.77,10.0,9.4,-0.4,22,33, +4,DEU,ERFURT-BINDERSLEBN,50.98,10.97,9.4,8.9,0.0,24,10, +4,DEU,FASSBERG,52.92,10.18,10.4,8.3,-0.5,21,28, +4,DEU,FICHTELBERG-MTN,50.43,12.95,4.2,7.2,-1.3,34,30, +4,DEU,FRANKFURT-MAIN-AP,50.05,8.60,11.3,8.4,-0.1,18,17, +4,DEU,GARDELEGEN(AUT),52.52,11.40,10.1,8.1,-0.6,22,8, +4,DEU,GERA-LEUMNITZ,50.88,12.13,9.5,8.4,0.3,24,8, +4,DEU,GLUECKSBURG-MEIERWI,54.83,9.50,10.1,7.3,-0.6,28,38, +4,DEU,GOERLITZ,51.17,14.95,9.6,8.7,-0.5,23,43, +4,DEU,GREIFSWALD,54.10,13.40,9.7,8.0,-0.6,25,19, +4,DEU,GUETERSLOH,51.93,8.32,11.1,7.7,-0.6,17,34, +4,DEU,HOHN,54.32,9.53,10.3,7.8,-0.2,25,9, +4,DEU,HOLZDORF,51.77,13.17,10.6,9.0,-0.7,21,27, +4,DEU,HOPSTEN,52.33,7.53,11.1,7.6,0.0,19,14, +4,DEU,IDAR-OBERSTEIN,49.70,7.33,10.0,8.7,-0.1,19,13, +4,DEU,INGOLSTADT,48.72,11.53,10.8,10.3,0.0,18,14, +4,DEU,ITZEHOE,53.98,9.57,10.3,7.8,-0.5,26,18, +4,DEU,JEVER,53.53,7.90,10.7,7.3,-0.9,26,37, +4,DEU,KALKAR,51.73,6.27,11.7,7.8,-0.1,19,8, +4,DEU,KARL-MARX-STADT,50.82,12.90,10.0,8.7,-0.4,26,9, +4,DEU,KOLN-BONN(CIV-MIL),50.87,7.17,11.0,7.6,-0.5,19,33, +4,DEU,KUEMMERSBRUCK,49.43,11.90,10.0,9.5,0.0,18,13, +4,DEU,LAAGE,53.92,12.28,10.4,8.2,-0.6,22,49, +4,DEU,LAARBRUCH(RAF),51.60,6.15,10.9,7.6,-0.7,26,18, +4,DEU,LAHR,48.37,7.83,11.9,9.0,-0.1,15,13, +4,DEU,LANDSBERG,48.07,10.90,10.0,8.8,-0.1,21,11, +4,DEU,LAUPHEIM,48.22,9.92,10.2,8.8,0.0,19,14, +4,DEU,LECHFELD,48.18,10.85,10.1,8.9,-0.3,21,15, +4,DEU,LEINEFELDE(AUT),51.38,10.32,8.9,8.5,0.1,26,8, +4,DEU,LEIPZIG-SCHKEUDITZ,51.42,12.23,9.9,9.4,-0.1,24,10, +4,DEU,LINDENBERG,52.22,14.12,10.1,9.2,-0.5,21,6, +4,DEU,LUEDENSCHEID,51.25,7.65,9.7,7.9,0.0,20,11, +4,DEU,MAGDEBURG,52.12,11.58,10.2,8.4,-0.6,23,-4, +4,DEU,MARNITZ(AUT),53.32,11.93,9.5,8.7,-0.2,26,8, +4,DEU,MEININGEN,50.55,10.37,8.4,9.3,0.1,27,12, +4,DEU,MENDIG,50.37,7.32,11.0,8.8,-1.0,17,43, +4,DEU,MEPPEN,52.73,7.33,12.0,7.7,-0.4,20,21, +4,DEU,MESSSTETTEN,48.18,9.00,8.2,8.5,-0.8,21,16, +4,DEU,MUNICH-RIEM,48.13,11.70,10.1,8.9,0.0,18,10, +4,DEU,NEUBRANDENBURG,53.60,13.32,9.3,8.5,-0.1,24,11, +4,DEU,NEUBURG-DONAU,48.72,11.22,10.3,9.7,-0.2,18,13, +4,DEU,NEURUPPIN,52.90,12.82,9.9,8.8,-0.3,25,11, +4,DEU,NIEDERSTETTEN,49.38,9.97,10.2,8.6,-0.1,21,12, +4,DEU,NOERVENICH,50.83,6.67,11.9,8.3,-0.2,18,16, +4,DEU,NORDHOLZ,53.77,8.67,10.6,7.4,-1.0,27,43, +4,DEU,NUERBURG-BARWEILER,50.37,6.87,9.6,8.1,0.5,21,-19, +4,DEU,OLDENBURG,53.18,8.17,10.8,7.7,0.1,23,9, +4,DEU,OSCHATZ,51.30,13.10,10.9,8.5,0.0,20,9, +4,DEU,PLAUEN(AUT),50.50,12.15,9.2,9.1,0.1,26,6, +4,DEU,POTSDAM,52.38,13.07,10.2,9.2,-0.2,24,7, +4,DEU,RHEINE-BENTLAGE,52.30,7.38,11.0,7.6,-0.5,20,46, +4,DEU,ROTH,49.22,11.10,10.3,8.9,-0.2,19,10, +4,DEU,SCHLESWIG-JAGEL,54.47,9.52,10.2,7.8,-0.2,25,9, +4,DEU,SCHMUECKE(RIDGE),50.65,10.77,6.0,8.4,-0.6,33,15, +4,DEU,SCHWERIN,53.63,11.42,9.9,8.5,0.3,20,10, +4,DEU,SEEHAUSEN-ALTMARK,52.90,11.73,9.7,8.9,-0.5,25,9, +4,DEU,SONNEBERG-NEUFANG,50.38,11.18,7.5,9.4,-0.7,25,20, +4,DEU,STRAUBING,48.83,12.57,9.7,9.8,-0.1,18,12, +4,DEU,TETEROW,53.77,12.62,9.3,8.4,-0.2,23,7, +4,DEU,TROLLENHAGEN,53.60,13.32,10.3,8.9,0.1,22,4, +4,DEU,UECKERMUENDE(AUT),53.75,14.07,10.4,8.1,-0.2,24,9, +4,DEU,WARNEMUENDE,54.18,12.08,9.8,7.7,-0.6,28,22, +4,DEU,WERNIGERODE(AUT),51.85,10.77,10.2,8.4,-0.7,28,37, +4,DEU,WIESENBURG,52.12,12.47,9.9,8.6,-0.6,18,10, +4,DEU,WITTENBERG,51.88,12.65,10.2,9.2,-0.6,20,7, +4,DEU,WITTMUNDHAVEN,53.55,7.67,10.9,7.2,0.1,25,-6, +4,DEU,WUNSTORF,52.47,9.43,11.4,7.9,-0.6,23,33, +4,DEU,ZINNWALD-GEORGENFE,50.73,13.75,6.2,8.1,-1.0,30,10, +4,DNK,AALBORG,57.10,9.85,9.4,7.5,-0.7,28,21, +4,DNK,BILLUND,55.73,9.17,9.3,7.5,-0.6,26,13, +4,DNK,CHRISTIANSO(LGT-H),55.32,15.18,9.5,7.8,-1.0,39,30, +4,DNK,ESBJERG,55.53,8.57,10.1,7.0,-0.3,27,19, +4,DNK,FORNAES(CAPE),56.45,10.97,9.5,7.4,-0.5,34,22, +4,DNK,HAMMER-ODDE,55.30,14.78,9.7,7.8,-1.0,34,30, +4,DNK,HOLBAEK,55.73,11.60,9.9,8.2,-0.6,28,44, +4,DNK,HVIDE-SANDE,56.00,8.13,10.8,7.6,-0.8,34,42, +4,DNK,KARUP,56.30,9.12,9.5,7.6,-0.7,26,17, +4,DNK,KEGNAES,54.85,9.98,10.2,7.5,-0.4,31,26, +4,DNK,KOEBENHAVN-KASTRUP,55.62,12.65,9.9,7.7,-0.5,28,6, +4,DNK,ODENSE-BELDRINGE,55.48,10.33,10.0,7.6,-0.8,25,24, +4,DNK,ROENNE,55.07,14.75,10.3,7.8,-1.0,31,29, +4,DNK,ROSKILDE-TUNE,55.58,12.13,9.4,7.9,-0.7,28,25, +4,DNK,SKAGEN,57.73,10.63,9.8,7.0,-1.3,33,32, +4,DNK,SKRYDSTRUP,55.23,9.27,9.4,7.3,-0.7,28,12, +4,DNK,THYBOROEN,56.70,8.22,10.5,6.7,-0.8,38,30, +4,DNK,TIRSTRUP,56.32,10.63,9.2,8.0,-0.3,27,3, +4,DNK,VAERLOESE,55.77,12.33,9.4,7.9,-1.1,23,40, +4,ESP,ALBACETE-LOS-LLANOS,38.95,-1.85,16.6,10.8,0.0,22,11, +4,ESP,ALICANTE-EL-ALTET,38.28,-0.55,20.3,8.0,0.8,28,-34, +4,ESP,ALMERIA-AP,36.85,-2.38,20.7,7.6,1.0,28,-32, +4,ESP,ASTURIAS-AVILES,43.55,-6.03,14.6,4.7,0.5,35,-32, +4,ESP,BADAJOZ-TALAVERA-LA,38.88,-6.83,19.0,9.8,1.4,19,-30, +4,ESP,BARCELONA-AP,41.28,2.07,18.0,8.3,1.3,26,-31, +4,ESP,BILBAO-SONDICA,43.30,-2.90,15.5,6.2,1.1,28,-15, +4,ESP,CACERES,39.47,-6.33,18.5,9.6,1.5,21,-43, +4,ESP,CIUDAD-REAL,38.98,-3.92,17.9,11.5,-1.9,20,47, +4,ESP,CORDOBA-AP,37.85,-4.85,20.2,10.3,1.5,23,-35, +4,ESP,GERONA-COSTA-BRAVA,41.90,2.77,15.7,8.2,1.1,28,-34, +4,ESP,GRANADA-AP,37.18,-3.78,18.2,10.3,-0.1,21,10, +4,ESP,IBIZA-ES-CODOLA,38.88,1.38,20.0,8.1,0.8,30,-31, +4,ESP,JEREZ-DE-LA-FRONTER,36.75,-6.07,19.9,8.1,1.1,26,-38, +4,ESP,LA-CORUNA,43.37,-8.42,16.2,5.3,0.7,27,-32, +4,ESP,LEON-VIRGEN-DEL-CAM,42.58,-5.65,13.0,9.8,-0.1,20,9, +4,ESP,LOGRONO-AGONCILLO,42.45,-2.33,14.9,8.2,1.0,26,-34, +4,ESP,MADRID-BARAJAS-RS,40.45,-3.55,16.9,10.6,-1.5,22,48, +4,ESP,MADRID-GETAFE,40.30,-3.72,16.9,10.2,-1.4,21,49, +4,ESP,MALAGA-AP,36.67,-4.48,20.2,7.5,-1.0,26,53, +4,ESP,MENORCA-MAHON,39.87,4.23,18.8,7.7,0.1,31,-12, +4,ESP,MORON-DE-LA-FRONTER,37.15,-5.62,20.7,9.1,1.0,22,-30, +4,ESP,MURCIA-ALCANTARILLA,37.95,-1.23,19.9,9.2,0.1,19,9, +4,ESP,MURCIA-SAN-JAVIER,37.78,-0.80,20.1,8.0,1.0,27,-33, +4,ESP,MURCIA,38.00,-1.17,20.9,9.0,0.9,24,-32, +4,ESP,NAVACERRADA,40.78,-4.02,9.1,9.2,-2.1,28,30, +4,ESP,OVIEDO,43.35,-5.87,14.7,6.5,0.6,27,-28, +4,ESP,PALMA-DE-MALLORCA-S,39.55,2.73,18.8,8.9,-0.7,28,47, +4,ESP,PAMPLONA-NOAIN,42.77,-1.63,13.6,7.9,1.4,26,-33, +4,ESP,REUS-AP,41.15,1.17,17.8,8.9,0.1,26,1, +4,ESP,ROTA-NAS,36.65,-6.35,19.7,7.3,0.0,22,15, +4,ESP,SALAMANCA-MATACAN,40.95,-5.50,14.7,9.8,-0.1,22,3, +4,ESP,SAN-SEBASTIAN-FUENT,43.35,-1.80,15.4,6.5,1.1,31,-16, +4,ESP,SAN-SEBASTIAN-IGUEL,43.30,-2.03,14.2,5.4,0.5,34,-13, +4,ESP,SANTANDER-PARAYAS,43.43,-3.82,14.6,5.1,0.1,31,4, +4,ESP,SANTANDER,43.48,-3.80,15.6,4.5,-0.8,33,30, +4,ESP,SANTIAGO-LABACOLLA,42.90,-8.43,14.6,6.8,-0.9,25,48, +4,ESP,SEVILLA-SAN-PABLO,37.42,-5.90,20.9,9.2,0.9,21,-35, +4,ESP,SORIA,41.77,-2.47,11.3,8.4,-1.5,27,50, +4,ESP,TORTOSA,40.82,0.50,18.9,8.7,0.1,23,7, +4,ESP,VALENCIA-AP,39.50,-0.47,19.8,8.6,-1.0,24,53, +4,ESP,VALLADOLID-VILLANUB,41.72,-4.85,13.5,9.8,1.2,21,-33, +4,ESP,VALLADOLID,41.65,-4.77,15.0,10.1,-1.5,21,49, +4,ESP,VIGO-PEINADOR,42.23,-8.63,15.5,6.2,0.0,22,6, +4,ESP,VITORIA,42.88,-2.72,12.6,7.0,0.7,27,-37, +4,ESP,ZARAGOZA-AP,41.67,-1.00,16.9,10.2,0.1,20,7, +4,EST,PJARNU,58.37,24.50,7.6,10.5,-0.9,26,10, +4,EST,RISTNA,58.92,22.07,7.6,9.3,-0.9,33,8, +4,EST,TALLINN,59.47,24.82,6.8,10.0,-1.2,29,11, +4,EST,TARTU,58.30,26.73,7.0,10.5,-1.5,26,8, +4,EST,VALKE-MAARJA,59.13,26.23,6.2,10.1,-1.8,29,15, +4,FIN,AHTARI,62.53,24.02,4.7,9.9,-2.3,31,21, +4,FIN,BAGASKAR,59.93,24.02,6.4,9.8,-1.9,38,19, +4,FIN,HALLI,61.85,24.80,5.3,10.0,-2.4,34,16, +4,FIN,HELSINKI-VANTAA,60.32,24.97,6.8,10.1,-1.5,30,12, +4,FIN,ILOMANTSI,62.68,30.95,4.0,10.0,-2.2,32,23, +4,FIN,ISOSAARI,60.10,25.07,6.8,10.1,-1.6,37,16, +4,FIN,IVALO,68.62,27.42,1.6,8.5,-1.4,33,22, +4,FIN,JOENSUU,62.67,29.63,4.7,10.1,-2.6,34,22, +4,FIN,JOKIOINEN,60.82,23.50,5.6,9.8,-2.1,31,21, +4,FIN,JYVASKYLA,62.40,25.68,4.9,9.7,-2.5,32,18, +4,FIN,KAJAANI,64.28,27.68,3.9,9.5,-1.8,33,23, +4,FIN,KAUHAVA,63.10,23.03,5.3,9.7,-2.3,31,15, +4,FIN,KEMI,65.78,24.58,3.6,9.4,-2.1,37,24, +4,FIN,KEVO,69.75,27.03,0.7,7.7,-1.3,36,24, +4,FIN,KUOPIO,63.02,27.80,5.4,10.4,-2.8,30,16, +4,FIN,KUUSAMO,65.97,29.18,1.9,8.5,-1.8,34,29, +4,FIN,LAHTI,60.97,25.63,5.9,10.0,-2.5,29,16, +4,FIN,LAPPEENRANTA,61.05,28.20,5.8,10.1,-2.5,28,14, +4,FIN,MARIEHAMN-ALAND-ISL,60.12,19.90,7.2,8.9,-1.4,30,4, +4,FIN,MIKKELI,61.73,27.30,5.7,10.5,-2.5,30,14, +4,FIN,MUONIO,67.97,23.68,1.1,8.1,-1.5,35,21, +4,FIN,NIINISALO,61.85,22.47,5.3,10.1,-2.1,33,15, +4,FIN,NIVALA,63.92,24.97,4.3,9.9,-2.1,32,15, +4,FIN,OULU,64.93,25.37,4.4,9.8,-2.5,33,24, +4,FIN,PELLO,66.80,24.00,2.4,9.2,-2.1,31,25, +4,FIN,PORI,61.47,21.80,6.2,9.9,-2.3,29,17, +4,FIN,PUDASJARVI,65.37,27.02,3.3,9.7,-1.9,34,30, +4,FIN,RANKKI,60.37,26.97,6.3,10.3,-1.9,40,22, +4,FIN,ROVANIEMI,66.57,25.83,2.9,9.1,-1.8,34,32, +4,FIN,RUSSARO,59.77,22.95,7.3,9.3,-1.1,34,20, +4,FIN,SALLA,66.82,28.67,1.2,8.0,-1.1,32,30, +4,FIN,SODANKYLA,67.37,26.65,1.5,8.9,-1.3,33,23, +4,FIN,SUOMUSSALMI,64.90,29.02,2.5,9.1,-1.8,33,31, +4,FIN,TAMPERE-PIRKKALA,61.42,23.58,5.5,9.9,-2.2,33,18, +4,FIN,TURKU,60.52,22.27,6.5,10.2,-2.0,32,17, +4,FIN,UTO,59.78,21.38,8.0,8.3,-1.6,40,16, +4,FIN,UTTI,60.90,26.93,5.7,10.3,-2.4,31,16, +4,FIN,VAASA-AP,63.05,21.77,5.7,9.8,-2.1,34,14, +4,FIN,VALASSAARET,63.43,21.07,4.9,9.0,-2.3,42,27, +4,FIN,VIITASAARI,63.08,25.87,5.5,10.1,-2.6,32,18, +4,FRA,ABBEVILLE,50.13,1.83,11.3,6.5,-0.3,28,19, +4,FRA,AGEN,44.18,0.60,14.6,7.6,-0.8,23,40, +4,FRA,AJACCIO,41.92,8.80,17.5,8.1,0.1,28,3, +4,FRA,ALENCON,48.43,0.10,11.8,6.9,-0.7,25,43, +4,FRA,BALE-MULHOUSE,47.60,7.52,11.6,8.9,0.0,21,12, +4,FRA,BASTIA,42.55,9.48,18.1,8.6,-0.8,26,39, +4,FRA,BEAUVAIS,49.47,2.12,11.7,7.1,-0.1,24,10, +4,FRA,BELLE-IIE-LE-TALUT,47.30,-3.17,13.7,5.0,-0.5,37,23, +4,FRA,BIARRITZ,43.47,-1.53,14.7,6.4,0.6,32,-22, +4,FRA,BORDEAUX-MERIGNAC,44.83,-0.68,14.4,7.1,-0.8,26,50, +4,FRA,BOULOGNE,50.73,1.60,11.7,6.1,0.0,29,3, +4,FRA,BOURG-ST-MAURICE,45.62,6.77,10.4,10.3,0.5,20,5, +4,FRA,BOURGES,47.07,2.37,13.1,8.0,-0.6,22,22, +4,FRA,BREST,48.45,-4.42,12.1,5.1,0.5,34,-32, +4,FRA,CAEN-CARPIQUET,49.18,-0.45,12.1,6.3,0.0,28,10, +4,FRA,CALVI,42.53,8.80,17.8,8.5,-0.6,27,41, +4,FRA,CAMBRAI,50.22,3.15,11.4,7.6,0.0,24,4, +4,FRA,CAP-BEAR,42.52,3.13,17.0,7.5,-1.1,26,37, +4,FRA,CAP-CEPET,43.08,5.93,16.9,8.3,-1.0,26,40, +4,FRA,CAP-CORSE,43.00,9.37,18.5,8.1,0.0,30,-5, +4,FRA,CAP-DE-LA-HEVE,49.50,0.07,12.1,6.1,0.1,31,5, +4,FRA,CAP-PERTUSATO,41.37,9.17,17.7,7.5,-0.6,32,34, +4,FRA,CAZAUX,44.53,-1.13,14.2,7.0,-0.3,25,16, +4,FRA,CHAMBERY-AIX-LES-BA,45.63,5.87,12.4,9.4,0.1,18,14, +4,FRA,CHASSIRON,46.05,-1.42,14.4,6.0,0.0,32,10, +4,FRA,CLERMONT-FERRAND,45.78,3.17,12.7,7.9,-0.9,25,40, +4,FRA,COGNAC,45.67,-0.32,14.1,7.9,0.7,26,-16, +4,FRA,DIEPPE,49.93,1.10,12.0,5.9,-0.5,34,37, +4,FRA,DIJON,47.27,5.08,12.3,8.4,-0.6,24,25, +4,FRA,DINARD,48.58,-2.07,12.8,6.3,-0.9,28,48, +4,FRA,DUNKERQUE,51.05,2.33,11.9,6.3,0.1,31,0, +4,FRA,GRENOBLE-ST-GEOIRS,45.37,5.33,12.4,9.0,0.1,24,10, +4,FRA,GROUIN-DE-CANCALE,48.72,-1.85,12.4,5.8,0.1,37,20, +4,FRA,HYERES,43.10,6.15,17.5,8.5,-0.6,25,40, +4,FRA,ISTRES,43.52,4.92,16.4,9.6,0.3,22,3, +4,FRA,L-IIE-D-YEU,46.70,-2.33,13.9,5.7,-0.2,36,5, +4,FRA,LE-BOURGET,48.97,2.43,12.6,7.4,-0.6,25,27, +4,FRA,LE-MANS,47.93,0.20,13.4,7.3,-0.4,25,37, +4,FRA,LE-PUY,45.08,3.77,9.8,8.0,-1.1,22,45, +4,FRA,LILLE-LESQUI,50.57,3.10,11.6,7.0,-0.6,22,39, +4,FRA,LIMOGES,45.87,1.18,12.3,7.4,-0.9,26,42, +4,FRA,LORIENT-LAN-BIHOUE,47.77,-3.45,12.6,5.9,-0.1,30,8, +4,FRA,LUXEUIL,47.80,6.38,11.2,8.6,-0.8,19,56, +4,FRA,LYON-BRON,45.72,4.93,13.5,8.9,0.1,25,2, +4,FRA,LYON-SATOLAS,45.73,5.08,13.4,8.5,0.1,19,10, +4,FRA,MACON,46.30,4.80,12.6,9.0,-0.1,21,2, +4,FRA,MARIGNANE,43.45,5.23,17.0,9.2,0.0,20,0, +4,FRA,MAUPERTUS,49.65,-1.48,11.7,5.3,-0.5,36,5, +4,FRA,METZ-FRESCATY,49.08,6.13,11.4,8.0,-0.2,20,16, +4,FRA,MEYENHEIM-COLMAR,47.92,7.40,11.9,8.9,-0.1,17,13, +4,FRA,MONT-DE-MARSAN,43.92,-0.50,14.1,7.7,0.2,23,9, +4,FRA,MONTELIMAR,44.58,4.73,14.8,8.9,1.0,24,-35, +4,FRA,MONTPELLIER,43.58,3.97,16.7,9.2,0.0,22,4, +4,FRA,NANCY-ESSEY,48.68,6.22,11.6,7.7,-0.7,20,13, +4,FRA,NANTES,47.15,-1.60,13.4,6.7,-0.9,29,33, +4,FRA,NICE,43.65,7.20,17.5,8.6,-1.0,24,46, +4,FRA,NIMES-COURBESSAC,43.87,4.40,16.6,9.6,-0.8,19,44, +4,FRA,NIMES-GARONS(NAVY),43.75,4.42,16.5,9.4,-0.1,20,9, +4,FRA,ORANGE,44.13,4.83,16.3,9.9,0.9,20,-37, +4,FRA,ORLEANS,47.98,1.78,12.2,7.6,-0.3,25,10, +4,FRA,OUESSANT,48.48,-5.05,13.2,3.9,-0.6,42,28, +4,FRA,PARIS-ORLY,48.72,2.38,12.5,7.6,-0.5,25,23, +4,FRA,PAU,43.38,-0.42,14.0,7.4,0.2,25,8, +4,FRA,PERPIGNAN,42.73,2.87,16.4,7.6,-1.1,28,44, +4,FRA,POITIERS,46.58,0.30,13.0,7.3,0.1,26,1, +4,FRA,PTE-DE-LA-HAGUE,49.72,-1.93,12.6,4.8,-0.3,38,-20, +4,FRA,PTE-DE-PENMARCH,47.80,-4.37,13.6,4.5,-0.4,41,-6, +4,FRA,REIMS,49.30,4.03,11.7,7.3,-0.1,21,18, +4,FRA,RENNES,48.07,-1.73,13.0,6.7,-0.8,28,36, +4,FRA,ROUEN,49.38,1.18,11.3,6.7,-0.2,26,12, +4,FRA,SAINT-DIZIER,48.63,4.90,12.6,7.8,-0.1,23,8, +4,FRA,SAINT-GIRONS,43.00,1.10,13.2,7.8,0.8,23,-33, +4,FRA,ST-ETIENNE-BOUTHEON,45.53,4.30,12.9,8.0,-0.1,23,13, +4,FRA,STRASBOURG-ENTZHEIM,48.55,7.63,11.8,8.7,-0.8,17,43, +4,FRA,TARBES-OSSUN,43.18,0.00,13.5,7.3,0.0,28,12, +4,FRA,TOULOUSE-BLAGNAC,43.63,1.37,14.6,8.1,1.1,29,-33, +4,FRA,TOURS,47.45,0.73,12.4,7.4,-0.6,24,18, +4,FRA,VILLACOUBLAY,48.77,2.20,12.1,7.5,-0.7,23,26, +4,FRO,TORSHAVN,62.02,-6.77,7.9,3.7,-0.6,43,29, +4,GBR,ABERDEEN-DYCE-AP,57.20,-2.22,9.4,5.1,0.0,26,2, +4,GBR,ABERPORTH,52.13,-4.57,10.7,4.6,-0.6,36,31, +4,GBR,ASPATRIA,54.77,-3.32,9.9,5.6,-0.6,26,38, +4,GBR,AUGHTON,53.55,-2.92,10.8,5.9,-0.7,32,40, +4,GBR,AVIEMORE,57.20,-3.83,7.7,5.7,-0.1,22,12, +4,GBR,BANGOR-HARBOUR,54.67,-5.67,11.7,4.6,-0.3,34,25, +4,GBR,BELFAST-ALDERGROVE,54.65,-6.22,10.4,4.9,-0.5,26,14, +4,GBR,BENBECULA-ISLAND,57.47,-7.37,10.3,4.3,-0.5,30,44, +4,GBR,BENSON,51.62,-1.08,11.3,5.9,-0.7,29,25, +4,GBR,BIRMINGHAM-AP,52.45,-1.73,11.0,6.0,-0.6,26,21, +4,GBR,BLACKPOOL-AP,53.77,-3.03,11.2,5.6,-0.3,29,13, +4,GBR,BOSCOMBE-DOWN,51.17,-1.75,11.0,5.7,-0.7,30,23, +4,GBR,BOULMER,55.42,-1.60,9.5,5.0,-0.2,32,15, +4,GBR,BOURNEMOUTH-HURN,50.78,-1.83,11.3,5.4,-0.7,33,21, +4,GBR,BRACKNELL-BEAUFORT,51.38,-0.78,10.9,6.3,-0.6,23,20, +4,GBR,BRIDLINGTON-MRSC,54.10,-0.17,10.6,5.4,-0.7,32,46, +4,GBR,BRISTOL-WEA-CENTER,51.47,-2.60,12.1,5.7,-0.5,26,18, +4,GBR,BRIZE-NORTON,51.75,-1.58,11.1,6.0,-0.1,26,8, +4,GBR,BUTT-OF-LEWIS(LH),58.52,-6.27,9.9,4.3,-0.5,37,30, +4,GBR,CAMBORNE,50.22,-5.32,11.7,4.2,-0.8,37,33, +4,GBR,CAPE-WRATH(LGT-H),58.63,-5.00,9.0,3.8,-0.4,36,2, +4,GBR,CARDIFF-WALES-AP,51.40,-3.35,11.4,5.2,-0.6,30,14, +4,GBR,CARDIFF-WEATHER-CEN,51.48,-3.18,12.3,5.7,-0.2,27,16, +4,GBR,CARMONEY,55.02,-7.23,10.2,5.0,-0.4,30,38, +4,GBR,CARTERHOUSE,55.37,-2.52,9.0,5.7,-0.6,27,40, +4,GBR,CHURCH-FENTON,53.83,-1.20,11.0,5.8,-0.7,29,31, +4,GBR,CILFYNYDD,51.63,-3.30,10.7,6.0,-0.5,25,15, +4,GBR,COLTISHALL,52.77,1.35,11.0,5.7,0.5,30,-20, +4,GBR,CONINGSBY,53.08,-0.17,10.9,6.0,-0.5,26,40, +4,GBR,CORGARY,54.43,-8.05,9.7,5.2,-0.6,29,32, +4,GBR,COTTESMORE,52.73,-0.65,10.6,6.1,-0.1,30,16, +4,GBR,CRANWELL,53.03,-0.50,10.8,6.2,-0.7,27,47, +4,GBR,CULDROSE,50.08,-5.25,11.7,4.5,-0.5,40,27, +4,GBR,DISFORTH-AIRFIELD,54.13,-1.42,10.6,5.9,-0.1,27,4, +4,GBR,DUMFRIES-DRUNGANS,55.05,-3.65,10.3,5.5,-0.1,25,8, +4,GBR,EDINBURGH-AP,55.95,-3.35,10.0,5.4,-0.1,28,-8, +4,GBR,EMLEY-MOOR,53.62,-1.67,9.8,5.5,-0.7,27,15, +4,GBR,ESKDALEMUIR,55.32,-3.20,8.3,5.4,0.0,29,14, +4,GBR,EXETER-AP,50.73,-3.42,11.5,5.5,-0.4,30,30, +4,GBR,FAIR-ISLE,59.53,-1.63,9.0,3.5,0.5,44,-41, +4,GBR,FIFE-NESS,56.30,-2.58,10.3,4.7,-0.5,35,34, +4,GBR,FOYERS,57.27,-4.48,9.2,5.2,0.0,26,-1, +4,GBR,FYLINGDALES,54.37,-0.67,8.9,5.5,0.0,31,5, +4,GBR,GLASGOW-AP,55.87,-4.43,10.0,5.4,-0.6,26,45, +4,GBR,GLENLIVET,57.35,-3.35,9.0,6.1,-0.9,22,23, +4,GBR,GREAT-MALVERN,52.12,-2.30,11.8,6.0,-0.6,23,33, +4,GBR,GREENOCK-MRCC,55.97,-4.80,11.0,5.0,-0.5,31,19, +4,GBR,HEMSBY,52.68,1.68,10.8,5.6,-0.8,31,46, +4,GBR,HILLSBOROUGH,54.48,-6.10,10.3,4.8,-0.6,27,22, +4,GBR,"INVERGORDON- +HARBOUR",57.68,-4.17,9.7,5.3,-0.6,30,39, +4,GBR,INVERNESS-DALCROSS,57.53,-4.05,9.4,5.8,0.7,26,-30, +4,GBR,KINLOSS,57.65,-3.57,9.8,4.9,-0.2,28,12, +4,GBR,KIRKWALL-AP,58.95,-2.90,9.0,4.2,-0.3,36,30, +4,GBR,LANGDON-BAY,51.13,1.35,11.0,5.7,0.0,36,6, +4,GBR,LARKHILL,51.20,-1.80,11.1,5.9,-0.6,28,27, +4,GBR,LARNE,54.85,-5.80,11.0,4.4,-0.3,36,38, +4,GBR,LEEDS-WEATHER-CTR,53.80,-1.55,11.3,5.7,-0.9,23,37, +4,GBR,LEEMING,54.30,-1.53,10.3,5.8,0.0,27,3, +4,GBR,LERWICK,60.13,-1.18,8.3,4.0,-0.5,37,34, +4,GBR,LEUCHARS,56.40,-2.87,9.8,5.3,0.1,29,7, +4,GBR,LINTON-ON-OUSE,54.05,-1.25,10.6,6.2,-0.2,26,18, +4,GBR,LOCHRANZA,55.70,-5.30,11.2,5.6,-0.5,25,15, +4,GBR,LONDON-GATWICK-AP,51.15,-0.18,11.6,6.2,-0.6,24,16, +4,GBR,LONDON-HEATHROW-AP,51.48,-0.45,12.3,6.4,-0.7,25,25, +4,GBR,LONDON-WEATHER-CENT,51.52,-0.10,13.0,6.2,-0.1,27,7, +4,GBR,LOSSIEMOUTH,57.72,-3.32,9.5,5.2,0.0,25,6, +4,GBR,LYNEHAM,51.50,-1.98,10.9,5.8,-0.7,26,32, +4,GBR,MACHRIHANISH,55.43,-5.70,10.4,4.9,-0.8,32,9, +4,GBR,MADLEY,52.03,-2.85,11.0,5.7,-1.0,21,41, +4,GBR,MANCHESTER-AP,53.35,-2.28,11.1,5.9,-0.5,27,28, +4,GBR,MARHAM,52.65,0.57,11.1,6.4,-0.6,25,35, +4,GBR,MIDDLE-WALLOP,51.15,-1.57,11.4,6.1,-0.6,29,37, +4,GBR,MILFORD-HAVEN,51.70,-5.05,11.6,4.6,-0.6,34,33, +4,GBR,MUMBLES,51.57,-3.98,11.7,5.2,-0.5,34,31, +4,GBR,NEWHAVEN(LGT-H),50.78,0.05,12.1,5.6,-0.5,34,29, +4,GBR,NORTHOLT,51.55,-0.42,11.7,6.4,-0.8,25,31, +4,GBR,NORWICH-WEA-CNTRE,52.63,1.32,11.4,6.2,-0.7,28,36, +4,GBR,OBAN,56.42,-5.47,10.1,5.2,0.0,25,9, +4,GBR,ODIHAM,51.23,-0.95,11.2,5.7,-0.6,27,38, +4,GBR,ORSAY(LGT-H),55.67,-6.50,10.8,4.3,0.1,37,0, +4,GBR,PENDENNIS-POINT,50.15,-5.07,12.4,4.4,-0.5,36,44, +4,GBR,PETERHEAD-HARBOUR,57.50,-1.77,10.0,4.4,-0.4,36,42, +4,GBR,PORTLAND-HELIPORT,50.57,-2.45,12.6,5.2,-0.1,41,16, +4,GBR,PRESTWICK(CIV-NAVY),55.50,-4.58,10.4,5.1,-0.6,26,30, +4,GBR,SALSBURGH,55.87,-3.87,8.9,5.9,-1.0,27,40, +4,GBR,SHAWBURY,52.80,-2.67,10.3,5.9,-0.4,25,10, +4,GBR,SHEERNESS,51.45,0.75,12.3,5.8,0.0,35,-1, +4,GBR,SHOEBURYNESS,51.55,0.83,11.5,6.5,-0.6,32,29, +4,GBR,SOLENT-MRSC,50.80,-1.22,12.4,5.9,-0.4,33,33, +4,GBR,"SOUTHAMPTON-WX- +CNTR",50.90,-1.40,12.2,6.1,-0.5,26,41, +4,GBR,ST-CATHERINES-POIN,50.58,-1.30,12.0,5.3,-0.6,36,34, +4,GBR,ST-MAWGAN,50.43,-5.00,11.7,4.5,-0.7,37,27, +4,GBR,STANSTED-AP,51.88,0.23,10.7,6.4,-0.1,27,7, +4,GBR,STORNOWAY,58.22,-6.32,9.5,4.2,-0.5,34,42, +4,GBR,SUMBURGH(CAPE),59.88,-1.30,9.3,3.8,-0.4,43,41, +4,GBR,TIREE,56.50,-6.88,10.2,3.9,-0.5,35,11, +4,GBR,TYNEMOUTH,55.02,-1.42,10.3,4.8,0.1,36,7, +4,GBR,VALLEY,53.25,-4.53,11.1,4.8,-0.4,36,31, +4,GBR,WADDINGTON,53.17,-0.52,10.9,5.9,-0.7,27,32, +4,GBR,WALTON-ON-NAZE,51.85,1.28,11.8,6.5,-0.5,32,32, +4,GBR,WATTISHAM,52.12,0.97,10.8,5.9,-0.5,29,43, +4,GBR,WICK,58.45,-3.08,8.7,4.6,0.4,34,-24, +4,GBR,WITTERING,52.62,-0.47,10.8,6.0,0.0,26,5, +4,GBR,WYTON(RAF),52.35,-0.12,10.7,6.2,-0.5,29,12, +4,GBR,YEOVILTON,51.00,-2.63,11.6,5.7,-0.5,30,15, +4,GEO,TBILISI,41.68,44.95,14.2,11.3,0.0,25,5, +4,GGY,GUERNSEY-AP,49.43,-2.60,12.1,4.5,-0.5,42,26, +4,GIB,GIBRALTAR,36.15,-5.35,20.0,6.0,0.8,27,-35, +4,GRC,AKTION(AP),38.62,20.77,19.1,8.7,0.5,28,-39, +4,GRC,ALEXANDROUPOLI(AP),40.85,25.92,16.5,10.9,-0.4,22,29, +4,GRC,ANDRAVIDA(AP),37.92,21.28,19.1,9.0,-0.1,26,8, +4,GRC,ATHINAI(AP),37.90,23.73,20.0,9.5,-0.7,27,32, +4,GRC,HERAKLION(AP),35.33,25.18,20.4,7.8,-0.4,31,22, +4,GRC,KASTORIA(AP),40.45,21.28,15.1,11.9,0.7,23,-19, +4,GRC,KERKYRA(AP),39.62,19.92,19.7,9.2,-0.5,26,47, +4,GRC,KYTHIRA,36.28,23.02,19.8,8.4,-0.6,30,20, +4,GRC,LAMIA,38.90,22.40,18.2,10.3,-0.7,20,27, +4,GRC,LARISSA(AP),39.63,22.42,18.3,11.2,0.5,21,-4, +4,GRC,LIMNOS(AP),39.92,25.23,17.4,9.9,0.1,24,6, +4,GRC,METHONI,36.83,21.70,20.0,7.9,0.4,31,-33, +4,GRC,MILOS,36.72,24.45,19.4,8.5,-0.6,27,15, +4,GRC,MYTILINI(AP),39.07,26.60,19.6,9.5,-0.4,23,24, +4,GRC,NAXOS,37.10,25.38,19.8,7.2,-0.4,29,19, +4,GRC,RHODES(AP),36.40,28.08,21.1,7.7,0.4,29,-18, +4,GRC,SAMOS(AP),37.70,26.92,20.3,9.3,-0.8,27,28, +4,GRC,SKYROS(AP),38.97,24.48,19.0,8.8,0.0,26,3, +4,GRC,SOUDA(AP),35.48,24.12,19.8,8.2,-0.2,27,3, +4,GRC,SOUDA-BAY-CRETE,35.53,24.15,20.3,8.4,-0.4,26,8, +4,GRC,THESSALONIKI(AP),40.52,22.97,16.5,9.7,-0.4,28,10, +4,GRC,TRIPOLIS(AP),37.53,22.40,16.3,10.8,-0.9,25,40, +4,GRL,DANMARKSHAVN,76.77,-18.67,-8.4,11.8,-1.6,36,22, +4,GRL,KANGERLUSSUAQ(SDR),67.02,-50.70,-2.1,9.3,-2.7,38,-13, +4,GRL,NARSARSUAQ,61.13,-45.43,2.5,7.3,-1.2,37,25, +4,GRL,NUUK(GODTHAAB),64.17,-51.75,-0.4,4.2,-0.9,41,2, +4,GRL,PITUFFIK(THULE-AB),76.53,-68.75,-6.0,11.8,-2.9,48,-21, +4,HUN,BAJA,46.18,19.02,11.8,10.9,0.1,20,9, +4,HUN,BEKESCSABA,46.68,21.17,12.0,10.8,0.2,21,9, +4,HUN,BUDAPEST-PESTSZENTL,47.43,19.18,12.2,11.0,0.7,20,-25, +4,HUN,DEBRECEN,47.48,21.60,11.6,10.9,0.5,18,8, +4,HUN,GYOR,47.72,17.68,12.0,10.2,-0.2,20,6, +4,HUN,KECSKEMET,46.92,19.75,11.9,10.5,0.3,17,16, +4,HUN,KEKESTETO,47.87,20.02,7.7,9.4,-0.8,23,19, +4,HUN,KESZTHELY,46.73,17.23,12.1,10.3,-0.1,20,9, +4,HUN,MISKOLC,48.10,20.77,11.5,10.9,0.5,17,-8, +4,HUN,NAGYKANIZSA,46.45,16.97,11.1,10.8,0.3,20,4, +4,HUN,NYIREGYHAZA-NAPKOR,47.97,21.88,11.4,10.6,-0.2,19,16, +4,HUN,PAKS,46.58,18.85,12.2,11.2,0.2,20,9, +4,HUN,PAPA,47.20,17.50,12.0,9.9,-0.1,20,14, +4,HUN,PECS-POGANY,46.00,18.23,12.2,10.4,0.2,22,5, +4,HUN,SIOFOK,46.92,18.05,12.6,10.7,-0.1,21,13, +4,HUN,SOPRON,47.68,16.60,11.4,9.9,0.0,20,6, +4,HUN,SZEGED,46.25,20.10,12.5,10.3,0.5,20,-5, +4,HUN,SZENTGOTTHARD-FARKA,46.92,16.32,11.1,9.7,0.1,20,8, +4,HUN,SZOLNOK,47.12,20.23,12.3,10.6,-0.7,20,46, +4,HUN,SZOMBATHELY,47.27,16.63,11.4,10.1,0.3,20,6, +4,HUN,VESZPREM-SZENTKIRAL,47.07,17.83,11.1,10.2,0.0,20,10, +4,IMN,ISLE-OF-MAN-RONALDS,54.08,-4.63,11.0,4.4,-0.3,39,0, +4,IRL,BELMULLET,54.23,-10.00,11.4,4.0,-0.3,34,33, +4,IRL,BIRR,53.08,-7.88,10.9,5.0,-0.6,25,23, +4,IRL,CASEMENT-AERODROME,53.30,-6.43,10.8,5.0,-0.5,27,23, +4,IRL,CLONES,54.18,-7.23,10.2,5.3,-0.5,29,47, +4,IRL,CORK-AP,51.85,-8.48,10.9,4.5,-0.3,32,47, +4,IRL,DUBLIN-AP,53.43,-6.25,10.6,4.8,-0.4,29,33, +4,IRL,KILKENNY,52.67,-7.27,10.7,5.3,-0.6,26,34, +4,IRL,MALIN-HEAD,55.37,-7.33,10.6,4.1,0.6,37,-41, +4,IRL,MULLINGAR,53.53,-7.37,10.2,5.2,-0.2,27,6, +4,IRL,ROSSLARE,52.25,-6.33,11.5,4.2,-0.1,35,3, +4,IRL,SHANNON-AP,52.70,-8.92,11.6,4.9,-0.4,27,29, +4,IRL,VALENTIA-OBSERVATOR,51.93,-10.25,12.0,3.9,-0.1,36,3, +4,ISL,AKUREYRI,65.68,-18.08,4.5,6.4,-1.9,29,11, +4,ISL,AKURNES,64.30,-15.22,5.9,5.5,-0.8,27,23, +4,ISL,BERGSTADIR,65.70,-19.62,3.9,6.2,-1.2,36,18, +4,ISL,BOLUNGAVIK,66.15,-23.25,4.2,5.7,-1.7,36,18, +4,ISL,DALATANGI,65.27,-13.58,5.1,4.2,-0.9,33,31, +4,ISL,EGILSSTADIR,65.28,-14.40,4.4,6.4,-2.0,34,18, +4,ISL,EYRARBAKKI,63.87,-21.15,5.9,5.9,-1.3,22,20, +4,ISL,HVERAVELLIR,64.87,-19.57,0.4,3.9,-1.0,40,17, +4,ISL,KEFLAVIK,63.97,-22.60,6.0,5.4,-0.8,31,22, +4,ISL,KIRKJUBAEJARKLAUSTU,63.78,-18.07,5.6,5.9,-1.0,28,10, +4,ISL,RAUFARHOFN,66.45,-15.95,3.6,5.4,-1.6,35,28, +4,ISL,REYKJAVIK,64.13,-21.90,5.7,5.7,-0.6,28,10, +4,ISL,STYKKISHOLMUR,65.08,-22.73,4.7,6.2,-1.3,36,16, +4,ISL,VESTMANNAEYJAR,63.40,-20.28,6.3,4.3,-0.8,34,21, +4,ISR,BEER-SHEVA,31.23,34.78,22.2,8.3,0.8,26,15, +4,ISR,EILAT,29.55,34.95,26.5,9.1,0.8,23,0, +4,ISR,HAIFA,32.80,35.03,22.4,7.6,0.8,32,7, +4,ISR,JERUSALEM,31.87,35.22,18.6,8.4,0.6,28,8, +4,ISR,OVDA,30.00,34.83,22.5,9.1,1.1,21,5, +4,ISR,SDE-DOV(TEL-AVIV),32.10,34.78,22.7,7.4,0.5,34,9, +4,ITA,ALBENGA,44.05,8.12,16.2,10.0,0.6,23,-12, +4,ITA,ALGHERO,40.63,8.28,18.4,8.5,-0.8,28,37, +4,ITA,AMENDOLA,41.53,15.72,16.9,9.0,-0.6,30,38, +4,ITA,BARI-PALESE-MACCHIE,41.13,16.78,17.1,8.5,-0.7,31,23, +4,ITA,BERGAMO-ORIO-AL-SER,45.67,9.70,14.5,10.6,0.9,20,-23, +4,ITA,BOLOGNA-BORGO-PANIG,44.53,11.30,15.5,10.8,0.6,23,-9, +4,ITA,BOLZANO,46.47,11.33,13.7,11.1,1.4,17,-13, +4,ITA,BRESCIA-GHEDI,45.42,10.28,14.5,11.5,0.9,20,-25, +4,ITA,BRINDISI,40.65,17.95,19.3,9.0,-0.3,28,1, +4,ITA,CAGLIARI-ELMAS,39.25,9.07,19.2,8.5,0.6,27,-47, +4,ITA,CAMPOBASSO,41.57,14.65,14.0,9.0,-0.9,29,37, +4,ITA,CAPO-BELLAVISTA,39.93,9.72,19.2,8.4,-0.9,30,35, +4,ITA,CAPO-CACCIA,40.57,8.17,18.6,7.9,0.6,31,-34, +4,ITA,CAPO-FRASCA,39.75,8.47,18.9,7.7,0.7,34,-49, +4,ITA,CAPO-MELE,43.95,8.17,16.9,8.2,-0.8,27,37, +4,ITA,CAPO-PALINURO,40.02,15.28,19.0,8.8,-1.0,31,31, +4,ITA,CATANIA-FONTANAROSS,37.47,15.05,19.9,8.8,0.7,29,-35, +4,ITA,CATANIA-SIGONELLA,37.40,14.92,19.5,8.9,-1.0,29,38, +4,ITA,COZZO-SPADARO,36.68,15.13,20.9,8.2,-0.7,34,41, +4,ITA,CROTONE,39.00,17.07,18.7,9.1,0.1,30,-15, +4,ITA,DOBBIACO,46.73,12.22,8.9,12.2,-0.4,22,8, +4,ITA,FALCONARA,43.62,13.37,15.5,9.1,0.0,29,-7, +4,ITA,FIRENZE-PERETOLA,43.80,11.20,16.6,9.8,-1.0,25,40, +4,ITA,FRONTONE,43.52,12.73,14.7,9.9,-0.5,25,35, +4,ITA,GELA,37.08,14.22,20.4,7.6,0.5,33,-21, +4,ITA,GENOVA-SESTRI,44.42,8.85,17.8,9.1,1.0,24,-45, +4,ITA,GROSSETO,42.75,11.07,17.5,9.8,-0.1,25,2, +4,ITA,LAMEZIA-TERME,38.90,16.25,19.0,8.3,-0.7,31,31, +4,ITA,MARINA-DI-GINOSA,40.43,16.88,18.7,9.3,-0.5,28,25, +4,ITA,MESSINA,38.20,15.55,21.0,8.2,-0.7,33,33, +4,ITA,MILANO-LINATE,45.43,9.28,14.9,10.9,1.4,20,-18, +4,ITA,MILANO-MALPENSA,45.62,8.73,13.6,10.9,0.1,19,12, +4,ITA,MONDOVI,44.38,7.82,13.8,9.9,1.4,22,-33, +4,ITA,MONTE-CIMONE,44.20,10.70,4.8,7.0,-2.0,35,22, +4,ITA,MONTE-TERMINILLO,42.47,12.98,7.5,8.3,-1.1,36,21, +4,ITA,NAPOLI-CAPODICHINO,40.85,14.30,18.8,9.3,0.4,25,-23, +4,ITA,PAGANELLA,46.15,11.03,4.5,8.4,-2.0,38,25, +4,ITA,PALERMO-BOCCADIFALC,38.10,13.30,20.5,8.7,-0.4,28,11, +4,ITA,PALERMO-PUNTA-RAISI,38.18,13.10,20.7,8.0,0.8,32,-36, +4,ITA,PANTELLERIA,36.82,11.97,19.8,7.8,0.5,34,-36, +4,ITA,PASSO-DELLA-CISA,44.43,9.93,11.1,9.3,1.3,23,-31, +4,ITA,PASSO-ROLLE,46.30,11.78,4.9,8.7,-1.6,39,27, +4,ITA,PERUGIA,43.08,12.50,15.2,9.5,0.8,27,-34, +4,ITA,PESCARA,42.43,14.20,16.0,9.0,0.0,27,-1, +4,ITA,PIACENZA,44.92,9.73,14.4,10.8,1.0,22,-29, +4,ITA,PISA-S-GIUSTO,43.68,10.38,17.1,9.4,-0.8,24,43, +4,ITA,PONZA,40.92,12.95,18.9,8.2,0.0,30,-9, +4,ITA,POTENZA,40.63,15.80,14.7,10.6,-1.2,27,40, +4,ITA,PUNTA-MARINA,44.45,12.30,15.3,10.4,0.7,23,-13, +4,ITA,RIMINI,44.03,12.62,15.0,10.0,0.4,25,-13, +4,ITA,ROMA-FIUMICINO,41.80,12.23,18.0,8.6,-0.6,26,45, +4,ITA,RONCHI-DEI-LEGIONAR,45.82,13.48,14.7,9.9,0.2,24,8, +4,ITA,S-MARIA-DI-LEUCA,39.82,18.35,19.1,8.5,-1.1,30,34, +4,ITA,S-VALENTINO-ALLA-M,46.75,10.53,7.2,9.5,-0.7,26,-6, +4,ITA,SIGONELLA,37.40,14.92,20.0,9.1,0.6,30,-23, +4,ITA,TARVISIO,46.50,13.58,9.6,11.6,0.6,26,24, +4,ITA,TORINO-BRIC-DELLA-C,45.03,7.73,13.4,9.6,1.5,21,-34, +4,ITA,TORINO-CASELLE,45.22,7.65,14.0,10.7,1.4,19,-29, +4,ITA,TRAPANI-BIRGI,37.92,12.50,20.2,8.1,-0.7,31,35, +4,ITA,TREVISO-ISTRANA,45.68,12.10,14.7,10.5,0.6,20,-8, +4,ITA,TRIESTE,45.65,13.75,16.4,9.8,0.1,26,-2, +4,ITA,UDINE-RIVOLTO,45.98,13.03,14.8,10.2,0.7,21,-21, +4,ITA,USTICA,38.70,13.18,19.5,8.2,-1.1,34,30, +4,ITA,VENEZIA-TESSERA,45.50,12.33,14.9,10.5,0.8,22,-15, +4,ITA,VERONA-VILLAFRANCA,45.38,10.87,15.3,11.1,1.0,20,-26, +4,ITA,VICENZA,45.57,11.52,15.0,11.5,0.7,17,-23, +4,JEY,JERSEY-AP,49.22,-2.20,12.1,5.1,-0.5,36,39, +4,JOR,AMMAN-AP,31.98,35.98,20.4,9.5,1.1,25,3, +4,JOR,AMMAN-QUEEN-ALIA-AP,31.72,35.98,19.8,9.9,0.7,25,16, +4,JOR,AQABA-AP,29.55,35.00,26.2,9.1,0.9,21,5, +4,JOR,GHOR-SAFI,31.03,35.47,29.9,10.4,1.0,21,2, +4,JOR,H-4-IRWAISHED,32.50,38.20,22.1,11.4,1.1,23,-6, +4,JOR,H-5-SAFAWI,32.20,37.13,21.6,10.8,1.0,26,1, +4,JOR,IRBED,32.55,35.85,20.3,8.8,1.0,27,3, +4,JOR,MAAN,30.17,35.78,20.9,10.3,0.8,24,-12, +4,JOR,MAFRAQ,32.37,36.25,19.9,9.8,0.9,24,5, +4,KAZ,NOVYJ-USHTOGAN,47.90,48.80,11.2,16.4,-1.4,18,6, +4,LBN,BEYROUTH-AP,33.82,35.48,22.8,6.9,0.9,33,6, +4,LTU,BIRZAI,56.20,24.77,8.0,10.8,-0.9,25,-1, +4,LTU,KAUNAS,54.88,23.83,8.1,10.8,-1.0,25,-3, +4,LTU,KLAIPEDA,55.73,21.07,9.1,9.3,-0.1,28,6, +4,LTU,SIAULIAI,55.93,23.32,7.9,10.4,-1.0,25,1, +4,LTU,VILNIUS,54.63,25.28,7.6,10.8,-0.9,26,0, +4,LUX,LUXEMBOURG- LUXEMBOU,49.62,6.22,10.6,8.1,0.8,19,-23, +4,LVA,DAUGAVPILS,55.87,26.62,7.3,10.6,-0.9,26,10, +4,LVA,GULBENE,57.13,26.72,6.9,10.5,-1.8,22,5, +4,LVA,KOLKA,57.75,22.60,8.0,9.4,-0.9,33,5, +4,LVA,LIEPAJA,56.48,21.02,8.5,9.7,-0.5,31,-4, +4,LVA,RIGA,56.97,24.05,8.2,10.4,-1.0,25,6, +4,LVA,VALGA,57.78,26.03,7.1,10.3,-1.4,24,6, +4,MDA,KISINEV,47.02,28.98,11.4,11.9,0.2,19,10, +4,MKD,BITOLA,41.05,21.37,13.3,10.9,0.6,23,2, +4,MKD,KRIVA-PALANKA,42.20,22.33,12.4,9.8,-0.1,21,10, +4,MKD,OHRID,41.12,20.80,14.3,11.2,-0.5,24,31, +4,MKD,SKOPJE-AP,41.97,21.65,14.4,11.5,1.2,19,-2, +4,MLT,LUQA,35.85,14.48,20.9,7.8,-0.7,34,38, +4,MNE,PLEVLJA,43.35,19.35,11.1,10.8,0.8,23,27, +4,MNE,PODGORICA-GOLUBOVCI,42.37,19.25,16.6,10.2,0.3,23,3, +4,MNE,TIVAT,42.40,18.73,16.6,9.1,-0.9,25,25, +4,NLD,AMSTERDAM-AP-SCHIPH,52.30,4.77,11.3,6.9,0.4,26,10, +4,NLD,DE-BILT,52.10,5.18,11.3,7.0,0.1,23,14, +4,NLD,DE-KOOY,52.92,4.78,11.1,6.6,0.0,29,10, +4,NLD,DEELEN,52.07,5.88,10.7,7.6,-0.2,23,-19, +4,NLD,EINDHOVEN,51.45,5.42,11.5,7.0,-0.7,20,42, +4,NLD,GILZE-RIJEN,51.57,4.93,11.5,6.9,-0.2,25,12, +4,NLD,GRONINGEN-AP-EELDE,53.13,6.58,10.5,7.0,-0.7,24,33, +4,NLD,HOEK-VAN-HOLLAND,51.98,4.10,11.7,6.2,0.4,31,-26, +4,NLD,LEEUWARDEN,53.22,5.77,10.7,6.6,0.1,28,9, +4,NLD,MAASTRICHT-AP-ZUID,50.92,5.78,11.9,7.1,-0.2,18,6, +4,NLD,ROTTERDAM-AP-ZESTIE,51.95,4.45,11.5,7.0,-0.2,26,7, +4,NLD,SOESTERBERG,52.13,5.28,11.1,7.3,-0.2,23,12, +4,NLD,TWENTHE,52.27,6.90,11.1,7.0,-0.5,23,30, +4,NLD,VALKENBURG,52.18,4.42,11.4,6.6,-0.1,28,5, +4,NLD,VLISSINGEN,51.45,3.60,12.0,6.8,-0.6,28,55, +4,NLD,VOLKEL,51.65,5.70,11.3,7.0,-0.1,18,11, +4,NLD,WOENSDRECHT,51.45,4.33,11.4,7.0,0.0,23,8, +4,NOR,ALESUND-VIGRA,62.57,6.12,8.7,5.4,-0.8,32,34, +4,NOR,ALTA-LUFTHAVN,69.98,23.37,3.0,8.2,-2.2,34,35, +4,NOR,ANDOYA,69.30,16.13,4.6,6.7,-1.3,36,22, +4,NOR,BANAK,70.07,24.98,2.1,7.5,-1.7,38,37, +4,NOR,BARDUFOSS,69.07,18.53,2.9,8.2,-2.1,33,32, +4,NOR,BERGEN-FLESLAND,60.28,5.23,8.3,6.1,-0.7,28,24, +4,NOR,BERGEN-FLORIDA,60.38,5.33,8.9,6.6,-0.5,25,28, +4,NOR,BODO-VI,67.27,14.37,6.4,7.0,-0.9,28,11, +4,NOR,BYGLANDSFJORD-SOLBA,58.67,7.80,7.7,8.8,-1.0,25,18, +4,NOR,FAGERNES,60.98,9.23,4.5,9.9,-1.7,30,22, +4,NOR,FERDER-FYR,59.03,10.53,9.4,8.0,-0.9,29,24, +4,NOR,FOKSTUA-II,62.12,9.28,1.9,6.3,-1.9,38,33, +4,NOR,FRUHOLMEN-FYR,71.10,24.00,3.8,6.0,-1.6,44,32, +4,NOR,JAN-MAYEN,70.93,-8.67,1.1,3.7,1.2,53,-39, +4,NOR,KAUTOKEINO,69.00,23.03,0.8,8.1,-1.1,32,13, +4,NOR,KIRKENES,69.73,29.90,1.3,7.0,-1.3,40,39, +4,NOR,KONGSBERG-IV,59.67,9.65,6.6,10.5,-1.8,25,8, +4,NOR,KRISTIANSAND-KJEVIK,58.20,8.08,8.7,8.3,-0.9,24,30, +4,NOR,LISTA-FYR,58.12,6.57,9.1,6.1,-0.2,34,-5, +4,NOR,MYKEN,66.77,12.48,7.6,5.9,-1.0,32,24, +4,NOR,OKSOY-FYR,58.07,8.05,9.1,7.1,-0.5,33,30, +4,NOR,ONA-II,62.87,6.53,8.7,4.9,-1.1,38,32, +4,NOR,ORLAND-III,63.70,9.60,7.8,6.2,-0.8,30,23, +4,NOR,OSLO-FORNEBU,60.12,10.83,7.7,10.6,-1.2,21,11, +4,NOR,OSLO-GARDERMOEN,60.20,11.08,5.6,9.7,-1.6,30,15, +4,NOR,ROEST-III,67.52,12.10,6.9,4.9,-0.9,34,35, +4,NOR,RYGGE,59.38,10.78,8.0,9.1,-0.8,22,17, +4,NOR,SKROVA-FYR,68.15,14.65,6.5,7.0,-1.3,34,14, +4,NOR,SLATTEROY-FYR,59.92,5.07,9.1,5.6,-0.9,36,18, +4,NOR,SLETTNES-FYR,71.10,28.22,2.5,5.5,-1.9,46,41, +4,NOR,SORTLAND,68.70,15.42,5.3,6.7,-1.6,27,16, +4,NOR,STAVANGER-SOLA,58.88,5.63,9.0,6.3,0.1,33,-3, +4,NOR,SVINOY-FYR,62.33,5.27,8.7,4.7,-0.9,41,38, +4,NOR,TORSVAG-FYR,70.25,19.50,5.8,6.0,-1.0,31,23, +4,NOR,TORUNGEN-FYR,58.40,8.80,9.1,7.6,-1.1,32,22, +4,NOR,TROMSO-LANGNES,69.68,18.92,4.1,6.8,-2.4,32,25, +4,NOR,TRONDHEIM-VERNES,63.47,10.93,7.0,8.3,-1.5,25,7, +4,NOR,UTSIRA-FYR,59.30,4.88,8.9,5.6,-0.8,39,30, +4,NOR,VARDO,70.37,31.10,2.9,6.0,-1.9,41,33, +4,POL,BIALYSTOK,53.10,23.17,8.2,10.4,-1.0,24,-11, +4,POL,BIELSKO-BIALA,49.80,19.00,10.0,10.0,0.4,22,11, +4,POL,CHOJNICE,53.72,17.55,9.1,8.9,-0.4,22,8, +4,POL,CZESTOCHOWA,50.82,19.10,9.8,10.0,0.3,22,12, +4,POL,ELBLAG,54.17,19.43,9.3,9.5,0.2,25,8, +4,POL,GORZOW-WLKP,52.75,15.28,10.3,9.0,0.4,19,18, +4,POL,HEL,54.60,18.82,9.7,8.6,-0.5,29,28, +4,POL,JELENIA-GORA,50.90,15.80,9.5,9.0,-0.4,20,9, +4,POL,KALISZ,51.78,18.08,10.3,9.8,-0.3,21,14, +4,POL,KASPROWY-WIERCH,49.23,19.98,1.4,5.4,-0.1,47,-6, +4,POL,KATOWICE,50.23,19.03,9.9,9.2,-0.3,21,6, +4,POL,KETRZYN,54.07,21.37,8.7,10.6,0.0,24,10, +4,POL,KIELCE,50.82,20.70,9.0,9.8,-0.1,22,8, +4,POL,KLODZKO,50.43,16.62,9.2,9.8,-0.1,21,7, +4,POL,KOLOBRZEG,54.18,15.58,10.0,8.7,-0.5,26,31, +4,POL,KOLO,52.20,18.67,10.2,9.3,-0.6,21,10, +4,POL,KOSZALIN,54.20,16.15,10.0,8.4,0.0,23,12, +4,POL,KOZIENICE,51.57,21.55,9.9,10.3,-1.2,26,-22, +4,POL,KRAKOW,50.08,19.80,9.9,9.7,0.3,18,10, +4,POL,KROSNO,49.68,21.75,9.7,10.1,0.0,24,4, +4,POL,LEBA,54.75,17.53,9.5,7.8,-0.7,29,34, +4,POL,LEBORK,54.55,17.75,9.3,8.3,-0.9,22,26, +4,POL,LEGNICA,51.20,16.20,10.8,8.9,-0.7,19,20, +4,POL,LESKO,49.47,22.35,9.3,9.9,0.9,24,49, +4,POL,LESZNO,51.83,16.53,10.3,9.1,0.3,20,9, +4,POL,LODZ,51.73,19.40,9.8,9.8,-0.5,18,34, +4,POL,LUBLIN-RADAWIEC,51.22,22.40,8.8,11.0,-0.4,22,-2, +4,POL,MIKOLAJKI,53.78,21.58,9.1,10.7,-0.2,22,8, +4,POL,MLAWA,53.10,20.35,9.0,9.4,-0.7,23,-2, +4,POL,NOWY-SACZ,49.62,20.70,10.5,10.5,0.3,17,12, +4,POL,OLSZTYN,53.77,20.42,9.3,9.3,-0.5,22,11, +4,POL,OPOLE,50.80,17.97,10.7,9.4,-0.5,21,4, +4,POL,PILA,53.13,16.75,9.9,9.5,-0.3,20,11, +4,POL,PLOCK,52.58,19.73,9.7,9.7,-0.1,23,6, +4,POL,POZNAN,52.42,16.85,10.3,9.2,-0.3,21,6, +4,POL,PRZEMYSL,49.80,22.77,9.3,9.9,-0.4,22,10, +4,POL,RACIBORZ,50.05,18.20,10.3,9.1,-0.5,22,4, +4,POL,RZESZOW-JASIONKA,50.10,22.05,9.3,10.5,-0.8,22,1, +4,POL,SANDOMIERZ,50.70,21.72,9.7,9.9,-0.5,20,10, +4,POL,SIEDLCE,52.25,22.25,8.8,10.2,-0.5,23,-15, +4,POL,SLUBICE,52.35,14.60,10.8,9.0,-0.1,21,9, +4,POL,SNIEZKA,50.73,15.73,2.4,5.9,-1.2,44,31, +4,POL,SULEJOW,51.35,19.87,10.1,9.2,-0.2,23,12, +4,POL,SUWALKI,54.13,22.95,7.8,10.5,-1.1,25,-10, +4,POL,SWINOUJSCIE,53.92,14.23,10.1,8.6,-0.5,26,15, +4,POL,SZCZECINEK,53.72,16.68,9.3,8.8,-0.9,21,25, +4,POL,SZCZECIN,53.40,14.62,10.5,8.4,-0.3,22,17, +4,POL,TARNOW,50.03,20.98,10.7,10.2,-0.2,18,8, +4,POL,TERESPOL,52.07,23.62,9.4,10.0,-0.7,19,3, +4,POL,TORUN,53.05,18.58,10.0,9.7,0.0,21,6, +4,POL,USTKA,54.58,16.87,9.4,8.6,-0.2,26,8, +4,POL,WARSZAWA-OKECIE,52.17,20.97,9.8,9.5,-0.2,21,14, +4,POL,WIELUN,51.22,18.57,10.2,9.8,-0.5,18,43, +4,POL,WLODAWA,51.55,23.53,8.7,10.9,0.0,21,12, +4,POL,WROCLAW-II,51.10,16.88,10.5,9.5,-0.2,20,12, +4,POL,ZAKOPANE,49.30,19.97,7.8,9.9,-0.5,27,-12, +4,POL,ZAMOSC,50.70,23.25,8.8,10.6,-0.6,22,-21, +4,POL,ZIELONA-GORA,51.93,15.53,10.6,8.9,-0.4,20,9, +4,PRT,BEJA,38.02,-7.87,18.2,8.3,1.5,27,-40, +4,PRT,BRAGANCA,41.80,-6.73,15.0,9.1,1.1,24,-35, +4,PRT,COIMBRA,40.20,-8.42,17.5,6.8,-0.1,24,6, +4,PRT,FARO-AP,37.02,-7.97,19.8,6.7,0.7,26,-39, +4,PRT,FLORES(ACORES),39.45,-31.13,18.5,4.0,0.7,47,-44, +4,PRT,FUNCHAL-S-CATARINA,32.68,-16.77,20.7,4.0,0.5,38,-34, +4,PRT,HORTA-CASTELO-BRANC,38.52,-28.72,18.6,3.7,0.8,48,-42, +4,PRT,LAJES(ACORES),38.77,-27.10,19.0,4.8,1.0,37,-44, +4,PRT,LISBOA-GAGO-COUTINH,38.77,-9.13,18.5,6.4,1.0,25,-32, +4,PRT,LISBOA-PORTELA,38.77,-9.13,19.3,7.2,1.5,23,-31, +4,PRT,PONTA-DELGADA-NORDE,37.73,-25.70,19.2,4.6,-0.6,36,43, +4,PRT,PORTALEGRE,39.28,-7.42,17.2,8.3,1.5,26,-37, +4,PRT,PORTO-PEDRAS-RUBRAS,41.23,-8.68,16.3,5.9,0.2,23,5, +4,PRT,PORTO-SANTO,33.07,-16.35,20.8,4.4,0.9,45,-17, +4,PRT,SAGRES,37.00,-8.95,19.5,5.5,0.9,27,-21, +4,PRT,SANTA-MARIA(ACORES),36.97,-25.17,19.6,4.5,0.7,39,-44, +4,PRT,VIANA-DO-CASTELO,41.70,-8.80,17.0,6.8,0.1,22,8, +4,ROU,ARAD,46.13,21.35,12.3,11.1,0.9,21,-18, +4,ROU,BACAU,46.53,26.92,11.3,11.9,0.7,18,-4, +4,ROU,BAIA-MARE,47.67,23.50,11.5,11.3,0.6,20,35, +4,ROU,BARLAD,46.23,27.65,11.6,11.8,-0.7,19,47, +4,ROU,BISTRITA,47.15,24.50,10.9,11.3,0.7,20,19, +4,ROU,BLAJ,46.18,23.93,11.3,12.1,0.6,19,33, +4,ROU,BOTOSANI,47.73,26.65,10.8,11.1,0.4,18,11, +4,ROU,BUCURESTI-INMH-BANE,44.48,26.12,12.4,11.9,0.0,19,15, +4,ROU,BUZAU,45.13,26.85,12.8,11.8,0.7,20,-22, +4,ROU,CALAFAT,43.98,22.95,13.6,11.2,0.5,21,-15, +4,ROU,CALARASI,44.20,27.33,13.1,11.4,0.5,20,-18, +4,ROU,CARANSEBES,45.42,22.25,12.9,10.4,-0.1,20,5, +4,ROU,CEAHLAU-TOACA,46.98,25.95,2.2,7.1,-1.3,39,35, +4,ROU,CLUJ-NAPOCA,46.78,23.57,10.5,11.2,0.8,21,39, +4,ROU,CONSTANTA,44.22,28.65,13.3,10.4,-1.0,26,52, +4,ROU,CRAIOVA,44.32,23.87,13.3,11.4,0.0,21,14, +4,ROU,DEVA,45.87,22.90,12.5,10.9,0.2,16,11, +4,ROU,DROBETA-TURNU-SEVER,44.63,22.63,14.0,10.7,0.6,18,-22, +4,ROU,FAGARAS,45.83,24.93,10.1,11.8,-0.8,23,-30, +4,ROU,FETESTI,44.37,27.85,12.9,11.2,0.0,22,8, +4,ROU,GALATI,45.48,28.03,12.5,11.3,-0.1,21,4, +4,ROU,GIURGIU,43.88,25.95,13.8,12.5,1.5,20,-29, +4,ROU,GRIVITA,44.75,27.30,12.8,11.5,-0.2,20,12, +4,ROU,IASI,47.17,27.63,11.2,11.9,-0.8,24,-35, +4,ROU,INTORSURA-BUZAULUI,45.68,26.02,8.5,11.2,-0.5,23,-5, +4,ROU,JURILOVCA,44.77,28.88,12.3,11.3,0.4,24,-27, +4,ROU,KOGALNICEANU,44.33,28.43,12.4,10.7,1.0,24,-34, +4,ROU,MANGALIA,43.82,28.58,13.2,10.4,-0.2,31,7, +4,ROU,MIERCUREA-CIUC,46.37,25.73,8.1,11.2,-0.2,22,9, +4,ROU,ORADEA,47.03,21.90,12.0,10.9,0.5,19,-18, +4,ROU,ORAVITA,45.03,21.68,12.7,10.1,0.4,23,8, +4,ROU,PETROSANI,45.42,23.38,10.4,11.1,0.0,19,10, +4,ROU,PLOIESTI,44.95,26.00,12.0,11.3,0.0,23,8, +4,ROU,PREDEAL,45.50,25.58,6.4,9.9,-1.0,29,8, +4,ROU,RARAU(MONASTERY),47.45,25.57,4.4,9.1,-1.9,33,28, +4,ROU,RIMNICU-VALCEA,45.10,24.37,12.8,11.5,0.8,17,-5, +4,ROU,ROMAN,46.97,26.92,10.2,12.1,0.4,20,4, +4,ROU,ROSIORI-DE-VEDE,44.10,24.98,13.2,12.2,0.6,20,-17, +4,ROU,SATU-MARE,47.72,22.88,11.7,11.2,0.3,20,13, +4,ROU,SIBIU,45.80,24.15,10.7,11.4,0.5,18,13, +4,ROU,SIGHETUL-MARMATIEI,47.93,23.92,10.2,11.9,0.8,20,45, +4,ROU,SUCEAVA,47.63,26.25,9.6,11.6,-0.6,23,-17, +4,ROU,SULINA,45.17,29.73,13.0,10.7,-0.1,29,4, +4,ROU,TARGOVISTE,44.93,25.43,11.9,11.4,0.3,22,7, +4,ROU,TG-JIU,45.03,23.27,12.7,11.8,0.1,19,14, +4,ROU,TG-MURES,46.53,24.53,10.8,11.8,1.0,18,19, +4,ROU,TIMISOARA,45.77,21.25,13.0,11.0,0.8,20,-12, +4,ROU,TR-MAGURELE,43.75,24.88,13.8,12.1,1.0,20,-32, +4,ROU,TULCEA,45.18,28.82,12.6,11.2,-0.2,23,13, +4,ROU,VARFU-OMU,45.45,25.45,-0.3,5.2,-0.1,40,25, +4,ROU,ZALAU,47.18,23.08,11.6,11.0,0.2,20,4, +4,RUS,ADLER,43.43,39.90,14.8,8.6,0.0,33,8, +4,RUS,ALATYR`,54.82,46.58,6.5,12.5,-2.0,28,14, +4,RUS,ALEKSANDROV-GAJ,50.15,48.55,8.8,14.8,-2.3,26,3, +4,RUS,ARHANGELSK,64.55,40.58,2.9,9.6,-1.9,36,39, +4,RUS,ARMAVIR,44.98,41.12,12.4,11.9,0.2,22,16, +4,RUS,ASTRAHAN,46.28,48.05,12.9,15.8,-0.7,19,-3, +4,RUS,BALASOV,51.55,43.15,8.2,13.1,-1.4,25,16, +4,RUS,BARENCBURG,78.07,14.25,-3.0,6.6,-1.6,48,-3, +4,RUS,BELYJ,55.85,32.95,6.7,11.0,-1.8,25,12, +4,RUS,BOGUCAR,49.93,40.57,9.4,13.7,-1.0,21,-7, +4,RUS,BOLOGOE,57.90,34.05,6.4,10.7,-1.9,26,10, +4,RUS,BRJANSK,53.25,34.32,7.4,11.5,-1.7,24,4, +4,RUS,BUDENNOVSK,44.78,44.13,11.6,14.2,0.0,25,4, +4,RUS,BUJ,58.48,41.53,5.3,11.2,-2.1,26,16, +4,RUS,CELINA,46.55,41.05,10.4,13.5,-0.6,21,8, +4,RUS,CEREPOVEC,59.25,37.97,4.5,10.6,-1.8,30,23, +4,RUS,DIVNOE,45.92,43.35,11.2,14.0,-0.1,23,2, +4,RUS,ELAT`MA,54.95,41.77,6.5,11.8,-2.0,24,9, +4,RUS,ELEC,52.63,38.52,7.6,12.1,-1.8,26,6, +4,RUS,ERSOV,51.37,48.30,7.7,13.4,-2.2,29,8, +4,RUS,GRIDINO,65.90,34.77,2.5,8.4,-1.9,42,38, +4,RUS,JASKUL,46.18,45.35,13.3,15.2,-0.9,18,-1, +4,RUS,JUR`EVEC,57.33,43.12,6.0,11.6,-2.4,24,9, +4,RUS,KALAC,50.42,41.05,8.6,13.0,-0.8,21,4, +4,RUS,KALEVALA,65.22,31.17,2.7,9.2,-1.9,34,25, +4,RUS,KALININGRAD,54.72,20.55,8.9,10.0,0.0,24,8, +4,RUS,KALUGA,54.57,36.40,6.6,11.1,-1.3,25,6, +4,RUS,KAMYSIN,50.07,45.37,9.3,13.7,-1.1,23,3, +4,RUS,KANDALAKSA,67.15,32.35,2.2,8.7,-1.7,37,32, +4,RUS,KANIN-NOS,68.65,43.30,0.3,4.9,-0.1,51,4, +4,RUS,KARGOPOL,61.50,38.93,4.0,10.2,-2.1,28,30, +4,RUS,KAZAN`,55.60,49.28,6.0,12.1,-1.8,29,11, +4,RUS,KEM,64.95,34.65,2.9,8.3,-1.8,39,37, +4,RUS,KINGISEPP,59.37,28.60,6.6,10.6,-2.1,27,13, +4,RUS,KIROV,58.60,49.63,5.4,11.8,-2.5,28,16, +4,RUS,KOCUBEJ,44.40,46.55,13.4,13.1,-0.2,22,-8, +4,RUS,KOJNAS,64.75,47.65,2.1,10.1,-1.7,32,27, +4,RUS,KOTLAS,61.23,46.72,3.9,10.7,-1.8,27,25, +4,RUS,KOZ`MODEM`JANSK,56.33,46.58,6.4,12.3,-2.1,27,8, +4,RUS,KRASNODAR,45.03,39.15,12.7,11.3,-0.1,22,9, +4,RUS,KRASNOSCELE,67.35,37.05,0.9,7.7,-1.1,37,26, +4,RUS,KRASNYE-BAKI,57.13,45.17,6.2,11.7,-1.8,25,13, +4,RUS,KURSK,51.77,36.17,7.9,12.3,-1.6,27,1, +4,RUS,LOVOZERO,68.00,35.03,1.1,7.9,-0.6,35,9, +4,RUS,LUKOJANOV,55.03,44.50,6.3,12.0,-2.2,26,11, +4,RUS,MAHACKALA,42.83,47.55,13.3,12.0,-0.4,30,8, +4,RUS,MEDVEZEGORSK,62.92,34.43,4.0,10.3,-2.0,34,24, +4,RUS,MEZEN,65.87,44.22,1.6,8.1,-1.1,32,38, +4,RUS,MINERALNYE-VODY,44.23,43.07,10.6,12.7,-0.6,24,-25, +4,RUS,MOROZOVSK,48.35,41.87,9.7,13.3,-1.0,25,13, +4,RUS,MOSKVA,55.83,37.62,7.4,11.5,-1.8,22,7, +4,RUS,MOZDOK,43.73,44.67,12.3,12.8,0.1,23,0, +4,RUS,MURMANSK,68.97,33.05,1.7,7.8,-1.3,35,42, +4,RUS,NALCIK,43.53,43.63,11.3,12.1,-0.1,23,4, +4,RUS,NIKOLAEVSKOE,58.57,29.80,6.1,10.6,-1.9,29,12, +4,RUS,NIKOLO-POLOMA,58.35,43.38,4.9,11.0,-2.4,27,20, +4,RUS,NIKOL`SK,59.53,45.47,4.7,11.3,-2.4,27,25, +4,RUS,NIZNIJ-NOVGOROD,56.27,44.00,6.4,11.4,-2.0,28,13, +4,RUS,NJANDOMA,61.67,40.18,3.7,10.2,-2.0,27,26, +4,RUS,NOLINSK,57.55,49.95,5.2,11.6,-2.1,27,15, +4,RUS,OBJACEVO,60.37,49.65,4.4,10.8,-2.3,29,21, +4,RUS,ONEGA,63.90,38.12,4.3,10.1,-2.2,35,24, +4,RUS,OPARINO,59.85,48.28,4.0,10.6,-2.0,24,23, +4,RUS,OREL,52.93,36.00,7.5,11.8,-1.8,23,2, +4,RUS,OSTASKOV,57.13,33.12,6.5,10.8,-1.6,29,14, +4,RUS,PAVELEC,53.78,39.25,6.5,11.7,-1.9,27,14, +4,RUS,PENZA,53.12,45.02,6.8,12.4,-2.1,28,13, +4,RUS,PETROZAVODSK,61.82,34.27,4.9,10.1,-2.1,32,25, +4,RUS,PINEGA,64.70,43.38,2.6,9.7,-1.8,32,28, +4,RUS,PJALICA,66.18,39.53,1.1,6.1,-0.9,44,39, +4,RUS,PRIMORSKO-AHTARSK,46.03,38.15,12.6,12.3,-0.2,22,13, +4,RUS,PSKOV,57.82,28.42,7.3,11.2,-1.5,23,9, +4,RUS,PUDOZ,61.80,36.52,4.7,10.6,-2.3,29,22, +4,RUS,REBOLY,63.83,30.82,3.4,9.9,-2.1,35,24, +4,RUS,REMONTNOE,46.57,43.67,10.1,13.6,-0.7,25,3, +4,RUS,RJAZAN`,54.63,39.70,6.9,11.8,-1.9,26,11, +4,RUS,ROSLAVL,53.93,32.83,6.8,11.0,-1.7,28,12, +4,RUS,ROSTOV-NA-DONU,47.25,39.82,10.7,13.0,-0.7,23,-23, +4,RUS,ROSTOV,57.20,39.42,5.8,11.3,-2.4,27,17, +4,RUS,RYBINSK,58.10,38.68,5.9,11.2,-2.0,25,17, +4,RUS,SAKUN`JA,57.67,46.63,5.1,11.5,-2.0,29,16, +4,RUS,SARATOV,51.57,46.03,7.8,13.6,-2.1,26,12, +4,RUS,SAR`JA,58.37,45.53,4.9,11.2,-2.0,27,14, +4,RUS,SEGEZA,63.77,34.28,3.9,9.7,-2.3,34,27, +4,RUS,SENKURSK,62.10,42.90,4.2,10.9,-2.4,29,24, +4,RUS,SERAFIMOVIC,49.57,42.75,9.6,13.4,-0.9,21,-6, +4,RUS,SMOLENSK,54.75,32.07,6.7,10.9,-1.6,24,5, +4,RUS,SOJNA,67.88,44.13,-0.5,6.5,-0.6,44,12, +4,RUS,SORTAVALA,61.72,30.72,5.2,10.1,-2.6,35,21, +4,RUS,ST-PETERSBURG,59.97,30.30,6.6,11.0,-2.2,29,19, +4,RUS,STAVROPOL,45.12,42.08,11.1,12.1,1.0,24,-22, +4,RUS,SUHINICI,54.10,35.58,6.9,11.4,-1.6,25,9, +4,RUS,SURA,63.58,45.63,2.4,9.7,-1.4,32,28, +4,RUS,SVETLOGRAD,45.35,42.85,11.7,13.2,0.0,24,5, +4,RUS,TAMBOV,52.80,41.33,7.1,12.4,-1.8,25,5, +4,RUS,TIHORECK,45.85,40.08,12.1,12.3,0.4,23,13, +4,RUS,TIHVIN,59.65,33.55,5.5,10.5,-2.4,28,22, +4,RUS,TOT`MA,59.88,42.75,4.7,10.9,-2.0,28,16, +4,RUS,TRUBCEVSK,52.58,33.77,7.8,11.8,-0.9,25,11, +4,RUS,TUAPSE,44.10,39.07,14.8,9.5,0.0,29,4, +4,RUS,TULA,54.23,37.62,7.0,11.7,-2.1,26,15, +4,RUS,TVER,56.90,35.88,6.0,11.0,-2.1,27,14, +4,RUS,ULYANOVSK,54.32,48.33,6.6,12.7,-2.0,30,17, +4,RUS,UMBA,66.68,34.35,2.5,8.4,-1.5,37,34, +4,RUS,URJUPINSK,50.80,42.00,8.5,12.6,-1.3,24,2, +4,RUS,VELIKIE-LUKI,56.35,30.62,7.2,10.9,-1.4,22,9, +4,RUS,VELSK,61.08,42.07,4.6,11.1,-2.5,26,21, +4,RUS,VERHNIJ-BASKUNCAK,48.22,46.73,11.7,15.5,-1.0,17,7, +4,RUS,VERHNJAJA-TOJMA,62.23,45.02,3.2,10.0,-1.9,29,27, +4,RUS,VJAZMA,55.17,34.40,6.1,11.2,-2.0,26,14, +4,RUS,VLADIMIR,56.12,40.35,6.1,11.5,-1.8,24,12, +4,RUS,VOLGOGRAD,48.78,44.37,9.4,13.6,-1.1,22,13, +4,RUS,VOLOGDA,59.32,39.92,4.8,10.6,-2.4,29,25, +4,RUS,VORONEZ,51.65,39.25,7.4,12.2,-1.6,26,4, +4,RUS,VORONEZ,51.70,39.22,8.6,12.5,-1.5,24,-5, +4,RUS,VOZEGA,60.47,40.20,4.5,10.7,-1.9,26,23, +4,RUS,VYBORG,60.72,28.73,5.8,10.5,-2.2,33,16, +4,RUS,VYTEGRA,61.02,36.45,4.9,10.6,-2.2,29,23, +4,RUS,WLADIKAVKAZ,43.05,44.65,10.5,12.1,-0.1,25,3, +4,RUS,ZAMETCINO,53.48,42.63,6.8,12.3,-2.0,27,14, +4,RUS,ZIZGIN,65.20,36.82,2.6,7.5,-1.5,43,38, +4,SJM,BJORNOYA,74.52,19.02,-0.1,2.7,-0.5,55,-1, +4,SJM,HOPEN,76.50,25.07,-2.4,5.5,-2.2,62,-16, +4,SJM,SVALBARD-LUFTHAVN,78.25,15.47,-2.6,6.8,-2.4,51,-9, +4,SRB,BANATSKI-KARLOVAC,45.05,21.03,13.1,10.8,0.5,21,1, +4,SRB,BEOGRAD-SURCIN,44.82,20.28,13.3,10.9,0.8,21,7, +4,SRB,BEOGRAD,44.80,20.47,14.3,10.8,0.7,20,-16, +4,SRB,CUPRIJA,43.93,21.38,12.8,10.7,-0.2,19,10, +4,SRB,DIMITROVGRAD,43.02,22.75,11.7,10.7,0.5,22,-1, +4,SRB,KIKINDA,45.85,20.47,13.1,11.0,0.7,21,-5, +4,SRB,KOPAONIK,43.28,20.80,5.9,8.5,-1.7,32,14, +4,SRB,KRALJEVO,43.70,20.70,13.2,10.8,0.7,21,-10, +4,SRB,KRUSEVAC,43.57,21.35,13.6,11.0,0.1,19,6, +4,SRB,LESKOVAC,42.98,21.95,12.8,10.6,0.1,20,12, +4,SRB,LOZNICA,44.55,19.23,13.6,10.9,0.5,22,-7, +4,SRB,NEGOTIN,44.23,22.55,13.4,12.0,1.0,19,-3, +4,SRB,NIS,43.33,21.90,13.3,11.5,0.5,20,1, +4,SRB,NOVI-SAD-RIMSKI-SAN,45.33,19.85,13.3,10.5,0.2,19,11, +4,SRB,PALIC,46.10,19.77,12.9,11.4,0.0,21,0, +4,SRB,PEC,42.67,20.30,13.2,11.4,0.6,25,0, +4,SRB,PRISTINA,42.65,21.15,12.2,11.0,0.1,23,2, +4,SRB,SJENICA,43.28,20.00,9.2,9.6,-0.8,25,-10, +4,SRB,SMEDEREVSKA-PALANKA,44.37,20.95,13.3,10.8,0.4,21,3, +4,SRB,SOMBOR,45.77,19.15,13.0,10.4,0.0,21,9, +4,SRB,SREMSKA-MITROVICA,45.10,19.55,13.2,10.6,0.7,18,8, +4,SRB,VALJEVO,44.32,19.92,13.2,10.5,0.1,21,11, +4,SRB,VELIKO-GRADISTE,44.75,21.52,12.9,10.5,0.2,20,12, +4,SRB,VRANJE,42.55,21.92,12.4,11.1,0.6,21,-1, +4,SRB,VRSAC,45.15,21.32,13.5,10.8,1.0,21,6, +4,SRB,ZLATIBOR,43.73,19.72,9.9,10.0,0.0,23,5, +4,SRB,ZRENJANIN,45.37,20.42,13.3,10.8,0.1,20,4, +4,SVK,BRATISLAVA-LETISKO,48.20,17.20,11.9,10.3,0.7,14,-21, +4,SVK,CHOPOK,48.98,19.60,0.6,5.0,-0.4,40,4, +4,SVK,DUDINCE,48.17,18.87,11.6,11.4,0.7,17,-5, +4,SVK,HURBANOVO,47.87,18.20,12.3,10.5,0.0,19,9, +4,SVK,KAMENICA-NAD-CIROCH,48.93,22.00,9.9,11.7,0.0,18,10, +4,SVK,KOSICE,48.67,21.22,10.0,11.4,-0.2,21,-2, +4,SVK,LIESEK,49.37,19.68,7.8,9.9,-0.5,24,-25, +4,SVK,LOMNICKY-STIT,49.20,20.22,-2.1,5.6,-0.3,43,17, +4,SVK,LUCENEC,48.33,19.73,11.1,10.9,-0.3,18,8, +4,SVK,MILHOSTOV,48.67,21.73,10.8,11.3,0.6,17,21, +4,SVK,NITRA,48.28,18.13,11.8,10.6,1.2,18,-5, +4,SVK,PIESTANY,48.62,17.83,11.2,10.2,-0.2,21,14, +4,SVK,POPRAD-TATRY,49.07,20.25,7.9,10.3,-0.6,21,13, +4,SVK,PRIEVIDZA,48.77,18.60,10.9,10.9,0.9,19,10, +4,SVK,SLIAC,48.65,19.15,10.0,11.3,-0.1,20,8, +4,SVK,STRBSKE-PLESO,49.12,20.08,6.1,9.2,-1.4,31,8, +4,SVK,STROPKOV-TISINEC,49.22,21.65,9.6,11.3,0.1,22,19, +4,SVK,TELGART,48.85,20.18,7.0,9.7,-0.4,26,0, +4,SVK,ZILINA-HRICOV,49.23,18.62,9.4,10.9,0.0,22,8, +4,SVN,LJUBLJANA-BEZIGRAD,46.07,14.52,12.6,10.2,0.7,14,-12, +4,SVN,LJUBLJANA-BRNIK,46.22,14.48,11.0,10.5,0.5,21,-11, +4,SVN,PORTOROZ,45.52,13.57,14.9,9.2,0.0,26,7, +4,SWE,ANGELHOLM,56.30,12.85,9.3,7.9,-0.5,23,26, +4,SWE,ARJEPLOG,66.05,17.87,1.4,7.8,-1.1,34,26, +4,SWE,BJUROKLUBB(LGT-H),64.48,21.58,4.1,9.1,-1.9,39,30, +4,SWE,FALSTERBO,55.38,12.82,10.0,8.1,-0.5,31,23, +4,SWE,FARO-ISLAND,57.90,19.17,8.6,7.7,-1.3,31,20, +4,SWE,FRANSTA,62.50,16.18,4.0,9.5,-1.7,28,23, +4,SWE,GADDEDE,64.50,14.17,3.5,8.1,-2.2,33,29, +4,SWE,GOTEBORG-LANDVETTER,57.67,12.30,8.3,7.8,-0.5,29,13, +4,SWE,GOTEBORG-SAVE,57.78,11.88,8.8,8.1,-0.9,27,17, +4,SWE,GOTSKA-SANDON,58.40,19.20,8.4,8.5,-1.3,34,17, +4,SWE,GUNNARN,65.02,17.68,2.9,9.0,-1.7,31,32, +4,SWE,HAPARANDA,65.83,24.15,3.8,9.4,-2.5,35,26, +4,SWE,HARSTENA,58.25,17.02,8.6,8.3,-1.2,29,32, +4,SWE,HEMAVAN,65.80,15.10,2.3,8.0,-1.8,37,40, +4,SWE,HOBURG,56.92,18.15,8.9,8.2,-1.3,33,30, +4,SWE,HOLMOGADD,63.60,20.75,5.1,8.9,-1.9,40,30, +4,SWE,JOKKMOKK(SWE-AFB),66.63,19.65,1.6,8.7,-1.6,34,27, +4,SWE,JONKOPING-AXAMO,57.75,14.08,7.0,8.9,-0.9,28,7, +4,SWE,KARLSTAD-FLYGPLATS,59.45,13.47,7.2,9.7,-1.0,27,6, +4,SWE,KATTERJAKK,68.42,18.17,0.8,6.0,-1.0,38,24, +4,SWE,KIRUNA,67.82,20.33,0.7,7.3,-1.0,35,18, +4,SWE,KRAMFORS(SWE-AFB),63.05,17.77,4.9,9.9,-1.7,29,17, +4,SWE,KVIKKJOKK-ARRENJARK,66.88,17.75,1.6,8.6,-0.8,32,21, +4,SWE,LAINIO,67.77,22.35,1.0,7.7,-1.5,33,24, +4,SWE,LANDSORT,58.75,17.87,8.2,8.2,-1.5,31,26, +4,SWE,LINKOPING-MALMSLATT,58.40,15.53,7.5,9.7,-0.5,26,6, +4,SWE,LJUNGBYHED(SWE-AFB),56.08,13.23,8.9,7.6,-0.8,23,8, +4,SWE,LULEA-KALLAX,65.55,22.13,4.0,9.6,-2.0,36,25, +4,SWE,MALILLA,57.40,15.82,7.8,8.7,-1.4,24,8, +4,SWE,MALMO-STURUP,55.55,13.37,9.2,7.8,-0.4,26,23, +4,SWE,MALUNG,60.68,13.72,4.9,9.4,-2.0,30,25, +4,SWE,OSBY,56.37,13.95,8.2,8.6,-0.7,22,19, +4,SWE,OSTERSUND-FROSON,63.20,14.50,4.5,8.4,-2.3,30,20, +4,SWE,OSTMARK,60.35,12.65,5.4,9.4,-2.1,27,19, +4,SWE,PAJALA,67.22,23.40,1.8,9.2,-1.6,27,24, +4,SWE,RITSEM,67.73,17.47,1.1,6.8,-1.4,39,30, +4,SWE,RONNEBY-KALLINGE,56.27,15.27,8.7,8.1,-0.4,23,12, +4,SWE,SARNA,61.70,13.18,3.4,9.0,-1.5,27,34, +4,SWE,SATENAS,58.43,12.72,8.1,8.8,-0.5,24,35, +4,SWE,SINGO-ISLAND,60.17,18.75,7.3,9.4,-0.8,27,21, +4,SWE,SODERHAMN(SWE-AFB),61.27,17.10,5.7,9.5,-1.6,28,16, +4,SWE,STOCKHOLM-ARLANDA,59.65,17.95,7.5,9.6,-1.0,28,10, +4,SWE,STOCKHOLM-BROMMA,59.37,17.90,8.1,9.7,-1.3,26,-7, +4,SWE,STORLIEN,63.30,12.12,2.7,7.1,-2.0,37,31, +4,SWE,SVEG,62.02,14.37,4.4,9.2,-2.3,27,21, +4,SWE,SVENSKA-HOGARNA,59.45,19.50,7.7,8.7,-0.8,38,20, +4,SWE,TIMRA-MIDLANDA,62.52,17.45,5.1,9.4,-2.2,31,19, +4,SWE,UMEA,63.80,20.28,4.8,9.3,-2.7,32,22, +4,SWE,UNGSKAR,56.03,15.80,8.5,6.5,-1.3,33,7, +4,SWE,UPPSALA,59.90,17.60,6.8,9.5,-1.2,24,10, +4,SWE,VASTERAS-HASSLO-AFB,59.58,16.63,7.6,9.6,-1.6,28,1, +4,SWE,VISBY,57.67,18.35,8.8,8.4,-0.9,29,15, +4,SYR,ABUKMAL,34.42,40.92,23.8,12.5,1.4,22,-7, +4,SYR,ALEPPO-INTL-AP,36.18,37.20,20.1,11.9,1.3,23,-4, +4,SYR,DAMASCUS-INTL-AP,33.42,36.52,20.0,11.1,1.0,22,-5, +4,SYR,DARAA,32.60,36.10,21.0,9.4,0.9,24,7, +4,SYR,DEIR-EZZOR,35.32,40.15,22.3,13.0,1.2,21,-5, +4,SYR,HAMA,35.12,36.75,21.3,11.1,1.2,24,-9, +4,SYR,KAMISHLI,37.05,41.22,21.6,13.0,1.1,23,-16, +4,SYR,LATTAKIA,35.53,35.77,21.9,8.6,1.2,29,-10, +4,SYR,NABK,34.03,36.72,16.5,10.7,0.7,24,-1, +4,SYR,PALMYRA,34.55,38.30,22.4,12.2,1.3,20,5, +4,SYR,SAFITA,34.82,36.13,20.6,9.2,1.5,27,1, +4,TUR,ADANA-INCIRLIK-AB,37.00,35.43,20.5,9.9,0.0,28,16, +4,TUR,AFYON,38.75,30.53,14.4,11.1,0.7,20,-20, +4,TUR,AKHISAR,38.92,27.85,19.0,11.2,0.0,23,9, +4,TUR,ANTALYA,36.87,30.73,20.7,9.9,0.0,27,7, +4,TUR,AYDIN,37.85,27.85,20.5,10.9,0.1,23,-5, +4,TUR,BALIKESIR,39.62,27.92,16.6,10.7,0.3,23,3, +4,TUR,BANDIRMA,40.32,27.97,16.0,10.1,-0.8,24,23, +4,TUR,BODRUM,37.03,27.43,21.0,9.4,-0.8,27,18, +4,TUR,BOLU,40.73,31.60,12.5,10.0,0.6,24,-7, +4,TUR,BURSA,40.18,29.07,17.2,10.8,0.0,24,5, +4,TUR,CANAKKALE,40.13,26.40,17.2,10.6,-0.4,27,8, +4,TUR,CORUM,40.55,34.95,13.5,12.3,0.9,22,6, +4,TUR,DIKILI,39.07,26.88,18.6,10.1,0.2,25,-2, +4,TUR,DIYARBAKIR,37.88,40.18,18.1,14.2,1.0,24,-23, +4,TUR,EDIRNE,41.67,26.57,15.2,11.0,0.0,22,9, +4,TUR,ELAZIG,38.60,39.28,16.0,13.6,1.4,24,-26, +4,TUR,ERZINCAN,39.70,39.52,13.9,14.8,0.9,22,17, +4,TUR,ERZURUM,39.95,41.17,7.0,12.5,-1.2,36,28, +4,TUR,ESENBOGA,40.12,33.00,13.0,12.1,0.5,22,-28, +4,TUR,ESKISEHIR,39.78,30.57,13.9,11.9,-0.1,20,9, +4,TUR,ETIMESGUT,39.95,32.68,14.4,12.2,-1.0,21,49, +4,TUR,GAZIANTEP,37.08,37.37,18.3,12.8,1.2,24,-22, +4,TUR,GOKCEADA,40.18,25.90,17.2,9.6,-0.5,25,3, +4,TUR,GOLCUK-DUMLUPINAR,40.67,29.83,17.3,10.4,0.1,24,6, +4,TUR,INEBOLU,41.98,33.78,14.7,8.7,-0.6,33,8, +4,TUR,ISKENDERUN,36.58,36.17,22.3,9.2,1.3,27,-12, +4,TUR,ISPARTA,37.75,30.55,15.2,11.5,0.0,25,16, +4,TUR,ISTANBUL-ATATURK,40.97,28.82,16.4,10.1,0.0,26,0, +4,TUR,IZMIR-A-MENDERES,38.27,27.15,18.5,10.9,-0.1,24,8, +4,TUR,KAYSERI-ERKILET,38.82,35.43,13.8,12.1,1.0,23,-8, +4,TUR,KONYA,37.97,32.55,14.3,12.2,0.8,23,-6, +4,TUR,MALATYA-ERHAC,38.43,38.08,16.2,13.7,0.9,23,-17, +4,TUR,MERZIFON,40.85,35.58,14.1,11.2,0.6,21,10, +4,TUR,MUGLA,37.22,28.37,17.7,11.3,-0.7,24,34, +4,TUR,SAMSUN,41.28,36.30,15.6,8.0,-0.9,35,27, +4,TUR,SILIFKE,36.38,33.93,21.8,10.1,1.2,24,-6, +4,TUR,SINOP,42.03,35.17,15.2,8.5,-0.4,37,13, +4,TUR,SIVAS,39.75,37.02,12.5,13.0,1.3,25,17, +4,TUR,TEKIRDAG,40.98,27.55,16.4,10.7,-0.5,25,36, +4,TUR,TRABZON,41.00,39.72,15.8,8.2,0.5,37,-37, +4,TUR,USAK,38.68,29.40,15.8,11.8,-0.8,23,39, +4,TUR,VAN,38.45,43.32,12.5,14.0,0.0,27,14, +4,TUR,ZONGULDAK,41.45,31.80,14.9,8.5,-0.2,32,7, +4,UKR,CHERNIHIV,51.47,31.25,8.8,12.0,-1.3,24,-13, +4,UKR,CHERNIVTSI,48.37,25.90,10.1,11.2,0.6,19,-15, +4,UKR,CHORNOMORSKE,45.52,32.70,12.4,10.7,-0.7,29,20, +4,UKR,DNIPROPETROVSK,48.60,34.97,10.1,12.8,-0.4,24,0, +4,UKR,DONETSK,48.07,37.77,9.3,12.6,-0.4,23,20, +4,UKR,HENICHESK,46.17,34.82,12.0,12.3,-0.8,24,43, +4,UKR,IVANO-FRANKIVSK,48.97,24.70,9.7,11.2,-0.4,17,41, +4,UKR,IZIUM,49.18,37.30,9.4,12.7,-0.9,22,-2, +4,UKR,IZMAIL,45.37,28.85,12.1,11.5,-0.1,21,10, +4,UKR,KERCH,45.40,36.42,12.2,11.3,-0.8,26,30, +4,UKR,KHARKIV,49.97,36.13,9.0,13.0,-0.3,22,20, +4,UKR,KHERSON,46.63,32.57,11.7,11.8,-0.3,24,4, +4,UKR,KHMELNYTSKYI,49.43,26.98,9.6,10.5,-0.1,22,9, +4,UKR,KIROVOHRAD,48.52,32.20,9.3,12.4,-0.6,24,-15, +4,UKR,KONOTOP,51.23,33.20,9.0,11.9,-0.4,21,10, +4,UKR,KRYVYI-RIH,48.03,33.22,9.9,13.1,-0.3,22,4, +4,UKR,KYIV,50.40,30.57,9.7,11.7,-0.4,20,29, +4,UKR,LIUBASHIVKA,47.85,30.27,9.9,12.6,-0.8,24,-11, +4,UKR,LUBNY,50.00,33.02,9.4,12.6,-0.5,23,-6, +4,UKR,LUHANSK,48.57,39.25,10.1,13.4,-0.4,20,11, +4,UKR,LVIV,49.82,23.95,8.9,10.6,-0.7,24,-22, +4,UKR,MARIUPOL,47.03,37.50,10.8,13.1,0.0,25,9, +4,UKR,MOHYLIV-PODILSKYI,48.45,27.78,11.0,11.4,-0.5,19,42, +4,UKR,MYRONIVKA,49.67,31.00,9.3,12.1,-0.7,24,-2, +4,UKR,NIZHYN,51.05,31.90,8.9,12.1,-0.9,19,-14, +4,UKR,ODESA,46.43,30.77,12.0,11.6,-0.5,24,30, +4,UKR,POLTAVA,49.60,34.55,9.2,12.7,-0.5,24,-13, +4,UKR,RIVNE,50.58,26.13,8.7,11.2,-0.3,23,0, +4,UKR,SARNY,51.28,26.62,8.9,11.7,-0.7,21,-21, +4,UKR,SHEPETIVKA,50.17,27.03,9.0,11.4,-0.5,22,-1, +4,UKR,SIMFEROPOL,44.68,34.13,12.1,10.6,-0.5,25,12, +4,UKR,SUMY,50.85,34.67,8.5,12.5,-1.0,23,6, +4,UKR,SVITLOVODSK,49.05,33.25,10.3,13.0,-0.2,25,10, +4,UKR,TERNOPIL,49.53,25.67,8.5,10.8,-0.2,20,10, +4,UKR,UMAN,48.77,30.23,9.7,12.5,-0.5,22,1, +4,UKR,UZHHOROD,48.63,22.27,11.0,11.4,-0.1,21,3, +4,UKR,VINNYTSIA,49.23,28.60,9.2,11.5,-0.7,23,-19, +4,UKR,VOLODYMYR-VOLYNSKYI,50.83,24.32,9.1,11.1,-0.7,21,-18, +4,UKR,YALTA,44.48,34.17,14.2,10.3,-0.9,30,24, +4,UKR,ZAPORIZHZHIA,47.80,35.02,10.2,12.9,-0.7,24,-14, +4,UKR,ZHYTOMYR,50.23,28.73,8.8,11.6,-0.3,22,4, +5,ABW,QUEEN-BEATRIX-AP,12.50,-70.02,29.8,1.0,0.5,-10,12, +5,ANT,HATO-AP(CIV-MIL),12.20,-68.97,28.5,1.2,0.6,46,13, +5,ATG,VC-BIRD-INTL-AP,17.12,-61.78,27.3,1.4,-0.4,40,12, +5,BHS,NASSAU-AP-NEW,25.05,-77.47,26.0,3.6,0.4,36,12, +5,BLZ,BELIZE-PHILLIP-GOLD,17.53,-88.30,26.9,2.2,0.4,5,5, +5,BRB,GRANTLEY-ADAMS,13.07,-59.48,27.3,0.8,0.8,-9,37, +5,CAN,Calgary,51.12,-114.02,5.6,10.9,-1.9,32,24, +5,CAN,Edmonton,53.53,-114.10,4.6,10.6,-1.7,27,23, +5,CAN,Fort McMurray,56.65,-111.22,3.9,11.7,-1.3,30,14, +5,CAN,Grande Prairie,55.18,-118.88,4.3,11.0,-1.4,32,26, +5,CAN,Lethbridge,49.63,-112.80,7.5,11.7,-0.7,29,10, +5,CAN,Medicine Hat,50.02,-110.72,8.3,14.0,-0.6,25,3, +5,CAN,Abbotsford,49.03,-122.37,10.9,7.2,0.1,23,8, +5,CAN,Comox,49.72,-124.90,10.6,7.1,-1.1,23,48, +5,CAN,Cranbrook,49.60,-115.78,7.7,11.7,-1.2,23,32, +5,CAN,Fort St John,56.23,-120.73,4.3,10.7,-1.0,30,14, +5,CAN,Kamloops,50.70,-120.45,10.1,12.4,0.0,20,12, +5,CAN,Port Hardy,50.68,-127.37,8.9,5.4,0.1,26,1, +5,CAN,Prince George,53.88,-122.68,5.7,10.1,-1.2,27,24, +5,CAN,Prince Rupert,54.30,-130.43,7.9,6.2,0.6,27,-15, +5,CAN,Sandspit,53.25,-131.82,9.1,5.8,0.0,32,16, +5,CAN,Smithers,54.82,-127.18,5.4,10.2,-1.5,26,18, +5,CAN,Summerland,49.57,-119.65,10.2,10.7,0.1,20,8, +5,CAN,Vancouver,49.18,-123.17,10.9,7.1,-0.9,21,48, +5,CAN,Victoria,48.65,-123.43,11.9,7.7,-0.6,18,39, +5,CAN,Brandon,49.92,-99.95,4.9,12.7,-1.4,32,24, +5,CAN,Churchill,58.75,-94.07,-2.8,10.6,-1.8,47,-7, +5,CAN,The Pas,53.97,-101.10,3.6,12.1,-1.7,33,20, +5,CAN,Winnipeg,49.90,-97.23,5.5,13.2,-1.3,33,22, +5,CAN,Fredericton,45.87,-66.53,6.7,12.1,-1.6,35,21, +5,CAN,Miramichi,47.02,-65.45,6.4,12.0,-1.9,36,24, +5,CAN,Saint John,45.32,-65.88,6.2,10.5,-1.0,40,24, +5,CAN,Battle Harbour,52.30,-55.83,1.6,6.3,1.2,52,-20, +5,CAN,Gander,48.95,-54.57,5.2,9.7,-2.1,41,29, +5,CAN,Goose,53.32,-60.37,2.5,10.0,-1.2,39,39, +5,CAN,St Johns,47.62,-52.73,5.6,9.2,-1.8,43,29, +5,CAN,Stephenville,48.53,-58.55,6.2,10.1,-1.3,40,31, +5,CAN,Greenwood,44.98,-64.92,8.0,11.3,-1.4,34,7, +5,CAN,Sable Island,43.93,-60.02,8.8,8.3,0.7,47,-28, +5,CAN,Shearwater,44.63,-63.50,7.7,10.6,-0.6,39,11, +5,CAN,Sydney,46.17,-60.05,6.4,10.6,-1.5,44,28, +5,CAN,Truro,45.37,-63.27,6.8,10.9,-1.3,42,20, +5,CAN,Inuvik,68.30,-133.48,-4.2,12.8,-3.3,41,-11, +5,CAN,Yellowknife,62.47,-114.45,-0.4,11.3,-1.9,33,-6, +5,CAN,Resolute,74.72,-94.98,-12.2,14.5,-2.7,39,18, +5,CAN,Kingston,44.22,-76.60,8.0,12.5,-1.4,39,23, +5,CAN,London,43.03,-81.15,8.7,12.5,-0.7,32,0, +5,CAN,Mount Forest,43.98,-80.75,7.2,12.0,-1.2,36,18, +5,CAN,Muskoka,44.97,-79.30,6.9,12.0,-1.6,32,6, +5,CAN,North Bay,46.35,-79.43,5.8,11.9,-1.6,35,14, +5,CAN,Ottawa,45.32,-75.67,7.3,13.0,-1.5,33,18, +5,CAN,Sault Ste Marie,46.48,-84.52,6.0,11.7,-1.1,38,25, +5,CAN,Simcoe,42.85,-80.27,8.7,12.2,-1.0,32,4, +5,CAN,Thunder Bay,48.37,-89.32,5.0,11.4,-1.6,36,23, +5,CAN,Timmins,48.57,-81.37,4.4,11.3,-1.7,36,25, +5,CAN,Toronto,43.67,-79.63,8.5,12.4,-1.5,33,11, +5,CAN,Trenton,44.12,-77.53,8.3,12.4,-1.0,32,7, +5,CAN,Windsor,42.27,-82.97,10.3,12.9,-0.2,31,13, +5,CAN,Charlottetown,46.28,-63.13,6.6,11.3,-1.7,41,25, +5,CAN,Bagotville,48.33,-71.00,4.6,11.4,-1.5,35,21, +5,CAN,Baie Comeau,49.13,-68.20,3.8,9.9,-1.6,39,35, +5,CAN,Grindstone Island,47.38,-61.87,5.5,9.8,-2.0,46,35, +5,CAN,Kuujjuarapik,55.28,-77.77,-0.9,8.7,-0.3,45,13, +5,CAN,Kuujuaq,58.10,-68.42,-2.0,9.1,-1.9,45,-8, +5,CAN,La Grande Riviere,53.63,-77.70,0.2,9.5,-1.0,38,-13, +5,CAN,Lake Eon,51.87,-63.28,0.1,8.3,-0.7,36,9, +5,CAN,Mont Joli,48.60,-68.22,5.0,11.0,-2.1,36,26, +5,CAN,Montreal Intl AP,45.47,-73.75,7.9,13.0,-1.5,33,4, +5,CAN,Montreal Jean Brebeuf,45.50,-73.62,7.5,13.3,-1.6,33,15, +5,CAN,Montreal Mirabel,45.68,-74.03,6.9,12.7,-1.2,31,5, +5,CAN,Nitchequon CAN270,53.20,-70.90,-0.4,9.1,-1.1,36,-10, +5,CAN,Quebec,46.80,-71.38,6.5,12.0,-1.7,35,17, +5,CAN,Riviere du Loup,47.80,-69.55,5.2,11.2,-1.9,38,24, +5,CAN,Roberval,48.52,-72.27,5.1,11.8,-1.8,34,18, +5,CAN,Schefferville,54.80,-66.82,-0.9,8.6,-1.2,36,-9, +5,CAN,Sept-Iles,50.22,-66.27,3.2,9.8,-1.1,39,45, +5,CAN,Sherbrooke,45.43,-71.68,6.1,11.7,-1.7,32,14, +5,CAN,St Hubert,45.52,-73.42,7.7,13.2,-1.5,33,9, +5,CAN,Ste Agathe des Monts,46.05,-74.28,5.4,11.6,-1.8,34,19, +5,CAN,Val d Or,48.07,-77.78,4.0,11.3,-1.4,35,24, +5,CAN,Estevan,49.22,-102.97,6.0,12.9,-1.7,32,18, +5,CAN,North Battleford,52.77,-108.25,4.6,12.1,-1.3,33,24, +5,CAN,Regina,50.43,-104.67,5.1,12.5,-1.7,31,22, +5,CAN,Saskatoon,52.17,-106.68,4.8,12.2,-1.6,32,15, +5,CAN,Swift Current,50.28,-107.68,6.0,12.0,-1.5,32,16, +5,CAN,Whitehorse,60.72,-135.07,2.5,10.7,-1.2,24,30, +5,CRI,JUAN-SANTAMARIA-INT,9.98,-84.22,23.5,0.8,-0.6,-60,84, +5,CUB,GUANTANAMO-BAY-NAS,19.90,-75.15,27.6,1.9,0.2,35,-4, +5,DOM,LAS-AMERICAS,18.43,-69.67,26.2,1.7,0.4,17,34, +5,DOM,PUERTO-PLATA-INTL,19.75,-70.55,26.3,1.8,-0.1,15,15, +5,DOM,SANTO-DOMINGO,18.43,-69.88,26.8,1.8,0.1,25,0, +5,FRA,LE-RAIZET-GUADELOUP,16.27,-61.60,26.5,1.6,0.0,44,22, +5,GRD,POINT-SALINES-AP,12.00,-61.78,28.0,1.0,0.5,36,20, +5,HND,LA-CEIBA(AP),15.73,-86.87,26.6,2.2,0.6,31,7, +5,HND,SANTA-ROSA-DE-COPAN,14.78,-88.78,21.6,2.1,1.1,1,4, +5,HND,TEGUCIGALPA,14.05,-87.22,22.7,1.7,1.0,-19,7, +5,JAM,KINGSTON-NORMAN- MAN,17.93,-76.78,28.4,0.6,0.1,1,16, +5,JAM,MONTEGO-BAY-SANGSTE,18.50,-77.92,27.5,1.4,0.6,23,18, +5,MEX,ACAPULCO-G-ALVAREZ,16.75,-99.75,28.0,1.5,-0.2,33,-9, +5,MEX,AGUASCALIENTES,21.87,-102.30,21.4,4.6,1.3,2,24, +5,MEX,BAHIAS-DE-HUATULCO,15.77,-96.25,27.8,1.2,-0.3,-16,3, +5,MEX,CAMPECHE-IGNACIO,19.85,-90.55,27.8,2.5,1.2,4,5, +5,MEX,CHETUMAL,18.48,-88.30,27.0,2.6,0.4,7,-4, +5,MEX,CIUDAD-DEL-CARMEN-I,18.65,-91.80,29.0,2.7,1.0,5,9, +5,MEX,CIUDAD-VICTORIA,23.70,-98.95,24.9,5.8,0.9,17,4, +5,MEX,COLIMA,19.27,-103.58,25.4,1.4,0.5,4,20, +5,MEX,CUERNAVACA,18.88,-99.23,24.0,2.3,1.5,-21,23, +5,MEX,CULIACAN(CITY),24.80,-107.40,27.9,6.1,1.1,27,29, +5,MEX,DE-GUANAJUATO-INTL,20.98,-101.48,20.9,3.8,1.2,-12,23, +5,MEX,DURANGO-INTL,24.12,-104.52,20.7,5.3,1.0,8,21, +5,MEX,GUAYMAS-G-YANEZ-AP,27.97,-110.92,25.6,8.9,1.1,28,-9, +5,MEX,HERMOSILLO-INTL,29.08,-110.93,26.0,9.2,1.0,22,-2, +5,MEX,IXTAPA-ZIHUATANEJO,17.60,-101.45,28.5,1.8,0.3,31,28, +5,MEX,JUAREZ-G-GONZALEZ,31.63,-106.42,21.7,11.0,1.1,13,-7, +5,MEX,LA-PAZ-G-MARQUEZ-AP,24.07,-110.35,26.6,6.3,0.9,33,0, +5,MEX,MATAMOROS-G- CANALES,25.77,-97.52,25.5,6.6,1.5,18,7, +5,MEX,MEXICALI-G-SANCHEZ,32.63,-115.23,25.3,10.7,1.5,20,-21, +5,MEX,MONCLOVA,26.88,-101.43,25.9,8.7,1.3,10,15, +5,MEX,MONTERREY-INTL-AP,25.87,-100.38,25.3,7.8,1.0,9,1, +5,MEX,MORELIA-G-MUJICA-AP,19.85,-101.02,19.9,3.2,1.2,-2,30, +5,MEX,PIEDRAS-NEGRAS,28.70,-100.53,25.3,9.3,1.0,13,-10, +5,MEX,PLAYA-DE-ORO-INTL,19.13,-104.55,27.8,2.7,0.0,47,-13, +5,MEX,PUEBLA,19.05,-98.17,17.6,2.6,0.7,1,19, +5,MEX,PUERTO-ESCONDIDO,15.87,-97.08,27.4,1.4,-0.5,24,-7, +5,MEX,QUETZALCOATL-INTL,27.43,-99.57,25.5,9.3,1.2,14,9, +5,MEX,SALTILLO,25.37,-101.02,20.6,5.7,0.6,7,19, +5,MEX,TAPACHULA-INTL,14.78,-92.37,27.6,1.5,0.8,-24,28, +5,MEX,TEPIC,21.52,-104.88,24.5,4.0,0.8,12,25, +5,MEX,TIJUANA-G-RODRIGUE,32.53,-116.97,19.8,5.1,0.5,28,4, +5,MEX,TOLUCA-LA-LOPEZ-AP,19.33,-99.57,15.3,2.6,0.9,0,16, +5,MEX,TORREON-AP,25.53,-103.43,24.6,7.8,1.5,7,8, +5,MEX,TULANCINGO,20.08,-98.37,17.2,2.5,0.5,-13,16, +5,MEX,TUXPAN-INTL-AP,20.98,-89.65,27.1,2.6,0.2,8,17, +5,MEX,TUXTLA-GUTIERREZ-A,16.75,-93.13,23.5,2.5,0.8,-4,28, +5,MEX,VALLE-DEL-FUERTE-IN,25.68,-109.08,26.8,6.3,1.4,29,4, +5,MEX,XOXOCOTLAN-INTL,17.00,-96.72,21.9,2.1,0.9,-11,10, +5,MTQ,LE-LAMENTIN,14.60,-61.00,27.0,1.1,0.4,36,18, +5,PRI,AQUADILLA-BORINQUEN,18.50,-67.13,25.6,1.5,0.0,47,-11, +5,PRI,EUGENIO-MARIA-DE-HO,18.25,-67.15,25.9,1.3,0.0,19,10, +5,PRI,MERCEDITA,18.00,-66.55,27.0,2.5,-0.5,37,8, +5,PRI,ROOSEVELT-ROADS,18.25,-65.63,27.4,1.9,0.0,42,-16, +5,PRI,SAN-JUAN-INTL-AP,18.42,-66.00,26.8,1.9,-0.4,34,-16, +5,SPM,SAINT-PIERRE,46.77,-56.17,6.8,9.2,-1.1,49,31, +5,TTO,CROWN-POINT-AP,11.15,-60.83,27.4,0.4,0.5,24,19, +5,TTO,PIARCO-INTL-AP,10.62,-61.35,26.7,1.0,0.9,30,14, +5,USA,Adak NAS,51.88,-176.65,5.4,4.4,-1.1,41,61, +5,USA,Ambler,67.10,-157.85,-0.5,8.5,-1.2,25,-4, +5,USA,Anaktuvuk Pass,68.13,-151.73,-3.4,9.8,-2.5,36,-20, +5,USA,"Anchorage-Elmendorf +AFB",61.25,-149.80,5.6,9.3,-2.9,19,18, +5,USA,Anchorage-Lake Hood Seaplane Base,61.18,-149.97,5.7,9.3,-2.3,23,12, +5,USA,Anchorage-Merrill Field,61.22,-149.85,5.4,9.7,-3.1,26,15, +5,USA,Anchorage Intl AP,61.18,-150.00,4.7,10.8,-2.3,24,25, +5,USA,Aniak AP,61.58,-159.53,2.3,7.3,-2.8,29,25, +5,USA,Annette Island AP,55.05,-131.57,8.9,5.8,-0.7,27,44, +5,USA,Anvik,62.65,-160.18,2.4,8.3,-1.7,31,36, +5,USA,Barrow-W Post-W Rogers AP,71.32,-156.62,-8.0,12.3,-1.1,44,-16, +5,USA,Bethel AP,60.78,-161.83,1.9,8.1,-1.3,36,26, +5,USA,Bettles Field,66.92,-151.52,-0.5,11.1,-2.0,22,-5, +5,USA,Big Delta-Allen AAF,64.00,-145.72,3.7,12.3,-3.1,23,10, +5,USA,Big River Lake,60.82,-152.30,5.1,9.9,-3.4,25,18, +5,USA,Birchwood,61.42,-149.52,5.5,9.7,-2.5,19,15, +5,USA,Chulitna,62.88,-149.83,2.9,7.0,-2.5,29,18, +5,USA,Cold Bay AP,55.20,-162.72,5.1,5.4,-1.0,38,37, +5,USA,Cordova,60.50,-145.50,5.1,7.8,-1.1,18,34, +5,USA,Deadhorse,70.20,-148.48,-5.1,12.2,-4.4,47,-20, +5,USA,Dillingham AWOS,59.05,-158.52,3.5,7.0,-3.0,26,30, +5,USA,Eielson AFB,64.65,-147.10,2.1,9.6,-2.3,28,18, +5,USA,Emmonak,62.78,-164.50,1.7,7.3,-1.3,38,43, +5,USA,Fairbanks Intl AP,64.82,-147.85,2.4,11.6,-1.8,26,19, +5,USA,Fort Yukon,66.57,-145.27,-0.7,11.1,-2.4,23,-8, +5,USA,Gambell,63.78,-171.75,-0.5,5.1,-0.7,48,5, +5,USA,Gulkana,62.15,-145.45,1.5,9.3,-0.4,28,22, +5,USA,Gustavus,58.42,-135.70,5.9,7.5,0.0,20,13, +5,USA,Hayes River,61.98,-152.08,4.2,8.5,-3.2,28,24, +5,USA,Healy River AP,63.88,-149.02,3.1,8.1,-2.4,28,18, +5,USA,Homer AP,59.65,-151.48,4.7,8.3,-1.6,34,30, +5,USA,Hoonah,58.08,-135.45,6.0,8.5,-0.9,21,13, +5,USA,Hooper Bay,61.52,-166.15,1.1,5.9,0.1,46,7, +5,USA,Huslia,65.70,-156.38,0.6,8.7,-0.6,24,11, +5,USA,Hydaburg Seaplane Base,55.20,-132.83,,,,,, +5,USA,Iliamna AP,59.75,-154.92,4.7,7.8,-2.4,24,27, +5,USA,Juneau Intl AP,58.35,-134.58,6.3,8.8,-0.5,23,-4, +5,USA,Kake Seaplane Base,56.97,-133.95,7.2,7.7,-0.9,22,32, +5,USA,Kenai Muni AP,60.58,-151.23,5.3,8.7,-2.4,20,22, +5,USA,Ketchikan Intl AP,55.37,-131.72,7.4,8.2,-0.5,29,10, +5,USA,King Salmon AP,58.68,-156.65,3.0,8.1,-2.0,36,36, +5,USA,Kodiak AP,57.75,-152.50,6.9,6.4,-1.5,24,48, +5,USA,Kotzebue-Ralph Wein Mem AP,66.88,-162.60,-1.7,9.0,-2.0,44,8, +5,USA,McGrath AP,62.95,-155.60,0.9,10.3,-1.3,28,18, +5,USA,Mekoryuk 702185,60.37,-166.27,1.5,5.0,1.7,46,-35, +5,USA,Middleton Island,59.47,-146.32,7.0,5.6,-1.8,37,48, +5,USA,Minchumina 702460,63.88,-152.28,2.3,11.1,-1.3,20,29, +5,USA,Nenana Muni AP,64.55,-149.10,1.9,8.5,-2.7,24,13, +5,USA,Nome Muni AP,64.52,-165.45,0.2,7.1,-1.8,40,11, +5,USA,Northway AP,62.97,-141.93,-0.9,11.0,-1.6,23,-2, +5,USA,Palmer Muni AP,61.60,-149.08,6.2,8.6,-1.9,20,17, +5,USA,Petersburg,56.80,-132.95,6.3,8.0,-0.5,21,14, +5,USA,Point Hope AWOS,68.35,-166.80,-2.6,7.3,-2.6,56,-13, +5,USA,Port Heiden,56.95,-158.62,3.9,6.2,-1.6,43,36, +5,USA,Saint Marys AWOS,62.07,-163.30,1.9,6.1,-1.2,45,19, +5,USA,Sand Point,55.32,-160.52,5.3,5.9,-1.8,30,44, +5,USA,Savoonga,63.68,-170.50,-0.3,5.3,-1.0,46,-7, +5,USA,Selawik,66.60,-160.00,-0.9,8.4,-1.5,33,-9, +5,USA,Seward,60.12,-149.45,5.2,8.0,-1.6,24,27, +5,USA,Shemya AFB,52.72,174.12,3.7,4.9,0.7,47,-37, +5,USA,Shishmaref AWOS,66.27,-166.05,-1.5,7.3,-1.7,48,-13, +5,USA,Sitka-Japonski Island AP,57.05,-135.37,7.3,7.6,-0.2,30,21, +5,USA,Skagway AP,59.47,-135.30,7.1,9.8,-1.1,14,-1, +5,USA,Sleetmute,61.72,-157.15,3.2,9.5,-0.8,17,17, +5,USA,Soldotna,60.47,-151.03,4.3,8.6,-2.8,23,26, +5,USA,St Paul Island AP,57.17,-170.22,2.9,5.4,-1.5,55,45, +5,USA,Talkeetna State AP,62.32,-150.10,3.5,9.8,-1.8,28,32, +5,USA,"Tanana-Ralph Calhoun +AP",65.17,-152.10,0.4,8.6,-1.2,28,11, +5,USA,Togiak Village AWOS,59.05,-160.40,3.6,7.1,-2.8,35,32, +5,USA,Unalakleet Field,63.88,-160.80,1.3,6.8,-0.2,34,8, +5,USA,"Unalaska-Dutch Harbor +Field",53.90,-166.55,5.6,5.2,-1.3,44,25, +5,USA,Valdez-Pioneer Field,61.13,-146.27,5.5,8.0,-1.7,21,22, +5,USA,Valdez,61.13,-146.35,4.9,8.2,-1.4,26,20, +5,USA,Whittier,60.77,-148.68,4.9,8.1,-1.8,24,23, +5,USA,Wrangell,56.48,-132.37,7.1,8.1,-0.1,26,3, +5,USA,Yakutat State AP,59.52,-139.63,5.2,7.9,-1.0,30,22, +5,USA,Anniston Metro AP,33.58,-85.85,17.9,8.8,0.9,16,3, +5,USA,Auburn-Opelika AP,32.62,-85.43,17.7,8.8,0.9,24,21, +5,USA,Birmingham Muni AP,33.57,-86.75,18.1,9.8,0.9,19,-3, +5,USA,Dothan Muni AP,31.23,-85.43,20.0,9.3,1.3,20,11, +5,USA,Fort Rucker-Cairns Field,31.27,-85.72,18.8,9.1,0.7,19,5, +5,USA,Gadsen Muni AWOS,33.97,-86.08,17.2,9.5,1.2,20,-11, +5,USA,Huntsville Intl AP-Jones Field,34.65,-86.78,16.8,10.6,0.8,19,11, +5,USA,Maxwell AFB,32.38,-86.35,19.0,10.2,0.7,19,9, +5,USA,Mobile-Downtown AP,30.63,-88.07,20.4,8.2,0.7,22,-21, +5,USA,Mobile-Rgnl AP,30.68,-88.25,20.2,8.3,0.7,21,2, +5,USA,"Montgomery-Dannelly +Field",32.30,-86.40,19.1,9.3,1.0,17,-11, +5,USA,Muscle Shoals Rgnl AP,34.75,-87.60,17.8,9.5,1.0,24,26, +5,USA,Troy Air Field,31.87,-86.02,19.3,9.1,1.5,21,-8, +5,USA,Tuscaloosa Muni AP,33.22,-87.62,18.4,9.8,1.4,21,1, +5,USA,Batesville AWOS,35.73,-91.65,16.7,10.9,0.2,23,3, +5,USA,Bentonville AWOS,36.35,-94.22,15.3,11.5,-1.8,22,53, +5,USA,El Dorado-Goodwin Field,33.22,-92.82,19.0,11.0,1.5,19,-8, +5,USA,Fayetteville-Drake Field,36.00,-94.17,16.7,11.1,1.8,24,-20, +5,USA,Flippin AWOS,36.30,-92.47,16.6,11.1,0.9,25,3, +5,USA,Fort Smith Rgnl AP,35.33,-94.37,16.9,12.1,1.1,23,9, +5,USA,Harrison AP,36.27,-93.15,16.1,11.0,0.9,27,-6, +5,USA,Hot Springs Mem AP,34.47,-93.10,17.7,11.0,0.3,25,8, +5,USA,Jonesboro Muni AP,35.83,-90.65,16.1,12.7,2.1,22,7, +5,USA,Little Rock-Adams Field,34.75,-92.23,17.7,11.2,1.1,22,0, +5,USA,Little Rock AFB,34.92,-92.15,17.3,11.1,0.0,20,5, +5,USA,Pine Bluff AP,34.17,-91.93,18.1,12.3,2.0,21,-14, +5,USA,Rogers AWOS,36.37,-94.10,15.7,11.8,-0.7,27,38, +5,USA,Siloam Spring AWOS,36.18,-94.48,16.2,11.0,-1.0,22,42, +5,USA,Springdale Muni AP,36.18,-94.12,15.9,11.3,1.4,21,-13, +5,USA,Stuttgart AWOS,34.60,-91.57,18.4,10.5,0.8,25,7, +5,USA,Texarkana-Webb Field,33.45,-94.00,19.4,10.3,1.3,23,0, +5,USA,Walnut Ridge AWOS,36.13,-90.92,16.5,11.4,0.9,21,-2, +5,USA,Casa Grande AWOS,32.95,-111.77,24.4,11.6,1.3,16,-32, +5,USA,Davis-Monthan AFB,32.17,-110.88,23.7,9.7,0.1,14,8, +5,USA,Douglas-Bisbee Douglas Intl AP,31.47,-109.60,20.4,9.8,1.2,11,7, +5,USA,Flagstaff-Pulliam AP,35.13,-111.67,11.0,11.2,-0.4,20,12, +5,USA,Grand Canyon National Park AP,35.95,-112.15,11.9,11.4,-0.3,21,4, +5,USA,Kingman AWOS,35.27,-113.95,19.9,12.6,1.0,15,-33, +5,USA,Luke AFB,33.55,-112.37,25.0,11.4,-0.1,18,12, +5,USA,Page Muni AWOS,36.93,-111.45,18.5,13.0,1.0,12,-21, +5,USA,Phoenix-Deer Valley AP,33.68,-112.08,24.7,11.5,0.2,21,1, +5,USA,Phoenix-Sky Harbor Intl AP,33.45,-111.98,25.6,11.4,0.9,18,-22, +5,USA,Prescott-Love Field,34.65,-112.42,16.2,11.2,-0.1,21,9, +5,USA,Safford AWOS,32.82,-109.68,22.1,10.8,1.7,11,-6, +5,USA,Scottsdale Muni AP,33.62,-111.92,24.9,11.7,0.0,20,7, +5,USA,Show Low Muni AP,34.27,-110.00,15.0,10.3,0.7,15,-16, +5,USA,Tucson Intl AP,32.13,-110.95,22.7,10.3,-0.1,19,7, +5,USA,Winslow Muni AP,35.03,-110.72,16.3,12.4,-0.6,16,50, +5,USA,Yuma Intl AP,32.67,-114.60,25.9,10.0,1.5,24,-29, +5,USA,Yuma MCAS,32.65,-114.62,25.6,10.0,1.5,24,-24, +5,USA,Alturas,41.50,-120.53,12.8,11.6,-2.1,18,40, +5,USA,Arcata AP,40.98,-124.10,13.1,4.1,0.3,23,-6, +5,USA,Bakersfield-Meadows Field,35.43,-119.05,21.0,10.0,1.1,22,-16, +5,USA,Barstow Daggett AP,34.85,-116.80,21.7,11.3,1.2,17,-30, +5,USA,Beale AFB,39.13,-121.43,19.2,10.8,1.9,19,-33, +5,USA,Bishop AP,37.37,-118.35,17.2,11.7,-1.1,17,46, +5,USA,Blue Canyon AP,39.30,-120.72,14.2,10.5,-0.6,29,1, +5,USA,Blythe-Riverside County AP,33.62,-114.72,26.1,11.2,1.3,15,-29, +5,USA,Burbank-Glendale- Passadena Bob Hope AP,34.20,-118.35,20.8,7.0,0.9,24,-9, +5,USA,Camarillo AWOS,34.22,-119.08,18.5,5.0,0.3,23,15, +5,USA,Camp Pendleton MCAS,33.30,-117.35,18.8,5.5,0.8,24,-24, +5,USA,Carlsbad,33.13,-117.28,18.7,4.2,1.0,25,-41, +5,USA,China Lake NAF,35.68,-117.68,20.9,12.1,0.9,15,-22, +5,USA,Chino AP,33.97,-117.63,20.3,6.9,0.7,22,-30, +5,USA,Chula Vista-Brown Field Muni AP,32.58,-116.98,19.1,4.5,0.6,30,-36, +5,USA,Concord-Buchanan Field,38.00,-122.05,17.5,7.6,1.0,24,13, +5,USA,Crescent City-Jack McNamara Field,41.78,-124.23,13.3,4.1,0.2,23,7, +5,USA,Edwards AFB,34.90,-117.87,18.4,10.7,-1.5,22,43, +5,USA,Fairfield-Travis AFB,38.27,-121.93,17.7,8.6,1.4,16,-6, +5,USA,Fresno Air Terminal,36.78,-119.72,20.5,10.8,1.1,19,-23, +5,USA,Fullerton Muni AP,33.87,-117.98,20.8,6.4,-1.0,28,48, +5,USA,Hawthorne-Jack Northrop Field,33.92,-118.33,19.6,4.5,0.1,30,0, +5,USA,Hayward Air Terminal,37.67,-122.12,17.6,5.2,1.4,21,-7, +5,USA,Imperial County AP,32.83,-115.58,25.7,10.5,1.1,18,-21, +5,USA,Lancaster-Gen Wm Fox Field,34.73,-118.22,19.5,10.5,1.3,18,-19, +5,USA,Lemoore NAS,36.33,-119.95,19.7,10.4,1.0,15,-23, +5,USA,Livermore Muni AP,37.70,-121.82,17.0,7.5,1.2,18,-15, +5,USA,Lompoc AWOS,34.67,-120.47,15.4,3.5,0.9,28,-8, +5,USA,"Long Beach-Daugherty +Field",33.83,-118.17,20.0,5.4,0.8,26,-18, +5,USA,Los Angeles Intl AP,33.93,-118.40,19.3,4.3,0.5,27,-20, +5,USA,March AFB,33.90,-117.25,20.1,8.3,1.4,23,-33, +5,USA,Merced-Macready Field,37.28,-120.52,19.7,9.2,0.9,13,-15, +5,USA,Modesto Muni AP,37.63,-120.95,19.5,9.1,1.1,16,-11, +5,USA,Montague-Siskiyou County AP,41.78,-122.47,14.8,10.9,-2.0,20,53, +5,USA,Monterey NAF,36.60,-121.87,15.9,3.7,1.1,24,-5, +5,USA,Mountain View-Moffett Field NAS,37.40,-122.05,17.5,5.7,1.7,27,-9, +5,USA,Napa County AP,38.22,-122.28,16.2,6.3,0.6,15,-8, +5,USA,Needles AP,34.77,-114.62,25.7,12.0,0.1,15,7, +5,USA,Oakland Intl AP,37.72,-122.22,16.4,4.8,0.7,19,5, +5,USA,Oxnard AP,34.20,-119.20,18.2,4.4,0.8,26,-4, +5,USA,Palm Springs-Thermal AP,33.63,-116.17,25.3,11.0,0.9,17,-19, +5,USA,Palm Springs Intl AP,33.83,-116.50,26.1,10.1,0.1,18,6, +5,USA,Palmdale AP,34.63,-118.08,19.5,11.1,0.8,19,-27, +5,USA,Paso Robles Muni AP,35.67,-120.63,18.1,7.5,0.9,17,-3, +5,USA,Point Mugu NAS,34.12,-119.12,17.7,4.2,0.5,30,-10, +5,USA,Porterville AWOS,36.03,-119.07,19.9,9.7,-0.7,20,43, +5,USA,Red Bluff Muni AP,40.15,-122.25,19.2,11.3,-0.8,22,29, +5,USA,Redding Muni AP,40.52,-122.32,19.3,10.6,-0.2,21,12, +5,USA,Riverside Muni AP,33.95,-117.45,20.5,7.0,-0.9,24,49, +5,USA,Sacramento Exec AP,38.50,-121.50,18.1,8.8,1.3,17,-19, +5,USA,Sacramento Metro AP,38.70,-121.58,18.8,9.3,0.9,14,-4, +5,USA,Salinas Muni AP,36.67,-121.60,16.2,4.8,0.1,27,9, +5,USA,San Diego-Lindbergh Field,32.73,-117.17,20.1,4.7,1.0,28,-21, +5,USA,San Diego-Miramar NAS,32.87,-117.13,19.3,5.8,1.0,32,-36, +5,USA,San Diego-Montgomery Field,32.82,-117.13,19.5,5.0,1.5,29,-31, +5,USA,"San Diego-North Island +NAS",32.70,-117.20,19.4,4.3,0.7,30,-21, +5,USA,San Francisco Intl AP,37.62,-122.40,16.2,4.0,1.1,21,3, +5,USA,San Jose Intl AP,37.37,-121.93,17.8,6.2,1.1,22,-4, +5,USA,San Luis Obispo AP,35.23,-120.63,17.0,4.9,0.8,21,2, +5,USA,Sandberg,34.75,-118.72,16.4,9.0,0.0,25,2, +5,USA,"Santa Ana-John Wayne +AP",33.68,-117.87,20.1,4.7,0.9,23,-21, +5,USA,Santa Barbara Muni AP,34.43,-119.85,17.7,5.0,1.2,20,-18, +5,USA,Santa Maria Public AP,34.92,-120.47,16.2,4.5,0.3,24,7, +5,USA,Santa Monica Muni AP,34.02,-118.45,19.4,4.5,0.5,32,-40, +5,USA,Santa Rosa AWOS,38.52,-122.82,16.9,6.8,0.7,16,-14, +5,USA,South Lake Tahoe-Lake Tahoe AP,38.90,-120.00,10.2,10.7,-0.1,22,1, +5,USA,Stockton Metro AP,37.90,-121.23,19.0,9.0,1.4,15,-13, +5,USA,Truckee Tahoe AP,39.32,-120.13,10.4,10.4,-1.9,27,45, +5,USA,Twentynine Palms,34.30,-116.17,23.1,11.6,1.3,18,-32, +5,USA,Ukiah Muni AP,39.13,-123.20,17.7,8.6,1.3,19,-32, +5,USA,Van Nuys AP,34.22,-118.48,21.1,6.7,0.0,22,16, +5,USA,Visalia Muni AWOS,36.32,-119.40,19.3,11.5,1.8,13,-27, +5,USA,Yuba County AP,39.10,-121.57,19.1,9.9,1.1,16,-22, +5,USA,Akron-Washington County AP,40.17,-103.23,12.5,12.8,-0.2,18,9, +5,USA,Alamosa Muni AP,37.43,-105.87,9.2,12.9,0.2,22,7, +5,USA,Aspen-Pitkin County- Sardy Field,39.22,-106.87,7.4,11.0,-0.9,24,7, +5,USA,"Aurora-Buckley Field +ANGB",39.72,-104.75,12.6,12.3,-1.8,20,40, +5,USA,Boulder-Broomfield- Jefferson County AP,40.13,-105.24,12.9,12.3,1.1,19,-34, +5,USA,Colorado Springs- Peterson Field,38.82,-104.72,12.2,12.1,0.2,19,9, +5,USA,Cortez-Montezuma County AP,37.30,-108.63,13.4,12.6,0.1,14,9, +5,USA,Craig Moffat AP,40.50,-107.53,7.3,12.5,-1.3,31,24, +5,USA,Denver Intl AP,39.83,-104.65,13.5,12.5,-1.3,20,31, +5,USA,"Durango-La Plata County +AP",37.15,-107.75,9.6,12.6,-0.5,27,48, +5,USA,Eagle County Rgnl AP,39.65,-106.92,8.4,12.4,-0.2,25,12, +5,USA,Fort Collins AWOS,40.45,-105.02,11.4,12.9,-0.2,17,7, +5,USA,Golden-NREL,39.74,-105.18,11.3,10.9,-0.5,26,5, +5,USA,"Grand Junction-Walker +Field",39.13,-108.53,14.7,13.7,1.1,17,-20, +5,USA,"Greeley-Weld County +AWOS",40.43,-104.63,11.5,12.9,-1.4,20,44, +5,USA,Gunnison County AWOS,38.53,-106.93,7.1,11.7,-0.8,25,27, +5,USA,Hayden-Yampa AWOS,40.48,-107.22,7.7,12.3,-1.3,30,26, +5,USA,La Junta Muni AP,38.05,-103.53,14.8,13.6,0.0,18,7, +5,USA,Lamar Muni AP,38.07,-102.68,14.3,13.8,-1.7,20,40, +5,USA,Leadville-Lake County AP,39.22,-106.32,4.3,9.1,-1.5,32,37, +5,USA,Limon Muni AP,39.18,-103.72,11.4,12.3,-1.6,19,45, +5,USA,Montrose County AP,38.50,-107.90,11.8,12.7,0.8,23,-14, +5,USA,Pueblo Mem AP,38.28,-104.50,14.4,12.9,0.9,17,-13, +5,USA,"Rifle-Garfield County +Rgnl AP",39.53,-107.72,11.8,12.7,1.6,19,-8, +5,USA,Trinidad-Las Animas County AP,37.27,-104.33,14.2,11.8,0.9,21,-28, +5,USA,"Bridgeport-Sikorsky Mem +AP",41.18,-73.15,12.3,11.5,0.4,31,39, +5,USA,Danbury Muni AP,41.37,-73.48,11.4,11.1,-1.5,30,-26, +5,USA,Groton-New London AP,41.33,-72.05,11.6,9.9,0.9,31,-10, +5,USA,Hartford-Bradley Intl AP,41.93,-72.68,11.3,12.6,0.1,25,1, +5,USA,Hartford-Brainard Field,41.73,-72.65,12.1,11.5,-0.1,27,-3, +5,USA,New Haven-Tweed AP,41.27,-72.88,12.3,10.8,0.1,30,10, +5,USA,Oxford AWOS,41.48,-73.13,11.0,11.9,-0.5,32,-3, +5,USA,Dover AFB,39.13,-75.47,13.6,11.3,-0.3,27,7, +5,USA,Wilmington-New Castle County AP,39.67,-75.60,13.5,12.0,0.6,22,2, +5,USA,Crestview-Bob Sikes AP,30.78,-86.52,20.2,7.8,0.7,27,-1, +5,USA,Daytona Beach Intl AP,29.18,-81.07,22.1,6.3,0.8,24,9, +5,USA,Fort Lauderdale Executive AP,26.20,-80.17,24.7,4.2,0.6,24,13, +5,USA,Fort Lauderdale Intl AP,26.07,-80.15,25.4,4.4,0.5,22,10, +5,USA,Fort Myers-Page Field,26.58,-81.87,24.6,4.8,0.9,27,26, +5,USA,Fort Pierce-St Lucie County AP,27.48,-80.37,22.5,5.4,0.7,24,1, +5,USA,Fort Walton Beach- Hurlburt Field,30.42,-86.68,20.3,9.0,0.8,20,18, +5,USA,Gainesville Rgnl AP,29.70,-82.28,21.0,7.3,1.3,19,-3, +5,USA,Homestead AFB,25.48,-80.38,24.7,5.4,1.1,26,14, +5,USA,Jacksonville-Craig Field,30.33,-81.52,21.3,6.7,0.1,21,6, +5,USA,Jacksonville Intl AP,30.50,-81.70,20.7,7.5,0.6,22,5, +5,USA,Jacksonville NAS,30.23,-81.67,22.1,7.2,1.2,15,0, +5,USA,Key West Intl AP,24.55,-81.75,26.2,4.3,0.6,30,14, +5,USA,Key West NAS,24.58,-81.68,26.2,4.5,0.7,28,11, +5,USA,Lakeland Linder Rgnl AP,27.98,-82.02,22.6,7.1,1.2,22,15, +5,USA,MacDill AFB,27.85,-82.52,22.9,7.1,1.1,24,28, +5,USA,Marathon AP,24.73,-81.05,26.9,4.5,0.9,25,8, +5,USA,Mayport NS,30.40,-81.42,21.8,7.0,1.0,24,12, +5,USA,Melbourne Rgnl AP,28.12,-80.65,23.4,4.9,0.9,23,-1, +5,USA,Miami-Kendall-Tamiami Executive AP,25.65,-80.43,24.0,4.5,0.4,24,6, +5,USA,Miami-Opa Locka AP,25.90,-80.28,24.8,4.8,0.5,34,3, +5,USA,Miami Intl AP,25.82,-80.30,25.1,4.3,0.7,30,12, +5,USA,Naples Muni AP,26.15,-81.77,23.8,5.0,0.6,24,7, +5,USA,NASA Shuttle Landing Facility,28.62,-80.72,22.6,6.3,0.9,30,26, +5,USA,Ocala Muni AWOS,29.17,-82.22,21.7,7.1,1.6,17,-8, +5,USA,Orlando-Sanford AP,28.78,-81.25,22.6,6.4,-0.1,26,-1, +5,USA,Orlando Executive AP,28.55,-81.33,23.2,6.4,1.8,22,6, +5,USA,Orlando Intl AP,28.43,-81.33,22.7,5.7,0.8,25,8, +5,USA,Panama City-Bay County AP,30.20,-85.68,21.5,7.8,0.3,25,-5, +5,USA,Pensacola-Forest Sherman NAS,30.35,-87.32,20.9,8.3,0.9,19,13, +5,USA,Pensacola Rgnl AP,30.48,-87.18,21.4,7.6,0.7,24,16, +5,USA,"Sarasota-Bradenton Intl +AP",27.38,-82.55,23.1,5.9,1.4,30,17, +5,USA,Southwest Florida Intl AP,26.53,-81.75,23.6,4.9,0.9,23,-9, +5,USA,St Petersburg-Albert Whitted Station,27.77,-82.63,24.1,6.3,0.8,33,28, +5,USA,St Petersburg-Clearwater Intl AP,27.90,-82.68,23.2,7.0,1.5,31,25, +5,USA,Tallahassee Rgnl AP,30.38,-84.37,20.2,8.1,0.8,19,-8, +5,USA,Tampa Intl AP,27.97,-82.53,23.1,6.2,1.1,23,9, +5,USA,Tyndall AFB,30.07,-85.58,19.8,8.5,0.6,25,1, +5,USA,Valparaiso-Elgin AFB,30.48,-86.52,19.8,9.1,0.5,23,17, +5,USA,Vero Beach Muni AP,27.65,-80.42,23.7,4.6,0.7,23,12, +5,USA,West Palm Beach Intl AP,26.68,-80.10,24.2,4.8,0.8,29,15, +5,USA,Whiting Field NAS,30.72,-87.02,20.1,8.1,0.3,24,15, +5,USA,Albany-Dougherty County AP,31.53,-84.18,20.1,8.2,0.6,24,7, +5,USA,Alma-Bacon County AP,31.53,-82.50,19.7,9.3,1.3,18,-9, +5,USA,Athens-Ben Epps AP,33.95,-83.33,17.8,9.4,0.8,18,0, +5,USA,Atlanta-Hartsfield- Jackson Intl AP,33.63,-84.43,17.8,9.9,1.1,18,-7, +5,USA,Augusta-Bush-Field,33.37,-81.97,18.4,9.7,0.7,18,-11, +5,USA,Brunswick-Golden Isles AP,31.25,-81.47,19.9,9.2,0.5,19,24, +5,USA,Brunswick-Malcolm McKinnon AP,31.15,-81.38,21.1,7.3,1.1,24,7, +5,USA,Columbus Metro AP,32.52,-84.95,19.6,9.4,0.9,22,-8, +5,USA,Dekalb Peachtree AP,33.87,-84.30,16.9,10.4,1.2,21,-14, +5,USA,Fort Benning-Lawson Field,32.35,-85.00,17.6,10.4,0.6,16,-1, +5,USA,Fulton County AP,33.77,-84.52,17.3,9.5,1.8,16,-18, +5,USA,Macon-Middle Georgia Rgnl AP,32.68,-83.65,18.9,9.4,1.0,19,-2, +5,USA,Marietta-Dobbins AFB,33.92,-84.52,15.9,10.6,0.2,21,12, +5,USA,Rome-Richard B Russell AP,34.35,-85.17,17.3,10.7,1.6,23,-28, +5,USA,Savannah-Hunter AAF,32.00,-81.15,19.3,9.4,1.0,20,-6, +5,USA,Savannah Intl AP,32.12,-81.20,20.0,8.7,0.8,20,15, +5,USA,Valdosta-Moody AFB,30.97,-83.20,19.6,8.8,0.5,18,-3, +5,USA,Valdosta Rgnl AP,30.78,-83.28,21.0,8.4,0.8,18,4, +5,USA,Warner Robins AFB,32.63,-83.60,17.9,10.5,0.9,15,-2, +5,USA,Andersen-AFB,13.57,144.92,27.4,1.1,0.0,15,13, +5,USA,GuamWfo,13.48,144.80,27.6,0.8,0.0,16,17, +5,USA,Barbers Point NAS,21.32,-158.07,26.9,3.4,0.3,30,10, +5,USA,Hilo Intl AP,19.72,-155.05,23.9,1.5,0.2,53,5, +5,USA,Honolulu Intl AP,21.32,-157.93,27.2,2.6,0.1,37,-13, +5,USA,Kahului AP,20.90,-156.43,24.7,1.9,0.3,44,3, +5,USA,"Kailua-Kaneohe Bay +MCAS",21.45,-157.78,27.0,2.6,0.1,43,-12, +5,USA,Kapalua-West Maui AP,20.95,-156.63,25.9,2.2,0.2,34,16, +5,USA,Keahole-Kona Intl AP,19.73,-156.05,25.7,1.6,0.3,39,4, +5,USA,Lanai AP,20.78,-156.95,23.9,2.2,0.3,27,22, +5,USA,Lihue AP,21.98,-159.33,25.9,2.6,0.4,40,-9, +5,USA,Molokai AWOS,21.15,-157.10,25.7,2.4,0.3,32,-5, +5,USA,Algona Muni AP,43.08,-94.27,10.2,13.5,-0.1,25,1, +5,USA,Atlantic Muni AP,41.40,-95.05,10.8,14.0,0.3,22,9, +5,USA,Boone Muni AP,42.05,-93.85,10.6,13.8,-0.6,25,12, +5,USA,Burlington Muni AP,40.78,-91.12,13.2,14.6,1.1,23,26, +5,USA,Carroll Muni AP,42.05,-94.78,11.0,13.7,0.5,25,3, +5,USA,Cedar Rapids Muni AP,41.88,-91.72,10.8,13.6,0.7,25,39, +5,USA,Chariton Muni AP,41.03,-93.37,11.9,14.5,0.1,24,-4, +5,USA,Charles City Muni AP,43.07,-92.62,10.2,13.6,0.3,29,16, +5,USA,Clarinda Muni AP,40.72,-95.03,12.6,14.5,1.0,23,3, +5,USA,Clinton Muni AWOS,41.83,-90.33,10.9,14.4,1.3,24,-29, +5,USA,Council Bluffs Muni AP,41.27,-95.77,12.1,13.4,0.7,24,16, +5,USA,Creston Muni AP,41.02,-94.37,11.6,13.7,1.0,19,4, +5,USA,Decorah Muni AP,43.28,-91.73,11.8,14.1,1.0,23,-8, +5,USA,Denison Muni AP,41.98,-95.38,11.1,14.4,0.7,27,-15, +5,USA,Des Moines Intl AP,41.53,-93.67,11.4,14.6,0.0,24,6, +5,USA,Dubuque Rgnl AP,42.40,-90.70,9.4,13.4,-0.7,28,11, +5,USA,Estherville Muni AP,43.40,-94.75,8.5,14.0,-1.0,30,15, +5,USA,Fairfield Muni AP,41.05,-91.98,11.8,14.0,0.6,23,14, +5,USA,Fort Dodge AWOS,42.55,-94.18,10.4,14.4,0.0,25,5, +5,USA,Fort Madison Muni AP,40.67,-91.33,13.3,13.0,1.3,26,-2, +5,USA,Keokuk Muni AP,40.47,-91.43,13.2,13.6,1.7,28,31, +5,USA,Knoxville Muni AP,41.30,-93.12,12.4,14.4,1.2,27,6, +5,USA,Le Mars Muni AP,42.78,-96.20,11.8,13.3,2.2,26,36, +5,USA,Mason City Muni AP,43.15,-93.33,9.0,14.3,-0.5,27,0, +5,USA,Monticello Muni AP,42.23,-91.17,10.6,13.8,0.9,26,28, +5,USA,Muscatine Muni AP,41.37,-91.15,11.6,14.0,0.9,28,36, +5,USA,Newton Muni AP,41.68,-93.02,11.3,13.3,1.3,24,7, +5,USA,Oelwein Muni AP,42.68,-91.97,10.8,12.9,0.9,25,5, +5,USA,Orange City Muni AP,42.98,-96.07,10.6,13.7,-0.4,21,12, +5,USA,Ottumwa Industrial AP,41.10,-92.45,11.2,13.7,-0.1,25,0, +5,USA,Red Oak Muni AP,41.02,-95.27,12.0,14.4,0.4,25,5, +5,USA,Sheldon Muni AP,43.22,-95.83,10.8,12.9,1.1,21,-32, +5,USA,Shenandoah Muni AP,40.75,-95.42,11.8,14.7,0.5,23,12, +5,USA,Sioux City-Sioux Gateway AP,42.38,-96.38,10.7,14.3,0.0,22,6, +5,USA,Spencer Muni AP,43.17,-95.15,8.8,13.7,-0.7,28,-3, +5,USA,Storm Lake Muni AP,42.60,-95.23,10.4,13.7,-0.1,27,1, +5,USA,Washington Muni AP,41.28,-91.67,11.4,13.8,0.1,27,8, +5,USA,Waterloo Muni AP,42.55,-92.40,10.0,14.3,-0.7,27,-11, +5,USA,Webster City Muni AP,42.43,-93.87,11.4,14.1,0.7,25,-6, +5,USA,Boise Air Terminal,43.62,-116.21,13.6,12.2,1.0,18,-26, +5,USA,Burley Muni AP,42.53,-113.77,12.5,12.6,-1.2,20,46, +5,USA,Caldwell AWOS,43.63,-116.63,13.4,12.8,-1.2,16,46, +5,USA,Coeur dAlene AWOS,47.77,-116.82,11.0,12.0,-1.2,17,45, +5,USA,Hailey-Sun Valley AP,43.50,-114.30,10.8,13.6,-2.3,22,34, +5,USA,Idaho Falls-Fanning Field,43.52,-112.07,9.9,13.3,-0.5,22,1, +5,USA,Lewiston-Nez Perce County AP,46.37,-117.02,13.8,12.8,-1.8,19,41, +5,USA,Malad City AP,42.15,-112.28,10.7,12.0,-1.8,20,43, +5,USA,Mountain Home AFB,43.05,-115.87,12.7,12.8,-2.3,19,43, +5,USA,Pocatello Muni AP,42.92,-112.57,10.9,13.2,0.0,19,6, +5,USA,Salmon-Lemhi AWOS,45.12,-113.88,9.5,12.5,-0.9,20,35, +5,USA,Soda Springs-Tigert AP,42.65,-111.58,7.4,11.9,-2.7,28,22, +5,USA,Twin Falls-Magic Valley Rgnl AP-Joslin Field,42.55,-114.35,12.5,12.5,-2.0,16,42, +5,USA,Aurora Muni AP,41.77,-88.47,11.0,13.2,0.7,26,9, +5,USA,Belleville-Scott AFB,38.55,-89.85,13.6,12.6,-0.5,22,7, +5,USA,Bloomington Normal- Central Illinois Rgnl AP,40.47,-88.92,11.3,13.2,-1.0,24,-18, +5,USA,Cahokia AP,38.57,-90.15,14.8,11.9,1.4,24,-12, +5,USA,Carbondale-Southern Illinois AP,37.77,-89.25,15.6,12.4,0.8,23,13, +5,USA,Chicago-Midway AP,41.78,-87.75,12.5,13.4,1.0,32,11, +5,USA,Chicago-OHare Intl AP,41.98,-87.92,11.1,13.4,0.7,25,30, +5,USA,Decatur AP,39.83,-88.87,12.7,13.0,1.3,22,-12, +5,USA,Du Page AP,41.92,-88.25,11.7,12.6,0.6,22,-20, +5,USA,Marion-Williamson County Rgnl AP,37.75,-89.02,14.6,11.6,-1.0,25,8, +5,USA,Moline-Quad City Intl AP,41.47,-90.52,11.1,14.0,0.0,24,14, +5,USA,Mount Vernon AWOS,38.32,-88.87,14.7,12.2,0.1,28,0, +5,USA,Peoria-Greater Peoria AP,40.67,-89.68,11.3,13.7,0.9,22,40, +5,USA,Quincy Muni AP,39.93,-91.20,13.0,12.7,1.7,24,12, +5,USA,Rockford-Greater Rockford AP,42.20,-89.10,9.9,14.1,-0.2,26,5, +5,USA,Springfield-Capital AP,39.85,-89.68,12.9,13.4,1.3,23,39, +5,USA,Sterling-Rock Falls- Whiteside County AP,41.75,-89.67,11.7,13.1,1.1,26,26, +5,USA,University of Illinois- Willard AP,40.06,-88.37,12.4,13.3,0.6,23,3, +5,USA,Waukegan Rgnl AP,42.42,-87.87,9.9,12.8,-0.6,30,29, +5,USA,Delaware County- Johnson Field,40.23,-85.40,12.4,12.8,-0.1,29,-7, +5,USA,Evansville Rgnl AP,38.05,-87.53,14.9,11.9,0.7,21,13, +5,USA,Fort Wayne Intl AP,41.00,-85.20,10.8,13.5,0.0,25,2, +5,USA,Grissom AFB,40.65,-86.15,11.5,12.7,-1.2,27,-19, +5,USA,Huntingburg Muni AP,38.25,-86.95,15.5,11.0,0.9,24,-32, +5,USA,Indianapolis Intl AP,39.72,-86.27,12.5,13.3,0.7,20,24, +5,USA,Lafayette-Purdue University AP,40.42,-86.93,12.1,13.0,1.3,26,23, +5,USA,Monroe County AP,39.13,-86.62,13.2,12.2,0.9,23,-2, +5,USA,South Bend-Michiana Rgnl AP,41.70,-86.33,11.6,13.0,0.2,23,3, +5,USA,Terre Haute-Hulman Rgnl AP,39.45,-87.30,13.7,12.7,1.2,26,7, +5,USA,Chanute-Martin Johnson AP,37.67,-95.48,15.6,12.9,2.7,19,-8, +5,USA,Concordia-Blosser Muni AP,39.55,-97.65,14.2,13.6,0.5,22,7, +5,USA,Dodge City Rgnl AP,37.77,-99.97,14.0,12.8,0.6,22,-8, +5,USA,Emporia Muni AP,38.33,-96.18,13.2,14.2,0.9,20,2, +5,USA,Fort Riley-Marshall AAF,39.05,-96.77,15.2,12.3,0.8,25,-10, +5,USA,Garden City Muni AP,37.93,-100.72,14.4,13.2,-0.6,18,11, +5,USA,Goodland-Renner Field,39.37,-101.70,12.9,13.7,1.2,17,-14, +5,USA,Great Bend AWOS,38.35,-98.87,14.2,12.5,0.3,24,2, +5,USA,Hays Muni AWOS,38.85,-99.27,14.2,12.9,1.5,25,-34, +5,USA,Hill City Muni AP,39.38,-99.83,12.8,12.6,-1.1,25,-7, +5,USA,Hutchinson Muni AP,38.07,-97.87,15.0,12.2,1.1,19,1, +5,USA,Liberal Muni AP,37.03,-100.97,15.5,12.9,-1.0,20,42, +5,USA,Manhattan Rgnl AP,39.13,-96.67,14.3,13.3,0.7,20,-7, +5,USA,Newton AWOS,38.05,-97.28,14.1,12.5,0.7,29,-9, +5,USA,Olathe-Johnson County Executive AP,38.85,-94.73,14.8,12.2,1.0,27,-4, +5,USA,Olathe-Johnson County Industrial AP,38.83,-94.88,14.4,12.8,0.8,19,-13, +5,USA,Russell Muni AP,38.88,-98.82,13.9,12.8,0.3,22,11, +5,USA,Salina Muni AP,38.82,-97.67,15.1,13.2,0.7,28,11, +5,USA,Topeka-Forbes AFB,38.95,-95.67,14.3,12.3,1.3,20,1, +5,USA,Topeka-Phillip Billard Muni AP,39.07,-95.63,14.1,12.6,0.9,20,3, +5,USA,Wichita-Col Jabara Field,37.75,-97.22,14.6,12.8,1.7,20,-19, +5,USA,Wichita-McConnell AFB,37.62,-97.27,15.0,13.3,-0.1,24,-1, +5,USA,Wichita-Mid Continent AP,37.65,-97.43,15.1,11.9,0.7,24,-13, +5,USA,Bowling Green-Warren County AP,36.98,-86.43,15.3,11.9,1.3,28,3, +5,USA,Cincinnati-Northern Kentucky AP,39.05,-84.67,13.2,12.0,0.8,20,28, +5,USA,Fort Campbell AAF,36.67,-87.48,15.4,12.2,0.2,25,11, +5,USA,Fort Knox-Godman AAF,37.90,-85.97,14.4,11.7,-0.1,24,2, +5,USA,Henderson City County AP,37.82,-87.68,13.8,11.5,-0.2,23,5, +5,USA,Jackson-Julian Carroll AP,37.58,-83.32,15.6,10.3,0.6,22,35, +5,USA,Lexington-Bluegrass AP,38.03,-84.60,14.0,11.9,1.0,21,15, +5,USA,London-Corbin-Magee Field,37.08,-84.08,14.4,11.0,1.7,23,7, +5,USA,Louisville-Bowman Field,38.23,-85.67,15.6,11.2,0.8,19,13, +5,USA,"Louisville-Standiford +Field",38.18,-85.73,14.9,12.0,0.6,22,23, +5,USA,Paducah-Barkley Rgnl AP,37.05,-88.77,15.9,10.7,0.1,21,2, +5,USA,Somerset-Pulaski County AWOS,38.00,-84.60,16.1,11.8,1.0,19,30, +5,USA,Alexandria-England AFB,31.32,-92.55,20.6,8.7,1.1,21,4, +5,USA,Alexandria-Esler Rgnl AP,31.40,-92.30,19.7,9.1,1.2,21,-27, +5,USA,Barksdale AFB,32.50,-93.67,19.0,10.0,0.7,22,42, +5,USA,Baton Rouge-Ryan AP,30.53,-91.15,20.4,8.6,0.9,17,1, +5,USA,Fort Polk,31.05,-93.18,19.7,9.2,1.2,19,11, +5,USA,Houma-Terrebonne AP,29.57,-90.67,21.0,8.2,1.1,22,17, +5,USA,Lafayette RgnlAP,30.20,-91.98,20.7,8.2,0.2,28,8, +5,USA,Lake Charles AP,30.22,-93.17,20.8,9.1,1.9,17,-6, +5,USA,Lake Charles Rgnl AP,30.12,-93.23,20.5,8.6,0.9,20,7, +5,USA,Monroe Rgnl AP,32.52,-92.03,19.4,9.6,0.8,22,-20, +5,USA,New Iberia,30.03,-91.88,20.5,8.6,1.3,24,-17, +5,USA,New Orleans-Alvin Callender Field,29.82,-90.02,21.3,7.4,0.2,22,1, +5,USA,"New Orleans-Lakefront +AP",30.05,-90.03,21.7,8.0,0.0,23,8, +5,USA,New Orleans Intl AP,30.00,-90.25,21.3,8.0,1.0,21,10, +5,USA,Patterson Mem AP,29.72,-91.33,20.9,7.9,-0.8,21,43, +5,USA,Shreveport Downtown,32.53,-93.75,19.4,11.2,1.6,23,-17, +5,USA,Shreveport Rgnl AP,32.45,-93.82,19.3,10.0,1.6,19,-5, +5,USA,Barnstable-Boardman Poland AP,41.67,-70.28,11.7,9.8,0.0,34,-7, +5,USA,Beverly Muni AP,42.58,-70.92,10.2,11.7,-0.2,32,-1, +5,USA,Boston-Logan Intl AP,42.37,-71.02,11.5,11.8,0.1,29,6, +5,USA,Chicopee Falls-Westover AFB,42.20,-72.53,10.8,11.6,-0.6,29,-5, +5,USA,Lawrence Muni AP,42.72,-71.12,11.2,11.3,0.3,28,-1, +5,USA,Marthas Vineyard AP,41.40,-70.62,11.8,9.3,0.0,34,5, +5,USA,Nantucket Mem AP,41.25,-70.07,12.0,8.9,0.5,41,-29, +5,USA,New Bedford Rgnl AP,41.67,-70.95,12.0,10.6,-0.8,31,-23, +5,USA,North Adams AP,42.70,-73.17,10.3,11.6,0.8,29,7, +5,USA,Norwood Mem AP,42.18,-71.18,11.0,11.9,-0.2,31,6, +5,USA,Otis ANGB,41.65,-70.52,11.3,10.3,-1.7,32,35, +5,USA,Plymouth Muni AP,41.92,-70.73,11.5,10.2,0.7,31,8, +5,USA,Provincetown AWOS,42.07,-70.22,11.9,10.1,-0.7,39,30, +5,USA,Westfield-Barnes Muni AP,42.15,-72.72,10.6,12.5,0.4,30,-5, +5,USA,Worcester Rgnl AP,42.27,-71.88,9.2,12.3,-1.0,29,-14, +5,USA,Andrews AFB,38.82,-76.87,14.3,11.0,-0.5,25,5, +5,USA,Baltimore-Washington Intl AP,39.17,-76.68,14.4,11.8,0.5,22,-2, +5,USA,Hagerstown-Washington County Rgnl AP,39.70,-77.73,14.0,11.5,0.6,25,7, +5,USA,Patuxent River NAS,38.30,-76.42,16.3,10.1,-0.1,24,1, +5,USA,Salisbury-Wicomico County Rgnl AP,38.33,-75.52,15.5,10.2,0.5,23,-2, +5,USA,"Auburn-Lewiston Muni +AP",44.05,-70.28,8.4,11.6,-0.9,29,8, +5,USA,Augusta AP,44.32,-69.80,9.0,12.6,0.5,34,-5, +5,USA,Bangor Intl AP,44.80,-68.82,8.7,12.7,-1.5,32,5, +5,USA,Bar Harbor AWOS,44.45,-68.37,7.5,10.4,-1.2,37,15, +5,USA,Brunswick NAS,43.90,-69.93,8.8,12.2,-0.6,32,36, +5,USA,Caribou Muni AP,46.87,-68.03,5.6,12.0,-2.3,37,27, +5,USA,Edmundston-Northern Aroostook Rgnl AP,47.28,-68.32,5.7,11.8,-2.2,33,36, +5,USA,Houlton Intl AP,46.12,-67.80,7.0,12.6,-1.1,33,12, +5,USA,Millinocket Muni AP,45.65,-68.68,8.5,12.5,-0.8,30,16, +5,USA,Portland Intl Jetport,43.65,-70.30,8.5,12.0,-0.9,30,11, +5,USA,Presque Isle Muni AP,46.68,-68.05,6.4,11.5,-1.6,34,20, +5,USA,Rockland-Knox AWOS,44.07,-69.10,8.6,11.0,-0.6,37,-5, +5,USA,Sanford Muni AWOS,43.40,-70.72,8.4,11.0,-1.6,28,-8, +5,USA,Waterville AWOS,44.53,-69.68,8.2,12.7,-2.0,30,12, +5,USA,Wiscasset AP,43.97,-69.72,9.6,11.4,-0.1,34,4, +5,USA,Alpena County Rgnl AP,45.07,-83.58,7.7,12.1,-1.0,30,14, +5,USA,Ann Arbor Muni AP,42.22,-83.75,10.7,11.7,-1.0,31,-33, +5,USA,Battle Creek-Kellogg AP,42.30,-85.25,11.0,12.4,1.0,26,13, +5,USA,Benton Harbor-Ross Field-Twin Cities AP,42.13,-86.43,11.2,12.6,0.9,24,-23, +5,USA,"Cadillac-Wexford County +AP",44.28,-85.42,8.6,12.1,-2.0,31,3, +5,USA,Chippewa County Intl AP,46.25,-84.47,6.0,11.2,-1.9,35,21, +5,USA,Detroit-City AP,42.40,-83.00,11.1,13.3,-1.2,30,-13, +5,USA,Detroit-Willow Run AP,42.23,-83.53,10.8,13.8,-0.1,28,17, +5,USA,Detroit Metro AP,42.22,-83.35,10.3,13.2,-0.7,27,-10, +5,USA,Escanaba AWOS,45.75,-87.03,6.5,11.3,-2.0,34,16, +5,USA,Flint-Bishop Intl AP,42.97,-83.75,9.7,13.0,-0.6,26,-14, +5,USA,Grand Rapids-Kent County Intl AP,42.88,-85.52,9.9,13.0,-1.0,26,-17, +5,USA,Hancock-Houghton County AP,47.17,-88.50,6.6,12.0,-1.9,32,32, +5,USA,Houghton-Lake Roscommon County AP,44.37,-84.68,8.1,12.7,-1.4,28,11, +5,USA,"Howell-Livingston County +AP",42.63,-83.98,11.3,13.1,-0.2,26,13, +5,USA,Iron Mountain-Ford Field,45.82,-88.12,8.5,13.2,-1.2,26,10, +5,USA,Ironwood AWOS,46.53,-90.13,7.0,12.7,-2.0,32,24, +5,USA,Jackson-Reynolds Field,42.27,-84.47,11.0,13.0,0.5,25,18, +5,USA,Kalamazoo-Battle Creek Intl AP,42.23,-85.55,11.0,12.3,0.8,28,33, +5,USA,Lansing-Capital City AP,42.78,-84.58,9.8,13.1,-0.9,25,-18, +5,USA,Manistee AWOS,44.27,-86.25,9.4,12.9,-1.2,29,12, +5,USA,Menominee AWOS,45.13,-87.63,8.6,12.8,-1.1,37,17, +5,USA,Mount Clemens-Selfridge ANGB,42.62,-82.83,11.4,10.3,-1.5,28,21, +5,USA,Muskegon County AP,43.17,-86.23,9.5,12.8,-1.3,30,-1, +5,USA,Oakland County Intl AP,42.67,-83.42,11.2,12.7,0.0,30,7, +5,USA,Oscoda-Wurtsmith AFB,44.45,-83.40,9.3,11.9,-0.9,29,1, +5,USA,Pellston-Emmet County AP,45.57,-84.78,9.0,12.3,-0.6,25,14, +5,USA,Rhinelander-Oneida County AP,45.63,-89.47,7.8,13.5,-1.1,28,7, +5,USA,Saginaw-Tri City Intl AP,43.53,-84.08,9.8,12.3,0.1,29,6, +5,USA,Sault Ste Marie- Sanderson Field,46.47,-84.35,6.2,11.5,-1.5,35,18, +5,USA,St Clair County Intl AP,42.92,-82.53,10.9,12.9,-0.6,25,-14, +5,USA,Traverse City-Cherry Capital AP,44.73,-85.58,8.4,12.5,-1.2,31,12, +5,USA,Aitkin AWOS,46.55,-93.68,7.0,12.4,-1.2,35,17, +5,USA,Albert Lea AWOS,43.68,-93.37,10.2,14.1,-1.3,31,8, +5,USA,Alexandria Muni AP,45.88,-95.40,7.9,14.2,-0.4,30,4, +5,USA,Austin Muni AP,43.67,-92.93,9.1,13.9,-0.6,27,47, +5,USA,Baudette Intl AP,48.72,-94.60,6.9,12.5,-1.1,29,14, +5,USA,Bemidji Muni AP,47.50,-94.93,6.9,13.4,-1.6,32,11, +5,USA,Benson Muni AP,45.32,-95.65,8.3,14.0,-2.4,30,28, +5,USA,Brainerd-Crow Wing County AP,46.40,-94.13,7.8,12.9,-0.6,26,4, +5,USA,Cambridge Muni AP,45.57,-93.27,8.2,13.6,-1.0,25,24, +5,USA,Cloquet AWOS,46.70,-92.50,6.8,12.3,-2.2,29,37, +5,USA,Crane Lake AWOS,46.27,-92.57,6.1,12.6,-1.5,36,23, +5,USA,Crookston Muni Field,47.85,-96.62,6.8,13.4,-2.2,26,25, +5,USA,Detroit Lakes AWOS,46.83,-95.88,7.5,13.8,-1.5,30,19, +5,USA,Duluth Intl AP,46.83,-92.22,6.1,12.0,-1.6,31,25, +5,USA,"Edin Prairie-Flying Cloud +AP",44.82,-93.45,9.6,14.7,-1.3,28,16, +5,USA,Ely Muni AP,47.82,-91.83,6.9,12.5,-1.0,28,16, +5,USA,Eveleth Muni AWOS,47.40,-92.50,6.2,12.8,-2.1,30,24, +5,USA,Fairmont Muni AWOS,43.65,-94.42,8.9,13.8,-1.6,29,15, +5,USA,Faribault Muni AWOS,44.33,-93.32,9.6,13.1,-0.8,24,-13, +5,USA,Fergus Falls AWOS,46.28,-96.15,8.7,14.0,-1.6,30,23, +5,USA,Fosston AWOS,47.58,-95.77,6.6,13.2,-1.7,32,29, +5,USA,Glenwood AWOS,45.65,-95.32,8.0,13.9,-1.8,26,27, +5,USA,Grand Rapids AWOS,47.22,-93.52,7.0,12.9,-2.2,30,7, +5,USA,Hallock,48.78,-96.95,7.3,14.1,-1.7,27,12, +5,USA,Hibbing-Chisholm Hibbing AP,47.38,-92.85,5.9,12.7,-1.4,37,35, +5,USA,Hutchinson AWOS,44.87,-94.38,8.1,14.0,-2.8,31,23, +5,USA,International Falls Intl AP,48.57,-93.40,5.8,12.9,-1.8,31,15, +5,USA,Litchfield Muni AP,45.10,-94.50,9.8,13.7,1.3,21,42, +5,USA,Little Falls AWOS,45.95,-94.35,7.1,13.5,-2.3,27,23, +5,USA,Mankato AWOS,44.22,-93.92,9.2,13.7,-1.7,28,6, +5,USA,Marshall Muni-Ryan Field AWOS,44.45,-95.82,9.0,13.8,-1.6,31,24, +5,USA,Minneapolis-Crystal AP,45.07,-93.35,8.4,13.9,-0.7,27,14, +5,USA,Minneapolis-St Paul Intl AP,44.88,-93.23,9.1,14.0,-1.3,24,1, +5,USA,Mora Muni AWOS,45.88,-93.27,8.3,13.2,0.1,31,8, +5,USA,Morris Muni AWOS,45.57,-95.97,7.2,13.2,-2.4,28,17, +5,USA,New Ulm Muni AWOS,44.32,-94.50,9.2,13.9,-1.6,33,2, +5,USA,Orr Rgnl AP,48.02,-92.87,5.1,12.4,-2.0,30,34, +5,USA,Owatonna AWOS,44.12,-93.25,9.4,14.3,-1.3,25,14, +5,USA,Park Rapids Muni AP,46.90,-95.07,6.8,13.0,-1.0,29,10, +5,USA,Pipestone AWOS,43.98,-96.32,8.7,14.4,-1.4,26,28, +5,USA,Red Wing Muni AP,44.58,-92.48,9.7,14.2,-1.3,30,15, +5,USA,Redwood Falls Muni AP,44.55,-95.08,8.9,13.7,-1.2,26,-19, +5,USA,Rochester Intl AP,43.90,-92.50,8.3,13.5,-1.0,27,8, +5,USA,Roseau Muni AWOS,48.85,-95.70,6.1,12.5,-1.4,37,21, +5,USA,Silver Bay Muni AP,47.20,-91.40,4.9,11.1,-2.2,31,39, +5,USA,South St Paul Muni AP,44.85,-93.15,9.6,14.6,-1.1,27,18, +5,USA,St Cloud Muni AP,45.55,-94.05,7.8,13.5,-1.5,28,11, +5,USA,St Paul-Downtown AP,44.93,-93.05,9.1,13.9,-0.7,30,5, +5,USA,Thief River AWOS,48.07,-96.18,6.8,12.8,-2.1,31,18, +5,USA,Two Harbors Muni AP,47.05,-91.75,6.4,12.1,-1.7,25,24, +5,USA,Wheaton AWOS,45.70,-96.50,8.0,14.0,-1.1,27,28, +5,USA,Willmar Muni AP,45.12,-95.08,9.4,13.3,-0.8,24,21, +5,USA,Winona Muni AWOS,44.08,-91.70,9.6,13.9,-0.2,27,9, +5,USA,Worthington AWOS,43.65,-95.58,8.9,13.9,-1.8,30,21, +5,USA,Cape Girardeau Muni AP,37.23,-89.57,14.9,11.3,0.5,24,12, +5,USA,Columbia Rgnl AP,38.82,-92.22,13.5,12.7,1.3,20,1, +5,USA,Farmington Rgnl AP,37.77,-90.40,14.7,11.0,0.1,19,17, +5,USA,Fort Leonard Wood- Forney AAF,37.75,-92.15,15.0,12.0,-0.4,21,11, +5,USA,Jefferson City Mem AP,38.58,-92.15,15.2,12.1,0.9,24,-14, +5,USA,Joplin Muni AP,37.15,-94.50,16.9,11.9,1.3,27,-3, +5,USA,Kaiser-Lee Fine Mem AWOS,38.10,-92.55,15.0,12.4,1.1,23,-20, +5,USA,Kansas City Downtown AP,39.12,-94.60,16.0,12.6,1.6,21,-21, +5,USA,Kansas City Intl AP,39.30,-94.72,13.5,13.3,0.8,20,5, +5,USA,Kirksville Muni AP,40.10,-92.55,11.8,14.3,0.9,21,34, +5,USA,Poplar Bluff AWOS,36.77,-90.47,15.9,12.0,1.0,20,-7, +5,USA,Rolla National AP,38.13,-91.77,13.8,10.7,0.8,19,-3, +5,USA,Springfield Rgnl AP,37.23,-93.38,14.5,11.5,0.6,22,5, +5,USA,St Joseph-Rosecrans Mem AP,39.77,-94.90,13.2,13.5,-0.2,23,7, +5,USA,St Louis-Lambert Intl AP,38.75,-90.37,14.6,12.7,1.2,19,-13, +5,USA,St Louis-Spirit of St Louis AP,38.65,-90.65,15.0,11.5,1.1,20,18, +5,USA,Whiteman AFB,38.72,-93.55,14.3,11.9,-0.6,21,-7, +5,USA,Biloxi-Keesler AFB,30.42,-88.92,20.6,8.8,0.8,22,9, +5,USA,Columbus AFB,33.65,-88.45,17.4,11.5,1.4,18,-23, +5,USA,Golden Triangle Rgnl AWOS,33.45,-88.58,17.5,11.0,0.7,19,-9, +5,USA,Greenville Muni AP,33.48,-90.98,19.5,10.0,1.2,16,-20, +5,USA,Greenwood-Leflore AP,33.50,-90.08,18.8,9.7,0.9,22,-18, +5,USA,Gulfport-Biloxi Intl AP,30.40,-89.07,20.6,8.3,0.6,22,-29, +5,USA,Hattiesburg-Laurel AP,31.47,-89.33,19.3,9.6,0.9,14,4, +5,USA,Jackson Intl AP,32.32,-90.08,18.8,9.7,1.1,19,-14, +5,USA,McComb-Pike Co AP,31.23,-90.47,19.6,9.1,1.6,20,-15, +5,USA,Meridian-Key Field,32.33,-88.75,18.5,9.6,1.4,16,-15, +5,USA,Meridian NAS,32.55,-88.57,19.2,9.4,1.0,22,12, +5,USA,Natchez-Hardy Anders Field,31.62,-91.30,19.7,8.2,1.3,19,-8, +5,USA,Tupelo Muni-C D Lemons AP,34.27,-88.77,17.9,10.6,1.6,17,-24, +5,USA,Billings-Logan Intl AP,45.80,-108.55,11.1,13.4,0.0,22,7, +5,USA,Bozeman-Gallatin Field,45.80,-111.15,8.1,12.5,-1.8,26,26, +5,USA,Butte-Bert Mooney AP,45.95,-112.50,8.1,12.1,-1.7,22,35, +5,USA,Cut Bank Muni AP,48.60,-112.37,8.5,11.4,-1.0,22,13, +5,USA,Glasgow Intl AP,48.22,-106.62,9.0,14.9,-1.0,22,9, +5,USA,Glendive AWOS,47.13,-104.80,8.4,14.6,-3.0,24,23, +5,USA,Great Falls Intl AP,47.47,-111.38,9.4,12.9,-0.5,26,5, +5,USA,Havre City-County AP,48.55,-109.77,9.1,13.8,-1.9,25,9, +5,USA,Helena Rgnl AP,46.60,-111.97,9.8,13.0,-0.9,21,24, +5,USA,"Kalispell-Glacier Park Intl +AP",48.32,-114.25,7.7,11.4,-1.3,24,27, +5,USA,Lewistown Muni AP,47.05,-109.45,7.6,11.0,-1.3,32,7, +5,USA,Livingston-Mission Field,45.70,-110.45,9.3,11.2,-1.2,26,44, +5,USA,Miles City Muni AP,46.43,-105.88,10.1,14.9,-1.0,21,0, +5,USA,Missoula Intl AP,46.92,-114.10,9.0,11.6,0.1,23,3, +5,USA,Sidney-Richland Muni AP,47.70,-104.20,7.2,15.3,-2.5,27,35, +5,USA,Wolf Point Intl AP,48.31,-105.10,7.8,13.9,-0.9,26,-14, +5,USA,Asheville Rgnl AP,35.43,-82.53,14.0,9.7,0.7,19,-11, +5,USA,Cape Hatteras,35.27,-75.55,18.2,9.2,0.8,25,-7, +5,USA,Charlotte-Douglas Intl AP,35.22,-80.95,17.1,10.1,0.7,21,-13, +5,USA,Cherry Point MCAS,34.90,-76.88,16.8,10.4,0.0,24,9, +5,USA,Elizabeth City CGAS,36.30,-76.25,17.9,9.2,0.1,26,2, +5,USA,Fayetteville-Pope AFB,35.17,-79.02,17.0,10.7,0.3,21,10, +5,USA,Fayetteville Muni AP,34.98,-78.88,16.5,10.5,1.0,19,-3, +5,USA,Fort Bragg-Simmons AAF,35.13,-78.93,17.5,10.3,-0.2,22,9, +5,USA,Goldsboro-Seymour Johnson AFB,35.35,-77.97,16.6,10.9,0.7,18,-3, +5,USA,Greensboro-Piedmont Triad Intl AP,36.10,-79.95,15.8,10.8,1.1,19,-3, +5,USA,Hickory Rgnl AP,35.73,-81.38,16.7,10.3,0.8,21,33, +5,USA,Jacksonville AWOS,34.83,-77.62,16.2,10.2,0.3,19,27, +5,USA,Kinston Stallings AFB,35.32,-77.63,16.9,10.4,0.4,22,7, +5,USA,Manteo-Dare County Rgnl AP,35.92,-75.70,17.2,9.9,-1.2,38,-31, +5,USA,New Bern-Craven County Rgnl AP,35.07,-77.05,18.5,8.4,1.0,24,-32, +5,USA,New River MCAS,34.70,-77.38,17.8,9.9,1.2,29,14, +5,USA,Pitt Greenville AP,35.63,-77.40,17.4,9.5,1.3,27,47, +5,USA,Raleigh-Durham Intl AP,35.87,-78.78,16.4,10.4,0.6,21,6, +5,USA,Rocky Mount-Wilson AP,35.85,-77.90,17.0,8.9,0.9,18,4, +5,USA,Southern Pines-Moore County AP,35.23,-79.40,16.5,9.8,-0.2,26,2, +5,USA,Wilmington Intl AP,34.27,-77.90,18.4,9.4,0.2,23,10, +5,USA,Winston Salem-Smith Reynolds AP,36.13,-80.22,16.7,9.3,1.0,19,11, +5,USA,Bismarck Muni AP,46.77,-100.77,8.2,13.4,-1.4,25,7, +5,USA,Devils Lake AWOS,48.12,-98.92,6.8,13.2,-1.2,37,18, +5,USA,Dickinson Muni AP,46.80,-102.80,7.5,13.2,-1.2,28,35, +5,USA,Fargo-Hector Intl AP,46.93,-96.82,7.6,13.9,-1.0,27,1, +5,USA,Grand Forks AFB,47.97,-97.40,6.5,12.6,-2.9,29,26, +5,USA,Grand Forks Intl AP,47.95,-97.18,7.4,14.5,-1.4,27,9, +5,USA,Jamestown Muni AP,46.92,-98.68,6.7,13.8,-2.4,27,31, +5,USA,Minot AFB,48.42,-101.35,6.8,12.2,-2.4,36,19, +5,USA,Minot Intl AP,48.27,-101.28,7.4,13.4,-1.6,29,6, +5,USA,Williston-Sloulin Field Intl AP,48.20,-103.65,8.4,15.1,-1.4,26,32, +5,USA,Ainsworth Muni AP,42.58,-100.00,11.0,12.5,1.0,25,-32, +5,USA,Alliance Muni AP,42.05,-102.80,11.5,13.9,-1.8,20,46, +5,USA,Beatrice Muni AP,40.30,-96.75,12.4,13.5,0.8,23,12, +5,USA,Bellevue-Offutt AFB,41.12,-95.92,11.5,14.1,-0.7,20,39, +5,USA,Broken Bow Muni AP,41.43,-99.65,9.8,13.4,-0.7,28,17, +5,USA,Chadron Muni AP,42.83,-103.08,12.0,13.6,-0.8,21,37, +5,USA,Columbus Muni AP,41.45,-97.33,10.9,14.2,0.2,27,13, +5,USA,Falls City-Brenner Field,40.08,-95.60,12.3,13.4,1.2,24,17, +5,USA,Fremont Muni AP,41.45,-96.52,11.2,14.1,0.9,26,-10, +5,USA,Grand Island-Central Nebraska Rgnl AP,40.97,-98.32,10.8,14.5,0.0,23,-4, +5,USA,Hastings Muni AP,40.60,-98.43,11.7,13.8,-0.4,24,-2, +5,USA,Holdrege-Brewster Field,40.45,-99.33,10.6,13.4,1.0,21,-38, +5,USA,Imperial Muni AP,40.52,-101.62,13.1,13.5,-1.4,21,25, +5,USA,Kearney Muni AWOS,40.73,-99.00,10.8,13.0,-0.6,25,34, +5,USA,Lincoln Muni AP,40.83,-96.77,12.2,14.0,0.9,18,1, +5,USA,McCook Muni AP,40.20,-100.58,12.4,14.0,1.2,20,-18, +5,USA,Norfolk-Karl Stefan Mem AP,41.98,-97.43,10.3,14.6,-0.2,24,3, +5,USA,North Platte Rgnl AP,41.12,-100.67,10.4,13.2,-0.7,25,5, +5,USA,Omaha-Eppley Airfield,41.32,-95.90,12.2,14.4,0.8,25,29, +5,USA,Omaha WSFO,41.37,-96.02,11.7,14.8,0.7,22,25, +5,USA,ONeill-Baker Field,42.47,-98.68,9.8,13.9,-1.2,26,49, +5,USA,Ord-Sharp Field,41.62,-98.95,10.8,13.8,-0.7,21,-19, +5,USA,"Scottsbluff-W B Heilig +Field",41.87,-103.60,11.7,13.8,-0.7,19,34, +5,USA,Sidney Muni AP,41.10,-102.98,11.1,13.2,-0.5,17,7, +5,USA,Tekamah AWOS,41.77,-96.17,11.5,14.0,0.6,25,-5, +5,USA,Valentine-Miller Field,42.87,-100.55,10.9,13.1,0.3,24,0, +5,USA,Berlin Muni AP,44.58,-71.18,6.8,12.0,-1.5,38,25, +5,USA,Concord Muni AP,43.20,-71.50,9.1,12.8,-0.7,27,-7, +5,USA,Keene-Dillant Hopkins AP,42.90,-72.27,9.8,12.6,-1.0,30,-2, +5,USA,Laconia Muni AWOS,43.57,-71.42,9.4,12.2,-1.4,29,-2, +5,USA,Lebanon Muni AP,43.63,-72.30,9.3,12.8,-0.7,32,-2, +5,USA,Manchester Muni AP,42.93,-71.43,11.0,12.2,0.0,32,12, +5,USA,Mount Washington,44.27,-71.30,-0.4,5.4,0.0,44,7, +5,USA,Pease Intl Tradeport,43.08,-70.82,10.0,12.0,-1.0,30,5, +5,USA,Atlantic City Intl AP,39.45,-74.57,13.2,11.0,0.1,25,1, +5,USA,Belmar-Monmouth County AP,40.18,-74.07,12.9,11.3,-0.9,29,-14, +5,USA,Caldwell-Essex County AP,40.88,-74.28,13.2,10.5,-0.4,30,0, +5,USA,Cape May County AP,39.00,-74.92,14.6,10.0,-1.1,33,9, +5,USA,McGuire AFB,40.02,-74.60,13.6,11.3,0.5,28,8, +5,USA,Millville Muni AP,39.37,-75.08,14.0,10.6,-0.8,26,-24, +5,USA,Newark Intl AP,40.72,-74.18,13.7,12.1,0.6,24,3, +5,USA,Teterboro AP,40.85,-74.07,13.3,10.1,0.4,25,13, +5,USA,"Trenton-Mercer County +AP",40.28,-74.82,14.0,11.7,0.4,25,-1, +5,USA,Albuquerque Intl AP,35.04,-106.62,16.4,12.0,1.1,18,-27, +5,USA,Carlsbad Cavern City Air Terminal,32.33,-104.27,19.9,11.7,0.6,18,17, +5,USA,Clayton Muni AP,36.45,-103.15,15.3,12.2,0.3,18,4, +5,USA,Clovis-Cannon AFB,34.38,-103.32,16.0,13.0,-0.2,20,0, +5,USA,Clovis Muni AWOS,34.43,-103.08,16.0,12.7,0.0,17,15, +5,USA,Deming Muni AP,32.25,-107.72,19.5,11.1,1.1,13,-7, +5,USA,Farmington-Four Corners Rgnl AP,36.75,-108.23,14.7,13.1,-0.9,14,44, +5,USA,Gallup-Sen Clarke Field,35.52,-108.78,13.0,11.8,-1.3,16,48, +5,USA,Holloman AFB,32.85,-106.10,18.7,11.6,1.5,14,-22, +5,USA,Las Cruces Intl AP,32.28,-106.92,20.0,11.8,0.5,19,-33, +5,USA,Las Vegas-Muni AP,35.65,-105.15,13.5,10.1,0.0,16,10, +5,USA,Roswell Industrial Air Park,33.30,-104.53,19.4,11.1,0.7,16,-5, +5,USA,Ruidoso-Sierra Blanca Rgnl AP,33.47,-105.53,15.8,9.6,1.1,11,-23, +5,USA,Santa Fe County Muni AP,35.62,-106.08,12.4,10.9,1.2,15,-23, +5,USA,Taos Muni AP,36.45,-105.67,9.9,11.7,0.0,16,15, +5,USA,Truth or Consequences Muni AP,33.23,-107.27,18.9,11.1,0.7,14,-28, +5,USA,Tucumcari AP,35.18,-103.60,16.3,12.2,0.2,19,9, +5,USA,Elko Muni AP,40.83,-115.80,11.3,13.1,-1.0,17,38, +5,USA,Ely-Yelland Field,39.30,-114.85,10.5,11.9,-1.0,19,42, +5,USA,Fallon NAS,39.42,-118.72,15.4,12.9,1.0,18,-38, +5,USA,Las Vegas-McCarran Intl AP,36.08,-115.15,21.6,12.5,0.0,19,11, +5,USA,Lovelock-Derby Field,40.07,-118.55,14.7,12.9,-1.6,20,48, +5,USA,Mercury-Desert Rock AP,36.63,-116.02,19.8,12.3,0.0,18,2, +5,USA,Nellis AFB,36.25,-115.03,22.4,13.2,-1.1,16,34, +5,USA,Reno-Tahoe Intl AP,39.48,-119.77,14.1,12.0,-1.3,18,41, +5,USA,Tonopah AP,38.07,-117.08,13.9,12.2,-1.4,19,35, +5,USA,Winnemucca Muni AP,40.90,-117.80,12.9,12.8,-1.2,18,42, +5,USA,Albany County AP,42.75,-73.80,10.0,12.5,-1.0,26,-28, +5,USA,Binghamton-Edwin A Link Field,42.20,-75.98,9.3,12.0,-1.2,28,-16, +5,USA,Buffalo-Greater Buffalo Intl AP,42.93,-78.73,10.0,12.2,-0.6,30,-17, +5,USA,Elmira Rgnl AP,42.17,-76.90,10.3,11.0,0.5,25,3, +5,USA,Fort Drum-Wheeler Sack AAF,44.05,-75.72,8.6,11.9,-1.6,28,12, +5,USA,Glens Falls-Bennett Mem AP,43.35,-73.62,9.6,12.6,-0.7,31,-18, +5,USA,Islip-Long Island MacArthur AP,40.78,-73.10,13.4,11.2,-0.1,28,-10, +5,USA,Jamestown AWOS,42.15,-79.27,9.0,11.0,-1.3,32,-5, +5,USA,Massena AP,44.93,-74.85,8.3,13.0,-1.4,28,4, +5,USA,Monticello AWOS,41.70,-74.80,9.4,12.5,-0.8,30,10, +5,USA,New York-Central Park,40.78,-73.97,13.6,11.8,0.3,25,10, +5,USA,New York-J F Kennedy Intl AP,40.65,-73.80,13.7,11.5,-0.6,29,42, +5,USA,New York-LaGuardia AP,40.78,-73.88,14.7,11.4,0.1,30,10, +5,USA,"Newburgh-Stewart Intl +AP",41.50,-74.10,11.4,12.3,-1.0,28,-13, +5,USA,Niagara Falls Intl AP,43.10,-78.95,10.5,12.0,-1.7,34,-10, +5,USA,Poughkeepsie-Dutchess County AP,41.63,-73.88,11.3,11.8,1.0,25,33, +5,USA,Republic AP,40.72,-73.42,13.6,10.6,1.0,31,-31, +5,USA,Rochester-Greater Rochester Intl AP,43.12,-77.68,10.4,12.5,-0.8,28,-34, +5,USA,Saranac Lake-Adirondack Rgnl AP,44.38,-74.20,6.9,12.1,-2.2,27,19, +5,USA,Syracuse-Hancock Intl AP,43.12,-76.10,10.2,12.4,-0.7,25,-24, +5,USA,Utica-Oneida County AP,43.15,-75.38,9.8,12.5,-0.4,27,6, +5,USA,Watertown AP,44.00,-76.02,8.8,12.6,-0.6,33,24, +5,USA,Westhampton-Suffolk County AP,40.85,-72.63,12.0,10.2,1.0,30,-9, +5,USA,White Plains- Westchester County AP,41.07,-73.72,11.7,11.3,1.0,26,8, +5,USA,Akron Canton Rgnl AP,40.92,-81.43,10.8,12.4,-1.1,26,-28, +5,USA,Cincinnati Muni AP- Lunken Field,39.10,-84.42,13.6,11.4,0.3,24,8, +5,USA,Cleveland-Burke Lakefront AP,41.52,-81.68,11.6,12.5,-1.0,30,-46, +5,USA,"Cleveland-Hopkins Intl +AP",41.40,-81.85,11.2,13.1,-0.3,27,6, +5,USA,Columbus-Port Columbus Intl AP,39.98,-82.88,12.4,11.8,0.8,23,40, +5,USA,Dayton-Wright Patterson AFB,39.83,-84.05,12.3,11.6,-1.1,27,9, +5,USA,Dayton Intl AP,39.90,-84.22,12.1,12.6,0.5,21,28, +5,USA,Findlay AP,41.02,-83.67,11.9,11.1,1.1,22,14, +5,USA,Mansfield-Lahm Muni AP,40.82,-82.52,10.3,12.8,-1.1,28,-23, +5,USA,Ohio State University AP,40.07,-83.07,13.2,12.3,1.5,28,-23, +5,USA,Toledo Express AP,41.58,-83.80,10.5,13.0,0.6,23,43, +5,USA,Youngstown Rgnl AP,41.25,-80.67,10.2,12.0,-0.1,27,10, +5,USA,Zanesville Muni AP,39.95,-81.90,13.1,10.0,0.1,19,8, +5,USA,Altus AFB,34.65,-99.27,18.3,12.3,0.1,21,2, +5,USA,Bartlesville-Phillips Field,36.77,-96.02,15.5,11.7,0.6,15,12, +5,USA,Clinton Sherman AP,35.33,-99.20,16.1,12.5,0.7,23,8, +5,USA,Fort Sill-Henry Post AAF,34.65,-98.40,17.7,12.3,0.1,22,10, +5,USA,Gage AP,36.30,-99.77,17.3,13.7,1.0,16,-11, +5,USA,Hobart Muni AP,35.00,-99.05,17.4,12.6,1.3,24,-22, +5,USA,Lawton Muni AP,34.57,-98.42,17.7,10.7,0.6,19,-33, +5,USA,McAlester Rgnl AP,34.90,-95.78,17.9,10.8,0.7,21,8, +5,USA,Oklahoma City-Tinker AFB,35.42,-97.38,16.5,12.4,-0.6,21,8, +5,USA,Oklahoma City-Wiley Post Field,35.53,-97.65,16.5,12.3,0.2,23,4, +5,USA,Oklahoma City-Will Rogers World AP,35.38,-97.60,16.9,11.7,1.3,22,-7, +5,USA,Ponca City Muni AP,36.61,-97.49,17.3,12.6,1.5,24,-28, +5,USA,Stillwater Rgnl AP,36.15,-97.08,17.0,12.4,1.3,19,-26, +5,USA,Tulsa Intl AP,36.20,-95.88,16.8,12.4,0.5,19,11, +5,USA,Vance AFB,36.33,-97.92,15.7,13.0,-1.0,24,51, +5,USA,Astoria Rgnl AP,46.15,-123.88,12.6,6.0,-0.9,23,59, +5,USA,Aurora State AP,45.25,-122.77,14.6,8.9,-1.2,20,43, +5,USA,Baker Muni AP,44.83,-117.82,10.8,12.1,-1.6,21,35, +5,USA,Burns Muni AP,43.52,-119.02,10.4,12.3,-1.5,19,36, +5,USA,Corvallis Muni AP,44.48,-123.28,14.9,8.7,-1.3,18,53, +5,USA,Eugene-Mahlon Sweet AP,44.05,-123.07,13.4,8.7,0.0,20,5, +5,USA,Klamath Falls Intl AP,42.22,-121.74,11.8,11.3,-2.0,20,36, +5,USA,La Grande Muni AP,45.28,-118.00,12.4,11.4,-1.7,19,54, +5,USA,Lakeview AWOS,42.17,-120.40,11.1,11.5,-1.3,20,34, +5,USA,Medford-Rogue Valley Intl AP,42.19,-122.70,14.9,10.6,1.6,20,-35, +5,USA,North Bend Muni AP,43.42,-124.25,13.2,5.1,0.1,20,18, +5,USA,Pendleton-Eastern Oregon Rgnl AP,45.70,-118.83,13.5,11.3,1.4,19,-31, +5,USA,Portland-Hillsboro AP,45.53,-122.95,14.3,8.6,1.2,13,-26, +5,USA,Portland-Troutdale AP,45.55,-122.40,14.5,9.1,-1.2,22,46, +5,USA,Portland Intl AP,45.60,-122.62,14.2,8.8,1.4,20,-27, +5,USA,Redmond-Roberts Field,44.25,-121.17,11.5,10.5,0.1,20,6, +5,USA,Roseburg Rgnl AP,43.23,-123.35,15.5,8.3,1.1,16,-37, +5,USA,Salem-McNary Field,44.90,-123.00,13.8,8.7,0.1,20,6, +5,USA,Sexton Summit,42.60,-123.37,13.1,9.4,-1.0,29,29, +5,USA,Allentown-Lehigh Valley Intl AP,40.65,-75.45,11.8,12.4,1.2,24,40, +5,USA,Altoona-Blair County AP,40.30,-78.32,11.8,11.2,1.3,23,-17, +5,USA,Bradford Rgnl AP,41.80,-78.63,7.6,11.6,-1.0,27,9, +5,USA,Butler County AWOS,40.78,-79.95,10.4,12.4,-0.9,27,-6, +5,USA,DuBois-Jefferson County AP,41.18,-78.90,9.4,12.0,-0.1,26,6, +5,USA,Erie Intl AP,42.08,-80.18,10.4,12.3,-1.1,30,-23, +5,USA,Franklin-Chess Lemberton AP,41.38,-79.87,9.8,11.3,-0.5,26,35, +5,USA,"Harrisburg-Capital City +AP",40.22,-76.85,12.8,12.1,0.8,22,11, +5,USA,Harrisburg Intl AP,40.20,-76.77,12.2,13.5,-0.6,26,-16, +5,USA,Johnstown-Cambria County AP,40.32,-78.83,10.5,11.8,0.7,24,-8, +5,USA,Lancaster AP,40.12,-76.30,13.5,10.8,0.0,19,10, +5,USA,Philadelphia-NE Philadelphia AP,40.08,-75.02,14.2,11.9,0.4,27,7, +5,USA,Philadelphia Intl AP,39.87,-75.23,13.9,11.9,0.5,23,3, +5,USA,Pittsburgh-Allegheny County AP,40.35,-79.92,12.6,10.2,0.8,22,13, +5,USA,Pittsburgh Intl AP,40.50,-80.23,11.9,11.5,0.1,23,4, +5,USA,Reading Mem AP-Spaatz Field,40.37,-75.97,13.5,11.5,0.9,25,25, +5,USA,State College-Penn State University,40.72,-77.93,11.1,12.0,1.6,31,64, +5,USA,Washington AWOS,40.13,-80.28,12.1,10.7,-0.7,24,16, +5,USA,Wilkes-Barre-Scranton Intl AP,41.33,-75.73,10.8,12.6,0.1,25,11, +5,USA,Williamsport Rgnl AP,41.25,-76.92,11.7,12.5,0.8,24,37, +5,USA,Willow Grove NAS,40.20,-75.15,14.0,10.6,-0.2,27,13, +5,USA,Aquadilla/Borinquen,18.50,-67.13,26.0,1.5,0.0,41,-6, +5,USA,Eugenio Maria De Ho,18.25,-67.15,26.4,1.4,-0.2,20,7, +5,USA,Mercedita,18.00,-66.55,26.6,1.6,0.1,24,-1, +5,USA,Roosevelt-Roads,18.25,-65.63,27.6,1.7,-0.1,32,1, +5,USA,SanJuanIntlArpt,18.42,-66.00,27.0,1.8,-0.1,39,-13, +5,USA,SanJuanLMMarinIntlAP,18.43,-66.00,27.0,1.9,0.1,34,-7, +5,USA,Block Island State AP,41.17,-71.58,12.2,9.3,-0.9,38,26, +5,USA,Pawtucket AWOS,41.92,-71.50,10.9,11.5,-0.5,28,9, +5,USA,Providence-T F Green State AP,41.72,-71.43,11.7,11.5,0.2,27,-4, +5,USA,Anderson County AP,34.50,-82.72,16.5,10.3,0.4,26,-2, +5,USA,Beaufort MCAS,32.48,-80.72,19.4,9.0,0.6,23,7, +5,USA,Charleston Intl AP,32.90,-80.03,19.4,8.8,0.5,23,1, +5,USA,Columbia Metro AP,33.95,-81.12,18.3,9.6,1.1,20,5, +5,USA,Florence Rgnl AP,34.18,-79.73,19.0,9.3,1.0,22,-21, +5,USA,Greenville-Downtown AP,34.85,-82.35,16.1,10.7,0.3,25,1, +5,USA,Greer Greenville- Spartanburg AP,34.90,-82.22,16.7,10.2,0.7,20,-19, +5,USA,Myrtle Beach AFB,33.68,-78.93,18.5,8.9,0.7,20,6, +5,USA,North Myrtle Beach- Grand Strand Field,33.82,-78.72,18.3,9.0,0.7,21,4, +5,USA,Shaw AFB,33.97,-80.47,17.3,9.9,0.2,20,3, +5,USA,Aberdeen Rgnl AP,45.45,-98.42,9.2,14.0,-1.0,27,3, +5,USA,Brookings AWOS,44.30,-96.82,8.9,13.1,-0.5,24,9, +5,USA,Ellsworth AFB,44.15,-103.10,8.8,13.3,-3.1,27,16, +5,USA,Huron Rgnl AP,44.40,-98.22,8.6,14.0,-1.5,28,7, +5,USA,Mitchell AWOS,43.77,-98.03,9.0,14.7,-2.6,28,28, +5,USA,Mobridge Muni AP,45.53,-100.43,8.1,14.4,-2.2,25,30, +5,USA,Pierre Muni AP,44.38,-100.28,9.9,14.3,-0.5,25,16, +5,USA,Rapid City Rgnl AP,44.05,-103.05,9.3,13.2,-0.8,25,23, +5,USA,Sioux Falls-Foss Field,43.58,-96.75,9.6,14.1,-0.7,26,8, +5,USA,Watertown Muni AP,44.93,-97.15,7.7,13.7,-1.0,31,17, +5,USA,Yankton-Chan Gurney Muni AP,42.92,-97.38,10.2,14.6,-1.4,29,11, +5,USA,Bristol-TriCities Rgnl AP,36.47,-82.40,14.3,10.7,0.7,22,17, +5,USA,"Chattanooga-Lovell Field +AP",35.03,-85.20,16.9,10.3,0.5,20,-5, +5,USA,Crossville Mem AP,35.95,-85.08,14.9,9.7,0.9,20,0, +5,USA,Dyersburg Muni AP,36.02,-89.40,16.9,11.3,-0.1,28,-7, +5,USA,Jackson-McKellar Sipes Rgnl AP,35.60,-88.92,16.8,9.8,1.3,18,2, +5,USA,"Knoxville-McGhee Tyson +AP",35.82,-83.98,15.9,11.2,0.9,22,10, +5,USA,Memphis Intl AP,35.07,-89.98,18.1,11.0,0.7,21,6, +5,USA,Nashville Intl AP,36.12,-86.68,16.7,11.4,0.9,23,3, +5,USA,Abilene-Dyess AFB,32.43,-99.85,20.3,10.9,0.4,21,5, +5,USA,Abilene Rgnl AP,32.47,-99.71,18.1,11.1,1.5,21,6, +5,USA,Alice Intl AP,27.73,-98.03,23.3,7.6,0.8,18,2, +5,USA,Amarillo Intl AP,34.99,-101.90,16.0,12.0,0.8,18,-26, +5,USA,Austin-Camp Mabry,30.32,-97.77,20.8,9.3,1.0,20,-7, +5,USA,Austin-Mueller Muni AP,30.29,-97.74,21.4,8.2,0.5,21,11, +5,USA,Brownsville-South Padre Island AP,25.90,-97.43,23.3,7.1,1.2,20,6, +5,USA,Childress Muni AP,34.43,-100.28,18.5,12.0,-0.9,21,32, +5,USA,College Station- Easterwood Field,30.58,-96.37,20.7,8.6,1.5,20,-34, +5,USA,Corpus Christi Intl AP,27.88,-97.63,22.4,7.4,1.0,24,13, +5,USA,Corpus Christi NAS,27.68,-97.28,23.6,6.7,0.8,27,0, +5,USA,Cotulla AP,28.45,-99.22,24.7,8.6,2.0,8,-15, +5,USA,Cox Field,33.63,-95.45,18.0,10.5,0.8,22,-24, +5,USA,Dalhart Muni AP,36.02,-102.55,14.4,12.4,-1.4,21,41, +5,USA,Dallas-Addison AP,32.97,-96.83,19.5,11.4,1.7,24,-34, +5,USA,Dallas-Fort Worth Intl AP,32.90,-97.02,19.7,10.7,1.4,20,-13, +5,USA,Dallas-Love Field,32.85,-96.85,20.8,11.6,0.9,26,-5, +5,USA,Dallas-Redbird AP,32.68,-96.87,20.7,9.9,2.0,18,-25, +5,USA,Del Rio-Laughlin AFB,29.37,-100.78,24.5,9.6,1.1,14,-5, +5,USA,Del Rio,29.38,-100.91,23.0,9.5,0.6,23,-27, +5,USA,Draughon-Miller Central Texas AP,31.15,-97.40,19.9,9.7,0.5,22,4, +5,USA,El Paso Intl AP,31.77,-106.50,20.7,10.8,0.7,14,-6, +5,USA,Fort Hood,31.13,-97.72,20.4,10.2,1.2,21,12, +5,USA,Fort Worth-Alliance AP,32.98,-97.32,18.8,10.6,0.5,24,10, +5,USA,Fort Worth-Meacham AP,32.82,-97.37,19.2,11.4,-1.0,22,38, +5,USA,Fort Worth NAS,32.77,-97.45,20.0,9.8,1.3,18,-21, +5,USA,Galveston,29.30,-94.80,22.1,8.0,0.9,24,-24, +5,USA,Georgetown AWOS,30.68,-97.68,20.2,9.4,0.4,25,1, +5,USA,Greenville Muni AP,33.07,-96.07,19.0,10.7,0.4,23,5, +5,USA,Harlingen-Valley Intl AP,26.23,-97.65,23.6,6.2,-0.3,27,-9, +5,USA,Hondo Muni AP,29.37,-99.17,21.0,9.0,1.2,21,-13, +5,USA,Houston-Bush Intercontinental AP,30.00,-95.37,21.2,8.4,0.7,23,5, +5,USA,Houston-D W Hooks AP,30.07,-95.55,21.5,8.2,1.3,21,-3, +5,USA,Houston-Ellington AFB,29.57,-95.09,21.4,8.1,0.7,28,15, +5,USA,"Houston-William P +Hobby AP",29.65,-95.28,21.9,7.2,0.0,22,10, +5,USA,"Killeen-Fort Hood Rgnl +AP",31.07,-97.83,20.8,8.9,1.2,24,-3, +5,USA,Killeen Muni AWOS,31.08,-97.68,20.1,9.6,1.2,25,3, +5,USA,Kingsville,27.50,-97.82,22.8,7.2,0.3,26,-2, +5,USA,Laredo Intl AP,27.57,-99.49,24.2,9.5,1.8,18,26, +5,USA,Longview-Gregg County AP,32.29,-94.98,19.7,9.4,0.4,28,-4, +5,USA,Lubbock Intl AP,33.67,-101.82,17.8,11.5,0.9,17,-4, +5,USA,Lufkin-Angelina Co AP,31.23,-94.75,19.9,8.9,0.6,22,12, +5,USA,Marfa AP,30.37,-104.02,18.0,9.6,1.1,16,-12, +5,USA,McAllen-Miller Intl AP,26.31,-98.17,24.7,7.5,1.3,21,-24, +5,USA,McGregor AWOS,31.48,-97.32,19.8,10.1,0.0,29,-3, +5,USA,Midland Intl AP,31.95,-102.18,19.6,10.5,0.3,14,2, +5,USA,Mineral Wells Muni AP,32.78,-98.07,19.3,10.0,0.8,24,-25, +5,USA,Nacogdoches AWOS,31.58,-94.72,19.4,9.1,0.5,25,0, +5,USA,Palacios Muni AP,28.72,-96.25,21.6,7.9,1.0,25,30, +5,USA,"Port Arthur-Jefferson Co +AP",29.95,-94.02,21.2,8.2,0.8,21,15, +5,USA,Randolph AFB,29.53,-98.28,21.1,8.8,1.2,21,3, +5,USA,Rockport-Aransas Co AP,28.08,-97.05,23.4,7.0,0.4,25,25, +5,USA,San Angelo-Mathis AP,31.35,-100.50,20.1,10.9,1.5,15,-3, +5,USA,San Antonio-Kelly AFB,29.38,-98.58,22.1,8.8,1.1,23,31, +5,USA,San Antonio-Stinson AP,29.33,-98.47,21.6,8.7,0.2,16,1, +5,USA,San Antonio Intl AP,29.53,-98.47,21.3,9.0,0.9,23,5, +5,USA,Tyler-Pounds Field,32.35,-95.40,19.3,9.6,0.6,23,-15, +5,USA,Victoria Rgnl AP,28.87,-96.93,21.5,8.1,0.8,24,-5, +5,USA,Waco Rgnl AP,31.62,-97.23,19.8,10.4,1.3,20,-16, +5,USA,Wichita Falls Muni AP,33.98,-98.50,18.3,10.9,0.8,21,-12, +5,USA,Wink-Winkler County AP,31.78,-103.20,21.4,11.8,0.7,13,14, +5,USA,Blanding Muni AP,37.62,-109.48,13.9,12.9,-1.8,18,37, +5,USA,Bryce Canyon AP,37.70,-112.15,7.0,11.0,-1.7,29,24, +5,USA,Cedar City Muni AP,37.70,-113.10,13.7,12.4,-0.1,19,11, +5,USA,Delta Muni AP,39.33,-112.58,13.5,12.5,-2.8,20,44, +5,USA,Hanksville AP,38.37,-110.72,15.7,14.3,-2.0,16,40, +5,USA,Moab-Canyonlands Field,38.58,-109.54,15.5,13.9,1.3,14,-31, +5,USA,Ogden-Hill AFB,41.12,-111.97,12.2,12.4,-1.5,24,30, +5,USA,Ogden-Hinkley AP,41.20,-112.02,14.2,14.0,0.9,18,-27, +5,USA,Provo Muni AWOS,40.22,-111.72,12.5,12.0,-1.5,17,50, +5,USA,Saint George AWOS,37.08,-113.60,21.1,12.9,0.0,13,12, +5,USA,Salt Lake City Intl AP,40.77,-111.97,13.1,12.0,-1.9,22,52, +5,USA,Vernal AP,40.43,-109.52,12.5,13.7,1.3,14,-25, +5,USA,Wendover USAF Auxiliary Field,40.72,-114.03,13.8,14.4,-1.5,16,49, +5,USA,Abingdon-Virgina Highlands AP,36.68,-82.03,13.8,10.4,-1.3,24,33, +5,USA,Arlington-Ronald Reagan Washington Natl AP,38.87,-77.03,15.3,11.6,-0.6,26,-11, +5,USA,"Blacksburg-Virginia Tech +AP",37.22,-80.42,13.2,11.1,0.4,27,10, +5,USA,Charlottesville-Albemarle County AP,38.13,-78.45,15.8,10.0,1.2,22,32, +5,USA,Danville Rgnl AP,36.57,-79.33,16.1,10.5,1.6,21,-16, +5,USA,Davison AAF,38.72,-77.18,14.8,11.7,-0.7,25,-18, +5,USA,Farmville Muni AP,37.35,-78.43,15.7,11.2,0.4,29,-2, +5,USA,Franklin Muni AP,36.70,-76.90,17.3,9.6,1.1,24,-21, +5,USA,"Fredericksburg-Shannon +AP",38.27,-77.45,15.0,11.5,-0.5,25,4, +5,USA,Hillsville-Twin County AP,36.77,-80.82,12.6,10.6,-0.8,26,30, +5,USA,Hot Springs-Ingalls Field,37.95,-79.83,10.3,9.9,0.1,28,2, +5,USA,Langley AFB,37.08,-76.35,15.3,11.0,-0.1,25,5, +5,USA,Leesburg Muni AP- Godfrey Field,39.08,-77.57,13.6,12.0,0.2,26,-6, +5,USA,Lynchburg Rgnl AP- Preston Glen Field,37.33,-79.20,15.0,11.1,0.7,21,2, +5,USA,Manassas Muni AWOS,38.72,-77.52,13.5,11.3,-0.9,24,8, +5,USA,Marion-Wytheville- Mountain Empire AP,36.90,-81.35,13.5,10.7,1.1,20,-7, +5,USA,"Martinsville-Blue Ridge +AP",36.63,-80.02,14.8,11.2,-0.8,25,18, +5,USA,"Melfa-Accomack County +AP",37.65,-75.77,15.8,10.6,-1.0,33,-27, +5,USA,Newport News,37.13,-76.50,16.7,10.3,0.1,22,3, +5,USA,Norfolk Intl AP,36.90,-76.20,16.5,10.4,0.5,25,6, +5,USA,Norfolk NAS,36.95,-76.28,17.1,9.4,0.5,23,2, +5,USA,Oceana NAS,36.82,-76.03,16.8,9.9,0.7,24,-37, +5,USA,Petersburg Muni AP,37.18,-77.52,16.4,10.3,-0.9,20,-29, +5,USA,Pulaski-New River Valley AP,37.13,-80.68,13.3,10.8,0.1,27,7, +5,USA,Quantico MCAS,38.50,-77.30,15.4,11.1,0.8,25,-22, +5,USA,Richmond Intl AP,37.52,-77.32,15.9,10.9,0.5,23,12, +5,USA,Roanoke Rgnl AP- Woodrum Field,37.32,-79.97,14.9,10.8,0.3,21,14, +5,USA,Staunton-Shenandoah Valley Rgnl AP,38.27,-78.90,14.5,11.5,-0.8,27,27, +5,USA,Sterling-Washington Dulles Intl AP,38.98,-77.47,13.9,11.5,0.4,22,8, +5,USA,Winchester Rgnl AP,39.15,-78.15,13.7,11.9,-0.3,24,1, +5,USA,Wise-Lonesome Pine AP,36.98,-82.53,13.6,10.5,0.6,31,6, +5,USA,Charlotte- AmalieHarrySTrum,18.35,-64.97,27.6,2.0,0.5,49,-3, +5,USA,Burlington Intl AP,44.47,-73.15,9.0,12.7,-1.2,28,-4, +5,USA,Montpelier AP,44.20,-72.57,8.7,12.1,-0.4,32,9, +5,USA,Rutland State AP,43.52,-72.95,9.2,13.7,-0.8,29,5, +5,USA,Springfield-Hartnes State AP,43.35,-72.52,9.2,12.4,-0.5,30,-14, +5,USA,Bellingham Intl AP,48.80,-122.53,11.6,8.2,-0.8,19,21, +5,USA,Bremerton National AP,47.48,-122.75,12.4,8.0,-0.9,16,44, +5,USA,Ephrata Muni AP,47.30,-119.52,13.6,13.4,1.5,17,-28, +5,USA,Fairchild AFB,47.63,-117.65,9.9,12.4,-2.7,21,49, +5,USA,Fort Lewis-Gray AAF,47.08,-122.58,12.0,8.9,-1.7,22,54, +5,USA,Hanford,46.57,-119.60,13.4,13.6,2.0,19,-32, +5,USA,Hoquiam AP,46.98,-123.93,12.4,6.3,0.1,21,12, +5,USA,Kelso AP,46.13,-122.90,13.4,7.8,1.5,17,-27, +5,USA,Moses Lake-Grant County AP,47.20,-119.32,13.7,12.5,1.6,14,-29, +5,USA,Olympia AP,46.97,-122.90,12.2,8.3,-1.0,20,50, +5,USA,Pasco-Tri Cities AP,46.27,-119.12,14.8,12.0,-0.1,13,6, +5,USA,Port Angeles-William R Fairchild Intl AP,48.12,-123.50,11.6,7.4,0.6,21,-29, +5,USA,Pullman-Moscow Rgnl AP,46.75,-117.12,11.6,11.5,-1.5,19,49, +5,USA,Quillayute State AP,47.93,-124.57,10.6,5.2,-0.6,26,51, +5,USA,Renton Muni AP,47.48,-122.22,13.9,8.1,-1.1,17,39, +5,USA,Seattle-Boeing Field,47.68,-122.25,13.9,7.8,1.1,20,-33, +5,USA,Seattle-Tacoma Intl AP,47.47,-122.32,13.1,7.8,1.1,19,-25, +5,USA,Snohomish County AP,47.90,-122.28,12.7,7.1,-1.3,23,40, +5,USA,Spokane-Felts Field,47.68,-117.32,12.1,12.1,-1.7,20,37, +5,USA,Spokane Intl AP,47.49,-117.59,10.8,11.9,1.0,18,-29, +5,USA,Stampede Pass,47.28,-121.33,7.5,10.0,-1.6,23,25, +5,USA,Tacoma-McChord AFB,47.15,-122.48,11.9,9.0,-1.5,22,44, +5,USA,Tacoma Narrows AP,47.27,-122.58,13.3,7.8,-0.6,19,34, +5,USA,The Dalles Muni AP,45.62,-121.15,15.1,11.0,1.5,16,-32, +5,USA,Toledo-Winlock-Ed Carlson Mem AP,46.48,-122.80,11.6,8.8,1.4,22,-30, +5,USA,Walla Walla City-County AP,46.10,-118.28,14.3,11.5,-1.9,18,46, +5,USA,Wenatchee-Pangborn Mem AP,47.40,-120.20,13.2,13.3,1.2,17,-25, +5,USA,Whidbey Island NAS,48.35,-122.67,12.1,6.5,0.0,19,11, +5,USA,Yakima Air Terminal- McAllister Field,46.57,-120.55,12.4,12.5,1.4,13,-26, +5,USA,Appleton-Outagamie County AP,44.25,-88.52,9.6,12.3,-0.8,27,3, +5,USA,Eau Claire County AP,44.87,-91.48,8.3,13.9,-1.1,27,10, +5,USA,Ephraim AWOS,45.15,-87.15,8.0,13.7,-2.0,27,26, +5,USA,Green Bay-Austin Straubel Intl AP,44.48,-88.13,8.7,13.4,-1.4,28,2, +5,USA,"Janesville-Rock County +AP",42.62,-89.03,9.9,10.5,-0.4,26,2, +5,USA,La Crosse Muni AP,43.87,-91.25,9.7,14.0,-0.9,26,5, +5,USA,Lone Rock AP,43.20,-90.18,10.6,12.2,-1.5,29,-35, +5,USA,Madison-Dane County Rgnl AP,43.13,-89.33,9.1,13.8,-0.5,24,-11, +5,USA,Manitowac Muni AWOS,44.13,-87.68,9.2,11.8,-0.7,34,-21, +5,USA,Marshfield Muni AP,44.63,-90.18,9.2,12.9,0.0,28,12, +5,USA,"Milwaukee-Mitchell Intl +AP",42.95,-87.90,9.2,13.0,-0.6,31,14, +5,USA,Minocqua-Woodruff-Lee Field,45.93,-89.73,7.6,13.4,-1.1,30,7, +5,USA,Mosinee-Central Wisconsin AP,44.78,-89.67,8.0,13.3,-1.5,25,15, +5,USA,Phillips-Price County AP,45.70,-90.40,7.8,13.5,-1.2,30,6, +5,USA,Rice Lake Muni AP,45.48,-91.72,8.2,13.7,-1.1,30,7, +5,USA,Sturgeon Bay-Door County AP,44.85,-87.42,9.0,12.7,-0.4,34,4, +5,USA,Watertown Muni AP,43.17,-88.72,10.3,13.2,-1.2,30,-15, +5,USA,Wausau Muni AP,44.92,-89.63,8.7,14.0,-1.8,33,14, +5,USA,Wittman Rgnl AP,43.98,-88.55,8.8,12.6,-0.4,28,6, +5,USA,Beckley-Raleigh County Mem AP,37.80,-81.12,12.5,10.6,1.0,20,-16, +5,USA,Bluefield-Mercer County AP,37.27,-81.24,13.7,9.6,0.3,27,7, +5,USA,Charleston-Yeager AP,38.38,-81.58,14.1,11.2,0.5,21,4, +5,USA,Clarksburg-Harrison Marion Rgnl AP,39.28,-80.23,13.3,11.2,1.8,19,-21, +5,USA,"Elkins-Randolph County +AP",38.88,-79.85,11.0,10.8,0.5,21,11, +5,USA,Huntington-Tri State Walker Long Field,38.38,-82.55,14.2,11.1,0.8,21,27, +5,USA,Lewisburg-Greenbrier Valley AP,37.87,-80.40,11.1,10.6,-0.9,23,29, +5,USA,Martinsburg-Eastern WV Rgnl AP,39.40,-77.98,14.2,10.1,0.7,22,13, +5,USA,Morgantown Muni-Hart Field,39.65,-79.92,13.2,10.7,1.1,20,19, +5,USA,"Parkersburg-Wood County-Gill Robb Wilson +AP",39.35,-81.43,13.8,11.8,1.1,26,15, +5,USA,"Wheeling-Ohio County +AP",40.18,-80.65,12.1,11.1,0.1,24,1, +5,USA,Casper-Natrona County Intl AP,42.90,-106.47,10.1,13.2,-1.2,25,28, +5,USA,Cheyenne Muni AP,41.15,-104.80,9.8,11.9,-1.2,24,36, +5,USA,Cody Muni AWOS,44.52,-109.02,9.4,11.7,1.2,23,-41, +5,USA,Evanston-Uinta County AP-Burns Field,41.28,-111.03,7.4,12.0,-1.8,29,27, +5,USA,"Gillette-Gillette County +AP",44.35,-105.53,11.5,13.6,-1.4,22,43, +5,USA,"Green River-Greater Green River Intergalactic +Spaceport",41.46,-109.44,9.2,13.0,-1.2,22,26, +5,USA,Jackson Hole AP,43.60,-110.73,5.8,10.8,-2.0,28,30, +5,USA,Lander-Hunt Field,42.82,-108.73,10.6,13.7,-0.8,20,30, +5,USA,"Laramie-General Brees +Field",41.32,-105.68,7.8,11.1,-1.1,26,36, +5,USA,Rawlins Muni AP,41.80,-107.20,8.6,11.7,-1.7,22,29, +5,USA,Riverton Rgnl AP,43.05,-108.45,10.9,14.6,-1.2,23,22, +5,USA,Sheridan County AP,44.77,-106.97,10.6,13.4,-0.2,21,-3, +5,USA,Worland Muni AP,43.97,-107.95,11.2,14.7,0.0,22,13, +6,ARG,AEROPARQUE-BS-AS,-34.57,-58.42,18.7,-6.4,0.4,25,-29, +6,ARG,BAHIA-BLANCA-AERO,-38.73,-62.17,16.4,-7.2,0.0,21,17, +6,ARG,BARILOCHE-AERO,-41.15,-71.17,10.4,-7.1,-0.7,18,57, +6,ARG,CATAMARCA-AERO,-28.60,-65.77,22.6,-7.5,1.1,6,0, +6,ARG,CERES-AERO,-29.88,-61.95,19.7,-6.3,0.6,15,18, +6,ARG,COMODORO-RIVADAVIA,-45.78,-67.50,14.3,-6.6,0.7,17,-18, +6,ARG,CONCORDIA-AERO,-31.30,-58.02,19.6,-6.3,0.5,14,-13, +6,ARG,CORDOBA-AERO,-31.32,-64.22,18.0,-5.9,0.4,14,-2, +6,ARG,CORRIENTES-AERO,-27.45,-58.77,22.1,-5.4,0.1,16,12, +6,ARG,DOLORES-AERO,-36.35,-57.73,16.4,-7.0,0.5,19,-14, +6,ARG,ESQUEL-AERO,-42.93,-71.15,10.2,-7.4,1.1,18,-19, +6,ARG,EZEIZA-AERO,-34.82,-58.53,17.5,-6.5,-0.1,21,11, +6,ARG,FORMOSA-AERO,-26.20,-58.23,23.1,-5.4,0.9,15,-9, +6,ARG,GUALEGUAYCHU-AERO,-33.00,-58.62,18.8,-6.9,-0.1,18,15, +6,ARG,IGUAZU-AERO,-25.73,-54.47,22.1,-4.8,-0.7,13,73, +6,ARG,JUJUY-AERO,-24.38,-65.08,20.7,-5.1,1.1,6,-7, +6,ARG,JUNIN-AERO,-34.55,-60.92,16.7,-6.7,0.5,19,-16, +6,ARG,LA-RIOJA-AERO,-29.38,-66.82,23.0,-8.4,1.6,9,11, +6,ARG,LABOULAYE-AERO,-34.13,-63.37,17.3,-7.2,0.3,16,12, +6,ARG,LAS-LOMITAS,-24.70,-60.58,23.3,-5.3,1.1,2,-14, +6,ARG,MALARGUE-AERO,-35.50,-69.58,15.2,-8.9,-0.1,16,19, +6,ARG,MAR-DEL-PLATA-AERO,-37.93,-57.58,14.6,-5.6,0.3,25,-10, +6,ARG,MARCOS-JUAREZ-AERO,-32.70,-62.15,18.1,-6.9,0.5,14,-3, +6,ARG,MENDOZA-AERO,-32.83,-68.78,19.4,-9.0,0.5,10,2, +6,ARG,MONTE-CASEROS-AERO,-30.27,-57.65,20.7,-6.5,0.0,15,15, +6,ARG,NEUQUEN-AERO,-38.95,-68.13,16.9,-9.4,0.0,13,13, +6,ARG,PARANA-AERO,-31.78,-60.48,19.0,-6.4,0.5,18,-19, +6,ARG,PASO-DE-LOS-LIBRES,-29.68,-57.15,20.5,-6.3,-0.1,16,15, +6,ARG,POSADAS-AERO,-27.37,-55.97,23.0,-4.9,0.5,16,14, +6,ARG,PRESIDENCIA-ROQUE-S,-26.82,-60.45,22.1,-5.4,0.5,13,-5, +6,ARG,RECONQUISTA-AERO,-29.18,-59.70,20.9,-5.8,-0.1,21,10, +6,ARG,RESISTENCIA-AERO,-27.45,-59.05,22.0,-5.6,0.8,17,-15, +6,ARG,RIO-CUARTO-AERO,-33.12,-64.23,17.1,-6.7,0.6,16,-12, +6,ARG,RIO-GALLEGOS-AERO,-51.62,-69.28,9.2,-7.0,0.5,13,8, +6,ARG,RIO-GRANDE-BA,-53.80,-67.75,6.9,-5.0,0.6,17,-12, +6,ARG,ROSARIO-AERO,-32.92,-60.78,18.4,-6.6,0.1,16,16, +6,ARG,SALTA-AERO,-24.85,-65.48,18.1,-5.0,0.9,9,4, +6,ARG,SAN-ANTONIO-OESTE-A,-40.78,-65.10,16.7,-8.3,0.3,13,14, +6,ARG,SAN-JUAN-AERO,-31.40,-68.42,20.7,-10.1,1.2,10,-5, +6,ARG,SAN-JULIAN-AERO,-49.32,-67.75,10.9,-7.2,0.5,11,0, +6,ARG,SAN-LUIS-AERO,-33.27,-66.35,19.3,-8.0,0.1,9,18, +6,ARG,SAN-RAFAEL-AERO,-34.58,-68.40,18.2,-8.5,0.1,12,17, +6,ARG,SANTA-ROSA-AERO,-36.57,-64.27,16.5,-7.8,-0.1,17,15, +6,ARG,SANTIAGO-DEL-ESTERO,-27.77,-64.30,22.4,-7.2,0.7,7,2, +6,ARG,SAUCE-VIEJO-AERO,-31.70,-60.82,19.9,-6.8,0.0,12,14, +6,ARG,TANDIL-AERO,-37.23,-59.25,14.6,-6.7,-0.1,22,13, +6,ARG,TARTAGAL-AERO,-22.65,-63.82,22.8,-5.1,1.2,-1,-10, +6,ARG,TRELEW-AERO,-43.20,-65.27,15.1,-8.0,0.2,15,12, +6,ARG,TRES-ARROYOS,-38.33,-60.25,15.4,-7.1,-0.2,20,27, +6,ARG,TUCUMAN-AERO,-26.85,-65.10,20.7,-6.0,0.9,12,2, +6,ARG,USHUAIA-AERO,-54.80,-68.32,7.3,-4.1,0.5,17,-10, +6,ARG,VIEDMA-AERO,-40.85,-63.02,16.0,-8.0,0.5,18,-10, +6,ARG,VILLA-DOLORES-AERO,-31.95,-65.13,21.2,-8.5,0.4,9,34, +6,ARG,VILLA-REYNOLDS-AERO,-33.73,-65.38,17.2,-7.3,0.7,11,0, +6,BOL,COCHABAMBA,-17.42,-66.18,21.0,-2.3,1.2,1,1, +6,BOL,LA-PAZ-ALTO,-16.52,-68.18,9.3,-2.2,0.0,21,51, +6,BOL,SANTA-CRUZ-EL-TROMP,-17.80,-63.18,24.2,-3.1,1.1,1,-9, +6,BOL,VIRU-VIRU,-17.63,-63.13,24.0,-3.1,1.0,0,-5, +6,BRA,ARACAJU(AP),-10.98,-37.07,29.3,-2.6,0.5,58,-4, +6,BRA,BELEM(AP),-1.38,-48.48,28.5,0.9,0.6,98,-74, +6,BRA,BOA-VISTA(AP),2.83,-60.70,28.7,-0.5,1.1,-27,4, +6,BRA,BRASILIA(AP),-15.87,-47.93,22.6,-1.7,1.1,-7,4, +6,BRA,CAMPINAS(AP),-23.00,-47.13,22.2,-2.8,0.8,17,-18, +6,BRA,CAMPO-GRANDE(AP),-20.47,-54.67,25.2,-2.6,1.2,-4,6, +6,BRA,CARAVELAS(AP),-17.63,-39.25,25.4,-3.3,0.3,37,1, +6,BRA,CUIABA(AP),-15.65,-56.10,28.1,-2.1,1.0,7,3, +6,BRA,CURITIBA(AP),-25.52,-49.17,18.6,-3.9,0.8,30,-27, +6,BRA,EDUARDO-GOMES-INTL,-3.03,-60.05,28.3,1.0,0.9,86,-15, +6,BRA,"FERNANDO-DE- +NORONHA",-3.85,-32.42,28.8,-0.2,0.2,0,15, +6,BRA,FLORIANOPOLIS(AP),-27.67,-48.55,22.1,-4.1,0.3,30,-7, +6,BRA,FORTALEZA(AP),-3.78,-38.53,29.1,-0.6,0.3,-21,30, +6,BRA,FOZ-DO-IGUACU(AP),-25.52,-54.58,22.7,-4.3,0.5,13,-2, +6,BRA,GOIANIA(AP),-16.63,-49.22,25.2,-1.6,1.4,-12,-5, +6,BRA,ILHEUS(AP),-14.82,-39.03,26.0,-1.4,0.6,44,20, +6,BRA,LONDRINA(AP),-23.33,-51.13,23.0,-3.7,0.9,15,4, +6,BRA,MACEIO(AP),-9.52,-35.78,26.0,-1.3,0.4,32,-1, +6,BRA,MANAUS(AP),-3.15,-59.98,28.5,0.8,0.4,90,29, +6,BRA,NATAL-AP,-5.92,-35.25,28.6,-1.6,0.5,32,25, +6,BRA,PORTO-ALEGRE(AP),-30.00,-51.18,20.9,-5.2,0.7,22,-10, +6,BRA,PORTO-VELHO(AP),-8.77,-63.92,27.3,-0.7,0.2,-49,44, +6,BRA,PORTO-VELHO,-8.77,-63.92,27.8,-0.2,1.1,23,-1, +6,BRA,RECIFE(AP),-8.07,-34.85,28.0,-1.5,0.5,35,14, +6,BRA,RIO-BRANCO,-10.00,-67.80,26.7,-1.4,-0.5,-35,60, +6,BRA,RIO-DE-JANEIRO(AP),-22.90,-43.17,25.1,-2.8,0.5,37,-25, +6,BRA,SALVADOR(AP),-12.90,-38.33,26.6,-1.7,-0.2,30,17, +6,BRA,SANTAREM-AP,-2.43,-54.72,28.0,0.0,0.6,17,19, +6,BRA,SAO-LUIZ(AP),-2.60,-44.23,27.9,0.2,0.0,1,17, +6,BRA,SAO-PAULO(AP),-23.62,-46.65,21.1,-3.3,0.8,19,-8, +6,BRA,TERESINA(AP),-5.05,-42.82,29.9,0.0,0.3,16,1, +6,BRA,VITORIA(AP),-20.27,-40.28,25.7,-2.5,0.3,37,-12, +6,CHL,ANTOFAGASTA,-23.43,-70.45,18.9,-3.5,0.1,28,6, +6,CHL,ARICA,-18.47,-70.17,21.0,-4.0,0.4,33,-26, +6,CHL,BALMACEDA,-45.92,-71.70,8.0,-5.9,0.1,17,15, +6,CHL,CONCEPCION,-36.77,-73.07,15.0,-4.8,-0.3,17,39, +6,CHL,COPIAPO,-27.30,-70.42,18.4,-4.6,-0.8,15,57, +6,CHL,CURICO,-34.97,-71.23,16.3,-8.2,-0.4,11,35, +6,CHL,IQUIQUE,-20.53,-70.18,20.9,-3.9,0.0,28,20, +6,CHL,ISLA-DE-PASCUA,-27.17,-109.43,21.3,-2.9,0.4,44,-21, +6,CHL,JUAN-FERNANDEZ,-33.62,-78.82,17.2,-3.9,0.0,33,11, +6,CHL,LA-SERENA,-29.92,-71.20,16.6,-4.0,0.4,15,-21, +6,CHL,PUDAHUEL,-33.38,-70.78,17.5,-7.4,-0.1,16,17, +6,CHL,PUERTO-MONTT,-41.43,-73.10,11.2,-3.9,-0.4,20,28, +6,CHL,PUNTA-ARENAS,-53.00,-70.97,7.3,-4.4,0.3,23,3, +6,CHL,TEMUCO,-38.75,-72.63,12.7,-4.7,0.7,23,-41, +6,COL,BARRANQUILLA-ERNEST,10.88,-74.78,28.5,0.9,-0.6,18,-9, +6,COL,BOGOTA-ELDORADO,4.70,-74.13,14.8,-0.5,0.4,61,2, +6,COL,CALI-ALFONSO-BONILL,3.55,-76.38,26.0,0.3,-0.3,-53,47, +6,COL,CARTAGENA-RAFAEL-NU,10.45,-75.52,28.4,1.1,0.0,7,17, +6,COL,RIONEGRO-JM-CORDOVA,6.13,-75.43,18.6,0.3,0.9,-9,18, +6,FLK,MOUNT-PLEASANT-AP,-51.82,-58.45,7.4,-4.2,-0.1,22,17, +6,GUF,ROCHAMBEAU,4.83,-52.37,26.7,0.2,-0.2,20,14, +6,PER,AREQUIPA,-16.33,-71.57,17.7,-1.3,0.8,-1,16, +6,PER,CHICLAYO,-6.78,-79.82,26.0,-2.3,2.4,69,-19, +6,PER,CUZCO,-13.53,-71.93,15.0,-0.9,0.7,-27,32, +6,PER,IQUITOS,-3.78,-73.30,27.8,0.0,0.8,-1,33, +6,PER,LIMA-CALLAO-AP,-12.00,-77.12,22.2,-3.5,1.1,32,-44, +6,PER,PISCO,-13.73,-76.22,22.7,-2.1,1.7,28,-30, +6,PER,PIURA,-5.20,-80.60,27.2,-1.8,0.2,60,-4, +6,PER,PUCALLPA,-8.37,-74.57,27.7,-0.3,0.4,2,16, +6,PER,TACNA,-18.05,-70.27,21.6,-3.8,0.6,19,-12, +6,PER,TALARA,-4.57,-81.23,26.7,-1.2,0.8,53,37, +6,PER,TRUJILLO,-8.08,-79.10,24.1,0.3,0.6,4,55, +6,PRY,ASUNCION-AP,-25.25,-57.52,23.8,-4.5,0.6,6,-22, +6,PRY,CONCEPCION,-23.42,-57.30,24.6,-4.9,1.0,10,-9, +6,PRY,ENCARNACION,-27.32,-55.83,22.1,-4.9,0.7,14,-11, +6,PRY,VILLARRICA,-25.75,-56.43,23.3,-5.0,-0.1,11,8, +6,URY,ARTIGAS,-30.38,-56.50,20.1,-6.0,-0.1,18,10, +6,URY,BELLA-UNION,-30.27,-57.58,20.5,-6.2,0.5,19,6, +6,URY,CARRASCO,-34.83,-56.00,16.9,-5.7,0.0,29,7, +6,URY,COLONIA,-34.45,-57.83,18.2,-6.6,0.1,22,15, +6,URY,DURAZNO,-33.35,-56.50,17.6,-6.5,0.1,21,9, +6,URY,MELO,-32.37,-54.18,18.1,-6.0,1.0,21,-28, +6,URY,MERCEDES,-33.25,-58.07,18.5,-6.6,0.1,18,12, +6,URY,PASO-DE-LOS-TOROS,-32.80,-56.52,18.6,-6.4,0.1,22,14, +6,URY,PAYSANDU,-32.33,-58.03,19.0,-6.7,-0.1,20,13, +6,URY,RIVERA,-30.88,-55.53,18.9,-6.0,0.1,21,16, +6,URY,ROCHA,-34.48,-54.30,16.9,-5.5,0.5,24,-6, +6,URY,SALTO,-31.38,-57.95,19.8,-6.4,-0.2,18,11, +6,URY,TACUAREMBO,-31.70,-55.98,18.4,-6.7,-0.1,18,15, +6,URY,TREINTA-Y-TRES,-33.22,-54.38,17.9,-6.4,0.3,22,12, +6,URY,YOUNG,-32.68,-57.63,18.4,-6.8,0.9,20,-9, +6,URY,CARACAS-MAIQUETIA-A,10.60,-66.98,26.9,1.2,0.7,73,18, +6,URY,GUANARE,9.02,-69.73,27.6,-1.0,0.2,81,-23, +6,URY,MERIDA,8.60,-71.18,21.6,0.4,0.5,32,-18, +7,ASM,PAGO-PAGO-WSO-AP,-14.33,-170.72,28.1,-0.7,0.2,32,8, +7,AUS,ADELAIDE-AP,-34.95,138.53,18.2,-5.9,0.1,19,16, +7,AUS,ADELAIDE-REGIONAL-O,-34.92,138.62,18.8,-6.5,-0.7,20,48, +7,AUS,ALBANY-AP,-34.93,117.80,16.4,-4.3,0.3,29,-1, +7,AUS,ALICE-SPRINGS-AP,-23.80,133.88,23.7,-8.2,1.6,9,-8, +7,AUS,ARARAT-PRISON,-37.28,142.98,14.0,-5.6,-0.5,24,46, +7,AUS,BALLARAT-AERODROME,-37.52,143.78,12.6,-5.5,-0.7,27,46, +7,AUS,BENALLA,-36.55,145.97,15.9,-7.2,0.9,20,-55, +7,AUS,BILOELA-THANGOOL-AP,-24.48,150.57,21.8,-5.6,1.1,13,8, +7,AUS,BIRDSVILLE-POLICE-S,-25.90,139.35,25.1,-9.1,0.8,14,-4, +7,AUS,BOULIA-AP,-22.92,139.90,27.5,-7.8,1.2,13,8, +7,AUS,BOWEN-AP,-20.02,148.20,24.5,-4.0,0.8,22,12, +7,AUS,BOWRAL(PARRY-DRIVE),-34.48,150.40,14.4,-5.6,0.9,19,-6, +7,AUS,BRISBANE-AERO,-27.38,153.13,20.8,-4.7,0.6,21,11, +7,AUS,BROOME-AP,-17.95,122.23,28.4,-4.7,1.5,16,18, +7,AUS,CAIRNS-AERO,-16.88,145.75,24.8,-3.0,0.4,17,11, +7,AUS,CANBERRA-AP,-35.30,149.20,14.4,-7.3,0.2,20,7, +7,AUS,CAPE-BORDA,-35.75,136.58,16.6,-4.3,-0.4,26,24, +7,AUS,CAPE-BRUNY-LIGHTHOU,-43.50,147.15,12.6,-3.0,0.3,30,-4, +7,AUS,CAPE-OTWAY-LIGHTHOU,-38.85,143.52,14.4,-3.0,0.4,35,-6, +7,AUS,CARNARVON-AP,-24.88,113.67,23.3,-5.0,1.1,32,-16, +7,AUS,CEDUNA-AMO,-32.13,133.70,18.7,-5.7,0.7,18,-19, +7,AUS,CHARLEVILLE-AERO,-26.42,146.27,23.1,-8.3,0.9,11,5, +7,AUS,COBAR-MO,-31.48,145.83,21.1,-8.9,0.8,17,-4, +7,AUS,COFFS-HARBOUR-MO,-30.32,153.12,19.3,-4.8,0.5,22,10, +7,AUS,COOKTOWN-MISSION,-15.43,145.18,27.1,-2.8,1.2,2,28, +7,AUS,"COONABARABRAN- +NAMOI",-31.27,149.27,16.4,-7.6,0.4,17,-10, +7,AUS,CORRIGIN,-32.33,117.87,19.9,-8.0,0.4,24,-13, +7,AUS,COWRA-AP,-33.85,148.65,17.3,-8.1,0.1,22,15, +7,AUS,CUNDERDIN,-31.65,117.25,20.4,-8.2,-0.1,20,14, +7,AUS,CUNNAMULLA-POST-OFF,-28.07,145.68,23.9,-8.4,1.0,12,-1, +7,AUS,DARWIN-AP,-12.42,130.88,27.6,-1.9,1.2,-5,23, +7,AUS,DEVONPORT-AP,-41.17,146.42,13.2,-4.2,-0.5,29,45, +7,AUS,EAST-SALE-AP,-38.10,147.13,14.6,-4.7,0.1,24,11, +7,AUS,ELLISTON(PO),-33.65,134.88,18.5,-4.8,0.6,19,-7, +7,AUS,ESPERANCE,-33.83,121.88,17.9,-4.5,0.3,25,-1, +7,AUS,GABO-ISLAND,-37.57,149.90,15.7,-3.6,0.3,36,-1, +7,AUS,GAYNDAH-POST-OFFICE,-25.63,151.62,22.0,-5.9,0.8,14,12, +7,AUS,GEORGETOWN-POST-OFF,-18.30,143.55,27.0,-4.5,1.2,1,22, +7,AUS,GERALDTON-AP,-28.80,114.70,21.4,-5.9,0.2,31,-6, +7,AUS,GILES-METEOROLOGICA,-25.03,128.30,23.9,-8.2,1.4,14,0, +7,AUS,GOONDIWINDI-AP,-28.52,150.32,20.8,-7.2,0.8,16,7, +7,AUS,GOVE-AP,-12.28,136.82,26.3,-2.3,0.9,26,60, +7,AUS,HALLS-CREEK-AP,-18.23,127.67,29.0,-5.5,1.9,-1,16, +7,AUS,HOBART-AP,-42.83,147.50,13.5,-4.1,0.1,27,17, +7,AUS,HOBART-ELLERSLIE-RO,-42.88,147.33,13.2,-4.0,0.1,23,13, +7,AUS,JURIEN,-30.30,115.03,21.1,-4.8,0.1,30,9, +7,AUS,KALBARRI-PO,-27.72,114.17,22.8,-6.0,0.0,30,20, +7,AUS,KALGOORLIE-BOULDER,-30.78,121.45,21.0,-8.1,0.7,17,-18, +7,AUS,KATOOMBA,-33.72,150.28,13.5,-6.3,0.6,24,-15, +7,AUS,KULGERA,-25.85,133.30,22.8,-8.6,1.2,14,-7, +7,AUS,KYANCUTTA,-33.13,135.55,19.3,-7.4,0.2,18,16, +7,AUS,LAKE-GRACE,-33.12,118.47,20.0,-7.7,0.2,22,11, +7,AUS,LAMEROO,-35.33,140.52,17.8,-7.5,0.5,18,-21, +7,AUS,LANCELIN,-31.02,115.32,20.6,-4.9,0.4,28,1, +7,AUS,LAUNCESTON-AP,-41.53,147.20,12.7,-5.2,-0.1,25,0, +7,AUS,LAVERTON-AERODROME,-37.87,144.75,15.0,-4.7,0.6,27,-4, +7,AUS,LEARMONTH-AP,-22.23,114.08,25.4,-5.8,1.1,27,-11, +7,AUS,LEONORA-POST-OFFICE,-28.88,121.33,22.8,-8.3,0.4,17,13, +7,AUS,LORD-HOWE-ISLAND-AE,-31.53,159.07,21.1,-3.8,0.0,31,18, +7,AUS,MAATSUYKER-ISLAND-L,-43.65,146.27,12.1,-2.3,0.4,51,-31, +7,AUS,MACKAY-MO,-21.12,149.22,23.3,-4.3,0.6,18,14, +7,AUS,MACQUARIE-ISLAND,-54.50,158.95,6.2,-2.0,-0.4,35,44, +7,AUS,MAITLAND,-34.38,137.67,18.5,-6.5,0.0,20,14, +7,AUS,MARBLE-BAR-COMPARIS,-21.18,119.75,29.2,-6.9,0.9,8,17, +7,AUS,MARLA-POLICE-STATIO,-27.30,133.62,22.8,-8.4,1.0,13,-21, +7,AUS,"MARYBOROUGH- +COMPOSI",-25.52,152.72,21.3,-4.8,0.4,18,23, +7,AUS,MELBOURNE-AP,-37.67,144.85,15.0,-4.6,0.5,25,-19, +7,AUS,MELBOURNE,-37.82,144.97,16.6,-5.4,0.0,22,8, +7,AUS,MILDURA-AP,-34.23,142.08,19.0,-7.9,-0.5,14,43, +7,AUS,MORUYA-HEADS-PILOT,-35.92,150.15,16.6,-4.1,0.6,30,-12, +7,AUS,MOUNT-GAMBIER-AERO,-37.73,140.78,15.1,-5.1,0.6,22,-24, +7,AUS,MOUNT-ISA-AERO,-20.68,139.48,26.7,-6.6,1.4,9,7, +7,AUS,MURRURUNDI-POST-OFF,-31.77,150.83,16.2,-6.8,0.2,19,12, +7,AUS,NEPTUNE-ISLAND,-35.33,136.12,16.9,-3.8,-0.2,30,11, +7,AUS,NORMANTON,-17.67,141.08,29.5,-3.9,1.5,9,18, +7,AUS,NORSEMAN,-32.20,121.78,20.3,-7.9,0.1,21,11, +7,AUS,ONSLOW,-21.63,115.12,26.5,-5.2,0.9,31,6, +7,AUS,PARKES(MACARTHUR-S),-33.13,148.17,18.0,-8.0,-0.1,20,10, +7,AUS,PAYNES-FIND,-29.27,117.68,23.1,-9.2,-0.1,20,12, +7,AUS,PERTH-AP,-31.93,115.97,19.9,-6.0,0.6,27,-26, +7,AUS,PORT-HEDLAND-AP,-20.37,118.63,27.7,-5.6,1.4,19,1, +7,AUS,QUILPIE-AP,-26.62,144.25,25.0,-8.5,1.3,14,5, +7,AUS,RICHMOND-POST-OFFIC,-20.73,143.13,28.0,-6.2,1.3,7,17, +7,AUS,ROCKHAMPTON-AERO,-23.38,150.48,23.1,-5.0,0.8,17,16, +7,AUS,ROEBOURNE-POST-OFFI,-20.78,117.15,29.8,-6.0,1.2,17,5, +7,AUS,SHARK-BAY(DENHAM),-25.92,113.52,23.1,-4.7,0.7,30,-14, +7,AUS,SMOKY-CAPE-LIGHTHOU,-30.92,153.08,20.1,-4.0,0.6,28,-10, +7,AUS,SOUTHERN-CROSS,-31.23,119.33,20.4,-8.1,0.5,15,9, +7,AUS,ST-LAWRENCE-POST-OF,-22.35,149.53,23.3,-4.3,0.9,22,5, +7,AUS,SYDNEY-AP-AMO,-33.93,151.18,18.9,-4.8,0.7,25,-8, +7,AUS,TIBOOBURRA-POST-OFF,-29.43,142.00,22.1,-8.5,0.5,16,1, +7,AUS,TOWNSVILLE-AERO,-19.25,146.77,24.9,-4.3,-0.9,20,-77, +7,AUS,URANDANGIE,-21.60,138.30,27.5,-7.6,1.3,11,8, +7,AUS,WAGGA-WAGGA-AMO,-35.17,147.45,16.3,-7.4,-0.6,25,44, +7,AUS,WILLIAMTOWN-RAAF,-32.80,151.83,18.3,-5.6,0.6,20,2, +7,AUS,WILLIS-ISLAND,-16.30,149.97,26.7,-2.2,-0.1,35,9, +7,AUS,WINDORAH,-25.42,142.65,25.8,-8.3,1.2,13,-4, +7,AUS,WINTON(POST-OFFICE),-22.38,143.03,27.5,-6.9,1.2,7,13, +7,AUS,WOLLOGORANG,-17.20,137.93,26.6,-4.1,1.4,10,24, +7,AUS,"WONTHAGGI- +COMPOSITE",-38.60,145.58,14.8,-4.4,-0.5,26,42, +7,AUS,WOOMERA-AERODROME,-31.15,136.82,20.5,-7.8,1.0,15,-13, +7,AUS,WYNDHAM,-15.48,128.12,32.0,-4.4,1.6,-6,11, +7,AUS,YAMBA-PILOT-STATION,-29.43,153.37,20.2,-4.0,0.0,23,10, +7,BRN,BRUNEI-AP,4.93,114.93,27.8,1.0,0.1,-14,15, +7,CCK,COCOS-ISLAND-AERO,-12.18,96.83,28.6,-0.2,0.3,17,15, +7,COK,RAROTONGA,-21.20,-159.82,25.0,-2.1,0.3,45,-6, +7,FJI,NADI-AP,-17.75,177.45,25.8,-1.9,0.3,24,10, +7,FJI,NAUSORI,-18.05,178.57,25.1,-2.0,0.3,36,4, +7,FSM,CHUUK-WSO-AP,7.45,151.83,28.2,0.4,0.0,2,16, +7,FSM,KUSAIE-KOSRAE-EAST,5.33,163.03,28.3,0.3,0.3,61,39, +7,FSM,POHNPEI-WSO,6.97,158.22,27.5,0.0,0.2,-5,21, +7,FSM,YAP-ISLAND-WSO-AP,9.48,138.08,27.8,0.4,0.2,0,16, +7,GUM,ANDERSEN-AFB,13.57,144.92,27.5,0.5,0.0,36,11, +7,GUM,GUAM-WFO,13.48,144.80,27.8,0.6,0.0,13,17, +7,IDN,BALIKPAPAN-SEPINGGA,-1.27,116.90,28.2,0.2,0.6,-4,33, +7,IDN,BANDA-ACEH-BLANG-BI,5.52,95.42,28.2,1.6,0.3,2,-17, +7,IDN,"BANJARMASIN- +SYAMSUD",-3.43,114.75,28.4,0.3,0.7,16,7, +7,IDN,BANYUWANGI,-8.22,114.38,27.6,-0.3,0.9,9,27, +7,IDN,CILACAP,-7.73,109.02,27.4,-1.7,0.9,53,37, +7,IDN,DENPASAR-NGURAH-RAI,-8.75,115.17,28.3,-0.4,0.5,13,22, +7,IDN,GORONTALO-JALALUDDI,0.52,123.07,28.1,-0.1,0.7,13,25, +7,IDN,JAKARTA-SOEKARNO-HA,-6.12,106.65,28.1,0.1,0.7,-5,30, +7,IDN,KALIANGET(MADURA-I),-7.05,113.97,28.3,-0.8,0.6,-44,25, +7,IDN,LHOKSEUMAWE- MALIKUS,5.23,97.20,28.1,1.3,0.4,6,23, +7,IDN,MATARAM-SELAPARANG,-8.53,116.07,27.2,-0.9,0.7,18,15, +7,IDN,MEDAN-POLONIA,3.57,98.68,28.7,1.1,0.6,-24,39, +7,IDN,MENADO-SAM-RATULAN,1.53,124.92,27.8,0.5,0.1,25,4, +7,IDN,PADANG-TABING,-0.88,100.35,27.8,-0.7,0.3,62,17, +7,IDN,PALEMBANG-ST-M-BA,-2.90,104.70,28.6,1.0,0.9,-5,23, +7,IDN,PALU-MUTIARA,-0.68,119.73,28.1,0.1,0.1,5,14, +7,IDN,PEKAN-BARU-SIMPANGT,0.47,101.45,28.7,0.0,0.9,14,16, +7,IDN,RENGAT-JAPURA,-0.33,102.32,28.2,0.3,0.8,11,27, +7,IDN,SANGKAPURA(BAWEAN),-5.85,112.63,28.7,-0.2,0.2,0,17, +7,IDN,SAUMLAKI-OLILIT,-7.98,131.30,27.9,-0.9,0.2,14,17, +7,IDN,SEMARANG-AHMAD- YANI,-6.98,110.38,28.2,0.8,0.9,48,25, +7,IDN,SIBOLGA-PINANGSORI,1.55,98.88,28.7,-0.9,0.0,99,-28, +7,IDN,SINGKEP-DABO,-0.48,104.58,28.1,0.5,0.8,-8,17, +7,IDN,SUMBAWA-BESAR- BRANG,-8.43,117.42,27.7,-0.2,0.8,12,21, +7,IDN,SURABAYA-JUANDA,-7.37,112.77,28.9,-0.2,0.9,-5,29, +7,IDN,TEGAL,-6.85,109.15,28.1,-0.4,0.7,-38,38, +7,IDN,UJUNG-PANDANG- HASAN,-5.07,119.55,27.6,0.2,0.6,13,23, +7,IDN,WAINGAPU-MAU-HAU,-9.67,120.33,27.4,-1.2,1.2,-7,19, +7,KIR,TARAWA,1.35,172.92,28.3,0.1,0.0,1,17, +7,MHL,MAJURO-WSO-AP,7.08,171.38,28.1,0.0,0.0,15,15, +7,MNP,ROTA-INTL-ROTA-ISL,14.17,145.25,28.1,1.5,0.0,21,16, +7,MNP,WEST-TINIAN,15.00,145.62,28.1,1.2,1.0,-4,23, +7,MYS,BINTULU,3.20,113.03,28.1,0.6,0.1,14,4, +7,MYS,KOTA-BHARU,6.17,102.28,27.8,0.8,-0.1,-33,41, +7,MYS,KOTA-KINABALU,5.93,116.05,28.7,0.5,0.4,16,53, +7,MYS,KUALA-LUMPUR- SUBANG,3.12,101.55,28.2,0.4,-0.1,17,12, +7,MYS,KUANTAN,3.78,103.22,27.6,1.1,0.6,17,30, +7,MYS,KUCHING,1.48,110.33,27.4,0.8,0.1,19,-2, +7,MYS,LABUAN,5.30,115.25,28.2,0.2,0.0,14,17, +7,MYS,MALACCA,2.27,102.25,28.0,0.2,0.4,13,2, +7,MYS,MIRI,4.33,113.98,27.7,0.8,0.4,-30,16, +7,MYS,PENANG-BAYAN-LEPAS,5.30,100.27,28.0,0.2,0.1,13,16, +7,MYS,SANDAKAN,5.90,118.07,28.2,0.6,0.4,16,30, +7,MYS,SIBU,2.33,111.83,27.7,0.9,0.8,-37,-10, +7,MYS,SITIAWAN,4.22,100.70,28.0,1.2,0.8,-24,22, +7,MYS,TAWAU,4.27,117.88,27.6,-0.1,0.1,16,17, +7,NCL,KOUMAC(NLLE-CALEDO),-20.57,164.28,26.1,-3.0,0.7,16,-3, +7,NCL,LA-TONTOUTA(NLLE-C),-22.02,166.22,23.2,-3.6,0.4,30,11, +7,NCL,NOUMEA(NLLE-CALEDO),-22.27,166.45,23.8,-2.5,-0.3,34,37, +7,NFK,NORFOLK-ISLAND-AERO,-29.03,167.93,19.5,-3.1,0.4,42,-34, +7,NZL,AUCKLAND-AP,-37.02,174.80,16.0,-4.0,0.0,32,10, +7,NZL,CHRISTCHURCH,-43.48,172.55,12.2,-5.2,0.1,21,17, +7,NZL,TAIAROA-HEAD,-45.77,170.73,11.4,-3.2,0.3,29,-27, +7,NZL,WELLINGTON-AP,-41.33,174.80,14.4,-3.6,0.1,39,3, +7,PHL,APARRI,18.37,121.63,27.4,2.2,0.0,20,0, +7,PHL,BAGUIO,16.42,120.60,20.3,1.0,0.8,-16,26, +7,PHL,BUTUAN,8.93,125.52,28.0,1.5,0.7,-11,14, +7,PHL,CAGAYAN-DE-ORO,8.48,124.63,29.3,0.6,0.5,-2,16, +7,PHL,CALAPAN,13.42,121.18,28.0,1.4,0.7,-3,28, +7,PHL,CATARMAN,12.50,124.63,28.0,1.6,0.7,2,39, +7,PHL,DAET,14.13,122.98,27.6,1.5,0.3,-2,19, +7,PHL,DAGUPAN,16.05,120.33,28.4,1.1,0.4,-22,25, +7,PHL,DAVAO-AP,7.12,125.65,28.3,0.7,0.3,13,16, +7,PHL,DIPOLOG,8.60,123.35,28.5,1.0,0.3,-26,30, +7,PHL,DUMAGUETE,9.30,123.30,28.3,0.8,0.5,-4,22, +7,PHL,ILOILO,10.70,122.57,28.1,1.2,1.0,-32,22, +7,PHL,LAOAG,18.18,120.53,28.0,1.8,0.9,-2,32, +7,PHL,LEGASPI,13.13,123.73,28.0,1.5,0.7,26,22, +7,PHL,LUMBIA-AP,8.43,124.28,27.4,1.4,0.4,10,11, +7,PHL,MACTAN,10.30,123.97,28.3,1.2,0.7,-2,34, +7,PHL,MALAYBALAY,8.15,125.08,25.5,0.9,1.1,-40,26, +7,PHL,MANILA,14.58,120.98,28.5,1.2,1.2,-24,40, +7,PHL,MASBATE,12.37,123.62,28.6,1.7,0.3,14,1, +7,PHL,NINOY-AQUINO-INTERN,14.52,121.00,28.2,1.3,1.0,-21,27, +7,PHL,PUERTO-PRINCESA,9.75,118.73,27.9,0.9,0.8,-37,25, +7,PHL,ROXAS,11.58,122.75,27.9,0.7,0.3,-15,34, +7,PHL,SCIENCE-GARDEN,14.63,121.02,28.8,1.7,1.0,-34,31, +7,PHL,TACLOBAN,11.25,125.00,28.6,1.8,0.7,24,5, +7,PHL,TAGBILARAN,9.60,123.85,28.6,1.5,0.6,4,41, +7,PHL,TAYABAS,14.03,121.58,27.8,2.5,1.2,2,17, +7,PHL,TUGUEGARAO,17.62,121.73,27.9,2.6,1.0,4,26, +7,PHL,VIRAC,13.58,124.23,27.9,1.5,0.8,15,51, +7,PHL,ZAMBOANGA,6.90,122.07,28.3,0.6,0.2,-9,19, +7,PLW,KOROR-WSO,7.33,134.48,27.8,0.4,0.4,0,17, +7,PYF,ATUONA,-9.80,-139.03,26.6,-0.5,0.4,50,-2, +7,PYF,MURUROA,-21.82,-138.80,25.5,-2.4,0.5,36,24, +7,PYF,RAPA,-27.62,-144.33,21.5,-2.8,-0.6,48,64, +7,PYF,RIKITEA,-23.13,-134.97,24.0,-2.3,0.6,45,-33, +7,PYF,TAHITI-FAAA,-17.55,-149.62,27.1,-1.4,0.3,38,17, +7,PYF,TAKAROA,-14.48,-145.03,28.0,-0.7,0.4,52,51, +7,PYF,TUBUAI,-23.35,-149.48,24.0,-2.3,0.4,45,-9, +7,SGP,SINGAPORE-CHANGI-AP,1.37,103.98,28.3,0.8,0.5,-4,5, +7,SLB,HONIARA-HENDERSON,-9.42,160.05,27.0,-1.0,-0.4,25,-4, +7,TON,FUAAMOTU,-21.23,-175.15,24.1,-2.5,0.2,40,-11, +7,TON,HAAPAI,-19.80,-174.35,25.7,-2.0,0.4,42,4, +7,VUT,ANEITYUM,-20.23,169.77,24.6,-2.6,0.0,36,-1, +7,VUT,BAUERFIELD(EFATE),-17.70,168.30,24.7,-2.5,0.3,34,-1, +7,VUT,LAMAP(MALEKULA),-16.42,167.80,26.4,-1.5,-0.4,43,14, +7,VUT,PEKOA-AP(SANT),-15.52,167.22,26.1,-1.0,0.5,41,50, +7,VUT,WHITE-GRASS-AP,-19.45,169.22,24.8,-2.1,0.9,35,-31, +7,WLF,HIHIFO(ILE-WALLIS),-13.23,-176.17,27.0,-0.6,0.0,28,10, diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/unavailable_periods.csv b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/unavailable_periods.csv index 2dd57c33..4f913d54 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/unavailable_periods.csv +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/unavailable_periods.csv @@ -21,8 +21,8 @@ fuel_loads_lighting,1,1 fuel_loads_fireplace,1,1 pool_pump,0,1 pool_heater,0,1 -hot_tub_pump,0,1 -hot_tub_heater,0,1 +permanent_spa_pump,0,1 +permanent_spa_heater,0,1 hot_water_fixtures,1,1 hvac,0,1 water_heater,0,1 diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/energyplus.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/energyplus.rb index fbede5b5..c9d2223b 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/energyplus.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/energyplus.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class EPlus @@ -11,7 +16,6 @@ class EPlus EMSActuatorScheduleConstantValue = 'Schedule:Constant', 'Schedule Value' EMSActuatorScheduleYearValue = 'Schedule:Year', 'Schedule Value' EMSActuatorScheduleFileValue = 'Schedule:File', 'Schedule Value' - EMSActuatorSurfaceViewFactorToGround = 'Surface', 'View Factor To Ground' EMSActuatorZoneInfiltrationFlowRate = 'Zone Infiltration', 'Air Exchange Flow Rate' EMSActuatorZoneMixingFlowRate = 'ZoneMixing', 'Air Exchange Flow Rate' EMSIntVarFanMFR = 'Fan Maximum Mass Flow Rate' diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/generator.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/generator.rb index 366f3fd1..1aa8bacf 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/generator.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/generator.rb @@ -1,18 +1,24 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class Generator - def self.apply(model, nbeds, generator) + def self.apply(model, nbeds, generator, unit_multiplier) obj_name = generator.id - if not generator.is_shared_system - annual_consumption_kbtu = generator.annual_consumption_kbtu - annual_output_kwh = generator.annual_output_kwh - else + # Apply unit multiplier + annual_consumption_kbtu = generator.annual_consumption_kbtu * unit_multiplier + annual_output_kwh = generator.annual_output_kwh * unit_multiplier + + if generator.is_shared_system # Apportion to single dwelling unit by # bedrooms fail if generator.number_of_bedrooms_served.to_f <= nbeds.to_f # EPvalidator.xml should prevent this - annual_consumption_kbtu = generator.annual_consumption_kbtu * nbeds.to_f / generator.number_of_bedrooms_served.to_f - annual_output_kwh = generator.annual_output_kwh * nbeds.to_f / generator.number_of_bedrooms_served.to_f + annual_consumption_kbtu = annual_consumption_kbtu * nbeds.to_f / generator.number_of_bedrooms_served.to_f + annual_output_kwh = annual_output_kwh * nbeds.to_f / generator.number_of_bedrooms_served.to_f end input_w = UnitConversions.convert(annual_consumption_kbtu, 'kBtu', 'Wh') / 8760.0 diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb index 618603ac..a5adb009 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb @@ -1,10 +1,17 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class Geometry - def self.create_space_and_zone(model, spaces, location) + def self.create_space_and_zone(model, spaces, location, zone_multiplier) if not spaces.keys.include? location thermal_zone = OpenStudio::Model::ThermalZone.new(model) thermal_zone.setName(location) + thermal_zone.additionalProperties.setFeature('ObjectType', location) + thermal_zone.setMultiplier(zone_multiplier) space = OpenStudio::Model::Space.new(model) space.setName(location) @@ -158,7 +165,7 @@ def self.create_ceiling_vertices(length, width, z_origin, default_azimuths) return OpenStudio::reverse(create_floor_vertices(length, width, z_origin, default_azimuths)) end - def self.explode_surfaces(model, hpxml, walls_top) + def self.explode_surfaces(model, hpxml_bldg, walls_top) # Re-position surfaces so as to not shade each other and to make it easier to visualize the building. gap_distance = UnitConversions.convert(10.0, 'ft', 'm') # distance between surfaces of the same azimuth @@ -203,7 +210,7 @@ def self.explode_surfaces(model, hpxml, walls_top) end explode_distance = max_azimuth_length / (2.0 * Math.tan(UnitConversions.convert(180.0 / nsides, 'deg', 'rad'))) - add_neighbor_shading(model, max_azimuth_length, hpxml, walls_top) + add_neighbor_shading(model, max_azimuth_length, hpxml_bldg, walls_top) # Initial distance of shifts at 90-degrees to horizontal outward azimuth_side_shifts = {} @@ -257,15 +264,6 @@ def self.explode_surfaces(model, hpxml, walls_top) end end end - model.getShadingSurfaceGroups.each do |shading_group| - next unless [Constants.ObjectNameSkylightShade, Constants.ObjectNameWindowShade].include? shading_group.name.to_s - - shading_group.shadingSurfaces.each do |window_shade| - next unless window_shade.additionalProperties.getFeatureAsString('ParentSurface').get == surface.name.to_s - - shading_surfaces << window_shade - end - end # Push out horizontally distance = explode_distance @@ -306,14 +304,14 @@ def self.explode_surfaces(model, hpxml, walls_top) end end - def self.add_neighbor_shading(model, length, hpxml, walls_top) + def self.add_neighbor_shading(model, length, hpxml_bldg, walls_top) z_origin = 0 # shading surface always starts at grade shading_surfaces = [] - hpxml.neighbor_buildings.each do |neighbor_building| + hpxml_bldg.neighbor_buildings.each do |neighbor_building| height = neighbor_building.height.nil? ? walls_top : neighbor_building.height - vertices = Geometry.create_wall_vertices(length, height, z_origin, neighbor_building.azimuth) + vertices = create_wall_vertices(length, height, z_origin, neighbor_building.azimuth) shading_surface = OpenStudio::Model::ShadingSurface.new(vertices, model) shading_surface.additionalProperties.setFeature('Azimuth', neighbor_building.azimuth) shading_surface.additionalProperties.setFeature('Distance', neighbor_building.distance) @@ -331,22 +329,24 @@ def self.add_neighbor_shading(model, length, hpxml, walls_top) end end - def self.calculate_zone_volume(hpxml, location) + def self.calculate_zone_volume(hpxml_bldg, location) if [HPXML::LocationBasementUnconditioned, HPXML::LocationCrawlspaceUnvented, HPXML::LocationCrawlspaceVented, HPXML::LocationGarage].include? location - floor_area = hpxml.slabs.select { |s| s.interior_adjacent_to == location }.map { |s| s.area }.sum(0.0) - if location == HPXML::LocationGarage - height = 8.0 - else - height = hpxml.foundation_walls.select { |w| w.interior_adjacent_to == location }.map { |w| w.height }.max + floor_area = hpxml_bldg.slabs.select { |s| s.interior_adjacent_to == location }.map { |s| s.area }.sum(0.0) + height = hpxml_bldg.foundation_walls.select { |w| w.interior_adjacent_to == location }.map { |w| w.height }.max + if height.nil? # No foundation walls, need to make assumption because HPXML Wall elements don't have a height + height = { HPXML::LocationBasementUnconditioned => 8, + HPXML::LocationCrawlspaceUnvented => 3, + HPXML::LocationCrawlspaceVented => 3, + HPXML::LocationGarage => 8 }[location] end return floor_area * height elsif [HPXML::LocationAtticUnvented, HPXML::LocationAtticVented].include? location - floor_area = hpxml.floors.select { |f| [f.interior_adjacent_to, f.exterior_adjacent_to].include? location }.map { |s| s.area }.sum(0.0) - roofs = hpxml.roofs.select { |r| r.interior_adjacent_to == location } + floor_area = hpxml_bldg.floors.select { |f| [f.interior_adjacent_to, f.exterior_adjacent_to].include? location }.map { |s| s.area }.sum(0.0) + roofs = hpxml_bldg.roofs.select { |r| r.interior_adjacent_to == location } avg_pitch = roofs.map { |r| r.pitch }.sum(0.0) / roofs.size # Assume square hip roof for volume calculation length = floor_area**0.5 @@ -355,16 +355,19 @@ def self.calculate_zone_volume(hpxml, location) end end - def self.set_zone_volumes(spaces, hpxml, apply_ashrae140_assumptions) - # Living space - spaces[HPXML::LocationLivingSpace].thermalZone.get.setVolume(UnitConversions.convert(hpxml.building_construction.conditioned_building_volume, 'ft^3', 'm^3')) + def self.set_zone_volumes(spaces, hpxml_bldg, apply_ashrae140_assumptions) + # Conditioned space + volume = UnitConversions.convert(hpxml_bldg.building_construction.conditioned_building_volume, 'ft^3', 'm^3') + spaces[HPXML::LocationConditionedSpace].thermalZone.get.setVolume(volume) + spaces[HPXML::LocationConditionedSpace].setVolume(volume) # Basement, crawlspace, garage spaces.keys.each do |location| next unless [HPXML::LocationBasementUnconditioned, HPXML::LocationCrawlspaceUnvented, HPXML::LocationCrawlspaceVented, HPXML::LocationGarage].include? location - volume = calculate_zone_volume(hpxml, location) - spaces[location].thermalZone.get.setVolume(UnitConversions.convert(volume, 'ft^3', 'm^3')) + volume = UnitConversions.convert(calculate_zone_volume(hpxml_bldg, location), 'ft^3', 'm^3') + spaces[location].thermalZone.get.setVolume(volume) + spaces[location].setVolume(volume) end # Attic @@ -372,12 +375,13 @@ def self.set_zone_volumes(spaces, hpxml, apply_ashrae140_assumptions) next unless [HPXML::LocationAtticUnvented, HPXML::LocationAtticVented].include? location if apply_ashrae140_assumptions - volume = 3463 # Hardcode the attic volume to match ASHRAE 140 Table 7-2 specification + volume = UnitConversions.convert(3463, 'ft^3', 'm^3') # Hardcode the attic volume to match ASHRAE 140 Table 7-2 specification else - volume = calculate_zone_volume(hpxml, location) + volume = UnitConversions.convert(calculate_zone_volume(hpxml_bldg, location), 'ft^3', 'm^3') end - spaces[location].thermalZone.get.setVolume(UnitConversions.convert(volume, 'ft^3', 'm^3')) + spaces[location].thermalZone.get.setVolume(volume) + spaces[location].setVolume(volume) end end @@ -424,6 +428,15 @@ def self.get_temperature_scheduled_space_values(location) outdoor_weight: 0.0, ground_weight: 1.0, f_regain: 0.83 } # From LBNL's "Technical Background for default values used for Forced Air Systems in Proposed ASHRAE Standard 152P" + elsif location == HPXML::LocationManufacturedHomeBelly + # From LBNL's "Technical Background for default values used for Forced Air Systems in Proposed ASHRAE Standard 152P" + # 3.5 Manufactured House Belly Pan Temperatures + # FUTURE: Consider modeling the belly as a separate thermal zone so that we dynamically calculate temperatures. + return { temp_min: nil, + indoor_weight: 1.0, + outdoor_weight: 0.0, + ground_weight: 0.0, + f_regain: 0.62 } end fail "Unhandled location: #{location}." end @@ -433,14 +446,14 @@ def self.get_height_of_spaces(spaces) minzs = [] maxzs = [] spaces.each do |space| - zvalues = getSurfaceZValues(space.surfaces) + zvalues = get_surface_z_values(space.surfaces) minzs << zvalues.min + UnitConversions.convert(space.zOrigin, 'm', 'ft') maxzs << zvalues.max + UnitConversions.convert(space.zOrigin, 'm', 'ft') end return maxzs.max - minzs.min end - def self.getSurfaceZValues(surfaceArray) + def self.get_surface_z_values(surfaceArray) # Return an array of z values for surfaces passed in. The values will be relative to the parent origin. This was intended for spaces. zValueArray = [] surfaceArray.each do |surface| @@ -451,6 +464,46 @@ def self.getSurfaceZValues(surfaceArray) return zValueArray end + # Return an array of x values for surfaces passed in. The values will be relative to the parent origin. This was intended for spaces. + def self.get_surface_x_values(surfaceArray) + xValueArray = [] + surfaceArray.each do |surface| + surface.vertices.each do |vertex| + xValueArray << UnitConversions.convert(vertex.x, 'm', 'ft').round(5) + end + end + return xValueArray + end + + # Return an array of y values for surfaces passed in. The values will be relative to the parent origin. This was intended for spaces. + def self.get_surface_y_values(surfaceArray) + yValueArray = [] + surfaceArray.each do |surface| + surface.vertices.each do |vertex| + yValueArray << UnitConversions.convert(vertex.y, 'm', 'ft').round(5) + end + end + return yValueArray + end + + def self.get_surface_length(surface) + xvalues = get_surface_x_values([surface]) + yvalues = get_surface_y_values([surface]) + xrange = xvalues.max - xvalues.min + yrange = yvalues.max - yvalues.min + if xrange > yrange + return xrange + end + + return yrange + end + + def self.get_surface_height(surface) + zvalues = get_surface_z_values([surface]) + zrange = zvalues.max - zvalues.min + return zrange + end + def self.get_z_origin_for_zone(zone) z_origins = [] zone.spaces.each do |space| @@ -470,8 +523,8 @@ def self.get_roof_pitch(surfaces) return UnitConversions.convert(tilts.max, 'rad', 'deg') end - def self.apply_occupants(model, runner, hpxml, num_occ, space, schedules_file, unavailable_periods) - occ_gain, _hrs_per_day, sens_frac, _lat_frac = Geometry.get_occupancy_default_values() + def self.apply_occupants(model, runner, hpxml_bldg, num_occ, space, schedules_file, unavailable_periods) + occ_gain, _hrs_per_day, sens_frac, _lat_frac = get_occupancy_default_values() activity_per_person = UnitConversions.convert(occ_gain, 'Btu/hr', 'W') # Hard-coded convective, radiative, latent, and lost fractions @@ -482,21 +535,21 @@ def self.apply_occupants(model, runner, hpxml, num_occ, space, schedules_file, u people_sch = nil people_col_name = SchedulesFile::ColumnOccupants if not schedules_file.nil? - people_sch = schedules_file.create_schedule_file(col_name: people_col_name) + people_sch = schedules_file.create_schedule_file(model, col_name: people_col_name) end if people_sch.nil? people_unavailable_periods = Schedule.get_unavailable_periods(runner, people_col_name, unavailable_periods) - weekday_sch = hpxml.building_occupancy.weekday_fractions.split(',').map(&:to_f) + weekday_sch = hpxml_bldg.building_occupancy.weekday_fractions.split(',').map(&:to_f) weekday_sch = weekday_sch.map { |v| v / weekday_sch.max }.join(',') - weekend_sch = hpxml.building_occupancy.weekend_fractions.split(',').map(&:to_f) + weekend_sch = hpxml_bldg.building_occupancy.weekend_fractions.split(',').map(&:to_f) weekend_sch = weekend_sch.map { |v| v / weekend_sch.max }.join(',') - monthly_sch = hpxml.building_occupancy.monthly_multipliers + monthly_sch = hpxml_bldg.building_occupancy.monthly_multipliers people_sch = MonthWeekdayWeekendSchedule.new(model, Constants.ObjectNameOccupants + ' schedule', weekday_sch, weekend_sch, monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: people_unavailable_periods) people_sch = people_sch.schedule else - runner.registerWarning("Both '#{people_col_name}' schedule file and weekday fractions provided; the latter will be ignored.") if !hpxml.building_occupancy.weekday_fractions.nil? - runner.registerWarning("Both '#{people_col_name}' schedule file and weekend fractions provided; the latter will be ignored.") if !hpxml.building_occupancy.weekend_fractions.nil? - runner.registerWarning("Both '#{people_col_name}' schedule file and monthly multipliers provided; the latter will be ignored.") if !hpxml.building_occupancy.monthly_multipliers.nil? + runner.registerWarning("Both '#{people_col_name}' schedule file and weekday fractions provided; the latter will be ignored.") if !hpxml_bldg.building_occupancy.weekday_fractions.nil? + runner.registerWarning("Both '#{people_col_name}' schedule file and weekend fractions provided; the latter will be ignored.") if !hpxml_bldg.building_occupancy.weekend_fractions.nil? + runner.registerWarning("Both '#{people_col_name}' schedule file and monthly multipliers provided; the latter will be ignored.") if !hpxml_bldg.building_occupancy.monthly_multipliers.nil? end # Create schedule diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb index 46489a3a..a8044ce4 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb @@ -1,38 +1,43 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class HotWaterAndAppliances - def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, + def self.apply(model, runner, hpxml_header, hpxml_bldg, weather, spaces, hot_water_distribution, solar_thermal_system, eri_version, schedules_file, plantloop_map, - unavailable_periods) + unavailable_periods, unit_multiplier) @runner = runner - cfa = hpxml.building_construction.conditioned_floor_area - ncfl = hpxml.building_construction.number_of_conditioned_floors - has_uncond_bsmnt = hpxml.has_location(HPXML::LocationBasementUnconditioned) - fixtures_usage_multiplier = hpxml.water_heating.water_fixtures_usage_multiplier - living_space = spaces[HPXML::LocationLivingSpace] - nbeds = hpxml.building_construction.additional_properties.adjusted_number_of_bedrooms + cfa = hpxml_bldg.building_construction.conditioned_floor_area + ncfl = hpxml_bldg.building_construction.number_of_conditioned_floors + has_uncond_bsmnt = hpxml_bldg.has_location(HPXML::LocationBasementUnconditioned) + fixtures_usage_multiplier = hpxml_bldg.water_heating.water_fixtures_usage_multiplier + conditioned_space = spaces[HPXML::LocationConditionedSpace] + nbeds = hpxml_bldg.building_construction.additional_properties.adjusted_number_of_bedrooms # Get appliances, etc. - if not hpxml.clothes_washers.empty? - clothes_washer = hpxml.clothes_washers[0] + if not hpxml_bldg.clothes_washers.empty? + clothes_washer = hpxml_bldg.clothes_washers[0] end - if not hpxml.clothes_dryers.empty? - clothes_dryer = hpxml.clothes_dryers[0] + if not hpxml_bldg.clothes_dryers.empty? + clothes_dryer = hpxml_bldg.clothes_dryers[0] end - if not hpxml.dishwashers.empty? - dishwasher = hpxml.dishwashers[0] + if not hpxml_bldg.dishwashers.empty? + dishwasher = hpxml_bldg.dishwashers[0] end - if not hpxml.cooking_ranges.empty? - cooking_range = hpxml.cooking_ranges[0] + if not hpxml_bldg.cooking_ranges.empty? + cooking_range = hpxml_bldg.cooking_ranges[0] end - if not hpxml.ovens.empty? - oven = hpxml.ovens[0] + if not hpxml_bldg.ovens.empty? + oven = hpxml_bldg.ovens[0] end # Create WaterUseConnections object for each water heater (plant loop) water_use_connections = {} - hpxml.water_heating_systems.each do |water_heating_system| + hpxml_bldg.water_heating_systems.each do |water_heating_system| plant_loop = plantloop_map[water_heating_system.id] wuc = OpenStudio::Model::WaterUseConnections.new(model) wuc.additionalProperties.setFeature('HPXML_ID', water_heating_system.id) # Used by reporting measure @@ -47,16 +52,17 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, # Create schedule cw_power_schedule = nil cw_col_name = SchedulesFile::ColumnClothesWasher + cw_object_name = Constants.ObjectNameClothesWasher if not schedules_file.nil? cw_design_level_w = schedules_file.calc_design_level_from_daily_kwh(col_name: cw_col_name, daily_kwh: cw_annual_kwh / 365.0) - cw_power_schedule = schedules_file.create_schedule_file(col_name: cw_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) + cw_power_schedule = schedules_file.create_schedule_file(model, col_name: cw_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if cw_power_schedule.nil? cw_unavailable_periods = Schedule.get_unavailable_periods(runner, cw_col_name, unavailable_periods) cw_weekday_sch = clothes_washer.weekday_fractions cw_weekend_sch = clothes_washer.weekend_fractions cw_monthly_sch = clothes_washer.monthly_multipliers - cw_schedule_obj = MonthWeekdayWeekendSchedule.new(model, Constants.ObjectNameClothesWasher, cw_weekday_sch, cw_weekend_sch, cw_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: cw_unavailable_periods) + cw_schedule_obj = MonthWeekdayWeekendSchedule.new(model, cw_object_name + ' schedule', cw_weekday_sch, cw_weekend_sch, cw_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: cw_unavailable_periods) cw_design_level_w = cw_schedule_obj.calc_design_level_from_daily_kwh(cw_annual_kwh / 365.0) cw_power_schedule = cw_schedule_obj.schedule else @@ -66,8 +72,8 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, end cw_space = clothes_washer.additional_properties.space - cw_space = living_space if cw_space.nil? # appliance is outdoors, so we need to assign the equipment to an arbitrary space - add_electric_equipment(model, Constants.ObjectNameClothesWasher, cw_space, cw_design_level_w, cw_frac_sens, cw_frac_lat, cw_power_schedule) + cw_space = conditioned_space if cw_space.nil? # appliance is outdoors, so we need to assign the equipment to an arbitrary space + add_electric_equipment(model, cw_object_name, cw_space, cw_design_level_w, cw_frac_sens, cw_frac_lat, cw_power_schedule) end # Clothes dryer energy @@ -77,17 +83,18 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, # Create schedule cd_schedule = nil cd_col_name = SchedulesFile::ColumnClothesDryer + cd_obj_name = Constants.ObjectNameClothesDryer if not schedules_file.nil? cd_design_level_e = schedules_file.calc_design_level_from_annual_kwh(col_name: cd_col_name, annual_kwh: cd_annual_kwh) cd_design_level_f = schedules_file.calc_design_level_from_annual_therm(col_name: cd_col_name, annual_therm: cd_annual_therm) - cd_schedule = schedules_file.create_schedule_file(col_name: cd_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) + cd_schedule = schedules_file.create_schedule_file(model, col_name: cd_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if cd_schedule.nil? cd_unavailable_periods = Schedule.get_unavailable_periods(runner, cd_col_name, unavailable_periods) cd_weekday_sch = clothes_dryer.weekday_fractions cd_weekend_sch = clothes_dryer.weekend_fractions cd_monthly_sch = clothes_dryer.monthly_multipliers - cd_schedule_obj = MonthWeekdayWeekendSchedule.new(model, Constants.ObjectNameClothesDryer, cd_weekday_sch, cd_weekend_sch, cd_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: cd_unavailable_periods) + cd_schedule_obj = MonthWeekdayWeekendSchedule.new(model, cd_obj_name + ' schedule', cd_weekday_sch, cd_weekend_sch, cd_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: cd_unavailable_periods) cd_design_level_e = cd_schedule_obj.calc_design_level_from_daily_kwh(cd_annual_kwh / 365.0) cd_design_level_f = cd_schedule_obj.calc_design_level_from_daily_therm(cd_annual_therm / 365.0) cd_schedule = cd_schedule_obj.schedule @@ -98,9 +105,9 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, end cd_space = clothes_dryer.additional_properties.space - cd_space = living_space if cd_space.nil? # appliance is outdoors, so we need to assign the equipment to an arbitrary space - add_electric_equipment(model, Constants.ObjectNameClothesDryer, cd_space, cd_design_level_e, cd_frac_sens, cd_frac_lat, cd_schedule) - add_other_equipment(model, Constants.ObjectNameClothesDryer, cd_space, cd_design_level_f, cd_frac_sens, cd_frac_lat, cd_schedule, clothes_dryer.fuel_type) + cd_space = conditioned_space if cd_space.nil? # appliance is outdoors, so we need to assign the equipment to an arbitrary space + add_electric_equipment(model, cd_obj_name, cd_space, cd_design_level_e, cd_frac_sens, cd_frac_lat, cd_schedule) + add_other_equipment(model, cd_obj_name, cd_space, cd_design_level_f, cd_frac_sens, cd_frac_lat, cd_schedule, clothes_dryer.fuel_type) end # Dishwasher energy @@ -110,16 +117,17 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, # Create schedule dw_power_schedule = nil dw_col_name = SchedulesFile::ColumnDishwasher + dw_obj_name = Constants.ObjectNameDishwasher if not schedules_file.nil? dw_design_level_w = schedules_file.calc_design_level_from_daily_kwh(col_name: dw_col_name, daily_kwh: dw_annual_kwh / 365.0) - dw_power_schedule = schedules_file.create_schedule_file(col_name: dw_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) + dw_power_schedule = schedules_file.create_schedule_file(model, col_name: dw_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if dw_power_schedule.nil? dw_unavailable_periods = Schedule.get_unavailable_periods(runner, dw_col_name, unavailable_periods) dw_weekday_sch = dishwasher.weekday_fractions dw_weekend_sch = dishwasher.weekend_fractions dw_monthly_sch = dishwasher.monthly_multipliers - dw_schedule_obj = MonthWeekdayWeekendSchedule.new(model, Constants.ObjectNameDishwasher, dw_weekday_sch, dw_weekend_sch, dw_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: dw_unavailable_periods) + dw_schedule_obj = MonthWeekdayWeekendSchedule.new(model, dw_obj_name + ' schedule', dw_weekday_sch, dw_weekend_sch, dw_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: dw_unavailable_periods) dw_design_level_w = dw_schedule_obj.calc_design_level_from_daily_kwh(dw_annual_kwh / 365.0) dw_power_schedule = dw_schedule_obj.schedule else @@ -129,27 +137,28 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, end dw_space = dishwasher.additional_properties.space - dw_space = living_space if dw_space.nil? # appliance is outdoors, so we need to assign the equipment to an arbitrary space - add_electric_equipment(model, Constants.ObjectNameDishwasher, dw_space, dw_design_level_w, dw_frac_sens, dw_frac_lat, dw_power_schedule) + dw_space = conditioned_space if dw_space.nil? # appliance is outdoors, so we need to assign the equipment to an arbitrary space + add_electric_equipment(model, dw_obj_name, dw_space, dw_design_level_w, dw_frac_sens, dw_frac_lat, dw_power_schedule) end # Refrigerator(s) energy - hpxml.refrigerators.each do |refrigerator| + hpxml_bldg.refrigerators.each do |refrigerator| rf_annual_kwh, rf_frac_sens, rf_frac_lat = calc_refrigerator_or_freezer_energy(refrigerator, refrigerator.additional_properties.space.nil?) # Create schedule fridge_schedule = nil fridge_col_name = refrigerator.primary_indicator ? SchedulesFile::ColumnRefrigerator : SchedulesFile::ColumnExtraRefrigerator + fridge_obj_name = Constants.ObjectNameRefrigerator if not schedules_file.nil? fridge_design_level = schedules_file.calc_design_level_from_annual_kwh(col_name: fridge_col_name, annual_kwh: rf_annual_kwh) - fridge_schedule = schedules_file.create_schedule_file(col_name: fridge_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) + fridge_schedule = schedules_file.create_schedule_file(model, col_name: fridge_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if fridge_schedule.nil? fridge_unavailable_periods = Schedule.get_unavailable_periods(runner, fridge_col_name, unavailable_periods) fridge_weekday_sch = refrigerator.weekday_fractions fridge_weekend_sch = refrigerator.weekend_fractions fridge_monthly_sch = refrigerator.monthly_multipliers - fridge_schedule_obj = MonthWeekdayWeekendSchedule.new(model, Constants.ObjectNameRefrigerator, fridge_weekday_sch, fridge_weekend_sch, fridge_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: fridge_unavailable_periods) + fridge_schedule_obj = MonthWeekdayWeekendSchedule.new(model, fridge_obj_name + ' schedule', fridge_weekday_sch, fridge_weekend_sch, fridge_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: fridge_unavailable_periods) fridge_design_level = fridge_schedule_obj.calc_design_level_from_daily_kwh(rf_annual_kwh / 365.0) fridge_schedule = fridge_schedule_obj.schedule else @@ -159,27 +168,28 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, end rf_space = refrigerator.additional_properties.space - rf_space = living_space if rf_space.nil? # appliance is outdoors, so we need to assign the equipment to an arbitrary space - add_electric_equipment(model, Constants.ObjectNameRefrigerator, rf_space, fridge_design_level, rf_frac_sens, rf_frac_lat, fridge_schedule) + rf_space = conditioned_space if rf_space.nil? # appliance is outdoors, so we need to assign the equipment to an arbitrary space + add_electric_equipment(model, fridge_obj_name, rf_space, fridge_design_level, rf_frac_sens, rf_frac_lat, fridge_schedule) end # Freezer(s) energy - hpxml.freezers.each do |freezer| + hpxml_bldg.freezers.each do |freezer| fz_annual_kwh, fz_frac_sens, fz_frac_lat = calc_refrigerator_or_freezer_energy(freezer, freezer.additional_properties.space.nil?) # Create schedule freezer_schedule = nil freezer_col_name = SchedulesFile::ColumnFreezer + freezer_obj_name = Constants.ObjectNameFreezer if not schedules_file.nil? freezer_design_level = schedules_file.calc_design_level_from_annual_kwh(col_name: freezer_col_name, annual_kwh: fz_annual_kwh) - freezer_schedule = schedules_file.create_schedule_file(col_name: freezer_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) + freezer_schedule = schedules_file.create_schedule_file(model, col_name: freezer_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if freezer_schedule.nil? freezer_unavailable_periods = Schedule.get_unavailable_periods(runner, freezer_col_name, unavailable_periods) freezer_weekday_sch = freezer.weekday_fractions freezer_weekend_sch = freezer.weekend_fractions freezer_monthly_sch = freezer.monthly_multipliers - freezer_schedule_obj = MonthWeekdayWeekendSchedule.new(model, Constants.ObjectNameFreezer, freezer_weekday_sch, freezer_weekend_sch, freezer_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: freezer_unavailable_periods) + freezer_schedule_obj = MonthWeekdayWeekendSchedule.new(model, freezer_obj_name + ' schedule', freezer_weekday_sch, freezer_weekend_sch, freezer_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: freezer_unavailable_periods) freezer_design_level = freezer_schedule_obj.calc_design_level_from_daily_kwh(fz_annual_kwh / 365.0) freezer_schedule = freezer_schedule_obj.schedule else @@ -189,8 +199,8 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, end fz_space = freezer.additional_properties.space - fz_space = living_space if fz_space.nil? # appliance is outdoors, so we need to assign the equipment to an arbitrary space - add_electric_equipment(model, Constants.ObjectNameFreezer, fz_space, freezer_design_level, fz_frac_sens, fz_frac_lat, freezer_schedule) + fz_space = conditioned_space if fz_space.nil? # appliance is outdoors, so we need to assign the equipment to an arbitrary space + add_electric_equipment(model, freezer_obj_name, fz_space, freezer_design_level, fz_frac_sens, fz_frac_lat, freezer_schedule) end # Cooking Range energy @@ -200,17 +210,18 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, # Create schedule cook_schedule = nil cook_col_name = SchedulesFile::ColumnCookingRange + cook_obj_name = Constants.ObjectNameCookingRange if not schedules_file.nil? cook_design_level_e = schedules_file.calc_design_level_from_annual_kwh(col_name: cook_col_name, annual_kwh: cook_annual_kwh) cook_design_level_f = schedules_file.calc_design_level_from_annual_therm(col_name: cook_col_name, annual_therm: cook_annual_therm) - cook_schedule = schedules_file.create_schedule_file(col_name: cook_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) + cook_schedule = schedules_file.create_schedule_file(model, col_name: cook_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if cook_schedule.nil? cook_unavailable_periods = Schedule.get_unavailable_periods(runner, cook_col_name, unavailable_periods) cook_weekday_sch = cooking_range.weekday_fractions cook_weekend_sch = cooking_range.weekend_fractions cook_monthly_sch = cooking_range.monthly_multipliers - cook_schedule_obj = MonthWeekdayWeekendSchedule.new(model, Constants.ObjectNameCookingRange, cook_weekday_sch, cook_weekend_sch, cook_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: cook_unavailable_periods) + cook_schedule_obj = MonthWeekdayWeekendSchedule.new(model, cook_obj_name + ' schedule', cook_weekday_sch, cook_weekend_sch, cook_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: cook_unavailable_periods) cook_design_level_e = cook_schedule_obj.calc_design_level_from_daily_kwh(cook_annual_kwh / 365.0) cook_design_level_f = cook_schedule_obj.calc_design_level_from_daily_therm(cook_annual_therm / 365.0) cook_schedule = cook_schedule_obj.schedule @@ -221,36 +232,53 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, end cook_space = cooking_range.additional_properties.space - cook_space = living_space if cook_space.nil? # appliance is outdoors, so we need to assign the equipment to an arbitrary space - add_electric_equipment(model, Constants.ObjectNameCookingRange, cook_space, cook_design_level_e, cook_frac_sens, cook_frac_lat, cook_schedule) - add_other_equipment(model, Constants.ObjectNameCookingRange, cook_space, cook_design_level_f, cook_frac_sens, cook_frac_lat, cook_schedule, cooking_range.fuel_type) + cook_space = conditioned_space if cook_space.nil? # appliance is outdoors, so we need to assign the equipment to an arbitrary space + add_electric_equipment(model, cook_obj_name, cook_space, cook_design_level_e, cook_frac_sens, cook_frac_lat, cook_schedule) + add_other_equipment(model, cook_obj_name, cook_space, cook_design_level_f, cook_frac_sens, cook_frac_lat, cook_schedule, cooking_range.fuel_type) end if not hot_water_distribution.nil? - fixtures_all_low_flow = true - hpxml.water_fixtures.each do |water_fixture| - next unless [HPXML::WaterFixtureTypeShowerhead, HPXML::WaterFixtureTypeFaucet].include? water_fixture.water_fixture_type - - fixtures_all_low_flow = false if not water_fixture.low_flow + fixtures = hpxml_bldg.water_fixtures.select { |wf| [HPXML::WaterFixtureTypeShowerhead, HPXML::WaterFixtureTypeFaucet].include? wf.water_fixture_type } + if fixtures.size > 0 + if fixtures.any? { |wf| wf.count.nil? } + showerheads = fixtures.select { |wf| wf.water_fixture_type == HPXML::WaterFixtureTypeShowerhead } + if showerheads.size > 0 + frac_low_flow_showerheads = showerheads.select { |wf| wf.low_flow }.size / Float(showerheads.size) + else + frac_low_flow_showerheads = 0.0 + end + faucets = fixtures.select { |wf| wf.water_fixture_type == HPXML::WaterFixtureTypeFaucet } + if faucets.size > 0 + frac_low_flow_faucets = faucets.select { |wf| wf.low_flow }.size / Float(faucets.size) + else + frac_low_flow_faucets = 0.0 + end + frac_low_flow_fixtures = 0.4 * frac_low_flow_showerheads + 0.6 * frac_low_flow_faucets + else + num_wfs = fixtures.map { |wf| wf.count }.sum + num_low_flow_wfs = fixtures.select { |wf| wf.low_flow }.map { |wf| wf.count }.sum + frac_low_flow_fixtures = num_low_flow_wfs / num_wfs + end + else + frac_low_flow_fixtures = 0.0 end # Calculate mixed water fractions t_mix = 105.0 # F, Temperature of mixed water at fixtures avg_setpoint_temp = 0.0 # WH Setpoint: Weighted average by fraction DHW load served - hpxml.water_heating_systems.each do |water_heating_system| + hpxml_bldg.water_heating_systems.each do |water_heating_system| wh_setpoint = water_heating_system.temperature wh_setpoint = Waterheater.get_default_hot_water_temperature(eri_version) if wh_setpoint.nil? # using detailed schedules avg_setpoint_temp += wh_setpoint * water_heating_system.fraction_dhw_load_served end - daily_wh_inlet_temperatures = calc_water_heater_daily_inlet_temperatures(weather, nbeds, hot_water_distribution, fixtures_all_low_flow, - hpxml.header.sim_calendar_year) + daily_wh_inlet_temperatures = calc_water_heater_daily_inlet_temperatures(weather, nbeds, hot_water_distribution, frac_low_flow_fixtures) daily_wh_inlet_temperatures_c = daily_wh_inlet_temperatures.map { |t| UnitConversions.convert(t, 'F', 'C') } daily_mw_fractions = calc_mixed_water_daily_fractions(daily_wh_inlet_temperatures, avg_setpoint_temp, t_mix) # Schedules # Replace mains water temperature schedule with water heater inlet temperature schedule. # These are identical unless there is a DWHR. - start_date = OpenStudio::Date.new(OpenStudio::MonthOfYear.new(1), 1, hpxml.header.sim_calendar_year) + start_date = OpenStudio::Date.new(OpenStudio::MonthOfYear.new(1), 1, hpxml_header.sim_calendar_year) timestep_day = OpenStudio::Time.new(1, 0) time_series_tmains = OpenStudio::TimeSeries.new(start_date, timestep_day, OpenStudio::createVector(daily_wh_inlet_temperatures_c), 'C') schedule_tmains = OpenStudio::Model::ScheduleInterval.fromTimeSeries(time_series_tmains, model).get @@ -264,31 +292,32 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, # Create schedule fixtures_schedule = nil fixtures_col_name = SchedulesFile::ColumnHotWaterFixtures + fixtures_obj_name = Constants.ObjectNameFixtures if not schedules_file.nil? - fixtures_schedule = schedules_file.create_schedule_file(col_name: fixtures_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) + fixtures_schedule = schedules_file.create_schedule_file(model, col_name: fixtures_col_name, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if fixtures_schedule.nil? fixtures_unavailable_periods = Schedule.get_unavailable_periods(runner, fixtures_col_name, unavailable_periods) - fixtures_weekday_sch = hpxml.water_heating.water_fixtures_weekday_fractions - fixtures_weekend_sch = hpxml.water_heating.water_fixtures_weekend_fractions - fixtures_monthly_sch = hpxml.water_heating.water_fixtures_monthly_multipliers - fixtures_schedule_obj = MonthWeekdayWeekendSchedule.new(model, Constants.ObjectNameFixtures, fixtures_weekday_sch, fixtures_weekend_sch, fixtures_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: fixtures_unavailable_periods) + fixtures_weekday_sch = hpxml_bldg.water_heating.water_fixtures_weekday_fractions + fixtures_weekend_sch = hpxml_bldg.water_heating.water_fixtures_weekend_fractions + fixtures_monthly_sch = hpxml_bldg.water_heating.water_fixtures_monthly_multipliers + fixtures_schedule_obj = MonthWeekdayWeekendSchedule.new(model, fixtures_obj_name + ' schedule', fixtures_weekday_sch, fixtures_weekend_sch, fixtures_monthly_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: fixtures_unavailable_periods) fixtures_schedule = fixtures_schedule_obj.schedule else - runner.registerWarning("Both '#{fixtures_col_name}' schedule file and weekday fractions provided; the latter will be ignored.") if !hpxml.water_heating.water_fixtures_weekday_fractions.nil? - runner.registerWarning("Both '#{fixtures_col_name}' schedule file and weekend fractions provided; the latter will be ignored.") if !hpxml.water_heating.water_fixtures_weekend_fractions.nil? - runner.registerWarning("Both '#{fixtures_col_name}' schedule file and monthly multipliers provided; the latter will be ignored.") if !hpxml.water_heating.water_fixtures_monthly_multipliers.nil? + runner.registerWarning("Both '#{fixtures_col_name}' schedule file and weekday fractions provided; the latter will be ignored.") if !hpxml_bldg.water_heating.water_fixtures_weekday_fractions.nil? + runner.registerWarning("Both '#{fixtures_col_name}' schedule file and weekend fractions provided; the latter will be ignored.") if !hpxml_bldg.water_heating.water_fixtures_weekend_fractions.nil? + runner.registerWarning("Both '#{fixtures_col_name}' schedule file and monthly multipliers provided; the latter will be ignored.") if !hpxml_bldg.water_heating.water_fixtures_monthly_multipliers.nil? end end - hpxml.water_heating_systems.each do |water_heating_system| + hpxml_bldg.water_heating_systems.each do |water_heating_system| non_solar_fraction = 1.0 - Waterheater.get_water_heater_solar_fraction(water_heating_system, solar_thermal_system) gpd_frac = water_heating_system.fraction_dhw_load_served # Fixtures fraction if gpd_frac > 0 - fx_gpd = get_fixtures_gpd(eri_version, nbeds, fixtures_all_low_flow, daily_mw_fractions, fixtures_usage_multiplier) - w_gpd = get_dist_waste_gpd(eri_version, nbeds, has_uncond_bsmnt, cfa, ncfl, hot_water_distribution, fixtures_all_low_flow, fixtures_usage_multiplier) + fx_gpd = get_fixtures_gpd(eri_version, nbeds, frac_low_flow_fixtures, daily_mw_fractions, fixtures_usage_multiplier) + w_gpd = get_dist_waste_gpd(eri_version, nbeds, has_uncond_bsmnt, cfa, ncfl, hot_water_distribution, frac_low_flow_fixtures, fixtures_usage_multiplier) fx_peak_flow = nil if not schedules_file.nil? @@ -301,10 +330,11 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, end # Fixtures (showers, sinks, baths) - add_water_use_equipment(model, Constants.ObjectNameFixtures, fx_peak_flow * gpd_frac * non_solar_fraction, fixtures_schedule, water_use_connections[water_heating_system.id], mw_temp_schedule) + add_water_use_equipment(model, fixtures_obj_name, fx_peak_flow * gpd_frac * non_solar_fraction, fixtures_schedule, water_use_connections[water_heating_system.id], unit_multiplier, mw_temp_schedule) # Distribution waste (primary driven by fixture draws) - add_water_use_equipment(model, Constants.ObjectNameDistributionWaste, dist_water_peak_flow * gpd_frac * non_solar_fraction, fixtures_schedule, water_use_connections[water_heating_system.id], mw_temp_schedule) + waste_obj_name = Constants.ObjectNameDistributionWaste + add_water_use_equipment(model, waste_obj_name, dist_water_peak_flow * gpd_frac * non_solar_fraction, fixtures_schedule, water_use_connections[water_heating_system.id], unit_multiplier, mw_temp_schedule) # Recirculation pump dist_pump_annual_kwh = get_hwdist_recirc_pump_energy(hot_water_distribution, fixtures_usage_multiplier) @@ -315,8 +345,9 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, if dist_pump_design_level.nil? dist_pump_design_level = fixtures_schedule_obj.calc_design_level_from_daily_kwh(dist_pump_annual_kwh / 365.0) end - dist_pump = add_electric_equipment(model, Constants.ObjectNameHotWaterRecircPump, living_space, dist_pump_design_level * gpd_frac, 0.0, 0.0, fixtures_schedule) - if not dist_pump.nil? + if dist_pump_design_level * gpd_frac != 0 + cnt = model.getElectricEquipments.select { |e| e.endUseSubcategory.start_with? Constants.ObjectNameHotWaterRecircPump }.size # Ensure unique meter for each water heater + dist_pump = add_electric_equipment(model, "#{Constants.ObjectNameHotWaterRecircPump}#{cnt + 1}", conditioned_space, dist_pump_design_level * gpd_frac, 0.0, 0.0, fixtures_schedule) dist_pump.additionalProperties.setFeature('HPXML_ID', water_heating_system.id) # Used by reporting measure end end @@ -326,7 +357,7 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, if not clothes_washer.nil? gpd_frac = nil if clothes_washer.is_shared_appliance && (not clothes_washer.hot_water_distribution.nil?) - gpd_frac = 1.0 / hpxml.water_heating_systems.size # Apportion load to each water heater on distribution system + gpd_frac = 1.0 / hpxml_bldg.water_heating_systems.size # Apportion load to each water heater on distribution system elsif clothes_washer.is_shared_appliance && clothes_washer.water_heating_system.id == water_heating_system.id gpd_frac = 1.0 # Shared water heater sees full appliance load elsif not clothes_washer.is_shared_appliance @@ -337,40 +368,40 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, water_cw_schedule = nil if not schedules_file.nil? cw_peak_flow = schedules_file.calc_peak_flow_from_daily_gpm(col_name: SchedulesFile::ColumnHotWaterClothesWasher, daily_water: cw_gpd) - water_cw_schedule = schedules_file.create_schedule_file(col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) + water_cw_schedule = schedules_file.create_schedule_file(model, col_name: SchedulesFile::ColumnHotWaterClothesWasher, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if water_cw_schedule.nil? cw_peak_flow = cw_schedule_obj.calc_design_level_from_daily_gpm(cw_gpd) water_cw_schedule = cw_schedule_obj.schedule end - add_water_use_equipment(model, Constants.ObjectNameClothesWasher, cw_peak_flow * gpd_frac * non_solar_fraction, water_cw_schedule, water_use_connections[water_heating_system.id]) + add_water_use_equipment(model, cw_object_name, cw_peak_flow * gpd_frac * non_solar_fraction, water_cw_schedule, water_use_connections[water_heating_system.id], unit_multiplier) end end # Dishwasher - next unless not dishwasher.nil? + next if dishwasher.nil? gpd_frac = nil if dishwasher.is_shared_appliance && (not dishwasher.hot_water_distribution.nil?) - gpd_frac = 1.0 / hpxml.water_heating_systems.size # Apportion load to each water heater on distribution system + gpd_frac = 1.0 / hpxml_bldg.water_heating_systems.size # Apportion load to each water heater on distribution system elsif dishwasher.is_shared_appliance && dishwasher.water_heating_system.id == water_heating_system.id gpd_frac = 1.0 # Shared water heater sees full appliance load elsif not dishwasher.is_shared_appliance gpd_frac = water_heating_system.fraction_dhw_load_served end - next unless not gpd_frac.nil? + next if gpd_frac.nil? # Create schedule water_dw_schedule = nil if not schedules_file.nil? dw_peak_flow = schedules_file.calc_peak_flow_from_daily_gpm(col_name: SchedulesFile::ColumnHotWaterDishwasher, daily_water: dw_gpd) - water_dw_schedule = schedules_file.create_schedule_file(col_name: SchedulesFile::ColumnHotWaterDishwasher, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) + water_dw_schedule = schedules_file.create_schedule_file(model, col_name: SchedulesFile::ColumnHotWaterDishwasher, schedule_type_limits_name: Constants.ScheduleTypeLimitsFraction) end if water_dw_schedule.nil? dw_peak_flow = dw_schedule_obj.calc_design_level_from_daily_gpm(dw_gpd) water_dw_schedule = dw_schedule_obj.schedule end - add_water_use_equipment(model, Constants.ObjectNameDishwasher, dw_peak_flow * gpd_frac * non_solar_fraction, water_dw_schedule, water_use_connections[water_heating_system.id]) + add_water_use_equipment(model, dw_obj_name, dw_peak_flow * gpd_frac * non_solar_fraction, water_dw_schedule, water_use_connections[water_heating_system.id], unit_multiplier) end if not hot_water_distribution.nil? @@ -386,8 +417,8 @@ def self.apply(model, runner, hpxml, weather, spaces, hot_water_distribution, water_design_level_sens = fixtures_schedule_obj.calc_design_level_from_daily_kwh(UnitConversions.convert(water_sens_btu, 'Btu', 'kWh') / 365.0) water_design_level_lat = fixtures_schedule_obj.calc_design_level_from_daily_kwh(UnitConversions.convert(water_lat_btu, 'Btu', 'kWh') / 365.0) end - add_other_equipment(model, Constants.ObjectNameWaterSensible, living_space, water_design_level_sens, 1.0, 0.0, fixtures_schedule, nil) - add_other_equipment(model, Constants.ObjectNameWaterLatent, living_space, water_design_level_lat, 0.0, 1.0, fixtures_schedule, nil) + add_other_equipment(model, Constants.ObjectNameWaterSensible, conditioned_space, water_design_level_sens, 1.0, 0.0, fixtures_schedule, nil) + add_other_equipment(model, Constants.ObjectNameWaterLatent, conditioned_space, water_design_level_lat, 0.0, 1.0, fixtures_schedule, nil) end end @@ -809,12 +840,13 @@ def self.add_other_equipment(model, obj_name, space, design_level_w, frac_sens, return oe end - def self.add_water_use_equipment(model, obj_name, peak_flow, schedule, water_use_connections, mw_temp_schedule = nil) + def self.add_water_use_equipment(model, obj_name, peak_flow, schedule, water_use_connections, unit_multiplier, mw_temp_schedule = nil) wu_def = OpenStudio::Model::WaterUseEquipmentDefinition.new(model) wu = OpenStudio::Model::WaterUseEquipment.new(wu_def) wu.setName(obj_name) wu_def.setName(obj_name) - wu_def.setPeakFlowRate(peak_flow) + # Not in a thermal zone, so needs to be explicitly multiplied + wu_def.setPeakFlowRate(peak_flow * unit_multiplier) wu_def.setEndUseSubcategory(obj_name) wu.setFlowRateFractionSchedule(schedule) if not mw_temp_schedule.nil? @@ -825,15 +857,12 @@ def self.add_water_use_equipment(model, obj_name, peak_flow, schedule, water_use return wu end - def self.get_dwhr_factors(nbeds, hot_water_distribution, fixtures_all_low_flow) + def self.get_dwhr_factors(nbeds, hot_water_distribution, frac_low_flow_fixtures) # ANSI/RESNET 301-2014 Addendum A-2015 # Amendment on Domestic Hot Water (DHW) Systems # Eq. 4.2-14 - eff_adj = 1.0 - if fixtures_all_low_flow - eff_adj = 1.082 - end + eff_adj = 1.0 + 0.082 * frac_low_flow_fixtures iFrac = 0.56 + 0.015 * nbeds - 0.0004 * nbeds**2 # fraction of hot water use impacted by DWHR @@ -861,23 +890,18 @@ def self.get_dwhr_factors(nbeds, hot_water_distribution, fixtures_all_low_flow) return eff_adj, iFrac, plc, locF, fixF end - def self.calc_water_heater_daily_inlet_temperatures(weather, nbeds, hot_water_distribution, fixtures_all_low_flow, year) - # Get daily mains temperatures - avgOAT = weather.data.AnnualAvgDrybulb - maxDiffMonthlyAvgOAT = weather.data.MonthlyAvgDrybulbs.max - weather.data.MonthlyAvgDrybulbs.min - tmains_daily = WeatherProcess.calc_mains_temperatures(avgOAT, maxDiffMonthlyAvgOAT, weather.header.Latitude, year)[2] - - wh_temps_daily = tmains_daily + def self.calc_water_heater_daily_inlet_temperatures(weather, nbeds, hot_water_distribution, frac_low_flow_fixtures) + wh_temps_daily = weather.data.MainsDailyTemps.dup if (not hot_water_distribution.dwhr_efficiency.nil?) - dwhr_eff_adj, dwhr_iFrac, dwhr_plc, dwhr_locF, dwhr_fixF = get_dwhr_factors(nbeds, hot_water_distribution, fixtures_all_low_flow) + dwhr_eff_adj, dwhr_iFrac, dwhr_plc, dwhr_locF, dwhr_fixF = get_dwhr_factors(nbeds, hot_water_distribution, frac_low_flow_fixtures) # Adjust inlet temperatures dwhr_inT = 97.0 # F - for day in 0..tmains_daily.size - 1 - dwhr_WHinTadj = dwhr_iFrac * (dwhr_inT - tmains_daily[day]) * hot_water_distribution.dwhr_efficiency * dwhr_eff_adj * dwhr_plc * dwhr_locF * dwhr_fixF + for day in 0..wh_temps_daily.size - 1 + dwhr_WHinTadj = dwhr_iFrac * (dwhr_inT - wh_temps_daily[day]) * hot_water_distribution.dwhr_efficiency * dwhr_eff_adj * dwhr_plc * dwhr_locF * dwhr_fixF wh_temps_daily[day] = (wh_temps_daily[day] + dwhr_WHinTadj).round(3) end else - for day in 0..tmains_daily.size - 1 + for day in 0..wh_temps_daily.size - 1 wh_temps_daily[day] = (wh_temps_daily[day]).round(3) end end @@ -939,12 +963,12 @@ def self.get_hwdist_recirc_pump_energy(hot_water_distribution, fixtures_usage_mu return dist_pump_annual_kwh end - def self.get_fixtures_effectiveness(fixtures_all_low_flow) - f_eff = fixtures_all_low_flow ? 0.95 : 1.0 + def self.get_fixtures_effectiveness(frac_low_flow_fixtures) + f_eff = 1.0 - 0.05 * frac_low_flow_fixtures return f_eff end - def self.get_fixtures_gpd(eri_version, nbeds, fixtures_all_low_flow, daily_mw_fractions, fixtures_usage_multiplier = 1.0) + def self.get_fixtures_gpd(eri_version, nbeds, frac_low_flow_fixtures, daily_mw_fractions, fixtures_usage_multiplier = 1.0) if nbeds < 0.0 return 0.0 end @@ -959,7 +983,7 @@ def self.get_fixtures_gpd(eri_version, nbeds, fixtures_all_low_flow, daily_mw_fr # ANSI/RESNET 301-2014 Addendum A-2015 # Amendment on Domestic Hot Water (DHW) Systems ref_f_gpd = 14.6 + 10.0 * nbeds # Eq. 4.2-2 (refFgpd) - f_eff = get_fixtures_effectiveness(fixtures_all_low_flow) + f_eff = get_fixtures_effectiveness(frac_low_flow_fixtures) return f_eff * ref_f_gpd * fixtures_usage_multiplier end @@ -972,7 +996,7 @@ def self.get_water_gains_sens_lat(nbeds, fixtures_usage_multiplier = 1.0) end def self.get_dist_waste_gpd(eri_version, nbeds, has_uncond_bsmnt, cfa, ncfl, hot_water_distribution, - fixtures_all_low_flow, fixtures_usage_multiplier = 1.0) + frac_low_flow_fixtures, fixtures_usage_multiplier = 1.0) if (Constants.ERIVersions.index(eri_version) <= Constants.ERIVersions.index('2014')) || (nbeds < 0.0) return 0.0 end @@ -1014,7 +1038,7 @@ def self.get_dist_waste_gpd(eri_version, nbeds, has_uncond_bsmnt, cfa, ncfl, hot wd_eff = 1.0 end - f_eff = get_fixtures_effectiveness(fixtures_all_low_flow) + f_eff = get_fixtures_effectiveness(frac_low_flow_fixtures) mw_gpd = f_eff * (o_w_gpd + s_w_gpd * wd_eff) # Eq. 4.2-11 @@ -1062,15 +1086,15 @@ def self.get_dist_energy_waste_factor(hot_water_distribution) fail 'Unexpected hot water distribution system.' end - def self.get_default_extra_refrigerator_and_freezer_locations(hpxml) + def self.get_default_extra_refrigerator_and_freezer_locations(hpxml_bldg) extra_refrigerator_location_hierarchy = [HPXML::LocationGarage, HPXML::LocationBasementUnconditioned, HPXML::LocationBasementConditioned, - HPXML::LocationLivingSpace] + HPXML::LocationConditionedSpace] extra_refrigerator_location = nil extra_refrigerator_location_hierarchy.each do |location| - if hpxml.has_location(location) + if hpxml_bldg.has_location(location) extra_refrigerator_location = location break end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb index 4737a1ac..7167aaa0 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require 'ostruct' @@ -40,7 +45,7 @@ hpxml.walls[-1].area = 1000 # Write file -XMLHelper.write_file(hpxml.to_oga, "out.xml") +XMLHelper.write_file(hpxml.to_doc, "out.xml") ''' @@ -48,21 +53,14 @@ # E.g., in class Window, :wall_idref => :wall class HPXML < Object - HPXML_ATTRS = [:header, :site, :neighbor_buildings, :building_occupancy, :building_construction, - :climate_and_risk_zones, :air_infiltration, :air_infiltration_measurements, :attics, - :foundations, :roofs, :rim_joists, :walls, :foundation_walls, :floors, :slabs, :windows, - :skylights, :doors, :partition_wall_mass, :furniture_mass, :heating_systems, - :cooling_systems, :heat_pumps, :hvac_plant, :hvac_controls, :hvac_distributions, - :ventilation_fans, :water_heating_systems, :hot_water_distributions, :water_fixtures, - :water_heating, :solar_thermal_systems, :pv_systems, :inverters, :generators, - :batteries, :clothes_washers, :clothes_dryers, :dishwashers, :refrigerators, - :freezers, :dehumidifiers, :cooking_ranges, :ovens, :lighting_groups, :lighting, - :ceiling_fans, :pools, :hot_tubs, :plug_loads, :fuel_loads] + HPXML_ATTRS = [:header, :buildings] attr_reader(*HPXML_ATTRS, :doc, :errors, :warnings, :hpxml_path) - NameSpace = 'http://hpxmlonline.com/2019/10' + NameSpace = 'http://hpxmlonline.com/2023/09' # Constants + FuelElementNames = ['HeatingSystemFuel', 'CoolingSystemFuel', 'HeatPumpFuel', 'BackupSystemFuel', 'FuelType', 'IntegratedHeatingSystemFuel', 'Heater/Type'] + # FUTURE: Move some of these to within child classes (e.g., HPXML::Attic class) AirTypeFanCoil = 'fan coil' AirTypeGravity = 'gravity' @@ -80,6 +78,8 @@ class HPXML < Object BatteryLifetimeModelNone = 'None' BatteryLifetimeModelKandlerSmith = 'KandlerSmith' BuildingAmerica = 'BuildingAmerica' + CapacityDescriptionMinimum = 'minimum' + CapacityDescriptionMaximum = 'maximum' CertificationEnergyStar = 'Energy Star' ClothesDryerControlTypeMoisture = 'moisture' ClothesDryerControlTypeTimer = 'timer' @@ -120,6 +120,7 @@ class HPXML < Object FoundationTypeCrawlspaceConditioned = 'ConditionedCrawlspace' FoundationTypeCrawlspaceUnvented = 'UnventedCrawlspace' FoundationTypeCrawlspaceVented = 'VentedCrawlspace' + FoundationTypeBellyAndWing = 'BellyAndWing' FoundationTypeSlab = 'SlabOnGrade' FoundationWallTypeConcreteBlock = 'concrete block' FoundationWallTypeConcreteBlockFoamCore = 'concrete block foam core' @@ -135,9 +136,10 @@ class HPXML < Object FloorTypeSIP = 'StructuralInsulatedPanel' FloorTypeSteelFrame = 'SteelFrame' FloorTypeConcrete = 'SolidConcrete' + FuelLoadTypeFireplace = 'fireplace' FuelLoadTypeGrill = 'grill' FuelLoadTypeLighting = 'lighting' - FuelLoadTypeFireplace = 'fireplace' + FuelLoadTypeOther = 'other' FuelTypeCoal = 'coal' FuelTypeCoalAnthracite = 'anthracite coal' FuelTypeCoalBituminous = 'bituminous coal' @@ -179,7 +181,6 @@ class HPXML < Object HVACTypeElectricResistance = 'ElectricResistance' HVACTypeEvaporativeCooler = 'evaporative cooler' HVACTypeFireplace = 'Fireplace' - HVACTypeFixedHeater = 'FixedHeater' HVACTypeFloorFurnace = 'FloorFurnace' HVACTypeFurnace = 'Furnace' HVACTypeHeatPumpAirToAir = 'air-to-air' @@ -189,9 +190,9 @@ class HPXML < Object HVACTypeHeatPumpPTHP = 'packaged terminal heat pump' HVACTypeHeatPumpRoom = 'room air conditioner with reverse cycle' HVACTypeMiniSplitAirConditioner = 'mini-split' - HVACTypePortableHeater = 'PortableHeater' - HVACTypeRoomAirConditioner = 'room air conditioner' HVACTypePTAC = 'packaged terminal air conditioner' + HVACTypeRoomAirConditioner = 'room air conditioner' + HVACTypeSpaceHeater = 'SpaceHeater' HVACTypeStove = 'Stove' HVACTypeWallFurnace = 'WallFurnace' HydronicTypeBaseboard = 'baseboard' @@ -211,12 +212,15 @@ class HPXML < Object LightingTypeCFL = 'CompactFluorescent' LightingTypeLED = 'LightEmittingDiode' LightingTypeLFL = 'FluorescentTube' + LocationAttic = 'attic' LocationAtticUnconditioned = 'attic - unconditioned' LocationAtticUnvented = 'attic - unvented' LocationAtticVented = 'attic - vented' LocationBasementConditioned = 'basement - conditioned' LocationBasementUnconditioned = 'basement - unconditioned' LocationBath = 'bath' + LocationConditionedSpace = 'conditioned space' + LocationCrawlspace = 'crawlspace' LocationCrawlspaceConditioned = 'crawlspace - conditioned' LocationCrawlspaceUnvented = 'crawlspace - unvented' LocationCrawlspaceVented = 'crawlspace - vented' @@ -226,7 +230,8 @@ class HPXML < Object LocationGround = 'ground' LocationInterior = 'interior' LocationKitchen = 'kitchen' - LocationLivingSpace = 'living space' + LocationManufacturedHomeBelly = 'manufactured home belly' + LocationManufacturedHomeUnderBelly = 'manufactured home underbelly' LocationOtherExterior = 'other exterior' LocationOtherHousingUnit = 'other housing unit' LocationOtherHeatedSpace = 'other heated space' @@ -251,9 +256,16 @@ class HPXML < Object OrientationSoutheast = 'southeast' OrientationSouthwest = 'southwest' OrientationWest = 'west' + PlugLoadTypeAquarium = 'aquarium' + PlugLoadTypeComputer = 'computer' PlugLoadTypeElectricVehicleCharging = 'electric vehicle charging' PlugLoadTypeOther = 'other' + PlugLoadTypeSauna = 'sauna' + PlugLoadTypeSpaceHeater = 'space heater' PlugLoadTypeTelevision = 'TV other' + PlugLoadTypeTelevisionCRT = 'TV CRT' + PlugLoadTypeTelevisionPlasma = 'TV plasma' + PlugLoadTypeWaterBed = 'water bed' PlugLoadTypeWellPump = 'well pump' PVAnnualExcessSellbackRateTypeRetailElectricityCost = 'Retail Electricity Cost' PVAnnualExcessSellbackRateTypeUserSpecified = 'User-Specified' @@ -400,14 +412,13 @@ class HPXML < Object WindowClassLightCommercial = 'light commercial' def initialize(hpxml_path: nil, schema_validator: nil, schematron_validator: nil, building_id: nil) - @doc = nil @hpxml_path = hpxml_path @errors = [] @warnings = [] - hpxml = nil + hpxml_doc = nil if not hpxml_path.nil? - @doc = XMLHelper.parse_file(hpxml_path) + doc = XMLHelper.parse_file(hpxml_path) # Validate against XSD schema if not schema_validator.nil? @@ -418,38 +429,38 @@ def initialize(hpxml_path: nil, schema_validator: nil, schematron_validator: nil end # Check HPXML version - hpxml = XMLHelper.get_element(@doc, '/HPXML') - Version.check_hpxml_version(XMLHelper.get_attribute_value(hpxml, 'schemaVersion')) + hpxml_doc = XMLHelper.get_element(doc, '/HPXML') + Version.check_hpxml_version(XMLHelper.get_attribute_value(hpxml_doc, 'schemaVersion')) # Handle multiple buildings # Do this before schematron validation so that: # 1. We don't give schematron warnings for Building elements that are not of interest. # 2. The schematron validation occurs faster (as we're only validating one Building). - if XMLHelper.get_elements(hpxml, 'Building').size > 1 + if (XMLHelper.get_elements(hpxml_doc, 'Building').size > 1) && (building_id.to_s.downcase != 'all') if building_id.nil? @errors << 'Multiple Building elements defined in HPXML file; Building ID argument must be provided.' return unless @errors.empty? end # Discard all Building elements except the one of interest - XMLHelper.get_elements(hpxml, 'Building').reverse_each do |building| + XMLHelper.get_elements(hpxml_doc, 'Building').reverse_each do |building| next if XMLHelper.get_attribute_value(XMLHelper.get_element(building, 'BuildingID'), 'id') == building_id building.remove end - if XMLHelper.get_elements(hpxml, 'Building').size == 0 + if XMLHelper.get_elements(hpxml_doc, 'Building').size == 0 @errors << "Could not find Building element with ID '#{building_id}'." return unless @errors.empty? end # Write new HPXML file with all other Building elements removed hpxml_path = Tempfile.new(['hpxml', '.xml']).path.to_s - XMLHelper.write_file(hpxml, hpxml_path) + XMLHelper.write_file(hpxml_doc, hpxml_path) end # Validate against Schematron if not schematron_validator.nil? - sct_errors, sct_warnings = XMLValidator.validate_against_schematron(hpxml_path, schematron_validator, hpxml) + sct_errors, sct_warnings = XMLValidator.validate_against_schematron(hpxml_path, schematron_validator, hpxml_doc) @errors += sct_errors @warnings += sct_warnings return unless @errors.empty? @@ -457,367 +468,73 @@ def initialize(hpxml_path: nil, schema_validator: nil, schematron_validator: nil end # Create/populate child objects - from_oga(hpxml) + from_doc(hpxml_doc) # Check for additional errors (those hard to check via Schematron) - @errors += check_for_errors() - return unless @errors.empty? - end - - def hvac_systems - return (@heating_systems + @cooling_systems + @heat_pumps) - end - - def has_location(location) - # Search for surfaces attached to this location - (@roofs + @rim_joists + @walls + @foundation_walls + @floors + @slabs).each do |surface| - return true if surface.interior_adjacent_to == location - return true if surface.exterior_adjacent_to == location - end - return false - end - - def has_fuel_access - @site.fuels.each do |fuel| - if fuel != FuelTypeElectricity - return true - end - end - return false - end - - def has_fuel(fuel, hpxml_doc = nil) - # If calling multiple times, pass in hpxml_doc for better performance - if hpxml_doc.nil? - hpxml_doc = to_oga + @errors += header.check_for_errors + @buildings.each do |_building| + @errors += buildings.check_for_errors() end - ['HeatingSystemFuel', - 'CoolingSystemFuel', - 'HeatPumpFuel', - 'BackupSystemFuel', - 'FuelType', - 'IntegratedHeatingSystemFuel'].each do |fuel_name| - if XMLHelper.has_element(hpxml_doc, "//#{fuel_name}[text() = '#{fuel}']") - return true - end - end - - return false - end - - def predominant_heating_fuel - fuel_fracs = {} - @heating_systems.each do |heating_system| - fuel = heating_system.heating_system_fuel - fuel_fracs[fuel] = 0.0 if fuel_fracs[fuel].nil? - fuel_fracs[fuel] += heating_system.fraction_heat_load_served.to_f - end - @heat_pumps.each do |heat_pump| - fuel = heat_pump.heat_pump_fuel - fuel_fracs[fuel] = 0.0 if fuel_fracs[fuel].nil? - fuel_fracs[fuel] += heat_pump.fraction_heat_load_served.to_f - end - return FuelTypeElectricity if fuel_fracs.empty? - return FuelTypeElectricity if fuel_fracs[FuelTypeElectricity].to_f > 0.5 - - # Choose fossil fuel - fuel_fracs.delete FuelTypeElectricity - return fuel_fracs.key(fuel_fracs.values.max) - end - - def predominant_water_heating_fuel - fuel_fracs = {} - @water_heating_systems.each do |water_heating_system| - fuel = water_heating_system.fuel_type - if fuel.nil? # Combi boiler - fuel = water_heating_system.related_hvac_system.heating_system_fuel - end - fuel_fracs[fuel] = 0.0 if fuel_fracs[fuel].nil? - fuel_fracs[fuel] += water_heating_system.fraction_dhw_load_served - end - return FuelTypeElectricity if fuel_fracs.empty? - return FuelTypeElectricity if fuel_fracs[FuelTypeElectricity].to_f > 0.5 - - # Choose fossil fuel - fuel_fracs.delete FuelTypeElectricity - return fuel_fracs.key(fuel_fracs.values.max) - end - - def fraction_of_windows_operable() - # Calculates the fraction of windows that are operable. - # Since we don't have count available, we use area as an approximation. - window_area_total = @windows.map { |w| w.area }.sum(0.0) - window_area_operable = @windows.map { |w| w.fraction_operable * w.area }.sum(0.0) - if window_area_total <= 0 - return 0.0 - end - - return window_area_operable / window_area_total - end - - def primary_hvac_systems() - return hvac_systems.select { |h| h.primary_system } + @errors.map! { |e| "#{hpxml_path}: #{e}" } + return unless @errors.empty? end - def total_fraction_cool_load_served() - return @cooling_systems.total_fraction_cool_load_served + @heat_pumps.total_fraction_cool_load_served + def to_doc() + doc = _create_hpxml_document() + @header.to_doc(doc) + @buildings.to_doc(doc) + return doc end - def total_fraction_heat_load_served() - return @heating_systems.total_fraction_heat_load_served + @heat_pumps.total_fraction_heat_load_served + @cooling_systems.total_fraction_heat_load_served + def from_doc(hpxml) + @header = Header.new(self, hpxml) + @buildings = Buildings.new(self, hpxml) end - def has_walkout_basement() - has_conditioned_basement = has_location(LocationBasementConditioned) - ncfl = @building_construction.number_of_conditioned_floors - ncfl_ag = @building_construction.number_of_conditioned_floors_above_grade - return (has_conditioned_basement && (ncfl == ncfl_ag)) - end + def set_unique_hpxml_ids(hpxml_doc, last_building_only = false) + buildings = XMLHelper.get_elements(hpxml_doc, '/HPXML/Building') - def thermal_boundary_wall_areas() - above_grade_area = 0.0 # Thermal boundary walls not in contact with soil - below_grade_area = 0.0 # Thermal boundary walls in contact with soil + # Make all IDs unique so the HPXML is valid + buildings.each_with_index do |building, i| + next if last_building_only && (i != buildings.size - 1) - (@walls + @rim_joists).each do |wall| - if wall.is_thermal_boundary - above_grade_area += wall.area - end - end - - @foundation_walls.each do |foundation_wall| - next unless foundation_wall.is_thermal_boundary + bldg_no = "_#{i + 1}" + building.each_node do |node| + next unless node.is_a?(Oga::XML::Element) - height = foundation_wall.height - bg_depth = foundation_wall.depth_below_grade - above_grade_area += (height - bg_depth) / height * foundation_wall.area - below_grade_area += bg_depth / height * foundation_wall.area - end - - return above_grade_area, below_grade_area - end - - def common_wall_area() - # Wall area for walls adjacent to Unrated Conditioned Space, not including - # foundation walls. - area = 0.0 - - (@walls + @rim_joists).each do |wall| - next unless HPXML::conditioned_locations_this_unit.include? wall.interior_adjacent_to - - if wall.exterior_adjacent_to == HPXML::LocationOtherHousingUnit - area += wall.area - elsif wall.exterior_adjacent_to == wall.interior_adjacent_to - area += wall.area + if not XMLHelper.get_attribute_value(node, 'id').nil? + XMLHelper.add_attribute(node, 'id', "#{XMLHelper.get_attribute_value(node, 'id')}#{bldg_no}") + elsif not XMLHelper.get_attribute_value(node, 'idref').nil? + XMLHelper.add_attribute(node, 'idref', "#{XMLHelper.get_attribute_value(node, 'idref')}#{bldg_no}") + end end end - - return area end - def compartmentalization_boundary_areas() - # Returns the infiltration compartmentalization boundary areas - total_area = 0.0 # Total surface area that bounds the Infiltration Volume - exterior_area = 0.0 # Same as above excluding surfaces attached to garage, other housing units, or other multifamily spaces (see 301-2019 Addendum B) - - # Determine which spaces are within infiltration volume - spaces_within_infil_volume = HPXML::conditioned_locations_this_unit - @attics.each do |attic| - next unless [AtticTypeUnvented].include? attic.attic_type - next unless attic.within_infiltration_volume - - spaces_within_infil_volume << attic.to_location - end - @foundations.each do |foundation| - next unless [FoundationTypeBasementUnconditioned, - FoundationTypeCrawlspaceUnvented].include? foundation.foundation_type - next unless foundation.within_infiltration_volume - - spaces_within_infil_volume << foundation.to_location - end - - # Get surfaces bounding infiltration volume - spaces_within_infil_volume.each do |location| - (@roofs + @rim_joists + @walls + @foundation_walls + @floors + @slabs).each do |surface| - is_adiabatic_surface = (surface.interior_adjacent_to == surface.exterior_adjacent_to) - next unless [surface.interior_adjacent_to, - surface.exterior_adjacent_to].include? location - - if not is_adiabatic_surface - # Exclude surfaces between two different spaces that are both within infiltration volume - next if spaces_within_infil_volume.include?(surface.interior_adjacent_to) && spaces_within_infil_volume.include?(surface.exterior_adjacent_to) + def has_fuels(fuels_array, hpxml_doc, building_id = nil) + # Returns a hash with whether each fuel in fuels_array exists + # across all the buildings + has_fuels = {} + fuels_array.each do |fuel| + has_fuels[fuel] = false + FuelElementNames.each do |fuel_element_name| + if fuel_element_name == 'Heater/Type' && fuel == HPXML::FuelTypeNaturalGas + fuel_element_value = HPXML::HeaterTypeGas + else + fuel_element_value = fuel + end + search_str = "/HPXML/Building[BuildingID/@id='#{building_id}']//#{fuel_element_name}[text() = '#{fuel_element_value}']" + if building_id.nil? + search_str = "/HPXML/Building//#{fuel_element_name}[text() = '#{fuel_element_value}']" + end + if XMLHelper.has_element(hpxml_doc, search_str) + has_fuels[fuel] = true + break end - - # Update Compartmentalization Boundary areas - total_area += surface.area - next unless (not [LocationGarage, - LocationOtherHousingUnit, - LocationOtherHeatedSpace, - LocationOtherMultifamilyBufferSpace, - LocationOtherNonFreezingSpace].include? surface.exterior_adjacent_to) && - (not is_adiabatic_surface) - - exterior_area += surface.area end end - return total_area, exterior_area - end - - def inferred_infiltration_height(infil_volume) - # Infiltration height: vertical distance between lowest and highest above-grade points within the pressure boundary. - # Height is inferred from available HPXML properties. - # The WithinInfiltrationVolume properties are intentionally ignored for now. - cfa = @building_construction.conditioned_floor_area - - ncfl_ag = @building_construction.number_of_conditioned_floors_above_grade - if has_walkout_basement() - infil_height = ncfl_ag * infil_volume / cfa - else - infil_volume -= inferred_conditioned_crawlspace_volume() - - # Calculate maximum above-grade height of conditioned foundation walls - max_cond_fnd_wall_height_ag = 0.0 - @foundation_walls.each do |foundation_wall| - next unless foundation_wall.is_exterior && HPXML::conditioned_below_grade_locations.include?(foundation_wall.interior_adjacent_to) - - height_ag = foundation_wall.height - foundation_wall.depth_below_grade - next unless height_ag > max_cond_fnd_wall_height_ag - - max_cond_fnd_wall_height_ag = height_ag - end - - # Add assumed rim joist height - cond_fnd_rim_joist_height = 0 - @rim_joists.each do |rim_joist| - next unless rim_joist.is_exterior && HPXML::conditioned_below_grade_locations.include?(rim_joist.interior_adjacent_to) - - cond_fnd_rim_joist_height = UnitConversions.convert(9, 'in', 'ft') - end - - infil_height = ncfl_ag * infil_volume / cfa + max_cond_fnd_wall_height_ag + cond_fnd_rim_joist_height - end - return infil_height - end - - def inferred_conditioned_crawlspace_volume - if has_location(HPXML::LocationCrawlspaceConditioned) - conditioned_crawl_area = @slabs.select { |s| s.interior_adjacent_to == HPXML::LocationCrawlspaceConditioned }.map { |s| s.area }.sum - conditioned_crawl_height = @foundation_walls.select { |w| w.interior_adjacent_to == HPXML::LocationCrawlspaceConditioned }.map { |w| w.height }.max - return conditioned_crawl_area * conditioned_crawl_height - end - return 0.0 - end - - def to_oga() - @doc = _create_oga_document() - @header.to_oga(@doc) - @site.to_oga(@doc) - @neighbor_buildings.to_oga(@doc) - @building_occupancy.to_oga(@doc) - @building_construction.to_oga(@doc) - @climate_and_risk_zones.to_oga(@doc) - @air_infiltration_measurements.to_oga(@doc) - @air_infiltration.to_oga(@doc) - @attics.to_oga(@doc) - @foundations.to_oga(@doc) - @roofs.to_oga(@doc) - @rim_joists.to_oga(@doc) - @walls.to_oga(@doc) - @foundation_walls.to_oga(@doc) - @floors.to_oga(@doc) - @slabs.to_oga(@doc) - @windows.to_oga(@doc) - @skylights.to_oga(@doc) - @doors.to_oga(@doc) - @partition_wall_mass.to_oga(@doc) - @furniture_mass.to_oga(@doc) - @heating_systems.to_oga(@doc) - @cooling_systems.to_oga(@doc) - @heat_pumps.to_oga(@doc) - @hvac_plant.to_oga(@doc) - @hvac_controls.to_oga(@doc) - @hvac_distributions.to_oga(@doc) - @ventilation_fans.to_oga(@doc) - @water_heating_systems.to_oga(@doc) - @hot_water_distributions.to_oga(@doc) - @water_fixtures.to_oga(@doc) - @water_heating.to_oga(@doc) - @solar_thermal_systems.to_oga(@doc) - @pv_systems.to_oga(@doc) - @inverters.to_oga(@doc) - @batteries.to_oga(@doc) - @generators.to_oga(@doc) - @clothes_washers.to_oga(@doc) - @clothes_dryers.to_oga(@doc) - @dishwashers.to_oga(@doc) - @refrigerators.to_oga(@doc) - @freezers.to_oga(@doc) - @dehumidifiers.to_oga(@doc) - @cooking_ranges.to_oga(@doc) - @ovens.to_oga(@doc) - @lighting_groups.to_oga(@doc) - @ceiling_fans.to_oga(@doc) - @lighting.to_oga(@doc) - @pools.to_oga(@doc) - @hot_tubs.to_oga(@doc) - @plug_loads.to_oga(@doc) - @fuel_loads.to_oga(@doc) - return @doc - end - - def from_oga(hpxml) - @header = Header.new(self, hpxml) - @site = Site.new(self, hpxml) - @neighbor_buildings = NeighborBuildings.new(self, hpxml) - @building_occupancy = BuildingOccupancy.new(self, hpxml) - @building_construction = BuildingConstruction.new(self, hpxml) - @climate_and_risk_zones = ClimateandRiskZones.new(self, hpxml) - @air_infiltration_measurements = AirInfiltrationMeasurements.new(self, hpxml) - @air_infiltration = AirInfiltration.new(self, hpxml) - @attics = Attics.new(self, hpxml) - @foundations = Foundations.new(self, hpxml) - @roofs = Roofs.new(self, hpxml) - @rim_joists = RimJoists.new(self, hpxml) - @walls = Walls.new(self, hpxml) - @foundation_walls = FoundationWalls.new(self, hpxml) - @floors = Floors.new(self, hpxml) - @slabs = Slabs.new(self, hpxml) - @windows = Windows.new(self, hpxml) - @skylights = Skylights.new(self, hpxml) - @doors = Doors.new(self, hpxml) - @partition_wall_mass = PartitionWallMass.new(self, hpxml) - @furniture_mass = FurnitureMass.new(self, hpxml) - @heating_systems = HeatingSystems.new(self, hpxml) - @cooling_systems = CoolingSystems.new(self, hpxml) - @heat_pumps = HeatPumps.new(self, hpxml) - @hvac_plant = HVACPlant.new(self, hpxml) - @hvac_controls = HVACControls.new(self, hpxml) - @hvac_distributions = HVACDistributions.new(self, hpxml) - @ventilation_fans = VentilationFans.new(self, hpxml) - @water_heating_systems = WaterHeatingSystems.new(self, hpxml) - @hot_water_distributions = HotWaterDistributions.new(self, hpxml) - @water_fixtures = WaterFixtures.new(self, hpxml) - @water_heating = WaterHeating.new(self, hpxml) - @solar_thermal_systems = SolarThermalSystems.new(self, hpxml) - @pv_systems = PVSystems.new(self, hpxml) - @inverters = Inverters.new(self, hpxml) - @batteries = Batteries.new(self, hpxml) - @generators = Generators.new(self, hpxml) - @clothes_washers = ClothesWashers.new(self, hpxml) - @clothes_dryers = ClothesDryers.new(self, hpxml) - @dishwashers = Dishwashers.new(self, hpxml) - @refrigerators = Refrigerators.new(self, hpxml) - @freezers = Freezers.new(self, hpxml) - @dehumidifiers = Dehumidifiers.new(self, hpxml) - @cooking_ranges = CookingRanges.new(self, hpxml) - @ovens = Ovens.new(self, hpxml) - @lighting_groups = LightingGroups.new(self, hpxml) - @ceiling_fans = CeilingFans.new(self, hpxml) - @lighting = Lighting.new(self, hpxml) - @pools = Pools.new(self, hpxml) - @hot_tubs = HotTubs.new(self, hpxml) - @plug_loads = PlugLoads.new(self, hpxml) - @fuel_loads = FuelLoads.new(self, hpxml) + return has_fuels end # Class to store additional properties on an HPXML object that are not intended @@ -834,10 +551,10 @@ def method_missing(meth, *args) # HPXML Standard Element (e.g., Roof) class BaseElement - attr_accessor(:hpxml_object, :additional_properties) + attr_accessor(:parent_object, :additional_properties) - def initialize(hpxml_object, oga_element = nil, **kwargs) - @hpxml_object = hpxml_object + def initialize(parent_object, hpxml_element = nil, **kwargs) + @parent_object = parent_object @additional_properties = AdditionalProperties.new # Automatically add :foo_isdefaulted attributes to class @@ -852,9 +569,9 @@ def initialize(hpxml_object, oga_element = nil, **kwargs) create_attr(attr.to_s) # From https://stackoverflow.com/a/4082937 end - if not oga_element.nil? - # Set values from HPXML Oga element - from_oga(oga_element) + if not hpxml_element.nil? + # Set values from HPXML element + from_doc(hpxml_element) else # Set values from **kwargs kwargs.each do |k, v| @@ -896,15 +613,15 @@ def nil? # HPXML Array Element (e.g., Roofs) class BaseArrayElement < Array - attr_accessor(:hpxml_object, :additional_properties) + attr_accessor(:parent_object, :additional_properties) - def initialize(hpxml_object, oga_element = nil) - @hpxml_object = hpxml_object + def initialize(parent_object, hpxml_element = nil) + @parent_object = parent_object @additional_properties = AdditionalProperties.new - if not oga_element.nil? - # Set values from HPXML Oga element - from_oga(oga_element) + if not hpxml_element.nil? + # Set values from HPXML element + from_doc(hpxml_element) end end @@ -920,9 +637,9 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(doc) each do |child| - child.to_oga(doc) + child.to_doc(doc) end end @@ -938,19 +655,11 @@ def initialize(hpxml_object, *args) @unavailable_periods = UnavailablePeriods.new(hpxml_object) super(hpxml_object, *args) end - ATTRS = [:xml_type, :xml_generated_by, :created_date_and_time, :transaction, - :software_program_used, :software_program_version, :eri_calculation_version, - :co2index_calculation_version, :timestep, :building_id, :event_type, :state_code, :zip_code, - :egrid_region, :egrid_subregion, :cambium_region_gea, :time_zone_utc_offset, + ATTRS = [:xml_type, :xml_generated_by, :created_date_and_time, :transaction, :software_program_used, + :software_program_version, :apply_ashrae140_assumptions, :temperature_capacitance_multiplier, :timestep, :sim_begin_month, :sim_begin_day, :sim_end_month, :sim_end_day, :sim_calendar_year, - :dst_enabled, :dst_begin_month, :dst_begin_day, :dst_end_month, :dst_end_day, - :heat_pump_sizing_methodology, :allow_increased_fixed_capacities, :apply_ashrae140_assumptions, - :energystar_calculation_version, :schedules_filepaths, :extension_properties, :iecc_eri_calculation_version, - :zerh_calculation_version, :temperature_capacitance_multiplier, :natvent_days_per_week, - :shading_summer_begin_month, :shading_summer_begin_day, :shading_summer_end_month, - :shading_summer_end_day, :manualj_heating_design_temp, :manualj_cooling_design_temp, - :manualj_heating_setpoint, :manualj_cooling_setpoint, :manualj_humidity_setpoint, - :manualj_internal_loads_sensible, :manualj_internal_loads_latent, :manualj_num_occupants] + :eri_calculation_version, :co2index_calculation_version, :energystar_calculation_version, + :iecc_eri_calculation_version, :zerh_calculation_version] attr_accessor(*ATTRS) attr_reader(:emissions_scenarios) attr_reader(:utility_bill_scenarios) @@ -973,8 +682,6 @@ def check_for_errors end end - errors += HPXML::check_dates('Daylight Saving', @dst_begin_month, @dst_begin_day, @dst_end_month, @dst_end_day) - errors += HPXML::check_dates('Shading Summer Season', @shading_summer_begin_month, @shading_summer_begin_day, @shading_summer_end_month, @shading_summer_end_day) errors += @emissions_scenarios.check_for_errors errors += @utility_bill_scenarios.check_for_errors errors += @unavailable_periods.check_for_errors @@ -982,7 +689,7 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(doc) return if nil? hpxml = XMLHelper.get_element(doc, '/HPXML') @@ -1022,82 +729,12 @@ def to_oga(doc) XMLHelper.add_element(simulation_control, 'CalendarYear', @sim_calendar_year, :integer, @sim_calendar_year_isdefaulted) unless @sim_calendar_year.nil? XMLHelper.add_element(simulation_control, 'TemperatureCapacitanceMultiplier', @temperature_capacitance_multiplier, :float, @temperature_capacitance_multiplier_isdefaulted) unless @temperature_capacitance_multiplier.nil? end - if (not @heat_pump_sizing_methodology.nil?) || (not @allow_increased_fixed_capacities.nil?) - hvac_sizing_control = XMLHelper.create_elements_as_needed(software_info, ['extension', 'HVACSizingControl']) - XMLHelper.add_element(hvac_sizing_control, 'HeatPumpSizingMethodology', @heat_pump_sizing_methodology, :string, @heat_pump_sizing_methodology_isdefaulted) unless @heat_pump_sizing_methodology.nil? - XMLHelper.add_element(hvac_sizing_control, 'AllowIncreasedFixedCapacities', @allow_increased_fixed_capacities, :boolean, @allow_increased_fixed_capacities_isdefaulted) unless @allow_increased_fixed_capacities.nil? - end - if (not @manualj_heating_design_temp.nil?) || (not @manualj_cooling_design_temp.nil?) || (not @manualj_heating_setpoint.nil?) || (not @manualj_cooling_setpoint.nil?) || (not @manualj_humidity_setpoint.nil?) || (not @manualj_internal_loads_sensible.nil?) || (not @manualj_internal_loads_latent.nil?) || (not @manualj_num_occupants.nil?) - manualj_sizing_inputs = XMLHelper.create_elements_as_needed(software_info, ['extension', 'HVACSizingControl', 'ManualJInputs']) - XMLHelper.add_element(manualj_sizing_inputs, 'HeatingDesignTemperature', @manualj_heating_design_temp, :float, @manualj_heating_design_temp_isdefaulted) unless @manualj_heating_design_temp.nil? - XMLHelper.add_element(manualj_sizing_inputs, 'CoolingDesignTemperature', @manualj_cooling_design_temp, :float, @manualj_cooling_design_temp_isdefaulted) unless @manualj_cooling_design_temp.nil? - XMLHelper.add_element(manualj_sizing_inputs, 'HeatingSetpoint', @manualj_heating_setpoint, :float, @manualj_heating_setpoint_isdefaulted) unless @manualj_heating_setpoint.nil? - XMLHelper.add_element(manualj_sizing_inputs, 'CoolingSetpoint', @manualj_cooling_setpoint, :float, @manualj_cooling_setpoint_isdefaulted) unless @manualj_cooling_setpoint.nil? - XMLHelper.add_element(manualj_sizing_inputs, 'HumiditySetpoint', @manualj_humidity_setpoint, :float, @manualj_humidity_setpoint_isdefaulted) unless @manualj_humidity_setpoint.nil? - XMLHelper.add_element(manualj_sizing_inputs, 'InternalLoadsSensible', @manualj_internal_loads_sensible, :float, @manualj_internal_loads_sensible_isdefaulted) unless @manualj_internal_loads_sensible.nil? - XMLHelper.add_element(manualj_sizing_inputs, 'InternalLoadsLatent', @manualj_internal_loads_latent, :float, @manualj_internal_loads_latent_isdefaulted) unless @manualj_internal_loads_latent.nil? - XMLHelper.add_element(manualj_sizing_inputs, 'NumberofOccupants', @manualj_num_occupants, :integer, @manualj_num_occupants_isdefaulted) unless @manualj_num_occupants.nil? - end - XMLHelper.add_extension(software_info, 'NaturalVentilationAvailabilityDaysperWeek', @natvent_days_per_week, :integer, @natvent_days_per_week_isdefaulted) unless @natvent_days_per_week.nil? - if (not @schedules_filepaths.nil?) && (not @schedules_filepaths.empty?) - extension = XMLHelper.create_elements_as_needed(software_info, ['extension']) - @schedules_filepaths.each do |schedules_filepath| - XMLHelper.add_element(extension, 'SchedulesFilePath', schedules_filepath, :string) - end - end - if (not @shading_summer_begin_month.nil?) || (not @shading_summer_begin_day.nil?) || (not @shading_summer_end_month.nil?) || (not @shading_summer_end_day.nil?) - window_shading_season = XMLHelper.create_elements_as_needed(software_info, ['extension', 'ShadingControl']) - XMLHelper.add_element(window_shading_season, 'SummerBeginMonth', @shading_summer_begin_month, :integer, @shading_summer_begin_month_isdefaulted) unless @shading_summer_begin_month.nil? - XMLHelper.add_element(window_shading_season, 'SummerBeginDayOfMonth', @shading_summer_begin_day, :integer, @shading_summer_begin_day_isdefaulted) unless @shading_summer_begin_day.nil? - XMLHelper.add_element(window_shading_season, 'SummerEndMonth', @shading_summer_end_month, :integer, @shading_summer_end_month_isdefaulted) unless @shading_summer_end_month.nil? - XMLHelper.add_element(window_shading_season, 'SummerEndDayOfMonth', @shading_summer_end_day, :integer, @shading_summer_end_day_isdefaulted) unless @shading_summer_end_day.nil? - end - if (not @extension_properties.nil?) && (not @extension_properties.empty?) - properties = XMLHelper.create_elements_as_needed(software_info, ['extension', 'AdditionalProperties']) - @extension_properties.each do |key, value| - XMLHelper.add_element(properties, key, value, :string) - end - end - @emissions_scenarios.to_oga(software_info) - @utility_bill_scenarios.to_oga(software_info) - @unavailable_periods.to_oga(software_info) - - building = XMLHelper.add_element(hpxml, 'Building') - building_building_id = XMLHelper.add_element(building, 'BuildingID') - XMLHelper.add_attribute(building_building_id, 'id', @building_id) - if (not @state_code.nil?) || (not @zip_code.nil?) || (not @time_zone_utc_offset.nil?) || (not @egrid_region.nil?) || (not @egrid_subregion.nil?) || (not @cambium_region_gea.nil?) || (not @dst_enabled.nil?) || (not @dst_begin_month.nil?) || (not @dst_begin_day.nil?) || (not @dst_end_month.nil?) || (not @dst_end_day.nil?) - site = XMLHelper.add_element(building, 'Site') - site_id = XMLHelper.add_element(site, 'SiteID') - XMLHelper.add_attribute(site_id, 'id', 'SiteID') - if (not @state_code.nil?) || (not @zip_code.nil?) - address = XMLHelper.add_element(site, 'Address') - XMLHelper.add_element(address, 'StateCode', @state_code, :string, @state_code_isdefaulted) unless @state_code.nil? - XMLHelper.add_element(address, 'ZipCode', @zip_code, :string) unless @zip_code.nil? - end - if not @egrid_region.nil? - XMLHelper.add_element(site, 'eGridRegion', @egrid_region, :string, @egrid_region_isdefaulted) - end - if not @egrid_subregion.nil? - XMLHelper.add_element(site, 'eGridSubregion', @egrid_subregion, :string, @egrid_subregion_isdefaulted) - end - if not @cambium_region_gea.nil? - XMLHelper.add_element(site, 'CambiumRegionGEA', @cambium_region_gea, :string, @cambium_region_gea_isdefaulted) - end - if (not @time_zone_utc_offset.nil?) || (not @dst_enabled.nil?) || (not @dst_begin_month.nil?) || (not @dst_begin_day.nil?) || (not @dst_end_month.nil?) || (not @dst_end_day.nil?) - time_zone = XMLHelper.add_element(site, 'TimeZone') - XMLHelper.add_element(time_zone, 'UTCOffset', @time_zone_utc_offset, :float, @time_zone_utc_offset_isdefaulted) unless @time_zone_utc_offset.nil? - XMLHelper.add_element(time_zone, 'DSTObserved', @dst_enabled, :boolean, @dst_enabled_isdefaulted) unless @dst_enabled.nil? - XMLHelper.add_extension(time_zone, 'DSTBeginMonth', @dst_begin_month, :integer, @dst_begin_month_isdefaulted) unless @dst_begin_month.nil? - XMLHelper.add_extension(time_zone, 'DSTBeginDayOfMonth', @dst_begin_day, :integer, @dst_begin_day_isdefaulted) unless @dst_begin_day.nil? - XMLHelper.add_extension(time_zone, 'DSTEndMonth', @dst_end_month, :integer, @dst_end_month_isdefaulted) unless @dst_end_month.nil? - XMLHelper.add_extension(time_zone, 'DSTEndDayOfMonth', @dst_end_day, :integer, @dst_end_day_isdefaulted) unless @dst_end_day.nil? - end - end - project_status = XMLHelper.add_element(building, 'ProjectStatus') - XMLHelper.add_element(project_status, 'EventType', @event_type, :string) + @emissions_scenarios.to_doc(software_info) + @utility_bill_scenarios.to_doc(software_info) + @unavailable_periods.to_doc(software_info) end - def from_oga(hpxml) + def from_doc(hpxml) return if hpxml.nil? @xml_type = XMLHelper.get_value(hpxml, 'XMLTransactionHeaderInformation/XMLType', :string) @@ -1118,61 +755,23 @@ def from_oga(hpxml) @sim_end_day = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/EndDayOfMonth', :integer) @sim_calendar_year = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/CalendarYear', :integer) @temperature_capacitance_multiplier = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/SimulationControl/TemperatureCapacitanceMultiplier', :float) - @natvent_days_per_week = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/NaturalVentilationAvailabilityDaysperWeek', :integer) - @shading_summer_begin_month = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/ShadingControl/SummerBeginMonth', :integer) - @shading_summer_begin_day = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/ShadingControl/SummerBeginDayOfMonth', :integer) - @shading_summer_end_month = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/ShadingControl/SummerEndMonth', :integer) - @shading_summer_end_day = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/ShadingControl/SummerEndDayOfMonth', :integer) @apply_ashrae140_assumptions = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/ApplyASHRAE140Assumptions', :boolean) - @heat_pump_sizing_methodology = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/HVACSizingControl/HeatPumpSizingMethodology', :string) - @allow_increased_fixed_capacities = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/HVACSizingControl/AllowIncreasedFixedCapacities', :boolean) - @manualj_heating_design_temp = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/HVACSizingControl/ManualJInputs/HeatingDesignTemperature', :float) - @manualj_cooling_design_temp = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/HVACSizingControl/ManualJInputs/CoolingDesignTemperature', :float) - @manualj_heating_setpoint = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/HVACSizingControl/ManualJInputs/HeatingSetpoint', :float) - @manualj_cooling_setpoint = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/HVACSizingControl/ManualJInputs/CoolingSetpoint', :float) - @manualj_humidity_setpoint = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/HVACSizingControl/ManualJInputs/HumiditySetpoint', :float) - @manualj_internal_loads_sensible = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/HVACSizingControl/ManualJInputs/InternalLoadsSensible', :float) - @manualj_internal_loads_latent = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/HVACSizingControl/ManualJInputs/InternalLoadsLatent', :float) - @manualj_num_occupants = XMLHelper.get_value(hpxml, 'SoftwareInfo/extension/HVACSizingControl/ManualJInputs/NumberofOccupants', :integer) - @schedules_filepaths = XMLHelper.get_values(hpxml, 'SoftwareInfo/extension/SchedulesFilePath', :string) - @extension_properties = {} - XMLHelper.get_elements(hpxml, 'SoftwareInfo/extension/AdditionalProperties').each do |property| - property.children.each do |child| - next unless child.is_a? Oga::XML::Element - - @extension_properties[child.name] = child.text - @extension_properties[child.name] = nil if @extension_properties[child.name].empty? - end - end - @emissions_scenarios.from_oga(XMLHelper.get_element(hpxml, 'SoftwareInfo')) - @utility_bill_scenarios.from_oga(XMLHelper.get_element(hpxml, 'SoftwareInfo')) - @unavailable_periods.from_oga(XMLHelper.get_element(hpxml, 'SoftwareInfo')) - @building_id = HPXML::get_id(hpxml, 'Building/BuildingID') - @event_type = XMLHelper.get_value(hpxml, 'Building/ProjectStatus/EventType', :string) - @state_code = XMLHelper.get_value(hpxml, 'Building/Site/Address/StateCode', :string) - @zip_code = XMLHelper.get_value(hpxml, 'Building/Site/Address/ZipCode', :string) - @egrid_region = XMLHelper.get_value(hpxml, 'Building/Site/eGridRegion', :string) - @egrid_subregion = XMLHelper.get_value(hpxml, 'Building/Site/eGridSubregion', :string) - @cambium_region_gea = XMLHelper.get_value(hpxml, 'Building/Site/CambiumRegionGEA', :string) - @time_zone_utc_offset = XMLHelper.get_value(hpxml, 'Building/Site/TimeZone/UTCOffset', :float) - @dst_enabled = XMLHelper.get_value(hpxml, 'Building/Site/TimeZone/DSTObserved', :boolean) - @dst_begin_month = XMLHelper.get_value(hpxml, 'Building/Site/TimeZone/extension/DSTBeginMonth', :integer) - @dst_begin_day = XMLHelper.get_value(hpxml, 'Building/Site/TimeZone/extension/DSTBeginDayOfMonth', :integer) - @dst_end_month = XMLHelper.get_value(hpxml, 'Building/Site/TimeZone/extension/DSTEndMonth', :integer) - @dst_end_day = XMLHelper.get_value(hpxml, 'Building/Site/TimeZone/extension/DSTEndDayOfMonth', :integer) + @emissions_scenarios.from_doc(XMLHelper.get_element(hpxml, 'SoftwareInfo')) + @utility_bill_scenarios.from_doc(XMLHelper.get_element(hpxml, 'SoftwareInfo')) + @unavailable_periods.from_doc(XMLHelper.get_element(hpxml, 'SoftwareInfo')) end end class EmissionsScenarios < BaseArrayElement def add(**kwargs) - self << EmissionsScenario.new(@hpxml_object, **kwargs) + self << EmissionsScenario.new(@parent_object, **kwargs) end - def from_oga(software_info) + def from_doc(software_info) return if software_info.nil? XMLHelper.get_elements(software_info, 'extension/EmissionsScenarios/EmissionsScenario').each do |emissions_scenario| - self << EmissionsScenario.new(@hpxml_object, emissions_scenario) + self << EmissionsScenario.new(@parent_object, emissions_scenario) end end end @@ -1191,7 +790,7 @@ class EmissionsScenario < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.header.emissions_scenarios.delete(self) + @parent_object.header.emissions_scenarios.delete(self) end def check_for_errors @@ -1199,7 +798,7 @@ def check_for_errors return errors end - def to_oga(software_info) + def to_doc(software_info) emissions_scenarios = XMLHelper.create_elements_as_needed(software_info, ['extension', 'EmissionsScenarios']) emissions_scenario = XMLHelper.add_element(emissions_scenarios, 'EmissionsScenario') XMLHelper.add_element(emissions_scenario, 'Name', @name, :string) unless @name.nil? @@ -1236,7 +835,7 @@ def to_oga(software_info) end end - def from_oga(emissions_scenario) + def from_doc(emissions_scenario) return if emissions_scenario.nil? @name = XMLHelper.get_value(emissions_scenario, 'Name', :string) @@ -1263,14 +862,14 @@ def from_oga(emissions_scenario) class UtilityBillScenarios < BaseArrayElement def add(**kwargs) - self << UtilityBillScenario.new(@hpxml_object, **kwargs) + self << UtilityBillScenario.new(@parent_object, **kwargs) end - def from_oga(software_info) + def from_doc(software_info) return if software_info.nil? XMLHelper.get_elements(software_info, 'extension/UtilityBillScenarios/UtilityBillScenario').each do |utility_bill_scenario| - self << UtilityBillScenario.new(@hpxml_object, utility_bill_scenario) + self << UtilityBillScenario.new(@parent_object, utility_bill_scenario) end end @@ -1297,7 +896,7 @@ class UtilityBillScenario < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.header.utility_bill_scenarios.delete(self) + @parent_object.header.utility_bill_scenarios.delete(self) end def check_for_errors @@ -1305,7 +904,7 @@ def check_for_errors return errors end - def to_oga(software_info) + def to_doc(software_info) utility_bill_scenarios = XMLHelper.create_elements_as_needed(software_info, ['extension', 'UtilityBillScenarios']) utility_bill_scenario = XMLHelper.add_element(utility_bill_scenarios, 'UtilityBillScenario') XMLHelper.add_element(utility_bill_scenario, 'Name', @name, :string) unless @name.nil? @@ -1350,7 +949,7 @@ def to_oga(software_info) end end - def from_oga(utility_bill_scenario) + def from_doc(utility_bill_scenario) return if utility_bill_scenario.nil? @name = XMLHelper.get_value(utility_bill_scenario, 'Name', :string) @@ -1385,14 +984,14 @@ def from_oga(utility_bill_scenario) class UnavailablePeriods < BaseArrayElement def add(**kwargs) - self << UnavailablePeriod.new(@hpxml_object, **kwargs) + self << UnavailablePeriod.new(@parent_object, **kwargs) end - def from_oga(software_info) + def from_doc(software_info) return if software_info.nil? XMLHelper.get_elements(software_info, 'extension/UnavailablePeriods/UnavailablePeriod').each do |unavailable_period| - self << UnavailablePeriod.new(@hpxml_object, unavailable_period) + self << UnavailablePeriod.new(@parent_object, unavailable_period) end end end @@ -1402,7 +1001,7 @@ class UnavailablePeriod < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.header.unavailable_periods.delete(self) + @parent_object.header.unavailable_periods.delete(self) end def check_for_errors @@ -1411,7 +1010,7 @@ def check_for_errors return errors end - def to_oga(software_info) + def to_doc(software_info) unavailable_periods = XMLHelper.create_elements_as_needed(software_info, ['extension', 'UnavailablePeriods']) unavailable_period = XMLHelper.add_element(unavailable_periods, 'UnavailablePeriod') XMLHelper.add_element(unavailable_period, 'ColumnName', @column_name, :string) unless @column_name.nil? @@ -1424,7 +1023,7 @@ def to_oga(software_info) XMLHelper.add_element(unavailable_period, 'NaturalVentilation', @natvent_availability, :string, @natvent_availability_isdefaulted) unless @natvent_availability.nil? end - def from_oga(unavailable_period) + def from_doc(unavailable_period) return if unavailable_period.nil? @column_name = XMLHelper.get_value(unavailable_period, 'ColumnName', :string) @@ -1438,6 +1037,669 @@ def from_oga(unavailable_period) end end + class Buildings < BaseArrayElement + def add(**kwargs) + self << Building.new(@parent_object, **kwargs) + end + + def from_doc(hpxml) + return if hpxml.nil? + + XMLHelper.get_elements(hpxml, 'Building').each do |building| + self << Building.new(@parent_object, building) + end + end + end + + class Building < BaseElement + CLASS_ATTRS = [:site, :neighbor_buildings, :building_occupancy, :building_construction, :header, + :climate_and_risk_zones, :air_infiltration, :air_infiltration_measurements, :attics, + :foundations, :roofs, :rim_joists, :walls, :foundation_walls, :floors, :slabs, :windows, + :skylights, :doors, :partition_wall_mass, :furniture_mass, :heating_systems, + :cooling_systems, :heat_pumps, :hvac_plant, :hvac_controls, :hvac_distributions, + :ventilation_fans, :water_heating_systems, :hot_water_distributions, :water_fixtures, + :water_heating, :solar_thermal_systems, :pv_systems, :inverters, :generators, + :batteries, :clothes_washers, :clothes_dryers, :dishwashers, :refrigerators, + :freezers, :dehumidifiers, :cooking_ranges, :ovens, :lighting_groups, :lighting, + :ceiling_fans, :pools, :permanent_spas, :portable_spas, :plug_loads, :fuel_loads] + ATTRS = [:building_id, :site_id, :state_code, :zip_code, :time_zone_utc_offset, :egrid_region, + :egrid_subregion, :cambium_region_gea, :dst_enabled, :dst_begin_month, + :dst_begin_day, :dst_end_month, :dst_end_day, :event_type] + + attr_accessor(*CLASS_ATTRS) + attr_accessor(*ATTRS) + + def initialize(*args) + from_doc(nil) + super(*args) + end + + def to_doc(doc) + return if nil? + + hpxml = XMLHelper.create_elements_as_needed(doc, ['HPXML']) + building = XMLHelper.add_element(hpxml, 'Building') + building_building_id = XMLHelper.add_element(building, 'BuildingID') + XMLHelper.add_attribute(building_building_id, 'id', @building_id) + if (not @state_code.nil?) || (not @zip_code.nil?) || (not @time_zone_utc_offset.nil?) || (not @egrid_region.nil?) || (not @egrid_subregion.nil?) || (not @cambium_region_gea.nil?) || (not @dst_enabled.nil?) || (not @dst_begin_month.nil?) || (not @dst_begin_day.nil?) || (not @dst_end_month.nil?) || (not @dst_end_day.nil?) + building_site = XMLHelper.add_element(building, 'Site') + building_site_id = XMLHelper.add_element(building_site, 'SiteID') + if @site_id.nil? + bldg_idx = XMLHelper.get_elements(hpxml, 'Building').size + if bldg_idx > 1 + XMLHelper.add_attribute(building_site_id, 'id', "SiteID_#{bldg_idx}") + else + XMLHelper.add_attribute(building_site_id, 'id', 'SiteID') + end + else + XMLHelper.add_attribute(building_site_id, 'id', @site_id) + end + if (not @state_code.nil?) || (not @zip_code.nil?) + address = XMLHelper.add_element(building_site, 'Address') + XMLHelper.add_element(address, 'StateCode', @state_code, :string, @state_code_isdefaulted) unless @state_code.nil? + XMLHelper.add_element(address, 'ZipCode', @zip_code, :string) unless @zip_code.nil? + end + if not @egrid_region.nil? + XMLHelper.add_element(building_site, 'eGridRegion', @egrid_region, :string, @egrid_region_isdefaulted) + end + if not @egrid_subregion.nil? + XMLHelper.add_element(building_site, 'eGridSubregion', @egrid_subregion, :string, @egrid_subregion_isdefaulted) + end + if not @cambium_region_gea.nil? + XMLHelper.add_element(building_site, 'CambiumRegionGEA', @cambium_region_gea, :string, @cambium_region_gea_isdefaulted) + end + if (not @time_zone_utc_offset.nil?) || (not @dst_enabled.nil?) || (not @dst_begin_month.nil?) || (not @dst_begin_day.nil?) || (not @dst_end_month.nil?) || (not @dst_end_day.nil?) + time_zone = XMLHelper.add_element(building_site, 'TimeZone') + XMLHelper.add_element(time_zone, 'UTCOffset', @time_zone_utc_offset, :float, @time_zone_utc_offset_isdefaulted) unless @time_zone_utc_offset.nil? + XMLHelper.add_element(time_zone, 'DSTObserved', @dst_enabled, :boolean, @dst_enabled_isdefaulted) unless @dst_enabled.nil? + XMLHelper.add_extension(time_zone, 'DSTBeginMonth', @dst_begin_month, :integer, @dst_begin_month_isdefaulted) unless @dst_begin_month.nil? + XMLHelper.add_extension(time_zone, 'DSTBeginDayOfMonth', @dst_begin_day, :integer, @dst_begin_day_isdefaulted) unless @dst_begin_day.nil? + XMLHelper.add_extension(time_zone, 'DSTEndMonth', @dst_end_month, :integer, @dst_end_month_isdefaulted) unless @dst_end_month.nil? + XMLHelper.add_extension(time_zone, 'DSTEndDayOfMonth', @dst_end_day, :integer, @dst_end_day_isdefaulted) unless @dst_end_day.nil? + end + end + project_status = XMLHelper.add_element(building, 'ProjectStatus') + XMLHelper.add_element(project_status, 'EventType', @event_type, :string) + + @site.to_doc(building) + @neighbor_buildings.to_doc(building) + @building_occupancy.to_doc(building) + @building_construction.to_doc(building) + @header.to_doc(building) + @climate_and_risk_zones.to_doc(building) + @air_infiltration_measurements.to_doc(building) + @air_infiltration.to_doc(building) + @attics.to_doc(building) + @foundations.to_doc(building) + @roofs.to_doc(building) + @rim_joists.to_doc(building) + @walls.to_doc(building) + @foundation_walls.to_doc(building) + @floors.to_doc(building) + @slabs.to_doc(building) + @windows.to_doc(building) + @skylights.to_doc(building) + @doors.to_doc(building) + @partition_wall_mass.to_doc(building) + @furniture_mass.to_doc(building) + @heating_systems.to_doc(building) + @cooling_systems.to_doc(building) + @heat_pumps.to_doc(building) + @hvac_plant.to_doc(building) + @hvac_controls.to_doc(building) + @hvac_distributions.to_doc(building) + @ventilation_fans.to_doc(building) + @water_heating_systems.to_doc(building) + @hot_water_distributions.to_doc(building) + @water_fixtures.to_doc(building) + @water_heating.to_doc(building) + @solar_thermal_systems.to_doc(building) + @pv_systems.to_doc(building) + @inverters.to_doc(building) + @batteries.to_doc(building) + @generators.to_doc(building) + @clothes_washers.to_doc(building) + @clothes_dryers.to_doc(building) + @dishwashers.to_doc(building) + @refrigerators.to_doc(building) + @freezers.to_doc(building) + @dehumidifiers.to_doc(building) + @cooking_ranges.to_doc(building) + @ovens.to_doc(building) + @lighting_groups.to_doc(building) + @ceiling_fans.to_doc(building) + @lighting.to_doc(building) + @pools.to_doc(building) + @permanent_spas.to_doc(building) + @portable_spas.to_doc(building) + @plug_loads.to_doc(building) + @fuel_loads.to_doc(building) + end + + def from_doc(building) + if not building.nil? + @building_id = HPXML::get_id(building, 'BuildingID') + @event_type = XMLHelper.get_value(building, 'ProjectStatus/EventType', :string) + @site_id = HPXML::get_id(building, 'Site/SiteID') + @state_code = XMLHelper.get_value(building, 'Site/Address/StateCode', :string) + @zip_code = XMLHelper.get_value(building, 'Site/Address/ZipCode', :string) + @egrid_region = XMLHelper.get_value(building, 'Site/eGridRegion', :string) + @egrid_subregion = XMLHelper.get_value(building, 'Site/eGridSubregion', :string) + @cambium_region_gea = XMLHelper.get_value(building, 'Site/CambiumRegionGEA', :string) + @time_zone_utc_offset = XMLHelper.get_value(building, 'Site/TimeZone/UTCOffset', :float) + @dst_enabled = XMLHelper.get_value(building, 'Site/TimeZone/DSTObserved', :boolean) + @dst_begin_month = XMLHelper.get_value(building, 'Site/TimeZone/extension/DSTBeginMonth', :integer) + @dst_begin_day = XMLHelper.get_value(building, 'Site/TimeZone/extension/DSTBeginDayOfMonth', :integer) + @dst_end_month = XMLHelper.get_value(building, 'Site/TimeZone/extension/DSTEndMonth', :integer) + @dst_end_day = XMLHelper.get_value(building, 'Site/TimeZone/extension/DSTEndDayOfMonth', :integer) + end + + @site = Site.new(self, building) + @neighbor_buildings = NeighborBuildings.new(self, building) + @building_occupancy = BuildingOccupancy.new(self, building) + @building_construction = BuildingConstruction.new(self, building) + @header = BuildingHeader.new(self, building) + @climate_and_risk_zones = ClimateandRiskZones.new(self, building) + @air_infiltration_measurements = AirInfiltrationMeasurements.new(self, building) + @air_infiltration = AirInfiltration.new(self, building) + @attics = Attics.new(self, building) + @foundations = Foundations.new(self, building) + @roofs = Roofs.new(self, building) + @rim_joists = RimJoists.new(self, building) + @walls = Walls.new(self, building) + @foundation_walls = FoundationWalls.new(self, building) + @floors = Floors.new(self, building) + @slabs = Slabs.new(self, building) + @windows = Windows.new(self, building) + @skylights = Skylights.new(self, building) + @doors = Doors.new(self, building) + @partition_wall_mass = PartitionWallMass.new(self, building) + @furniture_mass = FurnitureMass.new(self, building) + @heating_systems = HeatingSystems.new(self, building) + @cooling_systems = CoolingSystems.new(self, building) + @heat_pumps = HeatPumps.new(self, building) + @hvac_plant = HVACPlant.new(self, building) + @hvac_controls = HVACControls.new(self, building) + @hvac_distributions = HVACDistributions.new(self, building) + @ventilation_fans = VentilationFans.new(self, building) + @water_heating_systems = WaterHeatingSystems.new(self, building) + @hot_water_distributions = HotWaterDistributions.new(self, building) + @water_fixtures = WaterFixtures.new(self, building) + @water_heating = WaterHeating.new(self, building) + @solar_thermal_systems = SolarThermalSystems.new(self, building) + @pv_systems = PVSystems.new(self, building) + @inverters = Inverters.new(self, building) + @batteries = Batteries.new(self, building) + @generators = Generators.new(self, building) + @clothes_washers = ClothesWashers.new(self, building) + @clothes_dryers = ClothesDryers.new(self, building) + @dishwashers = Dishwashers.new(self, building) + @refrigerators = Refrigerators.new(self, building) + @freezers = Freezers.new(self, building) + @dehumidifiers = Dehumidifiers.new(self, building) + @cooking_ranges = CookingRanges.new(self, building) + @ovens = Ovens.new(self, building) + @lighting_groups = LightingGroups.new(self, building) + @ceiling_fans = CeilingFans.new(self, building) + @lighting = Lighting.new(self, building) + @pools = Pools.new(self, building) + @permanent_spas = PermanentSpas.new(self, building) + @portable_spas = PortableSpas.new(self, building) + @plug_loads = PlugLoads.new(self, building) + @fuel_loads = FuelLoads.new(self, building) + end + + def hvac_systems + return (@heating_systems + @cooling_systems + @heat_pumps) + end + + def has_location(location) + # Search for surfaces attached to this location + (@roofs + @rim_joists + @walls + @foundation_walls + @floors + @slabs).each do |surface| + return true if surface.interior_adjacent_to == location + return true if surface.exterior_adjacent_to == location + end + return false + end + + def has_fuel_access + @site.fuels.each do |fuel| + if fuel != FuelTypeElectricity + return true + end + end + return false + end + + def has_fuels(fuels_array, hpxml_doc) + # Returns a hash with whether each fuel in fuels_array exists + # in the HPXML Building + has_fuels = @parent_object.has_fuels(fuels_array, hpxml_doc, @building_id) + + return has_fuels + end + + def predominant_heating_fuel + fuel_fracs = {} + @heating_systems.each do |heating_system| + fuel = heating_system.heating_system_fuel + fuel_fracs[fuel] = 0.0 if fuel_fracs[fuel].nil? + fuel_fracs[fuel] += heating_system.fraction_heat_load_served.to_f + end + @heat_pumps.each do |heat_pump| + fuel = heat_pump.heat_pump_fuel + fuel_fracs[fuel] = 0.0 if fuel_fracs[fuel].nil? + fuel_fracs[fuel] += heat_pump.fraction_heat_load_served.to_f + end + return FuelTypeElectricity if fuel_fracs.empty? + return FuelTypeElectricity if fuel_fracs[FuelTypeElectricity].to_f > 0.5 + + # Choose fossil fuel + fuel_fracs.delete FuelTypeElectricity + return fuel_fracs.key(fuel_fracs.values.max) + end + + def predominant_water_heating_fuel + fuel_fracs = {} + @water_heating_systems.each do |water_heating_system| + fuel = water_heating_system.fuel_type + if fuel.nil? # Combi boiler + fuel = water_heating_system.related_hvac_system.heating_system_fuel + end + fuel_fracs[fuel] = 0.0 if fuel_fracs[fuel].nil? + fuel_fracs[fuel] += water_heating_system.fraction_dhw_load_served + end + return FuelTypeElectricity if fuel_fracs.empty? + return FuelTypeElectricity if fuel_fracs[FuelTypeElectricity].to_f > 0.5 + + # Choose fossil fuel + fuel_fracs.delete FuelTypeElectricity + return fuel_fracs.key(fuel_fracs.values.max) + end + + def fraction_of_windows_operable() + # Calculates the fraction of windows that are operable. + # Since we don't have count available, we use area as an approximation. + window_area_total = @windows.map { |w| w.area }.sum(0.0) + window_area_operable = @windows.map { |w| w.fraction_operable * w.area }.sum(0.0) + if window_area_total <= 0 + return 0.0 + end + + return window_area_operable / window_area_total + end + + def primary_hvac_systems() + return hvac_systems.select { |h| h.primary_system } + end + + def total_fraction_cool_load_served() + return @cooling_systems.total_fraction_cool_load_served + @heat_pumps.total_fraction_cool_load_served + end + + def total_fraction_heat_load_served() + return @heating_systems.total_fraction_heat_load_served + @heat_pumps.total_fraction_heat_load_served + @cooling_systems.total_fraction_heat_load_served + end + + def has_walkout_basement() + has_conditioned_basement = has_location(LocationBasementConditioned) + ncfl = @building_construction.number_of_conditioned_floors + ncfl_ag = @building_construction.number_of_conditioned_floors_above_grade + return (has_conditioned_basement && (ncfl == ncfl_ag)) + end + + def thermal_boundary_wall_areas() + above_grade_area = 0.0 # Thermal boundary walls not in contact with soil + below_grade_area = 0.0 # Thermal boundary walls in contact with soil + + (@walls + @rim_joists).each do |wall| + if wall.is_thermal_boundary + above_grade_area += wall.area + end + end + + @foundation_walls.each do |foundation_wall| + next unless foundation_wall.is_thermal_boundary + + height = foundation_wall.height + bg_depth = foundation_wall.depth_below_grade + above_grade_area += (height - bg_depth) / height * foundation_wall.area + below_grade_area += bg_depth / height * foundation_wall.area + end + + return above_grade_area, below_grade_area + end + + def common_wall_area() + # Wall area for walls adjacent to Unrated Conditioned Space, not including + # foundation walls. + area = 0.0 + + (@walls + @rim_joists).each do |wall| + next unless HPXML::conditioned_locations_this_unit.include? wall.interior_adjacent_to + + if wall.exterior_adjacent_to == HPXML::LocationOtherHousingUnit + area += wall.area + elsif wall.exterior_adjacent_to == wall.interior_adjacent_to + area += wall.area + end + end + + return area + end + + def compartmentalization_boundary_areas() + # Returns the infiltration compartmentalization boundary areas + total_area = 0.0 # Total surface area that bounds the Infiltration Volume + exterior_area = 0.0 # Same as above excluding surfaces attached to garage, other housing units, or other multifamily spaces (see 301-2019 Addendum B) + + # Determine which spaces are within infiltration volume + spaces_within_infil_volume = HPXML::conditioned_locations_this_unit + @attics.each do |attic| + next unless [AtticTypeUnvented].include? attic.attic_type + next unless attic.within_infiltration_volume + + spaces_within_infil_volume << attic.to_location + end + @foundations.each do |foundation| + next unless [FoundationTypeBasementUnconditioned, + FoundationTypeCrawlspaceUnvented].include? foundation.foundation_type + next unless foundation.within_infiltration_volume + + spaces_within_infil_volume << foundation.to_location + end + + # Get surfaces bounding infiltration volume + spaces_within_infil_volume.each do |location| + (@roofs + @rim_joists + @walls + @foundation_walls + @floors + @slabs).each do |surface| + is_adiabatic_surface = (surface.interior_adjacent_to == surface.exterior_adjacent_to) + next unless [surface.interior_adjacent_to, + surface.exterior_adjacent_to].include? location + + if not is_adiabatic_surface + # Exclude surfaces between two different spaces that are both within infiltration volume + next if spaces_within_infil_volume.include?(surface.interior_adjacent_to) && spaces_within_infil_volume.include?(surface.exterior_adjacent_to) + end + + # Update Compartmentalization Boundary areas + total_area += surface.area + next unless (not [LocationGarage, + LocationOtherHousingUnit, + LocationOtherHeatedSpace, + LocationOtherMultifamilyBufferSpace, + LocationOtherNonFreezingSpace].include? surface.exterior_adjacent_to) && + (not is_adiabatic_surface) + + exterior_area += surface.area + end + end + + return total_area, exterior_area + end + + def inferred_infiltration_height(infil_volume) + # Infiltration height: vertical distance between lowest and highest above-grade points within the pressure boundary. + # Height is inferred from available HPXML properties. + # The WithinInfiltrationVolume properties are intentionally ignored for now. + cfa = @building_construction.conditioned_floor_area + + ncfl_ag = @building_construction.number_of_conditioned_floors_above_grade + if has_walkout_basement() + infil_height = ncfl_ag * infil_volume / cfa + else + infil_volume -= inferred_conditioned_crawlspace_volume() + + # Calculate maximum above-grade height of conditioned foundation walls + max_cond_fnd_wall_height_ag = 0.0 + @foundation_walls.each do |foundation_wall| + next unless foundation_wall.is_exterior && HPXML::conditioned_below_grade_locations.include?(foundation_wall.interior_adjacent_to) + + height_ag = foundation_wall.height - foundation_wall.depth_below_grade + next unless height_ag > max_cond_fnd_wall_height_ag + + max_cond_fnd_wall_height_ag = height_ag + end + + # Add assumed rim joist height + cond_fnd_rim_joist_height = 0 + @rim_joists.each do |rim_joist| + next unless rim_joist.is_exterior && HPXML::conditioned_below_grade_locations.include?(rim_joist.interior_adjacent_to) + + cond_fnd_rim_joist_height = UnitConversions.convert(9, 'in', 'ft') + end + + infil_height = ncfl_ag * infil_volume / cfa + max_cond_fnd_wall_height_ag + cond_fnd_rim_joist_height + end + return infil_height + end + + def inferred_conditioned_crawlspace_volume + if has_location(HPXML::LocationCrawlspaceConditioned) + conditioned_crawl_area = @slabs.select { |s| s.interior_adjacent_to == HPXML::LocationCrawlspaceConditioned }.map { |s| s.area }.sum + conditioned_crawl_height = @foundation_walls.select { |w| w.interior_adjacent_to == HPXML::LocationCrawlspaceConditioned }.map { |w| w.height }.max + return conditioned_crawl_area * conditioned_crawl_height + end + return 0.0 + end + + def delete_adiabatic_subsurfaces() + @doors.reverse_each do |door| + next if door.wall.nil? + next if door.wall.exterior_adjacent_to != HPXML::LocationOtherHousingUnit + + door.delete + end + @windows.reverse_each do |window| + next if window.wall.nil? + next if window.wall.exterior_adjacent_to != HPXML::LocationOtherHousingUnit + + window.delete + end + end + + def check_for_errors() + errors = [] + + errors += HPXML::check_dates('Daylight Saving', @dst_begin_month, @dst_begin_day, @dst_end_month, @dst_end_day) + + # ------------------------------- # + # Check for errors within objects # + # ------------------------------- # + + # Ask objects to check for errors + self.class::CLASS_ATTRS.each do |attribute| + hpxml_obj = send(attribute) + if not hpxml_obj.respond_to? :check_for_errors + fail "Need to add 'check_for_errors' method to #{hpxml_obj.class} class." + end + + errors += hpxml_obj.check_for_errors + end + + # ------------------------------- # + # Check for errors across objects # + # ------------------------------- # + + # Check for HVAC systems referenced by multiple water heating systems + hvac_systems.each do |hvac_system| + num_attached = 0 + @water_heating_systems.each do |water_heating_system| + next if water_heating_system.related_hvac_idref.nil? + next unless hvac_system.id == water_heating_system.related_hvac_idref + + num_attached += 1 + end + next if num_attached <= 1 + + errors << "RelatedHVACSystem '#{hvac_system.id}' is attached to multiple water heating systems." + end + + # Check for the sum of CFA served by distribution systems <= CFA + if not @building_construction.conditioned_floor_area.nil? + air_distributions = @hvac_distributions.select { |dist| dist if HPXML::HVACDistributionTypeAir == dist.distribution_system_type } + heating_dist = [] + cooling_dist = [] + air_distributions.each do |dist| + heating_systems = dist.hvac_systems.select { |sys| sys if (sys.respond_to? :fraction_heat_load_served) && (sys.fraction_heat_load_served.to_f > 0) } + cooling_systems = dist.hvac_systems.select { |sys| sys if (sys.respond_to? :fraction_cool_load_served) && (sys.fraction_cool_load_served.to_f > 0) } + if heating_systems.size > 0 + heating_dist << dist + end + if cooling_systems.size > 0 + cooling_dist << dist + end + end + heating_total_dist_cfa_served = heating_dist.map { |htg_dist| htg_dist.conditioned_floor_area_served.to_f }.sum(0.0) + cooling_total_dist_cfa_served = cooling_dist.map { |clg_dist| clg_dist.conditioned_floor_area_served.to_f }.sum(0.0) + if (heating_total_dist_cfa_served > @building_construction.conditioned_floor_area + 1.0) # Allow 1 ft2 of tolerance + errors << 'The total conditioned floor area served by the HVAC distribution system(s) for heating is larger than the conditioned floor area of the building.' + end + if (cooling_total_dist_cfa_served > @building_construction.conditioned_floor_area + 1.0) # Allow 1 ft2 of tolerance + errors << 'The total conditioned floor area served by the HVAC distribution system(s) for cooling is larger than the conditioned floor area of the building.' + end + end + + # Check for correct PrimaryIndicator values across all refrigerators + if @refrigerators.size > 1 + primary_indicators = @refrigerators.select { |r| r.primary_indicator }.size + if primary_indicators > 1 + errors << 'More than one refrigerator designated as the primary.' + elsif primary_indicators == 0 + errors << 'Could not find a primary refrigerator.' + end + end + + # Check for correct PrimaryHeatingSystem values across all HVAC systems + n_primary_heating = @heating_systems.select { |h| h.primary_system }.size + + @heat_pumps.select { |h| h.primary_heating_system }.size + if n_primary_heating > 1 + errors << 'More than one heating system designated as the primary.' + end + + # Check for correct PrimaryCoolingSystem values across all HVAC systems + n_primary_cooling = @cooling_systems.select { |c| c.primary_system }.size + + @heat_pumps.select { |c| c.primary_cooling_system }.size + if n_primary_cooling > 1 + errors << 'More than one cooling system designated as the primary.' + end + + # Check for at most 1 shared heating system and 1 shared cooling system + num_htg_shared = 0 + num_clg_shared = 0 + (@heating_systems + @heat_pumps).each do |hvac_system| + next unless hvac_system.is_shared_system + + num_htg_shared += 1 + end + (@cooling_systems + @heat_pumps).each do |hvac_system| + next unless hvac_system.is_shared_system + + num_clg_shared += 1 + end + if num_htg_shared > 1 + errors << 'More than one shared heating system found.' + end + if num_clg_shared > 1 + errors << 'More than one shared cooling system found.' + end + + return errors + end + + def collapse_enclosure_surfaces(surf_types_of_interest = nil) + # Collapses like surfaces into a single surface with, e.g., aggregate surface area. + # This can significantly speed up performance for HPXML files with lots of individual + # surfaces (e.g., windows). + + surf_types = { roofs: @roofs, + walls: @walls, + rim_joists: @rim_joists, + foundation_walls: @foundation_walls, + floors: @floors, + slabs: @slabs, + windows: @windows, + skylights: @skylights, + doors: @doors } + + attrs_to_ignore = [:id, + :insulation_id, + :perimeter_insulation_id, + :under_slab_insulation_id, + :area, + :length, + :exposed_perimeter, + :interior_shading_id, + :exterior_shading_id] + + # Look for pairs of surfaces that can be collapsed + like_foundation_walls = {} + surf_types.each do |surf_type, surfaces| + next unless surf_types_of_interest.nil? || surf_types_of_interest.include?(surf_type) + + for i in 0..surfaces.size - 1 + surf = surfaces[i] + next if surf.nil? + + for j in (surfaces.size - 1).downto(i + 1) + surf2 = surfaces[j] + next if surf2.nil? + + match = true + surf.class::ATTRS.each do |attribute| + next if attribute.to_s.end_with? '_isdefaulted' + next if attrs_to_ignore.include? attribute + next if (surf_type == :foundation_walls) && ([:azimuth, :orientation].include? attribute) # Azimuth of foundation walls is irrelevant + next if (surf_type == :foundation_walls) && (attribute == :depth_below_grade) # Ignore BG depth difference; we will later calculate an effective BG depth for the combined surface + next if surf.send(attribute) == surf2.send(attribute) + + match = false + break + end + next unless match + + if (surf_type == :foundation_walls) && (surf.depth_below_grade != surf2.depth_below_grade) + if like_foundation_walls[surf].nil? + like_foundation_walls[surf] = [{ bgdepth: surf.depth_below_grade, length: surf.area / surf.height }] + end + like_foundation_walls[surf] << { bgdepth: surf2.depth_below_grade, length: surf2.area / surf2.height } + end + + # Update values + if (not surf.area.nil?) && (not surf2.area.nil?) + surf.area += surf2.area + end + if (surf_type == :slabs) && (not surf.exposed_perimeter.nil?) && (not surf2.exposed_perimeter.nil?) + surf.exposed_perimeter += surf2.exposed_perimeter + end + if (surf_type == :foundation_walls) && (not surf.length.nil?) && (not surf2.length.nil?) + surf.length += surf2.length + end + + # Update subsurface idrefs as appropriate + (@windows + @doors).each do |subsurf| + next unless subsurf.wall_idref == surf2.id + + subsurf.wall_idref = surf.id + end + @skylights.each do |subsurf| + next unless subsurf.roof_idref == surf2.id + + subsurf.roof_idref = surf.id + end + + # Remove old surface + surfaces[j].delete + end + end + end + + like_foundation_walls.each do |foundation_wall, properties| + # Calculate weighted-average (by length) below-grade depth + foundation_wall.depth_below_grade = properties.map { |p| p[:bgdepth] * p[:length] }.sum(0.0) / properties.map { |p| p[:length] }.sum + end + end + end + class Site < BaseElement ATTRS = [:site_type, :surroundings, :vertical_surroundings, :shielding_of_home, :orientation_of_front_of_home, :azimuth_of_front_of_home, :fuels, :ground_conductivity] @@ -1448,10 +1710,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - site = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'BuildingSummary', 'Site']) + site = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'BuildingSummary', 'Site']) XMLHelper.add_element(site, 'SiteType', @site_type, :string, @site_type_isdefaulted) unless @site_type.nil? XMLHelper.add_element(site, 'Surroundings', @surroundings, :string) unless @surroundings.nil? XMLHelper.add_element(site, 'VerticalSurroundings', @vertical_surroundings, :string) unless @vertical_surroundings.nil? @@ -1472,10 +1734,10 @@ def to_oga(doc) end end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - site = XMLHelper.get_element(hpxml, 'Building/BuildingDetails/BuildingSummary/Site') + site = XMLHelper.get_element(building, 'BuildingDetails/BuildingSummary/Site') return if site.nil? @site_type = XMLHelper.get_value(site, 'SiteType', :string) @@ -1491,14 +1753,14 @@ def from_oga(hpxml) class NeighborBuildings < BaseArrayElement def add(**kwargs) - self << NeighborBuilding.new(@hpxml_object, **kwargs) + self << NeighborBuilding.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/BuildingSummary/Site/extension/Neighbors/NeighborBuilding').each do |neighbor_building| - self << NeighborBuilding.new(@hpxml_object, neighbor_building) + XMLHelper.get_elements(building, 'BuildingDetails/BuildingSummary/Site/extension/Neighbors/NeighborBuilding').each do |neighbor_building| + self << NeighborBuilding.new(@parent_object, neighbor_building) end end end @@ -1512,10 +1774,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - neighbors = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'BuildingSummary', 'Site', 'extension', 'Neighbors']) + neighbors = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'BuildingSummary', 'Site', 'extension', 'Neighbors']) neighbor_building = XMLHelper.add_element(neighbors, 'NeighborBuilding') XMLHelper.add_element(neighbor_building, 'Orientation', @orientation, :string, @orientation_isdefaulted) unless @orientation.nil? XMLHelper.add_element(neighbor_building, 'Azimuth', @azimuth, :integer, @azimuth_isdefaulted) unless @azimuth.nil? @@ -1523,7 +1785,7 @@ def to_oga(doc) XMLHelper.add_element(neighbor_building, 'Height', @height, :float) unless @height.nil? end - def from_oga(neighbor_building) + def from_doc(neighbor_building) return if neighbor_building.nil? @orientation = XMLHelper.get_value(neighbor_building, 'Orientation', :string) @@ -1542,20 +1804,20 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - building_occupancy = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'BuildingSummary', 'BuildingOccupancy']) + building_occupancy = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'BuildingSummary', 'BuildingOccupancy']) XMLHelper.add_element(building_occupancy, 'NumberofResidents', @number_of_residents, :float, @number_of_residents_isdefaulted) unless @number_of_residents.nil? XMLHelper.add_extension(building_occupancy, 'WeekdayScheduleFractions', @weekday_fractions, :string, @weekday_fractions_isdefaulted) unless @weekday_fractions.nil? XMLHelper.add_extension(building_occupancy, 'WeekendScheduleFractions', @weekend_fractions, :string, @weekend_fractions_isdefaulted) unless @weekend_fractions.nil? XMLHelper.add_extension(building_occupancy, 'MonthlyScheduleMultipliers', @monthly_multipliers, :string, @monthly_multipliers_isdefaulted) unless @monthly_multipliers.nil? end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - building_occupancy = XMLHelper.get_element(hpxml, 'Building/BuildingDetails/BuildingSummary/BuildingOccupancy') + building_occupancy = XMLHelper.get_element(building, 'BuildingDetails/BuildingSummary/BuildingOccupancy') return if building_occupancy.nil? @number_of_residents = XMLHelper.get_value(building_occupancy, 'NumberofResidents', :float) @@ -1569,7 +1831,7 @@ class BuildingConstruction < BaseElement ATTRS = [:year_built, :number_of_conditioned_floors, :number_of_conditioned_floors_above_grade, :average_ceiling_height, :number_of_bedrooms, :number_of_bathrooms, :conditioned_floor_area, :conditioned_building_volume, :residential_facility_type, - :building_footprint_area] + :building_footprint_area, :number_of_units] attr_accessor(*ATTRS) def check_for_errors @@ -1577,12 +1839,13 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - building_construction = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'BuildingSummary', 'BuildingConstruction']) + building_construction = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'BuildingSummary', 'BuildingConstruction']) XMLHelper.add_element(building_construction, 'YearBuilt', @year_built, :integer) unless @year_built.nil? XMLHelper.add_element(building_construction, 'ResidentialFacilityType', @residential_facility_type, :string) unless @residential_facility_type.nil? + XMLHelper.add_element(building_construction, 'NumberofUnits', @number_of_units, :integer, @number_of_units_isdefaulted) unless @number_of_units.nil? XMLHelper.add_element(building_construction, 'NumberofConditionedFloors', @number_of_conditioned_floors, :float) unless @number_of_conditioned_floors.nil? XMLHelper.add_element(building_construction, 'NumberofConditionedFloorsAboveGrade', @number_of_conditioned_floors_above_grade, :float) unless @number_of_conditioned_floors_above_grade.nil? XMLHelper.add_element(building_construction, 'AverageCeilingHeight', @average_ceiling_height, :float, @average_ceiling_height_isdefaulted) unless @average_ceiling_height.nil? @@ -1593,14 +1856,15 @@ def to_oga(doc) XMLHelper.add_element(building_construction, 'ConditionedBuildingVolume', @conditioned_building_volume, :float, @conditioned_building_volume_isdefaulted) unless @conditioned_building_volume.nil? end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - building_construction = XMLHelper.get_element(hpxml, 'Building/BuildingDetails/BuildingSummary/BuildingConstruction') + building_construction = XMLHelper.get_element(building, 'BuildingDetails/BuildingSummary/BuildingConstruction') return if building_construction.nil? @year_built = XMLHelper.get_value(building_construction, 'YearBuilt', :integer) @residential_facility_type = XMLHelper.get_value(building_construction, 'ResidentialFacilityType', :string) + @number_of_units = XMLHelper.get_value(building_construction, 'NumberofUnits', :integer) @number_of_conditioned_floors = XMLHelper.get_value(building_construction, 'NumberofConditionedFloors', :float) @number_of_conditioned_floors_above_grade = XMLHelper.get_value(building_construction, 'NumberofConditionedFloorsAboveGrade', :float) @average_ceiling_height = XMLHelper.get_value(building_construction, 'AverageCeilingHeight', :float) @@ -1612,10 +1876,97 @@ def from_oga(hpxml) end end + class BuildingHeader < BaseElement + ATTRS = [:schedules_filepaths, :extension_properties, :natvent_days_per_week, + :heat_pump_sizing_methodology, :allow_increased_fixed_capacities, + :shading_summer_begin_month, :shading_summer_begin_day, :shading_summer_end_month, + :shading_summer_end_day, :manualj_heating_design_temp, :manualj_cooling_design_temp, + :manualj_heating_setpoint, :manualj_cooling_setpoint, :manualj_humidity_setpoint, + :manualj_internal_loads_sensible, :manualj_internal_loads_latent, :manualj_num_occupants] + attr_accessor(*ATTRS) + + def check_for_errors + errors = [] + errors += HPXML::check_dates('Shading Summer Season', @shading_summer_begin_month, @shading_summer_begin_day, @shading_summer_end_month, @shading_summer_end_day) + return errors + end + + def to_doc(building) + return if nil? + + building_summary = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'BuildingSummary']) + if (not @heat_pump_sizing_methodology.nil?) || (not @allow_increased_fixed_capacities.nil?) + hvac_sizing_control = XMLHelper.create_elements_as_needed(building_summary, ['extension', 'HVACSizingControl']) + XMLHelper.add_element(hvac_sizing_control, 'HeatPumpSizingMethodology', @heat_pump_sizing_methodology, :string, @heat_pump_sizing_methodology_isdefaulted) unless @heat_pump_sizing_methodology.nil? + XMLHelper.add_element(hvac_sizing_control, 'AllowIncreasedFixedCapacities', @allow_increased_fixed_capacities, :boolean, @allow_increased_fixed_capacities_isdefaulted) unless @allow_increased_fixed_capacities.nil? + end + if (not @manualj_heating_design_temp.nil?) || (not @manualj_cooling_design_temp.nil?) || (not @manualj_heating_setpoint.nil?) || (not @manualj_cooling_setpoint.nil?) || (not @manualj_humidity_setpoint.nil?) || (not @manualj_internal_loads_sensible.nil?) || (not @manualj_internal_loads_latent.nil?) || (not @manualj_num_occupants.nil?) + manualj_sizing_inputs = XMLHelper.create_elements_as_needed(building_summary, ['extension', 'HVACSizingControl', 'ManualJInputs']) + XMLHelper.add_element(manualj_sizing_inputs, 'HeatingDesignTemperature', @manualj_heating_design_temp, :float, @manualj_heating_design_temp_isdefaulted) unless @manualj_heating_design_temp.nil? + XMLHelper.add_element(manualj_sizing_inputs, 'CoolingDesignTemperature', @manualj_cooling_design_temp, :float, @manualj_cooling_design_temp_isdefaulted) unless @manualj_cooling_design_temp.nil? + XMLHelper.add_element(manualj_sizing_inputs, 'HeatingSetpoint', @manualj_heating_setpoint, :float, @manualj_heating_setpoint_isdefaulted) unless @manualj_heating_setpoint.nil? + XMLHelper.add_element(manualj_sizing_inputs, 'CoolingSetpoint', @manualj_cooling_setpoint, :float, @manualj_cooling_setpoint_isdefaulted) unless @manualj_cooling_setpoint.nil? + XMLHelper.add_element(manualj_sizing_inputs, 'HumiditySetpoint', @manualj_humidity_setpoint, :float, @manualj_humidity_setpoint_isdefaulted) unless @manualj_humidity_setpoint.nil? + XMLHelper.add_element(manualj_sizing_inputs, 'InternalLoadsSensible', @manualj_internal_loads_sensible, :float, @manualj_internal_loads_sensible_isdefaulted) unless @manualj_internal_loads_sensible.nil? + XMLHelper.add_element(manualj_sizing_inputs, 'InternalLoadsLatent', @manualj_internal_loads_latent, :float, @manualj_internal_loads_latent_isdefaulted) unless @manualj_internal_loads_latent.nil? + XMLHelper.add_element(manualj_sizing_inputs, 'NumberofOccupants', @manualj_num_occupants, :integer, @manualj_num_occupants_isdefaulted) unless @manualj_num_occupants.nil? + end + XMLHelper.add_extension(building_summary, 'NaturalVentilationAvailabilityDaysperWeek', @natvent_days_per_week, :integer, @natvent_days_per_week_isdefaulted) unless @natvent_days_per_week.nil? + if (not @schedules_filepaths.nil?) && (not @schedules_filepaths.empty?) + @schedules_filepaths.each do |schedules_filepath| + XMLHelper.add_extension(building_summary, 'SchedulesFilePath', schedules_filepath, :string) + end + end + if (not @shading_summer_begin_month.nil?) || (not @shading_summer_begin_day.nil?) || (not @shading_summer_end_month.nil?) || (not @shading_summer_end_day.nil?) + window_shading_season = XMLHelper.create_elements_as_needed(building_summary, ['extension', 'ShadingControl']) + XMLHelper.add_element(window_shading_season, 'SummerBeginMonth', @shading_summer_begin_month, :integer, @shading_summer_begin_month_isdefaulted) unless @shading_summer_begin_month.nil? + XMLHelper.add_element(window_shading_season, 'SummerBeginDayOfMonth', @shading_summer_begin_day, :integer, @shading_summer_begin_day_isdefaulted) unless @shading_summer_begin_day.nil? + XMLHelper.add_element(window_shading_season, 'SummerEndMonth', @shading_summer_end_month, :integer, @shading_summer_end_month_isdefaulted) unless @shading_summer_end_month.nil? + XMLHelper.add_element(window_shading_season, 'SummerEndDayOfMonth', @shading_summer_end_day, :integer, @shading_summer_end_day_isdefaulted) unless @shading_summer_end_day.nil? + end + if (not @extension_properties.nil?) && (not @extension_properties.empty?) + properties = XMLHelper.create_elements_as_needed(building_summary, ['extension', 'AdditionalProperties']) + @extension_properties.each do |key, value| + XMLHelper.add_element(properties, key, value, :string) + end + end + end + + def from_doc(building) + return if building.nil? + + @schedules_filepaths = XMLHelper.get_values(building, 'BuildingDetails/BuildingSummary/extension/SchedulesFilePath', :string) + @natvent_days_per_week = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/NaturalVentilationAvailabilityDaysperWeek', :integer) + @shading_summer_begin_month = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/ShadingControl/SummerBeginMonth', :integer) + @shading_summer_begin_day = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/ShadingControl/SummerBeginDayOfMonth', :integer) + @shading_summer_end_month = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/ShadingControl/SummerEndMonth', :integer) + @shading_summer_end_day = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/ShadingControl/SummerEndDayOfMonth', :integer) + @heat_pump_sizing_methodology = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/HVACSizingControl/HeatPumpSizingMethodology', :string) + @allow_increased_fixed_capacities = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/HVACSizingControl/AllowIncreasedFixedCapacities', :boolean) + @manualj_heating_design_temp = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/HVACSizingControl/ManualJInputs/HeatingDesignTemperature', :float) + @manualj_cooling_design_temp = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/HVACSizingControl/ManualJInputs/CoolingDesignTemperature', :float) + @manualj_heating_setpoint = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/HVACSizingControl/ManualJInputs/HeatingSetpoint', :float) + @manualj_cooling_setpoint = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/HVACSizingControl/ManualJInputs/CoolingSetpoint', :float) + @manualj_humidity_setpoint = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/HVACSizingControl/ManualJInputs/HumiditySetpoint', :float) + @manualj_internal_loads_sensible = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/HVACSizingControl/ManualJInputs/InternalLoadsSensible', :float) + @manualj_internal_loads_latent = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/HVACSizingControl/ManualJInputs/InternalLoadsLatent', :float) + @manualj_num_occupants = XMLHelper.get_value(building, 'BuildingDetails/BuildingSummary/extension/HVACSizingControl/ManualJInputs/NumberofOccupants', :integer) + @extension_properties = {} + XMLHelper.get_elements(building, 'BuildingDetails/BuildingSummary/extension/AdditionalProperties').each do |property| + property.children.each do |child| + next unless child.is_a? Oga::XML::Element + + @extension_properties[child.name] = child.text + @extension_properties[child.name] = nil if @extension_properties[child.name].empty? + end + end + end + end + class ClimateandRiskZones < BaseElement - def initialize(hpxml_object, *args) - @climate_zone_ieccs = ClimateZoneIECCs.new(hpxml_object) - super(hpxml_object, *args) + def initialize(hpxml_bldg, *args) + @climate_zone_ieccs = ClimateZoneIECCs.new(hpxml_bldg) + super(hpxml_bldg, *args) end ATTRS = [:weather_station_id, :weather_station_name, :weather_station_wmo, :weather_station_epw_filepath] attr_accessor(*ATTRS) @@ -1627,12 +1978,12 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - climate_and_risk_zones = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'ClimateandRiskZones']) + climate_and_risk_zones = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'ClimateandRiskZones']) - @climate_zone_ieccs.to_oga(climate_and_risk_zones) + @climate_zone_ieccs.to_doc(climate_and_risk_zones) if not @weather_station_id.nil? weather_station = XMLHelper.add_element(climate_and_risk_zones, 'WeatherStation') @@ -1644,13 +1995,13 @@ def to_oga(doc) end end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - climate_and_risk_zones = XMLHelper.get_element(hpxml, 'Building/BuildingDetails/ClimateandRiskZones') + climate_and_risk_zones = XMLHelper.get_element(building, 'BuildingDetails/ClimateandRiskZones') return if climate_and_risk_zones.nil? - @climate_zone_ieccs.from_oga(climate_and_risk_zones) + @climate_zone_ieccs.from_doc(climate_and_risk_zones) weather_station = XMLHelper.get_element(climate_and_risk_zones, 'WeatherStation') if not weather_station.nil? @@ -1664,14 +2015,14 @@ def from_oga(hpxml) class ClimateZoneIECCs < BaseArrayElement def add(**kwargs) - self << ClimateZoneIECC.new(@hpxml_object, **kwargs) + self << ClimateZoneIECC.new(@parent_object, **kwargs) end - def from_oga(climate_and_risk_zones) + def from_doc(climate_and_risk_zones) return if climate_and_risk_zones.nil? XMLHelper.get_elements(climate_and_risk_zones, 'ClimateZoneIECC').each do |climate_zone_iecc| - self << ClimateZoneIECC.new(@hpxml_object, climate_zone_iecc) + self << ClimateZoneIECC.new(@parent_object, climate_zone_iecc) end end end @@ -1681,7 +2032,7 @@ class ClimateZoneIECC < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.climate_and_risk_zones.climate_zone_ieccs.delete(self) + @parent_object.climate_and_risk_zones.climate_zone_ieccs.delete(self) end def check_for_errors @@ -1689,13 +2040,13 @@ def check_for_errors return errors end - def to_oga(climate_and_risk_zones) + def to_doc(climate_and_risk_zones) climate_zone_iecc = XMLHelper.add_element(climate_and_risk_zones, 'ClimateZoneIECC') XMLHelper.add_element(climate_zone_iecc, 'Year', @year, :integer, @year_isdefaulted) unless @year.nil? XMLHelper.add_element(climate_zone_iecc, 'ClimateZone', @zone, :string, @zone_isdefaulted) unless @zone.nil? end - def from_oga(climate_zone_iecc) + def from_doc(climate_zone_iecc) return if climate_zone_iecc.nil? @year = XMLHelper.get_value(climate_zone_iecc, 'Year', :integer) @@ -1712,17 +2063,17 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - air_infiltration = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Enclosure', 'AirInfiltration']) + air_infiltration = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Enclosure', 'AirInfiltration']) XMLHelper.add_extension(air_infiltration, 'HasFlueOrChimneyInConditionedSpace', @has_flue_or_chimney_in_conditioned_space, :boolean, @has_flue_or_chimney_in_conditioned_space_isdefaulted) unless @has_flue_or_chimney_in_conditioned_space.nil? end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - air_infiltration = XMLHelper.get_element(hpxml, 'Building/BuildingDetails/Enclosure/AirInfiltration') + air_infiltration = XMLHelper.get_element(building, 'BuildingDetails/Enclosure/AirInfiltration') return if air_infiltration.nil? @has_flue_or_chimney_in_conditioned_space = XMLHelper.get_value(air_infiltration, 'extension/HasFlueOrChimneyInConditionedSpace', :boolean) @@ -1731,14 +2082,14 @@ def from_oga(hpxml) class AirInfiltrationMeasurements < BaseArrayElement def add(**kwargs) - self << AirInfiltrationMeasurement.new(@hpxml_object, **kwargs) + self << AirInfiltrationMeasurement.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Enclosure/AirInfiltration/AirInfiltrationMeasurement').each do |air_infiltration_measurement| - self << AirInfiltrationMeasurement.new(@hpxml_object, air_infiltration_measurement) + XMLHelper.get_elements(building, 'BuildingDetails/Enclosure/AirInfiltration/AirInfiltrationMeasurement').each do |air_infiltration_measurement| + self << AirInfiltrationMeasurement.new(@parent_object, air_infiltration_measurement) end end end @@ -1753,10 +2104,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - air_infiltration = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Enclosure', 'AirInfiltration']) + air_infiltration = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Enclosure', 'AirInfiltration']) air_infiltration_measurement = XMLHelper.add_element(air_infiltration, 'AirInfiltrationMeasurement') sys_id = XMLHelper.add_element(air_infiltration_measurement, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -1775,7 +2126,7 @@ def to_oga(doc) XMLHelper.add_extension(air_infiltration_measurement, 'Aext', @a_ext, :float, @a_ext_isdefaulted) unless @a_ext.nil? end - def from_oga(air_infiltration_measurement) + def from_doc(air_infiltration_measurement) return if air_infiltration_measurement.nil? @id = HPXML::get_id(air_infiltration_measurement) @@ -1794,14 +2145,14 @@ def from_oga(air_infiltration_measurement) class Attics < BaseArrayElement def add(**kwargs) - self << Attic.new(@hpxml_object, **kwargs) + self << Attic.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Enclosure/Attics/Attic').each do |attic| - self << Attic.new(@hpxml_object, attic) + XMLHelper.get_elements(building, 'BuildingDetails/Enclosure/Attics/Attic').each do |attic| + self << Attic.new(@parent_object, attic) end end end @@ -1814,7 +2165,7 @@ class Attic < BaseElement def attached_roofs return [] if @attached_to_roof_idrefs.nil? - list = @hpxml_object.roofs.select { |roof| @attached_to_roof_idrefs.include? roof.id } + list = @parent_object.roofs.select { |roof| @attached_to_roof_idrefs.include? roof.id } if @attached_to_roof_idrefs.size > list.size fail "Attached roof not found for attic '#{@id}'." end @@ -1825,7 +2176,7 @@ def attached_roofs def attached_walls return [] if @attached_to_wall_idrefs.nil? - list = @hpxml_object.walls.select { |wall| @attached_to_wall_idrefs.include? wall.id } + list = @parent_object.walls.select { |wall| @attached_to_wall_idrefs.include? wall.id } if @attached_to_wall_idrefs.size > list.size fail "Attached wall not found for attic '#{@id}'." end @@ -1836,7 +2187,7 @@ def attached_walls def attached_floors return [] if @attached_to_floor_idrefs.nil? - list = @hpxml_object.floors.select { |floor| @attached_to_floor_idrefs.include? floor.id } + list = @parent_object.floors.select { |floor| @attached_to_floor_idrefs.include? floor.id } if @attached_to_floor_idrefs.size > list.size fail "Attached floor not found for attic '#{@id}'." end @@ -1848,7 +2199,7 @@ def to_location return if @attic_type.nil? if [AtticTypeCathedral, AtticTypeConditioned, AtticTypeFlatRoof, AtticTypeBelowApartment].include? @attic_type - return LocationLivingSpace + return LocationConditionedSpace elsif [AtticTypeUnvented].include? @attic_type return LocationAtticUnvented elsif [AtticTypeVented].include? @attic_type @@ -1859,7 +2210,7 @@ def to_location end def delete - @hpxml_object.attics.delete(self) + @parent_object.attics.delete(self) end def check_for_errors @@ -1871,10 +2222,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - attics = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Enclosure', 'Attics']) + attics = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Enclosure', 'Attics']) attic = XMLHelper.add_element(attics, 'Attic') sys_id = XMLHelper.add_element(attic, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -1925,7 +2276,7 @@ def to_oga(doc) end end - def from_oga(attic) + def from_doc(attic) return if attic.nil? @id = HPXML::get_id(attic) @@ -1964,28 +2315,29 @@ def from_oga(attic) class Foundations < BaseArrayElement def add(**kwargs) - self << Foundation.new(@hpxml_object, **kwargs) + self << Foundation.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Enclosure/Foundations/Foundation').each do |foundation| - self << Foundation.new(@hpxml_object, foundation) + XMLHelper.get_elements(building, 'BuildingDetails/Enclosure/Foundations/Foundation').each do |foundation| + self << Foundation.new(@parent_object, foundation) end end end class Foundation < BaseElement ATTRS = [:id, :foundation_type, :vented_crawlspace_sla, :within_infiltration_volume, - :attached_to_slab_idrefs, :attached_to_floor_idrefs, :attached_to_foundation_wall_idrefs, - :attached_to_wall_idrefs, :attached_to_rim_joist_idrefs] + :belly_wing_skirt_present, :attached_to_slab_idrefs, :attached_to_floor_idrefs, + :attached_to_foundation_wall_idrefs, :attached_to_wall_idrefs, + :attached_to_rim_joist_idrefs] attr_accessor(*ATTRS) def attached_slabs return [] if @attached_to_slab_idrefs.nil? - list = @hpxml_object.slabs.select { |slab| @attached_to_slab_idrefs.include? slab.id } + list = @parent_object.slabs.select { |slab| @attached_to_slab_idrefs.include? slab.id } if @attached_to_slab_idrefs.size > list.size fail "Attached slab not found for foundation '#{@id}'." end @@ -1996,7 +2348,7 @@ def attached_slabs def attached_floors return [] if @attached_to_floor_idrefs.nil? - list = @hpxml_object.floors.select { |floor| @attached_to_floor_idrefs.include? floor.id } + list = @parent_object.floors.select { |floor| @attached_to_floor_idrefs.include? floor.id } if @attached_to_floor_idrefs.size > list.size fail "Attached floor not found for foundation '#{@id}'." end @@ -2007,7 +2359,7 @@ def attached_floors def attached_foundation_walls return [] if @attached_to_foundation_wall_idrefs.nil? - list = @hpxml_object.foundation_walls.select { |foundation_wall| @attached_to_foundation_wall_idrefs.include? foundation_wall.id } + list = @parent_object.foundation_walls.select { |foundation_wall| @attached_to_foundation_wall_idrefs.include? foundation_wall.id } if @attached_to_foundation_wall_idrefs.size > list.size fail "Attached foundation wall not found for foundation '#{@id}'." end @@ -2018,7 +2370,7 @@ def attached_foundation_walls def attached_walls return [] if @attached_to_wall_idrefs.nil? - list = @hpxml_object.walls.select { |wall| @attached_to_wall_idrefs.include? wall.id } + list = @parent_object.walls.select { |wall| @attached_to_wall_idrefs.include? wall.id } if @attached_to_wall_idrefs.size > list.size fail "Attached wall not found for foundation '#{@id}'." end @@ -2029,7 +2381,7 @@ def attached_walls def attached_rim_joists return [] if @attached_to_rim_joist_idrefs.nil? - list = @hpxml_object.rim_joists.select { |rim_joist| @attached_to_rim_joist_idrefs.include? rim_joist.id } + list = @parent_object.rim_joists.select { |rim_joist| @attached_to_rim_joist_idrefs.include? rim_joist.id } if @attached_to_rim_joist_idrefs.size > list.size fail "Attached rim joist not found for foundation '#{@id}'." end @@ -2041,7 +2393,7 @@ def to_location return if @foundation_type.nil? if [FoundationTypeSlab, FoundationTypeAboveApartment].include? @foundation_type - return LocationLivingSpace + return LocationConditionedSpace elsif [FoundationTypeAmbient].include? @foundation_type return LocationOutside elsif [FoundationTypeBasementConditioned].include? @foundation_type @@ -2055,7 +2407,9 @@ def to_location elsif @foundation_type == FoundationTypeCrawlspaceConditioned return LocationCrawlspaceConditioned elsif @foundation_type == FoundationTypeSlab - return LocationLivingSpace + return LocationConditionedSpace + elsif @foundation_type == FoundationTypeBellyAndWing + return LocationManufacturedHomeUnderBelly else fail "Unexpected foundation type: '#{@foundation_type}'." end @@ -2077,7 +2431,7 @@ def area end def delete - @hpxml_object.foundations.delete(self) + @parent_object.foundations.delete(self) end def check_for_errors @@ -2091,10 +2445,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - foundations = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Enclosure', 'Foundations']) + foundations = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Enclosure', 'Foundations']) foundation = XMLHelper.add_element(foundations, 'Foundation') sys_id = XMLHelper.add_element(foundation, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -2122,6 +2476,9 @@ def to_oga(doc) elsif @foundation_type == FoundationTypeCrawlspaceConditioned crawlspace = XMLHelper.add_element(foundation_type_el, 'Crawlspace') XMLHelper.add_element(crawlspace, 'Conditioned', true, :boolean) + elsif @foundation_type == FoundationTypeBellyAndWing + belly_and_wing = XMLHelper.add_element(foundation_type_el, 'BellyAndWing') + XMLHelper.add_element(belly_and_wing, 'SkirtPresent', @belly_wing_skirt_present, :boolean, @belly_wing_skirt_present_isdefaulted) unless @belly_wing_skirt_present.nil? else fail "Unhandled foundation type '#{@foundation_type}'." end @@ -2159,7 +2516,7 @@ def to_oga(doc) end end - def from_oga(foundation) + def from_doc(foundation) return if foundation.nil? @id = HPXML::get_id(foundation) @@ -2179,6 +2536,9 @@ def from_oga(foundation) @foundation_type = FoundationTypeAmbient elsif XMLHelper.has_element(foundation, 'FoundationType/AboveApartment') @foundation_type = FoundationTypeAboveApartment + elsif XMLHelper.has_element(foundation, 'FoundationType/BellyAndWing') + @foundation_type = FoundationTypeBellyAndWing + @belly_wing_skirt_present = XMLHelper.get_value(foundation, 'FoundationType/BellyAndWing/SkirtPresent', :boolean) end if @foundation_type == FoundationTypeCrawlspaceVented @vented_crawlspace_sla = XMLHelper.get_value(foundation, "VentilationRate[UnitofMeasure='#{UnitsSLA}']/Value", :float) @@ -2209,14 +2569,14 @@ def from_oga(foundation) class Roofs < BaseArrayElement def add(**kwargs) - self << Roof.new(@hpxml_object, **kwargs) + self << Roof.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Enclosure/Roofs/Roof').each do |roof| - self << Roof.new(@hpxml_object, roof) + XMLHelper.get_elements(building, 'BuildingDetails/Enclosure/Roofs/Roof').each do |roof| + self << Roof.new(@parent_object, roof) end end end @@ -2231,7 +2591,7 @@ class Roof < BaseElement attr_accessor(*ATTRS) def skylights - return @hpxml_object.skylights.select { |skylight| skylight.roof_idref == @id } + return @parent_object.skylights.select { |skylight| skylight.roof_idref == @id } end def net_area @@ -2272,11 +2632,11 @@ def is_conditioned end def delete - @hpxml_object.roofs.delete(self) + @parent_object.roofs.delete(self) skylights.reverse_each do |skylight| skylight.delete end - @hpxml_object.attics.each do |attic| + @parent_object.attics.each do |attic| attic.attached_to_roof_idrefs.delete(@id) unless attic.attached_to_roof_idrefs.nil? end end @@ -2287,10 +2647,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - roofs = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Enclosure', 'Roofs']) + roofs = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Enclosure', 'Roofs']) roof = XMLHelper.add_element(roofs, 'Roof') sys_id = XMLHelper.add_element(roof, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -2337,7 +2697,7 @@ def to_oga(doc) end end - def from_oga(roof) + def from_doc(roof) return if roof.nil? @id = HPXML::get_id(roof) @@ -2373,14 +2733,14 @@ def from_oga(roof) class RimJoists < BaseArrayElement def add(**kwargs) - self << RimJoist.new(@hpxml_object, **kwargs) + self << RimJoist.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Enclosure/RimJoists/RimJoist').each do |rim_joist| - self << RimJoist.new(@hpxml_object, rim_joist) + XMLHelper.get_elements(building, 'BuildingDetails/Enclosure/RimJoists/RimJoist').each do |rim_joist| + self << RimJoist.new(@parent_object, rim_joist) end end end @@ -2419,9 +2779,13 @@ def is_conditioned return HPXML::is_conditioned(self) end + def net_area + return area + end + def delete - @hpxml_object.rim_joists.delete(self) - @hpxml_object.foundations.each do |foundation| + @parent_object.rim_joists.delete(self) + @parent_object.foundations.each do |foundation| foundation.attached_to_rim_joist_idrefs.delete(@id) unless foundation.attached_to_rim_joist_idrefs.nil? end end @@ -2431,10 +2795,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - rim_joists = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Enclosure', 'RimJoists']) + rim_joists = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Enclosure', 'RimJoists']) rim_joist = XMLHelper.add_element(rim_joists, 'RimJoist') sys_id = XMLHelper.add_element(rim_joist, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -2471,7 +2835,7 @@ def to_oga(doc) end end - def from_oga(rim_joist) + def from_doc(rim_joist) return if rim_joist.nil? @id = HPXML::get_id(rim_joist) @@ -2497,14 +2861,14 @@ def from_oga(rim_joist) class Walls < BaseArrayElement def add(**kwargs) - self << Wall.new(@hpxml_object, **kwargs) + self << Wall.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Enclosure/Walls/Wall').each do |wall| - self << Wall.new(@hpxml_object, wall) + XMLHelper.get_elements(building, 'BuildingDetails/Enclosure/Walls/Wall').each do |wall| + self << Wall.new(@parent_object, wall) end end end @@ -2518,11 +2882,11 @@ class Wall < BaseElement attr_accessor(*ATTRS) def windows - return @hpxml_object.windows.select { |window| window.wall_idref == @id } + return @parent_object.windows.select { |window| window.wall_idref == @id } end def doors - return @hpxml_object.doors.select { |door| door.wall_idref == @id } + return @parent_object.doors.select { |door| door.wall_idref == @id } end def net_area @@ -2567,17 +2931,17 @@ def is_conditioned end def delete - @hpxml_object.walls.delete(self) + @parent_object.walls.delete(self) windows.reverse_each do |window| window.delete end doors.reverse_each do |door| door.delete end - @hpxml_object.attics.each do |attic| + @parent_object.attics.each do |attic| attic.attached_to_wall_idrefs.delete(@id) unless attic.attached_to_wall_idrefs.nil? end - @hpxml_object.foundations.each do |foundation| + @parent_object.foundations.each do |foundation| foundation.attached_to_wall_idrefs.delete(@id) unless foundation.attached_to_wall_idrefs.nil? end end @@ -2588,10 +2952,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - walls = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Enclosure', 'Walls']) + walls = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Enclosure', 'Walls']) wall = XMLHelper.add_element(walls, 'Wall') sys_id = XMLHelper.add_element(wall, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -2644,7 +3008,7 @@ def to_oga(doc) end end - def from_oga(wall) + def from_doc(wall) return if wall.nil? @id = HPXML::get_id(wall) @@ -2683,14 +3047,14 @@ def from_oga(wall) class FoundationWalls < BaseArrayElement def add(**kwargs) - self << FoundationWall.new(@hpxml_object, **kwargs) + self << FoundationWall.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall').each do |foundation_wall| - self << FoundationWall.new(@hpxml_object, foundation_wall) + XMLHelper.get_elements(building, 'BuildingDetails/Enclosure/FoundationWalls/FoundationWall').each do |foundation_wall| + self << FoundationWall.new(@parent_object, foundation_wall) end end end @@ -2705,11 +3069,11 @@ class FoundationWall < BaseElement attr_accessor(*ATTRS) def windows - return @hpxml_object.windows.select { |window| window.wall_idref == @id } + return @parent_object.windows.select { |window| window.wall_idref == @id } end def doors - return @hpxml_object.doors.select { |door| door.wall_idref == @id } + return @parent_object.doors.select { |door| door.wall_idref == @id } end def net_area @@ -2717,7 +3081,7 @@ def net_area return if @area.nil? val = @area - (@hpxml_object.windows + @hpxml_object.doors).each do |subsurface| + (@parent_object.windows + @parent_object.doors).each do |subsurface| next unless subsurface.wall_idref == @id val -= subsurface.area @@ -2727,6 +3091,26 @@ def net_area return val end + def connected_slabs + return @parent_object.slabs.select { |s| s.connected_foundation_walls.include? self } + end + + def exposed_fraction + # Calculate total slab exposed perimeter + slab_exposed_length = connected_slabs.select { |s| s.interior_adjacent_to == interior_adjacent_to }.map { |s| s.exposed_perimeter }.sum + + # Calculate total length of exterior foundation walls + ext_adjacent_fnd_walls = connected_slabs.map { |s| s.connected_foundation_walls.select { |fw| fw.is_exterior } }.flatten.uniq + wall_total_length = ext_adjacent_fnd_walls.map { |fw| fw.area / fw.height }.sum + + # Calculate exposed fraction + if slab_exposed_length < wall_total_length + return slab_exposed_length / wall_total_length + end + + return 1.0 + end + def is_exterior if @exterior_adjacent_to == LocationGround return true @@ -2756,14 +3140,14 @@ def is_conditioned end def delete - @hpxml_object.foundation_walls.delete(self) + @parent_object.foundation_walls.delete(self) windows.reverse_each do |window| window.delete end doors.reverse_each do |door| door.delete end - @hpxml_object.foundations.each do |foundation| + @parent_object.foundations.each do |foundation| foundation.attached_to_foundation_wall_idrefs.delete(@id) unless foundation.attached_to_foundation_wall_idrefs.nil? end end @@ -2774,10 +3158,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - foundation_walls = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Enclosure', 'FoundationWalls']) + foundation_walls = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Enclosure', 'FoundationWalls']) foundation_wall = XMLHelper.add_element(foundation_walls, 'FoundationWall') sys_id = XMLHelper.add_element(foundation_wall, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -2820,7 +3204,7 @@ def to_oga(doc) end end - def from_oga(foundation_wall) + def from_doc(foundation_wall) return if foundation_wall.nil? @id = HPXML::get_id(foundation_wall) @@ -2856,14 +3240,14 @@ def from_oga(foundation_wall) class Floors < BaseArrayElement def add(**kwargs) - self << Floor.new(@hpxml_object, **kwargs) + self << Floor.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Enclosure/Floors/Floor').each do |floor| - self << Floor.new(@hpxml_object, floor) + XMLHelper.get_elements(building, 'BuildingDetails/Enclosure/Floors/Floor').each do |floor| + self << Floor.new(@parent_object, floor) end end end @@ -2876,7 +3260,7 @@ class Floor < BaseElement attr_accessor(*ATTRS) def is_ceiling - # From the perspective of the living space + # From the perspective of the conditioned space if @floor_or_ceiling.nil? ceiling_locations = [LocationAtticUnconditioned, LocationAtticVented, @@ -2896,11 +3280,7 @@ def is_floor end def is_exterior - if @exterior_adjacent_to == LocationOutside - return true - end - - return false + return [LocationOutside, LocationManufacturedHomeUnderBelly].include?(@exterior_adjacent_to) end def is_interior @@ -2924,14 +3304,14 @@ def is_conditioned end def delete - @hpxml_object.floors.delete(self) - @hpxml_object.attics.each do |attic| + @parent_object.floors.delete(self) + @parent_object.attics.each do |attic| attic.attached_to_floor_idrefs.delete(@id) unless attic.attached_to_floor_idrefs.nil? end - @hpxml_object.foundations.each do |foundation| + @parent_object.foundations.each do |foundation| foundation.attached_to_floor_idrefs.delete(@id) unless foundation.attached_to_floor_idrefs.nil? end - @hpxml_object.attics.each do |attic| + @parent_object.attics.each do |attic| attic.attached_to_floor_idrefs.delete(@id) unless attic.attached_to_floor_idrefs.nil? end end @@ -2941,10 +3321,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - floors = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Enclosure', 'Floors']) + floors = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Enclosure', 'Floors']) floor = XMLHelper.add_element(floors, 'Floor') sys_id = XMLHelper.add_element(floor, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -2988,7 +3368,7 @@ def to_oga(doc) end end - def from_oga(floor) + def from_doc(floor) return if floor.nil? @id = HPXML::get_id(floor) @@ -3018,14 +3398,14 @@ def from_oga(floor) class Slabs < BaseArrayElement def add(**kwargs) - self << Slab.new(@hpxml_object, **kwargs) + self << Slab.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Enclosure/Slabs/Slab').each do |slab| - self << Slab.new(@hpxml_object, slab) + XMLHelper.get_elements(building, 'BuildingDetails/Enclosure/Slabs/Slab').each do |slab| + self << Slab.new(@parent_object, slab) end end end @@ -3062,9 +3442,13 @@ def is_conditioned return HPXML::is_conditioned(self) end + def connected_foundation_walls + return @parent_object.foundation_walls.select { |fw| interior_adjacent_to == fw.interior_adjacent_to || interior_adjacent_to == fw.exterior_adjacent_to } + end + def delete - @hpxml_object.slabs.delete(self) - @hpxml_object.foundations.each do |foundation| + @parent_object.slabs.delete(self) + @parent_object.foundations.each do |foundation| foundation.attached_to_slab_idrefs.delete(@id) unless foundation.attached_to_slab_idrefs.nil? end end @@ -3074,10 +3458,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - slabs = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Enclosure', 'Slabs']) + slabs = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Enclosure', 'Slabs']) slab = XMLHelper.add_element(slabs, 'Slab') sys_id = XMLHelper.add_element(slab, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -3085,7 +3469,7 @@ def to_oga(doc) XMLHelper.add_element(slab, 'Area', @area, :float) unless @area.nil? XMLHelper.add_element(slab, 'Thickness', @thickness, :float, @thickness_isdefaulted) unless @thickness.nil? XMLHelper.add_element(slab, 'ExposedPerimeter', @exposed_perimeter, :float) unless @exposed_perimeter.nil? - XMLHelper.add_element(slab, 'DepthBelowGrade', @depth_below_grade, :float) unless @depth_below_grade.nil? + XMLHelper.add_element(slab, 'DepthBelowGrade', @depth_below_grade, :float, @depth_below_grade_isdefaulted) unless @depth_below_grade.nil? insulation = XMLHelper.add_element(slab, 'PerimeterInsulation') sys_id = XMLHelper.add_element(insulation, 'SystemIdentifier') if not @perimeter_insulation_id.nil? @@ -3111,7 +3495,7 @@ def to_oga(doc) XMLHelper.add_extension(slab, 'CarpetRValue', @carpet_r_value, :float, @carpet_r_value_isdefaulted) unless @carpet_r_value.nil? end - def from_oga(slab) + def from_doc(slab) return if slab.nil? @id = HPXML::get_id(slab) @@ -3140,14 +3524,14 @@ def from_oga(slab) class Windows < BaseArrayElement def add(**kwargs) - self << Window.new(@hpxml_object, **kwargs) + self << Window.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Enclosure/Windows/Window').each do |window| - self << Window.new(@hpxml_object, window) + XMLHelper.get_elements(building, 'BuildingDetails/Enclosure/Windows/Window').each do |window| + self << Window.new(@parent_object, window) end end end @@ -3155,8 +3539,8 @@ def from_oga(hpxml) class Window < BaseElement ATTRS = [:id, :area, :azimuth, :orientation, :frame_type, :thermal_break, :glass_layers, :glass_type, :gas_fill, :ufactor, :shgc, :interior_shading_factor_summer, - :interior_shading_factor_winter, :interior_shading_type, :exterior_shading_factor_summer, - :exterior_shading_factor_winter, :exterior_shading_type, :storm_type, :overhangs_depth, + :interior_shading_id, :interior_shading_factor_winter, :interior_shading_type, :exterior_shading_factor_summer, + :exterior_shading_id, :exterior_shading_factor_winter, :exterior_shading_type, :storm_type, :overhangs_depth, :overhangs_distance_to_top_of_window, :overhangs_distance_to_bottom_of_window, :fraction_operable, :performance_class, :wall_idref] attr_accessor(*ATTRS) @@ -3164,7 +3548,7 @@ class Window < BaseElement def wall return if @wall_idref.nil? - (@hpxml_object.walls + @hpxml_object.foundation_walls).each do |wall| + (@parent_object.walls + @parent_object.foundation_walls).each do |wall| next unless wall.id == @wall_idref return wall @@ -3193,7 +3577,7 @@ def is_conditioned end def delete - @hpxml_object.windows.delete(self) + @parent_object.windows.delete(self) end def check_for_errors @@ -3202,10 +3586,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - windows = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Enclosure', 'Windows']) + windows = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Enclosure', 'Windows']) window = XMLHelper.add_element(windows, 'Window') sys_id = XMLHelper.add_element(window, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -3227,7 +3611,11 @@ def to_oga(doc) if (not @exterior_shading_type.nil?) || (not @exterior_shading_factor_summer.nil?) || (not @exterior_shading_factor_winter.nil?) exterior_shading = XMLHelper.add_element(window, 'ExteriorShading') sys_id = XMLHelper.add_element(exterior_shading, 'SystemIdentifier') - XMLHelper.add_attribute(sys_id, 'id', "#{id}ExteriorShading") + if @exterior_shading_id.nil? + XMLHelper.add_attribute(sys_id, 'id', "#{id}ExteriorShading") + else + XMLHelper.add_attribute(sys_id, 'id', @exterior_shading_id) + end XMLHelper.add_element(exterior_shading, 'Type', @exterior_shading_type, :string) unless @exterior_shading_type.nil? XMLHelper.add_element(exterior_shading, 'SummerShadingCoefficient', @exterior_shading_factor_summer, :float, @exterior_shading_factor_summer_isdefaulted) unless @exterior_shading_factor_summer.nil? XMLHelper.add_element(exterior_shading, 'WinterShadingCoefficient', @exterior_shading_factor_winter, :float, @exterior_shading_factor_winter_isdefaulted) unless @exterior_shading_factor_winter.nil? @@ -3235,7 +3623,11 @@ def to_oga(doc) if (not @interior_shading_type.nil?) || (not @interior_shading_factor_summer.nil?) || (not @interior_shading_factor_winter.nil?) interior_shading = XMLHelper.add_element(window, 'InteriorShading') sys_id = XMLHelper.add_element(interior_shading, 'SystemIdentifier') - XMLHelper.add_attribute(sys_id, 'id', "#{id}InteriorShading") + if @interior_shading_id.nil? + XMLHelper.add_attribute(sys_id, 'id', "#{id}InteriorShading") + else + XMLHelper.add_attribute(sys_id, 'id', @interior_shading_id) + end XMLHelper.add_element(interior_shading, 'Type', @interior_shading_type, :string) unless @interior_shading_type.nil? XMLHelper.add_element(interior_shading, 'SummerShadingCoefficient', @interior_shading_factor_summer, :float, @interior_shading_factor_summer_isdefaulted) unless @interior_shading_factor_summer.nil? XMLHelper.add_element(interior_shading, 'WinterShadingCoefficient', @interior_shading_factor_winter, :float, @interior_shading_factor_winter_isdefaulted) unless @interior_shading_factor_winter.nil? @@ -3260,7 +3652,7 @@ def to_oga(doc) end end - def from_oga(window) + def from_doc(window) return if window.nil? @id = HPXML::get_id(window) @@ -3278,9 +3670,11 @@ def from_oga(window) @gas_fill = XMLHelper.get_value(window, 'GasFill', :string) @ufactor = XMLHelper.get_value(window, 'UFactor', :float) @shgc = XMLHelper.get_value(window, 'SHGC', :float) + @exterior_shading_id = HPXML::get_id(window, 'ExteriorShading/SystemIdentifier') @exterior_shading_type = XMLHelper.get_value(window, 'ExteriorShading/Type', :string) @exterior_shading_factor_summer = XMLHelper.get_value(window, 'ExteriorShading/SummerShadingCoefficient', :float) @exterior_shading_factor_winter = XMLHelper.get_value(window, 'ExteriorShading/WinterShadingCoefficient', :float) + @interior_shading_id = HPXML::get_id(window, 'InteriorShading/SystemIdentifier') @interior_shading_type = XMLHelper.get_value(window, 'InteriorShading/Type', :string) @interior_shading_factor_summer = XMLHelper.get_value(window, 'InteriorShading/SummerShadingCoefficient', :float) @interior_shading_factor_winter = XMLHelper.get_value(window, 'InteriorShading/WinterShadingCoefficient', :float) @@ -3296,14 +3690,14 @@ def from_oga(window) class Skylights < BaseArrayElement def add(**kwargs) - self << Skylight.new(@hpxml_object, **kwargs) + self << Skylight.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Enclosure/Skylights/Skylight').each do |skylight| - self << Skylight.new(@hpxml_object, skylight) + XMLHelper.get_elements(building, 'BuildingDetails/Enclosure/Skylights/Skylight').each do |skylight| + self << Skylight.new(@parent_object, skylight) end end end @@ -3318,7 +3712,7 @@ class Skylight < BaseElement def roof return if @roof_idref.nil? - @hpxml_object.roofs.each do |roof| + @parent_object.roofs.each do |roof| next unless roof.id == @roof_idref return roof @@ -3347,7 +3741,7 @@ def is_conditioned end def delete - @hpxml_object.skylights.delete(self) + @parent_object.skylights.delete(self) end def check_for_errors @@ -3356,10 +3750,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - skylights = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Enclosure', 'Skylights']) + skylights = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Enclosure', 'Skylights']) skylight = XMLHelper.add_element(skylights, 'Skylight') sys_id = XMLHelper.add_element(skylight, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -3406,7 +3800,7 @@ def to_oga(doc) end end - def from_oga(skylight) + def from_doc(skylight) return if skylight.nil? @id = HPXML::get_id(skylight) @@ -3437,14 +3831,14 @@ def from_oga(skylight) class Doors < BaseArrayElement def add(**kwargs) - self << Door.new(@hpxml_object, **kwargs) + self << Door.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Enclosure/Doors/Door').each do |door| - self << Door.new(@hpxml_object, door) + XMLHelper.get_elements(building, 'BuildingDetails/Enclosure/Doors/Door').each do |door| + self << Door.new(@parent_object, door) end end end @@ -3456,7 +3850,7 @@ class Door < BaseElement def wall return if @wall_idref.nil? - (@hpxml_object.walls + @hpxml_object.foundation_walls).each do |wall| + (@parent_object.walls + @parent_object.foundation_walls).each do |wall| next unless wall.id == @wall_idref return wall @@ -3485,7 +3879,7 @@ def is_conditioned end def delete - @hpxml_object.doors.delete(self) + @parent_object.doors.delete(self) end def check_for_errors @@ -3494,10 +3888,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - doors = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Enclosure', 'Doors']) + doors = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Enclosure', 'Doors']) door = XMLHelper.add_element(doors, 'Door') sys_id = XMLHelper.add_element(door, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -3511,7 +3905,7 @@ def to_oga(doc) XMLHelper.add_element(door, 'RValue', @r_value, :float) unless @r_value.nil? end - def from_oga(door) + def from_doc(door) return if door.nil? @id = HPXML::get_id(door) @@ -3532,10 +3926,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - partition_wall_mass = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Enclosure', 'extension', 'PartitionWallMass']) + partition_wall_mass = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Enclosure', 'extension', 'PartitionWallMass']) XMLHelper.add_element(partition_wall_mass, 'AreaFraction', @area_fraction, :float, @area_fraction_isdefaulted) unless @area_fraction.nil? if (not @interior_finish_type.nil?) || (not @interior_finish_thickness.nil?) interior_finish = XMLHelper.add_element(partition_wall_mass, 'InteriorFinish') @@ -3544,10 +3938,10 @@ def to_oga(doc) end end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - partition_wall_mass = XMLHelper.get_element(hpxml, 'Building/BuildingDetails/Enclosure/extension/PartitionWallMass') + partition_wall_mass = XMLHelper.get_element(building, 'BuildingDetails/Enclosure/extension/PartitionWallMass') return if partition_wall_mass.nil? @area_fraction = XMLHelper.get_value(partition_wall_mass, 'AreaFraction', :float) @@ -3568,18 +3962,18 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - furniture_mass = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Enclosure', 'extension', 'FurnitureMass']) + furniture_mass = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Enclosure', 'extension', 'FurnitureMass']) XMLHelper.add_element(furniture_mass, 'AreaFraction', @area_fraction, :float, @area_fraction_isdefaulted) unless @area_fraction.nil? XMLHelper.add_element(furniture_mass, 'Type', @type, :string, @type_isdefaulted) unless @type.nil? end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - furniture_mass = XMLHelper.get_element(hpxml, 'Building/BuildingDetails/Enclosure/extension/FurnitureMass') + furniture_mass = XMLHelper.get_element(building, 'BuildingDetails/Enclosure/extension/FurnitureMass') return if furniture_mass.nil? @area_fraction = XMLHelper.get_value(furniture_mass, 'AreaFraction', :float) @@ -3589,14 +3983,14 @@ def from_oga(hpxml) class HeatingSystems < BaseArrayElement def add(**kwargs) - self << HeatingSystem.new(@hpxml_object, **kwargs) + self << HeatingSystem.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem').each do |heating_system| - self << HeatingSystem.new(@hpxml_object, heating_system) + XMLHelper.get_elements(building, 'BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem').each do |heating_system| + self << HeatingSystem.new(@parent_object, heating_system) end end @@ -3606,6 +4000,10 @@ def total_fraction_heat_load_served end class HeatingSystem < BaseElement + def initialize(hpxml_object, *args) + @heating_detailed_performance_data = HeatingDetailedPerformanceData.new(hpxml_object) + super(hpxml_object, *args) + end ATTRS = [:id, :distribution_system_idref, :year_installed, :heating_system_type, :heating_system_fuel, :heating_capacity, :heating_efficiency_afue, :heating_efficiency_percent, :fraction_heat_load_served, :electric_auxiliary_energy, @@ -3614,11 +4012,12 @@ class HeatingSystem < BaseElement :airflow_defect_ratio, :fan_watts, :heating_airflow_cfm, :location, :primary_system, :pilot_light, :pilot_light_btuh] attr_accessor(*ATTRS) + attr_reader(:heating_detailed_performance_data) def distribution_system return if @distribution_system_idref.nil? - @hpxml_object.hvac_distributions.each do |hvac_distribution| + @parent_object.hvac_distributions.each do |hvac_distribution| next unless hvac_distribution.id == @distribution_system_idref return hvac_distribution @@ -3640,7 +4039,7 @@ def attached_cooling_system end def related_water_heating_system - @hpxml_object.water_heating_systems.each do |water_heating_system| + @parent_object.water_heating_systems.each do |water_heating_system| next unless water_heating_system.related_hvac_idref == @id return water_heating_system @@ -3650,7 +4049,7 @@ def related_water_heating_system def primary_heat_pump # Returns the HP for which this heating system is backup - @hpxml_object.heat_pumps.each do |heat_pump| + @parent_object.heat_pumps.each do |heat_pump| next if heat_pump.backup_system_idref.nil? next if heat_pump.backup_system_idref != @id @@ -3664,8 +4063,8 @@ def is_heat_pump_backup_system end def delete - @hpxml_object.heating_systems.delete(self) - @hpxml_object.water_heating_systems.each do |water_heating_system| + @parent_object.heating_systems.delete(self) + @parent_object.water_heating_systems.each do |water_heating_system| next unless water_heating_system.related_hvac_idref == @id water_heating_system.related_hvac_idref = nil @@ -3675,14 +4074,15 @@ def delete def check_for_errors errors = [] begin; distribution_system; rescue StandardError => e; errors << e.message; end + errors += @heating_detailed_performance_data.check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - hvac_plant = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'HVAC', 'HVACPlant']) - primary_systems = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'HVAC', 'HVACPlant', 'PrimarySystems']) unless @hpxml_object.primary_hvac_systems.empty? + hvac_plant = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'HVAC', 'HVACPlant']) + primary_systems = XMLHelper.create_elements_as_needed(hvac_plant, ['PrimarySystems']) unless @parent_object.primary_hvac_systems.empty? heating_system = XMLHelper.add_element(hvac_plant, 'HeatingSystem') sys_id = XMLHelper.add_element(heating_system, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -3722,6 +4122,7 @@ def to_oga(doc) XMLHelper.add_element(annual_efficiency, 'Units', UnitsPercent, :string) XMLHelper.add_element(annual_efficiency, 'Value', @heating_efficiency_percent, :float, @heating_efficiency_percent_isdefaulted) end + @heating_detailed_performance_data.to_doc(heating_system) XMLHelper.add_element(heating_system, 'FractionHeatLoadServed', @fraction_heat_load_served, :float, @fraction_heat_load_served_isdefaulted) unless @fraction_heat_load_served.nil? XMLHelper.add_element(heating_system, 'ElectricAuxiliaryEnergy', @electric_auxiliary_energy, :float, @electric_auxiliary_energy_isdefaulted) unless @electric_auxiliary_energy.nil? XMLHelper.add_extension(heating_system, 'SharedLoopWatts', @shared_loop_watts, :float) unless @shared_loop_watts.nil? @@ -3738,7 +4139,7 @@ def to_oga(doc) end end - def from_oga(heating_system) + def from_doc(heating_system) return if heating_system.nil? @id = HPXML::get_id(heating_system) @@ -3757,6 +4158,7 @@ def from_oga(heating_system) @heating_capacity = XMLHelper.get_value(heating_system, 'HeatingCapacity', :float) @heating_efficiency_afue = XMLHelper.get_value(heating_system, "AnnualHeatingEfficiency[Units='#{UnitsAFUE}']/Value", :float) @heating_efficiency_percent = XMLHelper.get_value(heating_system, "AnnualHeatingEfficiency[Units='Percent']/Value", :float) + @heating_detailed_performance_data.from_doc(heating_system) @fraction_heat_load_served = XMLHelper.get_value(heating_system, 'FractionHeatLoadServed', :float) @electric_auxiliary_energy = XMLHelper.get_value(heating_system, 'ElectricAuxiliaryEnergy', :float) @shared_loop_watts = XMLHelper.get_value(heating_system, 'extension/SharedLoopWatts', :float) @@ -3778,14 +4180,14 @@ def from_oga(heating_system) class CoolingSystems < BaseArrayElement def add(**kwargs) - self << CoolingSystem.new(@hpxml_object, **kwargs) + self << CoolingSystem.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem').each do |cooling_system| - self << CoolingSystem.new(@hpxml_object, cooling_system) + XMLHelper.get_elements(building, 'BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem').each do |cooling_system| + self << CoolingSystem.new(@parent_object, cooling_system) end end @@ -3799,6 +4201,10 @@ def total_fraction_heat_load_served end class CoolingSystem < BaseElement + def initialize(hpxml_object, *args) + @cooling_detailed_performance_data = CoolingDetailedPerformanceData.new(hpxml_object) + super(hpxml_object, *args) + end ATTRS = [:id, :distribution_system_idref, :year_installed, :cooling_system_type, :cooling_system_fuel, :cooling_capacity, :compressor_type, :fraction_cool_load_served, :cooling_efficiency_seer, :cooling_efficiency_seer2, :cooling_efficiency_eer, :cooling_efficiency_ceer, :cooling_efficiency_kw_per_ton, @@ -3808,11 +4214,12 @@ class CoolingSystem < BaseElement :integrated_heating_system_fuel, :integrated_heating_system_capacity, :integrated_heating_system_efficiency_percent, :integrated_heating_system_fraction_heat_load_served, :integrated_heating_system_airflow_cfm, :htg_seed_id, :crankcase_heater_watts] attr_accessor(*ATTRS) + attr_reader(:cooling_detailed_performance_data) def distribution_system return if @distribution_system_idref.nil? - @hpxml_object.hvac_distributions.each do |hvac_distribution| + @parent_object.hvac_distributions.each do |hvac_distribution| next unless hvac_distribution.id == @distribution_system_idref return hvac_distribution @@ -3840,8 +4247,8 @@ def has_integrated_heating end def delete - @hpxml_object.cooling_systems.delete(self) - @hpxml_object.water_heating_systems.each do |water_heating_system| + @parent_object.cooling_systems.delete(self) + @parent_object.water_heating_systems.each do |water_heating_system| next unless water_heating_system.related_hvac_idref == @id water_heating_system.related_hvac_idref = nil @@ -3851,14 +4258,15 @@ def delete def check_for_errors errors = [] begin; distribution_system; rescue StandardError => e; errors << e.message; end + errors += @cooling_detailed_performance_data.check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - hvac_plant = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'HVAC', 'HVACPlant']) - primary_systems = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'HVAC', 'HVACPlant', 'PrimarySystems']) unless @hpxml_object.primary_hvac_systems.empty? + hvac_plant = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'HVAC', 'HVACPlant']) + primary_systems = XMLHelper.create_elements_as_needed(hvac_plant, ['PrimarySystems']) unless @parent_object.primary_hvac_systems.empty? cooling_system = XMLHelper.add_element(hvac_plant, 'CoolingSystem') sys_id = XMLHelper.add_element(cooling_system, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -3902,6 +4310,7 @@ def to_oga(doc) XMLHelper.add_element(annual_efficiency, 'Value', @cooling_efficiency_kw_per_ton, :float, @cooling_efficiency_kw_per_ton_isdefaulted) end XMLHelper.add_element(cooling_system, 'SensibleHeatFraction', @cooling_shr, :float, @cooling_shr_isdefaulted) unless @cooling_shr.nil? + @cooling_detailed_performance_data.to_doc(cooling_system) XMLHelper.add_element(cooling_system, 'IntegratedHeatingSystemFuel', @integrated_heating_system_fuel, :string) unless @integrated_heating_system_fuel.nil? XMLHelper.add_element(cooling_system, 'IntegratedHeatingSystemCapacity', @integrated_heating_system_capacity, :float, @integrated_heating_system_capacity_isdefaulted) unless @integrated_heating_system_capacity.nil? if not @integrated_heating_system_efficiency_percent.nil? @@ -3927,7 +4336,7 @@ def to_oga(doc) end end - def from_oga(cooling_system) + def from_doc(cooling_system) return if cooling_system.nil? @id = HPXML::get_id(cooling_system) @@ -3947,6 +4356,7 @@ def from_oga(cooling_system) @cooling_efficiency_eer = XMLHelper.get_value(cooling_system, "AnnualCoolingEfficiency[Units='#{UnitsEER}']/Value", :float) @cooling_efficiency_ceer = XMLHelper.get_value(cooling_system, "AnnualCoolingEfficiency[Units='#{UnitsCEER}']/Value", :float) @cooling_efficiency_kw_per_ton = XMLHelper.get_value(cooling_system, "AnnualCoolingEfficiency[Units='#{UnitsKwPerTon}']/Value", :float) + @cooling_detailed_performance_data.from_doc(cooling_system) @cooling_shr = XMLHelper.get_value(cooling_system, 'SensibleHeatFraction', :float) @integrated_heating_system_fuel = XMLHelper.get_value(cooling_system, 'IntegratedHeatingSystemFuel', :string) @integrated_heating_system_capacity = XMLHelper.get_value(cooling_system, 'IntegratedHeatingSystemCapacity', :float) @@ -3974,14 +4384,14 @@ def from_oga(cooling_system) class HeatPumps < BaseArrayElement def add(**kwargs) - self << HeatPump.new(@hpxml_object, **kwargs) + self << HeatPump.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatPump').each do |heat_pump| - self << HeatPump.new(@hpxml_object, heat_pump) + XMLHelper.get_elements(building, 'BuildingDetails/Systems/HVAC/HVACPlant/HeatPump').each do |heat_pump| + self << HeatPump.new(@parent_object, heat_pump) end end @@ -3995,6 +4405,11 @@ def total_fraction_cool_load_served end class HeatPump < BaseElement + def initialize(hpxml_object, *args) + @cooling_detailed_performance_data = CoolingDetailedPerformanceData.new(hpxml_object) + @heating_detailed_performance_data = HeatingDetailedPerformanceData.new(hpxml_object) + super(hpxml_object, *args) + end ATTRS = [:id, :distribution_system_idref, :year_installed, :heat_pump_type, :heat_pump_fuel, :heating_capacity, :heating_capacity_17F, :cooling_capacity, :compressor_type, :compressor_lockout_temp, :cooling_shr, :backup_type, :backup_system_idref, :backup_heating_fuel, :backup_heating_capacity, @@ -4007,11 +4422,13 @@ class HeatPump < BaseElement :heating_airflow_cfm, :cooling_airflow_cfm, :location, :primary_heating_system, :primary_cooling_system, :heating_capacity_retention_fraction, :heating_capacity_retention_temp, :crankcase_heater_watts] attr_accessor(*ATTRS) + attr_reader(:cooling_detailed_performance_data) + attr_reader(:heating_detailed_performance_data) def distribution_system return if @distribution_system_idref.nil? - @hpxml_object.hvac_distributions.each do |hvac_distribution| + @parent_object.hvac_distributions.each do |hvac_distribution| next unless hvac_distribution.id == @distribution_system_idref return hvac_distribution @@ -4020,11 +4437,17 @@ def distribution_system end def is_dual_fuel - if @backup_heating_fuel.nil? - return false - end - if @backup_heating_fuel.to_s == @heat_pump_fuel.to_s - return false + if backup_system.nil? + if @backup_heating_fuel.nil? + return false + end + if @backup_heating_fuel.to_s == @heat_pump_fuel.to_s + return false + end + else + if backup_system.heating_system_fuel.to_s == @heat_pump_fuel.to_s + return false + end end return true @@ -4039,7 +4462,7 @@ def primary_system def backup_system return if @backup_system_idref.nil? - @hpxml_object.heating_systems.each do |heating_system| + @parent_object.heating_systems.each do |heating_system| next unless heating_system.id == @backup_system_idref return heating_system @@ -4047,8 +4470,8 @@ def backup_system end def delete - @hpxml_object.heat_pumps.delete(self) - @hpxml_object.water_heating_systems.each do |water_heating_system| + @parent_object.heat_pumps.delete(self) + @parent_object.water_heating_systems.each do |water_heating_system| next unless water_heating_system.related_hvac_idref == @id water_heating_system.related_hvac_idref = nil @@ -4058,14 +4481,16 @@ def delete def check_for_errors errors = [] begin; distribution_system; rescue StandardError => e; errors << e.message; end + errors += @cooling_detailed_performance_data.check_for_errors + errors += @heating_detailed_performance_data.check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - hvac_plant = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'HVAC', 'HVACPlant']) - primary_systems = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'HVAC', 'HVACPlant', 'PrimarySystems']) unless @hpxml_object.primary_hvac_systems.empty? + hvac_plant = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'HVAC', 'HVACPlant']) + primary_systems = XMLHelper.create_elements_as_needed(hvac_plant, ['PrimarySystems']) unless @parent_object.primary_hvac_systems.empty? heat_pump = XMLHelper.add_element(hvac_plant, 'HeatPump') sys_id = XMLHelper.add_element(heat_pump, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -4142,6 +4567,8 @@ def to_oga(doc) XMLHelper.add_element(annual_efficiency, 'Units', UnitsCOP, :string) XMLHelper.add_element(annual_efficiency, 'Value', @heating_efficiency_cop, :float, @heating_efficiency_cop_isdefaulted) end + @cooling_detailed_performance_data.to_doc(heat_pump) + @heating_detailed_performance_data.to_doc(heat_pump) XMLHelper.add_extension(heat_pump, 'AirflowDefectRatio', @airflow_defect_ratio, :float, @airflow_defect_ratio_isdefaulted) unless @airflow_defect_ratio.nil? XMLHelper.add_extension(heat_pump, 'ChargeDefectRatio', @charge_defect_ratio, :float, @charge_defect_ratio_isdefaulted) unless @charge_defect_ratio.nil? XMLHelper.add_extension(heat_pump, 'FanPowerWattsPerCFM', @fan_watts_per_cfm, :float, @fan_watts_per_cfm_isdefaulted) unless @fan_watts_per_cfm.nil? @@ -4168,7 +4595,7 @@ def to_oga(doc) end end - def from_oga(heat_pump) + def from_doc(heat_pump) return if heat_pump.nil? @id = HPXML::get_id(heat_pump) @@ -4203,6 +4630,8 @@ def from_oga(heat_pump) @heating_efficiency_hspf = XMLHelper.get_value(heat_pump, "AnnualHeatingEfficiency[Units='#{UnitsHSPF}']/Value", :float) @heating_efficiency_hspf2 = XMLHelper.get_value(heat_pump, "AnnualHeatingEfficiency[Units='#{UnitsHSPF2}']/Value", :float) @heating_efficiency_cop = XMLHelper.get_value(heat_pump, "AnnualHeatingEfficiency[Units='#{UnitsCOP}']/Value", :float) + @cooling_detailed_performance_data.from_doc(heat_pump) + @heating_detailed_performance_data.from_doc(heat_pump) @airflow_defect_ratio = XMLHelper.get_value(heat_pump, 'extension/AirflowDefectRatio', :float) @charge_defect_ratio = XMLHelper.get_value(heat_pump, 'extension/ChargeDefectRatio', :float) @fan_watts_per_cfm = XMLHelper.get_value(heat_pump, 'extension/FanPowerWattsPerCFM', :float) @@ -4267,10 +4696,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - hvac_plant = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'HVAC', 'HVACPlant']) + hvac_plant = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'HVAC', 'HVACPlant']) if not @hdl_total.nil? dl_extension = XMLHelper.create_elements_as_needed(hvac_plant, ['extension', 'DesignLoads']) XMLHelper.add_attribute(dl_extension, 'dataSource', 'software') @@ -4289,10 +4718,10 @@ def to_oga(doc) end end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - hvac_plant = XMLHelper.get_element(hpxml, 'Building/BuildingDetails/Systems/HVAC/HVACPlant') + hvac_plant = XMLHelper.get_element(building, 'BuildingDetails/Systems/HVAC/HVACPlant') return if hvac_plant.nil? HDL_ATTRS.each do |attr, element_name| @@ -4309,14 +4738,14 @@ def from_oga(hpxml) class HVACControls < BaseArrayElement def add(**kwargs) - self << HVACControl.new(@hpxml_object, **kwargs) + self << HVACControl.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/HVAC/HVACControl').each do |hvac_control| - self << HVACControl.new(@hpxml_object, hvac_control) + XMLHelper.get_elements(building, 'BuildingDetails/Systems/HVAC/HVACControl').each do |hvac_control| + self << HVACControl.new(@parent_object, hvac_control) end end end @@ -4333,7 +4762,7 @@ class HVACControl < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.hvac_controls.delete(self) + @parent_object.hvac_controls.delete(self) end def check_for_errors @@ -4345,10 +4774,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - hvac = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'HVAC']) + hvac = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'HVAC']) hvac_control = XMLHelper.add_element(hvac, 'HVACControl') sys_id = XMLHelper.add_element(hvac_control, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -4382,7 +4811,7 @@ def to_oga(doc) XMLHelper.add_extension(hvac_control, 'WeekendSetpointTempsCoolingSeason', @weekend_cooling_setpoints, :string) unless @weekend_cooling_setpoints.nil? end - def from_oga(hvac_control) + def from_doc(hvac_control) return if hvac_control.nil? @id = HPXML::get_id(hvac_control) @@ -4413,23 +4842,23 @@ def from_oga(hvac_control) class HVACDistributions < BaseArrayElement def add(**kwargs) - self << HVACDistribution.new(@hpxml_object, **kwargs) + self << HVACDistribution.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/HVAC/HVACDistribution').each do |hvac_distribution| - self << HVACDistribution.new(@hpxml_object, hvac_distribution) + XMLHelper.get_elements(building, 'BuildingDetails/Systems/HVAC/HVACDistribution').each do |hvac_distribution| + self << HVACDistribution.new(@parent_object, hvac_distribution) end end end class HVACDistribution < BaseElement - def initialize(hpxml_object, *args) - @duct_leakage_measurements = DuctLeakageMeasurements.new(hpxml_object) - @ducts = Ducts.new(hpxml_object) - super(hpxml_object, *args) + def initialize(hpxml_bldg, *args) + @duct_leakage_measurements = DuctLeakageMeasurements.new(hpxml_bldg) + @ducts = Ducts.new(hpxml_bldg) + super(hpxml_bldg, *args) end ATTRS = [:id, :distribution_system_type, :annual_heating_dse, :annual_cooling_dse, :duct_system_sealed, :conditioned_floor_area_served, :number_of_return_registers, :air_type, :hydronic_type] @@ -4438,7 +4867,7 @@ def initialize(hpxml_object, *args) def hvac_systems list = [] - @hpxml_object.hvac_systems.each do |hvac_system| + @parent_object.hvac_systems.each do |hvac_system| next if hvac_system.distribution_system_idref.nil? next unless hvac_system.distribution_system_idref == @id @@ -4471,14 +4900,14 @@ def hvac_systems end def delete - @hpxml_object.hvac_distributions.delete(self) - @hpxml_object.hvac_systems.each do |hvac_system| + @parent_object.hvac_distributions.delete(self) + @parent_object.hvac_systems.each do |hvac_system| next if hvac_system.distribution_system_idref.nil? next unless hvac_system.distribution_system_idref == @id hvac_system.distribution_system_idref = nil end - @hpxml_object.ventilation_fans.each do |ventilation_fan| + @parent_object.ventilation_fans.each do |ventilation_fan| next unless ventilation_fan.distribution_system_idref == @id ventilation_fan.distribution_system_idref = nil @@ -4493,10 +4922,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - hvac = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'HVAC']) + hvac = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'HVAC']) hvac_distribution = XMLHelper.add_element(hvac, 'HVACDistribution') sys_id = XMLHelper.add_element(hvac_distribution, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -4519,8 +4948,8 @@ def to_oga(doc) if [HPXML::HVACDistributionTypeAir].include? @distribution_system_type distribution = XMLHelper.get_element(hvac_distribution, 'DistributionSystemType/AirDistribution') XMLHelper.add_element(distribution, 'AirDistributionType', @air_type, :string) unless @air_type.nil? - @duct_leakage_measurements.to_oga(distribution) - @ducts.to_oga(distribution) + @duct_leakage_measurements.to_doc(distribution) + @ducts.to_doc(distribution) XMLHelper.add_element(distribution, 'NumberofReturnRegisters', @number_of_return_registers, :integer, @number_of_return_registers_isdefaulted) unless @number_of_return_registers.nil? end @@ -4530,7 +4959,7 @@ def to_oga(doc) end end - def from_oga(hvac_distribution) + def from_doc(hvac_distribution) return if hvac_distribution.nil? @id = HPXML::get_id(hvac_distribution) @@ -4552,22 +4981,22 @@ def from_oga(hvac_distribution) if not air_distribution.nil? @air_type = XMLHelper.get_value(air_distribution, 'AirDistributionType', :string) @number_of_return_registers = XMLHelper.get_value(air_distribution, 'NumberofReturnRegisters', :integer) - @duct_leakage_measurements.from_oga(air_distribution) - @ducts.from_oga(air_distribution) + @duct_leakage_measurements.from_doc(air_distribution) + @ducts.from_doc(air_distribution) end end end class DuctLeakageMeasurements < BaseArrayElement def add(**kwargs) - self << DuctLeakageMeasurement.new(@hpxml_object, **kwargs) + self << DuctLeakageMeasurement.new(@parent_object, **kwargs) end - def from_oga(hvac_distribution) + def from_doc(hvac_distribution) return if hvac_distribution.nil? XMLHelper.get_elements(hvac_distribution, 'DuctLeakageMeasurement').each do |duct_leakage_measurement| - self << DuctLeakageMeasurement.new(@hpxml_object, duct_leakage_measurement) + self << DuctLeakageMeasurement.new(@parent_object, duct_leakage_measurement) end end end @@ -4578,7 +5007,7 @@ class DuctLeakageMeasurement < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.hvac_distributions.each do |hvac_distribution| + @parent_object.hvac_distributions.each do |hvac_distribution| next unless hvac_distribution.duct_leakage_measurements.include? self hvac_distribution.duct_leakage_measurements.delete(self) @@ -4590,7 +5019,7 @@ def check_for_errors return errors end - def to_oga(air_distribution) + def to_doc(air_distribution) duct_leakage_measurement_el = XMLHelper.add_element(air_distribution, 'DuctLeakageMeasurement') XMLHelper.add_element(duct_leakage_measurement_el, 'DuctType', @duct_type, :string) unless @duct_type.nil? XMLHelper.add_element(duct_leakage_measurement_el, 'DuctLeakageTestMethod', @duct_leakage_test_method, :string) unless @duct_leakage_test_method.nil? @@ -4602,7 +5031,7 @@ def to_oga(air_distribution) end end - def from_oga(duct_leakage_measurement) + def from_doc(duct_leakage_measurement) return if duct_leakage_measurement.nil? @duct_type = XMLHelper.get_value(duct_leakage_measurement, 'DuctType', :string) @@ -4615,14 +5044,14 @@ def from_oga(duct_leakage_measurement) class Ducts < BaseArrayElement def add(**kwargs) - self << Duct.new(@hpxml_object, **kwargs) + self << Duct.new(@parent_object, **kwargs) end - def from_oga(hvac_distribution) + def from_doc(hvac_distribution) return if hvac_distribution.nil? XMLHelper.get_elements(hvac_distribution, 'Ducts').each do |duct| - self << Duct.new(@hpxml_object, duct) + self << Duct.new(@parent_object, duct) end end end @@ -4634,7 +5063,7 @@ class Duct < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.hvac_distributions.each do |hvac_distribution| + @parent_object.hvac_distributions.each do |hvac_distribution| next unless hvac_distribution.ducts.include? self hvac_distribution.ducts.delete(self) @@ -4646,7 +5075,7 @@ def check_for_errors return errors end - def to_oga(air_distribution) + def to_doc(air_distribution) ducts_el = XMLHelper.add_element(air_distribution, 'Ducts') sys_id = XMLHelper.add_element(ducts_el, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -4664,7 +5093,7 @@ def to_oga(air_distribution) XMLHelper.add_extension(ducts_el, 'DuctSurfaceAreaMultiplier', @duct_surface_area_multiplier, :float, @duct_surface_area_multiplier_isdefaulted) unless @duct_surface_area_multiplier.nil? end - def from_oga(duct) + def from_doc(duct) return if duct.nil? @id = HPXML::get_id(duct) @@ -4682,14 +5111,14 @@ def from_oga(duct) class VentilationFans < BaseArrayElement def add(**kwargs) - self << VentilationFan.new(@hpxml_object, **kwargs) + self << VentilationFan.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan').each do |ventilation_fan| - self << VentilationFan.new(@hpxml_object, ventilation_fan) + XMLHelper.get_elements(building, 'BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan').each do |ventilation_fan| + self << VentilationFan.new(@parent_object, ventilation_fan) end end end @@ -4711,7 +5140,7 @@ def distribution_system return if @distribution_system_idref.nil? return unless @fan_type == MechVentTypeCFIS - @hpxml_object.hvac_distributions.each do |hvac_distribution| + @parent_object.hvac_distributions.each do |hvac_distribution| next unless hvac_distribution.id == @distribution_system_idref if hvac_distribution.distribution_system_type == HVACDistributionTypeHydronic @@ -4824,7 +5253,7 @@ def cfis_supplemental_fan return if @cfis_supplemental_fan_idref.nil? return unless @fan_type == MechVentTypeCFIS - @hpxml_object.ventilation_fans.each do |ventilation_fan| + @parent_object.ventilation_fans.each do |ventilation_fan| next unless ventilation_fan.id == @cfis_supplemental_fan_idref if not [MechVentTypeSupply, MechVentTypeExhaust].include? ventilation_fan.fan_type @@ -4846,7 +5275,7 @@ def cfis_supplemental_fan end def is_cfis_supplemental_fan? - @hpxml_object.ventilation_fans.each do |ventilation_fan| + @parent_object.ventilation_fans.each do |ventilation_fan| next unless ventilation_fan.fan_type == MechVentTypeCFIS next unless ventilation_fan.cfis_supplemental_fan_idref == @id @@ -4856,7 +5285,7 @@ def is_cfis_supplemental_fan? end def delete - @hpxml_object.ventilation_fans.delete(self) + @parent_object.ventilation_fans.delete(self) end def check_for_errors @@ -4868,10 +5297,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - ventilation_fans = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'MechanicalVentilation', 'VentilationFans']) + ventilation_fans = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'MechanicalVentilation', 'VentilationFans']) ventilation_fan = XMLHelper.add_element(ventilation_fans, 'VentilationFan') sys_id = XMLHelper.add_element(ventilation_fan, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -4929,7 +5358,7 @@ def to_oga(doc) XMLHelper.add_extension(ventilation_fan, 'VentilationOnlyModeAirflowFraction', @cfis_vent_mode_airflow_fraction, :float, @cfis_vent_mode_airflow_fraction_isdefaulted) unless @cfis_vent_mode_airflow_fraction.nil? end - def from_oga(ventilation_fan) + def from_doc(ventilation_fan) return if ventilation_fan.nil? @id = HPXML::get_id(ventilation_fan) @@ -4971,14 +5400,14 @@ def from_oga(ventilation_fan) class WaterHeatingSystems < BaseArrayElement def add(**kwargs) - self << WaterHeatingSystem.new(@hpxml_object, **kwargs) + self << WaterHeatingSystem.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem').each do |water_heating_system| - self << WaterHeatingSystem.new(@hpxml_object, water_heating_system) + XMLHelper.get_elements(building, 'BuildingDetails/Systems/WaterHeating/WaterHeatingSystem').each do |water_heating_system| + self << WaterHeatingSystem.new(@parent_object, water_heating_system) end end end @@ -4994,7 +5423,7 @@ class WaterHeatingSystem < BaseElement def related_hvac_system return if @related_hvac_idref.nil? - @hpxml_object.hvac_systems.each do |hvac_system| + @parent_object.hvac_systems.each do |hvac_system| next unless hvac_system.id == @related_hvac_idref return hvac_system @@ -5003,12 +5432,22 @@ def related_hvac_system end def delete - @hpxml_object.water_heating_systems.delete(self) - @hpxml_object.solar_thermal_systems.each do |solar_thermal_system| + @parent_object.water_heating_systems.delete(self) + @parent_object.solar_thermal_systems.each do |solar_thermal_system| next unless solar_thermal_system.water_heating_system_idref == @id solar_thermal_system.water_heating_system_idref = nil end + @parent_object.clothes_washers.each do |clothes_washer| + next unless clothes_washer.water_heating_system_idref == @id + + clothes_washer.water_heating_system_idref = nil + end + @parent_object.dishwashers.each do |dishwasher| + next unless dishwasher.water_heating_system_idref == @id + + dishwasher.water_heating_system_idref = nil + end end def check_for_errors @@ -5017,10 +5456,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - water_heating = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'WaterHeating']) + water_heating = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'WaterHeating']) water_heating_system = XMLHelper.add_element(water_heating, 'WaterHeatingSystem') sys_id = XMLHelper.add_element(water_heating_system, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -5063,7 +5502,7 @@ def to_oga(doc) end end - def from_oga(water_heating_system) + def from_doc(water_heating_system) return if water_heating_system.nil? @id = HPXML::get_id(water_heating_system) @@ -5096,14 +5535,14 @@ def from_oga(water_heating_system) class HotWaterDistributions < BaseArrayElement def add(**kwargs) - self << HotWaterDistribution.new(@hpxml_object, **kwargs) + self << HotWaterDistribution.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/WaterHeating/HotWaterDistribution').each do |hot_water_distribution| - self << HotWaterDistribution.new(@hpxml_object, hot_water_distribution) + XMLHelper.get_elements(building, 'BuildingDetails/Systems/WaterHeating/HotWaterDistribution').each do |hot_water_distribution| + self << HotWaterDistribution.new(@parent_object, hot_water_distribution) end end end @@ -5118,7 +5557,7 @@ class HotWaterDistribution < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.hot_water_distributions.delete(self) + @parent_object.hot_water_distributions.delete(self) end def check_for_errors @@ -5126,10 +5565,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - water_heating = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'WaterHeating']) + water_heating = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'WaterHeating']) hot_water_distribution = XMLHelper.add_element(water_heating, 'HotWaterDistribution') sys_id = XMLHelper.add_element(hot_water_distribution, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -5168,7 +5607,7 @@ def to_oga(doc) end end - def from_oga(hot_water_distribution) + def from_doc(hot_water_distribution) return if hot_water_distribution.nil? @id = HPXML::get_id(hot_water_distribution) @@ -5197,24 +5636,24 @@ def from_oga(hot_water_distribution) class WaterFixtures < BaseArrayElement def add(**kwargs) - self << WaterFixture.new(@hpxml_object, **kwargs) + self << WaterFixture.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/WaterHeating/WaterFixture').each do |water_fixture| - self << WaterFixture.new(@hpxml_object, water_fixture) + XMLHelper.get_elements(building, 'BuildingDetails/Systems/WaterHeating/WaterFixture').each do |water_fixture| + self << WaterFixture.new(@parent_object, water_fixture) end end end class WaterFixture < BaseElement - ATTRS = [:id, :water_fixture_type, :low_flow] + ATTRS = [:id, :water_fixture_type, :low_flow, :flow_rate, :count] attr_accessor(*ATTRS) def delete - @hpxml_object.water_fixtures.delete(self) + @parent_object.water_fixtures.delete(self) end def check_for_errors @@ -5222,22 +5661,26 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - water_heating = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'WaterHeating']) + water_heating = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'WaterHeating']) water_fixture = XMLHelper.add_element(water_heating, 'WaterFixture') sys_id = XMLHelper.add_element(water_fixture, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) XMLHelper.add_element(water_fixture, 'WaterFixtureType', @water_fixture_type, :string) unless @water_fixture_type.nil? - XMLHelper.add_element(water_fixture, 'LowFlow', @low_flow, :boolean) unless @low_flow.nil? + XMLHelper.add_element(water_fixture, 'Count', @count, :integer, @count_isdefaulted) unless @count.nil? + XMLHelper.add_element(water_fixture, 'FlowRate', @flow_rate, :float, @flow_rate_isdefaulted) unless @flow_rate.nil? + XMLHelper.add_element(water_fixture, 'LowFlow', @low_flow, :boolean, @low_flow_isdefaulted) unless @low_flow.nil? end - def from_oga(water_fixture) + def from_doc(water_fixture) return if water_fixture.nil? @id = HPXML::get_id(water_fixture) @water_fixture_type = XMLHelper.get_value(water_fixture, 'WaterFixtureType', :string) + @count = XMLHelper.get_value(water_fixture, 'Count', :integer) + @flow_rate = XMLHelper.get_value(water_fixture, 'FlowRate', :float) @low_flow = XMLHelper.get_value(water_fixture, 'LowFlow', :boolean) end end @@ -5252,20 +5695,20 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - water_heating = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'WaterHeating']) + water_heating = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'WaterHeating']) XMLHelper.add_extension(water_heating, 'WaterFixturesUsageMultiplier', @water_fixtures_usage_multiplier, :float, @water_fixtures_usage_multiplier_isdefaulted) unless @water_fixtures_usage_multiplier.nil? XMLHelper.add_extension(water_heating, 'WaterFixturesWeekdayScheduleFractions', @water_fixtures_weekday_fractions, :string, @water_fixtures_weekday_fractions_isdefaulted) unless @water_fixtures_weekday_fractions.nil? XMLHelper.add_extension(water_heating, 'WaterFixturesWeekendScheduleFractions', @water_fixtures_weekend_fractions, :string, @water_fixtures_weekend_fractions_isdefaulted) unless @water_fixtures_weekend_fractions.nil? XMLHelper.add_extension(water_heating, 'WaterFixturesMonthlyScheduleMultipliers', @water_fixtures_monthly_multipliers, :string, @water_fixtures_monthly_multipliers_isdefaulted) unless @water_fixtures_monthly_multipliers.nil? end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - water_heating = XMLHelper.get_element(hpxml, 'Building/BuildingDetails/Systems/WaterHeating') + water_heating = XMLHelper.get_element(building, 'BuildingDetails/Systems/WaterHeating') return if water_heating.nil? @water_fixtures_usage_multiplier = XMLHelper.get_value(water_heating, 'extension/WaterFixturesUsageMultiplier', :float) @@ -5277,14 +5720,14 @@ def from_oga(hpxml) class SolarThermalSystems < BaseArrayElement def add(**kwargs) - self << SolarThermalSystem.new(@hpxml_object, **kwargs) + self << SolarThermalSystem.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/SolarThermal/SolarThermalSystem').each do |solar_thermal_system| - self << SolarThermalSystem.new(@hpxml_object, solar_thermal_system) + XMLHelper.get_elements(building, 'BuildingDetails/Systems/SolarThermal/SolarThermalSystem').each do |solar_thermal_system| + self << SolarThermalSystem.new(@parent_object, solar_thermal_system) end end end @@ -5298,7 +5741,7 @@ class SolarThermalSystem < BaseElement def water_heating_system return if @water_heating_system_idref.nil? - @hpxml_object.water_heating_systems.each do |water_heater| + @parent_object.water_heating_systems.each do |water_heater| next unless water_heater.id == @water_heating_system_idref return water_heater @@ -5307,7 +5750,7 @@ def water_heating_system end def delete - @hpxml_object.solar_thermal_systems.delete(self) + @parent_object.solar_thermal_systems.delete(self) end def check_for_errors @@ -5316,10 +5759,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - solar_thermal = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'SolarThermal']) + solar_thermal = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'SolarThermal']) solar_thermal_system = XMLHelper.add_element(solar_thermal, 'SolarThermalSystem') sys_id = XMLHelper.add_element(solar_thermal_system, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -5340,7 +5783,7 @@ def to_oga(doc) XMLHelper.add_element(solar_thermal_system, 'SolarFraction', @solar_fraction, :float) unless @solar_fraction.nil? end - def from_oga(solar_thermal_system) + def from_doc(solar_thermal_system) return if solar_thermal_system.nil? @id = HPXML::get_id(solar_thermal_system) @@ -5361,14 +5804,14 @@ def from_oga(solar_thermal_system) class PVSystems < BaseArrayElement def add(**kwargs) - self << PVSystem.new(@hpxml_object, **kwargs) + self << PVSystem.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/Photovoltaics/PVSystem').each do |pv_system| - self << PVSystem.new(@hpxml_object, pv_system) + XMLHelper.get_elements(building, 'BuildingDetails/Systems/Photovoltaics/PVSystem').each do |pv_system| + self << PVSystem.new(@parent_object, pv_system) end end end @@ -5382,7 +5825,7 @@ class PVSystem < BaseElement def inverter return if @inverter_idref.nil? - @hpxml_object.inverters.each do |inv| + @parent_object.inverters.each do |inv| next unless inv.id == @inverter_idref return inv @@ -5391,7 +5834,7 @@ def inverter end def delete - @hpxml_object.pv_systems.delete(self) + @parent_object.pv_systems.delete(self) end def check_for_errors @@ -5400,10 +5843,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - photovoltaics = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'Photovoltaics']) + photovoltaics = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'Photovoltaics']) pv_system = XMLHelper.add_element(photovoltaics, 'PVSystem') sys_id = XMLHelper.add_element(pv_system, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -5425,7 +5868,7 @@ def to_oga(doc) XMLHelper.add_extension(pv_system, 'NumberofBedroomsServed', @number_of_bedrooms_served, :integer) unless @number_of_bedrooms_served.nil? end - def from_oga(pv_system) + def from_doc(pv_system) return if pv_system.nil? @id = HPXML::get_id(pv_system) @@ -5447,14 +5890,14 @@ def from_oga(pv_system) class Inverters < BaseArrayElement def add(**kwargs) - self << Inverter.new(@hpxml_object, **kwargs) + self << Inverter.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/Photovoltaics/Inverter').each do |inverter| - self << Inverter.new(@hpxml_object, inverter) + XMLHelper.get_elements(building, 'BuildingDetails/Systems/Photovoltaics/Inverter').each do |inverter| + self << Inverter.new(@parent_object, inverter) end end end @@ -5466,7 +5909,7 @@ class Inverter < BaseElement def pv_system return if @id.nil? - @hpxml_object.pv_systems.each do |pv| + @parent_object.pv_systems.each do |pv| next unless @id == pv.inverter_idref return pv @@ -5474,7 +5917,7 @@ def pv_system end def delete - @hpxml_object.inverters.delete(self) + @parent_object.inverters.delete(self) end def check_for_errors @@ -5483,17 +5926,17 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - photovoltaics = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'Photovoltaics']) + photovoltaics = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'Photovoltaics']) inverter = XMLHelper.add_element(photovoltaics, 'Inverter') sys_id = XMLHelper.add_element(inverter, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) XMLHelper.add_element(inverter, 'InverterEfficiency', @inverter_efficiency, :float, @inverter_efficiency_isdefaulted) unless @inverter_efficiency.nil? end - def from_oga(inverter) + def from_doc(inverter) return if inverter.nil? @id = HPXML::get_id(inverter) @@ -5503,14 +5946,14 @@ def from_oga(inverter) class Generators < BaseArrayElement def add(**kwargs) - self << Generator.new(@hpxml_object, **kwargs) + self << Generator.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/extension/Generators/Generator').each do |generator| - self << Generator.new(@hpxml_object, generator) + XMLHelper.get_elements(building, 'BuildingDetails/Systems/extension/Generators/Generator').each do |generator| + self << Generator.new(@parent_object, generator) end end end @@ -5520,7 +5963,7 @@ class Generator < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.generators.delete(self) + @parent_object.generators.delete(self) end def check_for_errors @@ -5528,10 +5971,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - generators = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'extension', 'Generators']) + generators = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'extension', 'Generators']) generator = XMLHelper.add_element(generators, 'Generator') sys_id = XMLHelper.add_element(generator, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -5542,7 +5985,7 @@ def to_oga(doc) XMLHelper.add_element(generator, 'NumberofBedroomsServed', @number_of_bedrooms_served, :integer) unless @number_of_bedrooms_served.nil? end - def from_oga(generator) + def from_doc(generator) return if generator.nil? @id = HPXML::get_id(generator) @@ -5556,14 +5999,14 @@ def from_oga(generator) class Batteries < BaseArrayElement def add(**kwargs) - self << Battery.new(@hpxml_object, **kwargs) + self << Battery.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/Batteries/Battery').each do |battery| - self << Battery.new(@hpxml_object, battery) + XMLHelper.get_elements(building, 'BuildingDetails/Systems/Batteries/Battery').each do |battery| + self << Battery.new(@parent_object, battery) end end end @@ -5575,7 +6018,7 @@ class Battery < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.batteries.delete(self) + @parent_object.batteries.delete(self) end def check_for_errors @@ -5583,10 +6026,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - batteries = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'Batteries']) + batteries = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Systems', 'Batteries']) battery = XMLHelper.add_element(batteries, 'Battery') sys_id = XMLHelper.add_element(battery, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -5618,7 +6061,7 @@ def to_oga(doc) XMLHelper.add_extension(battery, 'LifetimeModel', @lifetime_model, :string, @lifetime_model_isdefaulted) unless @lifetime_model.nil? end - def from_oga(battery) + def from_doc(battery) return if battery.nil? @id = HPXML::get_id(battery) @@ -5637,14 +6080,14 @@ def from_oga(battery) class ClothesWashers < BaseArrayElement def add(**kwargs) - self << ClothesWasher.new(@hpxml_object, **kwargs) + self << ClothesWasher.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Appliances/ClothesWasher').each do |clothes_washer| - self << ClothesWasher.new(@hpxml_object, clothes_washer) + XMLHelper.get_elements(building, 'BuildingDetails/Appliances/ClothesWasher').each do |clothes_washer| + self << ClothesWasher.new(@parent_object, clothes_washer) end end end @@ -5661,7 +6104,7 @@ class ClothesWasher < BaseElement def water_heating_system return if @water_heating_system_idref.nil? - @hpxml_object.water_heating_systems.each do |water_heater| + @parent_object.water_heating_systems.each do |water_heater| next unless water_heater.id == @water_heating_system_idref return water_heater @@ -5672,7 +6115,7 @@ def water_heating_system def hot_water_distribution return if @hot_water_distribution_idref.nil? - @hpxml_object.hot_water_distributions.each do |hot_water_distribution| + @parent_object.hot_water_distributions.each do |hot_water_distribution| next unless hot_water_distribution.id == @hot_water_distribution_idref return hot_water_distribution @@ -5681,7 +6124,7 @@ def hot_water_distribution end def delete - @hpxml_object.clothes_washers.delete(self) + @parent_object.clothes_washers.delete(self) end def check_for_errors @@ -5691,10 +6134,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - appliances = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Appliances']) + appliances = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Appliances']) clothes_washer = XMLHelper.add_element(appliances, 'ClothesWasher') sys_id = XMLHelper.add_element(clothes_washer, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -5723,7 +6166,7 @@ def to_oga(doc) XMLHelper.add_extension(clothes_washer, 'MonthlyScheduleMultipliers', @monthly_multipliers, :string, @monthly_multipliers_isdefaulted) unless @monthly_multipliers.nil? end - def from_oga(clothes_washer) + def from_doc(clothes_washer) return if clothes_washer.nil? @id = HPXML::get_id(clothes_washer) @@ -5750,14 +6193,14 @@ def from_oga(clothes_washer) class ClothesDryers < BaseArrayElement def add(**kwargs) - self << ClothesDryer.new(@hpxml_object, **kwargs) + self << ClothesDryer.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Appliances/ClothesDryer').each do |clothes_dryer| - self << ClothesDryer.new(@hpxml_object, clothes_dryer) + XMLHelper.get_elements(building, 'BuildingDetails/Appliances/ClothesDryer').each do |clothes_dryer| + self << ClothesDryer.new(@parent_object, clothes_dryer) end end end @@ -5770,7 +6213,7 @@ class ClothesDryer < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.clothes_dryers.delete(self) + @parent_object.clothes_dryers.delete(self) end def check_for_errors @@ -5778,10 +6221,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - appliances = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Appliances']) + appliances = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Appliances']) clothes_dryer = XMLHelper.add_element(appliances, 'ClothesDryer') sys_id = XMLHelper.add_element(clothes_dryer, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -5801,7 +6244,7 @@ def to_oga(doc) XMLHelper.add_extension(clothes_dryer, 'MonthlyScheduleMultipliers', @monthly_multipliers, :string, @monthly_multipliers_isdefaulted) unless @monthly_multipliers.nil? end - def from_oga(clothes_dryer) + def from_doc(clothes_dryer) return if clothes_dryer.nil? @id = HPXML::get_id(clothes_dryer) @@ -5824,14 +6267,14 @@ def from_oga(clothes_dryer) class Dishwashers < BaseArrayElement def add(**kwargs) - self << Dishwasher.new(@hpxml_object, **kwargs) + self << Dishwasher.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Appliances/Dishwasher').each do |dishwasher| - self << Dishwasher.new(@hpxml_object, dishwasher) + XMLHelper.get_elements(building, 'BuildingDetails/Appliances/Dishwasher').each do |dishwasher| + self << Dishwasher.new(@parent_object, dishwasher) end end end @@ -5846,7 +6289,7 @@ class Dishwasher < BaseElement def water_heating_system return if @water_heating_system_idref.nil? - @hpxml_object.water_heating_systems.each do |water_heater| + @parent_object.water_heating_systems.each do |water_heater| next unless water_heater.id == @water_heating_system_idref return water_heater @@ -5857,7 +6300,7 @@ def water_heating_system def hot_water_distribution return if @hot_water_distribution_idref.nil? - @hpxml_object.hot_water_distributions.each do |hot_water_distribution| + @parent_object.hot_water_distributions.each do |hot_water_distribution| next unless hot_water_distribution.id == @hot_water_distribution_idref return hot_water_distribution @@ -5866,7 +6309,7 @@ def hot_water_distribution end def delete - @hpxml_object.dishwashers.delete(self) + @parent_object.dishwashers.delete(self) end def check_for_errors @@ -5876,10 +6319,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - appliances = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Appliances']) + appliances = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Appliances']) dishwasher = XMLHelper.add_element(appliances, 'Dishwasher') sys_id = XMLHelper.add_element(dishwasher, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -5905,7 +6348,7 @@ def to_oga(doc) XMLHelper.add_extension(dishwasher, 'MonthlyScheduleMultipliers', @monthly_multipliers, :string, @monthly_multipliers_isdefaulted) unless @monthly_multipliers.nil? end - def from_oga(dishwasher) + def from_doc(dishwasher) return if dishwasher.nil? @id = HPXML::get_id(dishwasher) @@ -5929,14 +6372,14 @@ def from_oga(dishwasher) class Refrigerators < BaseArrayElement def add(**kwargs) - self << Refrigerator.new(@hpxml_object, **kwargs) + self << Refrigerator.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Appliances/Refrigerator').each do |refrigerator| - self << Refrigerator.new(@hpxml_object, refrigerator) + XMLHelper.get_elements(building, 'BuildingDetails/Appliances/Refrigerator').each do |refrigerator| + self << Refrigerator.new(@parent_object, refrigerator) end end end @@ -5947,7 +6390,7 @@ class Refrigerator < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.refrigerators.delete(self) + @parent_object.refrigerators.delete(self) end def check_for_errors @@ -5955,10 +6398,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - appliances = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Appliances']) + appliances = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Appliances']) refrigerator = XMLHelper.add_element(appliances, 'Refrigerator') sys_id = XMLHelper.add_element(refrigerator, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -5971,7 +6414,7 @@ def to_oga(doc) XMLHelper.add_extension(refrigerator, 'MonthlyScheduleMultipliers', @monthly_multipliers, :string, @monthly_multipliers_isdefaulted) unless @monthly_multipliers.nil? end - def from_oga(refrigerator) + def from_doc(refrigerator) return if refrigerator.nil? @id = HPXML::get_id(refrigerator) @@ -5987,14 +6430,14 @@ def from_oga(refrigerator) class Freezers < BaseArrayElement def add(**kwargs) - self << Freezer.new(@hpxml_object, **kwargs) + self << Freezer.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Appliances/Freezer').each do |freezer| - self << Freezer.new(@hpxml_object, freezer) + XMLHelper.get_elements(building, 'BuildingDetails/Appliances/Freezer').each do |freezer| + self << Freezer.new(@parent_object, freezer) end end end @@ -6005,7 +6448,7 @@ class Freezer < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.freezers.delete(self) + @parent_object.freezers.delete(self) end def check_for_errors @@ -6013,10 +6456,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - appliances = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Appliances']) + appliances = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Appliances']) freezer = XMLHelper.add_element(appliances, 'Freezer') sys_id = XMLHelper.add_element(freezer, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -6028,7 +6471,7 @@ def to_oga(doc) XMLHelper.add_extension(freezer, 'MonthlyScheduleMultipliers', @monthly_multipliers, :string, @monthly_multipliers_isdefaulted) unless @monthly_multipliers.nil? end - def from_oga(freezer) + def from_doc(freezer) return if freezer.nil? @id = HPXML::get_id(freezer) @@ -6043,14 +6486,14 @@ def from_oga(freezer) class Dehumidifiers < BaseArrayElement def add(**kwargs) - self << Dehumidifier.new(@hpxml_object, **kwargs) + self << Dehumidifier.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Appliances/Dehumidifier').each do |dehumidifier| - self << Dehumidifier.new(@hpxml_object, dehumidifier) + XMLHelper.get_elements(building, 'BuildingDetails/Appliances/Dehumidifier').each do |dehumidifier| + self << Dehumidifier.new(@parent_object, dehumidifier) end end end @@ -6061,7 +6504,7 @@ class Dehumidifier < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.dehumidifiers.delete(self) + @parent_object.dehumidifiers.delete(self) end def check_for_errors @@ -6069,10 +6512,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - appliances = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Appliances']) + appliances = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Appliances']) dehumidifier = XMLHelper.add_element(appliances, 'Dehumidifier') sys_id = XMLHelper.add_element(dehumidifier, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -6085,7 +6528,7 @@ def to_oga(doc) XMLHelper.add_element(dehumidifier, 'FractionDehumidificationLoadServed', @fraction_served, :float) unless @fraction_served.nil? end - def from_oga(dehumidifier) + def from_doc(dehumidifier) return if dehumidifier.nil? @id = HPXML::get_id(dehumidifier) @@ -6101,14 +6544,14 @@ def from_oga(dehumidifier) class CookingRanges < BaseArrayElement def add(**kwargs) - self << CookingRange.new(@hpxml_object, **kwargs) + self << CookingRange.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Appliances/CookingRange').each do |cooking_range| - self << CookingRange.new(@hpxml_object, cooking_range) + XMLHelper.get_elements(building, 'BuildingDetails/Appliances/CookingRange').each do |cooking_range| + self << CookingRange.new(@parent_object, cooking_range) end end end @@ -6119,7 +6562,7 @@ class CookingRange < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.cooking_ranges.delete(self) + @parent_object.cooking_ranges.delete(self) end def check_for_errors @@ -6127,10 +6570,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - appliances = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Appliances']) + appliances = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Appliances']) cooking_range = XMLHelper.add_element(appliances, 'CookingRange') sys_id = XMLHelper.add_element(cooking_range, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -6143,7 +6586,7 @@ def to_oga(doc) XMLHelper.add_extension(cooking_range, 'MonthlyScheduleMultipliers', @monthly_multipliers, :string, @monthly_multipliers_isdefaulted) unless @monthly_multipliers.nil? end - def from_oga(cooking_range) + def from_doc(cooking_range) return if cooking_range.nil? @id = HPXML::get_id(cooking_range) @@ -6159,14 +6602,14 @@ def from_oga(cooking_range) class Ovens < BaseArrayElement def add(**kwargs) - self << Oven.new(@hpxml_object, **kwargs) + self << Oven.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Appliances/Oven').each do |oven| - self << Oven.new(@hpxml_object, oven) + XMLHelper.get_elements(building, 'BuildingDetails/Appliances/Oven').each do |oven| + self << Oven.new(@parent_object, oven) end end end @@ -6176,7 +6619,7 @@ class Oven < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.ovens.delete(self) + @parent_object.ovens.delete(self) end def check_for_errors @@ -6184,17 +6627,17 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - appliances = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Appliances']) + appliances = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Appliances']) oven = XMLHelper.add_element(appliances, 'Oven') sys_id = XMLHelper.add_element(oven, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) XMLHelper.add_element(oven, 'IsConvection', @is_convection, :boolean, @is_convection_isdefaulted) unless @is_convection.nil? end - def from_oga(oven) + def from_doc(oven) return if oven.nil? @id = HPXML::get_id(oven) @@ -6204,14 +6647,14 @@ def from_oga(oven) class LightingGroups < BaseArrayElement def add(**kwargs) - self << LightingGroup.new(@hpxml_object, **kwargs) + self << LightingGroup.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Lighting/LightingGroup').each do |lighting_group| - self << LightingGroup.new(@hpxml_object, lighting_group) + XMLHelper.get_elements(building, 'BuildingDetails/Lighting/LightingGroup').each do |lighting_group| + self << LightingGroup.new(@parent_object, lighting_group) end end end @@ -6221,7 +6664,7 @@ class LightingGroup < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.lighting_groups.delete(self) + @parent_object.lighting_groups.delete(self) end def check_for_errors @@ -6229,10 +6672,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - lighting = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Lighting']) + lighting = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Lighting']) lighting_group = XMLHelper.add_element(lighting, 'LightingGroup') sys_id = XMLHelper.add_element(lighting_group, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -6249,7 +6692,7 @@ def to_oga(doc) end end - def from_oga(lighting_group) + def from_doc(lighting_group) return if lighting_group.nil? @id = HPXML::get_id(lighting_group) @@ -6274,10 +6717,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - lighting = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Lighting']) + lighting = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Lighting']) XMLHelper.add_extension(lighting, 'InteriorUsageMultiplier', @interior_usage_multiplier, :float, @interior_usage_multiplier_isdefaulted) unless @interior_usage_multiplier.nil? XMLHelper.add_extension(lighting, 'GarageUsageMultiplier', @garage_usage_multiplier, :float, @garage_usage_multiplier_isdefaulted) unless @garage_usage_multiplier.nil? XMLHelper.add_extension(lighting, 'ExteriorUsageMultiplier', @exterior_usage_multiplier, :float, @exterior_usage_multiplier_isdefaulted) unless @exterior_usage_multiplier.nil? @@ -6291,7 +6734,7 @@ def to_oga(doc) XMLHelper.add_extension(lighting, 'ExteriorWeekendScheduleFractions', @exterior_weekend_fractions, :string, @exterior_weekend_fractions_isdefaulted) unless @exterior_weekend_fractions.nil? XMLHelper.add_extension(lighting, 'ExteriorMonthlyScheduleMultipliers', @exterior_monthly_multipliers, :string, @exterior_monthly_multipliers_isdefaulted) unless @exterior_monthly_multipliers.nil? if @holiday_exists - exterior_holiday_lighting = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Lighting', 'extension', 'ExteriorHolidayLighting']) + exterior_holiday_lighting = XMLHelper.create_elements_as_needed(lighting, ['extension', 'ExteriorHolidayLighting']) if not @holiday_kwh_per_day.nil? holiday_lighting_load = XMLHelper.add_element(exterior_holiday_lighting, 'Load') XMLHelper.add_element(holiday_lighting_load, 'Units', UnitsKwhPerDay, :string) @@ -6306,10 +6749,10 @@ def to_oga(doc) end end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - lighting = XMLHelper.get_element(hpxml, 'Building/BuildingDetails/Lighting') + lighting = XMLHelper.get_element(building, 'BuildingDetails/Lighting') return if lighting.nil? @interior_usage_multiplier = XMLHelper.get_value(lighting, 'extension/InteriorUsageMultiplier', :float) @@ -6324,7 +6767,7 @@ def from_oga(hpxml) @exterior_weekday_fractions = XMLHelper.get_value(lighting, 'extension/ExteriorWeekdayScheduleFractions', :string) @exterior_weekend_fractions = XMLHelper.get_value(lighting, 'extension/ExteriorWeekendScheduleFractions', :string) @exterior_monthly_multipliers = XMLHelper.get_value(lighting, 'extension/ExteriorMonthlyScheduleMultipliers', :string) - if not XMLHelper.get_element(hpxml, 'Building/BuildingDetails/Lighting/extension/ExteriorHolidayLighting').nil? + if not XMLHelper.get_element(building, 'BuildingDetails/Lighting/extension/ExteriorHolidayLighting').nil? @holiday_exists = true @holiday_kwh_per_day = XMLHelper.get_value(lighting, "extension/ExteriorHolidayLighting/Load[Units='#{UnitsKwhPerDay}']/Value", :float) @holiday_period_begin_month = XMLHelper.get_value(lighting, 'extension/ExteriorHolidayLighting/PeriodBeginMonth', :integer) @@ -6341,14 +6784,14 @@ def from_oga(hpxml) class CeilingFans < BaseArrayElement def add(**kwargs) - self << CeilingFan.new(@hpxml_object, **kwargs) + self << CeilingFan.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Lighting/CeilingFan').each do |ceiling_fan| - self << CeilingFan.new(@hpxml_object, ceiling_fan) + XMLHelper.get_elements(building, 'BuildingDetails/Lighting/CeilingFan').each do |ceiling_fan| + self << CeilingFan.new(@parent_object, ceiling_fan) end end end @@ -6358,7 +6801,7 @@ class CeilingFan < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.ceiling_fans.delete(self) + @parent_object.ceiling_fans.delete(self) end def check_for_errors @@ -6366,10 +6809,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - lighting = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Lighting']) + lighting = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Lighting']) ceiling_fan = XMLHelper.add_element(lighting, 'CeilingFan') sys_id = XMLHelper.add_element(ceiling_fan, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -6384,7 +6827,7 @@ def to_oga(doc) XMLHelper.add_extension(ceiling_fan, 'MonthlyScheduleMultipliers', @monthly_multipliers, :string, @monthly_multipliers_isdefaulted) unless @monthly_multipliers.nil? end - def from_oga(ceiling_fan) + def from_doc(ceiling_fan) @id = HPXML::get_id(ceiling_fan) @efficiency = XMLHelper.get_value(ceiling_fan, "Airflow[FanSpeed='medium']/Efficiency", :float) @count = XMLHelper.get_value(ceiling_fan, 'Count', :integer) @@ -6396,14 +6839,14 @@ def from_oga(ceiling_fan) class Pools < BaseArrayElement def add(**kwargs) - self << Pool.new(@hpxml_object, **kwargs) + self << Pool.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Pools/Pool').each do |pool| - self << Pool.new(@hpxml_object, pool) + XMLHelper.get_elements(building, 'BuildingDetails/Pools/Pool').each do |pool| + self << Pool.new(@parent_object, pool) end end end @@ -6416,7 +6859,7 @@ class Pool < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.pools.delete(self) + @parent_object.pools.delete(self) end def check_for_errors @@ -6424,17 +6867,17 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - pools = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Pools']) + pools = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Pools']) pool = XMLHelper.add_element(pools, 'Pool') sys_id = XMLHelper.add_element(pool, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) XMLHelper.add_element(pool, 'Type', @type, :string) unless @type.nil? if @type != HPXML::TypeNone - pumps = XMLHelper.add_element(pool, 'PoolPumps') - pool_pump = XMLHelper.add_element(pumps, 'PoolPump') + pumps = XMLHelper.add_element(pool, 'Pumps') + pool_pump = XMLHelper.add_element(pumps, 'Pump') sys_id = XMLHelper.add_element(pool_pump, 'SystemIdentifier') if not @pump_id.nil? XMLHelper.add_attribute(sys_id, 'id', @pump_id) @@ -6475,10 +6918,10 @@ def to_oga(doc) end end - def from_oga(pool) + def from_doc(pool) @id = HPXML::get_id(pool) @type = XMLHelper.get_value(pool, 'Type', :string) - pool_pump = XMLHelper.get_element(pool, 'PoolPumps/PoolPump') + pool_pump = XMLHelper.get_element(pool, 'Pumps/Pump') if not pool_pump.nil? @pump_id = HPXML::get_id(pool_pump) @pump_type = XMLHelper.get_value(pool_pump, 'Type', :string) @@ -6502,21 +6945,21 @@ def from_oga(pool) end end - class HotTubs < BaseArrayElement + class PermanentSpas < BaseArrayElement def add(**kwargs) - self << HotTub.new(@hpxml_object, **kwargs) + self << PermanentSpa.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/HotTubs/HotTub').each do |hot_tub| - self << HotTub.new(@hpxml_object, hot_tub) + XMLHelper.get_elements(building, 'BuildingDetails/Spas/PermanentSpa').each do |spa| + self << PermanentSpa.new(@parent_object, spa) end end end - class HotTub < BaseElement + class PermanentSpa < BaseElement ATTRS = [:id, :type, :heater_id, :heater_type, :heater_load_units, :heater_load_value, :heater_usage_multiplier, :pump_id, :pump_type, :pump_kwh_per_year, :pump_usage_multiplier, :heater_weekday_fractions, :heater_weekend_fractions, :heater_monthly_multipliers, @@ -6524,7 +6967,7 @@ class HotTub < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.hot_tubs.delete(self) + @parent_object.permanent_spas.delete(self) end def check_for_errors @@ -6532,36 +6975,36 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - hot_tubs = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'HotTubs']) - hot_tub = XMLHelper.add_element(hot_tubs, 'HotTub') - sys_id = XMLHelper.add_element(hot_tub, 'SystemIdentifier') + spas = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Spas']) + spa = XMLHelper.add_element(spas, 'PermanentSpa') + sys_id = XMLHelper.add_element(spa, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) - XMLHelper.add_element(hot_tub, 'Type', @type, :string) unless @type.nil? + XMLHelper.add_element(spa, 'Type', @type, :string) unless @type.nil? if @type != HPXML::TypeNone - pumps = XMLHelper.add_element(hot_tub, 'HotTubPumps') - hot_tub_pump = XMLHelper.add_element(pumps, 'HotTubPump') - sys_id = XMLHelper.add_element(hot_tub_pump, 'SystemIdentifier') + pumps = XMLHelper.add_element(spa, 'Pumps') + spa_pump = XMLHelper.add_element(pumps, 'Pump') + sys_id = XMLHelper.add_element(spa_pump, 'SystemIdentifier') if not @pump_id.nil? XMLHelper.add_attribute(sys_id, 'id', @pump_id) else XMLHelper.add_attribute(sys_id, 'id', @id + 'Pump') end - XMLHelper.add_element(hot_tub_pump, 'Type', @pump_type, :string) + XMLHelper.add_element(spa_pump, 'Type', @pump_type, :string) if @pump_type != HPXML::TypeNone if not @pump_kwh_per_year.nil? - load = XMLHelper.add_element(hot_tub_pump, 'Load') + load = XMLHelper.add_element(spa_pump, 'Load') XMLHelper.add_element(load, 'Units', UnitsKwhPerYear, :string) XMLHelper.add_element(load, 'Value', @pump_kwh_per_year, :float, @pump_kwh_per_year_isdefaulted) end - XMLHelper.add_extension(hot_tub_pump, 'UsageMultiplier', @pump_usage_multiplier, :float, @pump_usage_multiplier_isdefaulted) unless @pump_usage_multiplier.nil? - XMLHelper.add_extension(hot_tub_pump, 'WeekdayScheduleFractions', @pump_weekday_fractions, :string, @pump_weekday_fractions_isdefaulted) unless @pump_weekday_fractions.nil? - XMLHelper.add_extension(hot_tub_pump, 'WeekendScheduleFractions', @pump_weekend_fractions, :string, @pump_weekend_fractions_isdefaulted) unless @pump_weekend_fractions.nil? - XMLHelper.add_extension(hot_tub_pump, 'MonthlyScheduleMultipliers', @pump_monthly_multipliers, :string, @pump_monthly_multipliers_isdefaulted) unless @pump_monthly_multipliers.nil? + XMLHelper.add_extension(spa_pump, 'UsageMultiplier', @pump_usage_multiplier, :float, @pump_usage_multiplier_isdefaulted) unless @pump_usage_multiplier.nil? + XMLHelper.add_extension(spa_pump, 'WeekdayScheduleFractions', @pump_weekday_fractions, :string, @pump_weekday_fractions_isdefaulted) unless @pump_weekday_fractions.nil? + XMLHelper.add_extension(spa_pump, 'WeekendScheduleFractions', @pump_weekend_fractions, :string, @pump_weekend_fractions_isdefaulted) unless @pump_weekend_fractions.nil? + XMLHelper.add_extension(spa_pump, 'MonthlyScheduleMultipliers', @pump_monthly_multipliers, :string, @pump_monthly_multipliers_isdefaulted) unless @pump_monthly_multipliers.nil? end - heater = XMLHelper.add_element(hot_tub, 'Heater') + heater = XMLHelper.add_element(spa, 'Heater') sys_id = XMLHelper.add_element(heater, 'SystemIdentifier') if not @heater_id.nil? XMLHelper.add_attribute(sys_id, 'id', @heater_id) @@ -6583,20 +7026,20 @@ def to_oga(doc) end end - def from_oga(hot_tub) - @id = HPXML::get_id(hot_tub) - @type = XMLHelper.get_value(hot_tub, 'Type', :string) - hot_tub_pump = XMLHelper.get_element(hot_tub, 'HotTubPumps/HotTubPump') - if not hot_tub_pump.nil? - @pump_id = HPXML::get_id(hot_tub_pump) - @pump_type = XMLHelper.get_value(hot_tub_pump, 'Type', :string) - @pump_kwh_per_year = XMLHelper.get_value(hot_tub_pump, "Load[Units='#{UnitsKwhPerYear}']/Value", :float) - @pump_usage_multiplier = XMLHelper.get_value(hot_tub_pump, 'extension/UsageMultiplier', :float) - @pump_weekday_fractions = XMLHelper.get_value(hot_tub_pump, 'extension/WeekdayScheduleFractions', :string) - @pump_weekend_fractions = XMLHelper.get_value(hot_tub_pump, 'extension/WeekendScheduleFractions', :string) - @pump_monthly_multipliers = XMLHelper.get_value(hot_tub_pump, 'extension/MonthlyScheduleMultipliers', :string) + def from_doc(spa) + @id = HPXML::get_id(spa) + @type = XMLHelper.get_value(spa, 'Type', :string) + spa_pump = XMLHelper.get_element(spa, 'Pumps/Pump') + if not spa_pump.nil? + @pump_id = HPXML::get_id(spa_pump) + @pump_type = XMLHelper.get_value(spa_pump, 'Type', :string) + @pump_kwh_per_year = XMLHelper.get_value(spa_pump, "Load[Units='#{UnitsKwhPerYear}']/Value", :float) + @pump_usage_multiplier = XMLHelper.get_value(spa_pump, 'extension/UsageMultiplier', :float) + @pump_weekday_fractions = XMLHelper.get_value(spa_pump, 'extension/WeekdayScheduleFractions', :string) + @pump_weekend_fractions = XMLHelper.get_value(spa_pump, 'extension/WeekendScheduleFractions', :string) + @pump_monthly_multipliers = XMLHelper.get_value(spa_pump, 'extension/MonthlyScheduleMultipliers', :string) end - heater = XMLHelper.get_element(hot_tub, 'Heater') + heater = XMLHelper.get_element(spa, 'Heater') if not heater.nil? @heater_id = HPXML::get_id(heater) @heater_type = XMLHelper.get_value(heater, 'Type', :string) @@ -6610,16 +7053,57 @@ def from_oga(hot_tub) end end + class PortableSpas < BaseArrayElement + def add(**kwargs) + self << PortableSpa.new(@parent_object, **kwargs) + end + + def from_doc(building) + return if building.nil? + + XMLHelper.get_elements(building, 'BuildingDetails/Spas/PortableSpa').each do |spa| + self << PortableSpa.new(@parent_object, spa) + end + end + end + + class PortableSpa < BaseElement + ATTRS = [:id] + attr_accessor(*ATTRS) + + def delete + @parent_object.portable_spas.delete(self) + end + + def check_for_errors + errors = [] + return errors + end + + def to_doc(building) + return if nil? + + spas = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'Spas']) + spa = XMLHelper.add_element(spas, 'PortableSpa') + sys_id = XMLHelper.add_element(spa, 'SystemIdentifier') + XMLHelper.add_attribute(sys_id, 'id', @id) + end + + def from_doc(spa) + @id = HPXML::get_id(spa) + end + end + class PlugLoads < BaseArrayElement def add(**kwargs) - self << PlugLoad.new(@hpxml_object, **kwargs) + self << PlugLoad.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/MiscLoads/PlugLoad').each do |plug_load| - self << PlugLoad.new(@hpxml_object, plug_load) + XMLHelper.get_elements(building, 'BuildingDetails/MiscLoads/PlugLoad').each do |plug_load| + self << PlugLoad.new(@parent_object, plug_load) end end end @@ -6630,7 +7114,7 @@ class PlugLoad < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.plug_loads.delete(self) + @parent_object.plug_loads.delete(self) end def check_for_errors @@ -6638,10 +7122,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - misc_loads = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'MiscLoads']) + misc_loads = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'MiscLoads']) plug_load = XMLHelper.add_element(misc_loads, 'PlugLoad') sys_id = XMLHelper.add_element(plug_load, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -6659,7 +7143,7 @@ def to_oga(doc) XMLHelper.add_extension(plug_load, 'MonthlyScheduleMultipliers', @monthly_multipliers, :string, @monthly_multipliers_isdefaulted) unless @monthly_multipliers.nil? end - def from_oga(plug_load) + def from_doc(plug_load) @id = HPXML::get_id(plug_load) @plug_load_type = XMLHelper.get_value(plug_load, 'PlugLoadType', :string) @kwh_per_year = XMLHelper.get_value(plug_load, "Load[Units='#{UnitsKwhPerYear}']/Value", :float) @@ -6674,14 +7158,14 @@ def from_oga(plug_load) class FuelLoads < BaseArrayElement def add(**kwargs) - self << FuelLoad.new(@hpxml_object, **kwargs) + self << FuelLoad.new(@parent_object, **kwargs) end - def from_oga(hpxml) - return if hpxml.nil? + def from_doc(building) + return if building.nil? - XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/MiscLoads/FuelLoad').each do |fuel_load| - self << FuelLoad.new(@hpxml_object, fuel_load) + XMLHelper.get_elements(building, 'BuildingDetails/MiscLoads/FuelLoad').each do |fuel_load| + self << FuelLoad.new(@parent_object, fuel_load) end end end @@ -6692,7 +7176,7 @@ class FuelLoad < BaseElement attr_accessor(*ATTRS) def delete - @hpxml_object.fuel_loads.delete(self) + @parent_object.fuel_loads.delete(self) end def check_for_errors @@ -6700,10 +7184,10 @@ def check_for_errors return errors end - def to_oga(doc) + def to_doc(building) return if nil? - misc_loads = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'MiscLoads']) + misc_loads = XMLHelper.create_elements_as_needed(building, ['BuildingDetails', 'MiscLoads']) fuel_load = XMLHelper.add_element(misc_loads, 'FuelLoad') sys_id = XMLHelper.add_element(fuel_load, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) @@ -6722,7 +7206,7 @@ def to_oga(doc) XMLHelper.add_extension(fuel_load, 'MonthlyScheduleMultipliers', @monthly_multipliers, :string, @monthly_multipliers_isdefaulted) unless @monthly_multipliers.nil? end - def from_oga(fuel_load) + def from_doc(fuel_load) @id = HPXML::get_id(fuel_load) @fuel_load_type = XMLHelper.get_value(fuel_load, 'FuelLoadType', :string) @therm_per_year = XMLHelper.get_value(fuel_load, "Load[Units='#{UnitsThermPerYear}']/Value", :float) @@ -6736,232 +7220,176 @@ def from_oga(fuel_load) end end - def _create_oga_document() - doc = XMLHelper.create_doc('1.0', 'UTF-8') - hpxml = XMLHelper.add_element(doc, 'HPXML') - XMLHelper.add_attribute(hpxml, 'xmlns', NameSpace) - XMLHelper.add_attribute(hpxml, 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance') - XMLHelper.add_attribute(hpxml, 'xsi:schemaLocation', NameSpace) - XMLHelper.add_attribute(hpxml, 'schemaVersion', Version::HPXML_Version) - return doc - end - - def collapse_enclosure_surfaces(surf_types_of_interest = nil) - # Collapses like surfaces into a single surface with, e.g., aggregate surface area. - # This can significantly speed up performance for HPXML files with lots of individual - # surfaces (e.g., windows). - - surf_types = { roofs: @roofs, - walls: @walls, - rim_joists: @rim_joists, - foundation_walls: @foundation_walls, - floors: @floors, - slabs: @slabs, - windows: @windows, - skylights: @skylights, - doors: @doors } - - attrs_to_ignore = [:id, - :insulation_id, - :perimeter_insulation_id, - :under_slab_insulation_id, - :area, - :length, - :exposed_perimeter] - - # Look for pairs of surfaces that can be collapsed - surf_types.each do |surf_type, surfaces| - next unless surf_types_of_interest.nil? || surf_types_of_interest.include?(surf_type) - - for i in 0..surfaces.size - 1 - surf = surfaces[i] - next if surf.nil? - - for j in (surfaces.size - 1).downto(i + 1) - surf2 = surfaces[j] - next if surf2.nil? - - match = true - surf.class::ATTRS.each do |attribute| - next if attribute.to_s.end_with? '_isdefaulted' - next if attrs_to_ignore.include? attribute - next if (surf_type == :foundation_walls) && ([:azimuth, :orientation].include? attribute) # Azimuth of foundation walls is irrelevant - next if surf.send(attribute) == surf2.send(attribute) - - match = false - break - end - next unless match - - # Update values - if (not surf.area.nil?) && (not surf2.area.nil?) - surf.area += surf2.area - end - if (surf_type == :slabs) && (not surf.exposed_perimeter.nil?) && (not surf2.exposed_perimeter.nil?) - surf.exposed_perimeter += surf2.exposed_perimeter - end - if (surf_type == :foundation_walls) && (not surf.length.nil?) && (not surf2.length.nil?) - surf.length += surf2.length - end - - # Update subsurface idrefs as appropriate - (@windows + @doors).each do |subsurf| - next unless subsurf.wall_idref == surf2.id - - subsurf.wall_idref = surf.id - end - @skylights.each do |subsurf| - next unless subsurf.roof_idref == surf2.id - - subsurf.roof_idref = surf.id - end + class CoolingDetailedPerformanceData < BaseArrayElement + def add(**kwargs) + self << CoolingPerformanceDataPoint.new(@parent_object, **kwargs) + end - # Remove old surface - surfaces[j].delete + def check_for_errors + errors = [] + # For every unique outdoor temperature, check we have exactly one minimum and one maximum datapoint + outdoor_temps = self.select { |dp| [HPXML::CapacityDescriptionMinimum, HPXML::CapacityDescriptionMaximum].include? dp.capacity_description }.map { |dp| dp.outdoor_temperature }.uniq + outdoor_temps.each do |outdoor_temp| + num_min = self.select { |dp| dp.capacity_description == HPXML::CapacityDescriptionMinimum && dp.outdoor_temperature == outdoor_temp }.size + num_max = self.select { |dp| dp.capacity_description == HPXML::CapacityDescriptionMaximum && dp.outdoor_temperature == outdoor_temp }.size + if (num_min != 1) || (num_max != 1) + errors << "Cooling detailed performance data for outdoor temperature = #{outdoor_temp} is incomplete; there must be exactly one minimum and one maximum capacity datapoint." end end + return errors end - end - def delete_adiabatic_subsurfaces() - @doors.reverse_each do |door| - next if door.wall.nil? - next if door.wall.exterior_adjacent_to != HPXML::LocationOtherHousingUnit - - door.delete - end - @windows.reverse_each do |window| - next if window.wall.nil? - next if window.wall.exterior_adjacent_to != HPXML::LocationOtherHousingUnit + def from_doc(hvac_system) + return if hvac_system.nil? - window.delete + XMLHelper.get_elements(hvac_system, 'CoolingDetailedPerformanceData/PerformanceDataPoint').each do |performance_data_point| + self << CoolingPerformanceDataPoint.new(@parent_object, performance_data_point) + end end end - def check_for_errors() - errors = [] - - # ------------------------------- # - # Check for errors within objects # - # ------------------------------- # + class CoolingPerformanceDataPoint < BaseElement + ATTRS = [:outdoor_temperature, :indoor_temperature, :indoor_wetbulb, :capacity, :capacity_fraction_of_nominal, + :capacity_description, :efficiency_cop, :gross_capacity, :gross_efficiency_cop, :isdefaulted] + attr_accessor(*ATTRS) - # Ask objects to check for errors - self.class::HPXML_ATTRS.each do |attribute| - hpxml_obj = send(attribute) - if not hpxml_obj.respond_to? :check_for_errors - fail "Need to add 'check_for_errors' method to #{hpxml_obj.class} class." + def delete + (@parent_object.cooling_systems + @parent_object.heat_pumps).each do |cooling_system| + cooling_system.cooling_detailed_performance_data.delete(self) end + end - errors += hpxml_obj.check_for_errors + def check_for_errors + errors = [] + return errors end - # ------------------------------- # - # Check for errors across objects # - # ------------------------------- # + def to_doc(hvac_system) + detailed_performance_data = XMLHelper.create_elements_as_needed(hvac_system, ['CoolingDetailedPerformanceData']) + performance_data_point = XMLHelper.add_element(detailed_performance_data, 'PerformanceDataPoint') + XMLHelper.add_attribute(performance_data_point, 'dataSource', 'software') if @isdefaulted + XMLHelper.add_element(performance_data_point, 'OutdoorTemperature', @outdoor_temperature, :float, @outdoor_temperature_isdefaulted) unless @outdoor_temperature.nil? + XMLHelper.add_element(performance_data_point, 'IndoorTemperature', @indoor_temperature, :float, @indoor_temperature_isdefaulted) unless @indoor_temperature.nil? + XMLHelper.add_element(performance_data_point, 'IndoorWetbulbTemperature', @indoor_wetbulb, :float, @indoor_wetbulb_isdefaulted) unless @indoor_wetbulb.nil? + XMLHelper.add_element(performance_data_point, 'Capacity', @capacity, :float, @capacity_isdefaulted) unless @capacity.nil? + XMLHelper.add_element(performance_data_point, 'CapacityFractionOfNominal', @capacity_fraction_of_nominal, :float, @capacity_fraction_of_nominal_isdefaulted) unless @capacity_fraction_of_nominal.nil? + XMLHelper.add_element(performance_data_point, 'CapacityDescription', @capacity_description, :string, @capacity_description_isdefaulted) unless @capacity_description.nil? + if not @efficiency_cop.nil? + efficiency = XMLHelper.add_element(performance_data_point, 'Efficiency') + XMLHelper.add_element(efficiency, 'Units', UnitsCOP, :string) + XMLHelper.add_element(efficiency, 'Value', @efficiency_cop, :float) + end + end - # Check for HVAC systems referenced by multiple water heating systems - hvac_systems.each do |hvac_system| - num_attached = 0 - @water_heating_systems.each do |water_heating_system| - next if water_heating_system.related_hvac_idref.nil? - next unless hvac_system.id == water_heating_system.related_hvac_idref + def from_doc(performance_data_point) + return if performance_data_point.nil? - num_attached += 1 - end - next if num_attached <= 1 + @outdoor_temperature = XMLHelper.get_value(performance_data_point, 'OutdoorTemperature', :float) + @indoor_temperature = XMLHelper.get_value(performance_data_point, 'IndoorTemperature', :float) + @indoor_wetbulb = XMLHelper.get_value(performance_data_point, 'IndoorWetbulbTemperature', :float) + @capacity = XMLHelper.get_value(performance_data_point, 'Capacity', :float) + @capacity_fraction_of_nominal = XMLHelper.get_value(performance_data_point, 'CapacityFractionOfNominal', :float) + @capacity_description = XMLHelper.get_value(performance_data_point, 'CapacityDescription', :string) + @efficiency_cop = XMLHelper.get_value(performance_data_point, "Efficiency[Units='#{UnitsCOP}']/Value", :float) + end + end - errors << "RelatedHVACSystem '#{hvac_system.id}' is attached to multiple water heating systems." + class HeatingDetailedPerformanceData < BaseArrayElement + def add(**kwargs) + self << HeatingPerformanceDataPoint.new(@parent_object, **kwargs) end - # Check for the sum of CFA served by distribution systems <= CFA - if not @building_construction.conditioned_floor_area.nil? - air_distributions = @hvac_distributions.select { |dist| dist if HPXML::HVACDistributionTypeAir == dist.distribution_system_type } - heating_dist = [] - cooling_dist = [] - air_distributions.each do |dist| - heating_systems = dist.hvac_systems.select { |sys| sys if (sys.respond_to? :fraction_heat_load_served) && (sys.fraction_heat_load_served.to_f > 0) } - cooling_systems = dist.hvac_systems.select { |sys| sys if (sys.respond_to? :fraction_cool_load_served) && (sys.fraction_cool_load_served.to_f > 0) } - if heating_systems.size > 0 - heating_dist << dist - end - if cooling_systems.size > 0 - cooling_dist << dist + def check_for_errors + errors = [] + # For every unique outdoor temperature, check we have exactly one minimum and one maximum datapoint + outdoor_temps = self.select { |dp| [HPXML::CapacityDescriptionMinimum, HPXML::CapacityDescriptionMaximum].include? dp.capacity_description }.map { |dp| dp.outdoor_temperature }.uniq + outdoor_temps.each do |outdoor_temp| + num_min = self.select { |dp| dp.capacity_description == HPXML::CapacityDescriptionMinimum && dp.outdoor_temperature == outdoor_temp }.size + num_max = self.select { |dp| dp.capacity_description == HPXML::CapacityDescriptionMaximum && dp.outdoor_temperature == outdoor_temp }.size + if (num_min != 1) || (num_max != 1) + errors << "Heating detailed performance data for outdoor temperature = #{outdoor_temp} is incomplete; there must be exactly one minimum and one maximum capacity datapoint." end end - heating_total_dist_cfa_served = heating_dist.map { |htg_dist| htg_dist.conditioned_floor_area_served.to_f }.sum(0.0) - cooling_total_dist_cfa_served = cooling_dist.map { |clg_dist| clg_dist.conditioned_floor_area_served.to_f }.sum(0.0) - if (heating_total_dist_cfa_served > @building_construction.conditioned_floor_area + 1.0) # Allow 1 ft2 of tolerance - errors << 'The total conditioned floor area served by the HVAC distribution system(s) for heating is larger than the conditioned floor area of the building.' - end - if (cooling_total_dist_cfa_served > @building_construction.conditioned_floor_area + 1.0) # Allow 1 ft2 of tolerance - errors << 'The total conditioned floor area served by the HVAC distribution system(s) for cooling is larger than the conditioned floor area of the building.' - end + return errors end - # Check for correct PrimaryIndicator values across all refrigerators - if @refrigerators.size > 1 - primary_indicators = @refrigerators.select { |r| r.primary_indicator }.size - if primary_indicators > 1 - errors << 'More than one refrigerator designated as the primary.' - elsif primary_indicators == 0 - errors << 'Could not find a primary refrigerator.' + def from_doc(hvac_system) + return if hvac_system.nil? + + XMLHelper.get_elements(hvac_system, 'HeatingDetailedPerformanceData/PerformanceDataPoint').each do |performance_data_point| + self << HeatingPerformanceDataPoint.new(@parent_object, performance_data_point) end end + end - # Check for correct PrimaryHeatingSystem values across all HVAC systems - n_primary_heating = @heating_systems.select { |h| h.primary_system }.size + - @heat_pumps.select { |h| h.primary_heating_system }.size - if n_primary_heating > 1 - errors << 'More than one heating system designated as the primary.' - end + class HeatingPerformanceDataPoint < BaseElement + ATTRS = [:outdoor_temperature, :indoor_temperature, :capacity, :capacity_fraction_of_nominal, + :capacity_description, :efficiency_cop, :gross_capacity, :gross_efficiency_cop, + :isdefaulted] + attr_accessor(*ATTRS) - # Check for correct PrimaryCoolingSystem values across all HVAC systems - n_primary_cooling = @cooling_systems.select { |c| c.primary_system }.size + - @heat_pumps.select { |c| c.primary_cooling_system }.size - if n_primary_cooling > 1 - errors << 'More than one cooling system designated as the primary.' + def delete + (@parent_object.heating_systems + @parent_object.heat_pumps).each do |heating_system| + heating_system.cooling_detailed_performance_data.delete(self) + end end - # Check for at most 1 shared heating system and 1 shared cooling system - num_htg_shared = 0 - num_clg_shared = 0 - (@heating_systems + @heat_pumps).each do |hvac_system| - next unless hvac_system.is_shared_system - - num_htg_shared += 1 + def check_for_errors + errors = [] + return errors end - (@cooling_systems + @heat_pumps).each do |hvac_system| - next unless hvac_system.is_shared_system - num_clg_shared += 1 - end - if num_htg_shared > 1 - errors << 'More than one shared heating system found.' - end - if num_clg_shared > 1 - errors << 'More than one shared cooling system found.' + def to_doc(hvac_system) + detailed_performance_data = XMLHelper.create_elements_as_needed(hvac_system, ['HeatingDetailedPerformanceData']) + performance_data_point = XMLHelper.add_element(detailed_performance_data, 'PerformanceDataPoint') + XMLHelper.add_attribute(performance_data_point, 'dataSource', 'software') if @isdefaulted + XMLHelper.add_element(performance_data_point, 'OutdoorTemperature', @outdoor_temperature, :float, @outdoor_temperature_isdefaulted) unless @outdoor_temperature.nil? + XMLHelper.add_element(performance_data_point, 'IndoorTemperature', @indoor_temperature, :float, @indoor_temperature_isdefaulted) unless @indoor_temperature.nil? + XMLHelper.add_element(performance_data_point, 'Capacity', @capacity, :float, @capacity_isdefaulted) unless @capacity.nil? + XMLHelper.add_element(performance_data_point, 'CapacityFractionOfNominal', @capacity_fraction_of_nominal, :float, @capacity_fraction_of_nominal_isdefaulted) unless @capacity_fraction_of_nominal.nil? + XMLHelper.add_element(performance_data_point, 'CapacityDescription', @capacity_description, :string, @capacity_description_isdefaulted) unless @capacity_description.nil? + if not @efficiency_cop.nil? + efficiency = XMLHelper.add_element(performance_data_point, 'Efficiency') + XMLHelper.add_element(efficiency, 'Units', UnitsCOP, :string) + XMLHelper.add_element(efficiency, 'Value', @efficiency_cop, :float) + end end - errors.map! { |e| "#{@hpxml_path}: #{e}" } + def from_doc(performance_data_point) + return if performance_data_point.nil? - return errors + @outdoor_temperature = XMLHelper.get_value(performance_data_point, 'OutdoorTemperature', :float) + @indoor_temperature = XMLHelper.get_value(performance_data_point, 'IndoorTemperature', :float) + @capacity = XMLHelper.get_value(performance_data_point, 'Capacity', :float) + @capacity_fraction_of_nominal = XMLHelper.get_value(performance_data_point, 'CapacityFractionOfNominal', :float) + @capacity_description = XMLHelper.get_value(performance_data_point, 'CapacityDescription', :string) + @efficiency_cop = XMLHelper.get_value(performance_data_point, "Efficiency[Units='#{UnitsCOP}']/Value", :float) + end + end + + def _create_hpxml_document() + doc = XMLHelper.create_doc('1.0', 'UTF-8') + hpxml = XMLHelper.add_element(doc, 'HPXML') + XMLHelper.add_attribute(hpxml, 'xmlns', NameSpace) + XMLHelper.add_attribute(hpxml, 'schemaVersion', Version::HPXML_Version) + return doc end def self.conditioned_locations - return [HPXML::LocationLivingSpace, + return [HPXML::LocationConditionedSpace, HPXML::LocationBasementConditioned, HPXML::LocationCrawlspaceConditioned, HPXML::LocationOtherHousingUnit] end def self.conditioned_locations_this_unit - return [HPXML::LocationLivingSpace, + return [HPXML::LocationConditionedSpace, HPXML::LocationBasementConditioned, HPXML::LocationCrawlspaceConditioned] end def self.conditioned_finished_locations - return [HPXML::LocationLivingSpace, + return [HPXML::LocationConditionedSpace, HPXML::LocationBasementConditioned] end @@ -6980,8 +7408,8 @@ def self.is_adiabatic(surface) return true elsif conditioned_locations.include?(surface.interior_adjacent_to) && conditioned_locations.include?(surface.exterior_adjacent_to) - # E.g., floor between living space and conditioned basement, or - # wall between living space and "other housing unit" + # E.g., floor between conditioned space and conditioned basement, or + # wall between conditioned space and "other housing unit" return true end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 195ac605..f618218a 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class HPXMLDefaults @@ -6,69 +11,70 @@ class HPXMLDefaults # being written to the HPXML file. This will allow the custom information to # be used by subsequent calculations/logic. - def self.apply(runner, hpxml, eri_version, weather, epw_file: nil, schedules_file: nil, convert_shared_systems: true) - cfa = hpxml.building_construction.conditioned_floor_area - nbeds = hpxml.building_construction.number_of_bedrooms - ncfl = hpxml.building_construction.number_of_conditioned_floors - ncfl_ag = hpxml.building_construction.number_of_conditioned_floors_above_grade - has_uncond_bsmnt = hpxml.has_location(HPXML::LocationBasementUnconditioned) - infil_measurement = Airflow.get_infiltration_measurement_of_interest(hpxml.air_infiltration_measurements) + def self.apply(runner, hpxml, hpxml_bldg, eri_version, weather, epw_file: nil, schedules_file: nil, convert_shared_systems: true) + cfa = hpxml_bldg.building_construction.conditioned_floor_area + nbeds = hpxml_bldg.building_construction.number_of_bedrooms + ncfl = hpxml_bldg.building_construction.number_of_conditioned_floors + ncfl_ag = hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade + has_uncond_bsmnt = hpxml_bldg.has_location(HPXML::LocationBasementUnconditioned) + infil_measurement = Airflow.get_infiltration_measurement_of_interest(hpxml_bldg.air_infiltration_measurements) # Check for presence of fuels once - has_fuel = {} - hpxml_doc = hpxml.to_oga - Constants.FossilFuels.each do |fuel| - has_fuel[fuel] = hpxml.has_fuel(fuel, hpxml_doc) - end - - apply_header(hpxml, epw_file, weather) - apply_header_sizing(hpxml, weather, nbeds) - apply_emissions_scenarios(hpxml, has_fuel) - apply_utility_bill_scenarios(runner, hpxml, has_fuel) - apply_site(hpxml) - apply_neighbor_buildings(hpxml) - apply_building_occupancy(hpxml, schedules_file) - apply_building_construction(hpxml, cfa, nbeds, infil_measurement) - apply_climate_and_risk_zones(hpxml, epw_file) - apply_infiltration(hpxml, infil_measurement) - apply_attics(hpxml) - apply_foundations(hpxml) - apply_roofs(hpxml) - apply_rim_joists(hpxml) - apply_walls(hpxml) - apply_foundation_walls(hpxml) - apply_floors(hpxml) - apply_slabs(hpxml) - apply_windows(hpxml) - apply_skylights(hpxml) - apply_doors(hpxml) - apply_partition_wall_mass(hpxml) - apply_furniture_mass(hpxml) - apply_hvac(runner, hpxml, weather, convert_shared_systems) - apply_hvac_control(hpxml, schedules_file) - apply_hvac_distribution(hpxml, ncfl, ncfl_ag) - apply_hvac_location(hpxml) - apply_ventilation_fans(hpxml, weather, cfa, nbeds) - apply_water_heaters(hpxml, nbeds, eri_version, schedules_file) - apply_flue_or_chimney(hpxml) - apply_hot_water_distribution(hpxml, cfa, ncfl, has_uncond_bsmnt) - apply_water_fixtures(hpxml, schedules_file) - apply_solar_thermal_systems(hpxml) - apply_appliances(hpxml, nbeds, eri_version, schedules_file) - apply_lighting(hpxml, schedules_file) - apply_ceiling_fans(hpxml, nbeds, weather, schedules_file) - apply_pools_and_hot_tubs(hpxml, cfa, schedules_file) - apply_plug_loads(hpxml, cfa, schedules_file) - apply_fuel_loads(hpxml, cfa, schedules_file) - apply_pv_systems(hpxml) - apply_generators(hpxml) - apply_batteries(hpxml) + has_fuel = hpxml_bldg.has_fuels(Constants.FossilFuels, hpxml.to_doc) + + apply_header(hpxml.header, epw_file) + apply_building(hpxml_bldg, epw_file) + apply_emissions_scenarios(hpxml.header, has_fuel) + apply_utility_bill_scenarios(runner, hpxml.header, hpxml_bldg, has_fuel) + apply_building_header(hpxml.header, hpxml_bldg, weather) + apply_building_header_sizing(hpxml_bldg, weather, nbeds) + apply_site(hpxml_bldg) + apply_neighbor_buildings(hpxml_bldg) + apply_building_occupancy(hpxml_bldg, schedules_file) + apply_building_construction(hpxml_bldg, cfa, nbeds, infil_measurement) + apply_climate_and_risk_zones(hpxml_bldg, epw_file) + apply_infiltration(hpxml_bldg, infil_measurement) + apply_attics(hpxml_bldg) + apply_foundations(hpxml_bldg) + apply_roofs(hpxml_bldg) + apply_rim_joists(hpxml_bldg) + apply_walls(hpxml_bldg) + apply_foundation_walls(hpxml_bldg) + apply_floors(hpxml_bldg) + apply_slabs(hpxml_bldg) + apply_windows(hpxml_bldg) + apply_skylights(hpxml_bldg) + apply_doors(hpxml_bldg) + apply_partition_wall_mass(hpxml_bldg) + apply_furniture_mass(hpxml_bldg) + apply_hvac(runner, hpxml_bldg, weather, convert_shared_systems) + apply_hvac_control(hpxml_bldg, schedules_file) + apply_hvac_distribution(hpxml_bldg, ncfl, ncfl_ag) + apply_hvac_location(hpxml_bldg) + apply_ventilation_fans(hpxml_bldg, weather, cfa, nbeds) + apply_water_heaters(hpxml_bldg, nbeds, eri_version, schedules_file) + apply_flue_or_chimney(hpxml_bldg) + apply_hot_water_distribution(hpxml_bldg, cfa, ncfl, has_uncond_bsmnt) + apply_water_fixtures(hpxml_bldg, schedules_file) + apply_solar_thermal_systems(hpxml_bldg) + apply_appliances(hpxml_bldg, nbeds, eri_version, schedules_file) + apply_lighting(hpxml_bldg, schedules_file) + apply_ceiling_fans(hpxml_bldg, nbeds, weather, schedules_file) + apply_pools_and_permanent_spas(hpxml_bldg, cfa, schedules_file) + apply_plug_loads(hpxml_bldg, cfa, schedules_file) + apply_fuel_loads(hpxml_bldg, cfa, schedules_file) + apply_pv_systems(hpxml_bldg) + apply_generators(hpxml_bldg) + apply_batteries(hpxml_bldg) # Do HVAC sizing after all other defaults have been applied - apply_hvac_sizing(hpxml, weather, cfa) + apply_hvac_sizing(hpxml_bldg, weather, cfa) + + # default detailed performance has to be after sizing to have autosized capacity information + apply_detailed_performance_data_for_var_speed_systems(hpxml_bldg) end - def self.get_default_azimuths(hpxml) + def self.get_default_azimuths(hpxml_bldg) def self.sanitize_azimuth(azimuth) # Ensure 0 <= orientation < 360 while azimuth < 0 @@ -85,8 +91,8 @@ def self.sanitize_azimuth(azimuth) # area, plus azimuths that are offset by 90/180/270 degrees. Used for # surfaces that may not have an azimuth defined (e.g., walls). azimuth_areas = {} - (hpxml.roofs + hpxml.rim_joists + hpxml.walls + hpxml.foundation_walls + - hpxml.windows + hpxml.skylights + hpxml.doors).each do |surface| + (hpxml_bldg.roofs + hpxml_bldg.rim_joists + hpxml_bldg.walls + hpxml_bldg.foundation_walls + + hpxml_bldg.windows + hpxml_bldg.skylights + hpxml_bldg.doors).each do |surface| az = surface.azimuth next if az.nil? @@ -106,93 +112,46 @@ def self.sanitize_azimuth(azimuth) private - def self.apply_header(hpxml, epw_file, weather) - if hpxml.header.timestep.nil? - hpxml.header.timestep = 60 - hpxml.header.timestep_isdefaulted = true + def self.apply_header(hpxml_header, epw_file) + if hpxml_header.timestep.nil? + hpxml_header.timestep = 60 + hpxml_header.timestep_isdefaulted = true end - if hpxml.header.sim_begin_month.nil? - hpxml.header.sim_begin_month = 1 - hpxml.header.sim_begin_month_isdefaulted = true + if hpxml_header.sim_begin_month.nil? + hpxml_header.sim_begin_month = 1 + hpxml_header.sim_begin_month_isdefaulted = true end - if hpxml.header.sim_begin_day.nil? - hpxml.header.sim_begin_day = 1 - hpxml.header.sim_begin_day_isdefaulted = true + if hpxml_header.sim_begin_day.nil? + hpxml_header.sim_begin_day = 1 + hpxml_header.sim_begin_day_isdefaulted = true end - if hpxml.header.sim_end_month.nil? - hpxml.header.sim_end_month = 12 - hpxml.header.sim_end_month_isdefaulted = true + if hpxml_header.sim_end_month.nil? + hpxml_header.sim_end_month = 12 + hpxml_header.sim_end_month_isdefaulted = true end - if hpxml.header.sim_end_day.nil? - hpxml.header.sim_end_day = 31 - hpxml.header.sim_end_day_isdefaulted = true + if hpxml_header.sim_end_day.nil? + hpxml_header.sim_end_day = 31 + hpxml_header.sim_end_day_isdefaulted = true end - sim_calendar_year = Location.get_sim_calendar_year(hpxml.header.sim_calendar_year, epw_file) - if not hpxml.header.sim_calendar_year.nil? - if hpxml.header.sim_calendar_year != sim_calendar_year - hpxml.header.sim_calendar_year = sim_calendar_year - hpxml.header.sim_calendar_year_isdefaulted = true + sim_calendar_year = Location.get_sim_calendar_year(hpxml_header.sim_calendar_year, epw_file) + if not hpxml_header.sim_calendar_year.nil? + if hpxml_header.sim_calendar_year != sim_calendar_year + hpxml_header.sim_calendar_year = sim_calendar_year + hpxml_header.sim_calendar_year_isdefaulted = true end else - hpxml.header.sim_calendar_year = sim_calendar_year - hpxml.header.sim_calendar_year_isdefaulted = true - end - - if hpxml.header.dst_enabled.nil? - hpxml.header.dst_enabled = true # Assume DST since it occurs in most US locations - hpxml.header.dst_enabled_isdefaulted = true - end - - if hpxml.header.dst_enabled && (not epw_file.nil?) - if hpxml.header.dst_begin_month.nil? || hpxml.header.dst_begin_day.nil? || hpxml.header.dst_end_month.nil? || hpxml.header.dst_end_day.nil? - if epw_file.daylightSavingStartDate.is_initialized && epw_file.daylightSavingEndDate.is_initialized - # Use weather file DST dates if available - dst_start_date = epw_file.daylightSavingStartDate.get - dst_end_date = epw_file.daylightSavingEndDate.get - hpxml.header.dst_begin_month = dst_start_date.monthOfYear.value - hpxml.header.dst_begin_day = dst_start_date.dayOfMonth - hpxml.header.dst_end_month = dst_end_date.monthOfYear.value - hpxml.header.dst_end_day = dst_end_date.dayOfMonth - else - # Roughly average US dates according to https://en.wikipedia.org/wiki/Daylight_saving_time_in_the_United_States - hpxml.header.dst_begin_month = 3 - hpxml.header.dst_begin_day = 12 - hpxml.header.dst_end_month = 11 - hpxml.header.dst_end_day = 5 - end - hpxml.header.dst_begin_month_isdefaulted = true - hpxml.header.dst_begin_day_isdefaulted = true - hpxml.header.dst_end_month_isdefaulted = true - hpxml.header.dst_end_day_isdefaulted = true - end - end - - if (not epw_file.nil?) && hpxml.header.state_code.nil? - state_province_region = epw_file.stateProvinceRegion.upcase - if /^[A-Z]{2}$/.match(state_province_region) - hpxml.header.state_code = state_province_region - hpxml.header.state_code_isdefaulted = true - end - end - - if (not epw_file.nil?) && hpxml.header.time_zone_utc_offset.nil? - hpxml.header.time_zone_utc_offset = epw_file.timeZone - hpxml.header.time_zone_utc_offset_isdefaulted = true - end - - if hpxml.header.temperature_capacitance_multiplier.nil? - hpxml.header.temperature_capacitance_multiplier = 1.0 - hpxml.header.temperature_capacitance_multiplier_isdefaulted = true + hpxml_header.sim_calendar_year = sim_calendar_year + hpxml_header.sim_calendar_year_isdefaulted = true end - if hpxml.header.natvent_days_per_week.nil? - hpxml.header.natvent_days_per_week = 3 - hpxml.header.natvent_days_per_week_isdefaulted = true + if hpxml_header.temperature_capacitance_multiplier.nil? + hpxml_header.temperature_capacitance_multiplier = 1.0 + hpxml_header.temperature_capacitance_multiplier_isdefaulted = true end - hpxml.header.unavailable_periods.each do |unavailable_period| + hpxml_header.unavailable_periods.each do |unavailable_period| if unavailable_period.begin_hour.nil? unavailable_period.begin_hour = 0 unavailable_period.begin_hour_isdefaulted = true @@ -206,87 +165,94 @@ def self.apply_header(hpxml, epw_file, weather) unavailable_period.natvent_availability_isdefaulted = true end end + end - if hpxml.header.shading_summer_begin_month.nil? || hpxml.header.shading_summer_begin_day.nil? || hpxml.header.shading_summer_end_month.nil? || hpxml.header.shading_summer_end_day.nil? - if not weather.nil? - # Default based on Building America seasons - _, default_cooling_months = HVAC.get_default_heating_and_cooling_seasons(weather) - begin_month, begin_day, end_month, end_day = Schedule.get_begin_and_end_dates_from_monthly_array(default_cooling_months, sim_calendar_year) - if not begin_month.nil? # Check if no summer - hpxml.header.shading_summer_begin_month = begin_month - hpxml.header.shading_summer_begin_day = begin_day - hpxml.header.shading_summer_end_month = end_month - hpxml.header.shading_summer_end_day = end_day - hpxml.header.shading_summer_begin_month_isdefaulted = true - hpxml.header.shading_summer_begin_day_isdefaulted = true - hpxml.header.shading_summer_end_month_isdefaulted = true - hpxml.header.shading_summer_end_day_isdefaulted = true - end - end + def self.apply_building_header_sizing(hpxml_bldg, weather, nbeds) + if hpxml_bldg.header.manualj_heating_design_temp.nil? + hpxml_bldg.header.manualj_heating_design_temp = weather.design.HeatingDrybulb.round(2) + hpxml_bldg.header.manualj_heating_design_temp_isdefaulted = true end - end - def self.apply_header_sizing(hpxml, weather, nbeds) - if hpxml.header.allow_increased_fixed_capacities.nil? - hpxml.header.allow_increased_fixed_capacities = false - hpxml.header.allow_increased_fixed_capacities_isdefaulted = true + if hpxml_bldg.header.manualj_cooling_design_temp.nil? + hpxml_bldg.header.manualj_cooling_design_temp = weather.design.CoolingDrybulb.round(2) + hpxml_bldg.header.manualj_cooling_design_temp_isdefaulted = true end - if hpxml.header.heat_pump_sizing_methodology.nil? && (hpxml.heat_pumps.size > 0) - hpxml.header.heat_pump_sizing_methodology = HPXML::HeatPumpSizingHERS - hpxml.header.heat_pump_sizing_methodology_isdefaulted = true + if hpxml_bldg.header.manualj_heating_setpoint.nil? + hpxml_bldg.header.manualj_heating_setpoint = 70.0 # deg-F, per Manual J + hpxml_bldg.header.manualj_heating_setpoint_isdefaulted = true end - if hpxml.header.manualj_heating_design_temp.nil? - hpxml.header.manualj_heating_design_temp = weather.design.HeatingDrybulb.round(2) - hpxml.header.manualj_heating_design_temp_isdefaulted = true + if hpxml_bldg.header.manualj_cooling_setpoint.nil? + hpxml_bldg.header.manualj_cooling_setpoint = 75.0 # deg-F, per Manual J + hpxml_bldg.header.manualj_cooling_setpoint_isdefaulted = true end - if hpxml.header.manualj_cooling_design_temp.nil? - hpxml.header.manualj_cooling_design_temp = weather.design.CoolingDrybulb.round(2) - hpxml.header.manualj_cooling_design_temp_isdefaulted = true + if hpxml_bldg.header.manualj_humidity_setpoint.nil? + hpxml_bldg.header.manualj_humidity_setpoint = 0.5 # 50% + if hpxml_bldg.dehumidifiers.size > 0 + hpxml_bldg.header.manualj_humidity_setpoint = [hpxml_bldg.header.manualj_humidity_setpoint, hpxml_bldg.dehumidifiers[0].rh_setpoint].min + end + hpxml_bldg.header.manualj_humidity_setpoint_isdefaulted = true end - if hpxml.header.manualj_heating_setpoint.nil? - hpxml.header.manualj_heating_setpoint = 70.0 # deg-F, per Manual J - hpxml.header.manualj_heating_setpoint_isdefaulted = true + if hpxml_bldg.header.manualj_internal_loads_sensible.nil? + if hpxml_bldg.refrigerators.size + hpxml_bldg.freezers.size <= 1 + hpxml_bldg.header.manualj_internal_loads_sensible = 2400.0 # Btuh, per Manual J + else + hpxml_bldg.header.manualj_internal_loads_sensible = 3600.0 # Btuh, per Manual J + end + hpxml_bldg.header.manualj_internal_loads_sensible_isdefaulted = true end - if hpxml.header.manualj_cooling_setpoint.nil? - hpxml.header.manualj_cooling_setpoint = 75.0 # deg-F, per Manual J - hpxml.header.manualj_cooling_setpoint_isdefaulted = true + if hpxml_bldg.header.manualj_internal_loads_latent.nil? + hpxml_bldg.header.manualj_internal_loads_latent = 0.0 # Btuh + hpxml_bldg.header.manualj_internal_loads_latent_isdefaulted = true end - if hpxml.header.manualj_humidity_setpoint.nil? - hpxml.header.manualj_humidity_setpoint = 0.5 # 50% - if hpxml.dehumidifiers.size > 0 - hpxml.header.manualj_humidity_setpoint = [hpxml.header.manualj_humidity_setpoint, hpxml.dehumidifiers[0].rh_setpoint].min - end - hpxml.header.manualj_humidity_setpoint_isdefaulted = true + if hpxml_bldg.header.manualj_num_occupants.nil? + hpxml_bldg.header.manualj_num_occupants = nbeds + 1 # Per Manual J + hpxml_bldg.header.manualj_num_occupants_isdefaulted = true end + end - if hpxml.header.manualj_internal_loads_sensible.nil? - if hpxml.refrigerators.size + hpxml.freezers.size <= 1 - hpxml.header.manualj_internal_loads_sensible = 2400.0 # Btuh, per Manual J - else - hpxml.header.manualj_internal_loads_sensible = 3600.0 # Btuh, per Manual J - end - hpxml.header.manualj_internal_loads_sensible_isdefaulted = true + def self.apply_building_header(hpxml_header, hpxml_bldg, weather) + if hpxml_bldg.header.natvent_days_per_week.nil? + hpxml_bldg.header.natvent_days_per_week = 3 + hpxml_bldg.header.natvent_days_per_week_isdefaulted = true end - if hpxml.header.manualj_internal_loads_latent.nil? - hpxml.header.manualj_internal_loads_latent = 0.0 # Btuh - hpxml.header.manualj_internal_loads_latent_isdefaulted = true + if hpxml_bldg.header.heat_pump_sizing_methodology.nil? && (hpxml_bldg.heat_pumps.size > 0) + hpxml_bldg.header.heat_pump_sizing_methodology = HPXML::HeatPumpSizingHERS + hpxml_bldg.header.heat_pump_sizing_methodology_isdefaulted = true end - if hpxml.header.manualj_num_occupants.nil? - hpxml.header.manualj_num_occupants = nbeds + 1 # Per Manual J - hpxml.header.manualj_num_occupants_isdefaulted = true + if hpxml_bldg.header.allow_increased_fixed_capacities.nil? + hpxml_bldg.header.allow_increased_fixed_capacities = false + hpxml_bldg.header.allow_increased_fixed_capacities_isdefaulted = true + end + + if hpxml_bldg.header.shading_summer_begin_month.nil? || hpxml_bldg.header.shading_summer_begin_day.nil? || hpxml_bldg.header.shading_summer_end_month.nil? || hpxml_bldg.header.shading_summer_end_day.nil? + if not weather.nil? + # Default based on Building America seasons + _, default_cooling_months = HVAC.get_default_heating_and_cooling_seasons(weather) + begin_month, begin_day, end_month, end_day = Schedule.get_begin_and_end_dates_from_monthly_array(default_cooling_months, hpxml_header.sim_calendar_year) + if not begin_month.nil? # Check if no summer + hpxml_bldg.header.shading_summer_begin_month = begin_month + hpxml_bldg.header.shading_summer_begin_day = begin_day + hpxml_bldg.header.shading_summer_end_month = end_month + hpxml_bldg.header.shading_summer_end_day = end_day + hpxml_bldg.header.shading_summer_begin_month_isdefaulted = true + hpxml_bldg.header.shading_summer_begin_day_isdefaulted = true + hpxml_bldg.header.shading_summer_end_month_isdefaulted = true + hpxml_bldg.header.shading_summer_end_day_isdefaulted = true + end + end end end - def self.apply_emissions_scenarios(hpxml, has_fuel) - hpxml.header.emissions_scenarios.each do |scenario| + def self.apply_emissions_scenarios(hpxml_header, has_fuel) + hpxml_header.emissions_scenarios.each do |scenario| # Electricity if not scenario.elec_schedule_filepath.nil? if scenario.elec_schedule_number_of_header_rows.nil? @@ -361,15 +327,15 @@ def self.apply_emissions_scenarios(hpxml, has_fuel) end end - def self.apply_utility_bill_scenarios(runner, hpxml, has_fuel) - hpxml.header.utility_bill_scenarios.each do |scenario| + def self.apply_utility_bill_scenarios(runner, hpxml_header, hpxml_bldg, has_fuel) + hpxml_header.utility_bill_scenarios.each do |scenario| if scenario.elec_tariff_filepath.nil? if scenario.elec_fixed_charge.nil? scenario.elec_fixed_charge = 12.0 # https://www.nrdc.org/experts/samantha-williams/there-war-attrition-electricity-fixed-charges says $11.19/month in 2018 scenario.elec_fixed_charge_isdefaulted = true end if scenario.elec_marginal_rate.nil? - scenario.elec_marginal_rate, _ = UtilityBills.get_rates_from_eia_data(runner, hpxml.header.state_code, HPXML::FuelTypeElectricity, scenario.elec_fixed_charge) + scenario.elec_marginal_rate, _ = UtilityBills.get_rates_from_eia_data(runner, hpxml_bldg.state_code, HPXML::FuelTypeElectricity, scenario.elec_fixed_charge) scenario.elec_marginal_rate_isdefaulted = true end end @@ -380,7 +346,7 @@ def self.apply_utility_bill_scenarios(runner, hpxml, has_fuel) scenario.natural_gas_fixed_charge_isdefaulted = true end if scenario.natural_gas_marginal_rate.nil? - scenario.natural_gas_marginal_rate, _ = UtilityBills.get_rates_from_eia_data(runner, hpxml.header.state_code, HPXML::FuelTypeNaturalGas, scenario.natural_gas_fixed_charge) + scenario.natural_gas_marginal_rate, _ = UtilityBills.get_rates_from_eia_data(runner, hpxml_bldg.state_code, HPXML::FuelTypeNaturalGas, scenario.natural_gas_fixed_charge) scenario.natural_gas_marginal_rate_isdefaulted = true end end @@ -391,7 +357,7 @@ def self.apply_utility_bill_scenarios(runner, hpxml, has_fuel) scenario.propane_fixed_charge_isdefaulted = true end if scenario.propane_marginal_rate.nil? - scenario.propane_marginal_rate, _ = UtilityBills.get_rates_from_eia_data(runner, hpxml.header.state_code, HPXML::FuelTypePropane, nil) + scenario.propane_marginal_rate, _ = UtilityBills.get_rates_from_eia_data(runner, hpxml_bldg.state_code, HPXML::FuelTypePropane, nil) scenario.propane_marginal_rate_isdefaulted = true end end @@ -402,7 +368,7 @@ def self.apply_utility_bill_scenarios(runner, hpxml, has_fuel) scenario.fuel_oil_fixed_charge_isdefaulted = true end if scenario.fuel_oil_marginal_rate.nil? - scenario.fuel_oil_marginal_rate, _ = UtilityBills.get_rates_from_eia_data(runner, hpxml.header.state_code, HPXML::FuelTypeOil, nil) + scenario.fuel_oil_marginal_rate, _ = UtilityBills.get_rates_from_eia_data(runner, hpxml_bldg.state_code, HPXML::FuelTypeOil, nil) scenario.fuel_oil_marginal_rate_isdefaulted = true end end @@ -440,7 +406,7 @@ def self.apply_utility_bill_scenarios(runner, hpxml, has_fuel) end end - next unless hpxml.pv_systems.size > 0 + next unless hpxml_bldg.pv_systems.size > 0 if scenario.pv_compensation_type.nil? scenario.pv_compensation_type = HPXML::PVCompensationTypeNetMetering @@ -472,27 +438,71 @@ def self.apply_utility_bill_scenarios(runner, hpxml, has_fuel) end end - def self.apply_site(hpxml) - if hpxml.site.site_type.nil? - hpxml.site.site_type = HPXML::SiteTypeSuburban - hpxml.site.site_type_isdefaulted = true + def self.apply_building(hpxml_bldg, epw_file) + if (not epw_file.nil?) && hpxml_bldg.state_code.nil? + state_province_region = epw_file.stateProvinceRegion.upcase + if /^[A-Z]{2}$/.match(state_province_region) + hpxml_bldg.state_code = state_province_region + hpxml_bldg.state_code_isdefaulted = true + end end - if hpxml.site.shielding_of_home.nil? - hpxml.site.shielding_of_home = HPXML::ShieldingNormal - hpxml.site.shielding_of_home_isdefaulted = true + if (not epw_file.nil?) && hpxml_bldg.time_zone_utc_offset.nil? + hpxml_bldg.time_zone_utc_offset = epw_file.timeZone + hpxml_bldg.time_zone_utc_offset_isdefaulted = true end - if hpxml.site.ground_conductivity.nil? - hpxml.site.ground_conductivity = 1.0 # Btu/hr-ft-F - hpxml.site.ground_conductivity_isdefaulted = true + if hpxml_bldg.dst_enabled.nil? + hpxml_bldg.dst_enabled = true # Assume DST since it occurs in most US locations + hpxml_bldg.dst_enabled_isdefaulted = true end - hpxml.site.additional_properties.aim2_shelter_coeff = Airflow.get_aim2_shelter_coefficient(hpxml.site.shielding_of_home) + if hpxml_bldg.dst_enabled && (not epw_file.nil?) + if hpxml_bldg.dst_begin_month.nil? || hpxml_bldg.dst_begin_day.nil? || hpxml_bldg.dst_end_month.nil? || hpxml_bldg.dst_end_day.nil? + if epw_file.daylightSavingStartDate.is_initialized && epw_file.daylightSavingEndDate.is_initialized + # Use weather file DST dates if available + dst_start_date = epw_file.daylightSavingStartDate.get + dst_end_date = epw_file.daylightSavingEndDate.get + hpxml_bldg.dst_begin_month = dst_start_date.monthOfYear.value + hpxml_bldg.dst_begin_day = dst_start_date.dayOfMonth + hpxml_bldg.dst_end_month = dst_end_date.monthOfYear.value + hpxml_bldg.dst_end_day = dst_end_date.dayOfMonth + else + # Roughly average US dates according to https://en.wikipedia.org/wiki/Daylight_saving_time_in_the_United_States + hpxml_bldg.dst_begin_month = 3 + hpxml_bldg.dst_begin_day = 12 + hpxml_bldg.dst_end_month = 11 + hpxml_bldg.dst_end_day = 5 + end + hpxml_bldg.dst_begin_month_isdefaulted = true + hpxml_bldg.dst_begin_day_isdefaulted = true + hpxml_bldg.dst_end_month_isdefaulted = true + hpxml_bldg.dst_end_day_isdefaulted = true + end + end end - def self.apply_neighbor_buildings(hpxml) - hpxml.neighbor_buildings.each do |neighbor_building| + def self.apply_site(hpxml_bldg) + if hpxml_bldg.site.site_type.nil? + hpxml_bldg.site.site_type = HPXML::SiteTypeSuburban + hpxml_bldg.site.site_type_isdefaulted = true + end + + if hpxml_bldg.site.shielding_of_home.nil? + hpxml_bldg.site.shielding_of_home = HPXML::ShieldingNormal + hpxml_bldg.site.shielding_of_home_isdefaulted = true + end + + if hpxml_bldg.site.ground_conductivity.nil? + hpxml_bldg.site.ground_conductivity = 1.0 # Btu/hr-ft-F + hpxml_bldg.site.ground_conductivity_isdefaulted = true + end + + hpxml_bldg.site.additional_properties.aim2_shelter_coeff = Airflow.get_aim2_shelter_coefficient(hpxml_bldg.site.shielding_of_home) + end + + def self.apply_neighbor_buildings(hpxml_bldg) + hpxml_bldg.neighbor_buildings.each do |neighbor_building| if neighbor_building.azimuth.nil? neighbor_building.azimuth = get_azimuth_from_orientation(neighbor_building.orientation) neighbor_building.azimuth_isdefaulted = true @@ -504,93 +514,96 @@ def self.apply_neighbor_buildings(hpxml) end end - def self.apply_building_occupancy(hpxml, schedules_file) - if hpxml.building_occupancy.number_of_residents.nil? - hpxml.building_construction.additional_properties.adjusted_number_of_bedrooms = hpxml.building_construction.number_of_bedrooms + def self.apply_building_occupancy(hpxml_bldg, schedules_file) + if hpxml_bldg.building_occupancy.number_of_residents.nil? + hpxml_bldg.building_construction.additional_properties.adjusted_number_of_bedrooms = hpxml_bldg.building_construction.number_of_bedrooms else # Set adjusted number of bedrooms for operational calculation; this is an adjustment on # ANSI 301 or Building America equations, which are based on number of bedrooms. - hpxml.building_construction.additional_properties.adjusted_number_of_bedrooms = get_nbeds_adjusted_for_operational_calculation(hpxml) + hpxml_bldg.building_construction.additional_properties.adjusted_number_of_bedrooms = get_nbeds_adjusted_for_operational_calculation(hpxml_bldg) end schedules_file_includes_occupants = (schedules_file.nil? ? false : schedules_file.includes_col_name(SchedulesFile::ColumnOccupants)) - if hpxml.building_occupancy.weekday_fractions.nil? && !schedules_file_includes_occupants - hpxml.building_occupancy.weekday_fractions = Schedule.OccupantsWeekdayFractions - hpxml.building_occupancy.weekday_fractions_isdefaulted = true + if hpxml_bldg.building_occupancy.weekday_fractions.nil? && !schedules_file_includes_occupants + hpxml_bldg.building_occupancy.weekday_fractions = Schedule.OccupantsWeekdayFractions + hpxml_bldg.building_occupancy.weekday_fractions_isdefaulted = true end - if hpxml.building_occupancy.weekend_fractions.nil? && !schedules_file_includes_occupants - hpxml.building_occupancy.weekend_fractions = Schedule.OccupantsWeekendFractions - hpxml.building_occupancy.weekend_fractions_isdefaulted = true + if hpxml_bldg.building_occupancy.weekend_fractions.nil? && !schedules_file_includes_occupants + hpxml_bldg.building_occupancy.weekend_fractions = Schedule.OccupantsWeekendFractions + hpxml_bldg.building_occupancy.weekend_fractions_isdefaulted = true end - if hpxml.building_occupancy.monthly_multipliers.nil? && !schedules_file_includes_occupants - hpxml.building_occupancy.monthly_multipliers = Schedule.OccupantsMonthlyMultipliers - hpxml.building_occupancy.monthly_multipliers_isdefaulted = true + if hpxml_bldg.building_occupancy.monthly_multipliers.nil? && !schedules_file_includes_occupants + hpxml_bldg.building_occupancy.monthly_multipliers = Schedule.OccupantsMonthlyMultipliers + hpxml_bldg.building_occupancy.monthly_multipliers_isdefaulted = true end end - def self.apply_building_construction(hpxml, cfa, nbeds, infil_measurement) - cond_crawl_volume = hpxml.inferred_conditioned_crawlspace_volume() - if hpxml.building_construction.conditioned_building_volume.nil? && hpxml.building_construction.average_ceiling_height.nil? + def self.apply_building_construction(hpxml_bldg, cfa, nbeds, infil_measurement) + cond_crawl_volume = hpxml_bldg.inferred_conditioned_crawlspace_volume() + if hpxml_bldg.building_construction.conditioned_building_volume.nil? && hpxml_bldg.building_construction.average_ceiling_height.nil? if not infil_measurement.infiltration_volume.nil? - hpxml.building_construction.average_ceiling_height = [infil_measurement.infiltration_volume / cfa, 8.0].min + hpxml_bldg.building_construction.average_ceiling_height = [infil_measurement.infiltration_volume / cfa, 8.0].min else - hpxml.building_construction.average_ceiling_height = 8.0 - end - hpxml.building_construction.average_ceiling_height_isdefaulted = true - hpxml.building_construction.conditioned_building_volume = cfa * hpxml.building_construction.average_ceiling_height + cond_crawl_volume - hpxml.building_construction.conditioned_building_volume_isdefaulted = true - elsif hpxml.building_construction.conditioned_building_volume.nil? - hpxml.building_construction.conditioned_building_volume = cfa * hpxml.building_construction.average_ceiling_height + cond_crawl_volume - hpxml.building_construction.conditioned_building_volume_isdefaulted = true - elsif hpxml.building_construction.average_ceiling_height.nil? - hpxml.building_construction.average_ceiling_height = (hpxml.building_construction.conditioned_building_volume - cond_crawl_volume) / cfa - hpxml.building_construction.average_ceiling_height_isdefaulted = true - end - - if hpxml.building_construction.number_of_bathrooms.nil? - hpxml.building_construction.number_of_bathrooms = Float(Waterheater.get_default_num_bathrooms(nbeds)).to_i - hpxml.building_construction.number_of_bathrooms_isdefaulted = true + hpxml_bldg.building_construction.average_ceiling_height = 8.0 + end + hpxml_bldg.building_construction.average_ceiling_height_isdefaulted = true + hpxml_bldg.building_construction.conditioned_building_volume = cfa * hpxml_bldg.building_construction.average_ceiling_height + cond_crawl_volume + hpxml_bldg.building_construction.conditioned_building_volume_isdefaulted = true + elsif hpxml_bldg.building_construction.conditioned_building_volume.nil? + hpxml_bldg.building_construction.conditioned_building_volume = cfa * hpxml_bldg.building_construction.average_ceiling_height + cond_crawl_volume + hpxml_bldg.building_construction.conditioned_building_volume_isdefaulted = true + elsif hpxml_bldg.building_construction.average_ceiling_height.nil? + hpxml_bldg.building_construction.average_ceiling_height = (hpxml_bldg.building_construction.conditioned_building_volume - cond_crawl_volume) / cfa + hpxml_bldg.building_construction.average_ceiling_height_isdefaulted = true + end + if hpxml_bldg.building_construction.number_of_bathrooms.nil? + hpxml_bldg.building_construction.number_of_bathrooms = Float(Waterheater.get_default_num_bathrooms(nbeds)).to_i + hpxml_bldg.building_construction.number_of_bathrooms_isdefaulted = true + end + if hpxml_bldg.building_construction.number_of_units.nil? + hpxml_bldg.building_construction.number_of_units = 1 + hpxml_bldg.building_construction.number_of_units_isdefaulted = true end end - def self.apply_climate_and_risk_zones(hpxml, epw_file) - if (not epw_file.nil?) && hpxml.climate_and_risk_zones.climate_zone_ieccs.empty? + def self.apply_climate_and_risk_zones(hpxml_bldg, epw_file) + if (not epw_file.nil?) && hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs.empty? zone = Location.get_climate_zone_iecc(epw_file.wmoNumber) if not zone.nil? - hpxml.climate_and_risk_zones.climate_zone_ieccs.add(zone: zone, - year: 2006, - zone_isdefaulted: true, - year_isdefaulted: true) + hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs.add(zone: zone, + year: 2006, + zone_isdefaulted: true, + year_isdefaulted: true) end end end - def self.apply_infiltration(hpxml, infil_measurement) + def self.apply_infiltration(hpxml_bldg, infil_measurement) if infil_measurement.infiltration_volume.nil? - infil_measurement.infiltration_volume = hpxml.building_construction.conditioned_building_volume + infil_measurement.infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume infil_measurement.infiltration_volume_isdefaulted = true end if infil_measurement.infiltration_height.nil? - infil_measurement.infiltration_height = hpxml.inferred_infiltration_height(infil_measurement.infiltration_volume) + infil_measurement.infiltration_height = hpxml_bldg.inferred_infiltration_height(infil_measurement.infiltration_volume) infil_measurement.infiltration_height_isdefaulted = true end if infil_measurement.a_ext.nil? if (infil_measurement.infiltration_type == HPXML::InfiltrationTypeUnitTotal) && - [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include?(hpxml.building_construction.residential_facility_type) - tot_cb_area, ext_cb_area = hpxml.compartmentalization_boundary_areas() + [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include?(hpxml_bldg.building_construction.residential_facility_type) + tot_cb_area, ext_cb_area = hpxml_bldg.compartmentalization_boundary_areas() infil_measurement.a_ext = (ext_cb_area / tot_cb_area).round(5) infil_measurement.a_ext_isdefaulted = true end end end - def self.apply_attics(hpxml) - return unless hpxml.has_location(HPXML::LocationAtticVented) + def self.apply_attics(hpxml_bldg) + return unless hpxml_bldg.has_location(HPXML::LocationAtticVented) - vented_attics = hpxml.attics.select { |a| a.attic_type == HPXML::AtticTypeVented } + vented_attics = hpxml_bldg.attics.select { |a| a.attic_type == HPXML::AtticTypeVented } if vented_attics.empty? - hpxml.attics.add(id: 'VentedAttic', - attic_type: HPXML::AtticTypeVented) - vented_attics << hpxml.attics[-1] + hpxml_bldg.attics.add(id: 'VentedAttic', + attic_type: HPXML::AtticTypeVented) + vented_attics << hpxml_bldg.attics[-1] end vented_attics.each do |vented_attic| next unless (vented_attic.vented_attic_sla.nil? && vented_attic.vented_attic_ach.nil?) @@ -601,26 +614,42 @@ def self.apply_attics(hpxml) end end - def self.apply_foundations(hpxml) - return unless hpxml.has_location(HPXML::LocationCrawlspaceVented) + def self.apply_foundations(hpxml_bldg) + if hpxml_bldg.has_location(HPXML::LocationCrawlspaceVented) + vented_crawls = hpxml_bldg.foundations.select { |f| f.foundation_type == HPXML::FoundationTypeCrawlspaceVented } + if vented_crawls.empty? + hpxml_bldg.foundations.add(id: 'VentedCrawlspace', + foundation_type: HPXML::FoundationTypeCrawlspaceVented) + vented_crawls << hpxml_bldg.foundations[-1] + end + vented_crawls.each do |vented_crawl| + next unless vented_crawl.vented_crawlspace_sla.nil? - vented_crawls = hpxml.foundations.select { |f| f.foundation_type == HPXML::FoundationTypeCrawlspaceVented } - if vented_crawls.empty? - hpxml.foundations.add(id: 'VentedCrawlspace', - foundation_type: HPXML::FoundationTypeCrawlspaceVented) - vented_crawls << hpxml.foundations[-1] + vented_crawl.vented_crawlspace_sla = Airflow.get_default_vented_crawl_sla() + vented_crawl.vented_crawlspace_sla_isdefaulted = true + break # EPvalidator.xml only allows a single ventilation rate + end end - vented_crawls.each do |vented_crawl| - next unless vented_crawl.vented_crawlspace_sla.nil? - vented_crawl.vented_crawlspace_sla = Airflow.get_default_vented_crawl_sla() - vented_crawl.vented_crawlspace_sla_isdefaulted = true - break # EPvalidator.xml only allows a single ventilation rate + if hpxml_bldg.has_location(HPXML::LocationManufacturedHomeUnderBelly) + belly_and_wing_foundations = hpxml_bldg.foundations.select { |f| f.foundation_type == HPXML::FoundationTypeBellyAndWing } + if belly_and_wing_foundations.empty? + hpxml_bldg.foundations.add(id: 'BellyAndWing', + foundation_type: HPXML::FoundationTypeBellyAndWing) + belly_and_wing_foundations << hpxml_bldg.foundations[-1] + end + belly_and_wing_foundations.each do |foundation| + next unless foundation.belly_wing_skirt_present.nil? + + foundation.belly_wing_skirt_present_isdefaulted = true + foundation.belly_wing_skirt_present = true + break + end end end - def self.apply_roofs(hpxml) - hpxml.roofs.each do |roof| + def self.apply_roofs(hpxml_bldg) + hpxml_bldg.roofs.each do |roof| if roof.azimuth.nil? roof.azimuth = get_azimuth_from_orientation(roof.orientation) roof.azimuth_isdefaulted = true @@ -673,8 +702,8 @@ def self.apply_roofs(hpxml) end end - def self.apply_rim_joists(hpxml) - hpxml.rim_joists.each do |rim_joist| + def self.apply_rim_joists(hpxml_bldg) + hpxml_bldg.rim_joists.each do |rim_joist| if rim_joist.azimuth.nil? rim_joist.azimuth = get_azimuth_from_orientation(rim_joist.orientation) rim_joist.azimuth_isdefaulted = true @@ -708,8 +737,8 @@ def self.apply_rim_joists(hpxml) end end - def self.apply_walls(hpxml) - hpxml.walls.each do |wall| + def self.apply_walls(hpxml_bldg) + hpxml_bldg.walls.each do |wall| if wall.azimuth.nil? wall.azimuth = get_azimuth_from_orientation(wall.orientation) wall.azimuth_isdefaulted = true @@ -757,8 +786,8 @@ def self.apply_walls(hpxml) end end - def self.apply_foundation_walls(hpxml) - hpxml.foundation_walls.each do |foundation_wall| + def self.apply_foundation_walls(hpxml_bldg) + hpxml_bldg.foundation_walls.each do |foundation_wall| if foundation_wall.type.nil? foundation_wall.type = HPXML::FoundationWallTypeSolidConcrete foundation_wall.type_isdefaulted = true @@ -812,8 +841,8 @@ def self.apply_foundation_walls(hpxml) end end - def self.apply_floors(hpxml) - hpxml.floors.each do |floor| + def self.apply_floors(hpxml_bldg) + hpxml_bldg.floors.each do |floor| if floor.floor_or_ceiling.nil? if floor.is_ceiling floor.floor_or_ceiling = HPXML::FloorOrCeilingCeiling @@ -843,8 +872,8 @@ def self.apply_floors(hpxml) end end - def self.apply_slabs(hpxml) - hpxml.slabs.each do |slab| + def self.apply_slabs(hpxml_bldg) + hpxml_bldg.slabs.each do |slab| if slab.thickness.nil? crawl_slab = [HPXML::LocationCrawlspaceVented, HPXML::LocationCrawlspaceUnvented].include?(slab.interior_adjacent_to) slab.thickness = crawl_slab ? 0.0 : 4.0 @@ -859,12 +888,22 @@ def self.apply_slabs(hpxml) slab.carpet_fraction = conditioned_slab ? 0.8 : 0.0 slab.carpet_fraction_isdefaulted = true end + if slab.connected_foundation_walls.empty? + if slab.depth_below_grade.nil? + slab.depth_below_grade = 0.0 + slab.depth_below_grade_isdefaulted = true + end + else + if !slab.depth_below_grade.nil? + slab.depth_below_grade = nil # Ignore Slab/DepthBelowGrade; use values from adjacent foundation walls instead + end + end end end - def self.apply_windows(hpxml) + def self.apply_windows(hpxml_bldg) default_shade_summer, default_shade_winter = Constructions.get_default_interior_shading_factors() - hpxml.windows.each do |window| + hpxml_bldg.windows.each do |window| if window.azimuth.nil? window.azimuth = get_azimuth_from_orientation(window.orientation) window.azimuth_isdefaulted = true @@ -931,8 +970,8 @@ def self.apply_windows(hpxml) end end - def self.apply_skylights(hpxml) - hpxml.skylights.each do |skylight| + def self.apply_skylights(hpxml_bldg) + hpxml_bldg.skylights.each do |skylight| if skylight.azimuth.nil? skylight.azimuth = get_azimuth_from_orientation(skylight.orientation) skylight.azimuth_isdefaulted = true @@ -995,8 +1034,8 @@ def self.apply_skylights(hpxml) end end - def self.apply_doors(hpxml) - hpxml.doors.each do |door| + def self.apply_doors(hpxml_bldg) + hpxml_bldg.doors.each do |door| if door.azimuth.nil? door.azimuth = get_azimuth_from_orientation(door.orientation) door.azimuth_isdefaulted = true @@ -1011,47 +1050,47 @@ def self.apply_doors(hpxml) if (not door.wall.nil?) && (not door.wall.azimuth.nil?) door.azimuth = door.wall.azimuth else - primary_azimuth = get_default_azimuths(hpxml)[0] + primary_azimuth = get_default_azimuths(hpxml_bldg)[0] door.azimuth = primary_azimuth door.azimuth_isdefaulted = true end end end - def self.apply_partition_wall_mass(hpxml) - if hpxml.partition_wall_mass.area_fraction.nil? - hpxml.partition_wall_mass.area_fraction = 1.0 - hpxml.partition_wall_mass.area_fraction_isdefaulted = true + def self.apply_partition_wall_mass(hpxml_bldg) + if hpxml_bldg.partition_wall_mass.area_fraction.nil? + hpxml_bldg.partition_wall_mass.area_fraction = 1.0 + hpxml_bldg.partition_wall_mass.area_fraction_isdefaulted = true end - if hpxml.partition_wall_mass.interior_finish_type.nil? - hpxml.partition_wall_mass.interior_finish_type = HPXML::InteriorFinishGypsumBoard - hpxml.partition_wall_mass.interior_finish_type_isdefaulted = true + if hpxml_bldg.partition_wall_mass.interior_finish_type.nil? + hpxml_bldg.partition_wall_mass.interior_finish_type = HPXML::InteriorFinishGypsumBoard + hpxml_bldg.partition_wall_mass.interior_finish_type_isdefaulted = true end - if hpxml.partition_wall_mass.interior_finish_thickness.nil? - hpxml.partition_wall_mass.interior_finish_thickness = 0.5 - hpxml.partition_wall_mass.interior_finish_thickness_isdefaulted = true + if hpxml_bldg.partition_wall_mass.interior_finish_thickness.nil? + hpxml_bldg.partition_wall_mass.interior_finish_thickness = 0.5 + hpxml_bldg.partition_wall_mass.interior_finish_thickness_isdefaulted = true end end - def self.apply_furniture_mass(hpxml) - if hpxml.furniture_mass.area_fraction.nil? - hpxml.furniture_mass.area_fraction = 0.4 - hpxml.furniture_mass.area_fraction_isdefaulted = true + def self.apply_furniture_mass(hpxml_bldg) + if hpxml_bldg.furniture_mass.area_fraction.nil? + hpxml_bldg.furniture_mass.area_fraction = 0.4 + hpxml_bldg.furniture_mass.area_fraction_isdefaulted = true end - if hpxml.furniture_mass.type.nil? - hpxml.furniture_mass.type = HPXML::FurnitureMassTypeLightWeight - hpxml.furniture_mass.type_isdefaulted = true + if hpxml_bldg.furniture_mass.type.nil? + hpxml_bldg.furniture_mass.type = HPXML::FurnitureMassTypeLightWeight + hpxml_bldg.furniture_mass.type_isdefaulted = true end end - def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) + def self.apply_hvac(runner, hpxml_bldg, weather, convert_shared_systems) if convert_shared_systems - HVAC.apply_shared_systems(hpxml) + HVAC.apply_shared_systems(hpxml_bldg) end # Convert negative values (e.g., -1) to nil as appropriate # This is needed to support autosizing in OS-ERI, where the capacities are required inputs - hpxml.hvac_systems.each do |hvac_system| + hpxml_bldg.hvac_systems.each do |hvac_system| if hvac_system.respond_to?(:heating_capacity) && hvac_system.heating_capacity.to_f < 0 hvac_system.heating_capacity = nil end @@ -1067,7 +1106,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end # Convert SEER2/HSPF2 to SEER/HSPF - hpxml.cooling_systems.each do |cooling_system| + hpxml_bldg.cooling_systems.each do |cooling_system| next unless [HPXML::HVACTypeCentralAirConditioner, HPXML::HVACTypeMiniSplitAirConditioner].include? cooling_system.cooling_system_type next unless cooling_system.cooling_efficiency_seer.nil? @@ -1077,7 +1116,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) cooling_system.cooling_efficiency_seer_isdefaulted = true cooling_system.cooling_efficiency_seer2 = nil end - hpxml.heat_pumps.each do |heat_pump| + hpxml_bldg.heat_pumps.each do |heat_pump| next unless [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit].include? heat_pump.heat_pump_type next unless heat_pump.cooling_efficiency_seer.nil? @@ -1087,7 +1126,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) heat_pump.cooling_efficiency_seer_isdefaulted = true heat_pump.cooling_efficiency_seer2 = nil end - hpxml.heat_pumps.each do |heat_pump| + hpxml_bldg.heat_pumps.each do |heat_pump| next unless [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit].include? heat_pump.heat_pump_type next unless heat_pump.heating_efficiency_hspf.nil? @@ -1099,13 +1138,13 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end # Default AC/HP compressor type - hpxml.cooling_systems.each do |cooling_system| + hpxml_bldg.cooling_systems.each do |cooling_system| next unless cooling_system.compressor_type.nil? cooling_system.compressor_type = HVAC.get_default_compressor_type(cooling_system.cooling_system_type, cooling_system.cooling_efficiency_seer) cooling_system.compressor_type_isdefaulted = true end - hpxml.heat_pumps.each do |heat_pump| + hpxml_bldg.heat_pumps.each do |heat_pump| next unless heat_pump.compressor_type.nil? heat_pump.compressor_type = HVAC.get_default_compressor_type(heat_pump.heat_pump_type, heat_pump.cooling_efficiency_seer) @@ -1113,23 +1152,27 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end # Default HP heating capacity retention - hpxml.heat_pumps.each do |heat_pump| + hpxml_bldg.heat_pumps.each do |heat_pump| next unless heat_pump.heating_capacity_retention_fraction.nil? next unless heat_pump.heating_capacity_17F.nil? next if [HPXML::HVACTypeHeatPumpGroundToAir, HPXML::HVACTypeHeatPumpWaterLoopToAir].include? heat_pump.heat_pump_type - heat_pump.heating_capacity_retention_temp = 5.0 - if [HPXML::HVACCompressorTypeSingleStage, HPXML::HVACCompressorTypeTwoStage].include? heat_pump.compressor_type - heat_pump.heating_capacity_retention_fraction = 0.425 - elsif [HPXML::HVACCompressorTypeVariableSpeed].include? heat_pump.compressor_type - heat_pump.heating_capacity_retention_fraction = 0.5 + if not heat_pump.heating_detailed_performance_data.empty? + # Calculate heating capacity retention at 5F outdoor drybulb + target_odb = 5.0 + max_capacity_47 = heat_pump.heating_detailed_performance_data.find { |dp| dp.outdoor_temperature == HVAC::AirSourceHeatRatedODB && dp.capacity_description == HPXML::CapacityDescriptionMaximum }.capacity + heat_pump.heating_capacity_retention_fraction = (HVAC.interpolate_to_odb_table_point(heat_pump.heating_detailed_performance_data, HPXML::CapacityDescriptionMaximum, target_odb, :capacity) / max_capacity_47).round(5) + heat_pump.heating_capacity_retention_fraction = 0.0 if heat_pump.heating_capacity_retention_fraction < 0 + heat_pump.heating_capacity_retention_temp = target_odb + else + heat_pump.heating_capacity_retention_temp, heat_pump.heating_capacity_retention_fraction = HVAC.get_default_heating_capacity_retention(heat_pump.compressor_type, heat_pump.heating_efficiency_hspf) end heat_pump.heating_capacity_retention_fraction_isdefaulted = true heat_pump.heating_capacity_retention_temp_isdefaulted = true end # Default HP compressor lockout temp - hpxml.heat_pumps.each do |heat_pump| + hpxml_bldg.heat_pumps.each do |heat_pump| next unless heat_pump.compressor_lockout_temp.nil? next unless heat_pump.backup_heating_switchover_temp.nil? next if heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir @@ -1153,7 +1196,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end # Default HP backup lockout temp - hpxml.heat_pumps.each do |heat_pump| + hpxml_bldg.heat_pumps.each do |heat_pump| next if heat_pump.backup_type.nil? next unless heat_pump.backup_heating_lockout_temp.nil? next unless heat_pump.backup_heating_switchover_temp.nil? @@ -1173,7 +1216,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end # Default boiler EAE - hpxml.heating_systems.each do |heating_system| + hpxml_bldg.heating_systems.each do |heating_system| next unless heating_system.electric_auxiliary_energy.nil? heating_system.electric_auxiliary_energy_isdefaulted = true @@ -1184,7 +1227,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end # Default AC/HP sensible heat ratio - hpxml.cooling_systems.each do |cooling_system| + hpxml_bldg.cooling_systems.each do |cooling_system| next unless cooling_system.cooling_shr.nil? if cooling_system.cooling_system_type == HPXML::HVACTypeCentralAirConditioner @@ -1205,7 +1248,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) cooling_system.cooling_shr_isdefaulted = true end end - hpxml.heat_pumps.each do |heat_pump| + hpxml_bldg.heat_pumps.each do |heat_pump| next unless heat_pump.cooling_shr.nil? if heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpAirToAir @@ -1231,7 +1274,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end # GSHP pump power - hpxml.heat_pumps.each do |heat_pump| + hpxml_bldg.heat_pumps.each do |heat_pump| next unless heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir next unless heat_pump.pump_watts_per_ton.nil? @@ -1240,7 +1283,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end # Charge defect ratio - hpxml.cooling_systems.each do |cooling_system| + hpxml_bldg.cooling_systems.each do |cooling_system| next unless [HPXML::HVACTypeCentralAirConditioner, HPXML::HVACTypeMiniSplitAirConditioner].include? cooling_system.cooling_system_type next unless cooling_system.charge_defect_ratio.nil? @@ -1248,7 +1291,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) cooling_system.charge_defect_ratio = 0.0 cooling_system.charge_defect_ratio_isdefaulted = true end - hpxml.heat_pumps.each do |heat_pump| + hpxml_bldg.heat_pumps.each do |heat_pump| next unless [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit, HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type @@ -1259,14 +1302,14 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end # Airflow defect ratio - hpxml.heating_systems.each do |heating_system| + hpxml_bldg.heating_systems.each do |heating_system| next unless [HPXML::HVACTypeFurnace].include? heating_system.heating_system_type next unless heating_system.airflow_defect_ratio.nil? heating_system.airflow_defect_ratio = 0.0 heating_system.airflow_defect_ratio_isdefaulted = true end - hpxml.cooling_systems.each do |cooling_system| + hpxml_bldg.cooling_systems.each do |cooling_system| next unless [HPXML::HVACTypeCentralAirConditioner, HPXML::HVACTypeMiniSplitAirConditioner].include? cooling_system.cooling_system_type next unless cooling_system.airflow_defect_ratio.nil? @@ -1274,7 +1317,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) cooling_system.airflow_defect_ratio = 0.0 cooling_system.airflow_defect_ratio_isdefaulted = true end - hpxml.heat_pumps.each do |heat_pump| + hpxml_bldg.heat_pumps.each do |heat_pump| next unless [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpGroundToAir, HPXML::HVACTypeHeatPumpMiniSplit].include? heat_pump.heat_pump_type @@ -1289,7 +1332,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) ecm_watts_per_cfm = 0.375 # W/cfm, ECM fan mini_split_ductless_watts_per_cfm = 0.07 # W/cfm mini_split_ducted_watts_per_cfm = 0.18 # W/cfm - hpxml.heating_systems.each do |heating_system| + hpxml_bldg.heating_systems.each do |heating_system| if [HPXML::HVACTypeFurnace].include? heating_system.heating_system_type if heating_system.fan_watts_per_cfm.nil? if (not heating_system.distribution_system.nil?) && (heating_system.distribution_system.air_type == HPXML::AirTypeGravity) @@ -1308,8 +1351,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end elsif [HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFloorFurnace, - HPXML::HVACTypePortableHeater, - HPXML::HVACTypeFixedHeater, + HPXML::HVACTypeSpaceHeater, HPXML::HVACTypeFireplace].include? heating_system.heating_system_type if heating_system.fan_watts.nil? heating_system.fan_watts = 0.0 # W/cfm, assume no fan power @@ -1317,7 +1359,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end end end - hpxml.cooling_systems.each do |cooling_system| + hpxml_bldg.cooling_systems.each do |cooling_system| next unless cooling_system.fan_watts_per_cfm.nil? if (not cooling_system.attached_heating_system.nil?) && (not cooling_system.attached_heating_system.fan_watts_per_cfm.nil?) @@ -1341,7 +1383,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) # Depends on airflow rate, so defaulted in hvac_sizing.rb end end - hpxml.heat_pumps.each do |heat_pump| + hpxml_bldg.heat_pumps.each do |heat_pump| next unless heat_pump.fan_watts_per_cfm.nil? if [HPXML::HVACTypeHeatPumpAirToAir].include? heat_pump.heat_pump_type @@ -1369,7 +1411,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end # Crankcase heater power [Watts] - hpxml.cooling_systems.each do |cooling_system| + hpxml_bldg.cooling_systems.each do |cooling_system| next unless [HPXML::HVACTypeCentralAirConditioner, HPXML::HVACTypeMiniSplitAirConditioner, HPXML::HVACTypeRoomAirConditioner, HPXML::HVACTypePTAC].include? cooling_system.cooling_system_type next unless cooling_system.crankcase_heater_watts.nil? @@ -1380,7 +1422,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end cooling_system.crankcase_heater_watts_isdefaulted = true end - hpxml.heat_pumps.each do |heat_pump| + hpxml_bldg.heat_pumps.each do |heat_pump| next unless [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit, HPXML::HVACTypeHeatPumpPTHP, HPXML::HVACTypeHeatPumpRoom].include? heat_pump.heat_pump_type next unless heat_pump.crankcase_heater_watts.nil? @@ -1393,7 +1435,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end # Pilot Light - hpxml.heating_systems.each do |heating_system| + hpxml_bldg.heating_systems.each do |heating_system| next unless [HPXML::HVACTypeFurnace, HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFloorFurnace, @@ -1412,9 +1454,10 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end # Detailed HVAC performance - hpxml.cooling_systems.each do |cooling_system| + hpxml_bldg.cooling_systems.each do |cooling_system| clg_ap = cooling_system.additional_properties if [HPXML::HVACTypeCentralAirConditioner, + HPXML::HVACTypeMiniSplitAirConditioner, HPXML::HVACTypeRoomAirConditioner, HPXML::HVACTypePTAC].include? cooling_system.cooling_system_type if [HPXML::HVACTypeRoomAirConditioner, @@ -1424,43 +1467,26 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) use_eer = false end # Note: We use HP cooling curve so that a central AC behaves the same. - HVAC.set_num_speeds(cooling_system) - HVAC.set_fan_power_rated(cooling_system) unless use_eer - HVAC.set_cool_c_d(cooling_system, clg_ap.num_speeds) - HVAC.set_cool_curves_central_air_source(cooling_system, use_eer) - HVAC.set_cool_rated_shrs_gross(runner, cooling_system) - HVAC.set_cool_rated_eirs(cooling_system) unless use_eer - - elsif [HPXML::HVACTypeMiniSplitAirConditioner].include? cooling_system.cooling_system_type - num_speeds = 10 - HVAC.set_num_speeds(cooling_system) - HVAC.set_fan_power_rated(cooling_system) - - HVAC.set_cool_c_d(cooling_system, num_speeds) - HVAC.set_cool_curves_mshp(cooling_system, num_speeds) - HVAC.set_cool_rated_shrs_gross(runner, cooling_system) - HVAC.set_cool_rated_eirs_mshp(cooling_system, num_speeds) - - HVAC.set_mshp_downselected_speed_indices(cooling_system) + HVAC.set_fan_power_rated(cooling_system, use_eer) + HVAC.set_cool_curves_central_air_source(runner, cooling_system, use_eer) elsif [HPXML::HVACTypeEvaporativeCooler].include? cooling_system.cooling_system_type clg_ap.effectiveness = 0.72 # Assumption from HEScore end end - hpxml.heating_systems.each do |heating_system| + hpxml_bldg.heating_systems.each do |heating_system| next unless [HPXML::HVACTypeStove, - HPXML::HVACTypePortableHeater, - HPXML::HVACTypeFixedHeater, + HPXML::HVACTypeSpaceHeater, HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFloorFurnace, HPXML::HVACTypeFireplace].include? heating_system.heating_system_type - heating_system.additional_properties.heat_rated_cfm_per_ton = HVAC.get_default_heat_cfm_per_ton(1, true) + heating_system.additional_properties.heat_rated_cfm_per_ton = HVAC.get_default_heat_cfm_per_ton(HPXML::HVACCompressorTypeSingleStage, true) end - hpxml.heat_pumps.each do |heat_pump| - hp_ap = heat_pump.additional_properties + hpxml_bldg.heat_pumps.each do |heat_pump| if [HPXML::HVACTypeHeatPumpAirToAir, + HPXML::HVACTypeHeatPumpMiniSplit, HPXML::HVACTypeHeatPumpPTHP, HPXML::HVACTypeHeatPumpRoom].include? heat_pump.heat_pump_type if [HPXML::HVACTypeHeatPumpPTHP, HPXML::HVACTypeHeatPumpRoom].include? heat_pump.heat_pump_type @@ -1468,35 +1494,10 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) else use_eer_cop = false end - HVAC.set_num_speeds(heat_pump) - HVAC.set_fan_power_rated(heat_pump) unless use_eer_cop + HVAC.set_fan_power_rated(heat_pump, use_eer_cop) HVAC.set_heat_pump_temperatures(heat_pump, runner) - - HVAC.set_cool_c_d(heat_pump, hp_ap.num_speeds) - HVAC.set_cool_curves_central_air_source(heat_pump, use_eer_cop) - HVAC.set_cool_rated_shrs_gross(runner, heat_pump) - HVAC.set_cool_rated_eirs(heat_pump) unless use_eer_cop - - HVAC.set_heat_c_d(heat_pump, hp_ap.num_speeds) + HVAC.set_cool_curves_central_air_source(runner, heat_pump, use_eer_cop) HVAC.set_heat_curves_central_air_source(heat_pump, use_eer_cop) - HVAC.set_heat_rated_eirs(heat_pump) unless use_eer_cop - - elsif [HPXML::HVACTypeHeatPumpMiniSplit].include? heat_pump.heat_pump_type - num_speeds = 10 - HVAC.set_num_speeds(heat_pump) - HVAC.set_fan_power_rated(heat_pump) - HVAC.set_heat_pump_temperatures(heat_pump, runner) - - HVAC.set_cool_c_d(heat_pump, num_speeds) - HVAC.set_cool_curves_mshp(heat_pump, num_speeds) - HVAC.set_cool_rated_shrs_gross(runner, heat_pump) - HVAC.set_cool_rated_eirs_mshp(heat_pump, num_speeds) - - HVAC.set_heat_c_d(heat_pump, num_speeds) - HVAC.set_heat_curves_mshp(heat_pump, num_speeds) - HVAC.set_heat_rated_eirs_mshp(heat_pump, num_speeds) - - HVAC.set_mshp_downselected_speed_indices(heat_pump) elsif [HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type HVAC.set_gshp_assumptions(heat_pump, weather) @@ -1509,8 +1510,47 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end end - def self.apply_hvac_control(hpxml, schedules_file) - hpxml.hvac_controls.each do |hvac_control| + def self.apply_detailed_performance_data_for_var_speed_systems(hpxml_bldg) + (hpxml_bldg.cooling_systems + hpxml_bldg.heat_pumps).each do |hvac_system| + is_hp = hvac_system.is_a? HPXML::HeatPump + system_type = is_hp ? hvac_system.heat_pump_type : hvac_system.cooling_system_type + next unless [HPXML::HVACTypeCentralAirConditioner, + HPXML::HVACTypeMiniSplitAirConditioner, + HPXML::HVACTypeHeatPumpAirToAir, + HPXML::HVACTypeHeatPumpMiniSplit].include? system_type + + next unless hvac_system.compressor_type == HPXML::HVACCompressorTypeVariableSpeed + + HVAC.drop_intermediate_speeds(hvac_system) + + hvac_ap = hvac_system.additional_properties + if hvac_system.cooling_detailed_performance_data.empty? + HVAC.set_cool_detailed_performance_data(hvac_system) + else + # override some properties based on detailed performance data + cool_rated_capacity = [hvac_system.cooling_capacity, 1.0].max + cool_max_capacity = [hvac_system.cooling_detailed_performance_data.find { |dp| (dp.outdoor_temperature == HVAC::AirSourceCoolRatedODB) && (dp.capacity_description == HPXML::CapacityDescriptionMaximum) }.capacity, 1.0].max + cool_min_capacity = [hvac_system.cooling_detailed_performance_data.find { |dp| (dp.outdoor_temperature == HVAC::AirSourceCoolRatedODB) && (dp.capacity_description == HPXML::CapacityDescriptionMinimum) }.capacity, 1.0].max + hvac_ap.cool_capacity_ratios = [cool_min_capacity / cool_rated_capacity, cool_max_capacity / cool_rated_capacity] + hvac_ap.cool_fan_speed_ratios = HVAC.calc_fan_speed_ratios(hvac_ap.cool_capacity_ratios, hvac_ap.cool_rated_cfm_per_ton, hvac_ap.cool_rated_airflow_rate) + end + if is_hp + if hvac_system.heating_detailed_performance_data.empty? + HVAC.set_heat_detailed_performance_data(hvac_system) + else + # override some properties based on detailed performance data + heat_rated_capacity = [hvac_system.heating_capacity, 1.0].max + heat_max_capacity = [hvac_system.heating_detailed_performance_data.find { |dp| (dp.outdoor_temperature == HVAC::AirSourceHeatRatedODB) && (dp.capacity_description == HPXML::CapacityDescriptionMaximum) }.capacity, 1.0].max + heat_min_capacity = [hvac_system.heating_detailed_performance_data.find { |dp| (dp.outdoor_temperature == HVAC::AirSourceHeatRatedODB) && (dp.capacity_description == HPXML::CapacityDescriptionMinimum) }.capacity, 1.0].max + hvac_ap.heat_capacity_ratios = [heat_min_capacity / heat_rated_capacity, heat_max_capacity / heat_rated_capacity] + hvac_ap.heat_fan_speed_ratios = HVAC.calc_fan_speed_ratios(hvac_ap.heat_capacity_ratios, hvac_ap.heat_rated_cfm_per_ton, hvac_ap.heat_rated_airflow_rate) + end + end + end + end + + def self.apply_hvac_control(hpxml_bldg, schedules_file) + hpxml_bldg.hvac_controls.each do |hvac_control| schedules_file_includes_heating_setpoint_temp = (schedules_file.nil? ? false : schedules_file.includes_col_name(SchedulesFile::ColumnHeatingSetpoint)) if hvac_control.heating_setpoint_temp.nil? && hvac_control.weekday_heating_setpoints.nil? && !schedules_file_includes_heating_setpoint_temp # No heating setpoints; set a default heating setpoint for, e.g., natural ventilation @@ -1563,8 +1603,8 @@ def self.apply_hvac_control(hpxml, schedules_file) end end - def self.apply_hvac_distribution(hpxml, ncfl, ncfl_ag) - hpxml.hvac_distributions.each do |hvac_distribution| + def self.apply_hvac_distribution(hpxml_bldg, ncfl, ncfl_ag) + hpxml_bldg.hvac_distributions.each do |hvac_distribution| next unless hvac_distribution.distribution_system_type == HPXML::HVACDistributionTypeAir next if hvac_distribution.ducts.empty? @@ -1585,8 +1625,8 @@ def self.apply_hvac_distribution(hpxml, ncfl, ncfl_ag) [supply_ducts, return_ducts].each do |ducts| ducts.each do |duct| primary_duct_area, secondary_duct_area = HVAC.get_default_duct_surface_area(duct.duct_type, ncfl_ag, cfa_served, n_returns).map { |area| area / ducts.size } - primary_duct_location, secondary_duct_location = HVAC.get_default_duct_locations(hpxml) - if primary_duct_location.nil? # If a home doesn't have any non-living spaces (outside living space), place all ducts in living space. + primary_duct_location, secondary_duct_location = HVAC.get_default_duct_locations(hpxml_bldg) + if primary_duct_location.nil? # If a home doesn't have any unconditioned spaces, place all ducts in conditioned space. duct.duct_surface_area = primary_duct_area + secondary_duct_area duct.duct_surface_area_isdefaulted = true duct.duct_location = secondary_duct_location @@ -1630,10 +1670,18 @@ def self.apply_hvac_distribution(hpxml, ncfl, ncfl_ag) next unless duct.duct_fraction_area.nil? if duct.duct_type == HPXML::DuctTypeSupply - duct.duct_fraction_area = (duct.duct_surface_area / total_supply_area).round(3) + if total_supply_area > 0 + duct.duct_fraction_area = (duct.duct_surface_area / total_supply_area).round(3) + else + duct.duct_fraction_area = (1.0 / supply_ducts.size).round(3) # Arbitrary + end duct.duct_fraction_area_isdefaulted = true elsif duct.duct_type == HPXML::DuctTypeReturn - duct.duct_fraction_area = (duct.duct_surface_area / total_return_area).round(3) + if total_return_area > 0 + duct.duct_fraction_area = (duct.duct_surface_area / total_return_area).round(3) + else + duct.duct_fraction_area = (1.0 / return_ducts.size).round(3) # Arbitrary + end duct.duct_fraction_area_isdefaulted = true end end @@ -1663,9 +1711,9 @@ def self.apply_hvac_distribution(hpxml, ncfl, ncfl_ag) end end - def self.apply_hvac_location(hpxml) + def self.apply_hvac_location(hpxml_bldg) # This needs to come after we have applied defaults for ducts - hpxml.hvac_systems.each do |hvac_system| + hpxml_bldg.hvac_systems.each do |hvac_system| next unless hvac_system.location.nil? hvac_system.location_isdefaulted = true @@ -1673,7 +1721,7 @@ def self.apply_hvac_location(hpxml) # Set default location based on distribution system dist_system = hvac_system.distribution_system if dist_system.nil? - hvac_system.location = HPXML::LocationLivingSpace + hvac_system.location = HPXML::LocationConditionedSpace else dist_type = dist_system.distribution_system_type if dist_type == HPXML::HVACDistributionTypeAir @@ -1687,7 +1735,7 @@ def self.apply_hvac_location(hpxml) uncond_duct_locations[d.duct_location] += d.duct_surface_area end if uncond_duct_locations.empty? - hvac_system.location = HPXML::LocationLivingSpace + hvac_system.location = HPXML::LocationConditionedSpace else hvac_system.location = uncond_duct_locations.key(uncond_duct_locations.values.max) if hvac_system.location == HPXML::LocationOutside @@ -1697,7 +1745,7 @@ def self.apply_hvac_location(hpxml) end elsif dist_type == HPXML::HVACDistributionTypeHydronic # Assume same default logic as a water heater - hvac_system.location = Waterheater.get_default_location(hpxml, hpxml.climate_and_risk_zones.climate_zone_ieccs[0]) + hvac_system.location = Waterheater.get_default_location(hpxml_bldg, hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs[0]) elsif dist_type == HPXML::HVACDistributionTypeDSE # DSE=1 implies distribution system in conditioned space has_dse_of_one = true @@ -1708,7 +1756,7 @@ def self.apply_hvac_location(hpxml) has_dse_of_one = false end if has_dse_of_one - hvac_system.location = HPXML::LocationLivingSpace + hvac_system.location = HPXML::LocationConditionedSpace else hvac_system.location = HPXML::LocationUnconditionedSpace end @@ -1717,9 +1765,9 @@ def self.apply_hvac_location(hpxml) end end - def self.apply_ventilation_fans(hpxml, weather, cfa, nbeds) + def self.apply_ventilation_fans(hpxml_bldg, weather, cfa, nbeds) # Default mech vent systems - hpxml.ventilation_fans.each do |vent_fan| + hpxml_bldg.ventilation_fans.each do |vent_fan| next unless vent_fan.used_for_whole_building_ventilation if vent_fan.is_shared_system.nil? @@ -1731,11 +1779,11 @@ def self.apply_ventilation_fans(hpxml, weather, cfa, nbeds) vent_fan.hours_in_operation_isdefaulted = true end if vent_fan.rated_flow_rate.nil? && vent_fan.tested_flow_rate.nil? && vent_fan.calculated_flow_rate.nil? && vent_fan.delivered_ventilation.nil? - if hpxml.ventilation_fans.select { |vf| vf.used_for_whole_building_ventilation && !vf.is_cfis_supplemental_fan? }.size > 1 + if hpxml_bldg.ventilation_fans.select { |vf| vf.used_for_whole_building_ventilation && !vf.is_cfis_supplemental_fan? }.size > 1 fail 'Defaulting flow rates for multiple mechanical ventilation systems is currently not supported.' end - vent_fan.rated_flow_rate = Airflow.get_default_mech_vent_flow_rate(hpxml, vent_fan, weather, cfa, nbeds).round(1) + vent_fan.rated_flow_rate = Airflow.get_default_mech_vent_flow_rate(hpxml_bldg, vent_fan, weather, cfa, nbeds).round(1) vent_fan.rated_flow_rate_isdefaulted = true end if vent_fan.fan_power.nil? @@ -1755,7 +1803,7 @@ def self.apply_ventilation_fans(hpxml, weather, cfa, nbeds) end # Default kitchen fan - hpxml.ventilation_fans.each do |vent_fan| + hpxml_bldg.ventilation_fans.each do |vent_fan| next unless (vent_fan.used_for_local_ventilation && (vent_fan.fan_location == HPXML::LocationKitchen)) if vent_fan.count.nil? @@ -1781,11 +1829,11 @@ def self.apply_ventilation_fans(hpxml, weather, cfa, nbeds) end # Default bath fans - hpxml.ventilation_fans.each do |vent_fan| + hpxml_bldg.ventilation_fans.each do |vent_fan| next unless (vent_fan.used_for_local_ventilation && (vent_fan.fan_location == HPXML::LocationBath)) if vent_fan.count.nil? - vent_fan.count = hpxml.building_construction.number_of_bathrooms + vent_fan.count = hpxml_bldg.building_construction.number_of_bathrooms vent_fan.count_isdefaulted = true end if vent_fan.rated_flow_rate.nil? && vent_fan.tested_flow_rate.nil? && vent_fan.calculated_flow_rate.nil? && vent_fan.delivered_ventilation.nil? @@ -1807,7 +1855,7 @@ def self.apply_ventilation_fans(hpxml, weather, cfa, nbeds) end # Default whole house fan - hpxml.ventilation_fans.each do |vent_fan| + hpxml_bldg.ventilation_fans.each do |vent_fan| next unless vent_fan.used_for_seasonal_cooling_load_reduction if vent_fan.rated_flow_rate.nil? && vent_fan.tested_flow_rate.nil? && vent_fan.calculated_flow_rate.nil? && vent_fan.delivered_ventilation.nil? @@ -1821,8 +1869,8 @@ def self.apply_ventilation_fans(hpxml, weather, cfa, nbeds) end end - def self.apply_water_heaters(hpxml, nbeds, eri_version, schedules_file) - hpxml.water_heating_systems.each do |water_heating_system| + def self.apply_water_heaters(hpxml_bldg, nbeds, eri_version, schedules_file) + hpxml_bldg.water_heating_systems.each do |water_heating_system| if water_heating_system.is_shared_system.nil? water_heating_system.is_shared_system = false water_heating_system.is_shared_system_isdefaulted = true @@ -1849,11 +1897,11 @@ def self.apply_water_heaters(hpxml, nbeds, eri_version, schedules_file) end if (water_heating_system.water_heater_type == HPXML::WaterHeaterTypeStorage) if water_heating_system.heating_capacity.nil? - water_heating_system.heating_capacity = (Waterheater.get_default_heating_capacity(water_heating_system.fuel_type, nbeds, hpxml.water_heating_systems.size, hpxml.building_construction.number_of_bathrooms) * 1000.0).round + water_heating_system.heating_capacity = (Waterheater.get_default_heating_capacity(water_heating_system.fuel_type, nbeds, hpxml_bldg.water_heating_systems.size, hpxml_bldg.building_construction.number_of_bathrooms) * 1000.0).round water_heating_system.heating_capacity_isdefaulted = true end if water_heating_system.tank_volume.nil? - water_heating_system.tank_volume = Waterheater.get_default_tank_volume(water_heating_system.fuel_type, nbeds, hpxml.building_construction.number_of_bathrooms) + water_heating_system.tank_volume = Waterheater.get_default_tank_volume(water_heating_system.fuel_type, nbeds, hpxml_bldg.building_construction.number_of_bathrooms) water_heating_system.tank_volume_isdefaulted = true end if water_heating_system.recovery_efficiency.nil? @@ -1873,7 +1921,7 @@ def self.apply_water_heaters(hpxml, nbeds, eri_version, schedules_file) end end if water_heating_system.location.nil? - water_heating_system.location = Waterheater.get_default_location(hpxml, hpxml.climate_and_risk_zones.climate_zone_ieccs[0]) + water_heating_system.location = Waterheater.get_default_location(hpxml_bldg, hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs[0]) water_heating_system.location_isdefaulted = true end next unless water_heating_system.usage_bin.nil? && (not water_heating_system.uniform_energy_factor.nil?) # FHR & UsageBin only applies to UEF @@ -1887,18 +1935,18 @@ def self.apply_water_heaters(hpxml, nbeds, eri_version, schedules_file) end end - def self.apply_flue_or_chimney(hpxml) + def self.apply_flue_or_chimney(hpxml_bldg) # This needs to come after we have applied defaults for HVAC/DHW systems - if hpxml.air_infiltration.has_flue_or_chimney_in_conditioned_space.nil? - hpxml.air_infiltration.has_flue_or_chimney_in_conditioned_space = get_default_flue_or_chimney_in_conditioned_space(hpxml) - hpxml.air_infiltration.has_flue_or_chimney_in_conditioned_space_isdefaulted = true + if hpxml_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space.nil? + hpxml_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space = get_default_flue_or_chimney_in_conditioned_space(hpxml_bldg) + hpxml_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space_isdefaulted = true end end - def self.apply_hot_water_distribution(hpxml, cfa, ncfl, has_uncond_bsmnt) - return if hpxml.hot_water_distributions.size == 0 + def self.apply_hot_water_distribution(hpxml_bldg, cfa, ncfl, has_uncond_bsmnt) + return if hpxml_bldg.hot_water_distributions.size == 0 - hot_water_distribution = hpxml.hot_water_distributions[0] + hot_water_distribution = hpxml_bldg.hot_water_distributions[0] if hot_water_distribution.pipe_r_value.nil? hot_water_distribution.pipe_r_value = 0.0 @@ -1933,30 +1981,39 @@ def self.apply_hot_water_distribution(hpxml, cfa, ncfl, has_uncond_bsmnt) end end - def self.apply_water_fixtures(hpxml, schedules_file) - return if hpxml.hot_water_distributions.size == 0 + def self.apply_water_fixtures(hpxml_bldg, schedules_file) + return if hpxml_bldg.hot_water_distributions.size == 0 + + hpxml_bldg.water_fixtures.each do |wf| + next unless [HPXML::WaterFixtureTypeShowerhead, HPXML::WaterFixtureTypeFaucet].include? wf.water_fixture_type + + if wf.low_flow.nil? + wf.low_flow = (wf.flow_rate <= 2.0) + wf.low_flow_isdefaulted = true + end + end - if hpxml.water_heating.water_fixtures_usage_multiplier.nil? - hpxml.water_heating.water_fixtures_usage_multiplier = 1.0 - hpxml.water_heating.water_fixtures_usage_multiplier_isdefaulted = true + if hpxml_bldg.water_heating.water_fixtures_usage_multiplier.nil? + hpxml_bldg.water_heating.water_fixtures_usage_multiplier = 1.0 + hpxml_bldg.water_heating.water_fixtures_usage_multiplier_isdefaulted = true end schedules_file_includes_fixtures = (schedules_file.nil? ? false : schedules_file.includes_col_name(SchedulesFile::ColumnHotWaterFixtures)) - if hpxml.water_heating.water_fixtures_weekday_fractions.nil? && !schedules_file_includes_fixtures - hpxml.water_heating.water_fixtures_weekday_fractions = Schedule.FixturesWeekdayFractions - hpxml.water_heating.water_fixtures_weekday_fractions_isdefaulted = true + if hpxml_bldg.water_heating.water_fixtures_weekday_fractions.nil? && !schedules_file_includes_fixtures + hpxml_bldg.water_heating.water_fixtures_weekday_fractions = Schedule.FixturesWeekdayFractions + hpxml_bldg.water_heating.water_fixtures_weekday_fractions_isdefaulted = true end - if hpxml.water_heating.water_fixtures_weekend_fractions.nil? && !schedules_file_includes_fixtures - hpxml.water_heating.water_fixtures_weekend_fractions = Schedule.FixturesWeekendFractions - hpxml.water_heating.water_fixtures_weekend_fractions_isdefaulted = true + if hpxml_bldg.water_heating.water_fixtures_weekend_fractions.nil? && !schedules_file_includes_fixtures + hpxml_bldg.water_heating.water_fixtures_weekend_fractions = Schedule.FixturesWeekendFractions + hpxml_bldg.water_heating.water_fixtures_weekend_fractions_isdefaulted = true end - if hpxml.water_heating.water_fixtures_monthly_multipliers.nil? && !schedules_file_includes_fixtures - hpxml.water_heating.water_fixtures_monthly_multipliers = Schedule.FixturesMonthlyMultipliers - hpxml.water_heating.water_fixtures_monthly_multipliers_isdefaulted = true + if hpxml_bldg.water_heating.water_fixtures_monthly_multipliers.nil? && !schedules_file_includes_fixtures + hpxml_bldg.water_heating.water_fixtures_monthly_multipliers = Schedule.FixturesMonthlyMultipliers + hpxml_bldg.water_heating.water_fixtures_monthly_multipliers_isdefaulted = true end end - def self.apply_solar_thermal_systems(hpxml) - hpxml.solar_thermal_systems.each do |solar_thermal_system| + def self.apply_solar_thermal_systems(hpxml_bldg) + hpxml_bldg.solar_thermal_systems.each do |solar_thermal_system| if solar_thermal_system.collector_azimuth.nil? solar_thermal_system.collector_azimuth = get_azimuth_from_orientation(solar_thermal_system.collector_orientation) solar_thermal_system.collector_azimuth_isdefaulted = true @@ -1972,8 +2029,8 @@ def self.apply_solar_thermal_systems(hpxml) end end - def self.apply_pv_systems(hpxml) - hpxml.pv_systems.each do |pv_system| + def self.apply_pv_systems(hpxml_bldg) + hpxml_bldg.pv_systems.each do |pv_system| if pv_system.array_azimuth.nil? pv_system.array_azimuth = get_azimuth_from_orientation(pv_system.array_orientation) pv_system.array_azimuth_isdefaulted = true @@ -2003,7 +2060,7 @@ def self.apply_pv_systems(hpxml) pv_system.system_losses_fraction_isdefaulted = true end end - hpxml.inverters.each do |inverter| + hpxml_bldg.inverters.each do |inverter| if inverter.inverter_efficiency.nil? inverter.inverter_efficiency = PV.get_default_inv_eff() inverter.inverter_efficiency_isdefaulted = true @@ -2011,8 +2068,8 @@ def self.apply_pv_systems(hpxml) end end - def self.apply_generators(hpxml) - hpxml.generators.each do |generator| + def self.apply_generators(hpxml_bldg) + hpxml_bldg.generators.each do |generator| if generator.is_shared_system.nil? generator.is_shared_system = false generator.is_shared_system_isdefaulted = true @@ -2020,9 +2077,9 @@ def self.apply_generators(hpxml) end end - def self.apply_batteries(hpxml) - default_values = Battery.get_battery_default_values(hpxml.has_location(HPXML::LocationGarage)) - hpxml.batteries.each do |battery| + def self.apply_batteries(hpxml_bldg) + default_values = Battery.get_battery_default_values(hpxml_bldg.has_location(HPXML::LocationGarage)) + hpxml_bldg.batteries.each do |battery| if battery.location.nil? battery.location = default_values[:location] battery.location_isdefaulted = true @@ -2077,16 +2134,16 @@ def self.apply_batteries(hpxml) end end - def self.apply_appliances(hpxml, nbeds, eri_version, schedules_file) + def self.apply_appliances(hpxml_bldg, nbeds, eri_version, schedules_file) # Default clothes washer - if hpxml.clothes_washers.size > 0 - clothes_washer = hpxml.clothes_washers[0] + if hpxml_bldg.clothes_washers.size > 0 + clothes_washer = hpxml_bldg.clothes_washers[0] if clothes_washer.is_shared_appliance.nil? clothes_washer.is_shared_appliance = false clothes_washer.is_shared_appliance_isdefaulted = true end if clothes_washer.location.nil? - clothes_washer.location = HPXML::LocationLivingSpace + clothes_washer.location = HPXML::LocationConditionedSpace clothes_washer.location_isdefaulted = true end if clothes_washer.rated_annual_kwh.nil? @@ -2126,14 +2183,14 @@ def self.apply_appliances(hpxml, nbeds, eri_version, schedules_file) end # Default clothes dryer - if hpxml.clothes_dryers.size > 0 - clothes_dryer = hpxml.clothes_dryers[0] + if hpxml_bldg.clothes_dryers.size > 0 + clothes_dryer = hpxml_bldg.clothes_dryers[0] if clothes_dryer.is_shared_appliance.nil? clothes_dryer.is_shared_appliance = false clothes_dryer.is_shared_appliance_isdefaulted = true end if clothes_dryer.location.nil? - clothes_dryer.location = HPXML::LocationLivingSpace + clothes_dryer.location = HPXML::LocationConditionedSpace clothes_dryer.location_isdefaulted = true end if clothes_dryer.combined_energy_factor.nil? && clothes_dryer.energy_factor.nil? @@ -2174,14 +2231,14 @@ def self.apply_appliances(hpxml, nbeds, eri_version, schedules_file) end # Default dishwasher - if hpxml.dishwashers.size > 0 - dishwasher = hpxml.dishwashers[0] + if hpxml_bldg.dishwashers.size > 0 + dishwasher = hpxml_bldg.dishwashers[0] if dishwasher.is_shared_appliance.nil? dishwasher.is_shared_appliance = false dishwasher.is_shared_appliance_isdefaulted = true end if dishwasher.location.nil? - dishwasher.location = HPXML::LocationLivingSpace + dishwasher.location = HPXML::LocationConditionedSpace dishwasher.location_isdefaulted = true end if dishwasher.place_setting_capacity.nil? @@ -2219,14 +2276,14 @@ def self.apply_appliances(hpxml, nbeds, eri_version, schedules_file) end # Default refrigerators - if hpxml.refrigerators.size == 1 - hpxml.refrigerators[0].primary_indicator = true - hpxml.refrigerators[0].primary_indicator_isdefaulted = true + if hpxml_bldg.refrigerators.size == 1 + hpxml_bldg.refrigerators[0].primary_indicator = true + hpxml_bldg.refrigerators[0].primary_indicator_isdefaulted = true end - hpxml.refrigerators.each do |refrigerator| + hpxml_bldg.refrigerators.each do |refrigerator| if not refrigerator.primary_indicator # extra refrigerator if refrigerator.location.nil? - refrigerator.location = HotWaterAndAppliances.get_default_extra_refrigerator_and_freezer_locations(hpxml) + refrigerator.location = HotWaterAndAppliances.get_default_extra_refrigerator_and_freezer_locations(hpxml_bldg) refrigerator.location_isdefaulted = true end if refrigerator.rated_annual_kwh.nil? @@ -2249,7 +2306,7 @@ def self.apply_appliances(hpxml, nbeds, eri_version, schedules_file) end else # primary refrigerator if refrigerator.location.nil? - refrigerator.location = HPXML::LocationLivingSpace + refrigerator.location = HPXML::LocationConditionedSpace refrigerator.location_isdefaulted = true end if refrigerator.rated_annual_kwh.nil? @@ -2278,9 +2335,9 @@ def self.apply_appliances(hpxml, nbeds, eri_version, schedules_file) end # Default freezer - hpxml.freezers.each do |freezer| + hpxml_bldg.freezers.each do |freezer| if freezer.location.nil? - freezer.location = HotWaterAndAppliances.get_default_extra_refrigerator_and_freezer_locations(hpxml) + freezer.location = HotWaterAndAppliances.get_default_extra_refrigerator_and_freezer_locations(hpxml_bldg) freezer.location_isdefaulted = true end if freezer.rated_annual_kwh.nil? @@ -2308,10 +2365,10 @@ def self.apply_appliances(hpxml, nbeds, eri_version, schedules_file) end # Default cooking range - if hpxml.cooking_ranges.size > 0 - cooking_range = hpxml.cooking_ranges[0] + if hpxml_bldg.cooking_ranges.size > 0 + cooking_range = hpxml_bldg.cooking_ranges[0] if cooking_range.location.nil? - cooking_range.location = HPXML::LocationLivingSpace + cooking_range.location = HPXML::LocationConditionedSpace cooking_range.location_isdefaulted = true end if cooking_range.is_induction.nil? @@ -2339,8 +2396,8 @@ def self.apply_appliances(hpxml, nbeds, eri_version, schedules_file) end # Default oven - if hpxml.ovens.size > 0 - oven = hpxml.ovens[0] + if hpxml_bldg.ovens.size > 0 + oven = hpxml_bldg.ovens[0] if oven.is_convection.nil? default_values = HotWaterAndAppliances.get_range_oven_default_values() oven.is_convection = default_values[:is_convection] @@ -2349,91 +2406,91 @@ def self.apply_appliances(hpxml, nbeds, eri_version, schedules_file) end end - def self.apply_lighting(hpxml, schedules_file) - return if hpxml.lighting_groups.empty? + def self.apply_lighting(hpxml_bldg, schedules_file) + return if hpxml_bldg.lighting_groups.empty? - if hpxml.lighting.interior_usage_multiplier.nil? - hpxml.lighting.interior_usage_multiplier = 1.0 - hpxml.lighting.interior_usage_multiplier_isdefaulted = true + if hpxml_bldg.lighting.interior_usage_multiplier.nil? + hpxml_bldg.lighting.interior_usage_multiplier = 1.0 + hpxml_bldg.lighting.interior_usage_multiplier_isdefaulted = true end - if hpxml.lighting.garage_usage_multiplier.nil? - hpxml.lighting.garage_usage_multiplier = 1.0 - hpxml.lighting.garage_usage_multiplier_isdefaulted = true + if hpxml_bldg.lighting.garage_usage_multiplier.nil? + hpxml_bldg.lighting.garage_usage_multiplier = 1.0 + hpxml_bldg.lighting.garage_usage_multiplier_isdefaulted = true end - if hpxml.lighting.exterior_usage_multiplier.nil? - hpxml.lighting.exterior_usage_multiplier = 1.0 - hpxml.lighting.exterior_usage_multiplier_isdefaulted = true + if hpxml_bldg.lighting.exterior_usage_multiplier.nil? + hpxml_bldg.lighting.exterior_usage_multiplier = 1.0 + hpxml_bldg.lighting.exterior_usage_multiplier_isdefaulted = true end # Schedules from T24 2016 Residential ACM Appendix C Table 8 Exterior Lighting Hourly Multiplier (Weekdays and weekends) default_exterior_lighting_weekday_fractions = Schedule.LightingExteriorWeekdayFractions default_exterior_lighting_weekend_fractions = Schedule.LightingExteriorWeekendFractions default_exterior_lighting_monthly_multipliers = Schedule.LightingExteriorMonthlyMultipliers - if hpxml.has_location(HPXML::LocationGarage) + if hpxml_bldg.has_location(HPXML::LocationGarage) schedules_file_includes_lighting_garage = (schedules_file.nil? ? false : schedules_file.includes_col_name(SchedulesFile::ColumnLightingGarage)) - if hpxml.lighting.garage_weekday_fractions.nil? && !schedules_file_includes_lighting_garage - hpxml.lighting.garage_weekday_fractions = default_exterior_lighting_weekday_fractions - hpxml.lighting.garage_weekday_fractions_isdefaulted = true + if hpxml_bldg.lighting.garage_weekday_fractions.nil? && !schedules_file_includes_lighting_garage + hpxml_bldg.lighting.garage_weekday_fractions = default_exterior_lighting_weekday_fractions + hpxml_bldg.lighting.garage_weekday_fractions_isdefaulted = true end - if hpxml.lighting.garage_weekend_fractions.nil? && !schedules_file_includes_lighting_garage - hpxml.lighting.garage_weekend_fractions = default_exterior_lighting_weekend_fractions - hpxml.lighting.garage_weekend_fractions_isdefaulted = true + if hpxml_bldg.lighting.garage_weekend_fractions.nil? && !schedules_file_includes_lighting_garage + hpxml_bldg.lighting.garage_weekend_fractions = default_exterior_lighting_weekend_fractions + hpxml_bldg.lighting.garage_weekend_fractions_isdefaulted = true end - if hpxml.lighting.garage_monthly_multipliers.nil? && !schedules_file_includes_lighting_garage - hpxml.lighting.garage_monthly_multipliers = default_exterior_lighting_monthly_multipliers - hpxml.lighting.garage_monthly_multipliers_isdefaulted = true + if hpxml_bldg.lighting.garage_monthly_multipliers.nil? && !schedules_file_includes_lighting_garage + hpxml_bldg.lighting.garage_monthly_multipliers = default_exterior_lighting_monthly_multipliers + hpxml_bldg.lighting.garage_monthly_multipliers_isdefaulted = true end end schedules_file_includes_lighting_exterior = (schedules_file.nil? ? false : schedules_file.includes_col_name(SchedulesFile::ColumnLightingExterior)) - if hpxml.lighting.exterior_weekday_fractions.nil? && !schedules_file_includes_lighting_exterior - hpxml.lighting.exterior_weekday_fractions = default_exterior_lighting_weekday_fractions - hpxml.lighting.exterior_weekday_fractions_isdefaulted = true + if hpxml_bldg.lighting.exterior_weekday_fractions.nil? && !schedules_file_includes_lighting_exterior + hpxml_bldg.lighting.exterior_weekday_fractions = default_exterior_lighting_weekday_fractions + hpxml_bldg.lighting.exterior_weekday_fractions_isdefaulted = true end - if hpxml.lighting.exterior_weekend_fractions.nil? && !schedules_file_includes_lighting_exterior - hpxml.lighting.exterior_weekend_fractions = default_exterior_lighting_weekend_fractions - hpxml.lighting.exterior_weekend_fractions_isdefaulted = true + if hpxml_bldg.lighting.exterior_weekend_fractions.nil? && !schedules_file_includes_lighting_exterior + hpxml_bldg.lighting.exterior_weekend_fractions = default_exterior_lighting_weekend_fractions + hpxml_bldg.lighting.exterior_weekend_fractions_isdefaulted = true end - if hpxml.lighting.exterior_monthly_multipliers.nil? && !schedules_file_includes_lighting_exterior - hpxml.lighting.exterior_monthly_multipliers = default_exterior_lighting_monthly_multipliers - hpxml.lighting.exterior_monthly_multipliers_isdefaulted = true + if hpxml_bldg.lighting.exterior_monthly_multipliers.nil? && !schedules_file_includes_lighting_exterior + hpxml_bldg.lighting.exterior_monthly_multipliers = default_exterior_lighting_monthly_multipliers + hpxml_bldg.lighting.exterior_monthly_multipliers_isdefaulted = true end - if hpxml.lighting.holiday_exists - if hpxml.lighting.holiday_kwh_per_day.nil? + if hpxml_bldg.lighting.holiday_exists + if hpxml_bldg.lighting.holiday_kwh_per_day.nil? # From LA100 repo (2017) - if hpxml.building_construction.residential_facility_type == HPXML::ResidentialTypeSFD - hpxml.lighting.holiday_kwh_per_day = 1.1 + if hpxml_bldg.building_construction.residential_facility_type == HPXML::ResidentialTypeSFD + hpxml_bldg.lighting.holiday_kwh_per_day = 1.1 else # Multifamily and others - hpxml.lighting.holiday_kwh_per_day = 0.55 + hpxml_bldg.lighting.holiday_kwh_per_day = 0.55 end - hpxml.lighting.holiday_kwh_per_day_isdefaulted = true + hpxml_bldg.lighting.holiday_kwh_per_day_isdefaulted = true end - if hpxml.lighting.holiday_period_begin_month.nil? - hpxml.lighting.holiday_period_begin_month = 11 - hpxml.lighting.holiday_period_begin_month_isdefaulted = true - hpxml.lighting.holiday_period_begin_day = 24 - hpxml.lighting.holiday_period_begin_day_isdefaulted = true + if hpxml_bldg.lighting.holiday_period_begin_month.nil? + hpxml_bldg.lighting.holiday_period_begin_month = 11 + hpxml_bldg.lighting.holiday_period_begin_month_isdefaulted = true + hpxml_bldg.lighting.holiday_period_begin_day = 24 + hpxml_bldg.lighting.holiday_period_begin_day_isdefaulted = true end - if hpxml.lighting.holiday_period_end_day.nil? - hpxml.lighting.holiday_period_end_month = 1 - hpxml.lighting.holiday_period_end_month_isdefaulted = true - hpxml.lighting.holiday_period_end_day = 6 - hpxml.lighting.holiday_period_end_day_isdefaulted = true + if hpxml_bldg.lighting.holiday_period_end_day.nil? + hpxml_bldg.lighting.holiday_period_end_month = 1 + hpxml_bldg.lighting.holiday_period_end_month_isdefaulted = true + hpxml_bldg.lighting.holiday_period_end_day = 6 + hpxml_bldg.lighting.holiday_period_end_day_isdefaulted = true end schedules_file_includes_lighting_holiday_exterior = (schedules_file.nil? ? false : schedules_file.includes_col_name(SchedulesFile::ColumnLightingExteriorHoliday)) - if hpxml.lighting.holiday_weekday_fractions.nil? && !schedules_file_includes_lighting_holiday_exterior - hpxml.lighting.holiday_weekday_fractions = Schedule.LightingExteriorHolidayWeekdayFractions - hpxml.lighting.holiday_weekday_fractions_isdefaulted = true + if hpxml_bldg.lighting.holiday_weekday_fractions.nil? && !schedules_file_includes_lighting_holiday_exterior + hpxml_bldg.lighting.holiday_weekday_fractions = Schedule.LightingExteriorHolidayWeekdayFractions + hpxml_bldg.lighting.holiday_weekday_fractions_isdefaulted = true end - if hpxml.lighting.holiday_weekend_fractions.nil? && !schedules_file_includes_lighting_holiday_exterior - hpxml.lighting.holiday_weekend_fractions = Schedule.LightingExteriorHolidayWeekendFractions - hpxml.lighting.holiday_weekend_fractions_isdefaulted = true + if hpxml_bldg.lighting.holiday_weekend_fractions.nil? && !schedules_file_includes_lighting_holiday_exterior + hpxml_bldg.lighting.holiday_weekend_fractions = Schedule.LightingExteriorHolidayWeekendFractions + hpxml_bldg.lighting.holiday_weekend_fractions_isdefaulted = true end end end - def self.apply_ceiling_fans(hpxml, nbeds, weather, schedules_file) - return if hpxml.ceiling_fans.size == 0 + def self.apply_ceiling_fans(hpxml_bldg, nbeds, weather, schedules_file) + return if hpxml_bldg.ceiling_fans.size == 0 - ceiling_fan = hpxml.ceiling_fans[0] + ceiling_fan = hpxml_bldg.ceiling_fans[0] if ceiling_fan.efficiency.nil? medium_cfm = 3000.0 ceiling_fan.efficiency = medium_cfm / HVAC.get_default_ceiling_fan_power() @@ -2458,9 +2515,9 @@ def self.apply_ceiling_fans(hpxml, nbeds, weather, schedules_file) end end - def self.apply_pools_and_hot_tubs(hpxml, cfa, schedules_file) - nbeds = hpxml.building_construction.additional_properties.adjusted_number_of_bedrooms - hpxml.pools.each do |pool| + def self.apply_pools_and_permanent_spas(hpxml_bldg, cfa, schedules_file) + nbeds = hpxml_bldg.building_construction.additional_properties.adjusted_number_of_bedrooms + hpxml_bldg.pools.each do |pool| next if pool.type == HPXML::TypeNone if pool.pump_type != HPXML::TypeNone @@ -2516,66 +2573,66 @@ def self.apply_pools_and_hot_tubs(hpxml, cfa, schedules_file) end end - hpxml.hot_tubs.each do |hot_tub| - next if hot_tub.type == HPXML::TypeNone + hpxml_bldg.permanent_spas.each do |spa| + next if spa.type == HPXML::TypeNone - if hot_tub.pump_type != HPXML::TypeNone + if spa.pump_type != HPXML::TypeNone # Pump - if hot_tub.pump_kwh_per_year.nil? - hot_tub.pump_kwh_per_year = MiscLoads.get_hot_tub_pump_default_values(cfa, nbeds) - hot_tub.pump_kwh_per_year_isdefaulted = true + if spa.pump_kwh_per_year.nil? + spa.pump_kwh_per_year = MiscLoads.get_permanent_spa_pump_default_values(cfa, nbeds) + spa.pump_kwh_per_year_isdefaulted = true end - if hot_tub.pump_usage_multiplier.nil? - hot_tub.pump_usage_multiplier = 1.0 - hot_tub.pump_usage_multiplier_isdefaulted = true + if spa.pump_usage_multiplier.nil? + spa.pump_usage_multiplier = 1.0 + spa.pump_usage_multiplier_isdefaulted = true end - schedules_file_includes_hot_tub_pump = (schedules_file.nil? ? false : schedules_file.includes_col_name(SchedulesFile::ColumnHotTubPump)) - if hot_tub.pump_weekday_fractions.nil? && !schedules_file_includes_hot_tub_pump - hot_tub.pump_weekday_fractions = Schedule.HotTubPumpWeekdayFractions - hot_tub.pump_weekday_fractions_isdefaulted = true + schedules_file_includes_permanent_spa_pump = (schedules_file.nil? ? false : schedules_file.includes_col_name(SchedulesFile::ColumnPermanentSpaPump)) + if spa.pump_weekday_fractions.nil? && !schedules_file_includes_permanent_spa_pump + spa.pump_weekday_fractions = Schedule.PermanentSpaPumpWeekdayFractions + spa.pump_weekday_fractions_isdefaulted = true end - if hot_tub.pump_weekend_fractions.nil? && !schedules_file_includes_hot_tub_pump - hot_tub.pump_weekend_fractions = Schedule.HotTubPumpWeekendFractions - hot_tub.pump_weekend_fractions_isdefaulted = true + if spa.pump_weekend_fractions.nil? && !schedules_file_includes_permanent_spa_pump + spa.pump_weekend_fractions = Schedule.PermanentSpaPumpWeekendFractions + spa.pump_weekend_fractions_isdefaulted = true end - if hot_tub.pump_monthly_multipliers.nil? && !schedules_file_includes_hot_tub_pump - hot_tub.pump_monthly_multipliers = Schedule.HotTubPumpMonthlyMultipliers - hot_tub.pump_monthly_multipliers_isdefaulted = true + if spa.pump_monthly_multipliers.nil? && !schedules_file_includes_permanent_spa_pump + spa.pump_monthly_multipliers = Schedule.PermanentSpaPumpMonthlyMultipliers + spa.pump_monthly_multipliers_isdefaulted = true end end - next unless hot_tub.heater_type != HPXML::TypeNone + next unless spa.heater_type != HPXML::TypeNone # Heater - if hot_tub.heater_load_value.nil? - default_heater_load_units, default_heater_load_value = MiscLoads.get_hot_tub_heater_default_values(cfa, nbeds, hot_tub.heater_type) - hot_tub.heater_load_units = default_heater_load_units - hot_tub.heater_load_value = default_heater_load_value - hot_tub.heater_load_value_isdefaulted = true + if spa.heater_load_value.nil? + default_heater_load_units, default_heater_load_value = MiscLoads.get_permanent_spa_heater_default_values(cfa, nbeds, spa.heater_type) + spa.heater_load_units = default_heater_load_units + spa.heater_load_value = default_heater_load_value + spa.heater_load_value_isdefaulted = true end - if hot_tub.heater_usage_multiplier.nil? - hot_tub.heater_usage_multiplier = 1.0 - hot_tub.heater_usage_multiplier_isdefaulted = true + if spa.heater_usage_multiplier.nil? + spa.heater_usage_multiplier = 1.0 + spa.heater_usage_multiplier_isdefaulted = true end - schedules_file_includes_hot_tub_heater = (schedules_file.nil? ? false : schedules_file.includes_col_name(SchedulesFile::ColumnHotTubHeater)) - if hot_tub.heater_weekday_fractions.nil? && !schedules_file_includes_hot_tub_heater - hot_tub.heater_weekday_fractions = Schedule.HotTubHeaterWeekdayFractions - hot_tub.heater_weekday_fractions_isdefaulted = true + schedules_file_includes_permanent_spa_heater = (schedules_file.nil? ? false : schedules_file.includes_col_name(SchedulesFile::ColumnPermanentSpaHeater)) + if spa.heater_weekday_fractions.nil? && !schedules_file_includes_permanent_spa_heater + spa.heater_weekday_fractions = Schedule.PermanentSpaHeaterWeekdayFractions + spa.heater_weekday_fractions_isdefaulted = true end - if hot_tub.heater_weekend_fractions.nil? && !schedules_file_includes_hot_tub_heater - hot_tub.heater_weekend_fractions = Schedule.HotTubHeaterWeekendFractions - hot_tub.heater_weekend_fractions_isdefaulted = true + if spa.heater_weekend_fractions.nil? && !schedules_file_includes_permanent_spa_heater + spa.heater_weekend_fractions = Schedule.PermanentSpaHeaterWeekendFractions + spa.heater_weekend_fractions_isdefaulted = true end - if hot_tub.heater_monthly_multipliers.nil? && !schedules_file_includes_hot_tub_heater - hot_tub.heater_monthly_multipliers = Schedule.HotTubHeaterMonthlyMultipliers - hot_tub.heater_monthly_multipliers_isdefaulted = true + if spa.heater_monthly_multipliers.nil? && !schedules_file_includes_permanent_spa_heater + spa.heater_monthly_multipliers = Schedule.PermanentSpaHeaterMonthlyMultipliers + spa.heater_monthly_multipliers_isdefaulted = true end end end - def self.apply_plug_loads(hpxml, cfa, schedules_file) - nbeds = hpxml.building_construction.additional_properties.adjusted_number_of_bedrooms - hpxml.plug_loads.each do |plug_load| + def self.apply_plug_loads(hpxml_bldg, cfa, schedules_file) + nbeds = hpxml_bldg.building_construction.additional_properties.adjusted_number_of_bedrooms + hpxml_bldg.plug_loads.each do |plug_load| if plug_load.plug_load_type == HPXML::PlugLoadTypeOther default_annual_kwh, default_sens_frac, default_lat_frac = MiscLoads.get_residual_mels_default_values(cfa) if plug_load.kwh_per_year.nil? @@ -2692,9 +2749,9 @@ def self.apply_plug_loads(hpxml, cfa, schedules_file) end end - def self.apply_fuel_loads(hpxml, cfa, schedules_file) - nbeds = hpxml.building_construction.additional_properties.adjusted_number_of_bedrooms - hpxml.fuel_loads.each do |fuel_load| + def self.apply_fuel_loads(hpxml_bldg, cfa, schedules_file) + nbeds = hpxml_bldg.building_construction.additional_properties.adjusted_number_of_bedrooms + hpxml_bldg.fuel_loads.each do |fuel_load| if fuel_load.fuel_load_type == HPXML::FuelLoadTypeGrill if fuel_load.therm_per_year.nil? fuel_load.therm_per_year = MiscLoads.get_gas_grill_default_values(cfa, nbeds) @@ -2781,13 +2838,13 @@ def self.apply_fuel_loads(hpxml, cfa, schedules_file) end end - def self.apply_hvac_sizing(hpxml, weather, cfa) - hvac_systems = HVAC.get_hpxml_hvac_systems(hpxml) + def self.apply_hvac_sizing(hpxml_bldg, weather, cfa) + hvac_systems = HVAC.get_hpxml_hvac_systems(hpxml_bldg) # Calculate building design loads and equipment capacities/airflows - bldg_design_loads, all_hvac_sizing_values = HVACSizing.calculate(weather, hpxml, cfa, hvac_systems) + bldg_design_loads, all_hvac_sizing_values = HVACSizing.calculate(weather, hpxml_bldg, cfa, hvac_systems) - hvacpl = hpxml.hvac_plant + hvacpl = hpxml_bldg.hvac_plant tol = 10 # Btuh # Assign heating design loads to HPXML object @@ -2854,17 +2911,28 @@ def self.apply_hvac_sizing(hpxml, weather, cfa) # Heating capacities if htg_sys.heating_capacity.nil? || ((htg_sys.heating_capacity - hvac_sizing_values.Heat_Capacity).abs >= 1.0) + scaling_factor = hvac_sizing_values.Heat_Capacity.round / htg_sys.heating_capacity unless htg_sys.heating_capacity.nil? # Heating capacity @ 17F if htg_sys.is_a? HPXML::HeatPump if (not htg_sys.heating_capacity.nil?) && (not htg_sys.heating_capacity_17F.nil?) # Fixed value entered; scale w/ heating_capacity in case allow_increased_fixed_capacities=true - htg_cap_17f = htg_sys.heating_capacity_17F * hvac_sizing_values.Heat_Capacity.round / htg_sys.heating_capacity + htg_cap_17f = htg_sys.heating_capacity_17F * scaling_factor if (htg_sys.heating_capacity_17F - htg_cap_17f).abs >= 1.0 htg_sys.heating_capacity_17F = htg_cap_17f.round htg_sys.heating_capacity_17F_isdefaulted = true end end end + if not htg_sys.heating_detailed_performance_data.empty? + # Fixed values entered; Scale w/ heating_capacity in case allow_increased_fixed_capacities=true + htg_sys.heating_detailed_performance_data.each do |dp| + htg_cap_dp = dp.capacity * scaling_factor + if (dp.capacity - htg_cap_dp).abs >= 1.0 + dp.capacity = htg_cap_dp.round + dp.capacity_isdefaulted = true + end + end + end htg_sys.heating_capacity = hvac_sizing_values.Heat_Capacity.round htg_sys.heating_capacity_isdefaulted = true end @@ -2897,10 +2965,21 @@ def self.apply_hvac_sizing(hpxml, weather, cfa) end # Cooling system - next unless not clg_sys.nil? + next if clg_sys.nil? # Cooling capacities if clg_sys.cooling_capacity.nil? || ((clg_sys.cooling_capacity - hvac_sizing_values.Cool_Capacity).abs >= 1.0) + if not clg_sys.cooling_detailed_performance_data.empty? + scaling_factor = hvac_sizing_values.Cool_Capacity.round / clg_sys.cooling_capacity unless clg_sys.cooling_capacity.nil? + # Fixed values entered; Scale w/ cooling_capacity in case allow_increased_fixed_capacities=true + clg_sys.cooling_detailed_performance_data.each do |dp| + clg_cap_dp = dp.capacity * scaling_factor + if (dp.capacity - clg_cap_dp).abs >= 1.0 + dp.capacity = clg_cap_dp.round + dp.capacity_isdefaulted = true + end + end + end clg_sys.cooling_capacity = hvac_sizing_values.Cool_Capacity.round clg_sys.cooling_capacity_isdefaulted = true end @@ -2967,9 +3046,9 @@ def self.get_orientation_from_azimuth(azimuth) end end - def self.get_nbeds_adjusted_for_operational_calculation(hpxml) - n_occs = hpxml.building_occupancy.number_of_residents - unit_type = hpxml.building_construction.residential_facility_type + def self.get_nbeds_adjusted_for_operational_calculation(hpxml_bldg) + n_occs = hpxml_bldg.building_occupancy.number_of_residents + unit_type = hpxml_bldg.building_construction.residential_facility_type if [HPXML::ResidentialTypeApartment, HPXML::ResidentialTypeSFA].include? unit_type return -0.68 + 1.09 * n_occs elsif [HPXML::ResidentialTypeSFD, HPXML::ResidentialTypeManufactured].include? unit_type @@ -2979,9 +3058,9 @@ def self.get_nbeds_adjusted_for_operational_calculation(hpxml) end end - def self.get_default_flue_or_chimney_in_conditioned_space(hpxml) + def self.get_default_flue_or_chimney_in_conditioned_space(hpxml_bldg) # Check for atmospheric heating system in conditioned space - hpxml.heating_systems.each do |heating_system| + hpxml_bldg.heating_systems.each do |heating_system| next unless HPXML::conditioned_locations_this_unit.include? heating_system.location if [HPXML::HVACTypeFurnace, @@ -2989,7 +3068,7 @@ def self.get_default_flue_or_chimney_in_conditioned_space(hpxml) HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFloorFurnace, HPXML::HVACTypeStove, - HPXML::HVACTypeFixedHeater].include? heating_system.heating_system_type + HPXML::HVACTypeSpaceHeater].include? heating_system.heating_system_type if not heating_system.heating_efficiency_afue.nil? next if heating_system.heating_efficiency_afue >= 0.89 elsif not heating_system.heating_efficiency_percent.nil? @@ -3005,7 +3084,7 @@ def self.get_default_flue_or_chimney_in_conditioned_space(hpxml) end # Check for atmospheric water heater in conditioned space - hpxml.water_heating_systems.each do |water_heating_system| + hpxml_bldg.water_heating_systems.each do |water_heating_system| next unless HPXML::conditioned_locations_this_unit.include? water_heating_system.location if not water_heating_system.energy_factor.nil? diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd index 3ba81d56..d39a0d58 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd @@ -1,4 +1,4 @@ - + @@ -101,7 +101,7 @@ - Use the id attribute if the element being referenced is available locally in the current xml transaction. Use the Sending/Receiving System Identifiers to identify + Use the idref attribute if the element being referenced is available locally in the current xml transaction. Use the Sending/Receiving System Identifiers to identify elements in other xml transactions. @@ -110,7 +110,7 @@ - + Id reference in the current document. Optional. If the element isn't available in the current document, don't use this. @@ -200,65 +200,6 @@ - - - Can be used to describe properties for each individual material in the construction - - - - - - Layers should be ordered from exterior to interior. Do not include air films. - - - - - - - [in] - - - - - - - - Fraction of the layer's area defined by this material. Values across all materials in a layer should sum to 1. - - - - - E.g., "wood", "concrete", "drywall", etc. - - - - - [Btu/hr-ft-F] - - - - - [lb/ft3] - - - - - [Btu/lb-F] - - - - - - - - - - - - - - - @@ -1048,7 +989,6 @@ - @@ -1089,7 +1029,6 @@ - @@ -1142,8 +1081,9 @@ + + - @@ -1211,7 +1151,6 @@ - @@ -1250,13 +1189,9 @@ + + - - - - Indicate whether the floor section is a mobile home belly or wing section. Omit if not applicable. For a mobile home, if the foundation type is a belly and wing, ExteriorAdjacentTo should be set to 'outside'. - - @@ -1311,7 +1246,6 @@ - @@ -1615,6 +1549,7 @@ Does the system serve multiple building/dwelling units? + The fraction of supply air that is from recirculation. @@ -2412,7 +2347,7 @@ - + @@ -2482,7 +2417,7 @@ - + @@ -2606,196 +2541,128 @@ - + - + + + + Indicates if the pool or spa is above or below ground. + + + + + [gal] Volume of pool or spa. + + + + + Months per year pool or spa is in operation. + + + + + [in] + + + + + [in] + + + + + Type of filter used, if any. + + + - - - - Indicates if the pool is above or below ground. - - - - - [gal] Volume of pool. - - - - - Months per year pool is in operation. - - - - - [in] - - - - - [in] - - - + - Type of filter used, if any. + Pool or spa pump: a mechanical assembly consisting of a “wet-end,” which houses the impeller and a motor. The pump increases the “head” and “flow” of the water (ENERGY STAR, 2013). - - - + + + + + + Manufacturer of pool or spa pump. + + + - Pool pump: a mechanical assembly consisting of a “wet-end,” which houses the impeller and a motor. The pump increases the “head” and - “flow” of the water (ENERGY STAR, 2013). + Serial number of pool or spa pump. + + + + Model number of pool or spa pump. + + + + + Independent organization has verified that product or appliance meets or exceeds the standard in question (ENERGY STAR, CEE, or other) + + + + + [gal/Wh] The measure of overall pool or spa filter pump efficiency in units of gallons per watt-hour, as determined using the applicable test method in Section 4.1.2. Energy factor is analogous to other energy factors such as miles per gallon. Energy factor (EF) is calculated as: EF (gal/Wh) = flow rate (gpm) * 60 ÷ power (watts) (ANSI/APSP/ICC-15 2011). + + + + + The speed setting at which the Energy Factor was measured (ENERGY STAR, 2013). + + + + + The motor power output designed by the manufacturer for a rated RPM, voltage and frequency. May be less than total horsepower where the service factor is greater than 1.0, or equal to total horsepower where the service factor = 1.0 (ANSI/APSP/ICC-15 2011). + + + + + The total horsepower, or product of the rated horsepower and the service factor of a motor used on a pool or spa pump (also known as SFHP) based on the maximum continuous duty motor power output rating allowable for the nameplate ambient rating and motor insulation class (e.g., total horsepower = rated horsepower * service factor) (ANSI/APSP/ICC-15 2011). + + + + + A multiplier applied to the rated horsepower of a pump motor to indicate the percent above nameplate horsepower at which the motor can operate continuously without exceeding its allowable insulation class temperature limit, provided that other design parameters, such rated voltage, frequency and ambient temperature, are within limits. A 1.5 hp pump with a 1.65 service factor produces 2.475 hp (total horsepower) at the maximum service factor point (ANSI/APSP/ICC-15 2011). + + + - - - - + - Manufacturer of pool pump. - - - - - Serial number of pool pump. - - - - - Model number of pool pump. - - - - - Independent organization has verified that product or appliance meets or exceeds the standard in question (ENERGY STAR, CEE, - or other) - - - - - [gal/Wh] The measure of overall pool filter pump efficiency in units of gallons per watt-hour, as determined using the - applicable test method in Section 4.1.2. Energy factor is analogous to other energy factors such as miles per gallon. Energy factor (EF) is - calculated as: EF (gal/Wh) = flow rate (gpm) * 60 ÷ power (watts) (ANSI/APSP/ICC-15 2011). - - - - - The speed setting at which the Energy Factor was measured (ENERGY STAR, 2013). + [W] - + - The motor power output designed by the manufacturer for a rated RPM, voltage and frequency. May be less than total horsepower - where the service factor is greater than 1.0, or equal to total horsepower where the service factor = 1.0 (ANSI/APSP/ICC-15 - 2011). + [Rev/min] The number of revolutions of the motor shaft in a given unit of time, expressed as revolutions per minute (RPM) (ENERGY STAR, 2013). - + - The total horsepower, or product of the rated horsepower and the service factor of a motor used on a pool pump (also known as - SFHP) based on the maximum continuous duty motor power output rating allowable for the nameplate ambient rating and motor insulation class - (e.g., total horsepower = rated horsepower * service factor) (ANSI/APSP/ICC-15 2011). + [gal/min] The volume of water flowing through the filtration system in a given time, usually measured in gallons per minute (gpm) (ANSI/APSP/ICC-15 2011). - + - A multiplier applied to the rated horsepower of a pump motor to indicate the percent above nameplate horsepower at which the - motor can operate continuously without exceeding its allowable insulation class temperature limit, provided that other design parameters, - such rated voltage, frequency and ambient temperature, are within limits. A 1.5 hp pump with a 1.65 service factor produces 2.475 hp (total - horsepower) at the maximum service factor point (ANSI/APSP/ICC-15 2011). + [hours] Number of hours per day a pool pump operates at a particular speed setting. - - - - - - [W] - - - - - [Rev/min] The number of revolutions of the motor shaft in a given unit of time, expressed as revolutions per - minute (RPM) (ENERGY STAR, 2013). - - - - - [gal/min] The volume of water flowing through the filtration system in a given time, usually measured in gallons - per minute (gpm) (ANSI/APSP/ICC-15 2011). - - - - - [hours] Number of hours per day a pool pump operates at a particular speed setting. - - - - - - - - - - - - - - - - - - - - - - - - - - - Type of pool cleaner used, if any. - - - - - Hours per day pool cleaner is used. - - - - - - - - - - - - - - - Type of heater used to heat pool, if any. - - - - - Hours per day pool heater is used. - - - + @@ -2805,211 +2672,51 @@ - - - - - - - + - - - Indicates if the hot tub is above or below ground. - - - - - [gal] Volume of hot tub. - - - + + - Months per year hot tub is in operation. + Type of pool or spa cleaner used, if any. - + - [in] + Hours per day pool or spa cleaner is used. - + + + + + + + + + + + - [in] + Type of heater used to heat pool or spa, if any. - + - Type of filter used, if any. + Hours per day pool or spa heater is used. - - - - - - Pool pump: a mechanical assembly consisting of a “wet-end,” which houses the impeller and a motor. The pump increases the “head” and - “flow” of the water (ENERGY STAR, 2013). - - - - - - - - - Manufacturer of hot tub pump. - - - - - Serial number of hot tub pump. - - - - - Model number of hot tub pump. - - - - - Independent organization has verified that product or appliance meets or exceeds the standard in question (ENERGY STAR, CEE, - or other) - - - - - [gal/Wh] The measure of overall hot tub filter pump efficiency in units of gallons per watt-hour, as determined using the - applicable test method in Section 4.1.2. Energy factor is analogous to other energy factors such as miles per gallon. Energy factor (EF) is - calculated as: EF (gal/Wh) = flow rate (gpm) * 60 ÷ power (watts) (ANSI/APSP/ICC-15 2011). - - - - - The speed setting at which the Energy Factor was measured (ENERGY STAR, 2013). - - - - - The motor power output designed by the manufacturer for a rated RPM, voltage and frequency. May be less than total horsepower - where the service factor is greater than 1.0, or equal to total horsepower where the service factor = 1.0 (ANSI/APSP/ICC-15 - 2011). - - - - - The total horsepower, or product of the rated horsepower and the service factor of a motor used on a hot tub pump (also known as - SFHP) based on the maximum continuous duty motor power output rating allowable for the nameplate ambient rating and motor insulation class - (e.g., total horsepower = rated horsepower * service factor) (ANSI/APSP/ICC-15 2011). - - - - - A multiplier applied to the rated horsepower of a pump motor to indicate the percent above nameplate horsepower at which the - motor can operate continuously without exceeding its allowable insulation class temperature limit, provided that other design parameters, - such rated voltage, frequency and ambient temperature, are within limits. A 1.5 hp pump with a 1.65 service factor produces 2.475 hp (total - horsepower) at the maximum service factor point (ANSI/APSP/ICC-15 2011). - - - - - - - - [W] - - - - - [Rev/min] The number of revolutions of the motor shaft in a given unit of time, expressed as revolutions per - minute (RPM) (ENERGY STAR, 2013). - - - - - [gal/min] The volume of water flowing through the filtration system in a given time, usually measured in gallons - per minute (gpm) (ANSI/APSP/ICC-15 2011). - - - - - [hours] Number of hours per day a pool pump operates at a particular speed setting. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Type of hot tub cleaner used, if any. - - - - - Hours per day hot tub cleaner is used. - - - - - - - - + - - - - - Type of heater used to heat hot tub, if any. - - - - - Hours per day hot tub heater is used. - - - - - - - - - - - + + - @@ -3020,6 +2727,22 @@ + + + + + + + + + + + + + + + + @@ -3029,7 +2752,7 @@ - + @@ -3066,7 +2789,7 @@ - + @@ -3123,6 +2846,11 @@ + + + Monitored throughout assessment, not just appliance testing + + @@ -3210,11 +2938,6 @@ - - - Monitored throughout assessment, not just appliance testing - - BPI Gold Sheet is one example that shows action levels based upon decision logic @@ -3856,15 +3579,7 @@ - - - - - - - - - + @@ -4023,7 +3738,6 @@ - @@ -4244,6 +3958,7 @@ [sq.ft.] + @@ -4566,6 +4281,11 @@ + + + The number of sections (width) of the manufactured home. CrossMod is a new style of manufactured home with more flexibility in configuration, higher roof pitch, covered porches, and garages or carports. They look more like a site-built single family detached home, but are manufactured in a factory and assembled on site. + + @@ -4696,7 +4416,80 @@ - + + + + + + A permanently constructed spa where piping and equipment are an integral part of the structure, and not intended to be moved. + + + + + + + + + + + + + + + A factory-built electric spa or hot tub, supplied with piping and equipment for temperature-controlled circulated water at the time of sale or sold separately for subsequent attachment. + + + + + + + + + Number of people + + + + + [gal] Rated volume of portable spa + + + + + [W] Standby Power as measured by ANSI/APSP/ICC-14 + + + + + [W] Maximum standby power allowed for this size spa under ANSI/APSP/ICC-14 + + + + + [kWh] Total annual power consumption in standby mode, based on test procedure in ANSI/APSP/ICC-14. Typically standby power * 8760. + + + + + + + + + + + + + Months per year portable spa is in operation. + + + + + + + + + + + @@ -5349,14 +5142,9 @@ - + - DEPRECATED. This will be removed in v4.0. Use FractionOperable element instead. - - - - - If the Window/Skylight element represents a single window/skylight, the value should be 0 or 1, otherwise the fraction of area that is operable. + Defined as the sum of the areas for operable storms divided by the sum of the areas for all storms. The fraction should not take into account how much a storm can be opened (e.g., 50% for a double hung storm). If the StormWindow element represents a single storm, the value should be 0 or 1. @@ -5401,14 +5189,9 @@ - - - DEPRECATED. This will be removed in v4.0. Use FractionOperable element instead. - - - The fraction of windows/skylights that are operable. If the Window/Skylight element represents a single window/skylight, the value should be 0 or 1. + Defined as the sum of the areas for operable windows divided by the sum of the areas for all windows. The fraction should not take into account how much a window can be opened (e.g., 50% for a double hung window). If the Window/Skylight element represents a single window/skylight, the value should be 0 or 1. @@ -5602,6 +5385,11 @@ + + + A partially underground basement that has a door directly on grade to the outside, typically built on a sloping lot. + + @@ -5674,13 +5462,12 @@ - The floor is supported on a pair of I-beams spanning across the length of the mobile home. The floor wing is the part of the floor outside the supports, and the floor belly is the part between the supports. The floor wing and belly sections are protected from outside elements including water, wind, and rodents using a wrap attached to the underside of floor joists, and may contain insulation. Use separate Floor elements to describe the floor insulation above the belly and wing sections respsectively. - + The floor is supported on a pair of I-beams spanning across the length of the manufactured home. The floor wing is the part of the floor outside the supports, and the floor belly is the part between the supports. The floor wing and belly sections are protected from outside elements including water, wind, and rodents using a wrap attached to the underside of floor joists, and may contain insulation. - + Use the 'none' choice for cases where the belly wrap is functionally missing even if pieces of the wrap are still present. @@ -6499,18 +6286,6 @@ - - - - - - - - - - - - @@ -7210,6 +6985,21 @@ + + + + + + + + + + + + + + + @@ -7611,6 +7401,9 @@ + + "other housing unit" refers to the living/conditioned space of the adjacent unit. + @@ -7631,6 +7424,7 @@ + @@ -7643,9 +7437,6 @@ - - DEPRECATION WARNING: Choices "other housing unit above" and "other housing unit below" will be deprecated in the future. - @@ -7846,7 +7637,7 @@ - + @@ -7854,9 +7645,9 @@ - + - + @@ -8012,7 +7803,6 @@ - @@ -8480,7 +8270,25 @@ + + + + + + + + + + + + + + + + + "other housing unit" refers to the living/conditioned space of the adjacent unit. + @@ -8496,7 +8304,7 @@ - + @@ -8667,6 +8475,9 @@ + + "other housing unit" refers to the living/conditioned space of the adjacent unit. + @@ -8682,6 +8493,7 @@ + @@ -9310,30 +9122,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - @@ -9347,28 +9135,28 @@ - + + + - + - + - + - - - + - + @@ -9465,6 +9253,9 @@ + + "other housing unit" refers to the living/conditioned space of the adjacent unit. + @@ -9530,6 +9321,9 @@ + + "other housing unit" refers to the living/conditioned space of the adjacent unit. + @@ -9830,19 +9624,6 @@ - - - A fraction that has to be between 0 (exclusive) and 1 (inclusive) - - - - - - - - - - @@ -9912,7 +9693,7 @@ - + @@ -9920,23 +9701,9 @@ - + - - - - - - - - - - - - - - - + @@ -10544,7 +10311,7 @@ - + @@ -10953,6 +10720,9 @@ + + "other housing unit" refers to the living/conditioned space of the adjacent unit. + @@ -11511,23 +11281,4 @@ - - - - - - - - - - - - - - - - - - - diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 003615af..1c262ef3 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1,7 +1,7 @@ HPXML Schematron Validator: EnergyPlus Simulation - + [Root] @@ -15,15 +15,14 @@ [SoftwareInfo] Expected 0 or 1 element(s) for xpath: extension/SimulationControl - Expected 0 or 1 element(s) for xpath: extension/HVACSizingControl - Expected 0 or 1 element(s) for xpath: extension/ShadingControl - Expected 0 or more element(s) for xpath: extension/SchedulesFilePath - Expected 0 or 1 element(s) for xpath: extension/NaturalVentilationAvailabilityDaysperWeek - Expected extension/NaturalVentilationAvailabilityDaysperWeek to be greater than or equal to 0 - Expected extension/NaturalVentilationAvailabilityDaysperWeek to be less than or equal to 7 Expected 0 or more element(s) for xpath: extension/EmissionsScenarios/EmissionsScenario Expected 0 or more element(s) for xpath: extension/UtilityBillScenarios/UtilityBillScenario Expected 0 or more element(s) for xpath: extension/UnavailablePeriods/UnavailablePeriod + + extension/SchedulesFilePath has been replaced by /HPXML/Building/BuildingDetails/BuildingSummary/extension/SchedulesFilePath + extension/HVACSizingControl has been replaced by /HPXML/Building/BuildingDetails/BuildingSummary/extension/HVACSizingControl + extension/ShadingControl has been replaced by /HPXML/Building/BuildingDetails/BuildingSummary/extension/ShadingControl + extension/NaturalVentilationAvailabilityDaysperWeek has been replaced by /HPXML/Building/BuildingDetails/BuildingSummary/extension/NaturalVentilationAvailabilityDaysperWeek @@ -38,38 +37,15 @@ Expected CalendarYear to be greater than or equal to 1600 Expected CalendarYear to be less than or equal to 9999 Expected 0 or 1 element(s) for xpath: TemperatureCapacitanceMultiplier + + DaylightSaving/Enabled has been replaced by /HPXML/Building/Site/TimeZone/DSTObserved + DaylightSaving/BeginMonth has been replaced by /HPXML/Building/Site/TimeZone/extension/DSTBeginMonth + DaylightSaving/BeginDayOfMonth has been replaced by /HPXML/Building/Site/TimeZone/extension/DSTBeginDayOfMonth + DaylightSaving/EndMonth has been replaced by /HPXML/Building/Site/TimeZone/extension/DSTEndMonth + DaylightSaving/EndDayOfMonth has been replaced by /HPXML/Building/Site/TimeZone/extension/DSTEndDayOfMonth - - [HVACSizingControl] - - Expected 0 or 1 element(s) for xpath: AllowIncreasedFixedCapacities - Expected 0 or 1 element(s) for xpath: HeatPumpSizingMethodology - Expected HeatPumpSizingMethodology to be 'ACCA' or 'HERS' or 'MaxLoad' - Expected 0 or 1 element(s) for xpath: ManualJInputs/WinterDesignTemperature - Expected 0 or 1 element(s) for xpath: ManualJInputs/SummerDesignTemperature - Expected 0 or 1 element(s) for xpath: ManualJInputs/HeatingSetpoint - Expected 0 or 1 element(s) for xpath: ManualJInputs/CoolingSetpoint - Expected 0 or 1 element(s) for xpath: ManualJInputs/HumiditySetpoint - Expected ManualJInputs/HumiditySetpoint to be greater than 0 - Expected ManualJInputs/HumiditySetpoint to be less than 1 - Expected 0 or 1 element(s) for xpath: ManualJInputs/InternalLoadsSensible - Expected 0 or 1 element(s) for xpath: ManualJInputs/InternalLoadsLatent - Expected 0 or 1 element(s) for xpath: ManualJInputs/NumberofOccupants - - - - - [ShadingControl] - - Expected 1 element(s) for xpath: SummerBeginMonth - Expected 1 element(s) for xpath: SummerBeginDayOfMonth - Expected 1 element(s) for xpath: SummerEndMonth - Expected 1 element(s) for xpath: SummerEndDayOfMonth - - - [EmissionsScenario] @@ -261,7 +237,7 @@ Expected 0 or 1 element(s) for xpath: Lighting Expected 0 or 1 element(s) for xpath: Lighting/CeilingFan Expected 0 or 1 element(s) for xpath: Pools/Pool - Expected 0 or 1 element(s) for xpath: HotTubs/HotTub + Expected 0 or 1 element(s) for xpath: Spas/PermanentSpa Expected 1 element(s) for xpath: MiscLoads/PlugLoad[PlugLoadType[text()="other"]] Expected 0 or 1 element(s) for xpath: MiscLoads/PlugLoad[PlugLoadType[text()="TV other"]] Expected 0 or 1 element(s) for xpath: MiscLoads/PlugLoad[PlugLoadType[text()="electric vehicle charging"]] @@ -289,17 +265,72 @@ No interior lighting specified, the model will not include interior lighting energy use. No exterior lighting specified, the model will not include exterior lighting energy use. No garage lighting specified, the model will not include garage lighting energy use. + Plug load type 'sauna' is not currently handled, the plug load will not be modeled. + Plug load type 'aquarium' is not currently handled, the plug load will not be modeled. + Plug load type 'water bed' is not currently handled, the plug load will not be modeled. + Plug load type 'space heater' is not currently handled, the plug load will not be modeled. + Plug load type 'computer' is not currently handled, the plug load will not be modeled. + Plug load type 'TV CRT' is not currently handled, the plug load will not be modeled. + Plug load type 'TV plasma' is not currently handled, the plug load will not be modeled. + Fuel load type 'other' is not currently handled, the fuel load will not be modeled. + Portable spa is not currently handled, the portable spa will not be modeled. - + + + [BuildingSummary] + + Expected 0 or more element(s) for xpath: extension/SchedulesFilePath + Expected 0 or 1 element(s) for xpath: extension/HVACSizingControl + Expected 0 or 1 element(s) for xpath: extension/ShadingControl + Expected 0 or 1 element(s) for xpath: extension/NaturalVentilationAvailabilityDaysperWeek + Expected extension/NaturalVentilationAvailabilityDaysperWeek to be greater than or equal to 0 + Expected extension/NaturalVentilationAvailabilityDaysperWeek to be less than or equal to 7 + + + + + [HVACSizingControl] + + Expected 0 or 1 element(s) for xpath: AllowIncreasedFixedCapacities + Expected 0 or 1 element(s) for xpath: HeatPumpSizingMethodology + Expected HeatPumpSizingMethodology to be 'ACCA' or 'HERS' or 'MaxLoad' + Expected 0 or 1 element(s) for xpath: ManualJInputs/WinterDesignTemperature + Expected 0 or 1 element(s) for xpath: ManualJInputs/SummerDesignTemperature + Expected 0 or 1 element(s) for xpath: ManualJInputs/HeatingSetpoint + Expected 0 or 1 element(s) for xpath: ManualJInputs/CoolingSetpoint + Expected 0 or 1 element(s) for xpath: ManualJInputs/HumiditySetpoint + Expected ManualJInputs/HumiditySetpoint to be greater than 0 + Expected ManualJInputs/HumiditySetpoint to be less than 1 + Expected 0 or 1 element(s) for xpath: ManualJInputs/InternalLoadsSensible + Expected 0 or 1 element(s) for xpath: ManualJInputs/InternalLoadsLatent + Expected 0 or 1 element(s) for xpath: ManualJInputs/NumberofOccupants + + UseMaxLoadForHeatPumps has been replaced by HeatPumpSizingMethodology + + + + + [ShadingControl] + + Expected 1 element(s) for xpath: SummerBeginMonth + Expected 1 element(s) for xpath: SummerBeginDayOfMonth + Expected 1 element(s) for xpath: SummerEndMonth + Expected 1 element(s) for xpath: SummerEndDayOfMonth + + + [Site] Expected 0 or 1 element(s) for xpath: SiteType Expected 0 or 1 element(s) for xpath: ShieldingofHome + Expected ShieldingofHome to be 'well-shielded' or 'normal' or 'exposed' Expected 0 or 1 element(s) for xpath: extension/GroundConductivity Expected extension/GroundConductivity to be greater than 0 Expected 0 or 1 element(s) for xpath: extension/Neighbors + + extension/ShelterCoefficient has been replaced by ShieldingofHome @@ -334,19 +365,22 @@ Expected 1 element(s) for xpath: ResidentialFacilityType Expected ResidentialFacilityType to be 'single-family detached' or 'single-family attached' or 'apartment unit' or 'manufactured home' + Expected 0 or 1 element(s) for xpath: NumberofUnits Expected 1 element(s) for xpath: NumberofConditionedFloors Expected 1 element(s) for xpath: NumberofConditionedFloorsAboveGrade Expected NumberofConditionedFloors to be greater than or equal to NumberofConditionedFloorsAboveGrade Expected 1 element(s) for xpath: NumberofBedrooms Expected 0 or 1 element(s) for xpath: NumberofBathrooms Expected 1 element(s) for xpath: ConditionedFloorArea - Expected ConditionedFloorArea to be greater than or equal to the sum of conditioned slab/floor areas. + Expected ConditionedFloorArea to be greater than or equal to the sum of conditioned slab/floor areas. Expected 0 or more element(s) for xpath: ConditionedBuildingVolume | AverageCeilingHeight - + extension/HasFlueOrChimney has been replaced by /HPXML/Building/BuildingDetails/Enclosure/AirInfiltration/extension/HasFlueOrChimneyInConditionedSpace + + NumberofUnits is greater than 1, indicating that the HPXML Building represents multiple dwelling units; simulation outputs will reflect this unit multiplier. - + [BuildingType=SFAorMF] @@ -401,7 +435,7 @@ [Roof] Expected 1 element(s) for xpath: InteriorAdjacentTo - Expected InteriorAdjacentTo to be 'attic - vented' or 'attic - unvented' or 'living space' or 'garage' + Expected InteriorAdjacentTo to be 'attic - vented' or 'attic - unvented' or 'conditioned space' or 'garage' Expected 1 element(s) for xpath: Area Expected 0 or more element(s) for xpath: Azimuth | Orientation Expected 0 or 1 element(s) for xpath: RoofType @@ -437,7 +471,7 @@ Expected 1 element(s) for xpath: ExteriorAdjacentTo Expected ExteriorAdjacentTo to be 'outside' or 'attic - vented' or 'attic - unvented' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' Expected 1 element(s) for xpath: InteriorAdjacentTo - Expected InteriorAdjacentTo to be 'living space' or 'attic - vented' or 'attic - unvented' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' + Expected InteriorAdjacentTo to be 'conditioned space' or 'attic - vented' or 'attic - unvented' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' Expected 1 element(s) for xpath: Area Expected 0 or more element(s) for xpath: Azimuth | Orientation Expected 0 or 1 element(s) for xpath: Siding @@ -454,7 +488,7 @@ Expected 1 element(s) for xpath: ExteriorAdjacentTo Expected ExteriorAdjacentTo to be 'outside' or 'attic - vented' or 'attic - unvented' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' Expected 1 element(s) for xpath: InteriorAdjacentTo - Expected InteriorAdjacentTo to be 'living space' or 'attic - vented' or 'attic - unvented' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' + Expected InteriorAdjacentTo to be 'conditioned space' or 'attic - vented' or 'attic - unvented' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' Expected 1 element(s) for xpath: WallType[WoodStud | DoubleWoodStud | ConcreteMasonryUnit | StructuralInsulatedPanel | InsulatedConcreteForms | SteelFrame | SolidConcrete | StructuralBrick | StrawBale | Stone | LogWall | Adobe] Expected 1 element(s) for xpath: Area Expected 0 or more element(s) for xpath: Azimuth | Orientation @@ -512,6 +546,9 @@ Expected 0 or 1 element(s) for xpath: DistanceToBottomOfInsulation Expected DistanceToBottomOfInsulation to be greater than or equal to DistanceToTopOfInsulation Expected DistanceToBottomOfInsulation to be less than or equal to ../../Height + + extension/DistanceToTopOfInsulation has been replaced by DistanceToTopOfInsulation + extension/DistanceToBottomOfInsulation has been replaced by DistanceToBottomOfInsulation @@ -519,15 +556,17 @@ [Floor] Expected 1 element(s) for xpath: ExteriorAdjacentTo - Expected ExteriorAdjacentTo to be 'outside' or 'attic - vented' or 'attic - unvented' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected ExteriorAdjacentTo to be 'outside' or 'attic - vented' or 'attic - unvented' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' Expected 1 element(s) for xpath: InteriorAdjacentTo - Expected InteriorAdjacentTo to be 'living space' or 'attic - vented' or 'attic - unvented' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' + Expected InteriorAdjacentTo to be 'conditioned space' or 'attic - vented' or 'attic - unvented' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' Expected 1 element(s) for xpath: FloorType[WoodFrame | StructuralInsulatedPanel | SteelFrame | SolidConcrete] Expected 1 element(s) for xpath: Area Expected 0 or 1 element(s) for xpath: InteriorFinish/Type Expected InteriorFinish/Type to be 'gypsum board' or 'gypsum composite board' or 'plaster' or 'wood' or 'none' Expected 0 or 1 element(s) for xpath: InteriorFinish/Thickness Expected 1 element(s) for xpath: Insulation/AssemblyEffectiveRValue + + extension/OtherSpaceAboveOrBelow has been replaced by FloorOrCeiling @@ -538,15 +577,22 @@ + + [FloorType=AdjacentToManufacturedHomeBelly] + + Expected 0 or 1 element(s) for xpath: ../../h:Foundations/h:Foundation/h:FoundationType/h:BellyAndWing/h:SkirtPresent + + + [Slab] Expected 1 element(s) for xpath: InteriorAdjacentTo - Expected InteriorAdjacentTo to be 'living space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' + Expected InteriorAdjacentTo to be 'conditioned space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'garage' Expected 1 element(s) for xpath: Area Expected 0 or 1 element(s) for xpath: Thickness Expected 1 element(s) for xpath: ExposedPerimeter - Expected 1 or more element(s) for xpath: DepthBelowGrade | InteriorAdjacentTo[text()!="living space" and text()!="garage"] + Expected 0 or 1 element(s) for xpath: DepthBelowGrade Expected 1 element(s) for xpath: PerimeterInsulation/Layer/NominalRValue Expected 1 element(s) for xpath: PerimeterInsulation/Layer/InsulationDepth Expected 1 element(s) for xpath: UnderSlabInsulation/Layer/NominalRValue @@ -704,8 +750,8 @@ Expected 1 element(s) for xpath: ../../HVACControl Expected 0 or 1 element(s) for xpath: UnitLocation - Expected UnitLocation to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' - Expected 1 element(s) for xpath: HeatingSystemType[ElectricResistance | Furnace | WallFurnace | FloorFurnace | Boiler | Stove | PortableHeater | FixedHeater | Fireplace] + Expected UnitLocation to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' + Expected 1 element(s) for xpath: HeatingSystemType[ElectricResistance | Furnace | WallFurnace | FloorFurnace | Boiler | Stove | SpaceHeater | Fireplace] Expected 1 element(s) for xpath: FractionHeatLoadServed @@ -856,25 +902,8 @@ - [HeatingSystemType=PortableHeater] - - Expected 0 element(s) for xpath: DistributionSystem - Expected 1 element(s) for xpath: HeatingSystemFuel - Expected HeatingSystemFuel to be 'electricity' or 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'wood' or 'wood pellets' - Expected 0 or 1 element(s) for xpath: HeatingCapacity - Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="Percent"]/Value - Expected AnnualHeatingEfficiency[Units="Percent"]/Value to be less than or equal to 1 - Expected 0 or 1 element(s) for xpath: extension/FanPowerWatts - Expected extension/FanPowerWatts to be greater than or equal to 0 - - Percent efficiency should typically be greater than or equal to 0.5. - Heating capacity should typically be greater than or equal to 1000 Btu/hr. - - - - - [HeatingSystemType=FixedHeater] - + [HeatingSystemType=SpaceHeater] + Expected 0 element(s) for xpath: DistributionSystem Expected 1 element(s) for xpath: HeatingSystemFuel Expected HeatingSystemFuel to be 'electricity' or 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'wood' or 'wood pellets' @@ -918,7 +947,7 @@ Expected 1 element(s) for xpath: ../../HVACControl Expected 0 or 1 element(s) for xpath: UnitLocation - Expected UnitLocation to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' + Expected UnitLocation to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' Expected 1 element(s) for xpath: CoolingSystemType Expected CoolingSystemType to be 'central air conditioner' or 'room air conditioner' or 'evaporative cooler' or 'mini-split' or 'chiller' or 'cooling tower' or 'packaged terminal air conditioner' Expected 1 element(s) for xpath: CoolingSystemFuel @@ -937,6 +966,7 @@ Expected CompressorType to be 'single stage' or 'two stage' or 'variable speed' Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value Expected 0 or 1 element(s) for xpath: SensibleHeatFraction + Expected 0 or 1 element(s) for xpath: CoolingDetailedPerformanceData Expected 0 element(s) for xpath: IntegratedHeatingSystemFuel Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM Expected extension/FanPowerWattsPerCFM to be greater than or equal to 0 @@ -1004,8 +1034,11 @@ Expected 0 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/AirDistribution/AirDistributionType[text()="regular velocity"] | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] Expected 0 or 1 element(s) for xpath: DistributionSystem Expected 0 or 1 element(s) for xpath: CoolingCapacity + Expected 0 or 1 element(s) for xpath: CompressorType + Expected CompressorType to be 'variable speed' Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value Expected 0 or 1 element(s) for xpath: SensibleHeatFraction + Expected 0 or 1 element(s) for xpath: CoolingDetailedPerformanceData Expected 0 element(s) for xpath: IntegratedHeatingSystemFuel Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM Expected extension/FanPowerWattsPerCFM to be greater than or equal to 0 @@ -1081,7 +1114,7 @@ Expected 1 element(s) for xpath: ../../HVACControl Expected 0 or 1 element(s) for xpath: UnitLocation - Expected UnitLocation to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' + Expected UnitLocation to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'roof deck' or 'unconditioned space' or 'manufactured home belly' Expected 1 element(s) for xpath: HeatPumpType Expected HeatPumpType to be 'air-to-air' or 'mini-split' or 'ground-to-air' or 'water-loop-to-air' or 'packaged terminal heat pump' or 'room air conditioner with reverse cycle' Expected 1 element(s) for xpath: HeatPumpFuel @@ -1108,6 +1141,7 @@ Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="HSPF" or Units="HSPF2"]/Value + Expected 0 or 2 element(s) for xpath: HeatingDetailedPerformanceData | CoolingDetailedPerformanceData Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM Expected extension/FanPowerWattsPerCFM to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/AirflowDefectRatio @@ -1137,12 +1171,15 @@ Expected 0 or 1 element(s) for xpath: extension/HeatingCapacityRetention | HeatingCapacity17F Expected HeatingCapacity17F to be less than or equal to HeatingCapacity Expected 0 or 1 element(s) for xpath: CoolingCapacity + Expected 0 or 1 element(s) for xpath: CompressorType + Expected CompressorType to be 'variable speed' Expected 0 or 1 element(s) for xpath: CompressorLockoutTemperature Expected 0 or 1 element(s) for xpath: CoolingSensibleHeatFraction Expected 1 element(s) for xpath: FractionHeatLoadServed Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="HSPF" or Units="HSPF2"]/Value + Expected 0 or 2 element(s) for xpath: HeatingDetailedPerformanceData | CoolingDetailedPerformanceData Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM Expected extension/FanPowerWattsPerCFM to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/AirflowDefectRatio @@ -1278,12 +1315,44 @@ Expected 0 or 1 element(s) for xpath: BackupHeatingSwitchoverTemperature | CompressorLockoutTemperature Expected 0 or 1 element(s) for xpath: BackupHeatingSwitchoverTemperature | BackupHeatingLockoutTemperature - Expected CompressorLockoutTemperature to be less than BackupHeatingLockoutTemperature + Expected CompressorLockoutTemperature to be less than or equal to BackupHeatingLockoutTemperature BackupHeatingSwitchoverTemperature is below 30 deg-F; this may result in significant unmet hours if the heat pump does not have sufficient capacity. BackupHeatingLockoutTemperature is below 30 deg-F; this may result in significant unmet hours if the heat pump does not have sufficient capacity. + + + [HeatingDetailedPerformanceData] + + Expected 1 element(s) for xpath: ../HeatingCapacity + Expected 1 element(s) for xpath: ../CompressorType[text()="variable speed"] + Expected 1 element(s) for xpath: PerformanceDataPoint[OutdoorTemperature=47 and CapacityDescription="minimum"] + Expected 1 element(s) for xpath: PerformanceDataPoint[OutdoorTemperature=47 and CapacityDescription="maximum"] + Expected 1 or more element(s) for xpath: PerformanceDataPoint[OutdoorTemperature!=47 and CapacityDescription="minimum"] + Expected 1 or more element(s) for xpath: PerformanceDataPoint[OutdoorTemperature!=47 and CapacityDescription="maximum"] + + + + + [CoolingDetailedPerformanceData] + + Expected 1 element(s) for xpath: ../CoolingCapacity + Expected 1 element(s) for xpath: ../CompressorType[text()="variable speed"] + Expected 1 element(s) for xpath: PerformanceDataPoint[OutdoorTemperature=95 and CapacityDescription="minimum"] + Expected 1 element(s) for xpath: PerformanceDataPoint[OutdoorTemperature=95 and CapacityDescription="maximum"] + Expected 1 or more element(s) for xpath: PerformanceDataPoint[OutdoorTemperature!=95 and CapacityDescription="minimum"] + Expected 1 or more element(s) for xpath: PerformanceDataPoint[OutdoorTemperature!=95 and CapacityDescription="maximum"] + + + + + [PerformanceDataPoint] + + Expected 1 element(s) for xpath: Capacity + Expected 1 element(s) for xpath: Efficiency[Units="COP"]/Value + + [AirflowDefectRatio] @@ -1377,10 +1446,6 @@ Expected sum(Ducts/FractionDuctArea) for DuctType="supply" to be 1 Expected sum(Ducts/FractionDuctArea) for DuctType="return" to be 1 - - Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment. - Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment. - Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment. @@ -1445,7 +1510,7 @@ Expected 0 or 1 element(s) for xpath: DuctBuriedInsulationLevel Expected DuctBuriedInsulationLevel to be 'not buried' or 'partially buried' or 'fully buried' or 'deeply buried' Expected 0 or 1 element(s) for xpath: DuctLocation - Expected DuctLocation to be 'living space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'attic - vented' or 'attic - unvented' or 'garage' or 'exterior wall' or 'under slab' or 'roof deck' or 'outside' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected DuctLocation to be 'conditioned space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'attic - vented' or 'attic - unvented' or 'garage' or 'exterior wall' or 'under slab' or 'roof deck' or 'outside' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'manufactured home belly' Expected 0 or 1 element(s) for xpath: extension/DuctSurfaceAreaMultiplier Expected extension/DuctSurfaceAreaMultiplier to be greater than or equal to 0 @@ -1621,7 +1686,7 @@ Expected 1 element(s) for xpath: WaterHeaterType Expected WaterHeaterType to be 'storage water heater' or 'instantaneous water heater' or 'heat pump water heater' or 'space-heating boiler with storage tank' or 'space-heating boiler with tankless coil' Expected 0 or 1 element(s) for xpath: Location - Expected Location to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' Expected 1 element(s) for xpath: FractionDHWLoadServed Expected 0 or 1 element(s) for xpath: HotWaterTemperature Expected 0 or 1 element(s) for xpath: UsesDesuperheater @@ -1690,6 +1755,8 @@ Expected UniformEnergyFactor to be greater than 1 Expected EnergyFactor to be greater than 1 Expected 0 or 1 element(s) for xpath: WaterHeaterInsulation/Jacket/JacketRValue + + extension/OperatingMode has been replaced by HPWHOperatingMode @@ -1773,7 +1840,8 @@ Expected 1 element(s) for xpath: ../HotWaterDistribution Expected 1 element(s) for xpath: WaterFixtureType Expected WaterFixtureType to be 'shower head' or 'faucet' - Expected 1 element(s) for xpath: LowFlow + Expected 0 or 1 element(s) for xpath: Count + Expected 1 or more element(s) for xpath: LowFlow | FlowRate Expected 0 or 1 element(s) for xpath: ../extension/WaterFixturesUsageMultiplier Expected 0 or 1 element(s) for xpath: ../extension/WaterFixturesWeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: ../extension/WaterFixturesWeekendScheduleFractions @@ -1855,7 +1923,7 @@ Expected 1 element(s) for xpath: BatteryType[text()="Li-ion"] Expected 0 or 1 element(s) for xpath: Location - Expected Location to be 'living space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'attic - vented' or 'attic - unvented' or 'garage' or 'outside' + Expected Location to be 'conditioned space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'attic - vented' or 'attic - unvented' or 'garage' or 'outside' Expected 0 or more element(s) for xpath: NominalCapacity[Units="kWh" or Units="Ah"]/Value Expected 0 or more element(s) for xpath: UsableCapacity[Units="kWh" or Units="Ah"]/Value Expected UsableCapacity to be less than NominalCapacity @@ -1899,7 +1967,7 @@ Expected 1 element(s) for xpath: ../../Systems/WaterHeating/HotWaterDistribution Expected 0 or 1 element(s) for xpath: IsSharedAppliance Expected 0 or 1 element(s) for xpath: Location - Expected Location to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' Expected 0 or 1 element(s) for xpath: IntegratedModifiedEnergyFactor | ModifiedEnergyFactor Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions @@ -1934,7 +2002,7 @@ Expected 1 element(s) for xpath: ../ClothesWasher Expected 0 or 1 element(s) for xpath: IsSharedAppliance Expected 0 or 1 element(s) for xpath: Location - Expected Location to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' Expected 1 element(s) for xpath: FuelType Expected FuelType to be 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'anthracite coal' or 'electricity' or 'wood' or 'wood pellets' Expected 0 or 1 element(s) for xpath: CombinedEnergyFactor | EnergyFactor @@ -1943,6 +2011,9 @@ Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions Expected 0 or 1 element(s) for xpath: extension/WeekendScheduleFractions Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers + + extension/IsVented has been replaced by Vented + extension/VentedFlowRate has been replaced by VentedFlowRate @@ -1965,7 +2036,7 @@ Expected 0 or 1 element(s) for xpath: IsSharedAppliance Expected 0 or 1 element(s) for xpath: Location - Expected Location to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' Expected 0 or 1 element(s) for xpath: RatedAnnualkWh | EnergyFactor Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions @@ -1997,7 +2068,7 @@ [Refrigerator] Expected 0 or 1 element(s) for xpath: Location - Expected Location to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' Expected 0 or 1 element(s) for xpath: RatedAnnualkWh Expected 0 or 1 element(s) for xpath: PrimaryIndicator Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier @@ -2011,7 +2082,7 @@ [Freezer] Expected 0 or 1 element(s) for xpath: Location - Expected Location to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' Expected 0 or 1 element(s) for xpath: RatedAnnualkWh Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier Expected 0 or 1 element(s) for xpath: extension/WeekdayScheduleFractions @@ -2026,7 +2097,7 @@ Expected 1 element(s) for xpath: Type Expected Type to be 'portable' or 'whole-home' Expected 1 element(s) for xpath: Location - Expected Location to be 'living space' + Expected Location to be 'conditioned space' Expected 1 element(s) for xpath: Capacity Expected 1 element(s) for xpath: IntegratedEnergyFactor | EnergyFactor Expected 1 element(s) for xpath: DehumidistatSetpoint @@ -2039,7 +2110,7 @@ Expected 1 element(s) for xpath: ../Oven Expected 0 or 1 element(s) for xpath: Location - Expected Location to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' + Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' Expected 1 element(s) for xpath: FuelType Expected FuelType to be 'natural gas' or 'fuel oil' or 'fuel oil 1' or 'fuel oil 2' or 'fuel oil 4' or 'fuel oil 5/6' or 'diesel' or 'propane' or 'kerosene' or 'coal' or 'coke' or 'bituminous coal' or 'anthracite coal' or 'electricity' or 'wood' or 'wood pellets' Expected 0 or 1 element(s) for xpath: IsInduction @@ -2137,14 +2208,14 @@ [Pool] Expected 1 element(s) for xpath: Type - Expected 0 or 1 element(s) for xpath: PoolPumps/PoolPump + Expected 0 or 1 element(s) for xpath: Pumps/Pump Expected 0 or 1 element(s) for xpath: Heater [PoolPump] - + Expected 1 element(s) for xpath: Type Expected 0 or 1 element(s) for xpath: Load[Units="kWh/year"]/Value Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier @@ -2168,17 +2239,17 @@ - [HotTub] - + [PermanentSpa] + Expected 1 element(s) for xpath: Type - Expected 0 or 1 element(s) for xpath: HotTubPumps/HotTubPump - Expected 0 or 1 element(s) for xpath: Heater + Expected 0 or 1 element(s) for xpath: Pumps/Pump + Expected 0 or 1 element(s) for xpath: Heater - [HotTubPump] - + [PermanentSpaPump] + Expected 1 element(s) for xpath: Type Expected 0 or 1 element(s) for xpath: Load[Units="kWh/year"]/Value Expected 0 or 1 element(s) for xpath: extension/UsageMultiplier @@ -2187,10 +2258,10 @@ Expected 0 or 1 element(s) for xpath: extension/MonthlyScheduleMultipliers - + - [HotTubHeater] - + [PermanentSpaHeater] + Expected 1 element(s) for xpath: Type Expected Type to be 'gas fired' or 'electric resistance' or 'heat pump' Expected 0 or 1 element(s) for xpath: Load[Units="kWh/year" or Units="therm/year"]/Value @@ -2239,17 +2310,17 @@ [AdjacentSurfaces=ConditionedSpace] - - There must be at least one ceiling/roof adjacent to conditioned space. - There must be at least one exterior wall adjacent to conditioned space. - There must be at least one floor/slab adjacent to conditioned space. + + There must be at least one ceiling or roof adjacent to conditioned space. + There must be at least one exterior wall adjacent to conditioned space. + There must be at least one floor or slab adjacent to conditioned space. [AdjacentSurfaces=ConditionedBasement] - There must be at least one exterior foundation wall adjacent to "basement - conditioned". + There must be at least one exterior wall or foundation wall adjacent to "basement - conditioned". There must be at least one slab adjacent to "basement - conditioned". @@ -2257,8 +2328,8 @@ [AdjacentSurfaces=UnconditionedBasement] - There must be at least one ceiling adjacent to "basement - unconditioned". - There must be at least one exterior foundation wall adjacent to "basement - unconditioned". + There must be at least one ceiling adjacent to "basement - unconditioned". + There must be at least one exterior wall or foundation wall adjacent to "basement - unconditioned". There must be at least one slab adjacent to "basement - unconditioned". @@ -2266,8 +2337,8 @@ [AdjacentSurfaces=VentedCrawlspace] - There must be at least one ceiling adjacent to "crawlspace - vented". - There must be at least one exterior foundation wall adjacent to "crawlspace - vented". + There must be at least one ceiling adjacent to "crawlspace - vented". + There must be at least one exterior wall or foundation wall adjacent to "crawlspace - vented". There must be at least one slab adjacent to "crawlspace - vented". @@ -2275,8 +2346,8 @@ [AdjacentSurfaces=UnventedCrawlspace] - There must be at least one ceiling adjacent to "crawlspace - unvented". - There must be at least one exterior foundation wall adjacent to "crawlspace - unvented". + There must be at least one ceiling adjacent to "crawlspace - unvented". + There must be at least one exterior wall or foundation wall adjacent to "crawlspace - unvented". There must be at least one slab adjacent to "crawlspace - unvented". @@ -2284,7 +2355,7 @@ [AdjacentSurfaces=ConditionedCrawlspace] - There must be at least one exterior foundation wall adjacent to "crawlspace - conditioned". + There must be at least one exterior wall or foundation wall adjacent to "crawlspace - conditioned". There must be at least one slab adjacent to "crawlspace - conditioned". @@ -2292,8 +2363,8 @@ [AdjacentSurfaces=Garage] - There must be at least one roof/ceiling adjacent to "garage". - There must be at least one exterior wall/foundation wall adjacent to "garage". + There must be at least one roof or ceiling adjacent to "garage". + There must be at least one exterior wall or foundation wall adjacent to "garage". There must be at least one slab adjacent to "garage". @@ -2371,6 +2442,13 @@ A location is specified as "attic - unvented" but no surfaces were found adjacent to this space type. + + + [LocationCheck=ManufacturedHomeBelly] + + A location is specified as "manufactured home belly" but no surfaces were found adjacent to the "manufactured home underbelly" space type. + + @@ -2402,4 +2480,11 @@ + + [BuildingTypeCheck=ManufacturedHomeBelly] + + There are references to "manufactured home belly" or "manufactured home underbelly" but ResidentialFacilityType is not "manufactured home". + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb index f23f2055..3a20cbc3 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb @@ -1,8 +1,20 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class HVAC + AirSourceHeatRatedODB = 47.0 # degF, Rated outdoor drybulb for air-source systems, heating + AirSourceHeatRatedIDB = 70.0 # degF, Rated indoor drybulb for air-source systems, heating + AirSourceCoolRatedODB = 95.0 # degF, Rated outdoor drybulb for air-source systems, cooling + AirSourceCoolRatedIWB = 67.0 # degF, Rated indoor wetbulb for air-source systems, cooling + CrankcaseHeaterTemp = 50.0 # degF + def self.apply_air_source_hvac_systems(model, cooling_system, heating_system, sequential_cool_load_fracs, sequential_heat_load_fracs, + weather_max_drybulb, weather_min_drybulb, control_zone, hvac_unavailable_periods) is_heatpump = false if not cooling_system.nil? @@ -45,19 +57,43 @@ def self.apply_air_source_hvac_systems(model, cooling_system, heating_system, fail "Unexpected cooling system type: #{cooling_system.cooling_system_type}." end end - clg_ap = cooling_system.additional_properties - num_speeds = clg_ap.num_speeds elsif (heating_system.is_a? HPXML::HeatingSystem) && (heating_system.heating_system_type == HPXML::HVACTypeFurnace) obj_name = Constants.ObjectNameFurnace - num_speeds = 1 else fail "Unexpected heating system type: #{heating_system.heating_system_type}, expect central air source hvac systems." end + # Calculate max rated cfm + max_rated_fan_cfm = -9999 + if not cooling_system.nil? + clg_ap = cooling_system.additional_properties + if not cooling_system.cooling_detailed_performance_data.empty? + cooling_system.cooling_detailed_performance_data.select { |dp| dp.capacity_description == HPXML::CapacityDescriptionMaximum }.each do |dp| + rated_fan_cfm = UnitConversions.convert(dp.capacity, 'Btu/hr', 'ton') * clg_ap.cool_rated_cfm_per_ton[-1] + max_rated_fan_cfm = rated_fan_cfm if rated_fan_cfm > max_rated_fan_cfm + end + else + rated_fan_cfm = UnitConversions.convert(cooling_system.cooling_capacity * clg_ap.cool_capacity_ratios[-1], 'Btu/hr', 'ton') * clg_ap.cool_rated_cfm_per_ton[-1] + max_rated_fan_cfm = rated_fan_cfm if rated_fan_cfm > max_rated_fan_cfm + end + end + if not heating_system.nil? + htg_ap = heating_system.additional_properties + if not heating_system.heating_detailed_performance_data.empty? + heating_system.heating_detailed_performance_data.select { |dp| dp.capacity_description == HPXML::CapacityDescriptionMaximum }.each do |dp| + rated_fan_cfm = UnitConversions.convert(dp.capacity, 'Btu/hr', 'ton') * htg_ap.heat_rated_cfm_per_ton[-1] + max_rated_fan_cfm = rated_fan_cfm if rated_fan_cfm > max_rated_fan_cfm + end + elsif is_heatpump + rated_fan_cfm = UnitConversions.convert(heating_system.heating_capacity * htg_ap.heat_capacity_ratios[-1], 'Btu/hr', 'ton') * htg_ap.heat_rated_cfm_per_ton[-1] + max_rated_fan_cfm = rated_fan_cfm if rated_fan_cfm > max_rated_fan_cfm + end + end + fan_cfms = [] if not cooling_system.nil? # Cooling Coil - clg_coil = create_dx_cooling_coil(model, obj_name, cooling_system) + clg_coil = create_dx_cooling_coil(model, obj_name, cooling_system, max_rated_fan_cfm, weather_max_drybulb) clg_cfm = cooling_system.cooling_airflow_cfm clg_ap.cool_fan_speed_ratios.each do |r| @@ -70,8 +106,8 @@ def self.apply_air_source_hvac_systems(model, cooling_system, heating_system, else htg_coil = OpenStudio::Model::CoilHeatingGas.new(model) htg_coil.setGasBurnerEfficiency(cooling_system.integrated_heating_system_efficiency_percent) - htg_coil.setParasiticElectricLoad(0) - htg_coil.setParasiticGasLoad(0) + htg_coil.setOnCycleParasiticElectricLoad(0) + htg_coil.setOffCycleParasiticGasLoad(0) htg_coil.setFuelType(EPlus.fuel_type(cooling_system.integrated_heating_system_fuel)) end htg_coil.setNominalCapacity(UnitConversions.convert(cooling_system.integrated_heating_system_capacity, 'Btu/hr', 'W')) @@ -83,13 +119,12 @@ def self.apply_air_source_hvac_systems(model, cooling_system, heating_system, end if not heating_system.nil? - htg_ap = heating_system.additional_properties htg_cfm = heating_system.heating_airflow_cfm if is_heatpump supp_max_temp = htg_ap.supp_max_temp # Heating Coil - htg_coil = create_dx_heating_coil(model, obj_name, heating_system) + htg_coil = create_dx_heating_coil(model, obj_name, heating_system, max_rated_fan_cfm, weather_min_drybulb) # Supplemental Heating Coil htg_supp_coil = create_supp_heating_coil(model, obj_name, heating_system) @@ -104,8 +139,8 @@ def self.apply_air_source_hvac_systems(model, cooling_system, heating_system, else htg_coil = OpenStudio::Model::CoilHeatingGas.new(model) htg_coil.setGasBurnerEfficiency(heating_system.heating_efficiency_afue) - htg_coil.setParasiticElectricLoad(0) - htg_coil.setParasiticGasLoad(UnitConversions.convert(heating_system.pilot_light_btuh.to_f, 'Btu/hr', 'W')) + htg_coil.setOnCycleParasiticElectricLoad(0) + htg_coil.setOffCycleParasiticGasLoad(UnitConversions.convert(heating_system.pilot_light_btuh.to_f, 'Btu/hr', 'W')) htg_coil.setFuelType(EPlus.fuel_type(heating_system.heating_system_fuel)) end htg_coil.setNominalCapacity(UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W')) @@ -152,10 +187,10 @@ def self.apply_air_source_hvac_systems(model, cooling_system, heating_system, air_loop_unitary = create_air_loop_unitary_system(model, obj_name, fan, htg_coil, clg_coil, htg_supp_coil, htg_cfm, clg_cfm, supp_max_temp) # Unitary System Performance - if num_speeds > 1 + if (not clg_ap.nil?) && (clg_ap.cool_fan_speed_ratios.size > 1) perf = OpenStudio::Model::UnitarySystemPerformanceMultispeed.new(model) perf.setSingleModeOperation(false) - for speed in 1..num_speeds + for speed in 1..clg_ap.cool_fan_speed_ratios.size if is_heatpump f = OpenStudio::Model::SupplyAirflowRatioField.new(htg_ap.heat_fan_speed_ratios[speed - 1], clg_ap.cool_fan_speed_ratios[speed - 1]) else @@ -175,7 +210,7 @@ def self.apply_air_source_hvac_systems(model, cooling_system, heating_system, end def self.apply_evaporative_cooler(model, cooling_system, sequential_cool_load_fracs, control_zone, - hvac_unavailable_periods) + hvac_unavailable_periods, unit_multiplier) obj_name = Constants.ObjectNameEvaporativeCooler @@ -196,7 +231,7 @@ def self.apply_evaporative_cooler(model, cooling_system, sequential_cool_load_fr air_loop = create_air_loop(model, obj_name, evap_cooler, control_zone, [0], sequential_cool_load_fracs, clg_cfm, nil, hvac_unavailable_periods) # Fan - fan_watts_per_cfm = [2.79 * clg_cfm**-0.29, 0.6].min # W/cfm; fit of efficacy to air flow from the CEC listed equipment + fan_watts_per_cfm = [2.79 * (clg_cfm / unit_multiplier)**-0.29, 0.6].min # W/cfm; fit of efficacy to air flow from the CEC listed equipment fan = create_supply_fan(model, obj_name, fan_watts_per_cfm, [clg_cfm]) fan.addToNode(air_loop.supplyInletNode) disaggregate_fan_or_pump(model, fan, nil, evap_cooler, nil, cooling_system) @@ -226,7 +261,14 @@ def self.apply_evaporative_cooler(model, cooling_system, sequential_cool_load_fr def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, sequential_heat_load_fracs, sequential_cool_load_fracs, - control_zone, ground_conductivity, hvac_unavailable_periods) + control_zone, ground_conductivity, hvac_unavailable_periods, + unit_multiplier) + + if unit_multiplier > 1 + # FUTURE: Figure out how to allow this. If we allow it, update docs and hpxml_translator_test.rb too. + # https://github.com/NREL/OpenStudio-HPXML/issues/1499 + fail 'NumberofUnits greater than 1 is not supported for ground-to-air heat pumps.' + end obj_name = Constants.ObjectNameGroundSourceHeatPump @@ -241,13 +283,17 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, runner.registerWarning("Specified #{hp_ap.fluid_type} fluid type and 0 fraction of glycol, so assuming #{Constants.FluidWater} fluid type.") end + # Apply unit multiplier + hp_ap.GSHP_Loop_flow *= unit_multiplier + hp_ap.GSHP_Bore_Holes = hp_ap.GSHP_Bore_Holes.to_i * unit_multiplier + # Cooling Coil clg_total_cap_curve = create_curve_quad_linear(model, hp_ap.cool_cap_curve_spec[0], obj_name + ' clg total cap curve') clg_sens_cap_curve = create_curve_quint_linear(model, hp_ap.cool_sh_curve_spec[0], obj_name + ' clg sens cap curve') clg_power_curve = create_curve_quad_linear(model, hp_ap.cool_power_curve_spec[0], obj_name + ' clg power curve') clg_coil = OpenStudio::Model::CoilCoolingWaterToAirHeatPumpEquationFit.new(model, clg_total_cap_curve, clg_sens_cap_curve, clg_power_curve) clg_coil.setName(obj_name + ' clg coil') - clg_coil.setRatedCoolingCoefficientofPerformance(1.0 / hp_ap.cool_rated_eirs[0]) + clg_coil.setRatedCoolingCoefficientofPerformance(hp_ap.cool_rated_cops[0]) clg_coil.setNominalTimeforCondensateRemovaltoBegin(1000) clg_coil.setRatioofInitialMoistureEvaporationRateandSteadyStateLatentCapacity(1.5) clg_coil.setRatedAirFlowRate(UnitConversions.convert(clg_cfm_rated, 'cfm', 'm^3/s')) @@ -261,7 +307,7 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, htg_power_curve = create_curve_quad_linear(model, hp_ap.heat_power_curve_spec[0], obj_name + ' htg power curve') htg_coil = OpenStudio::Model::CoilHeatingWaterToAirHeatPumpEquationFit.new(model, htg_cap_curve, htg_power_curve) htg_coil.setName(obj_name + ' htg coil') - htg_coil.setRatedHeatingCoefficientofPerformance(1.0 / hp_ap.heat_rated_eirs[0]) + htg_coil.setRatedHeatingCoefficientofPerformance(hp_ap.heat_rated_cops[0]) htg_coil.setRatedAirFlowRate(UnitConversions.convert(htg_cfm_rated, 'cfm', 'm^3/s')) htg_coil.setRatedWaterFlowRate(UnitConversions.convert(hp_ap.GSHP_Loop_flow, 'gal/min', 'm^3/s')) htg_coil.setRatedHeatingCapacity(UnitConversions.convert(heat_pump.heating_capacity, 'Btu/hr', 'W')) @@ -270,13 +316,20 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, # Supplemental Heating Coil htg_supp_coil = create_supp_heating_coil(model, obj_name, heat_pump) + # Site Ground Temperature Undisturbed + xing = OpenStudio::Model::SiteGroundTemperatureUndisturbedXing.new(model) + xing.setSoilSurfaceTemperatureAmplitude1(UnitConversions.convert(weather.data.DeepGroundSurfTempAmp1, 'deltaf', 'deltac')) + xing.setSoilSurfaceTemperatureAmplitude2(UnitConversions.convert(weather.data.DeepGroundSurfTempAmp2, 'deltaf', 'deltac')) + xing.setPhaseShiftofTemperatureAmplitude1(weather.data.DeepGroundPhaseShiftTempAmp1) + xing.setPhaseShiftofTemperatureAmplitude2(weather.data.DeepGroundPhaseShiftTempAmp2) + # Ground Heat Exchanger - ground_heat_exch_vert = OpenStudio::Model::GroundHeatExchangerVertical.new(model) + ground_heat_exch_vert = OpenStudio::Model::GroundHeatExchangerVertical.new(model, xing) ground_heat_exch_vert.setName(obj_name + ' exchanger') ground_heat_exch_vert.setBoreHoleRadius(UnitConversions.convert(hp_ap.bore_diameter / 2.0, 'in', 'm')) ground_heat_exch_vert.setGroundThermalConductivity(UnitConversions.convert(ground_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) ground_heat_exch_vert.setGroundThermalHeatCapacity(UnitConversions.convert(ground_conductivity / hp_ap.ground_diffusivity, 'Btu/(ft^3*F)', 'J/(m^3*K)')) - ground_heat_exch_vert.setGroundTemperature(UnitConversions.convert(weather.data.AnnualAvgDrybulb, 'F', 'C')) + ground_heat_exch_vert.setGroundTemperature(UnitConversions.convert(weather.data.DeepGroundAnnualTemp, 'F', 'C')) ground_heat_exch_vert.setGroutThermalConductivity(UnitConversions.convert(hp_ap.grout_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) ground_heat_exch_vert.setPipeThermalConductivity(UnitConversions.convert(hp_ap.pipe_cond, 'Btu/(hr*ft*R)', 'W/(m*K)')) ground_heat_exch_vert.setPipeOutDiameter(UnitConversions.convert(hp_ap.pipe_od, 'in', 'm')) @@ -285,12 +338,16 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, ground_heat_exch_vert.setMaximumLengthofSimulation(1) ground_heat_exch_vert.setGFunctionReferenceRatio(0.0005) ground_heat_exch_vert.setDesignFlowRate(UnitConversions.convert(hp_ap.GSHP_Loop_flow, 'gal/min', 'm^3/s')) - ground_heat_exch_vert.setNumberofBoreHoles(hp_ap.GSHP_Bore_Holes.to_i) + ground_heat_exch_vert.setNumberofBoreHoles(hp_ap.GSHP_Bore_Holes) ground_heat_exch_vert.setBoreHoleLength(UnitConversions.convert(hp_ap.GSHP_Bore_Depth, 'ft', 'm')) ground_heat_exch_vert.removeAllGFunctions for i in 0..(hp_ap.GSHP_G_Functions[0].size - 1) ground_heat_exch_vert.addGFunction(hp_ap.GSHP_G_Functions[0][i], hp_ap.GSHP_G_Functions[1][i]) end + xing = ground_heat_exch_vert.undisturbedGroundTemperatureModel.to_SiteGroundTemperatureUndisturbedXing.get + xing.setSoilThermalConductivity(ground_heat_exch_vert.groundThermalConductivity.get) + xing.setSoilSpecificHeat(ground_heat_exch_vert.groundThermalHeatCapacity.get / xing.soilDensity) + xing.setAverageSoilSurfaceTemperature(ground_heat_exch_vert.groundTemperature.get) # Plant Loop plant_loop = OpenStudio::Model::PlantLoop.new(model) @@ -379,7 +436,7 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, equip_def.setFractionLatent(0) equip_def.setFractionLost(1) equip.setSchedule(model.alwaysOnDiscreteSchedule) - equip.setEndUseSubcategory(equip_def.name.to_s) + equip.setEndUseSubcategory(Constants.ObjectNameGSHPSharedPump) equip.additionalProperties.setFeature('HPXML_ID', heat_pump.id) # Used by reporting measure end @@ -437,8 +494,7 @@ def self.apply_water_loop_to_air_heat_pump(model, heat_pump, return air_loop end - def self.apply_boiler(model, runner, heating_system, - sequential_heat_load_fracs, control_zone, hvac_unavailable_periods) + def self.apply_boiler(model, runner, heating_system, sequential_heat_load_fracs, control_zone, hvac_unavailable_periods) obj_name = Constants.ObjectNameBoiler is_condensing = false # FUTURE: Expose as input; default based on AFUE oat_reset_enabled = false @@ -514,16 +570,14 @@ def self.apply_boiler(model, runner, heating_system, boiler.setBoilerFlowMode('LeavingSetpointModulated') boiler.setOptimumPartLoadRatio(1.0) boiler.setWaterOutletUpperTemperatureLimit(99.9) - boiler.setParasiticElectricLoad(0) + boiler.setOnCycleParasiticElectricLoad(0) boiler.setNominalCapacity(UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W')) + boiler.setOffCycleParasiticFuelLoad(UnitConversions.convert(heating_system.pilot_light_btuh.to_f, 'Btu/hr', 'W')) plant_loop.addSupplyBranchForComponent(boiler) boiler.additionalProperties.setFeature('HPXML_ID', heating_system.id) # Used by reporting measure + boiler.additionalProperties.setFeature('IsHeatPumpBackup', heating_system.is_heat_pump_backup_system) # Used by reporting measure set_pump_power_ems_program(model, pump_w, pump, boiler) - # FIXME: EMS program to model pilot light - # Can be replaced if https://github.com/NREL/EnergyPlus/issues/9875 is ever implemented - set_boiler_pilot_light_ems_program(model, boiler, heating_system) - if is_condensing && oat_reset_enabled setpoint_manager_oar = OpenStudio::Model::SetpointManagerOutdoorAirReset.new(model) setpoint_manager_oar.setName(obj_name + ' outdoor reset') @@ -657,8 +711,8 @@ def self.apply_unit_heater(model, heating_system, else htg_coil = OpenStudio::Model::CoilHeatingGas.new(model) htg_coil.setGasBurnerEfficiency(efficiency) - htg_coil.setParasiticElectricLoad(0.0) - htg_coil.setParasiticGasLoad(UnitConversions.convert(heating_system.pilot_light_btuh.to_f, 'Btu/hr', 'W')) + htg_coil.setOnCycleParasiticElectricLoad(0.0) + htg_coil.setOffCycleParasiticGasLoad(UnitConversions.convert(heating_system.pilot_light_btuh.to_f, 'Btu/hr', 'W')) htg_coil.setFuelType(EPlus.fuel_type(heating_system.heating_system_fuel)) end htg_coil.setNominalCapacity(UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W')) @@ -680,9 +734,11 @@ def self.apply_unit_heater(model, heating_system, set_sequential_load_fractions(model, control_zone, unitary_system, sequential_heat_load_fracs, nil, hvac_unavailable_periods, heating_system) end - def self.apply_ideal_air_loads(model, obj_name, sequential_cool_load_fracs, + def self.apply_ideal_air_loads(model, sequential_cool_load_fracs, sequential_heat_load_fracs, control_zone, hvac_unavailable_periods) + obj_name = Constants.ObjectNameIdealAirSystem + # Ideal Air System ideal_air = OpenStudio::Model::ZoneHVACIdealLoadsAirSystem.new(model) ideal_air.setName(obj_name) @@ -709,13 +765,19 @@ def self.apply_ideal_air_loads(model, obj_name, sequential_cool_load_fracs, set_sequential_load_fractions(model, control_zone, ideal_air, sequential_heat_load_fracs, sequential_cool_load_fracs, hvac_unavailable_periods) end - def self.apply_dehumidifiers(runner, model, dehumidifiers, living_space, unavailable_periods) + def self.apply_dehumidifiers(runner, model, dehumidifiers, conditioned_space, unavailable_periods, unit_multiplier) dehumidifier_id = dehumidifiers[0].id # Syncs with the ReportSimulationOutput measure, which only looks at first dehumidifier ID if dehumidifiers.map { |d| d.rh_setpoint }.uniq.size > 1 fail 'All dehumidifiers must have the same setpoint but multiple setpoints were specified.' end + if unit_multiplier > 1 + # FUTURE: Figure out how to allow this. If we allow it, update docs and hpxml_translator_test.rb too. + # https://github.com/NREL/OpenStudio-HPXML/issues/1499 + fail 'NumberofUnits greater than 1 is not supported for dehumidifiers.' + end + # Dehumidifier coefficients # Generic model coefficients from Winkler, Christensen, and Tomerlin (2011) w_coeff = [-1.162525707, 0.02271469, -0.000113208, 0.021110538, -0.0000693034, 0.000378843] @@ -733,12 +795,15 @@ def self.apply_dehumidifiers(runner, model, dehumidifiers, living_space, unavail avg_energy_factor = dehumidifiers.map { |d| d.energy_factor * d.capacity }.sum / total_capacity total_fraction_served = dehumidifiers.map { |d| d.fraction_served }.sum - control_zone = living_space.thermalZone.get + # Apply unit multiplier + total_capacity *= unit_multiplier + + control_zone = conditioned_space.thermalZone.get obj_name = Constants.ObjectNameDehumidifier rh_setpoint = dehumidifiers[0].rh_setpoint * 100.0 # (EnergyPlus uses 60 for 60% RH) relative_humidity_setpoint_sch = OpenStudio::Model::ScheduleConstant.new(model) - relative_humidity_setpoint_sch.setName(Constants.ObjectNameRelativeHumiditySetpoint) + relative_humidity_setpoint_sch.setName("#{obj_name} rh setpoint") relative_humidity_setpoint_sch.setValue(rh_setpoint) capacity_curve = create_curve_biquadratic(model, w_coeff, 'DXDH-CAP-fT', -100, 100, -100, 100) @@ -773,11 +838,11 @@ def self.apply_dehumidifiers(runner, model, dehumidifiers, living_space, unavail zone_hvac.additionalProperties.setFeature('HPXML_ID', dehumidifier_id) # Used by reporting measure if total_fraction_served < 1.0 - adjust_dehumidifier_load_EMS(total_fraction_served, zone_hvac, model, living_space) + adjust_dehumidifier_load_EMS(total_fraction_served, zone_hvac, model, conditioned_space) end end - def self.apply_ceiling_fans(model, runner, weather, ceiling_fan, living_space, schedules_file, + def self.apply_ceiling_fans(model, runner, weather, ceiling_fan, conditioned_space, schedules_file, unavailable_periods) obj_name = Constants.ObjectNameCeilingFan medium_cfm = 3000.0 # From ANSI 301-2019 @@ -792,7 +857,7 @@ def self.apply_ceiling_fans(model, runner, weather, ceiling_fan, living_space, s if not schedules_file.nil? annual_kwh *= Schedule.CeilingFanMonthlyMultipliers(weather: weather).split(',').map(&:to_f).sum(0.0) / 12.0 ceiling_fan_design_level = schedules_file.calc_design_level_from_annual_kwh(col_name: ceiling_fan_col_name, annual_kwh: annual_kwh) - ceiling_fan_sch = schedules_file.create_schedule_file(col_name: ceiling_fan_col_name) + ceiling_fan_sch = schedules_file.create_schedule_file(model, col_name: ceiling_fan_col_name) end if ceiling_fan_sch.nil? ceiling_fan_unavailable_periods = Schedule.get_unavailable_periods(runner, ceiling_fan_col_name, unavailable_periods) @@ -813,7 +878,7 @@ def self.apply_ceiling_fans(model, runner, weather, ceiling_fan, living_space, s equip_def.setName(obj_name) equip = OpenStudio::Model::ElectricEquipment.new(equip_def) equip.setName(equip_def.name.to_s) - equip.setSpace(living_space) + equip.setSpace(conditioned_space) equip_def.setDesignLevel(ceiling_fan_design_level) equip_def.setFractionRadiant(0.558) equip_def.setFractionLatent(0) @@ -822,14 +887,14 @@ def self.apply_ceiling_fans(model, runner, weather, ceiling_fan, living_space, s equip.setSchedule(ceiling_fan_sch) end - def self.apply_setpoints(model, runner, weather, hvac_control, living_zone, has_ceiling_fan, heating_days, cooling_days, year, schedules_file) + def self.apply_setpoints(model, runner, weather, hvac_control, conditioned_zone, has_ceiling_fan, heating_days, cooling_days, year, schedules_file) heating_sch = nil cooling_sch = nil if not schedules_file.nil? - heating_sch = schedules_file.create_schedule_file(col_name: SchedulesFile::ColumnHeatingSetpoint) + heating_sch = schedules_file.create_schedule_file(model, col_name: SchedulesFile::ColumnHeatingSetpoint) end if not schedules_file.nil? - cooling_sch = schedules_file.create_schedule_file(col_name: SchedulesFile::ColumnCoolingSetpoint) + cooling_sch = schedules_file.create_schedule_file(model, col_name: SchedulesFile::ColumnCoolingSetpoint) end # permit mixing detailed schedules with simple schedules @@ -851,21 +916,21 @@ def self.apply_setpoints(model, runner, weather, hvac_control, living_zone, has_ end if heating_sch.nil? - heating_setpoint = HourlyByDaySchedule.new(model, Constants.ObjectNameHeatingSetpoint, htg_weekday_setpoints, htg_weekend_setpoints, nil, false) + heating_setpoint = HourlyByDaySchedule.new(model, 'heating setpoint', htg_weekday_setpoints, htg_weekend_setpoints, nil, false) heating_sch = heating_setpoint.schedule end if cooling_sch.nil? - cooling_setpoint = HourlyByDaySchedule.new(model, Constants.ObjectNameCoolingSetpoint, clg_weekday_setpoints, clg_weekend_setpoints, nil, false) + cooling_setpoint = HourlyByDaySchedule.new(model, 'cooling setpoint', clg_weekday_setpoints, clg_weekend_setpoints, nil, false) cooling_sch = cooling_setpoint.schedule end # Set the setpoint schedules thermostat_setpoint = OpenStudio::Model::ThermostatSetpointDualSetpoint.new(model) - thermostat_setpoint.setName("#{living_zone.name} temperature setpoint") + thermostat_setpoint.setName("#{conditioned_zone.name} temperature setpoint") thermostat_setpoint.setHeatingSetpointTemperatureSchedule(heating_sch) thermostat_setpoint.setCoolingSetpointTemperatureSchedule(cooling_sch) - living_zone.setThermostatSetpointDualSetpoint(thermostat_setpoint) + conditioned_zone.setThermostatSetpointDualSetpoint(thermostat_setpoint) end def self.create_setpoint_schedules(runner, heating_days, cooling_days, htg_weekday_setpoints, htg_weekend_setpoints, clg_weekday_setpoints, clg_weekend_setpoints, year) @@ -1024,189 +1089,357 @@ def self.get_default_cooling_setpoint(control_type) return clg_sp, clg_setup_sp, clg_setup_hrs_per_week, clg_setup_start_hr end - def self.set_cool_curves_central_air_source(heat_pump, use_eer = false) - hp_ap = heat_pump.additional_properties - hp_ap.cool_rated_cfm_per_ton = get_default_cool_cfm_per_ton(hp_ap.num_speeds, use_eer) - if hp_ap.num_speeds == 1 - # From "Improved Modeling of Residential Air Conditioners and Heat Pumps for Energy Calculations", Cutler at al + def self.get_default_heating_capacity_retention(compressor_type, hspf = nil) + retention_temp = 5.0 + if [HPXML::HVACCompressorTypeSingleStage, HPXML::HVACCompressorTypeTwoStage].include? compressor_type + retention_fraction = 0.425 + elsif [HPXML::HVACCompressorTypeVariableSpeed].include? compressor_type + # Default maximum capacity maintenance based on NEEP data for all var speed heat pump types, if not provided + retention_fraction = (0.0461 * hspf + 0.1594).round(4) + end + return retention_temp, retention_fraction + end + + def self.get_cool_cap_eir_ft_spec(compressor_type) + if compressor_type == HPXML::HVACCompressorTypeSingleStage + cap_ft_spec = [[3.68637657, -0.098352478, 0.000956357, 0.005838141, -0.0000127, -0.000131702]] + eir_ft_spec = [[-3.437356399, 0.136656369, -0.001049231, -0.0079378, 0.000185435, -0.0001441]] + elsif compressor_type == HPXML::HVACCompressorTypeTwoStage + cap_ft_spec = [[3.998418659, -0.108728222, 0.001056818, 0.007512314, -0.0000139, -0.000164716], + [3.466810106, -0.091476056, 0.000901205, 0.004163355, -0.00000919, -0.000110829]] + eir_ft_spec = [[-4.282911381, 0.181023691, -0.001357391, -0.026310378, 0.000333282, -0.000197405], + [-3.557757517, 0.112737397, -0.000731381, 0.013184877, 0.000132645, -0.000338716]] + end + return cap_ft_spec, eir_ft_spec + end + + def self.get_cool_cap_eir_fflow_spec(compressor_type) + if compressor_type == HPXML::HVACCompressorTypeSingleStage + # Single stage systems have PSC or constant torque ECM blowers, so the airflow rate is affected by the static pressure losses. + cap_fflow_spec = [[0.718664047, 0.41797409, -0.136638137]] + eir_fflow_spec = [[1.143487507, -0.13943972, -0.004047787]] + elsif compressor_type == HPXML::HVACCompressorTypeTwoStage + # Most two stage systems have PSC or constant torque ECM blowers, so the airflow rate is affected by the static pressure losses. + cap_fflow_spec = [[0.655239515, 0.511655216, -0.166894731], + [0.618281092, 0.569060264, -0.187341356]] + eir_fflow_spec = [[1.639108268, -0.998953996, 0.359845728], + [1.570774717, -0.914152018, 0.343377302]] + elsif compressor_type == HPXML::HVACCompressorTypeVariableSpeed + # Variable speed systems have constant flow ECM blowers, so the air handler can always achieve the design airflow rate by sacrificing blower power. + # So we assume that there is only one corresponding airflow rate for each compressor speed. + eir_fflow_spec = [[1, 0, 0]] * 2 + cap_fflow_spec = [[1, 0, 0]] * 2 + end + return cap_fflow_spec, eir_fflow_spec + end + + def self.get_heat_cap_eir_ft_spec(compressor_type, heating_capacity_retention_temp, heating_capacity_retention_fraction) + cap_ft_spec = calc_heat_cap_ft_spec(compressor_type, heating_capacity_retention_temp, heating_capacity_retention_fraction) + if compressor_type == HPXML::HVACCompressorTypeSingleStage + # From "Improved Modeling of Residential Air Conditioners and Heat Pumps for Energy Calculations", Cutler et al # https://www.nrel.gov/docs/fy13osti/56354.pdf - hp_ap.cool_cap_ft_spec = [[3.68637657, -0.098352478, 0.000956357, 0.005838141, -0.0000127, -0.000131702]] - hp_ap.cool_eir_ft_spec = [[-3.437356399, 0.136656369, -0.001049231, -0.0079378, 0.000185435, -0.0001441]] - hp_ap.cool_capacity_ratios = [1.0] - if not use_eer - hp_ap.cool_rated_airflow_rate = hp_ap.cool_rated_cfm_per_ton[0] - hp_ap.cool_fan_speed_ratios = calc_fan_speed_ratios(hp_ap.cool_capacity_ratios, hp_ap.cool_rated_cfm_per_ton, hp_ap.cool_rated_airflow_rate) - # Single stage systems have PSC or constant torque ECM blowers, so the airflow rate is affected by the static pressure losses. - cap_fflow_spec, eir_fflow_spec = get_airflow_fault_cooling_coeff() - hp_ap.cool_cap_fflow_spec = [cap_fflow_spec] - hp_ap.cool_eir_fflow_spec = [eir_fflow_spec] - hp_ap.cool_eers = [calc_eer_cooling_1speed(heat_pump.cooling_efficiency_seer, hp_ap.cool_c_d, hp_ap.fan_power_rated, hp_ap.cool_eir_ft_spec)] - else - hp_ap.cool_fan_speed_ratios = [1.0] - hp_ap.cool_cap_fflow_spec = [[1.0, 0.0, 0.0]] - hp_ap.cool_eir_fflow_spec = [[1.0, 0.0, 0.0]] - end - elsif hp_ap.num_speeds == 2 - # From "Improved Modeling of Residential Air Conditioners and Heat Pumps for Energy Calculations", Cutler at al + eir_ft_spec = [[0.718398423, 0.003498178, 0.000142202, -0.005724331, 0.00014085, -0.000215321]] + elsif compressor_type == HPXML::HVACCompressorTypeTwoStage + # From "Improved Modeling of Residential Air Conditioners and Heat Pumps for Energy Calculations", Cutler et al # https://www.nrel.gov/docs/fy13osti/56354.pdf - hp_ap.cool_rated_airflow_rate = hp_ap.cool_rated_cfm_per_ton[-1] - hp_ap.cool_capacity_ratios = [0.72, 1.0] - hp_ap.cool_fan_speed_ratios = calc_fan_speed_ratios(hp_ap.cool_capacity_ratios, hp_ap.cool_rated_cfm_per_ton, hp_ap.cool_rated_airflow_rate) - hp_ap.cool_cap_ft_spec = [[3.998418659, -0.108728222, 0.001056818, 0.007512314, -0.0000139, -0.000164716], - [3.466810106, -0.091476056, 0.000901205, 0.004163355, -0.00000919, -0.000110829]] - hp_ap.cool_eir_ft_spec = [[-4.282911381, 0.181023691, -0.001357391, -0.026310378, 0.000333282, -0.000197405], - [-3.557757517, 0.112737397, -0.000731381, 0.013184877, 0.000132645, -0.000338716]] + eir_ft_spec = [[0.36338171, 0.013523725, 0.000258872, -0.009450269, 0.000439519, -0.000653723], + [0.981100941, -0.005158493, 0.000243416, -0.005274352, 0.000230742, -0.000336954]] + end + return cap_ft_spec, eir_ft_spec + end + + def self.get_heat_cap_eir_fflow_spec(compressor_type) + if compressor_type == HPXML::HVACCompressorTypeSingleStage + # Single stage systems have PSC or constant torque ECM blowers, so the airflow rate is affected by the static pressure losses. + cap_fflow_spec = [[0.694045465, 0.474207981, -0.168253446]] + eir_fflow_spec = [[2.185418751, -1.942827919, 0.757409168]] + elsif compressor_type == HPXML::HVACCompressorTypeTwoStage # Most two stage systems have PSC or constant torque ECM blowers, so the airflow rate is affected by the static pressure losses. - hp_ap.cool_cap_fflow_spec = [[0.655239515, 0.511655216, -0.166894731], - [0.618281092, 0.569060264, -0.187341356]] - hp_ap.cool_eir_fflow_spec = [[1.639108268, -0.998953996, 0.359845728], - [1.570774717, -0.914152018, 0.343377302]] - hp_ap.cool_eers = calc_eers_cooling_2speed(heat_pump.cooling_efficiency_seer, hp_ap.cool_c_d, hp_ap.cool_capacity_ratios, hp_ap.cool_fan_speed_ratios, hp_ap.fan_power_rated, hp_ap.cool_eir_ft_spec, hp_ap.cool_cap_ft_spec) - elsif hp_ap.num_speeds == 4 - # From Carrier heat pump lab testing - hp_ap.cool_rated_airflow_rate = hp_ap.cool_rated_cfm_per_ton[-1] - hp_ap.cool_capacity_ratios = [0.36, 0.51, 0.67, 1.0] - hp_ap.cool_fan_speed_ratios = calc_fan_speed_ratios(hp_ap.cool_capacity_ratios, hp_ap.cool_rated_cfm_per_ton, hp_ap.cool_rated_airflow_rate) - hp_ap.cool_cap_coeff_perf_map = [[1.6516044444444447, 0.0698916049382716, -0.0005546296296296296, -0.08870160493827162, 0.0004135802469135802, 0.00029077160493827157], - [-6.84948049382716, 0.26946, -0.0019413580246913577, -0.03281469135802469, 0.00015694444444444442, 3.32716049382716e-05], - [-4.53543086419753, 0.15358543209876546, -0.0009345679012345678, 0.002666913580246914, -7.993827160493826e-06, -0.00011617283950617283], - [-3.500948395061729, 0.11738987654320988, -0.0006580246913580248, 0.007003148148148148, -2.8518518518518517e-05, -0.0001284259259259259], - [1.8769221728395058, -0.04768641975308643, 0.0006885802469135801, 0.006643395061728395, 1.4209876543209876e-05, -0.00024043209876543206]] - hp_ap.cool_cap_ft_spec = hp_ap.cool_cap_coeff_perf_map.select { |i| [0, 1, 2, 4].include? hp_ap.cool_cap_coeff_perf_map.index(i) } - hp_ap.cool_cap_ft_spec_3 = hp_ap.cool_cap_coeff_perf_map.select { |i| [0, 1, 4].include? hp_ap.cool_cap_coeff_perf_map.index(i) } - hp_ap.cool_eir_coeff_perf_map = [[2.896298765432099, -0.12487654320987657, 0.0012148148148148148, 0.04492037037037037, 8.734567901234567e-05, -0.0006348765432098764], - [6.428076543209876, -0.20913209876543212, 0.0018521604938271604, 0.024392592592592594, 0.00019691358024691356, -0.0006012345679012346], - [5.136356049382716, -0.1591530864197531, 0.0014151234567901232, 0.018665555555555557, 0.00020398148148148147, -0.0005407407407407407], - [1.3823471604938273, -0.02875123456790123, 0.00038302469135802463, 0.006344814814814816, 0.00024836419753086417, -0.00047469135802469134], - [-1.0411735802469133, 0.055261604938271605, -0.0004404320987654321, 0.0002154938271604939, 0.00017484567901234564, -0.0002017901234567901]] - hp_ap.cool_eir_ft_spec = hp_ap.cool_eir_coeff_perf_map.select { |i| [0, 1, 2, 4].include? hp_ap.cool_eir_coeff_perf_map.index(i) } - hp_ap.cool_eir_ft_spec_3 = hp_ap.cool_eir_coeff_perf_map.select { |i| [0, 1, 4].include? hp_ap.cool_eir_coeff_perf_map.index(i) } + cap_fflow_spec = [[0.741466907, 0.378645444, -0.119754733], + [0.76634609, 0.32840943, -0.094701495]] + eir_fflow_spec = [[2.153618211, -1.737190609, 0.584269478], + [2.001041353, -1.58869128, 0.587593517]] + elsif compressor_type == HPXML::HVACCompressorTypeVariableSpeed # Variable speed systems have constant flow ECM blowers, so the air handler can always achieve the design airflow rate by sacrificing blower power. # So we assume that there is only one corresponding airflow rate for each compressor speed. - hp_ap.cool_eir_fflow_spec = [[1, 0, 0]] * 4 - hp_ap.cool_cap_fflow_spec = [[1, 0, 0]] * 4 - hp_ap.cap_ratio_seer_3 = hp_ap.cool_capacity_ratios.select { |i| [0, 1, 3].include? hp_ap.cool_capacity_ratios.index(i) } - hp_ap.fan_speed_seer_3 = hp_ap.cool_fan_speed_ratios.select { |i| [0, 1, 3].include? hp_ap.cool_fan_speed_ratios.index(i) } - hp_ap.cool_eers = calc_eers_cooling_4speed(heat_pump.cooling_efficiency_seer, hp_ap.cool_c_d, hp_ap.cap_ratio_seer_3, hp_ap.fan_speed_seer_3, hp_ap.fan_power_rated, hp_ap.cool_eir_ft_spec_3, hp_ap.cool_cap_ft_spec_3) + cap_fflow_spec = [[1, 0, 0]] * 3 + eir_fflow_spec = [[1, 0, 0]] * 3 end + return cap_fflow_spec, eir_fflow_spec end - def self.set_heat_curves_central_air_source(heat_pump, use_cop = false) - hp_ap = heat_pump.additional_properties - hp_ap.heat_rated_cfm_per_ton = get_default_heat_cfm_per_ton(hp_ap.num_speeds, use_cop) - if hp_ap.num_speeds == 1 - # From "Improved Modeling of Residential Air Conditioners and Heat Pumps for Energy Calculations", Cutler at al - # https://www.nrel.gov/docs/fy13osti/56354.pdf - hp_ap.heat_capacity_ratios = [1.0] - hp_ap.heat_eir_ft_spec = [[0.718398423, 0.003498178, 0.000142202, -0.005724331, 0.00014085, -0.000215321]] - cap_fflow_spec, eir_fflow_spec = get_airflow_fault_heating_coeff() - hp_ap.heat_cap_fflow_spec = [cap_fflow_spec] - hp_ap.heat_eir_fflow_spec = [eir_fflow_spec] - hp_ap.heat_cap_ft_spec = calc_heat_cap_ft_spec(heat_pump, heat_pump.additional_properties.num_speeds) - if not use_cop - hp_ap.heat_cops = [calc_cop_heating_1speed(heat_pump.heating_efficiency_hspf, hp_ap.heat_c_d, hp_ap.fan_power_rated, hp_ap.heat_eir_ft_spec, hp_ap.heat_cap_ft_spec)] - hp_ap.heat_rated_airflow_rate = hp_ap.heat_rated_cfm_per_ton[0] - hp_ap.heat_fan_speed_ratios = calc_fan_speed_ratios(hp_ap.heat_capacity_ratios, hp_ap.heat_rated_cfm_per_ton, hp_ap.heat_rated_airflow_rate) + def self.set_cool_curves_central_air_source(runner, cooling_system, use_eer = false) + clg_ap = cooling_system.additional_properties + clg_ap.cool_rated_cfm_per_ton = get_default_cool_cfm_per_ton(cooling_system.compressor_type, use_eer) + clg_ap.cool_capacity_ratios = get_cool_capacity_ratios(cooling_system) + set_cool_c_d(cooling_system) + + seer = cooling_system.cooling_efficiency_seer + if cooling_system.compressor_type == HPXML::HVACCompressorTypeSingleStage + clg_ap.cool_cap_ft_spec, clg_ap.cool_eir_ft_spec = get_cool_cap_eir_ft_spec(cooling_system.compressor_type) + if not use_eer + clg_ap.cool_rated_airflow_rate = clg_ap.cool_rated_cfm_per_ton[0] + clg_ap.cool_fan_speed_ratios = calc_fan_speed_ratios(clg_ap.cool_capacity_ratios, clg_ap.cool_rated_cfm_per_ton, clg_ap.cool_rated_airflow_rate) + clg_ap.cool_cap_fflow_spec, clg_ap.cool_eir_fflow_spec = get_cool_cap_eir_fflow_spec(cooling_system.compressor_type) + clg_ap.cool_rated_cops = [0.2692 * seer + 0.2706] # Regression based on inverse model else - hp_ap.heat_fan_speed_ratios = [1.0] + clg_ap.cool_fan_speed_ratios = [1.0] + clg_ap.cool_cap_fflow_spec = [[1.0, 0.0, 0.0]] + clg_ap.cool_eir_fflow_spec = [[1.0, 0.0, 0.0]] end - elsif hp_ap.num_speeds == 2 - # From "Improved Modeling of Residential Air Conditioners and Heat Pumps for Energy Calculations", Cutler at al - # https://www.nrel.gov/docs/fy13osti/56354.pdf - hp_ap.heat_rated_airflow_rate = hp_ap.heat_rated_cfm_per_ton[-1] - hp_ap.heat_capacity_ratios = [0.72, 1.0] - hp_ap.heat_fan_speed_ratios = calc_fan_speed_ratios(hp_ap.heat_capacity_ratios, hp_ap.heat_rated_cfm_per_ton, hp_ap.heat_rated_airflow_rate) - hp_ap.heat_eir_ft_spec = [[0.36338171, 0.013523725, 0.000258872, -0.009450269, 0.000439519, -0.000653723], - [0.981100941, -0.005158493, 0.000243416, -0.005274352, 0.000230742, -0.000336954]] - hp_ap.heat_cap_fflow_spec = [[0.741466907, 0.378645444, -0.119754733], - [0.76634609, 0.32840943, -0.094701495]] - hp_ap.heat_eir_fflow_spec = [[2.153618211, -1.737190609, 0.584269478], - [2.001041353, -1.58869128, 0.587593517]] - hp_ap.heat_cap_ft_spec = calc_heat_cap_ft_spec(heat_pump, heat_pump.additional_properties.num_speeds) - hp_ap.heat_cops = calc_cops_heating_2speed(heat_pump.heating_efficiency_hspf, hp_ap.heat_c_d, hp_ap.heat_capacity_ratios, hp_ap.heat_fan_speed_ratios, hp_ap.fan_power_rated, hp_ap.heat_eir_ft_spec, hp_ap.heat_cap_ft_spec) - elsif hp_ap.num_speeds == 4 - # From manufacturers data - hp_ap.heat_rated_airflow_rate = hp_ap.heat_rated_cfm_per_ton[-2] - hp_ap.heat_capacity_ratios = [0.33, 0.56, 1.0, 1.17] - hp_ap.heat_fan_speed_ratios = calc_fan_speed_ratios(hp_ap.heat_capacity_ratios, hp_ap.heat_rated_cfm_per_ton, hp_ap.heat_rated_airflow_rate) - hp_ap.heat_eir_ft_spec = [[0.708311527, 0.020732093, 0.000391479, -0.037640031, 0.000979937, -0.001079042], - [0.025480155, 0.020169585, 0.000121341, -0.004429789, 0.000166472, -0.00036447], - [0.379003189, 0.014195012, 0.0000821046, -0.008894061, 0.000151519, -0.000210299], - [0.690404655, 0.00616619, 0.000137643, -0.009350199, 0.000153427, -0.000213258]] - hp_ap.heat_cap_fflow_spec = [[1, 0, 0]] * 4 - hp_ap.heat_eir_fflow_spec = [[1, 0, 0]] * 4 - hp_ap.heat_cap_ft_spec = calc_heat_cap_ft_spec(heat_pump, heat_pump.additional_properties.num_speeds) - hp_ap.heat_cops = calc_cops_heating_4speed(heat_pump.heating_efficiency_hspf, hp_ap.heat_c_d, hp_ap.heat_capacity_ratios, hp_ap.heat_fan_speed_ratios, hp_ap.fan_power_rated, hp_ap.heat_eir_ft_spec, hp_ap.heat_cap_ft_spec) + + elsif cooling_system.compressor_type == HPXML::HVACCompressorTypeTwoStage + clg_ap.cool_rated_airflow_rate = clg_ap.cool_rated_cfm_per_ton[-1] + clg_ap.cool_fan_speed_ratios = calc_fan_speed_ratios(clg_ap.cool_capacity_ratios, clg_ap.cool_rated_cfm_per_ton, clg_ap.cool_rated_airflow_rate) + clg_ap.cool_cap_ft_spec, clg_ap.cool_eir_ft_spec = get_cool_cap_eir_ft_spec(cooling_system.compressor_type) + clg_ap.cool_cap_fflow_spec, clg_ap.cool_eir_fflow_spec = get_cool_cap_eir_fflow_spec(cooling_system.compressor_type) + clg_ap.cool_rated_cops = [0.2773 * seer - 0.0018] # Regression based on inverse model + clg_ap.cool_rated_cops << clg_ap.cool_rated_cops[0] * 0.91 # COP ratio based on Dylan's data as seen in BEopt 2.8 options + + elsif cooling_system.compressor_type == HPXML::HVACCompressorTypeVariableSpeed + clg_ap.cooling_capacity_retention_temperature = 82.0 + clg_ap.cooling_capacity_retention_fraction = 1.033 # From NEEP data + clg_ap.cool_rated_airflow_rate = clg_ap.cool_rated_cfm_per_ton[-1] + clg_ap.cool_fan_speed_ratios = calc_fan_speed_ratios(clg_ap.cool_capacity_ratios, clg_ap.cool_rated_cfm_per_ton, clg_ap.cool_rated_airflow_rate) + clg_ap.cool_cap_fflow_spec, clg_ap.cool_eir_fflow_spec = get_cool_cap_eir_fflow_spec(cooling_system.compressor_type) end + + set_cool_rated_shrs_gross(runner, cooling_system) end - def self.set_cool_curves_mshp(heat_pump, num_speeds) - hp_ap = heat_pump.additional_properties + def self.get_cool_capacity_ratios(hvac_system) + # For each speed, ratio of capacity to nominal capacity + if hvac_system.compressor_type == HPXML::HVACCompressorTypeSingleStage + return [1.0] + elsif hvac_system.compressor_type == HPXML::HVACCompressorTypeTwoStage + return [0.72, 1.0] + elsif hvac_system.compressor_type == HPXML::HVACCompressorTypeVariableSpeed + is_ducted = !hvac_system.distribution_system_idref.nil? + if is_ducted + return [0.394, 1.0] + else + return [0.255, 1.0] + end + end + + fail 'Unable to get cooling capacity ratios.' + end + + def self.set_heat_curves_central_air_source(heating_system, use_cop = false) + htg_ap = heating_system.additional_properties + htg_ap.heat_rated_cfm_per_ton = get_default_heat_cfm_per_ton(heating_system.compressor_type, use_cop) + heating_capacity_retention_temp, heating_capacity_retention_fraction = get_heating_capacity_retention(heating_system) + htg_ap.heat_cap_fflow_spec, htg_ap.heat_eir_fflow_spec = get_heat_cap_eir_fflow_spec(heating_system.compressor_type) + htg_ap.heat_capacity_ratios = get_heat_capacity_ratios(heating_system) + set_heat_c_d(heating_system) + + hspf = heating_system.heating_efficiency_hspf + if heating_system.compressor_type == HPXML::HVACCompressorTypeSingleStage + htg_ap.heat_cap_ft_spec, htg_ap.heat_eir_ft_spec = get_heat_cap_eir_ft_spec(heating_system.compressor_type, heating_capacity_retention_temp, heating_capacity_retention_fraction) + if not use_cop + htg_ap.heat_rated_cops = [0.0353 * hspf**2 + 0.0331 * hspf + 0.9447] # Regression based on inverse model + htg_ap.heat_rated_airflow_rate = htg_ap.heat_rated_cfm_per_ton[0] + htg_ap.heat_fan_speed_ratios = calc_fan_speed_ratios(htg_ap.heat_capacity_ratios, htg_ap.heat_rated_cfm_per_ton, htg_ap.heat_rated_airflow_rate) + else + htg_ap.heat_fan_speed_ratios = [1.0] + end - # From Daikin mini-split lab testing - hp_ap.cool_cap_ft_spec = [[0.7531983499655835, 0.003618193903031667, 0.0, 0.006574385031351544, -6.87181191015432e-05, 0.0]] * num_speeds - hp_ap.cool_eir_ft_spec = [[-0.06376924779982301, -0.0013360593470367282, 1.413060577993827e-05, 0.019433076486584752, -4.91395947154321e-05, -4.909341249475308e-05]] * num_speeds - hp_ap.cool_cap_fflow_spec = [[1, 0, 0]] * num_speeds - hp_ap.cool_eir_fflow_spec = [[1, 0, 0]] * num_speeds + elsif heating_system.compressor_type == HPXML::HVACCompressorTypeTwoStage + htg_ap.heat_cap_ft_spec, htg_ap.heat_eir_ft_spec = get_heat_cap_eir_ft_spec(heating_system.compressor_type, heating_capacity_retention_temp, heating_capacity_retention_fraction) + htg_ap.heat_rated_airflow_rate = htg_ap.heat_rated_cfm_per_ton[-1] + htg_ap.heat_fan_speed_ratios = calc_fan_speed_ratios(htg_ap.heat_capacity_ratios, htg_ap.heat_rated_cfm_per_ton, htg_ap.heat_rated_airflow_rate) + htg_ap.heat_rated_cops = [0.0426 * hspf**2 - 0.0747 * hspf + 1.5374] # Regression based on inverse model + htg_ap.heat_rated_cops << htg_ap.heat_rated_cops[0] * 0.87 # COP ratio based on Dylan's data as seen in BEopt 2.8 options - hp_ap.cool_capacity_ratios = [0.4, 0.4889, 0.5778, 0.6667, 0.7556, 0.8444, 0.9333, 1.0222, 1.1111, 1.2] - hp_ap.cool_rated_cfm_per_ton = get_default_cool_cfm_per_ton(num_speeds) - hp_ap.cool_rated_airflow_rate = hp_ap.cool_rated_cfm_per_ton[-1] * hp_ap.cool_capacity_ratios[-1] - hp_ap.cool_fan_speed_ratios = calc_fan_speed_ratios(hp_ap.cool_capacity_ratios, hp_ap.cool_rated_cfm_per_ton, hp_ap.cool_rated_airflow_rate) + elsif heating_system.compressor_type == HPXML::HVACCompressorTypeVariableSpeed + htg_ap.heat_rated_airflow_rate = htg_ap.heat_rated_cfm_per_ton[-1] + htg_ap.heat_capacity_ratios = get_heat_capacity_ratios(heating_system) + htg_ap.heat_fan_speed_ratios = calc_fan_speed_ratios(htg_ap.heat_capacity_ratios, htg_ap.heat_rated_cfm_per_ton, htg_ap.heat_rated_airflow_rate) + end end - def self.set_heat_curves_mshp(heat_pump, num_speeds) + def self.set_heat_detailed_performance_data(heat_pump) + hp_ap = heat_pump.additional_properties + is_ducted = !heat_pump.distribution_system_idref.nil? + hspf = heat_pump.heating_efficiency_hspf + + # Default data inputs based on NEEP data + detailed_performance_data = heat_pump.heating_detailed_performance_data + heating_capacity_retention_temp, heating_capacity_retention_fraction = get_heating_capacity_retention(heat_pump) + max_cap_maint_5 = 1.0 - (1.0 - heating_capacity_retention_fraction) * (HVAC::AirSourceHeatRatedODB - 5.0) / + (HVAC::AirSourceHeatRatedODB - heating_capacity_retention_temp) + + if is_ducted + a, b, c, d, e = 0.4348, 0.008923, 1.090, -0.1861, -0.07564 + else + a, b, c, d, e = 0.1914, -1.822, 1.364, -0.07783, 2.221 + end + max_cop_47 = a * hspf + b * max_cap_maint_5 + c * max_cap_maint_5**2 + d * max_cap_maint_5 * hspf + e + max_capacity_47 = heat_pump.heating_capacity * hp_ap.heat_capacity_ratios[-1] + min_capacity_47 = max_capacity_47 / hp_ap.heat_capacity_ratios[-1] * hp_ap.heat_capacity_ratios[0] + min_cop_47 = is_ducted ? max_cop_47 * (-0.0306 * hspf + 1.5385) : max_cop_47 * (-0.01698 * hspf + 1.5907) + max_capacity_5 = max_capacity_47 * max_cap_maint_5 + max_cop_5 = is_ducted ? max_cop_47 * 0.587 : max_cop_47 * 0.671 + min_capacity_5 = is_ducted ? min_capacity_47 * 1.106 : min_capacity_47 * 0.611 + min_cop_5 = is_ducted ? min_cop_47 * 0.502 : min_cop_47 * 0.538 + + # performance data at 47F, maximum speed + detailed_performance_data.add(capacity: max_capacity_47.round(1), + efficiency_cop: max_cop_47.round(4), + capacity_description: HPXML::CapacityDescriptionMaximum, + outdoor_temperature: 47, + isdefaulted: true) + # performance data at 47F, minimum speed + detailed_performance_data.add(capacity: min_capacity_47.round(1), + efficiency_cop: min_cop_47.round(4), + capacity_description: HPXML::CapacityDescriptionMinimum, + outdoor_temperature: 47, + isdefaulted: true) + # performance data at 5F, maximum speed + detailed_performance_data.add(capacity: max_capacity_5.round(1), + efficiency_cop: max_cop_5.round(4), + capacity_description: HPXML::CapacityDescriptionMaximum, + outdoor_temperature: 5, + isdefaulted: true) + # performance data at 5F, minimum speed + detailed_performance_data.add(capacity: min_capacity_5.round(1), + efficiency_cop: min_cop_5.round(4), + capacity_description: HPXML::CapacityDescriptionMinimum, + outdoor_temperature: 5, + isdefaulted: true) + end + + def self.set_cool_detailed_performance_data(heat_pump) hp_ap = heat_pump.additional_properties + is_ducted = !heat_pump.distribution_system_idref.nil? + seer = heat_pump.cooling_efficiency_seer + + # Default data inputs based on NEEP data + detailed_performance_data = heat_pump.cooling_detailed_performance_data + max_cap_maint_82 = 1.0 - (1.0 - hp_ap.cooling_capacity_retention_fraction) * (HVAC::AirSourceCoolRatedODB - 82.0) / + (HVAC::AirSourceCoolRatedODB - hp_ap.cooling_capacity_retention_temperature) + + max_cop_95 = is_ducted ? 0.1953 * seer : 0.06635 * seer + 1.8707 + max_capacity_95 = heat_pump.cooling_capacity * hp_ap.cool_capacity_ratios[-1] + min_capacity_95 = max_capacity_95 / hp_ap.cool_capacity_ratios[-1] * hp_ap.cool_capacity_ratios[0] + min_cop_95 = is_ducted ? max_cop_95 * 1.231 : max_cop_95 * (0.01377 * seer + 1.13948) + max_capacity_82 = max_capacity_95 * max_cap_maint_82 + max_cop_82 = is_ducted ? (1.297 * max_cop_95) : (1.300 * max_cop_95) + min_capacity_82 = min_capacity_95 * 1.099 + min_cop_82 = is_ducted ? (1.402 * min_cop_95) : (1.333 * min_cop_95) + + # performance data at 95F, maximum speed + detailed_performance_data.add(capacity: max_capacity_95.round(1), + efficiency_cop: max_cop_95.round(4), + capacity_description: HPXML::CapacityDescriptionMaximum, + outdoor_temperature: 95, + isdefaulted: true) + # performance data at 95F, minimum speed + detailed_performance_data.add(capacity: min_capacity_95.round(1), + efficiency_cop: min_cop_95.round(4), + capacity_description: HPXML::CapacityDescriptionMinimum, + outdoor_temperature: 95, + isdefaulted: true) + # performance data at 82F, maximum speed + detailed_performance_data.add(capacity: max_capacity_82.round(1), + efficiency_cop: max_cop_82.round(4), + capacity_description: HPXML::CapacityDescriptionMaximum, + outdoor_temperature: 82, + isdefaulted: true) + # performance data at 82F, minimum speed + detailed_performance_data.add(capacity: min_capacity_82.round(1), + efficiency_cop: min_cop_82.round(4), + capacity_description: HPXML::CapacityDescriptionMinimum, + outdoor_temperature: 82, + isdefaulted: true) + end + + def self.get_heat_capacity_ratios(heat_pump) + # For each speed, ratio of capacity to nominal capacity + if heat_pump.compressor_type == HPXML::HVACCompressorTypeSingleStage + return [1.0] + elsif heat_pump.compressor_type == HPXML::HVACCompressorTypeTwoStage + return [0.72, 1.0] + elsif heat_pump.compressor_type == HPXML::HVACCompressorTypeVariableSpeed + is_ducted = !heat_pump.distribution_system_idref.nil? + if is_ducted + nominal_to_max_ratio = 0.972 + else + nominal_to_max_ratio = 0.812 + end + if is_ducted && heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpAirToAir + # central ducted + return [0.358 / nominal_to_max_ratio, 1.0, 1.0 / nominal_to_max_ratio] + elsif !is_ducted + # wall placement + return [0.252 / nominal_to_max_ratio, 1.0, 1.0 / nominal_to_max_ratio] + else + # ducted minisplit + return [0.305 / nominal_to_max_ratio, 1.0, 1.0 / nominal_to_max_ratio] + end + end + + fail 'Unable to get heating capacity ratios.' + end - # From Daikin mini-split lab testing - hp_ap.heat_eir_ft_spec = [[0.9999941697687026, 0.004684593830254383, 5.901286675833333e-05, -0.0028624467783091973, 1.3041120194135802e-05, -0.00016172918478765433]] * num_speeds - hp_ap.heat_cap_fflow_spec = [[1, 0, 0]] * num_speeds - hp_ap.heat_eir_fflow_spec = [[1, 0, 0]] * num_speeds + def self.drop_intermediate_speeds(hvac_system) + # For variable-speed systems, we only want to model min/max speeds in E+. + # Here we drop any intermediate speeds that we may have added for other purposes (e.g. hvac sizing). + return unless hvac_system.compressor_type == HPXML::HVACCompressorTypeVariableSpeed - hp_ap.heat_cap_ft_spec = calc_heat_cap_ft_spec(heat_pump, num_speeds) + hvac_ap = hvac_system.additional_properties - # fan speed ratios - hp_ap.heat_capacity_ratios = [0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0, 1.1, 1.2] - hp_ap.heat_rated_cfm_per_ton = get_default_heat_cfm_per_ton(num_speeds) - hp_ap.heat_rated_airflow_rate = hp_ap.heat_rated_cfm_per_ton[-1] * hp_ap.heat_capacity_ratios[-1] - hp_ap.heat_fan_speed_ratios = calc_fan_speed_ratios(hp_ap.heat_capacity_ratios, hp_ap.heat_rated_cfm_per_ton, hp_ap.heat_rated_airflow_rate) + while hvac_ap.cool_capacity_ratios.size > 2 + hvac_ap.cool_cap_fflow_spec.delete_at(1) + hvac_ap.cool_eir_fflow_spec.delete_at(1) + hvac_ap.cool_plf_fplr_spec.delete_at(1) + hvac_ap.cool_rated_cfm_per_ton.delete_at(1) + hvac_ap.cool_capacity_ratios.delete_at(1) + hvac_ap.cool_fan_speed_ratios.delete_at(1) + end + if hvac_system.is_a? HPXML::HeatPump + while hvac_ap.heat_capacity_ratios.size > 2 + hvac_ap.heat_cap_fflow_spec.delete_at(1) + hvac_ap.heat_eir_fflow_spec.delete_at(1) + hvac_ap.heat_plf_fplr_spec.delete_at(1) + hvac_ap.heat_rated_cfm_per_ton.delete_at(1) + hvac_ap.heat_capacity_ratios.delete_at(1) + hvac_ap.heat_fan_speed_ratios.delete_at(1) + end + end end - def self.get_default_cool_cfm_per_ton(num_speeds, use_eer = false) + def self.get_default_cool_cfm_per_ton(compressor_type, use_eer = false) # cfm/ton of rated capacity - if num_speeds == 1 + if compressor_type == HPXML::HVACCompressorTypeSingleStage if not use_eer return [394.2] else return [312] # medium speed end - elsif num_speeds == 2 + elsif compressor_type == HPXML::HVACCompressorTypeTwoStage return [411.0083, 344.1] - elsif num_speeds == 4 - return [466.6667, 423.5294, 405.9701, 400.0] - elsif num_speeds == 10 - return [470.6, 433.1356, 407.1997, 388.2406, 373.6898, 362.2454, 352.9412, 345.2945, 338.8354, 333.3333] + elsif compressor_type == HPXML::HVACCompressorTypeVariableSpeed + return [400.0, 400.0] else - fail 'number of speeds not supported.' + fail 'Compressor type not supported.' end end - def self.get_default_heat_cfm_per_ton(num_speeds, use_cop_or_htg_sys = false) + def self.get_default_heat_cfm_per_ton(compressor_type, use_cop_or_htg_sys = false) # cfm/ton of rated capacity - if num_speeds == 1 + if compressor_type == HPXML::HVACCompressorTypeSingleStage if not use_cop_or_htg_sys return [384.1] else return [350] end - elsif num_speeds == 2 + elsif compressor_type == HPXML::HVACCompressorTypeTwoStage return [391.3333, 352.2] - elsif num_speeds == 4 - return [566.8091, 402.9357, 296.9, 301.9752] - elsif num_speeds == 10 - return [666.6667, 555.6000, 488.8800, 444.4667, 412.6857, 388.9000, 370.3556, 355.5600, 343.4182, 333.3333] + elsif compressor_type == HPXML::HVACCompressorTypeVariableSpeed + return [400.0, 400.0, 400.0] else - fail 'number of speeds not supported.' + fail 'Compressor type not supported.' end end @@ -1222,19 +1455,22 @@ def self.set_curves_gshp(heat_pump) hp_ap.cool_power_curve_spec = [[-4.42471086639888, 0.658017281046304, 4.37331801294626, 0.174096187531254, -0.0526514790164159]] hp_ap.cool_sh_curve_spec = [[4.54172823345154, 14.7653304889134, -18.3541272090485, -0.74401391092935, 0.545560799548833, 0.0182620032235494]] hp_ap.cool_rated_shrs_gross = [heat_pump.cooling_shr] - # FUTURE: Reconcile these fan/pump adjustments with ANSI/RESNET/ICC 301-2019 Section 4.4.5 - fan_adjust_kw = UnitConversions.convert(400.0, 'Btu/hr', 'ton') * UnitConversions.convert(1.0, 'cfm', 'm^3/s') * 1000.0 * 0.35 * 249.0 / 300.0 # Adjustment per ISO 13256-1 Internal pressure drop across heat pump assumed to be 0.5 in. w.g. - pump_adjust_kw = UnitConversions.convert(3.0, 'Btu/hr', 'ton') * UnitConversions.convert(1.0, 'gal/min', 'm^3/s') * 1000.0 * 6.0 * 2990.0 / 3000.0 # Adjustment per ISO 13256-1 Internal Pressure drop across heat pump coil assumed to be 11ft w.g. - cool_eir = UnitConversions.convert((1.0 - heat_pump.cooling_efficiency_eer * (fan_adjust_kw + pump_adjust_kw)) / (heat_pump.cooling_efficiency_eer * (1.0 + UnitConversions.convert(fan_adjust_kw, 'Wh', 'Btu'))), 'Wh', 'Btu') - hp_ap.cool_rated_eirs = [cool_eir] # E+ equation fit coil coefficients from Tang's thesis: # See Appendix B Figure B.3 of https://hvac.okstate.edu/sites/default/files/pubs/theses/MS/27-Tang_Thesis_05.pdf # Coefficients generated by catalog data hp_ap.heat_cap_curve_spec = [[-5.12650150, -0.93997630, 7.21443206, 0.121065721, 0.051809805]] hp_ap.heat_power_curve_spec = [[-7.73235249, 6.43390775, 2.29152262, -0.175598629, 0.005888871]] - heat_eir = (1.0 - heat_pump.heating_efficiency_cop * (fan_adjust_kw + pump_adjust_kw)) / (heat_pump.heating_efficiency_cop * (1.0 - fan_adjust_kw)) - hp_ap.heat_rated_eirs = [heat_eir] + + # Fan/pump adjustments calculations + power_f = heat_pump.fan_watts_per_cfm * 400.0 / UnitConversions.convert(1.0, 'ton', 'Btu/hr') * UnitConversions.convert(1.0, 'W', 'kW') # 400 cfm/ton, result is in kW per Btu/hr of capacity + power_p = heat_pump.pump_watts_per_ton / UnitConversions.convert(1.0, 'ton', 'Btu/hr') * UnitConversions.convert(1.0, 'W', 'kW') # result is in kW per Btu/hr of capacity + + cool_eir = (1 - UnitConversions.convert(power_f, 'Wh', 'Btu')) / UnitConversions.convert(heat_pump.cooling_efficiency_eer, 'Btu', 'Wh') - power_f - power_p + heat_eir = (1 + UnitConversions.convert(power_f, 'Wh', 'Btu')) / heat_pump.heating_efficiency_cop - power_f - power_p + + hp_ap.cool_rated_cops = [1.0 / cool_eir] + hp_ap.heat_rated_cops = [1.0 / heat_eir] end def self.get_default_compressor_type(hvac_type, seer) @@ -1428,44 +1664,6 @@ def self.set_pump_power_ems_program(model, pump_w, pump, heating_object) pump_program_calling_manager.addProgram(pump_program) end - def self.set_boiler_pilot_light_ems_program(model, boiler, heating_system) - # Create Equipment object for fuel consumption - loc_space = model.getSpaces[0] # Arbitrary; not used - fuel_type = heating_system.heating_system_fuel - pilot_light_object = HotWaterAndAppliances.add_other_equipment(model, Constants.ObjectNameBoilerPilotLight(boiler.name), loc_space, 0.01, 0, 0, model.alwaysOnDiscreteSchedule, fuel_type) - - # Sensor - boiler_plr_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Boiler Part Load Ratio') - boiler_plr_sensor.setName("#{boiler.name} plr s") - boiler_plr_sensor.setKeyName(boiler.name.to_s) - - # Actuator - pilot_light_act = OpenStudio::Model::EnergyManagementSystemActuator.new(pilot_light_object, *EPlus::EMSActuatorOtherEquipmentPower, pilot_light_object.space.get) - pilot_light_act.setName("#{boiler.name} pilot light act") - - # Program - pilot_light_program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) - pilot_light_program.setName("#{boiler.name} pilot light program") - pilot_light_program.addLine("Set #{pilot_light_act.name} = (1.0 - #{boiler_plr_sensor.name}) * #{UnitConversions.convert(heating_system.pilot_light_btuh.to_f, 'Btu/hr', 'W')}") - pilot_light_program.addLine("Set boiler_pilot_energy = #{pilot_light_act.name} * 3600 * SystemTimeStep") - - # Program Calling Manager - program_calling_manager = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model) - program_calling_manager.setName("#{boiler.name} pilot light program manager") - program_calling_manager.setCallingPoint('EndOfSystemTimestepBeforeHVACReporting') - program_calling_manager.addProgram(pilot_light_program) - - # EMS Output Variable for reporting - pilot_light_output_var = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, 'boiler_pilot_energy') - pilot_light_output_var.setName("#{Constants.ObjectNameBoilerPilotLight(boiler.name)} outvar") - pilot_light_output_var.setTypeOfDataInVariable('Summed') - pilot_light_output_var.setUpdateFrequency('SystemTimestep') - pilot_light_output_var.setEMSProgramOrSubroutineName(pilot_light_program) - pilot_light_output_var.setUnits('J') - pilot_light_output_var.additionalProperties.setFeature('FuelType', EPlus.fuel_type(fuel_type)) # Used by reporting measure - pilot_light_output_var.additionalProperties.setFeature('HPXML_ID', heating_system.id) # Used by reporting measure - end - def self.disaggregate_fan_or_pump(model, fan_or_pump, htg_object, clg_object, backup_htg_object, hpxml_object) # Disaggregate into heating/cooling output energy use. @@ -1548,15 +1746,23 @@ def self.disaggregate_fan_or_pump(model, fan_or_pump, htg_object, clg_object, ba fan_or_pump_program.addLine("Set #{fan_or_pump_var}_#{mode} = 0") end sensors.each_with_index do |(mode, sensor), i| - str_prefix = (i == 0 ? 'If' : 'ElseIf') + if i == 0 + if_else_str = "If #{sensor.name} > 0" + elsif i == sensors.size - 1 + # Use else for last mode to make sure we don't miss any energy use + # See https://github.com/NREL/OpenStudio-HPXML/issues/1424 + if_else_str = 'Else' + else + if_else_str = "ElseIf #{sensor.name} > 0" + end if mode == 'primary_htg' && sensors.keys[i + 1] == 'backup_htg' # HP with both primary and backup heating # If both are operating, apportion energy use - fan_or_pump_program.addLine("#{str_prefix} (#{sensor.name} > 0) && (#{sensors.values[i + 1].name} > 0)") + fan_or_pump_program.addLine("#{if_else_str} && (#{sensors.values[i + 1].name} > 0)") fan_or_pump_program.addLine(" Set #{fan_or_pump_var}_#{mode} = #{fan_or_pump_sensor.name} * #{sensor.name} / (#{sensor.name} + #{sensors.values[i + 1].name})") fan_or_pump_program.addLine(" Set #{fan_or_pump_var}_#{sensors.keys[i + 1]} = #{fan_or_pump_sensor.name} * #{sensors.values[i + 1].name} / (#{sensor.name} + #{sensors.values[i + 1].name})") end - fan_or_pump_program.addLine("#{str_prefix} #{sensor.name} > 0") + fan_or_pump_program.addLine(if_else_str) fan_or_pump_program.addLine(" Set #{fan_or_pump_var}_#{mode} = #{fan_or_pump_sensor.name}") end fan_or_pump_program.addLine('EndIf') @@ -1571,19 +1777,20 @@ def self.disaggregate_fan_or_pump(model, fan_or_pump, htg_object, clg_object, ba next if sensor.nil? fan_or_pump_ems_output_var = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, "#{fan_or_pump_var}_#{mode}") - name = { 'clg' => Constants.ObjectNameFanPumpDisaggregateCool(fan_or_pump.name.to_s), - 'primary_htg' => Constants.ObjectNameFanPumpDisaggregatePrimaryHeat(fan_or_pump.name.to_s), - 'backup_htg' => Constants.ObjectNameFanPumpDisaggregateBackupHeat(fan_or_pump.name.to_s) }[mode] - fan_or_pump_ems_output_var.setName(name) + object_type = { 'clg' => Constants.ObjectNameFanPumpDisaggregateCool, + 'primary_htg' => Constants.ObjectNameFanPumpDisaggregatePrimaryHeat, + 'backup_htg' => Constants.ObjectNameFanPumpDisaggregateBackupHeat }[mode] + fan_or_pump_ems_output_var.setName("#{fan_or_pump.name} #{object_type}") fan_or_pump_ems_output_var.setTypeOfDataInVariable('Summed') fan_or_pump_ems_output_var.setUpdateFrequency('SystemTimestep') fan_or_pump_ems_output_var.setEMSProgramOrSubroutineName(fan_or_pump_program) fan_or_pump_ems_output_var.setUnits('J') fan_or_pump_ems_output_var.additionalProperties.setFeature('HPXML_ID', sys_id) # Used by reporting measure + fan_or_pump_ems_output_var.additionalProperties.setFeature('ObjectType', object_type) # Used by reporting measure end end - def self.adjust_dehumidifier_load_EMS(fraction_served, zone_hvac, model, living_space) + def self.adjust_dehumidifier_load_EMS(fraction_served, zone_hvac, model, conditioned_space) # adjust hvac load to space when dehumidifier serves less than 100% dehumidification load. (With E+ dehumidifier object, it can only model 100%) # sensor @@ -1603,7 +1810,7 @@ def self.adjust_dehumidifier_load_EMS(fraction_served, zone_hvac, model, living_ dehumidifier_load_adj_def.setFractionLost(0) dehumidifier_load_adj = OpenStudio::Model::OtherEquipment.new(dehumidifier_load_adj_def) dehumidifier_load_adj.setName("#{zone_hvac.name} sens htg adj") - dehumidifier_load_adj.setSpace(living_space) + dehumidifier_load_adj.setSpace(conditioned_space) dehumidifier_load_adj.setSchedule(model.alwaysOnDiscreteSchedule) dehumidifier_load_adj_act = OpenStudio::Model::EnergyManagementSystemActuator.new(dehumidifier_load_adj, *EPlus::EMSActuatorOtherEquipmentPower, dehumidifier_load_adj.space.get) @@ -1640,12 +1847,12 @@ def self.create_supp_heating_coil(model, obj_name, heat_pump) else htg_supp_coil = OpenStudio::Model::CoilHeatingGas.new(model) htg_supp_coil.setGasBurnerEfficiency(efficiency) - htg_supp_coil.setParasiticElectricLoad(0) - htg_supp_coil.setParasiticGasLoad(0) + htg_supp_coil.setOnCycleParasiticElectricLoad(0) + htg_supp_coil.setOffCycleParasiticGasLoad(0) htg_supp_coil.setFuelType(EPlus.fuel_type(fuel)) end htg_supp_coil.setNominalCapacity(UnitConversions.convert(capacity, 'Btu/hr', 'W')) - htg_supp_coil.setName(obj_name + ' ' + Constants.ObjectNameBackupHeatingCoil) + htg_supp_coil.setName(obj_name + ' backup htg coil') htg_supp_coil.additionalProperties.setFeature('HPXML_ID', heat_pump.id) # Used by reporting measure htg_supp_coil.additionalProperties.setFeature('IsHeatPumpBackup', true) # Used by reporting measure @@ -1668,13 +1875,18 @@ def self.create_supply_fan(model, obj_name, fan_watts_per_cfm, fan_cfms) fan_cfms.sort.each do |fan_cfm| fan_ratio = fan_cfm / max_fan_cfm - power_fraction = fan_ratio**3 # fan power curve + power_fraction = calculate_fan_power_from_curve(1.0, fan_ratio) fan.addSpeed(fan_ratio.round(5), power_fraction.round(5)) end return fan end + def self.calculate_fan_power_from_curve(max_fan_power, fan_ratio) + # Cubic relationship fan power curve + return max_fan_power * (fan_ratio**3) + end + def self.set_fan_power(fan, fan_watts_per_cfm) if fan_watts_per_cfm > 0 fan_eff = 0.75 # Overall Efficiency of the Fan, Motor and Drive @@ -1699,14 +1911,12 @@ def self.create_air_loop_unitary_system(model, obj_name, fan, htg_coil, clg_coil air_loop_unitary.setSupplyFan(fan) air_loop_unitary.setFanPlacement('BlowThrough') air_loop_unitary.setSupplyAirFanOperatingModeSchedule(cycle_fan_sch) - air_loop_unitary.setSupplyAirFlowRateMethodDuringHeatingOperation('SupplyAirFlowRate') if htg_coil.nil? air_loop_unitary.setSupplyAirFlowRateDuringHeatingOperation(0.0) else air_loop_unitary.setHeatingCoil(htg_coil) air_loop_unitary.setSupplyAirFlowRateDuringHeatingOperation(UnitConversions.convert(htg_cfm, 'cfm', 'm^3/s')) end - air_loop_unitary.setSupplyAirFlowRateMethodDuringCoolingOperation('SupplyAirFlowRate') if clg_coil.nil? air_loop_unitary.setSupplyAirFlowRateDuringCoolingOperation(0.0) else @@ -1841,38 +2051,22 @@ def self.get_default_boiler_eae(heating_system) end end - def self.calc_heat_cap_ft_spec(heat_pump, num_speeds) - if heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpMiniSplit - # Coefficients for the indoor temperature relationship are retained from the generic curve (Daikin lab data). - iat_slope = -0.005770375 - iat_intercept = 0.403926296 - else - if num_speeds == 1 - iat_slope = -0.002303414 - iat_intercept = 0.18417308 - elsif num_speeds == 2 - iat_slope = -0.002947013 - iat_intercept = 0.23168251 - elsif num_speeds == 4 - iat_slope = -0.002897048 - iat_intercept = 0.209319129 - end + def self.calc_heat_cap_ft_spec(compressor_type, heating_capacity_retention_temp, heating_capacity_retention_fraction) + if compressor_type == HPXML::HVACCompressorTypeSingleStage + iat_slope = -0.002303414 + iat_intercept = 0.18417308 + num_speeds = 1 + elsif compressor_type == HPXML::HVACCompressorTypeTwoStage + iat_slope = -0.002947013 + iat_intercept = 0.23168251 + num_speeds = 2 end # Biquadratic: capacity multiplier = a + b*IAT + c*IAT^2 + d*OAT + e*OAT^2 + f*IAT*OAT # Derive coefficients from user input for capacity retention at outdoor drybulb temperature X [C]. - if not heat_pump.heating_capacity_17F.nil? - x_A = 17.0 - if heat_pump.heating_capacity > 0 - y_A = heat_pump.heating_capacity_17F / heat_pump.heating_capacity - else - y_A = 0.0 - end - else - x_A = heat_pump.heating_capacity_retention_temp - y_A = heat_pump.heating_capacity_retention_fraction - end - x_B = 47.0 # 47F is the rating point + x_A = heating_capacity_retention_temp + y_A = heating_capacity_retention_fraction + x_B = HVAC::AirSourceHeatRatedODB y_B = 1.0 oat_slope = (y_B - y_A) / (x_B - x_A) @@ -1881,960 +2075,429 @@ def self.calc_heat_cap_ft_spec(heat_pump, num_speeds) return [[oat_intercept + iat_intercept, iat_slope, 0, oat_slope, 0, 0]] * num_speeds end - def self.calc_eir_from_cop(cop, fan_power_rated) - return UnitConversions.convert((UnitConversions.convert(1.0, 'Btu', 'Wh') + fan_power_rated * 0.03333) / cop - fan_power_rated * 0.03333, 'Wh', 'Btu') + def self.get_heating_capacity_retention(heat_pump) + if not heat_pump.heating_capacity_17F.nil? + heating_capacity_retention_temp = 17.0 + heating_capacity_retention_fraction = heat_pump.heating_capacity == 0.0 ? 0.0 : heat_pump.heating_capacity_17F / heat_pump.heating_capacity + elsif not heat_pump.heating_capacity_retention_fraction.nil? + heating_capacity_retention_temp = heat_pump.heating_capacity_retention_temp + heating_capacity_retention_fraction = heat_pump.heating_capacity_retention_fraction + else + fail 'Missing heating capacity retention or 17F heating capacity.' + end + return heating_capacity_retention_temp, heating_capacity_retention_fraction end - def self.calc_eir_from_eer(eer, fan_power_rated) - return UnitConversions.convert((1.0 - UnitConversions.convert(fan_power_rated * 0.03333, 'Wh', 'Btu')) / eer - fan_power_rated * 0.03333, 'Wh', 'Btu') + def self.calc_fan_speed_ratios(capacity_ratios, rated_cfm_per_tons, rated_airflow_rate) + fan_speed_ratios = [] + capacity_ratios.each_with_index do |capacity_ratio, i| + fan_speed_ratios << rated_cfm_per_tons[i] * capacity_ratio / rated_airflow_rate + end + return fan_speed_ratios end - def self.calc_eer_from_eir(eir, fan_power_rated) - cfm_per_ton = 400.0 - cfm_per_btuh = cfm_per_ton / 12000.0 - return ((1.0 - 3.412 * (fan_power_rated * cfm_per_btuh)) / (eir / 3.412 + (fan_power_rated * cfm_per_btuh))) + def self.convert_curve_biquadratic(coeff) + # Convert IP curves to SI curves + si_coeff = [] + si_coeff << coeff[0] + 32.0 * (coeff[1] + coeff[3]) + 1024.0 * (coeff[2] + coeff[4] + coeff[5]) + si_coeff << 9.0 / 5.0 * coeff[1] + 576.0 / 5.0 * coeff[2] + 288.0 / 5.0 * coeff[5] + si_coeff << 81.0 / 25.0 * coeff[2] + si_coeff << 9.0 / 5.0 * coeff[3] + 576.0 / 5.0 * coeff[4] + 288.0 / 5.0 * coeff[5] + si_coeff << 81.0 / 25.0 * coeff[4] + si_coeff << 81.0 / 25.0 * coeff[5] + return si_coeff end - def self.calc_eers_from_eir_2speed(eer_2, fan_power_rated) - # Returns low and high stage EER A given high stage EER A + def self.create_table_lookup(model, name, independent_vars, output_values, output_min = nil, output_max = nil) + if (not output_min.nil?) && (output_values.min < output_min) + fail "Minimum table lookup output value (#{output_values.min}) is less than #{output_min} for #{name}." + end + if (not output_max.nil?) && (output_values.max > output_max) + fail "Maximum table lookup output value (#{output_values.max}) is greater than #{output_max} for #{name}." + end - eir_2_a = calc_eir_from_eer(eer_2, fan_power_rated) + table = OpenStudio::Model::TableLookup.new(model) + table.setName(name) + independent_vars.each do |var| + ind_var = OpenStudio::Model::TableIndependentVariable.new(model) + ind_var.setName(var[:name]) + ind_var.setMinimumValue(var[:min]) + ind_var.setMaximumValue(var[:max]) + ind_var.setExtrapolationMethod('Constant') + ind_var.setValues(var[:values]) + table.addIndependentVariable(ind_var) + end + table.setMinimumOutput(output_min) unless output_min.nil? + table.setMaximumOutput(output_max) unless output_max.nil? + table.setOutputValues(output_values) + return table + end - eir_1_a = 0.8887 * eir_2_a + 0.0083 # Relationship derived using Dylan's data for two stage heat pumps + def self.create_curve_biquadratic_constant(model) + curve = OpenStudio::Model::CurveBiquadratic.new(model) + curve.setName('ConstantBiquadratic') + curve.setCoefficient1Constant(1) + curve.setCoefficient2x(0) + curve.setCoefficient3xPOW2(0) + curve.setCoefficient4y(0) + curve.setCoefficient5yPOW2(0) + curve.setCoefficient6xTIMESY(0) + curve.setMinimumValueofx(-100) + curve.setMaximumValueofx(100) + curve.setMinimumValueofy(-100) + curve.setMaximumValueofy(100) + return curve + end - return [calc_eer_from_eir(eir_1_a, fan_power_rated), eer_2] + def self.create_curve_quadratic_constant(model) + curve = OpenStudio::Model::CurveQuadratic.new(model) + curve.setName('ConstantQuadratic') + curve.setCoefficient1Constant(1) + curve.setCoefficient2x(0) + curve.setCoefficient3xPOW2(0) + curve.setMinimumValueofx(-100) + curve.setMaximumValueofx(100) + curve.setMinimumCurveOutput(-100) + curve.setMaximumCurveOutput(100) + return curve end - def self.calc_eers_from_eir_4speed(eer_nom, fan_power_rated, calc_type = 'seer') - # Returns EER A at minimum, intermediate, and nominal speed given EER A (and a fourth speed if calc_type != 'seer') + def self.create_curve_biquadratic(model, coeff, name, min_x, max_x, min_y, max_y) + curve = OpenStudio::Model::CurveBiquadratic.new(model) + curve.setName(name) + curve.setCoefficient1Constant(coeff[0]) + curve.setCoefficient2x(coeff[1]) + curve.setCoefficient3xPOW2(coeff[2]) + curve.setCoefficient4y(coeff[3]) + curve.setCoefficient5yPOW2(coeff[4]) + curve.setCoefficient6xTIMESY(coeff[5]) + curve.setMinimumValueofx(min_x) + curve.setMaximumValueofx(max_x) + curve.setMinimumValueofy(min_y) + curve.setMaximumValueofy(max_y) + return curve + end - eir_nom = calc_eir_from_eer(eer_nom, fan_power_rated) + def self.create_curve_bicubic(model, coeff, name, min_x, max_x, min_y, max_y) + curve = OpenStudio::Model::CurveBicubic.new(model) + curve.setName(name) + curve.setCoefficient1Constant(coeff[0]) + curve.setCoefficient2x(coeff[1]) + curve.setCoefficient3xPOW2(coeff[2]) + curve.setCoefficient4y(coeff[3]) + curve.setCoefficient5yPOW2(coeff[4]) + curve.setCoefficient6xTIMESY(coeff[5]) + curve.setCoefficient7xPOW3(coeff[6]) + curve.setCoefficient8yPOW3(coeff[7]) + curve.setCoefficient9xPOW2TIMESY(coeff[8]) + curve.setCoefficient10xTIMESYPOW2(coeff[9]) + curve.setMinimumValueofx(min_x) + curve.setMaximumValueofx(max_x) + curve.setMinimumValueofy(min_y) + curve.setMaximumValueofy(max_y) + return curve + end - if calc_type == 'seer' - indices = [0, 1, 4] - else - indices = [0, 1, 2, 4] + def self.create_curve_quadratic(model, coeff, name, min_x, max_x, min_y, max_y, is_dimensionless = false) + curve = OpenStudio::Model::CurveQuadratic.new(model) + curve.setName(name) + curve.setCoefficient1Constant(coeff[0]) + curve.setCoefficient2x(coeff[1]) + curve.setCoefficient3xPOW2(coeff[2]) + curve.setMinimumValueofx(min_x) + curve.setMaximumValueofx(max_x) + if not min_y.nil? + curve.setMinimumCurveOutput(min_y) end - - cop_ratios = [1.07, 1.11, 1.08, 1.05, 1.0] # Gross cop - - # Seer calculation is based on performance at three speeds - cops = [cop_ratios[indices[0]], cop_ratios[indices[1]], cop_ratios[indices[2]]] - - if calc_type != 'seer' - cops << cop_ratios[indices[3]] + if not max_y.nil? + curve.setMaximumCurveOutput(max_y) end - - eers = [] - cops.each do |mult| - eir = eir_nom / mult - eers << calc_eer_from_eir(eir, fan_power_rated) + if is_dimensionless + curve.setInputUnitTypeforX('Dimensionless') + curve.setOutputUnitType('Dimensionless') end + return curve + end - return eers + def self.create_curve_quad_linear(model, coeff, name) + curve = OpenStudio::Model::CurveQuadLinear.new(model) + curve.setName(name) + curve.setCoefficient1Constant(coeff[0]) + curve.setCoefficient2w(coeff[1]) + curve.setCoefficient3x(coeff[2]) + curve.setCoefficient4y(coeff[3]) + curve.setCoefficient5z(coeff[4]) + return curve end - def self.calc_cop_from_eir(eir, fan_power_rated) - cfm_per_ton = 400.0 - cfm_per_btuh = cfm_per_ton / 12000.0 - return (1.0 / 3.412 + fan_power_rated * cfm_per_btuh) / (eir / 3.412 + fan_power_rated * cfm_per_btuh) + def self.create_curve_quint_linear(model, coeff, name) + curve = OpenStudio::Model::CurveQuintLinear.new(model) + curve.setName(name) + curve.setCoefficient1Constant(coeff[0]) + curve.setCoefficient2v(coeff[1]) + curve.setCoefficient3w(coeff[2]) + curve.setCoefficient4x(coeff[3]) + curve.setCoefficient5y(coeff[4]) + curve.setCoefficient6z(coeff[5]) + return curve end - def self.calc_cops_from_eir_2speed(cop_2, fan_power_rated) - # Returns low and high stage rated cop given high stage cop + def self.convert_net_to_gross_capacity_cop(net_cap, fan_power, mode, net_cop = nil) + net_cap_watts = UnitConversions.convert(net_cap, 'Btu/hr', 'w') + if mode == :clg + gross_cap_watts = net_cap_watts + fan_power + else + gross_cap_watts = net_cap_watts - fan_power + end + if not net_cop.nil? + net_power = net_cap_watts / net_cop + gross_power = net_power - fan_power + gross_cop = gross_cap_watts / gross_power + end + gross_cap_btu_hr = UnitConversions.convert(gross_cap_watts, 'w', 'Btu/hr') + return gross_cap_btu_hr, gross_cop + end - eir_2 = calc_eir_from_cop(cop_2, fan_power_rated) + def self.process_neep_detailed_performance(detailed_performance_data, hvac_ap, mode, max_rated_fan_cfm, weather_temp, compressor_lockout_temp = nil) + data_array = Array.new(2) { Array.new } + detailed_performance_data.sort_by { |dp| dp.outdoor_temperature }.each do |data_point| + # Only process min and max capacities at each outdoor drybulb + next unless [HPXML::CapacityDescriptionMinimum, HPXML::CapacityDescriptionMaximum].include? data_point.capacity_description - eir_1 = 0.6241 * eir_2 + 0.0681 # Relationship derived using Dylan's data for Carrier two stage heat pumps + if data_point.capacity_description == HPXML::CapacityDescriptionMinimum + data_array[0] << data_point + elsif data_point.capacity_description == HPXML::CapacityDescriptionMaximum + data_array[1] << data_point + end + end - return [calc_cop_from_eir(eir_1, fan_power_rated), cop_2] + # convert net to gross, adds more data points for table lookup, etc. + if mode == :clg + cfm_per_ton = hvac_ap.cool_rated_cfm_per_ton + hvac_ap.cooling_performance_data_array = data_array + hvac_ap.cool_rated_capacities_gross = [] + hvac_ap.cool_rated_capacities_net = [] + hvac_ap.cool_rated_cops = [] + elsif mode == :htg + cfm_per_ton = hvac_ap.heat_rated_cfm_per_ton + hvac_ap.heating_performance_data_array = data_array + hvac_ap.heat_rated_capacities_gross = [] + hvac_ap.heat_rated_capacities_net = [] + hvac_ap.heat_rated_cops = [] + end + # convert net to gross + data_array.each_with_index do |data, speed| + data.each do |dp| + this_cfm = UnitConversions.convert(dp.capacity, 'Btu/hr', 'ton') * cfm_per_ton[speed] + fan_ratio = this_cfm / max_rated_fan_cfm + fan_power = calculate_fan_power_from_curve(hvac_ap.fan_power_rated * max_rated_fan_cfm, fan_ratio) + dp.gross_capacity, dp.gross_efficiency_cop = convert_net_to_gross_capacity_cop(dp.capacity, fan_power, mode, dp.efficiency_cop) + end + end + # convert to table lookup data + interpolate_to_odb_table_points(data_array, mode, compressor_lockout_temp, weather_temp) + add_data_point_adaptive_step_size(data_array, mode) + correct_ft_cap_eir(data_array, mode) + end + + def self.interpolate_to_odb_table_points(data_array, mode, compressor_lockout_temp, weather_temp) + # Set of data used for table lookup + data_array.each do |data| + user_odbs = data.map { |dp| dp.outdoor_temperature } + # Determine min/max ODB temperatures to cover full range of heat pump operation + if mode == :clg + outdoor_dry_bulbs = [] + # Calculate ODB temperature at which COP or capacity is zero + high_odb_at_zero_cop = calculate_odb_at_zero_cop_or_capacity(data, mode, user_odbs, :gross_efficiency_cop, true) + high_odb_at_zero_capacity = calculate_odb_at_zero_cop_or_capacity(data, mode, user_odbs, :gross_capacity, true) + low_odb_at_zero_cop = calculate_odb_at_zero_cop_or_capacity(data, mode, user_odbs, :gross_efficiency_cop, false) + low_odb_at_zero_capacity = calculate_odb_at_zero_cop_or_capacity(data, mode, user_odbs, :gross_capacity, false) + outdoor_dry_bulbs << [low_odb_at_zero_cop, low_odb_at_zero_capacity, 55.0].max # Min cooling ODB + outdoor_dry_bulbs << [high_odb_at_zero_cop, high_odb_at_zero_capacity, weather_temp].min # Max cooling ODB + else + outdoor_dry_bulbs = [] + # Calculate ODB temperature at which COP or capacity is zero + low_odb_at_zero_cop = calculate_odb_at_zero_cop_or_capacity(data, mode, user_odbs, :gross_efficiency_cop, false) + low_odb_at_zero_capacity = calculate_odb_at_zero_cop_or_capacity(data, mode, user_odbs, :gross_capacity, false) + high_odb_at_zero_cop = calculate_odb_at_zero_cop_or_capacity(data, mode, user_odbs, :gross_efficiency_cop, true) + high_odb_at_zero_capacity = calculate_odb_at_zero_cop_or_capacity(data, mode, user_odbs, :gross_capacity, true) + outdoor_dry_bulbs << [low_odb_at_zero_cop, low_odb_at_zero_capacity, compressor_lockout_temp, weather_temp].max # Min heating ODB + outdoor_dry_bulbs << [high_odb_at_zero_cop, high_odb_at_zero_capacity, 60.0].min # Max heating ODB + end + capacity_description = data[0].capacity_description + outdoor_dry_bulbs.each do |target_odb| + next if user_odbs.include? target_odb + + if mode == :clg + new_dp = HPXML::CoolingPerformanceDataPoint.new(nil) + else + new_dp = HPXML::HeatingPerformanceDataPoint.new(nil) + end + new_dp.outdoor_temperature = target_odb + new_dp.gross_capacity = interpolate_to_odb_table_point(data, capacity_description, target_odb, :gross_capacity) + new_dp.gross_efficiency_cop = interpolate_to_odb_table_point(data, capacity_description, target_odb, :gross_efficiency_cop) + data << new_dp + end + end end - def self.calc_cops_from_eir_4speed(cop_nom, fan_power_rated, calc_type: 'hspf') - # Returns rated cop at minimum, intermediate, and nominal speed given rated cop - - eir_nom = calc_eir_from_cop(cop_nom, fan_power_rated) + def self.calculate_odb_at_zero_cop_or_capacity(data, _mode, user_odbs, property, find_high) + if find_high + odb_dp1 = data.find { |dp| dp.outdoor_temperature == user_odbs[-1] } + odb_dp2 = data.find { |dp| dp.outdoor_temperature == user_odbs[-2] } + else + odb_dp1 = data.find { |dp| dp.outdoor_temperature == user_odbs[0] } + odb_dp2 = data.find { |dp| dp.outdoor_temperature == user_odbs[1] } + end - cop_ratios = [1.385171617, 1.183214059, 1.0, 0.95544453] # Updated based on Nordyne 3 ton heat pump + slope = (odb_dp1.send(property) - odb_dp2.send(property)) / (odb_dp1.outdoor_temperature - odb_dp2.outdoor_temperature) - # HSPF calculation is based on performance at three speeds - if calc_type == 'hspf' - indices = [0, 1, 2] - elsif calc_type == 'model' - indices = [0, 1, 2, 3] + # Datapoints don't trend toward zero COP? + if (find_high && slope >= 0) + return 999999.0 + elsif (!find_high && slope <= 0) + return -999999.0 end - cops_net = [] - indices.each do |i| - eir = eir_nom / cop_ratios[i] - cops_net << calc_cop_from_eir(eir, fan_power_rated) - end + intercept = odb_dp2.send(property) - (slope * odb_dp2.outdoor_temperature) + target_odb = -intercept / slope - return cops_net + # Return a slightly larger (or smaller, for cooling) ODB so things don't blow up + delta_odb = 1.0 + if find_high + return target_odb - delta_odb + else + return target_odb + delta_odb + end end - def self.calc_eer_cooling_1speed(seer, c_d, fan_power_rated, coeff_eir) - # Directly calculate cooling coil net EER at condition A (95/80/67) using SEER + def self.interpolate_to_odb_table_point(detailed_performance_data, capacity_description, target_odb, property) + data = detailed_performance_data.select { |dp| dp.capacity_description == capacity_description } - # 1. Calculate EER_b using SEER and c_d - eer_b = seer / (1.0 - 0.5 * c_d) + target_dp = data.find { |dp| dp.outdoor_temperature == target_odb } + if not target_dp.nil? + return target_dp.send(property) + end - # 2. Calculate EIR_b - eir_b = calc_eir_from_eer(eer_b, fan_power_rated) + # Property can be :capacity, :efficiency_cop, etc. + user_odbs = data.map { |dp| dp.outdoor_temperature }.uniq.sort - # 3. Calculate EIR_a using performance curves - eir_a = eir_b / MathTools.biquadratic(67.0, 82.0, coeff_eir[0]) - eer_a = calc_eer_from_eir(eir_a, fan_power_rated) + right_odb = user_odbs.find { |e| e > target_odb } + left_odb = user_odbs.reverse.find { |e| e < target_odb } + if right_odb.nil? + # extrapolation + right_odb = user_odbs[-1] + left_odb = user_odbs[-2] + elsif left_odb.nil? + # extrapolation + right_odb = user_odbs[1] + left_odb = user_odbs[0] + end + right_dp = data.find { |dp| dp.outdoor_temperature == right_odb } + left_dp = data.find { |dp| dp.outdoor_temperature == left_odb } - return eer_a + slope = (right_dp.send(property) - left_dp.send(property)) / (right_odb - left_odb) + val = (target_odb - left_odb) * slope + left_dp.send(property) + return val end - def self.calc_eers_cooling_2speed(seer, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - # Iterate to find rated net EERs given SEER using simple bisection method for two stage heat pumps - - # Initial large bracket of EER (A condition) to span possible SEER range - eer_a = 5.0 - eer_b = 20.0 - - # Iterate - iter_max = 100 - tol = 0.0001 + def self.add_data_point_adaptive_step_size(data_array, mode, tol = 0.1) + data_array.each do |data| + data_sorted = data.sort_by { |dp| dp.outdoor_temperature } + data_sorted.each_with_index do |dp, i| + next unless i < (data_sorted.size - 1) - err = 1 - eer_c = (eer_a + eer_b) / 2.0 - for _n in 1..iter_max - eers = calc_eers_from_eir_2speed(eer_a, fan_power_rated) - f_a = calc_seer_2speed(eers, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - seer - - eers = calc_eers_from_eir_2speed(eer_c, fan_power_rated) - f_c = calc_seer_2speed(eers, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - seer - - if f_c == 0 - return eer_c - elsif f_a * f_c < 0 - eer_b = eer_c - else - eer_a = eer_c - end - - eer_c = (eer_a + eer_b) / 2.0 - err = (eer_b - eer_a) / 2.0 - - if err <= tol - break - end - end - - if err > tol - fail 'Two-speed cooling eers iteration failed to converge.' - end - - return calc_eers_from_eir_2speed(eer_c, fan_power_rated) - end - - def self.calc_eers_cooling_4speed(seer, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - # Iterate to find rated net eers given Seer using simple bisection method for two stage and variable speed air conditioners - - # Initial large bracket of eer (A condition) to span possible seer range - eer_a = 5.0 - eer_b = 30.0 - - # Iterate - iter_max = 100 - tol = 0.0001 - - err = 1 - eer_c = (eer_a + eer_b) / 2.0 - for _n in 1..iter_max - eers = calc_eers_from_eir_4speed(eer_a, fan_power_rated, 'seer') - f_a = calc_seer_4speed(eers, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - seer - - eers = calc_eers_from_eir_4speed(eer_c, fan_power_rated, 'seer') - f_c = calc_seer_4speed(eers, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - seer - - if f_c == 0 - return eer_c - elsif f_a * f_c < 0 - eer_b = eer_c - else - eer_a = eer_c - end - - eer_c = (eer_a + eer_b) / 2.0 - err = (eer_b - eer_a) / 2.0 - - if err <= tol - break - end - end - - if err > tol - fail 'Variable-speed cooling eers iteration failed to converge.' - end - - return calc_eers_from_eir_4speed(eer_c, fan_power_rated, 'model') - end - - def self.calc_seer_2speed(eers, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - eir_A2 = calc_eir_from_eer(eers[1], fan_power_rated) - eir_B2 = eir_A2 * MathTools.biquadratic(67.0, 82.0, coeff_eir[1]) - - eir_A1 = calc_eir_from_eer(eers[0], fan_power_rated) - eir_B1 = eir_A1 * MathTools.biquadratic(67.0, 82.0, coeff_eir[0]) - eir_F1 = eir_A1 * MathTools.biquadratic(67.0, 67.0, coeff_eir[0]) - - q_A2 = 1.0 - q_B2 = q_A2 * MathTools.biquadratic(67.0, 82.0, coeff_q[1]) - - q_B1 = q_A2 * capacity_ratios[0] * MathTools.biquadratic(67.0, 82.0, coeff_q[0]) - q_F1 = q_A2 * capacity_ratios[0] * MathTools.biquadratic(67.0, 67.0, coeff_q[0]) - - cfm_Btu_h = 400.0 / 12000.0 - - q_A2_net = q_A2 - fan_power_rated * 3.412 * cfm_Btu_h - q_B2_net = q_B2 - fan_power_rated * 3.412 * cfm_Btu_h - q_B1_net = q_B1 - fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[0] - q_F1_net = q_F1 - fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[0] - - p_A2 = (q_A2 * eir_A2) / 3.412 + fan_power_rated * cfm_Btu_h - p_B2 = (q_B2 * eir_B2) / 3.412 + fan_power_rated * cfm_Btu_h - p_B1 = (q_B1 * eir_B1) / 3.412 + fan_power_rated * cfm_Btu_h * fanspeed_ratios[0] - p_F1 = (q_F1 * eir_F1) / 3.412 + fan_power_rated * cfm_Btu_h * fanspeed_ratios[0] - - t_bins = [67.0, 72.0, 77.0, 82.0, 87.0, 92.0, 97.0, 102.0] - frac_hours = [0.214, 0.231, 0.216, 0.161, 0.104, 0.052, 0.018, 0.004] - - e_tot = 0.0 - q_tot = 0.0 - (0..7).each do |i| - bL_i = ((t_bins[i] - 65.0) / (95.0 - 65.0)) * (q_A2_net / 1.1) - q_low_i = q_F1_net + ((q_B1_net - q_F1_net) / (82.0 - 67.0)) * (t_bins[i] - 67.0) - e_low_i = p_F1 + ((p_B1 - p_F1) / (82.0 - 67.0)) * (t_bins[i] - 67.0) - q_high_i = q_B2_net + ((q_A2_net - q_B2_net) / (95.0 - 82.0)) * (t_bins[i] - 82.0) - e_high_i = p_B2 + ((p_A2 - p_B2) / (95.0 - 82.0)) * (t_bins[i] - 82.0) - if q_low_i >= bL_i - pLF_i = 1.0 - c_d * (1.0 - (bL_i / q_low_i)) - q_i = bL_i * frac_hours[i] - e_i = (((bL_i / q_low_i) * e_low_i) / pLF_i) * frac_hours[i] - elsif (q_low_i < bL_i) && (bL_i < q_high_i) - x_i = (q_high_i - bL_i) / (q_high_i - q_low_i) - q_i = (x_i * q_low_i + (1.0 - x_i) * q_high_i) * frac_hours[i] - e_i = (x_i * e_low_i + (1.0 - x_i) * e_high_i) * frac_hours[i] - elsif q_high_i <= bL_i - q_i = q_high_i * frac_hours[i] - e_i = e_high_i * frac_hours[i] - end - - e_tot += e_i - q_tot += q_i - end - - seer = q_tot / e_tot - return seer - end - - def self.calc_seer_4speed(eers, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - n_max = 2 - n_int = 1 - n_min = 0 - - wBin = 67.0 - tout_B = 82.0 - tout_E = 87.0 - tout_F = 67.0 - - eir_A2 = calc_eir_from_eer(eers[n_max], fan_power_rated) - eir_B2 = eir_A2 * MathTools.biquadratic(wBin, tout_B, coeff_eir[n_max]) - - eir_Av = calc_eir_from_eer(eers[n_int], fan_power_rated) - eir_Ev = eir_Av * MathTools.biquadratic(wBin, tout_E, coeff_eir[n_int]) - - eir_A1 = calc_eir_from_eer(eers[n_min], fan_power_rated) - eir_B1 = eir_A1 * MathTools.biquadratic(wBin, tout_B, coeff_eir[n_min]) - eir_F1 = eir_A1 * MathTools.biquadratic(wBin, tout_F, coeff_eir[n_min]) - - q_A2 = capacity_ratios[n_max] - q_B2 = q_A2 * MathTools.biquadratic(wBin, tout_B, coeff_q[n_max]) - q_Ev = capacity_ratios[n_int] * MathTools.biquadratic(wBin, tout_E, coeff_q[n_int]) - q_B1 = capacity_ratios[n_min] * MathTools.biquadratic(wBin, tout_B, coeff_q[n_min]) - q_F1 = capacity_ratios[n_min] * MathTools.biquadratic(wBin, tout_F, coeff_q[n_min]) - - cfm_Btu_h = 400.0 / 12000.0 - - q_A2_net = q_A2 - fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[n_max] - q_B2_net = q_B2 - fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[n_max] - q_Ev_net = q_Ev - fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[n_int] - q_B1_net = q_B1 - fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[n_min] - q_F1_net = q_F1 - fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[n_min] - - p_A2 = (q_A2 * eir_A2) / 3.412 + fan_power_rated * cfm_Btu_h * fanspeed_ratios[n_max] - p_B2 = (q_B2 * eir_B2) / 3.412 + fan_power_rated * cfm_Btu_h * fanspeed_ratios[n_max] - p_Ev = (q_Ev * eir_Ev) / 3.412 + fan_power_rated * cfm_Btu_h * fanspeed_ratios[n_int] - p_B1 = (q_B1 * eir_B1) / 3.412 + fan_power_rated * cfm_Btu_h * fanspeed_ratios[n_min] - p_F1 = (q_F1 * eir_F1) / 3.412 + fan_power_rated * cfm_Btu_h * fanspeed_ratios[n_min] - - q_k1_87 = q_F1_net + (q_B1_net - q_F1_net) / (82.0 - 67.0) * (87.0 - 67.0) - q_k2_87 = q_B2_net + (q_A2_net - q_B2_net) / (95.0 - 82.0) * (87.0 - 82.0) - n_Q = (q_Ev_net - q_k1_87) / (q_k2_87 - q_k1_87) - m_Q = (q_B1_net - q_F1_net) / (82.0 - 67.0) * (1.0 - n_Q) + (q_A2_net - q_B2_net) / (95.0 - 82.0) * n_Q - p_k1_87 = p_F1 + (p_B1 - p_F1) / (82.0 - 67.0) * (87.0 - 67.0) - p_k2_87 = p_B2 + (p_A2 - p_B2) / (95.0 - 82.0) * (87.0 - 82.0) - n_E = (p_Ev - p_k1_87) / (p_k2_87 - p_k1_87) - m_E = (p_B1 - p_F1) / (82.0 - 67.0) * (1.0 - n_E) + (p_A2 - p_B2) / (95.0 - 82.0) * n_E - - c_T_1_1 = q_A2_net / (1.1 * (95.0 - 65.0)) - c_T_1_2 = q_F1_net - c_T_1_3 = (q_B1_net - q_F1_net) / (82.0 - 67.0) - t_1 = (c_T_1_2 - 67.0 * c_T_1_3 + 65.0 * c_T_1_1) / (c_T_1_1 - c_T_1_3) - q_T_1 = q_F1_net + (q_B1_net - q_F1_net) / (82.0 - 67.0) * (t_1 - 67.0) - p_T_1 = p_F1 + (p_B1 - p_F1) / (82.0 - 67.0) * (t_1 - 67.0) - eer_T_1 = q_T_1 / p_T_1 - - t_v = (q_Ev_net - 87.0 * m_Q + 65.0 * c_T_1_1) / (c_T_1_1 - m_Q) - q_T_v = q_Ev_net + m_Q * (t_v - 87.0) - p_T_v = p_Ev + m_E * (t_v - 87.0) - eer_T_v = q_T_v / p_T_v - - c_T_2_1 = c_T_1_1 - c_T_2_2 = q_B2_net - c_T_2_3 = (q_A2_net - q_B2_net) / (95.0 - 82.0) - t_2 = (c_T_2_2 - 82.0 * c_T_2_3 + 65.0 * c_T_2_1) / (c_T_2_1 - c_T_2_3) - q_T_2 = q_B2_net + (q_A2_net - q_B2_net) / (95.0 - 82.0) * (t_2 - 82.0) - p_T_2 = p_B2 + (p_A2 - p_B2) / (95.0 - 82.0) * (t_2 - 82.0) - eer_T_2 = q_T_2 / p_T_2 - - d = (t_2**2.0 - t_1**2.0) / (t_v**2.0 - t_1**2.0) - b = (eer_T_1 - eer_T_2 - d * (eer_T_1 - eer_T_v)) / (t_1 - t_2 - d * (t_1 - t_v)) - c = (eer_T_1 - eer_T_2 - b * (t_1 - t_2)) / (t_1**2.0 - t_2**2.0) - a = eer_T_2 - b * t_2 - c * t_2**2.0 - - t_bins = [67.0, 72.0, 77.0, 82.0, 87.0, 92.0, 97.0, 102.0] - frac_hours = [0.214, 0.231, 0.216, 0.161, 0.104, 0.052, 0.018, 0.004] - - e_tot = 0.0 - q_tot = 0.0 - (0..7).each do |i| - bL = ((t_bins[i] - 65.0) / (95.0 - 65.0)) * (q_A2_net / 1.1) - q_k1 = q_F1_net + (q_B1_net - q_F1_net) / (82.0 - 67.0) * (t_bins[i] - 67.0) - p_k1 = p_F1 + (p_B1 - p_F1) / (82.0 - 67.0) * (t_bins[i] - 67) - q_k2 = q_B2_net + (q_A2_net - q_B2_net) / (95.0 - 82.0) * (t_bins[i] - 82.0) - p_k2 = p_B2 + (p_A2 - p_B2) / (95.0 - 82.0) * (t_bins[i] - 82.0) - - if bL <= q_k1 - x_k1 = bL / q_k1 - q_Tj_N = x_k1 * q_k1 * frac_hours[i] - e_Tj_N = x_k1 * p_k1 * frac_hours[i] / (1.0 - c_d * (1.0 - x_k1)) - elsif (q_k1 < bL) && (bL <= q_k2) - q_Tj_N = bL * frac_hours[i] - eer_T_j = a + b * t_bins[i] + c * t_bins[i]**2.0 - e_Tj_N = q_Tj_N / eer_T_j - else - q_Tj_N = frac_hours[i] * q_k2 - e_Tj_N = frac_hours[i] * p_k2 - end - - q_tot += q_Tj_N - e_tot += e_Tj_N - end - - seer = q_tot / e_tot - return seer - end - - def self.calc_cop_heating_1speed(hspf, c_d, fan_power_rated, coeff_eir, coeff_q) - # Iterate to find rated net cop given HSPF using simple bisection method - - # Initial large bracket to span possible hspf range - cop_a = 0.1 - cop_b = 10.0 - - # Iterate - iter_max = 100 - tol = 0.0001 - - err = 1 - cop_c = (cop_a + cop_b) / 2.0 - for _n in 1..iter_max - f_a = calc_hspf_1speed(cop_a, c_d, fan_power_rated, coeff_eir, coeff_q) - hspf - f_c = calc_hspf_1speed(cop_c, c_d, fan_power_rated, coeff_eir, coeff_q) - hspf - - if f_c == 0 - return cop_c - elsif f_a * f_c < 0 - cop_b = cop_c - else - cop_a = cop_c - end - - cop_c = (cop_a + cop_b) / 2.0 - err = (cop_b - cop_a) / 2.0 - - if err <= tol - break - end - end - - if err > tol - fail 'Single-speed heating cop iteration failed to converge.' - end - - return cop_c - end - - def self.calc_cops_heating_2speed(hspf, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - # Iterate to find rated net eers given Seer using simple bisection method for two stage air conditioners - - # Initial large bracket of cop to span possible hspf range - cop_a = 1.0 - cop_b = 10.0 - - # Iterate - iter_max = 100 - tol = 0.0001 - - err = 1 - cop_c = (cop_a + cop_b) / 2.0 - for _n in 1..iter_max - cops = calc_cops_from_eir_2speed(cop_a, fan_power_rated) - f_a = calc_hspf_2speed(cops, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - hspf - - cops = calc_cops_from_eir_2speed(cop_c, fan_power_rated) - f_c = calc_hspf_2speed(cops, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - hspf - - if f_c == 0 - return cop_c - elsif f_a * f_c < 0 - cop_b = cop_c - else - cop_a = cop_c - end - - cop_c = (cop_a + cop_b) / 2.0 - err = (cop_b - cop_a) / 2.0 - - if err <= tol - break - end - end - - if err > tol - fail 'Two-speed heating cop iteration failed to converge.' - end - - return calc_cops_from_eir_2speed(cop_c, fan_power_rated) - end - - def self.calc_cops_heating_4speed(hspf, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - # Iterate to find rated net cops given HSPF using simple bisection method for variable speed heat pumps - - # Initial large bracket of cop to span possible hspf range - cop_a = 1.0 - cop_b = 15.0 - - # Iterate - iter_max = 100 - tol = 0.0001 - - err = 1 - cop_c = (cop_a + cop_b) / 2.0 - for _n in 1..iter_max - cops = calc_cops_from_eir_4speed(cop_a, fan_power_rated, calc_type: 'hspf') - f_a = calc_hspf_4speed(cops, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - hspf - - cops = calc_cops_from_eir_4speed(cop_c, fan_power_rated, calc_type: 'hspf') - f_c = calc_hspf_4speed(cops, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - hspf - - if f_c == 0 - return cop_c - elsif f_a * f_c < 0 - cop_b = cop_c - else - cop_a = cop_c - end - - cop_c = (cop_a + cop_b) / 2.0 - err = (cop_b - cop_a) / 2.0 - - if err <= tol - break - end - end - - if err > tol - fail 'Variable-speed heating cops iteration failed to converge.' - end - - return calc_cops_from_eir_4speed(cop_c, fan_power_rated, calc_type: 'model') - end - - def self.calc_hspf_1speed(cop_47, c_d, fan_power_rated, coeff_eir, coeff_q) - eir_47 = calc_eir_from_cop(cop_47, fan_power_rated) - eir_35 = eir_47 * MathTools.biquadratic(70.0, 35.0, coeff_eir[0]) - eir_17 = eir_47 * MathTools.biquadratic(70.0, 17.0, coeff_eir[0]) - - q_47 = 1.0 - q_35 = 0.7519 - q_17 = q_47 * MathTools.biquadratic(70.0, 17.0, coeff_q[0]) - - cfm_Btu_h = 400.0 / 12000.0 - - q_47_net = q_47 + fan_power_rated * 3.412 * cfm_Btu_h - q_35_net = q_35 + fan_power_rated * 3.412 * cfm_Btu_h - q_17_net = q_17 + fan_power_rated * 3.412 * cfm_Btu_h - - p_47 = (q_47 * eir_47) / 3.412 + fan_power_rated * cfm_Btu_h - p_35 = (q_35 * eir_35) / 3.412 + fan_power_rated * cfm_Btu_h - p_17 = (q_17 * eir_17) / 3.412 + fan_power_rated * cfm_Btu_h - - t_bins = [62.0, 57.0, 52.0, 47.0, 42.0, 37.0, 32.0, 27.0, 22.0, 17.0, 12.0, 7.0, 2.0, -3.0, -8.0] - frac_hours = [0.132, 0.111, 0.103, 0.093, 0.100, 0.109, 0.126, 0.087, 0.055, 0.036, 0.026, 0.013, 0.006, 0.002, 0.001] - - designtemp = 5.0 - t_off = 10.0 - t_on = 14.0 - ptot = 0.0 - rHtot = 0.0 - bLtot = 0.0 - dHRmin = q_47 - (0..14).each do |i| - bL = ((65.0 - t_bins[i]) / (65.0 - designtemp)) * 0.77 * dHRmin - - if (t_bins[i] > 17.0) && (t_bins[i] < 45.0) - q_h = q_17_net + (((q_35_net - q_17_net) * (t_bins[i] - 17.0)) / (35.0 - 17.0)) - p_h = p_17 + (((p_35 - p_17) * (t_bins[i] - 17.0)) / (35.0 - 17.0)) - else - q_h = q_17_net + (((q_47_net - q_17_net) * (t_bins[i] - 17.0)) / (47.0 - 17.0)) - p_h = p_17 + (((p_47 - p_17) * (t_bins[i] - 17.0)) / (47.0 - 17.0)) - end - - x_t = [bL / q_h, 1.0].min - - pLF = 1.0 - (c_d * (1.0 - x_t)) - if (t_bins[i] <= t_off) || (q_h / (3.412 * p_h) < 1.0) - sigma_t = 0.0 - elsif (t_off < t_bins[i]) && (t_bins[i] <= t_on) && (q_h / (p_h * 3.412) >= 1.0) - sigma_t = 0.5 - elsif (t_bins[i] > t_on) && (q_h / (3.412 * p_h) >= 1.0) - sigma_t = 1.0 + cap_diff = data_sorted[i + 1].gross_capacity - dp.gross_capacity + odb_diff = data_sorted[i + 1].outdoor_temperature - dp.outdoor_temperature + cop_diff = data_sorted[i + 1].gross_efficiency_cop - dp.gross_efficiency_cop + if mode == :clg + eir_rated = 1 / data_sorted.find { |dp| dp.outdoor_temperature == HVAC::AirSourceCoolRatedODB }.gross_efficiency_cop + else + eir_rated = 1 / data_sorted.find { |dp| dp.outdoor_temperature == HVAC::AirSourceHeatRatedODB }.gross_efficiency_cop + end + eir_diff = ((1 / data_sorted[i + 1].gross_efficiency_cop) / eir_rated) - ((1 / dp.gross_efficiency_cop) / eir_rated) + n_pt = (eir_diff.abs / tol).ceil() - 1 + eir_interval = eir_diff / (n_pt + 1) + next if n_pt < 1 + + for i in 1..n_pt + if mode == :clg + new_dp = HPXML::CoolingPerformanceDataPoint.new(nil) + else + new_dp = HPXML::HeatingPerformanceDataPoint.new(nil) + end + new_eir_normalized = (1 / dp.gross_efficiency_cop) / eir_rated + eir_interval * i + new_dp.gross_efficiency_cop = (1 / (new_eir_normalized * eir_rated)) + new_dp.outdoor_temperature = odb_diff / cop_diff * (new_dp.gross_efficiency_cop - dp.gross_efficiency_cop) + dp.outdoor_temperature + new_dp.gross_capacity = cap_diff / odb_diff * (new_dp.outdoor_temperature - dp.outdoor_temperature) + dp.gross_capacity + data << new_dp + end end - - p_h_i = (x_t * p_h * sigma_t / pLF) * frac_hours[i] - rH_i = ((bL - (x_t * q_h * sigma_t)) / 3.412) * frac_hours[i] - bL_i = bL * frac_hours[i] - ptot += p_h_i - rHtot += rH_i - bLtot += bL_i end - - hspf = bLtot / (ptot + rHtot) - return hspf end - def self.calc_hspf_2speed(cops, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - eir_47_H = calc_eir_from_cop(cops[1], fan_power_rated) - eir_35_H = eir_47_H * MathTools.biquadratic(70.0, 35.0, coeff_eir[1]) - eir_17_H = eir_47_H * MathTools.biquadratic(70.0, 17.0, coeff_eir[1]) - - eir_47_L = calc_eir_from_cop(cops[0], fan_power_rated) - eir_62_L = eir_47_L * MathTools.biquadratic(70.0, 62.0, coeff_eir[0]) - eir_35_L = eir_47_L * MathTools.biquadratic(70.0, 35.0, coeff_eir[0]) - eir_17_L = eir_47_L * MathTools.biquadratic(70.0, 17.0, coeff_eir[0]) - - q_H47 = 1.0 - q_H35 = q_H47 * MathTools.biquadratic(70.0, 35.0, coeff_q[1]) - q_H17 = q_H47 * MathTools.biquadratic(70.0, 17.0, coeff_q[1]) - - q_L47 = q_H47 * capacity_ratios[0] - q_L62 = q_L47 * MathTools.biquadratic(70.0, 62.0, coeff_q[0]) - q_L35 = q_L47 * MathTools.biquadratic(70.0, 35.0, coeff_q[0]) - q_L17 = q_L47 * MathTools.biquadratic(70.0, 17.0, coeff_q[0]) - - cfm_Btu_h = 400.0 / 12000.0 - - q_H47_net = q_H47 + fan_power_rated * 3.412 * cfm_Btu_h - q_H35_net = q_H35 + fan_power_rated * 3.412 * cfm_Btu_h - q_H17_net = q_H17 + fan_power_rated * 3.412 * cfm_Btu_h - q_L62_net = q_L62 + fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[0] - q_L47_net = q_L47 + fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[0] - q_L35_net = q_L35 + fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[0] - q_L17_net = q_L17 + fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[0] - - p_H47 = (q_H47 * eir_47_H) / 3.412 + fan_power_rated * cfm_Btu_h - p_H35 = (q_H35 * eir_35_H) / 3.412 + fan_power_rated * cfm_Btu_h - p_H17 = (q_H17 * eir_17_H) / 3.412 + fan_power_rated * cfm_Btu_h - p_L62 = (q_L62 * eir_62_L) / 3.412 + fan_power_rated * cfm_Btu_h * fanspeed_ratios[0] - p_L47 = (q_L47 * eir_47_L) / 3.412 + fan_power_rated * cfm_Btu_h * fanspeed_ratios[0] - p_L35 = (q_L35 * eir_35_L) / 3.412 + fan_power_rated * cfm_Btu_h * fanspeed_ratios[0] - p_L17 = (q_L17 * eir_17_L) / 3.412 + fan_power_rated * cfm_Btu_h * fanspeed_ratios[0] - - t_bins = [62.0, 57.0, 52.0, 47.0, 42.0, 37.0, 32.0, 27.0, 22.0, 17.0, 12.0, 7.0, 2.0, -3.0, -8.0] - frac_hours = [0.132, 0.111, 0.103, 0.093, 0.100, 0.109, 0.126, 0.087, 0.055, 0.036, 0.026, 0.013, 0.006, 0.002, 0.001] - - designtemp = 5.0 - t_off = 10.0 - t_on = 14.0 - ptot = 0.0 - rHtot = 0.0 - bLtot = 0.0 - dHRmin = q_H47 - (0..14).each do |i| - bL = ((65.0 - t_bins[i]) / (65.0 - designtemp)) * 0.77 * dHRmin - - if (17.0 < t_bins[i]) && (t_bins[i] < 45.0) - q_h = q_H17_net + (((q_H35_net - q_H17_net) * (t_bins[i] - 17.0)) / (35.0 - 17.0)) - p_h = p_H17 + (((p_H35 - p_H17) * (t_bins[i] - 17.0)) / (35.0 - 17.0)) - else - q_h = q_H17_net + (((q_H47_net - q_H17_net) * (t_bins[i] - 17.0)) / (47.0 - 17.0)) - p_h = p_H17 + (((p_H47 - p_H17) * (t_bins[i] - 17.0)) / (47.0 - 17.0)) - end - - if t_bins[i] >= 40.0 - q_l = q_L47_net + (((q_L62_net - q_L47_net) * (t_bins[i] - 47.0)) / (62.0 - 47.0)) - p_l = p_L47 + (((p_L62 - p_L47) * (t_bins[i] - 47.0)) / (62.0 - 47.0)) - elsif (17.0 <= t_bins[i]) && (t_bins[i] < 40.0) - q_l = q_L17_net + (((q_L35_net - q_L17_net) * (t_bins[i] - 17.0)) / (35.0 - 17.0)) - p_l = p_L17 + (((p_L35 - p_L17) * (t_bins[i] - 17.0)) / (35.0 - 17.0)) - else - q_l = q_L17_net + (((q_L47_net - q_L17_net) * (t_bins[i] - 17.0)) / (47.0 - 17.0)) - p_l = p_L17 + (((p_L47 - p_L17) * (t_bins[i] - 17.0)) / (47.0 - 17.0)) - end - - x_t_l = [bL / q_l, 1.0].min - pLF = 1.0 - (c_d * (1.0 - x_t_l)) - if (t_bins[i] <= t_off) || (q_h / (p_h * 3.412) < 1.0) - sigma_t_h = 0.0 - elsif (t_off < t_bins[i]) && (t_bins[i] <= t_on) && (q_h / (p_h * 3.412) >= 1.0) - sigma_t_h = 0.5 - elsif (t_bins[i] > t_on) && (q_h / (p_h * 3.412) >= 1.0) - sigma_t_h = 1.0 - end - - if t_bins[i] <= t_off - sigma_t_l = 0.0 - elsif (t_off < t_bins[i]) && (t_bins[i] <= t_on) - sigma_t_l = 0.5 - elsif t_bins[i] > t_on - sigma_t_l = 1.0 - end - - if q_l > bL - p_h_i = (x_t_l * p_l * sigma_t_l / pLF) * frac_hours[i] - rH_i = (bL * (1.0 - sigma_t_l)) / 3.412 * frac_hours[i] - elsif (q_l < bL) && (q_h > bL) - x_t_l = ((q_h - bL) / (q_h - q_l)) - x_t_h = 1.0 - x_t_l - p_h_i = (x_t_l * p_l + x_t_h * p_h) * sigma_t_l * frac_hours[i] - rH_i = (bL * (1.0 - sigma_t_l)) / 3.412 * frac_hours[i] - elsif q_h <= bL - p_h_i = p_h * sigma_t_h * frac_hours[i] - rH_i = (bL - (q_h * sigma_t_l)) / 3.412 * frac_hours[i] + def self.correct_ft_cap_eir(data_array, mode) + # Add sensitivity to indoor conditions + # single speed cutler curve coefficients + if mode == :clg + cap_ft_spec_ss, eir_ft_spec_ss = get_cool_cap_eir_ft_spec(HPXML::HVACCompressorTypeSingleStage) + rated_t_i = HVAC::AirSourceCoolRatedIWB + indoor_t = [50.0, rated_t_i, 80.0] + else + # default capacity retention for single speed + retention_temp, retention_fraction = get_default_heating_capacity_retention(HPXML::HVACCompressorTypeSingleStage) + cap_ft_spec_ss, eir_ft_spec_ss = get_heat_cap_eir_ft_spec(HPXML::HVACCompressorTypeSingleStage, retention_temp, retention_fraction) + rated_t_i = HVAC::AirSourceHeatRatedIDB + indoor_t = [60.0, rated_t_i, 80.0] + end + data_array.each do |data| + data.each do |dp| + if mode == :clg + dp.indoor_wetbulb = rated_t_i + else + dp.indoor_temperature = rated_t_i + end end - - bL_i = bL * frac_hours[i] - ptot += p_h_i - rHtot += rH_i - bLtot += bL_i end - - hspf = bLtot / (ptot + rHtot) - return hspf - end - - def self.calc_hspf_4speed(cop_47, c_d, capacity_ratios, fanspeed_ratios, fan_power_rated, coeff_eir, coeff_q) - n_max = 2 - n_int = 1 - n_min = 0 - - tin = 70.0 - tout_3 = 17.0 - tout_2 = 35.0 - tout_0 = 62.0 - - eir_H1_2 = calc_eir_from_cop(cop_47[n_max], fan_power_rated) - eir_H3_2 = eir_H1_2 * MathTools.biquadratic(tin, tout_3, coeff_eir[n_max]) - - eir_adjv = calc_eir_from_cop(cop_47[n_int], fan_power_rated) - eir_H2_v = eir_adjv * MathTools.biquadratic(tin, tout_2, coeff_eir[n_int]) - - eir_H1_1 = calc_eir_from_cop(cop_47[n_min], fan_power_rated) - eir_H0_1 = eir_H1_1 * MathTools.biquadratic(tin, tout_0, coeff_eir[n_min]) - - q_H1_2 = capacity_ratios[n_max] - q_H3_2 = q_H1_2 * MathTools.biquadratic(tin, tout_3, coeff_q[n_max]) - - q_H2_v = capacity_ratios[n_int] * MathTools.biquadratic(tin, tout_2, coeff_q[n_int]) - - q_H1_1 = capacity_ratios[n_min] - q_H0_1 = q_H1_1 * MathTools.biquadratic(tin, tout_0, coeff_q[n_min]) - - cfm_Btu_h = 400.0 / 12000.0 - - q_H1_2_net = q_H1_2 + fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[n_max] - q_H3_2_net = q_H3_2 + fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[n_max] - q_H2_v_net = q_H2_v + fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[n_int] - q_H1_1_net = q_H1_1 + fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[n_min] - q_H0_1_net = q_H0_1 + fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[n_min] - - p_H1_2 = q_H1_2 * eir_H1_2 + fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[n_max] - p_H3_2 = q_H3_2 * eir_H3_2 + fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[n_max] - p_H2_v = q_H2_v * eir_H2_v + fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[n_int] - p_H1_1 = q_H1_1 * eir_H1_1 + fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[n_min] - p_H0_1 = q_H0_1 * eir_H0_1 + fan_power_rated * 3.412 * cfm_Btu_h * fanspeed_ratios[n_min] - - q_H35_2 = 0.9 * (q_H3_2_net + 0.6 * (q_H1_2_net - q_H3_2_net)) - p_H35_2 = 0.985 * (p_H3_2 + 0.6 * (p_H1_2 - p_H3_2)) - q_H35_1 = q_H1_1_net + (q_H0_1_net - q_H1_1_net) / (62.0 - 47.0) * (35.0 - 47.0) - p_H35_1 = p_H1_1 + (p_H0_1 - p_H1_1) / (62.0 - 47.0) * (35.0 - 47.0) - n_Q = (q_H2_v_net - q_H35_1) / (q_H35_2 - q_H35_1) - m_Q = (q_H0_1_net - q_H1_1_net) / (62.0 - 47.0) * (1.0 - n_Q) + n_Q * (q_H35_2 - q_H3_2_net) / (35.0 - 17.0) - n_E = (p_H2_v - p_H35_1) / (p_H35_2 - p_H35_1) - m_E = (p_H0_1 - p_H1_1) / (62.0 - 47.0) * (1.0 - n_E) + n_E * (p_H35_2 - p_H3_2) / (35.0 - 17.0) - - t_OD = 5.0 - dHR = q_H1_2_net * (65.0 - t_OD) / 60.0 - - c_T_3_1 = q_H1_1_net - c_T_3_2 = (q_H0_1_net - q_H1_1_net) / (62.0 - 47.0) - c_T_3_3 = 0.77 * dHR / (65.0 - t_OD) - t_3 = (47.0 * c_T_3_2 + 65.0 * c_T_3_3 - c_T_3_1) / (c_T_3_2 + c_T_3_3) - q_HT3_1 = q_H1_1_net + (q_H0_1_net - q_H1_1_net) / (62.0 - 47.0) * (t_3 - 47.0) - p_HT3_1 = p_H1_1 + (p_H0_1 - p_H1_1) / (62.0 - 47.0) * (t_3 - 47.0) - cop_T3_1 = q_HT3_1 / p_HT3_1 - - c_T_v_1 = q_H2_v_net - c_T_v_3 = c_T_3_3 - t_v = (35.0 * m_Q + 65 * c_T_v_3 - c_T_v_1) / (m_Q + c_T_v_3) - q_HTv_v = q_H2_v_net + m_Q * (t_v - 35.0) - p_HTv_v = p_H2_v + m_E * (t_v - 35.0) - cop_Tv_v = q_HTv_v / p_HTv_v - - c_T_4_1 = q_H3_2_net - c_T_4_2 = (q_H35_2 - q_H3_2_net) / (35.0 - 17.0) - c_T_4_3 = c_T_v_3 - t_4 = (17.0 * c_T_4_2 + 65.0 * c_T_4_3 - c_T_4_1) / (c_T_4_2 + c_T_4_3) - q_HT4_2 = q_H3_2_net + (q_H35_2 - q_H3_2_net) / (35.0 - 17.0) * (t_4 - 17.0) - p_HT4_2 = p_H3_2 + (p_H35_2 - p_H3_2) / (35.0 - 17.0) * (t_4 - 17.0) - cop_T4_2 = q_HT4_2 / p_HT4_2 - - d = (t_3**2.0 - t_4**2.0) / (t_v**2.0 - t_4**2.0) - b = (cop_T4_2 - cop_T3_1 - d * (cop_T4_2 - cop_Tv_v)) / (t_4 - t_3 - d * (t_4 - t_v)) - c = (cop_T4_2 - cop_T3_1 - b * (t_4 - t_3)) / (t_4**2.0 - t_3**2.0) - a = cop_T4_2 - b * t_4 - c * t_4**2.0 - - t_bins = [62.0, 57.0, 52.0, 47.0, 42.0, 37.0, 32.0, 27.0, 22.0, 17.0, 12.0, 7.0, 2.0, -3.0, -8.0] - frac_hours = [0.132, 0.111, 0.103, 0.093, 0.100, 0.109, 0.126, 0.087, 0.055, 0.036, 0.026, 0.013, 0.006, 0.002, 0.001] - - t_off = 10.0 - t_on = t_off + 4 - etot = 0.0 - bLtot = 0.0 - (0..14).each do |i| - bL = ((65.0 - t_bins[i]) / (65.0 - t_OD)) * 0.77 * dHR - - q_1 = q_H1_1_net + (q_H0_1_net - q_H1_1_net) / (62.0 - 47.0) * (t_bins[i] - 47.0) - p_1 = p_H1_1 + (p_H0_1 - p_H1_1) / (62.0 - 47.0) * (t_bins[i] - 47.0) - - if (t_bins[i] <= 17.0) || (t_bins[i] >= 45.0) - q_2 = q_H3_2_net + (q_H1_2_net - q_H3_2_net) * (t_bins[i] - 17.0) / (47.0 - 17.0) - p_2 = p_H3_2 + (p_H1_2 - p_H3_2) * (t_bins[i] - 17.0) / (47.0 - 17.0) - else - q_2 = q_H3_2_net + (q_H35_2 - q_H3_2_net) * (t_bins[i] - 17.0) / (35.0 - 17.0) - p_2 = p_H3_2 + (p_H35_2 - p_H3_2) * (t_bins[i] - 17.0) / (35.0 - 17.0) - end - - if t_bins[i] <= t_off - delta = 0.0 - elsif t_bins[i] >= t_on - delta = 1.0 - else - delta = 0.5 + # table lookup output values + data_array.each do |data| + # create a new array to temporarily store expanded data points, to concat after the existing data loop + array_tmp = Array.new + indoor_t.each do |t_i| + # introduce indoor conditions other than rated, expand to rated data points + next if t_i == rated_t_i + + data_tmp = Array.new + data.each do |dp| + dp_new = dp.dup + data_tmp << dp_new + if mode == :clg + dp_new.indoor_wetbulb = t_i + else + dp_new.indoor_temperature = t_i + end + # capacity FT curve output + cap_ft_curve_output = MathTools.biquadratic(t_i, dp_new.outdoor_temperature, cap_ft_spec_ss[0]) + cap_ft_curve_output_rated = MathTools.biquadratic(rated_t_i, dp_new.outdoor_temperature, cap_ft_spec_ss[0]) + cap_correction_factor = cap_ft_curve_output / cap_ft_curve_output_rated + # corrected capacity hash, with two temperature independent variables + dp_new.gross_capacity *= cap_correction_factor + + # eir FT curve output + eir_ft_curve_output = MathTools.biquadratic(t_i, dp_new.outdoor_temperature, eir_ft_spec_ss[0]) + eir_ft_curve_output_rated = MathTools.biquadratic(rated_t_i, dp_new.outdoor_temperature, eir_ft_spec_ss[0]) + eir_correction_factor = eir_ft_curve_output / eir_ft_curve_output_rated + dp_new.gross_efficiency_cop /= eir_correction_factor + end + array_tmp << data_tmp end - - if bL <= q_1 - x_1 = bL / q_1 - e_Tj_n = delta * x_1 * p_1 * frac_hours[i] / (1.0 - c_d * (1.0 - x_1)) - elsif (q_1 < bL) && (bL <= q_2) - cop_T_j = a + b * t_bins[i] + c * t_bins[i]**2.0 - e_Tj_n = delta * frac_hours[i] * bL / cop_T_j + (1.0 - delta) * bL * (frac_hours[i]) - else - e_Tj_n = delta * frac_hours[i] * p_2 + frac_hours[i] * (bL - delta * q_2) + array_tmp.each do |new_data| + data.concat(new_data) end - - bLtot += frac_hours[i] * bL - etot += e_Tj_n end - - hspf = bLtot / (etot / 3.412) - return hspf end - def self.calc_fan_speed_ratios(capacity_ratios, rated_cfm_per_tons, rated_airflow_rate) - fan_speed_ratios = [] - capacity_ratios.each_with_index do |capacity_ratio, i| - fan_speed_ratios << rated_cfm_per_tons[i] * capacity_ratio / rated_airflow_rate - end - return fan_speed_ratios - end - - def self.create_curve_biquadratic_constant(model) - curve = OpenStudio::Model::CurveBiquadratic.new(model) - curve.setName('ConstantBiquadratic') - curve.setCoefficient1Constant(1) - curve.setCoefficient2x(0) - curve.setCoefficient3xPOW2(0) - curve.setCoefficient4y(0) - curve.setCoefficient5yPOW2(0) - curve.setCoefficient6xTIMESY(0) - curve.setMinimumValueofx(-100) - curve.setMaximumValueofx(100) - curve.setMinimumValueofy(-100) - curve.setMaximumValueofy(100) - return curve - end - - def self.create_curve_quadratic_constant(model) - curve = OpenStudio::Model::CurveQuadratic.new(model) - curve.setName('ConstantQuadratic') - curve.setCoefficient1Constant(1) - curve.setCoefficient2x(0) - curve.setCoefficient3xPOW2(0) - curve.setMinimumValueofx(-100) - curve.setMaximumValueofx(100) - curve.setMinimumCurveOutput(-100) - curve.setMaximumCurveOutput(100) - return curve - end - - def self.create_curve_cubic_constant(model) - curve = OpenStudio::Model::CurveCubic.new(model) - curve.setName('ConstantCubic') - curve.setCoefficient1Constant(1) - curve.setCoefficient2x(0) - curve.setCoefficient3xPOW2(0) - curve.setCoefficient4xPOW3(0) - curve.setMinimumValueofx(-100) - curve.setMaximumValueofx(100) - return curve - end - - def self.convert_curve_biquadratic(coeff) - # Convert IP curves to SI curves - si_coeff = [] - si_coeff << coeff[0] + 32.0 * (coeff[1] + coeff[3]) + 1024.0 * (coeff[2] + coeff[4] + coeff[5]) - si_coeff << 9.0 / 5.0 * coeff[1] + 576.0 / 5.0 * coeff[2] + 288.0 / 5.0 * coeff[5] - si_coeff << 81.0 / 25.0 * coeff[2] - si_coeff << 9.0 / 5.0 * coeff[3] + 576.0 / 5.0 * coeff[4] + 288.0 / 5.0 * coeff[5] - si_coeff << 81.0 / 25.0 * coeff[4] - si_coeff << 81.0 / 25.0 * coeff[5] - return si_coeff - end - - def self.create_curve_biquadratic(model, coeff, name, min_x, max_x, min_y, max_y) - curve = OpenStudio::Model::CurveBiquadratic.new(model) - curve.setName(name) - curve.setCoefficient1Constant(coeff[0]) - curve.setCoefficient2x(coeff[1]) - curve.setCoefficient3xPOW2(coeff[2]) - curve.setCoefficient4y(coeff[3]) - curve.setCoefficient5yPOW2(coeff[4]) - curve.setCoefficient6xTIMESY(coeff[5]) - curve.setMinimumValueofx(min_x) - curve.setMaximumValueofx(max_x) - curve.setMinimumValueofy(min_y) - curve.setMaximumValueofy(max_y) - return curve - end - - def self.create_curve_bicubic(model, coeff, name, min_x, max_x, min_y, max_y) - curve = OpenStudio::Model::CurveBicubic.new(model) - curve.setName(name) - curve.setCoefficient1Constant(coeff[0]) - curve.setCoefficient2x(coeff[1]) - curve.setCoefficient3xPOW2(coeff[2]) - curve.setCoefficient4y(coeff[3]) - curve.setCoefficient5yPOW2(coeff[4]) - curve.setCoefficient6xTIMESY(coeff[5]) - curve.setCoefficient7xPOW3(coeff[6]) - curve.setCoefficient8yPOW3(coeff[7]) - curve.setCoefficient9xPOW2TIMESY(coeff[8]) - curve.setCoefficient10xTIMESYPOW2(coeff[9]) - curve.setMinimumValueofx(min_x) - curve.setMaximumValueofx(max_x) - curve.setMinimumValueofy(min_y) - curve.setMaximumValueofy(max_y) - return curve - end - - def self.create_curve_quadratic(model, coeff, name, min_x, max_x, min_y, max_y, is_dimensionless = false) - curve = OpenStudio::Model::CurveQuadratic.new(model) - curve.setName(name) - curve.setCoefficient1Constant(coeff[0]) - curve.setCoefficient2x(coeff[1]) - curve.setCoefficient3xPOW2(coeff[2]) - curve.setMinimumValueofx(min_x) - curve.setMaximumValueofx(max_x) - if not min_y.nil? - curve.setMinimumCurveOutput(min_y) - end - if not max_y.nil? - curve.setMaximumCurveOutput(max_y) - end - if is_dimensionless - curve.setInputUnitTypeforX('Dimensionless') - curve.setOutputUnitType('Dimensionless') - end - return curve - end - - def self.create_curve_cubic(model, coeff, name, min_x, max_x, min_y, max_y) - curve = OpenStudio::Model::CurveCubic.new(model) - curve.setName(name) - curve.setCoefficient1Constant(coeff[0]) - curve.setCoefficient2x(coeff[1]) - curve.setCoefficient3xPOW2(coeff[2]) - curve.setCoefficient4xPOW3(coeff[3]) - curve.setMinimumValueofx(min_x) - curve.setMaximumValueofx(max_x) - curve.setMinimumCurveOutput(min_y) - curve.setMaximumCurveOutput(max_y) - return curve - end - - def self.create_curve_exponent(model, coeff, name, min_x, max_x) - curve = OpenStudio::Model::CurveExponent.new(model) - curve.setName(name) - curve.setCoefficient1Constant(coeff[0]) - curve.setCoefficient2Constant(coeff[1]) - curve.setCoefficient3Constant(coeff[2]) - curve.setMinimumValueofx(min_x) - curve.setMaximumValueofx(max_x) - return curve - end - - def self.create_curve_quad_linear(model, coeff, name) - curve = OpenStudio::Model::CurveQuadLinear.new(model) - curve.setName(name) - curve.setCoefficient1Constant(coeff[0]) - curve.setCoefficient2w(coeff[1]) - curve.setCoefficient3x(coeff[2]) - curve.setCoefficient4y(coeff[3]) - curve.setCoefficient5z(coeff[4]) - return curve - end - - def self.create_curve_quint_linear(model, coeff, name) - curve = OpenStudio::Model::CurveQuintLinear.new(model) - curve.setName(name) - curve.setCoefficient1Constant(coeff[0]) - curve.setCoefficient2v(coeff[1]) - curve.setCoefficient3w(coeff[2]) - curve.setCoefficient4x(coeff[3]) - curve.setCoefficient5y(coeff[4]) - curve.setCoefficient6z(coeff[5]) - return curve - end - - def self.create_dx_cooling_coil(model, obj_name, cooling_system) + def self.create_dx_cooling_coil(model, obj_name, cooling_system, max_rated_fan_cfm, weather_max_drybulb) clg_ap = cooling_system.additional_properties if cooling_system.is_a? HPXML::CoolingSystem @@ -2843,23 +2506,51 @@ def self.create_dx_cooling_coil(model, obj_name, cooling_system) clg_type = cooling_system.heat_pump_type end - if clg_ap.num_speeds > 1 - constant_biquadratic = create_curve_biquadratic_constant(model) + if cooling_system.cooling_detailed_performance_data.empty? + max_clg_cfm = UnitConversions.convert(cooling_system.cooling_capacity * clg_ap.cool_capacity_ratios[-1], 'Btu/hr', 'ton') * clg_ap.cool_rated_cfm_per_ton[-1] + clg_ap.cool_rated_capacities_gross = [] + clg_ap.cool_rated_capacities_net = [] + clg_ap.cool_capacity_ratios.each_with_index do |capacity_ratio, speed| + fan_ratio = clg_ap.cool_fan_speed_ratios[speed] * max_clg_cfm / max_rated_fan_cfm + fan_power = calculate_fan_power_from_curve(clg_ap.fan_power_rated * max_rated_fan_cfm, fan_ratio) + net_capacity = capacity_ratio * cooling_system.cooling_capacity + clg_ap.cool_rated_capacities_net << net_capacity + gross_capacity = convert_net_to_gross_capacity_cop(net_capacity, fan_power, :clg)[0] + clg_ap.cool_rated_capacities_gross << gross_capacity + end + else + process_neep_detailed_performance(cooling_system.cooling_detailed_performance_data, clg_ap, :clg, max_rated_fan_cfm, weather_max_drybulb) end clg_coil = nil - crankcase_heater_temp = 50 # F - - for i in 0..(clg_ap.num_speeds - 1) - cap_ft_spec_si = convert_curve_biquadratic(clg_ap.cool_cap_ft_spec[i]) - eir_ft_spec_si = convert_curve_biquadratic(clg_ap.cool_eir_ft_spec[i]) - cap_ft_curve = create_curve_biquadratic(model, cap_ft_spec_si, "Cool-CAP-fT#{i + 1}", -100, 100, -100, 100) - eir_ft_curve = create_curve_biquadratic(model, eir_ft_spec_si, "Cool-EIR-fT#{i + 1}", -100, 100, -100, 100) - plf_fplr_curve = create_curve_quadratic(model, clg_ap.cool_plf_fplr_spec[i], "Cool-PLF-fPLR#{i + 1}", 0, 1, 0.7, 1) + num_speeds = clg_ap.cool_rated_cfm_per_ton.size + for i in 0..(num_speeds - 1) + if not cooling_system.cooling_detailed_performance_data.empty? + speed_performance_data = clg_ap.cooling_performance_data_array[i].sort_by { |dp| [dp.indoor_wetbulb, dp.outdoor_temperature] } + var_wb = { name: 'wet_bulb_temp_in', min: -100, max: 100, values: speed_performance_data.map { |dp| UnitConversions.convert(dp.indoor_wetbulb, 'F', 'C') }.uniq } + var_db = { name: 'dry_bulb_temp_out', min: -100, max: 100, values: speed_performance_data.map { |dp| UnitConversions.convert(dp.outdoor_temperature, 'F', 'C') }.uniq } + cap_ft_independent_vars = [var_wb, var_db] + eir_ft_independent_vars = [var_wb, var_db] + + rate_dp = speed_performance_data.find { |dp| (dp.indoor_wetbulb == HVAC::AirSourceCoolRatedIWB) && (dp.outdoor_temperature == HVAC::AirSourceCoolRatedODB) } + clg_ap.cool_rated_cops << rate_dp.gross_efficiency_cop + clg_ap.cool_rated_capacities_gross << rate_dp.gross_capacity + clg_ap.cool_rated_capacities_net << rate_dp.capacity + cap_ft_output_values = speed_performance_data.map { |dp| dp.gross_capacity / rate_dp.gross_capacity } + eir_ft_output_values = speed_performance_data.map { |dp| (1.0 / dp.gross_efficiency_cop) / (1.0 / rate_dp.gross_efficiency_cop) } + cap_ft_curve = create_table_lookup(model, "Cool-CAP-fT#{i + 1}", cap_ft_independent_vars, cap_ft_output_values, 0.0) + eir_ft_curve = create_table_lookup(model, "Cool-EIR-fT#{i + 1}", eir_ft_independent_vars, eir_ft_output_values, 0.0) + else + cap_ft_spec_si = convert_curve_biquadratic(clg_ap.cool_cap_ft_spec[i]) + eir_ft_spec_si = convert_curve_biquadratic(clg_ap.cool_eir_ft_spec[i]) + cap_ft_curve = create_curve_biquadratic(model, cap_ft_spec_si, "Cool-CAP-fT#{i + 1}", -100, 100, -100, 100) + eir_ft_curve = create_curve_biquadratic(model, eir_ft_spec_si, "Cool-EIR-fT#{i + 1}", -100, 100, -100, 100) + end cap_fff_curve = create_curve_quadratic(model, clg_ap.cool_cap_fflow_spec[i], "Cool-CAP-fFF#{i + 1}", 0, 2, 0, 2) eir_fff_curve = create_curve_quadratic(model, clg_ap.cool_eir_fflow_spec[i], "Cool-EIR-fFF#{i + 1}", 0, 2, 0, 2) + plf_fplr_curve = create_curve_quadratic(model, clg_ap.cool_plf_fplr_spec[i], "Cool-PLF-fPLR#{i + 1}", 0, 1, 0.7, 1) - if clg_ap.num_speeds == 1 + if num_speeds == 1 clg_coil = OpenStudio::Model::CoilCoolingDXSingleSpeed.new(model, model.alwaysOnDiscreteSchedule, cap_ft_curve, cap_fff_curve, eir_ft_curve, eir_fff_curve, plf_fplr_curve) # Coil COP calculation based on system type if [HPXML::HVACTypeRoomAirConditioner, HPXML::HVACTypePTAC, HPXML::HVACTypeHeatPumpPTHP, HPXML::HVACTypeHeatPumpRoom].include? clg_type @@ -2870,16 +2561,16 @@ def self.create_dx_cooling_coil(model, obj_name, cooling_system) end clg_coil.setRatedCOP(UnitConversions.convert(ceer, 'Btu/hr', 'W')) else - clg_coil.setRatedCOP(1.0 / clg_ap.cool_rated_eirs[i]) + clg_coil.setRatedCOP(clg_ap.cool_rated_cops[i]) end - clg_coil.setMaximumOutdoorDryBulbTemperatureForCrankcaseHeaterOperation(UnitConversions.convert(crankcase_heater_temp, 'F', 'C')) if cooling_system.crankcase_heater_watts.to_f > 0.0 # From RESNET Publication No. 002-2017 + clg_coil.setMaximumOutdoorDryBulbTemperatureForCrankcaseHeaterOperation(UnitConversions.convert(CrankcaseHeaterTemp, 'F', 'C')) if cooling_system.crankcase_heater_watts.to_f > 0.0 # From RESNET Publication No. 002-2017 clg_coil.setRatedSensibleHeatRatio(clg_ap.cool_rated_shrs_gross[i]) clg_coil.setNominalTimeForCondensateRemovalToBegin(1000.0) clg_coil.setRatioOfInitialMoistureEvaporationRateAndSteadyStateLatentCapacity(1.5) clg_coil.setMaximumCyclingRate(3.0) clg_coil.setLatentCapacityTimeConstant(45.0) - clg_coil.setRatedTotalCoolingCapacity(UnitConversions.convert(cooling_system.cooling_capacity, 'Btu/hr', 'W')) - clg_coil.setRatedAirFlowRate(calc_rated_airflow(cooling_system.cooling_capacity, clg_ap.cool_rated_cfm_per_ton[0], 1.0)) + clg_coil.setRatedTotalCoolingCapacity(UnitConversions.convert(clg_ap.cool_rated_capacities_gross[i], 'Btu/hr', 'W')) + clg_coil.setRatedAirFlowRate(calc_rated_airflow(clg_ap.cool_rated_capacities_net[i], clg_ap.cool_rated_cfm_per_ton[0])) else if clg_coil.nil? clg_coil = OpenStudio::Model::CoilCoolingDXMultiSpeed.new(model) @@ -2887,18 +2578,19 @@ def self.create_dx_cooling_coil(model, obj_name, cooling_system) clg_coil.setApplyLatentDegradationtoSpeedsGreaterthan1(false) clg_coil.setFuelType(EPlus::FuelTypeElectricity) clg_coil.setAvailabilitySchedule(model.alwaysOnDiscreteSchedule) - clg_coil.setMaximumOutdoorDryBulbTemperatureforCrankcaseHeaterOperation(UnitConversions.convert(crankcase_heater_temp, 'F', 'C')) if cooling_system.crankcase_heater_watts.to_f > 0.0 # From RESNET Publication No. 002-2017 + clg_coil.setMaximumOutdoorDryBulbTemperatureforCrankcaseHeaterOperation(UnitConversions.convert(CrankcaseHeaterTemp, 'F', 'C')) if cooling_system.crankcase_heater_watts.to_f > 0.0 # From RESNET Publication No. 002-2017 + constant_biquadratic = create_curve_biquadratic_constant(model) end stage = OpenStudio::Model::CoilCoolingDXMultiSpeedStageData.new(model, cap_ft_curve, cap_fff_curve, eir_ft_curve, eir_fff_curve, plf_fplr_curve, constant_biquadratic) - stage.setGrossRatedCoolingCOP(1.0 / clg_ap.cool_rated_eirs[i]) + stage.setGrossRatedCoolingCOP(clg_ap.cool_rated_cops[i]) stage.setGrossRatedSensibleHeatRatio(clg_ap.cool_rated_shrs_gross[i]) stage.setNominalTimeforCondensateRemovaltoBegin(1000) stage.setRatioofInitialMoistureEvaporationRateandSteadyStateLatentCapacity(1.5) stage.setRatedWasteHeatFractionofPowerInput(0.2) stage.setMaximumCyclingRate(3.0) stage.setLatentCapacityTimeConstant(45.0) - stage.setGrossRatedTotalCoolingCapacity(UnitConversions.convert(cooling_system.cooling_capacity, 'Btu/hr', 'W') * clg_ap.cool_capacity_ratios[i]) - stage.setRatedAirFlowRate(calc_rated_airflow(cooling_system.cooling_capacity, clg_ap.cool_rated_cfm_per_ton[i], clg_ap.cool_capacity_ratios[i])) + stage.setGrossRatedTotalCoolingCapacity(UnitConversions.convert(clg_ap.cool_rated_capacities_gross[i], 'Btu/hr', 'W')) + stage.setRatedAirFlowRate(calc_rated_airflow(clg_ap.cool_rated_capacities_net[i], clg_ap.cool_rated_cfm_per_ton[i])) clg_coil.addStage(stage) end end @@ -2911,46 +2603,75 @@ def self.create_dx_cooling_coil(model, obj_name, cooling_system) return clg_coil end - def self.create_dx_heating_coil(model, obj_name, heating_system) + def self.create_dx_heating_coil(model, obj_name, heating_system, max_rated_fan_cfm, weather_min_drybulb) htg_ap = heating_system.additional_properties - if htg_ap.num_speeds > 1 - constant_biquadratic = create_curve_biquadratic_constant(model) + if heating_system.heating_detailed_performance_data.empty? + max_htg_cfm = UnitConversions.convert(heating_system.heating_capacity * htg_ap.heat_capacity_ratios[-1], 'Btu/hr', 'ton') * htg_ap.heat_rated_cfm_per_ton[-1] + htg_ap.heat_rated_capacities_gross = [] + htg_ap.heat_rated_capacities_net = [] + htg_ap.heat_capacity_ratios.each_with_index do |capacity_ratio, speed| + fan_ratio = htg_ap.heat_fan_speed_ratios[speed] * max_htg_cfm / max_rated_fan_cfm + fan_power = calculate_fan_power_from_curve(htg_ap.fan_power_rated * max_rated_fan_cfm, fan_ratio) + net_capacity = capacity_ratio * heating_system.heating_capacity + htg_ap.heat_rated_capacities_net << net_capacity + gross_capacity = convert_net_to_gross_capacity_cop(net_capacity, fan_power, :htg)[0] + htg_ap.heat_rated_capacities_gross << gross_capacity + end + else + process_neep_detailed_performance(heating_system.heating_detailed_performance_data, htg_ap, :htg, max_rated_fan_cfm, weather_min_drybulb, htg_ap.hp_min_temp) end htg_coil = nil - crankcase_heater_temp = 50 # F - - for i in 0..(htg_ap.num_speeds - 1) - cap_ft_spec_si = convert_curve_biquadratic(htg_ap.heat_cap_ft_spec[i]) - eir_ft_spec_si = convert_curve_biquadratic(htg_ap.heat_eir_ft_spec[i]) - cap_ft_curve = create_curve_biquadratic(model, cap_ft_spec_si, "Heat-CAP-fT#{i + 1}", -100, 100, -100, 100) - eir_ft_curve = create_curve_biquadratic(model, eir_ft_spec_si, "Heat-EIR-fT#{i + 1}", -100, 100, -100, 100) - plf_fplr_curve = create_curve_quadratic(model, htg_ap.heat_plf_fplr_spec[i], "Heat-PLF-fPLR#{i + 1}", 0, 1, 0.7, 1) + num_speeds = htg_ap.heat_rated_cfm_per_ton.size + for i in 0..(num_speeds - 1) + if not heating_system.heating_detailed_performance_data.empty? + speed_performance_data = htg_ap.heating_performance_data_array[i].sort_by { |dp| [dp.indoor_temperature, dp.outdoor_temperature] } + var_idb = { name: 'dry_bulb_temp_in', min: -100, max: 100, values: speed_performance_data.map { |dp| UnitConversions.convert(dp.indoor_temperature, 'F', 'C') }.uniq } + var_odb = { name: 'dry_bulb_temp_out', min: -100, max: 100, values: speed_performance_data.map { |dp| UnitConversions.convert(dp.outdoor_temperature, 'F', 'C') }.uniq } + cap_ft_independent_vars = [var_idb, var_odb] + eir_ft_independent_vars = [var_idb, var_odb] + + rate_dp = speed_performance_data.find { |dp| (dp.indoor_temperature == HVAC::AirSourceHeatRatedIDB) && (dp.outdoor_temperature == HVAC::AirSourceHeatRatedODB) } + htg_ap.heat_rated_cops << rate_dp.gross_efficiency_cop + htg_ap.heat_rated_capacities_net << rate_dp.capacity + htg_ap.heat_rated_capacities_gross << rate_dp.gross_capacity + cap_ft_output_values = speed_performance_data.map { |dp| dp.gross_capacity / rate_dp.gross_capacity } + eir_ft_output_values = speed_performance_data.map { |dp| (1.0 / dp.gross_efficiency_cop) / (1.0 / rate_dp.gross_efficiency_cop) } + cap_ft_curve = create_table_lookup(model, "Heat-CAP-fT#{i + 1}", cap_ft_independent_vars, cap_ft_output_values, 0) + eir_ft_curve = create_table_lookup(model, "Heat-EIR-fT#{i + 1}", eir_ft_independent_vars, eir_ft_output_values, 0) + else + cap_ft_spec_si = convert_curve_biquadratic(htg_ap.heat_cap_ft_spec[i]) + eir_ft_spec_si = convert_curve_biquadratic(htg_ap.heat_eir_ft_spec[i]) + cap_ft_curve = create_curve_biquadratic(model, cap_ft_spec_si, "Heat-CAP-fT#{i + 1}", -100, 100, -100, 100) + eir_ft_curve = create_curve_biquadratic(model, eir_ft_spec_si, "Heat-EIR-fT#{i + 1}", -100, 100, -100, 100) + end cap_fff_curve = create_curve_quadratic(model, htg_ap.heat_cap_fflow_spec[i], "Heat-CAP-fFF#{i + 1}", 0, 2, 0, 2) eir_fff_curve = create_curve_quadratic(model, htg_ap.heat_eir_fflow_spec[i], "Heat-EIR-fFF#{i + 1}", 0, 2, 0, 2) + plf_fplr_curve = create_curve_quadratic(model, htg_ap.heat_plf_fplr_spec[i], "Heat-PLF-fPLR#{i + 1}", 0, 1, 0.7, 1) - if htg_ap.num_speeds == 1 + if num_speeds == 1 htg_coil = OpenStudio::Model::CoilHeatingDXSingleSpeed.new(model, model.alwaysOnDiscreteSchedule, cap_ft_curve, cap_fff_curve, eir_ft_curve, eir_fff_curve, plf_fplr_curve) if heating_system.heating_efficiency_cop.nil? - htg_coil.setRatedCOP(1.0 / htg_ap.heat_rated_eirs[i]) + htg_coil.setRatedCOP(htg_ap.heat_rated_cops[i]) else # PTHP or room heat pump htg_coil.setRatedCOP(heating_system.heating_efficiency_cop) end - htg_coil.setRatedTotalHeatingCapacity(UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W')) - htg_coil.setRatedAirFlowRate(calc_rated_airflow(heating_system.heating_capacity, htg_ap.heat_rated_cfm_per_ton[0], 1.0)) + htg_coil.setRatedTotalHeatingCapacity(UnitConversions.convert(htg_ap.heat_rated_capacities_gross[i], 'Btu/hr', 'W')) + htg_coil.setRatedAirFlowRate(calc_rated_airflow(htg_ap.heat_rated_capacities_net[i], htg_ap.heat_rated_cfm_per_ton[0])) else if htg_coil.nil? htg_coil = OpenStudio::Model::CoilHeatingDXMultiSpeed.new(model) htg_coil.setFuelType(EPlus::FuelTypeElectricity) htg_coil.setApplyPartLoadFractiontoSpeedsGreaterthan1(false) htg_coil.setAvailabilitySchedule(model.alwaysOnDiscreteSchedule) + constant_biquadratic = create_curve_biquadratic_constant(model) end stage = OpenStudio::Model::CoilHeatingDXMultiSpeedStageData.new(model, cap_ft_curve, cap_fff_curve, eir_ft_curve, eir_fff_curve, plf_fplr_curve, constant_biquadratic) - stage.setGrossRatedHeatingCOP(1.0 / htg_ap.heat_rated_eirs[i]) + stage.setGrossRatedHeatingCOP(htg_ap.heat_rated_cops[i]) stage.setRatedWasteHeatFractionofPowerInput(0.2) - stage.setGrossRatedHeatingCapacity(UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W') * htg_ap.heat_capacity_ratios[i]) - stage.setRatedAirFlowRate(calc_rated_airflow(heating_system.heating_capacity, htg_ap.heat_rated_cfm_per_ton[i], htg_ap.heat_capacity_ratios[i])) + stage.setGrossRatedHeatingCapacity(UnitConversions.convert(htg_ap.heat_rated_capacities_gross[i], 'Btu/hr', 'W')) + stage.setRatedAirFlowRate(calc_rated_airflow(htg_ap.heat_rated_capacities_net[i], htg_ap.heat_rated_cfm_per_ton[i])) htg_coil.addStage(stage) end end @@ -2965,31 +2686,13 @@ def self.create_dx_heating_coil(model, obj_name, heating_system) if heating_system.fraction_heat_load_served == 0 htg_coil.setResistiveDefrostHeaterCapacity(0) end - htg_coil.setMaximumOutdoorDryBulbTemperatureforCrankcaseHeaterOperation(UnitConversions.convert(crankcase_heater_temp, 'F', 'C')) if heating_system.crankcase_heater_watts.to_f > 0.0 # From RESNET Publication No. 002-2017 + htg_coil.setMaximumOutdoorDryBulbTemperatureforCrankcaseHeaterOperation(UnitConversions.convert(CrankcaseHeaterTemp, 'F', 'C')) if heating_system.crankcase_heater_watts.to_f > 0.0 # From RESNET Publication No. 002-2017 htg_coil.setCrankcaseHeaterCapacity(heating_system.crankcase_heater_watts) htg_coil.additionalProperties.setFeature('HPXML_ID', heating_system.id) # Used by reporting measure return htg_coil end - def self.set_cool_rated_eirs(cooling_system) - clg_ap = cooling_system.additional_properties - - clg_ap.cool_rated_eirs = [] - for speed in 0..clg_ap.num_speeds - 1 - clg_ap.cool_rated_eirs << calc_eir_from_eer(clg_ap.cool_eers[speed], clg_ap.fan_power_rated) - end - end - - def self.set_heat_rated_eirs(heating_system) - htg_ap = heating_system.additional_properties - - htg_ap.heat_rated_eirs = [] - for speed in 0..htg_ap.num_speeds - 1 - htg_ap.heat_rated_eirs << calc_eir_from_cop(htg_ap.heat_cops[speed], htg_ap.fan_power_rated) - end - end - def self.set_cool_rated_shrs_gross(runner, cooling_system) clg_ap = cooling_system.additional_properties @@ -3001,13 +2704,13 @@ def self.set_cool_rated_shrs_gross(runner, cooling_system) dB_rated = 80.0 # deg-F win = 0.01118470 # Humidity ratio corresponding to 80F dry bulb/67F wet bulb (from EnergyPlus) - if clg_ap.num_speeds > 1 - cool_nominal_cfm_per_ton = (clg_ap.cool_rated_airflow_rate - clg_ap.cool_rated_cfm_per_ton[0] * clg_ap.cool_capacity_ratios[0]) / (clg_ap.cool_capacity_ratios[-1] - clg_ap.cool_capacity_ratios[0]) * (1.0 - clg_ap.cool_capacity_ratios[0]) + clg_ap.cool_rated_cfm_per_ton[0] * clg_ap.cool_capacity_ratios[0] - else + if cooling_system.compressor_type == HPXML::HVACCompressorTypeSingleStage cool_nominal_cfm_per_ton = clg_ap.cool_rated_cfm_per_ton[0] + else + cool_nominal_cfm_per_ton = (clg_ap.cool_rated_airflow_rate - clg_ap.cool_rated_cfm_per_ton[0] * clg_ap.cool_capacity_ratios[0]) / (clg_ap.cool_capacity_ratios[-1] - clg_ap.cool_capacity_ratios[0]) * (1.0 - clg_ap.cool_capacity_ratios[0]) + clg_ap.cool_rated_cfm_per_ton[0] * clg_ap.cool_capacity_ratios[0] end - p_atm = 14.696 # standard atmospheric pressure (psia) + p_atm = UnitConversions.convert(1, 'atm', 'psi') ao = Psychrometrics.CoilAoFactor(runner, dB_rated, p_atm, UnitConversions.convert(1, 'ton', 'kBtu/hr'), cool_nominal_cfm_per_ton, cooling_system.cooling_shr, win) @@ -3023,47 +2726,50 @@ def self.calc_plr_coefficients(c_d) return [(1.0 - c_d), c_d, 0.0] # Linear part load model end - def self.set_cool_c_d(cooling_system, num_speeds) + def self.set_cool_c_d(cooling_system) clg_ap = cooling_system.additional_properties # Degradation coefficient for cooling if ((cooling_system.is_a? HPXML::CoolingSystem) && ([HPXML::HVACTypeRoomAirConditioner, HPXML::HVACTypePTAC].include? cooling_system.cooling_system_type)) || ((cooling_system.is_a? HPXML::HeatPump) && ([HPXML::HVACTypeHeatPumpPTHP, HPXML::HVACTypeHeatPumpRoom].include? cooling_system.heat_pump_type)) clg_ap.cool_c_d = 0.22 - elsif num_speeds == 1 + elsif cooling_system.compressor_type == HPXML::HVACCompressorTypeSingleStage if cooling_system.cooling_efficiency_seer < 13.0 clg_ap.cool_c_d = 0.20 else clg_ap.cool_c_d = 0.07 end - elsif num_speeds == 2 + elsif cooling_system.compressor_type == HPXML::HVACCompressorTypeTwoStage clg_ap.cool_c_d = 0.11 - elsif num_speeds >= 4 + elsif cooling_system.compressor_type == HPXML::HVACCompressorTypeVariableSpeed clg_ap.cool_c_d = 0.25 end # PLF curve + num_speeds = clg_ap.cool_capacity_ratios.size clg_ap.cool_plf_fplr_spec = [calc_plr_coefficients(clg_ap.cool_c_d)] * num_speeds end - def self.set_heat_c_d(heating_system, num_speeds) + def self.set_heat_c_d(heating_system) htg_ap = heating_system.additional_properties # Degradation coefficient for heating if (heating_system.is_a? HPXML::HeatPump) && ([HPXML::HVACTypeHeatPumpPTHP, HPXML::HVACTypeHeatPumpRoom].include? heating_system.heat_pump_type) htg_ap.heat_c_d = 0.22 - elsif num_speeds == 1 + elsif heating_system.compressor_type == HPXML::HVACCompressorTypeSingleStage if heating_system.heating_efficiency_hspf < 7.0 htg_ap.heat_c_d = 0.20 else htg_ap.heat_c_d = 0.11 end - elsif num_speeds == 2 + elsif heating_system.compressor_type == HPXML::HVACCompressorTypeTwoStage htg_ap.heat_c_d = 0.11 - elsif num_speeds >= 4 + elsif heating_system.compressor_type == HPXML::HVACCompressorTypeVariableSpeed htg_ap.heat_c_d = 0.25 end + # PLF curve + num_speeds = htg_ap.heat_capacity_ratios.size htg_ap.heat_plf_fplr_spec = [calc_plr_coefficients(htg_ap.heat_c_d)] * num_speeds end @@ -3072,10 +2778,13 @@ def self.calc_ceer_from_eer(cooling_system) return cooling_system.cooling_efficiency_eer / 1.01 end - def self.set_fan_power_rated(hvac_system) + def self.set_fan_power_rated(hvac_system, use_eer_cop) hvac_ap = hvac_system.additional_properties - if hvac_system.distribution_system.nil? + if use_eer_cop + # Fan not separately modeled + hvac_ap.fan_power_rated = 0.0 + elsif hvac_system.distribution_system.nil? # Ductless, installed and rated value should be equal hvac_ap.fan_power_rated = hvac_system.fan_watts_per_cfm # W/cfm else @@ -3106,258 +2815,17 @@ def self.get_unitary_system_from_air_loop_hvac(air_loop) return end - def self.set_cool_rated_eirs_mshp(cooling_system, num_speeds) - clg_ap = cooling_system.additional_properties - - cops_norm = [1.901, 1.859, 1.746, 1.609, 1.474, 1.353, 1.247, 1.156, 1.079, 1.0] - fan_powers_norm = [0.604, 0.634, 0.670, 0.711, 0.754, 0.800, 0.848, 0.898, 0.948, 1.0] - - cop_max_speed = 3.5 # 3.5 is an initial guess, final value solved for below - - fan_powers_rated = [] - eers_rated = [] - - for i in 0..num_speeds - 1 - fan_powers_rated << clg_ap.fan_power_rated * fan_powers_norm[i] - eers_rated << UnitConversions.convert(cop_max_speed, 'W', 'Btu/hr') * cops_norm[i] - end - - cop_max_speed_1 = cop_max_speed - cop_max_speed_2 = cop_max_speed - error = cooling_system.cooling_efficiency_seer - calc_mshp_seer(eers_rated, clg_ap.cool_c_d, clg_ap.cool_capacity_ratios, clg_ap.cool_rated_cfm_per_ton, fan_powers_rated, clg_ap.cool_eir_ft_spec, clg_ap.cool_cap_ft_spec) - error1 = error - error2 = error - - itmax = 50 # maximum iterations - cvg = false - final_n = nil - - for n in 1..itmax + 1 - final_n = n - for i in 0..num_speeds - 1 - eers_rated[i] = UnitConversions.convert(cop_max_speed, 'W', 'Btu/hr') * cops_norm[i] - end - - error = cooling_system.cooling_efficiency_seer - calc_mshp_seer(eers_rated, clg_ap.cool_c_d, clg_ap.cool_capacity_ratios, clg_ap.cool_rated_cfm_per_ton, fan_powers_rated, clg_ap.cool_eir_ft_spec, clg_ap.cool_cap_ft_spec) - - cop_max_speed, cvg, cop_max_speed_1, error1, cop_max_speed_2, error2 = MathTools.Iterate(cop_max_speed, error, cop_max_speed_1, error1, cop_max_speed_2, error2, n, cvg) - - if cvg - break - end - end - - if (not cvg) || (final_n > itmax) - cop_max_speed = UnitConversions.convert(0.547 * cooling_system.cooling_efficiency_seer - 0.104, 'Btu/hr', 'W') # Correlation developed from JonW's MatLab scripts. Only used if an eer cannot be found. - end - - clg_ap.cool_rated_eirs = [] - - for i in 0..num_speeds - 1 - clg_ap.cool_rated_eirs << calc_eir_from_eer(UnitConversions.convert(cop_max_speed, 'W', 'Btu/hr') * cops_norm[i], fan_powers_rated[i]) - end - end - - def self.set_mshp_downselected_speed_indices(heat_pump) - hp_ap = heat_pump.additional_properties - - # Down-select to speed indices - - # Cooling - hp_ap.cool_cap_ft_spec = hp_ap.cool_cap_ft_spec.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.cool_eir_ft_spec = hp_ap.cool_eir_ft_spec.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.cool_cap_fflow_spec = hp_ap.cool_cap_fflow_spec.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.cool_eir_fflow_spec = hp_ap.cool_eir_fflow_spec.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.cool_plf_fplr_spec = hp_ap.cool_plf_fplr_spec.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.cool_rated_cfm_per_ton = hp_ap.cool_rated_cfm_per_ton.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.cool_capacity_ratios = hp_ap.cool_capacity_ratios.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.cool_rated_shrs_gross = hp_ap.cool_rated_shrs_gross.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.cool_rated_eirs = hp_ap.cool_rated_eirs.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.cool_fan_speed_ratios = hp_ap.cool_fan_speed_ratios.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - - if heat_pump.is_a? HPXML::HeatPump # Skip for mini-split air conditioner - # Heating - hp_ap.heat_eir_ft_spec = hp_ap.heat_eir_ft_spec.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.heat_cap_fflow_spec = hp_ap.heat_cap_fflow_spec.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.heat_eir_fflow_spec = hp_ap.heat_eir_fflow_spec.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.heat_cap_ft_spec = hp_ap.heat_cap_ft_spec.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.heat_plf_fplr_spec = hp_ap.heat_plf_fplr_spec.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.heat_rated_cfm_per_ton = hp_ap.heat_rated_cfm_per_ton.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.heat_capacity_ratios = hp_ap.heat_capacity_ratios.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.heat_rated_eirs = hp_ap.heat_rated_eirs.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - hp_ap.heat_fan_speed_ratios = hp_ap.heat_fan_speed_ratios.select.with_index { |_x, i| hp_ap.speed_indices.include? i } - end - end - - def self.calc_mshp_seer(eer_a, c_d, capacity_ratio, cfm_tons, fan_power_rated, cool_eir_ft_spec, cool_cap_ft_spec) - n_max = (eer_a.length - 1.0) - 3.0 # Don't use max speed; FIXME: this is different than calc_mshp_hspf? - n_min = 0 - n_int = (n_min + (n_max - n_min) / 3.0).ceil.to_i - - wBin = 67.0 - tout_B = 82.0 - tout_E = 87.0 - tout_F = 67.0 - - eir_A2 = calc_eir_from_eer(eer_a[n_max], fan_power_rated[n_max]) - eir_B2 = eir_A2 * MathTools.biquadratic(wBin, tout_B, cool_eir_ft_spec[n_max]) - - eir_Av = calc_eir_from_eer(eer_a[n_int], fan_power_rated[n_int]) - eir_Ev = eir_Av * MathTools.biquadratic(wBin, tout_E, cool_eir_ft_spec[n_int]) - - eir_A1 = calc_eir_from_eer(eer_a[n_min], fan_power_rated[n_min]) - eir_B1 = eir_A1 * MathTools.biquadratic(wBin, tout_B, cool_eir_ft_spec[n_min]) - eir_F1 = eir_A1 * MathTools.biquadratic(wBin, tout_F, cool_eir_ft_spec[n_min]) - - q_A2 = capacity_ratio[n_max] - q_B2 = q_A2 * MathTools.biquadratic(wBin, tout_B, cool_cap_ft_spec[n_max]) - q_Ev = capacity_ratio[n_int] * MathTools.biquadratic(wBin, tout_E, cool_cap_ft_spec[n_int]) - q_B1 = capacity_ratio[n_min] * MathTools.biquadratic(wBin, tout_B, cool_cap_ft_spec[n_min]) - q_F1 = capacity_ratio[n_min] * MathTools.biquadratic(wBin, tout_F, cool_cap_ft_spec[n_min]) - - q_A2_net = q_A2 - fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * (cfm_tons[n_max] * capacity_ratio[n_max]) / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_B2_net = q_B2 - fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * (cfm_tons[n_max] * capacity_ratio[n_max]) / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_Ev_net = q_Ev - fan_power_rated[n_int] * UnitConversions.convert(1, 'W', 'Btu/hr') * (cfm_tons[n_int] * capacity_ratio[n_int]) / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_B1_net = q_B1 - fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * (cfm_tons[n_min] * capacity_ratio[n_min]) / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_F1_net = q_F1 - fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * (cfm_tons[n_min] * capacity_ratio[n_min]) / UnitConversions.convert(1, 'ton', 'Btu/hr') - - p_A2 = UnitConversions.convert(q_A2 * eir_A2, 'Btu', 'Wh') + fan_power_rated[n_max] * (cfm_tons[n_max] * capacity_ratio[n_max]) / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_B2 = UnitConversions.convert(q_B2 * eir_B2, 'Btu', 'Wh') + fan_power_rated[n_max] * (cfm_tons[n_max] * capacity_ratio[n_max]) / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_Ev = UnitConversions.convert(q_Ev * eir_Ev, 'Btu', 'Wh') + fan_power_rated[n_int] * (cfm_tons[n_int] * capacity_ratio[n_int]) / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_B1 = UnitConversions.convert(q_B1 * eir_B1, 'Btu', 'Wh') + fan_power_rated[n_min] * (cfm_tons[n_min] * capacity_ratio[n_min]) / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_F1 = UnitConversions.convert(q_F1 * eir_F1, 'Btu', 'Wh') + fan_power_rated[n_min] * (cfm_tons[n_min] * capacity_ratio[n_min]) / UnitConversions.convert(1, 'ton', 'Btu/hr') - - q_k1_87 = q_F1_net + (q_B1_net - q_F1_net) / (82.0 - 67.0) * (87 - 67.0) - q_k2_87 = q_B2_net + (q_A2_net - q_B2_net) / (95.0 - 82.0) * (87.0 - 82.0) - n_Q = (q_Ev_net - q_k1_87) / (q_k2_87 - q_k1_87) - m_Q = (q_B1_net - q_F1_net) / (82.0 - 67.0) * (1.0 - n_Q) + (q_A2_net - q_B2_net) / (95.0 - 82.0) * n_Q - p_k1_87 = p_F1 + (p_B1 - p_F1) / (82.0 - 67.0) * (87.0 - 67.0) - p_k2_87 = p_B2 + (p_A2 - p_B2) / (95.0 - 82.0) * (87.0 - 82.0) - n_E = (p_Ev - p_k1_87) / (p_k2_87 - p_k1_87) - m_E = (p_B1 - p_F1) / (82.0 - 67.0) * (1.0 - n_E) + (p_A2 - p_B2) / (95.0 - 82.0) * n_E - - c_T_1_1 = q_A2_net / (1.1 * (95.0 - 65.0)) - c_T_1_2 = q_F1_net - c_T_1_3 = (q_B1_net - q_F1_net) / (82.0 - 67.0) - t_1 = (c_T_1_2 - 67.0 * c_T_1_3 + 65.0 * c_T_1_1) / (c_T_1_1 - c_T_1_3) - q_T_1 = q_F1_net + (q_B1_net - q_F1_net) / (82.0 - 67.0) * (t_1 - 67.0) - p_T_1 = p_F1 + (p_B1 - p_F1) / (82.0 - 67.0) * (t_1 - 67.0) - eer_T_1 = q_T_1 / p_T_1 - - t_v = (q_Ev_net - 87.0 * m_Q + 65.0 * c_T_1_1) / (c_T_1_1 - m_Q) - q_T_v = q_Ev_net + m_Q * (t_v - 87.0) - p_T_v = p_Ev + m_E * (t_v - 87.0) - eer_T_v = q_T_v / p_T_v - - c_T_2_1 = c_T_1_1 - c_T_2_2 = q_B2_net - c_T_2_3 = (q_A2_net - q_B2_net) / (95.0 - 82.0) - t_2 = (c_T_2_2 - 82.0 * c_T_2_3 + 65.0 * c_T_2_1) / (c_T_2_1 - c_T_2_3) - q_T_2 = q_B2_net + (q_A2_net - q_B2_net) / (95.0 - 82.0) * (t_2 - 82.0) - p_T_2 = p_B2 + (p_A2 - p_B2) / (95.0 - 82.0) * (t_2 - 82.0) - eer_T_2 = q_T_2 / p_T_2 - - d = (t_2**2 - t_1**2) / (t_v**2 - t_1**2) - b = (eer_T_1 - eer_T_2 - d * (eer_T_1 - eer_T_v)) / (t_1 - t_2 - d * (t_1 - t_v)) - c = (eer_T_1 - eer_T_2 - b * (t_1 - t_2)) / (t_1**2 - t_2**2) - a = eer_T_2 - b * t_2 - c * t_2**2 - - e_tot = 0 - q_tot = 0 - t_bins = [67.0, 72.0, 77.0, 82.0, 87.0, 92.0, 97.0, 102.0] - frac_hours = [0.214, 0.231, 0.216, 0.161, 0.104, 0.052, 0.018, 0.004] - - for i in 0..7 - bL = ((t_bins[i] - 65.0) / (95.0 - 65.0)) * (q_A2_net / 1.1) - q_k1 = q_F1_net + (q_B1_net - q_F1_net) / (82.0 - 67.0) * (t_bins[i] - 67.0) - p_k1 = p_F1 + (p_B1 - p_F1) / (82.0 - 67.0) * (t_bins[i] - 67) - q_k2 = q_B2_net + (q_A2_net - q_B2_net) / (95.0 - 82.0) * (t_bins[i] - 82.0) - p_k2 = p_B2 + (p_A2 - p_B2) / (95.0 - 82.0) * (t_bins[i] - 82.0) - - if bL <= q_k1 - x_k1 = bL / q_k1 - q_Tj_N = x_k1 * q_k1 * frac_hours[i] - e_Tj_N = x_k1 * p_k1 * frac_hours[i] / (1 - c_d * (1 - x_k1)) - elsif (q_k1 < bL) && (bL <= q_k2) - q_Tj_N = bL * frac_hours[i] - eer_T_j = a + b * t_bins[i] + c * t_bins[i]**2 - e_Tj_N = q_Tj_N / eer_T_j - else - q_Tj_N = frac_hours[i] * q_k2 - e_Tj_N = frac_hours[i] * p_k2 - end - - q_tot += q_Tj_N - e_tot += e_Tj_N - end - - seer = q_tot / e_tot - return seer - end - - def self.set_heat_rated_eirs_mshp(heat_pump, num_speeds) - hp_ap = heat_pump.additional_properties - - cops_norm = [1.792, 1.502, 1.308, 1.207, 1.145, 1.105, 1.077, 1.056, 1.041, 1.0] - fan_powers_norm = [0.577, 0.625, 0.673, 0.720, 0.768, 0.814, 0.861, 0.907, 0.954, 1.0] - - cop_max_speed = 3.25 # 3.35 is an initial guess, final value solved for below - - fan_powers_rated = [] - cops_rated = [] - - for i in 0..num_speeds - 1 - fan_powers_rated << hp_ap.fan_power_rated * fan_powers_norm[i] - cops_rated << cop_max_speed * cops_norm[i] - end - - cop_max_speed_1 = cop_max_speed - cop_max_speed_2 = cop_max_speed - error = heat_pump.heating_efficiency_hspf - calc_mshp_hspf(cops_rated, hp_ap.heat_c_d, hp_ap.heat_capacity_ratios, hp_ap.heat_rated_cfm_per_ton, fan_powers_rated, hp_ap.heat_eir_ft_spec, hp_ap.heat_cap_ft_spec) - - error1 = error - error2 = error - - itmax = 50 # maximum iterations - cvg = false - final_n = nil - - for n in 1..itmax - final_n = n - for i in 0..num_speeds - 1 - cops_rated[i] = cop_max_speed * cops_norm[i] - end - - error = heat_pump.heating_efficiency_hspf - calc_mshp_hspf(cops_rated, hp_ap.heat_c_d, hp_ap.heat_capacity_ratios, hp_ap.heat_rated_cfm_per_ton, fan_powers_rated, hp_ap.heat_eir_ft_spec, hp_ap.heat_cap_ft_spec) - - cop_max_speed, cvg, cop_max_speed_1, error1, cop_max_speed_2, error2 = MathTools.Iterate(cop_max_speed, error, cop_max_speed_1, error1, cop_max_speed_2, error2, n, cvg) - - if cvg - break - end - end - - if (not cvg) || (final_n > itmax) - cop_max_speed = UnitConversions.convert(0.4174 * heat_pump.heating_efficiency_hspf - 1.1134, 'Btu/hr', 'W') # Correlation developed from JonW's MatLab scripts. Only used if a cop cannot be found. - end - - hp_ap.heat_rated_eirs = [] - for i in 0..num_speeds - 1 - hp_ap.heat_rated_eirs << calc_eir_from_cop(cop_max_speed * cops_norm[i], fan_powers_rated[i]) - end - end - def self.set_gshp_assumptions(heat_pump, weather) hp_ap = heat_pump.additional_properties - hp_ap.design_chw = [85.0, weather.design.CoolingDrybulb - 15.0, weather.data.AnnualAvgDrybulb + 10.0].max # Temperature of water entering indoor coil,use 85F as lower bound + hp_ap.design_chw = [85.0, weather.design.CoolingDrybulb - 15.0, weather.data.DeepGroundAnnualTemp + 10.0].max # Temperature of water entering indoor coil,use 85F as lower bound hp_ap.design_delta_t = 10.0 hp_ap.fluid_type = Constants.FluidPropyleneGlycol hp_ap.frac_glycol = 0.3 if hp_ap.fluid_type == Constants.FluidWater - hp_ap.design_hw = [45.0, weather.design.HeatingDrybulb + 35.0, weather.data.AnnualAvgDrybulb - 10.0].max # Temperature of fluid entering indoor coil, use 45F as lower bound for water + hp_ap.design_hw = [45.0, weather.design.HeatingDrybulb + 35.0, weather.data.DeepGroundAnnualTemp - 10.0].max # Temperature of fluid entering indoor coil, use 45F as lower bound for water else - hp_ap.design_hw = [35.0, weather.design.HeatingDrybulb + 35.0, weather.data.AnnualAvgDrybulb - 10.0].min # Temperature of fluid entering indoor coil, use 35F as upper bound + hp_ap.design_hw = [35.0, weather.design.HeatingDrybulb + 35.0, weather.data.DeepGroundAnnualTemp - 10.0].min # Temperature of fluid entering indoor coil, use 35F as upper bound end hp_ap.ground_diffusivity = 0.0208 hp_ap.grout_conductivity = 0.4 # Btu/h-ft-R @@ -3391,134 +2859,6 @@ def self.set_gshp_assumptions(heat_pump, weather) hp_ap.shank_spacing = hp_ap.u_tube_spacing + hp_ap.pipe_od # Distance from center of pipe to center of pipe end - def self.calc_mshp_hspf(cop_47, c_d, capacity_ratio, cfm_tons, fan_power_rated, heat_eir_ft_spec, heat_cap_ft_spec) - n_max = (cop_47.length - 1.0) #-3 # Don't use max speed; FIXME: this is different than calc_mshp_seer? - n_min = 0 - n_int = (n_min + (n_max - n_min) / 3.0).ceil.to_i - - tin = 70.0 - tout_3 = 17.0 - tout_2 = 35.0 - tout_0 = 62.0 - - eir_H1_2 = calc_eir_from_cop(cop_47[n_max], fan_power_rated[n_max]) - eir_H3_2 = eir_H1_2 * MathTools.biquadratic(tin, tout_3, heat_eir_ft_spec[n_max]) - - eir_adjv = calc_eir_from_cop(cop_47[n_int], fan_power_rated[n_int]) - eir_H2_v = eir_adjv * MathTools.biquadratic(tin, tout_2, heat_eir_ft_spec[n_int]) - - eir_H1_1 = calc_eir_from_cop(cop_47[n_min], fan_power_rated[n_min]) - eir_H0_1 = eir_H1_1 * MathTools.biquadratic(tin, tout_0, heat_eir_ft_spec[n_min]) - - q_H1_2 = capacity_ratio[n_max] - q_H3_2 = q_H1_2 * MathTools.biquadratic(tin, tout_3, heat_cap_ft_spec[n_max]) - - q_H2_v = capacity_ratio[n_int] * MathTools.biquadratic(tin, tout_2, heat_cap_ft_spec[n_int]) - - q_H1_1 = capacity_ratio[n_min] - q_H0_1 = q_H1_1 * MathTools.biquadratic(tin, tout_0, heat_cap_ft_spec[n_min]) - - q_H1_2_net = q_H1_2 + fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_max] * capacity_ratio[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_H3_2_net = q_H3_2 + fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_max] * capacity_ratio[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_H2_v_net = q_H2_v + fan_power_rated[n_int] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_int] * capacity_ratio[n_int] / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_H1_1_net = q_H1_1 + fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_min] * capacity_ratio[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') - q_H0_1_net = q_H0_1 + fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_min] * capacity_ratio[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') - - p_H1_2 = q_H1_2 * eir_H1_2 + fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_max] * capacity_ratio[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_H3_2 = q_H3_2 * eir_H3_2 + fan_power_rated[n_max] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_max] * capacity_ratio[n_max] / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_H2_v = q_H2_v * eir_H2_v + fan_power_rated[n_int] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_int] * capacity_ratio[n_int] / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_H1_1 = q_H1_1 * eir_H1_1 + fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_min] * capacity_ratio[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') - p_H0_1 = q_H0_1 * eir_H0_1 + fan_power_rated[n_min] * UnitConversions.convert(1, 'W', 'Btu/hr') * cfm_tons[n_min] * capacity_ratio[n_min] / UnitConversions.convert(1, 'ton', 'Btu/hr') - - q_H35_2 = 0.9 * (q_H3_2_net + 0.6 * (q_H1_2_net - q_H3_2_net)) - p_H35_2 = 0.985 * (p_H3_2 + 0.6 * (p_H1_2 - p_H3_2)) - q_H35_1 = q_H1_1_net + (q_H0_1_net - q_H1_1_net) / (62.0 - 47.0) * (35.0 - 47.0) - p_H35_1 = p_H1_1 + (p_H0_1 - p_H1_1) / (62.0 - 47.0) * (35.0 - 47.0) - n_Q = (q_H2_v_net - q_H35_1) / (q_H35_2 - q_H35_1) - m_Q = (q_H0_1_net - q_H1_1_net) / (62.0 - 47.0) * (1 - n_Q) + n_Q * (q_H35_2 - q_H3_2_net) / (35.0 - 17.0) - n_E = (p_H2_v - p_H35_1) / (p_H35_2 - p_H35_1) - m_E = (p_H0_1 - p_H1_1) / (62.0 - 47.0) * (1.0 - n_E) + n_E * (p_H35_2 - p_H3_2) / (35.0 - 17.0) - - t_OD = 5.0 - dHR = q_H1_2_net * (65.0 - t_OD) / 60.0 - - c_T_3_1 = q_H1_1_net - c_T_3_2 = (q_H0_1_net - q_H1_1_net) / (62.0 - 47.0) - c_T_3_3 = 0.77 * dHR / (65.0 - t_OD) - t_3 = (47.0 * c_T_3_2 + 65.0 * c_T_3_3 - c_T_3_1) / (c_T_3_2 + c_T_3_3) - q_HT3_1 = q_H1_1_net + (q_H0_1_net - q_H1_1_net) / (62.0 - 47.0) * (t_3 - 47.0) - p_HT3_1 = p_H1_1 + (p_H0_1 - p_H1_1) / (62.0 - 47.0) * (t_3 - 47.0) - cop_T3_1 = q_HT3_1 / p_HT3_1 - - c_T_v_1 = q_H2_v_net - c_T_v_3 = c_T_3_3 - t_v = (35.0 * m_Q + 65.0 * c_T_v_3 - c_T_v_1) / (m_Q + c_T_v_3) - q_HTv_v = q_H2_v_net + m_Q * (t_v - 35.0) - p_HTv_v = p_H2_v + m_E * (t_v - 35.0) - cop_Tv_v = q_HTv_v / p_HTv_v - - c_T_4_1 = q_H3_2_net - c_T_4_2 = (q_H35_2 - q_H3_2_net) / (35.0 - 17.0) - c_T_4_3 = c_T_v_3 - t_4 = (17.0 * c_T_4_2 + 65.0 * c_T_4_3 - c_T_4_1) / (c_T_4_2 + c_T_4_3) - q_HT4_2 = q_H3_2_net + (q_H35_2 - q_H3_2_net) / (35.0 - 17.0) * (t_4 - 17.0) - p_HT4_2 = p_H3_2 + (p_H35_2 - p_H3_2) / (35.0 - 17.0) * (t_4 - 17.0) - cop_T4_2 = q_HT4_2 / p_HT4_2 - - d = (t_3**2 - t_4**2) / (t_v**2 - t_4**2) - b = (cop_T4_2 - cop_T3_1 - d * (cop_T4_2 - cop_Tv_v)) / (t_4 - t_3 - d * (t_4 - t_v)) - c = (cop_T4_2 - cop_T3_1 - b * (t_4 - t_3)) / (t_4**2 - t_3**2) - a = cop_T4_2 - b * t_4 - c * t_4**2 - - t_bins = [62.0, 57.0, 52.0, 47.0, 42.0, 37.0, 32.0, 27.0, 22.0, 17.0, 12.0, 7.0, 2.0, -3.0, -8.0] - frac_hours = [0.132, 0.111, 0.103, 0.093, 0.100, 0.109, 0.126, 0.087, 0.055, 0.036, 0.026, 0.013, 0.006, 0.002, 0.001] - - # T_off = hp_min_temp - t_off = 10.0 - t_on = t_off + 4.0 - etot = 0 - bLtot = 0 - - for i in 0..14 - bL = ((65.0 - t_bins[i]) / (65.0 - t_OD)) * 0.77 * dHR - - q_1 = q_H1_1_net + (q_H0_1_net - q_H1_1_net) / (62.0 - 47.0) * (t_bins[i] - 47.0) - p_1 = p_H1_1 + (p_H0_1 - p_H1_1) / (62.0 - 47.0) * (t_bins[i] - 47.0) - - if (t_bins[i] <= 17.0) || (t_bins[i] >= 45.0) - q_2 = q_H3_2_net + (q_H1_2_net - q_H3_2_net) * (t_bins[i] - 17.0) / (47.0 - 17.0) - p_2 = p_H3_2 + (p_H1_2 - p_H3_2) * (t_bins[i] - 17.0) / (47.0 - 17.0) - else - q_2 = q_H3_2_net + (q_H35_2 - q_H3_2_net) * (t_bins[i] - 17) / (35.0 - 17.0) - p_2 = p_H3_2 + (p_H35_2 - p_H3_2) * (t_bins[i] - 17.0) / (35.0 - 17.0) - end - - if t_bins[i] <= t_off - delta = 0 - elsif t_bins[i] >= t_on - delta = 1.0 - else - delta = 0.5 - end - - if bL <= q_1 - x_1 = bL / q_1 - e_Tj_n = delta * x_1 * p_1 * frac_hours[i] / (1.0 - c_d * (1.0 - x_1)) - elsif (q_1 < bL) && (bL <= q_2) - cop_T_j = a + b * t_bins[i] + c * t_bins[i]**2 - e_Tj_n = delta * frac_hours[i] * bL / cop_T_j + (1.0 - delta) * bL * (frac_hours[i]) - else - e_Tj_n = delta * frac_hours[i] * p_2 + frac_hours[i] * (bL - delta * q_2) - end - - bLtot += frac_hours[i] * bL - etot += e_Tj_n - end - - hspf = bLtot / UnitConversions.convert(etot, 'Btu/hr', 'W') - return hspf - end - def self.calc_sequential_load_fractions(load_fraction, remaining_fraction, availability_days) # Returns the EnergyPlus sequential load fractions for every day of the year if remaining_fraction > 0 @@ -3605,24 +2945,42 @@ def self.set_heat_pump_temperatures(heat_pump, runner = nil) if not heat_pump.backup_heating_switchover_temp.nil? hp_ap.hp_min_temp = heat_pump.backup_heating_switchover_temp hp_ap.supp_max_temp = heat_pump.backup_heating_switchover_temp - - if heat_pump.backup_type == HPXML::HeatPumpBackupTypeIntegrated - hp_backup_fuel = heat_pump.backup_heating_fuel - elsif not heat_pump.backup_system.nil? - hp_backup_fuel = heat_pump.backup_system.heating_system_fuel - end - if (hp_backup_fuel == HPXML::FuelTypeElectricity) && (not runner.nil?) - runner.registerError('Switchover temperature should not be used for a heat pump with electric backup; use compressor lockout temperature instead.') - end else hp_ap.hp_min_temp = heat_pump.compressor_lockout_temp hp_ap.supp_max_temp = heat_pump.backup_heating_lockout_temp end + + # Error-checking + # Can't do this in Schematron because temperatures can be defaulted + if heat_pump.backup_type == HPXML::HeatPumpBackupTypeIntegrated + hp_backup_fuel = heat_pump.backup_heating_fuel + elsif not heat_pump.backup_system.nil? + hp_backup_fuel = heat_pump.backup_system.heating_system_fuel + end + if (hp_backup_fuel == HPXML::FuelTypeElectricity) && (not runner.nil?) + if (not hp_ap.hp_min_temp.nil?) && (not hp_ap.supp_max_temp.nil?) && ((hp_ap.hp_min_temp - hp_ap.supp_max_temp).abs < 5) + if not heat_pump.backup_heating_switchover_temp.nil? + runner.registerError('Switchover temperature should only be used for a heat pump with fossil fuel backup; use compressor lockout temperature instead.') + else + runner.registerError('Similar compressor/backup lockout temperatures should only be used for a heat pump with fossil fuel backup.') + end + end + end + end + + def self.get_default_duct_fraction_outside_conditioned_space(ncfl_ag) + # Equation based on ASHRAE 152 + # https://www.energy.gov/eere/buildings/downloads/ashrae-standard-152-spreadsheet + f_out = (ncfl_ag <= 1) ? 1.0 : 0.75 + return f_out end def self.get_default_duct_surface_area(duct_type, ncfl_ag, cfa_served, n_returns) + # Equations based on ASHRAE 152 + # https://www.energy.gov/eere/buildings/downloads/ashrae-standard-152-spreadsheet + # Fraction of primary ducts (ducts outside conditioned space) - f_out = (ncfl_ag <= 1) ? 1.0 : 0.75 + f_out = get_default_duct_fraction_outside_conditioned_space(ncfl_ag) if duct_type == HPXML::DuctTypeSupply primary_duct_area = 0.27 * cfa_served * f_out @@ -3636,7 +2994,7 @@ def self.get_default_duct_surface_area(duct_type, ncfl_ag, cfa_served, n_returns return primary_duct_area, secondary_duct_area end - def self.get_default_duct_locations(hpxml) + def self.get_default_duct_locations(hpxml_bldg) primary_duct_location_hierarchy = [HPXML::LocationBasementConditioned, HPXML::LocationBasementUnconditioned, HPXML::LocationCrawlspaceConditioned, @@ -3648,12 +3006,12 @@ def self.get_default_duct_locations(hpxml) primary_duct_location = nil primary_duct_location_hierarchy.each do |location| - if hpxml.has_location(location) + if hpxml_bldg.has_location(location) primary_duct_location = location break end end - secondary_duct_location = HPXML::LocationLivingSpace + secondary_duct_location = HPXML::LocationConditionedSpace return primary_duct_location, secondary_duct_location end @@ -3682,21 +3040,7 @@ def self.get_charge_fault_heating_coeff(f_chg) return qgr_values, p_values, ff_chg_values end - def self.get_airflow_fault_cooling_coeff() - # Cutler curve coefficients for single speed - cool_cap_fflow_spec = [0.718664047, 0.41797409, -0.136638137] - cool_eir_fflow_spec = [1.143487507, -0.13943972, -0.004047787] - return cool_cap_fflow_spec, cool_eir_fflow_spec - end - - def self.get_airflow_fault_heating_coeff() - # Cutler curve coefficients for single speed - heat_cap_fflow_spec = [0.694045465, 0.474207981, -0.168253446] - heat_eir_fflow_spec = [2.185418751, -1.942827919, 0.757409168] - return heat_cap_fflow_spec, heat_eir_fflow_spec - end - - def self.add_install_quality_calculations(fault_program, tin_sensor, tout_sensor, airflow_rated_defect_ratio, clg_or_htg_coil, model, f_chg, obj_name, mode, defect_ratio) + def self.add_install_quality_calculations(fault_program, tin_sensor, tout_sensor, airflow_rated_defect_ratio, clg_or_htg_coil, model, f_chg, obj_name, mode, defect_ratio, hvac_ap) if mode == :clg if clg_or_htg_coil.is_a? OpenStudio::Model::CoilCoolingDXSingleSpeed num_speeds = 1 @@ -3704,8 +3048,13 @@ def self.add_install_quality_calculations(fault_program, tin_sensor, tout_sensor eir_pow_fff_curves = [clg_or_htg_coil.energyInputRatioFunctionOfFlowFractionCurve.to_CurveQuadratic.get] elsif clg_or_htg_coil.is_a? OpenStudio::Model::CoilCoolingDXMultiSpeed num_speeds = clg_or_htg_coil.stages.size - cap_fff_curves = clg_or_htg_coil.stages.map { |stage| stage.totalCoolingCapacityFunctionofFlowFractionCurve.to_CurveQuadratic.get } - eir_pow_fff_curves = clg_or_htg_coil.stages.map { |stage| stage.energyInputRatioFunctionofFlowFractionCurve.to_CurveQuadratic.get } + if clg_or_htg_coil.stages[0].totalCoolingCapacityFunctionofFlowFractionCurve.to_CurveQuadratic.is_initialized + cap_fff_curves = clg_or_htg_coil.stages.map { |stage| stage.totalCoolingCapacityFunctionofFlowFractionCurve.to_CurveQuadratic.get } + eir_pow_fff_curves = clg_or_htg_coil.stages.map { |stage| stage.energyInputRatioFunctionofFlowFractionCurve.to_CurveQuadratic.get } + else + cap_fff_curves = clg_or_htg_coil.stages.map { |stage| stage.totalCoolingCapacityFunctionofFlowFractionCurve.to_TableLookup.get } + eir_pow_fff_curves = clg_or_htg_coil.stages.map { |stage| stage.energyInputRatioFunctionofFlowFractionCurve.to_TableLookup.get } + end elsif clg_or_htg_coil.is_a? OpenStudio::Model::CoilCoolingWaterToAirHeatPumpEquationFit num_speeds = 1 cap_fff_curves = [clg_or_htg_coil.totalCoolingCapacityCurve.to_CurveQuadLinear.get] # quadlinear curve, only forth term is for airflow @@ -3730,8 +3079,13 @@ def self.add_install_quality_calculations(fault_program, tin_sensor, tout_sensor eir_pow_fff_curves = [clg_or_htg_coil.energyInputRatioFunctionofFlowFractionCurve.to_CurveQuadratic.get] elsif clg_or_htg_coil.is_a? OpenStudio::Model::CoilHeatingDXMultiSpeed num_speeds = clg_or_htg_coil.stages.size - cap_fff_curves = clg_or_htg_coil.stages.map { |stage| stage.heatingCapacityFunctionofFlowFractionCurve.to_CurveQuadratic.get } - eir_pow_fff_curves = clg_or_htg_coil.stages.map { |stage| stage.energyInputRatioFunctionofFlowFractionCurve.to_CurveQuadratic.get } + if clg_or_htg_coil.stages[0].heatingCapacityFunctionofFlowFractionCurve.to_CurveQuadratic.is_initialized + cap_fff_curves = clg_or_htg_coil.stages.map { |stage| stage.heatingCapacityFunctionofFlowFractionCurve.to_CurveQuadratic.get } + eir_pow_fff_curves = clg_or_htg_coil.stages.map { |stage| stage.energyInputRatioFunctionofFlowFractionCurve.to_CurveQuadratic.get } + else + cap_fff_curves = clg_or_htg_coil.stages.map { |stage| stage.heatingCapacityFunctionofFlowFractionCurve.to_TableLookup.get } + eir_pow_fff_curves = clg_or_htg_coil.stages.map { |stage| stage.energyInputRatioFunctionofFlowFractionCurve.to_TableLookup.get } + end elsif clg_or_htg_coil.is_a? OpenStudio::Model::CoilHeatingWaterToAirHeatPumpEquationFit num_speeds = 1 cap_fff_curves = [clg_or_htg_coil.heatingCapacityCurve.to_CurveQuadLinear.get] # quadlinear curve, only forth term is for airflow @@ -3753,20 +3107,20 @@ def self.add_install_quality_calculations(fault_program, tin_sensor, tout_sensor # Apply Cutler curve airflow coefficients to later equations if mode == :clg - cap_fflow_spec, eir_fflow_spec = get_airflow_fault_cooling_coeff() + cap_fflow_spec, eir_fflow_spec = get_cool_cap_eir_fflow_spec(HPXML::HVACCompressorTypeSingleStage) qgr_values, p_values, ff_chg_values = get_charge_fault_cooling_coeff(f_chg) suffix = 'clg' elsif mode == :htg - cap_fflow_spec, eir_fflow_spec = get_airflow_fault_heating_coeff() + cap_fflow_spec, eir_fflow_spec = get_heat_cap_eir_fflow_spec(HPXML::HVACCompressorTypeSingleStage) qgr_values, p_values, ff_chg_values = get_charge_fault_heating_coeff(f_chg) suffix = 'htg' end - fault_program.addLine("Set a1_AF_Qgr_#{suffix} = #{cap_fflow_spec[0]}") - fault_program.addLine("Set a2_AF_Qgr_#{suffix} = #{cap_fflow_spec[1]}") - fault_program.addLine("Set a3_AF_Qgr_#{suffix} = #{cap_fflow_spec[2]}") - fault_program.addLine("Set a1_AF_EIR_#{suffix} = #{eir_fflow_spec[0]}") - fault_program.addLine("Set a2_AF_EIR_#{suffix} = #{eir_fflow_spec[1]}") - fault_program.addLine("Set a3_AF_EIR_#{suffix} = #{eir_fflow_spec[2]}") + fault_program.addLine("Set a1_AF_Qgr_#{suffix} = #{cap_fflow_spec[0][0]}") + fault_program.addLine("Set a2_AF_Qgr_#{suffix} = #{cap_fflow_spec[0][1]}") + fault_program.addLine("Set a3_AF_Qgr_#{suffix} = #{cap_fflow_spec[0][2]}") + fault_program.addLine("Set a1_AF_EIR_#{suffix} = #{eir_fflow_spec[0][0]}") + fault_program.addLine("Set a2_AF_EIR_#{suffix} = #{eir_fflow_spec[0][1]}") + fault_program.addLine("Set a3_AF_EIR_#{suffix} = #{eir_fflow_spec[0][2]}") # charge fault coefficients fault_program.addLine("Set a1_CH_Qgr_#{suffix} = #{qgr_values[0]}") @@ -3821,12 +3175,14 @@ def self.add_install_quality_calculations(fault_program, tin_sensor, tout_sensor fault_program.addLine("Set EIR_IQ_adj_#{suffix} = EIR_Cutler_Curve_After_#{suffix} / EIR_Cutler_Curve_Pre_#{suffix}") # NOTE: heat pump (cooling) curves don't exhibit expected trends at extreme faults; if (not clg_or_htg_coil.is_a? OpenStudio::Model::CoilCoolingWaterToAirHeatPumpEquationFit) && (not clg_or_htg_coil.is_a? OpenStudio::Model::CoilHeatingWaterToAirHeatPumpEquationFit) - fault_program.addLine("Set CAP_c1_#{suffix} = #{cap_fff_curve.coefficient1Constant}") - fault_program.addLine("Set CAP_c2_#{suffix} = #{cap_fff_curve.coefficient2x}") - fault_program.addLine("Set CAP_c3_#{suffix} = #{cap_fff_curve.coefficient3xPOW2}") - fault_program.addLine("Set EIR_c1_#{suffix} = #{eir_pow_fff_curve.coefficient1Constant}") - fault_program.addLine("Set EIR_c2_#{suffix} = #{eir_pow_fff_curve.coefficient2x}") - fault_program.addLine("Set EIR_c3_#{suffix} = #{eir_pow_fff_curve.coefficient3xPOW2}") + cap_fff_specs_coeff = (mode == :clg) ? hvac_ap.cool_cap_fflow_spec[speed] : hvac_ap.heat_cap_fflow_spec[speed] + eir_fff_specs_coeff = (mode == :clg) ? hvac_ap.cool_eir_fflow_spec[speed] : hvac_ap.heat_eir_fflow_spec[speed] + fault_program.addLine("Set CAP_c1_#{suffix} = #{cap_fff_specs_coeff[0]}") + fault_program.addLine("Set CAP_c2_#{suffix} = #{cap_fff_specs_coeff[1]}") + fault_program.addLine("Set CAP_c3_#{suffix} = #{cap_fff_specs_coeff[2]}") + fault_program.addLine("Set EIR_c1_#{suffix} = #{eir_fff_specs_coeff[0]}") + fault_program.addLine("Set EIR_c2_#{suffix} = #{eir_fff_specs_coeff[1]}") + fault_program.addLine("Set EIR_c3_#{suffix} = #{eir_fff_specs_coeff[2]}") fault_program.addLine("Set cap_curve_v_pre_#{suffix} = (CAP_c1_#{suffix}) + ((CAP_c2_#{suffix})*FF_AF_nodef_#{suffix}) + ((CAP_c3_#{suffix})*FF_AF_nodef_#{suffix}*FF_AF_nodef_#{suffix})") fault_program.addLine("Set eir_curve_v_pre_#{suffix} = (EIR_c1_#{suffix}) + ((EIR_c2_#{suffix})*FF_AF_nodef_#{suffix}) + ((EIR_c3_#{suffix})*FF_AF_nodef_#{suffix}*FF_AF_nodef_#{suffix})") fault_program.addLine("Set #{cap_fff_act.name} = cap_curve_v_pre_#{suffix} * CAP_IQ_adj_#{suffix}") @@ -3860,9 +3216,11 @@ def self.apply_installation_quality(model, heating_system, cooling_system, unita if not cooling_system.nil? charge_defect_ratio = cooling_system.charge_defect_ratio cool_airflow_defect_ratio = cooling_system.airflow_defect_ratio + clg_ap = cooling_system.additional_properties end if not heating_system.nil? heat_airflow_defect_ratio = heating_system.airflow_defect_ratio + htg_ap = heating_system.additional_properties end return if (charge_defect_ratio.to_f.abs < 0.001) && (cool_airflow_defect_ratio.to_f.abs < 0.001) && (heat_airflow_defect_ratio.to_f.abs < 0.001) @@ -3907,11 +3265,11 @@ def self.apply_installation_quality(model, heating_system, cooling_system, unita fault_program.addLine("Set F_CH = #{f_chg.round(3)}") if not cool_airflow_rated_defect_ratio.empty? - add_install_quality_calculations(fault_program, tin_sensor, tout_sensor, cool_airflow_rated_defect_ratio, clg_coil, model, f_chg, obj_name, :clg, cool_airflow_defect_ratio) + add_install_quality_calculations(fault_program, tin_sensor, tout_sensor, cool_airflow_rated_defect_ratio, clg_coil, model, f_chg, obj_name, :clg, cool_airflow_defect_ratio, clg_ap) end if not heat_airflow_rated_defect_ratio.empty? - add_install_quality_calculations(fault_program, tin_sensor, tout_sensor, heat_airflow_rated_defect_ratio, htg_coil, model, f_chg, obj_name, :htg, heat_airflow_defect_ratio) + add_install_quality_calculations(fault_program, tin_sensor, tout_sensor, heat_airflow_rated_defect_ratio, htg_coil, model, f_chg, obj_name, :htg, heat_airflow_defect_ratio, htg_ap) end program_calling_manager = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model) program_calling_manager.setName("#{obj_name} program manager") @@ -3923,13 +3281,13 @@ def self.get_default_gshp_pump_power() return 30.0 # W/ton, per ANSI/RESNET/ICC 301-2019 Section 4.4.5 (closed loop) end - def self.apply_shared_systems(hpxml) - applied_clg = apply_shared_cooling_systems(hpxml) - applied_htg = apply_shared_heating_systems(hpxml) + def self.apply_shared_systems(hpxml_bldg) + applied_clg = apply_shared_cooling_systems(hpxml_bldg) + applied_htg = apply_shared_heating_systems(hpxml_bldg) return unless (applied_clg || applied_htg) # Remove WLHP if not serving heating nor cooling - hpxml.heat_pumps.each do |hp| + hpxml_bldg.heat_pumps.each do |hp| next unless hp.heat_pump_type == HPXML::HVACTypeHeatPumpWaterLoopToAir next if hp.fraction_heat_load_served > 0 next if hp.fraction_cool_load_served > 0 @@ -3938,9 +3296,9 @@ def self.apply_shared_systems(hpxml) end # Remove any orphaned HVAC distributions - hpxml.hvac_distributions.each do |hvac_distribution| + hpxml_bldg.hvac_distributions.each do |hvac_distribution| hvac_systems = [] - hpxml.hvac_systems.each do |hvac_system| + hpxml_bldg.hvac_systems.each do |hvac_system| next if hvac_system.distribution_system_idref.nil? next unless hvac_system.distribution_system_idref == hvac_distribution.id @@ -3952,9 +3310,9 @@ def self.apply_shared_systems(hpxml) end end - def self.apply_shared_cooling_systems(hpxml) + def self.apply_shared_cooling_systems(hpxml_bldg) applied = false - hpxml.cooling_systems.each do |cooling_system| + hpxml_bldg.cooling_systems.each do |cooling_system| next unless cooling_system.is_shared_system applied = true @@ -3973,7 +3331,7 @@ def self.apply_shared_cooling_systems(hpxml) chiller_input = UnitConversions.convert(cooling_system.cooling_efficiency_kw_per_ton * UnitConversions.convert(cap, 'Btu/hr', 'ton'), 'kW', 'W') if distribution_type == HPXML::HVACDistributionTypeHydronic if distribution_system.hydronic_type == HPXML::HydronicTypeWaterLoop - wlhp = hpxml.heat_pumps.find { |hp| hp.heat_pump_type == HPXML::HVACTypeHeatPumpWaterLoopToAir } + wlhp = hpxml_bldg.heat_pumps.find { |hp| hp.heat_pump_type == HPXML::HVACTypeHeatPumpWaterLoopToAir } aux_dweq = wlhp.cooling_capacity / wlhp.cooling_efficiency_eer else aux_dweq = 0.0 @@ -3991,7 +3349,7 @@ def self.apply_shared_cooling_systems(hpxml) # Cooling tower w/ water loop heat pump if distribution_type == HPXML::HVACDistributionTypeHydronic if distribution_system.hydronic_type == HPXML::HydronicTypeWaterLoop - wlhp = hpxml.heat_pumps.find { |hp| hp.heat_pump_type == HPXML::HVACTypeHeatPumpWaterLoopToAir } + wlhp = hpxml_bldg.heat_pumps.find { |hp| hp.heat_pump_type == HPXML::HVACTypeHeatPumpWaterLoopToAir } wlhp_cap = wlhp.cooling_capacity wlhp_input = wlhp_cap / wlhp.cooling_efficiency_eer end @@ -4026,45 +3384,45 @@ def self.apply_shared_cooling_systems(hpxml) wlhp.fraction_heat_load_served = 0.0 else # Assign DSE=1 - hpxml.hvac_distributions.add(id: "#{cooling_system.id}AirDistributionSystem", - distribution_system_type: HPXML::HVACDistributionTypeDSE, - annual_cooling_dse: 1.0, - annual_heating_dse: 1.0) - cooling_system.distribution_system_idref = hpxml.hvac_distributions[-1].id + hpxml_bldg.hvac_distributions.add(id: "#{cooling_system.id}AirDistributionSystem", + distribution_system_type: HPXML::HVACDistributionTypeDSE, + annual_cooling_dse: 1.0, + annual_heating_dse: 1.0) + cooling_system.distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id end elsif (distribution_type == HPXML::HVACDistributionTypeAir) && (distribution_system.air_type == HPXML::AirTypeFanCoil) # Convert "fan coil" air distribution system to "regular velocity" if distribution_system.hvac_systems.size > 1 # Has attached heating system, so create a copy specifically for the cooling system - hpxml.hvac_distributions.add(id: "#{distribution_system.id}_#{cooling_system.id}", - distribution_system_type: distribution_system.distribution_system_type, - air_type: distribution_system.air_type, - number_of_return_registers: distribution_system.number_of_return_registers, - conditioned_floor_area_served: distribution_system.conditioned_floor_area_served) + hpxml_bldg.hvac_distributions.add(id: "#{distribution_system.id}_#{cooling_system.id}", + distribution_system_type: distribution_system.distribution_system_type, + air_type: distribution_system.air_type, + number_of_return_registers: distribution_system.number_of_return_registers, + conditioned_floor_area_served: distribution_system.conditioned_floor_area_served) distribution_system.duct_leakage_measurements.each do |lm| - hpxml.hvac_distributions[-1].duct_leakage_measurements << lm.dup + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << lm.dup end distribution_system.ducts.each do |d| - hpxml.hvac_distributions[-1].ducts << d.dup + hpxml_bldg.hvac_distributions[-1].ducts << d.dup end - cooling_system.distribution_system_idref = hpxml.hvac_distributions[-1].id + cooling_system.distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id end - hpxml.hvac_distributions[-1].air_type = HPXML::AirTypeRegularVelocity - if hpxml.hvac_distributions[-1].duct_leakage_measurements.select { |lm| (lm.duct_type == HPXML::DuctTypeSupply) && (lm.duct_leakage_total_or_to_outside == HPXML::DuctLeakageToOutside) }.size == 0 + hpxml_bldg.hvac_distributions[-1].air_type = HPXML::AirTypeRegularVelocity + if hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements.select { |lm| (lm.duct_type == HPXML::DuctTypeSupply) && (lm.duct_leakage_total_or_to_outside == HPXML::DuctLeakageToOutside) }.size == 0 # Assign zero supply leakage - hpxml.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, - duct_leakage_units: HPXML::UnitsCFM25, - duct_leakage_value: 0, - duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, + duct_leakage_units: HPXML::UnitsCFM25, + duct_leakage_value: 0, + duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) end - if hpxml.hvac_distributions[-1].duct_leakage_measurements.select { |lm| (lm.duct_type == HPXML::DuctTypeReturn) && (lm.duct_leakage_total_or_to_outside == HPXML::DuctLeakageToOutside) }.size == 0 + if hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements.select { |lm| (lm.duct_type == HPXML::DuctTypeReturn) && (lm.duct_leakage_total_or_to_outside == HPXML::DuctLeakageToOutside) }.size == 0 # Assign zero return leakage - hpxml.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn, - duct_leakage_units: HPXML::UnitsCFM25, - duct_leakage_value: 0, - duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn, + duct_leakage_units: HPXML::UnitsCFM25, + duct_leakage_value: 0, + duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) end - hpxml.hvac_distributions[-1].ducts.each do |d| + hpxml_bldg.hvac_distributions[-1].ducts.each do |d| d.id = "#{d.id}_#{cooling_system.id}" end end @@ -4073,9 +3431,9 @@ def self.apply_shared_cooling_systems(hpxml) return applied end - def self.apply_shared_heating_systems(hpxml) + def self.apply_shared_heating_systems(hpxml_bldg) applied = false - hpxml.heating_systems.each do |heating_system| + hpxml_bldg.heating_systems.each do |heating_system| next unless heating_system.is_shared_system applied = true @@ -4092,7 +3450,7 @@ def self.apply_shared_heating_systems(hpxml) # Heat pump # If this approach is ever removed, also remove code in HVACSizing.apply_hvac_loads() - wlhp = hpxml.heat_pumps.find { |hp| hp.heat_pump_type == HPXML::HVACTypeHeatPumpWaterLoopToAir } + wlhp = hpxml_bldg.heat_pumps.find { |hp| hp.heat_pump_type == HPXML::HVACTypeHeatPumpWaterLoopToAir } wlhp.fraction_heat_load_served = fraction_heat_load_served * (1.0 / wlhp.heating_efficiency_cop) wlhp.fraction_cool_load_served = 0.0 @@ -4106,31 +3464,13 @@ def self.apply_shared_heating_systems(hpxml) return applied end - def self.set_num_speeds(hvac_system) - hvac_ap = hvac_system.additional_properties - - if hvac_system.is_a?(HPXML::CoolingSystem) && ([HPXML::HVACTypeRoomAirConditioner, HPXML::HVACTypePTAC].include? hvac_system.cooling_system_type) - hvac_ap.num_speeds = 1 - elsif (hvac_system.is_a?(HPXML::CoolingSystem) && (hvac_system.cooling_system_type == HPXML::HVACTypeMiniSplitAirConditioner)) || - (hvac_system.is_a?(HPXML::HeatPump) && (hvac_system.heat_pump_type == HPXML::HVACTypeHeatPumpMiniSplit)) - hvac_ap.speed_indices = [1, 3, 5, 9] # Speeds we model - hvac_ap.num_speeds = hvac_ap.speed_indices.size - elsif hvac_system.compressor_type == HPXML::HVACCompressorTypeSingleStage - hvac_ap.num_speeds = 1 - elsif hvac_system.compressor_type == HPXML::HVACCompressorTypeTwoStage - hvac_ap.num_speeds = 2 - elsif hvac_system.compressor_type == HPXML::HVACCompressorTypeVariableSpeed - hvac_ap.num_speeds = 4 - end - end - - def self.calc_rated_airflow(capacity, rated_cfm_per_ton, capacity_ratio) - return UnitConversions.convert(capacity, 'Btu/hr', 'ton') * UnitConversions.convert(rated_cfm_per_ton, 'cfm', 'm^3/s') * capacity_ratio + def self.calc_rated_airflow(capacity, rated_cfm_per_ton) + return UnitConversions.convert(capacity, 'Btu/hr', 'ton') * UnitConversions.convert(rated_cfm_per_ton, 'cfm', 'm^3/s') end - def self.is_attached_heating_and_cooling_systems(hpxml, heating_system, cooling_system) + def self.is_attached_heating_and_cooling_systems(hpxml_bldg, heating_system, cooling_system) # Now only allows furnace+AC - if not ((hpxml.heating_systems.include? heating_system) && (hpxml.cooling_systems.include? cooling_system)) + if not ((hpxml_bldg.heating_systems.include? heating_system) && (hpxml_bldg.cooling_systems.include? cooling_system)) return false end if not (heating_system.heating_system_type == HPXML::HVACTypeFurnace && cooling_system.cooling_system_type == HPXML::HVACTypeCentralAirConditioner) @@ -4140,23 +3480,23 @@ def self.is_attached_heating_and_cooling_systems(hpxml, heating_system, cooling_ return true end - def self.get_hpxml_hvac_systems(hpxml) + def self.get_hpxml_hvac_systems(hpxml_bldg) # Returns a list of heating/cooling systems, incorporating whether # multiple systems are connected to the same distribution system # (e.g., a furnace + central air conditioner w/ the same ducts). hvac_systems = [] - hpxml.cooling_systems.each do |cooling_system| + hpxml_bldg.cooling_systems.each do |cooling_system| heating_system = nil - if is_attached_heating_and_cooling_systems(hpxml, cooling_system.attached_heating_system, cooling_system) + if is_attached_heating_and_cooling_systems(hpxml_bldg, cooling_system.attached_heating_system, cooling_system) heating_system = cooling_system.attached_heating_system end hvac_systems << { cooling: cooling_system, heating: heating_system } end - hpxml.heating_systems.each do |heating_system| - if is_attached_heating_and_cooling_systems(hpxml, heating_system, heating_system.attached_cooling_system) + hpxml_bldg.heating_systems.each do |heating_system| + if is_attached_heating_and_cooling_systems(hpxml_bldg, heating_system, heating_system.attached_cooling_system) next # Already processed with cooling end @@ -4167,7 +3507,7 @@ def self.get_hpxml_hvac_systems(hpxml) # Heat pump with backup system must be sorted last so that the last two # HVAC systems in the EnergyPlus EquipmentList are 1) the heat pump and # 2) the heat pump backup system. - hpxml.heat_pumps.sort_by { |hp| hp.backup_system_idref.to_s }.each do |heat_pump| + hpxml_bldg.heat_pumps.sort_by { |hp| hp.backup_system_idref.to_s }.each do |heat_pump| hvac_systems << { cooling: heat_pump, heating: heat_pump } end @@ -4175,30 +3515,85 @@ def self.get_hpxml_hvac_systems(hpxml) return hvac_systems end - def self.ensure_nonzero_sizing_values(hpxml) + def self.ensure_nonzero_sizing_values(hpxml_bldg) min_capacity = 1.0 # Btuh min_airflow = 3.0 # cfm; E+ min airflow is 0.001 m3/s - hpxml.heating_systems.each do |htg_sys| + hpxml_bldg.heating_systems.each do |htg_sys| htg_sys.heating_capacity = [htg_sys.heating_capacity, min_capacity].max - if not htg_sys.heating_airflow_cfm.nil? - htg_sys.heating_airflow_cfm = [htg_sys.heating_airflow_cfm, min_airflow].max - end + htg_sys.heating_airflow_cfm = [htg_sys.heating_airflow_cfm, min_airflow].max unless htg_sys.heating_airflow_cfm.nil? end - hpxml.cooling_systems.each do |clg_sys| + hpxml_bldg.cooling_systems.each do |clg_sys| clg_sys.cooling_capacity = [clg_sys.cooling_capacity, min_capacity].max clg_sys.cooling_airflow_cfm = [clg_sys.cooling_airflow_cfm, min_airflow].max + next unless not clg_sys.cooling_detailed_performance_data.empty? + + clg_sys.cooling_detailed_performance_data.each do |dp| + speed = dp.capacity_description == HPXML::CapacityDescriptionMinimum ? 1 : 2 + dp.capacity = [dp.capacity, min_capacity * speed].max + end end - hpxml.heat_pumps.each do |hp_sys| + hpxml_bldg.heat_pumps.each do |hp_sys| hp_sys.cooling_capacity = [hp_sys.cooling_capacity, min_capacity].max hp_sys.cooling_airflow_cfm = [hp_sys.cooling_airflow_cfm, min_airflow].max hp_sys.additional_properties.cooling_capacity_sensible = [hp_sys.additional_properties.cooling_capacity_sensible, min_capacity].max hp_sys.heating_capacity = [hp_sys.heating_capacity, min_capacity].max hp_sys.heating_airflow_cfm = [hp_sys.heating_airflow_cfm, min_airflow].max - if not hp_sys.heating_capacity_17F.nil? - hp_sys.heating_capacity_17F = [hp_sys.heating_capacity_17F, min_capacity].max + hp_sys.heating_capacity_17F = [hp_sys.heating_capacity_17F, min_capacity].max unless hp_sys.heating_capacity_17F.nil? + hp_sys.backup_heating_capacity = [hp_sys.backup_heating_capacity, min_capacity].max unless hp_sys.backup_heating_capacity.nil? + if not hp_sys.heating_detailed_performance_data.empty? + hp_sys.heating_detailed_performance_data.each do |dp| + speed = dp.capacity_description == HPXML::CapacityDescriptionMinimum ? 1 : 2 + dp.capacity = [dp.capacity, min_capacity * speed].max + end + end + next unless not hp_sys.cooling_detailed_performance_data.empty? + + hp_sys.cooling_detailed_performance_data.each do |dp| + speed = dp.capacity_description == HPXML::CapacityDescriptionMinimum ? 1 : 2 + dp.capacity = [dp.capacity, min_capacity * speed].max + end + end + end + + def self.apply_unit_multiplier(hpxml_bldg) + # Apply unit multiplier (E+ thermal zone multiplier); E+ sends the + # multiplied thermal zone load to the HVAC system, so the HVAC system + # needs to be sized to meet the entire multiplied zone load. + unit_multiplier = hpxml_bldg.building_construction.number_of_units + hpxml_bldg.heating_systems.each do |htg_sys| + htg_sys.heating_capacity *= unit_multiplier + htg_sys.heating_airflow_cfm *= unit_multiplier unless htg_sys.heating_airflow_cfm.nil? + htg_sys.pilot_light_btuh *= unit_multiplier unless htg_sys.pilot_light_btuh.nil? + htg_sys.electric_auxiliary_energy *= unit_multiplier unless htg_sys.electric_auxiliary_energy.nil? + htg_sys.fan_watts *= unit_multiplier unless htg_sys.fan_watts.nil? + htg_sys.heating_detailed_performance_data.each do |dp| + dp.capacity *= unit_multiplier unless dp.capacity.nil? + end + end + hpxml_bldg.cooling_systems.each do |clg_sys| + clg_sys.cooling_capacity *= unit_multiplier + clg_sys.cooling_airflow_cfm *= unit_multiplier + clg_sys.crankcase_heater_watts *= unit_multiplier unless clg_sys.crankcase_heater_watts.nil? + clg_sys.integrated_heating_system_capacity *= unit_multiplier unless clg_sys.integrated_heating_system_capacity.nil? + clg_sys.integrated_heating_system_airflow_cfm *= unit_multiplier unless clg_sys.integrated_heating_system_airflow_cfm.nil? + clg_sys.cooling_detailed_performance_data.each do |dp| + dp.capacity *= unit_multiplier unless dp.capacity.nil? + end + end + hpxml_bldg.heat_pumps.each do |hp_sys| + hp_sys.cooling_capacity *= unit_multiplier + hp_sys.cooling_airflow_cfm *= unit_multiplier + hp_sys.additional_properties.cooling_capacity_sensible *= unit_multiplier + hp_sys.heating_capacity *= unit_multiplier + hp_sys.heating_airflow_cfm *= unit_multiplier + hp_sys.heating_capacity_17F *= unit_multiplier unless hp_sys.heating_capacity_17F.nil? + hp_sys.backup_heating_capacity *= unit_multiplier unless hp_sys.backup_heating_capacity.nil? + hp_sys.crankcase_heater_watts *= unit_multiplier unless hp_sys.crankcase_heater_watts.nil? + hp_sys.heating_detailed_performance_data.each do |dp| + dp.capacity *= unit_multiplier unless dp.capacity.nil? end - if not hp_sys.backup_heating_capacity.nil? - hp_sys.backup_heating_capacity = [hp_sys.backup_heating_capacity, min_capacity].max + hp_sys.cooling_detailed_performance_data.each do |dp| + dp.capacity *= unit_multiplier unless dp.capacity.nil? end end end @@ -4237,7 +3632,7 @@ def self.calc_hspf_from_hspf2(hspf2, is_ducted) # and space-constrained) that we don't handle here. if is_ducted # Ducted split system return hspf2 / 0.85 - else # Ducted split system + else # Ductless system return hspf2 / 0.90 end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 4e810d30..c2a0724a 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1,12 +1,17 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class HVACSizing - def self.calculate(weather, hpxml, cfa, hvac_systems) + def self.calculate(weather, hpxml_bldg, cfa, hvac_systems) # Calculates heating/cooling design loads, and selects equipment # values (e.g., capacities, airflows) specific to each HVAC system. # Calculations generally follow ACCA Manual J/S. - @hpxml = hpxml + @hpxml_bldg = hpxml_bldg @cfa = cfa process_site_calcs_and_design_temps(weather) @@ -83,14 +88,14 @@ def self.process_site_calcs_and_design_temps(weather) @daily_range_temp_adjust = [4, 0, -5] # Manual J inside conditions - @cool_setpoint = @hpxml.header.manualj_cooling_setpoint - @heat_setpoint = @hpxml.header.manualj_heating_setpoint + @cool_setpoint = @hpxml_bldg.header.manualj_cooling_setpoint + @heat_setpoint = @hpxml_bldg.header.manualj_heating_setpoint @cool_design_grains = UnitConversions.convert(weather.design.CoolingHumidityRatio, 'lbm/lbm', 'grains') # Calculate the design temperature differences - @ctd = [@hpxml.header.manualj_cooling_design_temp - @cool_setpoint, 0.0].max - @htd = [@heat_setpoint - @hpxml.header.manualj_heating_design_temp, 0.0].max + @ctd = [@hpxml_bldg.header.manualj_cooling_design_temp - @cool_setpoint, 0.0].max + @htd = [@heat_setpoint - @hpxml_bldg.header.manualj_heating_design_temp, 0.0].max # Calculate the average Daily Temperature Range (DTR) to determine the class (low, medium, high) dtr = weather.design.DailyTemperatureRange @@ -124,7 +129,7 @@ def self.process_site_calcs_and_design_temps(weather) # Inside air density avg_setpoint = (@cool_setpoint + @heat_setpoint) / 2.0 - @inside_air_dens = UnitConversions.convert(weather.header.LocalPressure, 'atm', 'Btu/ft^3') / (Gas.Air.r * (avg_setpoint + 460.0)) + @inside_air_dens = UnitConversions.convert(weather.header.LocalPressure, 'atm', 'Btu/ft^3') / (Gas.Air.r * UnitConversions.convert(avg_setpoint, 'F', 'R')) # Design Temperatures @@ -132,11 +137,11 @@ def self.process_site_calcs_and_design_temps(weather) @heat_design_temps = {} locations = [] - (@hpxml.roofs + @hpxml.rim_joists + @hpxml.walls + @hpxml.foundation_walls + @hpxml.floors + @hpxml.slabs).each do |surface| + (@hpxml_bldg.roofs + @hpxml_bldg.rim_joists + @hpxml_bldg.walls + @hpxml_bldg.foundation_walls + @hpxml_bldg.floors + @hpxml_bldg.slabs).each do |surface| locations << surface.interior_adjacent_to locations << surface.exterior_adjacent_to end - @hpxml.hvac_distributions.each do |hvac_dist| + @hpxml_bldg.hvac_distributions.each do |hvac_dist| hvac_dist.ducts.each do |duct| locations << duct.duct_location end @@ -146,15 +151,16 @@ def self.process_site_calcs_and_design_temps(weather) next if [HPXML::LocationGround].include? location if [HPXML::LocationOtherHousingUnit, HPXML::LocationOtherHeatedSpace, HPXML::LocationOtherMultifamilyBufferSpace, - HPXML::LocationOtherNonFreezingSpace, HPXML::LocationExteriorWall, HPXML::LocationUnderSlab].include? location - @cool_design_temps[location] = calculate_scheduled_space_design_temps(location, @cool_setpoint, @hpxml.header.manualj_cooling_design_temp, weather.data.GroundMonthlyTemps.max) - @heat_design_temps[location] = calculate_scheduled_space_design_temps(location, @heat_setpoint, @hpxml.header.manualj_heating_design_temp, weather.data.GroundMonthlyTemps.min) - elsif [HPXML::LocationOutside, HPXML::LocationRoofDeck].include? location - @cool_design_temps[location] = @hpxml.header.manualj_cooling_design_temp - @heat_design_temps[location] = @hpxml.header.manualj_heating_design_temp + HPXML::LocationOtherNonFreezingSpace, HPXML::LocationExteriorWall, HPXML::LocationUnderSlab, + HPXML::LocationManufacturedHomeBelly].include? location + @cool_design_temps[location] = calculate_scheduled_space_design_temps(location, @cool_setpoint, @hpxml_bldg.header.manualj_cooling_design_temp, weather.data.ShallowGroundMonthlyTemps.max) + @heat_design_temps[location] = calculate_scheduled_space_design_temps(location, @heat_setpoint, @hpxml_bldg.header.manualj_heating_design_temp, weather.data.ShallowGroundMonthlyTemps.min) + elsif [HPXML::LocationOutside, HPXML::LocationRoofDeck, HPXML::LocationManufacturedHomeUnderBelly].include? location + @cool_design_temps[location] = @hpxml_bldg.header.manualj_cooling_design_temp + @heat_design_temps[location] = @hpxml_bldg.header.manualj_heating_design_temp elsif HPXML::conditioned_locations.include? location - @cool_design_temps[location] = process_design_temp_cooling(weather, HPXML::LocationLivingSpace) - @heat_design_temps[location] = process_design_temp_heating(weather, HPXML::LocationLivingSpace) + @cool_design_temps[location] = process_design_temp_cooling(weather, HPXML::LocationConditionedSpace) + @heat_design_temps[location] = process_design_temp_heating(weather, HPXML::LocationConditionedSpace) else @cool_design_temps[location] = process_design_temp_cooling(weather, location) @heat_design_temps[location] = process_design_temp_heating(weather, location) @@ -163,34 +169,34 @@ def self.process_site_calcs_and_design_temps(weather) end def self.process_design_temp_heating(weather, location) - if location == HPXML::LocationLivingSpace + if location == HPXML::LocationConditionedSpace heat_temp = @heat_setpoint elsif location == HPXML::LocationGarage - heat_temp = @hpxml.header.manualj_heating_design_temp + 13.0 + heat_temp = @hpxml_bldg.header.manualj_heating_design_temp + 13.0 elsif (location == HPXML::LocationAtticUnvented) || (location == HPXML::LocationAtticVented) - attic_floors = @hpxml.floors.select { |f| f.is_ceiling && [f.interior_adjacent_to, f.exterior_adjacent_to].include?(location) } + attic_floors = @hpxml_bldg.floors.select { |f| f.is_ceiling && [f.interior_adjacent_to, f.exterior_adjacent_to].include?(location) } avg_floor_rvalue = calculate_average_r_value(attic_floors) - attic_roofs = @hpxml.roofs.select { |r| r.interior_adjacent_to == location } + attic_roofs = @hpxml_bldg.roofs.select { |r| r.interior_adjacent_to == location } avg_roof_rvalue = calculate_average_r_value(attic_roofs) if avg_floor_rvalue < avg_roof_rvalue # Attic is considered to be encapsulated. MJ8 says to use an attic # temperature of 95F, however alternative approaches are permissible if location == HPXML::LocationAtticVented - heat_temp = @hpxml.header.manualj_heating_design_temp + heat_temp = @hpxml_bldg.header.manualj_heating_design_temp else - heat_temp = calculate_space_design_temps(location, weather, @heat_setpoint, @hpxml.header.manualj_heating_design_temp, weather.data.GroundMonthlyTemps.min) + heat_temp = calculate_space_design_temps(location, weather, @heat_setpoint, @hpxml_bldg.header.manualj_heating_design_temp, weather.data.ShallowGroundMonthlyTemps.min) end else - heat_temp = @hpxml.header.manualj_heating_design_temp + heat_temp = @hpxml_bldg.header.manualj_heating_design_temp end elsif [HPXML::LocationBasementUnconditioned, HPXML::LocationCrawlspaceUnvented, HPXML::LocationCrawlspaceVented].include? location - heat_temp = calculate_space_design_temps(location, weather, @heat_setpoint, @hpxml.header.manualj_heating_design_temp, weather.data.GroundMonthlyTemps.min) + heat_temp = calculate_space_design_temps(location, weather, @heat_setpoint, @hpxml_bldg.header.manualj_heating_design_temp, weather.data.ShallowGroundMonthlyTemps.min) end @@ -200,19 +206,19 @@ def self.process_design_temp_heating(weather, location) end def self.process_design_temp_cooling(weather, location) - if location == HPXML::LocationLivingSpace + if location == HPXML::LocationConditionedSpace cool_temp = @cool_setpoint elsif location == HPXML::LocationGarage # Calculate fraction of garage under conditioned space area_total = 0.0 area_conditioned = 0.0 - @hpxml.roofs.each do |roof| + @hpxml_bldg.roofs.each do |roof| next unless roof.interior_adjacent_to == location area_total += roof.area end - @hpxml.floors.each do |floor| + @hpxml_bldg.floors.each do |floor| next unless [floor.interior_adjacent_to, floor.exterior_adjacent_to].include? location area_total += floor.area @@ -225,36 +231,36 @@ def self.process_design_temp_cooling(weather, location) end # Calculate the garage cooling design temperature based on Table 4C - # Linearly interpolate between having living space over the garage and not having living space above the garage + # Linearly interpolate between having conditioned space over the garage and not having conditioned space above the garage if @daily_range_num == 0.0 - cool_temp = (@hpxml.header.manualj_cooling_design_temp + + cool_temp = (@hpxml_bldg.header.manualj_cooling_design_temp + (11.0 * garage_frac_under_conditioned) + (22.0 * (1.0 - garage_frac_under_conditioned))) elsif @daily_range_num == 1.0 - cool_temp = (@hpxml.header.manualj_cooling_design_temp + + cool_temp = (@hpxml_bldg.header.manualj_cooling_design_temp + (6.0 * garage_frac_under_conditioned) + (17.0 * (1.0 - garage_frac_under_conditioned))) elsif @daily_range_num == 2.0 - cool_temp = (@hpxml.header.manualj_cooling_design_temp + + cool_temp = (@hpxml_bldg.header.manualj_cooling_design_temp + (1.0 * garage_frac_under_conditioned) + (12.0 * (1.0 - garage_frac_under_conditioned))) end elsif (location == HPXML::LocationAtticUnvented) || (location == HPXML::LocationAtticVented) - attic_floors = @hpxml.floors.select { |f| f.is_ceiling && [f.interior_adjacent_to, f.exterior_adjacent_to].include?(location) } + attic_floors = @hpxml_bldg.floors.select { |f| f.is_ceiling && [f.interior_adjacent_to, f.exterior_adjacent_to].include?(location) } avg_floor_rvalue = calculate_average_r_value(attic_floors) - attic_roofs = @hpxml.roofs.select { |r| r.interior_adjacent_to == location } + attic_roofs = @hpxml_bldg.roofs.select { |r| r.interior_adjacent_to == location } avg_roof_rvalue = calculate_average_r_value(attic_roofs) if avg_floor_rvalue < avg_roof_rvalue # Attic is considered to be encapsulated. MJ8 says to use an attic # temperature of 95F, however alternative approaches are permissible if location == HPXML::LocationAtticVented - cool_temp = @hpxml.header.manualj_cooling_design_temp + 40.0 # This is the number from a California study with dark shingle roof and similar ventilation. + cool_temp = @hpxml_bldg.header.manualj_cooling_design_temp + 40.0 # This is the number from a California study with dark shingle roof and similar ventilation. else - cool_temp = calculate_space_design_temps(location, weather, @cool_setpoint, @hpxml.header.manualj_cooling_design_temp, weather.data.GroundMonthlyTemps.max, true) + cool_temp = calculate_space_design_temps(location, weather, @cool_setpoint, @hpxml_bldg.header.manualj_cooling_design_temp, weather.data.ShallowGroundMonthlyTemps.max, true) end else @@ -263,16 +269,16 @@ def self.process_design_temp_cooling(weather, location) tot_roof_area = 0.0 cool_temp = 0.0 - @hpxml.roofs.each do |roof| + @hpxml_bldg.roofs.each do |roof| next unless roof.interior_adjacent_to == location tot_roof_area += roof.net_area if location == HPXML::LocationAtticUnvented if not roof.radiant_barrier - cool_temp += (150.0 + (@hpxml.header.manualj_cooling_design_temp - 95.0) + @daily_range_temp_adjust[@daily_range_num]) * roof.net_area + cool_temp += (150.0 + (@hpxml_bldg.header.manualj_cooling_design_temp - 95.0) + @daily_range_temp_adjust[@daily_range_num]) * roof.net_area else - cool_temp += (130.0 + (@hpxml.header.manualj_cooling_design_temp - 95.0) + @daily_range_temp_adjust[@daily_range_num]) * roof.net_area + cool_temp += (130.0 + (@hpxml_bldg.header.manualj_cooling_design_temp - 95.0) + @daily_range_temp_adjust[@daily_range_num]) * roof.net_area end else if not roof.radiant_barrier @@ -334,11 +340,11 @@ def self.process_design_temp_cooling(weather, location) cool_temp /= tot_roof_area # Adjust base CLTD for cooling design temperature and daily range - cool_temp += (@hpxml.header.manualj_cooling_design_temp - 95.0) + @daily_range_temp_adjust[@daily_range_num] + cool_temp += (@hpxml_bldg.header.manualj_cooling_design_temp - 95.0) + @daily_range_temp_adjust[@daily_range_num] end elsif [HPXML::LocationBasementUnconditioned, HPXML::LocationCrawlspaceUnvented, HPXML::LocationCrawlspaceVented].include? location - cool_temp = calculate_space_design_temps(location, weather, @cool_setpoint, @hpxml.header.manualj_cooling_design_temp, weather.data.GroundMonthlyTemps.max) + cool_temp = calculate_space_design_temps(location, weather, @cool_setpoint, @hpxml_bldg.header.manualj_cooling_design_temp, weather.data.ShallowGroundMonthlyTemps.max) end @@ -481,7 +487,7 @@ def self.process_load_windows_skylights(bldg_design_loads, weather) alp_load = 0.0 # Average Load Procedure (ALP) Load afl_hr = [0.0] * 12 # Initialize Hourly Aggregate Fenestration Load (AFL) - @hpxml.windows.each do |window| + @hpxml_bldg.windows.each do |window| next unless window.wall.is_exterior_thermal_boundary window_summer_sf = window.interior_shading_factor_summer * window.exterior_shading_factor_summer @@ -615,7 +621,7 @@ def self.process_load_windows_skylights(bldg_design_loads, weather) alp_load = 0.0 # Average Load Procedure (ALP) Load afl_hr = [0.0] * 12 # Initialize Hourly Aggregate Fenestration Load (AFL) - @hpxml.skylights.each do |skylight| + @hpxml_bldg.skylights.each do |skylight| skylight_summer_sf = skylight.interior_shading_factor_summer * skylight.exterior_shading_factor_summer skylight_true_azimuth = get_true_azimuth(skylight.azimuth) cnt225 = (skylight_true_azimuth / 22.5).round.to_i @@ -705,7 +711,7 @@ def self.process_load_doors(bldg_design_loads) bldg_design_loads.Heat_Doors = 0.0 bldg_design_loads.Cool_Doors = 0.0 - @hpxml.doors.each do |door| + @hpxml_bldg.doors.each do |door| next unless door.is_thermal_boundary if door.wall.is_exterior @@ -728,7 +734,7 @@ def self.process_load_walls(bldg_design_loads) bldg_design_loads.Cool_Walls = 0.0 # Above-Grade Walls - (@hpxml.walls + @hpxml.rim_joists).each do |wall| + (@hpxml_bldg.walls + @hpxml_bldg.rim_joists).each do |wall| next unless wall.is_thermal_boundary wall_group = get_wall_group(wall) @@ -774,7 +780,7 @@ def self.process_load_walls(bldg_design_loads) if @ctd >= 10.0 # Adjust the CLTD for different cooling design temperatures - cltd += (@hpxml.header.manualj_cooling_design_temp - 95.0) + cltd += (@hpxml_bldg.header.manualj_cooling_design_temp - 95.0) # Adjust the CLTD for daily temperature range cltd += @daily_range_temp_adjust[@daily_range_num] else @@ -794,7 +800,7 @@ def self.process_load_walls(bldg_design_loads) end # Foundation walls - @hpxml.foundation_walls.each do |foundation_wall| + @hpxml_bldg.foundation_walls.each do |foundation_wall| next unless foundation_wall.is_exterior_thermal_boundary u_wall_with_soil, _u_wall_without_soil = get_foundation_wall_properties(foundation_wall) @@ -811,7 +817,7 @@ def self.process_load_roofs(bldg_design_loads) bldg_design_loads.Cool_Roofs = 0.0 # Roofs - @hpxml.roofs.each do |roof| + @hpxml_bldg.roofs.each do |roof| next unless roof.is_thermal_boundary # Base CLTD for conditioned roofs (Roof-Joist-Ceiling Sandwiches) taken from MJ8 Figure A12-16 @@ -849,7 +855,7 @@ def self.process_load_roofs(bldg_design_loads) end # Adjust base CLTD for different CTD or DR - cltd += (@hpxml.header.manualj_cooling_design_temp - 95.0) + @daily_range_temp_adjust[@daily_range_num] + cltd += (@hpxml_bldg.header.manualj_cooling_design_temp - 95.0) + @daily_range_temp_adjust[@daily_range_num] bldg_design_loads.Cool_Roofs += (1.0 / roof.insulation_assembly_r_value) * roof.net_area * cltd bldg_design_loads.Heat_Roofs += (1.0 / roof.insulation_assembly_r_value) * roof.net_area * @htd @@ -864,7 +870,7 @@ def self.process_load_ceilings(bldg_design_loads) bldg_design_loads.Heat_Ceilings = 0.0 bldg_design_loads.Cool_Ceilings = 0.0 - @hpxml.floors.each do |floor| + @hpxml_bldg.floors.each do |floor| next unless floor.is_ceiling next unless floor.is_thermal_boundary @@ -887,7 +893,7 @@ def self.process_load_floors(bldg_design_loads) bldg_design_loads.Heat_Floors = 0.0 bldg_design_loads.Cool_Floors = 0.0 - @hpxml.floors.each do |floor| + @hpxml_bldg.floors.each do |floor| next unless floor.is_floor next unless floor.is_thermal_boundary @@ -901,7 +907,7 @@ def self.process_load_floors(bldg_design_loads) sum_ua_wall = 0.0 sum_a_wall = 0.0 - @hpxml.foundation_walls.each do |foundation_wall| + @hpxml_bldg.foundation_walls.each do |foundation_wall| next unless foundation_wall.is_exterior && foundation_wall.interior_adjacent_to == adjacent_space _u_wall_with_soil, u_wall_without_soil = get_foundation_wall_properties(foundation_wall) @@ -909,7 +915,7 @@ def self.process_load_floors(bldg_design_loads) sum_a_wall += foundation_wall.net_area sum_ua_wall += (u_wall_without_soil * foundation_wall.net_area) end - @hpxml.walls.each do |wall| + @hpxml_bldg.walls.each do |wall| next unless wall.is_exterior && wall.interior_adjacent_to == adjacent_space sum_a_wall += wall.net_area @@ -948,16 +954,16 @@ def self.process_load_slabs(bldg_design_loads) bldg_design_loads.Heat_Slabs = 0.0 - @hpxml.slabs.each do |slab| + @hpxml_bldg.slabs.each do |slab| next unless slab.is_thermal_boundary - if slab.interior_adjacent_to == HPXML::LocationLivingSpace # Slab-on-grade - f_value = calc_slab_f_value(slab, @hpxml.site.ground_conductivity) + if slab.interior_adjacent_to == HPXML::LocationConditionedSpace # Slab-on-grade + f_value = calc_slab_f_value(slab, @hpxml_bldg.site.ground_conductivity) bldg_design_loads.Heat_Slabs += f_value * slab.exposed_perimeter * @htd elsif HPXML::conditioned_below_grade_locations.include? slab.interior_adjacent_to # Based on MJ 8th Ed. A12-7 and ASHRAE HoF 2013 pg 18.31 Eq 40 slab_is_insulated = false - if slab.under_slab_insulation_width > 0 && slab.under_slab_insulation_r_value > 0 + if slab.under_slab_insulation_width.to_f > 0 && slab.under_slab_insulation_r_value > 0 slab_is_insulated = true elsif slab.perimeter_insulation_depth > 0 && slab.perimeter_insulation_r_value > 0 slab_is_insulated = true @@ -966,8 +972,8 @@ def self.process_load_slabs(bldg_design_loads) end k_soil = 0.8 # Value from ASHRAE HoF, probably used by Manual J r_other = 1.47 # Value from ASHRAE HoF, probably used by Manual J - foundation_walls = @hpxml.foundation_walls.select { |fw| fw.is_thermal_boundary } - z_f = foundation_walls.map { |fw| fw.depth_below_grade }.sum(0.0) / foundation_walls.size # Average below-grade depth + ext_fnd_walls = @hpxml_bldg.foundation_walls.select { |fw| fw.is_exterior } + z_f = ext_fnd_walls.map { |fw| fw.depth_below_grade * (fw.area / fw.height) }.sum(0.0) / ext_fnd_walls.map { |fw| fw.area / fw.height }.sum # Weighted-average (by length) below-grade depth sqrt_term = [slab.exposed_perimeter**2 - 16.0 * slab.area, 0.0].max length = slab.exposed_perimeter / 4.0 + Math.sqrt(sqrt_term) / 4.0 width = slab.exposed_perimeter / 4.0 - Math.sqrt(sqrt_term) / 4.0 @@ -988,15 +994,15 @@ def self.process_load_infiltration_ventilation(bldg_design_loads, weather) Heating and Cooling Loads: Infiltration & Ventilation ''' - sla, _ach50, _nach, _volume, _height, a_ext = Airflow.get_values_from_air_infiltration_measurements(@hpxml, @cfa, weather) + sla, _ach50, _nach, _volume, _height, a_ext = Airflow.get_values_from_air_infiltration_measurements(@hpxml_bldg, @cfa, weather) sla *= a_ext ela = sla * @cfa - ncfl_ag = @hpxml.building_construction.number_of_conditioned_floors_above_grade + ncfl_ag = @hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade # Set stack/wind coefficients from Tables 5D/5E c_s = 0.015 * ncfl_ag - c_w_base = [0.0133 * @hpxml.site.additional_properties.aim2_shelter_coeff - 0.0027, 0.0].max # Linear relationship between shelter coefficient and c_w coefficients by shielding class + c_w_base = [0.0133 * @hpxml_bldg.site.additional_properties.aim2_shelter_coeff - 0.0027, 0.0].max # Linear relationship between shelter coefficient and c_w coefficients by shielding class c_w = c_w_base * ncfl_ag**0.4 ela_in2 = UnitConversions.convert(ela, 'ft^2', 'in^2') @@ -1024,8 +1030,8 @@ def self.process_load_internal_gains(bldg_design_loads) Cooling Load: Internal Gains ''' - bldg_design_loads.Cool_IntGains_Sens = @hpxml.header.manualj_internal_loads_sensible + 230.0 * @hpxml.header.manualj_num_occupants - bldg_design_loads.Cool_IntGains_Lat = @hpxml.header.manualj_internal_loads_latent + 200.0 * @hpxml.header.manualj_num_occupants + bldg_design_loads.Cool_IntGains_Sens = @hpxml_bldg.header.manualj_internal_loads_sensible + 230.0 * @hpxml_bldg.header.manualj_num_occupants + bldg_design_loads.Cool_IntGains_Lat = @hpxml_bldg.header.manualj_internal_loads_latent + 200.0 * @hpxml_bldg.header.manualj_num_occupants end def self.aggregate_loads(bldg_design_loads) @@ -1133,22 +1139,18 @@ def self.apply_hvac_size_limits(hvac_cooling) end def self.apply_hvac_heat_pump_logic(hvac_sizing_values, hvac_cooling) - # If HERS/MaxLoad methodology, uses at least the larger of heating and cooling loads for heat pump sizing (required for ERI). return unless hvac_cooling.is_a? HPXML::HeatPump return if @fraction_cool_load_served == 0 return if @fraction_heat_load_served == 0 - if (@hpxml.header.heat_pump_sizing_methodology != HPXML::HeatPumpSizingACCA) + if @hpxml_bldg.header.heat_pump_sizing_methodology != HPXML::HeatPumpSizingACCA + # If HERS/MaxLoad methodology, use at least the larger of heating/cooling loads for heat pump sizing. # Note: Heat_Load_Supp should NOT be adjusted; we only want to adjust the HP capacity, not the HP backup heating capacity. max_load = [hvac_sizing_values.Heat_Load, hvac_sizing_values.Cool_Load_Tot].max hvac_sizing_values.Heat_Load = max_load hvac_sizing_values.Cool_Load_Sens *= max_load / hvac_sizing_values.Cool_Load_Tot hvac_sizing_values.Cool_Load_Lat *= max_load / hvac_sizing_values.Cool_Load_Tot hvac_sizing_values.Cool_Load_Tot = max_load - - # Override Manual S oversize allowances: - @oversize_limit = 1.0 - @oversize_delta = 0.0 end end @@ -1162,17 +1164,18 @@ def self.get_duct_regain_factor(duct) dse_Fregain = 0.0 elsif [HPXML::LocationOtherHousingUnit, HPXML::LocationOtherHeatedSpace, HPXML::LocationOtherMultifamilyBufferSpace, - HPXML::LocationOtherNonFreezingSpace, HPXML::LocationExteriorWall, HPXML::LocationUnderSlab].include? duct.duct_location + HPXML::LocationOtherNonFreezingSpace, HPXML::LocationExteriorWall, HPXML::LocationUnderSlab, + HPXML::LocationManufacturedHomeBelly].include? duct.duct_location space_values = Geometry.get_temperature_scheduled_space_values(duct.duct_location) dse_Fregain = space_values[:f_regain] elsif [HPXML::LocationBasementUnconditioned, HPXML::LocationCrawlspaceVented, HPXML::LocationCrawlspaceUnvented].include? duct.duct_location - ceilings = @hpxml.floors.select { |f| f.is_floor && [f.interior_adjacent_to, f.exterior_adjacent_to].include?(duct.duct_location) } + ceilings = @hpxml_bldg.floors.select { |f| f.is_floor && [f.interior_adjacent_to, f.exterior_adjacent_to].include?(duct.duct_location) } avg_ceiling_rvalue = calculate_average_r_value(ceilings) ceiling_insulated = (avg_ceiling_rvalue > 4) - walls = @hpxml.foundation_walls.select { |f| [f.interior_adjacent_to, f.exterior_adjacent_to].include? duct.duct_location } + walls = @hpxml_bldg.foundation_walls.select { |f| [f.interior_adjacent_to, f.exterior_adjacent_to].include? duct.duct_location } avg_wall_rvalue = calculate_average_r_value(walls) walls_insulated = (avg_wall_rvalue > 4) @@ -1335,11 +1338,9 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat if not hvac_cooling.nil? hvac_cooling_ap = hvac_cooling.additional_properties + is_ducted = !hvac_cooling.distribution_system.nil? end - # Calculate the air flow rate required for design conditions - hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Cool_Load_Sens, (@cool_setpoint - @leaving_air_temp)) - if hvac_sizing_values.Cool_Load_Tot <= 0 hvac_sizing_values.Cool_Capacity = 0.0 @@ -1347,18 +1348,32 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat hvac_sizing_values.Cool_Airflow = 0.0 elsif [HPXML::HVACTypeCentralAirConditioner, - HPXML::HVACTypeHeatPumpAirToAir].include? @cooling_type - - entering_temp = @hpxml.header.manualj_cooling_design_temp - hvac_cooling_speed = get_sizing_speed(hvac_cooling_ap) - coefficients = hvac_cooling_ap.cool_cap_ft_spec[hvac_cooling_speed] + HPXML::HVACTypeHeatPumpAirToAir].include?(@cooling_type) || + ([HPXML::HVACTypeMiniSplitAirConditioner, + HPXML::HVACTypeHeatPumpMiniSplit].include?(@cooling_type) && is_ducted) + # For central systems, the installer can take steps to try to meet both sensible and latent loads, + # such as different indoor/outdoor coil combinations and different blower settings. + # Ductless systems don't offer this flexibility. + + entering_temp = @hpxml_bldg.header.manualj_cooling_design_temp + hvac_cooling_speed = get_sizing_speed(hvac_cooling_ap, true) + if hvac_cooling.compressor_type == HPXML::HVACCompressorTypeVariableSpeed + idb_adj = adjust_indoor_condition_var_speed(entering_temp, @wetbulb_indoor_cooling, :clg) + odb_adj = adjust_outdoor_condition_var_speed(hvac_cooling.cooling_detailed_performance_data, entering_temp, hvac_cooling, :clg) + total_cap_curve_value = odb_adj * idb_adj + else + coefficients = hvac_cooling_ap.cool_cap_ft_spec[hvac_cooling_speed] + total_cap_curve_value = MathTools.biquadratic(@wetbulb_indoor_cooling, entering_temp, coefficients) + end - total_cap_curve_value = MathTools.biquadratic(@wetbulb_indoor_cooling, entering_temp, coefficients) cool_cap_rated = hvac_sizing_values.Cool_Load_Tot / total_cap_curve_value hvac_cooling_shr = hvac_cooling_ap.cool_rated_shrs_gross[hvac_cooling_speed] sens_cap_rated = cool_cap_rated * hvac_cooling_shr + # Calculate the air flow rate required for design conditions + hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Cool_Load_Sens, (@cool_setpoint - @leaving_air_temp), cool_cap_rated) + sensible_cap_curve_value = process_curve_fit(hvac_sizing_values.Cool_Airflow, hvac_sizing_values.Cool_Load_Tot, entering_temp) sens_cap_design = sens_cap_rated * sensible_cap_curve_value lat_cap_design = [hvac_sizing_values.Cool_Load_Tot - sens_cap_design, 1.0].max @@ -1370,7 +1385,13 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat d_sens = shr_biquadratic[5] # Adjust Sizing - if lat_cap_design < hvac_sizing_values.Cool_Load_Lat + if hvac_cooling.is_a?(HPXML::HeatPump) && (@hpxml_bldg.header.heat_pump_sizing_methodology == HPXML::HeatPumpSizingHERS) + hvac_sizing_values.Cool_Capacity = hvac_sizing_values.Cool_Load_Tot + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr + + cool_load_sens_cap_design = hvac_sizing_values.Cool_Capacity_Sens * sensible_cap_curve_value + + elsif lat_cap_design < hvac_sizing_values.Cool_Load_Lat # Size by MJ8 Latent load, return to rated conditions # Solve for the new sensible and total capacity at design conditions: @@ -1379,10 +1400,13 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat # substituting in CFM = cool_load_sens_cap_design / (1.1 * ACF * (cool_setpoint - LAT)) cool_load_sens_cap_design = hvac_sizing_values.Cool_Load_Lat / ((total_cap_curve_value / hvac_cooling_shr - \ - (UnitConversions.convert(b_sens, 'ton', 'Btu/hr') + UnitConversions.convert(d_sens, 'ton', 'Btu/hr') * entering_temp) / \ + (b_sens + d_sens * entering_temp) / \ (1.1 * @acf * (@cool_setpoint - @leaving_air_temp))) / \ (a_sens + c_sens * entering_temp) - 1.0) + # Ensure equipment is not being undersized + cool_load_sens_cap_design = [cool_load_sens_cap_design, @undersize_limit * hvac_sizing_values.Cool_Load_Sens].max + cool_cap_design = cool_load_sens_cap_design + hvac_sizing_values.Cool_Load_Lat # The SHR of the equipment at the design condition @@ -1397,16 +1421,13 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat # Limit total capacity to oversize limit cool_cap_design = [cool_cap_design, @oversize_limit * hvac_sizing_values.Cool_Load_Tot].min - # Determine the final sensible capacity at design using the SHR - cool_load_sens_cap_design = shr_design * cool_cap_design - - # Calculate the final air flow rate using final sensible capacity at design - hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(cool_load_sens_cap_design, (@cool_setpoint - @leaving_air_temp)) - # Determine rated capacities hvac_sizing_values.Cool_Capacity = cool_cap_design / total_cap_curve_value hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr + # Determine the final sensible capacity at design using the SHR + cool_load_sens_cap_design = shr_design * cool_cap_design + elsif sens_cap_design < @undersize_limit * hvac_sizing_values.Cool_Load_Sens # Size by MJ8 Sensible load, return to rated conditions, find Sens with SHRRated. Limit total # capacity to oversizing limit @@ -1431,56 +1452,67 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat # Recalculate the air flow rate in case the oversizing limit has been used cool_load_sens_cap_design = hvac_sizing_values.Cool_Capacity_Sens * sensible_cap_curve_value - hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(cool_load_sens_cap_design, (@cool_setpoint - @leaving_air_temp)) else hvac_sizing_values.Cool_Capacity = hvac_sizing_values.Cool_Load_Tot / total_cap_curve_value hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr cool_load_sens_cap_design = hvac_sizing_values.Cool_Capacity_Sens * sensible_cap_curve_value - hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(cool_load_sens_cap_design, (@cool_setpoint - @leaving_air_temp)) end - # Ensure the air flow rate is in between 200 and 500 cfm/ton. - # Reset the air flow rate (with a safety margin), if required. - if hvac_sizing_values.Cool_Airflow / UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') > 500 - hvac_sizing_values.Cool_Airflow = 499.0 * UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') # CFM - elsif hvac_sizing_values.Cool_Airflow / UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') < 200 - hvac_sizing_values.Cool_Airflow = 201.0 * UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') # CFM - end + # Calculate the final air flow rate using final sensible capacity at design + hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(cool_load_sens_cap_design, (@cool_setpoint - @leaving_air_temp), hvac_sizing_values.Cool_Capacity) elsif [HPXML::HVACTypeHeatPumpMiniSplit, - HPXML::HVACTypeMiniSplitAirConditioner].include? @cooling_type - - entering_temp = @hpxml.header.manualj_cooling_design_temp - hvac_cooling_speed = get_sizing_speed(hvac_cooling_ap) - coefficients = hvac_cooling_ap.cool_cap_ft_spec[hvac_cooling_speed] + HPXML::HVACTypeMiniSplitAirConditioner].include?(@cooling_type) && !is_ducted - total_cap_curve_value = MathTools.biquadratic(@wetbulb_indoor_cooling, entering_temp, coefficients) + hvac_cooling_speed = get_sizing_speed(hvac_cooling_ap, true) hvac_cooling_shr = hvac_cooling_ap.cool_rated_shrs_gross[hvac_cooling_speed] - hvac_sizing_values.Cool_Capacity = (hvac_sizing_values.Cool_Load_Tot / total_cap_curve_value) - hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr - hvac_sizing_values.Cool_Airflow = calc_airflow_rate_user(hvac_sizing_values.Cool_Capacity, hvac_cooling_ap.cool_rated_cfm_per_ton[-1], hvac_cooling_ap.cool_capacity_ratios[-1]) + if hvac_cooling.is_a?(HPXML::HeatPump) && (@hpxml_bldg.header.heat_pump_sizing_methodology == HPXML::HeatPumpSizingHERS) + hvac_sizing_values.Cool_Capacity = hvac_sizing_values.Cool_Load_Tot + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr + else + entering_temp = @hpxml_bldg.header.manualj_cooling_design_temp + idb_adj = adjust_indoor_condition_var_speed(entering_temp, @wetbulb_indoor_cooling, :clg) + odb_adj = adjust_outdoor_condition_var_speed(hvac_cooling.cooling_detailed_performance_data, entering_temp, hvac_cooling, :clg) + total_cap_curve_value = odb_adj * idb_adj + + hvac_sizing_values.Cool_Capacity = (hvac_sizing_values.Cool_Load_Tot / total_cap_curve_value) + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr + end + + hvac_sizing_values.Cool_Airflow = calc_airflow_rate_user(hvac_sizing_values.Cool_Capacity, hvac_cooling_ap.cool_rated_cfm_per_ton[hvac_cooling_speed], hvac_cooling_ap.cool_capacity_ratios[hvac_cooling_speed]) elsif [HPXML::HVACTypeRoomAirConditioner, HPXML::HVACTypePTAC, HPXML::HVACTypeHeatPumpPTHP, HPXML::HVACTypeHeatPumpRoom].include? @cooling_type - entering_temp = @hpxml.header.manualj_cooling_design_temp - hvac_cooling_speed = get_sizing_speed(hvac_cooling_ap) - total_cap_curve_value = MathTools.biquadratic(@wetbulb_indoor_cooling, entering_temp, hvac_cooling_ap.cool_cap_ft_spec[hvac_cooling_speed]) + hvac_cooling_speed = get_sizing_speed(hvac_cooling_ap, true) hvac_cooling_shr = hvac_cooling_ap.cool_rated_shrs_gross[hvac_cooling_speed] - hvac_sizing_values.Cool_Capacity = hvac_sizing_values.Cool_Load_Tot / total_cap_curve_value - hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr - hvac_sizing_values.Cool_Airflow = calc_airflow_rate_user(hvac_sizing_values.Cool_Capacity, hvac_cooling_ap.cool_rated_cfm_per_ton[hvac_cooling_speed], 1.0) + if hvac_cooling.is_a?(HPXML::HeatPump) && (@hpxml_bldg.header.heat_pump_sizing_methodology == HPXML::HeatPumpSizingHERS) + hvac_sizing_values.Cool_Capacity = hvac_sizing_values.Cool_Load_Tot + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr + else + entering_temp = @hpxml_bldg.header.manualj_cooling_design_temp + total_cap_curve_value = MathTools.biquadratic(@wetbulb_indoor_cooling, entering_temp, hvac_cooling_ap.cool_cap_ft_spec[hvac_cooling_speed]) + + hvac_sizing_values.Cool_Capacity = hvac_sizing_values.Cool_Load_Tot / total_cap_curve_value + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr + end + + hvac_sizing_values.Cool_Airflow = calc_airflow_rate_user(hvac_sizing_values.Cool_Capacity, hvac_cooling_ap.cool_rated_cfm_per_ton[0], 1.0) elsif HPXML::HVACTypeHeatPumpGroundToAir == @cooling_type + coil_bf = gshp_coil_bf entering_temp = hvac_cooling_ap.design_chw - hvac_cooling_speed = get_sizing_speed(hvac_cooling_ap) + hvac_cooling_speed = get_sizing_speed(hvac_cooling_ap, true) + + # Calculate the air flow rate required for design conditions + hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Cool_Load_Sens, (@cool_setpoint - @leaving_air_temp)) # Neglecting the water flow rate for now because it's not available yet. Air flow rate is pre-adjusted values. design_wb_temp = UnitConversions.convert(@wetbulb_indoor_cooling, 'f', 'k') @@ -1495,29 +1527,34 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat bypass_factor_curve_value = MathTools.biquadratic(@wetbulb_indoor_cooling, @cool_setpoint, gshp_coil_bf_ft_spec) hvac_cooling_shr = hvac_cooling_ap.cool_rated_shrs_gross[hvac_cooling_speed] - hvac_sizing_values.Cool_Capacity = hvac_sizing_values.Cool_Load_Tot / total_cap_curve_value # Note: cool_cap_design = hvac_sizing_values.Cool_Load_Tot - hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr + if @hpxml_bldg.header.heat_pump_sizing_methodology == HPXML::HeatPumpSizingHERS + hvac_sizing_values.Cool_Capacity = hvac_sizing_values.Cool_Load_Tot + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr + else + hvac_sizing_values.Cool_Capacity = hvac_sizing_values.Cool_Load_Tot / total_cap_curve_value # Note: cool_cap_design = hvac_sizing_values.Cool_Load_Tot + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr - cool_load_sens_cap_design = (hvac_sizing_values.Cool_Capacity_Sens * sensible_cap_curve_value / - (1.0 + (1.0 - coil_bf * bypass_factor_curve_value) * - (80.0 - @cool_setpoint) / (@cool_setpoint - @leaving_air_temp))) - cool_load_lat_cap_design = hvac_sizing_values.Cool_Load_Tot - cool_load_sens_cap_design + cool_load_sens_cap_design = (hvac_sizing_values.Cool_Capacity_Sens * sensible_cap_curve_value / + (1.0 + (1.0 - coil_bf * bypass_factor_curve_value) * + (80.0 - @cool_setpoint) / (@cool_setpoint - @leaving_air_temp))) + cool_load_lat_cap_design = hvac_sizing_values.Cool_Load_Tot - cool_load_sens_cap_design - # Adjust Sizing so that coil sensible at design >= CoolingLoad_Sens, and coil latent at design >= CoolingLoad_Lat, and equipment SHRRated is maintained. - cool_load_sens_cap_design = [cool_load_sens_cap_design, hvac_sizing_values.Cool_Load_Sens].max - cool_load_lat_cap_design = [cool_load_lat_cap_design, hvac_sizing_values.Cool_Load_Lat].max - cool_cap_design = cool_load_sens_cap_design + cool_load_lat_cap_design + # Adjust Sizing so that coil sensible at design >= CoolingLoad_Sens, and coil latent at design >= CoolingLoad_Lat, and equipment SHRRated is maintained. + cool_load_sens_cap_design = [cool_load_sens_cap_design, hvac_sizing_values.Cool_Load_Sens].max + cool_load_lat_cap_design = [cool_load_lat_cap_design, hvac_sizing_values.Cool_Load_Lat].max + cool_cap_design = cool_load_sens_cap_design + cool_load_lat_cap_design - # Limit total capacity via oversizing limit - cool_cap_design = [cool_cap_design, @oversize_limit * hvac_sizing_values.Cool_Load_Tot].min - hvac_sizing_values.Cool_Capacity = cool_cap_design / total_cap_curve_value - hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr + # Limit total capacity via oversizing limit + cool_cap_design = [cool_cap_design, @oversize_limit * hvac_sizing_values.Cool_Load_Tot].min + hvac_sizing_values.Cool_Capacity = cool_cap_design / total_cap_curve_value + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_shr + end # Recalculate the air flow rate in case the oversizing limit has been used cool_load_sens_cap_design = (hvac_sizing_values.Cool_Capacity_Sens * sensible_cap_curve_value / (1.0 + (1.0 - coil_bf * bypass_factor_curve_value) * (80.0 - @cool_setpoint) / (@cool_setpoint - @leaving_air_temp))) - hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(cool_load_sens_cap_design, (@cool_setpoint - @leaving_air_temp)) + hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(cool_load_sens_cap_design, (@cool_setpoint - @leaving_air_temp), hvac_sizing_values.Cool_Capacity) elsif HPXML::HVACTypeEvaporativeCooler == @cooling_type @@ -1552,6 +1589,7 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat if not hvac_heating.nil? hvac_heating_ap = hvac_heating.additional_properties + is_ducted = !hvac_heating.distribution_system.nil? end if hvac_sizing_values.Heat_Load <= 0 @@ -1559,24 +1597,32 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat hvac_sizing_values.Heat_Capacity = 0.0 hvac_sizing_values.Heat_Capacity_Supp = 0.0 hvac_sizing_values.Heat_Airflow = 0.0 - hvac_sizing_values.Heat_Airflow_Supp = 0.0 elsif [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit, HPXML::HVACTypeHeatPumpPTHP, HPXML::HVACTypeHeatPumpRoom].include? @heating_type - process_heat_pump_adjustment(hvac_sizing_values, weather, hvac_heating, total_cap_curve_value, hvac_system) + + hvac_heating_speed = get_sizing_speed(hvac_heating_ap, false) + if hvac_heating.is_a?(HPXML::HeatPump) && (@hpxml_bldg.header.heat_pump_sizing_methodology == HPXML::HeatPumpSizingHERS) + hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load + else + process_heat_pump_adjustment(hvac_sizing_values, weather, hvac_heating, total_cap_curve_value, hvac_system, hvac_heating_speed) + end + hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load_Supp - if @heating_type == HPXML::HVACTypeHeatPumpAirToAir - hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity, (@supply_air_temp - @heat_setpoint)) + if (@heating_type == HPXML::HVACTypeHeatPumpAirToAir) || (@heating_type == HPXML::HVACTypeHeatPumpMiniSplit && is_ducted) + hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity, (@supply_air_temp - @heat_setpoint), hvac_sizing_values.Heat_Capacity) else - hvac_sizing_values.Heat_Airflow = calc_airflow_rate_user(hvac_sizing_values.Heat_Capacity, hvac_heating_ap.heat_rated_cfm_per_ton[-1], hvac_heating_ap.heat_capacity_ratios[-1]) + hvac_sizing_values.Heat_Airflow = calc_airflow_rate_user(hvac_sizing_values.Heat_Capacity, hvac_heating_ap.heat_rated_cfm_per_ton[hvac_heating_speed], hvac_heating_ap.heat_capacity_ratios[hvac_heating_speed]) end - hvac_sizing_values.Heat_Airflow_Supp = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity_Supp, (@backup_supply_air_temp - @heat_setpoint)) elsif [HPXML::HVACTypeHeatPumpGroundToAir].include? @heating_type - if hvac_sizing_values.Cool_Capacity > 0 + if @hpxml_bldg.header.heat_pump_sizing_methodology == HPXML::HeatPumpSizingHERS + hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load + hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load_Supp + elsif hvac_sizing_values.Cool_Capacity > 0 hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load_Supp @@ -1593,33 +1639,29 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat cool_load_sens_cap_design = (hvac_sizing_values.Cool_Capacity_Sens * sensible_cap_curve_value / (1.0 + (1.0 - gshp_coil_bf * bypass_factor_curve_value) * (80.0 - @cool_setpoint) / (@cool_setpoint - @leaving_air_temp))) - hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(cool_load_sens_cap_design, (@cool_setpoint - @leaving_air_temp)) + hvac_sizing_values.Cool_Airflow = calc_airflow_rate_manual_s(cool_load_sens_cap_design, (@cool_setpoint - @leaving_air_temp), hvac_sizing_values.Cool_Capacity) else hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load_Supp end hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity, (@supply_air_temp - @heat_setpoint)) - hvac_sizing_values.Heat_Airflow_Supp = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity_Supp, (@backup_supply_air_temp - @heat_setpoint)) elsif [HPXML::HVACTypeHeatPumpWaterLoopToAir].include? @heating_type hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load_Supp - hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity, (@supply_air_temp - @heat_setpoint)) - hvac_sizing_values.Heat_Airflow_Supp = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity_Supp, (@backup_supply_air_temp - @heat_setpoint)) + hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity, (@supply_air_temp - @heat_setpoint), hvac_sizing_values.Heat_Capacity) elsif (@heating_type == HPXML::HVACTypeFurnace) || ((not hvac_cooling.nil?) && hvac_cooling.has_integrated_heating) hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load hvac_sizing_values.Heat_Capacity_Supp = 0.0 - hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity, (@supply_air_temp - @heat_setpoint)) - hvac_sizing_values.Heat_Airflow_Supp = 0.0 + hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity, (@supply_air_temp - @heat_setpoint), hvac_sizing_values.Heat_Capacity) elsif [HPXML::HVACTypeStove, - HPXML::HVACTypePortableHeater, - HPXML::HVACTypeFixedHeater, + HPXML::HVACTypeSpaceHeater, HPXML::HVACTypeWallFurnace, HPXML::HVACTypeFloorFurnace, HPXML::HVACTypeFireplace].include? @heating_type @@ -1632,9 +1674,8 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat hvac_sizing_values.Heat_Airflow = UnitConversions.convert(hvac_sizing_values.Heat_Capacity, 'Btu/hr', 'ton') * hvac_heating_ap.heat_rated_cfm_per_ton[0] else # Autosized airflow rate - hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity, (@supply_air_temp - @heat_setpoint)) + hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity, (@supply_air_temp - @heat_setpoint), hvac_sizing_values.Heat_Capacity) end - hvac_sizing_values.Heat_Airflow_Supp = 0.0 elsif [HPXML::HVACTypeBoiler, HPXML::HVACTypeElectricResistance].include? @heating_type @@ -1642,14 +1683,12 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Heat_Load hvac_sizing_values.Heat_Capacity_Supp = 0.0 hvac_sizing_values.Heat_Airflow = 0.0 - hvac_sizing_values.Heat_Airflow_Supp = 0.0 elsif @heating_type.nil? hvac_sizing_values.Heat_Capacity = 0.0 hvac_sizing_values.Heat_Capacity_Supp = 0.0 hvac_sizing_values.Heat_Airflow = 0.0 - hvac_sizing_values.Heat_Airflow_Supp = 0.0 else @@ -1658,6 +1697,37 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat end end + def self.adjust_indoor_condition_var_speed(adjusted_outdoor_temp, adjusted_indoor_temp, mode) + if mode == :clg + rated_indoor_temp = HVAC::AirSourceCoolRatedIWB + coefficients_1speed = HVAC.get_cool_cap_eir_ft_spec(HPXML::HVACCompressorTypeSingleStage)[0][0] + elsif mode == :htg + rated_indoor_temp = HVAC::AirSourceHeatRatedIDB + capacity_retention_temp_1speed, capacity_retention_fraction_1speed = HVAC.get_default_heating_capacity_retention(HPXML::HVACCompressorTypeSingleStage) + coefficients_1speed = HVAC.get_heat_cap_eir_ft_spec(HPXML::HVACCompressorTypeSingleStage, capacity_retention_temp_1speed, capacity_retention_fraction_1speed)[0][0] + end + return MathTools.biquadratic(adjusted_indoor_temp, adjusted_outdoor_temp, coefficients_1speed) / MathTools.biquadratic(rated_indoor_temp, adjusted_outdoor_temp, coefficients_1speed) + end + + def self.adjust_outdoor_condition_var_speed(detailed_performance_data, adjusted_outdoor_temp, hvac_sys, mode) + rated_odb = (mode == :clg) ? HVAC::AirSourceCoolRatedODB : HVAC::AirSourceHeatRatedODB + if detailed_performance_data.empty? + # Based on retention fraction and retention temperature + if mode == :clg + capacity_retention_temperature = hvac_sys.additional_properties.cooling_capacity_retention_temperature + capacity_retention_fraction = hvac_sys.additional_properties.cooling_capacity_retention_fraction + elsif mode == :htg + capacity_retention_temperature, capacity_retention_fraction = HVAC.get_heating_capacity_retention(hvac_sys) + end + odb_adj = (1.0 - capacity_retention_fraction) / (rated_odb - capacity_retention_temperature) * (adjusted_outdoor_temp - rated_odb) + 1.0 + else + # Based on detailed performance data + capacity_max = detailed_performance_data.find { |dp| dp.outdoor_temperature == rated_odb && dp.capacity_description == HPXML::CapacityDescriptionMaximum }.capacity + odb_adj = HVAC.interpolate_to_odb_table_point(detailed_performance_data, HPXML::CapacityDescriptionMaximum, adjusted_outdoor_temp, :capacity) / capacity_max + end + return odb_adj + end + def self.apply_hvac_installation_quality(hvac_sizing_values, hvac_heating, hvac_cooling) # Increases the autosized heating/cooling capacities to account for any reduction # in capacity due to HVAC installation quality. This is done to prevent causing @@ -1694,68 +1764,59 @@ def self.apply_hvac_installation_quality(hvac_sizing_values, hvac_heating, hvac_ HPXML::HVACTypeHeatPumpGroundToAir].include?(@cooling_type) && @fraction_cool_load_served > 0 hvac_cooling_ap = hvac_cooling.additional_properties + hvac_cooling_speed = get_sizing_speed(hvac_cooling_ap, true) - cool_airflow_rated_defect_ratio = [] - cool_airflow_rated_ratio = [] if @cooling_type != HPXML::HVACTypeHeatPumpGroundToAir cool_cfm_m3s = UnitConversions.convert(hvac_sizing_values.Cool_Airflow, 'cfm', 'm^3/s') - for speed in 0..(hvac_cooling_ap.cool_rated_cfm_per_ton.size - 1) - cool_airflow_rated_ratio << cool_cfm_m3s / HVAC.calc_rated_airflow(hvac_sizing_values.Cool_Capacity, hvac_cooling_ap.cool_rated_cfm_per_ton[speed], hvac_cooling_ap.cool_capacity_ratios[speed]) - cool_airflow_rated_defect_ratio << cool_cfm_m3s * (1 + cool_airflow_defect_ratio) / HVAC.calc_rated_airflow(hvac_sizing_values.Cool_Capacity, hvac_cooling_ap.cool_rated_cfm_per_ton[speed], hvac_cooling_ap.cool_capacity_ratios[speed]) - end + cool_airflow_rated_ratio = cool_cfm_m3s / HVAC.calc_rated_airflow(hvac_sizing_values.Cool_Capacity * hvac_cooling_ap.cool_capacity_ratios[hvac_cooling_speed], hvac_cooling_ap.cool_rated_cfm_per_ton[hvac_cooling_speed]) + cool_airflow_rated_defect_ratio = cool_cfm_m3s * (1 + cool_airflow_defect_ratio) / HVAC.calc_rated_airflow(hvac_sizing_values.Cool_Capacity * hvac_cooling_ap.cool_capacity_ratios[hvac_cooling_speed], hvac_cooling_ap.cool_rated_cfm_per_ton[hvac_cooling_speed]) else - cool_airflow_rated_ratio = [1.0] # actual air flow is equal to rated (before applying defect ratio) in current methodology - cool_airflow_rated_defect_ratio = [1 + cool_airflow_defect_ratio] + cool_airflow_rated_ratio = 1.0 # actual air flow is equal to rated (before applying defect ratio) in current methodology + cool_airflow_rated_defect_ratio = 1 + cool_airflow_defect_ratio end - if not cool_airflow_rated_defect_ratio.empty? - cap_clg_ratios = [] - for speed in 0..(cool_airflow_rated_defect_ratio.size - 1) - # NOTE: heat pump (cooling) curves don't exhibit expected trends at extreme faults; - clg_fff_cap_coeff, _clg_fff_eir_coeff = HVAC.get_airflow_fault_cooling_coeff() - a1_AF_Qgr_c = clg_fff_cap_coeff[0] - a2_AF_Qgr_c = clg_fff_cap_coeff[1] - a3_AF_Qgr_c = clg_fff_cap_coeff[2] + # NOTE: heat pump (cooling) curves don't exhibit expected trends at extreme faults; + clg_fff_cap_coeff, _clg_fff_eir_coeff = HVAC.get_cool_cap_eir_fflow_spec(HPXML::HVACCompressorTypeSingleStage)[0] + a1_AF_Qgr_c = clg_fff_cap_coeff[0] + a2_AF_Qgr_c = clg_fff_cap_coeff[1] + a3_AF_Qgr_c = clg_fff_cap_coeff[2] - qgr_values, _p_values, ff_chg_values = HVAC.get_charge_fault_cooling_coeff(f_ch) + qgr_values, _p_values, ff_chg_values = HVAC.get_charge_fault_cooling_coeff(f_ch) - a1_CH_Qgr_c = qgr_values[0] - a2_CH_Qgr_c = qgr_values[1] - a3_CH_Qgr_c = qgr_values[2] - a4_CH_Qgr_c = qgr_values[3] + a1_CH_Qgr_c = qgr_values[0] + a2_CH_Qgr_c = qgr_values[1] + a3_CH_Qgr_c = qgr_values[2] + a4_CH_Qgr_c = qgr_values[3] - q0_CH = a1_CH_Qgr_c - q1_CH = a2_CH_Qgr_c * UnitConversions.convert(@cool_setpoint, 'F', 'C') - q2_CH = a3_CH_Qgr_c * UnitConversions.convert(@hpxml.header.manualj_cooling_design_temp, 'F', 'C') - q3_CH = a4_CH_Qgr_c * f_ch - y_CH_Q_c = 1 + ((q0_CH + q1_CH + q2_CH + q3_CH) * f_ch) + q0_CH = a1_CH_Qgr_c + q1_CH = a2_CH_Qgr_c * UnitConversions.convert(@cool_setpoint, 'F', 'C') + q2_CH = a3_CH_Qgr_c * UnitConversions.convert(@hpxml_bldg.header.manualj_cooling_design_temp, 'F', 'C') + q3_CH = a4_CH_Qgr_c * f_ch + y_CH_Q_c = 1 + ((q0_CH + q1_CH + q2_CH + q3_CH) * f_ch) - ff_ch_c = (1.0 / (1.0 + (qgr_values[0] + (qgr_values[1] * ff_chg_values[0]) + (qgr_values[2] * ff_chg_values[1]) + (qgr_values[3] * f_ch)) * f_ch)).round(3) - ff_AF_c = cool_airflow_rated_defect_ratio[speed].round(3) - ff_AF_comb_c = ff_ch_c * ff_AF_c + ff_ch_c = (1.0 / (1.0 + (qgr_values[0] + (qgr_values[1] * ff_chg_values[0]) + (qgr_values[2] * ff_chg_values[1]) + (qgr_values[3] * f_ch)) * f_ch)).round(3) + ff_AF_c = cool_airflow_rated_defect_ratio.round(3) + ff_AF_comb_c = ff_ch_c * ff_AF_c - q_AF_CH = a1_AF_Qgr_c + (a2_AF_Qgr_c * ff_ch_c) + (a3_AF_Qgr_c * ff_ch_c * ff_ch_c) - p_CH_Q_c = y_CH_Q_c / q_AF_CH + q_AF_CH = a1_AF_Qgr_c + (a2_AF_Qgr_c * ff_ch_c) + (a3_AF_Qgr_c * ff_ch_c * ff_ch_c) + p_CH_Q_c = y_CH_Q_c / q_AF_CH - p_AF_Q_c = a1_AF_Qgr_c + (a2_AF_Qgr_c * ff_AF_comb_c) + (a3_AF_Qgr_c * ff_AF_comb_c * ff_AF_comb_c) + p_AF_Q_c = a1_AF_Qgr_c + (a2_AF_Qgr_c * ff_AF_comb_c) + (a3_AF_Qgr_c * ff_AF_comb_c * ff_AF_comb_c) - cool_cap_fff = (p_CH_Q_c * p_AF_Q_c) + cool_cap_fff = (p_CH_Q_c * p_AF_Q_c) - # calculate the capacity impact by defects - ff_AF_c_nodefect = cool_airflow_rated_ratio[speed].round(3) - cool_cap_fff_nodefect = a1_AF_Qgr_c + a2_AF_Qgr_c * ff_AF_c_nodefect + a3_AF_Qgr_c * ff_AF_c_nodefect * ff_AF_c_nodefect - cap_clg_ratio = 1 / (cool_cap_fff / cool_cap_fff_nodefect) - cap_clg_ratios << cap_clg_ratio - end + # calculate the capacity impact by defects + ff_AF_c_nodefect = cool_airflow_rated_ratio.round(3) + cool_cap_fff_nodefect = a1_AF_Qgr_c + a2_AF_Qgr_c * ff_AF_c_nodefect + a3_AF_Qgr_c * ff_AF_c_nodefect * ff_AF_c_nodefect + cap_clg_ratio = 1 / (cool_cap_fff / cool_cap_fff_nodefect) - prev_capacity = hvac_sizing_values.Cool_Capacity - hvac_sizing_values.Cool_Capacity *= cap_clg_ratios.max - hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_ap.cool_rated_shrs_gross[get_sizing_speed(hvac_cooling_ap)] - if prev_capacity > 0 # Preserve cfm/ton - hvac_sizing_values.Cool_Airflow = hvac_sizing_values.Cool_Airflow * hvac_sizing_values.Cool_Capacity / prev_capacity - else - hvac_sizing_values.Cool_Airflow = 0.0 - end + prev_capacity = hvac_sizing_values.Cool_Capacity + hvac_sizing_values.Cool_Capacity *= cap_clg_ratio + hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity * hvac_cooling_ap.cool_rated_shrs_gross[hvac_cooling_speed] + if prev_capacity > 0 # Preserve cfm/ton + hvac_sizing_values.Cool_Airflow = hvac_sizing_values.Cool_Airflow * hvac_sizing_values.Cool_Capacity / prev_capacity + else + hvac_sizing_values.Cool_Airflow = 0.0 end end @@ -1766,64 +1827,55 @@ def self.apply_hvac_installation_quality(hvac_sizing_values, hvac_heating, hvac_ HPXML::HVACTypeHeatPumpGroundToAir].include?(@heating_type) && @fraction_heat_load_served > 0 hvac_heating_ap = hvac_heating.additional_properties + hvac_heating_speed = get_sizing_speed(hvac_heating_ap, false) - heat_airflow_rated_defect_ratio = [] - heat_airflow_rated_ratio = [] if @heating_type != HPXML::HVACTypeHeatPumpGroundToAir heat_cfm_m3s = UnitConversions.convert(hvac_sizing_values.Heat_Airflow, 'cfm', 'm^3/s') - for speed in 0..(hvac_heating_ap.heat_rated_cfm_per_ton.size - 1) - heat_airflow_rated_ratio << heat_cfm_m3s / HVAC.calc_rated_airflow(hvac_sizing_values.Heat_Capacity, hvac_heating_ap.heat_rated_cfm_per_ton[speed], hvac_heating_ap.heat_capacity_ratios[speed]) - heat_airflow_rated_defect_ratio << heat_cfm_m3s * (1 + heat_airflow_defect_ratio) / HVAC.calc_rated_airflow(hvac_sizing_values.Heat_Capacity, hvac_heating_ap.heat_rated_cfm_per_ton[speed], hvac_heating_ap.heat_capacity_ratios[speed]) - end + heat_airflow_rated_ratio = heat_cfm_m3s / HVAC.calc_rated_airflow(hvac_sizing_values.Heat_Capacity * hvac_heating_ap.heat_capacity_ratios[hvac_heating_speed], hvac_heating_ap.heat_rated_cfm_per_ton[hvac_heating_speed]) + heat_airflow_rated_defect_ratio = heat_cfm_m3s * (1 + heat_airflow_defect_ratio) / HVAC.calc_rated_airflow(hvac_sizing_values.Heat_Capacity * hvac_heating_ap.heat_capacity_ratios[hvac_heating_speed], hvac_heating_ap.heat_rated_cfm_per_ton[hvac_heating_speed]) else - heat_airflow_rated_ratio = [1.0] # actual air flow is equal to rated (before applying defect ratio) in current methodology - heat_airflow_rated_defect_ratio = [1 + heat_airflow_defect_ratio] + heat_airflow_rated_ratio = 1.0 # actual air flow is equal to rated (before applying defect ratio) in current methodology + heat_airflow_rated_defect_ratio = 1 + heat_airflow_defect_ratio end - if not heat_airflow_rated_defect_ratio.empty? - cap_htg_ratios = [] - for speed in 0..(heat_airflow_rated_defect_ratio.size - 1) - htg_fff_cap_coeff, _htg_fff_eir_coeff = HVAC.get_airflow_fault_heating_coeff() - a1_AF_Qgr_h = htg_fff_cap_coeff[0] - a2_AF_Qgr_h = htg_fff_cap_coeff[1] - a3_AF_Qgr_h = htg_fff_cap_coeff[2] + htg_fff_cap_coeff, _htg_fff_eir_coeff = HVAC.get_heat_cap_eir_fflow_spec(HPXML::HVACCompressorTypeSingleStage)[0] + a1_AF_Qgr_h = htg_fff_cap_coeff[0] + a2_AF_Qgr_h = htg_fff_cap_coeff[1] + a3_AF_Qgr_h = htg_fff_cap_coeff[2] - qgr_values, _p_values, ff_chg_values = HVAC.get_charge_fault_heating_coeff(f_ch) + qgr_values, _p_values, ff_chg_values = HVAC.get_charge_fault_heating_coeff(f_ch) - a1_CH_Qgr_h = qgr_values[0] - a2_CH_Qgr_h = qgr_values[2] - a3_CH_Qgr_h = qgr_values[3] + a1_CH_Qgr_h = qgr_values[0] + a2_CH_Qgr_h = qgr_values[2] + a3_CH_Qgr_h = qgr_values[3] - qh1_CH = a1_CH_Qgr_h - qh2_CH = a2_CH_Qgr_h * UnitConversions.convert(@hpxml.header.manualj_heating_design_temp, 'F', 'C') - qh3_CH = a3_CH_Qgr_h * f_ch - y_CH_Q_h = 1 + ((qh1_CH + qh2_CH + qh3_CH) * f_ch) + qh1_CH = a1_CH_Qgr_h + qh2_CH = a2_CH_Qgr_h * UnitConversions.convert(@hpxml_bldg.header.manualj_heating_design_temp, 'F', 'C') + qh3_CH = a3_CH_Qgr_h * f_ch + y_CH_Q_h = 1 + ((qh1_CH + qh2_CH + qh3_CH) * f_ch) - ff_ch_h = (1 / (1 + (qgr_values[0] + qgr_values[2] * ff_chg_values[1] + qgr_values[3] * f_ch) * f_ch)).round(3) - ff_AF_h = heat_airflow_rated_defect_ratio[speed].round(3) - ff_AF_comb_h = ff_ch_h * ff_AF_h + ff_ch_h = (1 / (1 + (qgr_values[0] + qgr_values[2] * ff_chg_values[1] + qgr_values[3] * f_ch) * f_ch)).round(3) + ff_AF_h = heat_airflow_rated_defect_ratio.round(3) + ff_AF_comb_h = ff_ch_h * ff_AF_h - qh_AF_CH = a1_AF_Qgr_h + (a2_AF_Qgr_h * ff_ch_h) + (a3_AF_Qgr_h * ff_ch_h * ff_ch_h) - p_CH_Q_h = y_CH_Q_h / qh_AF_CH + qh_AF_CH = a1_AF_Qgr_h + (a2_AF_Qgr_h * ff_ch_h) + (a3_AF_Qgr_h * ff_ch_h * ff_ch_h) + p_CH_Q_h = y_CH_Q_h / qh_AF_CH - p_AF_Q_h = a1_AF_Qgr_h + (a2_AF_Qgr_h * ff_AF_comb_h) + (a3_AF_Qgr_h * ff_AF_comb_h * ff_AF_comb_h) + p_AF_Q_h = a1_AF_Qgr_h + (a2_AF_Qgr_h * ff_AF_comb_h) + (a3_AF_Qgr_h * ff_AF_comb_h * ff_AF_comb_h) - heat_cap_fff = (p_CH_Q_h * p_AF_Q_h) + heat_cap_fff = (p_CH_Q_h * p_AF_Q_h) - # calculate the capacity impact by defects - ff_AF_h_nodefect = heat_airflow_rated_ratio[speed].round(3) - heat_cap_fff_nodefect = a1_AF_Qgr_h + a2_AF_Qgr_h * ff_AF_h_nodefect + a3_AF_Qgr_h * ff_AF_h_nodefect * ff_AF_h_nodefect - cap_htg_ratio = 1 / (heat_cap_fff / heat_cap_fff_nodefect) - cap_htg_ratios << cap_htg_ratio - end + # calculate the capacity impact by defects + ff_AF_h_nodefect = heat_airflow_rated_ratio.round(3) + heat_cap_fff_nodefect = a1_AF_Qgr_h + a2_AF_Qgr_h * ff_AF_h_nodefect + a3_AF_Qgr_h * ff_AF_h_nodefect * ff_AF_h_nodefect + cap_htg_ratio = 1 / (heat_cap_fff / heat_cap_fff_nodefect) - prev_capacity = hvac_sizing_values.Heat_Capacity - hvac_sizing_values.Heat_Capacity *= cap_htg_ratios.max - if prev_capacity > 0 # Preserve cfm/ton - hvac_sizing_values.Heat_Airflow = hvac_sizing_values.Heat_Airflow * hvac_sizing_values.Heat_Capacity / prev_capacity - else - hvac_sizing_values.Heat_Airflow = 0.0 - end + prev_capacity = hvac_sizing_values.Heat_Capacity + hvac_sizing_values.Heat_Capacity *= cap_htg_ratio + if prev_capacity > 0 # Preserve cfm/ton + hvac_sizing_values.Heat_Airflow = hvac_sizing_values.Heat_Airflow * hvac_sizing_values.Heat_Capacity / prev_capacity + else + hvac_sizing_values.Heat_Airflow = 0.0 end end end @@ -1838,13 +1890,13 @@ def self.apply_hvac_fixed_capacities(hvac_sizing_values, hvac_heating, hvac_cool fixed_cooling_capacity = hvac_cooling.cooling_capacity end if (not fixed_cooling_capacity.nil?) && (hvac_sizing_values.Cool_Capacity > 0) - prev_capacity = hvac_sizing_values.Cool_Capacity - hvac_sizing_values.Cool_Capacity = fixed_cooling_capacity - if @hpxml.header.allow_increased_fixed_capacities - hvac_sizing_values.Cool_Capacity = [hvac_sizing_values.Cool_Capacity, prev_capacity].max + if not (@hpxml_bldg.header.allow_increased_fixed_capacities && hvac_sizing_values.Cool_Capacity > fixed_cooling_capacity) + # Use fixed size; proportionally adjust autosized airflow & sensible capacity + prev_capacity = hvac_sizing_values.Cool_Capacity + hvac_sizing_values.Cool_Capacity = fixed_cooling_capacity + hvac_sizing_values.Cool_Airflow *= hvac_sizing_values.Cool_Capacity / prev_capacity + hvac_sizing_values.Cool_Capacity_Sens *= hvac_sizing_values.Cool_Capacity / prev_capacity end - hvac_sizing_values.Cool_Capacity_Sens = hvac_sizing_values.Cool_Capacity_Sens * hvac_sizing_values.Cool_Capacity / prev_capacity - hvac_sizing_values.Cool_Airflow = hvac_sizing_values.Cool_Airflow * hvac_sizing_values.Cool_Capacity / prev_capacity end if not hvac_heating.nil? fixed_heating_capacity = hvac_heating.heating_capacity @@ -1852,12 +1904,12 @@ def self.apply_hvac_fixed_capacities(hvac_sizing_values, hvac_heating, hvac_cool fixed_heating_capacity = hvac_cooling.integrated_heating_system_capacity end if (not fixed_heating_capacity.nil?) && (hvac_sizing_values.Heat_Capacity > 0) - prev_capacity = hvac_sizing_values.Heat_Capacity - hvac_sizing_values.Heat_Capacity = fixed_heating_capacity - if @hpxml.header.allow_increased_fixed_capacities - hvac_sizing_values.Heat_Capacity = [hvac_sizing_values.Heat_Capacity, prev_capacity].max + if not (@hpxml_bldg.header.allow_increased_fixed_capacities && hvac_sizing_values.Heat_Capacity > fixed_heating_capacity) + # Use fixed size; proportionally adjust autosized airflow & sensible capacity + prev_capacity = hvac_sizing_values.Heat_Capacity + hvac_sizing_values.Heat_Capacity = fixed_heating_capacity + hvac_sizing_values.Heat_Airflow *= hvac_sizing_values.Heat_Capacity / prev_capacity end - hvac_sizing_values.Heat_Airflow = hvac_sizing_values.Heat_Airflow * hvac_sizing_values.Heat_Capacity / prev_capacity end if hvac_heating.is_a? HPXML::HeatPump if not hvac_heating.backup_heating_capacity.nil? @@ -1869,10 +1921,15 @@ def self.apply_hvac_fixed_capacities(hvac_sizing_values, hvac_heating, hvac_cool if (not fixed_supp_heating_capacity.nil?) && (hvac_sizing_values.Heat_Capacity_Supp > 0) prev_capacity = hvac_sizing_values.Heat_Capacity_Supp hvac_sizing_values.Heat_Capacity_Supp = fixed_supp_heating_capacity - if @hpxml.header.allow_increased_fixed_capacities + if @hpxml_bldg.header.allow_increased_fixed_capacities hvac_sizing_values.Heat_Capacity_Supp = [hvac_sizing_values.Heat_Capacity_Supp, prev_capacity].max end - hvac_sizing_values.Heat_Airflow_Supp = hvac_sizing_values.Heat_Airflow_Supp * hvac_sizing_values.Heat_Capacity_Supp / prev_capacity + end + end + + def self.scale_detailed_performance_data_capacities(detailed_performance_data, scaling_factor) + detailed_performance_data.each do |dp| + dp.capacity *= scaling_factor end end @@ -1986,20 +2043,14 @@ def self.apply_hvac_finalize_airflows(hvac_sizing_values, hvac_heating, hvac_coo end end - def self.process_heat_pump_adjustment(hvac_sizing_values, weather, hvac_heating, total_cap_curve_value, hvac_system) + def self.process_heat_pump_adjustment(hvac_sizing_values, weather, hvac_heating, total_cap_curve_value, hvac_system, hvac_heating_speed) ''' Adjust heat pump sizing ''' hvac_heating_ap = hvac_heating.additional_properties - if hvac_heating_ap.heat_cap_ft_spec.size > 1 - coefficients = hvac_heating_ap.heat_cap_ft_spec[-1] - capacity_ratio = hvac_heating_ap.heat_capacity_ratios[-1] - else - coefficients = hvac_heating_ap.heat_cap_ft_spec[0] - capacity_ratio = 1.0 - end + capacity_ratio = hvac_heating_ap.heat_capacity_ratios[hvac_heating_speed] if hvac_heating.is_a? HPXML::HeatPump if not hvac_heating.backup_heating_switchover_temp.nil? @@ -2008,23 +2059,31 @@ def self.process_heat_pump_adjustment(hvac_sizing_values, weather, hvac_heating, min_compressor_temp = hvac_heating.compressor_lockout_temp end end - if (not min_compressor_temp.nil?) && (min_compressor_temp > @hpxml.header.manualj_heating_design_temp) - # Calculate the heating load at the switchover temperature to limit uninitialized capacity - temp_heat_design_temp = @hpxml.header.manualj_heating_design_temp - @hpxml.header.manualj_heating_design_temp = min_compressor_temp - _alternate_bldg_design_loads, alternate_all_hvac_sizing_values = calculate(weather, @hpxml, @cfa, [hvac_system]) + if (not min_compressor_temp.nil?) && (min_compressor_temp > @hpxml_bldg.header.manualj_heating_design_temp) + # Calculate the heating load at the switchover temperature to limit unutilized capacity + temp_heat_design_temp = @hpxml_bldg.header.manualj_heating_design_temp + @hpxml_bldg.header.manualj_heating_design_temp = min_compressor_temp + _alternate_bldg_design_loads, alternate_all_hvac_sizing_values = calculate(weather, @hpxml_bldg, @cfa, [hvac_system]) heating_load = alternate_all_hvac_sizing_values[hvac_system].Heat_Load heating_db = min_compressor_temp - @hpxml.header.manualj_heating_design_temp = temp_heat_design_temp + @hpxml_bldg.header.manualj_heating_design_temp = temp_heat_design_temp else heating_load = hvac_sizing_values.Heat_Load - heating_db = @hpxml.header.manualj_heating_design_temp + heating_db = @hpxml_bldg.header.manualj_heating_design_temp end - heat_cap_rated = (heating_load / MathTools.biquadratic(@heat_setpoint, heating_db, coefficients)) / capacity_ratio + if hvac_heating.compressor_type == HPXML::HVACCompressorTypeVariableSpeed + idb_adj = adjust_indoor_condition_var_speed(heating_db, @heat_setpoint, :htg) + odb_adj = adjust_outdoor_condition_var_speed(hvac_heating.heating_detailed_performance_data, heating_db, hvac_heating, :htg) + adj_factor = odb_adj * idb_adj + else + coefficients = hvac_heating_ap.heat_cap_ft_spec[hvac_heating_speed] + adj_factor = MathTools.biquadratic(@heat_setpoint, heating_db, coefficients) + end + heat_cap_rated = (heating_load / adj_factor) / capacity_ratio if total_cap_curve_value.nil? # Heat pump has no cooling - if @hpxml.header.heat_pump_sizing_methodology == HPXML::HeatPumpSizingMaxLoad + if @hpxml_bldg.header.heat_pump_sizing_methodology == HPXML::HeatPumpSizingMaxLoad # Size based on heating, taking into account reduced heat pump capacity at the design temperature hvac_sizing_values.Heat_Capacity = heat_cap_rated else @@ -2036,7 +2095,7 @@ def self.process_heat_pump_adjustment(hvac_sizing_values, weather, hvac_heating, hvac_sizing_values.Heat_Capacity = hvac_sizing_values.Cool_Capacity else cfm_per_btuh = hvac_sizing_values.Cool_Airflow / hvac_sizing_values.Cool_Capacity - if @hpxml.header.heat_pump_sizing_methodology == HPXML::HeatPumpSizingMaxLoad + if @hpxml_bldg.header.heat_pump_sizing_methodology == HPXML::HeatPumpSizingMaxLoad # Size based on heating, taking into account reduced heat pump capacity at the design temperature hvac_sizing_values.Cool_Capacity = heat_cap_rated else @@ -2058,7 +2117,7 @@ def self.process_heat_pump_adjustment(hvac_sizing_values, weather, hvac_heating, def self.get_ventilation_rates() # If CFIS w/ supplemental fan, assume air handler is running most of the hour and can provide # all ventilation needs (i.e., supplemental fan does not need to run), so skip supplement fan - vent_fans_mech = @hpxml.ventilation_fans.select { |f| f.used_for_whole_building_ventilation && !f.is_cfis_supplemental_fan? && f.flow_rate > 0 && f.hours_in_operation > 0 } + vent_fans_mech = @hpxml_bldg.ventilation_fans.select { |f| f.used_for_whole_building_ventilation && !f.is_cfis_supplemental_fan? && f.flow_rate > 0 && f.hours_in_operation > 0 } if vent_fans_mech.empty? return [0.0, 0.0, 0.0, 0.0, 0.0, 0.0] end @@ -2110,9 +2169,22 @@ def self.get_ventilation_rates() return [tot_unbal_cfm, oa_cfm_preheat, oa_cfm_precool, recirc_cfm_shared, tot_bal_cfm_sens, tot_bal_cfm_lat] end - def self.calc_airflow_rate_manual_s(sens_load_or_capacity, deltaT) + def self.calc_airflow_rate_manual_s(sens_load_or_capacity, deltaT, rated_capacity_for_cfm_per_ton_limits = nil) # Airflow sizing following Manual S based on design calculation - return sens_load_or_capacity / (1.1 * @acf * deltaT) + airflow_rate = sens_load_or_capacity / (1.1 * @acf * deltaT) + + if not rated_capacity_for_cfm_per_ton_limits.nil? + rated_capacity_tons = UnitConversions.convert(rated_capacity_for_cfm_per_ton_limits, 'Btu/hr', 'ton') + # Ensure the air flow rate is in between 200 and 500 cfm/ton. + # Reset the air flow rate (with a safety margin), if required. + if airflow_rate / rated_capacity_tons > 500 + airflow_rate = 499.0 * rated_capacity_tons + elsif airflow_rate / rated_capacity_tons < 200 + airflow_rate = 201.0 * rated_capacity_tons + end + end + + return airflow_rate end def self.calc_airflow_rate_user(capacity, rated_cfm_per_ton, capacity_ratio) @@ -2320,19 +2392,20 @@ def self.get_shr_biquadratic return [1.08464364, 0.002096954, 0, -0.005766327, 0, -0.000011147] end - def self.get_sizing_speed(hvac_cooling_ap) - if hvac_cooling_ap.respond_to?(:cool_capacity_ratios) && (hvac_cooling_ap.cool_capacity_ratios.size > 1) - sizing_speed = hvac_cooling_ap.cool_capacity_ratios.size # Default - sizing_speed_delta = 10 # Initialize - for speed in 0..(hvac_cooling_ap.cool_capacity_ratios.size - 1) - # Select curves for sizing using the speed with the capacity ratio closest to 1 - delta = (hvac_cooling_ap.cool_capacity_ratios[speed] - 1).abs - if delta <= sizing_speed_delta - sizing_speed = speed - sizing_speed_delta = delta - end + def self.get_sizing_speed(hvac_ap, is_cooling) + if is_cooling && hvac_ap.respond_to?(:cool_capacity_ratios) + capacity_ratios = hvac_ap.cool_capacity_ratios + elsif (not is_cooling) && hvac_ap.respond_to?(:heat_capacity_ratios) + capacity_ratios = hvac_ap.heat_capacity_ratios + end + if not capacity_ratios.nil? + for speed in 0..(capacity_ratios.size - 1) + # Select curves for sizing using the speed with the capacity ratio of 1 + next if capacity_ratios[speed] != 1 + + return speed end - return sizing_speed + fail 'No speed with capacity ratio of 1.0 found.' end return 0 end @@ -2352,17 +2425,17 @@ def self.get_space_ua_values(location, weather) space_UAs = { HPXML::LocationOutside => 0.0, HPXML::LocationGround => 0.0, - HPXML::LocationLivingSpace => 0.0 } + HPXML::LocationConditionedSpace => 0.0 } # Surface UAs - (@hpxml.roofs + @hpxml.floors + @hpxml.walls + @hpxml.foundation_walls).each do |surface| + (@hpxml_bldg.roofs + @hpxml_bldg.floors + @hpxml_bldg.walls + @hpxml_bldg.foundation_walls).each do |surface| next unless ((location == surface.interior_adjacent_to && space_UAs.keys.include?(surface.exterior_adjacent_to)) || (location == surface.exterior_adjacent_to && space_UAs.keys.include?(surface.interior_adjacent_to))) if [surface.interior_adjacent_to, surface.exterior_adjacent_to].include? HPXML::LocationOutside space_UAs[HPXML::LocationOutside] += (1.0 / surface.insulation_assembly_r_value) * surface.area elsif HPXML::conditioned_locations.include?(surface.interior_adjacent_to) || HPXML::conditioned_locations.include?(surface.exterior_adjacent_to) - space_UAs[HPXML::LocationLivingSpace] += (1.0 / surface.insulation_assembly_r_value) * surface.area + space_UAs[HPXML::LocationConditionedSpace] += (1.0 / surface.insulation_assembly_r_value) * surface.area elsif [surface.interior_adjacent_to, surface.exterior_adjacent_to].include? HPXML::LocationGround if surface.is_a? HPXML::FoundationWall _u_wall_with_soil, u_wall_without_soil = get_foundation_wall_properties(surface) @@ -2376,10 +2449,10 @@ def self.get_space_ua_values(location, weather) if [HPXML::LocationCrawlspaceVented, HPXML::LocationAtticVented].include? location # Vented space if location == HPXML::LocationCrawlspaceVented - vented_crawl = @hpxml.foundations.find { |f| f.foundation_type == HPXML::FoundationTypeCrawlspaceVented } + vented_crawl = @hpxml_bldg.foundations.find { |f| f.foundation_type == HPXML::FoundationTypeCrawlspaceVented } sla = vented_crawl.vented_crawlspace_sla else - vented_attic = @hpxml.attics.find { |f| f.attic_type == HPXML::AtticTypeVented } + vented_attic = @hpxml_bldg.attics.find { |f| f.attic_type == HPXML::AtticTypeVented } if not vented_attic.vented_attic_sla.nil? sla = vented_attic.vented_attic_sla else @@ -2390,9 +2463,9 @@ def self.get_space_ua_values(location, weather) else # Unvented space ach = Airflow.get_default_unvented_space_ach() end - volume = Geometry.calculate_zone_volume(@hpxml, location) + volume = Geometry.calculate_zone_volume(@hpxml_bldg, location) infiltration_cfm = ach / UnitConversions.convert(1.0, 'hr', 'min') * volume - outside_air_density = UnitConversions.convert(weather.header.LocalPressure, 'atm', 'Btu/ft^3') / (Gas.Air.r * (weather.data.AnnualAvgDrybulb + 460.0)) + outside_air_density = UnitConversions.convert(weather.header.LocalPressure, 'atm', 'Btu/ft^3') / (Gas.Air.r * UnitConversions.convert(weather.data.AnnualAvgDrybulb, 'F', 'R')) space_UAs['infil'] = infiltration_cfm * outside_air_density * Gas.Air.cp * UnitConversions.convert(1.0, 'hr', 'min') # Total UA @@ -2417,7 +2490,7 @@ def self.calculate_space_design_temps(location, weather, conditioned_design_temp sum_uat += ua * ground_db elsif (ua_type == HPXML::LocationOutside) || (ua_type == 'infil') sum_uat += ua * design_db - elsif ua_type == HPXML::LocationLivingSpace + elsif ua_type == HPXML::LocationConditionedSpace sum_uat += ua * conditioned_design_temp elsif ua_type == 'total' # skip @@ -2437,7 +2510,7 @@ def self.calculate_space_design_temps(location, weather, conditioned_design_temp max_temp_rise = 50.0 # Estimate from running a few cases in E+ and DOE2 since the - # attic will always be a little warmer than the living space + # attic will always be a little warmer than the conditioned space # when the roof is insulated min_temp_rise = 5.0 @@ -2449,7 +2522,7 @@ def self.calculate_space_design_temps(location, weather, conditioned_design_temp space_UAs.each do |ua_type, ua| if (ua_type == HPXML::LocationOutside) || (ua_type == 'infil') ua_outside += ua - elsif ua_type == HPXML::LocationLivingSpace + elsif ua_type == HPXML::LocationConditionedSpace ua_conditioned += ua elsif not ((ua_type == 'total') || (ua_type == HPXML::LocationGround)) fail "Unexpected space ua type: '#{ua_type}'." @@ -2670,15 +2743,25 @@ def self.gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, pipe_r_v beta_1 = -0.94467 end - r_value_ground = Math.log(bore_spacing / hvac_cooling_ap.bore_diameter * 12.0) / 2.0 / Math::PI / @hpxml.site.ground_conductivity + r_value_ground = Math.log(bore_spacing / hvac_cooling_ap.bore_diameter * 12.0) / 2.0 / Math::PI / @hpxml_bldg.site.ground_conductivity r_value_grout = 1.0 / hvac_cooling_ap.grout_conductivity / beta_0 / ((hvac_cooling_ap.bore_diameter / hvac_cooling_ap.pipe_od)**beta_1) r_value_bore = r_value_grout + pipe_r_value / 2.0 # Note: Convection resistance is negligible when calculated against Glhepro (Jeffrey D. Spitler, 2000) - rtf_DesignMon_Heat = [0.25, (71.0 - weather.data.MonthlyAvgDrybulbs[0]) / @htd].max - rtf_DesignMon_Cool = [0.25, (weather.data.MonthlyAvgDrybulbs[6] - 76.0) / @ctd].max + is_southern_hemisphere = (weather.header.Latitude < 0) - nom_length_heat = (1.0 - hvac_cooling_ap.heat_rated_eirs[0]) * (r_value_bore + r_value_ground * rtf_DesignMon_Heat) / (weather.data.AnnualAvgDrybulb - (2.0 * hvac_cooling_ap.design_hw - hvac_cooling_ap.design_delta_t) / 2.0) * UnitConversions.convert(1.0, 'ton', 'Btu/hr') - nom_length_cool = (1.0 + hvac_cooling_ap.cool_rated_eirs[0]) * (r_value_bore + r_value_ground * rtf_DesignMon_Cool) / ((2.0 * hvac_cooling_ap.design_chw + hvac_cooling_ap.design_delta_t) / 2.0 - weather.data.AnnualAvgDrybulb) * UnitConversions.convert(1.0, 'ton', 'Btu/hr') + if is_southern_hemisphere + heating_month = 6 # July + cooling_month = 0 # January + else + heating_month = 0 # January + cooling_month = 6 # July + end + + rtf_DesignMon_Heat = [0.25, (71.0 - weather.data.MonthlyAvgDrybulbs[heating_month]) / @htd].max + rtf_DesignMon_Cool = [0.25, (weather.data.MonthlyAvgDrybulbs[cooling_month] - 76.0) / @ctd].max + + nom_length_heat = (1.0 - 1.0 / hvac_cooling_ap.heat_rated_cops[0]) * (r_value_bore + r_value_ground * rtf_DesignMon_Heat) / (weather.data.DeepGroundAnnualTemp - (2.0 * hvac_cooling_ap.design_hw - hvac_cooling_ap.design_delta_t) / 2.0) * UnitConversions.convert(1.0, 'ton', 'Btu/hr') + nom_length_cool = (1.0 + 1.0 / hvac_cooling_ap.cool_rated_cops[0]) * (r_value_bore + r_value_ground * rtf_DesignMon_Cool) / ((2.0 * hvac_cooling_ap.design_chw + hvac_cooling_ap.design_delta_t) / 2.0 - weather.data.DeepGroundAnnualTemp) * UnitConversions.convert(1.0, 'ton', 'Btu/hr') return nom_length_heat, nom_length_cool end @@ -3024,36 +3107,42 @@ def self.get_foundation_wall_properties(foundation_wall) if not foundation_wall.insulation_assembly_r_value.nil? wall_constr_rvalue = foundation_wall.insulation_assembly_r_value - Material.AirFilmVertical.rvalue - wall_ins_rvalues = [] - wall_ins_offsets = [] - wall_ins_heights = [] + wall_ins_rvalue_int, wall_ins_rvalue_ext = 0, 0 + wall_ins_dist_to_top_int, wall_ins_dist_to_top_ext = 0, 0 + wall_ins_dist_to_bottom_int, wall_ins_dist_to_bottom_ext = 0, 0 else wall_constr_rvalue = Material.Concrete(foundation_wall.thickness).rvalue - wall_ins_rvalues = [foundation_wall.insulation_interior_r_value, - foundation_wall.insulation_exterior_r_value] - wall_ins_offsets = [foundation_wall.insulation_interior_distance_to_top, - foundation_wall.insulation_exterior_distance_to_top] - wall_ins_heights = [foundation_wall.insulation_interior_distance_to_bottom - foundation_wall.insulation_interior_distance_to_top, - foundation_wall.insulation_exterior_distance_to_bottom - foundation_wall.insulation_exterior_distance_to_top] + wall_ins_rvalue_int = foundation_wall.insulation_interior_r_value + wall_ins_rvalue_ext = foundation_wall.insulation_exterior_r_value + wall_ins_dist_to_top_int = foundation_wall.insulation_interior_distance_to_top + wall_ins_dist_to_top_ext = foundation_wall.insulation_exterior_distance_to_top + wall_ins_dist_to_bottom_int = foundation_wall.insulation_interior_distance_to_bottom + wall_ins_dist_to_bottom_ext = foundation_wall.insulation_exterior_distance_to_bottom end - k_soil = @hpxml.site.ground_conductivity + k_soil = @hpxml_bldg.site.ground_conductivity # Calculated based on Manual J 8th Ed. procedure in section A12-4 (15% decrease due to soil thermal storage) u_wall_with_soil = 0.0 u_wall_without_soil = 0.0 wall_height = foundation_wall.height.ceil - for d in 1..wall_height - r_soil = (Math::PI * d / 2.0) / k_soil - + wall_depth_above_grade = foundation_wall.height - foundation_wall.depth_below_grade + for distance_to_top in 1..wall_height # Calculate R-wall at this depth r_wall = wall_constr_rvalue + Material.AirFilmVertical.rvalue # Base wall construction + interior film - if d <= (foundation_wall.height - foundation_wall.depth_below_grade) - r_wall += Material.AirFilmOutside.rvalue # Above-grade, add exterior film + if distance_to_top <= wall_depth_above_grade + # Above-grade: no soil, add exterior film + r_soil = 0.0 + r_wall += Material.AirFilmOutside.rvalue + else + # Below-grade: add soil, no exterior film + distance_to_grade = distance_to_top - wall_depth_above_grade + r_soil = (Math::PI * distance_to_grade / 2.0) / k_soil end - for i in 0..wall_ins_rvalues.size - 1 - if (d > wall_ins_offsets[i]) && (d <= wall_ins_offsets[i] + wall_ins_heights[i]) - r_wall += wall_ins_rvalues[i] # Insulation at this depth, add R-value - end + if (distance_to_top > wall_ins_dist_to_top_int) && (distance_to_top <= wall_ins_dist_to_bottom_int) + r_wall += wall_ins_rvalue_int # Interior insulation at this depth, add R-value + end + if (distance_to_top > wall_ins_dist_to_top_ext) && (distance_to_top <= wall_ins_dist_to_bottom_ext) + r_wall += wall_ins_rvalue_ext # Interior insulation at this depth, add R-value end u_wall_with_soil += 1.0 / (r_soil + r_wall) u_wall_without_soil += 1.0 / r_wall @@ -3121,7 +3210,7 @@ def self.calc_slab_f_value(slab, ground_conductivity) u_effective << 1.0 / r_air_to_air end - f_values << u_effective.inject(0, :+) # sum array + f_values << u_effective.sum end return f_values.sum() / f_values.size @@ -3151,7 +3240,7 @@ def self.set_fractions_load_served(hvac_heating, hvac_cooling) @fraction_heat_load_served = 0 elsif hvac_heating.is_a?(HPXML::HeatingSystem) && hvac_heating.is_heat_pump_backup_system # Use the same load fractions as the heat pump - heat_pump = @hpxml.heat_pumps.find { |hp| hp.backup_system_idref == hvac_heating.id } + heat_pump = @hpxml_bldg.heat_pumps.find { |hp| hp.backup_system_idref == hvac_heating.id } @fraction_heat_load_served = heat_pump.fraction_heat_load_served else @fraction_heat_load_served = hvac_heating.fraction_heat_load_served @@ -3177,10 +3266,8 @@ def initialize class HVACSizingValues def initialize end - attr_accessor(:Cool_Load_Sens, :Cool_Load_Lat, :Cool_Load_Tot, - :Cool_Capacity, :Cool_Capacity_Sens, :Cool_Airflow, - :Heat_Load, :Heat_Load_Supp, :Heat_Capacity, :Heat_Capacity_Supp, - :Heat_Airflow, :Heat_Airflow_Supp, + attr_accessor(:Cool_Load_Sens, :Cool_Load_Lat, :Cool_Load_Tot, :Cool_Capacity, :Cool_Capacity_Sens, :Cool_Airflow, + :Heat_Load, :Heat_Load_Supp, :Heat_Capacity, :Heat_Capacity_Supp, :Heat_Airflow, :GSHP_Loop_flow, :GSHP_Bore_Holes, :GSHP_Bore_Depth, :GSHP_G_Functions) end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb index d494f74b..19ad1683 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb @@ -1,7 +1,13 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class Lighting - def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_version, schedules_file, cfa, unavailable_periods) + def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_version, schedules_file, cfa, + unavailable_periods, unit_multiplier) ltg_locns = [HPXML::LocationInterior, HPXML::LocationExterior, HPXML::LocationGarage] ltg_types = [HPXML::LightingTypeCFL, HPXML::LightingTypeLFL, HPXML::LightingTypeLED] @@ -21,10 +27,10 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v int_kwh = calc_interior_energy(eri_version, cfa, fractions[[HPXML::LocationInterior, HPXML::LightingTypeCFL]], fractions[[HPXML::LocationInterior, HPXML::LightingTypeLFL]], - fractions[[HPXML::LocationInterior, HPXML::LightingTypeLED]], - lighting.interior_usage_multiplier) + fractions[[HPXML::LocationInterior, HPXML::LightingTypeLED]]) end int_kwh = 0.0 if int_kwh.nil? + int_kwh *= lighting.interior_usage_multiplier unless lighting.interior_usage_multiplier.nil? # Calculate exterior lighting kWh/yr ext_kwh = kwhs_per_year[HPXML::LocationExterior] @@ -32,26 +38,29 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v ext_kwh = calc_exterior_energy(eri_version, cfa, fractions[[HPXML::LocationExterior, HPXML::LightingTypeCFL]], fractions[[HPXML::LocationExterior, HPXML::LightingTypeLFL]], - fractions[[HPXML::LocationExterior, HPXML::LightingTypeLED]], - lighting.exterior_usage_multiplier) + fractions[[HPXML::LocationExterior, HPXML::LightingTypeLED]]) end ext_kwh = 0.0 if ext_kwh.nil? + ext_kwh *= lighting.exterior_usage_multiplier unless lighting.exterior_usage_multiplier.nil? + ext_kwh *= unit_multiplier # Not in a thermal zone, so needs to be explicitly multiplied # Calculate garage lighting kWh/yr - grg_kwh = kwhs_per_year[HPXML::LocationGarage] - if grg_kwh.nil? - gfa = 0 # Garage floor area - if spaces.keys.include? HPXML::LocationGarage - gfa = UnitConversions.convert(spaces[HPXML::LocationGarage].floorArea, 'm^2', 'ft^2') + gfa = 0 # Garage floor area + if spaces.keys.include? HPXML::LocationGarage + gfa = UnitConversions.convert(spaces[HPXML::LocationGarage].floorArea, 'm^2', 'ft^2') + end + if gfa > 0 + grg_kwh = kwhs_per_year[HPXML::LocationGarage] + if grg_kwh.nil? + + grg_kwh = calc_garage_energy(eri_version, gfa, + fractions[[HPXML::LocationGarage, HPXML::LightingTypeCFL]], + fractions[[HPXML::LocationGarage, HPXML::LightingTypeLFL]], + fractions[[HPXML::LocationGarage, HPXML::LightingTypeLED]]) end - - grg_kwh = calc_garage_energy(eri_version, gfa, - fractions[[HPXML::LocationGarage, HPXML::LightingTypeCFL]], - fractions[[HPXML::LocationGarage, HPXML::LightingTypeLFL]], - fractions[[HPXML::LocationGarage, HPXML::LightingTypeLED]], - lighting.garage_usage_multiplier) end grg_kwh = 0.0 if grg_kwh.nil? + grg_kwh *= lighting.garage_usage_multiplier unless lighting.garage_usage_multiplier.nil? # Add lighting to conditioned space if int_kwh > 0 @@ -59,14 +68,15 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v # Create schedule interior_sch = nil interior_col_name = SchedulesFile::ColumnLightingInterior + interior_obj_name = Constants.ObjectNameLightingInterior if not schedules_file.nil? design_level = schedules_file.calc_design_level_from_annual_kwh(col_name: interior_col_name, annual_kwh: int_kwh) - interior_sch = schedules_file.create_schedule_file(col_name: interior_col_name) + interior_sch = schedules_file.create_schedule_file(model, col_name: interior_col_name) end if interior_sch.nil? interior_unavailable_periods = Schedule.get_unavailable_periods(runner, interior_col_name, unavailable_periods) if not lighting.interior_weekday_fractions.nil? - interior_sch = MonthWeekdayWeekendSchedule.new(model, Constants.ObjectNameInteriorLighting + ' schedule', lighting.interior_weekday_fractions, lighting.interior_weekend_fractions, lighting.interior_monthly_multipliers, Constants.ScheduleTypeLimitsFraction, unavailable_periods: interior_unavailable_periods) + interior_sch = MonthWeekdayWeekendSchedule.new(model, interior_obj_name + ' schedule', lighting.interior_weekday_fractions, lighting.interior_weekend_fractions, lighting.interior_monthly_multipliers, Constants.ScheduleTypeLimitsFraction, unavailable_periods: interior_unavailable_periods) else lighting_sch = get_schedule(epw_file) interior_sch = HourlyByMonthSchedule.new(model, 'lighting schedule', lighting_sch, lighting_sch, Constants.ScheduleTypeLimitsFraction, unavailable_periods: interior_unavailable_periods) @@ -87,10 +97,10 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v # Add lighting ltg_def = OpenStudio::Model::LightsDefinition.new(model) ltg = OpenStudio::Model::Lights.new(ltg_def) - ltg.setName(Constants.ObjectNameInteriorLighting) - ltg.setSpace(spaces[HPXML::LocationLivingSpace]) - ltg.setEndUseSubcategory(Constants.ObjectNameInteriorLighting) - ltg_def.setName(Constants.ObjectNameInteriorLighting) + ltg.setName(interior_obj_name) + ltg.setSpace(spaces[HPXML::LocationConditionedSpace]) + ltg.setEndUseSubcategory(interior_obj_name) + ltg_def.setName(interior_obj_name) ltg_def.setLightingLevel(design_level) ltg_def.setFractionRadiant(0.6) ltg_def.setFractionVisible(0.2) @@ -104,13 +114,14 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v # Create schedule garage_sch = nil garage_col_name = SchedulesFile::ColumnLightingGarage + garage_obj_name = Constants.ObjectNameLightingGarage if not schedules_file.nil? design_level = schedules_file.calc_design_level_from_annual_kwh(col_name: garage_col_name, annual_kwh: grg_kwh) - garage_sch = schedules_file.create_schedule_file(col_name: garage_col_name) + garage_sch = schedules_file.create_schedule_file(model, col_name: garage_col_name) end if garage_sch.nil? garage_unavailable_periods = Schedule.get_unavailable_periods(runner, garage_col_name, unavailable_periods) - garage_sch = MonthWeekdayWeekendSchedule.new(model, Constants.ObjectNameGarageLighting + ' schedule', lighting.garage_weekday_fractions, lighting.garage_weekend_fractions, lighting.garage_monthly_multipliers, Constants.ScheduleTypeLimitsFraction, unavailable_periods: garage_unavailable_periods) + garage_sch = MonthWeekdayWeekendSchedule.new(model, garage_obj_name + ' schedule', lighting.garage_weekday_fractions, lighting.garage_weekend_fractions, lighting.garage_monthly_multipliers, Constants.ScheduleTypeLimitsFraction, unavailable_periods: garage_unavailable_periods) design_level = garage_sch.calc_design_level_from_daily_kwh(grg_kwh / 365.0) garage_sch = garage_sch.schedule else @@ -122,10 +133,10 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v # Add lighting ltg_def = OpenStudio::Model::LightsDefinition.new(model) ltg = OpenStudio::Model::Lights.new(ltg_def) - ltg.setName(Constants.ObjectNameGarageLighting) + ltg.setName(garage_obj_name) ltg.setSpace(spaces[HPXML::LocationGarage]) - ltg.setEndUseSubcategory(Constants.ObjectNameGarageLighting) - ltg_def.setName(Constants.ObjectNameGarageLighting) + ltg.setEndUseSubcategory(garage_obj_name) + ltg_def.setName(garage_obj_name) ltg_def.setLightingLevel(design_level) ltg_def.setFractionRadiant(0.6) ltg_def.setFractionVisible(0.2) @@ -139,13 +150,14 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v # Create schedule exterior_sch = nil exterior_col_name = SchedulesFile::ColumnLightingExterior + exterior_obj_name = Constants.ObjectNameLightingExterior if not schedules_file.nil? design_level = schedules_file.calc_design_level_from_annual_kwh(col_name: exterior_col_name, annual_kwh: ext_kwh) - exterior_sch = schedules_file.create_schedule_file(col_name: exterior_col_name) + exterior_sch = schedules_file.create_schedule_file(model, col_name: exterior_col_name) end if exterior_sch.nil? exterior_unavailable_periods = Schedule.get_unavailable_periods(runner, exterior_col_name, unavailable_periods) - exterior_sch = MonthWeekdayWeekendSchedule.new(model, Constants.ObjectNameExteriorLighting + ' schedule', lighting.exterior_weekday_fractions, lighting.exterior_weekend_fractions, lighting.exterior_monthly_multipliers, Constants.ScheduleTypeLimitsFraction, unavailable_periods: exterior_unavailable_periods) + exterior_sch = MonthWeekdayWeekendSchedule.new(model, exterior_obj_name + ' schedule', lighting.exterior_weekday_fractions, lighting.exterior_weekend_fractions, lighting.exterior_monthly_multipliers, Constants.ScheduleTypeLimitsFraction, unavailable_periods: exterior_unavailable_periods) design_level = exterior_sch.calc_design_level_from_daily_kwh(ext_kwh / 365.0) exterior_sch = exterior_sch.schedule else @@ -157,9 +169,9 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v # Add exterior lighting ltg_def = OpenStudio::Model::ExteriorLightsDefinition.new(model) ltg = OpenStudio::Model::ExteriorLights.new(ltg_def) - ltg.setName(Constants.ObjectNameExteriorLighting) - ltg.setEndUseSubcategory(Constants.ObjectNameExteriorLighting) - ltg_def.setName(Constants.ObjectNameExteriorLighting) + ltg.setName(exterior_obj_name) + ltg.setEndUseSubcategory(exterior_obj_name) + ltg_def.setName(exterior_obj_name) ltg_def.setDesignLevel(design_level) ltg.setSchedule(exterior_sch) end @@ -170,14 +182,16 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v # Create schedule exterior_holiday_sch = nil exterior_holiday_col_name = SchedulesFile::ColumnLightingExteriorHoliday + exterior_holiday_obj_name = Constants.ObjectNameLightingExteriorHoliday + exterior_holiday_kwh_per_day = lighting.holiday_kwh_per_day * unit_multiplier if not schedules_file.nil? - design_level = schedules_file.calc_design_level_from_daily_kwh(col_name: exterior_holiday_col_name, daily_kwh: lighting.holiday_kwh_per_day) - exterior_holiday_sch = schedules_file.create_schedule_file(col_name: exterior_holiday_col_name) + design_level = schedules_file.calc_design_level_from_daily_kwh(col_name: exterior_holiday_col_name, daily_kwh: exterior_holiday_kwh_per_day) + exterior_holiday_sch = schedules_file.create_schedule_file(model, col_name: exterior_holiday_col_name) end if exterior_holiday_sch.nil? exterior_holiday_unavailable_periods = Schedule.get_unavailable_periods(runner, exterior_holiday_col_name, unavailable_periods) - exterior_holiday_sch = MonthWeekdayWeekendSchedule.new(model, Constants.ObjectNameLightingExteriorHoliday + ' schedule', lighting.holiday_weekday_fractions, lighting.holiday_weekend_fractions, lighting.exterior_monthly_multipliers, Constants.ScheduleTypeLimitsFraction, true, lighting.holiday_period_begin_month, lighting.holiday_period_begin_day, lighting.holiday_period_end_month, lighting.holiday_period_end_day, unavailable_periods: exterior_holiday_unavailable_periods) - design_level = exterior_holiday_sch.calc_design_level_from_daily_kwh(lighting.holiday_kwh_per_day) + exterior_holiday_sch = MonthWeekdayWeekendSchedule.new(model, exterior_holiday_obj_name + ' schedule', lighting.holiday_weekday_fractions, lighting.holiday_weekend_fractions, lighting.exterior_monthly_multipliers, Constants.ScheduleTypeLimitsFraction, true, lighting.holiday_period_begin_month, lighting.holiday_period_begin_day, lighting.holiday_period_end_month, lighting.holiday_period_end_day, unavailable_periods: exterior_holiday_unavailable_periods) + design_level = exterior_holiday_sch.calc_design_level_from_daily_kwh(exterior_holiday_kwh_per_day) exterior_holiday_sch = exterior_holiday_sch.schedule else runner.registerWarning("Both '#{exterior_holiday_col_name}' schedule file and weekday fractions provided; the latter will be ignored.") if !lighting.holiday_weekday_fractions.nil? @@ -188,9 +202,9 @@ def self.apply(runner, model, epw_file, spaces, lighting_groups, lighting, eri_v # Add exterior holiday lighting ltg_def = OpenStudio::Model::ExteriorLightsDefinition.new(model) ltg = OpenStudio::Model::ExteriorLights.new(ltg_def) - ltg.setName(Constants.ObjectNameLightingExteriorHoliday) - ltg.setEndUseSubcategory(Constants.ObjectNameLightingExteriorHoliday) - ltg_def.setName(Constants.ObjectNameLightingExteriorHoliday) + ltg.setName(exterior_holiday_obj_name) + ltg.setEndUseSubcategory(exterior_holiday_obj_name) + ltg_def.setName(exterior_holiday_obj_name) ltg_def.setDesignLevel(design_level) ltg.setSchedule(exterior_holiday_sch) end @@ -212,7 +226,7 @@ def self.get_default_fractions() private - def self.calc_interior_energy(eri_version, cfa, f_int_cfl, f_int_lfl, f_int_led, interior_usage_multiplier = 1.0) + def self.calc_interior_energy(eri_version, cfa, f_int_cfl, f_int_lfl, f_int_led) return if f_int_cfl.nil? || f_int_lfl.nil? || f_int_led.nil? if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2014AEG') @@ -245,12 +259,10 @@ def self.calc_interior_energy(eri_version, cfa, f_int_cfl, f_int_lfl, f_int_led, int_kwh = 0.8 * ((4.0 - 3.0 * fF_int) / 3.7) * (455.0 + 0.8 * cfa) + 0.2 * (455.0 + 0.8 * cfa) end - int_kwh *= interior_usage_multiplier - return int_kwh end - def self.calc_exterior_energy(eri_version, cfa, f_ext_cfl, f_ext_lfl, f_ext_led, exterior_usage_multiplier = 1.0) + def self.calc_exterior_energy(eri_version, cfa, f_ext_cfl, f_ext_lfl, f_ext_led) return if f_ext_cfl.nil? || f_ext_lfl.nil? || f_ext_led.nil? if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2014AEG') @@ -283,12 +295,10 @@ def self.calc_exterior_energy(eri_version, cfa, f_ext_cfl, f_ext_lfl, f_ext_led, ext_kwh = (100.0 + 0.05 * cfa) * (1.0 - fF_ext) + 0.25 * (100.0 + 0.05 * cfa) * fF_ext end - ext_kwh *= exterior_usage_multiplier - return ext_kwh end - def self.calc_garage_energy(eri_version, gfa, f_grg_cfl, f_grg_lfl, f_grg_led, garage_usage_multiplier = 1.0) + def self.calc_garage_energy(eri_version, gfa, f_grg_cfl, f_grg_lfl, f_grg_led) return if f_grg_cfl.nil? || f_grg_lfl.nil? || f_grg_led.nil? if Constants.ERIVersions.index(eri_version) >= Constants.ERIVersions.index('2014AEG') @@ -327,8 +337,6 @@ def self.calc_garage_energy(eri_version, gfa, f_grg_cfl, f_grg_lfl, f_grg_led, g end end - grg_kwh *= garage_usage_multiplier - return grg_kwh end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb index 2711147c..ef6c9010 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb @@ -1,17 +1,16 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class Location - def self.apply(model, weather, epw_file, hpxml) - apply_year(model, hpxml, epw_file) + def self.apply(model, weather, epw_file, hpxml_header, hpxml_bldg) + apply_year(model, hpxml_header, epw_file) apply_site(model, epw_file) - apply_dst(model, hpxml) - apply_ground_temps(model, weather) - end - - def self.apply_weather_file(model, epw_path) - epw_file = OpenStudio::EpwFile.new(epw_path) - OpenStudio::Model::WeatherFile.setWeatherFile(model, epw_file) - return epw_file + apply_dst(model, hpxml_bldg) + apply_ground_temps(model, weather, hpxml_bldg) end private @@ -25,40 +24,42 @@ def self.apply_site(model, epw_file) site.setElevation(epw_file.elevation) end - def self.apply_year(model, hpxml, epw_file) - if Date.leap?(hpxml.header.sim_calendar_year) + def self.apply_year(model, hpxml_header, epw_file) + if Date.leap?(hpxml_header.sim_calendar_year) n_hours = epw_file.data.size if n_hours != 8784 - fail "Specified a leap year (#{hpxml.header.sim_calendar_year}) but weather data has #{n_hours} hours." + fail "Specified a leap year (#{hpxml_header.sim_calendar_year}) but weather data has #{n_hours} hours." end end year_description = model.getYearDescription - year_description.setCalendarYear(hpxml.header.sim_calendar_year) + year_description.setCalendarYear(hpxml_header.sim_calendar_year) end - def self.apply_dst(model, hpxml) - return unless hpxml.header.dst_enabled + def self.apply_dst(model, hpxml_bldg) + return unless hpxml_bldg.dst_enabled month_names = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] - dst_start_date = "#{month_names[hpxml.header.dst_begin_month - 1]} #{hpxml.header.dst_begin_day}" - dst_end_date = "#{month_names[hpxml.header.dst_end_month - 1]} #{hpxml.header.dst_end_day}" + dst_start_date = "#{month_names[hpxml_bldg.dst_begin_month - 1]} #{hpxml_bldg.dst_begin_day}" + dst_end_date = "#{month_names[hpxml_bldg.dst_end_month - 1]} #{hpxml_bldg.dst_end_day}" run_period_control_daylight_saving_time = model.getRunPeriodControlDaylightSavingTime run_period_control_daylight_saving_time.setStartDate(dst_start_date) run_period_control_daylight_saving_time.setEndDate(dst_end_date) end - def self.apply_ground_temps(model, weather) + def self.apply_ground_temps(model, weather, hpxml_bldg) # Shallow ground temperatures only currently used for ducts located under slab sgts = model.getSiteGroundTemperatureShallow sgts.resetAllMonths - sgts.setAllMonthlyTemperatures(weather.data.GroundMonthlyTemps.map { |t| UnitConversions.convert(t, 'F', 'C') }) + sgts.setAllMonthlyTemperatures(weather.data.ShallowGroundMonthlyTemps.map { |t| UnitConversions.convert(t, 'F', 'C') }) - # Deep ground temperatures used by GSHP setpoint manager - dgts = model.getSiteGroundTemperatureDeep - dgts.resetAllMonths - dgts.setAllMonthlyTemperatures([UnitConversions.convert(weather.data.AnnualAvgDrybulb, 'F', 'C')] * 12) + if hpxml_bldg.heat_pumps.select { |h| h.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir }.size > 0 + # Deep ground temperatures used by GSHP setpoint manager + dgts = model.getSiteGroundTemperatureDeep + dgts.resetAllMonths + dgts.setAllMonthlyTemperatures([UnitConversions.convert(weather.data.DeepGroundAnnualTemp, 'F', 'C')] * 12) + end end def self.get_climate_zones @@ -81,25 +82,35 @@ def self.get_climate_zone_iecc(wmo) return end - def self.get_epw_path(hpxml, hpxml_path) - epw_path = hpxml.climate_and_risk_zones.weather_station_epw_filepath + def self.get_epw_path(hpxml_bldg, hpxml_path) + epw_filepath = hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath + abs_epw_path = File.absolute_path(epw_filepath) - if not File.exist? epw_path - test_epw_path = File.join(File.dirname(hpxml_path), epw_path) - epw_path = test_epw_path if File.exist? test_epw_path + if not File.exist? abs_epw_path + # Check path relative to HPXML file + abs_epw_path = File.absolute_path(File.join(File.dirname(hpxml_path), epw_filepath)) end - for level_deep in 1..3 - next unless not File.exist? epw_path - - level = (['..'] * level_deep).join('/') - test_epw_path = File.join(File.dirname(__FILE__), level, 'weather', epw_path) - epw_path = test_epw_path if File.exist? test_epw_path + if not File.exist? abs_epw_path + # Check for weather path relative to the HPXML file + for level_deep in 1..3 + level = (['..'] * level_deep).join('/') + abs_epw_path = File.absolute_path(File.join(File.dirname(hpxml_path), level, 'weather', epw_filepath)) + break if File.exist? abs_epw_path + end + end + if not File.exist? abs_epw_path + # Check for weather path relative to this file + for level_deep in 1..3 + level = (['..'] * level_deep).join('/') + abs_epw_path = File.absolute_path(File.join(File.dirname(__FILE__), level, 'weather', epw_filepath)) + break if File.exist? abs_epw_path + end end - if not File.exist?(epw_path) - fail "'#{epw_path}' could not be found." + if not File.exist? abs_epw_path + fail "'#{epw_filepath}' could not be found." end - return epw_path + return abs_epw_path end def self.get_sim_calendar_year(sim_calendar_year, epw_file) diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/materials.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/materials.rb index 012f0d77..962b0519 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/materials.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/materials.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class Material diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb index 8be80fae..b192e7f2 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require 'fileutils' @@ -59,6 +64,11 @@ def run_hpxml_workflow(rundir, measures, measures_dir, debug: false, output_vars if model.alwaysOffDiscreteSchedule.directUseCount == 0 remove_objects << ['Schedule:Constant', model.alwaysOffDiscreteSchedule.name.to_s] end + model.getScheduleConstants.each do |sch| + next unless sch.directUseCount == 0 + + remove_objects << ['Schedule:Constant', sch.name.to_s] + end # Translate model to workspace forward_translator = OpenStudio::EnergyPlus::ForwardTranslator.new @@ -67,7 +77,7 @@ def run_hpxml_workflow(rundir, measures, measures_dir, debug: false, output_vars success = report_ft_errors_warnings(forward_translator, rundir) # Remove objects - remove_objects.each do |remove_object| + remove_objects.uniq.each do |remove_object| workspace.getObjectByTypeAndName(remove_object[0].to_IddObjectType, remove_object[1]).get.remove end @@ -96,6 +106,12 @@ def run_hpxml_workflow(rundir, measures, measures_dir, debug: false, output_vars return { success: success, runner: runner } end + if not model.getWeatherFile.path.is_initialized + print "#{print_prefix}Creating input unsuccessful.\n" + print "#{print_prefix}See #{File.join(rundir, 'run.log')} for details.\n" + return { success: false, runner: runner } + end + # Run simulation print "#{print_prefix}Running simulation...\n" unless suppress_print ep_path = File.absolute_path(File.join(OpenStudio.getOpenStudioCLI.to_s, '..', '..', 'EnergyPlus', 'energyplus')) # getEnergyPlusDirectory can be unreliable, using getOpenStudioCLI instead diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/minitest_helper.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/minitest_helper.rb index c736b3bc..942470af 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/minitest_helper.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/minitest_helper.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true called_from_cli = true diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb index 8ef17754..9eb6bf7d 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb @@ -1,7 +1,12 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class MiscLoads - def self.apply_plug(model, runner, plug_load, obj_name, living_space, apply_ashrae140_assumptions, schedules_file, unavailable_periods) + def self.apply_plug(model, runner, plug_load, obj_name, conditioned_space, apply_ashrae140_assumptions, schedules_file, unavailable_periods) kwh = 0 if not plug_load.nil? kwh = plug_load.kwh_per_year * plug_load.usage_multiplier @@ -22,7 +27,7 @@ def self.apply_plug(model, runner, plug_load, obj_name, living_space, apply_ashr end if not schedules_file.nil? space_design_level = schedules_file.calc_design_level_from_annual_kwh(col_name: col_name, annual_kwh: kwh) - sch = schedules_file.create_schedule_file(col_name: col_name) + sch = schedules_file.create_schedule_file(model, col_name: col_name) end if sch.nil? col_unavailable_periods = Schedule.get_unavailable_periods(runner, col_name, unavailable_periods) @@ -50,7 +55,7 @@ def self.apply_plug(model, runner, plug_load, obj_name, living_space, apply_ashr mel = OpenStudio::Model::ElectricEquipment.new(mel_def) mel.setName(obj_name) mel.setEndUseSubcategory(obj_name) - mel.setSpace(living_space) + mel.setSpace(conditioned_space) mel_def.setName(obj_name) mel_def.setDesignLevel(space_design_level) mel_def.setFractionRadiant(rad_frac) @@ -59,39 +64,38 @@ def self.apply_plug(model, runner, plug_load, obj_name, living_space, apply_ashr mel.setSchedule(sch) end - def self.apply_fuel(model, runner, fuel_load, obj_name, living_space, schedules_file, unavailable_periods) + def self.apply_fuel(model, runner, fuel_load, obj_name, conditioned_space, schedules_file, unavailable_periods) therm = 0 - if not fuel_load.nil? therm = fuel_load.therm_per_year * fuel_load.usage_multiplier - - # Create schedule - sch = nil - if fuel_load.fuel_load_type == HPXML::FuelLoadTypeGrill - col_name = SchedulesFile::ColumnFuelLoadsGrill - elsif fuel_load.fuel_load_type == HPXML::FuelLoadTypeLighting - col_name = SchedulesFile::ColumnFuelLoadsLighting - elsif fuel_load.fuel_load_type == HPXML::FuelLoadTypeFireplace - col_name = SchedulesFile::ColumnFuelLoadsFireplace - end - if not schedules_file.nil? - space_design_level = schedules_file.calc_design_level_from_annual_therm(col_name: col_name, annual_therm: therm) - sch = schedules_file.create_schedule_file(col_name: col_name) - end - if sch.nil? - col_unavailable_periods = Schedule.get_unavailable_periods(runner, col_name, unavailable_periods) - sch = MonthWeekdayWeekendSchedule.new(model, obj_name + ' schedule', fuel_load.weekday_fractions, fuel_load.weekend_fractions, fuel_load.monthly_multipliers, Constants.ScheduleTypeLimitsFraction, unavailable_periods: col_unavailable_periods) - space_design_level = sch.calc_design_level_from_daily_therm(therm / 365.0) - sch = sch.schedule - else - runner.registerWarning("Both '#{col_name}' schedule file and weekday fractions provided; the latter will be ignored.") if !fuel_load.weekday_fractions.nil? - runner.registerWarning("Both '#{col_name}' schedule file and weekend fractions provided; the latter will be ignored.") if !fuel_load.weekend_fractions.nil? - runner.registerWarning("Both '#{col_name}' schedule file and monthly multipliers provided; the latter will be ignored.") if !fuel_load.monthly_multipliers.nil? - end end return if therm <= 0 + # Create schedule + sch = nil + if fuel_load.fuel_load_type == HPXML::FuelLoadTypeGrill + col_name = SchedulesFile::ColumnFuelLoadsGrill + elsif fuel_load.fuel_load_type == HPXML::FuelLoadTypeLighting + col_name = SchedulesFile::ColumnFuelLoadsLighting + elsif fuel_load.fuel_load_type == HPXML::FuelLoadTypeFireplace + col_name = SchedulesFile::ColumnFuelLoadsFireplace + end + if not schedules_file.nil? + space_design_level = schedules_file.calc_design_level_from_annual_therm(col_name: col_name, annual_therm: therm) + sch = schedules_file.create_schedule_file(model, col_name: col_name) + end + if sch.nil? + col_unavailable_periods = Schedule.get_unavailable_periods(runner, col_name, unavailable_periods) + sch = MonthWeekdayWeekendSchedule.new(model, obj_name + ' schedule', fuel_load.weekday_fractions, fuel_load.weekend_fractions, fuel_load.monthly_multipliers, Constants.ScheduleTypeLimitsFraction, unavailable_periods: col_unavailable_periods) + space_design_level = sch.calc_design_level_from_daily_therm(therm / 365.0) + sch = sch.schedule + else + runner.registerWarning("Both '#{col_name}' schedule file and weekday fractions provided; the latter will be ignored.") if !fuel_load.weekday_fractions.nil? + runner.registerWarning("Both '#{col_name}' schedule file and weekend fractions provided; the latter will be ignored.") if !fuel_load.weekend_fractions.nil? + runner.registerWarning("Both '#{col_name}' schedule file and monthly multipliers provided; the latter will be ignored.") if !fuel_load.monthly_multipliers.nil? + end + sens_frac = fuel_load.frac_sensible lat_frac = fuel_load.frac_latent @@ -101,7 +105,7 @@ def self.apply_fuel(model, runner, fuel_load, obj_name, living_space, schedules_ mfl.setName(obj_name) mfl.setEndUseSubcategory(obj_name) mfl.setFuelType(EPlus.fuel_type(fuel_load.fuel_type)) - mfl.setSpace(living_space) + mfl.setSpace(conditioned_space) mfl_def.setName(obj_name) mfl_def.setDesignLevel(space_design_level) mfl_def.setFractionRadiant(0.6 * sens_frac) @@ -110,31 +114,38 @@ def self.apply_fuel(model, runner, fuel_load, obj_name, living_space, schedules_ mfl.setSchedule(sch) end - def self.apply_pool_or_hot_tub_heater(runner, model, pool_or_hot_tub, obj_name, living_space, schedules_file, unavailable_periods) - return if pool_or_hot_tub.heater_type == HPXML::TypeNone + def self.apply_pool_or_permanent_spa_heater(runner, model, pool_or_spa, conditioned_space, schedules_file, unavailable_periods) + return if pool_or_spa.heater_type == HPXML::TypeNone heater_kwh = 0 heater_therm = 0 + if pool_or_spa.heater_load_units == HPXML::UnitsKwhPerYear + heater_kwh = pool_or_spa.heater_load_value * pool_or_spa.heater_usage_multiplier + elsif pool_or_spa.heater_load_units == HPXML::UnitsThermPerYear + heater_therm = pool_or_spa.heater_load_value * pool_or_spa.heater_usage_multiplier + end + + return if (heater_kwh <= 0) && (heater_therm <= 0) # Create schedule heater_sch = nil - col_name = (obj_name.include?('pool') ? 'pool_heater' : 'hot_tub_heater') + if pool_or_spa.is_a? HPXML::Pool + obj_name = Constants.ObjectNameMiscPoolHeater + col_name = 'pool_heater' + else + obj_name = Constants.ObjectNameMiscPermanentSpaHeater + col_name = 'permanent_spa_heater' + end if not schedules_file.nil? - heater_sch = schedules_file.create_schedule_file(col_name: col_name) + heater_sch = schedules_file.create_schedule_file(model, col_name: col_name) end if heater_sch.nil? col_unavailable_periods = Schedule.get_unavailable_periods(runner, col_name, unavailable_periods) - heater_sch = MonthWeekdayWeekendSchedule.new(model, obj_name + ' schedule', pool_or_hot_tub.heater_weekday_fractions, pool_or_hot_tub.heater_weekend_fractions, pool_or_hot_tub.heater_monthly_multipliers, Constants.ScheduleTypeLimitsFraction, unavailable_periods: col_unavailable_periods) + heater_sch = MonthWeekdayWeekendSchedule.new(model, obj_name + ' schedule', pool_or_spa.heater_weekday_fractions, pool_or_spa.heater_weekend_fractions, pool_or_spa.heater_monthly_multipliers, Constants.ScheduleTypeLimitsFraction, unavailable_periods: col_unavailable_periods) else - runner.registerWarning("Both '#{col_name}' schedule file and weekday fractions provided; the latter will be ignored.") if !pool_or_hot_tub.heater_weekday_fractions.nil? - runner.registerWarning("Both '#{col_name}' schedule file and weekend fractions provided; the latter will be ignored.") if !pool_or_hot_tub.heater_weekend_fractions.nil? - runner.registerWarning("Both '#{col_name}' schedule file and monthly multipliers provided; the latter will be ignored.") if !pool_or_hot_tub.heater_monthly_multipliers.nil? - end - - if pool_or_hot_tub.heater_load_units == HPXML::UnitsKwhPerYear - heater_kwh = pool_or_hot_tub.heater_load_value * pool_or_hot_tub.heater_usage_multiplier - elsif pool_or_hot_tub.heater_load_units == HPXML::UnitsThermPerYear - heater_therm = pool_or_hot_tub.heater_load_value * pool_or_hot_tub.heater_usage_multiplier + runner.registerWarning("Both '#{col_name}' schedule file and weekday fractions provided; the latter will be ignored.") if !pool_or_spa.heater_weekday_fractions.nil? + runner.registerWarning("Both '#{col_name}' schedule file and weekend fractions provided; the latter will be ignored.") if !pool_or_spa.heater_weekend_fractions.nil? + runner.registerWarning("Both '#{col_name}' schedule file and monthly multipliers provided; the latter will be ignored.") if !pool_or_spa.heater_monthly_multipliers.nil? end if heater_kwh > 0 @@ -150,7 +161,7 @@ def self.apply_pool_or_hot_tub_heater(runner, model, pool_or_hot_tub, obj_name, mel = OpenStudio::Model::ElectricEquipment.new(mel_def) mel.setName(obj_name) mel.setEndUseSubcategory(obj_name) - mel.setSpace(living_space) # no heat gain, so assign the equipment to an arbitrary space + mel.setSpace(conditioned_space) # no heat gain, so assign the equipment to an arbitrary space mel_def.setName(obj_name) mel_def.setDesignLevel(space_design_level) mel_def.setFractionRadiant(0) @@ -173,7 +184,7 @@ def self.apply_pool_or_hot_tub_heater(runner, model, pool_or_hot_tub, obj_name, mfl.setName(obj_name) mfl.setEndUseSubcategory(obj_name) mfl.setFuelType(EPlus.fuel_type(HPXML::FuelTypeNaturalGas)) - mfl.setSpace(living_space) # no heat gain, so assign the equipment to an arbitrary space + mfl.setSpace(conditioned_space) # no heat gain, so assign the equipment to an arbitrary space mfl_def.setName(obj_name) mfl_def.setDesignLevel(space_design_level) mfl_def.setFractionRadiant(0) @@ -183,49 +194,54 @@ def self.apply_pool_or_hot_tub_heater(runner, model, pool_or_hot_tub, obj_name, end end - def self.apply_pool_or_hot_tub_pump(runner, model, pool_or_hot_tub, obj_name, living_space, schedules_file, unavailable_periods) + def self.apply_pool_or_permanent_spa_pump(runner, model, pool_or_spa, conditioned_space, schedules_file, unavailable_periods) pump_kwh = 0 + if not pool_or_spa.pump_kwh_per_year.nil? + pump_kwh = pool_or_spa.pump_kwh_per_year * pool_or_spa.pump_usage_multiplier + end + + return if pump_kwh <= 0 # Create schedule pump_sch = nil - col_name = (obj_name.include?('pool') ? 'pool_pump' : 'hot_tub_pump') + if pool_or_spa.is_a? HPXML::Pool + obj_name = Constants.ObjectNameMiscPoolPump + col_name = 'pool_pump' + else + obj_name = Constants.ObjectNameMiscPermanentSpaPump + col_name = 'permanent_spa_pump' + end if not schedules_file.nil? - pump_sch = schedules_file.create_schedule_file(col_name: col_name) + pump_sch = schedules_file.create_schedule_file(model, col_name: col_name) end if pump_sch.nil? col_unavailable_periods = Schedule.get_unavailable_periods(runner, col_name, unavailable_periods) - pump_sch = MonthWeekdayWeekendSchedule.new(model, obj_name + ' schedule', pool_or_hot_tub.pump_weekday_fractions, pool_or_hot_tub.pump_weekend_fractions, pool_or_hot_tub.pump_monthly_multipliers, Constants.ScheduleTypeLimitsFraction, unavailable_periods: col_unavailable_periods) + pump_sch = MonthWeekdayWeekendSchedule.new(model, obj_name + ' schedule', pool_or_spa.pump_weekday_fractions, pool_or_spa.pump_weekend_fractions, pool_or_spa.pump_monthly_multipliers, Constants.ScheduleTypeLimitsFraction, unavailable_periods: col_unavailable_periods) else - runner.registerWarning("Both '#{col_name}' schedule file and weekday fractions provided; the latter will be ignored.") if !pool_or_hot_tub.pump_weekday_fractions.nil? - runner.registerWarning("Both '#{col_name}' schedule file and weekend fractions provided; the latter will be ignored.") if !pool_or_hot_tub.pump_weekend_fractions.nil? - runner.registerWarning("Both '#{col_name}' schedule file and monthly multipliers provided; the latter will be ignored.") if !pool_or_hot_tub.pump_monthly_multipliers.nil? + runner.registerWarning("Both '#{col_name}' schedule file and weekday fractions provided; the latter will be ignored.") if !pool_or_spa.pump_weekday_fractions.nil? + runner.registerWarning("Both '#{col_name}' schedule file and weekend fractions provided; the latter will be ignored.") if !pool_or_spa.pump_weekend_fractions.nil? + runner.registerWarning("Both '#{col_name}' schedule file and monthly multipliers provided; the latter will be ignored.") if !pool_or_spa.pump_monthly_multipliers.nil? end - if not pool_or_hot_tub.pump_kwh_per_year.nil? - pump_kwh = pool_or_hot_tub.pump_kwh_per_year * pool_or_hot_tub.pump_usage_multiplier + if not schedules_file.nil? + space_design_level = schedules_file.calc_design_level_from_annual_kwh(col_name: col_name, annual_kwh: pump_kwh) end - - if pump_kwh > 0 - if not schedules_file.nil? - space_design_level = schedules_file.calc_design_level_from_annual_kwh(col_name: col_name, annual_kwh: pump_kwh) - end - if space_design_level.nil? - space_design_level = pump_sch.calc_design_level_from_daily_kwh(pump_kwh / 365.0) - pump_sch = pump_sch.schedule - end - - mel_def = OpenStudio::Model::ElectricEquipmentDefinition.new(model) - mel = OpenStudio::Model::ElectricEquipment.new(mel_def) - mel.setName(obj_name) - mel.setEndUseSubcategory(obj_name) - mel.setSpace(living_space) # no heat gain, so assign the equipment to an arbitrary space - mel_def.setName(obj_name) - mel_def.setDesignLevel(space_design_level) - mel_def.setFractionRadiant(0) - mel_def.setFractionLatent(0) - mel_def.setFractionLost(1) - mel.setSchedule(pump_sch) + if space_design_level.nil? + space_design_level = pump_sch.calc_design_level_from_daily_kwh(pump_kwh / 365.0) + pump_sch = pump_sch.schedule end + + mel_def = OpenStudio::Model::ElectricEquipmentDefinition.new(model) + mel = OpenStudio::Model::ElectricEquipment.new(mel_def) + mel.setName(obj_name) + mel.setEndUseSubcategory(obj_name) + mel.setSpace(conditioned_space) # no heat gain, so assign the equipment to an arbitrary space + mel_def.setName(obj_name) + mel_def.setDesignLevel(space_design_level) + mel_def.setFractionRadiant(0) + mel_def.setFractionLatent(0) + mel_def.setFractionLost(1) + mel.setSchedule(pump_sch) end private @@ -266,11 +282,11 @@ def self.get_pool_heater_default_values(cfa, nbeds, type) return load_units, load_value end - def self.get_hot_tub_pump_default_values(cfa, nbeds) + def self.get_permanent_spa_pump_default_values(cfa, nbeds) return 59.5 / 0.059 * (0.5 + 0.25 * nbeds / 3.0 + 0.25 * cfa / 1920.0) # kWh/yr end - def self.get_hot_tub_heater_default_values(cfa, nbeds, type) + def self.get_permanent_spa_heater_default_values(cfa, nbeds, type) load_units = nil load_value = nil if [HPXML::HeaterTypeElectricResistance, HPXML::HeaterTypeHeatPump].include? type diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/output.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/output.rb index b9853b72..bcbd12fd 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/output.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/output.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class TE @@ -49,8 +54,8 @@ class EUT WellPump = 'Well Pump' PoolHeater = 'Pool Heater' PoolPump = 'Pool Pump' - HotTubHeater = 'Hot Tub Heater' - HotTubPump = 'Hot Tub Pump' + PermanentSpaHeater = 'Permanent Spa Heater' + PermanentSpaPump = 'Permanent Spa Pump' Grill = 'Grill' Lighting = 'Lighting' Fireplace = 'Fireplace' @@ -108,6 +113,11 @@ class UHT Cooling = 'Cooling' end +class RT + # Resilience Types + Battery = 'Battery' +end + class PLT # Peak Load Types Heating = 'Heating: Delivered' @@ -118,6 +128,7 @@ class PFT # Peak Fuel Types Summer = 'Summer' Winter = 'Winter' + Annual = 'Annual' end class AFT @@ -137,3 +148,50 @@ class WT DiffuseSolar = 'Diffuse Solar Radiation' DirectSolar = 'Direct Solar Radiation' end + +class Outputs + def self.get_total_hvac_capacities(hpxml_bldg) + htg_cap, clg_cap, hp_backup_cap = 0.0, 0.0, 0.0 + unit_multiplier = hpxml_bldg.building_construction.number_of_units + hpxml_bldg.hvac_systems.each do |hvac_system| + if hvac_system.is_a? HPXML::HeatingSystem + next if hvac_system.is_heat_pump_backup_system + + htg_cap += hvac_system.heating_capacity.to_f * unit_multiplier + elsif hvac_system.is_a? HPXML::CoolingSystem + clg_cap += hvac_system.cooling_capacity.to_f * unit_multiplier + if hvac_system.has_integrated_heating + htg_cap += hvac_system.integrated_heating_system_capacity.to_f * unit_multiplier + end + elsif hvac_system.is_a? HPXML::HeatPump + htg_cap += hvac_system.heating_capacity.to_f * unit_multiplier + clg_cap += hvac_system.cooling_capacity.to_f * unit_multiplier + if hvac_system.backup_type == HPXML::HeatPumpBackupTypeIntegrated + hp_backup_cap += hvac_system.backup_heating_capacity.to_f * unit_multiplier + elsif hvac_system.backup_type == HPXML::HeatPumpBackupTypeSeparate + hp_backup_cap += hvac_system.backup_system.heating_capacity.to_f * unit_multiplier + end + end + end + return htg_cap, clg_cap, hp_backup_cap + end + + def self.get_total_hvac_airflows(hpxml_bldg) + htg_cfm, clg_cfm = 0.0, 0.0 + unit_multiplier = hpxml_bldg.building_construction.number_of_units + hpxml_bldg.hvac_systems.each do |hvac_system| + if hvac_system.is_a? HPXML::HeatingSystem + htg_cfm += hvac_system.heating_airflow_cfm.to_f * unit_multiplier + elsif hvac_system.is_a? HPXML::CoolingSystem + clg_cfm += hvac_system.cooling_airflow_cfm.to_f * unit_multiplier + if hvac_system.has_integrated_heating + htg_cfm += hvac_system.integrated_heating_system_airflow_cfm.to_f * unit_multiplier + end + elsif hvac_system.is_a? HPXML::HeatPump + htg_cfm += hvac_system.heating_airflow_cfm.to_f * unit_multiplier + clg_cfm += hvac_system.cooling_airflow_cfm.to_f * unit_multiplier + end + end + return htg_cfm, clg_cfm + end +end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/psychrometrics.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/psychrometrics.rb index abffed20..fe359610 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/psychrometrics.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/psychrometrics.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class Psychrometrics @@ -272,7 +277,7 @@ def self.Pstd_fZ(z) Pstd float barometric pressure (psia) ''' - pstd = 14.696 * ((1 - 6.8754e-6 * z)**5.2559) + pstd = UnitConversions.convert(((1 - 6.8754e-6 * z)**5.2559), 'atm', 'psi') return pstd end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb index ddab65f5..4a78d183 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb @@ -1,16 +1,22 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class PV - def self.apply(model, nbeds, pv_system) + def self.apply(model, nbeds, pv_system, unit_multiplier) obj_name = pv_system.id - if not pv_system.is_shared_system - max_power = pv_system.max_power_output - else + # Apply unit multiplier + max_power = pv_system.max_power_output * unit_multiplier + + if pv_system.is_shared_system # Apportion to single dwelling unit by # bedrooms fail if pv_system.number_of_bedrooms_served.to_f <= nbeds.to_f # EPvalidator.xml should prevent this - max_power = pv_system.max_power_output * nbeds.to_f / pv_system.number_of_bedrooms_served.to_f + max_power = max_power * nbeds.to_f / pv_system.number_of_bedrooms_served.to_f end elcds = model.getElectricLoadCenterDistributions diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-non-stochastic.csv b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-non-stochastic.csv index a530858d..f18bf8d6 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-non-stochastic.csv +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-non-stochastic.csv @@ -1,4 +1,4 @@ -lighting_exterior,lighting_exterior_holiday,refrigerator,extra_refrigerator,freezer,plug_loads_vehicle,plug_loads_well_pump,fuel_loads_grill,fuel_loads_lighting,fuel_loads_fireplace,pool_pump,pool_heater,hot_tub_pump,hot_tub_heater +lighting_exterior,lighting_exterior_holiday,refrigerator,extra_refrigerator,freezer,plug_loads_vehicle,plug_loads_well_pump,fuel_loads_grill,fuel_loads_lighting,fuel_loads_fireplace,pool_pump,pool_heater,permanent_spa_pump,permanent_spa_heater 0.559,0,0.611,0.611,0.611,1,0.509,0.0248,0.509,0.509,0.0235,0.0235,0.151,0.145 0.517,0,0.596,0.596,0.596,1,0.266,0.00621,0.266,0.266,0.0235,0.0235,0.183,0.176 0.517,0,0.58,0.58,0.58,1,0.22,0.00621,0.22,0.22,0.0235,0.0235,0.151,0.145 diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv new file mode 100644 index 00000000..f1cdbdb3 --- /dev/null +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv @@ -0,0 +1,52561 @@ +occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,1,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0.8,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.165 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.0989 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0.5,0,0,0.284,0.591,0.591,0.473,0,0 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0.435,0,0 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0.745,0,0.122 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0,0,0.366 +0.333,0.181,0.181,0,0.3,0,0,0.284,0.591,0.591,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0.3,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0.122 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0.3,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0.44,0,0 +1,0.798,0.798,0,1,0,0,0.741,0.974,0.974,0.31,0,0 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.212,0,0 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.212,0,0 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.652,0,0 +1,0.979,0.979,0,0.8,0,0,0.881,0.993,0.993,0.755,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.538,0,0 +1,0.991,0.991,0,1,0,0,0.937,0.937,0.937,0.603,0,0.244 +1,0.991,0.991,0,1,0,0,0.937,0.937,0.937,0,0,0.488 +1,0.991,0.991,0,1,0,0,0.937,0.937,0.937,0.375,0,0 +1,0.991,0.991,0,1,0,0,0.937,0.937,0.937,0.239,0,0 +1,0.823,0.823,0,0.8,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.201,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.511,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.179,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.179,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.538,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0.38,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0.505,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.164 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.286 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.336 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0671 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.25 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.176 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.281 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.366 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.254 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.0677 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.0677 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.648 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.462 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0.674,0,0 +0.333,0.192,0.192,0,1,0,0,0.33,0.579,0.579,0.247,0,0.122 +0.333,0.192,0.192,0,1,0,0,0.33,0.579,0.579,0.247,0,0 +0.333,0.192,0.192,0,1,0,0,0.33,0.579,0.579,0.245,0,0 +0.333,0.192,0.192,0,1,0,0,0.33,0.579,0.579,0.511,0,0 +0.333,0.196,0.196,0,0.8,0,0,0.279,0.579,0.579,0.467,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.244 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.366 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.641 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.0695 +1,0.798,0.798,0.3,0,0,0,0.741,0.974,0.974,0,0,0.209 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.128 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.404 +1,0.979,0.979,0.3,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.169 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.101 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.244 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.122 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.161 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0965 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.158 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.063 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.287 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0.8,0,0,0,0.487,0.617,0.617,0,0,0.0321 +1,0.253,0.253,1,0,0,0,0.487,0.617,0.617,0,0,0.0963 +1,0.253,0.253,1,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.449,0.449,1,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.449,0.449,1,0,0,0,0.657,0.787,0.787,0,0,0.162 +1,0.449,0.449,1,0,0,0,0.657,0.787,0.787,0,0,0.0649 +1,0.449,0.449,0.4,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.201 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.175 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.262 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.256 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.366 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.15 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.657 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.278 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.209 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.488 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.171 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.308 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0.3,0,0,0,0.321,0.597,0.597,0,0,0.244 +0.333,0.196,0.196,1,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.321,0.597,0.597,0,0,0 +1,0.49,0.49,1,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0.488 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.244 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +0.667,0.669,0.669,0.8,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0.7,0,0,0,0.673,0.817,0.817,0,0,0.168 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.134 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.488 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.198 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.231 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.244 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.528 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0647 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.158 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0949 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.162 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.398 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.0352 +1,0.0513,0.0513,1,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,1,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,1,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0.3,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.166 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0664 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.279 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.0348 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.244 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.167 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.366 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.343,0.343,0.3,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.244 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.366 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.346 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.104 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.488 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.292 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.339 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.167 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0335 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.153 +0.667,0.0513,0.0513,1,0,0,0,0.326,0.51,0.51,0,0,0.061 +0.667,0.0833,0.0833,0.2,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0.219 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.148 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0.3,0,0,0,0.487,0.617,0.617,0,0,0.299 +1,0.253,0.253,1,0,0,0,0.487,0.617,0.617,0,0,0.0309 +1,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0.28 +1,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0.9,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.334,0.334,0,0.5,0,0,0.403,0.692,0.692,0.516,0,0.258 +1,0.334,0.334,0,1,0,0,0.403,0.692,0.692,0.418,0,0 +1,0.334,0.334,0,1,0,0,0.403,0.692,0.692,0.272,0,0 +1,0.334,0.334,0,1,0,0,0.403,0.692,0.692,0.255,0,0.0642 +1,0.334,0.334,0,1,0,0,0.403,0.692,0.692,0.44,0,0.0642 +1,0.477,0.477,0,1,0,0,0.475,0.806,0.806,0.171,0,0 +1,0.49,0.49,0,0.9,0,0,0.322,0.806,0.806,0.171,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.444 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.0654 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.465 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.137 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.122 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.307 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.343 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0.244 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0.122 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0.687 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0.36 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0.451,0,0.122 +0.333,0.196,0.196,0,1,0,0,0.321,0.597,0.597,0.462,0,0 +0.333,0.196,0.196,0,1,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,1,0,0,0.321,0.597,0.597,0.543,0,0 +0.333,0.196,0.196,0,1,0,0,0.321,0.597,0.597,0.489,0,0 +0.667,0.418,0.418,0,0.8,0,0,0.449,0.755,0.755,0.342,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0.353,0,0.366 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0.451,0,0.122 +0.667,0.418,0.418,0.8,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0.8,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0.5,0,0,0.741,0.974,0.974,0.467,0,0 +1,0.798,0.798,0,1,0,0,0.741,0.974,0.974,0.321,0,0 +1,0.798,0.798,0,1,0,0,0.741,0.974,0.974,0.462,0,0.366 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.533,0,0.488 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0.9,0,0,0.881,0.993,0.993,0,0,0.251 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0.511,0,0 +0.667,0.363,0.363,0,1,0,0,0.484,0.622,0.622,0.217,0,0.244 +0.667,0.363,0.363,0,1,0,0,0.484,0.622,0.622,0.174,0,0 +0.667,0.363,0.363,0,1,0,0,0.484,0.622,0.622,0,0,0.122 +1,0.677,0.677,0,1,0,0,0.711,0.78,0.78,0.679,0,0 +1,0.565,0.565,0,0.8,0,0,0.748,0.742,0.742,0.348,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0.386,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.122 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.366 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.122 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.488 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.158 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0947 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0917 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.247 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.174 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0698 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.24 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.0953 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.127 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.488 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.173 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.242 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0.8,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.321,0.597,0.597,0,0,0.366 +0.667,0.196,0.196,1,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.488 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.366 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.312 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.203 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.174 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.0347 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.151 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.366 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0.3,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.181,0.181,0.2,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.488 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0.122 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0.122 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.122 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.244 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.366 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.244 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.366 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.177 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0355 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.288 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.172 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.355,0.355,1,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.355,0.355,0.8,0,0,0,0.601,0.693,0.693,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.316,0.316,0.8,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0 +0.333,0.183,0.183,1,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.183,0.183,0.8,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.366 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.366 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.125 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.343,0.343,0.8,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0.272 +0.667,0.343,0.343,0.8,0,0,0,0.384,0.73,0.73,0,0,0.366 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.548,0.548,0.8,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0.24 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0.122 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.669,0.669,0.9,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.244 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.161 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.129 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.207 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.207 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.212 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.164 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0654 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0.244 +1,0.117,0.117,0.3,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,1,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.253,0.253,1,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0.8,0,0,0,0.487,0.617,0.617,0,0,0.173 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.0346 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.192,0.192,0.3,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,1,0,0.279,0.579,0.579,0,0.309,0 +0.333,0.196,0.196,0,0,1,0,0.279,0.579,0.579,0,0.0386,0 +0.333,0.196,0.196,0,0,0.9,0,0.279,0.579,0.579,0,0.567,0 +0.333,0.192,0.192,0,0,0,0.4,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,1,0.284,0.579,0.579,0,0.309,0 +0.333,0.192,0.192,0,0,0,0.2,0.284,0.579,0.579,0,0.185,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0.369,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0.361,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.283,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.073,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.618,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.361,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.0386,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.185,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.223,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.496,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.47,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.21,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.395,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.309,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.361,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.348,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.283,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.21,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.429,0.244 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.296,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.223,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.717,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.0601,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.309,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.369,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.249,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.433,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.618,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.0386,0.488 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0.605,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0.361,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0.33,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0.283,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0.27,0.122 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0.348,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0.159,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.0386,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.0129,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.562,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.18,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.27,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.0601,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.223,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.21,0.156 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.0938 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.361,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.296,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.309,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.459,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.433,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.322,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.137,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.283,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.366 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0298 +0.333,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0.5,0,0.279,0.579,0.579,0,0.296,0 +0.333,0.196,0.196,0,0,1,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,1,0,0.284,0.579,0.579,0,0.532,0 +0.333,0.192,0.192,0,0,1,0,0.284,0.579,0.579,0,0.408,0.122 +0.333,0.192,0.192,0,0,0.8,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0.5,0.284,0.579,0.579,0,0.258,0 +0.333,0.192,0.192,0,0,0,1,0.284,0.579,0.579,0,0.481,0 +0.333,0.192,0.192,0,0,0,1,0.284,0.579,0.579,0,0.174,0 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0.148,0 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0.0987,0 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0.348,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.335,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.296,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.309,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.0386,0 +0.333,0.181,0.181,0.8,0,0,0,0.284,0.591,0.591,0,0.0987,0 +0.333,0.181,0.181,1,0,0,0,0.284,0.591,0.591,0,0.283,0 +0.667,0.313,0.313,1,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0.3,0,0,0,0.347,0.717,0.717,0,0.395,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.0601,0.122 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.236,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.296,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.137,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.172,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.258,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.605,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.373,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.283,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.488 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.122 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0.5,0,0.354,0.61,0.61,0,0.15,0 +0.333,0.234,0.234,0,0,0.9,0,0.354,0.61,0.61,0,0,0 +0.667,0.548,0.548,0,0,0,0.4,0.58,0.805,0.805,0,0.172,0 +0.667,0.548,0.548,0,0,0,1,0.58,0.805,0.805,0,0.223,0 +1,0.798,0.798,0,0,0,1,0.741,0.974,0.974,0,0.137,0 +1,0.798,0.798,0,0,0,1,0.741,0.974,0.974,0,0.652,0 +1,0.798,0.798,0,0,0,1,0.741,0.974,0.974,0,0.249,0 +1,0.798,0.798,0,0,0,0.5,0.741,0.974,0.974,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.618,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.541,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.691,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.335,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.249,0.122 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.366 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0.361,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0.322,0.122 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0.193,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0.451,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0.0386,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0.412,0.122 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0.451,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0.609,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0.446,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0.369,0.244 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.27,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.395,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.369,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.318,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.421,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.361,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.348,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.137,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.369,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.172,0.488 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.249,0.244 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0.0515,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.175 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.14 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.148 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0.8,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,1,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,1,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.315,0.315,1,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,1,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,1,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0.9,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.244 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.488 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.979,0.979,0.8,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0.7,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.366 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.7,0,0,0,0.258,0.465,0.465,0,0,0.168 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.336 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.163 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.13 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,1,0,0.321,0.597,0.597,0,0.446,0 +0.333,0.196,0.196,0,0,1,0,0.321,0.597,0.597,0,0.0601,0 +0.333,0.196,0.196,0,0,1,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0,0,1,0,0.354,0.61,0.61,0,0.137,0 +0.333,0.234,0.234,0,0,0.3,0,0.354,0.61,0.61,0,0.249,0 +0.333,0.234,0.234,0,0,0,1,0.354,0.61,0.61,0,0.481,0 +0.333,0.234,0.234,0,0,0,1,0.354,0.61,0.61,0,0.335,0 +0.333,0.234,0.234,0,0,0,1,0.354,0.61,0.61,0,0.21,0 +0.333,0.234,0.234,0,0,0,0.2,0.354,0.61,0.61,0,0.468,0 +0.333,0.299,0.299,0.8,0,0,0,0.419,0.635,0.635,0,0.283,0 +0.333,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0.223,0 +0.333,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.669,0.669,0.4,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.488 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.244 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.244 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.244 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.244 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0.8,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0.7,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.143 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.204 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.488 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.153 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0612 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.171 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.0684 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.122 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.335 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0.56,0,0.0335 +1,0.316,0.316,0,1,0,0,0.524,0.68,0.68,0.446,0,0 +1,0.183,0.183,0,1,0,0,0.391,0.572,0.572,0,0,0 +1,0.477,0.477,0,1,0,0,0.475,0.806,0.806,0.554,0,0 +1,0.477,0.477,0,1,0,0,0.475,0.806,0.806,0.582,0,0.122 +1,0.477,0.477,0.8,0.8,0,0,0.475,0.806,0.806,0,0,0 +0.667,0.334,0.334,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,0.3,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.244 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.244 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.244 +0.667,0.334,0.334,0.8,0,0,0,0.31,0.692,0.692,0,0,0 +0.333,0.192,0.192,1,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,1,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0.3,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.343,0.343,0,0,0.5,0,0.384,0.73,0.73,0,0.283,0 +0.667,0.343,0.343,0,0,0.9,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0.4,0.384,0.73,0.73,0,0.283,0 +0.667,0.343,0.343,0,0,0,1,0.384,0.73,0.73,0,0.296,0 +0.667,0.343,0.343,0,0,0,1,0.384,0.73,0.73,0,0.0386,0.244 +1,0.49,0.49,0,0,0,1,0.447,0.862,0.862,0,0,0 +1,0.602,0.602,0,0,0,1,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0.5,0.545,0.899,0.899,0,0,0.122 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.122 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.122 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.366 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.147 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.333,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.333,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.333,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.333,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +0.333,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.333,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.154 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.161 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.244 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.536 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.034 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.206 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.366 +1,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.25 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.176 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.211 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.136 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.068 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.173 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0691 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.134 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.244 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0.8,0,0,0,0.375,0.705,0.705,0,0,0 +1,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0.244 +1,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.343,0.343,0.8,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.122 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.244 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.244 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.366 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.366 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.488 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.366 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.488 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.173 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0691 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.165 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.264 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.334 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.1 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0.3,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.333,0.196,0.196,1,0,0,0,0.279,0.579,0.579,0,0,0.366 +0.333,0.196,0.196,1,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,1,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0.4,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,1,0,0.284,0.579,0.579,0,0.549,0 +0.333,0.192,0.192,0,0,1,0,0.284,0.579,0.579,0,0.416,0 +0.333,0.192,0.192,0,0,1,0,0.284,0.579,0.579,0,0.185,0 +0.333,0.186,0.186,0,0,1,0,0.288,0.585,0.585,0,0.309,0 +0.333,0.186,0.186,0,0,0.3,0,0.288,0.585,0.585,0,0.258,0 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0,0.244 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0.137,0 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0.223,0.366 +0.333,0.186,0.186,0,0,0,0.2,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.652,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.318,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.438,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.27,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.185,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.438,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.391,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.244 +0.667,0.18,0.18,0.8,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0.7,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.244 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.366 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.669,0.669,0,0.5,0,0,0.673,0.817,0.817,0.467,0,0 +0.667,0.669,0.669,0,1,0,0,0.673,0.817,0.817,0.31,0,0 +0.667,0.669,0.669,0,1,0,0,0.673,0.817,0.817,0.587,0,0.244 +0.667,0.669,0.669,0,1,0,0,0.673,0.817,0.817,0.484,0,0.244 +0.667,0.669,0.669,0,1,0,0,0.673,0.817,0.817,0.538,0,0 +0.667,0.669,0.669,0,1,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.677,0.677,0,0.9,0,0,0.711,0.78,0.78,0.538,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.457,0,0.244 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.462,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.321,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.288,0,0 +0.667,0.565,0.565,0,0.5,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.565,0.565,0,1,0,0,0.748,0.742,0.742,0.397,0,0.366 +0.667,0.565,0.565,0,1,0,0,0.748,0.742,0.742,0.473,0,0 +0.667,0.565,0.565,0,1,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.565,0.565,0,1,0,0,0.748,0.742,0.742,0.408,0,0 +0.667,0.307,0.307,0,0.3,0,0,0.503,0.604,0.604,0.538,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0.261,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0.31,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0.337,0,0 +0.667,0.548,0.548,0,1,0,0,0.58,0.805,0.805,0.304,0,0.122 +1,0.798,0.798,0,1,0,0,0.741,0.974,0.974,0.185,0,0 +1,0.798,0.798,0,1,0,0,0.741,0.974,0.974,0.185,0,0.165 +1,0.798,0.798,0,1,0,0,0.741,0.974,0.974,0.505,0,0.376 +1,0.979,0.979,0,0.8,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.366 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.366 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.122 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.164 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0656 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.607 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.238 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0.8,0,0,0,0.524,0.68,0.68,0,0,0.203 +0.667,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.183,0.183,1,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0.9,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.122 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.244 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.366 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.128 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.244 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.164 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0657 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0.408,0,0 +0.667,0.343,0.343,0,1,0,0,0.384,0.73,0.73,0.359,0,0.122 +0.667,0.343,0.343,0,1,0,0,0.384,0.73,0.73,0,0,0.338 +0.667,0.343,0.343,0,1,0,0,0.384,0.73,0.73,0.337,0,0.67 +0.667,0.343,0.343,0,1,0,0,0.384,0.73,0.73,0.679,0,0.122 +0.667,0.418,0.418,0,1,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,1,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.418,0.418,0,0.4,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0.8,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0.7,0,0,0,0.58,0.805,0.805,0,0,0.244 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0.418,0,0 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.418,0,0.244 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.386,0,0.488 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.37,0,0.244 +1,0.677,0.677,0,0.8,0,0,0.711,0.78,0.78,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.244 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.244 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.244 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.488 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.165 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.033 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.315 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.168 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.134 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.33 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.236 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.244 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.122 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.325 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.261 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.12 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.648 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.25 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.408 +0.667,0.313,0.313,0.8,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.181,0.181,1,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.18,0.18,1,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,1,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,1,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,1,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,1,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,1,0,0,0,0.302,0.591,0.591,0,0,0.122 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.182,0.182,1,0,0,0,0.316,0.585,0.585,0,0,0.122 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.244 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.244 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.146 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.177 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.248 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.235 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,1,0,0.288,0.585,0.585,0,0.361,0 +0.333,0.186,0.186,0,0,1,0,0.288,0.585,0.585,0,0.309,0 +0.333,0.186,0.186,0,0,0.9,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0.4,0.288,0.585,0.585,0,0.223,0 +0.333,0.186,0.186,0,0,0,1,0.288,0.585,0.585,0,0.361,0.244 +0.333,0.186,0.186,0,0,0,0.2,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.488 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.548,0.548,0.8,0,0,0,0.58,0.805,0.805,0,0,0.241 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0.366 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.979,0.979,0.4,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.143 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.255 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.159 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.0952 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.164 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.0327 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.302 +1,0.316,0.316,0.8,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.334,0.334,0.7,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.122 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.244 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.315,0.315,0.3,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,1,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0.2,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.285 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.61 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.122 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.122 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.122 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.732 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.466 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.417 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.417 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.188 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0938 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.276 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.122 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.122 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.0625 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.247 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.331 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.13 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.525 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.153 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.061 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.231 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.164 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.131 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.5 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.244 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.366 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.167 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0669 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.366 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.706 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.068 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.448,0.448,0,0,0.5,0,0.433,0.824,0.824,0,0.0601,0 +1,0.448,0.448,0,0,1,0,0.433,0.824,0.824,0,0.532,0 +1,0.448,0.448,0,0,1,0,0.433,0.824,0.824,0,0,0 +1,0.448,0.448,0,0,0.4,0,0.433,0.824,0.824,0,0.361,0 +1,0.448,0.448,0,0,0,0.9,0.433,0.824,0.824,0,0,0 +1,0.448,0.448,0,0,0,1,0.433,0.824,0.824,0,0.249,0 +1,0.49,0.49,0.3,0,0,1,0.447,0.862,0.862,0,0,0.122 +1,0.49,0.49,1,0,0,0.3,0.447,0.862,0.862,0,0,0 +1,0.49,0.49,1,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.49,0.49,0.8,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0,0.122 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.244 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.798,0.798,0,0,1,0,0.741,0.974,0.974,0,0.223,0 +1,0.798,0.798,0,0,1,0,0.741,0.974,0.974,0,0.309,0.244 +1,0.798,0.798,0,0,1,0,0.741,0.974,0.974,0,0.258,0 +1,0.798,0.798,0,0,1,0,0.741,0.974,0.974,0,0.361,0 +1,0.979,0.979,0,0,0.3,0,0.881,0.993,0.993,0,0.296,0 +1,0.979,0.979,0,0,0,1,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,1,0.881,0.993,0.993,0,0.296,0 +1,0.979,0.979,0,0,0,1,0.881,0.993,0.993,0,0.395,0 +1,0.979,0.979,0,0,0,1,0.881,0.993,0.993,0,0.296,0 +1,0.979,0.979,0,0,0,1,0.881,0.993,0.993,0,0.0258,0 +1,0.991,0.991,0,0,0,1,0.937,0.937,0.937,0,0.361,0 +1,0.991,0.991,0,0,0,0.5,0.937,0.937,0.937,0,0.296,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.545,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.223,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.421,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.309,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.124,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.635,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.451,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.464,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.476,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.275,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.249,0.366 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.137,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.73,0 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0.506,0 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0.356,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.73,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.322,0.366 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0.223,0 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0.309,0 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0.296,0 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0.348,0 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0 +1,0.124,0.124,0,0,0,0,0.559,0.656,0.656,0,0.273,0 +1,0.124,0.124,0,0,0,0,0.559,0.656,0.656,0,0.682,0 +1,0.124,0.124,0,0,0,0,0.559,0.656,0.656,0,0.433,0 +1,0.124,0.124,0,0,0,0,0.559,0.656,0.656,0,0,0 +1,0.124,0.124,0,0,0,0,0.559,0.656,0.656,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.14 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,1,0,0.34,0.516,0.516,0,0.584,0.335 +1,0.0833,0.0833,0,0,1,0,0.34,0.516,0.516,0,0.309,0.134 +1,0.0833,0.0833,0,0,1,0,0.34,0.516,0.516,0,0.309,0 +0.667,0.151,0.151,0,0,1,0,0.372,0.541,0.541,0,0.112,0 +0.667,0.151,0.151,0,0,0.3,0,0.372,0.541,0.541,0,0.0129,0 +0.667,0.151,0.151,0,0,0,1,0.372,0.541,0.541,0,0,0 +0.667,0.151,0.151,0,0,0,1,0.372,0.541,0.541,0,0.283,0 +0.667,0.151,0.151,0,0,0,1,0.372,0.541,0.541,0,0.283,0 +0.667,0.151,0.151,0,0,0,0.2,0.372,0.541,0.541,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0.464,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0.391,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0.485,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0.309,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0.361,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0.258,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.122 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.488 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.244 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.798,0.798,0.8,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.979,0.979,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,1,0,0,0,0.881,0.993,0.993,0.457,0,0 +0.667,0.669,0.669,1,1,0,0,0.673,0.817,0.817,0.391,0,0 +1,0.979,0.979,1,1,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0.9,1,0,0,0.881,0.993,0.993,0.522,0,0 +1,0.979,0.979,0,1,0,0,0.881,0.993,0.993,0.451,0,0 +1,0.991,0.991,0,0.8,0,0,0.937,0.937,0.937,0.783,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.337,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.364,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.489,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.495,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.364,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.366 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.282 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.366 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.21,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.53,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0635 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.182 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.138 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.346 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.0346 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.246 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.61 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.534 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.268 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.366 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.198 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,1,0,0.58,0.805,0.805,0,0.494,0 +0.667,0.548,0.548,0,0,0.4,0,0.58,0.805,0.805,0,0.0858,0 +0.667,0.548,0.548,0,0,0,0.9,0.58,0.805,0.805,0,0,0.122 +0.667,0.669,0.669,0,0,0,1,0.673,0.817,0.817,0,0.532,0 +0.667,0.669,0.669,0,0,0,1,0.673,0.817,0.817,0,0.21,0 +0.667,0.669,0.669,0,0,0,1,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,1,0.673,0.817,0.817,0,0.464,0 +0.667,0.669,0.669,0.3,0,0,0,0.673,0.817,0.817,0,0.215,0.29 +0.667,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0.361,0.303 +0.667,0.677,0.677,1,0,0,0,0.711,0.78,0.78,0,0.545,0 +0.667,0.677,0.677,1,0,0,0,0.711,0.78,0.78,0,0.0386,0 +1,0.991,0.991,1,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0.3,0,0,0,0.937,0.937,0.937,0,0.0258,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.27,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.0386,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.433,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.204 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.255 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.244 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.261 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0.3,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.167 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.34 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.136 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.146 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.47 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.122 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.171 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.381 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.271 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.488 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.541 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.28 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.192 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.351 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.349 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.282 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.494 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.344 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.207 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.406 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.366 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.122 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0.8,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,1,0,0,0,0.354,0.61,0.61,0,0,0.156 +0.333,0.234,0.234,1,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.332 +1,0.798,0.798,0.9,0,0,0,0.741,0.974,0.974,0,0,0.0332 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.244 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.244 +0.667,0.363,0.363,0,0.5,0,0,0.484,0.622,0.622,0.44,0,0.122 +0.667,0.363,0.363,0,1,0,0,0.484,0.622,0.622,0.549,0,0.162 +0.667,0.363,0.363,0,1,0,0,0.484,0.622,0.622,0.739,0,0.0323 +1,0.823,0.823,0,1,0,0,0.993,0.88,0.88,0.348,0,0 +1,0.823,0.823,0,1,0,0,0.993,0.88,0.88,0,0,0.488 +1,0.823,0.823,0,0.3,0,0,0.993,0.88,0.88,0,0,0.601 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.488 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.244 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0899 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.252 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.342 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.549 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.355,0.355,0,0,0,0,0.601,0.693,0.693,0,0,0.338 +1,0.355,0.355,0,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.355,0.355,0,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.141 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.0706 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.338 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.389 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.244 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.404 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.265 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0.5,0,0.322,0.806,0.806,0,0.236,0.0799 +1,0.49,0.49,0,0,0.9,0,0.322,0.806,0.806,0,0,0 +1,0.49,0.49,0,0,0,0.4,0.322,0.806,0.806,0,0.0258,0 +1,0.49,0.49,0,0,0,1,0.322,0.806,0.806,0,0.433,0.366 +1,0.49,0.49,0,0,0,1,0.322,0.806,0.806,0,0,0 +1,0.477,0.477,0,0,0,1,0.336,0.806,0.806,0,0.361,0.142 +1,0.477,0.477,0,0,0,1,0.336,0.806,0.806,0,0.0386,0 +1,0.477,0.477,0,0,0,0.5,0.336,0.806,0.806,0,0.618,0.244 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0.296,0.204 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0.545,0.122 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0.309,0.122 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0.369,0 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0.176 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0.35 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0.308 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.122 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.418,0.418,0.8,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0.366 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.979,0.979,0.5,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.732 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.473 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.176 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.351 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.246 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.374 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0.3,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0.244 +0.667,0.334,0.334,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.343,0.343,0.3,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.488 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.488 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.299,0.299,0.8,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0 +1,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.122 +1,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.122 +1,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.244 +1,0.677,0.677,1,0,0,0,0.711,0.78,0.78,0,0,0.366 +1,0.677,0.677,1,0,0,0,0.711,0.78,0.78,0,0,0.157 +1,0.677,0.677,1,0,0,0,0.711,0.78,0.78,0,0,0.0941 +1,0.991,0.991,0.7,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.191 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.136 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.238 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.366 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.366 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.244 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,1,0,0.372,0.541,0.541,0,0.0386,0 +1,0.183,0.183,0,0,1,0,0.391,0.572,0.572,0,0.309,0 +1,0.183,0.183,0,0,0.9,0,0.391,0.572,0.572,0,0.416,0 +1,0.183,0.183,0,0,0,0.4,0.391,0.572,0.572,0,0.476,0 +1,0.183,0.183,0,0,0,1,0.391,0.572,0.572,0,0.262,0 +1,0.183,0.183,0,0,0,1,0.391,0.572,0.572,0,0.223,0 +1,0.183,0.183,0,0,0,1,0.391,0.572,0.572,0,0,0 +1,0.192,0.192,0,0,0,1,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,0,0,0,0.5,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,0.8,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0.154 +1,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.343,0.343,1,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.343,0.343,1,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.343,0.343,1,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.343,0.343,0.9,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.366 +1,0.343,0.343,0,0.5,0,0,0.3,0.692,0.692,0.478,0,0 +1,0.334,0.334,0,1,0,0,0.31,0.692,0.692,0.511,0,0 +1,0.334,0.334,0,1,0,0,0.31,0.692,0.692,0.489,0,0.122 +1,0.334,0.334,0,1,0,0,0.31,0.692,0.692,0.337,0,0 +1,0.334,0.334,0,1,0,0,0.31,0.692,0.692,0.293,0,0 +1,0.334,0.334,0,0.3,0,0,0.31,0.692,0.692,0,0,0.366 +1,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +1,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +1,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +1,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.416 +1,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.206 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0,0.244 +1,0.49,0.49,0.8,0,0,0,0.447,0.862,0.862,0,0,0.193 +1,0.49,0.49,1,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.49,0.49,1,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.49,0.49,0.3,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.649 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.0642 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.161 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.34 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.204 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.366 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.269 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.172 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.137 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.244 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.366 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.158 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.215 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.169 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0674 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.338 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0338 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.186,0.186,0,0,1,0,0.288,0.585,0.585,0,0.0987,0 +0.667,0.313,0.313,0,0,1,0,0.31,0.717,0.717,0,0.258,0.3 +0.667,0.313,0.313,0,0,1,0,0.31,0.717,0.717,0,0,0.268 +0.667,0.313,0.313,0,0,1,0,0.31,0.717,0.717,0,0.15,0 +1,0.445,0.445,0,0,0.3,0,0.336,0.843,0.843,0,0.258,0 +1,0.445,0.445,0,0,0,1,0.336,0.843,0.843,0,0.506,0.244 +1,0.445,0.445,0,0,0,0.6,0.336,0.843,0.843,0,0.234,0.51 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0.582,0 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0.122 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.159,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.15,0.477 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.519,0.122 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.21,0.122 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.244 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.335,0.794 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.0987,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.122 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0.545,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.234,0.163 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.444,0.098 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.343,0 +1,0.49,0.49,0.3,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.49,0.49,1,0,0,0,0.447,0.862,0.862,0,0,0.34 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0.0312 +0.667,0.418,0.418,0.8,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.122 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.244 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.244 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.122 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.122 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.122 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.244 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.167 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.167 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.196 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.117 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.174 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0695 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.188 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.122 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.153 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.0306 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.732 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.366 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.105 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.318 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.104 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.158 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0634 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.144 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0.8,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,1,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,1,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0.3,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.643 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0622 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.326 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.353 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.0353 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.348 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.367 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.244 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.31 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.163 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.163 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0.8,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0.7,0,0,0,0.288,0.585,0.585,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.488 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0.386,0,0 +0.333,0.182,0.182,0,1,0,0,0.316,0.585,0.585,0.375,0,0 +0.333,0.196,0.196,0,1,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.196,0.196,0,1,0,0,0.321,0.597,0.597,0.364,0,0 +0.333,0.196,0.196,0,1,0,0,0.321,0.597,0.597,0.429,0,0 +0.667,0.343,0.343,0,0.8,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.488 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.366 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.244 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.242 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.161 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.0644 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.207 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.334 +1,0.253,0.253,0,0,0.5,0,0.487,0.617,0.617,0.505,0.421,0.1 +1,0.253,0.253,0,1,0.9,0,0.487,0.617,0.617,0.511,0,0 +0.667,0.253,0.253,0,1,0,0.4,0.487,0.617,0.617,0,0,0 +0.667,0.253,0.253,0,1,0,1,0.487,0.617,0.617,0.418,0,0.188 +0.667,0.253,0.253,0,1,0,1,0.487,0.617,0.617,0.348,0,0 +0.667,0.316,0.316,0.8,0.8,0,1,0.524,0.68,0.68,0.348,0,0 +0.667,0.316,0.316,1,0,0,1,0.524,0.68,0.68,0.299,0,0 +0.667,0.316,0.316,1,1,0,1,0.524,0.68,0.68,0,0,0 +0.667,0.316,0.316,0.3,1,0,1,0.524,0.68,0.68,0.37,0,0 +0.667,0.316,0.316,0,1,0,0.1,0.524,0.68,0.68,0.332,0,0 +0.667,0.316,0.316,0,1,0,0,0.524,0.68,0.68,0.484,0,0 +0.667,0.334,0.334,0,1,0,0,0.403,0.692,0.692,0.723,0,0 +0.667,0.334,0.334,0,1,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0.4,0,0,0.403,0.692,0.692,0,0,0.122 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0.429,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0.413,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0.467,0,0.122 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0.538,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0.19,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0.19,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.366 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.366 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0.5,0,0,0.284,0.591,0.591,0.402,0,0 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0.717,0,0.122 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0.679,0,0 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0.242,0,0 +0.333,0.181,0.181,0,1,0,0,0.284,0.591,0.591,0.242,0,0 +0.333,0.181,0.181,0,0.3,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0.3,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.488 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.161 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0624 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.187 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.238 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.034 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.0651 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.26 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.225 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.154 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.431 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.374 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.169 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0671 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.336 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.216 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0.5,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,1,0,0,0,0.321,0.709,0.709,0,0,0.191 +0.667,0.316,0.316,1,0,0,0,0.321,0.709,0.709,0,0,0.274 +0.667,0.307,0.307,1,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.311,0.721,0.721,0,0,0 +0.333,0.178,0.178,0.1,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.366 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.244 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.122 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.488 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.595,0.595,0.5,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.246 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.105 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.122 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.366 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0.196,0,0.239 +0.667,0.67,0.67,0,0.7,0,0,0.715,0.784,0.784,0.196,0,0 +1,0.913,0.913,0,1,0,0,1,0.887,0.887,0.435,0,0 +1,0.913,0.913,0,1,0,0,1,0.887,0.887,0.342,0,0.348 +1,0.913,0.913,0,1,0,0,1,0.887,0.887,0.402,0,0.0691 +1,0.913,0.913,0,1,0,0,1,0.887,0.887,0.576,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.233 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.247 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.141 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0438 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.246 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.176 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.122 +0.667,0.181,0.181,1,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0.5,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.244 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.244 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.366 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0.258,0,0.122 +1,0.674,0.674,0,0.7,0,0,0.746,0.981,0.981,0.258,0,0 +0.667,0.595,0.595,0,1,0,0,0.677,0.822,0.822,0.397,0,0 +0.667,0.595,0.595,0,1,0,0,0.677,0.822,0.822,0.489,0,0.122 +0.667,0.595,0.595,0,1,0,0,0.677,0.822,0.822,0.424,0,0.122 +0.667,0.595,0.595,0,1,0,0,0.677,0.822,0.822,0.516,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0.22,0,0.488 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0.22,0,0.244 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.122 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.488 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.122 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.122 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.366 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.189 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.1 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0.2,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.0987,0 +0.667,0.0495,0.0495,0,0,0.3,0,0.258,0.465,0.465,0,0.0987,0 +0.667,0.0495,0.0495,0,0,0,1,0.258,0.465,0.465,0,0,0 +1,0.246,0.246,0,0,0,1,0.449,0.562,0.562,0,0.446,0 +1,0.116,0.116,0,0,0,1,0.407,0.537,0.537,0,0.571,0 +1,0.116,0.116,0,0,0,1,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,1,0.407,0.537,0.537,0,0.738,0 +1,0.116,0.116,0,0,0,1,0.407,0.537,0.537,0,0.0386,0 +1,0.116,0.116,0,0,0,0.3,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.0999 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.333 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0.8,0,0.327,0.511,0.511,0,0.296,0 +1,0.0513,0.0513,0,0,1,0,0.327,0.511,0.511,0,0.627,0 +1,0.0513,0.0513,0,0,1,0,0.327,0.511,0.511,0,0.605,0 +1,0.0513,0.0513,0,0,0.2,0.1,0.327,0.511,0.511,0,0.073,0 +1,0.116,0.116,0,0,0,1,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,1,0.424,0.57,0.57,0,0.369,0 +1,0.116,0.116,0,0,0,1,0.424,0.57,0.57,0,0.309,0 +1,0.116,0.116,0,0,0,1,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,0.6,0.424,0.57,0.57,0,0.249,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.106 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.177 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.15 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.122 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.122 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0.446,0,0.1 +0.667,0.177,0.177,0,0.8,0,0,0.303,0.593,0.593,0.223,0,0 +0.667,0.177,0.177,0,1,0,0,0.303,0.593,0.593,0.489,0,0 +0.667,0.305,0.305,0,1,0,0,0.349,0.721,0.721,0.505,0,0 +0.667,0.305,0.305,0,1,0,0,0.349,0.721,0.721,0.429,0,0 +0.667,0.305,0.305,0,0.9,0,0,0.349,0.721,0.721,0.467,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.207,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.207,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0.1,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.322,0.6,0.6,0,0,0 +0.667,0.322,0.322,1,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,1,0,0,0,0.386,0.734,0.734,0,0,0.122 +0.667,0.322,0.322,1,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0.5,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.366 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.244 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.488 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.122 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.122 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.458 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.122 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.28 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.242 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.0349 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.471 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.0349 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0.13 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0.122 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0.262,0 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0.185,0 +1,0.124,0.124,0,0,0,0,0.563,0.66,0.66,0,0,0 +1,0.124,0.124,0,0,0,0,0.563,0.66,0.66,0,0,0 +1,0.124,0.124,0,0,0,0,0.563,0.66,0.66,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.122 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.122 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.222 +1,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.1 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.268 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0926 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.278 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.122 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.599 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0323 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.259 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.122 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.366 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.244 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.122 +0.667,0.322,0.322,0.6,0,0,0,0.386,0.734,0.734,0,0,0.61 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0.4,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.244 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.488 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.366 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.244 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.366 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.244 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.092 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.214 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.066,0.066,0,0,0,0,0.433,0.57,0.57,0,0,0 +1,0.066,0.066,0,0,0,0,0.433,0.57,0.57,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0.0633 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0.127 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.232 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.0662 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.139 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.315 +0.667,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.355 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.106 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.244 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.0682 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.0341 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.284 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.0473 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.377 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.462 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0.7,0,0.405,0.696,0.696,0,0.0987,0.229 +0.667,0.33,0.33,0,0,1,0,0.405,0.696,0.696,0,0.0987,0.0983 +0.667,0.33,0.33,0,0,1,0,0.405,0.696,0.696,0,0.605,0.122 +0.667,0.337,0.337,0,0,1,0,0.302,0.696,0.696,0,0.433,0 +0.667,0.337,0.337,0,0,0.8,0,0.302,0.696,0.696,0,0.27,0.0695 +0.667,0.337,0.337,0,0,0,0.5,0.302,0.696,0.696,0,0.348,0.47 +0.667,0.337,0.337,0,0,0,1,0.302,0.696,0.696,0,0.494,0.0695 +0.667,0.337,0.337,0,0,0,1,0.302,0.696,0.696,0,0.27,0 +0.667,0.337,0.337,0,0,0,1,0.302,0.696,0.696,0,0.0258,0 +0.333,0.189,0.189,0,0,0,1,0.284,0.581,0.581,0,0.249,0 +0.333,0.189,0.189,0,0,0,1,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0.8,0.284,0.581,0.581,0,0.498,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.395,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.366 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.579,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.395,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.322,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.309,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.0386,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.322,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.258,0.366 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.137,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.369,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.532,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.249,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.296,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.172,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.27,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.27,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.335,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.0987,0.244 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.459,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.185,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.258,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.223,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.609,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.172,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.558,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.0644,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.112,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.236,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.815,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.429,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.322,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.356,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.361,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.584,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0.609,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0.172,0.366 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.244 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.224 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.0962 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.98,0.98,0.5,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,1,0,0,0,0.944,0.943,0.943,0,0,0.243 +1,0.98,0.98,1,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.98,0.98,1,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,1,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,1,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,1,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,1,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0.1,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0657 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.131 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.182 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.245 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.0701 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0.128 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0.481 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.417 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.135 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.0335 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.268 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.37 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.427 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.325 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.432 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.477 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.122 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.105 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.122 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.134 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.201 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0622 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.215 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.366 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.228 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0325 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0.1,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.122 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.366 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.243 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.244 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0668 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.234 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.0678 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.136 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.15,0.15,0,0,0,0,0.507,0.623,0.623,0,0,0.413 +1,0.15,0.15,0,0,0,0,0.507,0.623,0.623,0,0,0.284 +1,0.15,0.15,0,0,0,0,0.507,0.623,0.623,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.237 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.203 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0.2,0,0.527,0.683,0.683,0,0,0.132 +0.667,0.313,0.313,0,0,1,0,0.527,0.683,0.683,0,0.644,0.0661 +0.667,0.313,0.313,0,0,1,0,0.527,0.683,0.683,0,0.322,0 +0.667,0.313,0.313,0,0,0.8,0,0.527,0.683,0.683,0,0.285,0 +0.667,0.313,0.313,0,0,0,0.5,0.527,0.683,0.683,0,0.135,0.122 +0.667,0.33,0.33,0,0,0,1,0.405,0.696,0.696,0,0.137,0.122 +0.667,0.33,0.33,0,0,0,1,0.405,0.696,0.696,0,0.455,0 +0.333,0.19,0.19,0,0,0,1,0.331,0.581,0.581,0,0.236,0 +0.333,0.19,0.19,0,0,0,1,0.331,0.581,0.581,0,0.27,0 +0.333,0.19,0.19,0,0,0,0.2,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0.382,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.704,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.335,0.122 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.197,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.283,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.455,0.122 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0.322,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0.309,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,1,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0.481,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.366 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.0645 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.129 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.488 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.244 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0.19,0,0 +0.333,0.208,0.208,0,0.7,0,0,0.355,0.612,0.612,0.19,0,0 +0.333,0.258,0.258,0,1,0,0,0.421,0.637,0.637,0.56,0,0 +0.333,0.258,0.258,0,1,0,0,0.421,0.637,0.637,0.576,0,0.122 +0.333,0.258,0.258,0,1,0,0,0.421,0.637,0.637,0.511,0,0 +0.333,0.258,0.258,0,1,0,0,0.421,0.637,0.637,0,0,0.227 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0.283,0,0.675 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.366 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0.435,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0.571,0,0.265 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0.353,0,0.188 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.366 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.244 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.49 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.401 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.244 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.244 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.063 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.189 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.141 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.0704 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.126 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.268 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0.5,0,0,0,0.606,0.698,0.698,0,0,0.367 +1,0.351,0.351,1,0,0,0,0.606,0.698,0.698,0,0,0.137 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.444,0.444,0,0,0,0,0.662,0.792,0.792,0,0,0 +1,0.444,0.444,0,0,0,0,0.662,0.792,0.792,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.326,0,0.122 +0,0.0495,0.0495,0,0.7,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.603,0,0.122 +0,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.793,0,0 +0,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.348,0,0 +0.333,0.193,0.193,0,1,0,0,0.28,0.581,0.581,0.245,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0.582,0,0.244 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0.397,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0.636,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0.554,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0.185,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0.185,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0.647,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0.386,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0.538,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.0682 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.341 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.204 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0577 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0866 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0.7,0,0.258,0.465,0.465,0,0.361,0 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.296,0 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.27,0 +0.333,0.178,0.178,0,0,0.3,0,0.317,0.587,0.587,0,0.0601,0 +0.333,0.178,0.178,0,0,0,1,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,1,0.317,0.587,0.587,0,0.0601,0.122 +0.333,0.186,0.186,0,0,0,1,0.322,0.6,0.6,0,0.309,0.122 +0.333,0.186,0.186,0,0,0,1,0.322,0.6,0.6,0,0,0.244 +0.333,0.186,0.186,0,0,0,1,0.322,0.6,0.6,0,0.567,0 +0.333,0.186,0.186,0,0,0,1,0.322,0.6,0.6,0,0.369,0 +0.333,0.186,0.186,0,0,0,0.3,0.322,0.6,0.6,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.124,0.122 +0.667,0.367,0.367,0.5,0,0,0,0.452,0.759,0.759,0,0.0987,0 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0.197,0 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0.481,0.122 +1,0.526,0.526,1,0,0,0,0.549,0.906,0.906,0,0.0129,0.122 +1,0.526,0.526,1,0,0,0,0.549,0.906,0.906,0,0.373,0 +1,0.526,0.526,1,0,0,0,0.549,0.906,0.906,0,0.554,0 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0.21,0 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0,0 +0.667,0.466,0.466,0.2,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.0651 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.35 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.366 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.24 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0701 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.175 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.165 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0658 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.329 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.167 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.0661 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.33 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.0661 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.21 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.122 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +1,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.122 +1,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.366 +1,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.366 +1,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.366 +1,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +1,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +1,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +1,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +1,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.61 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0.122 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0.122 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.244 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.131 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.122 +0.667,0.466,0.466,1,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.0912 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.0608 +1,0.868,0.868,1,0,0,0,0.887,1,1,0,0,0.244 +1,0.868,0.868,0.6,0,0,0,0.887,1,1,0,0,0.366 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.189 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.234 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.302 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.0504 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.0641 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.16 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.389 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.0321 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.0671 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.29 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0646 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0969 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.533,0,0 +1,0.0495,0.0495,0,0.8,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.549,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.554,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.516,0,0 +1,0.0495,0.0495,0,0.9,0,0,0.258,0.465,0.465,0,0,0 +1,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +1,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +1,0.193,0.193,0.6,0,0,0,0.28,0.581,0.581,0,0,0 +1,0.193,0.193,1,0,0,0,0.28,0.581,0.581,0,0,0.0976 +1,0.193,0.193,1,0,0,0,0.28,0.581,0.581,0,0,0.0976 +1,0.193,0.193,0.4,0,0,0,0.28,0.581,0.581,0,0,0 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.242 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.138 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0974 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.162 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +1,0.436,0.436,0,0,0,0,0.338,0.849,0.849,0,0,0 +1,0.436,0.436,0,0,0,0,0.338,0.849,0.849,0,0,0 +1,0.436,0.436,0,0,0,0,0.338,0.849,0.849,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0.435,0,0 +0.667,0.305,0.305,0,0.8,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,1,0,0,0.349,0.721,0.721,0.402,0,0 +0.333,0.177,0.177,0,1,0,0,0.303,0.593,0.593,0.402,0,0 +0.333,0.177,0.177,0,1,0,0,0.303,0.593,0.593,0.478,0,0 +0.333,0.177,0.177,0,0.9,0,0,0.303,0.593,0.593,0.283,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.315,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.462,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.723,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.467,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.234,0,0.488 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0.435,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0.745,0,0 +0.333,0.186,0.186,0.6,0,0.8,0,0.322,0.6,0.6,0,0.369,0 +0.333,0.186,0.186,0.9,0,0.7,0,0.322,0.6,0.6,0,0.335,0 +0.333,0.186,0.186,0,0,0,0.6,0.322,0.6,0.6,0,0.558,0 +0.333,0.186,0.186,0,0,0,1,0.322,0.6,0.6,0,0.296,0 +1,0.526,0.526,0,0,0,1,0.549,0.906,0.906,0,0.258,0.244 +1,0.526,0.526,0,0,0,1,0.549,0.906,0.906,0,0.249,0 +1,0.526,0.526,0,0,0,1,0.549,0.906,0.906,0,0.348,0 +1,0.526,0.526,0,0,0,1,0.549,0.906,0.906,0,0.545,0.122 +1,0.526,0.526,0,0,0,0.7,0.549,0.906,0.906,0,0.197,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0.519,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.27,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.283,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.592,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.244 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.201 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.0593 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.363 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.366 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.366 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.244 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.122 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.371 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.244 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.366 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.244 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0,0,0.3,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,1,0,0.831,0.755,0.755,0,0.249,0 +1,0.638,0.638,0,0,0.2,0.1,0.831,0.755,0.755,0,0.283,0 +1,0.638,0.638,0,0,0,1,0.831,0.755,0.755,0,0.0601,0.106 +1,0.638,0.638,0,0,0,1,0.831,0.755,0.755,0,0.283,0.106 +1,0.638,0.638,0,0,0,1,0.831,0.755,0.755,0,0.0515,0 +1,0.183,0.183,0,0,0,1,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0.6,0.555,0.608,0.608,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.185 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.188 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.0994 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.0994 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.35 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.366 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.244 +0.667,0.189,0.189,0,0,0.8,0,0.284,0.581,0.581,0,0.296,0 +0.333,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.584,0 +0.333,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.579,0 +0.333,0.0495,0.0495,0,0,0.2,0.1,0.258,0.465,0.465,0,0.446,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0.27,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0.258,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0.283,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0.369,0 +0.667,0.307,0.307,0,0,0,1,0.311,0.721,0.721,0,0,0.122 +0.667,0.307,0.307,0,0,0,0.8,0.311,0.721,0.721,0,0.567,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.0987,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.366 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.0258,0.244 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.369,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.0258,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.0129,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.395,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.0987,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.0386,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.249,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.249,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.21,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.0601,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.249,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.343,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.21,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.163,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.506,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.506,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0.322,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0.0987,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.309,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.644,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.249,0 +1,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +1,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.27,0 +1,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.322,0 +1,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.322,0.366 +1,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +1,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.124,0.488 +1,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.21,0 +1,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.519,0.122 +1,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.185,0 +1,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.249,0.122 +1,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.0386,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.27,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.244 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.459,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.236,0 +1,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.366 +1,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0.485,0 +1,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0.283,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0.27,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0626 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0.0605 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0.121 +1,0.0495,0.0495,0.5,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0649 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.13 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.224 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.122 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.34 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.258 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.61 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.122 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.122 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.122 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0.5,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.322,0.322,0.5,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.244 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.366 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,1,0,0,0,0.584,0.809,0.809,0,0,0.244 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.61 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,1,0,0.2,0,0.677,0.822,0.822,0,0,0.187 +0.667,0.595,0.595,0.1,0,1,0,0.677,0.822,0.822,0,0.506,0.0651 +0.667,0.67,0.67,0.5,0,1,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,1,0,0.8,0,0.715,0.784,0.784,0,0,0.122 +0.667,0.67,0.67,0,0,0,0.5,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,1,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.244 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.122 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.239 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0341 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0703 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.105 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.233 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.0639 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.16 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.482 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.242 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.243 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.102 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.224 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.122 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.244 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.366 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.244 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.239 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.341 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.136 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0697 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.209 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.122 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.122 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0.5,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.15,0.15,1,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.15,0.15,1,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,1,0,0.7,0,0.374,0.543,0.543,0,0.137,0 +0.667,0.15,0.15,1,0,1,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,1,0,1,0,0.374,0.543,0.543,0,0.0386,0 +0.667,0.181,0.181,1,0,1,0,0.392,0.574,0.574,0,0.348,0 +0.667,0.181,0.181,1,0,0.8,0,0.392,0.574,0.574,0,0.485,0 +0.667,0.181,0.181,1,0,0,0.5,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,1,0,0,1,0.392,0.574,0.574,0,0.322,0 +0.667,0.181,0.181,1,0,0,1,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,1,0,0,1,0.392,0.574,0.574,0,0.283,0 +0.667,0.33,0.33,1,0,0,1,0.405,0.696,0.696,0,0.309,0.228 +0.667,0.33,0.33,1,0,0,0.2,0.405,0.696,0.696,0,0.236,0.13 +0.667,0.33,0.33,1,0,0,0,0.405,0.696,0.696,0,0.472,0 +0.667,0.33,0.33,1,0,0,0,0.405,0.696,0.696,0,0.498,0 +0.667,0.33,0.33,1,0,0,0,0.405,0.696,0.696,0,0.395,0.0698 +0.667,0.33,0.33,1,0,0,0,0.405,0.696,0.696,0,0.0601,0.0349 +0.667,0.337,0.337,1,0,0,0,0.302,0.696,0.696,0,0.137,0 +0.667,0.337,0.337,1,0,0,0,0.302,0.696,0.696,0,0.27,0 +0.333,0.193,0.193,1,0,0,0,0.28,0.581,0.581,0,0.395,0.233 +0.333,0.193,0.193,1,0,0,0,0.28,0.581,0.581,0,0.481,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.446,0.122 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.532,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.667,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.32,0.244 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.657,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.309,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.309,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.61 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.61 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0.5,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,1,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.232 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.565 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.0615 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.0615 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.386 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.066 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0.242,0,0 +0.333,0.19,0.19,0,0.7,0,0,0.331,0.581,0.581,0.242,0,0.122 +0.333,0.193,0.193,0,1,0,0,0.28,0.581,0.581,0.435,0,0.122 +0.333,0.193,0.193,0,1,0,0,0.28,0.581,0.581,0.375,0,0 +0.333,0.193,0.193,0,1,0,0,0.28,0.581,0.581,0.424,0,0 +0.333,0.193,0.193,0,1,0,0,0.28,0.581,0.581,0.538,0,0 +0.333,0.193,0.193,0,1,0,0,0.28,0.581,0.581,0.255,0,0 +0.333,0.193,0.193,0,0.6,0,0,0.28,0.581,0.581,0.511,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0.5,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,1,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0.5,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.366 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0611 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0306 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.868,0.868,0.5,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,1,0,0,0,0.887,1,1,0,0,0.244 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.61 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.67,0.67,0.6,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.122 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.243 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.0694 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.61 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0.7,0,0.346,0.511,0.511,0,0.0987,0 +1,0.0495,0.0495,1,0,1,0,0.346,0.511,0.511,0,0.0987,0 +1,0.0495,0.0495,1,0,1,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,1,0,1,0,0.346,0.511,0.511,0,0.249,0 +1,0.0495,0.0495,1,0,0.8,0,0.346,0.511,0.511,0,0.309,0 +1,0.0495,0.0495,1,0,0,0.5,0.346,0.511,0.511,0,0.356,0 +1,0.0495,0.0495,0.7,0,0,1,0.341,0.505,0.505,0,0.258,0 +1,0.0495,0.0495,0,0,0,1,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0.6,0.341,0.505,0.505,0,0.275,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.0627 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.216 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.122 +1,0.444,0.444,0,0,0,0,0.662,0.792,0.792,0,0,0.136 +1,0.444,0.444,0,0,0.2,0,0.662,0.792,0.792,0,0,0 +1,0.444,0.444,0,0,1,0,0.662,0.792,0.792,0,0.288,0 +1,0.444,0.444,0,0,1,0,0.662,0.792,0.792,0,0.236,0 +1,0.444,0.444,0,0,1,0,0.662,0.792,0.792,0,0,0.0676 +1,0.444,0.444,0,0,1,0,0.662,0.792,0.792,0,0.67,0.203 +1,0.47,0.47,0,0,0.3,0,0.479,0.811,0.811,0,0.296,0 +1,0.47,0.47,0,0,0,1,0.479,0.811,0.811,0,0.249,0 +1,0.47,0.47,0,0,0,1,0.479,0.811,0.811,0,0.597,0 +0.667,0.33,0.33,0,0,0,1,0.405,0.696,0.696,0,0.446,0.191 +0.667,0.33,0.33,0,0,0,1,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0.7,0.405,0.696,0.696,0,0.395,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.185,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.223,0.0665 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.249,0.2 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.283,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.112,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.27,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0.236,0.171 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0.288,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0.768,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.0515,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.755,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.223,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.382,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.283,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.592,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.137,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.0386,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.421,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.408,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.455,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.309,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.618,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.618,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.25,0,0 +0.667,0.178,0.178,0,0.7,0,0,0.317,0.587,0.587,0.25,0,0 +0.667,0.186,0.186,0,1,0,0,0.322,0.6,0.6,0.516,0,0 +0.667,0.186,0.186,0,1,0,0,0.322,0.6,0.6,0.37,0,0 +0.667,0.186,0.186,0,1,0,0,0.322,0.6,0.6,0.37,0,0 +0.667,0.322,0.322,0,1,0,0,0.386,0.734,0.734,0.576,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.366 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.667,0.258,0.258,0.5,0,0,0,0.421,0.637,0.637,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.421,0.637,0.637,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.421,0.637,0.637,0,0,0.122 +1,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.122 +1,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.122 +1,0.67,0.67,1,0,0,0,0.715,0.784,0.784,0,0,0.61 +1,0.67,0.67,1,0,0,0,0.715,0.784,0.784,0,0,0.366 +1,0.98,0.98,0.2,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.366 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.244 +1,0.913,0.913,1,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,1,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,1,0,0,0,1,0.887,0.887,0,0,0.0645 +1,0.625,0.625,1,0,0,0,0.753,0.746,0.746,0,0,0.226 +1,0.727,0.727,0.6,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0958 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.128 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.21 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.133 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +1,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +1,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +1,0.328,0.328,0,0.3,0,0,0.311,0.696,0.696,0.397,0,0 +1,0.328,0.328,0,1,0,0,0.311,0.696,0.696,0.386,0,0 +1,0.328,0.328,0,1,0,0,0.311,0.696,0.696,0.31,0,0 +1,0.328,0.328,0,1,0.8,0,0.311,0.696,0.696,0.462,0.223,0 +1,0.316,0.316,0,1,0.7,0,0.321,0.709,0.709,0,0,0 +1,0.316,0.316,0,0.4,0,0.6,0.321,0.709,0.709,0,0.481,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0.137,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0.408,0 +0.667,0.183,0.183,0,0,0,1,0.289,0.587,0.587,0,0.395,0 +0.667,0.178,0.178,0,0,0,1,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0.7,0.284,0.593,0.593,0,0.369,0.122 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.172,0.244 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.421,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.67,0.122 +0.667,0.178,0.178,0.6,0,0,0,0.284,0.593,0.593,0,0.361,0.244 +0.667,0.177,0.177,1,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.303,0.593,0.593,0,0.567,0 +0.667,0.177,0.177,1,0,0,0,0.303,0.593,0.593,0,0.137,0 +0.667,0.305,0.305,1,0,0,0,0.349,0.721,0.721,0,0.296,0.122 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.545,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.519,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.369,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.433,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.0987,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.73,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.258,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.197,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.283,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.395,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.459,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.309,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.488 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.073,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.0858,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.498,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.236,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.592,0.366 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.249,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.15,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0.373,0 +1,0.868,0.868,0,0.3,0,0,0.887,1,1,0.342,0.296,0 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.332,0,0 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.315,0.408,0 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.489,0.124,0 +1,0.98,0.98,0,1,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0.4,0,0,0.944,0.943,0.943,0,0.0987,0.244 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.0386,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.275,0.244 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.296,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.258,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.433,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.223,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.592,0.366 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.249,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.395,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0.579,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0.322,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0.481,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.61 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.122 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.102 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0342 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.269 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.303 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.468,0.468,0,0,0.3,0,0.338,0.811,0.811,0,0,0 +1,0.468,0.468,0,0,1,0,0.338,0.811,0.811,0,0.335,0 +1,0.468,0.468,0,0,1,0,0.338,0.811,0.811,0,0.137,0 +1,0.468,0.468,0,0,0.7,0,0.338,0.811,0.811,0,0.258,0 +1,0.468,0.468,0,0,0,0.6,0.338,0.811,0.811,0,0.0386,0 +1,0.468,0.468,0,0,0,1,0.338,0.811,0.811,0,0.185,0 +1,0.449,0.449,0,0,0,1,0.352,0.83,0.83,0,0,0 +1,0.449,0.449,0,0,0,1,0.352,0.83,0.83,0,0.21,0 +1,0.449,0.449,0,0,0,1,0.352,0.83,0.83,0,0.249,0 +1,0.449,0.449,0,0,0,1,0.352,0.83,0.83,0,0.485,0 +1,0.449,0.449,0,0,0,0.7,0.352,0.83,0.83,0,0,0 +1,0.449,0.449,0,0,0,0,0.352,0.83,0.83,0,0.395,0 +1,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.275,0 +1,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.275,0 +1,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.618,0 +1,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.366 +1,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +1,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +1,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +1,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +1,0.305,0.305,0.6,0,0,0,0.349,0.721,0.721,0,0,0 +1,0.305,0.305,1,0,0,0,0.349,0.721,0.721,0,0,0.122 +1,0.305,0.305,1,0,0,0,0.349,0.721,0.721,0,0,0.366 +1,0.305,0.305,1,0,0,0,0.349,0.721,0.721,0,0,0.366 +1,0.307,0.307,1,0,0,0,0.377,0.709,0.709,0,0,0.366 +1,0.307,0.307,1,0,0,0,0.377,0.709,0.709,0,0,0 +1,0.307,0.307,0.5,0,0,0,0.377,0.709,0.709,0,0,0 +1,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.122 +1,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +1,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +1,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +1,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.122 +1,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.366 +1,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +1,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +1,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +1,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +1,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.244 +1,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.244 +1,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +1,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.346 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.325 +1,0.674,0.674,0,0.3,0,0,0.746,0.981,0.981,0.435,0,0 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.348,0,0 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.272,0,0.122 +1,0.868,0.868,0,1,0,0,0.887,1,1,0,0,0.755 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.37,0,0.154 +1,0.868,0.868,0,0.4,0,0,0.887,1,1,0,0,0.132 +1,0.868,0.868,0,0,0,0,0.887,1,1,0.56,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.375,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.424,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.196 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.462 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.16 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.488 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.376 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.0318 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0654 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.262 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.206 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.138 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.415 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.1 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.201 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.122 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.244 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.366 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.366 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.366 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.185 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0627 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.274 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.206 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.189 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0354 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.177 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.122 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.488 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.067 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.201 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.24 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.351 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.315 +0.667,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.229 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.131 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.2 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0.0667 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.19,0.19,1,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,1,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.19,0.19,1,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.19,0.19,0.7,0,0,0,0.331,0.581,0.581,0,0,0.0917 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.244 +0.333,0.193,0.193,0,0,0.2,0,0.28,0.581,0.581,0,0,0.0692 +0.333,0.193,0.193,0,0,1,0,0.28,0.581,0.581,0,0.528,0.208 +0.333,0.193,0.193,0,0,1,0,0.28,0.581,0.581,0,0.361,0 +0.333,0.193,0.193,0,0,1,0,0.28,0.581,0.581,0,0.0258,0 +0.333,0.193,0.193,0,0,1,0,0.28,0.581,0.581,0,0.369,0.261 +0.333,0.189,0.189,0,0,0.3,0,0.284,0.581,0.581,0,0.0386,0.0694 +0.333,0.189,0.189,0,0,0,1,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,1,0.284,0.581,0.581,0,0.309,0 +0.333,0.189,0.189,0,0,0,1,0.284,0.581,0.581,0,0.283,0 +0.333,0.189,0.189,0,0,0,1,0.284,0.581,0.581,0,0.605,0 +0.333,0.189,0.189,0,0,0,0.7,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.0987,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.361,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.0987,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.309,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.605,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.631,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.369,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.296,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.369,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.322,0.6,0.6,0,0,0.135 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.536 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.033 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.122 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.366 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.244 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.244 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.366 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.244 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.366 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.241 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.138 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.244 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0.2,0,0.258,0.465,0.465,0,0,0.0619 +1,0.0495,0.0495,1,0,1,0,0.258,0.465,0.465,0,0.335,0.124 +1,0.351,0.351,1,0,1,0,0.606,0.698,0.698,0,0.532,0 +1,0.351,0.351,1,0,1,0,0.606,0.698,0.698,0,0.309,0 +1,0.351,0.351,1,0,1,0,0.606,0.698,0.698,0,0,0 +0.667,0.251,0.251,1,0,0.3,0,0.49,0.621,0.621,0,0,0.162 +0.667,0.251,0.251,1,0,0,1,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,1,0,0,1,0.49,0.621,0.621,0,0,0 +0.667,0.313,0.313,1,0,0,1,0.527,0.683,0.683,0,0.296,0.0698 +0.667,0.313,0.313,1,0,0,1,0.527,0.683,0.683,0,0.309,0.349 +0.667,0.313,0.313,1,0,0,0.7,0.527,0.683,0.683,0,0.21,0.174 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0.223,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0.373,0 +0.333,0.19,0.19,0.8,0,0,0,0.331,0.581,0.581,0,0.322,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0.283,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0.0987,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0.249,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0.0858,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0.296,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.335,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.137,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.395,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.0515,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.481,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.0987,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.0987,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.0601,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.708,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.283,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.296,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.446,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.262,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.258,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.876,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.249,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.0601,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.249,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.528,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.258,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.296,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.567,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.27,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.704,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.373,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.283,0.244 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.532,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.309,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.356,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.567,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.185,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0.5,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.466,0.466,0.5,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.366 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.122 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.244 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.244 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.244 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0696 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.139 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.197 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0986 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.191 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,0.5,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,1,0,0,0,0.424,0.57,0.57,0,0,0 +1,0.116,0.116,1,0,0,0,0.424,0.57,0.57,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0.1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.17 +0.667,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.667,0.208,0.208,1,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.667,0.208,0.208,1,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.667,0.208,0.208,1,0,0,0,0.355,0.612,0.612,0,0,0.0694 +1,0.526,0.526,1,0,0,0,0.549,0.906,0.906,0,0,0.278 +1,0.674,0.674,0.6,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.244 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.192 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.139 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.244 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.366 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.237 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.203 +1,0.727,0.727,1,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,1,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,1,0,0,0,0.831,0.755,0.755,0,0,0.0641 +1,0.638,0.638,1,0,0,0,0.831,0.755,0.755,0,0,0.0962 +1,0.442,0.442,1,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,1,0,0,0,0.64,0.658,0.658,0,0,0.122 +1,0.246,0.246,0.1,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.242 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.0693 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0666 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0333 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.366 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.667,0.36,0.36,0.5,0,0,0,0.486,0.625,0.625,0,0,0 +0.667,0.36,0.36,1,0,0,0,0.486,0.625,0.625,0,0,0 +0.667,0.36,0.36,1,0,0,0,0.486,0.625,0.625,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.505,0.606,0.606,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.505,0.606,0.606,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.505,0.606,0.606,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.505,0.606,0.606,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.505,0.606,0.606,0,0,0 +0.667,0.337,0.337,0.1,0,0,0,0.505,0.606,0.606,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.244 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0.6,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,1,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,1,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,1,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.15,0.15,1,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.15,0.15,1,0,0,0,0.374,0.543,0.543,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.122 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.22 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.594 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.369 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.243 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.194 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.355 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.295 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.226 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.122 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.173 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.24 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,1 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.195 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.142 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.0958 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.0639 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.22 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.122 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.366 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0.1,0,0.3,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,1,0,1,0,0.452,0.759,0.759,0,0.348,0 +0.667,0.367,0.367,1,0,1,0,0.452,0.759,0.759,0,0.567,0 +0.667,0.466,0.466,1,0,1,0,0.584,0.809,0.809,0,0,0 +0.667,0.466,0.466,1,0,1,0,0.584,0.809,0.809,0,0.494,0 +1,0.674,0.674,1,0,0.2,0.1,0.746,0.981,0.981,0,0.197,0 +1,0.674,0.674,1,0,0,1,0.746,0.981,0.981,0,0,0.366 +1,0.674,0.674,1,0,0,1,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,1,0,0,1,0.746,0.981,0.981,0,0,0 +1,0.868,0.868,1,0,0,1,0.887,1,1,0,0,0 +1,0.868,0.868,0.1,0,0,0.6,0.887,1,1,0,0,0 +1,0.868,0.868,0,0,0.8,0,0.887,1,1,0,0.073,0 +1,0.868,0.868,0,0,1,0,0.887,1,1,0,0.27,0 +1,0.868,0.868,0,0,1,0,0.887,1,1,0,0.348,0 +1,0.868,0.868,0,0,1,0,0.887,1,1,0,0.283,0 +1,0.98,0.98,0,0,0.7,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0.6,0.944,0.943,0.943,0,0.249,0 +1,0.98,0.98,0,0,0,1,0.944,0.943,0.943,0,0.236,0 +1,0.98,0.98,0,0,0,1,0.944,0.943,0.943,0,0.137,0.122 +1,0.98,0.98,0,0,0,0.5,0.944,0.943,0.943,0,0,0.244 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.0601,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.73,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.361,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.236,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.335,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0.348,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.217 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.0949 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.236 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.202 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.103 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.206 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0997 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.266 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.122 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.122 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0.488 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0.488 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0.122 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0.488 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0.122 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0.122 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.122 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.488 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.244 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.366 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.122 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0.8,0,0.677,0.822,0.822,0,0.249,0 +0.667,0.67,0.67,0,0,0.7,0,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,0.6,0.715,0.784,0.784,0,0.519,0 +0.667,0.67,0.67,0,0,0,1,0.715,0.784,0.784,0,0,0 +0.667,0.67,0.67,0,0,0,1,0.715,0.784,0.784,0,0,0.366 +0.667,0.67,0.67,0,0,0,1,0.715,0.784,0.784,0,0,0.122 +0.667,0.67,0.67,0,0,0,1,0.715,0.784,0.784,0,0,0 +0.667,0.625,0.625,0,0,0,1,0.753,0.746,0.746,0,0,0 +0.667,0.625,0.625,0,0,0,0.7,0.753,0.746,0.746,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.283 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.283 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.122 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.053,0.053,0,0,0,0,0.396,0.558,0.558,0,0,0 +1,0.053,0.053,0,0,0,0,0.396,0.558,0.558,0,0,0.0657 +1,0.053,0.053,0,0,0,0,0.396,0.558,0.558,0,0,0.328 +1,0.15,0.15,0.5,0,0,0,0.507,0.623,0.623,0,0,0 +1,0.15,0.15,1,0,0,0,0.507,0.623,0.623,0,0,0 +1,0.15,0.15,1,0,0,0,0.507,0.623,0.623,0,0,0 +1,0.15,0.15,0.5,0,0,0,0.507,0.623,0.623,0,0,0.162 +1,0.15,0.15,0,0,0,0,0.507,0.623,0.623,0,0,0 +1,0.15,0.15,0,0,0,0,0.507,0.623,0.623,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0.0611 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.204 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.136 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.139 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.519 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.206 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,1,0,0,0,0.405,0.696,0.696,0,0,0.172 +0.667,0.33,0.33,1,0,0,0,0.405,0.696,0.696,0,0,0.171 +0.667,0.33,0.33,1,0,0,0,0.405,0.696,0.696,0,0,0.205 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.366 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.122 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0671 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.168 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.466 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0635 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,0.5,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.244 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.366 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.244 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.366 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0.2,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,1,0,1,0.887,0.887,0,0.618,0 +1,0.913,0.913,0,0,1,0,1,0.887,0.887,0,0.369,0 +1,0.913,0.913,0,0,0.8,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0.5,1,0.887,0.887,0,0.258,0.122 +1,0.727,0.727,0,0,0,1,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,0,0,0,1,0.972,0.849,0.849,0,0,0 +1,0.501,0.501,0,0,0,1,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,1,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0.2,0.734,0.721,0.721,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.233 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.0691 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.345 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0.0345 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0.1,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0673 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.303 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0324 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.13 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0503 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.201 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.244 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.431 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.122 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,0.5,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.177,0.177,1,0,0,0,0.303,0.593,0.593,0,0,0.122 +0.333,0.177,0.177,1,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0.5,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.488 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.366 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0.5,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,1,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.122 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.122 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.366 +1,0.868,0.868,0,0,0,0,0.887,1,1,0.255,0,0.244 +1,0.868,0.868,0,0.7,0,0,0.887,1,1,0.255,0,0.122 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.5,0,0.122 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.435,0,0 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.522,0,0 +1,0.98,0.98,0,1,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.248,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.496,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.614,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.375,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.397,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0.375,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0.5,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,1,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,1,0,0,0,1,0.887,0.887,0,0,0 +1,0.727,0.727,1,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.727,0.727,1,0,0,0,0.972,0.849,0.849,0.223,0,0 +1,0.727,0.727,1,0.7,0,0,0.972,0.849,0.849,0.223,0,0 +1,0.727,0.727,0.6,1,0,0,0.972,0.849,0.849,0.505,0,0 +1,0.727,0.727,0,1,0,0,0.972,0.849,0.849,0.603,0,0.122 +1,0.275,0.275,0,1,0,0,0.496,0.593,0.593,0.429,0,0 +1,0.246,0.246,0,1,0,0,0.449,0.562,0.562,0.408,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0.37,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0.386,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0.321,0,0.122 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0.168,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0.168,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0.56,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0.69,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0.342,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0.37,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0.277,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0.717,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0.288,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0.288,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0.244 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0674 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.135 +0.667,0.251,0.251,0.5,0,0,0,0.49,0.621,0.621,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.366 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0.244 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0.205 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0.0308 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0.154 +0.667,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.33,0.33,0.6,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.165 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.0992 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.122 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.244 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.244 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.122 +0.333,0.178,0.178,0,0.2,0,0,0.317,0.587,0.587,0.424,0,0 +0.333,0.178,0.178,0,1,0,0,0.317,0.587,0.587,0.462,0,0 +0.333,0.178,0.178,0,1,0,0,0.317,0.587,0.587,0.451,0,0.122 +0.333,0.186,0.186,0,1,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,1,0,0,0.322,0.6,0.6,0.592,0,0 +0.333,0.186,0.186,0,0.5,0,0,0.322,0.6,0.6,0.283,0,0.122 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.208,0.208,0.5,0,0,0,0.355,0.612,0.612,0,0,0.122 +0.333,0.208,0.208,1,0,0,0,0.355,0.612,0.612,0,0,0.366 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.244 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.244 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.122 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.122 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.122 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.122 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0.304,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0.304,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0.353 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0.0707 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,0.3,0,0,0,0.353,0.483,0.483,0,0,0.167 +1,0.114,0.114,1,0,0,0,0.353,0.483,0.483,0,0,0.267 +1,0.114,0.114,1,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,1,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,1,0,0,0,0.353,0.483,0.483,0,0,0.0688 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.172 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.175 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.245 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.406 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.162 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0.5,0,0.338,0.582,0.582,0,0.296,0 +0.667,0.318,0.318,0,0,1,0,0.338,0.582,0.582,0,0,0.122 +0.667,0.318,0.318,0,0,1,0,0.338,0.582,0.582,0,0.223,0 +0.667,0.318,0.318,0,0,1,0,0.338,0.582,0.582,0,0.348,0.488 +0.333,0.184,0.184,0,0,0.9,0,0.298,0.524,0.524,0,0.421,0.244 +0.333,0.185,0.185,0,0,0,0.4,0.257,0.524,0.524,0,0.21,0 +0.333,0.185,0.185,0,0,0,1,0.257,0.524,0.524,0,0.159,0 +0.333,0.185,0.185,0,0,0,1,0.257,0.524,0.524,0,0,0.122 +0.333,0.185,0.185,0,0,0,0.7,0.257,0.524,0.524,0,0.459,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0.354,0.366 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0.217,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0.236,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.366 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.61 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0.3,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.333,0.174,0.174,1,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.298,0.298,1,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,1,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,1,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0.244 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0.413,0,0 +0.667,0.395,0.395,1,1,0,0,0.479,0.672,0.672,0.321,0,0 +0.667,0.395,0.395,1,1,0,0,0.479,0.672,0.672,0.226,0,0 +0.667,0.395,0.395,1,1,0,0,0.479,0.672,0.672,0.226,0,0 +0.667,0.395,0.395,0.8,1,0,0,0.479,0.672,0.672,0.353,0,0.244 +0.667,0.507,0.507,0,0.6,0,0,0.553,0.682,0.682,0,0,0.122 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0.538,0,0.122 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0.571,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0.549,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0.429,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.663,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.234,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.176 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.211 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.488 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.467 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.173 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.0345 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.269 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.279 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.244 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.366 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.244 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.244 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0.8,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.175,0.175,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0.1,0.5,0,0,0.261,0.534,0.534,0.603,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.527,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.5,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.288,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.288,0,0 +0.333,0.171,0.171,0,0.1,0,0,0.261,0.534,0.534,0.321,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0.321,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.115 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.162 +0.667,0.395,0.395,0.3,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0.244 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0.244 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.615 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.164 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.0328 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.114 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.203 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.338 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.135 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.612 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.102 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.237 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.304 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.344 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.435 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.173 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.311 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.162 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0972 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.157 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.164 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.0656 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.463 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.0681 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.244 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.281 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.0651 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.0976 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.171 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.316 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.171,0.171,0,0.5,0,0,0.261,0.534,0.534,0.62,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.516,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.245,0,0.122 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.277,0,0.144 +0.667,0.292,0.292,0,1,0.5,0,0.264,0.602,0.602,0.603,0.0987,0.122 +1,0.409,0.409,0,1,1,0,0.312,0.671,0.671,0.223,0,0.244 +1,0.409,0.409,0,0.6,1,0,0.312,0.671,0.671,0.223,0.451,0.526 +1,0.409,0.409,0.3,0,0.4,0,0.312,0.671,0.671,0,0.292,0.122 +0.667,0.289,0.289,1,0,0,0.9,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,1,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,1,0.294,0.602,0.602,0,0,0 +0.667,0.29,0.29,1,0,0,1,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,1,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,1,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0.3,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.244 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0.3,0,0,0,0.323,0.612,0.612,0,0,0.366 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0.1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0.799,0,0 +0.667,0.326,0.326,0,1,0,0,0.375,0.632,0.632,0.277,0,0 +0.667,0.326,0.326,0,1,0,0,0.375,0.632,0.632,0.554,0,0 +0.667,0.326,0.326,0,1,0,0,0.375,0.632,0.632,0.386,0,0 +0.667,0.395,0.395,0,1,0,0,0.479,0.672,0.672,0.283,0,0 +0.667,0.395,0.395,0,0.6,0,0,0.479,0.672,0.672,0.342,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.366 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0.5,0,0.479,0.672,0.672,0.321,0.283,0 +0.667,0.507,0.507,0,1,1,0,0.553,0.682,0.682,0.391,0.195,0.122 +0.667,0.507,0.507,0,1,1,0,0.553,0.682,0.682,0,0.47,0 +0.667,0.507,0.507,0,1,0.4,0,0.553,0.682,0.682,0.56,0.567,0.122 +0.667,0.507,0.507,0,1,0,0.9,0.553,0.682,0.682,0.25,0.418,0.366 +0.667,0.507,0.507,0,1,0,1,0.553,0.682,0.682,0.304,0.431,0 +1,0.736,0.736,0,1,0,1,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0.1,0,1,0.745,0.745,0.745,0.255,0,0 +1,0.895,0.895,0,0,0,0.7,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.668,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.245,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.245,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0.5,0,0,0.768,0.671,0.671,0.304,0,0 +1,0.807,0.807,0,1,0,0,0.768,0.671,0.671,0.533,0,0 +1,0.807,0.807,0,1,0,0,0.768,0.671,0.671,0.473,0,0 +1,0.807,0.807,0,1,0,0,0.768,0.671,0.671,0.533,0,0 +1,0.807,0.807,0,1,0,0,0.768,0.671,0.671,0.315,0,0 +1,0.5,0.5,0,1,0,0,0.656,0.596,0.596,0.196,0,0 +1,0.5,0.5,0,0.6,0,0,0.656,0.596,0.596,0.196,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0.408,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0.277,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0.174,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0.174,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.391,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.337,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.408,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.522,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.424,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.223,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.62,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.222 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.122 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.0923 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.0923 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.228 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.0958 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.128 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.172 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.141 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.206 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0344 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.154 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +1,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,1,0,0.258,0.465,0.465,0,0.236,0 +0.667,0.0495,0.0495,1,0,0.4,0,0.258,0.465,0.465,0,0.137,0 +0.667,0.171,0.171,1,0,0,0.9,0.261,0.534,0.534,0,0.27,0 +0.667,0.171,0.171,1,0,0,1,0.261,0.534,0.534,0,0.601,0 +0.667,0.171,0.171,1,0,0,1,0.261,0.534,0.534,0,0.202,0 +0.667,0.171,0.171,1,0,0,1,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0.7,0.261,0.534,0.534,0,0.322,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.0129,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.309,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.249,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.309,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.309,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.21,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0.382,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0.309,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +1,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.122 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.555,0.555,0,0,1,0,0.598,0.602,0.602,0,0.532,0 +0.667,0.555,0.555,0,0,0.4,0,0.598,0.602,0.602,0,0.459,0 +0.667,0.35,0.35,0,0,0,0.9,0.524,0.553,0.553,0,0.348,0 +0.667,0.35,0.35,0,0,0,1,0.524,0.553,0.553,0,0.185,0 +1,0.5,0.5,0,0,0,1,0.656,0.596,0.596,0,0.0987,0 +1,0.5,0.5,0,0,0,1,0.656,0.596,0.596,0,0,0.244 +1,0.5,0.5,0,0,0,1,0.656,0.596,0.596,0,0.309,0 +1,0.5,0.5,0,0,0,1,0.656,0.596,0.596,0,0.348,0 +1,0.249,0.249,0,0,0,0.3,0.556,0.537,0.537,0,0.27,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0.309,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0.0601,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0.438,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0.533,0,0 +1,0.124,0.124,0,0,0,0,0.445,0.522,0.522,0,0.206,0 +1,0.124,0.124,0,0,0,0,0.445,0.522,0.522,0,0.567,0 +1,0.124,0.124,0,0,0,0,0.445,0.522,0.522,0,0.283,0.61 +1,0.124,0.124,0,0,0,0,0.445,0.522,0.522,0,0.386,0.122 +1,0.124,0.124,0,0,0,0,0.445,0.522,0.522,0,0.335,0 +1,0.124,0.124,0,0,0,0,0.445,0.522,0.522,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0.506,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0.433,0.122 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0.421,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0.309,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0.361,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0.258,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0.283,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0.258,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0.0601,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0.185,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.283,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.172,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.189,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.468,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.481,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0.3,0,0,0,0.331,0.494,0.494,0,0,0.122 +1,0.147,0.147,1,0,0,0,0.331,0.494,0.494,0,0,0.122 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0.122 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0.9,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0.5,0,0,0.257,0.582,0.582,0.228,0,0 +0.667,0.321,0.321,0,1,0,0,0.257,0.582,0.582,0.457,0,0.176 +0.667,0.321,0.321,0,1,0,0,0.257,0.582,0.582,0.413,0,0.282 +0.667,0.321,0.321,0,1,0,0,0.257,0.582,0.582,0.342,0,0 +0.667,0.321,0.321,0,1,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0.1,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.204 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.415 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.343 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.343 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.244 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.488 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.165 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0.277 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.29,0.29,0,0,1,0,0.316,0.592,0.592,0,0.0601,0 +0.667,0.29,0.29,0,0,1,0,0.316,0.592,0.592,0,0.21,0 +0.667,0.29,0.29,0,0,0.9,0,0.316,0.592,0.592,0,0.506,0.244 +0.667,0.298,0.298,0,0,0,0.4,0.323,0.612,0.612,0,0.519,0.366 +0.667,0.298,0.298,0,0,0,1,0.323,0.612,0.612,0,0.27,0 +0.667,0.298,0.298,0,0,0,1,0.323,0.612,0.612,0,0.296,0.122 +0.667,0.298,0.298,0,0,0,1,0.323,0.612,0.612,0,0.348,0 +0.667,0.298,0.298,0,0,0,1,0.323,0.612,0.612,0,0.348,0 +0.667,0.298,0.298,0,0,0,0.2,0.323,0.612,0.612,0,0.0129,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.185,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.369,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0.8,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0.5,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.244 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.122 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.122 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.366 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0.457,0,0 +0.667,0.635,0.635,0,1,0,0,0.613,0.622,0.622,0.37,0,0 +0.667,0.635,0.635,0,1,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.635,0.635,0,1,0,0,0.613,0.622,0.622,0.332,0,0 +0.667,0.635,0.635,0,1,0,0,0.613,0.622,0.622,0.62,0,0 +0.667,0.555,0.555,0,0.6,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.864,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0.261,0,0.366 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0.56,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0.625,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0.462,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.488 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.153 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.405 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.244 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.244 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.194 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.244 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.513,0 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.577,0 +0.333,0.181,0.181,0,0,1,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,1,0,0.261,0.524,0.524,0,0.0987,0 +0.333,0.181,0.181,0,0,0.4,0,0.261,0.524,0.524,0,0.348,0.488 +0.333,0.181,0.181,0,0,0,0.9,0.261,0.524,0.524,0,0.309,0 +0.333,0.175,0.175,0,0,0,1,0.265,0.529,0.529,0,0.665,0 +0.333,0.175,0.175,0,0,0,1,0.265,0.529,0.529,0,0.644,0 +0.333,0.175,0.175,0,0,0,1,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,1,0.265,0.529,0.529,0,0.464,0 +0.333,0.175,0.175,0,0,0,1,0.265,0.529,0.529,0,0.292,0 +0.333,0.175,0.175,0,0,0,0.3,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.348,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.309,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.258,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.288,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.0258,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.21,0.122 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.258,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.382,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.283,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.249,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.369,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.258,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.0987,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.408,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.258,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.382,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.348,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.073,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.558,0 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.258,0.122 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.618,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.15,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.137,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.137,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.0987,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.395,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.283,0.122 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.567,0.567,0,0.5,0,0,0.59,0.775,0.775,0.451,0.609,0 +1,0.567,0.567,0,1,0,0,0.59,0.775,0.775,0.446,0.124,0 +1,0.567,0.567,0,1,0,0,0.59,0.775,0.775,0.37,0,0 +1,0.736,0.736,0,1,0,0,0.701,0.79,0.79,0.364,0.223,0 +1,0.736,0.736,0,1,0,0,0.701,0.79,0.79,0.255,0.27,0 +1,0.736,0.736,0,1,0,0,0.701,0.79,0.79,0.255,0.159,0 +1,0.736,0.736,0,0.6,0,0,0.701,0.79,0.79,0.582,0.249,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0.364,0.408,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0.603,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.506,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.348,0.373,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.402,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.476,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.353,0.438,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.462,0.665,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.223,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.31,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.533,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0.37,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0.717,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.353,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.543,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.293,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.511,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0.56,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0.315,0,0.122 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0.516,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0.543,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0.511,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.511,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0.8,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0.6,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.333 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.173 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0.3,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0.244 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0.608 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0.122 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.102 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.171 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.244 +0.333,0.185,0.185,0,0.5,0,0,0.257,0.524,0.524,0.321,0,0.244 +0.333,0.185,0.185,0,1,0,0,0.257,0.524,0.524,0.299,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.524,0.524,0.511,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.524,0.524,0.69,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.524,0.524,0.478,0,0 +0.333,0.185,0.185,0,0.1,0,0,0.257,0.524,0.524,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0.3,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0.429,0,0 +0.333,0.171,0.171,1,1,0,0,0.261,0.534,0.534,0.453,0,0 +0.333,0.169,0.169,1,1,0,0,0.276,0.534,0.534,0.226,0,0 +0.333,0.169,0.169,0.4,1,0,0,0.276,0.534,0.534,0.321,0,0 +0.333,0.169,0.169,0,1,0,0,0.276,0.534,0.534,0.424,0,0 +0.333,0.169,0.169,0,1,0,0,0.276,0.534,0.534,0.255,0,0 +0.333,0.169,0.169,0,1,0,0,0.276,0.534,0.534,0.353,0,0 +0.333,0.169,0.169,0,0.1,0,0,0.276,0.534,0.534,0.31,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0.424,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0.315,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0.304,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0.304,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0.364,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0.5,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0.446,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0.761,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0.8,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0.6,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.395,0.395,0,0,1,0,0.479,0.672,0.672,0,0.223,0 +0.667,0.395,0.395,0,0,0.4,0,0.479,0.672,0.672,0,0.0601,0 +0.667,0.395,0.395,0,0,0,0.9,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,1,0.479,0.672,0.672,0,0.309,0 +0.667,0.395,0.395,0,0,0,1,0.479,0.672,0.672,0,0.27,0.244 +0.667,0.395,0.395,0,0,0,0.2,0.479,0.672,0.672,0,0.0129,0.244 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0.137,0.488 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0.236,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.418,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.333,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.567,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.0129,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.335,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.249,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.519,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.459,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.21,0.366 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.223,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.459,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.27,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.742,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0.459,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0.361,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.163 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.13 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.121 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.253 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.166 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.0332 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.185,0.185,1,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0.6,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.244 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.244 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.122 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.122 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.488 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +1,0.736,0.736,0.8,0,0,0,0.701,0.79,0.79,0,0,0.153 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.165 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.197 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.193 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.307 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.0463 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0.8,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.131 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.169 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0676 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.127 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.366 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.171 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.274 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.488 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.672 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.155 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.366 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,1,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0.397,0,0 +1,0.318,0.318,0,1,0,0,0.338,0.582,0.582,0.507,0,0 +1,0.321,0.321,0,1,0,0,0.257,0.582,0.582,0.254,0,0 +1,0.321,0.321,0,1,0,0,0.257,0.582,0.582,0.56,0,0 +1,0.321,0.321,0,1,0,0,0.257,0.582,0.582,0.451,0,0.244 +1,0.456,0.456,0,0.6,0,0,0.256,0.641,0.641,0.658,0,0.42 +1,0.456,0.456,0,0,0,0,0.256,0.641,0.641,0.304,0,0 +1,0.456,0.456,0,0,0,0,0.256,0.641,0.641,0,0,0 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0.38,0,0 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0.364,0,0.164 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0.326,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0.397,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.366 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.473,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.326,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.522,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.424,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.429,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0.62,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.177 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.177 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.366 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.0495,0.0495,0,0.5,0,0,0.258,0.465,0.465,0.446,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.228,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.375,0,0 +1,0.326,0.326,0,1,0,0,0.375,0.632,0.632,0.495,0,0 +1,0.326,0.326,0,1,0,0,0.375,0.632,0.632,0.467,0,0 +1,0.464,0.464,0,0.1,0,0,0.434,0.715,0.715,0,0,0.244 +1,0.464,0.464,0.8,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.464,0.464,0.6,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.244 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0.3,0,0,0,0.79,0.701,0.701,0,0,0.488 +0.667,0.635,0.635,1,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0.6,0,0,0,0.79,0.701,0.701,0,0,0.0852 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.366 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.366 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.17 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.38 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.244 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.332 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.157 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0.3,0,0,0,0.257,0.582,0.582,0,0,0.244 +0.333,0.181,0.181,1,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.312,0.312,1,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,1,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0.5,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.122 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.0988 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.122 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.342 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.0683 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.159 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.0952 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.122 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.354 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.142 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.244 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.244 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.366 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0.3,0,0,0,0.375,0.632,0.632,0,0,0.488 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0.6,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.366 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.122 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.366 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.234 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.122 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.165 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.165 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.169 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.169 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.153 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0306 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,1,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,1,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,1,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0.5,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0.3,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0.1,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.316 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.418 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.0348 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.292,0.292,0.3,0,0,0,0.264,0.602,0.602,0,0,0.244 +0.667,0.292,0.292,1,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.292,0.292,1,0,0,0,0.264,0.602,0.602,0,0,0.346 +0.667,0.292,0.292,0.6,0,0,0,0.264,0.602,0.602,0,0,0.346 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.523 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.488 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.254 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.411 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.0668 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.244 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0.5,0,0.59,0.775,0.775,0,0.073,0 +1,0.736,0.736,0,0,1,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,1,0,0.701,0.79,0.79,0,0.0386,0 +1,0.736,0.736,0,0,1,0,0.701,0.79,0.79,0,0.0386,0 +1,0.736,0.736,0,0,0.9,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0.4,0.701,0.79,0.79,0,0.519,0 +1,0.736,0.736,0,0,0,1,0.701,0.79,0.79,0,0.249,0.366 +1,0.895,0.895,0,0,0,1,0.745,0.745,0.745,0,0,0.244 +1,0.895,0.895,0,0,0,0.7,0.745,0.745,0.745,0,0.494,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.258,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.288,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.348,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.665,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.605,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.73,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.236,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0.554,0.122 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0.234,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0.135,0.366 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.56 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.164 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.0328 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.347 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0.3,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,1,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.245,0.245,1,0.5,0,0,0.405,0.523,0.523,0.359,0,0 +0.667,0.245,0.245,1,1,0,0,0.405,0.523,0.523,0.397,0,0 +0.667,0.245,0.245,1,1,0,0,0.405,0.523,0.523,0.484,0,0 +0.667,0.305,0.305,1,1,0,0,0.435,0.572,0.572,0.489,0,0 +0.667,0.305,0.305,0.5,1,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0.1,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.165 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.244 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.295 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.104 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.24 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.206 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.488 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.524 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.115 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0.3,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.17,0.17,1,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0.1,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.244 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.397,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.359,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0,0,0.168 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.37,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.598,0,0 +1,0.928,0.928,0,1,0,0,0.79,0.701,0.701,0.38,0,0 +1,0.928,0.928,0,1,0,0,0.79,0.701,0.701,0.467,0,0 +1,0.928,0.928,0,0.1,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.13 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.345 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.276 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.068 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.068 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0.439 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0.349 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0.279 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.159 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0317 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0.5,0,0,0.298,0.524,0.524,0.37,0,0.198 +0.333,0.184,0.184,0,1,0,0,0.298,0.524,0.524,0.391,0,0.122 +0.333,0.184,0.184,0,1,0,0,0.298,0.524,0.524,0.272,0,0 +0.333,0.184,0.184,0,1,0,0,0.298,0.524,0.524,0.321,0,0 +0.333,0.184,0.184,0,1,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,1,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0.6,0,0,0.257,0.524,0.524,0.408,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0.489,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0.364,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0.446,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0.321,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0.31,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0.505,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0.413,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0.37,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.31,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.397,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.255,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.488 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.366 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.488 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0.3,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,1,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.244 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.298 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.159 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.127 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.156 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0.576,0,0 +1,0.736,0.736,0,1,0,0,0.701,0.79,0.79,0.533,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0,0,0.182 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.359,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.478,0,0 +1,0.895,0.895,0,0.6,1,0,0.745,0.745,0.745,0,0.335,0 +1,0.895,0.895,0,0,1,0,0.745,0.745,0.745,0,0.369,0 +1,0.895,0.895,0,0,0.9,0,0.745,0.745,0.745,0,0.446,0 +1,0.928,0.928,0,0,0,0.4,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,1,0.79,0.701,0.701,0,0.073,0.122 +1,0.928,0.928,0,0,0,1,0.79,0.701,0.701,0,0,0.244 +1,0.928,0.928,0,0,0,1,0.79,0.701,0.701,0,0.545,0.122 +1,0.928,0.928,0,0,0,1,0.79,0.701,0.701,0,0.309,0 +1,0.928,0.928,0,0,0,1,0.79,0.701,0.701,0,0.0386,0 +1,0.302,0.302,0,0,0,0.8,0.428,0.534,0.534,0,0.0386,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0.0601,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.122 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0.361,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0.0858,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0.309,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0.309,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0.249,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.171 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0.102 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0.534 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0.0325 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0.27 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.366 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.244 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0.3,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.181,0.181,1,0,0,0,0.261,0.524,0.524,0,0,0.244 +0.333,0.175,0.175,1,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.175,0.175,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.488 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0.5,0,0,0.261,0.534,0.534,0.277,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.212,0,0 +0.333,0.171,0.171,0,1,0,0,0.261,0.534,0.534,0.625,0,0.366 +0.333,0.169,0.169,0,1,0,0,0.276,0.534,0.534,0.304,0,0 +0.333,0.169,0.169,0,1,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0.1,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0.5,0,0.276,0.534,0.534,0,0.0258,0.122 +0.333,0.169,0.169,0,0,1,0,0.276,0.534,0.534,0,0,0.122 +0.333,0.17,0.17,0,0,1,0,0.287,0.529,0.529,0,0.506,0 +0.333,0.17,0.17,0,0,0.4,0,0.287,0.529,0.529,0,0.433,0 +0.333,0.17,0.17,0,0,0,0.9,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,1,0.287,0.529,0.529,0,0.21,0 +0.333,0.17,0.17,0,0,0,1,0.287,0.529,0.529,0,0.223,0 +0.333,0.17,0.17,0,0,0,1,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0.7,0.29,0.539,0.539,0,0.481,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.27,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.236,0.366 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.532,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0.0386,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.209 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0523 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.244 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0 +0.667,0.278,0.278,0,0.5,0,0,0.405,0.574,0.574,0.402,0,0 +0.667,0.278,0.278,0,1,0,0,0.405,0.574,0.574,0.38,0,0 +0.667,0.507,0.507,0,1,0,0,0.553,0.682,0.682,0.446,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.228,0,0.309 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0.1,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.462,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.522,0,0.166 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.543,0,0.277 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.277,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.342,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.221,0,0 +1,0.928,0.928,0,0,0.5,0,0.79,0.701,0.701,0.442,0.137,0 +1,0.928,0.928,0,0,0.9,0,0.79,0.701,0.701,0.462,0.0987,0 +1,0.807,0.807,0,0,0,0.4,0.768,0.671,0.671,0.685,0.296,0.351 +1,0.807,0.807,0,0,0,1,0.768,0.671,0.671,0.69,0.27,0.0703 +1,0.807,0.807,0,0,0,1,0.768,0.671,0.671,0,0.386,0 +1,0.807,0.807,0,0,0,1,0.768,0.671,0.671,0,0.309,0 +1,0.807,0.807,0,0,0,1,0.768,0.671,0.671,0,0.258,0.296 +1,0.807,0.807,0,0,0,0.2,0.768,0.671,0.671,0,0,0.105 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.208 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.144 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.161 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.215 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.158 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.0315 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.175,0.175,0,0,1,0,0.265,0.529,0.529,0,0.27,0 +0.333,0.175,0.175,0,0,1,0,0.265,0.529,0.529,0,0.356,0.366 +0.333,0.175,0.175,0,0,0.9,0,0.265,0.529,0.529,0,0.073,0.366 +0.333,0.175,0.175,0,0,0,0.4,0.265,0.529,0.529,0,0.223,0.122 +0.333,0.175,0.175,0,0,0,1,0.265,0.529,0.529,0,0.197,0.122 +0.333,0.175,0.175,0,0,0,1,0.265,0.529,0.529,0,0,0 +0.667,0.292,0.292,0,0,0,1,0.264,0.602,0.602,0,0.369,0 +0.667,0.292,0.292,0,0,0,1,0.264,0.602,0.602,0,0.249,0.122 +0.667,0.292,0.292,0,0,0,0.2,0.264,0.602,0.602,0,0.498,0.122 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0.283,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0.296,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.309,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.263 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.174,0.174,1,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.174,0.174,0.6,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.244 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0.3,0,0,0,0.479,0.672,0.672,0,0,0.486 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.333,0.278,0.278,1,0,0,0,0.405,0.574,0.574,0,0,0 +0.333,0.278,0.278,1,0,0,0,0.405,0.574,0.574,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.299 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +0.667,0.507,0.507,1,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.366 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.162 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.173 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.0345 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0.3,0,0,0,0.346,0.519,0.519,0,0,0.172 +1,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0.0344 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.488 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0,0.0495,0.0495,0,0.5,0,0,0.258,0.465,0.465,0.511,0,0 +0,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.31,0,0 +0,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.473,0,0 +0.333,0.188,0.188,0,1,0,0,0.316,0.549,0.549,0.353,0,0 +0.333,0.188,0.188,0,1,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0.1,0,0,0.316,0.549,0.549,0,0,0.244 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0.44,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0.332,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0.391,0,0.244 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0.435,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.146 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.244 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.244 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.163 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.0325 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.641,0,0.122 +1,0.928,0.928,0,1,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.555,0.555,0,1,0,0,0.598,0.602,0.602,0.511,0,0 +1,0.555,0.555,0,1,0,0,0.598,0.602,0.602,0.38,0,0 +1,0.555,0.555,0,1,0,0,0.598,0.602,0.602,0.462,0,0 +1,0.555,0.555,0,1,0,0,0.598,0.602,0.602,0.527,0,0 +1,0.555,0.555,0,1,0,0,0.598,0.602,0.602,0.321,0,0 +0.667,0.302,0.302,0,0.1,0,0,0.428,0.534,0.534,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.488 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.488 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.283 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.0965 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.491 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.318 +1,0.507,0.507,0.3,0,0,0,0.553,0.682,0.682,0,0,0.122 +1,0.507,0.507,1,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.507,0.507,1,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.507,0.507,0.6,0,0,0,0.553,0.682,0.682,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.366 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0.8,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,1,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0.1,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0.277,0,0 +0.667,0.312,0.312,0,1,0,0,0.264,0.582,0.582,0.359,0,0 +0.667,0.312,0.312,0,1,0,0,0.264,0.582,0.582,0.261,0,0 +0.667,0.312,0.312,0,1,0,0,0.264,0.582,0.582,0.261,0,0 +0.667,0.312,0.312,0,1,0,0,0.264,0.582,0.582,0.75,0,0 +0.667,0.312,0.312,0,0.6,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0.533,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.924,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.457,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.315,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.353,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.174,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0.174,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.366 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.366 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.168 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.223 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.192 +1,0.736,0.736,0.8,0,0,0,0.701,0.79,0.79,0,0,0 +0.667,0.278,0.278,0.6,0,0,0,0.405,0.574,0.574,0,0,0.366 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.122 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.122 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.244 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.122 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.122 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.488 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.102 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.335 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.167 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0864 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.477 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.0325 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0.8,0,0,0,0.261,0.534,0.534,0,0,0.347 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.292,0.292,1,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.29,0.29,1,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,1,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0.8,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.122 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.488 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.244 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0.5,0,0.479,0.672,0.672,0,0.0515,0 +1,0.567,0.567,0,0,1,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,1,0,0.59,0.775,0.775,0,0.614,0 +1,0.567,0.567,0,0,1,0,0.59,0.775,0.775,0,0.378,0 +1,0.567,0.567,0,0,0.9,0,0.59,0.775,0.775,0,0,0 +1,0.736,0.736,0,0.5,0,0.4,0.701,0.79,0.79,0.255,0.0987,0 +1,0.736,0.736,0,1,0,1,0.701,0.79,0.79,0.234,0.27,0.122 +1,0.736,0.736,0,1,0,1,0.701,0.79,0.79,0.321,0.408,0.122 +1,0.736,0.736,0,1,0,1,0.701,0.79,0.79,0.375,0.644,0 +1,0.736,0.736,0,1,0,1,0.701,0.79,0.79,0,0,0.244 +1,0.736,0.736,0,1,0,0.2,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0.6,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.348 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.505 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0701 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.164 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.17 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.34 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0.3,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0.151 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0.0303 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0.5,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.351 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.154 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.143 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.488 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.366 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.333,0.174,0.174,0.8,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,1,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.667,0.298,0.298,1,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0.244 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.488 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.488 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.122 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.565,0,0 +0.667,0.613,0.613,0,1,0,0,0.583,0.652,0.652,0.457,0,0.244 +1,0.928,0.928,0,1,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,1,0,0,0.79,0.701,0.701,0.462,0,0 +1,0.928,0.928,0,1,0,0,0.79,0.701,0.701,0.261,0,0 +1,0.928,0.928,0,0.6,0,0,0.79,0.701,0.701,0.505,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.418,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.366 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.267 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.171 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.0341 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.144 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0.3,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.305,0.305,1,0,0,0,0.435,0.572,0.572,0,0,0.292 +0.667,0.305,0.305,0.6,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.157 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.0314 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.488 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.244 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.141 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.389 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.584 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.326 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.61 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.488 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.488 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,1,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0.6,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.399 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.174 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.153 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0.478 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0.2 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0.244 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.337 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.589 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.122 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0.5,0,0.265,0.529,0.529,0,0.223,0 +0.333,0.175,0.175,0,0,1,0,0.265,0.529,0.529,0,0,0.488 +0.333,0.175,0.175,0,0,1,0,0.265,0.529,0.529,0,0.433,0 +0.333,0.175,0.175,0,0,0.4,0,0.265,0.529,0.529,0,0.258,0 +0.333,0.175,0.175,0,0,0,0.9,0.265,0.529,0.529,0,0.0987,0 +0.333,0.171,0.171,0,0,0,1,0.261,0.534,0.534,0,0.309,0 +0.333,0.171,0.171,0,0,0,1,0.261,0.534,0.534,0,0.185,0 +0.333,0.171,0.171,0,0,0,0.2,0.261,0.534,0.534,0,0.112,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.258,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.223,0.122 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.0601,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.223,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.361,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.223,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.421,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.395,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.0987,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.322,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0.3,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.174,0.174,1,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.188,0.188,1,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,1,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,1,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,1,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0.5,0,0,0,0.316,0.549,0.549,0,0,0.244 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.122 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.222,0.222,0.8,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.222,0.222,1,0,0,0,0.368,0.569,0.569,0,0,0.122 +1,0.567,0.567,1,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,0.5,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.273 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0.3,0,0,0,0.435,0.572,0.572,0,0,0.163 +1,0.305,0.305,1,0,0,0,0.435,0.572,0.572,0,0,0.229 +1,0.305,0.305,0.1,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.31 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0.5,0,0.298,0.524,0.524,0,0.258,0.17 +0.667,0.184,0.184,0,0,1,0,0.298,0.524,0.524,0,0,0.34 +0.667,0.321,0.321,0,0,1,0,0.257,0.582,0.582,0,0.0601,0.102 +0.667,0.321,0.321,0,0,1,0,0.257,0.582,0.582,0,0.249,0 +0.667,0.321,0.321,0,0,0.9,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0.4,0.257,0.582,0.582,0,0.112,0 +0.667,0.321,0.321,0,0,0,1,0.257,0.582,0.582,0,0.21,0.148 +0.667,0.321,0.321,0,0,0,1,0.257,0.582,0.582,0,0,0.0297 +0.667,0.312,0.312,0,0,0,1,0.264,0.582,0.582,0,0.335,0 +0.667,0.312,0.312,0,0,0,1,0.264,0.582,0.582,0,0.395,0 +0.667,0.312,0.312,0,0,0,0.2,0.264,0.582,0.582,0,0.446,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0.275,0.139 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.286 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.164 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.187 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.173 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.313 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.352 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.297 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.105 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0.3,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,1,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.298,0.298,1,0,1,0,0.323,0.612,0.612,0,0.395,0 +0.667,0.298,0.298,0.6,0,1,0,0.323,0.612,0.612,0,0.309,0 +1,0.422,0.422,0,0,0.9,0,0.356,0.686,0.686,0,0,0 +1,0.422,0.422,0,0,0,0.4,0.356,0.686,0.686,0,0.618,0 +1,0.422,0.422,0,0,0,1,0.356,0.686,0.686,0,0.27,0 +1,0.422,0.422,0,0,0,1,0.356,0.686,0.686,0,0,0 +1,0.464,0.464,0,0,0,0.7,0.434,0.715,0.715,0,0.418,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0.496,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0.408,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0.137,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0.27,0.122 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.348,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.468,0.122 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.429,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.249,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.249,0.61 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.223,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.249,0.366 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.524,0.488 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.365,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.0386,0.209 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.541,0.244 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.335,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.366 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.488 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.23 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.3,0.3,1,0,0,0,0.271,0.592,0.592,0,0,0 +1,0.3,0.3,1,0,0,0,0.271,0.592,0.592,0,0,0 +1,0.3,0.3,1,0,0,0,0.271,0.592,0.592,0,0,0 +1,0.426,0.426,1,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0.185 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0.177 +1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0.0355 +1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0 +1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0 +1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0 +1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0.25 +1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0 +1,0.41,0.41,0,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.41,0.41,0,0,0,0,0.345,0.656,0.656,0,0,0.068 +1,0.41,0.41,0,0,0,0,0.345,0.656,0.656,0,0,0.272 +1,0.41,0.41,0,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.41,0.41,0.8,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.41,0.41,0.6,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0.324 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0.122 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0.127 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.523 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.299 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.161 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.0642 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.2 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.61 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.244 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.253 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.366 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.473,0.473,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.353,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.353,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.353,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.164 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.131 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.116 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.426,0.426,0.8,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.426,0.426,1,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.426,0.426,1,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.426,0.426,0.1,0,0,0,0.278,0.656,0.656,0,0,0.34 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.29,0.29,0,0,1,0,0.316,0.592,0.592,0,0.27,0.306 +0.667,0.29,0.29,0,0,0.4,0,0.316,0.592,0.592,0,0.197,0 +0.667,0.298,0.298,0,0,0,0.9,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,1,0.323,0.612,0.612,0,0.0129,0 +0.667,0.298,0.298,0,0,0,1,0.323,0.612,0.612,0,0.369,0.171 +0.667,0.298,0.298,0,0,0,1,0.323,0.612,0.612,0,0.073,0.19 +0.667,0.298,0.298,0,0,0,0.7,0.323,0.612,0.612,0,0.309,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.369,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.137,0.326 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.236,0.309 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.519,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.073,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.0987,0.128 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0.249,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0.361,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0.283,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0.137,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0.073,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0.309,0 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0.0258,0 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0.137,0 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0.386,0.122 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.244 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0.335,0.122 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0.296,0.244 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0.406,0.157 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0.384,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.122 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0.275,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0.343,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.122 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.366 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.308 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0816,0.0816,0.3,0,0,0,0.305,0.474,0.474,0,0,0.157 +1,0.0816,0.0816,1,0,0,0,0.305,0.474,0.474,0,0,0.0941 +1,0.342,0.342,1,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.342,0.342,1,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.342,0.342,1,0,0,0,0.478,0.551,0.551,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.205 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.161 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.0642 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.168 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.394 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.156 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.345 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.276 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.241 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0991 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.254 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.169 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.169 +0.333,0.171,0.171,0.8,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.292,0.292,1,0,0,0,0.264,0.602,0.602,0,0,0.153 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0.0612 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0.122 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0 +0.333,0.169,0.169,1,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0.5,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.366 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.366 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.696,0,0.366 +1,0.928,0.928,0,1,0,0,0.79,0.701,0.701,0.179,0,0.122 +1,0.635,0.635,0,1,0,0,0.613,0.622,0.622,0.179,0,0 +1,0.635,0.635,0,1,0,0,0.613,0.622,0.622,0.332,0,0 +1,0.635,0.635,0,1,0,0,0.613,0.622,0.622,0.505,0,0 +1,0.555,0.555,0,1,0,0,0.598,0.602,0.602,0.418,0,0 +1,0.555,0.555,0,1,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0.1,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.174 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.174 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.488 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.33 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.033 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.159 +1,0.342,0.342,0,0,0,0,0.478,0.551,0.551,0,0,0.0637 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.433,0.433,0,0,0.5,0,0.523,0.626,0.626,0,0.283,0 +1,0.433,0.433,0,0,1,0,0.523,0.626,0.626,0,0,0.19 +0.667,0.305,0.305,0,0,1,0,0.435,0.572,0.572,0,0.249,0 +0.667,0.305,0.305,0,0,0.4,0,0.435,0.572,0.572,0,0.137,0 +0.667,0.305,0.305,0,0,0,0.9,0.435,0.572,0.572,0,0.0258,0 +0.667,0.318,0.318,0,0,0,1,0.338,0.582,0.582,0,0.0386,0.254 +0.667,0.318,0.318,0,0,0,1,0.338,0.582,0.582,0,0.236,0 +0.667,0.318,0.318,0,0,0,1,0.338,0.582,0.582,0,0,0 +0.667,0.318,0.318,0,0,0,0.7,0.338,0.582,0.582,0,0.236,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0.0987,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0.382,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0.618,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0.283,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0.296,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0.356,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0.0601,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0.0601,0.185 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0.361,0.488 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0.361,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0.309,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0.27,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0.27,0.244 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0.18,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.476,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.605,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.309,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.159,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.609,0.244 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.309,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.481,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.258,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.395,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.137,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.481,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.279,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.155,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.159,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.309,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.236,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.283,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.444,0.244 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.148,0.366 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.335,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.137,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.236,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.0386,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.124,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.395,0.395,0.8,0,0,0,0.479,0.672,0.672,0,0.685,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0.5,0.366 +1,0.567,0.567,1,0,0,0,0.59,0.775,0.775,0,0.296,0 +1,0.567,0.567,1,0,0,0,0.59,0.775,0.775,0,0.446,0 +1,0.567,0.567,1,0,0,0,0.59,0.775,0.775,0,0.159,0.488 +1,0.567,0.567,1,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0.431,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0.457,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0.588,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0.219,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0.343,0.122 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.366 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.524 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.0634 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0.317 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.807,0.807,1,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,1,0,0,0,0.768,0.671,0.671,0,0,0.17 +1,0.807,0.807,1,0,0,0,0.768,0.671,0.671,0,0,0.482 +1,0.555,0.555,1,0,0,0,0.598,0.602,0.602,0,0,0.488 +1,0.555,0.555,1,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.555,0.555,0.4,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.247 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.244 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.102 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.17 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.198 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.141 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.0706 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.157 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0314 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.332 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.488 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.366 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.366 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.17,0.17,0.1,0,0,0,0.287,0.529,0.529,0,0,0.366 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0.8,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0.5,0,0,0.745,0.745,0.745,0.435,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.386,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.658,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0.462,0,0 +1,0.895,0.895,0,1,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.895,0.895,0,0.1,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.366 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.366 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0.289 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0.334 +1,0.0525,0.0525,0,0,0,0,0.331,0.473,0.473,0,0,0.0625 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0.221 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,0.3,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.114,0.114,1,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0.324 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0.0324 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0.144 +1,0.245,0.245,1,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.305,0.305,1,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.305,0.305,1,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0.173 +0.333,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0.301 +0.333,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0.0893 +0.333,0.184,0.184,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,1,0,0,0,0.298,0.524,0.524,0,0,0.122 +0.333,0.184,0.184,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,1,0,0,0,0.298,0.524,0.524,0,0,0.297 +0.333,0.184,0.184,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.184,0.184,0.7,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.366 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.244 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.667,0.395,0.395,0.8,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0.446,0,0 +1,0.567,0.567,1,1,0,0,0.59,0.775,0.775,0.446,0,0.122 +1,0.567,0.567,1,1,0,0,0.59,0.775,0.775,0,0,0 +1,0.567,0.567,1,1,0,0,0.59,0.775,0.775,0.587,0,0 +0.667,0.395,0.395,1,1,0,0,0.479,0.672,0.672,0.478,0,0 +0.667,0.507,0.507,1,1,0,0,0.553,0.682,0.682,0.478,0,0 +0.667,0.507,0.507,1,1,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.507,0.507,0.9,0.1,0,0,0.553,0.682,0.682,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0.804,0,0.252 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0.554,0,0.122 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0.56,0,0.122 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.446,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.326,0,0 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.522,0,0 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.418,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0.277,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.122 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0.332,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0.413,0,0.122 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0.679,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.467,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.652,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.297 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.244 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.366 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.165 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0661 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0.5,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.222,0.222,0.3,0,0,0,0.368,0.569,0.569,0,0,0.244 +0.333,0.222,0.222,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.736,0.736,0.9,0,0,0,0.701,0.79,0.79,0,0,0.122 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.122 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.122 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.635,0.635,0.3,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.635,0.635,1,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.555,0.555,0.1,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.163 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.243 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.347 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.0694 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.177 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.142 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.314 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.167 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.133 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.193 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.128 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0.186 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0.275 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0.17 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0 +1,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.122 +1,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +1,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +1,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +1,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +1,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +1,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.122 +1,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +1,0.29,0.29,0.8,0,0,0,0.316,0.592,0.592,0,0,0 +1,0.29,0.29,1,0,0,0,0.316,0.592,0.592,0,0,0.122 +1,0.29,0.29,1,0,0,0,0.316,0.592,0.592,0,0,0.244 +1,0.29,0.29,1,0,0,0,0.316,0.592,0.592,0,0,0 +1,0.29,0.29,1,0,0,0,0.316,0.592,0.592,0,0,0 +1,0.174,0.174,1,0,0,0,0.29,0.539,0.539,0,0,0 +1,0.174,0.174,1,0,0,0,0.29,0.539,0.539,0,0,0 +1,0.174,0.174,0.5,0,0,0,0.29,0.539,0.539,0,0,0 +1,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +1,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +1,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +1,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +1,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +1,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +1,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.244 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.366 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.122 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.366 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.244 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.333 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.488 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.244 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0.172 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.13 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.134 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.323 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.276 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.103 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.102 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.34 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.102 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0914 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0305 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.163 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0.6,0,0,0,0.256,0.581,0.581,0,0,0.25 +1,0.299,0.299,0.8,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.122 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.103 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.191 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.264 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0989 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.488 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.366 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.366 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.61 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.319 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.122 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.488 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.101 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.202 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.129 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.0322 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.366 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.333,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0 +0.333,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.122 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.333,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0 +0.333,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.333,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.343 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.386 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.244 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.245 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.103 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,1,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,1,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0.4,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0.3,0,0,0,0.404,0.521,0.521,0,0,0.161 +0.667,0.143,0.143,1,0,0,0,0.331,0.493,0.493,0,0,0.161 +0.667,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0.9,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.488 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.245 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0.5,0,0,0.26,0.523,0.523,0.478,0,0.101 +0.333,0.17,0.17,0,1,0,0,0.26,0.523,0.523,0.397,0,0 +0.333,0.17,0.17,0,1,0,0,0.26,0.523,0.523,0.435,0,0 +0.333,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.223,0,0 +0.333,0.164,0.164,0,0.9,0,0,0.264,0.528,0.528,0.571,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.614,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.462,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.332,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.31,0,0 +0.333,0.16,0.16,0,1,0,0,0.26,0.533,0.533,0.299,0,0 +0.333,0.16,0.16,0,1,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,1,0,0,0.26,0.533,0.533,0.342,0,0 +0.333,0.16,0.16,0,1,0,0,0.26,0.533,0.533,0.391,0,0.122 +0.333,0.159,0.159,0,0.4,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0.516,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0.435,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0.489,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0.261,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0.755,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0.397,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0.37,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0.473,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0.293,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0.826,0,0 +1,0.379,0.379,0,0,0,0,0.355,0.683,0.683,0.28,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0.28,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0.592,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0.212,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0.467,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.244 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0.353,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0.467,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0.408,0,0 +1,0.291,0.291,0.8,0,0,0,0.477,0.67,0.67,0.44,0,0 +1,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0.166,0,0.244 +1,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0.166,0,0.122 +1,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0.366 +1,0.339,0.339,1,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.339,0.339,0.2,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.244 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.244 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.488 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.159 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.34 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.223 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.0318 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.258 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.339 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.442 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0.0341 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0.177 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.345 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.148 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.34 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0679 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.185 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.123 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.277 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.175 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.35 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0.3,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.159,0.159,1,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.316,0.548,0.548,0,0,0.244 +0.333,0.162,0.162,0.9,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.334 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.167 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.366 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.35 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0.147 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.266 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.527 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.19 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.244 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.138 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.345 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.191 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.154 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.2 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0499 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.345 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.155 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.062 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.263 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.0987 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.303 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.0321 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.571 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.169 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.122 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.348 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.47 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0348 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.503 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.488 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.244 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.61 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.244 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.289 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.429,0.429,0.8,0,0,0,0.581,0.65,0.65,0,0,0.0313 +0.667,0.429,0.429,1,0,0,0,0.581,0.65,0.65,0,0,0.156 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.336 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.134 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.16 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0641 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.197 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.162 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0969 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.176 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.105 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.243 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.106 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.283 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0.3,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,1,0,0,0,0.322,0.61,0.61,0,0,0.244 +0.667,0.274,0.274,0.1,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.244 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.244 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.366 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.261,0,0.122 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.408,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0,0,0 +1,0.619,0.619,0,0.4,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0.3,0,0,0,0.742,0.742,0.742,0,0,0.104 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.382 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.167 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.333 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.0333 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.783,0.783,0.6,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.366 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.301,0.301,0,0,0.3,0,0.337,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,1,0,0.256,0.581,0.581,0,0.137,0 +1,0.299,0.299,0,0,0.2,0.1,0.256,0.581,0.581,0,0.408,0 +1,0.299,0.299,0,0,0,1,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0.3,0.256,0.581,0.581,0,0.296,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0.618,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0.0386,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0.433,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0.15,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0.395,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.418,0,0.244 +0.333,0.16,0.16,0,0.8,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,1,0,0,0.26,0.533,0.533,0.587,0,0 +0.333,0.16,0.16,0,1,0,0,0.26,0.533,0.533,0.359,0,0 +0.333,0.16,0.16,0,1,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,1,0.8,0,0.26,0.533,0.533,0,0.322,0 +0.333,0.16,0.16,0,1,1,0,0.26,0.533,0.533,0,0,0 +1,0.269,0.269,0,0.1,1,0,0.293,0.6,0.6,0,0.532,0 +1,0.269,0.269,0,0,1,0,0.293,0.6,0.6,0,0.519,0 +1,0.269,0.269,0,0,0.8,0,0.293,0.6,0.6,0,0,0 +1,0.269,0.269,0,0,0,0.5,0.293,0.6,0.6,0,0.15,0.122 +1,0.269,0.269,0,0,0,1,0.293,0.6,0.6,0,0.0258,0.488 +1,0.269,0.269,0,0,0,1,0.293,0.6,0.6,0,0,0 +1,0.268,0.268,0,0,0,1,0.315,0.591,0.591,0,0.468,0 +1,0.268,0.268,0,0,0,0.9,0.315,0.591,0.591,0,0.361,0 +1,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.122 +1,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0.446,0 +1,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +1,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0.614,0,0 +1,0.412,0.412,0,0.8,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,1,0,0,0.587,0.772,0.772,0.484,0,0 +1,0.412,0.412,0,1,0,0,0.587,0.772,0.772,0.418,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.31,0,0.122 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0,0,0.244 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.495,0,0 +1,0.484,0.484,0,0.1,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.576,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.359,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.402,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.283 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.106 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.471 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.507 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.122 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.366 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.274 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.342 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.101 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.259 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0971 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.105 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.105 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.261 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0326 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.304 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0.1,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,1,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.667,0.16,0.16,1,0,0,0,0.26,0.533,0.533,0,0,0.366 +1,0.271,0.271,0.7,0,0,0,0.263,0.6,0.6,0,0,0 +1,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +1,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +1,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +1,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.122 +1,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +1,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.104 +1,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.487 +1,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +1,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.102 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.204 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.488 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.167 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0.1,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0.244 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0.8,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.488 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.488 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.109 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.163 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.0652 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.164 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.229 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.434 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.163 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0976 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.122 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.488 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0.3,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,1,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.17,0.17,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0.8,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.488 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.366 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0.3,0,0,0,0.587,0.772,0.772,0,0,0.175 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0.175 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0.243 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0.488 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0.122 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0.653 +1,0.484,0.484,0.7,0,0,0,0.698,0.787,0.787,0,0,0.254 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.354 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.0354 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.62,0,0.177 +1,0.619,0.619,0,1,0,0,0.742,0.742,0.742,0.38,0,0.177 +1,0.783,0.783,0,1,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,1,0,0,0.787,0.698,0.698,0.386,0,0.244 +1,0.783,0.783,0,1,0,0,0.787,0.698,0.698,0.658,0,0.401 +1,0.783,0.783,0,1,1,0,0.787,0.698,0.698,0,0.0258,0.397 +1,0.783,0.783,0,0.9,1,0,0.787,0.698,0.698,0.674,0.249,0 +1,0.783,0.783,0,0,1,0,0.787,0.698,0.698,0.321,0,0 +1,0.88,0.88,0,0,0.1,0.2,0.765,0.668,0.668,0.321,0.236,0 +1,0.88,0.88,0,0,0,1,0.765,0.668,0.668,0.707,0,0.289 +1,0.88,0.88,0,0,0,1,0.765,0.668,0.668,0.413,0,0.266 +1,0.88,0.88,0,0,0,1,0.765,0.668,0.668,0.261,0,0 +1,0.88,0.88,0,0,0,1,0.765,0.668,0.668,0.353,0,0 +1,0.603,0.603,0,0,0,1,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0.7,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.156 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.172 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.172 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.331 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.132 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.162 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.174 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.203 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.203 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.254 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.488 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0.8,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,1,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,1,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,1,0,0,0,0.316,0.548,0.548,0,0,0.205 +0.667,0.162,0.162,0.4,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0.3,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.667,0.162,0.162,1,0,0,0,0.316,0.548,0.548,0,0,0 +1,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0.488 +1,0.291,0.291,0.9,0,0,0,0.477,0.67,0.67,0,0,0.244 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.244 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.122 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.122 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.167 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.456 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.212 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.184 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.046 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.105 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.14 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.224 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.164 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.22 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.283 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.488 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.366 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.295 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.313 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.366 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.335 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.0669 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.488 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.278 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0697 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.349 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0349 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.854 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0.538,0,0 +0.333,0.159,0.159,0,1,0,0,0.29,0.538,0.538,0.576,0,0 +0.333,0.159,0.159,0,1,0,0,0.29,0.538,0.538,0.288,0,0 +0.333,0.159,0.159,0,1,0,0,0.29,0.538,0.538,0.478,0,0 +0.667,0.269,0.269,0,1,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0.4,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0.337,0,0 +0.333,0.17,0.17,0,1,0,0,0.368,0.568,0.568,0.56,0,0 +0.667,0.291,0.291,0,1,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,1,0,0,0.477,0.67,0.67,0.413,0,0.122 +0.667,0.291,0.291,0,1,0,0,0.477,0.67,0.67,0.543,0,0 +0.667,0.339,0.339,0,0.4,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0.3,0,0,0,0.551,0.68,0.68,0,0,0.26 +0.667,0.339,0.339,1,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.154 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.222 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.353 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0.2,0,0,0,0.787,0.698,0.698,0,0,0.406 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.353 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.122 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0518,0.0518,1,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.0518,0.0518,1,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.0518,0.0518,1,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.0518,0.0518,1,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.0518,0.0518,1,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.0518,0.0518,0.7,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.57 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.171 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.0937 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.0625 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0.3,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0.122 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0.175 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0.035 +0.333,0.175,0.175,1,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0.6,0,0,0,0.297,0.523,0.523,0,0,0.143 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0.3,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,1,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0.1,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.61 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.488 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.366 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0.3,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0.5,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.175 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.297 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.244 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.366 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.122 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.122 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0964 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0964 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.27 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.203 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0.1,0,0,0,0.345,0.518,0.518,0,0,0.135 +0.667,0.175,0.175,1,0,0,0,0.297,0.523,0.523,0,0,0.271 +0.667,0.175,0.175,0.3,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0.565,0,0 +0.667,0.175,0.175,0,0.8,0,0,0.297,0.523,0.523,0.283,0,0 +0.667,0.175,0.175,0,1,0,0,0.297,0.523,0.523,0.402,0,0 +0.667,0.175,0.175,0,1,0,0,0.297,0.523,0.523,0.533,0,0 +0.667,0.299,0.299,0,1,0,0,0.256,0.581,0.581,0.685,0,0 +0.667,0.299,0.299,0,0.6,0,0,0.256,0.581,0.581,0.408,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0.299,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0.348,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0.277,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0.266,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0.255,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0.435,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0.342,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.424,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.266,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.266,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.418,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.533,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.418,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.451,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.272,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.408,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.473,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0.6,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,1,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0.6,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.366 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.122 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.488 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.244 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.249,0.249,0,0,0,0,0.554,0.534,0.534,0,0,0 +1,0.249,0.249,0,0,0,0,0.554,0.534,0.534,0,0,0 +1,0.249,0.249,0,0,0,0,0.554,0.534,0.534,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.102 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.34 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0.1,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.424,0.424,1,0,0,0,0.255,0.638,0.638,0,0,0 +1,0.424,0.424,1,0,0,0,0.255,0.638,0.638,0,0,0 +1,0.424,0.424,0.7,0,0,0,0.255,0.638,0.638,0,0,0 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0 +1,0.424,0.424,0,0.3,0,0,0.255,0.638,0.638,0.342,0,0 +1,0.424,0.424,0,1,0,0,0.255,0.638,0.638,0.402,0,0 +1,0.411,0.411,0,1,0,0,0.266,0.638,0.638,0.397,0,0 +1,0.411,0.411,0,1,0,0,0.266,0.638,0.638,0.28,0,0 +0.667,0.291,0.291,0,1,0,0,0.263,0.581,0.581,0.28,0,0 +0.667,0.291,0.291,0,0.1,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0.478,0,0.122 +0.333,0.159,0.159,0,0.8,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,1,0,0,0.275,0.533,0.533,0.424,0,0 +0.333,0.159,0.159,0,1,0,0,0.275,0.533,0.533,0.37,0,0 +0.333,0.159,0.159,0,1,0,0,0.286,0.528,0.528,0.462,0,0 +0.333,0.159,0.159,0,0.6,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0.435,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0.342,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0.505,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0.359,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0.457,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.488 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.366 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.61 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.122 +1,0.412,0.412,0.6,0,0,0,0.587,0.772,0.772,0,0,0.488 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0.244 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0.6,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0.6,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.488 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.732 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.366 +1,0.88,0.88,1,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,1,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0.4,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.0936 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.4 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.488 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.488 +0.667,0.17,0.17,0,0,0.5,0,0.368,0.568,0.568,0,0.0129,0 +0.667,0.17,0.17,0,0,1,0,0.368,0.568,0.568,0,0.236,0 +1,0.291,0.291,0,0,0,0.3,0.477,0.67,0.67,0,0.421,0 +1,0.291,0.291,0,0,0,1,0.477,0.67,0.67,0,0.283,0 +1,0.291,0.291,0,0,0,1,0.477,0.67,0.67,0,0,0 +1,0.339,0.339,0,0,0,1,0.551,0.68,0.68,0,0.322,0 +1,0.339,0.339,0,0,0,1,0.551,0.68,0.68,0,0.309,0 +1,0.339,0.339,0,0,0,1,0.551,0.68,0.68,0,0.309,0.244 +1,0.339,0.339,0,0,0,1,0.551,0.68,0.68,0,0.137,0 +1,0.339,0.339,0,0,0,1,0.551,0.68,0.68,0,0.283,0.488 +1,0.339,0.339,0,0,0,0.1,0.551,0.68,0.68,0,0.283,0.122 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.348,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.296,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.519,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.421,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.618,0.366 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0.0987,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0.378,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0.189,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.538,0.538,0.3,0,0,0,0.61,0.62,0.62,0,0,0.122 +1,0.538,0.538,1,0,0,0,0.61,0.62,0.62,0,0,0.244 +1,0.88,0.88,0.1,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.244 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.244 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.488 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.23 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.154 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0309 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.175,0.175,0.1,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.122 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,1,0,0.264,0.528,0.528,0,0.283,0 +0.333,0.164,0.164,0,0,0.5,0,0.264,0.528,0.528,0,0.249,0 +0.333,0.164,0.164,0,0,0,0.8,0.264,0.528,0.528,0,0.223,0 +0.333,0.164,0.164,0,0,0,1,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,1,0.264,0.528,0.528,0,0.0129,0 +0.333,0.164,0.164,0,0,0,1,0.264,0.528,0.528,0,0.296,0 +0.333,0.16,0.16,0,0,0,0.6,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0.3,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.333,0.16,0.16,1,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0.5,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.488 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.248 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.172 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.191 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.189 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.244 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.244 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.244 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.122 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.244 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.244 +1,0.538,0.538,0,0.5,0,0,0.61,0.62,0.62,0.364,0,0.488 +1,0.538,0.538,0,1,0,0,0.61,0.62,0.62,0.37,0,0.122 +1,0.538,0.538,0,1,0,0,0.61,0.62,0.62,0.462,0,0 +1,0.538,0.538,0,1,0,0,0.61,0.62,0.62,0.69,0,0 +1,0.538,0.538,0,0.9,0,0,0.61,0.62,0.62,0,0,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.732 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.195 +1,0.0798,0.0798,0.3,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,1,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.11,0.11,1,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,1,0,0,0,0.352,0.482,0.482,0,0,0.164 +1,0.11,0.11,0.9,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.324 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.204 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.102 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.231 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.167 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0.5,0,0,0.257,0.523,0.523,0.353,0,0 +0.333,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.223,0,0.122 +0.333,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.5,0,0 +0.333,0.17,0.17,0,1,0,0,0.26,0.523,0.523,0.31,0,0 +0.333,0.17,0.17,0,0.9,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0.3,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0.3,0,0,0,0.263,0.6,0.6,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.61 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.541,0 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.309,0 +0.667,0.339,0.339,0,0,1,0,0.551,0.68,0.68,0,0.369,0 +0.667,0.339,0.339,0,0,0.1,0.2,0.551,0.68,0.68,0,0.369,0 +0.667,0.339,0.339,0,0,0,1,0.551,0.68,0.68,0,0.223,0 +0.667,0.339,0.339,0,0,0,1,0.551,0.68,0.68,0,0,0.244 +0.667,0.429,0.429,0,0,0,1,0.581,0.65,0.65,0,0.532,0.122 +0.667,0.429,0.429,0,0,0,1,0.581,0.65,0.65,0,0.296,0 +0.667,0.429,0.429,0,0,0,1,0.581,0.65,0.65,0,0.433,0 +0.667,0.429,0.429,0,0,0,0.7,0.581,0.65,0.65,0,0.571,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.567,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.223,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.348,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.369,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.124,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.356,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.296,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.244 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,1,0,0,0,0.404,0.521,0.521,0,0,0.219 +1,0.236,0.236,0.5,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.122 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.354 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.0354 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.169 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.305 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.248 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.244 +1,0.484,0.484,0,0.5,0,0,0.698,0.787,0.787,0.402,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.38,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.391,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.424,0,0 +1,0.484,0.484,0.3,0.9,0,0,0.698,0.787,0.787,0.31,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0.31,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0.5,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.176 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.278 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.157 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.0629 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,1,0,0,0,0.404,0.521,0.521,0,0,0.246 +1,0.236,0.236,1,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,1,0,0,0,0.404,0.521,0.521,0,0,0 +0.667,0.143,0.143,1,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0.3,0,0,0,0.331,0.493,0.493,0,0,0.168 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0673 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.35 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.366 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.366 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,0,0.5,0,0,0.477,0.67,0.67,0.277,0,0 +0.667,0.291,0.291,0,1,0,0,0.477,0.67,0.67,0.386,0,0 +1,0.412,0.412,0,1,0,0,0.587,0.772,0.772,0.571,0,0 +1,0.412,0.412,0,1,0,0,0.587,0.772,0.772,0.332,0,0 +1,0.412,0.412,0,0.9,0,0,0.587,0.772,0.772,0.359,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.516,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.326,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.337,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.174,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.174,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.587,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.375,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.364,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.413,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.418,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.538,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.31,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.366 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.227 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.366 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.366 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.106 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.353 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.106 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.667,0.279,0.279,0.6,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0.8,0,0,0,0.271,0.591,0.591,0,0,0 +1,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +1,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +1,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.366 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.244 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.488 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.366 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0.6,0,0,0,0.374,0.63,0.63,0,0,0.488 +0.667,0.274,0.274,1,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0.122 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0.198 +1,0.412,0.412,0.6,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.0626 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.188 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.105 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.35 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.315 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.0985 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.164 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.366 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.104 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.104 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.103 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.205 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +1,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +1,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +1,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +1,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +1,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.366 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.122 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.122 +0.667,0.291,0.291,0.6,0,0,0,0.477,0.67,0.67,0,0,0.122 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.484,0.484,0.2,0.3,0,0,0.698,0.787,0.787,0.641,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.364,0,0.122 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.342,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.293,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0,0,0.122 +1,0.619,0.619,0,1,0,0,0.742,0.742,0.742,0.413,0,0.122 +1,0.619,0.619,0,0.6,0,0,0.742,0.742,0.742,0.424,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.239,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.603,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.283,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.418,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.25,0,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.609,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.533,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.266,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.342,0,0.122 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.81,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.435,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.293,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.527,0,0.366 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0.495,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0.277,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0.543,0,0.366 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0.44,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0.391,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0.505,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0.166,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0.166,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.33 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.132 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.249,0 +1,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,0,0,1,0,0.404,0.521,0.521,0,0.446,0.296 +1,0.236,0.236,0.3,0,0.6,0,0.404,0.521,0.521,0,0.0601,0 +1,0.236,0.236,1,0,0,0.7,0.404,0.521,0.521,0,0,0 +1,0.417,0.417,1,0,0,1,0.521,0.623,0.623,0,0.532,0.0329 +1,0.417,0.417,1,0,0,1,0.521,0.623,0.623,0,0.361,0.197 +1,0.417,0.417,1,0,0,0.2,0.521,0.623,0.623,0,0.249,0 +1,0.417,0.417,1,0,0,0,0.521,0.623,0.623,0,0.309,0 +1,0.417,0.417,1,0,0,0,0.521,0.623,0.623,0,0.236,0 +1,0.417,0.417,0.7,0,0,0,0.521,0.623,0.623,0,0.618,0 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0.309,0 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0.137,0 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0.0386,0 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0.073,0 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0.249,0 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0.185,0 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0.361,0 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0.635,0 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0.425,0 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0.464,0 +1,0.411,0.411,0.3,0,0,0,0.266,0.638,0.638,0,0.403,0 +1,0.411,0.411,1,0,0,0,0.266,0.638,0.638,0,0.815,0 +0.667,0.291,0.291,1,0,0,0,0.263,0.581,0.581,0,0.283,0 +0.667,0.291,0.291,1,0,0,0,0.263,0.581,0.581,0,0.283,0 +0.667,0.291,0.291,1,0,0,0,0.263,0.581,0.581,0,0.296,0 +0.667,0.279,0.279,1,0,0,0,0.271,0.591,0.591,0,0.453,0 +0.667,0.279,0.279,1,0,0,0,0.271,0.591,0.591,0,0.453,0.488 +0.667,0.279,0.279,0.7,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.667,0.279,0.279,0,0.5,0,0,0.271,0.591,0.591,0.522,0.309,0 +0.667,0.279,0.279,0,1,0,0,0.271,0.591,0.591,0.353,0,0 +0.667,0.279,0.279,0,1,0,0,0.271,0.591,0.591,0.842,0,0.122 +0.667,0.271,0.271,0,1,0,0,0.263,0.6,0.6,0.359,0,0 +0.667,0.271,0.271,0,0.9,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0.3,0,0,0,0.316,0.548,0.548,0,0,0.244 +0.333,0.162,0.162,1,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,1,0,1,0,0.368,0.568,0.568,0,0.584,0 +0.333,0.17,0.17,0.5,0,1,0,0.368,0.568,0.568,0,0.0601,0.122 +0.667,0.291,0.291,0,0,1,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,1,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0.6,0,0.477,0.67,0.67,0,0,0.61 +0.667,0.291,0.291,0,0,0,0.7,0.477,0.67,0.67,0,0,0.122 +1,0.484,0.484,0,0,0,0.7,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0.359,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.315,0,0.122 +1,0.484,0.484,0,1,1,0,0.698,0.787,0.787,0.207,0.369,0 +1,0.484,0.484,0,1,1,0,0.698,0.787,0.787,0.207,0.459,0 +1,0.484,0.484,0,1,1,0,0.698,0.787,0.787,0.603,0.18,0 +1,0.619,0.619,0,1,0.1,0.2,0.742,0.742,0.742,0.402,0.438,0 +1,0.619,0.619,0,0.9,0,1,0.742,0.742,0.742,0.554,0.0386,0 +1,0.619,0.619,0,0,0,1,0.742,0.742,0.742,0.424,0.395,0 +1,0.619,0.619,0,0,0,1,0.742,0.742,0.742,0,0.369,0 +1,0.619,0.619,0,0,0,1,0.742,0.742,0.742,0.217,0.309,0 +1,0.619,0.619,0,0,0,0.2,0.742,0.742,0.742,0.533,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.587,0.421,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.397,0.335,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.0258,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.348,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.309,0.122 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.174 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0349 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.244 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.479 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.149 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.0299 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.385 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.292 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.34 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.488 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.244 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0.5,0,0.337,0.581,0.581,0,0.361,0 +0.333,0.175,0.175,0,0,1,0,0.297,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0.3,0.257,0.523,0.523,0,0.21,0 +0.333,0.174,0.174,0,0,0,1,0.257,0.523,0.523,0,0.27,0 +0.333,0.174,0.174,0,0,0,1,0.257,0.523,0.523,0,0.0901,0.244 +0.333,0.174,0.174,0,0,0,1,0.257,0.523,0.523,0,0,0.488 +0.333,0.174,0.174,0,0,0,1,0.257,0.523,0.523,0,0.0987,0.122 +0.333,0.174,0.174,0,0,0,1,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0.6,0.26,0.523,0.523,0,0.283,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0.283,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0.234,0.244 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0.384,0.244 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0.3,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0.9,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,1,0,0.322,0.61,0.61,0,0.725,0 +0.667,0.269,0.269,0,0,0.5,0,0.322,0.61,0.61,0,0.137,0 +0.667,0.269,0.269,0,0,0,0.8,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,1,0.374,0.63,0.63,0,0.451,0 +0.667,0.274,0.274,0,0,0,1,0.374,0.63,0.63,0,0.464,0 +1,0.386,0.386,0,0,0,1,0.432,0.713,0.713,0,0,0.244 +1,0.386,0.386,0,0,0,1,0.432,0.713,0.713,0,0,0 +1,0.386,0.386,0,0,0,1,0.432,0.713,0.713,0,0,0.366 +1,0.386,0.386,0,0,0,0.1,0.432,0.713,0.713,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.61 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.122 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.25 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.155 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.031 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0.3,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.314 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.0697 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.783,0.783,1,0.5,0,0,0.787,0.698,0.698,0.315,0,0 +1,0.783,0.783,0.3,1,0,0,0.787,0.698,0.698,0.446,0,0.176 +1,0.783,0.783,0,1,0,0,0.787,0.698,0.698,0.592,0,0.282 +1,0.783,0.783,0,1,0,0,0.787,0.698,0.698,0.418,0,0 +1,0.783,0.783,0,0.9,0,0,0.787,0.698,0.698,0.288,0,0.244 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.258,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0.258,0,0.276 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.171 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.239 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.305,0.464,0.464,0,0,0.122 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.4,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.278 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.196 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.245 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.61 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.133 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.244 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.244 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.161 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.366 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.244 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.322 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.488 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.488 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.361,0 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.393,0.244 +0.333,0.159,0.159,0,0,1,0,0.29,0.538,0.538,0,0.135,0 +0.333,0.159,0.159,0,0,0.6,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.159,0.159,0,0,0,0.7,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,1,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,1,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,1,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0.7,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0.3,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.316,0.548,0.548,0,0,0.366 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0.244 +0.667,0.291,0.291,0.5,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.122 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.244 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +1,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0 +1,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0 +1,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0.488 +1,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0 +1,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0.403 +1,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0.0637 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.488 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.366 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.59 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.0692 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.145 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.169 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.236 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.185 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0941 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.282 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.488 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.366 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0.3,0,0,0,0.374,0.63,0.63,0,0,0.244 +0.667,0.274,0.274,1,0,0,0,0.374,0.63,0.63,0,0,0.366 +0.667,0.274,0.274,0.1,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.291,0.291,0,0.5,0,0,0.477,0.67,0.67,0.391,0,0 +0.667,0.291,0.291,0,1,0,0,0.477,0.67,0.67,0.304,0,0 +0.667,0.291,0.291,0,1,0,0,0.477,0.67,0.67,0.527,0,0 +0.667,0.339,0.339,0,1,0,0,0.551,0.68,0.68,0.424,0,0 +0.667,0.339,0.339,0,0.9,0,0,0.551,0.68,0.68,0,0,0.122 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.244 +1,0.484,0.484,0.8,0,0,0,0.698,0.787,0.787,0.359,0,0 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0.5,0,0.122 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0.266,0,0.366 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0.429,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0.429,0,0 +1,0.619,0.619,0.2,0,0,0,0.742,0.742,0.742,0.685,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0.446,0,0.122 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0.348,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0.745,0,0.122 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.244 +0.667,0.603,0.603,0,0,1,0,0.596,0.6,0.6,0,0.369,0 +0.667,0.603,0.603,0,0,1,0,0.596,0.6,0.6,0,0.0601,0 +0.667,0.603,0.603,0,0,1,0,0.596,0.6,0.6,0,0,0 +0.667,0.415,0.415,0,0,0.1,0.2,0.522,0.551,0.551,0,0.425,0 +0.667,0.415,0.415,0,0,0,1,0.522,0.551,0.551,0,0.18,0 +1,0.597,0.597,0,0,0,0.2,0.654,0.594,0.594,0,0.348,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0.309,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0.137,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0.185,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.353 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.169 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.237 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.1 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.167 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.189 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.236 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.163 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.163 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.175,0.175,0.1,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.338 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.535 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.347 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0694 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0.3,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,1,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,1,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0.5,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.488 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.488 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.412,0.412,0,0.5,0,0,0.587,0.772,0.772,0.478,0,0 +1,0.412,0.412,0,1,0,0,0.587,0.772,0.772,0.63,0,0 +1,0.412,0.412,0,1,0,0,0.587,0.772,0.772,0.467,0,0 +1,0.484,0.484,0,1,0,0,0.698,0.787,0.787,0.386,0,0 +1,0.484,0.484,0,0.9,0.5,0,0.698,0.787,0.787,0.247,0.283,0 +1,0.484,0.484,0,0,1,0,0.698,0.787,0.787,0.247,0,0 +1,0.484,0.484,0,0,1,0,0.698,0.787,0.787,0.283,0.433,0 +1,0.484,0.484,0,0,0.6,0,0.698,0.787,0.787,0,0.513,0 +1,0.484,0.484,0,0,0,0.7,0.698,0.787,0.787,0,0.513,0 +1,0.619,0.619,0,0,0,1,0.742,0.742,0.742,0,0.361,0 +1,0.619,0.619,0,0,0,1,0.742,0.742,0.742,0,0.258,0 +1,0.619,0.619,0,0,0,0.2,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0.481,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.244 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.244 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.244 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.334 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.366 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.244 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0.489,0,0 +0.667,0.174,0.174,0,0.8,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.413,0,0 +0.667,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.348,0,0 +0.667,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.321,0,0.244 +0.667,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.489,0,0.366 +0.667,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0,0,0.122 +0.667,0.17,0.17,0,0.1,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0.478,0,0 +0.667,0.164,0.164,0,0.8,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.342,0,0 +0.667,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.505,0,0.122 +0.667,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.56,0,0.122 +0.667,0.164,0.164,0,0.6,0,0,0.264,0.528,0.528,0.429,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.272,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.446,0,0.61 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.315,0,0.488 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.266,0,0.244 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.598,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.185,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0.185,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0.696,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0.6,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0.8,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.222 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.17,0.17,1,0,0,0,0.368,0.568,0.568,0,0,0.244 +0.333,0.17,0.17,1,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.368,0.568,0.568,0,0,0.366 +0.333,0.194,0.194,1,0,0,0,0.405,0.572,0.572,0,0,0.244 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.122 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.122 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.244 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.122 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.106 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.176 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.277 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0346 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.1 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.099 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.231 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.105 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.245 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.102 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.17 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0.6,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.269,0.269,0.8,0,0,0,0.293,0.6,0.6,0,0,0.122 +1,0.378,0.378,0,0,0,0,0.31,0.668,0.668,0,0,0 +1,0.378,0.378,0,0,0,0,0.31,0.668,0.668,0,0,0 +1,0.378,0.378,0,0,0,0,0.31,0.668,0.668,0,0,0 +1,0.378,0.378,0,0,0,0,0.344,0.653,0.653,0,0,0.122 +1,0.378,0.378,0,0,0,0,0.344,0.653,0.653,0,0,0 +1,0.378,0.378,0,0,0,0,0.344,0.653,0.653,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.366 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.244 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.122 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.122 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.122 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.244 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.244 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.538,0.538,0,0,0.3,0,0.61,0.62,0.62,0,0,0 +1,0.538,0.538,0,0,1,0,0.61,0.62,0.62,0,0.468,0 +1,0.538,0.538,0,0,1,0,0.61,0.62,0.62,0,0.283,0 +1,0.538,0.538,0,0,0.8,0,0.61,0.62,0.62,0,0,0 +1,0.603,0.603,0,0,0,0.5,0.596,0.6,0.6,0,0.309,0.122 +1,0.603,0.603,0,0,0,1,0.596,0.6,0.6,0,0.137,0 +1,0.603,0.603,0,0,0,1,0.596,0.6,0.6,0,0,0.488 +1,0.603,0.603,0,0,0,0.4,0.596,0.6,0.6,0,0.348,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0.592,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0.406,0.105 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0.195,0.07 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0.597,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0.275,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.597,0.597,0.6,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.415,0.415,1,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.183,0.183,1,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,1,0,0,0,0.455,0.511,0.511,0,0,0.265 +1,0.183,0.183,0.6,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.244 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.244 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.122 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.158 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.185 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.122 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,0.3,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.172,0.172,1,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,1,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0.5,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,0.3,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.368,0.568,0.568,0,0,0.244 +0.667,0.339,0.339,1,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0.5,0,0,0,0.551,0.68,0.68,0,0,0.244 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.244 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.783,0.783,0,0.5,0,0,0.787,0.698,0.698,0.255,0,0 +1,0.783,0.783,0,1,0,0,0.787,0.698,0.698,0.473,0,0 +1,0.783,0.783,0,1,0,0,0.787,0.698,0.698,0.402,0,0.122 +1,0.603,0.603,0,1,0,0,0.596,0.6,0.6,0.402,0,0 +1,0.603,0.603,0,1,0,0,0.596,0.6,0.6,0.5,0,0 +1,0.603,0.603,0,1,0,0,0.596,0.6,0.6,0,0,0.366 +1,0.603,0.603,0,0.4,0,0,0.596,0.6,0.6,0.543,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.128 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.196 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.343 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.0343 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0.183 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.307 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.128 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.122 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.335 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.244 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.244 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.177 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0.318 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0.3,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.15,0.15,0.4,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.0386,0.122 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0.3,0.287,0.529,0.529,0,0.562,0 +0.333,0.149,0.149,0,0,0,1,0.287,0.529,0.529,0,0.3,0.122 +0.333,0.149,0.149,0,0,0,1,0.287,0.529,0.529,0,0,0.244 +0.333,0.149,0.149,0,0,0,0.6,0.287,0.529,0.529,0,0.567,0 +0.333,0.149,0.149,0.3,0,0,0,0.287,0.529,0.529,0,0.223,0 +0.333,0.149,0.149,1,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0.1,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +1,0.349,0.349,0,0,0,0,0.356,0.686,0.686,0,0,0 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.25 +1,0.353,0.353,0.3,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.353,0.353,1,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.353,0.353,1,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.353,0.353,0.5,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.169 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.339 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0678 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0.5,0,0.745,0.745,0.745,0,0.249,0 +1,0.523,0.523,0,0,1,0,0.745,0.745,0.745,0,0,0 +1,0.464,0.464,0,0,1,0,0.613,0.622,0.622,0,0.526,0 +1,0.464,0.464,0,0,1,0,0.613,0.622,0.622,0,0.23,0 +1,0.464,0.464,0,0,1,0,0.613,0.622,0.622,0,0,0.244 +1,0.464,0.464,0,0,0,0.3,0.613,0.622,0.622,0,0,0.103 +1,0.464,0.464,0,0,0,1,0.613,0.622,0.622,0,0,0.732 +1,0.464,0.464,0,0,0,1,0.613,0.622,0.622,0,0,0.366 +1,0.549,0.549,0,0,0,1,0.598,0.602,0.602,0,0,0.134 +1,0.549,0.549,0,0,0,1,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0.1,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.211 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.353 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.165 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.0659 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.295 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.177 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.208 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.158 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.126 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.183 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.244 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.366 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.169 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.101 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.25 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.61 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.484 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.171 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.167 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.854 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.273 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.534 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.235 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.126 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0316 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.488 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.366 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0.3,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,1,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0.5,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0.359,0,0.403 +1,0.365,0.365,0,1,0,0,0.583,0.652,0.652,0.647,0,0 +1,0.365,0.365,0,1,0,0,0.583,0.652,0.652,0,0,0 +1,0.365,0.365,0,1,0,0,0.583,0.652,0.652,0.696,0,0 +1,0.365,0.365,0,1,0,0,0.583,0.652,0.652,0.364,0,0 +1,0.464,0.464,0,0.3,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.163 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0652 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.122 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.366 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.244 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.172 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.172 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.318 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.113 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.488 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.366 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.366 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0.5,0,0,0.276,0.534,0.534,0.451,0,0 +0.333,0.149,0.149,0,1,0,0,0.276,0.534,0.534,0.522,0,0 +0.333,0.149,0.149,0,1,0,0,0.276,0.534,0.534,0.288,0,0 +0.333,0.149,0.149,0,1,0,0,0.287,0.529,0.529,0.625,0,0 +0.333,0.149,0.149,0,1,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,1,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0.3,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0.244 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0.366 +1,0.371,0.371,1,0.5,0,0,0.59,0.775,0.775,0.451,0,0 +1,0.371,0.371,1,1,0,0,0.59,0.775,0.775,0.353,0,0 +1,0.371,0.371,1,1,0,0,0.59,0.775,0.775,0.413,0,0 +1,0.42,0.42,1,1,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,1,0.8,0,0,0.701,0.79,0.79,0.424,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0.44,0,0.366 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0.38,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0.56,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0.288,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0.332,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0.174,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0.174,0,0 +1,0.523,0.523,0.4,0,0,0,0.745,0.745,0.745,0.386,0,0.366 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.408,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.31,0,0.157 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0941 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.366 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.412 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.412 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.366 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.334 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.0667 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.257 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0.5,0,0,0.258,0.465,0.465,0.402,0,0.211 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.832,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.848,0,0 +0.667,0.278,0.278,0,1,0,0,0.257,0.582,0.582,0.234,0,0 +0.667,0.278,0.278,0,0.8,0,0,0.257,0.582,0.582,0.234,0,0.16 +1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0.484,0,0.0639 +1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0.234,0,0 +1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0,0,0 +1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0,0,0 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0.536 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0.069 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0.138 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0.0692 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0 +1,0.364,0.364,0,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.364,0.364,0,0,0,0,0.278,0.656,0.656,0,0,0.177 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.142 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.203 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0.8,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,1,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,1,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0.5,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.366 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.366 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.287 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.0661 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.244 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.34 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.299 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.168,0.168,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.164,0.164,1,0,0,0,0.257,0.524,0.524,0,0,0.519 +0.667,0.164,0.164,1,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.164,0.164,1,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.278,0.278,1,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,1,0,0,0,0.257,0.582,0.582,0,0,0.162 +0.667,0.278,0.278,1,0,0,0,0.257,0.582,0.582,0,0,0.0649 +0.333,0.16,0.16,1,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.27,0.27,0.6,0,0,0,0.264,0.582,0.582,0,0,0.268 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.167 +0.667,0.27,0.27,0,0,0.5,0,0.264,0.582,0.582,0,0.309,0 +0.667,0.27,0.27,0,0,1,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,0,0,1,0,0.271,0.592,0.592,0,0.335,0 +0.667,0.259,0.259,0,0,1,0,0.271,0.592,0.592,0,0.249,0.163 +0.667,0.259,0.259,0,0,1,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0.3,0.271,0.592,0.592,0,0.0987,0 +0.667,0.259,0.259,0,0,0,1,0.271,0.592,0.592,0,0.309,0.366 +0.667,0.259,0.259,0,0,0,1,0.271,0.592,0.592,0,0.21,0 +0.333,0.15,0.15,0,0,0,1,0.261,0.534,0.534,0,0.382,0 +0.333,0.15,0.15,0,0,0,1,0.261,0.534,0.534,0,0.309,0.488 +0.667,0.15,0.15,0,0,0,1,0.261,0.534,0.534,0,0,0.122 +0.667,0.15,0.15,0,0,0,0.6,0.261,0.534,0.534,0,0.159,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.296,0.122 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.15,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.408,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.567,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.412,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0.402,0,0 +0.667,0.149,0.149,0,1,0,0,0.287,0.529,0.529,0.451,0,0 +0.667,0.149,0.149,0,1,0,0,0.29,0.539,0.539,0,0,0.18 +0.667,0.149,0.149,0,1,0,0,0.29,0.539,0.539,0.467,0,0 +0.667,0.149,0.149,0,1,0,0,0.29,0.539,0.539,0.478,0,0 +0.667,0.149,0.149,0,0.3,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.171 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.0342 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.0982 +0.667,0.252,0.252,0.3,0,0,0,0.375,0.632,0.632,0,0,0.488 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,1,0,1,0,0.479,0.672,0.672,0,0.322,0.231 +0.667,0.264,0.264,0.5,0,1,0,0.479,0.672,0.672,0,0.536,0.122 +0.667,0.264,0.264,0,0,1,0,0.479,0.672,0.672,0,0.455,0 +0.667,0.264,0.264,0,0,0,0.3,0.479,0.672,0.672,0,0.373,0 +0.667,0.264,0.264,0,0,0,1,0.479,0.672,0.672,0,0.322,0.527 +1,0.371,0.371,0,0,0,1,0.59,0.775,0.775,0,0.309,0.0967 +0.667,0.296,0.296,0,0,0,1,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,1,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0.1,0.553,0.682,0.682,0,0,0.486 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.382 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.244 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.122 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.244 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.122 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.244 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.122 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.148 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.116,0.116,1,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,1,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0.9,0,0,0,0.357,0.489,0.489,0,0,0.122 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.221 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.329 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.0659 +0.667,0.228,0.228,0.8,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.228,0.228,1,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.228,0.228,1,0,0,0,0.405,0.523,0.523,0,0,0.306 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.238 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.114 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.0335 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.268 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.122 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.488 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0.5,0,0.287,0.529,0.529,0,0.283,0.0323 +0.333,0.149,0.149,0,0,1,0,0.287,0.529,0.529,0,0.361,0.129 +0.333,0.149,0.149,0,0,0,0.3,0.29,0.539,0.539,0,0.369,0 +0.333,0.149,0.149,0,0,0,1,0.29,0.539,0.539,0,0.468,0.244 +0.333,0.149,0.149,0,0,0,1,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,1,0.29,0.539,0.539,0,0.446,0 +0.333,0.149,0.149,0,0,0,1,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0.1,0.29,0.539,0.539,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.333,0.151,0.151,0.8,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,1,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,1,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0.244 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0.244 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0.244 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0.122 +0.667,0.296,0.296,0.7,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.162 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.276 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.118 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.16 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0641 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.244 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0956 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.32 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0.4,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0.8,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.264,0.602,0.602,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0.8,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.244 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.366 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.247 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0.5,0,0,0.79,0.701,0.701,0.348,0,0 +1,0.671,0.671,0,1,0,0,0.79,0.701,0.701,0.304,0,0.122 +1,0.671,0.671,0,1,0,0,0.79,0.701,0.701,0.505,0,0 +1,0.671,0.671,0,1,0,0,0.79,0.701,0.701,0.478,0,0 +1,0.671,0.671,0,0.8,0,0,0.79,0.701,0.701,0.527,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.467,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.321,0,0.244 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.386,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.168,0,0.342 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.168,0,0.19 +1,0.799,0.799,0,1,0,0,0.768,0.671,0.671,0.451,0,0 +1,0.405,0.405,0,1,0,0,0.524,0.553,0.553,0.571,0,0 +1,0.405,0.405,0,1,0,0,0.524,0.553,0.553,0.5,0,0.145 +1,0.405,0.405,0,1,0,0,0.524,0.553,0.553,0.299,0,0 +1,0.405,0.405,0.8,1,0,0,0.524,0.553,0.553,0.31,0,0 +1,0.405,0.405,1,0.8,0,0,0.524,0.553,0.553,0.31,0,0 +1,0.405,0.405,1,0,0,0,0.524,0.553,0.553,0.402,0,0.122 +1,0.183,0.183,1,0,0,0,0.457,0.513,0.513,0.245,0,0 +1,0.183,0.183,0.5,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0923 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.299 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.0708 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.156 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0415 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.253 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0.413,0,0 +0.333,0.139,0.139,0,1,0,0,0.331,0.494,0.494,0.375,0,0 +0.333,0.167,0.167,0,1,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,1,0,0,0.346,0.519,0.519,0.342,0,0 +0.333,0.167,0.167,0,1,0,0,0.346,0.519,0.519,0.478,0,0 +0.333,0.167,0.167,0,1,0,0,0.346,0.519,0.519,0.614,0,0 +0.333,0.167,0.167,0,0.8,0,0,0.346,0.519,0.519,0.663,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0.402,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0.462,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0.587,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0.375,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0.326,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0.527,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.101 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.234 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.488 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.265 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.323 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.398 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.203 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0.8,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0.6,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.366 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.732 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0.5,0,0.745,0.745,0.745,0,0.361,0 +1,0.523,0.523,0,0,1,0,0.745,0.745,0.745,0,0,0.244 +1,0.671,0.671,0,0,1,0,0.79,0.701,0.701,0,0.504,0 +1,0.671,0.671,0,0,1,0,0.79,0.701,0.701,0,0.53,0 +1,0.671,0.671,0,0,1,0,0.79,0.701,0.701,0,0.73,0 +1,0.671,0.671,0,0,0,0.3,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,1,0.79,0.701,0.701,0,0.185,0.244 +1,0.671,0.671,0,0,0,1,0.79,0.701,0.701,0,0.573,0 +1,0.799,0.799,0,0,0,1,0.768,0.671,0.671,0,0.204,0 +1,0.799,0.799,0,0,0,1,0.768,0.671,0.671,0,0.322,0 +1,0.799,0.799,0,0,0,0.1,0.768,0.671,0.671,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0.249,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.348 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.276 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.103 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.148 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.208 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.104 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.61 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.488 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0.3,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.251,0.251,0.1,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.244 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0.8,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.29,0.539,0.539,0,0,0.488 +0.333,0.149,0.149,1,0,0,0,0.29,0.539,0.539,0,0,0.366 +0.333,0.149,0.149,1,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.249,0.249,0.9,0,0,0,0.323,0.612,0.612,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.276 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.244 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.192 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.14 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.244 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0.3,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0.341 +1,0.523,0.523,0.4,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.175 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.105 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.327 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.155 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.731 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.227 +1,0.0495,0.0495,0.3,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0503,0.0503,0.1,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.33 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.207 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.155 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.176 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.351 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.141 +1,0.317,0.317,0.3,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.317,0.317,1,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.402,0.402,0.1,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0.244 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0923 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.366 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.366 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.122 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.244 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.337 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.244 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.191 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.123 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0617 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.366 +0.333,0.154,0.154,0.3,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0.4,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.366 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.244 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.122 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.366 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.244 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.151 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,1,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,1,0,0,0,0.305,0.474,0.474,0,0,0.308 +1,0.0781,0.0781,0.5,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.333 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.435 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.333 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.0666 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.24 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.284,0.284,0.3,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.284,0.284,1,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.286,0.286,0.1,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.333,0.164,0.164,0,0.5,0,0,0.257,0.524,0.524,0.489,0,0 +0.333,0.164,0.164,0,1,0,0,0.257,0.524,0.524,0.375,0,0 +0.333,0.164,0.164,0,1,0,0,0.257,0.524,0.524,0.359,0,0 +0.333,0.16,0.16,0,1,0,0,0.261,0.524,0.524,0.522,0,0 +0.333,0.16,0.16,0,0.8,0,0,0.261,0.524,0.524,0.293,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0.293,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,1,0,0.271,0.592,0.592,0,0.335,0 +0.667,0.259,0.259,0,0,1,0,0.271,0.592,0.592,0,0.21,0 +0.667,0.259,0.259,0,0,1,0,0.271,0.592,0.592,0,0.322,0 +0.667,0.251,0.251,0,0,1,0,0.264,0.602,0.602,0,0.408,0 +0.667,0.251,0.251,0,0,0.5,0,0.264,0.602,0.602,0,0.309,0 +0.333,0.15,0.15,0,0,0,0.8,0.261,0.534,0.534,0,0.361,0.244 +0.333,0.15,0.15,0,0,0,1,0.261,0.534,0.534,0,0.232,0 +0.333,0.15,0.15,0,0,0,1,0.261,0.534,0.534,0,0.249,0 +0.333,0.15,0.15,0,0,0,1,0.261,0.534,0.534,0,0,0.244 +0.333,0.149,0.149,0,0,0,1,0.276,0.534,0.534,0,0.309,0.167 +0.333,0.149,0.149,0,0,0,1,0.276,0.534,0.534,0,0.309,0.488 +0.333,0.149,0.149,0,0,0,0.1,0.276,0.534,0.534,0,0.27,0.122 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.0987,0.132 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.309,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.0258,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.408,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.296,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.395,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.318,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.223,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0.348,0 +0.667,0.249,0.249,0.3,0,0,0,0.323,0.612,0.612,0,0.073,0.244 +0.667,0.249,0.249,1,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.249,0.249,0.1,0,0,0,0.323,0.612,0.612,0,0.472,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0.584,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0.661,0.122 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.618,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.283,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.137,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.236,0.488 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.348,0.122 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0.21,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0.612,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0.539,0.244 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0.296,0.244 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0.545,0.488 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0.618,0.366 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0.5,0,0,0.553,0.682,0.682,0.457,0.472,0 +0.667,0.296,0.296,0,1,0,0,0.553,0.682,0.682,0.348,0.476,0 +0.667,0.296,0.296,0,1,0,0,0.553,0.682,0.682,0.364,0.253,0 +0.667,0.365,0.365,0,1,0,0,0.583,0.652,0.652,0.63,0,0 +0.667,0.365,0.365,0,1,0,0,0.583,0.652,0.652,0.179,0,0 +1,0.523,0.523,0,1,0,0,0.745,0.745,0.745,0.179,0,0 +1,0.523,0.523,0,0.3,0,0,0.745,0.745,0.745,0.478,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.244 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0.3,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,1,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.271,0.592,0.592,0,0,0.122 +0.667,0.259,0.259,0.9,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,1,0,0.294,0.602,0.602,0,0.249,0 +0.667,0.249,0.249,0,0,1,0,0.294,0.602,0.602,0,0.249,0.244 +0.667,0.249,0.249,0,0,1,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,1,0,0.294,0.602,0.602,0,0.348,0 +0.667,0.249,0.249,0,0,0.5,0,0.294,0.602,0.602,0,0.197,0 +0.667,0.249,0.249,0,0,0,0.8,0.294,0.602,0.602,0,0,0.366 +0.667,0.249,0.249,0,0,0,1,0.316,0.592,0.592,0,0,0.366 +0.667,0.249,0.249,0,0,0,1,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,1,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0.6,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.488 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0.3,0,0,0,0.479,0.672,0.672,0,0,0.488 +0.667,0.264,0.264,1,0,0,0,0.479,0.672,0.672,0,0,0.244 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.35 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.203 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.518 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0.3,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.346 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.592 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.17 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.339 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0339 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0.5,0,0.309,0.469,0.469,0,0.309,0 +1,0.0495,0.0495,0,0,1,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0.3,0.309,0.469,0.469,0,0.47,0 +1,0.0495,0.0495,0,0,0,1,0.309,0.469,0.469,0,0.273,0 +1,0.0495,0.0495,0,0,0,1,0.309,0.469,0.469,0,0.296,0 +1,0.0495,0.0495,0,0,0,1,0.305,0.464,0.464,0,0.361,0 +1,0.0495,0.0495,0,0,0,1,0.305,0.464,0.464,0,0.309,0 +1,0.0495,0.0495,0,0,0,0.1,0.305,0.464,0.464,0,0.0515,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.494,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.137,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.336 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.328 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0657 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.14 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.348 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.177 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0354 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.146 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.303 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.366 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.488 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.244 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0.8,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0.6,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0.5,0,0,0.701,0.79,0.79,0.304,0,0 +1,0.42,0.42,0,1,0,0,0.701,0.79,0.79,0.337,0,0 +1,0.42,0.42,0,1,0,0,0.701,0.79,0.79,0.38,0,0.244 +1,0.42,0.42,0,1,0,0,0.701,0.79,0.79,0.37,0,0 +1,0.42,0.42,0,0.8,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.614,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.56,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.598,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.386,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.299,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.435,0,0.154 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.299,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.527,0,0.122 +1,0.671,0.671,0.8,0,0,0,0.79,0.701,0.701,0.215,0,0 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0.215,0,0.122 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.424,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.255,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.348,0,0.122 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.603,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.121 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.165 +1,0.0781,0.0781,1,0,0,0,0.305,0.474,0.474,0,0,0.132 +1,0.228,0.228,0.1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.244 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.208 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.743 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.163 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.163 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.375,0.632,0.632,0,0,0.366 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0.366 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0.366 +0.667,0.252,0.252,0.5,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0.8,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0.6,0,0,0,0.479,0.672,0.672,0,0,0.366 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.464,0.464,0,0.5,0,0,0.613,0.622,0.622,0.332,0,0 +1,0.464,0.464,0,1,0,0,0.613,0.622,0.622,0.293,0,0 +1,0.464,0.464,0,1,0,0,0.613,0.622,0.622,0.397,0,0.122 +1,0.464,0.464,0,1,0,0,0.613,0.622,0.622,0.859,0,0 +1,0.464,0.464,0,0.8,0,0,0.613,0.622,0.622,0.209,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0.209,0,0.244 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.366 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.451,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.418,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.853,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0.31,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0.38,0,0.287 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.244 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.166 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0666 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.205 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,1,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.139,0.139,1,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.139,0.139,1,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,1,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,1,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0.9,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0.3,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.167,0.167,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.168,0.168,1,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0.4,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.366 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.244 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.244 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0.3,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,1,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0.5,0,0,0,0.745,0.745,0.745,0.505,0,0 +1,0.523,0.523,0,1,0,0,0.745,0.745,0.745,0.266,0,0.122 +1,0.671,0.671,0,1,0,0,0.79,0.701,0.701,0.226,0,0 +1,0.671,0.671,0,1,0,0,0.79,0.701,0.701,0.226,0,0 +1,0.671,0.671,0,1,0,0,0.79,0.701,0.701,0.755,0,0 +1,0.671,0.671,0,1,0,0,0.79,0.701,0.701,0.293,0,0 +1,0.671,0.671,0,0.8,0,0,0.79,0.701,0.701,0.424,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.582,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.473,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.446,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.337,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.366 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.444 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.541 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0351 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.233 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.177 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.0706 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.457 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.287 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.465 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.122 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.175 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.14 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0.3,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0.332,0,0 +1,0.42,0.42,1,1,0,0,0.701,0.79,0.79,0.413,0,0 +1,0.42,0.42,1,1,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,1,1,0,0,0.701,0.79,0.79,0.696,0,0 +1,0.42,0.42,1,1,0,0,0.701,0.79,0.79,0.408,0,0 +1,0.523,0.523,1,0.3,0,0,0.745,0.745,0.745,0.495,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0.424,0,0.488 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0.272,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0.1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.366 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.366 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.246 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.122 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.366 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0637 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.354 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.0354 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.337 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.0337 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.166 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.288 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.122 +1,0.364,0.364,0,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.364,0.364,0,0,0,0,0.278,0.656,0.656,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.244 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.203 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.203 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.255 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.206 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.154 +1,0.349,0.349,0,0,0,0,0.312,0.671,0.671,0,0,0 +1,0.349,0.349,0,0,0,0,0.312,0.671,0.671,0,0,0.244 +1,0.349,0.349,0,0,0,0,0.312,0.671,0.671,0,0,0 +1,0.349,0.349,0,0,0,0,0.312,0.671,0.671,0,0,0.473 +1,0.349,0.349,0,0,0,0,0.312,0.671,0.671,0,0,0.156 +1,0.349,0.349,0,0,0,0,0.312,0.671,0.671,0,0,0 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0.156 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0.0934 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0.122 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.349,0.349,0,0,0,0,0.356,0.686,0.686,0,0,0 +1,0.349,0.349,0.3,0,0,0,0.356,0.686,0.686,0,0,0 +1,0.349,0.349,1,0,0,0,0.356,0.686,0.686,0,0,0 +1,0.349,0.349,1,0,1,0,0.356,0.686,0.686,0,0.283,0 +1,0.349,0.349,1,0,1,0,0.356,0.686,0.686,0,0.249,0 +1,0.349,0.349,1,0,1,0,0.356,0.686,0.686,0,0,0 +1,0.353,0.353,1,0,1,0,0.434,0.715,0.715,0,0.21,0 +1,0.353,0.353,1,0,0.5,0,0.434,0.715,0.715,0,0.249,0 +1,0.353,0.353,1,0,0,0.8,0.434,0.715,0.715,0,0,0.244 +1,0.353,0.353,1,0,0,1,0.434,0.715,0.715,0,0.223,0 +1,0.353,0.353,1,0,0,1,0.434,0.715,0.715,0,0.296,0 +1,0.353,0.353,0.8,0,0,1,0.434,0.715,0.715,0,0.0987,0 +1,0.371,0.371,0,0,0,1,0.59,0.775,0.775,0,0.296,0 +1,0.371,0.371,0,0,0,1,0.59,0.775,0.775,0,0.459,0 +1,0.371,0.371,0,0,0,0.1,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0.283,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0.296,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.0386,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.197,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.249,0.488 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.483,0.366 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.298,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.296,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0.159,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0.459,0.488 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0.545,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0.137,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0.361,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0.288,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0.236,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0.249,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.799,0.799,0.8,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0.6,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.227 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.101 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.101 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.339 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0.8,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.168,0.168,1,0,0,0,0.298,0.524,0.524,0,0,0.189 +1,0.168,0.168,1,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.168,0.168,1,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.168,0.168,0.5,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.244 +1,0.352,0.352,0,0,0,0,0.267,0.671,0.671,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.244 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.366 +0.667,0.249,0.249,0.8,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,1,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,1,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,1,0,0.5,0,0.375,0.632,0.632,0,0.0601,0.244 +1,0.353,0.353,1,0,1,0,0.434,0.715,0.715,0,0,0 +1,0.353,0.353,1,0,1,0,0.434,0.715,0.715,0,0,0 +1,0.353,0.353,1,0,0.5,0,0.434,0.715,0.715,0.37,0,0.244 +1,0.353,0.353,0.8,1,0,0.8,0.434,0.715,0.715,0.408,0,0 +1,0.371,0.371,0,1,0,1,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,1,0,1,0.59,0.775,0.775,0.701,0,0.366 +1,0.371,0.371,0,1,0,1,0.59,0.775,0.775,0.272,0,0.122 +1,0.371,0.371,0,1,0,0.6,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0.8,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.122 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0.3,0,0,0,0.79,0.701,0.701,0,0,0.528 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0,0,0.194 +1,0.799,0.799,0.1,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.366 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.244 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.366 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.244 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.244 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.122 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.244 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0781,0.0781,1,0,0,0,0.305,0.474,0.474,0,0,0.122 +1,0.0781,0.0781,1,0,0,0,0.305,0.474,0.474,0,0,0.488 +1,0.0781,0.0781,1,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,1,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0.4,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.3 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.161 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.0642 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.273 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.377 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.035 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.315 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.518 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.0305 +0.667,0.249,0.249,0.8,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0.6,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.301 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.0335 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.488 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.122 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.366 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.244 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.339 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.271 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.276 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.068 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.068 +0.667,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.165 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.132 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.366 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.366 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.122 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.244 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.108 +0.667,0.296,0.296,0.3,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0.244 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0.244 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0.122 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.464,0.464,1,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0.1,0,0,0,0.613,0.622,0.622,0,0,0.122 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.341 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.127 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.317,0.317,0.3,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.317,0.317,1,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.317,0.317,0.1,0,0,0,0.478,0.551,0.551,0,0,0.109 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.167 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.334 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.403 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.249 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.35 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.156 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.0936 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.333 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.122 +0.667,0.259,0.259,0.8,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0.6,0,0,0,0.271,0.592,0.592,0,0,0.291 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.156 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.159 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.157,0.157,0.8,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0.244 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.366 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0.6,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.154 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.244 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.366 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.232 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.158 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.169 +0.667,0.139,0.139,0.3,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,1,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,1,0,0,0,0.331,0.494,0.494,0,0,0.155 +0.667,0.139,0.139,0.5,0,0.5,0,0.331,0.494,0.494,0,0.0601,0.031 +0.667,0.139,0.139,0,0,1,0,0.331,0.494,0.494,0,0,0 +0.667,0.167,0.167,0,0,1,0,0.346,0.519,0.519,0,0.296,0 +0.667,0.167,0.167,0,0,1,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,1,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,0.3,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,1,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,0,0,0,1,0.258,0.465,0.465,0,0,0 +0.333,0.168,0.168,0,0,0,1,0.298,0.524,0.524,0,0,0.336 +0.333,0.168,0.168,0,0,0,1,0.298,0.524,0.524,0,0,0.168 +0.333,0.168,0.168,0,0,0,1,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0.6,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.488 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.122 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.221 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.488 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.153 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.427 +1,0.371,0.371,0.8,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0.4,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.268 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.488 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.366 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.335 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.401 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0.1 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +0.667,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.161 +0.667,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.0642 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.336 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.189 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.542 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.0353 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.218 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.122 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.488 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.366 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.488 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.244 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0.8,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,1,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,1,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.147 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.197 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.246 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.299 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.0318 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.127 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.366 +0.667,0.16,0.16,0.8,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.16,0.16,1,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.16,0.16,1,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.366 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.366 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.185 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.174 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.174 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.244 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.697 +0.667,0.296,0.296,0.3,0,0,0,0.553,0.682,0.682,0,0,0.437 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.24 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.204 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.224 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.122 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.134 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.136 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.235 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.122 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0.122 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0.5,0,0,0.258,0.465,0.465,0.31,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.418,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.326,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.571,0,0 +1,0.0495,0.0495,0,0.8,0,0,0.258,0.465,0.465,0.359,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.326,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,0.3,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.167,0.167,1,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.168,0.168,0.1,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.168,0.168,0,0,0.5,0,0.298,0.524,0.524,0,0.0601,0 +1,0.168,0.168,0,0,1,0,0.298,0.524,0.524,0,0.236,0 +1,0.404,0.404,0,0,0,0.3,0.378,0.641,0.641,0,0.124,0 +1,0.404,0.404,0,0,0,1,0.378,0.641,0.641,0,0.0987,0 +1,0.404,0.404,0,0,0,1,0.378,0.641,0.641,0,0.408,0 +0.667,0.278,0.278,0,0,0,0.6,0.257,0.582,0.582,0,0.322,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0.258,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0.262,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0.369,0.122 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0.335,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0.223,0.488 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0.172,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0.558,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0.296,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.296,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.283,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.0258,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.258,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.244 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.122 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.149,0.149,0.3,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.149,0.149,1,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.151,0.151,1,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.151,0.151,1,0,0,0,0.316,0.549,0.549,0,0,0.732 +0.667,0.151,0.151,1,0,0,0,0.316,0.549,0.549,0,0,0 +1,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.244 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.122 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.488 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0.652,0,0 +1,0.42,0.42,0,1,0,0,0.701,0.79,0.79,0.337,0,0 +1,0.42,0.42,0,1,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,1,0,0,0.701,0.79,0.79,0.701,0,0 +1,0.42,0.42,0,1,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.523,0.523,0,0.3,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.209 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.134 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.168 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.351 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0351 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.168 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.0335 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0,0.5,0,0,0.346,0.519,0.519,0.489,0,0.148 +0.667,0.167,0.167,0,1,0,0,0.346,0.519,0.519,0.391,0,0 +0.667,0.167,0.167,0,1,0,0,0.346,0.519,0.519,0.592,0,0 +0.667,0.284,0.284,0,1,0,0,0.435,0.572,0.572,0.397,0,0.171 +0.667,0.284,0.284,0,0.8,0,0,0.435,0.572,0.572,0.261,0,0.171 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0.261,0,0 +0.667,0.286,0.286,0,0,1,0,0.338,0.582,0.582,0.397,0.494,0 +0.667,0.286,0.286,0,0,0.5,0,0.338,0.582,0.582,0,0.309,0 +0.667,0.286,0.286,0,0,0,0.8,0.338,0.582,0.582,0,0.442,0 +0.333,0.168,0.168,0,0,0,1,0.298,0.524,0.524,0,0.468,0 +0.333,0.168,0.168,0,0,0,1,0.298,0.524,0.524,0,0.433,0 +0.333,0.168,0.168,0,0,0,1,0.298,0.524,0.524,0,0.0987,0 +0.333,0.164,0.164,0,0,0,1,0.257,0.524,0.524,0,0.249,0 +0.333,0.164,0.164,0,0,0,1,0.257,0.524,0.524,0,0.283,0.122 +0.333,0.164,0.164,0,0,0,0.1,0.257,0.524,0.524,0,0.195,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0.135,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0.486,0.244 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0.243,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0.283,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0.361,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0.137,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0.395,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.309,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.137,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.236,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.073,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.0515,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.0129,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.433,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.571,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.21,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.502,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.313,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.597,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.283,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.384,0.244 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.234,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.631,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.258,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.249,0.122 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.236,0.244 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.309,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.361,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.506,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0.8,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,1,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.122 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.244 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0.366 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0.1,0,0,0,0.745,0.745,0.745,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.366 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.27 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.683 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.24 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.173 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.173 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0.5,0,0.257,0.524,0.524,0,0.309,0.122 +0.333,0.164,0.164,0,0,1,0,0.257,0.524,0.524,0,0.416,0.244 +0.333,0.16,0.16,0,0,1,0,0.261,0.524,0.524,0,0.18,0.244 +0.333,0.16,0.16,0,0,0.5,0,0.261,0.524,0.524,0,0.236,0 +0.667,0.27,0.27,0,0,0,0.8,0.264,0.582,0.582,0,0.197,0.244 +0.333,0.16,0.16,0,0,0,1,0.261,0.524,0.524,0,0.481,0 +0.333,0.16,0.16,0,0,0,1,0.261,0.524,0.524,0,0.249,0 +0.667,0.27,0.27,0,0,0,1,0.264,0.582,0.582,0,0.0515,0.122 +0.667,0.259,0.259,0,0,0,0.6,0.271,0.592,0.592,0,0.296,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.112,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.137,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.15,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.309,0.122 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0.532,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0.481,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.296,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.223,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.369,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.258,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.283,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.27,0.122 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.335,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.532,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.283,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.249,0.249,0,0,0.5,0,0.323,0.612,0.612,0,0.309,0 +0.667,0.249,0.249,0,0,1,0,0.323,0.612,0.612,0,0,0.122 +0.667,0.252,0.252,0,0,1,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0.5,0,0.375,0.632,0.632,0,0,0 +0.333,0.151,0.151,0,0,0,0.8,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0.8,0,0,1,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,1,0,0,1,0.316,0.549,0.549,0,0,0 +0.667,0.252,0.252,1,0,0,1,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,1,0,0,1,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,1,0,0,1,0.479,0.672,0.672,0,0,0.301 +0.667,0.264,0.264,1,0,0,0.1,0.479,0.672,0.672,0,0,0.334 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0.122 +1,0.371,0.371,0.4,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.337 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.303 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.488 +1,0.42,0.42,0,0,1,0,0.701,0.79,0.79,0,0.459,0 +1,0.42,0.42,0,0,1,0,0.701,0.79,0.79,0,0.258,0 +1,0.42,0.42,0,0,1,0,0.701,0.79,0.79,0,0.444,0 +1,0.523,0.523,0,0,1,0,0.745,0.745,0.745,0,0.148,0 +1,0.523,0.523,0,0,0.5,0,0.745,0.745,0.745,0,0.27,0 +0.667,0.365,0.365,0,0,0,0.8,0.583,0.652,0.652,0,0.258,0 +0.667,0.365,0.365,0,0,0,1,0.583,0.652,0.652,0,0,0 +0.667,0.365,0.365,0,0,0,1,0.583,0.652,0.652,0,0,0.366 +0.667,0.365,0.365,0,0,0,1,0.583,0.652,0.652,0,0,0 +1,0.671,0.671,0,0,0,0.6,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.122 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.488 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.122 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.157 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0945 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.177 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.158 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.0316 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.17 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.339 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.102 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.167 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.134 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.488 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.488 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0.8,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.157,0.157,0.6,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.296 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.671,0.671,0.8,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.799,0.799,1,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.799,0.799,0.5,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.244 +1,0.799,0.799,0,0.5,0,0,0.768,0.671,0.671,0.647,0,0.366 +1,0.799,0.799,0,1,0,0,0.768,0.671,0.671,0.353,0,0.417 +1,0.799,0.799,0,1,0,0,0.768,0.671,0.671,0.304,0,0.0347 +1,0.582,0.582,0,1,0,0,0.656,0.596,0.596,0.473,0,0 +1,0.582,0.582,0,0.8,0,0,0.656,0.596,0.596,0.582,0,0.122 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.122 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0.44,0,0 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.136 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.337 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.2 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.207 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.142 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.248 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.349 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0349 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.154 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0309 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.177 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.366 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.204 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.154 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,0.3,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.264,0.264,1,0,0,0,0.479,0.672,0.672,0,0,0.122 +0.667,0.264,0.264,0.5,0,0,0,0.479,0.672,0.672,0,0,0.366 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.122 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.142 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.342 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.122 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.631 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.244 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.122 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.196 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.244 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.139 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.209 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.122 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.257 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.327 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.196 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.193 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.0643 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.312 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.193 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.381 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.0651 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.366 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.488 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.263,0.263,0.8,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.263,0.263,1,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.263,0.263,1,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.122 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.122 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.122 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.122 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0.3,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,1,0,0.5,0,0.327,0.552,0.552,0,0.249,0 +1,0.238,0.238,0.3,0,1,0,0.327,0.552,0.552,0,0,0 +1,0.247,0.247,0,0,1,0,0.413,0.585,0.585,0,0.296,0 +1,0.247,0.247,0,0,1,0,0.413,0.585,0.585,0,0.348,0 +1,0.247,0.247,0,0,1,0,0.413,0.585,0.585,0,0.408,0 +1,0.345,0.345,0,0,0,0.3,0.491,0.646,0.646,0,0.592,0 +1,0.345,0.345,0,0,0,1,0.491,0.646,0.646,0,0.408,0.122 +1,0.345,0.345,0,0,0,1,0.491,0.646,0.646,0,0.296,0 +1,0.384,0.384,0,0,0,1,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,1,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.386 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.488 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.244 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.244 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.286 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.23 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.366 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.366 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.488 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.122 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.122 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.122 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.244 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.244 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.244 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.122 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.244 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +1,0.235,0.235,0.3,0,0,0,0.259,0.528,0.528,0,0,0 +1,0.235,0.235,1,0,0,0,0.259,0.528,0.528,0,0,0 +1,0.235,0.235,1,0,0,0,0.259,0.528,0.528,0,0,0.337 +1,0.235,0.235,0.5,0,0,0,0.259,0.528,0.528,0,0,0.0337 +1,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.168 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.606 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.158 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.154 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.366 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.366 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.488 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.66 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.398 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0.3,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.413,0.413,1,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.413,0.413,1,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0.9,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.219,0.219,0,0.5,0,0,0.354,0.476,0.476,0.299,0,0 +0.667,0.219,0.219,0,1,0,0,0.354,0.476,0.476,0.435,0,0.122 +1,0.388,0.388,0,1,0,0,0.45,0.486,0.486,0.397,0,0 +1,0.388,0.388,0,1,0,0,0.45,0.486,0.486,0.446,0,0 +1,0.388,0.388,0,0.7,0,0,0.45,0.486,0.486,0.609,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0.359,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.336 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.0671 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.157 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.0314 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.297 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.0329 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.244 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.156,0.156,1,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.156,0.156,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0.9,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.488 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.488 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0.8,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0,0.5,0,0,0.413,0.585,0.585,0.25,0,0 +0.667,0.247,0.247,0,1,0,0,0.413,0.585,0.585,0.435,0,0 +0.667,0.247,0.247,0,1,0,0,0.413,0.585,0.585,0.38,0,0 +0.667,0.247,0.247,0,1,0,0,0.413,0.585,0.585,0.554,0,0 +0.667,0.247,0.247,0,0.7,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.273,0.273,0,0.5,0,0,0.475,0.594,0.594,0.315,0,0 +0.667,0.273,0.273,0,1,0,0,0.475,0.594,0.594,0.359,0,0.122 +0.667,0.273,0.273,0,1,0,0,0.475,0.594,0.594,0.386,0,0 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0.7,0,0,0.584,0.658,0.658,0.326,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0.478,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.253,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.253,0,0.244 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.554,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.543,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.31,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0.495,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.207 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.289 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.167 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.135 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.189 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.343 +1,0.0768,0.0768,0.3,0,0,0,0.283,0.447,0.447,0,0,0.137 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.104,0.104,1,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.104,0.104,1,0,0,0,0.308,0.428,0.428,0,0,0.195 +1,0.104,0.104,0.9,0,0,0,0.308,0.428,0.428,0,0,0.0649 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0.5,0,0.352,0.461,0.461,0,0.283,0 +1,0.222,0.222,0,0,1,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,1,0,0.352,0.461,0.461,0,0.481,0 +1,0.222,0.222,0.3,0,1,0,0.352,0.461,0.461,0,0.0601,0 +1,0.222,0.222,1,0,1,0,0.352,0.461,0.461,0,0,0 +0.667,0.277,0.277,1,0,0,0.3,0.376,0.503,0.503,0,0.451,0 +0.667,0.277,0.277,1,0,0,1,0.376,0.503,0.503,0,0.451,0 +0.667,0.277,0.277,1,0,0,1,0.376,0.503,0.503,0,0.283,0 +0.667,0.277,0.277,1,0,0,1,0.376,0.503,0.503,0,0.159,0 +0.667,0.277,0.277,1,0,0,1,0.376,0.503,0.503,0,0.0987,0 +0.667,0.277,0.277,1,0,0,1,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,1,0,0,0.5,0.296,0.511,0.511,0,0.373,0 +0.667,0.274,0.274,1,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0.6,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.488 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0.3,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.345,0.345,0.1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.488 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0.3,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,1,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0.244 +0.667,0.413,0.413,1,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,1,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.726,0.726,1,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0.2,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.628 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.143 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.305 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.34 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.17 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.34 +0.667,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.136 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.204 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.102 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0.3,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.39,0.39,0.1,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0.122 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0.5,0,0,0.296,0.511,0.511,0.348,0,0.281 +0.667,0.274,0.274,0,1,0,0,0.296,0.511,0.511,0.408,0,0.366 +0.667,0.274,0.274,0,1,0,0,0.296,0.511,0.511,0.473,0,0 +0.333,0.162,0.162,0,1,0,0,0.277,0.488,0.488,0.543,0,0.0669 +0.333,0.162,0.162,0,1,0,0,0.277,0.488,0.488,0.285,0,0.335 +0.333,0.162,0.162,0,1,0,0,0.277,0.488,0.488,0.285,0,0 +0.333,0.156,0.156,0,0.1,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.484,0,0.122 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.565,0,0.122 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.348,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.446,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0.478,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0.473,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.366 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.366 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.488 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0.5,0,0.258,0.496,0.496,0,0.0515,0 +0.667,0.142,0.142,0,0,1,0,0.258,0.496,0.496,0,0,0.122 +0.667,0.142,0.142,0,0,0,0.3,0.268,0.492,0.492,0,0.644,0 +0.667,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0.0987,0 +0.667,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0.309,0.122 +0.667,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0.532,0 +0.667,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0.309,0 +0.667,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0,0.244 +0.667,0.142,0.142,0,0,0,0.5,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.488 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.122 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,0.3,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +1,0.345,0.345,0.1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.488 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.366 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.122 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.366 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.214 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.172 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.0343 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.354 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.598 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.349 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.175 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0.3,0,0,0,0.284,0.536,0.536,0,0,0 +1,0.328,0.328,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.332,0.332,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0.9,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.366 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.137 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.157 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.0945 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.488 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.244 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.181 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.175 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.169 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.236 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0.342 +1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0.103 +1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0 +0.667,0.136,0.136,0,0.5,1,0,0.305,0.463,0.463,0.353,0.0858,0 +0.667,0.136,0.136,0,1,1,0,0.305,0.463,0.463,0.315,0,0 +0.667,0.136,0.136,0,1,1,0,0.305,0.463,0.463,0.402,0,0 +0.667,0.136,0.136,0,1,0,0.3,0.305,0.463,0.463,0.478,0,0 +0.667,0.136,0.136,0,1,0,1,0.305,0.463,0.463,0,0,0 +0.667,0.136,0.136,0,1,0,1,0.305,0.463,0.463,0,0,0 +0.667,0.163,0.163,0,0.1,0,1,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,1,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,1,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,1,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0.3,0,0,0.9,0.317,0.484,0.484,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.277,0.488,0.488,0,0,0.122 +0.333,0.162,0.162,0.9,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.254 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.244 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.122 +0.667,0.256,0.256,0.8,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,1,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,1,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0.348,0,0 +0.333,0.143,0.143,0,1,0,0,0.246,0.496,0.496,0.44,0,0 +0.333,0.143,0.143,0,1,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,1,0,0,0.246,0.496,0.496,0.516,0,0 +0.333,0.143,0.143,0,1,0,0,0.246,0.496,0.496,0.478,0,0 +0.667,0.235,0.235,0,0.2,0,0,0.259,0.528,0.528,0.217,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0.3,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.332,0.332,0.1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,1,0,0.621,0.621,0.621,0,0.163,0 +1,0.467,0.467,0,0,0.5,0,0.621,0.621,0.621,0,0.597,0 +1,0.467,0.467,0,0,0,0.8,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0.6,0.621,0.621,0.621,0,0.356,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0.0258,0.366 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.283,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.21,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.335,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.073,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.0987,0.122 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0.137,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0.361,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0.421,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0.283,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0.236,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.173 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.277 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.166 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.166 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.548 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.125 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.0625 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.274,0.274,0.3,0,0,0,0.296,0.511,0.511,0,0,0.279 +1,0.274,0.274,1,0,0,0,0.296,0.511,0.511,0,0,0.23 +1,0.274,0.274,1,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.274,0.274,0.5,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.551 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.414 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.166 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.0994 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.409 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.244 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.147 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0.331 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0.266 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0.506 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0.0984 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0.189 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.151 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.173 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.488 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.238 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.667,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.122 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0.3,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,1,0,0,0,0.5,0.569,0.569,0,0,0.244 +0.667,0.328,0.328,1,0,1,0,0.5,0.569,0.569,0,0.515,0.366 +0.667,0.328,0.328,1,0,1,0,0.5,0.569,0.569,0,0.155,0 +1,0.467,0.467,1,0,1,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,1,0,1,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0.3,0,0.5,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0.8,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0.6,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.244 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.122 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0.3,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,1,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.263,0.263,1,0,1,0,0.228,0.511,0.511,0,0.296,0 +1,0.263,0.263,0.5,0,1,0,0.228,0.511,0.511,0,0.137,0 +1,0.263,0.263,0,0,1,0,0.228,0.511,0.511,0,0,0 +1,0.37,0.37,0,0,0,0.3,0.213,0.534,0.534,0,0.386,0 +1,0.37,0.37,0,0,0,1,0.213,0.534,0.534,0,0.21,0 +1,0.37,0.37,0,0,0,1,0.213,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,1,0.222,0.534,0.534,0,0.369,0 +1,0.359,0.359,0,0,0,1,0.222,0.534,0.534,0,0.361,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0.309,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0.0901,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0.459,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0.348,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0.137,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0.421,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0.408,0.488 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0.122 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0.159,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0.223,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0.258,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0.73,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0.519,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0.361,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0.0987,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0.348,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0.395,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0.519,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0.262,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0.27,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0.309,0.122 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0.0987,0.122 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0.421,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.366 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.488 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.488 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0.8,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +0.667,0.328,0.328,1,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,1,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,1,0,0,0,0.5,0.569,0.569,0,0,0.366 +0.667,0.328,0.328,1,0,0,0,0.5,0.569,0.569,0,0,0.244 +0.667,0.413,0.413,1,0,0,0,0.525,0.544,0.544,0,0,0.366 +0.667,0.413,0.413,0.3,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.122 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.122 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,1,0,0.283,0.447,0.447,0,0.433,0 +1,0.0768,0.0768,0,0,0.5,0,0.283,0.447,0.447,0,0.073,0 +1,0.0768,0.0768,0,0,0,0.8,0.283,0.447,0.447,0,0.0386,0 +1,0.136,0.136,0,0,0,1,0.305,0.463,0.463,0,0.21,0 +1,0.136,0.136,0,0,0,1,0.305,0.463,0.463,0,0.283,0 +1,0.136,0.136,0,0,0,1,0.305,0.463,0.463,0,0.481,0 +1,0.136,0.136,0,0,0,0.5,0.305,0.463,0.463,0,0.532,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0.176,0.204 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0.296,0.102 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0.249,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0.296,0.27 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0.249,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.167 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.1 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.262 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.167 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.0334 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.429 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.341 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.366 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.283 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.175 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.414 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0426 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.292 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.366 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.61 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.122 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.366 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.488 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.122 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.366 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.244 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.244 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.488 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.345 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.103 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.159 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.0318 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.506,0.167 +0.667,0.163,0.163,0,0,1,0,0.317,0.484,0.484,0,0.172,0.234 +0.667,0.277,0.277,0,0,1,0,0.376,0.503,0.503,0,0.481,0 +0.667,0.277,0.277,0,0,0.5,0,0.376,0.503,0.503,0,0.21,0 +0.667,0.277,0.277,0,0,0,0.8,0.376,0.503,0.503,0,0.249,0 +0.667,0.274,0.274,0,0,0,1,0.296,0.511,0.511,0,0.283,0.35 +0.667,0.274,0.274,0,0,0,1,0.296,0.511,0.511,0,0.569,0.663 +0.333,0.162,0.162,0,0,0,1,0.277,0.488,0.488,0,0.135,0.244 +0.333,0.162,0.162,0,0,0,0.5,0.277,0.488,0.488,0,0.361,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0.185,0.167 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0.455,0.167 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0.0129,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.27,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.223,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.459,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.21,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.366 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0.3,0,0,0,0.361,0.596,0.596,0,0,0.244 +1,0.332,0.332,1,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.345,0.345,0.1,0,0,0,0.491,0.646,0.646,0,0,0.189 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.137 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0.467,0,0.102 +1,0.345,0.345,0,1,0,0,0.491,0.646,0.646,0.326,0,0.122 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0.22,0,0 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0.22,0,0.158 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0.364,0,0.0634 +1,0.384,0.384,0,0.2,0,0,0.584,0.658,0.658,0.734,0,0 +1,0.384,0.384,0.3,0,0,0,0.584,0.658,0.658,0.538,0,0 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0.398 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0.184 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.122 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.488 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.244 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.135 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.164 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.156 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.0624 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.171 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.488 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.366 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.488 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0.3,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0.9,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0.489,0,0.244 +0.667,0.247,0.247,0,1,0,0,0.413,0.585,0.585,0.565,0,0.122 +0.667,0.247,0.247,0,1,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,1,0,0,0.413,0.585,0.585,0.783,0,0.244 +0.667,0.247,0.247,0,1,0,0,0.413,0.585,0.585,0.446,0,0 +0.667,0.273,0.273,0,0.2,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0.3,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,1,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.384,0.384,0.1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.156 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0936 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.472 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.244 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.308 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.244 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.165 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.198 +1,0.308,0.308,0,0,0,0,0.398,0.459,0.459,0,0,0 +1,0.308,0.308,0,0,0,0,0.398,0.459,0.459,0,0,0 +1,0.308,0.308,0,0,0,0,0.398,0.459,0.459,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.226 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.167 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.1 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.349 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.349 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.14 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.312 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0352 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.211 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.488 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.244 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.122 +0.667,0.235,0.235,0,0,1,0,0.259,0.528,0.528,0,0.124,0 +0.667,0.235,0.235,0,0,1,0,0.259,0.528,0.528,0,0.249,0 +0.667,0.235,0.235,0,0,1,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0.3,0.259,0.528,0.528,0,0.0258,0 +0.667,0.235,0.235,0,0,0,1,0.259,0.528,0.528,0,0.172,0 +0.667,0.235,0.235,0,0,0,1,0.259,0.528,0.528,0,0.541,0.122 +0.667,0.235,0.235,0,0,0,1,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,1,0.277,0.519,0.519,0,0.0386,0 +0.667,0.235,0.235,0,0,0,1,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,1,0.277,0.519,0.519,0,0.249,0 +0.667,0.235,0.235,0.3,0,0,0.9,0.277,0.519,0.519,0,0.249,0.172 +1,0.327,0.327,1,0,0,0,0.287,0.546,0.546,0,0.545,0.191 +1,0.328,0.328,0.1,0,0,0,0.297,0.571,0.571,0,0.459,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0.605,0.244 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0.223,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.148,0.148,0.3,0,0,0,0.336,0.525,0.525,0,0,0 +1,0.247,0.247,1,0,0,0,0.413,0.585,0.585,0,0,0.244 +1,0.247,0.247,1,0,0,0,0.413,0.585,0.585,0,0,0.366 +1,0.247,0.247,0.5,0,0,0,0.413,0.585,0.585,0,0,0.488 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.244 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0.489,0,0 +1,0.273,0.273,0,1,0,0,0.475,0.594,0.594,0.478,0,0 +1,0.328,0.328,0,1,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,1,0,0,0.5,0.569,0.569,0.788,0,0 +1,0.328,0.328,0,1,0,0,0.5,0.569,0.569,0.511,0,0 +1,0.328,0.328,0,0.2,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.122 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0.8,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,1,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,1,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.295 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.26 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.349 +0.667,0.274,0.274,0,0,0.5,0,0.296,0.511,0.511,0,0.0386,0.174 +0.667,0.274,0.274,0,0,1,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0.3,0.296,0.511,0.511,0,0.408,0 +0.667,0.274,0.274,0,0,0,1,0.296,0.511,0.511,0,0.369,0.17 +0.667,0.274,0.274,0,0,0,1,0.296,0.511,0.511,0,0.309,0.0339 +0.333,0.156,0.156,0,0,0,1,0.243,0.488,0.488,0,0.159,0 +0.333,0.156,0.156,0,0,0,1,0.243,0.488,0.488,0,0.361,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.309,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.506,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.309,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.223,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.0129,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.629,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.444,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.605,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.112,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.0987,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.249,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.0129,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.283,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.0987,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.488 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.0129,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.309,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.309,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.283,0.122 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.558,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.309,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.172,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.309,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.137,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.0987,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.258,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.21,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.341 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.3 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.244 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.488 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.214 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.157 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.0941 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.366 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.488 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.244 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.332 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0663 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0.3,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0.3,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.122 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0.3,0,0.5,0,0.277,0.488,0.488,0,0.0258,0.366 +1,0.162,0.162,1,0,1,0,0.277,0.488,0.488,0,0.494,0 +1,0.156,0.156,1,0,0,0.3,0.243,0.488,0.488,0,0.185,0.24 +1,0.156,0.156,0.5,0,0,1,0.243,0.488,0.488,0,0.382,0.122 +1,0.156,0.156,0,0,0,1,0.243,0.488,0.488,0,0,0.122 +1,0.37,0.37,0,0,0,0.6,0.213,0.534,0.534,0,0,0 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.643 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.153 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.245 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0.169 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.101 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.343 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.587 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.323 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.0323 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0.5,0,0,0.259,0.528,0.528,0.337,0,0 +0.667,0.235,0.235,0,1,0,0,0.259,0.528,0.528,0.391,0,0 +0.667,0.235,0.235,0,1,0,0,0.259,0.528,0.528,0.255,0,0 +0.667,0.235,0.235,0,1,0,0,0.277,0.519,0.519,0.462,0,0 +0.667,0.235,0.235,0,0.7,0,0,0.277,0.519,0.519,0.391,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0.397,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0.321,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0.386,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0.212,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0.212,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0.467,0,0 +0.667,0.235,0.235,0.8,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0.6,0,0,0,0.284,0.536,0.536,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.122 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.366 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.366 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.488 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.488 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0.554,0,0 +1,0.726,0.726,0,1,0,0,0.639,0.559,0.559,0.424,0,0 +1,0.726,0.726,0,1,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,1,0,0,0.639,0.559,0.559,0.473,0,0 +1,0.726,0.726,0,1,0,0,0.639,0.559,0.559,0.489,0,0.244 +1,0.557,0.557,0,0.2,0,0,0.547,0.497,0.497,0.467,0,0.244 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0.418,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0.429,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.244 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.265 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.066 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.33 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0.3,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.156,0.156,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.153,0.153,1,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.153,0.153,1,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.153,0.153,1,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.153,0.153,1,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.153,0.153,0.3,0,0,0,0.246,0.488,0.488,0,0,0.488 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.244 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.122 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.244 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.488 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0.8,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0.4,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.244 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.244 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.122 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.122 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.122 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.34 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.102 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.12 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.207 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.164 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.164 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.337 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.101 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.17 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.536 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0.3,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0.1,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.366 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.366 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.488 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0.3,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.247,0.247,0.1,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0.5,0,0,0.621,0.621,0.621,0.332,0,0 +1,0.467,0.467,0,1,0,0,0.621,0.621,0.621,0.5,0,0 +1,0.467,0.467,0,1,0,0,0.621,0.621,0.621,0.658,0,0 +1,0.467,0.467,0,1,0,0,0.621,0.621,0.621,0.636,0,0 +1,0.467,0.467,0,1,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,0,1,0,0,0.621,0.621,0.621,0,0,0 +0.667,0.413,0.413,0,0.1,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.284 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0969 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.225 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.174 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0695 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.329 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0987 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.122 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.178 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.283,0.438,0.438,0,0,0.244 +1,0.0495,0.0495,1,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.301 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.288 +1,0.0768,0.0768,0.3,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.104,0.104,1,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.222,0.222,0.1,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.144 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.488 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.279 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.071 +0.667,0.247,0.247,0.3,0,0,0,0.413,0.585,0.585,0,0,0.248 +0.667,0.247,0.247,1,0,0,0,0.413,0.585,0.585,0,0,0.122 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0.366 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0.488 +1,0.467,0.467,0.6,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.331 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.176 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.106 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.222 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.166 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.233 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.488 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.253 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.334 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.191 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.239 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.107 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0328 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.197 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.238 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.101 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.337 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.467 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.205 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0.5,0,0.258,0.496,0.496,0,0.283,0 +0.333,0.142,0.142,0,0,1,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,1,0,0.268,0.492,0.492,0,0.519,0 +0.333,0.142,0.142,0,0,0.5,0,0.268,0.492,0.492,0,0.446,0.244 +0.333,0.142,0.142,0,0,0,0.8,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0.6,0.268,0.492,0.492,0,0.0258,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.0386,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.408,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.0129,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.489,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.142,0 +0.333,0.142,0.142,0.3,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.332,0.332,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,1,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.345,0.345,1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,1,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.345,0.345,1,0.5,0,0,0.491,0.646,0.646,0.685,0,0 +1,0.345,0.345,0,1,0,0,0.491,0.646,0.646,0.391,0,0.366 +1,0.345,0.345,0,1,0,0,0.491,0.646,0.646,0.527,0,0 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0.435,0,0 +1,0.384,0.384,0,0.7,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0.516,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0.37,0,0.244 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0.576,0,0 +1,0.467,0.467,0,0,1,0,0.621,0.621,0.621,0.418,0.532,0 +1,0.467,0.467,0,0,1,0,0.621,0.621,0.621,0.226,0,0.122 +1,0.467,0.467,0,0,1,0,0.621,0.621,0.621,0.226,0,0.122 +0.667,0.328,0.328,0,0,0,0.3,0.5,0.569,0.569,0.44,0,0 +0.667,0.328,0.328,0,0,0,1,0.5,0.569,0.569,0,0,0.122 +1,0.328,0.328,0,0,0,0.1,0.5,0.569,0.569,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.157 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0629 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.122 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.488 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.61 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.61 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,1,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,1,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,1,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,1,0,0,0,0.274,0.443,0.443,0,0,0.289 +1,0.05,0.05,1,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,1,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0.168 +1,0.0768,0.0768,0.6,0,0,0,0.283,0.447,0.447,0,0,0.201 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.216 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.199 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.0498 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.61 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.366 +0.667,0.163,0.163,0.8,0,0,0,0.317,0.484,0.484,0,0,0.507 +0.667,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0.366 +0.667,0.163,0.163,0.8,0,0,0,0.317,0.484,0.484,0,0,0.122 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.244 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.239 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.366 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.1 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.301 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.342 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.137 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.498 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.0341 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.154 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.0615 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.177 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0.5,0,0.296,0.511,0.511,0,0.0858,0.165 +0.667,0.274,0.274,0,0,1,0,0.296,0.511,0.511,0,0,0.0329 +0.667,0.274,0.274,0,0,1,0,0.296,0.511,0.511,0,0.558,0 +0.667,0.274,0.274,0,0,1,0,0.296,0.511,0.511,0,0.519,0 +0.667,0.274,0.274,0,0,1,0,0.296,0.511,0.511,0,0.223,0 +0.667,0.263,0.263,0,0,0,0.3,0.228,0.511,0.511,0,0.468,0.141 +0.667,0.263,0.263,0,0,0,1,0.228,0.511,0.511,0,0.348,0 +0.667,0.263,0.263,0,0,0,1,0.228,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,1,0.228,0.511,0.511,0,0.519,0 +0.667,0.263,0.263,0,0,0,1,0.228,0.511,0.511,0,0.0258,0.101 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.122 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0.545,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0.309,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.574,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.431,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.296,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.0258,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.309,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.283,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.159,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.579,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.541,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.0386,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.73,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.18,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.24,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.421,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.0258,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.506,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.249,0.488 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.348,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.309,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.526,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.255,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.524,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.155,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.244 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.488 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0.473,0,0 +1,0.345,0.345,0,1,0,0,0.491,0.646,0.646,0.37,0,0 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0.435,0,0.122 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0.625,0,0 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0.6,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.34 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.204 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0.8,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0.366 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0.679,0,0 +1,0.413,0.413,0,1,0,0,0.525,0.544,0.544,0.177,0,0 +1,0.413,0.413,0,1,0,0,0.525,0.544,0.544,0.177,0,0 +1,0.413,0.413,0,1,0,0,0.525,0.544,0.544,0.565,0,0.488 +1,0.413,0.413,0,1,0,0,0.525,0.544,0.544,0.565,0,0.122 +1,0.275,0.275,0,0.2,0,0,0.385,0.496,0.496,0.429,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0.353,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.167 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.234 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.21 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.138 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.244 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.122 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,0.3,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.142,0.142,1,0,0,0,0.271,0.501,0.501,0,0,0.366 +0.667,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0.122 +0.667,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0.244 +0.667,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0.244 +0.667,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0.366 +0.667,0.148,0.148,1,0,0,0,0.336,0.525,0.525,0,0,0.366 +0.667,0.148,0.148,1,0,0,0,0.336,0.525,0.525,0,0,0.244 +0.667,0.148,0.148,1,0,0,0,0.336,0.525,0.525,0,0,0.366 +0.667,0.148,0.148,0.9,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.122 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.366 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.488 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.175 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.246 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.488 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.323 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.337 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.135 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.336 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.14 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.213 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0.213 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0.157 +1,0.343,0.343,0,0,0,0,0.232,0.546,0.546,0,0,0.0627 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0.156 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0.326 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0.364 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0.122 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.506 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.244 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.114 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.207 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.225 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.244 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0954 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.159 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.366 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.122 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.244 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.333,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.244 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.501,0.501,0,0.5,0,0,0.512,0.528,0.528,0.679,0,0 +0.667,0.501,0.501,0,1,0,0,0.512,0.528,0.528,0.304,0,0 +0.667,0.501,0.501,0,1,0,0,0.512,0.528,0.528,0.614,0,0.122 +0.667,0.501,0.501,0,1,0,0,0.512,0.528,0.528,0.571,0,0 +0.667,0.501,0.501,0,0.7,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.122 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.258,0 +1,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.137,0 +1,0.0768,0.0768,0,0,1,0,0.283,0.447,0.447,0,0.433,0 +1,0.0768,0.0768,0,0,1,0,0.283,0.447,0.447,0,0.0858,0 +1,0.0768,0.0768,0,0,1,0,0.283,0.447,0.447,0,0,0 +1,0.222,0.222,0,0,0,0.3,0.352,0.461,0.461,0,0.433,0.23 +1,0.222,0.222,0.3,0,0,1,0.352,0.461,0.461,0,0.0129,0 +1,0.222,0.222,1,0,0,1,0.352,0.461,0.461,0,0.185,0 +1,0.308,0.308,0.1,0,0,1,0.398,0.459,0.459,0,0.137,0 +1,0.308,0.308,0,0,0,1,0.398,0.459,0.459,0,0.309,0.154 +1,0.308,0.308,0,0,0,1,0.398,0.459,0.459,0,0,0.0617 +1,0.39,0.39,0,0,0,0.5,0.436,0.521,0.521,0,0.262,0 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0.0601,0 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0.322,0.212 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0.249,0 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0.309,0.141 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0.0386,0.281 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0.442,0 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0.438,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0.502,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0.0601,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0.137,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0.0129,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0.541,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0.249,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0.283,0.61 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0.47,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0.655,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0.33,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0.309,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0.408,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0.408,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0.433,0.122 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0.498,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0.476,0.244 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.244 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0.464,0.366 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0.536,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0.348,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0.444,0 +0.667,0.237,0.237,0.3,0,0,0,0.234,0.528,0.528,0,0.457,0.122 +0.667,0.237,0.237,1,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.259,0.528,0.528,0,0.446,0 +0.667,0.235,0.235,0.5,0,0,0,0.259,0.528,0.528,0,0.395,0.244 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0.519,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0.408,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0.361,0.122 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0.468,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0.223,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0.0987,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0.249,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0.438,0.236 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0.253,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0.0858,0.122 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0.361,0.104 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0.258,0.173 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.558,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.137,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.258,0 +1,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.451,0 +1,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.18,0 +1,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.244 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.366 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.122 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.244 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.262 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.0689 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.345 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.103 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.164 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.176 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.475 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.141 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.158 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0315 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.185 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0.333,0.142,0.142,0,0,1,0,0.258,0.496,0.496,0,0.348,0.122 +0.333,0.142,0.142,0,0,1,0,0.258,0.496,0.496,0,0.309,0.298 +0.667,0.235,0.235,0,0,1,0,0.259,0.528,0.528,0,0,0.247 +0.333,0.142,0.142,0,0,1,0,0.268,0.492,0.492,0,0.223,0 +0.333,0.142,0.142,0,0,0.5,0,0.268,0.492,0.492,0,0.361,0 +0.333,0.142,0.142,0,0,0,0.8,0.268,0.492,0.492,0,0.309,0.104 +0.333,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0.283,0.173 +0.333,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0.258,0 +0.333,0.142,0.142,0,0,0,1,0.268,0.492,0.492,0,0.283,0 +0.333,0.142,0.142,0,0,0,1,0.271,0.501,0.501,0,0.159,0 +0.333,0.142,0.142,0,0,0,1,0.271,0.501,0.501,0,0.0386,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.691,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.348,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.137,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0.519,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0.296,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0.8,0,0,0,0.292,0.509,0.509,0,0.558,0 +0.333,0.144,0.144,0.6,0,0,0,0.292,0.509,0.509,0,0.283,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.236,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.27,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.236,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.0386,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.296,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.21,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.488 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.488 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.122 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.244 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.333,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.333,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.275,0.275,0.8,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.275,0.275,0.6,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.163 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.586 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.61 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.183 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.122 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0336 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.336 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.168 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.158 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0316 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,1,0.5,0,0,0.274,0.443,0.443,0.234,0,0 +1,0.05,0.05,1,1,0,0,0.274,0.443,0.443,0.408,0,0 +1,0.05,0.05,1,1,0,0,0.274,0.443,0.443,0.326,0,0 +1,0.0768,0.0768,1,1,0,0,0.283,0.447,0.447,0.299,0,0 +1,0.0768,0.0768,1,1,0,0,0.283,0.447,0.447,0,0,0.177 +1,0.104,0.104,1,1,0,0,0.308,0.428,0.428,0,0,0.0355 +1,0.104,0.104,1,0.1,0,0,0.308,0.428,0.428,0,0,0 +1,0.104,0.104,1,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.104,0.104,0.6,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.548 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.0341 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.34 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.17 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.488 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.488 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.2 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0501 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.324 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.488 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.345,0.345,0,0.5,0,0,0.491,0.646,0.646,0.473,0,0 +1,0.345,0.345,0,1,0,0,0.491,0.646,0.646,0.451,0,0 +1,0.345,0.345,0,1,0,0,0.491,0.646,0.646,0.473,0,0.244 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0.484,0,0.122 +1,0.384,0.384,0.3,1,0,0,0.584,0.658,0.658,0.179,0,0 +1,0.384,0.384,1,1,0,0,0.584,0.658,0.658,0.179,0,0.122 +1,0.384,0.384,1,0.1,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0.288,0,0 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0.25,0,0 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0.397,0,0 +1,0.467,0.467,0.3,0,0.5,0,0.621,0.621,0.621,0,0.236,0 +1,0.467,0.467,0,0,1,0,0.621,0.621,0.621,0.337,0,0.244 +1,0.467,0.467,0,0,0,0.3,0.621,0.621,0.621,0.462,0.438,0.366 +1,0.467,0.467,0,0,0,1,0.621,0.621,0.621,0,0.567,0 +1,0.467,0.467,0,0,0,1,0.621,0.621,0.621,0,0.206,0.244 +1,0.595,0.595,0,0,0,1,0.658,0.583,0.583,0,0.579,0.244 +1,0.595,0.595,0,0,0,1,0.658,0.583,0.583,0,0.361,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.249,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.27,0.488 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.244 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0.296,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0.309,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0.433,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0.446,0.366 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0.249,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.366 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.836 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.296 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.243 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.257 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.173 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.139 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0.3,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0.1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.0751 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.353 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.21 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.325 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.159 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.366 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.175 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.349 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.182 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0.3,0,0,0,0.24,0.519,0.519,0,0,0.122 +0.667,0.245,0.245,1,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,1,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0.5,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.488 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.153 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.244 +0.667,0.238,0.238,0.8,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.366 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.244 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.366 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.244 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.259 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.139 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.087 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.332 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.106 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.199 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.366 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.244 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.248 +0.667,0.263,0.263,0.3,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.156,0.156,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,1,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0.5,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.366 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0.5,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.244 +0.333,0.144,0.144,0,0,1,0,0.292,0.509,0.509,0,0.223,0 +0.333,0.144,0.144,0,0,1,0,0.292,0.509,0.509,0,0.309,0 +0.667,0.238,0.238,0,0,1,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0,0,0,0.3,0.413,0.585,0.585,0,0.455,0 +0.667,0.247,0.247,0,0,0,1,0.413,0.585,0.585,0,0.309,0 +0.667,0.247,0.247,0,0,0,0.1,0.413,0.585,0.585,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.0858,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.249,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.738,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.283,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.223,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.408,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.361,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0.283,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0.486,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0.492,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.244 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.211 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.17 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.102 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.366 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.177 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.344 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.103 +1,0.256,0.256,0,0,0.5,0,0.234,0.511,0.511,0,0.369,0 +1,0.256,0.256,0,0,1,0,0.234,0.511,0.511,0,0.309,0 +1,0.343,0.343,0,0,1,0,0.232,0.546,0.546,0,0.369,0 +1,0.343,0.343,0,0,0.5,0,0.232,0.546,0.546,0,0.249,0.165 +1,0.343,0.343,0,0,0,0.8,0.232,0.546,0.546,0,0,0.0661 +1,0.343,0.343,0,0,0,1,0.232,0.546,0.546,0,0.249,0 +1,0.343,0.343,0,0,0,1,0.232,0.546,0.546,0,0,0 +0.667,0.245,0.245,0,0,0,0.1,0.24,0.519,0.519,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +1,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.122 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.122 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.244 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.244 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.244 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.244 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.122 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.244 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.488 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.071 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.273 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.61 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.488 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.667,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.488 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0.31,0,0 +0.667,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.435,0,0 +0.667,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.228,0,0 +0.667,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.228,0,0 +0.667,0.23,0.23,0,1,0,0,0.282,0.533,0.533,0.315,0,0 +0.667,0.23,0.23,0,0.1,0,0,0.282,0.533,0.533,0.587,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0.478,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0.489,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0.391,0,0.488 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0.429,0,0.122 +0.667,0.233,0.233,0.8,0,0,0,0.325,0.549,0.549,0.37,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0.198,0,0.122 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0.198,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0.366 +0.667,0.268,0.268,1,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.268,0.268,1,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.366 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.488 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.108 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.163 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.327 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.155 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0.605,0 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0.309,0 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0.1,0.2,0.245,0.487,0.487,0,0.361,0 +0.333,0.15,0.15,0,0,0,1,0.245,0.487,0.487,0,0.369,0 +0.333,0.15,0.15,0,0,0,1,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,1,0.248,0.491,0.491,0,0.361,0 +0.333,0.145,0.145,0,0,0,1,0.248,0.491,0.491,0,0.258,0.244 +0.333,0.145,0.145,0,0,0,1,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0.3,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.61 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.366 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.202 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.202 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.239 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.299 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.354 +1,0.338,0.338,0.8,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,1,0,1,0,0.58,0.653,0.653,0,0.408,0 +1,0.377,0.377,1,0,0.5,0,0.58,0.653,0.653,0,0.27,0 +1,0.377,0.377,1,0,0,0.8,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,1,0,0,1,0.58,0.653,0.653,0,0.0858,0 +1,0.377,0.377,0.2,0,0,1,0.58,0.653,0.653,0,0.0515,0 +1,0.377,0.377,0,0,0,1,0.58,0.653,0.653,0,0.296,0 +1,0.461,0.461,0,0,0,1,0.616,0.616,0.616,0,0.648,0.134 +1,0.461,0.461,0,0,0,0.7,0.616,0.616,0.616,0,0.352,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.0601,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.193 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.193 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.145 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.268 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.338 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.162 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0972 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.222 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.244 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.244 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.214 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.157 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0629 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.16 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.096 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.138 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0.734,0,0 +0.667,0.233,0.233,0,1,0,0,0.325,0.549,0.549,0.185,0,0.488 +0.667,0.233,0.233,0,1,0,0,0.325,0.549,0.549,0.185,0,0 +0.667,0.233,0.233,0,1,0,0,0.325,0.549,0.549,0.266,0,0.171 +1,0.324,0.324,0,1,0,0,0.359,0.592,0.592,0.418,0,0.343 +1,0.338,0.338,0,0.1,0,0,0.488,0.641,0.641,0.424,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +0.667,0.242,0.242,0.8,0,0,0,0.411,0.582,0.582,0,0,0.205 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0.4,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.159 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0.5,0,0.616,0.616,0.616,0,0.137,0.17 +1,0.461,0.461,0,0,1,0,0.616,0.616,0.616,0,0.0129,0.0339 +1,0.461,0.461,0,0,1,0,0.616,0.616,0.616,0,0.309,0 +1,0.461,0.461,0,0,1,0,0.616,0.616,0.616,0,0.223,0.244 +1,0.461,0.461,0,0,1,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0.2,0.1,0.653,0.579,0.579,0,0.433,0.277 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.283,0 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.579,0.122 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.283,0 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.459,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.571,0.219 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.309,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.185,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.0515,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.27,0.167 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.0129,0.334 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0.124,0.0334 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0.283,0.366 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0.249,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0.137,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0.296,0.122 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0.481,0.122 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0.236,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.149 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.161 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.202 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.253 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.162 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.366 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0.5,0,0.245,0.495,0.495,0,0.249,0.122 +0.333,0.141,0.141,0,0,1,0,0.245,0.495,0.495,0,0,0 +0.667,0.23,0.23,0,0,1,0,0.258,0.525,0.525,0,0.567,0 +0.667,0.23,0.23,0,0,1,0,0.258,0.525,0.525,0,0.421,0 +0.667,0.23,0.23,0,0,1,0,0.258,0.525,0.525,0,0.506,0 +0.667,0.23,0.23,0,0,0.2,0.1,0.258,0.525,0.525,0,0.446,0 +0.667,0.23,0.23,0,0,0,1,0.258,0.525,0.525,0,0.309,0 +0.667,0.23,0.23,0,0,0,1,0.258,0.525,0.525,0,0.361,0 +0.667,0.23,0.23,0,0,0,1,0.276,0.517,0.517,0,0.249,0 +0.667,0.23,0.23,0,0,0,1,0.276,0.517,0.517,0,0.369,0.122 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.283,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.197,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.258,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.309,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.0987,0.366 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0.3,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.23,0.23,1,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0.9,0,0,0,0.325,0.549,0.549,0,0,0.122 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.25 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.488 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.366 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.244 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.16 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0.5,0,0.258,0.495,0.495,0,0.27,0 +0.333,0.14,0.14,0,0,1,0,0.258,0.495,0.495,0,0.27,0.122 +0.333,0.14,0.14,0,0,1,0,0.258,0.495,0.495,0,0.0601,0 +0.333,0.14,0.14,0,0,0.6,0,0.258,0.495,0.495,0,0.249,0 +0.333,0.14,0.14,0,0,0,0.7,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,1,0.267,0.491,0.491,0,0.382,0 +0.333,0.14,0.14,0,0,0,1,0.267,0.491,0.491,0,0.283,0.244 +0.333,0.14,0.14,0,0,0,1,0.267,0.491,0.491,0,0.0987,0 +0.333,0.14,0.14,0,0,0,0.4,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.124,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.322,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.0601,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0.3,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.23,0.23,1,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0.122 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0.122 +0.667,0.233,0.233,0.7,0,0,0,0.325,0.549,0.549,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.366 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.61 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.375,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.359,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.435,0,0.366 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.353,0,0 +1,0.461,0.461,0,1,0,0,0.616,0.616,0.616,0.625,0,0 +1,0.461,0.461,0,0.5,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.37,0,0 +1,0.59,0.59,0,1,0,0,0.653,0.579,0.579,0.467,0,0.122 +1,0.273,0.273,0,1,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,1,0,0,0.383,0.495,0.495,0.375,0,0 +1,0.273,0.273,0,1,0,0,0.383,0.495,0.495,0.283,0,0.122 +1,0.273,0.273,0,1,0,0,0.383,0.495,0.495,0.511,0,0 +1,0.273,0.273,0,0.5,0,0,0.383,0.495,0.495,0.652,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.168 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.168 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.177 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.355 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0355 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.115 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.135,0.135,1,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,1,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,1,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,1,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0.3,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.168 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.324 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0.3,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0.244 +0.667,0.232,0.232,1,0.5,0,0,0.233,0.525,0.525,0.364,0,0.244 +0.667,0.232,0.232,1,1,0,0,0.233,0.525,0.525,0.446,0,0 +0.667,0.232,0.232,0.9,1,0,0,0.233,0.525,0.525,0.549,0,0 +0.667,0.232,0.232,0,1,0,0,0.233,0.525,0.525,0.348,0,0 +0.667,0.232,0.232,0,0.6,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.331 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.221 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.244 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.377,0.377,0,0.5,0,0,0.58,0.653,0.653,0.647,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.478,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.408,0,0 +1,0.461,0.461,0,1,0,0,0.616,0.616,0.616,0.424,0,0 +1,0.461,0.461,0,1,0,0,0.616,0.616,0.616,0.236,0,0.122 +1,0.461,0.461,0,1,0,0,0.616,0.616,0.616,0.236,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.375,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.438,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.219,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.435,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.658,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.451,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.538,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.484,0,0.163 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.326,0,0.0326 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0.478,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0.435,0,0.122 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.227 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,1,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.25,0.25,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0.5,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.488 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.488 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.488 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.122 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.244 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.209 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.244 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.253 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.122 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.0676 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.257 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.244 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0.244 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.159 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.0637 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.279 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0698 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.488 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.488 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.244 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.488 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +1,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +1,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +1,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.122 +1,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.122 +1,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +1,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +1,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +1,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +1,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +1,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +1,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +1,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.244 +1,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.244 +1,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.366 +1,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.122 +1,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0 +1,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0 +1,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0.244 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.292 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0339 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.237 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.597 +1,0.22,0.22,0.3,0,0,0,0.35,0.459,0.459,0,0,0.344 +1,0.22,0.22,1,0,0,0,0.35,0.459,0.459,0,0,0.0689 +1,0.305,0.305,1,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.305,0.305,0.5,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.305,0.305,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.128 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.196 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.0652 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.189 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.364 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.165 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.0659 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.122 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.128 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.488 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.488 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.121 +1,0.0763,0.0763,0,0,0.5,0,0.282,0.446,0.446,0,0.348,0 +1,0.0763,0.0763,0,0,1,0,0.282,0.446,0.446,0,0.391,0 +1,0.0763,0.0763,0,0,1,0,0.282,0.446,0.446,0,0.253,0 +1,0.0763,0.0763,0,0,1,0,0.282,0.446,0.446,0,0.571,0 +1,0.0763,0.0763,0,0,1,0,0.282,0.446,0.446,0,0,0 +1,0.22,0.22,0,0,0.2,0.1,0.35,0.459,0.459,0,0.309,0 +1,0.22,0.22,0,0,0,1,0.35,0.459,0.459,0,0.073,0.161 +1,0.22,0.22,0,0,0,1,0.35,0.459,0.459,0,0.506,0.0646 +1,0.22,0.22,0,0,0,0.6,0.35,0.459,0.459,0,0.408,0.258 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0.395,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.167 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.234 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0.533,0,0 +0.333,0.141,0.141,0,1,0,0,0.291,0.507,0.507,0.315,0,0 +0.333,0.146,0.146,0,1,0,0,0.334,0.524,0.524,0.299,0,0 +0.333,0.146,0.146,0,1,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.242,0.242,0,1,0,0,0.411,0.582,0.582,0.25,0,0 +0.667,0.242,0.242,0,1,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0.5,0,0,0.411,0.582,0.582,0.505,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0.277,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.277,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.408,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.473,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.413,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.375,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.473,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.554,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.304,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.614,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.31,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.353,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0.511,0,0.122 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0.364,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.732 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.157 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.0629 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.117 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.209 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.14 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.209 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.174 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.261 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.202 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0.3,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,1,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0.9,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0,0.5,0,0,0.488,0.641,0.641,0.571,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0.326,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0.489,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0.663,0,0 +1,0.338,0.338,0,0.6,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.17 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.224 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.301 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.898 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.355 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.419 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.649 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.161 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.295 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.104 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.311 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.332 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.133 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.209 +0.333,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0.5,0,0.267,0.491,0.491,0,0.283,0 +0.667,0.14,0.14,0,0,1,0,0.267,0.491,0.491,0,0.373,0 +0.333,0.14,0.14,0,0,1,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0.6,0,0.27,0.499,0.499,0,0.0987,0 +0.333,0.14,0.14,0,0,0,0.7,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,1,0.27,0.499,0.499,0,0.0386,0 +0.333,0.14,0.14,0,0,0,1,0.27,0.499,0.499,0,0.249,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.249,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.159,0.122 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.657,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.309,0.122 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.223,0.244 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0.0129,0.244 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0.0386,0.174 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.262 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0.245,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0.335,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0.348,0.219 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0.395,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0.0515,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0.283,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0.369,0.344 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0.322,0.566 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.35 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.33,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.309,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.0601,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.137,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.0644,0.244 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0.361,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0.223,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0.172,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0.223,0.122 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.249,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.296,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.185,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.223,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.472,0.366 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0.639,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0.283,0.122 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0.421,0.244 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.471 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.133 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.167 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.134 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.292 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0339 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0.258,0 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0.395,0 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0.288,0 +0.333,0.15,0.15,0,0,0.7,0,0.245,0.487,0.487,0,0.444,0 +0.333,0.15,0.15,0,0,0,0.6,0.245,0.487,0.487,0,0.444,0 +0.333,0.145,0.145,0,0,0,1,0.248,0.491,0.491,0,0.399,0 +0.333,0.145,0.145,0.3,0,0,1,0.248,0.491,0.491,0,0.137,0.122 +0.333,0.145,0.145,1,0,0,1,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,1,0,0,1,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,1,0,0,1,0.248,0.491,0.491,0,0,0.488 +0.333,0.145,0.145,1,0,0,1,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,1,0,0,0.3,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0.5,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.244 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.244 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.122 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.179 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.244 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.156 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.0625 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.365 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.244 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.488 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.142 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.188 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.235 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.344 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.655 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.511 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.394 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.165 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.198 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0.8,0,0,0,0.316,0.483,0.483,0,0,0.169 +1,0.162,0.162,0.6,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.124 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.521 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.231 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.131 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.287 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.19 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.0474 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.244 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.244 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.61 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0.3,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,1,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.23,0.23,0.1,0,0,0,0.282,0.533,0.533,0,0,0.244 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0.122 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.122 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.488 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.244 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.147 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.169 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.0678 +1,0.162,0.162,0,0.5,0,0,0.316,0.483,0.483,0.587,0,0 +1,0.162,0.162,0,1,0,0,0.316,0.483,0.483,0.446,0,0 +1,0.162,0.162,0,1,0,0,0.316,0.483,0.483,0.293,0,0 +1,0.162,0.162,0,1,0,0,0.316,0.483,0.483,0.533,0,0 +1,0.162,0.162,0,0.6,0,0,0.316,0.483,0.483,0,0,0.166 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.0331 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.53 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.0668 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.131 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.23 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.366 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.366 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.244 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.244 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0.8,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,1,0,0,0,0.282,0.533,0.533,0,0,0 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0.244 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0.122 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0.6,0,0,0,0.488,0.641,0.641,0,0,0.244 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.263 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.366 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.294 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0344 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.659 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0341 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.158 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0947 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.241 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.206 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.244 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.122 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.241 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.244 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0.3,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0.244 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.259 +1,0.377,0.377,0.1,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +1,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.122 +1,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.366 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.366 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.224 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.488 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.366 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.207 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.128 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.128 +1,0.0504,0.0504,0,0,0,0,0.288,0.418,0.418,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0.344 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0.0688 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.169 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.337 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.273 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.145,0.145,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0.9,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.488 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.667,0.242,0.242,0.8,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0.244 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0.244 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0.244 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.377,0.377,0.2,0,0,0,0.58,0.653,0.653,0.571,0,0.122 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.554,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.549,0,0 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.516,0,0 +1,0.461,0.461,0,0.1,0,0,0.616,0.616,0.616,0.522,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.679,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0.488 +1,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.384 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.167 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.1 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.147 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.177 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.353 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.244 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.366 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.244 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.146,0.146,0.3,0,0,0,0.334,0.524,0.524,0,0,0.244 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.268,0.268,1,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,1,0,0,0,0.472,0.591,0.591,0,0,0.122 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.227 +1,0.377,0.377,0.3,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.167 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.167 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.252 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.068 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.34 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.102 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.343 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.24 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.174 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.279 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.166 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.167 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.167 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.176 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.488 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.145,0.145,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0,0 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0.1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.146,0.146,0.3,0,0,0,0.334,0.524,0.524,0,0,0.488 +0.333,0.146,0.146,1,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0.5,0,0,0,0.411,0.582,0.582,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.332 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.155 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.924,0,0.156 +1,0.461,0.461,0,1,0,0,0.616,0.616,0.616,0.272,0,0.0938 +0.667,0.41,0.41,0,1,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,1,0,0,0.521,0.541,0.541,0.457,0,0 +0.667,0.41,0.41,0,1,0,0,0.521,0.541,0.541,0.533,0,0.361 +0.667,0.41,0.41,0,1,0,0,0.521,0.541,0.541,0,0,0.137 +0.667,0.41,0.41,0,0.5,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.213 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.35 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.158 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0632 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.236,0 +1,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.137,0 +1,0.0499,0.0499,0,0,1,0,0.273,0.442,0.442,0,0.579,0 +1,0.0499,0.0499,0,0,1,0,0.273,0.442,0.442,0,0.223,0 +1,0.0499,0.0499,0,0,0.7,0,0.273,0.442,0.442,0,0.322,0 +1,0.0499,0.0499,0,0,0,0.6,0.273,0.442,0.442,0,0.348,0 +1,0.0763,0.0763,0,0,0,1,0.282,0.446,0.446,0,0.489,0 +1,0.0763,0.0763,0,0,0,1,0.282,0.446,0.446,0,0.588,0 +1,0.0763,0.0763,0,0,0,1,0.282,0.446,0.446,0,0.382,0 +1,0.0763,0.0763,0,0,0,1,0.282,0.446,0.446,0,0.481,0 +1,0.0763,0.0763,0,0,0,0.9,0.282,0.446,0.446,0,0.27,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0.296,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0.0987,0.171 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0.0258,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0.296,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.177 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.177 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.325 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.175 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.0701 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.262 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.0328 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.122 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.138 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.244 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.366 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0.5,0,0.267,0.491,0.491,0,0.0258,0.244 +0.667,0.23,0.23,0,0,1,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,1,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0.6,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0.7,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,1,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,1,0.282,0.533,0.533,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0.3,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0.1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.299 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.475 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.402 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.0947 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.342 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0684 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.171 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.27,0.27,1,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,1,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,1,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,1,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,1,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,1,0,0.5,0,0.294,0.508,0.508,0,0.369,0 +1,0.258,0.258,1,0,1,0,0.227,0.508,0.508,0,0.208,0 +1,0.258,0.258,1,0,1,0,0.227,0.508,0.508,0,0.148,0 +1,0.258,0.258,1,0,0.6,0,0.227,0.508,0.508,0,0.283,0 +1,0.362,0.362,1,0,0,0.7,0.212,0.53,0.53,0,0.73,0 +1,0.362,0.362,1,0,0,1,0.212,0.53,0.53,0,0.382,0 +0.667,0.258,0.258,1,0,0,1,0.227,0.508,0.508,0,0.0601,0 +0.667,0.25,0.25,1,0,0,1,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,1,0,0,1,0.233,0.508,0.508,0,0.644,0 +0.667,0.25,0.25,1,0,0,0.8,0.233,0.508,0.508,0,0.0515,0 +0.667,0.25,0.25,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0.5,0,0,0,0.233,0.508,0.508,0,0.137,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0.361,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.249,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.0987,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.519,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.309,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0.359,0,0 +0.667,0.232,0.232,0,1,0,0,0.233,0.525,0.525,0.587,0,0.122 +0.667,0.232,0.232,0,1,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.232,0.232,0,1,0,0,0.233,0.525,0.525,0.685,0,0 +0.333,0.141,0.141,0,1,0,0,0.245,0.495,0.495,0.391,0,0.122 +0.333,0.141,0.141,0,0.1,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0.266,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0.511,0,0.244 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0.182,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0.182,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0.842,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0.484,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0.505,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0.473,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0.457,0,0.366 +0.667,0.23,0.23,0,0,1,0,0.276,0.517,0.517,0.533,0.249,0 +0.667,0.23,0.23,0,0,1,0,0.276,0.517,0.517,0,0.258,0.488 +0.667,0.23,0.23,0,0,1,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.23,0.23,0,0,0.1,0.2,0.282,0.533,0.533,0,0.506,0 +0.667,0.23,0.23,0,0,0,1,0.282,0.533,0.533,0,0.457,0 +0.667,0.23,0.23,0,0,0,1,0.282,0.533,0.533,0,0.135,0 +0.667,0.23,0.23,0,0,0,0.5,0.282,0.533,0.533,0,0.554,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.433,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0.556,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0.53,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0.395,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.488 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.0946 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.143 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.528 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0972 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.454 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.488 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.244 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.345 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.0689 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.2 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0499 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.242 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.171 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.0683 +1,0.258,0.258,0.8,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.258,0.258,0.6,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.245 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.0997 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.0665 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.333,0.145,0.145,0.3,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0,0 +1,0.324,0.324,1,0,0,0,0.221,0.555,0.555,0,0,0.122 +1,0.324,0.324,1,0,0,0,0.221,0.555,0.555,0,0,0 +1,0.324,0.324,0.3,0,0,0,0.221,0.555,0.555,0,0,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0,0 +1,0.32,0.32,0,0,1,0,0.258,0.555,0.555,0,0.519,0 +1,0.32,0.32,0,0,0.5,0,0.258,0.555,0.555,0,0.0858,0 +1,0.32,0.32,0,0,0,0.8,0.258,0.555,0.555,0,0,0 +1,0.32,0.32,0,0,0,1,0.258,0.555,0.555,0,0.258,0 +1,0.32,0.32,0,0,0,0.9,0.258,0.555,0.555,0,0.0858,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0,0.488 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0.27,0.244 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0.421,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0.373,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0.223,0.244 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0.249,0.366 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0.223,0.366 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0.137,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0.122 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0.8,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.61 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.122 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.122 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.122 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.191 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.402 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.276 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.366 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.387 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0.3,0,0,0,0.316,0.483,0.483,0,0,0.244 +0.333,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.333,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0.7,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.488 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.61 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.305,0.305,0,0,0,0,0.396,0.456,0.456,0,0,0.414 +1,0.305,0.305,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.305,0.305,0,0,0,0,0.396,0.456,0.456,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.318 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.192 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.0775 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.244 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.122 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0.5,0,0,0.472,0.591,0.591,0.5,0,0 +0.667,0.268,0.268,0,1,0,0,0.472,0.591,0.591,0.353,0,0.122 +0.667,0.268,0.268,0,1,0,0,0.472,0.591,0.591,0.582,0,0 +0.667,0.324,0.324,0,1,0,0,0.497,0.566,0.566,0.266,0,0 +0.667,0.324,0.324,0,0.6,0,0,0.497,0.566,0.566,0.424,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.353,0,0.194 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.429,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.347 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.353 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.244 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.122 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.34 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.34 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.068 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.466 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.0334 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.213 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.355 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.106 +1,0.381,0.381,0,0,0,0,0.313,0.53,0.53,0,0,0 +1,0.381,0.381,0,0,0,0,0.313,0.53,0.53,0,0,0 +1,0.381,0.381,0,0,0,0,0.313,0.53,0.53,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.234 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.104 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.209 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,0.3,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.14,0.14,1,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0.5,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0.332,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0.402,0,0 +1,0.268,0.268,0,1,0,0,0.472,0.591,0.591,0,0,0 +1,0.268,0.268,0,1,0,0,0.472,0.591,0.591,0.636,0,0 +1,0.268,0.268,0,1,0,0,0.472,0.591,0.591,0.424,0,0.122 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.326,0,0 +1,0.377,0.377,0,0.5,0,0,0.58,0.653,0.653,0.408,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.418,0,0.244 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.266,0,0.488 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.408,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.799,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.258,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.258,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.44,0,0.366 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.592,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.255,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.734,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.332,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.326,0,0.244 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.766,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0.435,0,0.19 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0.236,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0.236,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0988 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.488 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.332 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.0663 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.169 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.338 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0.168 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0.202 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.349 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.279 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0.5,0,0,0.242,0.487,0.487,0.359,0,0 +0.333,0.154,0.154,0,1,0,0,0.242,0.487,0.487,0.25,0,0 +0.333,0.154,0.154,0,1,0,0,0.242,0.487,0.487,0.799,0,0 +0.333,0.15,0.15,0,1,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0.6,0.5,0,0.245,0.487,0.487,0,0.309,0.122 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0.309,0 +0.333,0.15,0.15,0,0,1,0,0.245,0.487,0.487,0,0.382,0 +0.333,0.15,0.15,0,0,0.6,0,0.245,0.487,0.487,0,0.519,0 +0.667,0.25,0.25,0,0,0,0.7,0.233,0.508,0.508,0,0,0 +0.667,0.24,0.24,0,0,0,1,0.239,0.517,0.517,0,0.382,0 +0.667,0.24,0.24,0,0,0,1,0.239,0.517,0.517,0,0.369,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.425,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.227,0.122 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.275,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.433,0 +0.667,0.232,0.232,0.3,0,0,0,0.233,0.525,0.525,0,0.21,0 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0,0.244 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0.137,0 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0.0987,0 +0.667,0.232,0.232,0.9,0,0,0,0.233,0.525,0.525,0,0.309,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.476,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.464,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.442,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.0858,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.399,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.395,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.0601,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.366 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.319 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.197 +1,0.338,0.338,0,0.5,0,0,0.488,0.641,0.641,0.429,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0.571,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0.625,0,0.244 +1,0.377,0.377,0,1,0,0,0.58,0.653,0.653,0.424,0,0.612 +1,0.377,0.377,0,0.6,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.549,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.277,0,0.171 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.522,0,0.0342 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.315,0,0 +1,0.461,0.461,0.3,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.41,0.41,1,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,1,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.41,0.41,1,0,0,0,0.521,0.541,0.541,0,0,0.529 +1,0.41,0.41,0.5,0,0,0,0.521,0.541,0.541,0,0,0.0652 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0537 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.168 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.223 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.732 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0504,0.0504,0,0,0,0,0.288,0.418,0.418,0,0,0 +1,0.0504,0.0504,0,0,0,0,0.288,0.418,0.418,0,0,0 +1,0.0504,0.0504,0,0,0,0,0.288,0.418,0.418,0,0,0 +1,0.0504,0.0504,0,0,0,0,0.288,0.418,0.418,0,0,0 +1,0.0504,0.0504,0,0,0,0,0.288,0.418,0.418,0,0,0 +0.667,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.112 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.173 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.104 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.184 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.244 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.366 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.366 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0.3,0,0,0,0.325,0.549,0.549,0,0,0.488 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0.488 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0.5,0,0,0,0.411,0.582,0.582,0,0,0.244 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.244 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.488 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.324,0.324,0.8,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,1,0,0,0,0.497,0.566,0.566,0,0,0.122 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0.366 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,0.8,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0499,0.0499,1,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.103,0.103,1,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0.8,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.16,0.16,0.2,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.122 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.134 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.349 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.331 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.14 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.297 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.33 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.033 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.167 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.445 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0.38,0,0 +0.333,0.14,0.14,0,1,0,0,0.267,0.491,0.491,0,0,0.377 +0.333,0.14,0.14,0,1,0,0,0.267,0.491,0.491,0.462,0,0.2 +0.333,0.14,0.14,0,1,0,0,0.267,0.491,0.491,0.533,0,0.244 +0.333,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.62,0,0 +0.333,0.14,0.14,0,0.1,0,0,0.27,0.499,0.499,0.37,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0.571,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0.571,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0.337,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0.408,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0.8,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0.6,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0.5,0,0,0.411,0.582,0.582,0.473,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0.636,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,1,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0.6,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.324,0.324,0,0.5,0,0,0.497,0.566,0.566,0.435,0,0 +0.667,0.324,0.324,0,1,0,0,0.497,0.566,0.566,0.402,0,0 +0.667,0.324,0.324,0,1,0,0,0.497,0.566,0.566,0.228,0,0 +0.667,0.324,0.324,0,1,0,0,0.497,0.566,0.566,0.37,0,0 +0.667,0.324,0.324,0,0.6,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.366 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.366 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.189 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0946 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.159 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.13 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,0.8,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.27,0.27,1,0,0.5,0,0.294,0.508,0.508,0,0.0129,0 +1,0.381,0.381,1,0,1,0,0.313,0.53,0.53,0,0,0 +1,0.381,0.381,1,0,1,0,0.313,0.53,0.53,0,0.373,0 +1,0.381,0.381,1,0,1,0,0.313,0.53,0.53,0,0.0987,0 +1,0.362,0.362,1,0,1,0,0.212,0.53,0.53,0,0,0 +1,0.362,0.362,1,0,0.2,0.1,0.212,0.53,0.53,0,0.356,0 +1,0.362,0.362,1,0,0,1,0.212,0.53,0.53,0,0.414,0 +1,0.362,0.362,0.6,0,0,1,0.212,0.53,0.53,0,0.23,0.244 +1,0.362,0.362,0,0,0,1,0.212,0.53,0.53,0,0.27,0 +1,0.362,0.362,0,0,0,1,0.212,0.53,0.53,0,0.137,0.122 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0.431,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0.384,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0.361,0.488 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0.361,0 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0.0386,0 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0,0 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0.262,0 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0.335,0 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0,0 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0.47,0 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0.431,0 +1,0.324,0.324,0,0,0,0,0.221,0.555,0.555,0,0.163,0 +1,0.324,0.324,0,0,0,0,0.221,0.555,0.555,0,0.163,0 +1,0.324,0.324,0,0,0,0,0.221,0.555,0.555,0,0.309,0.61 +1,0.324,0.324,0,0,0,0,0.221,0.555,0.555,0,0,0 +1,0.324,0.324,0,0,0,0,0.221,0.555,0.555,0,0.322,0 +1,0.324,0.324,0,0,0,0,0.221,0.555,0.555,0,0.309,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0.309,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0.369,0.122 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0.219,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0.33,0 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0.283,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0.283,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0.356,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0,0 +1,0.32,0.32,0,0,0,0,0.285,0.542,0.542,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.156 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.122 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.244 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.338,0.338,0.8,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0.244 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.61 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.59,0.59,0.5,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.244 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.295 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.159 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.128 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.337 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.236 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.298 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.342 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.173 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.158 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.366 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.366 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.366 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.259 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0.402,0,0.122 +0.333,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.315,0,0 +0.333,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.234,0,0 +0.333,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.234,0,0 +0.333,0.14,0.14,0,1,0,0,0.27,0.499,0.499,0.647,0,0 +0.333,0.141,0.141,0,0.1,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0.478,0,0.244 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0.484,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0.467,0,0.31 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0.435,0,0.356 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0.516,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.345 +1,0.338,0.338,0.3,0,0,0,0.488,0.641,0.641,0,0,0.138 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.312 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.307 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.377,0.377,0.3,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0.5,0,0.616,0.616,0.616,0,0.0987,0 +1,0.461,0.461,0,0,1,0,0.616,0.616,0.616,0,0.506,0 +1,0.59,0.59,0,0,0,0.3,0.653,0.579,0.579,0,0.425,0 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.464,0.488 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.382,0 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.73,0 +1,0.59,0.59,0,0,0,1,0.653,0.579,0.579,0,0.309,0 +1,0.41,0.41,0,0,0,1,0.521,0.541,0.541,0,0.361,0 +1,0.496,0.496,0,0,0,0.2,0.509,0.525,0.525,0,0.348,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.321 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.168 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.0671 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.297 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.187 +1,0.305,0.305,0,0,0,0,0.396,0.456,0.456,0,0,0.0935 +0.667,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.157 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.156 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.0624 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.488 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0.8,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0.6,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.488 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.244 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.122 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.366 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,0.8,0.5,0,0,0.58,0.653,0.653,0.353,0,0.193 +1,0.377,0.377,1,1,0,0,0.58,0.653,0.653,0.554,0,0 +0.667,0.268,0.268,1,1,0,0,0.472,0.591,0.591,0.451,0,0 +1,0.377,0.377,1,1,0,0,0.58,0.653,0.653,0.527,0,0 +1,0.377,0.377,1,0.6,0,0,0.58,0.653,0.653,0.274,0,0 +1,0.377,0.377,0.8,0,0,0,0.58,0.653,0.653,0.274,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.366 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.326 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.0652 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.72,0.72,0,0,1,0,0.635,0.555,0.555,0,0.519,0 +1,0.72,0.72,0,0,1,0,0.635,0.555,0.555,0,0.236,0.271 +1,0.496,0.496,0,0,1,0,0.509,0.525,0.525,0,0.309,0.0339 +1,0.386,0.386,0,0,0.1,0.2,0.448,0.484,0.484,0,0.459,0 +1,0.386,0.386,0,0,0,1,0.448,0.484,0.484,0,0.112,0 +1,0.386,0.386,0,0,0,1,0.448,0.484,0.484,0,0,0 +1,0.386,0.386,0,0,0,1,0.448,0.484,0.484,0,0.283,0 +1,0.386,0.386,0,0,0,1,0.448,0.484,0.484,0,0.296,0 +1,0.386,0.386,0,0,0,1,0.448,0.484,0.484,0,0.296,0 +1,0.183,0.183,0,0,0,1,0.393,0.451,0.451,0,0.309,0 +1,0.183,0.183,0,0,0,1,0.393,0.451,0.451,0,0.322,0 +1,0.116,0.116,0,0,0,1,0.325,0.458,0.458,0,0,0.122 +1,0.116,0.116,0,0,0,0.1,0.325,0.458,0.458,0,0.369,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0.348,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0.369,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.322,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.348,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.309,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.296,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.472,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.309,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0.309,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0.369,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0.232,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0.236,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0.558,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0.0987,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0.249,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0.361,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0.468,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0.309,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0.361,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0.382,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0.631,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0.309,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.396 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0.153 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0.0612 +0.333,0.163,0.163,1,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0.4,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.488 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0.3,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.236,0.236,1,0,0,0,0.282,0.533,0.533,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.366 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.488 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.122 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.196 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.136 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.36 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.339 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0677 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.122 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0.3,0,0,0,0.304,0.462,0.462,0,0,0.149 +0.667,0.136,0.136,1,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0.34 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0.34 +0.333,0.163,0.163,0.9,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.558 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.1 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.575 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.237 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.135 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.275 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.309 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.337 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.122 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.167 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.0668 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.264 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0659 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.138 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.142 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.198 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.234 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.352 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.341 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.0682 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.281 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.0956 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.244 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.289,0.289,0.8,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0.6,0,0,0,0.472,0.591,0.591,0.364,0,0 +0.667,0.289,0.289,0,1,0,0,0.472,0.591,0.591,0.647,0,0.122 +0.667,0.289,0.289,0,1,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,1,0,0,0.472,0.591,0.591,0.359,0,0.244 +0.667,0.289,0.289,0,1,0,0,0.472,0.591,0.591,0.342,0,0 +0.667,0.362,0.362,0,0.1,0,0,0.497,0.566,0.566,0.391,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.366 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.337 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.303 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.366 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.244 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.299 +1,0.397,0.397,0.3,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.397,0.397,1,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.397,0.397,1,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,1,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.223,0.223,1,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.163,0.163,1,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0.5,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.312 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.285 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.22 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.134 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.31 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0335 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.201 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.344 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.103 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.668,0.668,0,0.5,0,0,0.653,0.579,0.579,0.473,0,0 +1,0.668,0.668,0,1,0,0,0.653,0.579,0.579,0.761,0,0.283 +1,0.668,0.668,0,1,0,0,0.653,0.579,0.579,0.435,0,0.161 +1,0.788,0.788,0,1,0,0,0.635,0.555,0.555,0.549,0,0 +1,0.788,0.788,0,0.6,0,0,0.635,0.555,0.555,0,0,0.488 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.337,0,0.122 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.527,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0.5,0,0.227,0.508,0.508,0,0.296,0 +1,0.263,0.263,0,0,1,0,0.227,0.508,0.508,0,0.309,0 +1,0.256,0.256,0,0,0,0.3,0.233,0.508,0.508,0,0.137,0 +1,0.256,0.256,0,0,0,1,0.233,0.508,0.508,0,0.309,0 +1,0.256,0.256,0,0,0,1,0.233,0.508,0.508,0,0,0 +0.667,0.153,0.153,0,0,0,1,0.245,0.487,0.487,0,0.373,0 +0.667,0.153,0.153,0,0,0,1,0.245,0.487,0.487,0,0.0601,0 +0.667,0.153,0.153,0,0,0,1,0.245,0.487,0.487,0,0,0 +0.667,0.147,0.147,0,0,0,0.1,0.248,0.491,0.491,0,0.369,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.369,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.0258,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.348,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.472,0 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.249,0 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.258,0 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.73,0 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.408,0 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.0601,0.122 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.543,0.366 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.47,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.249,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.0515,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.0601,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.0987,0.122 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.575,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.313,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.631,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.193,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.451,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.579,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.159,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.309,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0.0601,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0.0258,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0.408,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0.382,0.122 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0.137,0.244 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.407 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.098 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.289,0.289,0.1,0,0,0,0.472,0.591,0.591,0,0,0.334 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.289,0.289,0,0.5,0,0,0.472,0.591,0.591,0.37,0,0 +0.667,0.289,0.289,0,1,0,0,0.472,0.591,0.591,0.38,0,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.418,0,0.244 +1,0.518,0.518,0,1,0,0,0.616,0.616,0.616,0.293,0,0 +1,0.518,0.518,0,1,0,0,0.616,0.616,0.616,0.321,0,0 +1,0.518,0.518,0,1,0,0,0.616,0.616,0.616,0,0,0 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.315,0,0 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.446,0,0 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.473,0,0.122 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.457,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.582,0,0.488 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.339 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0.3,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,1,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.256,0.256,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0.5,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.488 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.366 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.488 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.366 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.488 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.488 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.366 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.341 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.0341 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0.3,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0.1,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.244 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.366 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.217 +1,0.571,0.571,0,0,0.5,0,0.543,0.493,0.493,0,0.137,0 +1,0.571,0.571,0,0,1,0,0.543,0.493,0.493,0,0.236,0 +1,0.183,0.183,0,0,0,0.3,0.393,0.451,0.451,0,0.124,0 +1,0.183,0.183,0,0,0,1,0.393,0.451,0.451,0,0.421,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0.545,0.349 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0.459,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.309,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.0386,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0.433,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0.0386,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.122 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.345 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.192 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.353 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.0353 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.333 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.2 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0.339 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0.0678 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.244 +0.333,0.163,0.163,0,0.5,0,0,0.316,0.483,0.483,0.462,0,0 +0.333,0.163,0.163,0,1,0,0,0.316,0.483,0.483,0.625,0,0 +0.333,0.163,0.163,0,1,0,0,0.316,0.483,0.483,0.408,0,0 +0.333,0.162,0.162,0,1,0,0,0.276,0.487,0.487,0.495,0,0 +0.333,0.162,0.162,0,0.6,0,0,0.276,0.487,0.487,0.234,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0.234,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0.299,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.114 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.333 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0998 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.366 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0.8,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.258,0.495,0.495,0,0,0.366 +0.333,0.142,0.142,1,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0.5,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0.8,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0.6,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0.3,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.252,0.252,1,0.5,0,0,0.411,0.582,0.582,0.391,0,0 +0.667,0.252,0.252,1,1,0,0,0.411,0.582,0.582,0.44,0,0 +0.667,0.252,0.252,1,1,0,0,0.411,0.582,0.582,0.332,0,0.122 +0.667,0.252,0.252,1,1,0,0,0.411,0.582,0.582,0.413,0,0 +0.667,0.252,0.252,1,0.6,0,0,0.411,0.582,0.582,0.215,0,0 +1,0.353,0.353,1,0,0,0,0.488,0.641,0.641,0.215,0,0 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0.467,0,0 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0.8,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.488 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.273 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.244 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.147 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.147 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.366 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.441 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.246 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.122 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.158 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0.5,0,0,0.488,0.641,0.641,0.462,0,0 +1,0.353,0.353,0,1,0,0,0.488,0.641,0.641,0.565,0,0 +1,0.353,0.353,0,1,0,0,0.488,0.641,0.641,0.549,0,0.122 +1,0.408,0.408,0.8,1,0,0,0.58,0.653,0.653,0.429,0,0 +1,0.408,0.408,1,0.6,0,0,0.58,0.653,0.653,0.286,0,0 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0.572,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0.38,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.488 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.488 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.279 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0941 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.326 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.0326 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.328 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.207 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.164 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.387,0.387,0,0,0,0,0.313,0.53,0.53,0,0,0 +1,0.387,0.387,0,0,0,0,0.313,0.53,0.53,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.352 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.211 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.366 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.488 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.488 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0.3,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.143,0.143,0.1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.366 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.366 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.174 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.348 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.104 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.244 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.366 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.173 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0.328 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0.262 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0.228 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.0652 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.193 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.0964 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.199 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.244 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.244 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.122 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.122 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.244 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.417 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.244 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.244 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.135 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.0327 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.327 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0327 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.306 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.283 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.113 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,1,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0.5,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.166 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.199 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.131,0.131,0,0,0,0,0.331,0.407,0.407,0,0,0 +1,0.131,0.131,0,0,0,0,0.331,0.407,0.407,0,0,0.102 +1,0.131,0.131,0,0,0,0,0.331,0.407,0.407,0,0,0 +1,0.131,0.131,0,0,0,0,0.331,0.407,0.407,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0.155 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0.0311 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0.301 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0.0334 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.17 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.278 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.366 +0.667,0.274,0.274,0.3,0,0,0,0.294,0.508,0.508,0.288,0,0.122 +0.333,0.162,0.162,1,1,0,0,0.276,0.487,0.487,0.571,0,0 +0.667,0.274,0.274,1,1,0,0,0.294,0.508,0.508,0.168,0,0 +0.667,0.274,0.274,1,1,0,0,0.294,0.508,0.508,0.168,0,0 +0.667,0.274,0.274,1,1,0,0,0.294,0.508,0.508,0.457,0,0 +0.667,0.263,0.263,1,0.1,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,1,0,0,0,0.227,0.508,0.508,0,0,0 +0.333,0.156,0.156,0.9,0,0,0,0.242,0.487,0.487,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0.3,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.291,0.507,0.507,0,0,0.244 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,0.5,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.366 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,0,0.5,0,0,0.616,0.616,0.616,0.63,0,0 +1,0.518,0.518,0,1,0,0,0.616,0.616,0.616,0.397,0,0 +1,0.518,0.518,0,1,0,0,0.616,0.616,0.616,0.598,0,0 +1,0.518,0.518,0,1,0,0,0.616,0.616,0.616,0.424,0,0 +1,0.518,0.518,0,0.6,0,0,0.616,0.616,0.616,0.277,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.277,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.337,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.603,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.177 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.0354 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.366 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.442 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.244 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +1,0.408,0.408,0,0,1,0,0.58,0.653,0.653,0,0.236,0 +1,0.408,0.408,0,0,1,0,0.58,0.653,0.653,0,0.258,0 +1,0.408,0.408,0,0,1,0,0.58,0.653,0.653,0,0.519,0 +1,0.408,0.408,0,0,1,0,0.58,0.653,0.653,0,0.309,0 +1,0.408,0.408,0,0,0.5,0,0.58,0.653,0.653,0,0.0601,0 +1,0.408,0.408,0,0,0,0.8,0.58,0.653,0.653,0,0,0.122 +1,0.518,0.518,0,0,0,1,0.616,0.616,0.616,0,0.421,0 +1,0.518,0.518,0.3,0,0,1,0.616,0.616,0.616,0,0.309,0 +1,0.518,0.518,1,0,0,1,0.616,0.616,0.616,0,0.369,0 +1,0.518,0.518,1,0,0,0.2,0.616,0.616,0.616,0,0.554,0 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0.262,0.122 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0.283,0.244 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0.429,0.366 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0.631,0 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0.223,0 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0.27,0 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0.296,0.122 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.788,0.788,1,0,0,0,0.635,0.555,0.555,0,0.524,0 +1,0.788,0.788,1,0,0,0,0.635,0.555,0.555,0,0.476,0 +1,0.788,0.788,1,0,0,0,0.635,0.555,0.555,0,0,0.122 +1,0.788,0.788,1,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,1,0,0,0,0.635,0.555,0.555,0,0,0.151 +1,0.788,0.788,1,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,1,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,1,0,0,0,0.543,0.493,0.493,0,0,0.244 +1,0.571,0.571,1,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0.9,0,0,0,0.543,0.493,0.493,0,0,0.407 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.526 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.248 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.218 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +1,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +1,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.178 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.127 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.203 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.184 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.138 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.236 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0.462,0,0 +0.667,0.237,0.237,0,1,0,0,0.233,0.525,0.525,0.565,0,0.244 +0.667,0.237,0.237,0.8,1,0,0,0.233,0.525,0.525,0,0,0.366 +0.667,0.237,0.237,1,1,0,0,0.233,0.525,0.525,0.446,0,0 +0.667,0.237,0.237,1,1,0,0,0.233,0.525,0.525,0.38,0,0.244 +0.667,0.235,0.235,1,1,0,0,0.258,0.525,0.525,0.554,0,0 +0.667,0.235,0.235,1,0.5,0,0,0.258,0.525,0.525,0,0,0.244 +0.667,0.235,0.235,1,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.258,0.525,0.525,0.587,0,0 +0.667,0.235,0.235,1,0,0,0,0.258,0.525,0.525,0.375,0,0 +0.667,0.235,0.235,1,0,0,0,0.258,0.525,0.525,0.609,0,0 +0.667,0.235,0.235,1,0,0,0,0.276,0.517,0.517,0.435,0,0 +0.667,0.235,0.235,1,0,0,0,0.276,0.517,0.517,0.236,0,0 +0.667,0.235,0.235,1,0,0,0,0.276,0.517,0.517,0.236,0,0 +0.667,0.235,0.235,1,0,0,0,0.276,0.517,0.517,0.424,0,0 +0.667,0.235,0.235,1,0,0,0,0.276,0.517,0.517,0.429,0,0 +0.667,0.235,0.235,1,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,1,0,0,0,0.282,0.533,0.533,0.429,0,0 +0.667,0.236,0.236,0.1,0,0,0,0.282,0.533,0.533,0.587,0,0.244 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0.321,0,0.122 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0.364,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0.549,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0.446,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0.397,0,0.244 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0.397,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0.62,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0.236,0,0.122 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0.236,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0.495,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0.37,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0.505,0,0.122 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0.451,0,0.244 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0.38,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0.554,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0.321,0,0.122 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0.337,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0.446,0,0.488 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0.326,0,0.122 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.429,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.44,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.25,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.457,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.435,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.582,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.582,0,0.244 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.435,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.244 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.153 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.061 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.264 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.281 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.0956 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.122 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.354 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.0354 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.165 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.132 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.488 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.366 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0.3,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,1,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.236,0.236,1,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0.5,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.122 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0.5,0,0,0.58,0.653,0.653,0.5,0,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.408,0,0.122 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.375,0,0 +1,0.518,0.518,0,1,0,0,0.616,0.616,0.616,0.418,0,0 +1,0.518,0.518,0,0.6,0,0,0.616,0.616,0.616,0.277,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.533,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.467,0,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.533,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.424,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.182,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.182,0,0.244 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.413,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.527,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.359,0,0.488 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.408,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.359,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.587,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0.326,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0.386,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0.576,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0.446,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.288,0.418,0.418,0,0,0.244 +0.667,0.0506,0.0506,0,0,0,0,0.288,0.418,0.418,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.288,0.418,0.418,0,0,0 +0.667,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +0.667,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0.342 +0.667,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0.348 +0.667,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +0.667,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +0.667,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0.032 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.288 +0.667,0.222,0.222,0,0,0.5,0,0.35,0.459,0.459,0,0.361,0 +0.667,0.222,0.222,0,0,1,0,0.35,0.459,0.459,0,0,0 +0.667,0.222,0.222,0,0,1,0,0.35,0.459,0.459,0,0,0 +0.667,0.222,0.222,0,0,0.5,0,0.35,0.459,0.459,0,0,0.17 +0.333,0.136,0.136,0,0,0,0.8,0.304,0.462,0.462,0,0,0.238 +0,0.0495,0.0495,0,0,0,1,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0.9,0.258,0.465,0.465,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.244 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.244 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.488 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0.3,0,0,0,0.488,0.641,0.641,0.44,0,0 +1,0.252,0.252,1,1,0,0,0.411,0.582,0.582,0.337,0,0 +1,0.289,0.289,1,1,0,0,0.472,0.591,0.591,0,0,0 +1,0.289,0.289,1,1,0,0,0.472,0.591,0.591,0.56,0,0.366 +1,0.408,0.408,1,1,0,0,0.58,0.653,0.653,0.375,0,0.244 +1,0.408,0.408,1,0.1,0,0,0.58,0.653,0.653,0.38,0,0 +1,0.408,0.408,0.4,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.446,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.462,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.353,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.321,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.219 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.171 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.308 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0.3,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,1,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.366 +0.333,0.142,0.142,0,0.5,0,0,0.267,0.491,0.491,0.489,0,0 +0.333,0.142,0.142,0,1,0,0,0.267,0.491,0.491,0.473,0,0.366 +0.333,0.142,0.142,0,1,0,0,0.267,0.491,0.491,0.56,0,0 +0.333,0.142,0.142,0,1,0,0,0.267,0.491,0.491,0.658,0,0 +0.333,0.142,0.142,0,0.6,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0.685,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0.522,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0.462,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0.418,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0.446,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0.304,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0.652,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.366 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0.587,0,0.488 +1,0.353,0.353,0,1,0,0,0.488,0.641,0.641,0.391,0,0.244 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.484,0,0.366 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.609,0,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.37,0,0 +1,0.408,0.408,0,0.5,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.533,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.467,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.522,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.418,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.179,0,0.17 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0.179,0,0.0681 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.424,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.538,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.5,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.293,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.511,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.473,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.647,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.353,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.264,0,0.421 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.264,0,0.106 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0.402,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0.728,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.246 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.17 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.202 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.208 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.162 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.341 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.341 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.102 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.175 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.035 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.165 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.287 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.168 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.202 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +1,0.327,0.327,0,0,0,0,0.285,0.542,0.542,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0.167 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0.338 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.411,0.582,0.582,0,0,0.488 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.289,0.289,1,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.289,0.289,1,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.289,0.289,1,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0.9,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.366 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.244 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.366 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.333,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.366 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.488 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.211 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.134 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.167 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.26 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.161 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0.161 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.342 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.308 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.0312 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.218 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.34 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.034 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.366 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.204 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.488 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.245 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.0925 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0.3,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,1,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0.4,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.183 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.185 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.337 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.333 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.654 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.385 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.122 +1,0.353,0.353,0,0,1,0,0.488,0.641,0.641,0,0.21,0 +1,0.353,0.353,0,0,1,0,0.488,0.641,0.641,0.457,0.249,0 +1,0.353,0.353,0,1,1,0,0.488,0.641,0.641,0.418,0,0.122 +1,0.353,0.353,0.8,1,0,0.3,0.488,0.641,0.641,0,0.185,0 +1,0.353,0.353,1,1,0,1,0.488,0.641,0.641,0.255,0.309,0 +1,0.353,0.353,1,1,0,1,0.488,0.641,0.641,0.522,0,0.122 +1,0.408,0.408,0,0.1,0,1,0.58,0.653,0.653,0,0.408,0 +1,0.408,0.408,0,0,0,0.7,0.58,0.653,0.653,0.408,0.309,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.283,0.427,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.171,0.217,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.171,0,0 +1,0.408,0.408,0,1,0,0,0.58,0.653,0.653,0.522,0,0 +1,0.518,0.518,0,0.1,0,0,0.616,0.616,0.616,0.592,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.424,0,0 +1,0.668,0.668,0,1,0,0,0.653,0.579,0.579,0.457,0,0 +1,0.668,0.668,0,1,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,1,0,0,0.653,0.579,0.579,0.462,0,0.122 +1,0.668,0.668,0,1,0,0,0.653,0.579,0.579,0.609,0,0 +1,0.788,0.788,0,0.1,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.122 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.366 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0.5,0,0,0.258,0.525,0.525,0.348,0,0 +0.667,0.235,0.235,0,1,0,0,0.258,0.525,0.525,0.685,0,0 +0.667,0.235,0.235,0,1,0,0,0.258,0.525,0.525,0.538,0,0 +0.667,0.235,0.235,0,1,0,0,0.258,0.525,0.525,0.299,0,0 +0.667,0.235,0.235,0,1,0,0,0.258,0.525,0.525,0.19,0,0 +0.667,0.235,0.235,0,1,0,0,0.258,0.525,0.525,0.19,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.488 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.366 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.488 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0.3,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0,0.366 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0,0.61 +1,0.518,0.518,0.4,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.333 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0999 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.366 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.244 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.122 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0.163 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0.195 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0.122 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0.105 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.1 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.147 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,0.3,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.153,0.153,1,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.245,0.245,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0.5,0,0,0,0.239,0.517,0.517,0.402,0,0 +0.667,0.245,0.245,0,1,0,0,0.239,0.517,0.517,0.592,0,0 +0.667,0.245,0.245,0,1,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,1,0,0,0.239,0.517,0.517,0.462,0,0 +0.667,0.245,0.245,0,1,0,0,0.239,0.517,0.517,0.435,0,0 +0.667,0.237,0.237,0,0.1,0,0,0.233,0.525,0.525,0.332,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0.353,0,0.122 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.366 +1,0.331,0.331,0,0,0,0,0.221,0.555,0.555,0,0,0 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0.17 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0.549 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.122 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0.5,0,0,0.282,0.533,0.533,0.418,0,0 +0.667,0.236,0.236,0,1,0,0,0.282,0.533,0.533,0.326,0,0 +1,0.329,0.329,0,1,0,0,0.294,0.567,0.567,0.38,0,0 +1,0.334,0.334,0,1,0,0,0.359,0.592,0.592,0.402,0,0 +1,0.334,0.334,0,0.6,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0.31,0,0.218 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0.5,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0.457,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0.364,0,0 +0.333,0.151,0.151,0,0,0.5,0,0.334,0.524,0.524,0.326,0.223,0.174 +0.667,0.252,0.252,0,0,1,0,0.411,0.582,0.582,0.182,0,0.4 +0.667,0.252,0.252,0,0,0,0.3,0.411,0.582,0.582,0.182,0.249,0 +0.667,0.252,0.252,0,0,0,1,0.411,0.582,0.582,0,0.124,0.488 +0.667,0.252,0.252,0,0,0,1,0.411,0.582,0.582,0,0.223,0.366 +0.667,0.289,0.289,0,0,0,1,0.472,0.591,0.591,0,0.567,0.15 +0.667,0.289,0.289,0,0,0,1,0.472,0.591,0.591,0,0.348,0 +0.667,0.289,0.289,0,0,0,1,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0.1,0.472,0.591,0.591,0,0.172,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.0258,0.488 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0.322,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0.433,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0.185,0.244 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0.112,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.244 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.164 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.488 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.163 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.0978 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.172 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.103 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.488 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.163 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.354 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.0354 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.172 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.069 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.205 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.488 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.247 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.291 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.237 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0.224 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0.339 +1,0.408,0.408,0.5,0,0,0,0.58,0.653,0.653,0,0,0.224 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.332 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.219 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.303 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.0674 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.527 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.161 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.17 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0679 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.122 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0733 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.288 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.351 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.158 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.063 +0.667,0.277,0.277,0,0,1,0,0.374,0.5,0.5,0,0.309,0 +0.667,0.277,0.277,0,0,1,0,0.374,0.5,0.5,0.418,0.309,0 +0.667,0.277,0.277,0,1,1,0,0.374,0.5,0.5,0.402,0.309,0 +0.667,0.277,0.277,0,1,0,0.3,0.374,0.5,0.5,0,0.506,0 +0.667,0.277,0.277,0,1,0,1,0.374,0.5,0.5,0.364,0.395,0 +0.667,0.277,0.277,0,1,0,0,0.374,0.5,0.5,0.38,0,0 +0.667,0.274,0.274,0,1,0,0,0.294,0.508,0.508,0,0.575,0 +0.667,0.274,0.274,0,0.5,0,0,0.294,0.508,0.508,0.511,0.412,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0.462,0.296,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0.459,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0.348,0.15,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0.446,0.476,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0.167,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0.296,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0.283,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0.309,0.122 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.283,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.0515,0.122 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.472,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.631,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.309,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0.433,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0.112,0.122 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0.258,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0.408,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0.459,0.244 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.258,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.395,0.122 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.496,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.521,0.61 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.369,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.159,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.0386,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.411,0.582,0.582,0,0,0.366 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0.244 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0.366 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.366 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.244 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.131,0.131,0,0,0,0,0.331,0.407,0.407,0,0,0.322 +1,0.131,0.131,0,0,0,0,0.331,0.407,0.407,0,0,0 +1,0.131,0.131,0,0,0,0,0.331,0.407,0.407,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0.167 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0.1 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.172 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0.8,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0.488 +0.667,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0.244 +0.333,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0.5,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.134 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.17 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.4 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.168 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.171 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.136 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.124,0 +0.333,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0,0,1,0,0.245,0.495,0.495,0,0.296,0 +0.667,0.143,0.143,0,0,0.5,0,0.245,0.495,0.495,0,0.391,0.122 +0.667,0.143,0.143,0,0,0,0.8,0.245,0.495,0.495,0,0.313,0 +0.667,0.142,0.142,0,0,0,0.5,0.258,0.495,0.495,0,0.236,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.309,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.296,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.258,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.249,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.159,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.472,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.0386,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.283,0 +0.667,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0.0258,0 +1,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.519,0 +1,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.275,0 +1,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.335,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.124,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.0386,0.488 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.614,0.366 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.155,0.122 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.296,0.122 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0.408,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0.185,0.291 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.0338 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0.373,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0.249,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.137,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.21,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.519,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.122 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.05,0.05,1,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.05,0.05,0.5,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.179 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0.5,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.222 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.156 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.0312 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.488 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.122 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,1,0,0.244 +0.333,0.151,0.151,0,1,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.169,0.169,0,1,0,0,0.365,0.528,0.528,0.326,0,0 +0.333,0.169,0.169,0,1,0,0,0.365,0.528,0.528,0.418,0,0.488 +0.667,0.289,0.289,0,1,0,0,0.472,0.591,0.591,0.326,0,0 +0.667,0.289,0.289,0,0.1,0,0,0.472,0.591,0.591,0.451,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.362,0.362,0,0.5,0,0,0.497,0.566,0.566,0.636,0,0.122 +0.667,0.362,0.362,0,1,0,0,0.497,0.566,0.566,0.489,0,0.122 +0.667,0.362,0.362,0,1,0,0,0.497,0.566,0.566,0.587,0,0 +0.667,0.362,0.362,0,1,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0.6,0,0,0.497,0.566,0.566,0.364,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.283,0,0.244 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.296,0.296,0.8,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.296,0.296,1,0,0,0,0.383,0.495,0.495,0,0,0.122 +0.667,0.296,0.296,1,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.397,0.397,1,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,1,0,0,0,0.448,0.484,0.484,0,0,0.122 +1,0.397,0.397,0.9,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.333 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.2 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.129 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.0966 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0.547 +1,0.104,0.104,0.3,0,0,0,0.307,0.426,0.426,0,0,0.104 +1,0.104,0.104,1,0,0,0,0.307,0.426,0.426,0,0,0 +1,0.222,0.222,0.1,0,0,0,0.35,0.459,0.459,0,0,0.137 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.309 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.366 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.244 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.488 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.244 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.244 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.244 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.315 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.341 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0.8,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0.397,0,0.122 +1,0.518,0.518,1,1,0,0,0.616,0.616,0.616,0.533,0,0.244 +1,0.668,0.668,1,1,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0.5,1,0,0,0.653,0.579,0.579,0.424,0,0 +1,0.668,0.668,0,1,0,0,0.653,0.579,0.579,0.337,0,0 +1,0.462,0.462,0,0.1,0,0,0.521,0.541,0.541,0.56,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.239,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.848,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.478,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.527,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.239,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.366 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0.31,0,0.488 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0.5,0,0,0.258,0.465,0.465,0.451,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.375,0,0 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.467,0,0 +1,0.162,0.162,0,1,0,0,0.276,0.487,0.487,0.413,0,0 +1,0.162,0.162,0,1,0,0,0.276,0.487,0.487,0.174,0,0 +0.667,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.174,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.23 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.104 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.173 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0.3,0,0,0,0.233,0.508,0.508,0,0,0 +1,0.359,0.359,1,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.343,0.343,0.1,0,0,0,0.23,0.542,0.542,0,0,0 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.144,0.144,0.8,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.239,0.239,0.9,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.122 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.732 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.244 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.122 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.366 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.244 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.244 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.122 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.333,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.154 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.306 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.288 +0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.35 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.122 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.15 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.244 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.257 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.0679 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.34 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.136 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.284 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.176 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.0703 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.366 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.244 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.122 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.244 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.244 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.732 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.244 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.244 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.244 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,0.3,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.542,0.542,1,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.223,0.223,1,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.223,0.223,1,0,0,0,0.353,0.475,0.475,0,0,0.366 +0.667,0.223,0.223,1,0,0,0,0.353,0.475,0.475,0,0,0.244 +0.667,0.223,0.223,1,0,0,0,0.353,0.475,0.475,0,0,0.122 +0.667,0.223,0.223,0.4,0,0,0,0.353,0.475,0.475,0,0,0.156 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.122 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.366 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.122 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.244 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.341 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.156 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.122 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.341 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.334 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.14 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.194 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.13 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0.3,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,1,0,0,0,0.291,0.507,0.507,0,0,0 +1,0.334,0.334,1,0,0,0,0.359,0.592,0.592,0,0,0.316 +1,0.334,0.334,1,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,1,0,0,0,0.359,0.592,0.592,0,0,0.244 +1,0.353,0.353,1,0,0,0,0.488,0.641,0.641,0,0,0.122 +1,0.353,0.353,1,0,0,0,0.488,0.641,0.641,0,0,0.162 +1,0.353,0.353,1,0,0,0,0.488,0.641,0.641,0,0,0.0649 +1,0.353,0.353,1,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0.3,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.121 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.212 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.716 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.284 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.276 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.488 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.295 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.244 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.167 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.234 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.285 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.122 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0.3,0,0,0,0.227,0.508,0.508,0,0,0.177 +0.667,0.263,0.263,1,0,0,0,0.227,0.508,0.508,0,0,0.141 +0.667,0.263,0.263,0.1,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.329 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.0658 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.273 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.19 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0.3,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0.9,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0.397,0,0 +0.333,0.143,0.143,0,1,0,0,0.245,0.495,0.495,0.438,0,0.122 +0.333,0.142,0.142,0,1,0,0,0.258,0.495,0.495,0.219,0,0 +0.333,0.142,0.142,0,1,0,0,0.258,0.495,0.495,0.484,0,0.366 +0.333,0.142,0.142,0,1,0,0,0.258,0.495,0.495,0.212,0,0.122 +0.333,0.142,0.142,0,0.1,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.488 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.24 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.366 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.658 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.55 +0.667,0.289,0.289,0.8,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.472,0.591,0.591,0,0,0 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0.0353 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0.353 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0.353 +1,0.408,0.408,0.9,0,0,0,0.58,0.653,0.653,0,0,0.141 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.244 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.49 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156 +0.333,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,0.3,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,1,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,1,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0.9,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0.5,0,0.245,0.487,0.487,0,0.309,0 +0.333,0.153,0.153,0,0,1,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,1,0,0.245,0.487,0.487,0,0.446,0 +0.333,0.153,0.153,0,0,0.5,0,0.245,0.487,0.487,0,0.249,0 +0.333,0.153,0.153,0,0,0,0.8,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,1,0.248,0.491,0.491,0,0.408,0 +0.333,0.147,0.147,0,0,0,1,0.248,0.491,0.491,0,0.27,0 +0.333,0.147,0.147,0,0,0,1,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0.2,0.248,0.491,0.491,0,0.421,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.258,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.232,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.296,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.333 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.41 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.247 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0985 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.652 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.244 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.488 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.122 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.244 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.366 +0.667,0.239,0.239,0.3,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0.244 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0.366 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.244 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.488 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.61 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.122 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.206,0.206,0.8,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.206,0.206,1,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.206,0.206,1,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.256,0.256,1,0,0,0,0.39,0.503,0.503,0,0,0 +0.333,0.256,0.256,0.5,0,0,0,0.39,0.503,0.503,0,0,0.244 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.244 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.432 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.0917 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.222,0.222,0,0,1,0,0.35,0.459,0.459,0,0.356,0 +1,0.222,0.222,0,0,1,0,0.35,0.459,0.459,0,0.223,0.175 +1,0.222,0.222,0,0,1,0,0.35,0.459,0.459,0,0,0.175 +1,0.222,0.222,0,0,0,0.3,0.35,0.459,0.459,0,0.283,0 +1,0.222,0.222,0,0,0,1,0.35,0.459,0.459,0,0.0987,0 +1,0.222,0.222,0,0,0,1,0.35,0.459,0.459,0,0,0 +1,0.39,0.39,0,0,0,1,0.432,0.518,0.518,0,0,0 +1,0.39,0.39,0,0,0,1,0.432,0.518,0.518,0,0,0.34 +1,0.39,0.39,0,0,0,1,0.432,0.518,0.518,0,0,0.34 +1,0.39,0.39,0,0,0,0.1,0.432,0.518,0.518,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.271 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.175 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.035 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.244 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.122 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.244 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.143,0.143,0.3,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.237,0.237,1,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,1,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.237,0.237,0.5,0,0.5,0,0.233,0.525,0.525,0,0.395,0 +0.667,0.237,0.237,0,0,1,0,0.233,0.525,0.525,0,0.0644,0 +0.667,0.235,0.235,0,0,0,0.3,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,1,0.258,0.525,0.525,0,0.296,0 +0.667,0.235,0.235,0,0,0,1,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,1,0.258,0.525,0.525,0,0.309,0 +0.667,0.235,0.235,0,0,0,0.7,0.258,0.525,0.525,0,0.296,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.506,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.352,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.142,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.485,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.236,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.185,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.519,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.427,0.488 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0.217,0.122 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0.348,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0.395,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0.223,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0.459,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0.223,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0.073,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0.0258,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.122 +1,0.353,0.353,0.8,0,0,0,0.488,0.641,0.641,0,0.236,0 +1,0.353,0.353,0.6,0,0,0,0.488,0.641,0.641,0,0.236,0.122 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0.258,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.636 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.274 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.594 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.122 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0627 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.533,0,0.0941 +1,0.362,0.362,0,1,0,0,0.497,0.566,0.566,0.315,0,0 +1,0.462,0.462,0,1,0,0,0.521,0.541,0.541,0.264,0,0 +1,0.462,0.462,0,1,0,0,0.521,0.541,0.541,0.264,0,0 +1,0.462,0.462,0,1,0,0,0.521,0.541,0.541,0.424,0,0 +1,0.462,0.462,0,0.1,0,0,0.521,0.541,0.541,0.571,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.777,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.312,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.312,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.353,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.359,0,0.244 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.353,0,0.706 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.386,0,0.102 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.488 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.122 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.324 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.0324 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.17 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.272 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.122 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.386 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.177 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.0706 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.178 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.335 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0.5,0,0,0.325,0.549,0.549,0.304,0,0 +0.667,0.239,0.239,0,1,0,0,0.325,0.549,0.549,0.315,0,0 +0.333,0.144,0.144,0,1,0,0,0.291,0.507,0.507,0.516,0,0 +0.667,0.239,0.239,0,1,0,0,0.325,0.549,0.549,0.527,0,0 +0.667,0.239,0.239,0,1,0,0,0.325,0.549,0.549,0.511,0,0 +0.667,0.239,0.239,0,1,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0.3,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0.5,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.244 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.122 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.488 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.122 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.244 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.244 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.256 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.117 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.0351 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.351 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.122 +1,0.286,0.286,0.8,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0.457 +1,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0.539 +1,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0.034 +1,0.392,0.392,1,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,1,0,0,0,0.213,0.534,0.534,0,0,0.14 +1,0.392,0.392,1,0,0,0,0.213,0.534,0.534,0,0,0.244 +1,0.392,0.392,0.4,0,0,0,0.213,0.534,0.534,0,0,0.195 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.0974 +1,0.392,0.392,0.8,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,0.1,0,0,0,0.222,0.534,0.534,0,0,0.4 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.244 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.244 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.488 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.122 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0.402,0,0 +0.667,0.251,0.251,0,1,0,0,0.234,0.528,0.528,0.293,0,0.122 +0.667,0.251,0.251,0,1,0,0,0.234,0.528,0.528,0.166,0,0 +0.667,0.249,0.249,0,1,0,0,0.259,0.528,0.528,0.166,0,0.244 +0.667,0.249,0.249,0,1,0,0,0.259,0.528,0.528,0.522,0,0.122 +0.667,0.249,0.249,0.8,0.2,0,0,0.259,0.528,0.528,0.571,0,0 +0.667,0.249,0.249,1,0,0,0,0.259,0.528,0.528,0.277,0,0 +0.667,0.249,0.249,1,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.149,0.149,0.1,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0.8,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0.488 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0.385 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0.0701 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0.0701 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0.28 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0.295 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0.138 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0.9,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.16 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.462 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.244 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.129 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0.18 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.732 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0.327 +1,0.286,0.286,0.5,0,0,0,0.296,0.511,0.511,0,0,0.0327 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.488 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.244 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.488 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.488 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.244 +0.667,0.249,0.249,0,0,1,0,0.259,0.528,0.528,0,0.361,0 +0.667,0.249,0.249,0,0,1,0,0.277,0.519,0.519,0,0.309,0 +0.667,0.249,0.249,0,0,1,0,0.277,0.519,0.519,0,0.0987,0.244 +0.667,0.249,0.249,0,0,0,0.3,0.277,0.519,0.519,0,0.262,0 +0.667,0.249,0.249,0,0,0,1,0.277,0.519,0.519,0,0.433,0.488 +0.667,0.249,0.249,0,0,0,1,0.277,0.519,0.519,0,0.0601,0.244 +0.667,0.249,0.249,0,0,0,0.4,0.277,0.519,0.519,0,0.421,0.122 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0.249,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0.8,0,0,0,0.271,0.501,0.501,0,0.519,0 +0.667,0.15,0.15,1,0,0,0,0.271,0.501,0.501,0,0.283,0 +0.667,0.15,0.15,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,1,0,0,0,0.271,0.501,0.501,0,0.408,0 +0.667,0.259,0.259,0.5,0,0,0,0.327,0.552,0.552,0,0.288,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0.236,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0.369,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0.309,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0.348,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.459,0.122 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.421,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.556,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.423,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.369,0.244 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.0258,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.27,0.366 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.283,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.159,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.369,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.392,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.587,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0.408,0.244 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.168 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.379 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.289 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.244 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.417 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0346 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.339 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.203 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.312 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0.8,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.149,0.149,0.1,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.219 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.154 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.122 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.49 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.122 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.488 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0.5,0,0,0.525,0.544,0.544,0.511,0,0 +0.667,0.554,0.554,0,1,0,0,0.525,0.544,0.544,0.397,0,0.244 +0.667,0.554,0.554,0,1,0,0,0.525,0.544,0.544,0.527,0,0 +1,0.851,0.851,0,1,0,0,0.639,0.559,0.559,0.342,0,0 +1,0.851,0.851,0,0.7,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.157 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.139,0.139,0.8,0.5,0,0,0.305,0.463,0.463,0.826,0,0.366 +1,0.139,0.139,1,1,0,0,0.305,0.463,0.463,0.402,0,0 +1,0.139,0.139,1,1,0,0,0.305,0.463,0.463,0.668,0,0.305 +1,0.228,0.228,0.1,1,0,0,0.352,0.461,0.461,0.204,0,0 +1,0.228,0.228,0,1,0,0,0.352,0.461,0.461,0.204,0,0 +1,0.228,0.228,0,1,0,0,0.352,0.461,0.461,0.375,0,0 +0.667,0.167,0.167,0,0.1,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0.543,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0.62,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0.44,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0.522,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0.272,0,0.336 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.168 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.366 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.273 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.148 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.0297 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.244 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.122 +0.667,0.286,0.286,0.8,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0.539 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0.244 +1,0.501,0.501,0.1,0,0,0,0.584,0.658,0.658,0,0,0.366 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.366 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.244 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.366 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.171 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.137 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.457 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.171 +1,0.0495,0.0495,0,0,0,0,0.308,0.412,0.412,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.161 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.161 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0642 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.292 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.0311 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.0932 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.334 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.27 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.7 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.105 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.246 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.351 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.251,0.251,0.8,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.284,0.536,0.536,0,0,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0.9,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.286,0.286,0.8,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0.488 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0.244 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0.122 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0.488 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.806,0.806,1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0.1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.244 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.366 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.339 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.373 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.207 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0.207 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.177 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.142 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.177 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.244 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.488 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,1,0,0.246,0.496,0.496,0,0.249,0 +0.333,0.15,0.15,0,0,1,0,0.246,0.496,0.496,0,0.0515,0 +0.333,0.15,0.15,0,0,1,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0.3,0.246,0.496,0.496,0,0.0987,0 +0.333,0.15,0.15,0,0,0,1,0.246,0.496,0.496,0,0.137,0 +0.333,0.15,0.15,0,0,0,1,0.246,0.496,0.496,0,0,0.244 +0.333,0.149,0.149,0,0,0,1,0.258,0.496,0.496,0,0.15,0 +0.333,0.149,0.149,0,0,0,1,0.258,0.496,0.496,0,0.296,0 +0.333,0.149,0.149,0,0,0,1,0.258,0.496,0.496,0,0.0987,0 +0.333,0.149,0.149,0,0,0,0.2,0.258,0.496,0.496,0,0.399,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0.137,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.236,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.309,0.366 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.249,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.258,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0.5,0,0,0.271,0.501,0.501,0.766,0,0 +0.333,0.15,0.15,0,1,0,0,0.271,0.501,0.501,0.315,0,0 +0.333,0.15,0.15,0,1,0,0,0.271,0.501,0.501,0.364,0,0 +0.333,0.154,0.154,0,1,0,0,0.292,0.509,0.509,0.418,0,0 +0.333,0.154,0.154,0,0.7,0,0,0.292,0.509,0.509,0.239,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0.239,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0.321,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0.478,0,0.244 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0.364,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0.3,0,0,0,0.413,0.585,0.585,0.446,0,0.122 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0.467,0,0.244 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0.701,0,0 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.435,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.359,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.467,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.625,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.307,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.307,0,0.244 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0.435,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.28 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.231 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.169 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.27 +1,0.0781,0.0781,0.8,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0.6,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.363 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.195 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0.0486 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.334 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.278 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.197 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.61 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0.461 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0.244 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0.3,0,0,0,0.315,0.534,0.534,0,0,0.323 +1,0.404,0.404,1,0,0,0,0.315,0.534,0.534,0,0,0.259 +0.667,0.278,0.278,1,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,1,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,1,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.228 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.244 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0627 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0.8,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0.6,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.149,0.149,0.1,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.366 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.244 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.278 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0313 +0.667,0.554,0.554,0.8,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,1,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,1,0,0,0,0.525,0.544,0.544,0,0,0.244 +0.667,0.554,0.554,1,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0.5,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.191 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.287 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.31 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.172 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.103 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.249 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.066 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.264 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.345 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.0345 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.244 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0.8,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.168,0.168,0.5,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.122 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.244 +1,0.392,0.392,0.8,0,0,0,0.213,0.534,0.534,0,0,0.122 +1,0.392,0.392,1,0,0,0,0.213,0.534,0.534,0,0,0.244 +1,0.392,0.392,1,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,1,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0.244 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0.122 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0.122 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,1,0,0,0,0.222,0.534,0.534,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0.7,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.167 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.189 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.397 +1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0,0.16 +1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0,0.128 +1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.349,0.349,0.3,0,0,0,0.287,0.546,0.546,0,0,0.168 +1,0.349,0.349,1,0,0,0,0.287,0.546,0.546,0,0,0.134 +1,0.349,0.349,1,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0.355 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0.9,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.176 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.141 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.1 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.169 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.0337 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.278 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.244 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.291 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.0676 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.122 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.122 +0.667,0.454,0.454,0,0,1,0,0.5,0.569,0.569,0,0.0987,0.174 +0.667,0.454,0.454,0,0,1,0,0.5,0.569,0.569,0,0.159,0 +0.667,0.454,0.454,0,0,1,0,0.5,0.569,0.569,0,0,0.122 +0.667,0.454,0.454,0,0,0,0.3,0.5,0.569,0.569,0,0.258,0 +0.667,0.554,0.554,0,0,0,1,0.525,0.544,0.544,0,0.137,0.488 +0.667,0.554,0.554,0,0,0,1,0.525,0.544,0.544,0,0.296,0.122 +0.667,0.554,0.554,0,0,0,1,0.525,0.544,0.544,0,0.0601,0 +0.667,0.554,0.554,0,0,0,0.8,0.525,0.544,0.544,0,0.0987,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0.348,0.122 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0.356,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0.416,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0.425,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.276 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.244 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.244 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.213 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.196 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.166 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0996 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.161 +1,0.164,0.164,0.8,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0.231 +1,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0.168 +1,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0.302 +1,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.364,0.364,1,0,0,0,0.232,0.546,0.546,0,0,0.244 +1,0.364,0.364,0.8,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.215 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.244 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.364,0.364,0,0.5,0,0,0.232,0.546,0.546,0.587,0,0 +1,0.352,0.352,0,1,0,0,0.222,0.559,0.559,0.446,0,0.172 +1,0.352,0.352,0,1,0,0,0.222,0.559,0.559,0.391,0,0.0343 +1,0.352,0.352,0.8,1,0,0,0.222,0.559,0.559,0.554,0,0 +1,0.352,0.352,0.6,1,0,0,0.222,0.559,0.559,0.223,0,0 +1,0.352,0.352,0,1,0,0,0.222,0.559,0.559,0.223,0,0 +0.667,0.251,0.251,0,0.1,0,0,0.234,0.528,0.528,0.5,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0.74 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0.488 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.244 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.122 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.244 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.488 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.366 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.244 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.113 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.293 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.0329 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.329 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0329 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.508 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.122 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0.3,0,0,0,0.277,0.488,0.488,0,0,0.103 +0.333,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.278,0.278,1,0,0,0,0.228,0.511,0.511,0,0,0.324 +0.667,0.278,0.278,1,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0.398 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0.0617 +0.333,0.16,0.16,1,0.5,0,0,0.246,0.488,0.488,0.402,0,0 +0.333,0.16,0.16,1,1,0,0,0.246,0.488,0.488,0.565,0,0 +0.333,0.16,0.16,1,1,0,0,0.246,0.488,0.488,0.582,0,0 +0.333,0.16,0.16,1,1,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,1,0.7,0,0,0.246,0.488,0.488,0.533,0,0 +0.333,0.16,0.16,1,0,0,0,0.246,0.488,0.488,0.212,0,0.122 +0.333,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0.207,0,0 +0.333,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0.207,0,0 +0.333,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0.332,0,0.122 +0.333,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0.489,0,0 +0.333,0.154,0.154,0.4,0,0,0,0.249,0.492,0.492,0.598,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0.299,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0.435,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0.451,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0.647,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0.467,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0.3,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0.1,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.404,0.404,0,0,1,0,0.491,0.646,0.646,0,0.395,0 +1,0.404,0.404,0,0,0.5,0,0.491,0.646,0.646,0,0.305,0 +1,0.404,0.404,0,0,0,0.8,0.491,0.646,0.646,0,0.155,0.244 +1,0.404,0.404,0,0.5,0,1,0.491,0.646,0.646,0.342,0.15,0 +1,0.404,0.404,0,1,0,0.9,0.491,0.646,0.646,0.804,0.236,0 +1,0.404,0.404,0,1,0,0,0.491,0.646,0.646,0.549,0,0 +1,0.501,0.501,0,1,0,0,0.584,0.658,0.658,0.353,0.429,0 +1,0.501,0.501,0,1,0,0,0.584,0.658,0.658,0,0.27,0.122 +1,0.501,0.501,0,1,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0.1,0,0,0.584,0.658,0.658,0,0.506,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.249,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0.137,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.122 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.409 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.265 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.122 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.957 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.191 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.173 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.167 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.1 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.243 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.199 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.249 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0635 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.107 +0.667,0.286,0.286,0.8,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.488 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.106 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.286 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.319 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.366 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.324 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.231 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.244 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.366 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.122 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0.5,0,0.305,0.463,0.463,0,0.309,0 +1,0.139,0.139,0,0,1,0,0.305,0.463,0.463,0,0,0 +1,0.284,0.284,0,0,0,0.3,0.376,0.503,0.503,0,0.438,0 +1,0.284,0.284,0,0,0,1,0.376,0.503,0.503,0,0.313,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0.322,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0.137,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0.249,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.073,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.455,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.395,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.275,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.348,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.584,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.356,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.732 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.41 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0.321,0,0 +0.667,0.259,0.259,0,1,0,0,0.327,0.552,0.552,0.402,0,0 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.304,0,0 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0,0,0.169 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.505,0,0.169 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0.6,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.175 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.349 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.0349 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.176 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.282 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.316 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.17 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.19 +1,0.806,0.806,0.8,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0.6,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.244 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.287 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.419 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.541 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0.451,0,0 +1,0.391,0.391,0,1,0,0,0.45,0.486,0.486,0.587,0,0 +1,0.391,0.391,0,1,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,1,0,0,0.45,0.486,0.486,0.62,0,0 +1,0.22,0.22,0,1,0,0,0.354,0.476,0.476,0.408,0,0.366 +1,0.116,0.116,0,0.2,0,0,0.326,0.459,0.459,0,0,0.488 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0.5,0,0.246,0.488,0.488,0,0.296,0 +0.333,0.16,0.16,0,0,1,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,1,0,0.246,0.488,0.488,0,0.361,0 +0.333,0.16,0.16,0,0,0.5,0,0.246,0.488,0.488,0,0.0129,0 +0.333,0.16,0.16,0,0,0,0.8,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,1,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0.9,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0.5,0,0.24,0.519,0.519,0,0.258,0 +0.667,0.259,0.259,0,0,1,0,0.24,0.519,0.519,0,0.459,0 +0.667,0.251,0.251,0,0,0,0.3,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,1,0.234,0.528,0.528,0,0.0386,0 +0.667,0.251,0.251,0,0,0,1,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,1,0.234,0.528,0.528,0,0.644,0 +0.667,0.251,0.251,0,0,0,0.8,0.234,0.528,0.528,0,0.348,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.073,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.335,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.296,0.122 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.335,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.27,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.296,0.366 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.0987,0.488 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.258,0.244 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.0386,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.27,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.283,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.258,0.122 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.421,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.258,0.122 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0.8,0,0,0,0.297,0.571,0.571,0,0.514,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0.465,0 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.363,0.363,0.1,0,0,0,0.361,0.596,0.596,0,0.159,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0.249,0.244 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0.309,0 +1,0.363,0.363,0.8,0,0,0,0.361,0.596,0.596,0,0.446,0 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0.288,0 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0.159,0.366 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0.61 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0.249,0 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0.0515,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.296,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0.283,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.296,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.322,0.244 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.0987,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.732 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.488 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.488 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.173 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.191 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.338 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.188 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0942 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0339 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.313 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.104 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.348 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.278 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.21 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.105 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.161 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.161 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,0.3,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0.122 +0.667,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0.134 +0.667,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0.63,0,0 +0.667,0.286,0.286,1,1,0,0,0.296,0.511,0.511,0.429,0,0.244 +0.667,0.278,0.278,1,1,0,0,0.228,0.511,0.511,0,0,0.451 +0.667,0.278,0.278,1,1,0,0,0.228,0.511,0.511,0.457,0,0.278 +0.667,0.278,0.278,1,1,0,0,0.228,0.511,0.511,0.337,0,0 +0.667,0.278,0.278,1,1,0,0,0.228,0.511,0.511,0.457,0,0 +0.667,0.278,0.278,1,0.6,0,0,0.228,0.511,0.511,0.288,0,0.19 +0.667,0.278,0.278,0.8,0,0,0,0.228,0.511,0.511,0,0,0.122 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0.538,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0.592,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0.353,0,0.244 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0.511,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.244 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.168,0.168,0.8,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.168,0.168,1,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.168,0.168,1,0,0,0,0.336,0.525,0.525,0,0,0.244 +0.333,0.2,0.2,0.1,0,0,0,0.366,0.53,0.53,0,0,0.366 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.244 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.171 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.341 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.102 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.366 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.244 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.122 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.168 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.168 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.35 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.245 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,0.3,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0.6,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.186 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.215 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.344 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0.344 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0.466 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0.122 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.244 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.122 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.165 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.197 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.324 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.414 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.34 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.102 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.176 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.352 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0352 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.122 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0976 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,1,0,0.621,0.621,0.621,0,0.494,0 +1,0.656,0.656,0,0,0.5,0,0.621,0.621,0.621,0,0.309,0.366 +1,0.656,0.656,0,0,0,0.8,0.621,0.621,0.621,0,0.137,0 +1,0.656,0.656,0,0,0,0.5,0.621,0.621,0.621,0,0.0129,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.0129,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.249,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.361,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.363,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.405,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.545,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.488 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.122 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.245 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.207 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.103 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.122 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.29 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.122 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0341 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.341 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.136 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +1,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +1,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +1,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +1,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +1,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +1,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +1,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +1,0.154,0.154,0.8,0,0,0,0.249,0.492,0.492,0,0,0 +1,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0,0,0.122 +1,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0,0,0 +1,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.15,0.15,0.5,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.155 +0.667,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0619 +0.667,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.354 +0.667,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0.391,0,0.244 +0.667,0.168,0.168,0,1,0,0,0.336,0.525,0.525,0,0,0.122 +0.667,0.168,0.168,0,1,0,0,0.336,0.525,0.525,0.353,0,0 +0.667,0.168,0.168,0,1,0,0,0.336,0.525,0.525,0.826,0,0 +0.667,0.168,0.168,0,1,0,0,0.336,0.525,0.525,0.505,0,0 +0.667,0.168,0.168,0,0.2,0,0,0.336,0.525,0.525,0.31,0,0 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0.209,0,0 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0.209,0,0.244 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.61 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0.516,0,0.122 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0.402,0,0.244 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0.446,0,0 +0.667,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0.565,0,0 +0.667,0.252,0.252,0,0,1,0,0.379,0.517,0.517,0,0.296,0 +0.667,0.252,0.252,0,0,0.5,0,0.379,0.517,0.517,0,0.27,0 +0.667,0.252,0.252,0,0,0,0.8,0.379,0.517,0.517,0,0,0 +0.667,0.252,0.252,0,0,0,1,0.379,0.517,0.517,0,0.532,0 +1,0.554,0.554,0,0,0,1,0.525,0.544,0.544,0,0.137,0 +1,0.554,0.554,0,0,0,1,0.525,0.544,0.544,0,0,0 +1,0.554,0.554,0,0,0,0.3,0.525,0.544,0.544,0,0.258,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.481,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.202,0.244 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.142,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.366 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.244 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +0.667,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.41 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0331 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.366 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.15,0.15,0.8,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.15,0.15,0.6,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0.8,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.333,0.154,0.154,1,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0.1,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0.473,0,0 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.446,0,0 +0.333,0.2,0.2,0,1,0,0,0.366,0.53,0.53,0,0,0 +0.333,0.2,0.2,0,1,0,0,0.366,0.53,0.53,0.435,0,0 +0.667,0.351,0.351,0,1,0,0,0.475,0.594,0.594,0.467,0,0 +0.667,0.351,0.351,0,0.2,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.244 +0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.244 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.16 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.032 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.333 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.155 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.273 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.157 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0943 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.161 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.736 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.354 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.0709 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0.7 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.122 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.159 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.249 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.27,0.27,0,0.5,0,0,0.234,0.511,0.511,0.457,0,0.246 +0.667,0.27,0.27,0,1,0,0,0.234,0.511,0.511,0.462,0,0 +0.667,0.27,0.27,0,1,0,0,0.234,0.511,0.511,0.56,0,0 +0.667,0.259,0.259,0,1,0,0,0.24,0.519,0.519,0.239,0,0 +0.667,0.259,0.259,0,0.7,0,0,0.24,0.519,0.519,0.266,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0.293,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0.462,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0.457,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0.554,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0.293,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.15,0.15,0,0,1,0,0.246,0.496,0.496,0,0.249,0 +0.333,0.15,0.15,0,0,1,0,0.246,0.496,0.496,0,0.283,0.122 +0.333,0.15,0.15,0,0,1,0,0.246,0.496,0.496,0,0.369,0 +0.333,0.149,0.149,0,0,0,0.3,0.258,0.496,0.496,0,0.223,0 +0.333,0.149,0.149,0,0,0,1,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,1,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0.8,0,0,1,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,1,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,1,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0.2,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.244 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.174 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.453 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.136 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.204 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.488 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.366 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.244 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.174 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0348 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.272 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0.3,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.139,0.139,1,0,1,0,0.305,0.463,0.463,0,0.283,0 +0.667,0.139,0.139,1,0,1,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,1,0,1,0,0.305,0.463,0.463,0,0,0 +0.667,0.228,0.228,1,0,0,0.3,0.352,0.461,0.461,0,0,0.236 +0.667,0.228,0.228,1,0,0,1,0.352,0.461,0.461,0,0,0 +0.333,0.139,0.139,1,0,0,1,0.305,0.463,0.463,0,0,0 +0.333,0.167,0.167,1,0,0,1,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0.4,0,0,0.8,0.317,0.484,0.484,0,0,0.163 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.13 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.488 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.333 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.155 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.653 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.188 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.339 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.237 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.201 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.366 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.173 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.433 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.168 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.134 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.199 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0331 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0.8,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0.6,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.149 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0299 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.231 +0.667,0.286,0.286,0,0.5,0,0,0.413,0.585,0.585,0.353,0,0 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.598,0,0 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.364,0,0.122 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.489,0,0 +0.667,0.286,0.286,0,0.7,0,0,0.413,0.585,0.585,0.193,0,0.366 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0.193,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.288,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.435,0,0.488 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.424,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.277,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.353,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0.375,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0.408,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0.576,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0.56,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0.473,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0.609,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0.864,0,0 +1,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0.397,0,0.244 +1,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0.435,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.177 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.177 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.122 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.296 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.196 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.148 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.0297 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.283 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0.6,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.488 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0.5,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.244 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.488 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0.5,0,0.413,0.585,0.585,0,0.395,0 +0.667,0.286,0.286,0,0,1,0,0.413,0.585,0.585,0,0.0987,0.122 +0.667,0.286,0.286,0,0,1,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0.5,0,0.413,0.585,0.585,0,0,0 +1,0.404,0.404,0,0,0,0.8,0.491,0.646,0.646,0,0,0.122 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0,0.244 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0.7,0.584,0.658,0.658,0.223,0,0 +1,0.501,0.501,0,1,0,0,0.584,0.658,0.658,0.332,0,0 +1,0.656,0.656,0,1,0,0,0.621,0.621,0.621,0.236,0,0 +1,0.656,0.656,0,1,0,0,0.621,0.621,0.621,0.471,0,0.122 +1,0.656,0.656,0,1,0,0,0.621,0.621,0.621,0.516,0,0 +1,0.656,0.656,0,0.2,0,0,0.621,0.621,0.621,0.641,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0.44,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0.446,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0.408,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0.446,0,0.122 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0.293,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0.375,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0.489,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.164 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.179 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0781,0.0781,1,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,1,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,1,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0.9,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0.429,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.402,0,0 +0.333,0.167,0.167,0,1,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,1,0,0,0.317,0.484,0.484,0.31,0,0 +0.333,0.167,0.167,0,1,0,0,0.317,0.484,0.484,0.38,0,0 +0.333,0.167,0.167,0,0.2,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.244 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.366 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.488 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0.3,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.251,0.251,0.1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.244 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.404,0.404,0,0,1,0,0.491,0.646,0.646,0,0.496,0.122 +1,0.404,0.404,0,0,0.5,0,0.491,0.646,0.646,0,0.273,0 +1,0.404,0.404,0,0,0,0.8,0.491,0.646,0.646,0,0.249,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0.446,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0.236,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0.275,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0.296,0 +1,0.501,0.501,0,0,0,0.7,0.584,0.658,0.658,0,0.0987,0.366 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.438,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0.142,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.244 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.366 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.186 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.142 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.122 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.117 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.0342 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.342 +1,0.286,0.286,0.8,0,0,0,0.296,0.511,0.511,0,0,0.103 +1,0.286,0.286,0.6,0,0,0,0.296,0.511,0.511,0,0,0.366 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.244 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.167 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.0333 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.313 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.244 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.366 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.15,0.15,0.8,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.244 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.173 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.33 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.244 +0.333,0.168,0.168,0.8,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.168,0.168,1,0,0,0,0.336,0.525,0.525,0,0,0.122 +0.333,0.168,0.168,1,0,0,0,0.336,0.525,0.525,0,0,0.122 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0.122 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0.4,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0.8,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0.5,0,0,0.621,0.621,0.621,0.37,0,0 +1,0.656,0.656,1,1,0,0,0.621,0.621,0.621,0.467,0,0 +1,0.656,0.656,1,1,0,0,0.621,0.621,0.621,0.533,0,0 +1,0.656,0.656,1,1,0,0,0.621,0.621,0.621,0.228,0,0.35 +1,0.806,0.806,0.4,1,0,0,0.658,0.583,0.583,0.348,0,0.245 +1,0.806,0.806,0,1,0,0,0.658,0.583,0.583,0,0,0.366 +1,0.806,0.806,0,0.1,0,0,0.658,0.583,0.583,0,0,0.366 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.244 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.244 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.159 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.127 +1,0.851,0.851,0,0,1,0,0.639,0.559,0.559,0,0.0129,0 +1,0.851,0.851,0,0,0.5,0,0.639,0.559,0.559,0,0.348,0.122 +1,0.851,0.851,0,0,0,0.8,0.639,0.559,0.559,0,0,0.122 +1,0.584,0.584,0,0,0,1,0.512,0.528,0.528,0,0.382,0 +1,0.391,0.391,0,0,0,1,0.45,0.486,0.486,0,0.433,0 +1,0.391,0.391,0,0,0,1,0.45,0.486,0.486,0,0.236,0 +1,0.391,0.391,0,0,0,1,0.45,0.486,0.486,0,0.395,0 +1,0.391,0.391,0,0,0,0.7,0.45,0.486,0.486,0,0.309,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.309,0.244 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.197,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0.485,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.368 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.284,0.284,1,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.284,0.284,1,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.284,0.284,1,0,0,0,0.376,0.503,0.503,0,0,0.349 +1,0.284,0.284,1,0,0,0,0.376,0.503,0.503,0,0,0.105 +1,0.284,0.284,1,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.284,0.284,1,0.5,0,0,0.376,0.503,0.503,0.592,0,0 +1,0.286,0.286,1,1,0,0,0.296,0.511,0.511,0.527,0,0 +1,0.286,0.286,1,1,0,0,0.296,0.511,0.511,0.554,0,0 +1,0.286,0.286,1,1,0,0,0.296,0.511,0.511,0.625,0,0 +1,0.286,0.286,1,0.7,0,0,0.296,0.511,0.511,0.242,0,0 +1,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0.242,0,0 +1,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0.554,0,0 +1,0.278,0.278,0.1,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0.8,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.667,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0,0,0.366 +0.667,0.154,0.154,0.5,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.645 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.249,0.249,1,0,0.5,0,0.259,0.528,0.528,0,0.369,0 +0.667,0.249,0.249,1,0,1,0,0.259,0.528,0.528,0,0,0.177 +1,0.349,0.349,1,0,1,0,0.259,0.559,0.559,0,0.361,0 +1,0.349,0.349,1,0,1,0,0.259,0.559,0.559,0,0.309,0 +1,0.349,0.349,1,0,1,0,0.259,0.559,0.559,0,0.494,0 +0.667,0.249,0.249,1,0,0,0.3,0.259,0.528,0.528,0,0.433,0 +1,0.349,0.349,1,0,0,1,0.287,0.546,0.546,0,0.27,0.488 +1,0.349,0.349,0.8,0,0,1,0.287,0.546,0.546,0,0,0 +1,0.349,0.349,0,0,0,1,0.287,0.546,0.546,0,0.429,0 +1,0.349,0.349,0,0,0,0.8,0.287,0.546,0.546,0,0.296,0 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0.223,0.122 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0.296,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0.605,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0.283,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.122 +1,0.363,0.363,0.8,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0.244 +1,0.404,0.404,0.1,0,0,0,0.491,0.646,0.646,0,0,0.366 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.614,0,0 +1,0.501,0.501,0,1,0,0,0.584,0.658,0.658,0.524,0,0 +0.667,0.351,0.351,0,1,0,0,0.475,0.594,0.594,0.524,0,0 +0.667,0.351,0.351,0,1,0,0,0.475,0.594,0.594,0.522,0,0 +0.667,0.351,0.351,0,1,0,0,0.475,0.594,0.594,0.614,0,0.366 +0.667,0.351,0.351,0,0.2,0,0,0.475,0.594,0.594,0.402,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0.451,0,0.244 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.366 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.248 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.308 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.333,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.6,0,0.5,0,0.258,0.465,0.465,0,0.258,0 +0.667,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0,0 +0.333,0.167,0.167,0,0,0,0.3,0.317,0.484,0.484,0,0.258,0 +0.333,0.167,0.167,0,0,0,1,0.317,0.484,0.484,0,0.27,0 +0.333,0.167,0.167,0,0,0,1,0.317,0.484,0.484,0,0.309,0 +0.333,0.167,0.167,0,0,0,1,0.317,0.484,0.484,0,0.348,0 +0.333,0.167,0.167,0,0,0,0.8,0.317,0.484,0.484,0,0.283,0 +0.333,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.137,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.296,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.189,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.296,0.244 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0.283,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0.27,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0.438,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0.464,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.244 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.162 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.187 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.244 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.58 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.223 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.238 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.501,0.501,0.8,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0.1,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.366 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.366 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.122 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.366 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,1,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.228,0.228,1,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.228,0.228,0.5,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.284,0.284,0,0,1,0,0.376,0.503,0.503,0,0.0129,0 +0.667,0.284,0.284,0,0,1,0,0.376,0.503,0.503,0,0.223,0 +0.667,0.284,0.284,0,0,1,0,0.376,0.503,0.503,0,0.112,0 +0.667,0.286,0.286,0,0,1,0,0.296,0.511,0.511,0,0.627,0 +0.667,0.286,0.286,0,0,0.5,0,0.296,0.511,0.511,0,0.296,0 +0.667,0.286,0.286,0,0,0,0.8,0.296,0.511,0.511,0,0.579,0 +0.667,0.286,0.286,0,0,0,1,0.296,0.511,0.511,0,0.348,0 +0.667,0.286,0.286,0,0,0,1,0.296,0.511,0.511,0,0.137,0 +0.667,0.286,0.286,0,0,0,1,0.296,0.511,0.511,0,0.262,0 +0.667,0.278,0.278,0,0,0,1,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0.7,0.228,0.511,0.511,0,0.309,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.408,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.395,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.0601,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.122 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0.335,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0.309,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0.262,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.732 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.366 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0.44,0,0 +0.333,0.154,0.154,0,1,0,0,0.249,0.492,0.492,0.38,0,0.122 +0.333,0.15,0.15,0,1,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,1,0,0,0.246,0.496,0.496,0.418,0,0 +0.333,0.15,0.15,0,1,0,0,0.246,0.496,0.496,0.462,0,0 +0.333,0.15,0.15,0,0.2,0,0,0.246,0.496,0.496,0.408,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0.348,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0.565,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0.418,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0.707,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.61 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0.321,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0.342,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0.473,0,0 +0.333,0.149,0.149,0.8,0,0,0,0.268,0.492,0.492,0.397,0,0 +0.333,0.149,0.149,1,0,0,0,0.268,0.492,0.492,0.397,0,0.122 +0.333,0.149,0.149,1,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0.4,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.122 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,1,0,0.413,0.585,0.585,0,0.489,0 +0.667,0.286,0.286,0,0,1,0,0.413,0.585,0.585,0,0.279,0 +0.667,0.286,0.286,0,0,1,0,0.413,0.585,0.585,0,0.418,0 +1,0.501,0.501,0,0,0,0.3,0.584,0.658,0.658,0,0.418,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0.0386,0.244 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0.361,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0.137,0 +1,0.501,0.501,0,0,0,1,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,0,0,0,0.2,0.621,0.621,0.621,0,0.481,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.244 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.244 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.366 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.164 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.196 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.351 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.494 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.171 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.103 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.618 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.0646 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.422 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.293 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.345 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.1 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.487 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.556 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0.8,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0.1,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.488 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.122 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0.261,0,0.488 +0.667,0.259,0.259,0,1,0,0,0.327,0.552,0.552,0.5,0,0.122 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.179,0,0 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0.179,0,0.418 +0.667,0.286,0.286,0,1,0,0,0.413,0.585,0.585,0,0,0.192 +1,0.404,0.404,0,0.2,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.266 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.167 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.165 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.033 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.186 +1,0.656,0.656,0.8,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0.1,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.488 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.122 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.244 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.107,0.107,0.1,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.12 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.165 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.0992 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.211 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.247 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.167 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.1 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.316 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.167 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.478 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.244 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.122 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.488 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,1,0,0.268,0.492,0.492,0,0.236,0 +0.333,0.149,0.149,0,0,1,0,0.268,0.492,0.492,0,0.0987,0 +0.333,0.149,0.149,0,0,1,0,0.268,0.492,0.492,0,0.309,0.122 +0.333,0.15,0.15,0,0,1,0,0.271,0.501,0.501,0,0.506,0 +0.333,0.15,0.15,0,0,0.5,0,0.271,0.501,0.501,0,0.382,0 +0.333,0.15,0.15,0,0,0,0.8,0.271,0.501,0.501,0,0.27,0 +0.333,0.15,0.15,0,0,0,1,0.271,0.501,0.501,0,0.421,0 +0.333,0.15,0.15,0,0,0,1,0.271,0.501,0.501,0,0.185,0 +0.333,0.15,0.15,0,0,0,1,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0,0,0,1,0.292,0.509,0.509,0,0.172,0 +0.333,0.154,0.154,0,0,0,0.7,0.292,0.509,0.509,0,0.236,0.572 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0.348,0.257 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0.382,0.244 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0.236,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.15,0.34 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.296,0.278 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.0386,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.0601,0.161 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.373 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0.0386,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0.361,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.27,0.244 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.288,0.343 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.82,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.206,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0.0987,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.663 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.105 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.256 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.244 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.435 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.343 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.0686 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.122 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.226 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.175 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.14 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.162 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0.8,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.327,0.552,0.552,0,0,0.122 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0,0.488 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0.4,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.244 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,1,0,0.621,0.621,0.621,0,0.236,0 +1,0.656,0.656,0,0,1,0,0.621,0.621,0.621,0,0.309,0.122 +1,0.656,0.656,0,0,1,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0.3,0.658,0.583,0.583,0,0.567,0 +1,0.806,0.806,0,0,0,1,0.658,0.583,0.583,0.527,0.27,0 +1,0.806,0.806,0,1,0,1,0.658,0.583,0.583,0.435,0.361,0 +1,0.806,0.806,0,1,0,1,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,1,0,0.8,0.658,0.583,0.583,0.505,0.0515,0 +1,0.806,0.806,0,1,0,0,0.658,0.583,0.583,0.37,0,0 +1,0.851,0.851,0,0.2,0,0,0.639,0.559,0.559,0.321,0.137,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0.505,0.137,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0.275,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0.343,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0.249,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0.309,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.609,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.223,0.122 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.404,0.404,1,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,1,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0,0,1,0,0.315,0.534,0.534,0,0.489,0 +1,0.404,0.404,0,0,1,0,0.315,0.534,0.534,0,0.635,0 +1,0.404,0.404,0,0,1,0,0.315,0.534,0.534,0,0,0 +1,0.404,0.404,0,0,1,0,0.315,0.534,0.534,0,0.283,0 +1,0.392,0.392,0,0,0.5,0,0.213,0.534,0.534,0,0.322,0 +1,0.392,0.392,0,0,0,0.8,0.213,0.534,0.534,0,0,0 +1,0.392,0.392,0,0,0,1,0.213,0.534,0.534,0,0.369,0 +1,0.392,0.392,0,0,0,1,0.213,0.534,0.534,0,0.378,0 +1,0.392,0.392,0,0,0,1,0.213,0.534,0.534,0,0.464,0 +1,0.392,0.392,0,0,0,0.3,0.213,0.534,0.534,0,0.124,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0.258,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0.0386,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0.0901,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0.172,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0.0601,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0.446,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0.258,0.366 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0.309,0.244 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0.249,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0.258,0.122 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0.27,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0.27,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0.369,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0.309,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.223,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.459,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.464,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.403,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.223,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.0386,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.472,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.356,0.244 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.073,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.296,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.244 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.236,0.366 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0.27,0.244 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.244 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0.506,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.0386,0.244 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.528,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.373,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.0601,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.122 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.309,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.369,0.122 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.249,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.361,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.174 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.715 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.122 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.366 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.157 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.286,0.286,0.8,0,0,0,0.296,0.511,0.511,0,0,0.219 +0.667,0.164,0.164,0.6,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.154,0.154,0,0.5,0,0,0.249,0.492,0.492,0.668,0,0 +0.667,0.154,0.154,0,1,0,0,0.249,0.492,0.492,0.505,0,0 +0.667,0.154,0.154,0,1,0,0,0.249,0.492,0.492,0.533,0,0 +0.667,0.154,0.154,0,1,0,0,0.249,0.492,0.492,0.457,0,0 +1,0.352,0.352,0,0.7,0,0,0.222,0.559,0.559,0.228,0,0 +1,0.352,0.352,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.352,0.352,0,0,0,0,0.222,0.559,0.559,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.488 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.244 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.366 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.122 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.581 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.348 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.0695 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0.228,0,0.307 +1,0.363,0.363,0,1,0,0,0.361,0.596,0.596,0.391,0,0 +1,0.363,0.363,0,1,0,0,0.361,0.596,0.596,0.166,0,0 +1,0.363,0.363,0,1,0,0,0.361,0.596,0.596,0.166,0,0.122 +1,0.363,0.363,0,1,0,0,0.361,0.596,0.596,0.473,0,0 +1,0.363,0.363,0.8,0.2,0,0,0.361,0.596,0.596,0,0,0.252 +1,0.404,0.404,0.6,0,0,0,0.491,0.646,0.646,0.408,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0.402,0,0.122 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.0634 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0.467,0,0.0951 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0.489,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.5,0,0 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.293,0,0.244 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.291,0,0.366 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.291,0,0.122 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.386,0,0 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.364,0,0 +1,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0.348,0,0.122 +1,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0.462,0,0 +1,0.454,0.454,0,0,0.5,0,0.5,0.569,0.569,0.571,0.0515,0 +1,0.454,0.454,0,0,1,0,0.5,0.569,0.569,0.473,0,0.244 +1,0.656,0.656,0,0,1,0,0.621,0.621,0.621,0.293,0,0 +1,0.806,0.806,0,0,1,0,0.658,0.583,0.583,0.484,0,0 +1,0.806,0.806,0,0,1,0,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,0.3,0.658,0.583,0.583,0.353,0,0 +1,0.806,0.806,0,0,0,1,0.658,0.583,0.583,0,0,0 +1,0.806,0.806,0,0,0,1,0.658,0.583,0.583,0,0,0.244 +1,0.806,0.806,0,0,0,0.4,0.658,0.583,0.583,0,0,0.122 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.244 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.122 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.266 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0.19 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.324 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.232 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.194 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0.3,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,1,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0.2,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.366 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0.565,0,0 +0.333,0.0495,0.0495,1,1,0,0,0.258,0.465,0.465,0.408,0,0 +0.333,0.162,0.162,0.2,1,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,1,0,0,0.29,0.538,0.538,0.418,0,0 +0.333,0.162,0.162,0,1,0,0,0.29,0.538,0.538,0.359,0,0 +0.333,0.162,0.162,0,1,0,0,0.29,0.538,0.538,0.679,0,0 +0.333,0.162,0.162,0,0.9,0,0,0.29,0.538,0.538,0.353,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0.8,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0.7,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.491 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.366 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.349 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.21 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.269 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0633 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.493 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.115 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,1,0,0.257,0.523,0.523,0,0.318,0 +0.333,0.174,0.174,0,0,1,0,0.257,0.523,0.523,0,0.481,0 +0.333,0.174,0.174,0,0,1,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,1,0,0.257,0.523,0.523,0,0.361,0 +0.333,0.174,0.174,0,0,0.2,0.1,0.257,0.523,0.523,0,0.21,0.244 +0.333,0.174,0.174,0,0,0,1,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,1,0.261,0.523,0.523,0,0.504,0 +0.333,0.17,0.17,0,0,0,1,0.261,0.523,0.523,0,0.444,0 +0.333,0.17,0.17,0,0,0,1,0.261,0.523,0.523,0,0.283,0 +0.333,0.17,0.17,0,0,0,1,0.261,0.523,0.523,0,0.27,0 +0.333,0.17,0.17,0,0,0,1,0.261,0.523,0.523,0,0.0386,0 +0.333,0.17,0.17,0,0,0,1,0.261,0.523,0.523,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.366 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.488 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0.3,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,1,0,0,0,0.433,0.713,0.713,0,0,0.122 +1,0.501,0.501,0.2,0.5,0,0,0.588,0.773,0.773,0.484,0,0 +1,0.501,0.501,0,1,0,0,0.588,0.773,0.773,0.467,0,0 +1,0.501,0.501,0,1,0,0,0.588,0.773,0.773,0.375,0,0.244 +1,0.501,0.501,0,1,0,0,0.588,0.773,0.773,0.299,0,0 +1,0.501,0.501,0,0.9,0,0,0.588,0.773,0.773,0.386,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.366 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.429,0,0.343 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.259 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.175 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.245 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.402 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.175 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.105 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.244 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.244 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.244 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.183 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.169 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.203 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.344 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.0687 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0.3,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.172,0.172,1,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0.7,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.122 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.122 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.122 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.265 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.288 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.343 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.244 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.244 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.348 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.104 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.174 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.209 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.245 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.101 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.268 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.348 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.174 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.248 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.088 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0587 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0.8,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.16,0.16,0.2,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.244 +0.667,0.294,0.294,0.8,0,0,0,0.374,0.631,0.631,0,0,0.366 +0.667,0.294,0.294,0.7,0,0,0,0.374,0.631,0.631,0,0,0.244 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.522,0,0.122 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0.527,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.505,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.402,0,0.122 +1,0.829,0.829,0,0.4,0,0,0.743,0.743,0.743,0.364,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.299,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.366 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.318 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.244 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.366 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.144 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.337 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.231 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.854 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.235 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.188 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.172 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.172 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.33 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.033 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.176 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.0352 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.244 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.401 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.366 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0644 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.405 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.488 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.244 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.331 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.132 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.244 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.488 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.106 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.488 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.244 +1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.366 +1,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.366 +1,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.244 +1,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.35,0.35,0.3,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.453,0.453,0.2,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.488 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.244 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0.3,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,1,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.564,0.564,1,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,1,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,1,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,1,0,0,0,0.596,0.601,0.601,0,0,0.224 +1,0.564,0.564,1,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,1,0,0,0,0.596,0.601,0.601,0,0,0.366 +1,0.356,0.356,1,0,0,0,0.522,0.551,0.551,0,0,0.244 +1,0.356,0.356,1,0,0,0,0.522,0.551,0.551,0,0,0.121 +1,0.203,0.203,1,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.273 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0584 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +1,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +1,0.295,0.295,1,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.175,0.175,0.2,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.667,0.174,0.174,0,0.5,0,0,0.257,0.523,0.523,0.533,0,0 +0.667,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.505,0,0.366 +0.667,0.174,0.174,0,1,0,0,0.257,0.523,0.523,0.63,0,0 +0.667,0.17,0.17,0,1,0,0,0.261,0.523,0.523,0.582,0,0 +0.667,0.17,0.17,0,1,0,0,0.261,0.523,0.523,0.302,0,0 +0.667,0.17,0.17,0,1,0,0,0.261,0.523,0.523,0.302,0,0 +0.667,0.17,0.17,0,0.4,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.17 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.238 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.192 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.129 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.785 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.66 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.366 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.122 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.133 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.16 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.16 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.169 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.15 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0301 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0 +0.333,0.309,0.309,0.3,0,0,0,0.42,0.558,0.558,0,0,0 +0.333,0.309,0.309,1,0,0,0,0.42,0.558,0.558,0,0,0 +0.667,0.569,0.569,1,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,1,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,1,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.62,0.62,1,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0.7,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.333,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.244 +0.333,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.366 +0.333,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.333,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.333,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.333,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.333,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.333,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.333,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.333,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.333,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.333,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +0.667,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +0.667,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0 +0.667,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.253 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.158 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0632 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.16 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.171 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.137 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0.5,0,0,0.261,0.523,0.523,0.402,0,0 +0.667,0.17,0.17,0,1,0,0,0.261,0.523,0.523,0.5,0,0 +0.667,0.17,0.17,0,1,0,0,0.261,0.523,0.523,0.44,0,0.244 +0.667,0.291,0.291,0,1,0,0,0.263,0.581,0.581,0.315,0,0 +0.667,0.291,0.291,0,0.9,0,0,0.263,0.581,0.581,0.402,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0.467,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0.364,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0.418,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0.467,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0.237,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0.475,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,1,0,0.263,0.601,0.601,0,0.532,0 +0.667,0.271,0.271,0,0,1,0,0.263,0.601,0.601,0,0.258,0.122 +0.667,0.271,0.271,0,0,1,0,0.263,0.601,0.601,0,0.322,0 +0.667,0.269,0.269,0,0,1,0,0.293,0.601,0.601,0,0.197,0 +0.667,0.269,0.269,0,0,0.2,0.1,0.293,0.601,0.601,0,0.0987,0.122 +0.667,0.269,0.269,0,0,0,1,0.293,0.601,0.601,0,0,0.244 +0.667,0.269,0.269,0,0,0,1,0.293,0.601,0.601,0,0.382,0.122 +0.667,0.269,0.269,0,0,0,1,0.293,0.601,0.601,0,0.21,0 +0.667,0.269,0.269,0,0,0,1,0.293,0.601,0.601,0,0.223,0 +0.667,0.269,0.269,0,0,0,0.1,0.315,0.591,0.591,0,0.665,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.361,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.309,0.122 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.373,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.309,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.244 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0.258,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0.309,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0.528,0 +0.667,0.274,0.274,0.3,0,0,0,0.323,0.611,0.611,0,0.541,0 +0.667,0.274,0.274,1,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0.7,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.366 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.327 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.171 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.341 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0341 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0542 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.232 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.366 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.13 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.366 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0.2,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0.266,0,0 +1,0.0798,0.0798,0,1,0,0,0.305,0.474,0.474,0.505,0,0 +1,0.236,0.236,0,1,0,0,0.404,0.522,0.522,0.245,0,0.327 +1,0.236,0.236,0,1,0.5,0,0.404,0.522,0.522,0.245,0.0386,0.0327 +1,0.236,0.236,0,1,1,0,0.404,0.522,0.522,0.462,0,0 +1,0.236,0.236,0,1,1,0,0.404,0.522,0.522,0,0.296,0 +1,0.236,0.236,0.3,0.9,0.3,0,0.404,0.522,0.522,0,0.348,0.154 +1,0.236,0.236,1,0,0,1,0.404,0.522,0.522,0,0.455,0.0615 +1,0.417,0.417,0.2,0,0,1,0.521,0.624,0.624,0,0.197,0 +1,0.417,0.417,0,0,0,1,0.521,0.624,0.624,0,0.21,0 +0.667,0.295,0.295,0,0,0,1,0.433,0.571,0.571,0,0.421,0 +0.667,0.295,0.295,0,0,0,1,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0.7,0.433,0.571,0.571,0,0.283,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0.288,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0.167,0 +0.667,0.301,0.301,0.3,0,0,0,0.337,0.581,0.581,0,0.425,0 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0.446,0 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,1,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0.7,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.366 +0.333,0.17,0.17,0.3,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0.2,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0.8,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0.7,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0.3,0,0,0,0.293,0.601,0.601,0,0,0.122 +1,0.269,0.269,1,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,1,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0.7,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0.5,0,0.323,0.611,0.611,0,0.0129,0.122 +0.667,0.274,0.274,0,0,1,0,0.323,0.611,0.611,0,0.348,0 +0.667,0.274,0.274,0,0,1,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0.3,0,0.323,0.611,0.611,0,0.309,0 +0.667,0.274,0.274,0,0,0,1,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,1,0.374,0.631,0.631,0,0.361,0 +0.667,0.294,0.294,0,0,0,0.8,0.374,0.631,0.631,0,0.369,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0.275,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0.172,0 +0.667,0.294,0.294,0.3,0,0,0,0.374,0.631,0.631,0,0,0.154 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0.0617 +0.667,0.35,0.35,0.2,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.255 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.244 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.177 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.279 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.308 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.164 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.31 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.244 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,1,0,0,0,0.331,0.493,0.493,0,0,0.262 +1,0.143,0.143,1,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,1,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,1,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,1,0,0.5,0,0.331,0.493,0.493,0,0.0601,0.167 +1,0.143,0.143,1,0,1,0,0.331,0.493,0.493,0,0.335,0.234 +1,0.172,0.172,1,0,1,0,0.346,0.518,0.518,0,0.446,0 +1,0.172,0.172,0.7,0,0.3,0,0.346,0.518,0.518,0,0.137,0 +1,0.172,0.172,0,0,0,1,0.346,0.518,0.518,0,0.408,0 +1,0.295,0.295,0,0,0,1,0.433,0.571,0.571,0,0.0987,0.225 +1,0.295,0.295,0,0,0,1,0.433,0.571,0.571,0,0.172,0 +1,0.295,0.295,0,0,0,1,0.433,0.571,0.571,0,0.708,0 +1,0.427,0.427,0,0,0,1,0.377,0.639,0.639,0,0,0 +1,0.427,0.427,0,0,0,0.7,0.377,0.639,0.639,0,0,0.17 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0.34 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.125 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.424,0.424,0,0,0,0,0.255,0.639,0.639,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.18 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.488 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.244 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.255 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.233 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.61 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.196 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.488 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.244 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.244 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0.353,0,0 +0.667,0.453,0.453,0,1,0,0,0.552,0.68,0.68,0.304,0,0.244 +0.667,0.453,0.453,0,1,0,0,0.552,0.68,0.68,0.19,0,0 +0.667,0.453,0.453,0,1,0,0,0.552,0.68,0.68,0.19,0,0.122 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0.37,0,0.122 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.413,0,0 +1,0.829,0.829,0,0.9,0,0,0.743,0.743,0.743,0.745,0,0.488 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.366 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.413,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.473,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.315,0,0.366 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.478,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.391,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.122 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.488 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.634 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.0353 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0.517 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0.726 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.346 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.138 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.156 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.212 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.0354 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.342 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.163 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.098 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.416 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.347 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.122 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.122 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +0.667,0.453,0.453,0,0,1,0,0.552,0.68,0.68,0,0.0601,0.234 +0.667,0.453,0.453,0,0,1,0,0.552,0.68,0.68,0,0,0.122 +0.667,0.453,0.453,0,0,1,0,0.552,0.68,0.68,0,0,0.244 +0.667,0.569,0.569,0,0,1,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0.2,0.1,0.581,0.65,0.65,0,0,0.149 +0.667,0.569,0.569,0,0,0,1,0.581,0.65,0.65,0,0,0 +1,0.829,0.829,0,0,0,1,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,1,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,1,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,1,0.788,0.698,0.698,0,0,0.457 +1,0.905,0.905,0,0,0,0.6,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.244 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.122 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.122 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.351 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.351 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.351 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.211 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.137 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.172 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.348 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.0348 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0887 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.167 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.1 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.962 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0704 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.54 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0696 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0.3,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0.163 +0.667,0.279,0.279,1,0,0,0,0.271,0.591,0.591,0,0,0.0651 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0.7,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.244 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.178 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.126 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.551 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.167 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.322 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.122 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0.5,0,0,0.374,0.631,0.631,0.571,0,0.168 +0.667,0.294,0.294,0,1,0,0,0.374,0.631,0.631,0.429,0,0 +0.667,0.294,0.294,0,1,0,0,0.374,0.631,0.631,0.446,0,0 +0.667,0.35,0.35,0,1,0,0,0.478,0.67,0.67,0.402,0,0 +0.667,0.35,0.35,0,0.9,0,0,0.478,0.67,0.67,0.323,0,0.401 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0.323,0,0.338 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0.462,0,0.122 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0.44,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0.451,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.181 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.829,0.829,0,0.5,0,0,0.743,0.743,0.743,0.342,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.478,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.609,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.576,0,0 +1,0.829,0.829,0,0.9,0,0,0.743,0.743,0.743,0,0,0.366 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.149 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.29 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.357 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.087 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.029 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0.7,0,0,0,0.305,0.464,0.464,0,0,0.164 +1,0.0495,0.0495,0,0,0,0,0.352,0.462,0.462,0,0,0.197 +0.667,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.331 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0662 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.17 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.346 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.366 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.33 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.132 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.161 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0321 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.249 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0.3,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0.7,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.107 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.366 +0.333,0.162,0.162,0.8,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.333,0.162,0.162,0.7,0,0,0,0.29,0.538,0.538,0,0,0.488 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.122 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.523 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.19 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.488 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.61 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.337 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0337 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.175 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.035 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.17,0.17,0.2,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.122 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +1,0.394,0.394,0,0,0,0,0.277,0.654,0.654,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.732 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.122 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.122 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.122 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.122 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.61 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0.5,0,0.788,0.698,0.698,0,0.0858,0 +1,0.905,0.905,0,0,1,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,1,0,0.788,0.698,0.698,0,0.678,0 +1,0.905,0.905,0,0,0.3,0,0.788,0.698,0.698,0,0.421,0 +1,0.905,0.905,0,0,0,1,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,1,0.765,0.669,0.669,0,0.356,0 +1,0.821,0.821,0,0,0,1,0.765,0.669,0.669,0,0.283,0.122 +1,0.821,0.821,0,0,0,1,0.765,0.669,0.669,0,0.395,0 +1,0.564,0.564,0,0,0,0.2,0.596,0.601,0.601,0,0.258,0.132 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.0987,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.0987,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.309,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.309,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.485,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.506,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.0601,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.455,0.122 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.339,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.464,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.0987,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.382,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0.468,0.248 +1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0.283,0 +1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.122 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.244 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.244 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +1,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +1,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +1,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +1,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +1,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +1,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +1,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +1,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +1,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +1,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +1,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.159,0.159,1,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,1,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0.7,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.168 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.412 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.202 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.403 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.127 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.122 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.244 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.179 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.173 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.173 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.338 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.338 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.101 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.156 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0625 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.253 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,1,0,0.261,0.533,0.533,0,0.073,0 +0.333,0.16,0.16,0,0,1,0,0.261,0.533,0.533,0,0.296,0 +0.333,0.16,0.16,0,0,0.8,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0.5,0.275,0.533,0.533,0,0.541,0 +0.333,0.159,0.159,0,0,0,1,0.275,0.533,0.533,0,0.395,0 +0.333,0.159,0.159,0,0,0,1,0.275,0.533,0.533,0,0.506,0 +0.333,0.159,0.159,0,0,0,1,0.275,0.533,0.533,0,0.618,0 +0.333,0.159,0.159,0,0,0,1,0.275,0.533,0.533,0,0.0258,0 +0.333,0.159,0.159,0,0,0,1,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,1,0.286,0.528,0.528,0,0.618,0 +0.333,0.159,0.159,0,0,0,0.6,0.286,0.528,0.528,0,0.361,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.451,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.536,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.0258,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.283,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.296,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.361,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.296,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0.309,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0.395,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0.361,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0.283,0.122 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.2,0.2,0,0.5,0,0,0.368,0.568,0.568,0.342,0.322,0 +0.333,0.2,0.2,0,1,0,0,0.368,0.568,0.568,0.402,0.163,0.488 +0.333,0.2,0.2,0,1,0,0,0.368,0.568,0.568,0.495,0,0.122 +0.667,0.35,0.35,0,1,0,0,0.478,0.67,0.67,0.75,0,0 +0.667,0.35,0.35,0,0.9,0,0,0.478,0.67,0.67,0,0,0.122 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0.413,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.522,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.283,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.19,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.19,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.44,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.386,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,1,0,0.743,0.743,0.743,0,0.356,0.256 +1,0.829,0.829,0,0,1,0,0.743,0.743,0.743,0,0.27,0.185 +1,0.829,0.829,0,0,0.8,0,0.743,0.743,0.743,0,0.369,0 +1,0.905,0.905,0,0,0,0.5,0.788,0.698,0.698,0,0.0601,0 +1,0.905,0.905,0,0,0,0.9,0.788,0.698,0.698,0,0.124,0.488 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.585 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.136 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.122 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0.3,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,1,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0.2,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.257 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.253 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.531 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0661 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.304 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0.5,0,0,0.264,0.528,0.528,0.44,0,0 +0.333,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.435,0,0.366 +0.333,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.451,0,0 +0.333,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.353,0,0 +0.333,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.193,0,0 +0.333,0.164,0.164,0,1,0,0,0.264,0.528,0.528,0.193,0,0.122 +0.333,0.16,0.16,0,0.4,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0.3,0,0,0,0.478,0.67,0.67,0,0,0.122 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.501,0.501,0.2,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.212 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.137 +1,0.905,0.905,0,0,0.5,0,0.788,0.698,0.698,0,0.309,0.591 +1,0.905,0.905,0,0,0.9,0,0.788,0.698,0.698,0,0.283,0.122 +1,0.905,0.905,0,0,0,0.4,0.788,0.698,0.698,0,0.236,0 +1,0.905,0.905,0,0,0,1,0.788,0.698,0.698,0,0.309,0.169 +1,0.905,0.905,0,0,0,1,0.788,0.698,0.698,0,0.0601,0.257 +1,0.821,0.821,0,0,0,0.4,0.765,0.669,0.669,0,0.223,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.412,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.601,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.464,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.227,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.481,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.296,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.369,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.249,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.283,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.339 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.339 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0678 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.125 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +0.667,0.236,0.236,0.8,0,0,0,0.404,0.522,0.522,0,0,0.317 +0.667,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.236,0.236,0.7,0,0,0,0.404,0.522,0.522,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.122 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.61 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,1,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.274,0.274,1,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,1,0,0.5,0,0.323,0.611,0.611,0,0.249,0 +0.667,0.274,0.274,1,0,1,0,0.323,0.611,0.611,0,0,0.244 +0.667,0.294,0.294,0.2,0,1,0,0.374,0.631,0.631,0,0.382,0.244 +0.667,0.294,0.294,0,0,1,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0.7,0,0.374,0.631,0.631,0,0,0.122 +0.667,0.294,0.294,0,0,0,0.6,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,1,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,1,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,1,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0.6,0.478,0.67,0.67,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.241 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.319 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.372 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.154 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.349 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.343 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0343 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.395 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.488 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.338 +0.667,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.0338 +0.333,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.333,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.333,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.333,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0.3,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.333,0.174,0.174,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0.244 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0.2,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,1,0,0.261,0.533,0.533,0,0.159,0 +0.333,0.16,0.16,0,0,1,0,0.261,0.533,0.533,0,0.369,0 +0.333,0.16,0.16,0,0,0.8,0,0.261,0.533,0.533,0,0.0386,0 +0.333,0.16,0.16,0,0,0,0.5,0.261,0.533,0.533,0,0.309,0 +0.333,0.16,0.16,0,0,0,1,0.261,0.533,0.533,0,0.335,0 +0.333,0.16,0.16,0,0,0,1,0.261,0.533,0.533,0,0.485,0 +0.333,0.159,0.159,0,0,0,1,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0.7,0.275,0.533,0.533,0,0.21,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0.322,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0.296,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0.283,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.185,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.159,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.0601,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.244 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.244 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.122 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.19 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +1,0.655,0.655,0,0.5,0,0,0.699,0.788,0.788,0.288,0,0.122 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0.511,0,0 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0.37,0,0.488 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.603,0,0.61 +1,0.829,0.829,0,0.9,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.266,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.413,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.375,0,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.413,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.489,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.338 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0.3,0,0,0,0.305,0.474,0.474,0,0,0.161 +1,0.0798,0.0798,1,0,0,0,0.305,0.474,0.474,0,0,0.0644 +1,0.33,0.33,0.2,0,0,0,0.477,0.55,0.55,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0.266 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0.0333 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.128 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.325 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0325 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.174 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.14 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.244 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.109 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.465 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0.3,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,1,0,0,0,0.286,0.528,0.528,0,0,0 +1,0.274,0.274,0.2,0,0,0,0.323,0.611,0.611,0,0,0 +1,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +1,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.366 +1,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.122 +1,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +1,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.122 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0.3,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,1,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,1,0,0,0,0.433,0.713,0.713,0,0,0.154 +1,0.417,0.417,0.7,0,0,0,0.433,0.713,0.713,0,0,0.61 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.488 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.829,0.829,0,0.5,0,0,0.743,0.743,0.743,0.413,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.321,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.505,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.375,0,0 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0,0,0.244 +1,0.905,0.905,0,0.4,0,0,0.788,0.698,0.698,0.364,0,0.555 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.484,0,0.0481 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.359,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.571,0,0 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.228,0,0.292 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.457,0,0.136 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.326,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.446,0,0.0799 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.188,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.188,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.315,0,0.122 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0.304,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0.652,0,0.244 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0.495,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0.424,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.522,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.478,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.332,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.413,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.264,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.264,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0.2,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.337 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.101 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0.7,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.488 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.854 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.122 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.122 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.122 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0.3,0,0.5,0,0.699,0.788,0.788,0,0.236,0 +1,0.655,0.655,1,0,1,0,0.699,0.788,0.788,0,0.412,0.122 +1,0.829,0.829,1,0,1,0,0.743,0.743,0.743,0,0.425,0 +1,0.829,0.829,0.7,0,1,0,0.743,0.743,0.743,0,0.85,0 +1,0.829,0.829,0,0,0.7,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0.6,0.743,0.743,0.743,0,0.545,0 +1,0.829,0.829,0,0,0,1,0.743,0.743,0.743,0,0.309,0 +1,0.829,0.829,0,0,0,1,0.743,0.743,0.743,0,0,0.244 +1,0.905,0.905,0,0,0,0.2,0.788,0.698,0.698,0,0.481,0.366 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.481,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.618,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.373,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.197,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.322,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.361,0.488 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.481,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.112,0.122 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0.348,0 +1,0.51,0.51,0.3,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.51,0.51,1,0,0,0,0.654,0.594,0.594,0,0,0.122 +1,0.51,0.51,1,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.51,0.51,1,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.51,0.51,1,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.249,0.249,1,0,0,0,0.555,0.535,0.535,0,0,0 +1,0.249,0.249,1,0,0,0,0.555,0.535,0.535,0,0,0 +1,0.249,0.249,1,0,0,0,0.555,0.535,0.535,0,0,0 +1,0.249,0.249,0.2,0,0,0,0.555,0.535,0.535,0,0,0 +1,0.249,0.249,0,0,0,0,0.555,0.535,0.535,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.366 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.295,0.295,0,0.5,0,0,0.433,0.571,0.571,0.636,0,0 +0.667,0.295,0.295,0,1,0,0,0.433,0.571,0.571,0.364,0,0 +0.667,0.295,0.295,0,1,0,0,0.433,0.571,0.571,0.429,0,0 +0.667,0.301,0.301,0,1,0,0,0.337,0.581,0.581,0.484,0,0 +0.667,0.301,0.301,0,0.9,0,0,0.337,0.581,0.581,0.234,0,0.488 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0.234,0,0.366 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.122 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.244 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.488 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.122 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0.5,0,0.293,0.601,0.601,0,0.369,0.122 +0.667,0.269,0.269,0,0,1,0,0.293,0.601,0.601,0,0,0 +1,0.378,0.378,0,0,1,0,0.311,0.669,0.669,0,0.459,0 +1,0.378,0.378,0,0,0.3,0,0.311,0.669,0.669,0,0.369,0 +1,0.378,0.378,0,0,0,1,0.311,0.669,0.669,0,0.73,0 +1,0.379,0.379,0,0,0,0.4,0.344,0.654,0.654,0,0.584,0 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0.433,0.244 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0.309,0.122 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0.296,0 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0,0 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0,0.244 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.366 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.122 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.408,0 +0,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.223,0 +0.333,0.309,0.309,0,0,1,0,0.42,0.558,0.558,0,0.249,0.122 +0.333,0.309,0.309,0,0,1,0,0.42,0.558,0.558,0,0.0386,0 +0.333,0.309,0.309,0,0,0.2,0.1,0.42,0.558,0.558,0,0.223,0.244 +0.333,0.309,0.309,0,0,0,1,0.42,0.558,0.558,0,0,0 +0.333,0.335,0.335,0,0,0,0.3,0.434,0.543,0.543,0,0.21,0 +0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0.296,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.172 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.15 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.336 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0672 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.172 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.294 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.61 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.366 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.488 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.366 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0.3,0,0,0,0.374,0.631,0.631,0,0,0.532 +1,0.417,0.417,1,0,0,0,0.433,0.713,0.713,0,0,0.299 +1,0.417,0.417,0.2,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0.3,0,0,0,0.478,0.67,0.67,0,0,0.244 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.655,0.655,1,0.5,0,0,0.699,0.788,0.788,0.413,0,0 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0.429,0,0 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0.658,0,0 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0.516,0,0 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0,0,0.366 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0,0,0 +1,0.829,0.829,1,0.4,0,0,0.743,0.743,0.743,0.353,0,0 +1,0.829,0.829,0.7,0,0,0,0.743,0.743,0.743,0.457,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.451,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.457,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.353,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.418,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.397,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.418,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.244 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.156 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.127 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.366 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.366 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.488 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0.8,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0.2,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.488 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.122 +0.333,0.2,0.2,0.8,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.2,0.2,1,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.453,0.453,0.2,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.174 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.154 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.244 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.157 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.0629 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.244 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.167 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.343 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.137 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.522,0,0.212 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.277,0,0 +0.333,0.172,0.172,0,1,0,0,0.346,0.518,0.518,0.234,0,0 +0.333,0.172,0.172,0.3,1,0,0,0.346,0.518,0.518,0.234,0,0 +0.333,0.172,0.172,1,1,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,1,0.4,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0.2,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.138 +1,0.501,0.501,0.3,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,1,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,1,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,1,0,0,0,0.588,0.773,0.773,0.462,0,0 +1,0.501,0.501,1,1,0,0,0.588,0.773,0.773,0.397,0,0 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0.44,0,0 +1,0.655,0.655,1,1,0,0,0.699,0.788,0.788,0.348,0,0 +1,0.655,0.655,0.2,0.4,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.366 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.122 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.244 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.488 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.122 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.244 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.249,0 +1,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.481,0 +1,0.0798,0.0798,0,0,1,0,0.305,0.474,0.474,0,0.481,0 +1,0.0798,0.0798,0,0,1,0,0.305,0.474,0.474,0,0.348,0 +1,0.0798,0.0798,0,0,0.7,0,0.305,0.474,0.474,0,0.296,0 +1,0.11,0.11,0,0,0,0.6,0.352,0.482,0.482,0,0.236,0.203 +1,0.11,0.11,0,0,0,1,0.352,0.482,0.482,0,0.369,0 +1,0.11,0.11,0,0,0,1,0.352,0.482,0.482,0,0,0 +1,0.236,0.236,0,0,0,1,0.404,0.522,0.522,0,0.112,0.133 +1,0.236,0.236,0,0,0,0.6,0.404,0.522,0.522,0,0.185,0.133 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0.176,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0.258,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0.258,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0.348,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.309,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.468,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.223,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.137,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.0987,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.348,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0.618,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0.0386,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0.519,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0.21,0.122 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.244 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0.69,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0.486,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.164 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.168 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.168 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.263 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.172 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0688 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.105 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.244 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.366 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0.8,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0.122 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.501,0.501,1,0,0,0,0.588,0.773,0.773,0,0,0.122 +1,0.655,0.655,1,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0.7,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.488 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.488 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.366 +1,0.829,0.829,0,0,0.5,0,0.743,0.743,0.743,0,0.249,0.244 +1,0.829,0.829,0,0,1,0,0.743,0.743,0.743,0,0.395,0.122 +1,0.569,0.569,0,0,1,0,0.581,0.65,0.65,0,0.236,0 +1,0.569,0.569,0,0,1,0,0.581,0.65,0.65,0,0.296,0 +1,0.569,0.569,0,0,0.7,0,0.581,0.65,0.65,0,0,0 +1,0.62,0.62,0,0,0,0.6,0.611,0.621,0.621,0,0.283,0 +1,0.62,0.62,0,0,0,1,0.611,0.621,0.621,0,0.348,0.488 +1,0.62,0.62,0,0,0,1,0.611,0.621,0.621,0,0,0.122 +1,0.62,0.62,0,0,0,1,0.611,0.621,0.621,0,0.506,0 +1,0.62,0.62,0,0,0,0.6,0.611,0.621,0.621,0,0.249,0.122 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.244 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.073,0.353 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.0858,0.212 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.476,0.244 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.155,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.309,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.249,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.309,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.296,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.168 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.168 +1,0.236,0.236,0.8,0,0,0,0.404,0.522,0.522,0,0,0 +1,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0 +1,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0 +1,0.417,0.417,1,0,0,0,0.521,0.624,0.624,0,0,0.264 +1,0.417,0.417,0.7,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.0658 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.0987 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.488 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.244 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.732 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.244 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0.3,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,1,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0.7,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.366 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.488 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.122 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.488 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.488 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.488 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.571,0,0 +1,0.905,0.905,0,1,0,0,0.788,0.698,0.698,0.5,0,0.122 +1,0.821,0.821,0,1,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,1,0,0,0.765,0.669,0.669,0.5,0,0 +1,0.821,0.821,0,1,0,0,0.765,0.669,0.669,0.554,0,0.244 +1,0.821,0.821,0,0.4,0,0,0.765,0.669,0.669,0,0,0.244 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0.315,0,0.169 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0.424,0,0.19 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0.217,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0.217,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0.342,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.122 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.354 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0708 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.159 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.323 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.647 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.127 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.372 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.176 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.246 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.276 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.122 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0694 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.139 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.412 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.278 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.244 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.366 +0.333,0.159,0.159,0.8,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0.7,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0.5,0,0.588,0.773,0.773,0,0.283,0 +1,0.501,0.501,0,0,0.9,0,0.588,0.773,0.773,0,0.361,0.122 +0.667,0.35,0.35,0,0,0,0.4,0.478,0.67,0.67,0,0.0858,0 +0.667,0.35,0.35,0,0,0,1,0.478,0.67,0.67,0,0.249,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0.575,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0.391,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0.27,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0.223,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0.309,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0.395,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.244 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.366 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.488 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.122 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.139 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.142 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.199 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0994 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.122 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.244 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.202 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.136 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.102 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +1,0.382,0.382,0,0,0,0,0.266,0.669,0.669,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +1,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +1,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +1,0.269,0.269,0,0,0.5,0,0.315,0.591,0.591,0,0.0258,0.244 +0.667,0.159,0.159,0,0,0.9,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0.4,0.315,0.591,0.591,0,0.283,0 +0.667,0.269,0.269,0,0,0,1,0.315,0.591,0.591,0,0.408,0 +0.667,0.269,0.269,0,0,0,1,0.315,0.591,0.591,0,0,0 +1,0.387,0.387,0,0,0,0.4,0.355,0.684,0.684,0,0.504,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0.457,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0.309,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0.0601,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0.0386,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0.197,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0.0386,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0.309,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0.258,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0.236,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0.483,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0.582,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0.369,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.44,0,0 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0.375,0,0 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0.337,0,0 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0.9,0.5,0,0.743,0.743,0.743,0,0.0386,0 +1,0.829,0.829,0,0,1,0,0.743,0.743,0.743,0,0,0.244 +1,0.829,0.829,0,0,1,0,0.743,0.743,0.743,0,0.506,0 +1,0.829,0.829,0,0,0.3,0,0.743,0.743,0.743,0,0.382,0 +1,0.829,0.829,0,0,0,1,0.743,0.743,0.743,0,0.345,0 +1,0.905,0.905,0,0,0,1,0.788,0.698,0.698,0,0.135,0 +1,0.905,0.905,0,0,0,1,0.788,0.698,0.698,0,0.309,0.122 +1,0.905,0.905,0,0,0,1,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0.2,0.788,0.698,0.698,0,0.309,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.348,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.545,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.369,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.545,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.0386,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0.5,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0.268,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0.421,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.691,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.322,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.258,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.361,0.244 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.309,0.122 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.14 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0296 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.118 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.143,0.143,0.8,0,0,0,0.331,0.493,0.493,0,0,0.344 +0.667,0.143,0.143,0.7,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.488 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.165 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0992 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.238 +0.333,0.172,0.172,0.8,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0.7,0,0,0,0.316,0.548,0.548,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.244 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.244 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.321 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.304 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.283 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.0668 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.356 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.122 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.122 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.278 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.164 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.263 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.286 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.347 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0.455 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.0706 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.114 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.297 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.28 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.244 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.198 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.171 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0683 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.467 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.069 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,0.8,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.162,0.162,1,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.274,0.274,1,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0.7,0,0.5,0,0.374,0.631,0.631,0,0.309,0 +0.667,0.294,0.294,0,0,0.9,0,0.374,0.631,0.631,0,0,0 +0.667,0.294,0.294,0,0,0,0.4,0.374,0.631,0.631,0,0.343,0 +0.667,0.294,0.294,0,0,0,1,0.374,0.631,0.631,0,0.361,0 +0.667,0.294,0.294,0,0,0,1,0.374,0.631,0.631,0,0.258,0 +0.667,0.35,0.35,0,0,0,1,0.478,0.67,0.67,0,0.494,0 +0.667,0.35,0.35,0,0,0,0.8,0.478,0.67,0.67,0,0.481,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0.0386,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0.283,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0.309,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.244 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.244 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.488 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.177 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.476 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0354 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.244 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.301 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.189 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.122 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.655 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.344 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.122 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.347 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0.478,0,0 +0.667,0.143,0.143,0,1,0,0,0.331,0.493,0.493,0.473,0,0 +0.667,0.143,0.143,0,1,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.143,0.143,0,1,0,0,0.331,0.493,0.493,0.516,0,0 +0.667,0.143,0.143,0,1,0,0,0.331,0.493,0.493,0.549,0,0 +0.667,0.172,0.172,0,0.4,0,0,0.346,0.518,0.518,0.353,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.174,0.174,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,1,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.174,0.174,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.174,0.174,0.7,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.122 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.244 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.122 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.366 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.244 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.543,0,0 +1,0.655,0.655,0,1,0,0,0.699,0.788,0.788,0.38,0,0 +0.667,0.569,0.569,0,1,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.569,0.569,0,1,0,0,0.581,0.65,0.65,0.397,0,0 +0.667,0.569,0.569,0,1,0,0,0.581,0.65,0.65,0.375,0,0.244 +0.667,0.569,0.569,0,0.4,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.122 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.244 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.122 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.244 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.122 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0887 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.234 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.1 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0647 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.162 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.171 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.274 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0629 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.0944 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.132 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.492 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.161 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0.7,0,0.337,0.58,0.58,0,0.159,0 +1,0.452,0.452,0,0,1,0,0.376,0.637,0.637,0,0.644,0.0659 +1,0.452,0.452,0,0,1,0,0.376,0.637,0.637,0,0,0.264 +1,0.452,0.452,0,0,1,0,0.376,0.637,0.637,0,0.309,0 +1,0.456,0.456,0,0,0.5,0,0.254,0.637,0.637,0,0.395,0 +1,0.456,0.456,0,0,0,0.8,0.254,0.637,0.637,0,0.592,0.122 +1,0.456,0.456,0,0,0,1,0.254,0.637,0.637,0,0.468,0.229 +1,0.456,0.456,0,0,0,1,0.254,0.637,0.637,0,0.275,0.155 +1,0.456,0.456,0,0,0,1,0.254,0.637,0.637,0,0.27,0.122 +0.667,0.321,0.321,0,0,0,1,0.255,0.58,0.58,0,0.27,0.366 +0.667,0.312,0.312,0,0,0,1,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0.4,0.263,0.58,0.58,0,0.421,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0.468,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0.073,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0.433,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0685 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.24 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.366 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.366 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.365 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.157 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.122 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.244 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0.5,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0.244 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0.61 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0.4,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0692 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.33 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.263 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.35 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.244 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.2,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.249,0 +1,0.0495,0.0495,0,0,0.2,0.1,0.258,0.465,0.465,0,0.369,0 +1,0.147,0.147,0,0,0,1,0.33,0.493,0.493,0,0,0.069 +1,0.147,0.147,0,0,0,0.4,0.33,0.493,0.493,0,0.335,0.345 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0.309,0 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0 +1,0.433,0.433,1,0,0,0,0.52,0.622,0.622,0,0,0 +1,0.433,0.433,1,0,0,0,0.52,0.622,0.622,0,0,0.353 +0.667,0.305,0.305,1,0,0,0,0.432,0.57,0.57,0,0,0.0706 +0.667,0.305,0.305,1,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,1,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.318,0.318,1,0,0,0,0.337,0.58,0.58,0,0,0.0652 +0.667,0.318,0.318,1,0,0,0,0.337,0.58,0.58,0,0,0.228 +0.667,0.318,0.318,1,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.318,0.318,0.2,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.221 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.0671 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.268 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.0704 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.211 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.0588 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.0294 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.224 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0.142 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.063 +0.667,0.289,0.289,1,0,0,0,0.292,0.6,0.6,0,0,0.158 +0.667,0.289,0.289,0.6,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.122 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.244 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.244 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.122 +1,0.946,0.946,0,0.2,0,0,0.697,0.785,0.785,0.315,0,0.366 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.435,0,0.182 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.63,0,0.121 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.326,0,0.193 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0.5,0,0,0.741,0.741,0.741,0.315,0,0.122 +1,0.919,0.919,0,0.2,0,0,0.741,0.741,0.741,0.397,0,0 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.592,0,0.054 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.31,0,0.149 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,1,0,0,0.785,0.696,0.696,0.19,0,0 +1,0.747,0.747,0,0.5,0,0,0.785,0.696,0.696,0.19,0,0.282 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.489,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.484,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.315,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.461 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0677 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.838 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.189 +0.667,0.175,0.175,0.3,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.667,0.292,0.292,0.3,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.488 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.168 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0671 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.122 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.244 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.366 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.249,0.249,0,0,0,0,0.553,0.533,0.533,0,0,0 +1,0.249,0.249,0,0,0,0,0.553,0.533,0.533,0,0,0 +1,0.249,0.249,0,0,0,0,0.553,0.533,0.533,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0.5,0,0.255,0.58,0.58,0,0.249,0 +0.667,0.321,0.321,0,0,1,0,0.255,0.58,0.58,0,0.348,0 +0.667,0.321,0.321,0,0,1,0,0.255,0.58,0.58,0,0.361,0 +0.667,0.321,0.321,0.3,0,0.3,0,0.255,0.58,0.58,0,0.0858,0 +0.667,0.321,0.321,1,0,0,1,0.255,0.58,0.58,0,0,0 +0.667,0.312,0.312,1,0,0,0.5,0.263,0.58,0.58,0,0.283,0 +0.667,0.312,0.312,1,0,0,0,0.263,0.58,0.58,0,0.361,0 +0.667,0.312,0.312,1,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0.6,0,0,0,0.263,0.58,0.58,0,0.0386,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.3,0.3,0,0,1,0,0.27,0.59,0.59,0,0.27,0 +0.667,0.3,0.3,0,0,0.4,0,0.27,0.59,0.59,0,0.0258,0 +0.667,0.3,0.3,0,0,0,0.9,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,1,0.27,0.59,0.59,0,0.27,0 +0.667,0.3,0.3,0,0,0,1,0.27,0.59,0.59,0,0.433,0 +0.667,0.3,0.3,0,0,0,1,0.27,0.59,0.59,0,0,0 +0.667,0.292,0.292,0,0,0,0.7,0.263,0.6,0.6,0,0.21,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0.236,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0.446,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0.506,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.249,0 +0.667,0.289,0.289,0.3,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,1,0,0,0,0.292,0.6,0.6,0,0,0.122 +0.667,0.289,0.289,1,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0.9,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0858 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.244 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.315 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0.386,0,0.159 +0.667,0.647,0.647,0,1,0,0,0.55,0.679,0.679,0.533,0,0.186 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0.5,0,0.122 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0.321,0,0.144 +0.667,0.629,0.629,0,0.7,0,0,0.58,0.649,0.649,0.413,0,0 +0.667,0.629,0.629,0.3,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,1,0,0,0,0.58,0.649,0.649,0,0,0.244 +0.667,0.515,0.515,1,0,0,0,0.609,0.619,0.619,0,0,0.122 +0.667,0.515,0.515,1,0,0,0,0.609,0.619,0.619,0,0,0.122 +0.667,0.515,0.515,1,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0.9,0,0,0,0.763,0.667,0.667,0,0,0.25 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.224 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.556 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.126 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.126 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.189 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0.7,0,0.305,0.473,0.473,0,0.21,0 +1,0.0816,0.0816,0,0,0.7,0,0.305,0.473,0.473,0,0,0.122 +1,0.0816,0.0816,0,0,0,0.6,0.305,0.473,0.473,0,0.618,0.244 +1,0.0816,0.0816,0,0,0,1,0.305,0.473,0.473,0,0.185,0.122 +1,0.245,0.245,0,0,0,1,0.403,0.521,0.521,0,0.704,0 +1,0.245,0.245,0,0,0,1,0.403,0.521,0.521,0,0.395,0 +1,0.245,0.245,0,0,0,1,0.403,0.521,0.521,0,0.249,0 +1,0.245,0.245,0,0,0,1,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,1,0,0,0.6,0.403,0.521,0.521,0,0.605,0 +1,0.245,0.245,0.6,0,0,0,0.403,0.521,0.521,0,0.0987,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.132 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.0698 +0.667,0.184,0.184,1,0,0,0,0.297,0.523,0.523,0,0,0.349 +0.667,0.184,0.184,0.6,0,0,0,0.297,0.523,0.523,0,0,0.14 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.122 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.122 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.122 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.0662 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.321 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.0643 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.193 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.645 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.366 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.113 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.465 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0988 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.103 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.333,0.194,0.194,0,0,0.7,0,0.29,0.537,0.537,0,0.0601,0 +0.333,0.237,0.237,0,0,1,0,0.316,0.547,0.547,0,0,0.489 +0.333,0.237,0.237,1,0,1,0,0.316,0.547,0.547,0,0,0.214 +0.667,0.425,0.425,1,0,1,0,0.373,0.629,0.629,0,0,0 +1,0.612,0.612,1,0,0.5,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0.8,0.431,0.711,0.711,0,0,0.244 +1,0.612,0.612,0.9,0,0,1,0.431,0.711,0.711,0,0,0.214 +1,0.804,0.804,0,0,0,1,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0.3,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0.2,0,0,0.586,0.77,0.77,0.342,0,0 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.56,0,0.3 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.364,0,0 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.565,0,0 +1,0.946,0.946,0,0.5,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.244 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.066 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.066 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.244 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.245 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.349 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.31 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.259 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0646 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.194 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.24 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.119 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0.9,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.488 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.122 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.122 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.122 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.366 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.235 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.445 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.211 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0327 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.327 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0.2,0,0,0.297,0.523,0.523,0.37,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.457,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.429,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.397,0,0 +0.333,0.185,0.185,0,0.5,0,0,0.257,0.523,0.523,0.549,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0.467,0,0.176 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.0696 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.104 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.366 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,1,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,1,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0.2,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0.2,0,0,0.373,0.629,0.629,0.353,0,0 +0.667,0.553,0.553,0,1,0,0,0.477,0.669,0.669,0.484,0,0 +0.667,0.553,0.553,0,1,0,0,0.477,0.669,0.669,0.386,0,0 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0,0,0 +0.667,0.553,0.553,0,1,0,0,0.477,0.669,0.669,0.293,0,0.244 +0.667,0.553,0.553,0,0.5,0,0,0.477,0.669,0.669,0.446,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0.451,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.366 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.488 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0.226,0,0 +1,0.946,0.946,0,0.7,0,0,0.697,0.785,0.785,0.226,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.549,0,0.117 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.462,0,0 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.538,0,0.122 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.533,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0.207,0,0.502 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0.207,0,0.672 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.61 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.699 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.122 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.366 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.366 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.242 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.276 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0678 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0339 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.231 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.132 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.213 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0.6,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0.2,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,1,0,0.26,0.532,0.532,0,0.21,0 +0.333,0.171,0.171,0,0,0.2,0.1,0.26,0.532,0.532,0,0.421,0 +0.333,0.169,0.169,0,0,0,1,0.275,0.532,0.532,0,0.532,0 +0.333,0.169,0.169,0,0,0,1,0.275,0.532,0.532,0,0,0.122 +0.333,0.169,0.169,0,0,0,1,0.275,0.532,0.532,0,0.283,0.122 +0.333,0.169,0.169,0,0,0,1,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0.5,0.275,0.532,0.532,0,0.678,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0.283,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0.0386,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0.459,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0.309,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0.433,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0.0515,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0.258,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0.185,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0.408,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0.0987,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0.433,0 +0.333,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0.223,0 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0.545,0.122 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0.618,0 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.244 +0.667,0.553,0.553,0.5,0,0,0,0.477,0.669,0.669,0,0.506,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.369,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0.249,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0.223,0.244 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0.0601,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0.0386,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0.0601,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0.395,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0.166,0,0.244 +1,0.946,0.946,0,0.7,0,0,0.697,0.785,0.785,0.166,0.0386,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.348,0.27,0 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.348,0,0.122 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.511,0.159,0 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.446,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.366 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.244 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.426 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.333 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0671 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.0335 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.207,0,0 +0.667,0.0495,0.0495,1,0.7,0,0,0.258,0.465,0.465,0.207,0,0 +0.667,0.0495,0.0495,1,1,0,0,0.258,0.465,0.465,0.37,0,0 +0.667,0.184,0.184,1,1,0,0,0.297,0.523,0.523,0.457,0,0 +0.667,0.184,0.184,1,1,0,0,0.297,0.523,0.523,0.424,0,0 +0.667,0.184,0.184,1,1,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,1,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,1,0,0,0,0.297,0.523,0.523,0,0,0.122 +0.667,0.184,0.184,1,0,0,0,0.297,0.523,0.523,0,0,0.61 +0.667,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.667,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.312,0.312,0.8,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.169,0.169,1,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0.2,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.069 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.172 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.152 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0305 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.425,0.425,0.5,0,0,0,0.373,0.629,0.629,0,0,0.223 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0,0.398 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0,0.244 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0.4,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0.2,0,0,0.477,0.669,0.669,0.337,0,0 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.375,0,0.244 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.418,0,0.122 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.375,0,0 +1,0.946,0.946,0,0.5,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.366 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.366 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.244 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.126 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0874 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0291 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.366 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.244 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.624 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.142 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.343 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.172 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.178 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.161 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.332 +0.333,0.185,0.185,0.3,0,0,0,0.257,0.523,0.523,0,0,0.133 +0.333,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0.488 +0.333,0.185,0.185,1,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0.366 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.175,0.175,1,0,1,0,0.264,0.528,0.528,0,0.429,0 +0.333,0.175,0.175,0.2,0,1,0,0.264,0.528,0.528,0,0.0258,0 +0.333,0.175,0.175,0,0,0.8,0,0.264,0.528,0.528,0,0.0987,0 +0.333,0.175,0.175,0,0,0,0.5,0.264,0.528,0.528,0,0.361,0 +0.333,0.175,0.175,0,0,0,1,0.264,0.528,0.528,0,0.468,0.122 +0.667,0.3,0.3,0,0,0,1,0.27,0.59,0.59,0,0,0 +0.667,0.292,0.292,0,0,0,1,0.263,0.6,0.6,0,0.0987,0 +0.667,0.292,0.292,0,0,0,1,0.263,0.6,0.6,0,0.159,0 +0.667,0.292,0.292,0,0,0,1,0.263,0.6,0.6,0,0.335,0 +0.667,0.292,0.292,0,0,0,0.7,0.263,0.6,0.6,0,0.249,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0.373,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.468,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.322,0.366 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.258,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.395,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.386,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.296,0.122 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0.0258,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0.361,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.488 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.237,0.237,0.3,0,0,0,0.316,0.547,0.547,0,0,0.244 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0.122 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +1,0.553,0.553,0.6,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.244 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.244 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.244 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.488 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.135 +1,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.165 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.165 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.122 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.122 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.186 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.45 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.206 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.218 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0.625,0,0.122 +0.667,0.338,0.338,0,1,0,0,0.322,0.609,0.609,0.473,0,0 +0.667,0.425,0.425,0,1,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,1,0,0,0.373,0.629,0.629,0.543,0,0.165 +0.667,0.425,0.425,0,1,0,0,0.373,0.629,0.629,0.429,0,0.352 +0.667,0.425,0.425,0,0.7,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0.527,0,0.122 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0.527,0,0.0909 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.0303 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0.435,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0.364,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0.326,0,0 +1,0.553,0.553,0.3,0,0,0,0.477,0.669,0.669,0,0,0.732 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0.244 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0.9,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.244 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.366 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.244 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.556 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.156 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0624 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0905 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.0678 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.136 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.229 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.342 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.0691 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.346 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.178 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.0593 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.119 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.233 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.266 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0.6,0,0,0,0.345,0.518,0.518,0,0,0.218 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.237 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.47 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.227 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0.242,0,0.0972 +0.667,0.3,0.3,0,0.7,0,0,0.27,0.59,0.59,0.242,0,0.122 +0.667,0.3,0.3,0,1,0,0,0.27,0.59,0.59,0.587,0,0 +0.667,0.292,0.292,0,1,0,0,0.263,0.6,0.6,0.598,0,0.0698 +0.667,0.292,0.292,0,1,0,0,0.263,0.6,0.6,0.37,0,0.349 +0.667,0.292,0.292,0,1,0,0,0.263,0.6,0.6,0.364,0,0.0698 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0.315,0,0.122 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.475 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.066 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.122 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,1,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0.6,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.122 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.122 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.61 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.366 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0.277,0,0.122 +0.667,0.647,0.647,0,0.7,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,1,0,0,0.55,0.679,0.679,0.457,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.353,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.625,0,0.122 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.598,0,0 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0.6,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.244 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +1,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +1,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.122 +1,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,1,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,1,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,1,0,0.2,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0.2,0,1,0,0.403,0.521,0.521,0,0.223,0 +1,0.245,0.245,0,0,0.2,0.1,0.403,0.521,0.521,0,0.0386,0 +1,0.433,0.433,0,0,0,1,0.52,0.622,0.622,0,0.21,0 +1,0.433,0.433,0,0,0,0.4,0.52,0.622,0.622,0,0.631,0 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0.296,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0.545,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0.172,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.232 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.0695 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.243 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.105 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.315 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.366 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.244 +0.333,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0.2,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.223 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.0638 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.582 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.366 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.0687 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.397 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.244 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.245 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.035 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.226 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.0647 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.0643 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.193 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.184,0.184,1,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,1,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0.9,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.0625 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.0937 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,1,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,1,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.482,0.482,1,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,1,0,0,0,0.354,0.681,0.681,0,0,0.122 +1,0.482,0.482,0.9,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.122 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0.8,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.287 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.218 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.307 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.222 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.229 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.277 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.228 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.244 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.198 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0.2,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.122 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.244 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.366 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.366 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.157 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.366 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,1,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0.2,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.23 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.146 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.191 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.0631 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.126 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.225 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.28 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.366 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.366 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.366 +0.333,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0.6,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.122 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.174 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.244 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.366 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.473 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.399 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.366 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0673 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.269 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0.6,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.223 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.153 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.0612 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.264 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.172 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.137 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.199 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +1,0.3,0.3,0.3,0,0,0,0.27,0.59,0.59,0,0,0 +1,0.3,0.3,1,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.175,0.175,0.9,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.366 +0.667,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.122 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.122 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.244 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +1,0.421,0.421,0,0,0,0,0.343,0.652,0.652,0,0,0 +1,0.421,0.421,0,0,0,0,0.343,0.652,0.652,0.467,0,0 +1,0.421,0.421,0,1,0,0,0.343,0.652,0.652,0.413,0,0 +1,0.421,0.421,0,1,0,0,0.343,0.652,0.652,0,0,0 +1,0.421,0.421,0,1,0,0,0.343,0.652,0.652,0.516,0,0 +1,0.421,0.421,0,1,0,0,0.343,0.652,0.652,0,0,0 +1,0.482,0.482,0,0.7,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.122 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.244 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0.375,0,0 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.457,0,0.244 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.228,0,0.244 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.255,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.527,0,0.122 +1,0.946,0.946,0,0.7,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0.505,0,0.366 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0.429,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0.429,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0.342,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0.478,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0.342,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.478,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.549,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.153 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.061 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.189 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,0.3,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,1,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,0.3,0,0,0,0.345,0.518,0.518,0,0,0.184 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0.244 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0.244 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.366 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0.8,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0.8,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0.122 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0.122 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.244 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.244 +1,0.804,0.804,0,0.5,0,0,0.586,0.77,0.77,0.609,0,0.244 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.712,0,0 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.62,0,0.244 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.337,0,0.488 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0.8,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.488 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.366 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.244 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.61 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.366 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.366 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.493,0.493,0,0.5,0,0,0.652,0.593,0.593,0.234,0,0 +1,0.493,0.493,0,1,0,0,0.652,0.593,0.593,0.332,0,0 +1,0.493,0.493,0,1,0,0,0.652,0.593,0.593,0.489,0,0 +1,0.345,0.345,0,1,0,0,0.521,0.55,0.55,0.38,0,0 +1,0.345,0.345,0,1,0,0,0.521,0.55,0.55,0.495,0,0 +1,0.345,0.345,0,1,0,0,0.521,0.55,0.55,0,0,0 +1,0.116,0.116,0,0.8,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.675 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0.21 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0.122 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0.216 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0.313 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.0521 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.0681 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.238 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,1,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0.2,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.244 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.435 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.521 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.224 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.032 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0,0.244 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.0623 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.309 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.366 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.219 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.153 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.488 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.428 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.102 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0 +0.667,0.629,0.629,1,0,0,0,0.58,0.649,0.649,0,0,0.244 +0.667,0.629,0.629,0.1,0,0,0,0.58,0.649,0.649,0,0,0.122 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.366 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.122 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.122 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.145 +0.667,0.394,0.394,0,0,0.2,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,1,0,0.595,0.6,0.6,0,0.0515,0 +0.667,0.394,0.394,0,0,1,0,0.595,0.6,0.6,0,0.0858,0 +0.667,0.345,0.345,0,0,0.6,0,0.521,0.55,0.55,0,0,0.061 +0.667,0.345,0.345,0,0,0,0.7,0.521,0.55,0.55,0,0.0386,0.0916 +0.667,0.345,0.345,0,0,0,1,0.521,0.55,0.55,0,0.223,0 +0.667,0.345,0.345,0,0,0,1,0.521,0.55,0.55,0,0,0 +0.667,0.345,0.345,0,0,0,1,0.521,0.55,0.55,0,0,0.156 +0.667,0.197,0.197,0,0,0,1,0.389,0.508,0.508,0,0,0 +0.667,0.116,0.116,0,0,0,1,0.356,0.488,0.488,0,0,0 +0.667,0.116,0.116,0,0,0,0.5,0.356,0.488,0.488,0,0,0.122 +0.667,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.204 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0 +1,0.114,0.114,0.5,0,0,0,0.351,0.481,0.481,0,0,0 +1,0.245,0.245,1,0,0,0,0.403,0.521,0.521,0,0,0.0683 +1,0.245,0.245,1,0,0,0,0.403,0.521,0.521,0,0,0.205 +1,0.245,0.245,0.7,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.236 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.236 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.0665 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.0997 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.452,0.452,0,0,0,0,0.376,0.637,0.637,0,0,0.366 +1,0.452,0.452,0,0,0,0,0.376,0.637,0.637,0,0,0 +1,0.452,0.452,0,0,0,0,0.376,0.637,0.637,0,0,0.231 +1,0.452,0.452,0,0,0,0,0.376,0.637,0.637,0,0,0.221 +1,0.452,0.452,0,0,0,0,0.376,0.637,0.637,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.6,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0.7,0,0.29,0.537,0.537,0,0.408,0 +0.333,0.194,0.194,0,0,1,0,0.29,0.537,0.537,0,0.717,0 +0.333,0.194,0.194,0,0,1,0,0.29,0.537,0.537,0,0.27,0 +0.667,0.338,0.338,0,0,0.1,0.2,0.322,0.609,0.609,0,0.519,0 +0.667,0.425,0.425,0,0,0,1,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,1,0.373,0.629,0.629,0,0.249,0 +0.667,0.425,0.425,0,0,0,0.9,0.373,0.629,0.629,0,0.322,0.244 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.172,0.279 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.455,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.223,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.0987,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.233 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.133 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.195 +1,0.946,0.946,0.2,0,0,0,0.697,0.785,0.785,0,0,0.13 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.366 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0.7,0,0.741,0.741,0.741,0,0.283,0 +1,0.747,0.747,0,0,0.7,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0.6,0.785,0.696,0.696,0,0.494,0 +1,0.747,0.747,0,0,0,1,0.785,0.696,0.696,0,0.0258,0 +1,0.747,0.747,0,0,0,1,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,1,0.785,0.696,0.696,0,0.545,0.244 +1,0.747,0.747,0,0,0,1,0.785,0.696,0.696,0,0.348,0.736 +1,0.566,0.566,0,0,0,1,0.763,0.667,0.667,0,0.472,0.441 +1,0.566,0.566,0,0,0,0.6,0.763,0.667,0.667,0,0.498,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0.0129,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0.309,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0.0987,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0.558,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0.322,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0.0858,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0.348,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0.296,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0.21,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0.0258,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0.408,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.488 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0.742,0.366 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0.425,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0618 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0618 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.235 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.168 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.071 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.142 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.122 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0.283,0,0.244 +0.333,0.185,0.185,0,0.7,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.342,0,0.122 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.739,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.391,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.299,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.0653 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.294 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.305 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0674 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.169 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.144 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.366 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.244 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.366 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.366 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.122 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.228 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.155 +0.333,0.301,0.301,1,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,1,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,1,0,0,0,0.367,0.567,0.567,0,0,0.122 +0.333,0.301,0.301,0.2,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.333,0.348,0.348,0,0,0,0,0.404,0.572,0.572,0,0,0.122 +0.333,0.348,0.348,0,0,0,0,0.404,0.572,0.572,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.244 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.61 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.122 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.451,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.245 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.0699 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.063 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.063 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.122 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0962 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.224 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.129 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.258 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0.194 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.0324 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.366 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.61 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.0662 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.0994 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.232 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.232 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.366 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.366 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.423 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.574 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.16 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.0657 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.0657 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.244 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.122 +0.667,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +0.667,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.122 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.228 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0675 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.338 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.213 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0665 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.333 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.225 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0322 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0694 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.139 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.222 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.066 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.264 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.163 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0655 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.229 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0958 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.128 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.173 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.356 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.122 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.603 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.136 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.366 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.366 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.366 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.244 +0.667,0.647,0.647,0.5,0,0,0,0.55,0.679,0.679,0,0,0.122 +0.333,0.348,0.348,1,0,0,0,0.404,0.572,0.572,0,0,0 +0.333,0.348,0.348,0.1,0,0,0,0.404,0.572,0.572,0,0,0.122 +0.667,0.647,0.647,0,0.2,0,0,0.55,0.679,0.679,0.772,0,0 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0.625,0,0 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0.255,0,0.122 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0.255,0,0 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0,0,0.366 +0.667,0.629,0.629,0,0.5,0,0,0.58,0.649,0.649,0,0,0.366 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.366 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.122 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.294 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.44 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.142 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.244 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.488 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.488 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.247 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0353 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0651 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.26 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.206 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.165 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.198 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.213 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.118 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.164 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.0328 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.244 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.488 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.237,0.237,0.3,0,0,0,0.316,0.547,0.547,0,0,0.488 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0.122 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0.366 +0.667,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0.9,0.5,0,0,0.586,0.77,0.77,0.44,0,0 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.408,0,0.122 +1,0.804,0.804,0,1,0,0,0.586,0.77,0.77,0.418,0,0.122 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.511,0,0 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.177,0,0 +1,0.946,0.946,0,0.2,0,0,0.697,0.785,0.785,0.177,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0.429,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.172 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.244 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.188 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.13 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.0325 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0.5,0,0.257,0.523,0.523,0,0.309,0 +0.667,0.185,0.185,0,0,1,0,0.257,0.523,0.523,0,0,0 +0.667,0.312,0.312,0,0,1,0,0.263,0.58,0.58,0,0.605,0 +0.667,0.312,0.312,0,0,1,0,0.263,0.58,0.58,0,0.309,0 +0.667,0.312,0.312,0,0,0.7,0,0.263,0.58,0.58,0,0.258,0 +0.667,0.312,0.312,0,0,0,0.6,0.263,0.58,0.58,0,0.236,0 +0.667,0.312,0.312,0,0,0,0.9,0.263,0.58,0.58,0,0.309,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0.348,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.275,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.249,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.519,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.408,0.122 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.122 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.122 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.122 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.234 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.284 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.0969 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.244 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.128 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.2 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.255 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.122 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.122 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0.3,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,1,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,1,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.629,0.629,0.9,0,0,0,0.58,0.649,0.649,0,0,0.488 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.344 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.343 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.366 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.488 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.122 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.0686 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.172 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.218 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.0312 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.302 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.122 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.122 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,0.5,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,1,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,1,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.173,0.173,1,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.194,0.194,1,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,1,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.194,0.194,1,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.338,0.338,1,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,1,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,1,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0.0568 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0.0568 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.804,0.804,0.9,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.402 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.384 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0.5,0,0,0,0.55,0.679,0.679,0,0,0 +0.333,0.348,0.348,1,0,0,0,0.404,0.572,0.572,0,0,0.122 +0.333,0.348,0.348,1,0,0,0,0.404,0.572,0.572,0,0,0 +0.667,0.647,0.647,0.7,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.244 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.366 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.224 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.446 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.219 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.234 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0669 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.244 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.121 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.0941 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.157 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0.2,0,0,0.258,0.465,0.465,0.38,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.402,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.255,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.28,0,0 +0.333,0.184,0.184,0,1,0,0,0.297,0.523,0.523,0.28,0,0 +0.333,0.184,0.184,0,1,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,1,0,0,0.297,0.523,0.523,0.38,0,0 +0.333,0.184,0.184,0,0.1,0,0,0.297,0.523,0.523,0.397,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0.391,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0.424,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0.2,0,0,0.257,0.523,0.523,0.375,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0.223,0,0.244 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,1,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,1,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,1,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,1,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0.1,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.244 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.122 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0.2,0,0,0.316,0.547,0.547,0.609,0,0 +0.333,0.237,0.237,0,1,0,0,0.316,0.547,0.547,0.527,0,0.122 +0.333,0.237,0.237,0,1,0,0,0.316,0.547,0.547,0.62,0,0.122 +0.333,0.237,0.237,0,1,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.301,0.301,0,1,0,0,0.367,0.567,0.567,0.516,0,0.244 +0.333,0.301,0.301,0,1,0,0,0.367,0.567,0.567,0.505,0,0 +0.667,0.553,0.553,0,1,0,0,0.477,0.669,0.669,0.571,0,0.135 +1,0.804,0.804,0,0.1,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.122 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.103 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.214 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.171 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.366 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.229 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.342 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.313 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.173 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.244 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.139 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.0946 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.122 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.383 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0.064 +1,0.342,0.342,0,0,0,0,0.476,0.548,0.548,0,0,0 +1,0.342,0.342,0,0,0.7,0,0.476,0.548,0.548,0,0.382,0 +1,0.342,0.342,0,0,1,0,0.476,0.548,0.548,0,0,0.202 +1,0.342,0.342,0,0,1,0,0.476,0.548,0.548,0,0.249,0 +1,0.342,0.342,0,0,0.1,0.2,0.476,0.548,0.548,0,0.361,0 +1,0.433,0.433,0,0,0,1,0.52,0.622,0.622,0,0.657,0.0603 +1,0.433,0.433,0,0,0,1,0.52,0.622,0.622,0,0,0.0905 +0.667,0.305,0.305,0,0,0,1,0.432,0.57,0.57,0,0.27,0 +0.667,0.305,0.305,0,0,0,1,0.432,0.57,0.57,0,0.361,0.366 +0.667,0.305,0.305,0,0,0,0.4,0.432,0.57,0.57,0,0.335,0 +0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0.0987,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.494,0.366 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.0987,0.854 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.382,0.122 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.395,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.223,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0.309,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0.618,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0.541,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0.618,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0.361,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0.283,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0.309,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0.876,0.122 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0.258,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0.249,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0.309,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.122 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.366 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0.2,0,0,0.29,0.537,0.537,0.375,0,0 +0.333,0.237,0.237,0,1,0,0,0.316,0.547,0.547,0.304,0,0 +0.333,0.237,0.237,0,1,0,0,0.316,0.547,0.547,0.467,0,0.122 +0.333,0.237,0.237,0.5,1,0,0,0.316,0.547,0.547,0.277,0,0.366 +0.667,0.425,0.425,1,1,0,0,0.373,0.629,0.629,0.277,0,0 +0.667,0.425,0.425,0.1,1,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.425,0.425,0,1,0,0,0.373,0.629,0.629,0,0,0.122 +0.667,0.553,0.553,0,0.1,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.647,0.647,0,0.2,0,0,0.55,0.679,0.679,0.31,0,0.244 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0.337,0,0.105 +0.667,0.629,0.629,0,1,0,0,0.58,0.649,0.649,0.429,0,0.122 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.299,0,0.122 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.549,0,0 +1,0.747,0.747,0,0.1,0,0,0.785,0.696,0.696,0.598,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.516,0,0.244 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.359,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.435,0,0.122 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.348,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.244 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.122 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0.9,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.366 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.244 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.366 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.122 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.122 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.244 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.122 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.122 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0.366 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0.366 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,1,0.2,0,0,0.697,0.785,0.785,0.359,0,0 +1,0.919,0.919,1,1,0,0,0.741,0.741,0.741,0.31,0,0 +1,0.919,0.919,1,1,0,0,0.741,0.741,0.741,0.386,0,0 +1,0.919,0.919,1,1,0,0,0.741,0.741,0.741,0.299,0,0 +1,0.919,0.919,1,1,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,1,0.5,0,0,0.741,0.741,0.741,0.375,0,0 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0.359,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0.296,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0.296,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0.391,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0.505,0,0.244 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0.348,0,0 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,1,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0.7,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.186 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.225 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.366 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.241 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.103 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0627 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.125 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.116 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.122 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0.217,0,0 +0.333,0.181,0.181,0,0.7,0,0,0.26,0.523,0.523,0.217,0,0 +0.333,0.181,0.181,0,1,0,0,0.26,0.523,0.523,0.283,0,0 +0.333,0.181,0.181,0,1,0,0,0.26,0.523,0.523,0.511,0,0 +0.333,0.181,0.181,0,1,0,0,0.26,0.523,0.523,0.489,0,0 +0.333,0.181,0.181,0,1,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,1,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0.6,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.232 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.166 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.122 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0.2,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.122 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.122 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.366 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.13 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.366 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0698 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.227 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.241 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.332 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.24 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.155 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.287 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.176 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.0352 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.168 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0.3,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,1,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.183,0.183,0.3,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.244 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.366 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.244 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.244 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.366 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0.122 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +1,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +1,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.244 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.732 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.332 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0996 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.169 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0674 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.117 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0.138 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0.167 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0.189 +1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.236 +1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.161 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.244 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.195 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.244 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.244 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0.3,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,1,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,1,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,1,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,1,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.116,0.116,1,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,1,0,0,0,0.405,0.535,0.535,0,0,0.244 +1,0.116,0.116,0.4,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.481 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.317 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.0327 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.294 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.16 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.16 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.156 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.0312 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.323,0.323,0.8,0,0,0,0.419,0.635,0.635,0,0,0.457 +0.333,0.323,0.323,1,0,0,0,0.419,0.635,0.635,0,0,0.0508 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.169 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.0678 +1,1,1,0.9,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.189 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.115 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.488 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.366 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.386,0.386,0.3,0,0,0,0.729,0.717,0.717,0,0,0.122 +0.667,0.386,0.386,1,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.386,0.386,1,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,1,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0.25,0,0.61 +1,0.196,0.196,0,1,0,0,0.447,0.56,0.56,0.495,0,0.366 +1,0.196,0.196,0,1,0,0,0.447,0.56,0.56,0.168,0,0.122 +1,0.196,0.196,0,1,0,0,0.447,0.56,0.56,0.168,0,0.122 +1,0.196,0.196,0,1,0,0,0.447,0.56,0.56,0.288,0,0 +1,0.116,0.116,0,0.9,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0.38,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0.418,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0.462,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0.418,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0.462,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0.5,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.8,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.153 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0306 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.122 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0.3,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.33,0.33,0.3,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.122 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.244 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.366 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,0.8,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0.8,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.366 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.244 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0.5,0,0,0.673,0.817,0.817,0.533,0,0.289 +0.667,0.683,0.683,0,1,0,0,0.673,0.817,0.817,0.495,0,0.366 +0.667,0.683,0.683,0,1,0,0,0.673,0.817,0.817,0.413,0,0.244 +0.667,0.638,0.638,0,1,0,0,0.711,0.78,0.78,0.467,0,0 +0.667,0.638,0.638,0,1,0,0,0.711,0.78,0.78,0.258,0,0 +0.667,0.638,0.638,0,1,0,0,0.711,0.78,0.78,0.258,0,0.244 +0.667,0.638,0.638,0,1,0,0,0.711,0.78,0.78,0.299,0,0.366 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.272,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.293,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0.44,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0.582,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0.364,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.244 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.257 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.187 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.244 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.134 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.302 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0.337,0,0 +0.667,0.181,0.181,0,1,0,0,0.391,0.572,0.572,0.484,0,0.122 +0.667,0.181,0.181,0,1,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,1,0,0,0.391,0.572,0.572,0.348,0,0 +0.667,0.181,0.181,0,1,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.19,0.19,0,0.9,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.164 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.0654 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.347 +0.667,0.337,0.337,0.3,0,0,0,0.3,0.692,0.692,0,0,0.0347 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0.552 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.278 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.488 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0.5,0,0,0.321,0.597,0.597,0.391,0,0 +0.333,0.204,0.204,0,1,0,0,0.321,0.597,0.597,0.326,0,0 +0.667,0.359,0.359,0,1,0,0,0.384,0.73,0.73,0.337,0,0 +0.667,0.457,0.457,0,1,0,0,0.449,0.755,0.755,0.37,0,0 +0.667,0.457,0.457,0,1,0,0,0.449,0.755,0.755,0.649,0,0 +1,0.661,0.661,0,1,0,0,0.545,0.899,0.899,0.324,0,0 +1,0.661,0.661,0,1,0,0,0.545,0.899,0.899,0.326,0,0 +1,0.661,0.661,0.3,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0.1,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.154 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0615 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.335 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.266 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.277 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.031 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.488 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.244 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.254 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.122 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.345 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.322 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.173 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.18 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.116 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.0291 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.169 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.337 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.409 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.198 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.291 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.244 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.164 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.164 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.343 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.137 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.333 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.316 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0.3,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,1,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0.3,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.244 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.366 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.244 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.366 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.366 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0.5,0,0,0.58,0.805,0.805,0.505,0,0 +0.667,0.596,0.596,0,1,0,0,0.58,0.805,0.805,0.337,0,0.61 +0.667,0.596,0.596,0,1,0,0,0.58,0.805,0.805,0.484,0,0.366 +0.667,0.683,0.683,0,1,0,0,0.673,0.817,0.817,0.408,0,0 +0.667,0.683,0.683,0,1,0,0,0.673,0.817,0.817,0.312,0,0.244 +0.667,0.683,0.683,0,1,0,0,0.673,0.817,0.817,0.312,0,0.122 +0.667,0.683,0.683,0,1,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.244 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0.5,0,0.711,0.78,0.78,0,0.249,0 +0.667,0.638,0.638,0,0,1,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,1,0,0.711,0.78,0.78,0,0.309,0 +0.667,0.638,0.638,0,0,1,0,0.711,0.78,0.78,0,0.395,0 +0.667,0.638,0.638,0,0,0.9,0,0.711,0.78,0.78,0,0.124,0 +0.667,0.504,0.504,0,0,0,0.4,0.748,0.742,0.742,0,0.309,0 +0.667,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0,0.244 +0.667,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0,0.244 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0,0.366 +1,0.554,0.554,0,0,0,0.2,0.965,0.843,0.843,0,0,0.122 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.341 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0341 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.169 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.339 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.135 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.174 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0348 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.198 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.242 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.256 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.163 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.163 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.278 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.166 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0331 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.304 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.237 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.167 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.134 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.232 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.208 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.156 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.182 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.124 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.337 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.172 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.24 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.661 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.328 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.474 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.38 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.33 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.296 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.308 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.244 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.244 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.278 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.732,0.732,0,0,1,0,0.993,0.88,0.88,0,0.309,0 +1,0.732,0.732,0,0,0.4,0,0.993,0.88,0.88,0,0.309,0.122 +1,0.504,0.504,0,0,0,0.9,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0.0258,0 +1,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0.137,0 +1,0.504,0.504,0,0,0,1,0.748,0.742,0.742,0,0,0.122 +1,0.386,0.386,0,0,0,1,0.729,0.717,0.717,0,0.605,0 +1,0.386,0.386,0,0,0,1,0.729,0.717,0.717,0,0.361,0 +1,0.386,0.386,0,0,0,0.7,0.729,0.717,0.717,0,0.511,0.244 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0.309,0.366 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.212 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.165 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.033 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +1,0.193,0.193,0,0,1,0,0.279,0.579,0.579,0,0.519,0 +1,0.193,0.193,0,0,1,0,0.279,0.579,0.579,0,0.185,0 +1,0.193,0.193,0,0,0.9,0,0.279,0.579,0.579,0,0.382,0 +1,0.189,0.189,0,0,0,0.4,0.284,0.579,0.579,0,0,0 +1,0.189,0.189,0,0,0,1,0.284,0.579,0.579,0,0,0 +1,0.328,0.328,0,0,0,1,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,1,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,1,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,1,0.31,0.692,0.692,0,0,0.244 +1,0.449,0.449,0.8,0,0,1,0.35,0.824,0.824,0,0,0.195 +1,0.449,0.449,1,0,0,0.2,0.35,0.824,0.824,0,0,0.488 +1,0.449,0.449,1,0,0,0,0.35,0.824,0.824,0,0,0.244 +1,0.449,0.449,1,0,0,0,0.35,0.824,0.824,0,0,0 +1,0.449,0.449,1,0,0,0,0.35,0.824,0.824,0,0,0.176 +1,0.449,0.449,1,0,0,0,0.35,0.824,0.824,0,0,0.385 +1,0.436,0.436,1,0,0,0,0.336,0.843,0.843,0,0,0.244 +1,0.436,0.436,1,0,0,0,0.336,0.843,0.843,0,0,0.122 +1,0.436,0.436,1,0,0,0,0.336,0.843,0.843,0,0,0.205 +1,0.436,0.436,1,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.436,0.436,1,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.436,0.436,1,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.432,0.432,1,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.432,0.432,0.7,0,0,0,0.392,0.843,0.843,0,0,0.177 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.141 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.219 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.488 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.244 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.244 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.122 +0.333,0.323,0.323,0.3,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.366,0.366,1,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.366,0.366,1,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.366 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.244 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.333,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.333,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.488 +0.333,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.366 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.366 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.244 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.167 +0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.134 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.197 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.23 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.488 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.488 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.168 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.202 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.29 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0272 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0816 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.169 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0676 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.337 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.0337 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.167 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.167 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.303 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.488 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.366 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0322 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.258 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.244 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.332 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.0332 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.608 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.0309 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.52 +1,0.436,0.436,0,0,0,0,0.336,0.843,0.843,0,0,0.122 +1,0.436,0.436,0,0,0,0,0.336,0.843,0.843,0,0,0.122 +1,0.436,0.436,0,0,0,0,0.336,0.843,0.843,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0.183 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.355 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.071 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.299 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.283 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.188 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.329 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.0329 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.543 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.421 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.328 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.22 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.416 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.137 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.244 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.227 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.157 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0945 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.318 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.158 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0316 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.354 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.354 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.354 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0354 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.333 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0665 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.177 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.354 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.212 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.343 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.409 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.255 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.209 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.156 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.315 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.0327 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.693 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.122 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.244 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.244 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.117 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.244 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.173 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.104 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.508 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.101 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.202 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.257 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.366 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.244 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.366 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.272 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0.122 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0.3,0,0,0,0.545,0.899,0.899,0,0,0.122 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0.7,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0.3,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0.366 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0,0,0.488 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.554,0.554,1,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,1,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.554,0.554,1,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,1,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,1,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,1,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.342,0.342,1,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0.4,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0.609 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.351,0.351,0.3,0,0,0,0.601,0.693,0.693,0,0,0.329 +1,0.351,0.351,1,0,0,0,0.601,0.693,0.693,0,0,0.233 +1,0.444,0.444,0.3,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,1,0,0.3,0.692,0.692,0,0.296,0 +0.667,0.337,0.337,0,0,1,0,0.3,0.692,0.692,0,0.249,0 +0.667,0.337,0.337,0,0,0.9,0,0.3,0.692,0.692,0,0.605,0 +0.333,0.193,0.193,0,0,0,0.4,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,1,0.279,0.579,0.579,0,0.159,0 +0.333,0.193,0.193,0,0,0,1,0.279,0.579,0.579,0,0.249,0.244 +0.333,0.189,0.189,0,0,0,0.9,0.284,0.579,0.579,0,0.309,0.244 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0.309,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.33 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.132 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.176 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.247 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.244 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.205 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.127 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.307 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.0449 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,0,0,1,0,0.937,0.937,0.937,0,0.442,0 +1,0.933,0.933,0,0,1,0,0.937,0.937,0.937,0,0.502,0 +1,0.933,0.933,0,0,1,0,0.937,0.937,0.937,0,0.305,0 +1,0.732,0.732,0,0,1,0,0.993,0.88,0.88,0,0.0386,0 +1,0.732,0.732,0,0,0.4,0,0.993,0.88,0.88,0,0.249,0 +1,0.732,0.732,0,0,0,0.9,0.993,0.88,0.88,0,0.21,0 +1,0.732,0.732,0,0,0,0.7,0.993,0.88,0.88,0,0.0515,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0.0987,0.244 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0.433,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0.309,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0.137,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0.309,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.307 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.156 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0624 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0 +0.667,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0.5,0,0,0.258,0.465,0.465,0.522,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.842,0,0 +0.333,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.679,0,0 +0.333,0.181,0.181,0,1,0,0,0.391,0.572,0.572,0.201,0,0 +0.333,0.181,0.181,0.3,1,0,0,0.391,0.572,0.572,0.201,0,0 +0.333,0.181,0.181,1,0.4,0,0,0.391,0.572,0.572,0.435,0,0 +0.333,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0.1,0,0,0,0.33,0.579,0.579,0,0,0.122 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0.3,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,1,0,0,0,0.284,0.591,0.591,0,0,0.366 +0.333,0.178,0.178,1,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,1,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,1,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.177,0.177,0.7,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.366 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0.5,0,0,0.449,0.755,0.755,0.473,0,0 +0.667,0.457,0.457,0,1,0,0,0.449,0.755,0.755,0.321,0,0 +1,0.661,0.661,0,1,0,0,0.545,0.899,0.899,0,0,0 +1,0.869,0.869,0.8,1,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,1,0,0,0.741,0.974,0.974,0,0,0.366 +1,0.869,0.869,1,0.4,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.366 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.366 +0.667,0.386,0.386,0,0,0.5,0,0.729,0.717,0.717,0,0.223,0 +1,0.554,0.554,0,0,1,0,0.965,0.843,0.843,0,0,0.122 +1,0.554,0.554,0,0,1,0,0.965,0.843,0.843,0,0.249,0 +1,0.554,0.554,0,0,1,0,0.965,0.843,0.843,0,0.0129,0 +1,0.554,0.554,0,0,0.9,0,0.965,0.843,0.843,0,0.395,0 +1,0.342,0.342,0,0,0,0.4,0.636,0.655,0.655,0,0.249,0 +1,0.342,0.342,0,0,0,1,0.636,0.655,0.655,0,0.27,0 +1,0.342,0.342,0,0,0,1,0.636,0.655,0.655,0,0.322,0.122 +1,0.342,0.342,0,0,0,1,0.636,0.655,0.655,0,0.21,0 +1,0.342,0.342,0,0,0,1,0.636,0.655,0.655,0,0.0386,0 +1,0.342,0.342,0,0,0,1,0.636,0.655,0.655,0,0,0.122 +1,0.183,0.183,0,0,0,1,0.552,0.605,0.605,0,0.309,0 +1,0.183,0.183,0,0,0,1,0.552,0.605,0.605,0,0.172,0 +1,0.183,0.183,0,0,0,0.9,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0.408,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0.27,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0.545,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0.309,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0.0601,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0.283,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0.369,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0.0601,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0.519,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0.296,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0.682,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.431,0.555,0.555,0,0.0386,0 +1,0.0495,0.0495,0,0,0,0,0.431,0.555,0.555,0,0.335,0 +1,0.0495,0.0495,0,0,0,0,0.431,0.555,0.555,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0.0601,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.244 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.15 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.166 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.0331 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.488 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.732 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.251 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.457,0.457,0.8,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.457,0.457,1,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.457,0.457,1,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0.5,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.488 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,0.933,0.933,0.8,0.5,0,0,0.937,0.937,0.937,0.402,0,0.366 +1,0.933,0.933,0.8,1,0,0,0.937,0.937,0.937,0.31,0,0 +1,0.933,0.933,0,1,0,0,0.937,0.937,0.937,0.533,0,0.366 +1,0.933,0.933,0,1,0,0,0.937,0.937,0.937,0.375,0,0.244 +1,0.933,0.933,0,1,0,0,0.937,0.937,0.937,0.522,0,0 +1,0.933,0.933,0,0.4,0,0,0.937,0.937,0.937,0.261,0,0.244 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0.554,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.488 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.07 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.128 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.172 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.138 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.204 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.034 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,0.3,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,0.3,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.244 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.244 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.366 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.218 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.169 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.169 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.327 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.0327 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.244 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.336 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.0336 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0.122 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0.122 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0.122 +1,0.446,0.446,0,0.5,0,0,0.433,0.824,0.824,0.408,0,0 +1,0.446,0.446,0,1,0,0,0.433,0.824,0.824,0.37,0,0 +1,0.446,0.446,0,1,0,0,0.433,0.824,0.824,0.408,0,0 +1,0.513,0.513,0,1,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,1,0,0,0.447,0.862,0.862,0.571,0,0 +1,0.513,0.513,0,0.4,0,0,0.447,0.862,0.862,0.467,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0.625,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0.342,0,0.122 +1,0.661,0.661,0.8,0,0,0,0.545,0.899,0.899,0.386,0,0 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0,0.122 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0,0.122 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.869,0.869,0.9,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.258 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.244 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.288 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.0332 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.244 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.335 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.356 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.104 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.348 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.244 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.267 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.244 +0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.0697 +0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.279 +0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.426 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0894 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.225 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0322 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.488 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.279 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0.3,0,0,0,0.33,0.579,0.579,0,0,0.119 +0.667,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0.419 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.468,0.468,1,0,0,0,0.336,0.806,0.806,0,0,0 +1,0.468,0.468,0.1,0,0,0,0.336,0.806,0.806,0,0,0.177 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.142 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.196 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0652 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.164 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.164 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.334 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.131 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0.032 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0.288 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0.244 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.352 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.683,0.683,0,0,1,0,0.673,0.817,0.817,0,0.425,0 +0.667,0.683,0.683,0,0,1,0,0.673,0.817,0.817,0,0.549,0.272 +0.667,0.683,0.683,0,0,1,0,0.673,0.817,0.817,0,0,0.244 +0.667,0.683,0.683,0,0,1,0,0.673,0.817,0.817,0,0.408,0 +0.667,0.683,0.683,0,0,0.4,0,0.673,0.817,0.817,0,0.592,0 +0.667,0.683,0.683,0,0,0,0.9,0.673,0.817,0.817,0,0.0386,0.244 +0.667,0.638,0.638,0,0,0,0.7,0.711,0.78,0.78,0,0,0.366 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0.8,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0.244 +0.667,0.504,0.504,0.5,0.5,0,0,0.748,0.742,0.742,0.576,0,0 +0.667,0.504,0.504,0,1,0,0,0.748,0.742,0.742,0.451,0,0.366 +0.667,0.504,0.504,0,1,0,0,0.748,0.742,0.742,0.255,0,0 +0.667,0.504,0.504,0,1,1,0,0.748,0.742,0.742,0,0.455,0 +0.667,0.504,0.504,0,1,1,0,0.748,0.742,0.742,0,0.112,0.366 +1,0.732,0.732,0,0.4,1,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,1,0,0.965,0.843,0.843,0,0.73,0 +1,0.554,0.554,0,0,0.4,0,0.965,0.843,0.843,0,0.296,0.122 +1,0.554,0.554,0,0,0,0.9,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0.459,0 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0.0129,0 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0.481,0 +1,0.342,0.342,0,0,0,1,0.636,0.655,0.655,0,0.236,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0.236,0.122 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0.0386,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0.369,0.488 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0.15,0.164 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0.137,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.326 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.518 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.25 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.169 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.27 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.312 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.156 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0.3,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.524,0.68,0.68,0,0,0.189 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.237 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.167 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.122 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.294 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.24 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.345 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.488 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.61 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.596 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0.8,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0.467,0,0 +0.667,0.683,0.683,1,1,0,0,0.673,0.817,0.817,0.353,0,0 +0.667,0.683,0.683,1,1,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,1,1,0,0,0.673,0.817,0.817,0.429,0,0 +0.667,0.683,0.683,1,1,0,0,0.673,0.817,0.817,0.576,0,0.244 +0.667,0.638,0.638,1,1,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,1,1,0,0,0.711,0.78,0.78,0,0,0.198 +0.667,0.638,0.638,1,0.5,0,0,0.711,0.78,0.78,0,0,0.172 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.933,0.933,0.1,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.332 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.133 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.206 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.244 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0.3,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,1,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0.3,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.164 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.35 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.035 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.172 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0686 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.366 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.488 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0.3,0,0,0,0.449,0.755,0.755,0,0,0.61 +0.667,0.457,0.457,1,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0.5,0,0.741,0.974,0.974,0,0.137,0.17 +1,0.869,0.869,1,0,0.9,0,0.741,0.974,0.974,0,0,0.462 +1,0.869,0.869,0.7,0,0,0.4,0.741,0.974,0.974,0,0.296,0 +1,0.869,0.869,0,0,0,1,0.741,0.974,0.974,0,0.249,0 +0.667,0.596,0.596,0,0,0,1,0.58,0.805,0.805,0,0.283,0 +0.667,0.683,0.683,0,0,0,0.9,0.673,0.817,0.817,0,0.618,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0.421,0.244 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0.12,0 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0.249,0 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0.309,0.286 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.488 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0.528,0.244 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0.296,0.244 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0.0386,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.33 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.188 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.171 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.137 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.251,0.251,1,0,0,0,0.487,0.617,0.617,0,0,0.276 +1,0.251,0.251,1,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,1,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0.7,0,0,0,0.487,0.617,0.617,0,0,0.067 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.1 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.159 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.0956 +1,0.444,0.444,0,0.5,0,0,0.657,0.787,0.787,0.386,0,0 +1,0.444,0.444,0,1,0,0,0.657,0.787,0.787,0.565,0,0 +1,0.444,0.444,0,1,0,0,0.657,0.787,0.787,0.364,0,0 +1,0.47,0.47,0,1,0,0,0.475,0.806,0.806,0.413,0,0.274 +1,0.47,0.47,0,1,0,0,0.475,0.806,0.806,0.188,0,0 +1,0.47,0.47,0,0.4,0,0,0.475,0.806,0.806,0.188,0,0 +1,0.47,0.47,0,0,1,0,0.475,0.806,0.806,0.239,0.296,0.0707 +1,0.47,0.47,0,0,1,0,0.475,0.806,0.806,0,0.487,0.353 +1,0.47,0.47,0,0,0.9,0,0.475,0.806,0.806,0,0.453,0.106 +1,0.481,0.481,0,0,0,0.4,0.322,0.806,0.806,0,0.416,0 +1,0.481,0.481,0,0,0,1,0.322,0.806,0.806,0,0.408,0 +1,0.481,0.481,0,0,0,1,0.322,0.806,0.806,0,0,0 +1,0.481,0.481,0,0,0,1,0.322,0.806,0.806,0,0.27,0.274 +1,0.481,0.481,0,0,0,1,0.322,0.806,0.806,0,0.0987,0 +1,0.481,0.481,0,0,0,1,0.322,0.806,0.806,0,0,0 +1,0.468,0.468,0,0,0,1,0.336,0.806,0.806,0,0.506,0 +1,0.468,0.468,0,0,0,0.2,0.336,0.806,0.806,0,0.21,0.169 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0.682,0.102 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0.421,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0.369,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.159 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.133,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.369,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.273,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.135,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.412,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.266,0.244 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.366 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.61 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.122 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0.122 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0.122 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0.244 +1,0.661,0.661,0,0.5,0,0,0.545,0.899,0.899,0.364,0,0.122 +1,0.661,0.661,0,1,0,0,0.545,0.899,0.899,0.478,0,0 +0.333,0.253,0.253,0,1,0,0,0.354,0.61,0.61,0.538,0,0.122 +0.333,0.253,0.253,0,1,0,0,0.354,0.61,0.61,0.413,0,0 +0.333,0.253,0.253,0,1,0,0,0.354,0.61,0.61,0.204,0,0 +0.667,0.457,0.457,0,0.4,0,0,0.449,0.755,0.755,0.204,0,0 +0.667,0.596,0.596,0.8,0,0,0,0.58,0.805,0.805,0.701,0,0 +0.667,0.596,0.596,0.8,0,0,0,0.58,0.805,0.805,0,0,0.244 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.244 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.488 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.488 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.176 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.196 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.147 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.171 +1,0.0495,0.0495,0,0,0,0,0.422,0.542,0.542,0,0,0.102 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.267 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.122 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.174 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.349 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.0349 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.309,0 +0.333,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.223,0 +0.333,0.177,0.177,0,0,0.9,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0.4,0.302,0.591,0.591,0,0.275,0 +0.333,0.177,0.177,0,0,0,1,0.302,0.591,0.591,0,0.618,0 +0.333,0.177,0.177,0,0,0,1,0.302,0.591,0.591,0,0.283,0 +0.333,0.182,0.182,0,0,0,0.9,0.316,0.585,0.585,0,0.399,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.678,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.0515,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.258,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.502,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0.425,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0.0987,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.122 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.244 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.61 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.366 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.424 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.507 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.228 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.243 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.277 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.0627 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.188 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.122 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.269 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.0697 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.349 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.0697 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.167 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.1 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.125 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.183,0.183,1,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.333,0.178,0.178,0.3,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0.424,0,0 +0.333,0.178,0.178,0,1,0,0,0.284,0.591,0.591,0.408,0,0 +0.333,0.177,0.177,0,1,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,1,0,0,0.302,0.591,0.591,0.326,0,0 +0.667,0.305,0.305,0,1,0,0,0.347,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,1,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,1,0,0,0.347,0.717,0.717,0,0,0 +0.333,0.177,0.177,0,0.5,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.366 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.61 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0.3,0,0,0,0.58,0.805,0.805,0,0,0.488 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0.244 +1,1,1,0.3,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.157 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.0314 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.333,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.333,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.333,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.386,0.386,0.3,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.386,0.386,1,0,0,0,0.729,0.717,0.717,0,0,0.244 +1,0.218,0.218,1,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,1,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,1,0,0,0,0.493,0.591,0.591,0,0,0.244 +1,0.196,0.196,1,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,1,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.196,0.196,1,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.196,0.196,1,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0.1,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.343 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.177 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.248 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.322 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.328 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.263 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.186 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.334 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.0667 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.367 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.366 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.122 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0.3,0,0,0,0.449,0.755,0.755,0,0,0.366 +0.667,0.457,0.457,1,0,0,0,0.449,0.755,0.755,0,0,0.244 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.366 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.732 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.244 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0.366 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0.488 +1,1,1,0.5,0,0,0,0.881,0.993,0.993,0,0,0.166 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.0662 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.348 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.244 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.24 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.314 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.488 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,0.8,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.181,0.181,0.5,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.263 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.0594 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.0594 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.34 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.19 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,0.8,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,1,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.193,0.193,1,0,0,0,0.279,0.579,0.579,0,0,0.244 +0.667,0.328,0.328,0.5,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.244 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.488 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.171 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.205 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.488 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.244 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0.3,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,1,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,1,0,1,0,0.375,0.705,0.705,0,0.369,0 +0.667,0.314,0.314,1,0,1,0,0.375,0.705,0.705,0,0.159,0 +1,0.446,0.446,1,0,0.9,0,0.433,0.824,0.824,0,0,0 +1,0.513,0.513,1,0,0,0.4,0.447,0.862,0.862,0,0.258,0 +1,0.513,0.513,1,0,0,1,0.447,0.862,0.862,0,0.369,0 +1,0.513,0.513,0.4,0,0,1,0.447,0.862,0.862,0,0,0.244 +1,0.513,0.513,0,0,0,1,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,1,0.447,0.862,0.862,0,0,0 +1,0.513,0.513,0,0,0,1,0.447,0.862,0.862,0,0,0 +1,0.661,0.661,0,0,0,1,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0,0,0,0.2,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +1,0.596,0.596,0.8,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0.366 +1,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +1,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.122 +1,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.122 +1,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.122 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.366 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.171 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.342 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.137 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.189 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.152 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.274 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.244 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.17 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.122 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.244 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.354 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.299 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.122 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.122 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.258 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.122 +0.667,0.596,0.596,0,0,1,0,0.58,0.805,0.805,0,0.21,0 +0.667,0.596,0.596,0,0,1,0,0.58,0.805,0.805,0,0,0.257 +1,0.869,0.869,0,0,1,0,0.741,0.974,0.974,0,0,0 +1,1,1,0,0,1,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0.4,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0.9,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,1,0.881,0.993,0.993,0,0,0.531 +1,1,1,0,0,0,1,0.881,0.993,0.993,0,0,0.122 +1,1,1,0,0,0,1,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,1,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.316 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.383 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.675 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.122 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.122 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.222 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.177 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.0354 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.185 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.122 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.366 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.178,0.178,0,0,1,0,0.284,0.591,0.591,0,0.356,0 +0.667,0.178,0.178,0,0,1,0,0.284,0.591,0.591,0,0.348,0 +0.667,0.178,0.178,0,0,1,0,0.284,0.591,0.591,0,0.262,0.244 +0.667,0.178,0.178,0,0,1,0,0.284,0.591,0.591,0,0,0 +0.667,0.178,0.178,0,0,0.4,0,0.284,0.591,0.591,0,0.124,0 +0.667,0.178,0.178,0,0,0,0.9,0.284,0.591,0.591,0,0.618,0 +0.333,0.177,0.177,0,0,0,1,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,1,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,1,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,1,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.122 +0.333,0.182,0.182,0.8,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,1,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,1,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0.5,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.244 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.488 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0.3,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.244 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.366 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.244 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0.366 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0.2,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.549,0,0 +1,0.933,0.933,0,1,0,0,0.937,0.937,0.937,0.489,0,0 +1,0.732,0.732,0,1,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0.3,1,0,0,0.993,0.88,0.88,0.598,0,0 +1,0.732,0.732,1,1,0,0,0.993,0.88,0.88,0.429,0,0 +1,0.732,0.732,1,0.9,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0.505,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0.402,0,0.122 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0.435,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0.413,0,0.366 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0.489,0,0.251 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0.674,0,0.179 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.455 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.335 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.067 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.354 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.0354 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.314 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0.157 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0.0627 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0.3,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,1,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,1,0,0,0,0.487,0.617,0.617,0,0,0.135 +1,0.251,0.251,1,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.403 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0.584 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0.177 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0.35 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.189 +0.333,0.189,0.189,0.3,0,0,0,0.284,0.579,0.579,0,0,0.122 +0.333,0.189,0.189,1,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,1,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,1,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,1,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.183,0.183,1,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,1,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,1,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,1,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0.1,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.488 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.732 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0.3,0,0,0,0.419,0.635,0.635,0,0,0.488 +0.333,0.323,0.323,1,0,0,0,0.419,0.635,0.635,0,0,0.244 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0.351 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0.0351 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.61 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0.5,0,0.993,0.88,0.88,0,0.137,0.244 +1,0.732,0.732,0,0,1,0,0.993,0.88,0.88,0,0.425,0.122 +1,0.732,0.732,0,0,1,0,0.993,0.88,0.88,0,0.142,0 +1,0.732,0.732,0,0,0.4,0,0.993,0.88,0.88,0,0.296,0 +1,0.732,0.732,0,0,0,0.9,0.993,0.88,0.88,0,0.403,0 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0.438,0 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0.296,0.488 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0.0386,0 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0.7,0.965,0.843,0.843,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.219 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.312 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0.0624 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.351,0.351,0.8,0,0,0,0.601,0.693,0.693,0,0,0.255 +1,0.351,0.351,0.8,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.175 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.245 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.19 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.488 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.244 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,1,0,0.302,0.591,0.591,0,0.296,0 +0.333,0.177,0.177,0,0,1,0,0.302,0.591,0.591,0,0.236,0 +0.333,0.177,0.177,0,0,0.9,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0.4,0.316,0.585,0.585,0,0.27,0 +0.333,0.182,0.182,0,0,0,1,0.316,0.585,0.585,0,0.361,0 +0.333,0.182,0.182,0,0,0,1,0.316,0.585,0.585,0,0.167,0 +0.667,0.314,0.314,0,0,0,1,0.375,0.705,0.705,0,0.155,0.143 +0.667,0.314,0.314,0,0,0,1,0.375,0.705,0.705,0,0.283,0 +0.667,0.314,0.314,0,0,0,0.5,0.375,0.705,0.705,0,0,0.244 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.502,0.122 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.451,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0.369,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0.532,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0.296,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0.579,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0.245,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.309,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.309,0.244 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0.0386,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0.249,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0.296,0.122 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0.258,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.341 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.273 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0632 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.158 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.344 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.147 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.333 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.222 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.535 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.237 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.347 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.518 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.172 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.138 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.444 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0334 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.313 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0696 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0.3,0,0.5,0,0.34,0.516,0.516,0,0.0987,0 +1,0.0829,0.0829,1,0,1,0,0.34,0.516,0.516,0,0.223,0 +1,0.251,0.251,1,0,1,0,0.487,0.617,0.617,0,0.605,0 +1,0.251,0.251,1,0,0.4,0,0.487,0.617,0.617,0,0.0386,0.163 +1,0.351,0.351,0,0,0,0.9,0.601,0.693,0.693,0,0,0.163 +1,0.351,0.351,0,0,0,1,0.601,0.693,0.693,0,0.309,0 +1,0.351,0.351,0,0,0,1,0.601,0.693,0.693,0,0.466,0 +1,0.351,0.351,0,0,0,1,0.601,0.693,0.693,0,0.367,0 +1,0.444,0.444,0,0,0,1,0.657,0.787,0.787,0,0.841,0.12 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0.236,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0.421,0.196 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0.359,0.283,0.0654 +1,0.444,0.444,0,1,0,0,0.657,0.787,0.787,0.551,0.236,0 +1,0.47,0.47,0,1,0,0,0.475,0.806,0.806,0.275,0.0386,0 +1,0.47,0.47,0,1,0,0,0.475,0.806,0.806,0.375,0.159,0 +1,0.47,0.47,0,1,0,0,0.475,0.806,0.806,0.299,0,0 +1,0.47,0.47,0,0.9,0,0,0.475,0.806,0.806,0.63,0.631,0 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0.435,0.0601,0 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0.382,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0.172,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0.584,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0.309,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0.236,0 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0.0987,0 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0.283,0.283 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.405 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0.519,0 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0.21,0.366 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.567,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.446,0.122 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.532,0.244 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.275,0.122 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.459,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0.27,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0.236,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0.0858,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0.21,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0.0386,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0.223,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0.575,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0.502,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0.197,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.395,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.0386,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.442,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0.159,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0.296,0.122 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0.73,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0.309,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0.258,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.457,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.148,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.0858,0.122 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.122 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.421,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.159,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.21,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.296,0.122 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.136 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.61 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.488 +0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0.122 +0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.366 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0.122 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.348 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.122 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.169 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0338 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.289 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0321 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0.172 +1,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0.276 +1,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +1,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0.33 +1,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0.033 +1,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0.244 +1,0.328,0.328,1,0,0,0,0.31,0.692,0.692,0,0,0.122 +1,0.328,0.328,1,0,0,0,0.31,0.692,0.692,0,0,0.171 +1,0.328,0.328,1,0,0,0,0.31,0.692,0.692,0,0,0.605 +1,0.328,0.328,1,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,1,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.328,0.328,1,0,0,0,0.31,0.692,0.692,0,0,0 +1,0.316,0.316,1,0,0,0,0.319,0.705,0.705,0,0,0.195 +1,0.316,0.316,1,0,0,0,0.319,0.705,0.705,0,0,0.366 +1,0.316,0.316,0.5,0,0,0,0.319,0.705,0.705,0,0,0 +1,0.449,0.449,0,0,0,0,0.35,0.824,0.824,0,0,0 +1,0.449,0.449,0,0,0,0,0.35,0.824,0.824,0,0,0.392 +1,0.449,0.449,0,0,0,0,0.35,0.824,0.824,0,0,0.0297 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.244 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.366 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0.3,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,1,0,0,0,0.384,0.73,0.73,0,0,0.244 +0.667,0.457,0.457,1,0,0,0,0.449,0.755,0.755,0,0,0.366 +0.667,0.457,0.457,1,0,0.5,0,0.449,0.755,0.755,0,0.309,0 +1,0.661,0.661,1,0,1,0,0.545,0.899,0.899,0,0.309,0 +1,0.661,0.661,1,0,1,0,0.545,0.899,0.899,0,0.0987,0 +1,0.661,0.661,1,0,1,0,0.545,0.899,0.899,0,0.309,0 +1,0.661,0.661,0.4,0,0.9,0,0.545,0.899,0.899,0,0,0 +1,0.869,0.869,0,0,0,0.4,0.741,0.974,0.974,0,0.605,0 +1,0.869,0.869,0,0,0,1,0.741,0.974,0.974,0,0.395,0 +1,0.869,0.869,0,0,0,1,0.741,0.974,0.974,0,0,0 +1,0.869,0.869,0,0,0,1,0.741,0.974,0.974,0,0.468,0 +1,0.869,0.869,0,0,0,1,0.741,0.974,0.974,0,0,0.122 +1,0.869,0.869,0,0,0,0.5,0.741,0.974,0.974,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.122 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.122 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.244 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.488 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.337,0.337,0.3,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.244 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.366 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.201 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.146 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.24 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.122 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0982 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.196 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.488 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.244 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.122 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.122 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.17 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.237 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.122 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.122 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.488 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.366 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.488 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.163 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0.0651 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0.0848 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0.478,0,0 +1,0.351,0.351,0,1,0,0,0.601,0.693,0.693,0.359,0,0 +1,0.351,0.351,0,1,0,0,0.601,0.693,0.693,0,0,0 +1,0.351,0.351,0,1,0,0,0.601,0.693,0.693,0.402,0,0.166 +1,0.351,0.351,0,1,0,0,0.601,0.693,0.693,0.538,0,0.0331 +1,0.444,0.444,0,0.9,0,0,0.657,0.787,0.787,0.283,0,0 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,0.3,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.33,0.33,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.33,0.33,0.4,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.244 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.488 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.122 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.122 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.328,0.328,0.3,0,0,0,0.31,0.692,0.692,0.603,0,0.122 +0.667,0.328,0.328,1,1,0,0,0.31,0.692,0.692,0.489,0,0 +0.667,0.316,0.316,0.3,1,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,0.3,1,0,0,0.319,0.705,0.705,0.592,0,0 +0.667,0.316,0.316,1,1,0,0,0.319,0.705,0.705,0.543,0,0 +0.667,0.316,0.316,1,1,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,1,1,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.316,0.316,1,0.5,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.31,0.717,0.717,0,0,0.366 +0.667,0.307,0.307,1,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,1,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0.1,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.122 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.244 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.244 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.122 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.122 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.122 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.33 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.31 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.177 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.35 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.366 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.122 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.244 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.122 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.122 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv new file mode 100644 index 00000000..a7f8dc95 --- /dev/null +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv @@ -0,0 +1,8761 @@ +occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.14 +0.667,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0.159 +0.667,0.334,0.334,0.25,0,0,0,0.403,0.692,0.692,0,0,0.119 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.342 +0.667,0.334,0.334,0.5,0,0,0,0.31,0.692,0.692,0,0,0.149 +0.667,0.322,0.322,0.0167,0,0,0,0.319,0.705,0.705,0,0,0.402 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0372 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.223 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.26 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.0372 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.548,0.548,0.5,0,0,0,0.58,0.805,0.805,0,0,0.0743 +0.667,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.0743 +0.667,0.677,0.677,0.05,0,0,0,0.711,0.78,0.78,0,0,0.149 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0743 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0372 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0.25,0,0,0,0.34,0.516,0.516,0,0,0.334 +1,0.355,0.355,0.783,0,0,0,0.601,0.693,0.693,0,0,0.28 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.162 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.275 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.217 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.168 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.365 +0.667,0.181,0.181,0,0,0.233,0,0.284,0.591,0.591,0,0.295,0.154 +0.667,0.18,0.18,0,0,0.25,0.217,0.302,0.591,0.591,0,0.44,0 +0.667,0.182,0.182,0.25,0,0,0.6,0.316,0.585,0.585,0,0.55,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.479,0.186 +0.333,0.234,0.234,0,0.4,0,0,0.354,0.61,0.61,0.707,0.379,0.0743 +0.667,0.548,0.548,0,0.667,0,0,0.58,0.805,0.805,0,0.287,0.112 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.223 +0.667,0.677,0.677,0,0.65,0,0,0.711,0.78,0.78,0.635,0,0.417 +0.667,0.307,0.307,0,0.15,0,0,0.503,0.604,0.604,0,0,0.112 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.195 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.186 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.192,0.192,0,0.65,0.233,0,0.33,0.579,0.579,0.614,0.494,0.0963 +0.667,0.343,0.343,0.517,0.15,0,0.717,0.3,0.692,0.692,0,0.232,0.121 +0.667,0.334,0.334,0,0,0,0.917,0.31,0.692,0.692,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.149 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.186 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.0841,0.149 +0.333,0.234,0.234,0,0,0.483,0,0.354,0.61,0.61,0,0.448,0.215 +0.667,0.548,0.548,0,0,0,0.817,0.58,0.805,0.805,0,0,0.112 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.335 +0.667,0.677,0.677,0,0.65,0,0,0.711,0.78,0.78,0.792,0,0.0743 +0.667,0.565,0.565,0.767,0.15,0,0,0.748,0.742,0.742,0.143,0,0.0372 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.297 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.314 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.448 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.313 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.222 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.264 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.292 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.157 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.182,0.182,0,0.15,0,0,0.316,0.585,0.585,0.458,0,0 +0.333,0.196,0.196,0,0.65,0,0,0.321,0.597,0.597,0.538,0,0.187 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0.634,0,0.158 +0.667,0.548,0.548,0.25,0,0,0,0.58,0.805,0.805,0.378,0,0.127 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0743 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.223 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0.233,0,0.258,0.465,0.465,0,0.424,0 +1,0.253,0.253,0.517,0,0.25,0.217,0.487,0.617,0.617,0,0.229,0 +1,0.449,0.449,0,0,0,1,0.657,0.787,0.787,0,0,0 +0.333,0.192,0.192,0,0,0,0.417,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0743 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.112 +0.333,0.186,0.186,0.25,0,0,0,0.288,0.585,0.585,0,0,0.186 +0.333,0.181,0.181,1,0,0,0,0.284,0.591,0.591,0,0,0.186 +0.333,0.18,0.18,0.3,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0372 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.186 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.105 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.146 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.269 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.0372 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.347 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.167 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.281 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.52 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.153 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.186 +0.667,0.548,0.548,0.417,0,0,0,0.58,0.805,0.805,0,0,0.0743 +0.667,0.669,0.669,0.1,0,0.483,0,0.673,0.817,0.817,0,0.613,0.223 +0.667,0.677,0.677,0.917,0,0,0.633,0.711,0.78,0.78,0,0.136,0.0743 +1,0.823,0.823,0.367,0,0,1,0.993,0.88,0.88,0,0,0.08 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.112 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0882 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.19 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.242 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.351 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.184 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0743 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.149 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.0372 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.186 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0.1,0,0.186 +0.667,0.669,0.669,0,0.817,0,0,0.673,0.817,0.817,0.438,0,0.149 +0.667,0.677,0.677,0,0.25,0,0,0.711,0.78,0.78,0,0,0.0372 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.119 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.206 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.223 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.166 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0502 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.145 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0978 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0887 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.115 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.149 +0.333,0.196,0.196,0,0,0.717,0,0.321,0.597,0.597,0,0.511,0.149 +0.667,0.418,0.418,0,0,0,0.483,0.449,0.755,0.755,0,0,0.52 +0.667,0.548,0.548,0,0,0,0.867,0.58,0.805,0.805,0,0,0.372 +0.667,0.669,0.669,0,0.4,0,0,0.673,0.817,0.817,0.508,0,0.301 +1,0.991,0.991,0,0.667,0.233,0,0.937,0.937,0.937,0.139,0.635,0 +0.667,0.565,0.565,0,0,0,0.533,0.748,0.742,0.742,0,0.601,0.0372 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.117 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.368 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.221 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.271 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0372 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0.106,0.263 +0.667,0.334,0.334,0,0,0.717,0,0.31,0.692,0.692,0,0.508,0.118 +0.333,0.186,0.186,0,0,0,0.733,0.288,0.585,0.585,0,0.454,0.0372 +0.333,0.181,0.181,0,0,0,0.9,0.284,0.591,0.591,0,0.731,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.633,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.322 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.0173 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.186 +0.333,0.299,0.299,0,0.15,0,0,0.419,0.635,0.635,0.391,0,0.297 +0.667,0.669,0.669,0,0.65,0,0,0.673,0.817,0.817,0.653,0,0.149 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.173,0,0.149 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.26 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.203 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.0697 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.414 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.247 +0.333,0.192,0.192,0.25,0,0,0,0.284,0.579,0.579,0,0,0.163 +0.667,0.322,0.322,0.5,0,0,0,0.319,0.705,0.705,0,0,0.135 +0.667,0.313,0.313,0.0167,0,0,0,0.31,0.717,0.717,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0.25,0,0.233,0,0.258,0.465,0.465,0,0.502,0.0372 +0.667,0.343,0.343,0,0,0,0.967,0.384,0.73,0.73,0,0,0.0372 +1,0.602,0.602,0,0,0,0.117,0.545,0.899,0.899,0,0,0.149 +0.667,0.548,0.548,0.25,0,0,0,0.58,0.805,0.805,0,0,0.149 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.223 +0.667,0.677,0.677,0,0,0.483,0,0.711,0.78,0.78,0,0.124,0.315 +1,0.565,0.565,0,0,0,0.267,0.748,0.742,0.742,0,0,0.112 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.535 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.111 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0833,0.0833,0.25,0,0,0,0.34,0.516,0.516,0,0,0.194 +0.667,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.118 +0.333,0.183,0.183,0.517,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0743 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.297 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0372 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.112 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0372 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0372 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.0372 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.112 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0.204,0,0.0372 +1,0.979,0.979,0,0.8,0,0,0.881,0.993,0.993,0.753,0,0.149 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.149 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.267 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0532,0.0532,0,0,0,0,0.394,0.555,0.555,0,0,0.268 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.324 +1,0.151,0.151,0.25,0,0,0,0.372,0.541,0.541,0,0,0.133 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.228 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.421 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.403 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.132 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.158 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.224 +1,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.43 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0.243,0,0.497 +0.667,0.548,0.548,0,0.9,0,0,0.58,0.805,0.805,0.481,0,0.52 +0.667,0.669,0.669,0,0.45,0,0,0.673,0.817,0.817,0,0,0.113 +0.333,0.363,0.363,0,0,0.233,0,0.484,0.622,0.622,0,0.382,0.112 +0.333,0.307,0.307,0,0,0,0.533,0.503,0.604,0.604,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0743 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0867 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0347 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.14 +1,0.0532,0.0532,0.917,0,0,0,0.394,0.555,0.555,0,0,0.222 +1,0.117,0.117,0.633,0,0,0,0.422,0.567,0.567,0,0,0.199 +1,0.355,0.355,0,0,0,0,0.601,0.693,0.693,0,0,0.0797 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.111 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.438 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.483 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.394 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.34 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.216 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0.167,0,0,0,0.316,0.585,0.585,0,0,0.0743 +0.333,0.196,0.196,0.0833,0,0,0,0.321,0.597,0.597,0,0,0.335 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.0743 +0.667,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.0743 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0.0749,0.0372 +0.667,0.363,0.363,0,0,0.717,0,0.484,0.622,0.622,0,0.56,0.0743 +0.667,0.565,0.565,0,0,0,0.267,0.748,0.742,0.742,0,0.131,0.0791 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.049 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.343,0.343,0.35,0.567,0,0,0.3,0.692,0.692,0.798,0,0 +1,0.477,0.477,0,0.233,0,0,0.336,0.806,0.806,0.15,0,0 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0,0.0743 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0372 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0.0724,0,0.0743 +0.667,0.315,0.315,0,0.817,0,0,0.375,0.705,0.705,0.896,0,0.223 +0.667,0.343,0.343,0,0.25,0,0,0.384,0.73,0.73,0,0,0.0372 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.112 +0.667,0.548,0.548,0.417,0,0,0,0.58,0.805,0.805,0,0,0.0743 +0.667,0.669,0.669,0.1,0,0,0,0.673,0.817,0.817,0,0,0.335 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.0743 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.149 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.26 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.216 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0.128,0 +0.667,0.186,0.186,0,0,0.483,0,0.288,0.585,0.585,0,0.839,0.223 +0.333,0.181,0.181,0,0,0,0.533,0.284,0.591,0.591,0,0.651,0.223 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.595,0.0372 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.524,0.0372 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.396,0.0372 +0.333,0.234,0.234,0.25,0,0,0,0.354,0.61,0.61,0,0.538,0.367 +0.667,0.548,0.548,0,0.65,0,0,0.58,0.805,0.805,0.796,0.131,0.26 +0.667,0.669,0.669,0.5,0.417,0,0,0.673,0.817,0.817,0,0,0.446 +0.333,0.363,0.363,0.783,0,0,0,0.484,0.622,0.622,0,0,0.0372 +0.333,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.0743 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0743 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.122 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.181,0.181,0,0.15,0,0,0.284,0.591,0.591,0.292,0,0 +0.667,0.311,0.311,0.517,0.917,0,0,0.347,0.717,0.717,0.483,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.112 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.297 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.297 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.186 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.0743 +1,0.565,0.565,0,0,0.233,0,0.748,0.742,0.742,0,0.202,0.112 +1,0.43,0.43,0,0,0,0.717,0.729,0.717,0.717,0,0,0.0743 +1,0.212,0.212,0,0,0,0.917,0.447,0.56,0.56,0,0,0.186 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.149 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.267 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.126 +0.667,0.183,0.183,0.267,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0743 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0.106,0.25 +0.667,0.322,0.322,0,0,0.483,0,0.319,0.705,0.705,0,0,0.0999 +0.333,0.181,0.181,0,0,0,0.967,0.284,0.591,0.591,0,0,0.0372 +0.333,0.18,0.18,0,0,0,0.667,0.302,0.591,0.591,0,0,0.149 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.186 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.186 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0.167,0,0 +0.333,0.0495,0.0495,0,0.8,0,0,0.258,0.465,0.465,0.555,0,0.0743 +0.333,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.0372 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.207 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,1,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.253,0.253,0.3,0,0,0,0.487,0.617,0.617,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.0743 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.347 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.199 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.186 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.186 +0.333,0.182,0.182,0,0,0.233,0,0.316,0.585,0.585,0,0.364,0.149 +0.333,0.196,0.196,0,0,0,0.467,0.321,0.597,0.597,0,0.321,0 +0.333,0.234,0.234,0,0,0,0.617,0.354,0.61,0.61,0,0,0.186 +0.333,0.299,0.299,0.25,0,0,0,0.419,0.635,0.635,0.176,0,0.112 +0.667,0.669,0.669,0,0.9,0,0,0.673,0.817,0.817,0.675,0,0.112 +0.667,0.677,0.677,0,0.167,0,0,0.711,0.78,0.78,0.646,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.253,0.253,0.25,0,0,0,0.487,0.617,0.617,0,0,0.158 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.132 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.193 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.613 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.183 +0.333,0.186,0.186,0.25,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0372 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0743 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.166 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.099 +0.667,0.548,0.548,0.5,0,0,0,0.58,0.805,0.805,0,0,0.149 +0.667,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.112 +0.667,0.677,0.677,1,0,0,0,0.711,0.78,0.78,0,0,0.149 +0.667,0.565,0.565,0.6,0,0,0,0.748,0.742,0.742,0,0,0.0743 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.207 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.178 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.175 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.108 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.158 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.0793 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.134 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.154 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.26 +0.333,0.18,0.18,0,0.0667,0,0,0.302,0.591,0.591,0.364,0,0.223 +0.333,0.182,0.182,0,0.733,0,0,0.316,0.585,0.585,0.74,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0.529,0,0 +0.333,0.234,0.234,0.417,0,0,0,0.354,0.61,0.61,0.455,0,0.186 +0.667,0.548,0.548,0.35,0,0,0,0.58,0.805,0.805,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0.137,0,0.149 +0.333,0.363,0.363,0,0.533,0,0,0.484,0.622,0.622,0.616,0,0.112 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0.499,0,0.112 +0.667,0.43,0.43,0,0.567,0,0,0.729,0.717,0.717,0.79,0,0.186 +1,0.374,0.374,0,0.233,0,0,0.636,0.655,0.655,0,0,0.186 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.149 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0.12 +1,0.316,0.316,0.1,0,0.15,0,0.524,0.68,0.68,0,0.193,0 +1,0.334,0.334,0,0,1,0,0.403,0.692,0.692,0,0.324,0 +1,0.343,0.343,0.417,0,0.533,0,0.3,0.692,0.692,0,0.402,0.272 +1,0.477,0.477,1,0,0,0.933,0.336,0.806,0.806,0,0,0.259 +1,0.458,0.458,0.133,0,0,0.967,0.35,0.824,0.824,0,0.301,0.534 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0.00459,0.261 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.175 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.283 +0.333,0.234,0.234,0.517,0,0,0,0.354,0.61,0.61,0,0,0.0372 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.268 +0.667,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.0743 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.16 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.498 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.186 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.188 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.386 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0.25,0,0,0,0.279,0.579,0.579,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.0887,0.0743 +0,0.0495,0.0495,0,0,0.717,0,0.258,0.465,0.465,0,0.369,0.112 +0.333,0.18,0.18,0,0,0,0.733,0.302,0.591,0.591,0,0.723,0 +0.667,0.315,0.315,0.25,0,0,0.0833,0.375,0.705,0.705,0,0.0917,0 +0.667,0.343,0.343,0.267,0,0,0,0.384,0.73,0.73,0,0,0.0372 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.26 +0.667,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.249 +0.667,0.677,0.677,0.0333,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.223 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.0657,0 +1,0.0833,0.0833,0,0,0.483,0,0.34,0.516,0.516,0,0.413,0.257 +1,0.253,0.253,0,0,0,0.817,0.487,0.617,0.617,0,0,0.22 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.0998 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.177 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0.733,0,0.31,0.692,0.692,0,0.731,0 +0.333,0.186,0.186,0,0,0.233,0.233,0.288,0.585,0.585,0,0.401,0.0372 +0.333,0.181,0.181,0,0,0,0.85,0.284,0.591,0.591,0,0.492,0.112 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.719,0.112 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.763,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.402,0 +0.333,0.234,0.234,1,0,0,0,0.354,0.61,0.61,0,0.573,0.112 +0.667,0.548,0.548,0.0333,0,0,0,0.58,0.805,0.805,0,0,0.0372 +0.667,0.669,0.669,0,0.267,0,0,0.673,0.817,0.817,0.616,0,0.0743 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.753,0,0.112 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.245,0,0.0743 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0.25,0,0,0,0.326,0.51,0.51,0,0,0 +0.667,0.0833,0.0833,0.517,0,0,0,0.34,0.516,0.516,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.196,0.196,0.783,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0.25,0,0.483,0,0.284,0.591,0.591,0,0.0352,0.186 +0.667,0.311,0.311,0,0,0.483,0,0.347,0.717,0.717,0,0,0 +0.667,0.315,0.315,0,0,0,0.983,0.375,0.705,0.705,0,0,0 +1,0.49,0.49,0,0,0,0.65,0.447,0.862,0.862,0,0,0.0372 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.259 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.26 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.174 +0.333,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.311 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.238 +0.667,0.212,0.212,0.5,0,0,0,0.447,0.56,0.56,0,0,0.112 +1,0.116,0.116,0.0167,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0.25,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.188 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0743 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.161 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.321 +0.667,0.311,0.311,0.25,0,0,0,0.347,0.717,0.717,0,0,0.517 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.246 +0.667,0.343,0.343,0.5,0,0,0,0.384,0.73,0.73,0,0,0.16 +0.667,0.234,0.234,0.267,0,0,0,0.354,0.61,0.61,0,0,0.117 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.149 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.0372 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0372 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.132 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.381 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.212 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0372 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0.483,0,0.288,0.585,0.585,0,0.537,0.112 +0.333,0.181,0.181,0,0,0.233,0.233,0.284,0.591,0.591,0,0.752,0 +0.333,0.18,0.18,0,0,0,1,0.302,0.591,0.591,0,0.307,0 +0.667,0.315,0.315,0,0,0,0.4,0.375,0.705,0.705,0,0,0 +0.667,0.343,0.343,0.25,0,0,0,0.384,0.73,0.73,0,0,0.0743 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.149 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.409 +0.667,0.669,0.669,0.517,0,0,0,0.673,0.817,0.817,0,0,0.223 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.0372 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.241 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.263 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.317 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.238 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.205 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.192,0.192,0,0,0.15,0,0.33,0.579,0.579,0,0.393,0 +0.667,0.196,0.196,0,0,0.567,0,0.279,0.579,0.579,0,0.466,0 +0.667,0.192,0.192,0,0,0,0.533,0.284,0.579,0.579,0,0.674,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.538,0.194 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.227 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0743 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.372 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.222 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0.0875 +1,0.253,0.253,1,0,0,0,0.487,0.617,0.617,0,0,0.211 +0.667,0.183,0.183,0.917,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.322,0.322,0.167,0,0,0,0.319,0.705,0.705,0,0.106,0 +0.333,0.181,0.181,0.0833,0,0.717,0,0.284,0.591,0.591,0,0.621,0 +0.667,0.311,0.311,0,0,0,0.65,0.347,0.717,0.717,0,0.775,0 +0.667,0.315,0.315,0,0,0,0.7,0.375,0.705,0.705,0,0.335,0.186 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.297 +0.667,0.418,0.418,0.25,0,0,0,0.449,0.755,0.755,0,0,0.186 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.0743 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.112 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.0743 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0743 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.297 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.274 +1,0.183,0.183,0.25,0.4,0,0,0.391,0.572,0.572,0.536,0,0 +1,0.192,0.192,0,0.4,0,0,0.33,0.579,0.579,0.531,0,0 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0.558,0,0.0372 +1,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0.655,0,0.112 +1,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.186 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.112 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.294 +0.667,0.315,0.315,0,0,0.733,0,0.375,0.705,0.705,0,0.384,0.192 +0.667,0.343,0.343,0,0,0.95,0,0.384,0.73,0.73,0,0,0.0372 +0.667,0.418,0.418,0,0,0,0.517,0.449,0.755,0.755,0,0,0.149 +0.667,0.548,0.548,0,0,0,0.833,0.58,0.805,0.805,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0743 +0.667,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.0951 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.0372 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.492 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0743,0.0743,0.25,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.75,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.183,0.183,0.283,0,0,0,0.391,0.572,0.572,0,0,0.162 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0827 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.248 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.148 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.149 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.186 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.223 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.186 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0743 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.419 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.149 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0744 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.162 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0928 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.149 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.307,0.307,0.5,0,0,0,0.503,0.604,0.604,0,0,0.284 +0.667,0.43,0.43,0.0167,0,0,0,0.729,0.717,0.717,0,0,0.124 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.464 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.0458 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.45,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0.05,0,0,0,0.374,0.543,0.543,0,0,0.228 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.258 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.142 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.149 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.223 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.372 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.112 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.226 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.158 +1,0.442,0.442,0.95,0,0,0,0.64,0.658,0.658,0,0,0.0372 +1,0.183,0.183,0.583,0,0,0,0.555,0.608,0.608,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.122 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.438 +0.667,0.181,0.181,0.25,0,0,0,0.392,0.574,0.574,0,0,0.166 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.518 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.19 +0.667,0.328,0.328,0.2,0,0,0,0.311,0.696,0.696,0,0,0.252 +0.667,0.316,0.316,0.567,0,0,0,0.321,0.709,0.709,0,0,0.173 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0743 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0372 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0743 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.335 +0.333,0.322,0.322,0.25,0,0,0,0.468,0.644,0.644,0,0,0.112 +0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0372 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.207 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.192 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.303 +0.333,0.193,0.193,0.383,0,0,0,0.28,0.581,0.581,0,0,0.154 +0.333,0.189,0.189,0.117,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0.117,0,0.289,0.587,0.587,0,0.22,0.0372 +0.333,0.178,0.178,0,0,0.383,0.0833,0.284,0.593,0.593,0,0.494,0.186 +0.333,0.177,0.177,0,0,0,0.167,0.303,0.593,0.593,0,0.453,0.0372 +0.333,0.178,0.178,0.25,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.112 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0743 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0372 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.149 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.297 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.149 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0743 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.166 +1,0.313,0.313,0.883,0,0,0,0.527,0.683,0.683,0,0,0.297 +0.667,0.33,0.33,0.383,0,0,0,0.405,0.696,0.696,0,0,0.114 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0372 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0372 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.0372 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0372 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.112 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0743 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.294 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.318 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.284 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.438 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0372 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.139 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.247 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.549 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.288 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0743 +0.667,0.307,0.307,0,0.6,0,0,0.311,0.721,0.721,0.839,0,0.223 +0.333,0.0495,0.0495,0,0.45,0,0,0.258,0.465,0.465,0.0965,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.143,0,0.223 +0.333,0.0495,0.0495,0.2,0.783,0,0,0.258,0.465,0.465,0.594,0,0.223 +0.667,0.322,0.322,0.3,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.0743 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.0743 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.0867 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0372 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.26 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.195 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.196 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.0372 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.354 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.349 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0692 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.227 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.125 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.186 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.149 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0743 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.223 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0372 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.154 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.108 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.158 +0.333,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.309 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.231 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.306 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.125 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0.223 +0.667,0.313,0.313,0.5,0,0,0,0.527,0.683,0.683,0,0,0.149 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.511 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.417 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.372 +0.667,0.316,0.316,0.25,0,0,0,0.321,0.709,0.709,0,0,0.112 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.0372 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.219 +0.333,0.208,0.208,0.25,0,0,0,0.355,0.612,0.612,0,0,0.0743 +0.667,0.466,0.466,0.2,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.595,0.595,0.05,0,0,0,0.677,0.822,0.822,0,0,0.149 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.0743 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.231 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.186 +0.667,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0.2,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0.567,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.168 +0.667,0.307,0.307,0,0,0.25,0,0.377,0.709,0.709,0,0.219,0.296 +0.667,0.322,0.322,0,0,0,0.65,0.386,0.734,0.734,0,0.722,0.116 +0.667,0.367,0.367,0,0,0,0.917,0.452,0.759,0.759,0,0.569,0.284 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.424,0.107 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0.318,0.0743 +0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.149 +0.667,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.0372 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.149 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.187 +0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.188 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0511 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.291 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.275 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.281 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0372 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.335 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0372 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.0743 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.112 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.0489 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.463 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0466 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.0847 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.187 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0.383,0,0,0,0.289,0.587,0.587,0,0,0.112 +0.667,0.307,0.307,0.117,0,0,0,0.311,0.721,0.721,0,0,0.112 +0.667,0.305,0.305,0.25,0,0,0,0.349,0.721,0.721,0,0,0.186 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.112 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0372 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0372 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.0743 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.297 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.112 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0743 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0829,0.0829,0.817,0,0,0,0.341,0.518,0.518,0,0,0.112 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.352 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.236 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.124 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0743 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.67,0.67,0.05,0,0,0,0.715,0.784,0.784,0,0,0.112 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0743 +0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0172 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.186 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.0743 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.0743 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.223 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.149 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0.35,0.433,0,0.303,0.593,0.593,0.503,0.373,0.112 +0.333,0.178,0.178,0,0.433,0.0667,0.25,0.317,0.587,0.587,0,0.472,0.0372 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.569,0.0372 +0.333,0.208,0.208,0.5,0,0,0,0.355,0.612,0.612,0,0,0.112 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0372 +0.667,0.595,0.595,0.45,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.67,0.67,0.05,0,0,0,0.715,0.784,0.784,0,0,0.112 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0372 +0.667,0.501,0.501,0,0,0.25,0,0.734,0.721,0.721,0,0.0627,0.348 +1,0.442,0.442,0,0,0,0.65,0.64,0.658,0.658,0,0,0.318 +1,0.0495,0.0495,0,0,0,0.667,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.38 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.202 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.389 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.452 +1,0.337,0.337,0.2,0,0,0,0.302,0.696,0.696,0,0,0.377 +0.667,0.328,0.328,0.3,0,0,0,0.311,0.696,0.696,0,0,0.149 +0.333,0.183,0.183,0.2,0,0,0,0.289,0.587,0.587,0,0,0.112 +0.667,0.307,0.307,0.567,0,0,0,0.311,0.721,0.721,0,0,0.0372 +0.667,0.305,0.305,0.2,0,0,0,0.349,0.721,0.721,0,0,0.0372 +0.333,0.178,0.178,0.3,0,0,0,0.317,0.587,0.587,0,0,0.297 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0743 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.112 +0.333,0.258,0.258,0.767,0,0,0,0.421,0.637,0.637,0,0,0.399 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0992 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.171 +0.667,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.0372 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.0372 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.173 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.251,0.251,0.25,0,0,0,0.49,0.621,0.621,0,0,0.149 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.254 +0.333,0.189,0.189,0.2,0,0,0,0.284,0.581,0.581,0,0,0.0743 +0.333,0.183,0.183,1,0,0,0,0.289,0.587,0.587,0,0,0.112 +0.333,0.178,0.178,1,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,1,0,0,0,0.303,0.593,0.593,0,0,0.0372 +0.333,0.178,0.178,0.133,0,0,0,0.317,0.587,0.587,0,0,0.112 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0372 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.294 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.387 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.185 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.404 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.302 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0.3,0,0,0,0.374,0.543,0.543,0,0,0.118 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.111 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.124 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.149 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.186 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.26 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.112 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.26 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.149 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.0372 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.223 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.116 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.223 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.112 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0372 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.112 +0.667,0.322,0.322,0.25,0,0,0,0.386,0.734,0.734,0,0,0.0372 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.223 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.223 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0743 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0.147,0,0.0743 +0.667,0.625,0.625,0,0.783,0,0,0.753,0.746,0.746,0.401,0,0.0743 +0.667,0.501,0.501,0,0.267,0,0,0.734,0.721,0.721,0,0,0.0372 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.157 +0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.107 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.306 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.105 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.57 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.424 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.383 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +0.667,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.185 +0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.0743 +0.333,0.36,0.36,0.767,0,0,0,0.486,0.625,0.625,0,0,0.149 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0823 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.213 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.244 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.151 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.112 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.368 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.366 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.225 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.124 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0.1,0,0,0.258,0.465,0.465,0.306,0,0.186 +1,0.526,0.526,0,0.95,0,0,0.549,0.906,0.906,0.724,0,0.0372 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0.49,0,0.0743 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0743 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.112 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.0372 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.412 +0.667,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0513,0.0513,0.25,0,0,0,0.327,0.511,0.511,0,0,0.201 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.195 +1,0.351,0.351,0,0,0.25,0,0.606,0.698,0.698,0,0.398,0.347 +1,0.444,0.444,0,0,0,0.65,0.662,0.792,0.792,0,0.534,0.0718 +0.333,0.19,0.19,0,0,0,0.667,0.331,0.581,0.581,0,0.728,0.112 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0.748,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0.338,0.0372 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0.616,0.0743 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.714,0.0852 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.578,0.0743 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.433,0.0372 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0743 +0,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0.217 +0.333,0.258,0.258,0.3,0,0,0,0.421,0.637,0.637,0,0,0.223 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.0743 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.149 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.165 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.537 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.0867 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.0978 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.454 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.161 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.273 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.228 +0.333,0.178,0.178,0.2,0.6,0.183,0,0.284,0.593,0.593,0.848,0.295,0.112 +0.667,0.305,0.305,0.05,0.183,0.0667,0.25,0.349,0.721,0.721,0,0.599,0.0767 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0.208 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.149 +0.667,0.367,0.367,0.45,0,0,0,0.452,0.759,0.759,0,0,0.112 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0,0.0372 +0.667,0.595,0.595,0.0833,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.46 +0.667,0.625,0.625,0,0,0.25,0,0.753,0.746,0.746,0,0.0841,0.0372 +1,0.727,0.727,0,0,0,0.65,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0,0,0,0.917,0.831,0.755,0.755,0,0,0.295 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.389 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.108 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.328 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0.683,0,0.258,0.465,0.465,0,0.462,0.0743 +0.333,0.186,0.186,0,0,1,0,0.322,0.6,0.6,0,0.737,0.26 +0.333,0.208,0.208,0,0,0.0833,0.25,0.355,0.612,0.612,0,0.576,0 +0.333,0.258,0.258,0.5,0,0,0,0.421,0.637,0.637,0,0.378,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0372 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.149 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0743 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.112 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.121 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.2 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.305 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.284 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.234 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.48 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.1 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.249 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.372 +0.333,0.186,0.186,0.25,0,0,0,0.322,0.6,0.6,0,0,0.112 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0372 +0.333,0.258,0.258,0,0,0.5,0,0.421,0.637,0.637,0,0.687,0.0372 +0.333,0.322,0.322,0,0,0,0.25,0.468,0.644,0.644,0,0.453,0.483 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0.474,0.297 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0.336,0.149 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0.43,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.0525 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0.258 +1,0.099,0.099,0.5,0,0.367,0,0.461,0.595,0.595,0,0.353,0.0642 +1,0.066,0.066,0,0,0.383,0.0833,0.433,0.57,0.57,0,0.656,0 +1,0.0495,0.0495,0,0,0,1,0.346,0.511,0.511,0,0.131,0 +1,0.0495,0.0495,0,0,0,0.483,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0.383,0,0,0,0.341,0.518,0.518,0,0,0.223 +1,0.15,0.15,0.117,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.183 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.329 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.109 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0372 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0.0965,0,0.0743 +0.667,0.466,0.466,0,0.783,0,0,0.584,0.809,0.809,0.764,0,0 +0.667,0.595,0.595,0,0.267,0,0,0.677,0.822,0.822,0,0,0.112 +0.333,0.36,0.36,0.633,0,0,0,0.486,0.625,0.625,0,0,0.169 +1,0.913,0.913,0.383,0,0,0,1,0.887,0.887,0,0,0.215 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.197 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.206 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.133 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0516 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.281 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.174 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.536 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.138 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.37 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.428 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.646 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.187 +0.667,0.186,0.186,0.383,0,0,0,0.322,0.6,0.6,0,0,0.0743 +0.667,0.208,0.208,0.117,0,0,0,0.355,0.612,0.612,0,0.164,0.0372 +0.667,0.466,0.466,0,0,0.25,0.0833,0.584,0.809,0.809,0,0.37,0.0372 +0.667,0.595,0.595,0,0,0,0.167,0.677,0.822,0.822,0,0,0.112 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0.1,0,0 +0.667,0.625,0.625,0,0.783,0,0,0.753,0.746,0.746,0.822,0,0.0372 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0.59,0,0.186 +0.667,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0.772,0,0.0372 +0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0.536,0.208,0 +0.667,0.0743,0.0743,0,0,0.567,0,0.36,0.53,0.53,0,0.494,0.0372 +0.667,0.0578,0.0578,0,0,0,0.783,0.346,0.518,0.518,0,0.344,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0.778,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0.528,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.125 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.28 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.149 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0372 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.223 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.26 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0743 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.186 +1,0.246,0.246,0.5,0,0,0,0.449,0.562,0.562,0,0,0.0372 +1,0.116,0.116,0,0,0.183,0,0.407,0.537,0.537,0,0.265,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0.35,0,0,0.258,0.465,0.465,0.163,0,0.147 +1,0.313,0.313,0,0.7,0,0,0.527,0.683,0.683,0,0,0.16 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.112 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.186 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.223 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.307,0.307,0.25,0,0,0,0.377,0.709,0.709,0,0,0.196 +0.667,0.322,0.322,0,0.6,0,0,0.386,0.734,0.734,0.842,0,0.0743 +0.667,0.367,0.367,0,0.183,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.149 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.112 +0.667,0.67,0.67,0,0.1,0,0,0.715,0.784,0.784,0.312,0,0.0372 +1,0.913,0.913,0,0.95,0,0,1,0.887,0.887,0.601,0,0.0376 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.0372 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0683 +1,0.15,0.15,0.45,0,0,0,0.374,0.543,0.543,0,0,0.159 +1,0.181,0.181,0.317,0,0,0,0.392,0.574,0.574,0,0,0.145 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.556 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.231 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.418 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.109 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.26 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.0372 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.16 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.195 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.226 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.238 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.29 +0.667,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.223 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.113 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0743 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.333,0.171,0.171,0.233,0,0,0,0.261,0.534,0.534,0,0,0.112 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.112 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.477 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0743 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.36 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.328 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.411 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.546 +0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.295 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.534 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.385 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0.128,0,0.0372 +1,0.426,0.426,0,0.9,0,0,0.278,0.656,0.656,0.573,0,0.0372 +0.667,0.292,0.292,0,0.117,0,0,0.264,0.602,0.602,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.149 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.186 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0743 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.149 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.202 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.407 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.339 +0.667,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.446 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0.233,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.0743 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0941 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.304 +0.667,0.312,0.312,0.333,0,0,0,0.264,0.582,0.582,0,0,0.0884 +0.667,0.3,0.3,0.15,0,0,0,0.271,0.592,0.592,0,0,0.132 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.153 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.584 +0.333,0.17,0.17,0,0.233,0,0,0.287,0.529,0.529,0.583,0,0.124 +0.667,0.298,0.298,0,0.533,0,0,0.323,0.612,0.612,0.692,0,0.26 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0.43,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.331,0.331,0.0833,0,0,0,0.42,0.559,0.559,0,0,0 +0.667,0.635,0.635,0.4,0,0,0,0.613,0.622,0.622,0,0,0.15 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0743 +0.667,0.185,0.185,0.0833,0,0,0,0.257,0.524,0.524,0,0,0.163 +0.667,0.312,0.312,0.15,0,0,0,0.264,0.582,0.582,0,0,0.0721 +1,0.426,0.426,0.483,0,0,0,0.278,0.656,0.656,0,0,0.217 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.0546 +1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0.364 +1,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.26 +1,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0372 +1,0.326,0.326,0.0833,0,0,0,0.375,0.632,0.632,0,0,0.292 +1,0.395,0.395,0.633,0,0,0,0.479,0.672,0.672,0,0,0.193 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.149 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.149 +0.667,0.635,0.635,0,0.733,0,0,0.613,0.622,0.622,0.774,0,0.262 +0.667,0.555,0.555,0,0.0333,0,0,0.598,0.602,0.602,0,0,0.0773 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.335 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.252 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.116 +0.333,0.177,0.177,0.967,0,0,0,0.346,0.519,0.519,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.186 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0.233,0,0,0,0.261,0.534,0.534,0,0,0.112 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.149 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.186 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.138 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.583 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.336 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.15 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.159 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.113 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.145 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.315 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.274 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.169,0.169,0.75,0,0,0,0.276,0.534,0.534,0,0,0.0372 +1,0.41,0.41,0.217,0,0,0,0.345,0.656,0.656,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0743 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.186 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.313 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.266 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.494 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.401 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.239 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0706 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.187 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.137 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.26 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.254 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.194 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.172 +0.333,0.0495,0.0495,0.25,0,0.233,0,0.258,0.465,0.465,0,0.176,0.0743 +0.667,0.289,0.289,0.233,0,0.25,0.217,0.294,0.602,0.602,0,0.619,0.0743 +1,0.41,0.41,0,0,0,1,0.345,0.656,0.656,0,0.638,0.48 +1,0.422,0.422,0,0,0,0.333,0.356,0.686,0.686,0,0.615,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.437,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.463,0.186 +0.667,0.507,0.507,0.25,0,0,0,0.553,0.682,0.682,0,0.00917,0 +0.667,0.613,0.613,0.233,0,0,0,0.583,0.652,0.652,0.148,0,0.223 +0.667,0.635,0.635,0,0.9,0,0,0.613,0.622,0.622,0.538,0,0.112 +0.667,0.555,0.555,0,0.117,0,0,0.598,0.602,0.602,0,0,0.0743 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0743 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0654 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0.483,0,0.233,0,0.331,0.494,0.494,0,0.411,0 +0.667,0.305,0.305,0,0,0,0.967,0.435,0.572,0.572,0,0.339,0.32 +0.667,0.318,0.318,0,0,0,0.583,0.338,0.582,0.582,0,0.106,0.174 +0.333,0.185,0.185,0,0,0.233,0,0.257,0.524,0.524,0,0.489,0.334 +0.333,0.181,0.181,0,0,0,0.25,0.261,0.524,0.524,0,0.56,0.0743 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0.537,0.149 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.664,0.0743 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.567,0.0372 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.131,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.343 +0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0.112 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.186 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.149 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.149 +0.333,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.117 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0.483,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.278,0 +0.333,0.181,0.181,0,0,1,0,0.261,0.524,0.524,0,0.384,0.0372 +0.333,0.175,0.175,0,0,0,0.467,0.265,0.529,0.529,0,0.339,0 +0.333,0.171,0.171,0,0,0,0.05,0.261,0.534,0.534,0,0.347,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.174,0.174,0.233,0,0,0,0.29,0.539,0.539,0,0,0.297 +0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0.15,0,0,0.553,0.682,0.682,0.393,0,0.112 +0.333,0.331,0.331,0,0.35,0,0,0.42,0.559,0.559,0.382,0,0.149 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.125 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.301 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.118 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0858 +0.667,0.185,0.185,0.333,0,0,0,0.257,0.524,0.524,0,0,0.255 +0.333,0.181,0.181,0.15,0,0,0,0.261,0.524,0.524,0,0,0.0168 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.224 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0496 +0.333,0.169,0.169,0.0833,0.233,0,0,0.276,0.534,0.534,0.419,0,0.305 +0.667,0.17,0.17,0.4,0.533,0,0,0.287,0.529,0.529,0.165,0,0.0743 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.112 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.26 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.149 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.176 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.0372 +0.667,0.635,0.635,0.333,0,0,0,0.613,0.622,0.622,0,0,0.112 +0.667,0.555,0.555,0.15,0,0,0,0.598,0.602,0.602,0,0,0.07 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.112 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.171 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.248 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.154 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.279 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.316 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.302 +1,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.248 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.14 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.552 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.112 +0,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.174,0.174,0.4,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0372 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.38 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.0897 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.186 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.112 +0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.0743 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.0372 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.149 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.196 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.408 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.193 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.311 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0372 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.26 +0.667,0.395,0.395,0.717,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.0372 +0.667,0.613,0.613,0,0,0.233,0,0.583,0.652,0.652,0,0.318,0.0372 +0.667,0.635,0.635,0,0,0.75,0,0.613,0.622,0.622,0,0,0.0372 +0.667,0.555,0.555,0,0,0,0.717,0.598,0.602,0.602,0,0,0.0372 +0.667,0.2,0.2,0,0,0,0.317,0.391,0.509,0.509,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0983 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.145 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.383 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.614 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.141 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.169 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.272 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +1,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.313 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.131 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.227 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.226 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.219 +1,0.895,0.895,0.967,0,0,0,0.745,0.745,0.745,0,0,0.309 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0372 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.175 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.713 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0.233,0,0,0,0.305,0.464,0.464,0,0,0.132 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.28 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.115 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.312,0.312,0.483,0,0,0,0.264,0.582,0.582,0,0,0.26 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.149 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.19 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.456 +0.333,0.17,0.17,0.233,0,0,0,0.287,0.529,0.529,0,0,0.148 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.297 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.1 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.278,0.278,0,0.4,0,0,0.405,0.574,0.574,0.599,0,0 +0.333,0.331,0.331,0,0.367,0,0,0.42,0.559,0.559,0.139,0,0.112 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.406 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.312 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.108 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.162 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.249 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.215 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.112 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.158,0,0 +0.333,0.171,0.171,0,0.9,0,0,0.261,0.534,0.534,0.473,0,0.223 +0.333,0.169,0.169,0.233,0.117,0,0,0.276,0.534,0.534,0,0,0.112 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.112 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0743 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.279 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.259 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.158 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.313 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.112 +0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0934 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.232 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.223 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.169,0.169,0.483,0,0,0,0.276,0.534,0.534,0,0,0.112 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0372 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.308 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0372 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.372 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.149 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.125 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.223 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.238 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.148 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.249 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.07 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.0372 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.186 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.149 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0743 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0743 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.128 +0.333,0.188,0.188,0.333,0,0,0,0.316,0.549,0.549,0,0,0.233 +0.667,0.395,0.395,0.15,0,0,0,0.479,0.672,0.672,0,0,0.511 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.409 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.635,0.635,0,0.233,0.483,0,0.613,0.622,0.622,0.356,0.427,0.372 +1,0.807,0.807,0,0.783,0,0.8,0.768,0.671,0.671,0.607,0,0.268 +1,0.5,0.5,0,0,0,0.233,0.656,0.596,0.596,1,0,0.142 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.406,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0954 +1,0.318,0.318,0,0,0.567,0,0.338,0.582,0.582,0,0.0612,0.1 +0.667,0.321,0.321,0,0,0.167,0.3,0.257,0.582,0.582,0,0,0.168 +0.333,0.181,0.181,0,0,0,1,0.261,0.524,0.524,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0.25,0.258,0.465,0.465,0,0,0.186 +0.333,0.171,0.171,0,0,0.0667,0,0.261,0.534,0.534,0,0.0489,0.0372 +0.333,0.169,0.169,0,0,0.417,0.05,0.276,0.534,0.534,0,0.55,0.0372 +0.333,0.17,0.17,0,0,0,0.2,0.287,0.529,0.529,0,0.404,0.195 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.555,0.312 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.569,0.431 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0.609,0.0776 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0.3,0.332 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.283,0.505 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.297 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.0743 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.274 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.111 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0983 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.283 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.126 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0633 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.297 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.326,0.326,0.5,0,0,0,0.375,0.632,0.632,0,0,0.328 +0.333,0.222,0.222,0.467,0,0,0,0.368,0.569,0.569,0,0,0.0372 +0.333,0.278,0.278,0.75,0,0,0,0.405,0.574,0.574,0,0,0.112 +0.667,0.613,0.613,0.217,0,0,0,0.583,0.652,0.652,0,0,0.297 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0743 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.157 +0.333,0.177,0.177,0.233,0,0,0,0.346,0.519,0.519,0,0,0.118 +0.333,0.184,0.184,0.717,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0743 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.112 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0743 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.181 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.387 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0372 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0372 +0.333,0.188,0.188,0.483,0,0,0,0.316,0.549,0.549,0,0,0.335 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.0372 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.149 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0372 +0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.361 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.717,0,0,0,0.305,0.464,0.464,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.28 +0.667,0.318,0.318,0.483,0,0,0,0.338,0.582,0.582,0,0,0.252 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0531 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0372 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0372 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.223 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0372 +0.667,0.395,0.395,0.483,0,0,0,0.479,0.672,0.672,0,0,0.149 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.0743 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.112 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.41 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0969 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.319 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.306 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.206 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.372 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.16 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.171 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.463 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0372 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.186 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.12 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0.122,0,0.347 +0.667,0.395,0.395,0,0.9,0,0,0.479,0.672,0.672,0.751,0,0.571 +0.667,0.507,0.507,0,0.117,0,0,0.553,0.682,0.682,0.72,0,0.0744 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.475,0,0.0372 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.724,0,0.223 +0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0.724,0,0 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0.288,0,0.13 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.332 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0855 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.115 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0.233,0,0,0,0.405,0.523,0.523,0,0,0.266 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.264 +1,0.318,0.318,0,0.15,0,0,0.338,0.582,0.582,0.419,0,0.0925 +1,0.456,0.456,0,0.35,0,0,0.256,0.641,0.641,0.57,0,0.096 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.162 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0.117,0,0.186 +0.667,0.289,0.289,0,0.9,0,0,0.294,0.602,0.602,0.577,0,0.186 +0.667,0.29,0.29,0,0.117,0,0,0.316,0.592,0.592,0,0,0.0372 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.149 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.149 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.25 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0738 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.255 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.257 +1,0.35,0.35,0.233,0,0,0,0.524,0.553,0.553,0,0,0.149 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.112 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.0372 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.181 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.157 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0.258,0,0 +0.333,0.169,0.169,0,0.983,0,0,0.276,0.534,0.534,0.455,0,0.112 +0.333,0.17,0.17,0.233,0.0333,0,0,0.287,0.529,0.529,0.885,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0.18,0,0.0372 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.0743 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.223 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.149 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.26 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.0372 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.131 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.427 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.323 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.237 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.127 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.171,0.171,0.233,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.485 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.19 +1,0.567,0.567,0.333,0,0,0,0.59,0.775,0.775,0,0,0.186 +0.667,0.507,0.507,0.383,0,0,0,0.553,0.682,0.682,0,0,0.296 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.335 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0712 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.16 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.016 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.177,0.177,0.483,0,0,0,0.346,0.519,0.519,0,0,0.0832 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0372 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.112 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.0372 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.186 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0.733,0,0.29,0.539,0.539,0,0.457,0 +0.667,0.326,0.326,0,0,0,0.467,0.375,0.632,0.632,0,0.445,0.0372 +0.667,0.395,0.395,0,0.4,0,0.05,0.479,0.672,0.672,0.737,0.0352,0.297 +0.667,0.507,0.507,0.233,0.617,0,0,0.553,0.682,0.682,0.777,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.282,0,0.26 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.26 +0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.26 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.118 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0.483,0,0.305,0.474,0.474,0,0.462,0.17 +1,0.147,0.147,0,0,0,0.717,0.331,0.494,0.494,0,0.483,0.473 +0.667,0.305,0.305,0,0,0,0.317,0.435,0.572,0.572,0,0.595,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0.304,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0.347,0.26 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.0372 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.102 +0.667,0.292,0.292,0,0,0.233,0,0.264,0.602,0.602,0,0.488,0.0743 +0.333,0.169,0.169,0,0,0,0.517,0.276,0.534,0.534,0,0.815,0.0372 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.445,0.26 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.186 +0.667,0.395,0.395,0.233,0.4,0,0,0.479,0.672,0.672,0.473,0,0.166 +0.667,0.278,0.278,0,0.367,0,0,0.405,0.574,0.574,0.0909,0,0.462 +1,0.895,0.895,0,0,0.483,0,0.745,0.745,0.745,0,0.206,0.419 +1,0.928,0.928,0,0,0,0.717,0.79,0.701,0.701,0,0,0.314 +1,0.555,0.555,0,0,0,0.05,0.598,0.602,0.602,0,0,0.075 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.119 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0858 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0846 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0372 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.149 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.112 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.112 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.188 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0743 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.276 +0.667,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.202 +1,0.124,0.124,0,0,0,0,0.445,0.522,0.522,0,0,0.181 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.368 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.0648 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.051,0.051,0.483,0,0,0,0.294,0.469,0.469,0,0,0.318 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.138 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0.233,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0372 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.326,0.326,0.5,0,0,0,0.375,0.632,0.632,0,0,0.327 +0.667,0.395,0.395,0.217,0,0,0,0.479,0.672,0.672,0,0,0.0372 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.0743 +1,0.895,0.895,0.233,0,0,0,0.745,0.745,0.745,0,0,0.0372 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.149 +0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.309 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.131 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.0893 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0.195 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0372 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.112 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.149 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0743 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0372 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0372 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.26 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.112 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.26 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.0372 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.231 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.195 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.356 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.717,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.184,0.184,0.333,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.321,0.321,0.15,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0372 +1,0.426,0.426,0,0,0.233,0,0.278,0.656,0.656,0,0.479,0.254 +0.333,0.171,0.171,0,0,0,0.517,0.261,0.534,0.534,0,0.312,0.112 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.317,0.372 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0.0887,0.223 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0743 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.223 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.415 +0.333,0.331,0.331,0.233,0,0,0,0.42,0.559,0.559,0,0,0.338 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.326 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.247 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.063 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.44 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0978 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0729 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.112 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.149 +1,0.274,0.274,0.467,0,0,0,0.374,0.63,0.63,0,0,0.223 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.112 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.0743 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.26 +1,0.783,0.783,0,0.2,0,0,0.787,0.698,0.698,0.451,0,0 +1,0.88,0.88,0,0.783,0,0,0.765,0.668,0.668,0.759,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0.79,0,0.478 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0.618,0,0.236 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.453,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0.5,0,0,0,0.331,0.493,0.493,0,0,0.158 +1,0.417,0.417,0.2,0,0,0,0.521,0.623,0.623,0,0,0.41 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0.167 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.19 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.215 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.159,0.159,0,0,0.25,0,0.275,0.533,0.533,0,0.401,0.0743 +0.333,0.159,0.159,0,0,0,0.7,0.286,0.528,0.528,0,0.277,0 +0.333,0.159,0.159,0,0,0,0.783,0.29,0.538,0.538,0,0.416,0.0651 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0.401,0.227 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0.763,0.104 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0.739,0.329 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.595,0.149 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0.453,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.381 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.534 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.172 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.261 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.199 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.246 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.637 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.297 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0.467,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.112 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.112 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.149 +0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.134 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.114 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.174 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.254 +0.667,0.295,0.295,0,0,0.233,0,0.433,0.571,0.571,0,0.242,0.363 +0.667,0.301,0.301,0,0,0.533,0,0.337,0.581,0.581,0,0.546,0.0969 +1,0.424,0.424,0,0,0,0.233,0.255,0.638,0.638,0,0.159,0.243 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.112 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.186 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0.233,0,0,0,0.316,0.548,0.548,0,0,0.0372 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.0743 +0.333,0.194,0.194,0,0,0.733,0,0.405,0.572,0.572,0,0.648,0.112 +0.333,0.239,0.239,0,0,0.55,0,0.419,0.558,0.558,0,0.419,0.112 +0.333,0.294,0.294,0,0,0,0.917,0.434,0.543,0.543,0,0.0749,0.339 +0.667,0.603,0.603,0.25,0,0,0.317,0.596,0.6,0.6,0,0,0.234 +1,0.415,0.415,0.45,0,0,0,0.522,0.551,0.551,0,0,0.231 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.172 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.183 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.0852 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0835 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0864 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.138 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.24 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.164,0.164,0.233,0,0,0,0.264,0.528,0.528,0,0,0.112 +0.667,0.271,0.271,0.467,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.0932 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.248 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.479 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0743 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.517 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.0743 +0.333,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0645 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.206 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.182 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.149 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0372 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.297 +1,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.0372 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.0372 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.149 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.162 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.159 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.428 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.298 +0.333,0.17,0.17,0.467,0,0,0,0.26,0.523,0.523,0,0,0.149 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0743 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.297 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.333,0.162,0.162,0.05,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0.417,0,0,0,0.368,0.568,0.568,0,0,0.0743 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.223 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.362 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.188 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.432 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.115 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.354 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0.281,0,0.151 +0.667,0.299,0.299,0,0.733,0,0,0.256,0.581,0.581,0.353,0,0.112 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.245 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.248 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.297 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.186 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.0372 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.149 +0.333,0.17,0.17,0.233,0,0,0,0.368,0.568,0.568,0,0,0.223 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.297 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.149 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.603,0.603,0,0,0.517,0,0.596,0.6,0.6,0,0.428,0 +0.667,0.415,0.415,0,0,0,0.483,0.522,0.551,0.551,0,0.391,0.0743 +1,0.183,0.183,0,0,0,0.75,0.455,0.511,0.511,0,0.119,0 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.116 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.102 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.238 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0.5,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0.2,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0.233,0,0,0,0.368,0.568,0.568,0,0,0.149 +0.667,0.339,0.339,0,0.4,0,0,0.551,0.68,0.68,0.562,0,0.385 +0.667,0.429,0.429,0,0.583,0,0,0.581,0.65,0.65,0.226,0,0.283 +0.667,0.538,0.538,0.233,0,0,0,0.61,0.62,0.62,0,0,0.477 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0372 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0659 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.262 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.182 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0858 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0743 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0743 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0372 +0.333,0.16,0.16,0.467,0,0.233,0,0.26,0.533,0.533,0,0.211,0.112 +0.667,0.269,0.269,0,0,0.0167,0.45,0.293,0.6,0.6,0,0.226,0.112 +0.667,0.268,0.268,0,0,0,0.533,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.223 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.194,0.194,0.7,0,0,0,0.405,0.572,0.572,0,0,0 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.149 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0743 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.376 +0.667,0.415,0.415,0.5,0,0,0,0.522,0.551,0.551,0,0,0.384 +1,0.116,0.116,0.2,0,0,0,0.357,0.488,0.488,0,0,0.186 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.22 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.349 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.45 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.202 +1,0.394,0.394,0.233,0,0,0,0.277,0.653,0.653,0,0,0.243 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.186 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.112 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0794 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0372 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.149 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.186 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.186 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.186 +0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.0372 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.158 +1,0.295,0.295,0.25,0,0,0,0.433,0.571,0.571,0,0,0.0543 +0.667,0.301,0.301,0.45,0,0,0,0.337,0.581,0.581,0,0,0.168 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.252 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.117 +1,0.394,0.394,0.233,0.4,0,0,0.277,0.653,0.653,0.484,0,0.201 +0.667,0.271,0.271,0,0.583,0,0,0.263,0.6,0.6,0.727,0,0.194 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0.338,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.269,0.269,0.467,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0743 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.484,0.484,0.233,0,0,0,0.698,0.787,0.787,0,0,0.112 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.186 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.149 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0372 +0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.357 +0.667,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.37 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.186 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.252 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.2 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.213 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.297 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.186 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.26 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.297 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.103 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.499 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.204 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.44 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.217 +0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.178 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.175,0.175,0.05,0,0,0,0.297,0.523,0.523,0,0,0.0788 +1,0.299,0.299,0.183,0,0,0,0.256,0.581,0.581,0,0,0.216 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.292 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.706 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.192 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.197 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.223 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0743 +0.333,0.17,0.17,0.55,0,0,0,0.368,0.568,0.568,0,0,0.149 +0.333,0.194,0.194,0.383,0,0,0,0.405,0.572,0.572,0,0,0.186 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.112 +0.333,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0.112 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0743 +0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.137 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.39 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.251 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.163 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.333 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.26 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0743 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.409 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.372 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0372 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.223 +0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.106 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.11,0.11,0.233,0,0,0,0.352,0.482,0.482,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.201 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.231 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0496 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0743 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.335 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.112 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.112 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.186 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.339,0.339,0.75,0,0,0,0.551,0.68,0.68,0,0,0.149 +0.667,0.429,0.429,0.417,0,0,0,0.581,0.65,0.65,0,0,0.0743 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0743 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.112 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.194 +1,0.295,0.295,0.2,0,0,0,0.433,0.571,0.571,0,0,0.339 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0.118 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.149 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.112 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0372 +0.333,0.159,0.159,0,0.4,0,0,0.286,0.528,0.528,0.506,0,0.0743 +0.333,0.159,0.159,0,0.583,0,0,0.29,0.538,0.538,0.135,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.147 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.193 +0.333,0.194,0.194,0.467,0,0.733,0,0.405,0.572,0.572,0,0.485,0.0743 +1,0.619,0.619,0,0,0.0333,0.433,0.742,0.742,0.742,0,0.728,0.149 +0.667,0.538,0.538,0,0,0,0.55,0.61,0.62,0.62,0,0.704,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0.585,0.0743 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0.758,0.299 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0.661,0.0721 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0.791,0.0372 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0.382,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0.511,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.512,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.33,0.33,0.233,0,0,0,0.477,0.549,0.549,0,0,0.202 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.351 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.104 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.096 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.267 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0863 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0.109,0,0.0372 +0.333,0.159,0.159,0,0.733,0,0,0.286,0.528,0.528,0.362,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.14 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.2 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.273 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.112 +0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.173 +0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0983 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0372 +0.333,0.16,0.16,0.467,0,0,0,0.26,0.533,0.533,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.186 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.199 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.187 +1,0.412,0.412,0,0,0.483,0,0.587,0.772,0.772,0,0.106,0.377 +0.667,0.339,0.339,0,0,0.0333,0.433,0.551,0.68,0.68,0,0,0.264 +0.667,0.429,0.429,0,0,0,0.3,0.581,0.65,0.65,0,0,0.533 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.682 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.22 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.223 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.112 +0.667,0.164,0.164,0,0.4,0,0,0.264,0.528,0.528,0.34,0,0.149 +0.667,0.271,0.271,0.467,0.333,0,0,0.263,0.6,0.6,0,0,0.171 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.28 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0788 +0.667,0.269,0.269,0.233,0,0,0,0.322,0.61,0.61,0,0,0.295 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0743 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.112 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.149 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.186 +0.667,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0.119,0,0.112 +0.667,0.603,0.603,0,0.733,0,0,0.596,0.6,0.6,0.529,0,0.534 +0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.0166 +0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.149 +0.667,0.291,0.291,0.233,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.26 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.186 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0743 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.112 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0,0,0.283,0,0.297,0.523,0.523,0,0.191,0.362 +1,0.299,0.299,0,0,0.233,0.233,0.256,0.581,0.581,0,0.344,0.143 +0.333,0.0495,0.0495,0,0,0,0.5,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.147 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.295 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.164 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.154 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0743 +0.667,0.291,0.291,0.05,0,0,0,0.477,0.67,0.67,0,0,0.112 +0.667,0.339,0.339,0.417,0,0,0,0.551,0.68,0.68,0,0,0.146 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.223 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.304 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0372 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.312 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.184 +1,0.0743,0.0743,0,0.4,0,0,0.32,0.483,0.483,0.614,0,0.0372 +1,0.0578,0.0578,0,0.333,0,0,0.308,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.226 +0.667,0.143,0.143,0,0,0.733,0,0.331,0.493,0.493,0,0.593,0.159 +0.667,0.172,0.172,0,0,0.3,0.167,0.345,0.518,0.518,0,0.796,0 +0.667,0.301,0.301,0,0,0,1,0.337,0.581,0.581,0,0.328,0.0743 +0.667,0.299,0.299,0,0,0,0.317,0.256,0.581,0.581,0,0,0.0743 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.112 +0.333,0.159,0.159,0.233,0,0,0,0.275,0.533,0.533,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.149 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.186 +0.333,0.17,0.17,0.233,0,0,0,0.368,0.568,0.568,0,0,0.112 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.0372 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.0372 +0.333,0.294,0.294,0,0,0,0,0.434,0.543,0.543,0,0,0.256 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.113 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.226 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0703 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.211 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.2 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.174,0.174,0.233,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.112 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.149 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.286 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.155 +0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.223 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.0743 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.223 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.112 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.226 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.107 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.131 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.309 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.102 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.223 +0.333,0.17,0.17,0.5,0,0,0,0.26,0.523,0.523,0,0,0.149 +0.333,0.164,0.164,0.2,0,0,0,0.264,0.528,0.528,0,0,0.223 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.149 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.149 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.149 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0372 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.186 +0.667,0.339,0.339,0.5,0,0,0,0.551,0.68,0.68,0,0,0.112 +0.667,0.429,0.429,0.433,0,0,0,0.581,0.65,0.65,0,0,0.149 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.339 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.127 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.238 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.28 +0.667,0.172,0.172,0.233,0,0,0,0.345,0.518,0.518,0,0,0.0566 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.106 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0743 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.149 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.223 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.112 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.169 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.258 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0528 +0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.143,0.143,0.467,0,0,0,0.331,0.493,0.493,0,0,0.149 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0743 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0743 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.266 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.107 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.0372 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.112 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.0372 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0.16,0,0 +0.667,0.429,0.429,0,0.9,0,0,0.581,0.65,0.65,0.675,0,0.0743 +0.667,0.538,0.538,0,0.0833,0,0,0.61,0.62,0.62,0,0,0.453 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.483 +0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.173 +0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.242 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.354 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.101 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.399 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.116 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0782 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.149 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.149 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.632 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.451 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0743 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0372 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.291 +0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.189 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0.309 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.296 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.091 +1,0.172,0.172,0.3,0,0,0,0.345,0.518,0.518,0,0,0.186 +1,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0.167 +0.667,0.299,0.299,0.817,0.45,0,0,0.256,0.581,0.581,0.737,0,0.0372 +0.667,0.291,0.291,0,0.0333,0,0,0.263,0.581,0.581,0.317,0,0.177 +1,0.394,0.394,0,0,0,0,0.277,0.653,0.653,0,0,0.376 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.611 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.401 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.112 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.418 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.0546 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.26 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.296 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.223 +0.667,0.232,0.232,0,0.45,0,0,0.39,0.508,0.508,0.588,0,0.0372 +1,0.116,0.116,0,0.533,0,0,0.357,0.488,0.488,0.599,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0.737,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0.167,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,0.25,0.15,0,0,0.404,0.521,0.521,0.449,0,0.0372 +0.667,0.172,0.172,0.217,0.583,0,0,0.345,0.518,0.518,0.657,0,0.0743 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0.442,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.0743 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.0372 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.317 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.121 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.28 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.231 +0.667,0.27,0.27,0.717,0,0,0,0.264,0.582,0.582,0,0,0.14 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0.233,0,0,0,0.261,0.534,0.534,0,0,0.358 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.21 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.298 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.264,0.264,0,0.15,0,0,0.479,0.672,0.672,0.362,0,0.0743 +0.333,0.173,0.173,0,0.567,0,0,0.405,0.574,0.574,0.659,0,0.186 +0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.112 +0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.126 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.155 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.35 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0624 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.435 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.157 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.375 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.395 +0.667,0.16,0.16,0.467,0.4,0,0,0.261,0.524,0.524,0.534,0,0.0372 +0.667,0.259,0.259,0,0.317,0,0,0.271,0.592,0.592,0.597,0,0.0743 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0.581,0,0.0743 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.106 +0.667,0.249,0.249,0.467,0,0,0,0.316,0.592,0.592,0,0,0.485 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.134 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.112 +0.667,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.0372 +0.667,0.296,0.296,0.5,0,0,0,0.553,0.682,0.682,0,0,0.284 +0.667,0.365,0.365,1,0,0,0,0.583,0.652,0.652,0,0,0.186 +0.667,0.464,0.464,0.9,0,0,0,0.613,0.622,0.622,0,0,0.26 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.0372 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.243 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0753 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.303 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0.661 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0507 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.112 +0.333,0.16,0.16,0,0.15,0,0,0.261,0.524,0.524,0.386,0,0.297 +0.333,0.154,0.154,0,0.567,0,0,0.265,0.529,0.529,0.319,0,0.223 +0.333,0.15,0.15,0,0,0.25,0,0.261,0.534,0.534,0,0.167,0.112 +0.333,0.149,0.149,0,0,0,0.733,0.276,0.534,0.534,0,0,0.112 +0.333,0.149,0.149,0.5,0,0,0,0.287,0.529,0.529,0,0,0.0743 +0.667,0.249,0.249,0.7,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.437 +0.667,0.264,0.264,0.233,0,0,0,0.479,0.672,0.672,0,0,0.208 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.251 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0743 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0743 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.284,0.284,1,0,0.233,0,0.435,0.572,0.572,0,0.309,0.0969 +1,0.404,0.404,1,0,1,0,0.378,0.641,0.641,0,0.206,0.537 +0.667,0.278,0.278,0.383,0,0.283,0.183,0.257,0.582,0.582,0,0.11,0.134 +0.333,0.16,0.16,0.467,0,0,0.8,0.261,0.524,0.524,0,0,0.297 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0743 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.112 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0743 +1,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.0743 +1,0.252,0.252,0.233,0,0,0,0.375,0.632,0.632,0,0,0.0372 +1,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.247 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0372 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.186 +0.667,0.464,0.464,0.467,0,0,0,0.613,0.622,0.622,0,0,0.0743 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.277 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0743 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.248 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.0832 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.398 +1,0.286,0.286,0.233,0,0,0,0.338,0.582,0.582,0,0,0.184 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0372 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0372 +0.333,0.154,0.154,0.233,0,0,0,0.265,0.529,0.529,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0.483,0,0.287,0.529,0.529,0,0.339,0.0372 +0.333,0.149,0.149,0,0,0.533,0,0.29,0.539,0.539,0,0,0.112 +0.667,0.252,0.252,0,0,0,0.933,0.375,0.632,0.632,0,0,0.0372 +0.667,0.264,0.264,0,0,0,0.55,0.479,0.672,0.672,0,0,0.149 +0.667,0.296,0.296,0.233,0,0,0,0.553,0.682,0.682,0,0,0.315 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0743 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.186 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.15 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.109 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.163 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.149,0.149,0.233,0,0,0,0.287,0.529,0.529,0,0,0.112 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.112 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.257 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0372 +0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.26 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0.717,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.087 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.19 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.277 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.229 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.241 +0.333,0.16,0.16,0.467,0,0,0,0.261,0.524,0.524,0,0,0.252 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0372 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.223 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.186 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0372 +0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.149 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0372 +0.333,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.174 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.0818 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0.548 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.101 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0743 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.149 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.112 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.309 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.268 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.26 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0743 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0743 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.143 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.0743 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.122 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.38 +1,0.402,0.402,0,0,0,0,0.523,0.626,0.626,0,0,0.241 +1,0.404,0.404,0,0,0,0,0.378,0.641,0.641,0,0,0.234 +1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0,0,0.149 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.0372 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.223 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.335 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.0743 +0.667,0.296,0.296,0.717,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0372 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.121 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.245 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.21 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.431 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0738 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.112 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.195 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.779 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.26 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0372 +0.667,0.464,0.464,0.467,0,0,0,0.613,0.622,0.622,0,0,0.212 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0743 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.111 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.143 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.134,0,0.0835 +1,0.0578,0.0578,0,0.9,0,0,0.309,0.474,0.474,0.751,0,0 +1,0.0495,0.0495,0,0.0667,0,0,0.309,0.469,0.469,0,0,0.0928 +1,0.0495,0.0495,0.5,0,0,0,0.305,0.464,0.464,0,0,0.0931 +1,0.0495,0.0495,0.45,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.286,0.286,0.467,0,0,0,0.338,0.582,0.582,0,0,0.159 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.089 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.149 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.106,0 +0.333,0.149,0.149,0,0,0.5,0,0.29,0.539,0.539,0,0,0 +1,0.353,0.353,0.467,0,0,0.95,0.434,0.715,0.715,0,0,0.149 +1,0.371,0.371,0,0.4,0,0.533,0.59,0.775,0.775,0.516,0.138,0.149 +0.667,0.296,0.296,0,0.0833,0.5,0,0.553,0.682,0.682,0,0.365,0.186 +0.667,0.365,0.365,0,0,0,0.95,0.583,0.652,0.652,0,0.638,0.0743 +1,0.671,0.671,0,0,0,0.0333,0.79,0.701,0.701,0,0.642,0.45 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0.454,0.186 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0.222,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.125 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0925 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.159 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.333,0.149,0.149,0,0,0.5,0,0.29,0.539,0.539,0,0.739,0 +0.667,0.252,0.252,0,0,0,0.7,0.375,0.632,0.632,0,0.44,0.186 +0.667,0.264,0.264,0,0,0,0.0333,0.479,0.672,0.672,0,0.176,0.112 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0.661,0.26 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0.221,0 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.223 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0837 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.164,0.164,0.217,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0743 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.304 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.23 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.152 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.299 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.335 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.0899 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.42 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.335 +0.667,0.464,0.464,0,0.4,0,0,0.613,0.622,0.622,0.662,0,0.149 +0.667,0.549,0.549,0,0.567,0,0,0.598,0.602,0.602,0.36,0,0.0372 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0372 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0942 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.07 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.249 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.0639 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.146 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.489 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.149 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0743 +0,0.0495,0.0495,0.717,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.149 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.112 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.186 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.127 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.112 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.286 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.596 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.017 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.376 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.315 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.123 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0.4,0,0,0.276,0.534,0.534,0.722,0,0 +0.333,0.149,0.149,0,0.317,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0743 +0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.442 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.55 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.335 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.172 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0743 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.301 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0712 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.176 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.26 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.215 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.183 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.167 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0743 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.255 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.374 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0372 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.107 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0578 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.269 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.216 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.096 +0.333,0.15,0.15,0,0.65,0,0,0.261,0.534,0.534,0.631,0,0 +0.333,0.149,0.149,0,0.0667,0.233,0,0.276,0.534,0.534,0.514,0.213,0.149 +0.333,0.149,0.149,0,0,0.0167,0.233,0.287,0.529,0.529,0,0.45,0.0743 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.494,0.149 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.65,0.149 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0.167,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.186 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0372 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.186 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.186 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.164 +1,0.284,0.284,1,0,0,0,0.435,0.572,0.572,0,0,0.199 +0.667,0.286,0.286,0.433,0,0,0,0.338,0.582,0.582,0,0,0.127 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.111 +0.667,0.27,0.27,0.717,0,0,0,0.264,0.582,0.582,0,0,0.637 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.499 +0.667,0.251,0.251,0.233,0,0,0,0.264,0.602,0.602,0,0,0.442 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.106 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0.263 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.363 +0.333,0.151,0.151,0.233,0,0,0,0.316,0.549,0.549,0,0,0.149 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.149 +0.333,0.173,0.173,0,0,0.733,0,0.405,0.574,0.574,0,0.393,0.328 +0.667,0.365,0.365,0,0,0.0167,0.45,0.583,0.652,0.652,0,0,0.112 +1,0.671,0.671,0,0,0,0.783,0.79,0.701,0.701,0,0,0.0743 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.164 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.107 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.515 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.212 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.147 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.372 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.157 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.225 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.409 +0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.186 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.149 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.105 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.112 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.112 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0.0371 +1,0.349,0.349,0,0,0,0,0.356,0.686,0.686,0,0,0.52 +1,0.353,0.353,0.233,0,0,0,0.434,0.715,0.715,0,0,0.339 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.243 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0743 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.458 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.378 +1,0.582,0.582,0.467,0,0,0,0.656,0.596,0.596,0,0,0.227 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.149 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.08 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.167,0.167,0.95,0,0,0,0.346,0.519,0.519,0,0,0.593 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.0372 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0743 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0372 +0.333,0.149,0.149,0.467,0,0,0,0.276,0.534,0.534,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0372 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.223 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.112 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.576 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.0683 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.275 +0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.139 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.309 +0.333,0.164,0.164,0.233,0,0,0,0.257,0.524,0.524,0,0,0.256 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0743 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0372 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.112 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.149 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.186 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.281 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0372 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.286 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.166 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.101 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.247 +0.667,0.278,0.278,0.467,0,0,0,0.257,0.582,0.582,0,0,0.203 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.0372 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.0372 +0.667,0.296,0.296,0,0.4,0,0,0.553,0.682,0.682,0.705,0,0.149 +0.667,0.365,0.365,0,0.567,0,0,0.583,0.652,0.652,0.6,0,0.268 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0.276,0,0.112 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.532 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.151 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0,0,0.233,0,0.346,0.519,0.519,0,0.379,0 +0.667,0.168,0.168,0,0,0.0167,0.233,0.298,0.524,0.524,0,0.576,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.199 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.148 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.297 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.211 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.293 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +0.667,0.296,0.296,0.233,0,0,0,0.553,0.682,0.682,0,0,0.196 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.186 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +0.667,0.227,0.227,0,0,0.483,0,0.391,0.509,0.509,0,0.246,0.0372 +1,0.183,0.183,0,0,0.533,0,0.457,0.513,0.513,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0.483,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0.75,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.284,0.284,0.45,0,0,0,0.435,0.572,0.572,0,0,0.157 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.21 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.0372 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0372 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.112 +0.333,0.149,0.149,0,0,0.25,0,0.276,0.534,0.534,0,0.404,0.0372 +0.667,0.249,0.249,0.25,0,0,0.7,0.316,0.592,0.592,0,0.505,0.0372 +0.667,0.249,0.249,0.217,0,0,0.0333,0.323,0.612,0.612,0,0.572,0.112 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.696,0.112 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0.375,0.0372 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.141,0 +0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.112 +0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.26 +0.333,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.112 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.89 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.348 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.252,0.252,0,0.65,0,0,0.375,0.632,0.632,0.547,0,0.223 +0.667,0.264,0.264,0,0.317,0,0,0.479,0.672,0.672,0,0,0.388 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.297 +0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.335 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.223 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0372 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.112 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.181 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.0372 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0372 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.112 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.306 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.278 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.438 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.112 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.26 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0743 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.0372 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.157 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.146 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.152 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.364 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.446 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.263 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.442 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0372 +0.667,0.252,0.252,0.233,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0,0.4,0,0,0.479,0.672,0.672,0.64,0,0 +0.667,0.296,0.296,0,0.317,0,0,0.553,0.682,0.682,0.291,0,0.186 +0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.0743 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0372 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.101 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.136 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.28 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.253 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.148 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.2 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.215 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.377 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.388 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.297 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.149 +0.333,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.111 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.126 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.308 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.343 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.172 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.242 +0.667,0.286,0.286,0.233,0,0,0,0.338,0.582,0.582,0,0,0.128 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.386 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.417 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.412 +0.667,0.251,0.251,0.233,0,0,0,0.264,0.602,0.602,0,0,0.149 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.297 +0.333,0.149,0.149,1,0,0,0,0.29,0.539,0.539,0,0,0.0372 +0.333,0.151,0.151,1,0,0,0,0.316,0.549,0.549,0,0,0.0743 +0.667,0.264,0.264,1,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.296,0.296,0.367,0,0,0,0.553,0.682,0.682,0,0,0.186 +0.667,0.365,0.365,0.233,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.112 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0372 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.149 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.153 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.113 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0.128,0,0.168 +0.333,0.168,0.168,0,0.9,0,0,0.298,0.524,0.524,0.681,0,0 +0.333,0.164,0.164,0,0.0667,0,0,0.257,0.524,0.524,0,0,0.112 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.418 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.194 +0.333,0.15,0.15,0.233,0,0,0,0.261,0.534,0.534,0,0,0.16 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.149,0.149,0.233,0,0,0,0.29,0.539,0.539,0,0,0.0372 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.0372 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.349 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0372 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.223 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.149 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.226 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.252 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.733,0,0.258,0.465,0.465,0,0.502,0 +0.667,0.0495,0.0495,0,0,0.0167,0.233,0.258,0.465,0.465,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.164 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0611 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.213,0,0.0372 +0.333,0.153,0.153,0,0.7,0,0,0.246,0.488,0.488,0.0965,0,0.112 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0743 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.112 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.223 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.112 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.112 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0.147,0,0.223 +0.667,0.328,0.328,0,0.7,0,0,0.5,0.569,0.569,0.432,0,0.0743 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.112 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.333,0.0495,0.0495,0,0.65,0,0,0.258,0.465,0.465,0.555,0,0.0743 +0.667,0.116,0.116,0,0.283,0,0,0.326,0.459,0.459,0,0,0.223 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.163,0.163,0.433,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.149 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.167 +0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.155 +0.667,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.109 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.195 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.539 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.355 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.446 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0372 +0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.0372 +0.333,0.189,0.189,0.233,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.149 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.334 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.15 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.115 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.112 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.235,0.235,0.25,0,0,0,0.259,0.528,0.528,0,0,0.149 +0.667,0.235,0.235,0.45,0,0,0,0.277,0.519,0.519,0,0,0.112 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0743 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.112 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.459 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.132 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.0372 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.144 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.128 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0805 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.084 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0.201 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.145 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.264 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.667,0.163,0.163,0.25,0,0,0,0.317,0.484,0.484,0,0,0.322 +0.667,0.274,0.274,0.45,0,0,0,0.296,0.511,0.511,0,0,0.319 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.209 +0,0.0495,0.0495,0.7,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.149 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.0743 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0372 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.168 +0.667,0.275,0.275,0,0.65,0,0,0.385,0.496,0.496,0.787,0,0.0743 +1,0.219,0.219,0,0.283,0,0,0.354,0.476,0.476,0.662,0,0.112 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.116 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.374 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0.4,0,0,0.296,0.511,0.511,0.603,0,0 +0.667,0.263,0.263,0,0.533,0,0,0.228,0.511,0.511,0.108,0,0.213 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0372 +0.333,0.147,0.147,0.5,0,0,0,0.249,0.492,0.492,0,0,0.186 +0.333,0.143,0.143,0.2,0,0,0,0.246,0.496,0.496,0,0,0.186 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.186 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.112 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.112 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.149 +0.667,0.273,0.273,0.467,0,0,0,0.475,0.594,0.594,0,0,0.0743 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.186 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.383 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.283,0.447,0.447,0,0,0.186 +1,0.136,0.136,0.883,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.256,0.256,0.5,0,0,0,0.234,0.511,0.511,0,0.106,0 +0.333,0.147,0.147,0.2,0,0.75,0,0.249,0.492,0.492,0,0.612,0 +0.333,0.143,0.143,0,0,0,0.7,0.246,0.496,0.496,0,0.384,0 +0.667,0.235,0.235,0,0,0,0.0167,0.259,0.528,0.528,0,0.373,0.0372 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.508,0.26 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0.502,0 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0.823,0.186 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0.463,0.223 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.52,0.186 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0.329,0.112 +0.667,0.413,0.413,0.233,0,0,0,0.525,0.544,0.544,0,0,0.0743 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.335 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.319 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.106 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.339 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.214 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.0743 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.149 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.186 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.118 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0372 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.112 +0.333,0.148,0.148,0.233,0,0,0,0.336,0.525,0.525,0,0,0.325 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.186 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.199 +0.333,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.331 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.125 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.0372 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.112 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0743 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0372 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.26 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0372 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0372 +0.667,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.368 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.41 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.171 +0.667,0.413,0.413,0,0.65,0,0,0.525,0.544,0.544,0.649,0,0.0743 +0.667,0.501,0.501,0.75,0.283,0,0,0.512,0.528,0.528,0,0,0.0372 +0.667,0.219,0.219,0.183,0,0,0,0.354,0.476,0.476,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.0694 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.112 +1,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.26 +0.333,0.144,0.144,0.467,0,0,0,0.292,0.509,0.509,0,0,0.372 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.112 +0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0.174,0,0.112 +0.667,0.328,0.328,0,0.7,0,0,0.5,0.569,0.569,0.57,0,0.136 +0.333,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0.779,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0.683,0,0.186 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.385 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.295 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.0875 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.127,0 +0,0.0495,0.0495,0,0,0.5,0,0.258,0.465,0.465,0,0.459,0.0743 +0.333,0.143,0.143,0.233,0,0,0.95,0.246,0.496,0.496,0,0.631,0 +0.333,0.142,0.142,0,0.15,0,0.25,0.258,0.496,0.496,0.443,0.323,0 +0.667,0.235,0.235,0,0.783,0,0,0.277,0.519,0.519,0.111,0,0.287 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.51 +0.667,0.144,0.144,0,0,0.233,0,0.292,0.509,0.509,0,0.237,0.483 +0.667,0.247,0.247,0,0,0.517,0,0.413,0.585,0.585,0,0.44,0.112 +0.667,0.273,0.273,0,0,0,0.95,0.475,0.594,0.594,0,0,0.282 +0.667,0.328,0.328,0,0,0,0.25,0.5,0.569,0.569,0,0,0.249 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.259 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.349 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.071 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.165 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.501 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.18 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.139,0,0.0372 +0.333,0.153,0.153,0,0.7,0,0,0.246,0.488,0.488,0.685,0,0.0372 +0.333,0.147,0.147,0.7,0,0,0,0.249,0.492,0.492,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.149 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0372 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.0743 +0.333,0.161,0.161,0,0,0.233,0,0.366,0.53,0.53,0,0.263,0.112 +0.333,0.189,0.189,0,0,0.0167,0.45,0.379,0.517,0.517,0,0.771,0.409 +0.333,0.231,0.231,0,0,0,1,0.391,0.505,0.505,0,0.101,0.47 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.445 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.409 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.222,0.222,0,0,0.233,0,0.352,0.461,0.461,0,0.232,0.163 +0.667,0.277,0.277,0,0,0.517,0,0.376,0.503,0.503,0,0.255,0.274 +0.667,0.274,0.274,0,0.4,0,0.233,0.296,0.511,0.511,0.506,0,0.124 +0.333,0.156,0.156,0,0.533,0,0,0.243,0.488,0.488,0,0,0.0372 +0.333,0.153,0.153,0,0.4,0,0,0.246,0.488,0.488,0.777,0,0.0372 +0.667,0.245,0.245,0,0.3,0,0,0.24,0.519,0.519,0,0,0.0372 +0.667,0.237,0.237,0.5,0,0,0,0.234,0.528,0.528,0,0,0.0743 +0.667,0.235,0.235,0.2,0,0,0,0.259,0.528,0.528,0,0,0.124 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0.205 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.223 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0743 +0.333,0.148,0.148,0,0,0.233,0,0.336,0.525,0.525,0,0.136,0.409 +0.667,0.273,0.273,0,0,0.767,0,0.475,0.594,0.594,0,0.572,0.0372 +0.667,0.328,0.328,0,0,0,0.7,0.5,0.569,0.569,0,0,0 +0.667,0.413,0.413,0,0,0,0.267,0.525,0.544,0.544,0,0,0.346 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.149 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.19 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.458 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.143 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.0697 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.23 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.363 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.0764 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.147,0.147,0.233,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0.467,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0372 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.365 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.301 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.149 +0.667,0.328,0.328,0,0.65,0,0,0.5,0.569,0.569,0.735,0,0.186 +0.667,0.413,0.413,0,0.283,0,0,0.525,0.544,0.544,0,0,0.111 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.0372 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.112 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.136,0.136,0.233,0,0,0,0.305,0.463,0.463,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.149 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.0372 +0.333,0.148,0.148,0.5,0,0,0,0.336,0.525,0.525,0,0,0.112 +0.667,0.273,0.273,0.683,0,0,0,0.475,0.594,0.594,0,0,0.112 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.135 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.231 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0372 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.411 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.147 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.135 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.201 +0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.0372 +0.667,0.237,0.237,0.467,0,0,0,0.234,0.528,0.528,0,0,0.297 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.179 +0.667,0.235,0.235,0,0,0.25,0,0.277,0.519,0.519,0,0.269,0.481 +0.667,0.235,0.235,0,0,0.233,0.7,0.284,0.536,0.536,0,0.445,0.316 +0.333,0.144,0.144,0,0,0.0167,0.467,0.292,0.509,0.509,0,0.274,0 +0.333,0.148,0.148,0.233,0,0,1,0.336,0.525,0.525,0,0,0.197 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.328,0.328,0.7,0,0,0,0.5,0.569,0.569,0,0,0.149 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.112 +0.333,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.223 +0.333,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.253 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.274,0.274,0.233,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.23 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.193 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.141 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.112 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.186 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0372 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.26 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0743 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.0743 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.0743 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0743 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0372 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.148 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.233 +1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0.463 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.165 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.199 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.182 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.47 +0.667,0.235,0.235,0,0,0.233,0,0.277,0.519,0.519,0,0.339,0.112 +0.667,0.235,0.235,0,0,0.517,0,0.284,0.536,0.536,0,0.0627,0.112 +0.667,0.238,0.238,0,0,0,0.95,0.327,0.552,0.552,0,0,0.0372 +0.333,0.148,0.148,0,0,0,0.25,0.336,0.525,0.525,0,0,0.0743 +0.667,0.273,0.273,0.25,0,0,0,0.475,0.594,0.594,0,0,0.186 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.231,0.231,1,0,0,0,0.391,0.505,0.505,0,0,0.0372 +0.333,0.275,0.275,0.117,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.121 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.116 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.114 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.174 +0.667,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0.0697 +0.667,0.162,0.162,0.183,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.263,0.263,0,0,0.233,0,0.228,0.511,0.511,0,0.237,0.11 +0.667,0.256,0.256,0,0,1,0,0.234,0.511,0.511,0,0.335,0.387 +0.333,0.147,0.147,0,0,0.0333,0.433,0.249,0.492,0.492,0,0,0.149 +0.333,0.143,0.143,0,0,0,0.533,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.246 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.363 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.186 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0372 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0743 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.0372 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.149 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.0372 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.136,0.136,0.25,0,0,0,0.305,0.463,0.463,0,0,0.189 +0.667,0.163,0.163,0.217,0,0,0,0.317,0.484,0.484,0,0,0.316 +0.667,0.274,0.274,0.233,0,0,0,0.296,0.511,0.511,0,0,0.432 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.254 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0905 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.112 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.335 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.149 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0743 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.0743 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0743 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.23 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0983 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.163 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.126 +0.667,0.245,0.245,0.467,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.112 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.186 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.0372 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.543 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.552 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.223 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.13 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.168 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.0516 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.0992 +0.667,0.162,0.162,0.467,0,0,0,0.277,0.488,0.488,0,0,0.163 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0.106,0,0.0372 +0.667,0.256,0.256,0,0.7,0,0,0.234,0.511,0.511,0.349,0,0.155 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0743 +0.667,0.235,0.235,0,0,0.25,0,0.277,0.519,0.519,0,0.453,0.178 +1,0.328,0.328,0,0,0,0.7,0.297,0.571,0.571,0,0,0 +0.667,0.238,0.238,0,0,0,0.0167,0.327,0.552,0.552,0,0,0.0372 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.186 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.348 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.395 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0372 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.112 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.117 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.483 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0372 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0.15,0,0,0.246,0.496,0.496,0.451,0,0.0372 +0.667,0.235,0.235,0,0.783,0,0,0.259,0.528,0.528,0.544,0,0.149 +0.333,0.142,0.142,0,0,0.25,0,0.268,0.492,0.492,0,0.55,0.0372 +0.333,0.142,0.142,0,0,0,0.95,0.271,0.501,0.501,0,0.659,0.149 +0.333,0.144,0.144,0,0,0,0.0167,0.292,0.509,0.509,0,0.489,0.335 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.167,0.447 +1,0.384,0.384,0.467,0,0,0,0.584,0.658,0.658,0,0,0.0727 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.413,0.413,0,0.4,0,0,0.525,0.544,0.544,0.61,0,0.297 +0.667,0.501,0.501,0,0.0667,0,0,0.512,0.528,0.528,0.722,0,0.0372 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0.579,0,0.3 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.104 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.124 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.116 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.425 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.241 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.223 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.297 +1,0.726,0.726,0.233,0,0,0,0.639,0.559,0.559,0,0,0.223 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.112 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.165 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.124 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.126 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.162 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.432 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.265 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0372 +0.333,0.148,0.148,0.233,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0.161,0,0.186 +0.667,0.328,0.328,0,0.7,0,0,0.5,0.569,0.569,0.566,0,0.0743 +0.333,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.0372 +0.333,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.0743 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.119 +1,0.0768,0.0768,0.467,0,0,0,0.283,0.447,0.447,0,0,0.0881 +1,0.136,0.136,0.233,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.186 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0372 +0.333,0.142,0.142,0.933,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0743 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.569 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.351 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.319 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.114 +1,0.277,0.277,0.467,0,0,0,0.376,0.503,0.503,0,0,0.228 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0,0.207 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.513 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.102 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.112 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.112 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.223 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.149 +0.667,0.238,0.238,0.233,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0372 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.149 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0743 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.26 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.112 +0.667,0.116,0.116,0.5,0,0,0,0.326,0.459,0.459,0,0,0.0743 +1,0.0743,0.0743,0.2,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.264 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0.208 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.153 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.25 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.129 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.223 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0372 +0.333,0.142,0.142,0.25,0,0,0,0.271,0.501,0.501,0,0,0.0372 +0.667,0.238,0.238,0.217,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.0372 +0.667,0.273,0.273,0.467,0,0,0,0.475,0.594,0.594,0,0,0.186 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.112 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.225 +1,0.39,0.39,0,0,0,0,0.436,0.521,0.521,0,0,0.587 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.339 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.53 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.282 +0.667,0.245,0.245,0.467,0,0,0,0.24,0.519,0.519,0,0,0.134 +0.333,0.143,0.143,0.5,0,0,0,0.246,0.496,0.496,0,0,0.0671 +0,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0.206 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.148,0.148,0.233,0,0,0,0.336,0.525,0.525,0,0,0.0743 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.141 +0.667,0.413,0.413,0.233,0,0,0,0.525,0.544,0.544,0,0,0.0372 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0372 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.137 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.108 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.329 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.35 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.71 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.52 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0773 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.405 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.118 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0743 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.149 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.149 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.185 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.149 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.16 +1,0.274,0.274,0.5,0,0,0,0.296,0.511,0.511,0,0,0.178 +0.667,0.263,0.263,0.2,0.15,0,0,0.228,0.511,0.511,0.37,0,0.0372 +0.667,0.256,0.256,0,0.783,0,0,0.234,0.511,0.511,0.476,0,0.0743 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.335 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0743 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.149 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.26 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.0372 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0743 +0.667,0.328,0.328,0.233,0,0,0,0.5,0.569,0.569,0,0,0.0372 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0743 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.141 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.102 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.112 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.229 +0.333,0.0495,0.0495,0,0,0.0667,0,0.258,0.465,0.465,0,0.242,0 +0.333,0.15,0.15,0,0,0.183,0.283,0.245,0.487,0.487,0,0.537,0.112 +0.333,0.145,0.145,0.233,0,0,0.867,0.248,0.491,0.491,0,0.489,0.112 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.379,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.379,0.0372 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.0743 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0372 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.112 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.0743 +0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.186 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0743 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.175 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.339 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.339 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0.25,0,0.245,0.495,0.495,0,0.222,0.112 +0.333,0.14,0.14,0,0,0,0.917,0.258,0.495,0.495,0,0.529,0.0372 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.495,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.784,0.0372 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0.789,0.0743 +0.667,0.242,0.242,0,0.15,0,0,0.411,0.582,0.582,0.433,0.431,0.387 +0.667,0.268,0.268,0,0.3,0,0,0.472,0.591,0.591,0.494,0.45,0.223 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0.583,0.274,0.0743 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0372 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.0972 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0721 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.336 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0708 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.234,0 +0.667,0.22,0.22,0.483,0,0.283,0.183,0.35,0.459,0.459,0,0.531,0.0589 +0.667,0.274,0.274,0.217,0,0,0.267,0.374,0.5,0.5,0.104,0.119,0.132 +0.667,0.27,0.27,0,0.9,0,0,0.294,0.508,0.508,0.712,0,0 +0.333,0.154,0.154,0,0.0167,0,0,0.242,0.487,0.487,0.818,0,0.0743 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0.792,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0.15,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.112 +0.333,0.146,0.146,0,0.4,0,0,0.334,0.524,0.524,0.631,0,0.112 +0.667,0.268,0.268,0,0.283,0,0,0.472,0.591,0.591,0.635,0,0.0743 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0.629,0,0.0743 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0.788,0,0.232 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.62,0,0.149 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0.469,0,0.149 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.398 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.2 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0823 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.426 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.206,0 +0.333,0.154,0.154,0,0,0.517,0,0.242,0.487,0.487,0,0.266,0 +0.333,0.15,0.15,0,0,0,0.217,0.245,0.487,0.487,0,0.399,0.0743 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0.385,0.0372 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.531,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.45,0.0372 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.535,0.219 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.726,0.288 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.474,0.0372 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.335 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.0372 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.0372 +0.667,0.41,0.41,0.233,0,0,0,0.521,0.541,0.541,0,0,0.0372 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.112 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.0762 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0942 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.435 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.371 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.255 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0.204,0,0.211 +0.333,0.141,0.141,0,0.45,0,0,0.245,0.495,0.495,0.777,0,0.0743 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.112 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.269 +0.333,0.14,0.14,0.233,0,0,0,0.27,0.499,0.499,0,0,0.0372 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0743 +0.333,0.146,0.146,0.233,0,0,0,0.334,0.524,0.524,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.297 +0.333,0.187,0.187,0.233,0,0,0,0.377,0.516,0.516,0,0,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.112 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.0743 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.232 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.047 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.182 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.224 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.217 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0372 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.0743 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.149 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.149 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.186 +0.333,0.146,0.146,0.25,0,0,0,0.334,0.524,0.524,0,0,0.0372 +0.667,0.268,0.268,0.217,0,0,0,0.472,0.591,0.591,0,0,0.286 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.393 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0759 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.441 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0.25,0.0333,0.304,0.462,0.462,0,0.795,0.324 +1,0.274,0.274,0,0,0,0.417,0.374,0.5,0.5,0,0,0.199 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.171 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.673 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.197 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0718 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.583,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.14,0.14,0.583,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.141,0.141,0,0,0.25,0,0.291,0.507,0.507,0,0.131,0 +0.667,0.146,0.146,0,0,0,0.217,0.334,0.524,0.524,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.187,0.187,0,0,0.317,0,0.377,0.516,0.516,0,0.265,0.0743 +0.667,0.41,0.41,0,0,0.2,0.267,0.521,0.541,0.541,0,0,0.149 +0.667,0.496,0.496,0,0,0,0.183,0.509,0.525,0.525,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.186 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.132 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.233 +1,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0.15,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.193 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.123 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.141 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.137 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.146,0.146,0.233,0,0,0,0.334,0.524,0.524,0,0,0.26 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.392 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.296 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.158 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.112 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.315 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.135,0.135,0.933,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.162,0.162,0,0,0.483,0,0.316,0.483,0.483,0,0.303,0 +0.667,0.16,0.16,0.233,0,0.0333,0.433,0.276,0.487,0.487,0,0,0.0372 +0.667,0.258,0.258,0,0,0,0.483,0.227,0.508,0.508,0,0,0.297 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.0372 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.0372 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.558 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.233,0.233,0.5,0,0,0,0.325,0.549,0.549,0,0,0.0372 +0.667,0.242,0.242,0.433,0,0,0,0.411,0.582,0.582,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.186 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.112 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0743 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.263 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.115 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0.233,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.162 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.283 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.375 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.297 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.14,0.14,0.433,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0743 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0.165,0,0.112 +0.667,0.268,0.268,0,0.683,0,0,0.472,0.591,0.591,0.703,0,0.501 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0.373,0,0.245 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0372 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.156,0,0.223 +1,0.554,0.554,0,0.683,0,0,0.543,0.493,0.493,0.434,0,0.129 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0.7,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.112 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.205 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.113 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.149 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.223 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.223 +0.333,0.146,0.146,0.233,0,0,0,0.334,0.524,0.524,0,0,0.483 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.0372 +0.333,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.188 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.112 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.0887 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0.119 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.121 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0743 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.112 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0.25,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0.45,0,0,0,0.27,0.499,0.499,0,0,0.52 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0372 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.223 +0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.274 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.108 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.268 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.2 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.22,0.22,0.5,0,0,0,0.35,0.459,0.459,0,0,0.142 +0.333,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0 +0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0.467,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.14,0.14,0,0,0.233,0,0.27,0.499,0.499,0,0.0795,0.265 +0.667,0.233,0.233,0,0,0.0167,0.45,0.325,0.549,0.549,0,0,0.1 +0.333,0.146,0.146,0.5,0,0,0.933,0.334,0.524,0.524,0,0,0.0743 +0.667,0.268,0.268,0.2,0.4,0,0,0.472,0.591,0.591,0.519,0,0.0372 +0.333,0.187,0.187,0,0.283,0,0,0.377,0.516,0.516,0.209,0,0.26 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0372 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.335 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.263 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.194 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.349 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0951 +0.333,0.145,0.145,0,0,0.317,0,0.248,0.491,0.491,0,0.11,0.363 +0.333,0.141,0.141,0,0,0.983,0,0.245,0.495,0.495,0,0.304,0 +0.667,0.23,0.23,0,0,0,0.483,0.258,0.525,0.525,0,0.463,0 +0.333,0.14,0.14,0.0833,0,0,0.9,0.267,0.491,0.491,0,0.489,0.186 +0.333,0.14,0.14,0.85,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0.233,0,0,0,0.291,0.507,0.507,0,0,0.223 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.112 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.0743 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.297 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0743 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0372 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0.317,0,0.258,0.465,0.465,0,0.297,0 +0.667,0.16,0.16,0,0,0.717,0,0.276,0.487,0.487,0,0.11,0 +0.333,0.154,0.154,0,0,0,0.75,0.242,0.487,0.487,0,0,0.0639 +0.667,0.25,0.25,0,0,0,0.633,0.233,0.508,0.508,0,0,0.277 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.123 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.186 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.297 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.112 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0743 +0.333,0.146,0.146,0.0833,0,0,0,0.334,0.524,0.524,0,0,0.149 +0.667,0.268,0.268,0.15,0,0,0,0.472,0.591,0.591,0,0,0.0372 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0743 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0372 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.342 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.234 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.25 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.284 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.0759 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.251 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.173 +1,0.386,0.386,0.467,0,0,0,0.432,0.518,0.518,0,0,0.434 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.441 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.184 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.176 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.149 +0.667,0.141,0.141,0,0.15,0,0,0.245,0.495,0.495,0.42,0,0 +0.667,0.14,0.14,0,0.533,0,0,0.258,0.495,0.495,0.628,0,0.0372 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0.592,0,0 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0.811,0,0 +1,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0.703,0,0.0743 +0.667,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +1,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.171 +0.667,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.19 +0.667,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0.235 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0327 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.178 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.207 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.362 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.223 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.186 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.26 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.149 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.26 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.0372 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.57 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.174 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0.233,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.115 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.17 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.422 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.503 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.34 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.142 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.129 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.186 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.149 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.149 +0.667,0.242,0.242,0.467,0,0,0,0.411,0.582,0.582,0,0,0.149 +0.667,0.268,0.268,0,0.4,0,0,0.472,0.591,0.591,0.707,0,0.409 +0.667,0.324,0.324,0,0.517,0,0,0.497,0.566,0.566,0.56,0,0.0372 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.403 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.232 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.163 +1,0.386,0.386,0,0,0.517,0,0.432,0.518,0.518,0,0.537,0.363 +0.667,0.27,0.27,0,0,0,0.683,0.294,0.508,0.508,0,0.309,0.116 +0.667,0.258,0.258,0.75,0,0,0.467,0.227,0.508,0.508,0,0.683,0.277 +0.667,0.25,0.25,0.183,0,0,0,0.233,0.508,0.508,0,0.404,0.0762 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.489,0.0743 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.443,0.0743 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.595,0.0372 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.783,0.372 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.641,0.0743 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.0979,0.213 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.0372 +0.667,0.268,0.268,0.233,0,0,0,0.472,0.591,0.591,0,0,0.0743 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.149 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.186 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.254 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.31 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.163 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.175 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.228 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0.233,0,0,0,0.276,0.487,0.487,0,0,0.112 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.112 +0.667,0.25,0.25,0.933,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.24,0.24,0.233,0,0,0,0.239,0.517,0.517,0,0,0.297 +0.667,0.232,0.232,0.5,0,0,0,0.233,0.525,0.525,0,0,0.112 +0.333,0.14,0.14,0.667,0,0,0,0.258,0.495,0.495,0,0,0.0372 +0.333,0.14,0.14,0,0,0.233,0,0.267,0.491,0.491,0,0.419,0 +0.667,0.23,0.23,0,0,0.283,0.183,0.282,0.533,0.533,0,0,0.0743 +0.667,0.233,0.233,0,0,0,0.0333,0.325,0.549,0.549,0,0,0.0372 +0.333,0.146,0.146,0.5,0,0,0,0.334,0.524,0.524,0,0,0.112 +0.667,0.268,0.268,0.9,0,0,0,0.472,0.591,0.591,0,0,0.0743 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0372 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0743 +0.333,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.265 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.105 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.16,0.16,0.15,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.0372 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.112 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.223 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.234 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.113 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.0743 +0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.149 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0372 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.29 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.106 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.196 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.345 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.08 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0881 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0372 +0.667,0.23,0.23,0,0,0.317,0,0.258,0.525,0.525,0,0.229,0 +1,0.32,0.32,0,0,0.467,0,0.285,0.542,0.542,0,0.509,0 +1,0.321,0.321,0,0,0,0.917,0.294,0.567,0.567,0,0.758,0.0372 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0.668,0.112 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0.194,0.0743 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.297 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.403 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.112 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.0743 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.127 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.211 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.181 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.229 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0.233,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.112 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.26 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.372 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0743 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.26 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0372 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0697 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.264 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.0372 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.112 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.14,0.14,0.467,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0.65,0,0,0.291,0.507,0.507,0.51,0,0.112 +0.333,0.146,0.146,0,0.0333,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.181 +0.667,0.324,0.324,0,0,0.517,0,0.497,0.566,0.566,0,0.206,0.335 +0.667,0.41,0.41,0,0,0,0.217,0.521,0.541,0.541,0,0.56,0.223 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.404,0 +1,0.386,0.386,0.233,0,0,0,0.448,0.484,0.484,0,0,0.111 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.136 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0372 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0.25,0,0,0,0.304,0.462,0.462,0.113,0,0 +1,0.274,0.274,0.217,0.683,0,0,0.374,0.5,0.5,0.794,0,0.171 +1,0.381,0.381,0,0,0,0,0.313,0.53,0.53,0,0,0.497 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.0549 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.223 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0,0.0495,0.0495,0,0,0.517,0,0.258,0.465,0.465,0,0.59,0 +0.333,0.14,0.14,0,0,0,0.45,0.27,0.499,0.499,0,0.731,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0.523,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0.563,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.186 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.149 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.22 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.284 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.391 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.371 +0.667,0.27,0.27,0,0.4,0,0,0.294,0.508,0.508,0.755,0,0.104 +0.667,0.258,0.258,0,0.283,0,0,0.227,0.508,0.508,0.547,0,0.0951 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0.176,0,0.0743 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.372 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.223 +0.333,0.14,0.14,0.7,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0743 +0.333,0.141,0.141,0.7,0,0,0,0.291,0.507,0.507,0,0,0.0372 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0.124,0,0.24 +1,0.461,0.461,0,0.683,0,0,0.616,0.616,0.616,0.8,0,0.213 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0.798,0,0.149 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0.13,0,0.0743 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0372 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.07 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.205 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0372 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.112 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.146 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.264 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.186 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.513 +0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.0837 +0.333,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0.0931 +0.667,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.359 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0.135 +0.667,0.258,0.258,0.85,0,0.0667,0,0.227,0.508,0.508,0,0.211,0.238 +0.667,0.25,0.25,0,0,0.183,0.283,0.233,0.508,0.508,0,0.732,0.249 +0.667,0.24,0.24,0,0,0,0.633,0.239,0.517,0.517,0,1,0.24 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.0505,0.324 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.444 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.228 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.223 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.149 +0.667,0.268,0.268,0.0833,0,0,0,0.472,0.591,0.591,0,0,0 +0.333,0.187,0.187,0.15,0,0,0,0.377,0.516,0.516,0,0,0.0743 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.358 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0743 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0.25,0,0.258,0.465,0.465,0,0.419,0 +1,0.27,0.27,0.0833,0,0,0.533,0.294,0.508,0.508,0,0.486,0.26 +1,0.362,0.362,0.617,0,0,0.85,0.212,0.53,0.53,0,0,0.204 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.0372 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0372 +0,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.14,0.14,0.85,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.297 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.335 +0.667,0.268,0.268,0.467,0,0,0,0.472,0.591,0.591,0,0,0.112 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.186 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0743 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0978 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.355 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.119 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.147 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.486 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.266 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.193 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.296 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.339 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.112 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0372 +0.333,0.146,0.146,0,0,0.233,0,0.334,0.524,0.524,0,0.199,0 +0.667,0.268,0.268,0.233,0,0.283,0.183,0.472,0.591,0.591,0.0965,0.596,0.112 +0.667,0.324,0.324,0,0.9,0,0.733,0.497,0.566,0.566,0.716,0.291,0.168 +0.667,0.41,0.41,0,0.0167,0.25,0.2,0.521,0.541,0.541,0,0.682,0.257 +0.667,0.496,0.496,0,0,0,0.25,0.509,0.525,0.525,0,0.234,0.0743 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.277 +1,0.22,0.22,0.233,0,0,0,0.35,0.459,0.459,0,0,0.102 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0743 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0.25,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.23,0.23,0.45,0,0,0,0.258,0.525,0.525,0,0,0.112 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.149 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.0372 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.112 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.0743 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.0372 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0743 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.496,0.496,0,0.65,0,0,0.509,0.525,0.525,0.772,0,0.0372 +0.667,0.386,0.386,0,0.0333,0,0,0.448,0.484,0.484,0.117,0,0.34 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.288,0.418,0.418,0,0,0.167 +0.667,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.222,0.222,0.233,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.277,0.277,0.233,0.4,0,0,0.374,0.5,0.5,0.74,0,0.112 +0.667,0.274,0.274,0,0.517,0,0,0.294,0.508,0.508,0,0,0.449 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.327 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0743 +0,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0.95,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0.15,0,0,0.27,0.499,0.499,0.419,0,0.257 +0.667,0.239,0.239,0,0.3,0,0,0.325,0.549,0.549,0.737,0,0.361 +0.667,0.252,0.252,0,0,0.233,0,0.411,0.582,0.582,0.0603,0.382,0.224 +0.667,0.289,0.289,0,0,0.0167,0.45,0.472,0.591,0.591,0,0.0489,0.112 +0.667,0.362,0.362,0,0,0,0.45,0.497,0.566,0.566,0,0,0.149 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.297 +0.333,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.104,0.104,0,0,0,0,0.307,0.426,0.426,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0372 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.124 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.0785 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0.362 +1,0.327,0.327,0,0,0,0,0.285,0.542,0.542,0,0,0.198 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.0372 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0.156,0,0.0372 +0.667,0.252,0.252,0.75,0.683,0,0,0.411,0.582,0.582,0.755,0,0 +0.667,0.289,0.289,0.2,0,0,0,0.472,0.591,0.591,0.683,0,0.26 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.644,0,0.149 +0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.223 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.112 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0743 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.066,0.066,0,0,0,0,0.313,0.426,0.426,0,0,0.127 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0829 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.166 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0314 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.158 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0776 +0.667,0.252,0.252,0.233,0.4,0,0,0.411,0.582,0.582,0.701,0,0 +1,0.408,0.408,0,0.517,0,0,0.58,0.653,0.653,0,0,0.102 +0.667,0.362,0.362,0.467,0,0,0,0.497,0.566,0.566,0,0,0.149 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.295 +0.333,0.296,0.296,0,0.65,0,0,0.383,0.495,0.495,0.651,0,0.349 +1,0.397,0.397,0,0.267,0,0,0.448,0.484,0.484,0.202,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.0372 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.112 +1,0.277,0.277,0.717,0,0.233,0,0.374,0.5,0.5,0,0.459,0.186 +1,0.274,0.274,0.5,0,1,0,0.294,0.508,0.508,0,0.538,0.218 +0.667,0.263,0.263,0.933,0,0.267,0.2,0.227,0.508,0.508,0,0.463,0.0743 +0.667,0.256,0.256,0,0,0,0.0167,0.233,0.508,0.508,0,0.599,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.379,0.413 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.665,0.26 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0.602,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.546,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.532,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.691,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0.651,0.0372 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.0372 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.543 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.141 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.286 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.277,0.277,0.467,0,0,0,0.374,0.5,0.5,0,0,0.177 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.269 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.0963 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.223 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0372 +1,0.353,0.353,0.5,0,0,0,0.488,0.641,0.641,0,0,0.26 +1,0.408,0.408,0.45,0.15,0,0,0.58,0.653,0.653,0.436,0,0.26 +1,0.518,0.518,0,0.767,0,0,0.616,0.616,0.616,0.596,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.573,0.255,0.207 +1,0.788,0.788,0,0,0.983,0,0.635,0.555,0.555,0.147,0.709,0.225 +1,0.571,0.571,0,0,0.267,0.2,0.543,0.493,0.493,0,0,0.102 +1,0.116,0.116,0,0,0,0.25,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.0998 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.393 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.149 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.223 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.216 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.17 +0.333,0.142,0.142,0,0.15,0,0,0.267,0.491,0.491,0.403,0,0.0169 +0.333,0.143,0.143,0,0.767,0,0,0.27,0.499,0.499,0.204,0,0 +0.333,0.144,0.144,0.25,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.252,0.252,0.217,0.4,0,0,0.411,0.582,0.582,0.622,0,0.223 +0.667,0.289,0.289,0,0.283,0,0,0.472,0.591,0.591,0.688,0,0.0743 +0.333,0.206,0.206,0.467,0,0,0,0.377,0.516,0.516,0,0,0.297 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.112 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0372 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.11 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.163,0.163,0.95,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +1,0.359,0.359,0,0,0,0,0.221,0.53,0.53,0,0,0 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0.0372 +1,0.331,0.331,0,0,0,0,0.221,0.555,0.555,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0372 +0.333,0.142,0.142,0,0,0.25,0,0.267,0.491,0.491,0,0.333,0.26 +0.333,0.143,0.143,0,0,0,0.45,0.27,0.499,0.499,0,0.428,0.0743 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.719,0.0743 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0.528,0.0372 +0.667,0.289,0.289,0.95,0,0,0,0.472,0.591,0.591,0,0,0.0372 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.297 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.513 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.126 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.113 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.146 +0.333,0.0495,0.0495,0,0,0.733,0,0.258,0.465,0.465,0,0.971,0 +0.667,0.156,0.156,0,0,0.767,0,0.242,0.487,0.487,0,0.419,0 +0.667,0.153,0.153,0,0,0,0.667,0.245,0.487,0.487,0,0.317,0.0743 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.0557 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.112 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.0671 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0.165,0,0 +1,0.408,0.408,0,0.9,0,0,0.58,0.653,0.653,0.635,0,0.223 +0.667,0.362,0.362,0,0.0167,0,0,0.497,0.566,0.566,0.38,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.26 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0.233,0,0,0,0.304,0.462,0.462,0,0,0.158 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.162,0.162,0.233,0,0,0,0.276,0.487,0.487,0,0,0.16 +0.333,0.156,0.156,0,0,0.483,0,0.242,0.487,0.487,0,0.165,0.174 +0.333,0.153,0.153,0,0,0.0167,0.45,0.245,0.487,0.487,0,0.717,0.335 +0.333,0.147,0.147,0,0,0,0.9,0.248,0.491,0.491,0,0.821,0.186 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.546,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.265,0.0372 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.841,0.112 +0.667,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.149 +0.667,0.144,0.144,0.95,0,0,0,0.291,0.507,0.507,0,0,0.335 +0.667,0.252,0.252,0,0,0.25,0,0.411,0.582,0.582,0,0.538,0 +0.667,0.289,0.289,0,0,0,0.95,0.472,0.591,0.591,0,0.581,0.149 +0.667,0.362,0.362,0,0,0,0.633,0.497,0.566,0.566,0,0.538,0.0372 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0.381,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0.573,0 +0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0.281,0 +0.667,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0881 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.207 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.185 +0.667,0.274,0.274,0.717,0,0,0,0.294,0.508,0.508,0,0,0.118 +0.667,0.263,0.263,0.233,0,0,0,0.227,0.508,0.508,0,0,0.36 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0743 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.112 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.326 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0776 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.386 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.174 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.365 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.804 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.372 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.352 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.146 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.169 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.227 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.149 +0.667,0.235,0.235,1,0,0.233,0,0.276,0.517,0.517,0,0.339,0.149 +0.667,0.236,0.236,0.433,0,0.517,0,0.282,0.533,0.533,0,0.485,0 +0.667,0.144,0.144,0,0,0,0.95,0.291,0.507,0.507,0,0.45,0.0743 +0.667,0.252,0.252,0,0,0,0.167,0.411,0.582,0.582,0,0.459,0.0743 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.185,0.0372 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.149 +0.667,0.256,0.256,0,0.4,0,0,0.39,0.503,0.503,0.638,0,0.0743 +0.667,0.542,0.542,0,0.517,0,0,0.509,0.525,0.525,0.601,0,0.0372 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0.529,0,0.186 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.186 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0372 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.163,0.163,0.233,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.387,0.387,0,0,0,0,0.313,0.53,0.53,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.112 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0372 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.0887,0 +0.333,0.143,0.143,0,0,0.25,0.2,0.245,0.495,0.495,0,0,0.112 +0.667,0.142,0.142,0,0,0,0.7,0.258,0.495,0.495,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.149 +0.667,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.0372 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.0743 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.0372 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.0372 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.473 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.234 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.293 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.142 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.0907 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.185 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.198 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.236 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.149 +0.667,0.252,0.252,0.233,0,0,0,0.411,0.582,0.582,0,0,0.446 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.149 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.504 +0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.0372 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.227 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0743 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.147,0.147,0.233,0,0,0,0.248,0.491,0.491,0,0,0.149 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.149 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0743 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0743 +0.667,0.143,0.143,0.233,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.112 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.0743 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.0372 +0.333,0.206,0.206,0.467,0,0,0,0.377,0.516,0.516,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.128 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.223 +0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.206 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.0604 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.142 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.268 +0.667,0.252,0.252,0.467,0,0,0,0.411,0.582,0.582,0,0,0.0441 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.286 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0372 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.149 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.337 +1,0.397,0.397,0.233,0,0,0,0.448,0.484,0.484,0,0,0.308 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.016 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0.233,0,0,0,0.282,0.446,0.446,0,0,0.346 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.0794 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.161 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.121 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.149 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.555 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.281 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.112 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.149 +0.333,0.169,0.169,0.233,0,0,0,0.365,0.528,0.528,0,0,0.0372 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.196 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.601 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0534 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0372 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.142,0.142,0.217,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0957 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0.161,0,0.112 +0.667,0.289,0.289,0,0.683,0,0,0.472,0.591,0.591,0.614,0,0.112 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.118 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.198 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.105 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.297 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.164 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.23 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.147,0.147,0.233,0,0,0,0.248,0.491,0.491,0,0,0.141 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.121 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0743 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.186 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.0743 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.409 +0.333,0.169,0.169,0,0.65,0,0,0.365,0.528,0.528,0.837,0,0.35 +0.667,0.362,0.362,0.717,0.267,0,0,0.497,0.566,0.566,0.111,0,0.458 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.171 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.404 +0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.26 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0.0914 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.669 +1,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.138 +0.667,0.256,0.256,0.467,0,0,0,0.233,0.508,0.508,0,0,0.315 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.26 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.186 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.0743 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.0372 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.107 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.186 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.18 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.102 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.405 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.299 +0.667,0.163,0.163,0.5,0.15,0,0,0.316,0.483,0.483,0.353,0,0.226 +0.333,0.162,0.162,0.217,0.533,0,0,0.276,0.487,0.487,0.506,0,0.0743 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0.675,0,0 +0.333,0.153,0.153,0,0,0.25,0,0.245,0.487,0.487,0.733,0.566,0.0743 +0.333,0.147,0.147,0,0,0,0.45,0.248,0.491,0.491,0,0.472,0.0372 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.343,0 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.187 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.149 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.0372 +0.333,0.151,0.151,0.233,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.0372 +1,0.518,0.518,0,0.4,0,0,0.616,0.616,0.616,0.59,0,0.186 +0.667,0.256,0.256,0,0.517,0,0,0.39,0.503,0.503,0.124,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.167,0,0 +1,0.05,0.05,0,0.9,0,0,0.273,0.442,0.442,0.536,0,0.0881 +1,0.104,0.104,0,0.0167,0.233,0,0.307,0.426,0.426,0.351,0.304,0.499 +0.667,0.136,0.136,0,0,0.517,0,0.304,0.462,0.462,0,0.78,0 +1,0.39,0.39,0,0,0,0.95,0.432,0.518,0.518,0,0.697,0.222 +1,0.387,0.387,0,0,0,0.4,0.313,0.53,0.53,0,0.43,0.0906 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0.414,0.0776 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.396,0.223 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.497,0.0372 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.558,0.0372 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.375,0.0743 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.318,0.236 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.7,0.149 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.41,0.0372 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0.709,0.223 +0.667,0.289,0.289,0.467,0,0,0,0.472,0.591,0.591,0,0.687,0.149 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0.19,0.142 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.153 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0743 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.132 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.15 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0372 +0.667,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.26 +0.667,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.372 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.2 +0.667,0.462,0.462,0,0,0.733,0,0.521,0.541,0.541,0,0.128,0.159 +0.667,0.296,0.296,0,0,0.0167,0.45,0.383,0.495,0.495,0,0,0.335 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.223 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.149 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.116 +1,0.222,0.222,0.233,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0743 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0743 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.0743 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.223 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.149 +0.667,0.289,0.289,0,0.45,0.483,0,0.472,0.591,0.591,0.77,0.407,0.223 +0.333,0.206,0.206,0,0,0.267,0.2,0.377,0.516,0.516,0.113,0.596,0 +0.333,0.256,0.256,0,0,0,0.467,0.39,0.503,0.503,0,0.324,0.0372 +0.333,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0.847,0.223 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0.343,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.156,0.156,0.467,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.112 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0743 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.409 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.112 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0.467,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0.141,0,0.159 +0.667,0.289,0.289,0,0.683,0,0,0.472,0.591,0.591,0.675,0,0.0699 +0.667,0.362,0.362,0,0,0.233,0,0.497,0.566,0.566,0,0.242,0.0743 +0.667,0.462,0.462,0,0,0.0167,0.45,0.521,0.541,0.541,0,0.396,0 +0.667,0.542,0.542,0,0,0,0.667,0.509,0.525,0.525,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.197 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.185 +0.667,0.245,0.245,0.233,0,0,0,0.239,0.517,0.517,0,0,0.17 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.235,0.235,0.75,0,0,0,0.276,0.517,0.517,0,0,0.223 +0.667,0.236,0.236,0.45,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.112 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.41 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.38 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0743 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.202 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.272 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.206,0 +1,0.277,0.277,0,0,0.267,0.2,0.374,0.5,0.5,0,0.794,0.0712 +0.667,0.162,0.162,0,0,0,0.917,0.276,0.487,0.487,0,0.00459,0.104 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.125 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.258 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.29 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.282 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.223 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.116 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.186 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.242 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0715 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.0919 +0.667,0.277,0.277,0.467,0,0,0,0.374,0.5,0.5,0,0,0.209 +0.667,0.274,0.274,0,0.45,0,0,0.294,0.508,0.508,0.558,0,0.219 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0.672,0,0 +0.667,0.256,0.256,0.5,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.245,0.245,1,0,0,0,0.239,0.517,0.517,0,0,0.0743 +0.333,0.143,0.143,0.417,0,0,0,0.245,0.495,0.495,0,0,0.149 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0743 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.112 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.149 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.186 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0743 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.397,0.397,0.233,0,0,0,0.448,0.484,0.484,0,0,0.149 +1,0.183,0.183,0,0.45,0,0,0.393,0.451,0.451,0.404,0,0.186 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.17 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.153 +1,0.222,0.222,0.233,0,0,0,0.35,0.459,0.459,0,0,0.201 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.119 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.37 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.151 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0.25,0,0,0,0.325,0.549,0.549,0,0,0.52 +1,0.353,0.353,0.217,0,0,0,0.488,0.641,0.641,0,0,0.149 +0.667,0.289,0.289,0.467,0,0,0,0.472,0.591,0.591,0,0,0.112 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.372 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.149 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.375 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.508 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.0992 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0814 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0.217,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0743 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0372 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0372 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.186 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.112 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0.717,0,0,0,0.291,0.507,0.507,0,0,0.112 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.149 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.186 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0743 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.472 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.496 +0.667,0.136,0.136,0.467,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.0372 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.303,0 +0.333,0.143,0.143,0,0,0.0167,0.45,0.245,0.495,0.495,0,0.576,0.186 +0.333,0.142,0.142,0.467,0,0,0.667,0.258,0.495,0.495,0,0.72,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.202,0.207 +0.667,0.236,0.236,0,0,0.25,0,0.282,0.533,0.533,0,0.569,0 +0.667,0.239,0.239,0,0,0,0.45,0.325,0.549,0.549,0,0.416,0 +1,0.353,0.353,0.467,0.4,0,0,0.488,0.641,0.641,0.69,0,0.112 +0.667,0.289,0.289,0,0.517,0,0,0.472,0.591,0.591,0.148,0,0.0372 +0.667,0.362,0.362,0,0.217,0,0,0.497,0.566,0.566,0.583,0,0.223 +0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.223,0.223,0.233,0,0,0,0.353,0.475,0.475,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.257 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.409 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.252,0.252,0,0.65,0,0,0.411,0.582,0.582,0.536,0,0.149 +1,0.408,0.408,0,0.267,0,0,0.58,0.653,0.653,0.666,0,0.599 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.138 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.239 +0.333,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0721 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.398 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.325 +0.667,0.27,0.27,0.417,0,0,0,0.234,0.511,0.511,0,0,0.485 +0.667,0.259,0.259,0.3,0,0,0,0.24,0.519,0.519,0,0,0.112 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.314 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.175 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.222 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.113 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.372 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.112 +0.667,0.454,0.454,0,0.567,0,0,0.5,0.569,0.569,0.631,0,0.582 +1,0.806,0.806,0,0.367,0,0,0.658,0.583,0.583,0,0,0.199 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.299 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0675 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0.0667,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.182 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.117 +0.667,0.168,0.168,0.233,0,0,0,0.277,0.488,0.488,0,0.0138,0 +0.667,0.278,0.278,0,0,0.75,0,0.228,0.511,0.511,0,0.748,0.149 +0.667,0.27,0.27,0,0,0,0.45,0.234,0.511,0.511,0,0.425,0.26 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0.687,0.186 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0.416,0.0743 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.436,0.0743 +0.667,0.249,0.249,0.167,0,0,0,0.277,0.519,0.519,0,0.257,0 +0.667,0.251,0.251,0.317,0,0,0,0.284,0.536,0.536,0,0.492,0.26 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.514,0.223 +0.667,0.286,0.286,0.717,0,0,0,0.413,0.585,0.585,0,0.0749,0.0372 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.135 +1,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.214 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.208 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.169 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.262 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.296 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.0372 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.0864 +1,0.228,0.228,0.483,0,0,0,0.352,0.461,0.461,0,0,0.0896 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.177 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.413 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.355 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.0372 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.0372 +0.667,0.249,0.249,0,0,0.233,0,0.259,0.528,0.528,0,0.318,0.0743 +0.333,0.149,0.149,0,0,0.267,0.2,0.268,0.492,0.492,0,0.171,0 +0.667,0.251,0.251,0,0,0.233,0.0167,0.284,0.536,0.536,0,0.234,0.112 +0.667,0.259,0.259,0,0,0.0167,0.45,0.327,0.552,0.552,0,0.696,0.149 +0.667,0.286,0.286,0,0,0,0.467,0.413,0.585,0.585,0,0,0.0743 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.448 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.308 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.283 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.223 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.314,0.42,0.42,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.107,0.107,0.467,0,0,0,0.308,0.428,0.428,0,0,0.308 +0.667,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.269 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.0697 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0.241 +0.667,0.278,0.278,0.483,0,0,0,0.228,0.511,0.511,0,0,0.104 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.186 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.112 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0743 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0372 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.186 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.112 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.0743 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.186 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.126 +0.667,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.412,0.412,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.164 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.147 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.221 +0.667,0.164,0.164,0.233,0,0,0,0.243,0.488,0.488,0,0,0.405 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.196 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.27 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.223 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.545 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.0587 +0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.149 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.206 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.421 +0.667,0.284,0.284,0,0,0.233,0,0.376,0.503,0.503,0,0.193,0.0511 +0.333,0.168,0.168,0,0,0.517,0,0.277,0.488,0.488,0,0.349,0 +0.333,0.164,0.164,0,0,0,0.917,0.243,0.488,0.488,0,0.379,0.112 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0.642,0.297 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0.541,0.112 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0.497,0.335 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0.781,0.0372 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.216,0.0743 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0.642,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.485,0.0372 +0.667,0.286,0.286,0.967,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.0372 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0 +0.333,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.0743 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.143 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.38 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.295 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0689 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.156 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.0619 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.271 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.258 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.415 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.26 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.112 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0743 +0.333,0.168,0.168,0.967,0.4,0,0,0.336,0.525,0.525,0.558,0,0.26 +0.667,0.351,0.351,0,0.0667,0,0,0.475,0.594,0.594,0.436,0,0.0743 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0372 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.149 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.112 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.14 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.087 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.255 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.154 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.282 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.149,0.149,0.417,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.149,0.149,0.0667,0,0,0,0.268,0.492,0.492,0,0,0.112 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0743 +0.667,0.154,0.154,0.417,0,0,0,0.292,0.509,0.509,0,0,0.0743 +1,0.404,0.404,0.0667,0,0,0,0.491,0.646,0.646,0,0,0.112 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.372 +1,0.656,0.656,0,0.0667,0,0,0.621,0.621,0.621,0.26,0,0.141 +0.667,0.554,0.554,0,0.867,0,0,0.525,0.544,0.544,0.495,0,0.0372 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0743 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.112 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0863 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.0173 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.113 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.749 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.261 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.192 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0.185 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0,0.461 +1,0.352,0.352,0,0,0,0,0.222,0.559,0.559,0,0,0.249 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.321 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.274 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.421 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0776 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.104 +0.333,0.2,0.2,0.233,0,0,0,0.366,0.53,0.53,0,0,0.186 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.213 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0372 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0.467,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,0.5,0,0,0,0.305,0.463,0.463,0,0,0.149 +0.667,0.167,0.167,0.217,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.104 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.328 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.112 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.186 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.364 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.223 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0372 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.421 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.155 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,1,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.228,0.228,1,0,0,0,0.352,0.461,0.461,0,0,0.137 +1,0.284,0.284,0.65,0,0,0,0.376,0.503,0.503,0,0,0.206 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.245 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.295 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.259 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.415 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0,0.0495,0.0495,0.233,0,0.233,0,0.258,0.465,0.465,0,0.42,0.0372 +0.333,0.154,0.154,0.717,0,0.783,0,0.292,0.509,0.509,0,0.517,0 +0.667,0.286,0.286,0,0,0,0.683,0.413,0.585,0.585,0,0.466,0 +0.667,0.351,0.351,0,0,0,0.233,0.475,0.594,0.594,0,0.638,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0372 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.0372 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0372 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0429 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.224 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0743 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0743 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0.178,0,0.0743 +0.667,0.351,0.351,0,0.7,0,0,0.475,0.594,0.594,0.403,0,0.0372 +0.333,0.252,0.252,0,0.4,0,0,0.379,0.517,0.517,0.746,0,0.186 +0.667,0.554,0.554,0,0.3,0,0,0.525,0.544,0.544,0.106,0,0.112 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.149 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.204 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.231 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.26 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.533 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.368 +0.333,0.164,0.164,0,0.4,0,0,0.243,0.488,0.488,0.692,0,0.141 +0.333,0.16,0.16,0,0.533,0,0,0.246,0.488,0.488,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.205 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.273 +0.333,0.149,0.149,0,0,0.233,0,0.258,0.496,0.496,0,0.272,0.53 +0,0.0495,0.0495,0,0,0.783,0,0.258,0.465,0.465,0,0.414,0.0372 +0.333,0.15,0.15,0,0,0,0.683,0.271,0.501,0.501,0,0.436,0 +0.333,0.154,0.154,0.233,0,0,0,0.292,0.509,0.509,0,0,0.0372 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.0372 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.0372 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.372 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.192 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0527 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.106 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0.279 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.168,0.168,0.25,0,0,0,0.277,0.488,0.488,0,0,0.183 +0.667,0.278,0.278,0.233,0,0,0,0.228,0.511,0.511,0,0,0.0881 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.175 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.228 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.341 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.372 +0.333,0.154,0.154,0.233,0,0,0,0.292,0.509,0.509,0,0,0.0743 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.149 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.234 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0,0,0.65,0,0.277,0.488,0.488,0,0.67,0 +1,0.164,0.164,0,0,0.617,0,0.243,0.488,0.488,0,0.544,0 +1,0.16,0.16,0,0,0,0.683,0.246,0.488,0.488,0,0.317,0.0372 +1,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0.164,0.0743 +1,0.251,0.251,0,0,0.25,0,0.234,0.528,0.528,0,0.323,0.223 +0.667,0.149,0.149,0,0,0,0.617,0.258,0.496,0.496,0,0.774,0.378 +1,0.349,0.349,0,0,0,0.767,0.287,0.546,0.546,0,0.361,0.295 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.451 +1,0.363,0.363,0.233,0,0,0,0.361,0.596,0.596,0,0,0.454 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.179 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0.128,0.0743 +0.667,0.554,0.554,0,0,0.25,0.117,0.525,0.544,0.544,0,0.549,0.0372 +0.667,0.584,0.584,0,0,0,0.8,0.512,0.528,0.528,0,0.722,0.186 +0.667,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.661,0.0372 +0.667,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0.229,0 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.258 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.112 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.64 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.479 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.0743 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0743 +0.333,0.149,0.149,0.167,0,0,0,0.268,0.492,0.492,0,0,0.0743 +0.667,0.251,0.251,0.317,0,0,0,0.284,0.536,0.536,0,0,0.0372 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.186 +0.333,0.2,0.2,0.483,0,0,0,0.366,0.53,0.53,0,0,0.112 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.112 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.297 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.12 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0.344,0.25 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.257 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0741 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.0887 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.144 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.101,0 +0.667,0.16,0.16,0,0,0.983,0,0.246,0.488,0.488,0,0.44,0.262 +0.667,0.154,0.154,0.483,0,0.0333,0.433,0.249,0.492,0.492,0,0,0.172 +0.667,0.15,0.15,0,0,0,0.0167,0.246,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0.15,0,0,0.258,0.496,0.496,0.417,0,0 +0.667,0.149,0.149,0,0.783,0,0,0.268,0.492,0.492,0.393,0.295,0.0372 +0.667,0.251,0.251,0,0,0.5,0,0.284,0.536,0.536,0,0.555,0.335 +0.667,0.259,0.259,0,0,0,0.95,0.327,0.552,0.552,0,0.414,0.186 +0.667,0.286,0.286,0,0,0,0.2,0.413,0.585,0.585,0.182,0.509,0.0743 +0.667,0.351,0.351,0,0.7,0,0,0.475,0.594,0.594,0.391,0.361,0.223 +0.667,0.454,0.454,0,0.65,0,0,0.5,0.569,0.569,0.677,0,0 +0.667,0.554,0.554,0.483,0.05,0,0,0.525,0.544,0.544,0,0,0.335 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.0743 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.331 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.223 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.287,0 +0.667,0.15,0.15,0,0,0.75,0,0.271,0.501,0.501,0,0.0612,0.223 +0.667,0.154,0.154,0,0,0,0.217,0.292,0.509,0.509,0,0,0.149 +0.667,0.168,0.168,0.233,0,0,0,0.336,0.525,0.525,0,0,0.149 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0372 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.324 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.102 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0743 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0372 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0743 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0743 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0743 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.149 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.0743 +0.333,0.2,0.2,0.483,0,0,0,0.366,0.53,0.53,0,0,0.128 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.229 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.206 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0372 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.717,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0934 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.0808 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.173 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.109 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.296 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.244 +0.667,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.286 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.313 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.274 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.437 +0.667,0.15,0.15,0.233,0,0,0,0.271,0.501,0.501,0,0,0.296 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0743 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.0372 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.319 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.317 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.318 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.112 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.08 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.262 +0.667,0.0781,0.0781,0.25,0,0,0,0.283,0.447,0.447,0,0,0 +0.333,0.139,0.139,1,0,0,0,0.305,0.463,0.463,0,0,0 +0,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0.14 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0372 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.152 +0.333,0.15,0.15,0.233,0,0,0,0.271,0.501,0.501,0,0,0.235 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0743 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.0372 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.112 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0372 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.112 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.112 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0817 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.119 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.186 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.149 +0.333,0.15,0.15,0.417,0,0,0,0.271,0.501,0.501,0,0,0.0743 +0.333,0.154,0.154,0.55,0,0,0,0.292,0.509,0.509,0,0,0.297 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.0743 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.0743 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.413 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.372 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.153 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0835 +1,0.139,0.139,0.417,0,0,0,0.305,0.463,0.463,0,0,0.138 +0.667,0.167,0.167,0.3,0,0,0,0.317,0.484,0.484,0,0,0.472 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.112 +0.667,0.16,0.16,0.233,0,0,0,0.246,0.488,0.488,0,0,0.112 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.186 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0372 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.0372 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0648 +0.667,0.286,0.286,0.167,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.351,0.351,0.55,0.317,0,0,0.475,0.594,0.594,0.407,0,0.0372 +1,0.454,0.454,0,0.383,0,0,0.5,0.569,0.569,0.231,0,0.149 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.232 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.321 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.152 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0465 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.141 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.132 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.297 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.149 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0.0352,0.26 +0.333,0.149,0.149,0,0,0.75,0,0.268,0.492,0.492,0,0.503,0 +0.333,0.15,0.15,0,0,0,0.7,0.271,0.501,0.501,0,0.572,0.186 +0.333,0.154,0.154,0,0,0,0.45,0.292,0.509,0.509,0.113,0.0703,0.0372 +0.333,0.168,0.168,0,0.467,0,0,0.336,0.525,0.525,0.59,0,0.122 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.332 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.0372 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.163 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.214 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.0762 +1,0.0503,0.0503,0.233,0,0,0,0.274,0.443,0.443,0,0,0.096 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.532 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.253 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.235 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0743 +0.333,0.164,0.164,0,0.15,0,0,0.243,0.488,0.488,0.363,0,0.409 +0.333,0.16,0.16,0,0.55,0,0,0.246,0.488,0.488,0.268,0,0.112 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0743 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.23 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.236 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0775 +0.667,0.286,0.286,0.25,0,0,0,0.413,0.585,0.585,0,0,0.0743 +0.667,0.351,0.351,0.95,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.454,0.454,0.233,0,0,0,0.5,0.569,0.569,0,0,0.0743 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0372 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0372 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.322 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0942 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.0837 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.168 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.3 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.26 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0.25,0,0,0,0.292,0.509,0.509,0,0,0.112 +0.667,0.286,0.286,0.233,0,0,0,0.413,0.585,0.585,0.171,0,0.112 +1,0.501,0.501,0,0.9,0,0,0.584,0.658,0.658,0.811,0,0.203 +0.667,0.454,0.454,0,0.0333,0,0,0.5,0.569,0.569,0.664,0,0.0743 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0.731,0,0.0743 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.247 +0.667,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.125 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.1 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.128 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.167,0.167,0.483,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.149 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.372 +0.333,0.154,0.154,0.233,0,0,0,0.249,0.492,0.492,0,0,0.149 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0743 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0372 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0372 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0372 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.166 +0.667,0.286,0.286,0,0.65,0,0,0.413,0.585,0.585,0.414,0,0 +0.667,0.351,0.351,0,0.433,0,0,0.475,0.594,0.594,0.423,0,0 +0.667,0.454,0.454,0,0.783,0,0,0.5,0.569,0.569,0.258,0,0.186 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0372 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.0372 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0604 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.191 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0372 +0.333,0.154,0.154,0,0.65,0.25,0,0.249,0.492,0.492,0.972,0.317,0.0743 +0.333,0.15,0.15,0,0.283,0,0.683,0.246,0.496,0.496,0,0.274,0.0372 +0.333,0.149,0.149,0.967,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0743 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.0743 +1,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.43 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.26 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.444 +0.333,0.302,0.302,0,0.15,0,0,0.391,0.505,0.505,0.419,0,0.0814 +0.667,0.584,0.584,0,0.55,0,0,0.512,0.528,0.528,0.124,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0802 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.196 +1,0.284,0.284,0.667,0,0,0,0.376,0.503,0.503,0,0,0.127 +1,0.286,0.286,0.05,0,0.25,0,0.296,0.511,0.511,0,0.479,0 +0.667,0.278,0.278,0,0,0,0.45,0.228,0.511,0.511,0,0.543,0.112 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0.625,0.0743 +0.667,0.259,0.259,0,0.567,0,0,0.24,0.519,0.519,0.738,0,0.112 +0.667,0.251,0.251,0,0.133,0,0,0.234,0.528,0.528,0.145,0,0.0372 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.186 +1,0.349,0.349,0.233,0,0,0,0.287,0.546,0.546,0,0,0.0743 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.615 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.454,0.454,1,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.554,0.554,0.267,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +0.667,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.239 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0508 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0825 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.444 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.217 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.553 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.196 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.379 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0743 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.149 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0832 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.124 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.0657,0 +1,0.236,0.236,0.75,0,0.233,0.217,0.404,0.522,0.522,0,0.709,0.0729 +1,0.295,0.295,0,0,0,0.0167,0.433,0.571,0.571,0,0.372,0.181 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0.281,0.257 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0.0917,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0743 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.186 +0.333,0.159,0.159,0,0.65,0,0,0.275,0.533,0.533,0.694,0,0 +0.333,0.159,0.159,0,0.333,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.325 +1,0.417,0.417,0,0,0.7,0,0.433,0.713,0.713,0,0.269,0.384 +1,0.501,0.501,0.25,0,0,0.5,0.588,0.773,0.773,0,0,0.112 +0.667,0.453,0.453,0,0,0,0.45,0.552,0.68,0.68,0,0,0.186 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.149 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0743 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0743 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.123 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0958 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0496 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.115 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.112 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.162,0.162,0.5,0,0,0,0.29,0.538,0.538,0,0,0.0743 +0.667,0.294,0.294,0.25,0,0,0,0.374,0.631,0.631,0,0,0.0743 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.0372 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.112 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.186 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0743 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.424 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.117 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.158 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.259 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.191 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.283 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.596 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.261 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.176 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.293 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.294,0.294,0.25,0,0,0,0.374,0.631,0.631,0,0,0.0372 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.112 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.149 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0372 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.246 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.133 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.157 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.047 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.509 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.355 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.054 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.326 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.226 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.149 +0.333,0.159,0.159,0.75,0,0,0,0.275,0.533,0.533,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.162,0.162,0.5,0,0,0,0.29,0.538,0.538,0,0,0.0372 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.26 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.0372 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0372 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.18 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.367 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +0.667,0.236,0.236,0.25,0,0,0,0.404,0.522,0.522,0,0,0.12 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.171 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.112 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.16 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.381 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.303 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.335 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.0372 +0.667,0.335,0.335,0.25,0,0,0,0.434,0.543,0.543,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0984 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.223 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.17 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0.733,0,0.309,0.469,0.469,0,0.344,0 +1,0.0495,0.0495,0,0,0.2,0.267,0.305,0.464,0.464,0,0.344,0 +1,0.0495,0.0495,0,0,0,0.917,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.22 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.376 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0.186 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.351 +0.667,0.291,0.291,0.25,0,0.483,0,0.263,0.581,0.581,0,0.344,0.0938 +0.667,0.279,0.279,0,0,0.7,0,0.271,0.591,0.591,0,0.454,0 +0.333,0.16,0.16,0,0,0,0.767,0.261,0.533,0.533,0,0.466,0.0743 +0.333,0.159,0.159,0,0,0,0.183,0.275,0.533,0.533,0,0.763,0.112 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.431,0.186 +0.667,0.162,0.162,0.75,0,0,0,0.29,0.538,0.538,0,0.827,0 +1,0.294,0.294,0.5,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.149 +0.667,0.453,0.453,0.25,0,0,0,0.552,0.68,0.68,0,0,0.52 +0.667,0.569,0.569,0.75,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.149 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.112 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0743 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.167 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.363 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.128 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0496 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.16 +1,0.301,0.301,0.5,0,0,0,0.337,0.581,0.581,0,0,0.385 +1,0.424,0.424,0.25,0,0,0,0.255,0.639,0.639,0,0,0.346 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.146 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.186 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.149 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0372 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.0743 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.905,0.905,0.5,0,0,0,0.788,0.698,0.698,0,0,0.335 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.245 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.187 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.0797 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0983 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0.234 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0743 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.26 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0743 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0372 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.112 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.297 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.207 +0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.38 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.112 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.217 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.163 +0.667,0.143,0.143,0.25,0,0,0,0.331,0.493,0.493,0,0,0.29 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.0907 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0.499 +1,0.424,0.424,0,0,0,0,0.255,0.639,0.639,0,0,0.426 +0.667,0.291,0.291,0.75,0,0,0,0.263,0.581,0.581,0,0,0.47 +0.333,0.164,0.164,0.75,0,0,0,0.264,0.528,0.528,0,0,0.249 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.112 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.112 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0743 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.186 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.0926 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.293 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.403 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.26 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.236 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.286 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0.25,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0.111,0,0.137 +0.333,0.175,0.175,0,0.733,0,0,0.298,0.523,0.523,0.698,0,0.151 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0.857,0,0.0743 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.116 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.388 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0406 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.439 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.382 +0.333,0.172,0.172,0.5,0,0,0,0.316,0.548,0.548,0,0,0.136 +0.667,0.35,0.35,0.75,0,0,0,0.478,0.67,0.67,0,0,0.186 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.0372 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0743 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.298 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.423 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0907 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.245 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.149 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.149 +0.333,0.172,0.172,0,0,0.233,0,0.316,0.548,0.548,0,0.0917,0 +0.333,0.2,0.2,0,0,0.467,0,0.368,0.568,0.568,0,0,0.135 +0.333,0.251,0.251,0,0,0,1,0.405,0.573,0.573,0,0,0.212 +0.333,0.309,0.309,0,0,0,0.183,0.42,0.558,0.558,0,0,0.409 +0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.149 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.112 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.145 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.124 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0372 +0.333,0.164,0.164,0,0,0.233,0,0.264,0.528,0.528,0,0.339,0 +0.333,0.16,0.16,0,0,0.7,0,0.261,0.533,0.533,0,0.63,0 +0.333,0.159,0.159,0,0,0,0.767,0.275,0.533,0.533,0,0.583,0.186 +0.333,0.159,0.159,0,0,0,0.417,0.286,0.528,0.528,0,0.693,0.0372 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.44,0.26 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0.349,0.26 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0.229,0.112 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.26 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0372 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0411 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.162 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.169,0,0 +1,0.175,0.175,0.5,0.733,0,0,0.298,0.523,0.523,0.744,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.192 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.136 +0.667,0.279,0.279,0.5,0,0,0,0.271,0.591,0.591,0,0,0.143 +0.333,0.16,0.16,1,0,0,0,0.261,0.533,0.533,0,0,0.112 +0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.101 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.084 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.186 +0.333,0.309,0.309,0.75,0,0,0,0.42,0.558,0.558,0,0,0.112 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0372 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.18 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.264 +0.667,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.105 +1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.361 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.121 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.347 +0.333,0.17,0.17,0.5,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.269,0.269,0.25,0,0,0,0.293,0.601,0.601,0,0,0.112 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0743 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.149 +1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.223 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.0743 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.0743 +0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.246 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.389 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.488 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.687 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.197 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0.5,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.459 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.318 +0.667,0.175,0.175,0,0.4,0,0,0.298,0.523,0.523,0.635,0,0.0372 +0.667,0.299,0.299,0,0.583,0,0,0.256,0.581,0.581,0.408,0,0 +0.667,0.291,0.291,0,0.65,0.233,0,0.263,0.581,0.581,0.635,0.627,0.0743 +1,0.394,0.394,0.75,0.333,0,0.95,0.277,0.654,0.654,0.221,0.534,0 +1,0.382,0.382,0,0,0,0,0.266,0.669,0.669,0,0.353,0 +1,0.269,0.269,0,0.15,0,0,0.293,0.601,0.601,0.458,0.246,0 +1,0.269,0.269,0,0.583,0,0,0.315,0.591,0.591,0.124,0,0.105 +0.333,0.162,0.162,0.5,0,0,0,0.29,0.538,0.538,0,0,0.26 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0372 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.0743 +0.667,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.149 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0743 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0743 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.397 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.158 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.265 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.135 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.19 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.42 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0624 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.207 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.283 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.0743 +0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.43 +0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.213 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.294,0.294,0.5,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.26 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.186 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.223 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.297 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.0954 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0743 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0372 +0.333,0.2,0.2,0,0,0.233,0,0.368,0.568,0.568,0,0.563,0.0372 +0.667,0.453,0.453,0,0,0,0.7,0.552,0.68,0.68,0,0.0841,0.149 +0.667,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.0372 +0.667,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.384 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.216 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.424 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.75,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.112 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0743 +0.333,0.172,0.172,0.25,0,0,0,0.316,0.548,0.548,0,0,0.0372 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0.0743 +1,0.655,0.655,0.5,0.4,0,0,0.699,0.788,0.788,0.718,0.133,0.0743 +1,0.829,0.829,0,0.583,0.467,0,0.743,0.743,0.743,0.605,0.459,0.436 +1,0.905,0.905,0,0,0,0.7,0.788,0.698,0.698,0.178,0.401,0.201 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.717,0.229 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.596,0.0743 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.572,0.149 +1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0.494,0.0372 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0.349,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.084 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0372 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0.5,0,0.467,0,0.346,0.518,0.518,0,0.639,0.26 +1,0.301,0.301,0,0,0,0.467,0.337,0.581,0.581,0,0.844,0.0743 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0.543,0 +0.333,0.17,0.17,0.25,0,0,0,0.261,0.523,0.523,0,0.774,0.186 +0.667,0.279,0.279,0.5,0,0,0,0.271,0.591,0.591,0,0.493,0.0372 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0.365,0.409 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.0743 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0.7,0,0.258,0.465,0.465,0,0.534,0 +0.333,0.309,0.309,0,0,0,0.233,0.42,0.558,0.558,0,0.361,0 +0.333,0.335,0.335,0.25,0,0,0,0.434,0.543,0.543,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.2 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.352 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.162 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.268 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.223 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.0743 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0.122,0,0.252 +1,0.829,0.829,0,0.733,0,0,0.743,0.743,0.743,0.557,0,0.307 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.447 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.0743 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.318 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.289 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0.75,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0743 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.149 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.0372 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.372 +0.667,0.453,0.453,0.25,0,0,0,0.552,0.68,0.68,0,0,0.26 +0.667,0.569,0.569,0.5,0,0,0,0.581,0.65,0.65,0,0,0.186 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.203,0.0372 +1,0.116,0.116,0,0,0.233,0.233,0.357,0.489,0.489,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0.95,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0966 +0.667,0.279,0.279,0.25,0,0,0,0.271,0.591,0.591,0,0,0.254 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.223 +0.333,0.172,0.172,0,0.65,0,0,0.316,0.548,0.548,0.742,0,0 +0.667,0.35,0.35,0,0.0833,0,0,0.478,0.67,0.67,0.738,0,0.269 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0.677,0,0.418 +0.667,0.569,0.569,0.5,0,0,0,0.581,0.65,0.65,0.72,0,0.149 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.705,0,0 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.101,0.105 +1,0.301,0.301,0.5,0,0.233,0.217,0.337,0.581,0.581,0,0,0.258 +1,0.299,0.299,0,0,0,0.0167,0.256,0.581,0.581,0,0,0.385 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.194 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0.75,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0.75,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.112 +0.667,0.569,0.569,0,0.15,0,0,0.581,0.65,0.65,0.38,0,0.149 +0.667,0.62,0.62,0,0.733,0,0,0.611,0.621,0.621,0.573,0,0.166 +0.667,0.564,0.564,0,0.0833,0,0,0.596,0.601,0.601,0.28,0,0.518 +0.667,0.356,0.356,0.25,0,0,0,0.522,0.551,0.551,0,0,0.24 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.119 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.173 +0.333,0.0495,0.0495,0,0.15,0,0,0.258,0.465,0.465,0.375,0,0 +0.333,0.174,0.174,0,0.833,0,0,0.257,0.523,0.523,0.562,0,0.112 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0.679,0,0.297 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.584,0,0.0743 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0.703,0,0.112 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0.733,0,0.0372 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0.434,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0.635,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0.67,0,0.186 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.186 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.0372 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.112 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0372 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.26 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.162 +1,0.236,0.236,0.25,0,0,0,0.404,0.522,0.522,0,0,0.0837 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0743 +0.667,0.17,0.17,0.5,0,0,0,0.261,0.523,0.523,0,0,0.26 +0.667,0.279,0.279,0.5,0,0,0,0.271,0.591,0.591,0,0,0.149 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.112 +1,0.378,0.378,0,0,0,0,0.311,0.669,0.669,0,0,0.112 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0,0 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0.149 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.186 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.186 +0.333,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +0.667,0.0743,0.0743,0.5,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.482,0.482,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0.25,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.246 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.118 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.269 +0.333,0.16,0.16,0.25,0,0,0,0.261,0.533,0.533,0,0,0.211 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.155 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.227 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.442 +0.333,0.309,0.309,0,0,0,0,0.42,0.558,0.558,0,0,0.146 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.149 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.149 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.114 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0905 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.379 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.137 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.164,0.164,0.75,0,0,0,0.264,0.528,0.528,0,0,0.112 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.149 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0.75,0,0,0,0.286,0.528,0.528,0,0,0.149 +0.667,0.274,0.274,0.5,0,0.233,0,0.323,0.611,0.611,0,0.225,0.112 +0.667,0.294,0.294,0,0,0,0.467,0.374,0.631,0.631,0,0.55,0 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0.0372 +0.667,0.453,0.453,0.5,0,0,0,0.552,0.68,0.68,0.147,0,0.0372 +0.667,0.569,0.569,0,0.733,0,0,0.581,0.65,0.65,0.794,0,0.0743 +0.667,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.0743 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.0372 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.129 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.546 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.103 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0986 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.186 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.349 +0.667,0.279,0.279,0.25,0,0,0,0.271,0.591,0.591,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0372 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.149 +0.667,0.274,0.274,0,0,0.233,0,0.323,0.611,0.611,0,0.469,0.0743 +1,0.294,0.294,0,0,0,0.7,0.374,0.631,0.631,0,0.378,0.181 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0.502,0.0743 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0.106,0.0372 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.186 +0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.0372 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.261 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.087 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.383 +0.667,0.279,0.279,0,0.4,0,0,0.271,0.591,0.591,0.503,0,0.23 +0.333,0.16,0.16,0,0.583,0,0,0.261,0.533,0.533,0.282,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.294,0.294,0.25,0,0,0,0.374,0.631,0.631,0,0,0.0372 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.112 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.223 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0372 +0.667,0.564,0.564,0,0.4,0,0,0.596,0.601,0.601,0.698,0,0.446 +0.667,0.356,0.356,0,0.583,0,0,0.522,0.551,0.551,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.075 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0743 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.196 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.284 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.233 +0.667,0.271,0.271,0,0,0.233,0,0.263,0.601,0.601,0,0.291,0.451 +0.667,0.269,0.269,0,0,0.7,0,0.293,0.601,0.601,0,0.242,0.376 +0.667,0.269,0.269,0.5,0,0,0.767,0.315,0.591,0.591,0,0,0.0788 +0.333,0.162,0.162,0,0,0,0.183,0.29,0.538,0.538,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.372 +1,0.501,0.501,0.25,0,0,0,0.588,0.773,0.773,0,0,0.0743 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.26 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0743 +1,0.821,0.821,0,0.4,0,0,0.765,0.669,0.669,0.623,0,0.149 +1,0.356,0.356,0,0.0833,0,0,0.522,0.551,0.551,0.497,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0.818,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0.271,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.0743 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.26 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0.617,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.301,0.301,0.75,0,0,0,0.367,0.567,0.567,0,0,0.373 +1,0.946,0.946,0,0.267,0,0,0.697,0.785,0.785,0.484,0,0.0372 +0.667,0.339,0.339,0,0.517,0,0,0.419,0.557,0.557,0.135,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.263 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.21 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.276 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.175,0.175,0.617,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.667,0.647,0.647,0,0.517,0,0,0.55,0.679,0.679,0.594,0,0 +0.667,0.629,0.629,0,0.533,0,0,0.58,0.649,0.649,0.302,0,0.0372 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.186 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +0.667,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.0888 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.532 +1,0.177,0.177,1,0,0,0,0.345,0.518,0.518,0,0,0.0963 +0.667,0.184,0.184,0.133,0,0,0,0.297,0.523,0.523,0,0,0.163 +0.667,0.185,0.185,0.5,0,0,0,0.257,0.523,0.523,0,0,0.316 +0.333,0.181,0.181,0.0333,0,0,0,0.26,0.523,0.523,0,0,0.347 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.147 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.335 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.165 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.276 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.112 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.223 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0743 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0372 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.233,0,0.258,0.465,0.465,0,0.587,0 +1,0.051,0.051,0,0,0,0.967,0.293,0.468,0.468,0,0.644,0 +1,0.0816,0.0816,0,0,0,0.0667,0.305,0.473,0.473,0,0.569,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0.434,0.137 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0.584,0.107 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0.437,0.233 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0.72,0.235 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.218 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.0372 +0.667,0.171,0.171,0.267,0,0,0,0.26,0.532,0.532,0,0,0 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.251 +1,0.421,0.421,0,0,0,0,0.343,0.652,0.652,0,0,0.112 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.168 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.592 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.179 +0.333,0.348,0.348,0.267,0,0,0,0.404,0.572,0.572,0,0,0.186 +0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0 +0.333,0.282,0.282,0,0.25,0,0,0.434,0.542,0.542,0.844,0,0 +0.333,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0.301,0,0.297 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.273 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.225 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.0663 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.184,0.184,0,0,0.35,0,0.297,0.523,0.523,0,0.303,0.112 +1,0.321,0.321,0,0,0.583,0,0.255,0.58,0.58,0,0.887,0 +1,0.312,0.312,0,0,0,0.883,0.263,0.58,0.58,0,0.644,0 +0.667,0.175,0.175,0,0,0,0.15,0.264,0.528,0.528,0,0.528,0.112 +0.667,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0.624,0.223 +0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0.402,0 +0.667,0.173,0.173,0,0.267,0,0,0.286,0.528,0.528,0.44,0,0.15 +0.667,0.338,0.338,0,0.517,0,0,0.322,0.609,0.609,0.527,0,0.0747 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0.267,0,0,0,0.477,0.669,0.669,0,0,0.112 +0.667,0.647,0.647,0.367,0.25,0,0,0.55,0.679,0.679,0.649,0.0489,0.0743 +0.667,0.629,0.629,0.167,0,0.467,0,0.58,0.649,0.649,0,0.234,0 +0.667,0.515,0.515,0,0,0,0.85,0.609,0.619,0.619,0,0,0.149 +0.667,0.394,0.394,0,0,0,0.7,0.595,0.6,0.6,0,0,0.0743 +0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0785 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.0138,0 +0.333,0.0495,0.0495,0,0,0.233,0.0833,0.258,0.465,0.465,0,0.454,0 +0.333,0.185,0.185,0,0,0,0.95,0.257,0.523,0.523,0,0.434,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0.401,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.446,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0.289,0.191 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.0743 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0372 +0.333,0.237,0.237,0,0.0167,0,0,0.316,0.547,0.547,0.263,0,0.297 +0.333,0.301,0.301,0,0.767,0,0,0.367,0.567,0.567,0.579,0,0.0743 +0.333,0.348,0.348,0,0,0,0,0.404,0.572,0.572,0,0,0.0743 +0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0.483 +0.333,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.112 +0.333,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.105 +0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.229 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.163 +1,0.0816,0.0816,0,0,0.233,0,0.305,0.473,0.473,0,0.445,0.0814 +1,0.245,0.245,0,0,0,0.583,0.403,0.521,0.521,0,0,0.108 +1,0.177,0.177,0,0,0,0.7,0.345,0.518,0.518,0,0,0.118 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.0743 +0.333,0.185,0.185,0.117,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0.7,0,0,0,0.26,0.523,0.523,0,0,0.223 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0743 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0372 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0743 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.139 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.341 +1,0.804,0.804,0.267,0.0167,0,0,0.586,0.77,0.77,0.243,0,0.248 +0.333,0.348,0.348,0,0.233,0,0,0.404,0.572,0.572,0.291,0,0.112 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.223 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0372 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.281 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0323 +1,0.0816,0.0816,0.367,0,0,0,0.305,0.473,0.473,0,0,0.147 +1,0.245,0.245,0.167,0,0,0,0.403,0.521,0.521,0,0,0.0712 +0.667,0.177,0.177,0.117,0,0,0,0.345,0.518,0.518,0,0,0.131 +0.333,0.184,0.184,0.7,0.267,0.233,0,0.297,0.523,0.523,0.447,0.316,0.153 +0.333,0.185,0.185,0,0.783,0,0.583,0.257,0.523,0.523,0.236,0.18,0.0372 +0.333,0.181,0.181,0,0,0,0.967,0.26,0.523,0.523,0,0,0.186 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0372 +0.333,0.171,0.171,0,0.0167,0,0,0.26,0.532,0.532,0.36,0,0.223 +0.333,0.169,0.169,0,0.5,0,0,0.275,0.532,0.532,0.892,0,0.0743 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0372 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.27 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.147 +0.667,0.647,0.647,0.533,0,0,0,0.55,0.679,0.679,0,0,1 +0.667,0.629,0.629,0,0.517,0,0,0.58,0.649,0.649,0.718,0,0.236 +0.667,0.515,0.515,0,0.533,0,0,0.609,0.619,0.619,0.171,0,0.166 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.137 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.17 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.109 +1,0.177,0.177,0,0,0.233,0,0.345,0.518,0.518,0,0.291,0 +1,0.184,0.184,0,0,0,0.25,0.297,0.523,0.523,0,0,0.0743 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0743 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.112 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.055,0 +0.333,0.348,0.348,0,0,0.467,0,0.404,0.572,0.572,0,0.332,0.149 +0.333,0.339,0.339,0,0,0,0.85,0.419,0.557,0.557,0,0,0.186 +0.333,0.282,0.282,0,0,0,0.433,0.434,0.542,0.542,0,0,0.149 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0743 +0.667,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0619 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.177,0.177,0.583,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.174 +1,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.179 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.429 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.264 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0.4,0,0,0.258,0.465,0.465,0.584,0,0.0743 +0.333,0.194,0.194,0,0.383,0,0,0.29,0.537,0.537,0.113,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0372 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.149 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.186 +0.333,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.129 +0.333,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.149 +0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.169 +0.667,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0539 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.161 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.119 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.0864 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.263 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.262 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.112 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0887 +0.667,0.647,0.647,0.25,0,0,0,0.55,0.679,0.679,0,0,0.169 +0.667,0.629,0.629,0.567,0,0,0,0.58,0.649,0.649,0,0,0.174 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.279 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.0743 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.0743 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.335 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.163 +0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.0922 +0.667,0.184,0.184,0.117,0,0,0,0.297,0.523,0.523,0,0,0.184 +0.667,0.321,0.321,0.15,0,0,0,0.255,0.58,0.58,0,0,0.0743 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.0372 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.558 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.0372 +0.667,0.173,0.173,0,0,0.233,0,0.286,0.528,0.528,0,0.00917,0.0372 +0.667,0.194,0.194,0,0,0,0.583,0.29,0.537,0.537,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0.183,0.258,0.465,0.465,0,0,0.0743 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.112 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.446 +0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.533,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.305,0.305,0,0.267,0,0,0.432,0.57,0.57,0.343,0,0.18 +1,0.452,0.452,0,0.517,0,0,0.376,0.637,0.637,0.26,0,0.0662 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.149 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.0829 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0743 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.335 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.223 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.222 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.173 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.134 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.0743 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.244 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.253 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.223 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0372 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.186 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0.117,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0.417,0,0,0,0.316,0.547,0.547,0,0,0.0372 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.297 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.149 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.23 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.489 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.257 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.468 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0896 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.189 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0691 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.244 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.494 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.492 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.112 +1,0.421,0.421,0,0,0,0,0.343,0.652,0.652,0,0,0.186 +0.667,0.338,0.338,0.267,0,0,0,0.322,0.609,0.609,0,0,0.112 +0.667,0.425,0.425,0,0,0.233,0,0.373,0.629,0.629,0,0.44,0.112 +0.667,0.553,0.553,0,0,0,0.833,0.477,0.669,0.669,0,0.599,0.112 +0.667,0.647,0.647,0,0,0,0.717,0.55,0.679,0.679,0,0.466,0.112 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0.43,0.333 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0.407,0 +0.667,0.394,0.394,0,0,0.233,0,0.595,0.6,0.6,0,0.356,0.244 +1,0.493,0.493,0,0,0,0.833,0.652,0.593,0.593,0,0.563,0.08 +1,0.249,0.249,0,0,0,0.2,0.553,0.533,0.533,0,0.538,0.0978 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0.227 +1,0.066,0.066,0,0,0,0,0.359,0.481,0.481,0,0,0.118 +1,0.0495,0.0495,0,0,0,0,0.359,0.471,0.471,0,0,0.121 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.204 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.21 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.172 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.16 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.258 +0.667,0.3,0.3,0.967,0.0167,0,0,0.27,0.59,0.59,0.321,0,0.104 +0.667,0.292,0.292,0,0.767,0,0,0.263,0.6,0.6,0.612,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.186 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.149 +0.333,0.237,0.237,0.117,0,0,0,0.316,0.547,0.547,0,0,0.149 +0.333,0.301,0.301,0.7,0,0,0,0.367,0.567,0.567,0,0,0.149 +0.333,0.348,0.348,0,0,0,0,0.404,0.572,0.572,0,0,0.0743 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.104 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.207 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.372 +0.667,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.25 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.314 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0986 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.253 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.203 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.195 +0.667,0.171,0.171,0.267,0,0,0,0.26,0.532,0.532,0,0,0.119 +1,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.225 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.195 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.149 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.186 +1,0.553,0.553,0,0.4,0.233,0,0.477,0.669,0.669,0.577,0.462,0.394 +0.667,0.647,0.647,0,0.383,0.467,0,0.55,0.679,0.679,0.338,0.206,0.0743 +0.667,0.629,0.629,0,0,0,0.25,0.58,0.649,0.649,0,0,0.0372 +0.667,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.201 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.118 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.147 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.427 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0817 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0743 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.0495,0.0495,0.533,0,0,0,0.258,0.465,0.465,0,0,0.372 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.335 +0.333,0.348,0.348,0,0,0,0,0.404,0.572,0.572,0,0,0 +0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.0743 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.223 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0372 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.13 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.313 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0344 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.12 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.186 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0372 +0.667,0.171,0.171,0.617,0,0,0,0.26,0.532,0.532,0,0,0.384 +0.333,0.169,0.169,0.2,0,0,0,0.275,0.532,0.532,0,0,0.127 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.338,0.338,0.117,0,0,0,0.322,0.609,0.609,0,0,0.0743 +0.667,0.425,0.425,0.417,0,0,0,0.373,0.629,0.629,0,0,0.0743 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0.223 +0.333,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.188 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.218 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.106 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.175,0.175,0.167,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.186 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.26 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.0684 +0.667,0.553,0.553,0.117,0,0,0,0.477,0.669,0.669,0,0,0.18 +0.667,0.647,0.647,0.15,0.267,0,0,0.55,0.679,0.679,0.479,0,0.112 +0.667,0.629,0.629,0,0.783,0,0,0.58,0.649,0.649,0.623,0,0.149 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0.44,0,0 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0.751,0,0.112 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0.712,0,0.0743 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0.315,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.181,0.181,0,0.517,0,0,0.26,0.523,0.523,0.571,0,0.0743 +0.333,0.175,0.175,0,0.267,0,0,0.264,0.528,0.528,0.0983,0,0.26 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.335 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0372 +0.333,0.237,0.237,0.267,0,0,0,0.316,0.547,0.547,0,0,0.186 +0.333,0.301,0.301,0.617,0,0.6,0,0.367,0.567,0.567,0,0.616,0.0372 +0.667,0.647,0.647,1,0,0.567,0,0.55,0.679,0.679,0,0.274,0.149 +0.667,0.629,0.629,1,0,0,0.9,0.58,0.649,0.649,0,0,0 +0.333,0.282,0.282,0.4,0,0,0.383,0.434,0.542,0.542,0,0,0.186 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0743 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.333,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.177,0.177,0.15,0,0,0,0.345,0.518,0.518,0,0,0.0372 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.0528,0.0372 +0.333,0.185,0.185,0,0,0.467,0,0.257,0.523,0.523,0,0.565,0.142 +0.333,0.181,0.181,0,0,0,0.85,0.26,0.523,0.523,0,0.636,0 +0.333,0.175,0.175,0,0,0,0.95,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.239 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.301,0.301,0.367,0,0,0,0.367,0.567,0.567,0,0,0.0372 +0.333,0.348,0.348,0.167,0,0,0,0.404,0.572,0.572,0,0,0 +0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.372 +1,0.566,0.566,0,0,0.233,0,0.763,0.667,0.667,0,0.286,0.112 +1,0.345,0.345,0,0.0167,0,0.583,0.521,0.55,0.55,0.223,0.63,0.0372 +1,0.116,0.116,0,0.767,0,0.883,0.356,0.488,0.488,0.456,0,0.0743 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0.533,0,0,0,0.308,0.468,0.468,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.184,0.184,0.117,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0.15,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.171 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.322 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.409 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.149 +0.333,0.237,0.237,0.267,0,0,0,0.316,0.547,0.547,0,0,0.26 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.242 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.551 +0.667,0.629,0.629,0.117,0,0,0,0.58,0.649,0.649,0,0,0.112 +0.667,0.515,0.515,0.417,0,0,0,0.609,0.619,0.619,0,0,0.0372 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.112 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0372 +1,0.116,0.116,0,0,0,0.0833,0.356,0.488,0.488,0,0,0.266 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0.0983,0,0 +1,0.177,0.177,1,0.9,0,0,0.345,0.518,0.518,0.66,0,0 +0.667,0.184,0.184,0.133,0.15,0,0,0.297,0.523,0.523,0.575,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0.731,0,0.0928 +0.667,0.181,0.181,0.5,0,0,0,0.26,0.523,0.523,0,0,0.283 +0.667,0.3,0.3,0.0333,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.0372 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.0743 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.0743 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.372 +0.667,0.553,0.553,0,0,0.233,0,0.477,0.669,0.669,0,0.138,0.112 +0.667,0.647,0.647,0,0,0,0.467,0.55,0.679,0.679,0,0.411,0.149 +0.667,0.629,0.629,0,0,0,0.817,0.58,0.649,0.649,0,0.63,0.149 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0.131,0.256 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.0746 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.149 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0.533,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0372 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.488 +0.667,0.301,0.301,0.25,0,0,0,0.367,0.567,0.567,0,0,0.532 +1,0.647,0.647,0.0167,0,0,0,0.55,0.679,0.679,0,0,0.267 +1,0.919,0.919,0,0,0.483,0,0.741,0.741,0.741,0,0.479,0 +1,0.747,0.747,0,0,0.217,0.25,0.785,0.696,0.696,0,0,0.112 +1,0.566,0.566,0,0,0,0.267,0.763,0.667,0.667,0,0,0.26 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0.617,0,0,0,0.305,0.473,0.473,0,0,0.147 +1,0.245,0.245,0.2,0,0,0,0.403,0.521,0.521,0,0,0.0601 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.0743 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0743 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.352 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0372 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0.117,0,0,0,0.292,0.6,0.6,0,0,0.0743 +1,0.297,0.297,0.15,0,0,0,0.314,0.59,0.59,0,0,0.0372 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.26 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0743 +0.667,0.348,0.348,0,0.0167,0,0,0.404,0.572,0.572,0.321,0,0.112 +0.667,0.339,0.339,0,1,0,0,0.419,0.557,0.557,0.516,0,0.0372 +0.333,0.0495,0.0495,0,0.0333,0,0,0.258,0.465,0.465,0,0,0.451 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.203 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0.117,0,0,0,0.403,0.521,0.521,0,0,0.225 +1,0.433,0.433,0.267,0,0,0,0.52,0.622,0.622,0,0,0.286 +0.333,0.184,0.184,0.15,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0.35,0,0.257,0.523,0.523,0,0.396,0.0372 +0.333,0.181,0.181,0,0,0.583,0,0.26,0.523,0.523,0,0.474,0.149 +0.333,0.175,0.175,0,0,0,0.25,0.264,0.528,0.528,0,0.677,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0.543,0.372 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0.568,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.508,0 +0.667,0.338,0.338,0.267,0,0,0,0.322,0.609,0.609,0,0.213,0.0372 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.551,0.186 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.542,0.149 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0.581,0.186 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0.537,0 +0.333,0.282,0.282,0.617,0,0,0,0.434,0.542,0.542,0,0.673,0.0372 +0.333,0.222,0.222,1,0,0,0,0.426,0.532,0.532,0,0.365,0.152 +0.667,0.197,0.197,0.3,0,0,0,0.389,0.508,0.508,0,0.11,0.0372 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.189 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.0893 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.0372 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0372 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.397 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.251 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.223 +0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.223 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.112 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.112 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.0372 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.112 +0.667,0.629,0.629,0,0,0.1,0,0.58,0.649,0.649,0,0.171,0 +0.667,0.515,0.515,0,0,0.367,0.1,0.609,0.619,0.619,0,0.22,0.0372 +0.667,0.394,0.394,0,0,0,1,0.595,0.6,0.6,0,0,0 +0.667,0.0495,0.0495,0,0,0,0.45,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.318,0.318,0.417,0,0,0,0.337,0.58,0.58,0,0,0.109 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0372 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0372 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.112 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.149 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.0372 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.142 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.374 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.305,0.305,0.7,0.517,0,0,0.432,0.57,0.57,0.646,0,0.143 +0.667,0.318,0.318,0,0.533,0,0,0.337,0.58,0.58,0,0,0.293 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.186 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.26 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.194,0.194,0.267,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.333,0.301,0.301,0.267,0,0,0,0.367,0.567,0.567,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.149 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.186 +0.667,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.1 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.201 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.177 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.363 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.2 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.253,0.253,0.267,0,0,0,0.354,0.61,0.61,0,0,0.0372 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.297 +0.333,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.149 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.402 +0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0372 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.188 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.137 +0.333,0.253,0.253,0,0,0.483,0,0.354,0.61,0.61,0,0.335,0 +0.333,0.323,0.323,0,0,0,0.467,0.419,0.635,0.635,0,0.572,0.0372 +0.333,0.366,0.366,0,0,0,1,0.465,0.641,0.641,0,0.94,0.112 +0.333,0.344,0.344,0,0,0,1,0.484,0.622,0.622,0,0.534,0 +0.333,0.277,0.277,0,0,0,0.567,0.503,0.604,0.604,0,0.26,0.112 +0.333,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.3 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.13 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.135 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.089 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0907 +1,0.313,0.313,0,0.4,0,0,0.524,0.68,0.68,0.523,0,0.18 +0.667,0.33,0.33,0,0.683,0,0,0.403,0.692,0.692,0,0,0.346 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.0616 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.288 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.3 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.269 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0455 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.355 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.346 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.213 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0372 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.335 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.457,0.457,0.5,0,0,0,0.449,0.755,0.755,0,0,0.135 +1,0.869,0.869,0.583,0,0,0,0.741,0.974,0.974,0,0,0.183 +1,1,1,0.3,0,0,0,0.881,0.993,0.993,0,0,0.112 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.372 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.149 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.186 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.149 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0414 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.248 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.125 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.112 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.186 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.333,0.323,0.323,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.683,0.683,0.4,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.207 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.186 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.112 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.181 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0823 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.253 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.168 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.105 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.182,0.182,0.5,0,0,0,0.316,0.585,0.585,0,0,0.0743 +0.333,0.204,0.204,0.05,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,1,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.596,0.596,1,0,0,0,0.58,0.805,0.805,0,0,0.112 +0.667,0.683,0.683,0.817,0,0,0,0.673,0.817,0.817,0,0,0.298 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.111 +0.667,0.504,0.504,0,0.4,0,0,0.748,0.742,0.742,0.43,0,0.623 +1,0.218,0.218,0,0.417,0,0,0.493,0.591,0.591,0.258,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.156 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.289 +0.667,0.19,0.19,0.267,0,0,0,0.33,0.579,0.579,0,0,0.185 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.235 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0.15,0,0.35 +0.333,0.183,0.183,0,0.9,0,0,0.288,0.585,0.585,0.562,0,0.149 +0.333,0.178,0.178,0,0.183,0.733,0,0.284,0.591,0.591,0.839,0.394,0 +0.333,0.177,0.177,0,0,0,0.467,0.302,0.591,0.591,0,0.794,0.112 +0.333,0.182,0.182,0,0,0,1,0.316,0.585,0.585,0,0.22,0.112 +0.667,0.359,0.359,0,0,0,0.183,0.384,0.73,0.73,0,0.471,0.0372 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.375,0.0372 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0.471,0.0743 +0.667,0.683,0.683,0.267,0,0,0,0.673,0.817,0.817,0,0.564,0.0372 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.0743 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.161 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0937 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.355 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.166 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.6 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.233 +1,0.449,0.449,0,0,0,0,0.35,0.824,0.824,0,0,0.366 +0.667,0.307,0.307,0.267,0,0,0,0.31,0.717,0.717,0,0,0.0759 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.149 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0372 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.149 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0372 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.149 +0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.0743 +0.333,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0.112 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.112 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.18 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.258 +1,0.116,0.116,0.5,0,0,0,0.422,0.567,0.567,0,0,0.429 +0.667,0.251,0.251,0.617,0,0,0,0.487,0.617,0.617,0,0,0.0811 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.0372 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.355 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.167 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.0743 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.112 +0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0372 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.112 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.0743 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.24 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.19,0.19,0.55,0,0,0,0.33,0.579,0.579,0,0,0.0743 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0743 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.223 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0372 +0.667,0.307,0.307,0.55,0,0,0,0.31,0.717,0.717,0,0,0.0372 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +1,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.223 +1,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.0743 +1,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.112 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.112 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.0372 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.444,0.444,0.25,0,0,0,0.657,0.787,0.787,0,0,0.249 +0.667,0.33,0.33,0.0167,0,0,0,0.403,0.692,0.692,0,0,0.118 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0743 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.112 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.186 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.252 +0.333,0.204,0.204,0.75,0,0,0,0.321,0.597,0.597,0,0,0.177 +0.667,0.457,0.457,0.0833,0,0,0,0.449,0.755,0.755,0,0,0.208 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.223 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.399 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.295 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.26 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.161 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.256 +1,0.351,0.351,0,0,0,0,0.601,0.693,0.693,0,0,0.126 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.162 +0.333,0.19,0.19,0.267,0,0,0,0.33,0.579,0.579,0,0,0.168 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.299 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0.4,0,0,0.284,0.591,0.591,0.551,0,0 +0.333,0.177,0.177,0,0.417,0,0,0.302,0.591,0.591,0.549,0,0.0372 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0.653,0,0.0743 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0.555,0,0.129 +0.667,0.253,0.253,0.267,0,0,0,0.354,0.61,0.61,0,0,0.297 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.112 +1,1,1,0,0.15,0,0,0.881,0.993,0.993,0.415,0,0.223 +1,0.933,0.933,0,0.667,0,0,0.937,0.937,0.937,0.5,0,0 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0372 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.297 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.172 +0.667,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.231 +0.667,0.313,0.313,0.267,0,0,0,0.524,0.68,0.68,0,0,0.0546 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.139 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.357 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.0743 +0.667,0.316,0.316,0,0.4,0,0,0.319,0.705,0.705,0.686,0,0 +0.667,0.307,0.307,0.5,0.417,0,0,0.31,0.717,0.717,0.224,0,0.0372 +0.667,0.305,0.305,0.617,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0372 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.149 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.0743 +1,0.869,0.869,0.75,0,0,0,0.741,0.974,0.974,0,0,0.0372 +1,1,1,0.367,0,0,0,0.881,0.993,0.993,0,0,0.112 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.158,0,0.0372 +0.667,0.504,0.504,0,0.533,0,0,0.748,0.742,0.742,0.807,0,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.33 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.294 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.142 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0743 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0.5,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0.05,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.0372 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.0743 +0.667,0.596,0.596,0,0.4,0,0,0.58,0.805,0.805,0.668,0,0.149 +0.667,0.683,0.683,0,0.417,0,0,0.673,0.817,0.817,0,0,0.297 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.0891,0,0.372 +0.667,0.504,0.504,0,0.817,0,0,0.748,0.742,0.742,0.814,0,0.112 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0.288,0,0.112 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0743 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0.307 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0832 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.147 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.139 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.325 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.272 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.298 +0.667,0.328,0.328,0,0.65,0,0,0.31,0.692,0.692,0.675,0,0.35 +0.667,0.316,0.316,0,0.167,0,0,0.319,0.705,0.705,0.636,0,0.14 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.226 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.102 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0.13,0,0 +0.667,0.359,0.359,0,0.9,0,0,0.384,0.73,0.73,0.475,0,0.112 +0.333,0.253,0.253,0.5,0.717,0,0,0.354,0.61,0.61,0.67,0,0.244 +1,0.869,0.869,0.05,0,0,0,0.741,0.974,0.974,0.536,0,0.223 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0.822,0,0.372 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.158,0,0.112 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.112 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.149 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0931 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.203 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.199 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.138 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.316 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.382 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.151 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0372 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0372 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.212,0,0.0372 +0.667,0.253,0.253,0,0.817,0,0,0.354,0.61,0.61,0.609,0,0 +1,0.596,0.596,0.833,0,0,0,0.58,0.805,0.805,0,0,0.339 +0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.344,0.344,0.25,0,0,0,0.484,0.622,0.622,0,0.0657,0.335 +0.333,0.277,0.277,0.3,0,0.733,0,0.503,0.604,0.604,0,0.731,0.258 +0.667,0.386,0.386,0,0,0,0.717,0.729,0.717,0.717,0,0.0917,0 +0.667,0.342,0.342,0,0,0,0.933,0.636,0.655,0.655,0,0,0.0743 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.279 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.2 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.154 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0967 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.213 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.286 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.195 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.351 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.429 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.177,0.177,0.267,0.65,0,0,0.302,0.591,0.591,0.744,0,0.0743 +0.333,0.182,0.182,0,0.433,0,0,0.316,0.585,0.585,0.792,0,0.0743 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0372 +0.667,0.596,0.596,0.55,0,0,0,0.58,0.805,0.805,0,0,0.0372 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.149 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.149 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.112 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.0743 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0743 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0372 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0836 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.367 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.455 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.273 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.375 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0743 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0743 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.112 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.223 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.112 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0513,0.0513,0.25,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0.0167,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.288 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.196 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.439 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.263 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0.132,0,0.344 +0.667,0.305,0.305,0,0.9,0,0,0.347,0.717,0.717,0.707,0.102,0.371 +0.667,0.314,0.314,0,0.183,0.233,0.217,0.375,0.705,0.705,0.479,0.635,0.198 +0.667,0.359,0.359,0,0,0,0.883,0.384,0.73,0.73,0,0.37,0.0743 +0.667,0.457,0.457,0.267,0,0,0,0.449,0.755,0.755,0,0.823,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0.0917,0.569 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.532 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.115 +0.667,0.504,0.504,0.267,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.173 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.167 +1,0.15,0.15,0.5,0,0,0,0.372,0.541,0.541,0,0,0.78 +1,0.444,0.444,0.05,0,0,0,0.657,0.787,0.787,0,0,0.264 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.435 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.112 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0372 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.223 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0372 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.283 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.405 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.234 +0.667,0.638,0.638,0,0.65,0,0,0.711,0.78,0.78,0.707,0,0.112 +0.667,0.504,0.504,0,0.433,0,0,0.748,0.742,0.742,0,0,0.149 +0.667,0.386,0.386,0,0,0.233,0,0.729,0.717,0.717,0,0.22,0.0372 +1,0.342,0.342,0,0.4,0,0.467,0.636,0.655,0.655,0.646,0.128,0.232 +1,0.183,0.183,0,0.683,0,1,0.552,0.605,0.605,0.503,0,0.0372 +1,0.099,0.099,0,0,0,0.183,0.459,0.592,0.592,0.412,0,0 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0.163 +1,0.0495,0.0495,0,0,0,0,0.431,0.555,0.555,0,0,0.153 +1,0.0495,0.0495,0,0,0,0,0.422,0.542,0.542,0,0,0.0811 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.125 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.193,0.193,0.833,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.136 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.265 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.253 +0.667,0.359,0.359,0,0.4,0,0,0.384,0.73,0.73,0.555,0,0.335 +0.667,0.457,0.457,0,0.683,0,0,0.449,0.755,0.755,0.288,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.335 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0743 +0.667,0.638,0.638,0,0,0.483,0,0.711,0.78,0.78,0,0.399,0.0372 +0.667,0.504,0.504,0,0,0,0.717,0.748,0.742,0.742,0,0,0.194 +0.667,0.218,0.218,0,0,0,0.667,0.493,0.591,0.591,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0899 +0.667,0.328,0.328,0.55,0,0,0,0.31,0.692,0.692,0,0,0.0829 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.329 +1,0.436,0.436,0,0,0,0,0.336,0.843,0.843,0,0,0.205 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.258 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.318 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.149 +0.333,0.253,0.253,0.267,0,0,0,0.354,0.61,0.61,0,0,0.186 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.149 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0.0372 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.0372 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.0732 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.302 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.128 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.19,0.19,0.267,0,0,0,0.33,0.579,0.579,0,0,0.117 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.412 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.276 +1,0.449,0.449,0,0,0,0,0.35,0.824,0.824,0,0,0.112 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.162 +0.667,0.305,0.305,0.55,0,0,0,0.347,0.717,0.717,0,0,0.153 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.149 +0.333,0.204,0.204,0.5,0,0,0,0.321,0.597,0.597,0,0,0.26 +0.333,0.253,0.253,0.05,0,0,0,0.354,0.61,0.61,0,0,0.112 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.112 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0.16,0,0.186 +0.667,0.638,0.638,0,0.9,0,0,0.711,0.78,0.78,0.187,0,0.0372 +0.667,0.504,0.504,0,0.183,0,0,0.748,0.742,0.742,0,0,0.223 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.0372 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.109 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0937 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.174 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.357 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0743 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.335 +1,0.359,0.359,0.267,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.186 +0.667,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.0372 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0.26 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.223 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.186 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +0.667,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.333,0.15,0.15,0,0,0.233,0,0.372,0.541,0.541,0,0.225,0.532 +0.333,0.181,0.181,0,0,0.25,0.217,0.391,0.572,0.572,0,0.332,0 +0.667,0.19,0.19,0,0,0,1,0.33,0.579,0.579,0,0.463,0.0797 +0.667,0.337,0.337,0,0,0,0.167,0.3,0.692,0.692,0,0.524,0.117 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0.524,0.328 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0.766,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0.635,0.149 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.223 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0743 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0372 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.149 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.638,0.638,0,0.4,0,0,0.711,0.78,0.78,0.494,0,0.112 +0.667,0.504,0.504,0,0.417,0,0,0.748,0.742,0.742,0.757,0,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0.2,0,0.0743 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.144 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.229 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.204,0.204,0.0167,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.22 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.373 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.336 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.25 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.543 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.173 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.301 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.132 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.595 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.183,0.183,0.25,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.178,0.178,0.3,0,0,0,0.284,0.591,0.591,0,0,0.186 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.112 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.204,0.204,0.25,0,0.233,0,0.321,0.597,0.597,0,0.122,0.149 +0.667,0.457,0.457,1,0,0.25,0.217,0.449,0.755,0.755,0,0.524,0.0372 +0.667,0.596,0.596,0.433,0,0,0.05,0.58,0.805,0.805,0,0.564,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.149 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.112 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0372 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.186 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.206 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.229 +1,0.444,0.444,0.267,0,0,0,0.657,0.787,0.787,0,0,0.469 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.342 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.516 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.214 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.333,0.178,0.178,0.267,0,0,0,0.284,0.591,0.591,0,0,0.112 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0743 +0.667,0.359,0.359,0,0,0.483,0,0.384,0.73,0.73,0,0.258,0.0372 +0.667,0.457,0.457,0,0,0,0.467,0.449,0.755,0.755,0,0.295,0.149 +0.667,0.596,0.596,0,0,0,0.35,0.58,0.805,0.805,0,0,0.112 +0.667,0.683,0.683,0,0.4,0,0,0.673,0.817,0.817,0.562,0,0 +0.667,0.638,0.638,0,0.683,0,0,0.711,0.78,0.78,0.603,0,0.0372 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0.724,0,0.223 +0.667,0.386,0.386,0.75,0,0,0,0.729,0.717,0.717,0,0,0.278 +1,0.342,0.342,0.367,0,0,0,0.636,0.655,0.655,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.214 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.15 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.131 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.27 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0337 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0372 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0743 +0.667,0.204,0.204,0.5,0,0,0,0.321,0.597,0.597,0,0,0.0372 +0.667,0.457,0.457,1,0,0,0,0.449,0.755,0.755,0,0,0.186 +0.667,0.596,0.596,0.183,0,0,0,0.58,0.805,0.805,0,0,0.223 +1,1,1,0,0.533,0,0,0.881,0.993,0.993,0.77,0,0.0743 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.319 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.163 +0.667,0.386,0.386,0.25,0,0,0,0.729,0.717,0.717,0,0,0.0475 +1,0.488,0.488,0.0167,0,0,0,0.825,0.749,0.749,0,0,0.223 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.0372 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0372 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0767 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0925 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.279 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.225 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.164 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.149 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.192 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.158 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.186 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.297 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.297 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.26 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.287 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.166 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.165 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0743 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.149 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.112 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.479 +0.667,0.457,0.457,0.5,0,0,0,0.449,0.755,0.755,0,0,0.165 +0.667,0.596,0.596,0.05,0,0,0,0.58,0.805,0.805,0,0,0.0372 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0743 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.112 +0.333,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0.26 +0.667,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.378 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.16 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv new file mode 100644 index 00000000..b1f417b0 --- /dev/null +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv @@ -0,0 +1,8761 @@ +occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.258 +1,0.0833,0.0833,0.25,0,0,0,0.34,0.516,0.516,0,0,0.19 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.185 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.139 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.324 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.185 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.741 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.359,0.359,0.25,0,0,0,0.465,0.641,0.641,0,0,0.185 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.139 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.121 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.718 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.441 +1,0.117,0.117,0,0,0,0,0.422,0.567,0.567,0,0,0.299 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.0926 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.231 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0463 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.509 +0.333,0.196,0.196,0.25,0,0,0,0.321,0.597,0.597,0,0,0.139 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0.42,0,0 +1,0.991,0.991,0,0.667,0,0,0.937,0.937,0.937,0.37,0,0.278 +1,0.823,0.823,0.25,0,0.0638,0,0.993,0.88,0.88,0,0,0.183 +1,0.43,0.43,0,0,0.234,0.317,0.729,0.717,0.717,0,0.397,0.139 +1,0.0495,0.0495,0,0,0,0.5,0.258,0.465,0.465,0,0.0467,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.146 +0.667,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0.121 +0.667,0.183,0.183,0,0,0.553,0.0667,0.391,0.572,0.572,0,0.168,0 +0.667,0.334,0.334,0,0,0,1,0.403,0.692,0.692,0,0.197,0 +0.333,0.196,0.196,0,0,0,0.0167,0.279,0.579,0.579,0,0,0.232 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.185 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0463 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.407 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.669,0.669,0,0,0.298,0,0.673,0.817,0.817,0,0,0.231 +0.667,0.677,0.677,0,0,0,0.817,0.711,0.78,0.78,0.447,0.504,0 +0.667,0.565,0.565,0,0.667,0,0,0.748,0.742,0.742,0.571,0,0 +0.667,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.139 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.509 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0463 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.127 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.0663 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.224 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.123 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.278 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.484 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.164 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.324 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0463 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.324 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.185 +0.667,0.299,0.299,0.517,0,0,0,0.419,0.635,0.635,0,0,0.0926 +1,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.139 +1,0.677,0.677,0,0.0833,0,0,0.711,0.78,0.78,0.598,0,0 +1,0.823,0.823,0,0.25,0,0,0.993,0.88,0.88,0.711,0,0.278 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0.11,0,0.0463 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0682 +1,0.117,0.117,0.117,0,0,0,0.422,0.567,0.567,0,0,0.172 +1,0.253,0.253,0.65,0.0833,0,0,0.487,0.617,0.617,0.65,0,0.103 +0.667,0.183,0.183,0,0.583,0,0,0.391,0.572,0.572,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.278 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.139 +0.333,0.234,0.234,0.25,0,0,0,0.354,0.61,0.61,0,0,0.0926 +1,0.798,0.798,0,0,0.298,0,0.741,0.974,0.974,0,0,0 +1,0.979,0.979,0,0,0,0.567,0.881,0.993,0.993,0,0.224,0.0463 +1,0.991,0.991,0,0,0,0.517,0.937,0.937,0.937,0,0.0816,0 +1,0.565,0.565,0.367,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.43,0.43,0.4,0,0,0,0.729,0.717,0.717,0,0,0.24 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.172 +1,0.343,0.343,0.0333,0,0,0,0.3,0.692,0.692,0,0,0.162 +0.667,0.334,0.334,0.217,0,0,0,0.31,0.692,0.692,0,0,0.0349 +0.667,0.322,0.322,0.25,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0.231 +1,0.315,0.315,0,0,0.277,0,0.375,0.705,0.705,0,0,0 +1,0.343,0.343,0,0,0.0213,0.267,0.384,0.73,0.73,0,0.359,0.139 +1,0.418,0.418,0.25,0,0,0,0.449,0.755,0.755,0,0.111,0.278 +1,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.278 +1,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.185 +1,0.991,0.991,0,0.292,0,0,0.937,0.937,0.937,0.774,0,0.0926 +1,0.823,0.823,0,0.375,0,0,0.993,0.88,0.88,0,0,0.231 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.231 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.0463 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.433 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.508 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.236 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.481 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.424 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.338 +0.667,0.418,0.418,0.25,0,0,0,0.449,0.755,0.755,0,0,0.139 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.139 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0463 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.156,0,0.0926 +0.667,0.565,0.565,0,0.604,0,0,0.748,0.742,0.742,0.826,0,0.0463 +1,0.621,0.621,0,0.0625,0,0,0.965,0.843,0.843,0.0808,0,0.373 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.287 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0902 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.117 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.247 +1,0.355,0.355,0.25,0,0,0,0.601,0.693,0.693,0.465,0,0.13 +1,0.449,0.449,0,1,0,0,0.657,0.787,0.787,0.542,0,0.509 +1,0.477,0.477,0,0,0.298,0,0.475,0.806,0.806,0.474,0,0.427 +1,0.49,0.49,0,0,0,0.817,0.322,0.806,0.806,0,0.521,0.333 +0.667,0.334,0.334,0,0,0,0.267,0.31,0.692,0.692,0,0.352,0.272 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.495 +0.333,0.0495,0.0495,0,0,0.617,0,0.258,0.465,0.465,0,0.116,0.0463 +0.333,0.18,0.18,0,0,0,0.817,0.302,0.591,0.591,0,0.521,0.0463 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.393,0 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0.641,0.324 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0.513,0 +1,0.798,0.798,0.25,0,0,0,0.741,0.974,0.974,0,0.145,0.0926 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.0463 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.185 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0926 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.185 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0912 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.124 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.19 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.278 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.185 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0.617,0,0,0,0.321,0.597,0.597,0,0,0.0463 +0.333,0.234,0.234,0.15,0,0,0,0.354,0.61,0.61,0,0,0.185 +1,0.798,0.798,0.117,0,0,0,0.741,0.974,0.974,0,0,0.0926 +1,0.979,0.979,0.4,0,0,0,0.881,0.993,0.993,0,0,0.231 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.185 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0926 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.158 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.163 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.243 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.0899 +0.333,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.123 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.272 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.479 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.251 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0463 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.185 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.185 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.306 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.503 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.0644 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.139 +1,0.823,0.823,0.25,0.0833,0,0,0.993,0.88,0.88,0.512,0,0.231 +1,0.24,0.24,0,0.583,0,0,0.493,0.591,0.591,0.596,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0.754,0,0.0926 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.355 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.441 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.74 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0463 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.139 +0.333,0.181,0.181,0,0,0.0638,0,0.284,0.591,0.591,0,0,0 +0.667,0.311,0.311,0,0,0.553,0.0667,0.347,0.717,0.717,0,0.378,0.0463 +0.667,0.315,0.315,0,0,0,1,0.375,0.705,0.705,0,0.861,0 +0.333,0.196,0.196,0,0,0,0.0167,0.321,0.597,0.597,0,0.598,0.0926 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0.154,0 +0.333,0.299,0.299,0.25,0,0,0,0.419,0.635,0.635,0,0,0.0463 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.239 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.37 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0926 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.231 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.484 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.111 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0.702,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0.213,0.333,0.284,0.579,0.579,0,0.607,0.185 +0.333,0.186,0.186,0,0,0,0.75,0.288,0.585,0.585,0,0.619,0.417 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.711,0.231 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.543,0.0463 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.381,0.0463 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0.767,0,0,0,0.354,0.61,0.61,0,0,0.0463 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.185 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.231 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0463 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.268 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.131 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.336 +1,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.322,0.322,0,0.292,0.617,0,0.319,0.705,0.705,0.715,0.102,0 +0.667,0.313,0.313,0,0.0417,0,0.733,0.31,0.717,0.717,0,0.78,0 +0.667,0.311,0.311,0,0,0,0.0833,0.347,0.717,0.717,0,0.325,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.402,0.0463 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.45,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.494,0.278 +1,0.798,0.798,0.25,0,0,0,0.741,0.974,0.974,0,0.68,0.231 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0.436,0.0463 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.291,0.231 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.436,0.535 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.466 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.286 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0.185 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.183,0.183,0.25,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0463 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0463 +0.333,0.18,0.18,0,0,0.617,0,0.302,0.591,0.591,0,0.0861,0.0926 +0.667,0.315,0.315,0,0,0,0.733,0.375,0.705,0.705,0,0.0593,0.37 +0.667,0.343,0.343,0,0,0,0.35,0.384,0.73,0.73,0,0,0.0463 +0.667,0.418,0.418,0.25,0,0,0,0.449,0.755,0.755,0,0,0.18 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.727 +1,0.979,0.979,0,0,0.298,0.233,0.881,0.993,0.993,0,0.206,0.139 +1,0.991,0.991,0,0,0,0.85,0.937,0.937,0.937,0,0.38,0.0926 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.829,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.205,0.139 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0.508,0,0.278 +1,0.116,0.116,0,0.667,0,0,0.405,0.535,0.535,0.355,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0.142,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0594 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.612 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.168 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.327 +0.333,0.192,0.192,0.117,0,0,0,0.284,0.579,0.579,0,0,0.231 +0.333,0.186,0.186,0.65,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0463 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0463 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0.145,0,0.502 +0.667,0.669,0.669,0,0.396,0,0,0.673,0.817,0.817,0.813,0,0.139 +1,0.991,0.991,0,0.271,0,0,0.937,0.937,0.937,0.0763,0,0.0926 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0926 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.19,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.399 +1,0.355,0.355,0.617,0,0,0,0.601,0.693,0.693,0,0,0.289 +0.667,0.316,0.316,0.417,0,0.298,0.0667,0.524,0.68,0.68,0,0.0861,0 +0.667,0.334,0.334,0,0,0,1,0.403,0.692,0.692,0,0.445,0 +0.667,0.343,0.343,0,0,0,0.0167,0.3,0.692,0.692,0,0,0.231 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.612 +0.333,0.186,0.186,0.517,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0926 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.185 +0.333,0.182,0.182,0.117,0,0,0,0.316,0.585,0.585,0,0,0.139 +0.333,0.196,0.196,0.133,0,0,0,0.321,0.597,0.597,0,0,0.185 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0.115,0,0 +1,0.798,0.798,0,0.396,0,0,0.741,0.974,0.974,0.853,0,0.0926 +0.667,0.669,0.669,0,0.271,0,0,0.673,0.817,0.817,0.695,0,0.18 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.0463 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.231 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.555 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.253,0.253,0.25,0,0,0,0.487,0.617,0.617,0,0,0.523 +1,0.449,0.449,0,0,0,0,0.657,0.787,0.787,0,0,0.331 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.124 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.258 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0463 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0.117,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0.4,0,0,0,0.316,0.585,0.585,0,0,0.37 +0.667,0.343,0.343,0.117,0,0,0,0.384,0.73,0.73,0,0,0.18 +0.667,0.418,0.418,0.133,0,0,0,0.449,0.755,0.755,0,0,0.0926 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.139 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.0926 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.246 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.103 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.287 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0943 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.212 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.259 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.134 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.194 +0.333,0.18,0.18,0.25,0,0,0,0.302,0.591,0.591,0,0,0.139 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.278 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.0463 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.231 +0.333,0.359,0.359,0,0,0.617,0,0.465,0.641,0.641,0,0,0.139 +1,0.991,0.991,0.517,0,0,0.567,0.937,0.937,0.937,0,0.224,0.0463 +1,0.823,0.823,0,0,0,0.25,0.993,0.88,0.88,0,0,0.139 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.139 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.138 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.287 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.162 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.261 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.0896 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.263 +0.667,0.313,0.313,0,0,0.383,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0.532,0.0833,0.347,0.717,0.717,0,0.455,0.0463 +0.667,0.182,0.182,0.117,0,0,1,0.316,0.585,0.585,0,0.616,0.0463 +0.667,0.196,0.196,0.4,0,0,0,0.321,0.597,0.597,0,0.628,0.324 +1,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.461,0.0463 +1,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.139 +1,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0926 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.324 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0463 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0463 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.333 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.252 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.0842 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.26 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.224 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.419 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0,0.303 +1,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.116 +1,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.787 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.696 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.384 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.281 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.231 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0.25,0,0,0,0.288,0.585,0.585,0,0,0.218 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.139 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.37 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.139 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.0926 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.326 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.317 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.16 +1,0.355,0.355,0,0,0,0,0.601,0.693,0.693,0,0,0.529 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.136 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.407 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.216 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.271 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0463 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.343,0.343,0.25,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0.357,0,0.378 +1,0.979,0.979,0,0.667,0,0,0.881,0.993,0.993,0.618,0,1 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.151,0,0.0463 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.316 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.232 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.118 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.845 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.109 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0463 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.231 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.139 +0.667,0.359,0.359,0,0.0833,0,0,0.465,0.641,0.641,0.533,0,0.0463 +0.667,0.363,0.363,0,0.25,0,0,0.484,0.622,0.622,0.33,0,0.602 +0.667,0.307,0.307,0,0,0,0,0.503,0.604,0.604,0,0,0.139 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.417 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0949 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.531 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.196,0.196,0.367,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.234,0.234,0.15,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.548,0.548,0,0.0833,0,0,0.58,0.805,0.805,0.711,0,0.0926 +1,0.979,0.979,0,0.583,0,0,0.881,0.993,0.993,0.219,0,0 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.748 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.3 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.222 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.322 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.172 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.0515 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.196,0.196,0.117,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0.65,0,0,0,0.284,0.579,0.579,0,0,0.0463 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.185 +0.333,0.18,0.18,0,0,0.702,0,0.302,0.591,0.591,0,0,0.0463 +0.667,0.315,0.315,0,0,0.213,0.333,0.375,0.705,0.705,0,0.358,0 +0.333,0.196,0.196,0,0,0,0.75,0.321,0.597,0.597,0,0.656,0.0463 +0.333,0.234,0.234,0.617,0,0,0,0.354,0.61,0.61,0,0.504,0.324 +0.667,0.548,0.548,0.417,0,0,0,0.58,0.805,0.805,0.145,0.272,0.231 +1,0.979,0.979,0,0.396,0,0,0.881,0.993,0.993,0.691,0.504,0.185 +1,0.991,0.991,0,0.271,0,0,0.937,0.937,0.937,0,0.171,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.403 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.377 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.37 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.117,0.117,0.367,0,0,0,0.422,0.567,0.567,0,0,0 +0.667,0.151,0.151,0.667,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.316,0.316,0.25,0,0,0,0.524,0.68,0.68,0,0,0.251 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.185 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.139 +0.333,0.186,0.186,0.25,0,0,0,0.288,0.585,0.585,0,0,0.0926 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.139 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0463 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0.117,0.0833,0,0,0.321,0.597,0.597,0.533,0,0 +0.333,0.234,0.234,0.4,0.25,0,0,0.354,0.61,0.61,0.864,0,0.0463 +1,0.798,0.798,0.367,0,0,0,0.741,0.974,0.974,0.601,0,0.231 +0.667,0.669,0.669,0.15,0,0,0,0.673,0.817,0.817,0,0,0.185 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.324 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.278 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.15 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.17 +1,0.334,0.334,0.783,0,0,0,0.403,0.692,0.692,0,0,0.528 +1,0.49,0.49,0.25,0,0,0,0.322,0.806,0.806,0,0,0.221 +0.667,0.334,0.334,0.25,0,0,0,0.31,0.692,0.692,0,0,0.294 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.0926 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0463 +0.667,0.311,0.311,0,0.292,0,0,0.347,0.717,0.717,0.601,0,0.185 +0.667,0.315,0.315,0,0.375,0,0,0.375,0.705,0.705,0.688,0,0.139 +0.667,0.343,0.343,0.283,0,0,0,0.384,0.73,0.73,0.691,0,0.37 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0.0926 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.394 +1,0.979,0.979,1,0,0,0,0.881,0.993,0.993,0,0,0.0947 +1,0.991,0.991,1,0,0,0,0.937,0.937,0.937,0.469,0,0.463 +1,0.823,0.823,0.117,0.917,0,0,0.993,0.88,0.88,0.607,0,0 +1,0.621,0.621,0,0.0833,0,0,0.965,0.843,0.843,0.19,0,0.0463 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0635 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.103 +0.667,0.192,0.192,0.25,0,0,0,0.284,0.579,0.579,0,0,0.15 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0926 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0926 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.0463 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.231 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.0463 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.317 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.202 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0955 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.0926 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.366 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.306 +0.667,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.357 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.167 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.201 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.185 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.139 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0.117,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.548,0.548,0.4,0,0,0,0.58,0.805,0.805,0,0,0.185 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0463 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.509 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.139 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0463 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.0463 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.448 +1,0.355,0.355,0,0,0,0,0.601,0.693,0.693,0,0,0.167 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0463 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.278 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0.517,0,0,0,0.354,0.61,0.61,0.338,0,0 +0.333,0.299,0.299,0,0.667,0,0,0.419,0.635,0.635,0.61,0,0.0926 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0.702,0,0.463 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0.704,0,0.231 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.231 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.354 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0745 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.107 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.455 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.0156 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.185 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.37 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0463 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0463 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.185 +0.667,0.418,0.418,0,0.0833,0.915,0,0.449,0.755,0.755,0.693,0.171,0.278 +1,0.798,0.798,0,0.583,0,0.583,0.741,0.974,0.974,0.524,0.21,0.0463 +1,0.979,0.979,0.25,0,0,0.233,0.881,0.993,0.993,0.686,0.464,0.278 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.652,0.519,0.0463 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0.389,0.367 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.466,0.139 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0.0772,0.278 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.139 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0926 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0926 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.294 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.552 +0.667,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.157 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.0926 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.231 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0893 +1,0.053,0.053,0.317,0,0,0,0.396,0.558,0.558,0,0,0.201 +1,0.116,0.116,0.45,0,0,0,0.424,0.57,0.57,0,0,0.104 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.193,0.193,0,0.312,0,0,0.28,0.581,0.581,0.724,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0463 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.509 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.139 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0463 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.139 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0463 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.348 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.0934 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.316,0.316,0.5,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.185 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.231 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.0463 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.231 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.417 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.0926 +0.667,0.625,0.625,0,0.25,0,0,0.753,0.746,0.746,0.589,0,0.278 +0.667,0.501,0.501,0,0.396,0,0,0.734,0.721,0.721,0,0,0 +0.667,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0463 +1,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.0463 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.37 +0.667,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.419 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.083 +0.667,0.466,0.466,0.25,0,0,0,0.584,0.809,0.809,0,0,0.207 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.424 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.37 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.354 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.0353 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.151 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.0717 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.192 +1,0.0829,0.0829,0.5,0,0,0,0.341,0.518,0.518,0,0,0.108 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.178 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0.255,0,0.139 +0.667,0.193,0.193,0,0.646,0,0,0.28,0.581,0.581,0.58,0,0.185 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0.81,0,0.0926 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0.544,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0.542,0,0.0463 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0.797,0,0.0463 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0.485,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0.553,0,0 +0.667,0.367,0.367,0.5,0,0,0,0.452,0.759,0.759,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.324 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.421 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.21 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0896 +1,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.185 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0896 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.202 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.16 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.144 +1,0.15,0.15,0.0667,0,0,0,0.374,0.543,0.543,0,0,0.442 +1,0.181,0.181,0.183,0,0,0,0.392,0.574,0.574,0,0,0.177 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.447 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.0463 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0926 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.0926 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.185 +1,0.913,0.913,0,0,0.638,0,1,0.887,0.887,0,0,0.139 +1,0.727,0.727,0,0,0.319,0.25,0.972,0.849,0.849,0,0.672,0 +1,0.638,0.638,0,0,0,0.533,0.831,0.755,0.755,0,0.895,0.0463 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0.393,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.143 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.335 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.451,0,0 +0.667,0.193,0.193,0,0.958,0,0,0.28,0.581,0.581,0.242,0,0.0463 +0.333,0.0495,0.0495,0,0.0208,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.182 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0338 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0.0667,0,0,0,0.322,0.6,0.6,0,0,0.0926 +0.667,0.367,0.367,0.183,0,0,0,0.452,0.759,0.759,0,0,0.179 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.406 +1,0.868,0.868,0,0.333,0,0,0.887,1,1,0.585,0,0.344 +1,0.98,0.98,0,0.333,0,0,0.944,0.943,0.943,0.74,0,0.554 +1,0.913,0.913,0,0.625,0,0,1,0.887,0.887,0.135,0,0.376 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.0463 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.0926 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0.427,0,0.0926 +0.333,0.189,0.189,0,0.646,0,0,0.284,0.581,0.581,0.126,0,0.185 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.278 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.278 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.139 +0.333,0.208,0.208,0.25,0,0,0,0.355,0.612,0.612,0,0,0.231 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0463 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0 +1,0.98,0.98,0,0.0208,0,0,0.944,0.943,0.943,0.517,0,0 +1,0.913,0.913,0,0.292,0,0,1,0.887,0.887,0.298,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0463 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.435 +1,0.313,0.313,0.5,0,0,0,0.527,0.683,0.683,0,0,0.308 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.667,0.189,0.189,0.25,0,0,0,0.284,0.581,0.581,0,0,0.417 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.417 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.139 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0.324,0,0.0786 +1,0.98,0.98,0.25,0.312,0,0,0.944,0.943,0.943,0.71,0,0.159 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0.698,0,0.231 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0.0772,0,0.0463 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.127 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.288 +1,0.19,0.19,0.25,0,0,0,0.331,0.581,0.581,0,0,0.0921 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.132 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.3 +1,0.449,0.449,0,0,0,0,0.352,0.83,0.83,0,0,0.475 +1,0.436,0.436,0.75,0,0,0,0.338,0.849,0.849,0,0,0.429 +0.667,0.305,0.305,0.0167,0,0,0,0.349,0.721,0.721,0,0,0.139 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0.139 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.0463 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.0926 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.231 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.231 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.324 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.103 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.298 +1,0.19,0.19,0.25,0,0,0,0.331,0.581,0.581,0,0,0.138 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.392 +1,0.468,0.468,0,0,0.553,0,0.338,0.811,0.811,0.567,0,0.611 +1,0.449,0.449,0.25,0.646,0.0851,0.433,0.352,0.83,0.83,0.359,0.329,0.697 +1,0.307,0.307,0,0,0,0.617,0.311,0.721,0.721,0,0.614,0.272 +1,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.493,0.0463 +1,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.347,0.0463 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0.782,0.185 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0.564,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.392,0.139 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0.681,0.185 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.36 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.0463 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.121 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.262 +1,0.351,0.351,0.0667,0,0,0,0.606,0.698,0.698,0,0,0.226 +1,0.444,0.444,0.183,0,0,0,0.662,0.792,0.792,0,0,0.237 +1,0.47,0.47,0,0,0,0,0.479,0.811,0.811,0,0,0.429 +1,0.481,0.481,0,0,0,0,0.324,0.811,0.811,0,0,0.463 +0.333,0.189,0.189,0.567,0,0,0,0.284,0.581,0.581,0,0,0.0463 +0.667,0.316,0.316,0.2,0,0,0,0.321,0.709,0.709,0,0,0.0463 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.231 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.185 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0.259,0,0.63 +1,0.868,0.868,0,0.646,0,0,0.887,1,1,0.248,0,0 +1,0.98,0.98,0,0.333,0,0,0.944,0.943,0.943,0,0,0.11 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.15,0.15,0.25,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.278 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.161 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.465 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.337 +0.333,0.178,0.178,0.0667,0,0,0,0.284,0.593,0.593,0,0,0.243 +0.333,0.177,0.177,0.183,0,0,0,0.303,0.593,0.593,0,0,0.185 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.185 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0463 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0.251 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.231 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.419 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0463 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.116 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0773 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.279 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.198 +0.667,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.235 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.382 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.731 +0,0.0495,0.0495,0,0.333,0,0,0.258,0.465,0.465,0.655,0,0.0926 +0,0.0495,0.0495,0,0.312,0,0,0.258,0.465,0.465,0.153,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.334 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.355 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.306 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0591 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.208,0.208,0.25,0,0,0,0.355,0.612,0.612,0,0,0.285 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0463 +1,0.868,0.868,0,0,0,0,0.887,1,1,0.524,0,0.0463 +1,0.98,0.98,0,0.646,0,0,0.944,0.943,0.943,0.354,0,0.0463 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.139 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.295 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.158 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.0946 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.0582 +1,0.251,0.251,0,0,0.638,0,0.49,0.621,0.621,0,0,0.312 +0.667,0.181,0.181,0,0,0,0.5,0.392,0.574,0.574,0,0.257,0.38 +0.667,0.33,0.33,0,0,0,0.55,0.405,0.696,0.696,0,0.453,0.257 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0.432,0.184 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0.372,0.285 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0.21,0.598,0.27 +0.667,0.307,0.307,0,0.646,0,0,0.311,0.721,0.721,0.606,0.214,0.459 +0.667,0.305,0.305,0,0.333,0,0,0.349,0.721,0.721,0.394,0,0.667 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0463 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0463 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0463 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.185 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.419 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.433 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.337 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.324 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0.5,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0 +1,0.868,0.868,0,0.312,0,0,0.887,1,1,0.51,0,0.37 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.724,0,0.278 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0.451,0,0.169 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.365 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.165 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +1,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +1,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0926 +1,0.436,0.436,0,0,0,0,0.338,0.849,0.849,0,0,0 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.304 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.339 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.274 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.401 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0463 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.0926 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.278 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.227 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0463 +1,0.0743,0.0743,0,0.562,0,0,0.36,0.53,0.53,0.864,0,0 +1,0.0578,0.0578,0,0.0833,0,0,0.346,0.518,0.518,0.53,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0.664,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0.691,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.19,0.19,0,0,0.234,0,0.331,0.581,0.581,0,0,0.38 +1,0.481,0.481,0,0.25,0.723,0,0.324,0.811,0.811,0.557,0.221,0.175 +1,0.468,0.468,0,0.396,0,0.933,0.338,0.811,0.811,0.885,0.381,0.135 +1,0.449,0.449,0,0,0,0.383,0.352,0.83,0.83,0.127,0.561,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.372,0.185 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,1,0.139 +0.667,0.307,0.307,0.767,0,0,0,0.377,0.709,0.709,0,0.214,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.0463 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0.149,0,0.555 +0.667,0.67,0.67,0,0.562,0,0,0.715,0.784,0.784,0.792,0,0.37 +1,0.913,0.913,0,0.417,0,0,1,0.887,0.887,0.391,0,0.185 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.174 +1,0.442,0.442,0,0,0.319,0,0.64,0.658,0.658,0,0,0.324 +1,0.183,0.183,0,0,0,0.55,0.555,0.608,0.608,0.147,0.123,0 +1,0.0743,0.0743,0,0,0,0.0333,0.36,0.53,0.53,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.417 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.633 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.119 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0.957,0,0.284,0.581,0.581,0.492,0.0341,0.0926 +0.333,0.183,0.183,0,0.646,0,0.5,0.289,0.587,0.587,0.28,0.454,0 +0.333,0.178,0.178,0,0,0,0.283,0.284,0.593,0.593,0,0.359,0.0926 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.728,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.788,0.0463 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.329,0.0926 +0.333,0.208,0.208,0.567,0,0,0,0.355,0.612,0.612,0,0.801,0 +1,0.674,0.674,0.2,0,0,0,0.746,0.981,0.981,0,0.608,0.127 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0.503,0.278 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.546,0.164 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.338 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.185 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0.2,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.157 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0.638,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0.5,0.289,0.587,0.587,0,0.227,0 +0.333,0.178,0.178,0,0,0,0.55,0.284,0.593,0.593,0,0.501,0.185 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.524,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0463 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.139 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0.294,0,0.133 +0.667,0.466,0.466,0,0.312,0,0,0.584,0.809,0.809,0.388,0,0.0926 +1,0.868,0.868,0,0,0,0,0.887,1,1,0.691,0,0.0926 +1,0.98,0.98,0,0.0208,0,0,0.944,0.943,0.943,0.732,0,0.185 +1,0.913,0.913,0,0.625,0,0,1,0.887,0.887,0,0,0.24 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.244 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.205 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.207 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.402 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.31 +0.667,0.181,0.181,0.0667,0,0,0,0.392,0.574,0.574,0,0,0.281 +0.667,0.33,0.33,0.7,0,0.319,0,0.405,0.696,0.696,0,0,0.259 +0.667,0.337,0.337,0,0,0.638,0,0.302,0.696,0.696,0,0.323,0.256 +0.667,0.328,0.328,0,0,0,1,0.311,0.696,0.696,0,0.297,0.0926 +0.333,0.183,0.183,0,0,0,0.05,0.289,0.587,0.587,0,0.239,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.139 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.139 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.139 +1,0.868,0.868,0,0.333,0,0,0.887,1,1,0.822,0,0 +0.667,0.67,0.67,0,0.646,0,0,0.715,0.784,0.784,0.151,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.838 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.231 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0463 +1,0.116,0.116,0,0,0.0638,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0.5,0.36,0.53,0.53,0,0.248,0.0463 +1,0.0578,0.0578,0,0.0208,0,0.55,0.346,0.518,0.518,0.503,0.307,0 +1,0.0495,0.0495,0,0.625,0,0,0.346,0.511,0.511,0.759,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0.199,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.288 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.449 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.368 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.218 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0.25,0,0.185 +0.667,0.258,0.258,0,0.646,0,0,0.421,0.637,0.637,0.625,0,0 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0.77,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.343 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.22 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.226 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.185 +1,0.0495,0.0495,0,0,0.255,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.196 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.14 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0.447,0,0.126 +0.667,0.337,0.337,0,0.646,0,0,0.302,0.696,0.696,0.138,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0463 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.231 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.0926 +0.333,0.178,0.178,0.25,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.278 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.139 +0.667,0.466,0.466,0.25,0.0208,0,0,0.584,0.809,0.809,0.479,0,0 +1,0.868,0.868,0,0.292,0,0,0.887,1,1,0.363,0,0.0926 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.0463 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.0463 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.185 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.185 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.094 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.191 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.573 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.133 +1,0.449,0.449,0,0,0,0,0.352,0.83,0.83,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.16 +0.667,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0656 +0.667,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.37 +0.667,0.322,0.322,0.25,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.139 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.231 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.0463 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0.0926 +1,0.066,0.066,0,0,0,0,0.433,0.57,0.57,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.179 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.129 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.12 +1,0.449,0.449,0.25,0,0.872,0,0.352,0.83,0.83,0,0,0.278 +0.667,0.307,0.307,1,0,0.0851,0.433,0.311,0.721,0.721,0,0.611,0.0926 +0.667,0.305,0.305,0.267,0,0,0.35,0.349,0.721,0.721,0,0,0.0926 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.185 +0.667,0.322,0.322,1,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0.0167,0,0,0,0.452,0.759,0.759,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0463 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.139 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.139 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.157 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.264 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.103 +1,0.15,0.15,0,0,0.638,0,0.374,0.543,0.543,0,0,0.257 +1,0.181,0.181,0,0,0,0.5,0.392,0.574,0.574,0,0.145,0.129 +1,0.33,0.33,0,0,0,0.283,0.405,0.696,0.696,0,0,0.181 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0926 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0926 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.509 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0463 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0463 +0.333,0.258,0.258,0.5,0,0,0,0.421,0.637,0.637,0,0,0 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.231 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.231 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.344 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.284 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.142 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.442 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.114 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.231 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.278 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.278 +0.333,0.178,0.178,0,0,0.319,0,0.317,0.587,0.587,0,0,0.425 +0.667,0.322,0.322,0,0,0.638,0,0.386,0.734,0.734,0,0.478,0.138 +0.667,0.367,0.367,0.567,0,0,1,0.452,0.759,0.759,0,0.0134,0.0463 +0.667,0.466,0.466,0.2,0,0,0.05,0.584,0.809,0.809,0.287,0,0.278 +0.333,0.322,0.322,0,0.646,0.319,0,0.468,0.644,0.644,0.384,0,0.139 +1,0.98,0.98,0,0.0208,0.319,0.25,0.944,0.943,0.943,0.643,0.409,0 +1,0.913,0.913,0,0.625,0,0.533,1,0.887,0.887,0,0,0.0463 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.0463 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.153 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.327 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.308 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0463 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0463 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.139 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.0926 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.185 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.0463 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0463 +1,0.868,0.868,0.567,0,0,0,0.887,1,1,0,0,0.0926 +1,0.98,0.98,0.45,0,0,0,0.944,0.943,0.943,0,0,0.0463 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.139 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.109 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.134 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.422 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.134 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.148 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.298,0.298,0.117,0,0,0,0.323,0.612,0.612,0,0,0.0926 +1,0.464,0.464,0.6,0,0,0,0.434,0.715,0.715,0,0,0.278 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.417 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.231 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.329,0,0 +1,0.928,0.928,0,0.625,0,0,0.79,0.701,0.701,0.576,0,0.0463 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0.677,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0.111,0,0.278 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.385 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0673 +0.667,0.114,0.114,0.117,0,0,0,0.353,0.483,0.483,0,0,0.238 +0.667,0.245,0.245,0.117,0,0,0,0.405,0.523,0.523,0,0,0.0161 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.471 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0926 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.324 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.139 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0.617,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.667,0.298,0.298,0.35,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0463 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.185 +1,0.736,0.736,0.233,0,0,0,0.701,0.79,0.79,0,0,0.185 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.11,0,0.139 +1,0.928,0.928,0,0.396,0,0,0.79,0.701,0.701,0.641,0,0.0463 +1,0.807,0.807,0,0.229,0,0,0.768,0.671,0.671,0.774,0,0.0463 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0.7,0,0.375 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.612,0,0.132 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.74,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0.759,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.386 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.286 +1,0.456,0.456,0,0,0,0,0.256,0.641,0.641,0,0,0.67 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.155 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.482 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.228 +0.667,0.289,0.289,0.717,0,0,0,0.294,0.602,0.602,0,0,0.0463 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.0463 +0.667,0.298,0.298,0,0,0.17,0,0.323,0.612,0.612,0,0,0.0926 +0.333,0.188,0.188,0,0,0.766,0,0.316,0.549,0.549,0,0.277,0.0926 +1,0.567,0.567,0,0,0,0.9,0.59,0.775,0.775,0,0.662,0.185 +1,0.736,0.736,0,0,0,0.133,0.701,0.79,0.79,0,0.706,0.0926 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.312,0.185 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.266,0.139 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.107 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.106,0,0.0926 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.151 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.369 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.443,0.443,0,0,0.617,0,0.267,0.641,0.641,0,0,0 +1,0.426,0.426,0,0,0,0.65,0.278,0.656,0.656,0,0.55,0.0926 +0.333,0.171,0.171,0,0,0,0.383,0.261,0.534,0.534,0,0.381,0.0463 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.494,0.278 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0.518,0.0926 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.47,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.0935,0.347 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.157 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.625 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.104 +1,0.928,0.928,0.233,0,0,0,0.79,0.701,0.701,0,0,0.221 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0463 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.224 +0.333,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.16 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.185 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.185 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.139 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.302 +0.333,0.169,0.169,0,0,0.0638,0,0.276,0.534,0.534,0,0,0.0463 +0.333,0.17,0.17,0,0,0.553,0.0667,0.287,0.529,0.529,0.145,0.246,0 +0.333,0.174,0.174,0,0.396,0,0.7,0.29,0.539,0.539,0.571,0.154,0 +0.333,0.188,0.188,0.367,0.229,0,0,0.316,0.549,0.549,0.298,0,0.0463 +1,0.567,0.567,0.117,0.625,0,0,0.59,0.775,0.775,0.46,0,0.0463 +1,0.736,0.736,0,0.396,0,0,0.701,0.79,0.79,0.709,0,0.324 +1,0.895,0.895,0,0.562,0,0,0.745,0.745,0.745,0.652,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.278 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.139 +0.667,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.139 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0.872,0,0.258,0.465,0.465,0,0.107,0 +0.667,0.245,0.245,0,0,0,0.817,0.405,0.523,0.523,0,0.534,0.428 +0.667,0.305,0.305,0,0,0,0.483,0.435,0.572,0.572,0,0,0.28 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.153 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.185 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0463 +0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.169,0.169,0.117,0,0,0,0.276,0.534,0.534,0,0,0.185 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.185 +0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0.0463 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.0926 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0926 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.295 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.158 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.116 +0.667,0.185,0.185,0.233,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0463 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.278 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.667,0.298,0.298,0.233,0,0,0,0.323,0.612,0.612,0,0,0.231 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.281 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.166 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.337 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0926 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0463 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0.445,0,0.231 +1,0.5,0.5,0,0.625,0,0,0.656,0.596,0.596,0.268,0,0.291 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.231 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.669 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.137 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.335 +0.667,0.305,0.305,0.117,0,0,0,0.435,0.572,0.572,0,0,0.0619 +0.667,0.318,0.318,0.367,0,0,0,0.338,0.582,0.582,0,0,0.0463 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.417 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.139 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.278 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.185 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.0926 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.366,0,0.555 +0.667,0.635,0.635,0,0.312,0,0,0.613,0.622,0.622,0.183,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.113 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.289 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.249 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.12 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0657 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0463 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.185 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0463 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0926 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.0463 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.231 +0.667,0.613,0.613,0,0,0.383,0,0.583,0.652,0.652,0,0,0.215 +1,0.928,0.928,0,0,0.553,0.0667,0.79,0.701,0.701,0,0.475,0.139 +1,0.555,0.555,0,0,0,0.7,0.598,0.602,0.602,0,0.326,0.0463 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.231 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.321 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.0463 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0463 +1,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.139 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.366 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.395 +0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0.0926 +0.667,0.395,0.395,0,0,0.489,0,0.479,0.672,0.672,0,0,0.231 +1,0.736,0.736,0,0.188,0.447,0.15,0.701,0.79,0.79,0.483,0.202,0.417 +1,0.613,0.613,0,0.438,0,0.617,0.583,0.652,0.652,0,0,0.231 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0926 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0924 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.176 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0926 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0463 +0.333,0.17,0.17,0.233,0,0,0,0.287,0.529,0.529,0,0,0.0463 +1,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +1,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.213 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.37 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.139 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.165 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.0463 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.231 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.147,0.147,0.233,0,0,0,0.331,0.494,0.494,0,0,0.509 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.462 +1,0.452,0.452,0,0,0,0,0.378,0.641,0.641,0,0,0.319 +1,0.456,0.456,0,0,0,0,0.256,0.641,0.641,0,0,0.139 +0.667,0.312,0.312,0,0,0.936,0,0.264,0.582,0.582,0,0.0252,0.24 +0.333,0.175,0.175,0,0,0,0.567,0.265,0.529,0.529,0.113,0.734,0.278 +0.333,0.171,0.171,0,0.312,0,0.467,0.261,0.534,0.534,0.702,0.396,0.278 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0.539,0.635,0.139 +0.667,0.29,0.29,0.367,0,0,0,0.316,0.592,0.592,0.276,0.313,0 +1,0.422,0.422,0.117,0,0,0,0.356,0.686,0.686,0,0.638,0 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0.411,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0.616,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0.298,0,0.745,0.745,0.745,0,0,0.231 +1,0.928,0.928,0,0,0,0.567,0.79,0.701,0.701,0,0.464,0.0926 +1,0.807,0.807,0.233,0,0,0.2,0.768,0.671,0.671,0,0.0134,0.0926 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.267 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.177 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.286 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.602 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0.324 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.278 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.139 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.333,0.174,0.174,0.367,0,0,0,0.29,0.539,0.539,0,0,0.278 +1,0.464,0.464,0.35,0,0,0,0.434,0.715,0.715,0,0,0.278 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.139 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.0926 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.278 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.0463 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.14 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.254 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.195 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0.218 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.144 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.139 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.185 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0463 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.555 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.213 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0463 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0.262,0,0.185 +1,0.736,0.736,0,0.708,0,0,0.701,0.79,0.79,0.58,0,0.584 +0.667,0.613,0.613,0,0.25,0,0,0.583,0.652,0.652,0,0,0.621 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.427 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0852 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0.483,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.278 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.491 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.278 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.231 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.418 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.376 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.231 +0.667,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0463 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0783 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.231 +0.333,0.175,0.175,0.867,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0.35,0,0,0,0.261,0.534,0.534,0,0,0.0926 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0926 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.667,0.298,0.298,0.367,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0.117,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.139 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.28 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.313 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.322 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.206 +1,0.177,0.177,0.7,0,0,0,0.346,0.519,0.519,0,0,0.136 +1,0.318,0.318,0.267,0,0,0,0.338,0.582,0.582,0,0,0.56 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.175 +1,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.0463 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.0463 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.0926 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.0926 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.0926 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0.0463 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.382 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.147 +0.667,0.507,0.507,0.2,0,0,0,0.553,0.682,0.682,0,0,0.324 +0.667,0.613,0.613,0.283,0,0,0,0.583,0.652,0.652,0,0,0.278 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.0463 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.496,0,0 +0.667,0.321,0.321,0,0.958,0.617,0,0.257,0.582,0.582,0.163,0,0 +0.667,0.312,0.312,0,0,0,0.65,0.264,0.582,0.582,0,0.464,0.134 +0.667,0.3,0.3,0,0,0,0.383,0.271,0.592,0.592,0,0.441,0.18 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.218,0.0463 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.324 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0463 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.194 +0.667,0.395,0.395,0.483,0,0,0,0.479,0.672,0.672,0,0,0.112 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.375 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.451 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.251 +0.333,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.204 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.185 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0.383,0,0.258,0.465,0.465,0,0,0 +1,0.342,0.342,0,0,0.234,0.317,0.478,0.551,0.551,0,0.39,0.328 +0.667,0.305,0.305,0,0,0,0.983,0.435,0.572,0.572,0,0.631,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0.534,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0926 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.324 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0926 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0463 +0.333,0.188,0.188,0.233,0,0,0,0.316,0.549,0.549,0,0,0.139 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.12 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.124 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.393 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.591 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.0463 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.36 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.286 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.118,0,0 +1,0.0816,0.0816,0,0.312,0,0,0.305,0.474,0.474,0.799,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0.088,0,0.0824 +0.667,0.305,0.305,0,0.0833,0,0,0.435,0.572,0.572,0.429,0,0.127 +0.333,0.184,0.184,0,0.229,0,0,0.298,0.524,0.524,0,0,0.139 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.139 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0926 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.417 +0,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0.85,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0463 +0.667,0.326,0.326,0.117,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.567,0.567,0.117,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0.312,0,0 +1,0.895,0.895,0.367,0.312,0,0,0.745,0.745,0.745,0.623,0,0.0463 +1,0.928,0.928,0.117,0,0,0,0.79,0.701,0.701,0,0,0.0463 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0463 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.234 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.484 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.185 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0926 +0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0.303 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0.431,0,0 +0.667,0.507,0.507,0,0.958,0,0,0.553,0.682,0.682,0.648,0,0.506 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.58,0,0.425 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.367 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.27 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0773 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.148 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.258 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.122 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.522 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0463 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.455 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.195 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0.0833,0,0,0.316,0.549,0.549,0.54,0,0.0463 +1,0.567,0.567,0.117,0.542,0,0,0.59,0.775,0.775,0,0,0.312 +1,0.736,0.736,0.367,0,0,0,0.701,0.79,0.79,0,0,0.507 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.493 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.688 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.212 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0525,0.0525,0.117,0,0,0,0.331,0.473,0.473,0,0,0.424 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.127 +0.333,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0.4,0,0 +0.667,0.318,0.318,0,0.625,0,0,0.338,0.582,0.582,0.151,0,0.0926 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0.117,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0.367,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.0463 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.278 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.139 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.417 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.0926 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.139 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0926 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.0926 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.527 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.137 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.386 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.184,0.184,0.483,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.185 +0.667,0.292,0.292,0.45,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.289,0.289,0.267,0,0,0,0.294,0.602,0.602,0,0,0.0463 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.463 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.507 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0463 +0.667,0.395,0.395,0.45,0,0,0,0.479,0.672,0.672,0,0,0.185 +1,0.736,0.736,1,0,0,0,0.701,0.79,0.79,0,0,0.139 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0926 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.139 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0463 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +1,0.185,0.185,0.233,0,0,0,0.257,0.524,0.524,0,0,0.314 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.249 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.232 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.491 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.062 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.185 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.139 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.0926 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.139 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.245 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.082 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.441 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.262 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.24 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.113 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.277 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.26 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.146 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.304 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.186 +0.667,0.312,0.312,0,0,0.702,0,0.264,0.582,0.582,0,0,0.737 +0.667,0.3,0.3,0,0,0.234,0.317,0.271,0.592,0.592,0,0.214,0.0463 +0.667,0.292,0.292,0,0,0,0.45,0.264,0.602,0.602,0,0.407,0.0463 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.521,0.0463 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.324 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.324 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.459 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.0926 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.119 +1,0.305,0.305,0.367,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.318,0.318,0.35,0,0,0,0.338,0.582,0.582,0,0,0.141 +0.667,0.321,0.321,0,0,0.383,0,0.257,0.582,0.582,0,0,0.108 +0.667,0.312,0.312,0,0,0.553,0.0667,0.264,0.582,0.582,0,0.269,0.441 +0.667,0.3,0.3,0,0,0.0638,0.967,0.271,0.592,0.592,0,0,0.392 +0.667,0.292,0.292,0.483,0,0.234,0.317,0.264,0.602,0.602,0,0.295,0.19 +0.667,0.289,0.289,0,0,0,1,0.294,0.602,0.602,0,0.568,0.139 +0.667,0.29,0.29,0,0,0,0.233,0.316,0.592,0.592,0,0.252,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.139 +0.667,0.326,0.326,0.367,0,0,0,0.375,0.632,0.632,0,0,0 +0.333,0.222,0.222,0.117,0,0,0,0.368,0.569,0.569,0,0,0.139 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.185 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0926 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.139 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.215 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.16 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.137 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0924 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.165 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0.518 +0.333,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.244 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0.415,0,0.133 +0.333,0.181,0.181,0,0.312,0,0,0.261,0.524,0.524,0,0,0.218 +0.333,0.175,0.175,0,0,0.298,0,0.265,0.529,0.529,0,0,0 +0.333,0.171,0.171,0,0,0,0.817,0.261,0.534,0.534,0,0.639,0 +0.333,0.169,0.169,0,0,0,0.483,0.276,0.534,0.534,0,0.0601,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0926 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0926 +0.667,0.326,0.326,0.233,0,0,0,0.375,0.632,0.632,0,0,0.0463 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0.363,0,0.602 +0.667,0.507,0.507,0,0.625,0,0,0.553,0.682,0.682,0.151,0,0.612 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.185 +1,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.0926 +1,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.0926 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.303 +0.333,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.209 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.312 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.245 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0463 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.466 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.509 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0632 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.323 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0463 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.139 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0.172,0,0.139 +0.667,0.395,0.395,0.233,0.312,0,0,0.479,0.672,0.672,0.409,0,0.278 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.139 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0.266,0,0.478 +1,0.928,0.928,0,0.312,0,0,0.79,0.701,0.701,0.664,0,0.0463 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0971 +1,0.184,0.184,0.2,0,0,0,0.298,0.524,0.524,0,0,0.0874 +1,0.321,0.321,0.283,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.292,0.292,0.233,0,0,0,0.264,0.602,0.602,0,0,0.305 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.352 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.349 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0.185 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.185 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.0463 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.185 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.0926 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.25 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.392 +0.667,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0926 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0.05,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.175,0.175,0.467,0,0,0,0.297,0.523,0.523,0,0,0.0993 +1,0.424,0.424,0.233,0,0,0,0.255,0.638,0.638,0,0,0.0908 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.101 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.185 +0.333,0.159,0.159,0.233,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.185 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.0355 +1,0.412,0.412,0.667,0,0,0,0.587,0.772,0.772,0,0,0.287 +0.333,0.194,0.194,1,0,0,0,0.405,0.572,0.572,0,0,0.0463 +0.667,0.429,0.429,1,0,0,0,0.581,0.65,0.65,0,0,0.139 +1,0.783,0.783,1,0,0.66,0,0.787,0.698,0.698,0,0,0.509 +1,0.88,0.88,0.333,0,0,0.583,0.765,0.668,0.668,0,0.537,0.278 +1,0.415,0.415,0,0,0,0.4,0.522,0.551,0.551,0,0.0208,0.128 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.143 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.145 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.425 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.131 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.279 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.863 +0.333,0.16,0.16,0.233,0,0,0,0.26,0.533,0.533,0,0,0.0926 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0926 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0.233,0,0,0,0.368,0.568,0.568,0,0,0.324 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.0926 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0463 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.19 +0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.224 +1,0.249,0.249,0,0,0,0,0.554,0.534,0.534,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.634 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0.367,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0.1,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.139 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.172 +1,0.538,0.538,0,0.0833,0,0,0.61,0.62,0.62,0.612,0,0.0463 +1,0.603,0.603,0,0.208,0,0,0.596,0.6,0.6,0,0,0.555 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.139 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.156 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.224 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.282 +1,0.295,0.295,0.367,0,0,0,0.433,0.571,0.571,0,0,0.212 +0.667,0.301,0.301,0.1,0,0,0,0.337,0.581,0.581,0,0,0.128 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.139 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0463 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.304 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.226 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.139 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0926 +0.333,0.162,0.162,0.467,0,0,0,0.316,0.548,0.548,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.278 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.0926 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.0926 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +0.667,0.603,0.603,0,0,0.66,0,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0.533,0.522,0.551,0.551,0,0.193,0 +1,0.116,0.116,0,0,0,0.45,0.357,0.488,0.488,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.173 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0463 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.37 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.185 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.231 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.231 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.369 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.419 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.0926 +1,0.783,0.783,0,0,0.702,0,0.787,0.698,0.698,0,0,0.0463 +1,0.88,0.88,0,0,0.277,0.283,0.765,0.668,0.668,0,0.565,0.0463 +1,0.415,0.415,0,0,0,0.2,0.522,0.551,0.551,0,0.564,0.169 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.139 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.0463 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.194,0.194,0,0,0.383,0,0.405,0.572,0.572,0,0,0.324 +0.667,0.429,0.429,0,0,0.277,0.283,0.581,0.65,0.65,0,0.145,0.324 +0.667,0.538,0.538,0,0,0,0.45,0.61,0.62,0.62,0,0,0.0463 +0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.231 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0,0,0.766,0,0.297,0.523,0.523,0,0,0 +1,0.299,0.299,0,0,0.213,0.333,0.256,0.581,0.581,0,0.687,0 +1,0.291,0.291,0,0,0,0.9,0.263,0.581,0.581,0,0.607,0.0341 +1,0.394,0.394,0,0,0,0,0.277,0.653,0.653,0,0.417,0.306 +1,0.382,0.382,0,0,0,0,0.266,0.668,0.668,0,0.491,0.246 +1,0.378,0.378,0,0,0,0,0.31,0.668,0.668,0,0.454,0.2 +1,0.378,0.378,0,0,0,0,0.344,0.653,0.653,0,0,0.352 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.247 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.234 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.709 +1,0.484,0.484,0.233,0,0,0,0.698,0.787,0.787,0,0,0.363 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.585 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.216 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.411 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.37 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0883 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.191 +1,0.411,0.411,0,0,0.319,0.1,0.266,0.638,0.638,0,0.243,0.946 +1,0.394,0.394,0.467,0,0,0.883,0.277,0.653,0.653,0,0.591,0.256 +1,0.382,0.382,0,0,0,0,0.266,0.668,0.668,0,0,0.161 +1,0.269,0.269,0.233,0,0,0,0.293,0.6,0.6,0,0,0.278 +1,0.378,0.378,0,0,0,0,0.344,0.653,0.653,0,0,0.0463 +1,0.379,0.379,0,0,0,0,0.355,0.683,0.683,0,0,0.0806 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.473 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.492 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.531 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.102 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.452 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.272 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.634 +0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0663 +0.333,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.161 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.231 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0.233,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.139 +1,0.339,0.339,0.467,0,0,0,0.551,0.68,0.68,0,0,0.0926 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.185 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.362 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.217 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.174 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.481 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.224 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0.679 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.377 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.611 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0805 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.183 +0.333,0.159,0.159,0,0,0.66,0,0.275,0.533,0.533,0,0,0.0463 +0.667,0.268,0.268,0,0,0,0.533,0.315,0.591,0.591,0,0.877,0 +0.333,0.159,0.159,0,0,0,0.2,0.29,0.538,0.538,0,0.218,0.0846 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.278 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.0463 +0.667,0.339,0.339,0,0.0833,0,0,0.551,0.68,0.68,0.609,0,0.231 +0.667,0.429,0.429,0,0.208,0,0,0.581,0.65,0.65,0.111,0,0.404 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.749 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.153,0,0.231 +1,0.597,0.597,0,0.396,0,0,0.654,0.594,0.594,0.402,0,0.358 +1,0.0495,0.0495,0,0.208,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.224 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.297 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.229 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.632 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.183 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.208 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.213 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.271 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.394 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.139 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0926 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0.367,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.291,0.291,0.567,0,0,0,0.477,0.67,0.67,0,0,0.185 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.0463 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.359,0,0.0926 +0.667,0.538,0.538,0,0.292,0,0,0.61,0.62,0.62,0.53,0,0.656 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.259,0,0.0893 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0.179 +1,0.0798,0.0798,0,0,0.915,0,0.305,0.474,0.474,0,0.0935,0 +1,0.143,0.143,0,0,0,0.783,0.331,0.493,0.493,0,0.745,0 +1,0.172,0.172,0,0,0,0.7,0.345,0.518,0.518,0,0.758,0.0463 +1,0.301,0.301,0.367,0,0,0,0.337,0.581,0.581,0,0.693,0 +0.667,0.299,0.299,0.1,0,0,0,0.256,0.581,0.581,0,0.435,0.185 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0.392,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0.407,0.0463 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0.564,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0.816,0.231 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0.3,0.139 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0463 +0.333,0.162,0.162,0.467,0,0,0,0.316,0.548,0.548,0,0,0.0463 +0.667,0.291,0.291,0,0,0.702,0,0.477,0.67,0.67,0,0,0.231 +0.667,0.339,0.339,0,0,0.277,0.283,0.551,0.68,0.68,0,0.389,0.291 +0.667,0.429,0.429,0,0,0,0.7,0.581,0.65,0.65,0,0.457,0.492 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.483 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.417 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.139 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0.276,0,0.0926 +0.333,0.172,0.172,0,0.708,0,0,0.345,0.518,0.518,0.284,0,0.0926 +0.333,0.175,0.175,0,0.208,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.499 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0463 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.139 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.506 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.154 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.185 +0.667,0.291,0.291,0.233,0.0833,0,0,0.477,0.67,0.67,0.614,0,0 +0.667,0.339,0.339,0,0.208,0,0,0.551,0.68,0.68,0.53,0,0.0926 +1,0.619,0.619,0,0,0.979,0,0.742,0.742,0.742,0.233,0.147,0.139 +1,0.783,0.783,0,0,0,0.533,0.787,0.698,0.698,0,0.613,0.0463 +1,0.88,0.88,0,0,0,0.45,0.765,0.668,0.668,0,0.386,0.0463 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.322 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.0679 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.0926 +0.667,0.0495,0.0495,0.167,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.0667,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.035 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.166 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.195 +1,0.394,0.394,0,0,0,0,0.277,0.653,0.653,0,0,0.3 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.115 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.0978 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0926 +0.667,0.274,0.274,0.233,0,0,0,0.374,0.63,0.63,0,0,0.185 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.509 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.185 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.278 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.0839 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.407 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.268 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.245 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.441 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.376 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.171 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0962 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.25 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.139 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0463 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0463 +1,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.0463 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0463 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0463 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.0463 +1,0.484,0.484,0.417,0,0.766,0,0.698,0.787,0.787,0,0,0.0463 +1,0.619,0.619,0.05,0,0.213,0.333,0.742,0.742,0.742,0.241,0.457,0.231 +1,0.783,0.783,0,0.458,0,1,0.787,0.698,0.698,0.521,0.55,0.0463 +1,0.88,0.88,0,0.146,0,0.65,0.765,0.668,0.668,0,0.297,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0.488,0.324 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0.595,0.139 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0.095,0.364 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0827 +1,0.0798,0.0798,0.117,0,0,0,0.305,0.474,0.474,0,0,0.253 +1,0.143,0.143,0.117,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0463 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.231 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.275 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0463 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.185 +0.333,0.162,0.162,0.233,0,0,0,0.316,0.548,0.548,0,0,0.0463 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.104 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.509 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.278 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0.149,0,0.34 +0.667,0.603,0.603,0,0.292,0,0,0.596,0.6,0.6,0.671,0,0 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0.436,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0.367,0,0,0,0.305,0.474,0.474,0,0,0.351 +0.667,0.236,0.236,0.1,0,0,0,0.404,0.521,0.521,0,0,0.421 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.157 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.114 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.417 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0926 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0.233,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.277 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.338 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.231 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0463 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.311 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.107 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.29 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.268,0.268,0.867,0,0,0,0.315,0.591,0.591,0,0,0.0852 +0.667,0.269,0.269,1,0,0,0,0.322,0.61,0.61,0,0,0 +0.333,0.162,0.162,0.0167,0,0,0,0.316,0.548,0.548,0,0,0.185 +0.333,0.17,0.17,0.367,0,0,0,0.368,0.568,0.568,0,0,0.278 +1,0.484,0.484,0.1,0,0,0,0.698,0.787,0.787,0,0,0.185 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.139 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.185 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.231 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.231 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.277 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.417 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.208 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.297 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.171 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.185 +0.333,0.164,0.164,0.367,0,0,0,0.264,0.528,0.528,0,0,0.0926 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.269,0.269,0.05,0,0,0,0.293,0.6,0.6,0,0,0.139 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.0463 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.324 +1,0.291,0.291,0.367,0,0,0,0.477,0.67,0.67,0,0,0.0463 +1,0.339,0.339,0.1,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.231 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.229 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.129 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.11,0.11,0,0.0833,0,0,0.352,0.482,0.482,0.573,0,0.106 +0.667,0.236,0.236,0.233,0.521,0,0,0.404,0.521,0.521,0,0,0.0465 +0.333,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.139 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.258 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.185 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.185 +0.333,0.159,0.159,0.467,0,0,0,0.29,0.538,0.538,0,0,0.0926 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.231 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.0463 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.0926 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.217 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0463 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.0463 +1,0.597,0.597,0,0,0.383,0,0.654,0.594,0.594,0,0,0 +1,0.183,0.183,0,0,0.277,0.283,0.455,0.511,0.511,0,0.279,0.395 +1,0.0743,0.0743,0,0,0,0.4,0.32,0.483,0.483,0,0.659,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0377 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.322 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.093 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.42 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.215 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.233 +0.667,0.271,0.271,0.417,0,0,0,0.263,0.6,0.6,0,0,0.154 +0.667,0.269,0.269,0.05,0,0,0,0.293,0.6,0.6,0.355,0,0 +0.667,0.268,0.268,0,0.771,0,0,0.315,0.591,0.591,0.438,0,0.48 +0.667,0.269,0.269,0,0.146,0,0,0.322,0.61,0.61,0,0,0.244 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.139 +0.667,0.294,0.294,0.417,0,0,0,0.434,0.543,0.543,0,0,0.037 +0.667,0.603,0.603,0.05,0,0,0,0.596,0.6,0.6,0,0,0.307 +0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.0463 +0.667,0.116,0.116,0,0,0,0.05,0.357,0.488,0.488,0,0,0.488 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0.0499 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0373 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.448 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.299,0.299,0.467,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +1,0.394,0.394,0,0,0,0,0.277,0.653,0.653,0,0,0.231 +0.667,0.271,0.271,0,0,0.128,0,0.263,0.6,0.6,0,0,0.0463 +0.667,0.269,0.269,0,0,0.851,0,0.293,0.6,0.6,0,0.547,0.278 +1,0.268,0.268,0,0,0,0.833,0.315,0.591,0.591,0,0.432,0.0926 +1,0.269,0.269,0,0,0,0.15,0.322,0.61,0.61,0,0.792,0.0926 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0463 +0.667,0.291,0.291,0,0.146,0,0,0.477,0.67,0.67,0.582,0,0.139 +1,0.484,0.484,0,0.771,0,0,0.698,0.787,0.787,0,0,0.347 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.392 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.139 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.139 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.0499 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.0463 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.33,0.33,0,0,0,0,0.477,0.549,0.549,0,0,0.271 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.236 +0.667,0.301,0.301,0.233,0,0,0,0.337,0.581,0.581,0,0,0.349 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.322 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.255,0,0.0926 +0.333,0.164,0.164,0,0.292,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.185 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0.0833,0,0,0.29,0.538,0.538,0.682,0,0.185 +0.333,0.162,0.162,0,0.521,0,0,0.316,0.548,0.548,0.788,0,0.536 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0.539,0,0.215 +1,0.484,0.484,0,0.292,0.383,0,0.698,0.787,0.787,0.566,0,0.0463 +0.333,0.239,0.239,0,0,0.596,0.0333,0.419,0.558,0.558,0,0.0475,0.0463 +0.667,0.538,0.538,0,0,0.383,0.7,0.61,0.62,0.62,0,0,0.0926 +1,0.88,0.88,0,0,0.596,0.0333,0.765,0.668,0.668,0,0.576,0.148 +1,0.597,0.597,0,0,0,0.95,0.654,0.594,0.594,0,0.423,0 +1,0.249,0.249,0,0,0,0,0.554,0.534,0.534,0,0.499,0.0463 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0.496,0.0463 +1,0.066,0.066,0,0,0,0,0.359,0.482,0.482,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0.494,0,0.343 +1,0.33,0.33,0.233,0.604,0,0,0.477,0.549,0.549,0.623,0,0.163 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0.519 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.26 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.331 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0,0.0495,0.0495,0,0,0.702,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0.277,0.283,0.275,0.533,0.533,0,0.107,0.0463 +0.333,0.159,0.159,0,0,0,1,0.286,0.528,0.528,0,0,0.139 +0.333,0.159,0.159,0,0,0,0.45,0.29,0.538,0.538,0,0,0.0926 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0.7,0,0,0,0.368,0.568,0.568,0,0,0.324 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.0463 +1,0.619,0.619,0,0,0.66,0,0.742,0.742,0.742,0,0.0861,0.0926 +1,0.783,0.783,0,0,0,0.783,0.787,0.698,0.698,0,0.632,0.185 +1,0.88,0.88,0,0,0,0.2,0.765,0.668,0.668,0,0.767,0.466 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0.12,0.396 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.21 +1,0.295,0.295,0.233,0,0,0,0.433,0.571,0.571,0,0,0.327 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.319 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.463 +0.333,0.164,0.164,0.117,0,0,0,0.264,0.528,0.528,0,0,0.185 +0.333,0.16,0.16,0.35,0,0,0,0.26,0.533,0.533,0,0,0.0463 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.139 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +1,0.412,0.412,0.233,0,0,0,0.587,0.772,0.772,0,0,0.225 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.231 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.0463 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.271 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.347 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.219 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.186 +1,0.236,0.236,0,0,0.979,0,0.404,0.521,0.521,0,0.123,0.105 +0.667,0.172,0.172,0,0,0,0.483,0.345,0.518,0.518,0,0,0.109 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.741 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0926 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.538 +0.333,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.185 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.231 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.266 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0.979,0,0.308,0.469,0.469,0,0.145,0 +1,0.0495,0.0495,0,0,0,0.533,0.305,0.464,0.464,0,0.791,0 +1,0.0495,0.0495,0,0,0,0.45,0.258,0.465,0.465,0,0.123,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.373 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.457 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.433 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0864 +0,0.0495,0.0495,0,0,0.383,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.17,0.17,0,0,0.277,0.283,0.26,0.523,0.523,0,0.316,0 +0.333,0.164,0.164,0,0,0,0.2,0.264,0.528,0.528,0,0.485,0.0463 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0.414,0.0463 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0.521,0.0463 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.427,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0.277,0.0463 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0.291,0.0463 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0.436,0.113 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0.57,0.581 +1,0.619,0.619,0.233,0.0833,0,0,0.742,0.742,0.742,0.598,0.472,0.0463 +1,0.783,0.783,0,0.208,0,0,0.787,0.698,0.698,0,0.645,0.0926 +1,0.88,0.88,0,0,0.66,0,0.765,0.668,0.668,0,0.623,0.231 +1,0.415,0.415,0,0,0,0.533,0.522,0.551,0.551,0,0.297,0.0926 +1,0.116,0.116,0,0,0,0.2,0.357,0.488,0.488,0,0,0.124 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.174,0.174,0.05,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0343 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.313 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.683 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.645 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.501 +0.667,0.274,0.274,0.467,0,0,0,0.374,0.63,0.63,0,0,0.278 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0.452,0,0.417 +0.667,0.429,0.429,0,0.604,0,0,0.581,0.65,0.65,0.262,0,0.211 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0463 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.0926 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.0332 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.191 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0463 +1,0.382,0.382,0,0,0,0,0.266,0.668,0.668,0,0,0.0926 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.231 +0.667,0.268,0.268,0.167,0,0,0,0.315,0.591,0.591,0,0,0.463 +0.667,0.269,0.269,0.0667,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.126 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.264 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.188 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.0926 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.0926 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.139 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.417 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.207 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.133 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.243 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0.467,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.227 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.318 +0.667,0.162,0.162,0.367,0,0,0,0.316,0.548,0.548,0,0,0.341 +0.667,0.291,0.291,0.333,0,0,0,0.477,0.67,0.67,0.25,0,0.324 +1,0.484,0.484,0,0.292,0,0,0.698,0.787,0.787,0.754,0,0.0926 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0.654,0,0.0926 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.61,0,0.0926 +1,0.88,0.88,0.117,0,0,0,0.765,0.668,0.668,0.542,0,0.231 +1,0.597,0.597,0.117,0,0,0,0.654,0.594,0.594,0.592,0,0.0926 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.157 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.0949 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.188 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.141 +0.333,0.164,0.164,0.233,0,0,0,0.257,0.524,0.524,0,0,0.293 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0639 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0.717,0,0,0,0.316,0.549,0.549,0,0,0.37 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.185 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.324 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0463 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.0926 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0534 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.441 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.212 +1,0.404,0.404,0,0,0,0,0.378,0.641,0.641,0,0,0.27 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.175 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.266 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.458 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.278 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.278 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.509 +0.667,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.0926 +0.667,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0 +0.667,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.546 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.242 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.383,0,0.258,0.465,0.465,0,0,0.19 +1,0.317,0.317,0,0,0.574,0.05,0.478,0.551,0.551,0,0.507,0.203 +0.667,0.284,0.284,0,0,0,0.683,0.435,0.572,0.572,0,0.451,0.323 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0.911,0.254 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0.491,0.231 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0.273,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.675,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0.236,0.0926 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.231 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.656 +0.667,0.252,0.252,0.117,0,0,0,0.375,0.632,0.632,0,0,0.295 +0.667,0.264,0.264,0.833,0,0,0,0.479,0.672,0.672,0,0,0.139 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0.312,0,0.388 +1,0.523,0.523,0.233,0.292,0,0,0.745,0.745,0.745,0.302,0,0.0926 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0463 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.285 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.386 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0.233,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0.717,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.278 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.231 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.231 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0926 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.61 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.496 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0463 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.0926 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0463 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.139 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.231 +1,0.42,0.42,0,0.0833,0,0,0.701,0.79,0.79,0.657,0,0.0926 +1,0.523,0.523,0,0.604,0,0,0.745,0.745,0.745,0.704,0,0.0463 +1,0.671,0.671,0,0.208,0,0,0.79,0.701,0.701,0.189,0,0.0463 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.139 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.415 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.269 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.139,0.139,0,0,0.0638,0,0.331,0.494,0.494,0,0,0 +0.667,0.167,0.167,0.367,0,0.574,0.05,0.346,0.519,0.519,0,0.116,0.179 +1,0.404,0.404,0.1,0,0.383,0.683,0.378,0.641,0.641,0,0,0.0266 +0.667,0.278,0.278,0,0,0.574,0.05,0.257,0.582,0.582,0,0.264,0.463 +0.667,0.27,0.27,0,0,0,0.683,0.264,0.582,0.582,0,0.602,0.0463 +0.667,0.259,0.259,0.233,0,0,0,0.271,0.592,0.592,0,0.445,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.139 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.185 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.231 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.0926 +0.667,0.252,0.252,0.617,0,0,0,0.375,0.632,0.632,0.479,0,0 +1,0.371,0.371,0.333,0.604,0,0,0.59,0.775,0.775,0.327,0,0.417 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.139 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.463 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0996 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.218 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.259 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.364 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0927 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.368 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.278 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0463 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0463 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.157,0.157,0.583,0,0,0,0.368,0.569,0.569,0,0,0.139 +1,0.42,0.42,0.6,0,0,0,0.701,0.79,0.79,0,0,0.278 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0463 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.174 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0566 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.1 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.169 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.183 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.126 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.414 +0.333,0.154,0.154,0.233,0,0,0,0.265,0.529,0.529,0,0,0.193 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0.383,0,0.287,0.529,0.529,0,0,0.0926 +0.667,0.249,0.249,0,0,0.574,0.05,0.323,0.612,0.612,0,0.298,0 +0.667,0.252,0.252,0,0,0,1,0.375,0.632,0.632,0,0.646,0.139 +1,0.371,0.371,0.717,0,0,0.183,0.59,0.775,0.775,0,0.201,0.185 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.231 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.305 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0926 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.509 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.238 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.224 +1,0.228,0.228,0.467,0,0,0,0.405,0.523,0.523,0,0,0.244 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0.433,0,0 +0.667,0.16,0.16,0,0.604,0,0,0.261,0.524,0.524,0.56,0,0.744 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.249 +1,0.252,0.252,0.233,0,0,0,0.375,0.632,0.632,0,0,0.236 +1,0.264,0.264,0.367,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.296,0.296,0.1,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0463 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.139 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.0463 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.137 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.207 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.156 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.231 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.463 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0926 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.0463 +1,0.371,0.371,0.233,0,0,0,0.59,0.775,0.775,0,0,0.0463 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0463 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0463 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0.35,0,0,0,0.331,0.494,0.494,0,0,0.14 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0926 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.139 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.0926 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.139 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.185 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.37 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.414 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.334 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.232 +1,0.167,0.167,0.233,0,0,0,0.346,0.519,0.519,0,0,0.214 +1,0.404,0.404,0,0,0.957,0,0.378,0.641,0.641,0,0.0846,0.103 +0.667,0.278,0.278,0,0,0,0.55,0.257,0.582,0.582,0,0.542,0.139 +0.333,0.16,0.16,0.233,0,0,0.433,0.261,0.524,0.524,0,0.428,0.0463 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.409,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0.586,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.2,0.185 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.347,0.0463 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.329,0.602 +1,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.5,0.0926 +1,0.371,0.371,0.117,0,0,0,0.59,0.775,0.775,0,0.595,0.449 +1,0.42,0.42,0.35,0,0,0,0.701,0.79,0.79,0,0.0223,0.185 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.139 +1,0.671,0.671,0,0,0.638,0,0.79,0.701,0.701,0,0.151,0.281 +1,0.799,0.799,0,0,0,0.8,0.768,0.671,0.671,0,0.199,0.0463 +1,0.582,0.582,0,0,0,0.933,0.656,0.596,0.596,0,0,0.607 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.14 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.537 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0743 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.253 +1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0,0,0.0862 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0 +0.667,0.259,0.259,0.717,0,0,0,0.271,0.592,0.592,0,0,0.463 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0463 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.185 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0926 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.0926 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.231 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.238 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.151,0,0.0926 +1,0.799,0.799,0,0.292,0,0,0.768,0.671,0.671,0.425,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.175 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.236 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.396 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.165 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.0734 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.139 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.231 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.185 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0463 +0.667,0.249,0.249,0.233,0,0,0,0.323,0.612,0.612,0,0,0 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.139 +1,0.42,0.42,0,0,0.0638,0,0.701,0.79,0.79,0,0,0.0463 +0.667,0.365,0.365,0,0,0.255,0.3,0.583,0.652,0.652,0,0.325,0.139 +0.667,0.464,0.464,0,0,0,0.433,0.613,0.622,0.622,0,0.476,0.0926 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0.616,0.185 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0.0861,0.0463 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.323 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0937 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.564 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.11 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.185 +0.667,0.164,0.164,0.367,0,0,0,0.257,0.524,0.524,0,0,0.185 +0.333,0.16,0.16,0.833,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0926 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.139 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.0463 +0.667,0.252,0.252,0.367,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0.1,0,0,0,0.479,0.672,0.672,0,0,0.185 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.182 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0926 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.299,0.299,0.233,0,0,0,0.428,0.534,0.534,0,0,0.0926 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,0.617,0,0,0,0.305,0.474,0.474,0.14,0,0.173 +1,0.317,0.317,0.333,0.396,0,0,0.478,0.551,0.551,0.627,0,0.277 +1,0.402,0.402,0,0.208,0,0,0.523,0.626,0.626,0,0,0.555 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.329 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0926 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0926 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0463 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.231 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.37 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.185 +1,0.371,0.371,0,0.0833,0,0,0.59,0.775,0.775,0.399,0,0.324 +1,0.42,0.42,0,0.521,0,0,0.701,0.79,0.79,0.469,0,0 +1,0.523,0.523,0,0.604,0.383,0,0.745,0.745,0.745,0.33,0,0.185 +1,0.671,0.671,0,0,0.574,0.05,0.79,0.701,0.701,0,0.441,0.285 +1,0.549,0.549,0,0,0,0.933,0.598,0.602,0.602,0,0.727,0.231 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0.291,0.136 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.268 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.351 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.167 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.106 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.149,0.149,0,0,0.0638,0,0.276,0.534,0.534,0,0,0.139 +0.667,0.149,0.149,0,0,0.574,0.05,0.287,0.529,0.529,0,0.184,0 +0.667,0.249,0.249,0,0,0,0.683,0.323,0.612,0.612,0,0.534,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.552,0 +0.333,0.157,0.157,0.233,0,0,0,0.368,0.569,0.569,0,0.745,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0.577,0.417 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0.368,0.0926 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0.175,0.703 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0868 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.111 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.37 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.151,0.151,0.117,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.157,0.157,0.117,0,0,0,0.368,0.569,0.569,0,0,0.139 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0968 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.0926 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.213 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.399 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.185 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.394 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.116 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.405 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.624 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.256 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.0926 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.0926 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.247 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.37 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.314 +0.667,0.249,0.249,0.367,0,0,0,0.323,0.612,0.612,0,0,0.412 +0.667,0.252,0.252,0.1,0,0,0,0.375,0.632,0.632,0,0,0.331 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.238 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.0824 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.483 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.205 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.39 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.203 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.139 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.262 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.139,0.139,0,0.0833,0,0,0.331,0.494,0.494,0.436,0,0 +1,0.167,0.167,0,0.521,0,0,0.346,0.519,0.519,0,0,0.332 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.262 +1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0.456,0,0.11 +1,0.27,0.27,0,0.604,0,0,0.264,0.582,0.582,0.591,0,0.824 +1,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0.871,0,0.29 +1,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0.652,0,0.27 +1,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0.623,0,0.278 +1,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0.622,0,0.0463 +1,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0.813,0,0.0926 +1,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0.586,0,0.0926 +0.667,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0.587,0,0.525 +1,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0.332,0,0.366 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.0463 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.231 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.145 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.217 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.192 +0.333,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.195 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.139 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.0463 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.278 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.149,0.149,0.35,0,0,0,0.29,0.539,0.539,0,0,0.139 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.26,0,0.0463 +1,0.671,0.671,0,0.604,0,0,0.79,0.701,0.701,0.422,0,0.0926 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0926 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.129 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.377 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0926 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.139 +0.333,0.149,0.149,0.367,0,0,0,0.29,0.539,0.539,0,0,0.231 +0.667,0.252,0.252,0.333,0,0,0,0.375,0.632,0.632,0,0,0.324 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.0926 +1,0.42,0.42,0,0.0833,0,0,0.701,0.79,0.79,0.596,0,0.0924 +1,0.523,0.523,0,0.521,0.702,0,0.745,0.745,0.745,0,0,0.139 +1,0.671,0.671,0,0,0.255,0.3,0.79,0.701,0.701,0,0.0772,0.651 +1,0.549,0.549,0,0,0,0.683,0.598,0.602,0.602,0,0,0.44 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0.957,0,0.258,0.465,0.465,0,0.12,0 +0.333,0.168,0.168,0,0,0,0.55,0.298,0.524,0.524,0,0.737,0.231 +0.333,0.164,0.164,0,0,0,0.433,0.257,0.524,0.524,0,0.513,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0.611,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.261,0.0463 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0.658,0.213 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.597,0.375 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.537,0.113 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.154,0.231 +0.333,0.151,0.151,0.233,0,0,0,0.316,0.549,0.549,0,0,0.139 +0.667,0.264,0.264,0.367,0,0,0,0.479,0.672,0.672,0,0,0.109 +1,0.42,0.42,0.583,0,0,0,0.701,0.79,0.79,0,0,0.324 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.0926 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.228 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.42,0,0.0463 +1,0.405,0.405,0,0.292,0,0,0.524,0.553,0.553,0.759,0,0.0926 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.804,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.519,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.21 +1,0.0781,0.0781,0.233,0,0,0,0.305,0.474,0.474,0,0,0.163 +1,0.317,0.317,0,0,0,0,0.478,0.551,0.551,0,0,0.295 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.285 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.37 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0926 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0.224,0,0 +0.667,0.264,0.264,0,0.604,0,0,0.479,0.672,0.672,0.208,0,0.0463 +1,0.42,0.42,0,0.0833,0,0,0.701,0.79,0.79,0.614,0,0.278 +1,0.523,0.523,0,0.208,0,0,0.745,0.745,0.745,0,0,0.278 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.449 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.196 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.218 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.252,0.252,0.35,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.138 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.283 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.231 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.37 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.105 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.26 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.253 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.157 +1,0.392,0.392,0.233,0,0,0,0.256,0.641,0.641,0,0,0.191 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0.239 +1,0.364,0.364,0,0,0,0,0.278,0.656,0.656,0,0,0.153 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.454 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.415 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.304 +0.667,0.249,0.249,0,0,0.957,0,0.323,0.612,0.612,0,0.0935,0.0374 +1,0.353,0.353,0,0,0,0.55,0.434,0.715,0.715,0,0.343,0.37 +1,0.371,0.371,0,0,0,0.183,0.59,0.775,0.775,0.487,0.358,0.324 +1,0.42,0.42,0,0.896,0,0,0.701,0.79,0.79,0.569,0,0.0463 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.871,0,0.384 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.13 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.236 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.155 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.139 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.333,0.16,0.16,0.467,0,0,0,0.261,0.524,0.524,0,0,0.0463 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.707 +1,0.352,0.352,0,0,0,0,0.267,0.671,0.671,0,0,0.151 +1,0.349,0.349,0.717,0,0,0,0.312,0.671,0.671,0,0,0.37 +1,0.348,0.348,0.117,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.349,0.349,0.117,0,0,0,0.356,0.686,0.686,0,0,0.37 +1,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.324 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.0926 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.37 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.32 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.279 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.118 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.102 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0503 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.256 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.362 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.231 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0926 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.231 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0926 +0.667,0.264,0.264,0.117,0,0,0,0.479,0.672,0.672,0,0,0.0463 +1,0.42,0.42,0.35,0.0833,0,0,0.701,0.79,0.79,0.458,0,0.139 +1,0.523,0.523,0,0.208,0,0,0.745,0.745,0.745,0.185,0,0.246 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.136 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131 +0.667,0.228,0.228,0.467,0,0,0,0.405,0.523,0.523,0,0,0.382 +0.333,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.0463 +0.667,0.259,0.259,0.233,0,0,0,0.271,0.592,0.592,0,0,0.185 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.284 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.202 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.169 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0463 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.139 +1,0.371,0.371,0,0.0833,0,0,0.59,0.775,0.775,0.585,0,0.0463 +1,0.42,0.42,0,0.208,0,0,0.701,0.79,0.79,0.627,0,0.139 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0.294,0,0.0926 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0463 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.276,0,0.231 +1,0.582,0.582,0,0.604,0,0,0.656,0.596,0.596,0.181,0,0.224 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.247 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.639 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.408 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0534 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.538 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0.117,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.42,0.42,1,0.0833,0,0,0.701,0.79,0.79,0.639,0,0.431 +1,0.523,0.523,0.317,0.521,0,0,0.745,0.745,0.745,0.244,0,0.947 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.423 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.276 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.185 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0.233,0,0,0,0.346,0.519,0.519,0,0,0.113 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0463 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.278 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.139 +0.333,0.157,0.157,0.867,0,0,0,0.368,0.569,0.569,0,0,0.324 +1,0.296,0.296,0.567,0,0,0,0.553,0.682,0.682,0,0,0.0463 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0463 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.509 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.867,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0.317,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.285 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.131 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.833 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0.44,0,0.0463 +0.333,0.153,0.153,0,0.583,0,0,0.246,0.488,0.488,0.4,0,0.0926 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.0463 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0.367,0,0,0,0.271,0.501,0.501,0,0,0.185 +1,0.332,0.332,0.1,0,0,0,0.361,0.596,0.596,0,0,0.231 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0.397,0,0.0463 +1,0.384,0.384,0,0.583,0,0,0.584,0.658,0.658,0.592,0,0.324 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.508,0,0.139 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0.402,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.149 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.11 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.326 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.288 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.305 +0.667,0.245,0.245,0,0,0.383,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0.574,0.05,0.234,0.528,0.528,0,0.243,0.36 +0.667,0.235,0.235,0,0,0,0.917,0.259,0.528,0.528,0,0,0.0463 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0926 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.0463 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.278 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0463 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.185 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0463 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.185 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.301 +1,0.222,0.222,0.1,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0.32,0,0 +0.667,0.263,0.263,0,0.292,0,0,0.228,0.511,0.511,0.61,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0.709,0,0.0926 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0.567,0,0.509 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0.463,0,0.0463 +0.667,0.235,0.235,0,0,0.383,0,0.259,0.528,0.528,0,0,0.0926 +0.667,0.235,0.235,0,0,0.255,0.3,0.277,0.519,0.519,0,0.372,0.139 +1,0.328,0.328,0,0,0,0.417,0.297,0.571,0.571,0,0.329,0.139 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.941,0.363 +1,0.345,0.345,0.467,0,0,0,0.491,0.646,0.646,0,0.0979,0.268 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.231 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.135,0,0.408 +1,0.595,0.595,0,0.292,0,0,0.658,0.583,0.583,0.731,0,0.178 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0463 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.179 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.144 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.245 +1,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.602 +0.667,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0926 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.278 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0463 +0.667,0.238,0.238,0.117,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0.117,0.0833,0,0,0.413,0.585,0.585,0.58,0,0.231 +1,0.384,0.384,0.233,0.5,0,0,0.584,0.658,0.658,0.548,0,0.37 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0.262,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.139 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.555 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0468 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.135 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.306 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.278 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0926 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.139 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.363 +0.667,0.238,0.238,0.367,0,0,0,0.327,0.552,0.552,0,0,0.371 +0.667,0.247,0.247,1,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.273,0.273,0.4,0.0833,0,0,0.475,0.594,0.594,0.576,0,0.185 +1,0.467,0.467,0.117,0.5,0,0,0.621,0.621,0.621,0.634,0,0.139 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0.776,0,0.0926 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0.465,0,0.0692 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.155 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.272 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.156 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.185 +0.333,0.142,0.142,0.117,0,0,0,0.258,0.496,0.496,0,0,0.231 +0.333,0.142,0.142,0.117,0,0,0,0.268,0.492,0.492,0,0,0.278 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0463 +0.667,0.238,0.238,0.6,0,0,0,0.327,0.552,0.552,0,0,0.417 +0.333,0.148,0.148,0.1,0,0,0,0.336,0.525,0.525,0,0,0.278 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0926 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.258 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.117 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0463 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.368 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.342 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.092 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0.406,0,0 +0.667,0.277,0.277,0,0.583,0,0,0.376,0.503,0.503,0.136,0,0 +0.667,0.274,0.274,0.367,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.263,0.263,0.1,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.356 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.487 +0.667,0.237,0.237,0.367,0,0,0,0.234,0.528,0.528,0,0,0.241 +0.667,0.235,0.235,0.1,0,0,0,0.259,0.528,0.528,0,0,0.0463 +0.667,0.235,0.235,0,0,0.383,0,0.277,0.519,0.519,0.25,0,0.351 +1,0.328,0.328,0,0.292,0.574,0.05,0.297,0.571,0.571,0.724,0.329,0.237 +1,0.332,0.332,0,0,0,0.667,0.361,0.596,0.596,0,0,0.231 +0.667,0.247,0.247,0.233,0,0,0,0.413,0.585,0.585,0,0,0.0926 +0.667,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.0926 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.303 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.306 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.119 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0.367,0,0,0,0.352,0.461,0.461,0,0,0.493 +1,0.277,0.277,0.333,0,0,0,0.376,0.503,0.503,0,0,0.172 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.0993 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.274 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.139 +0.333,0.147,0.147,0.233,0,0,0,0.249,0.492,0.492,0,0,0.0926 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.278 +1,0.332,0.332,0.233,0,0,0,0.361,0.596,0.596,0,0,0.263 +1,0.345,0.345,0.117,0,0,0,0.491,0.646,0.646,0,0,0 +0.667,0.273,0.273,0.117,0,0,0,0.475,0.594,0.594,0,0,0.185 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.444 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0926 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.0926 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.116 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.0666 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.139 +1,0.263,0.263,0,0.0833,0,0,0.228,0.511,0.511,0.795,0,0 +1,0.359,0.359,0,0.208,0,0,0.222,0.534,0.534,0.169,0,0.139 +0.667,0.245,0.245,0,0,0.638,0,0.24,0.519,0.519,0,0.19,0 +0.667,0.237,0.237,0,0,0,0.8,0.234,0.528,0.528,0,0.703,0 +0.667,0.235,0.235,0,0,0,0.167,0.259,0.528,0.528,0,0.585,0.0463 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0.588,0.33 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0.454,0.272 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0.383,0.156 +1,0.345,0.345,0.233,0,0,0,0.491,0.646,0.646,0,0.323,0.265 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.214,0.547 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.323 +1,0.595,0.595,0,0,0.957,0,0.658,0.583,0.583,0,0.132,0.308 +1,0.726,0.726,0,0,0,0.233,0.639,0.559,0.559,0,0.717,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.066,0.066,0,0,0,0,0.314,0.428,0.428,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.314,0.42,0.42,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.412,0.412,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.162,0.162,0,0,0.702,0,0.277,0.488,0.488,0,0,0.439 +1,0.263,0.263,0.867,0,0.255,0.3,0.228,0.511,0.511,0,0.81,0.199 +1,0.359,0.359,1,0,0,0.667,0.222,0.534,0.534,0,0.402,0.0871 +1,0.343,0.343,0.25,0,0,0,0.232,0.546,0.546,0,0.599,0.223 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0.288,0.33 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0.139 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0,0.185 +1,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.231 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.274 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.346 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0463 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0926 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.315 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.155 +0.667,0.163,0.163,0.7,0,0,0,0.317,0.484,0.484,0,0,0.109 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.278 +0.333,0.142,0.142,0.7,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.268 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.278 +0.333,0.144,0.144,0.233,0,0,0,0.292,0.509,0.509,0,0,0.0463 +1,0.345,0.345,0.467,0,0,0,0.491,0.646,0.646,0.445,0,0.139 +1,0.384,0.384,0,0.875,0,0,0.584,0.658,0.658,0.657,0,0.324 +1,0.467,0.467,0,0.583,0,0,0.621,0.621,0.621,0.53,0,0.0463 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.473 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.4 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.128 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.348 +1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0.143 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.186 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.083 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.231 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0.367,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.148,0.148,0.567,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.413,0.413,0.233,0,0,0,0.525,0.544,0.544,0.517,0,0.139 +1,0.501,0.501,0,0.292,0,0,0.512,0.528,0.528,0.293,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.139 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.268 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.378 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.146 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.139 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0926 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.238,0.238,0.117,0,0,0,0.327,0.552,0.552,0,0,0.231 +0.333,0.148,0.148,0.35,0,0,0,0.336,0.525,0.525,0.427,0,0.0463 +0.667,0.273,0.273,0,0.292,0,0,0.475,0.594,0.594,0.551,0,0.316 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.185 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.126 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.292 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.184 +1,0.308,0.308,0,0,0,0,0.398,0.459,0.459,0,0,0.151 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.109 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.156,0.156,0.233,0,0,0,0.243,0.488,0.488,0,0,0.139 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.0463 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.185 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.311 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.288 +0.667,0.273,0.273,0.233,0,0,0,0.475,0.594,0.594,0,0,0.221 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0463 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.0926 +0.667,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.0926 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.278 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.126 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.209 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.167 +0.333,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.163,0.163,0.567,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.278 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.324 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.417 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,0.117,0,0,0,0.292,0.509,0.509,0,0,0.0758 +0.333,0.148,0.148,0.35,0,0,0,0.336,0.525,0.525,0,0,0 +1,0.384,0.384,0.233,0,0,0,0.584,0.658,0.658,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0 +0.667,0.231,0.231,0,0,0,0,0.391,0.505,0.505,0,0,0.0926 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.648 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.241 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.157 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.108 +1,0.162,0.162,0,0,0.638,0,0.277,0.488,0.488,0,0,0.0619 +1,0.263,0.263,0,0,0,0.55,0.228,0.511,0.511,0,0.539,0.12 +0.667,0.153,0.153,0,0,0,0.167,0.246,0.488,0.488,0,0.0816,0.139 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.231 +0.667,0.235,0.235,0,0,0.702,0,0.259,0.528,0.528,0,0,0.417 +0.667,0.142,0.142,0,0,0.255,0.3,0.268,0.492,0.492,0,0.457,0.37 +0.667,0.142,0.142,0,0,0,0.667,0.271,0.501,0.501,0,0.605,0.0463 +0.667,0.144,0.144,0.233,0,0,0,0.292,0.509,0.509,0,0.614,0.0463 +0.667,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.139 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.0463 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.37 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.0926 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.156 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0.176,0,0 +1,0.0743,0.0743,0,0.583,0,0,0.295,0.455,0.455,0.756,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0.433,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0.1,0,0,0,0.317,0.484,0.484,0,0,0.231 +1,0.162,0.162,0,0.0833,0,0,0.277,0.488,0.488,0.625,0,0 +1,0.156,0.156,0,0.5,0,0,0.243,0.488,0.488,0.472,0,0 +1,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0.0557,0,0.231 +0.667,0.147,0.147,0.233,0,0,0,0.249,0.492,0.492,0,0,0.185 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.425 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0463 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.139 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0.246,0,0.184 +0.667,0.328,0.328,0,0.292,0,0,0.5,0.569,0.569,0.515,0,0.0926 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.368 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.137 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.0751 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0.384,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.191 +0.667,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.154 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.156,0.156,0.817,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.324 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0926 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0926 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0.233,0,0,0,0.413,0.585,0.585,0,0,0.0926 +0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.37 +0.333,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.0926 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.278 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.37 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.387 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0463 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.185 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0926 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0463 +0.667,0.142,0.142,0,0,0.638,0,0.271,0.501,0.501,0,0.185,0.0926 +0.667,0.144,0.144,0,0,0,0.8,0.292,0.509,0.509,0,0.526,0.0463 +1,0.247,0.247,0,0,0,0.167,0.413,0.585,0.585,0,0.424,0.37 +1,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0.32,0.278 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0.49,0.0926 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0.347,0.278 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0.439,0.0463 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0.128,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.104,0.104,0,0,0,0,0.308,0.428,0.428,0,0,0.284 +1,0.222,0.222,0,0,0.383,0,0.352,0.461,0.461,0,0,0.0789 +0.667,0.277,0.277,0,0,0.255,0.3,0.376,0.503,0.503,0,0.616,0.16 +0.667,0.274,0.274,0,0,0,0.417,0.296,0.511,0.511,0,0.829,0.0814 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.622,0.231 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.68,0.0463 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.3,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.359,0.231 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.42,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0.915,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.599,0.139 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0.101,0.454,0.0463 +1,0.247,0.247,0.233,0.396,0,0,0.413,0.585,0.585,0.551,0.496,0.0463 +1,0.384,0.384,0,0.479,0,0,0.584,0.658,0.658,0,0,0.0463 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.139 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0926 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0463 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.377 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.211 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.0926 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.329 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.13 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.188 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.185 +0.333,0.144,0.144,0.233,0,0,0,0.292,0.509,0.509,0,0,0.0926 +0.333,0.148,0.148,0,0.0833,0,0,0.336,0.525,0.525,0.671,0,0.0463 +0.333,0.161,0.161,0,0.208,0,0,0.366,0.53,0.53,0.49,0,0.0463 +0.333,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0,0.41 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.297 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.269 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.533 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.488 +0.667,0.274,0.274,0,0,0.702,0,0.296,0.511,0.511,0,0,0.129 +0.667,0.263,0.263,0,0,0.255,0.3,0.228,0.511,0.511,0,0.372,0.0764 +0.667,0.256,0.256,0,0,0,0.667,0.234,0.511,0.511,0,0.318,0.746 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0.455,0.185 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0.47,0.185 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0.491,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,0.117,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.247,0.247,0.583,0,0,0,0.413,0.585,0.585,0.399,0,0.231 +0.667,0.273,0.273,0,0.292,0,0,0.475,0.594,0.594,0.571,0,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.504,0,0.231 +1,0.595,0.595,0,0,0.638,0,0.658,0.583,0.583,0,0.154,0.0463 +1,0.501,0.501,0,0,0,0.717,0.512,0.528,0.528,0,0.466,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0.402,0.185 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.703 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.143 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.19 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0.0833,0,0,0.258,0.465,0.465,0.604,0,0.231 +0.667,0.156,0.156,0.367,0.208,0,0,0.243,0.488,0.488,0.243,0,0.832 +0.667,0.256,0.256,0.333,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0.0463 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.231 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.139 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.233 +0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.0926 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0463 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.723 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0463 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +1,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.0463 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.139 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.324 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.384,0.384,0.617,0,0,0,0.584,0.658,0.658,0,0,0.417 +0.667,0.328,0.328,0.0833,0,0,0,0.5,0.569,0.569,0,0,0.0926 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0926 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.248 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.126 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.486 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0.233,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.187 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.179 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0.574,0.05,0.258,0.465,0.465,0,0.294,0.0463 +0.667,0.235,0.235,0,0,0,1,0.259,0.528,0.528,0,0.418,0 +0.667,0.235,0.235,0,0,0,0.4,0.277,0.519,0.519,0,0.571,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.739,0 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0.384,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0.729,0.0926 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.677,0.0463 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0.543,0.185 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.518,0.0926 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0.28,0.636,0.305 +1,0.388,0.388,0,0.292,0,0,0.45,0.486,0.486,0.251,0,0.185 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.135 +1,0.222,0.222,0.233,0,0,0,0.352,0.461,0.461,0,0,0.093 +0.667,0.163,0.163,0.117,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.162,0.162,0.817,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.227 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.308 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.453 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0926 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0926 +0.333,0.144,0.144,0.467,0,0,0,0.292,0.509,0.509,0,0,0.0463 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0463 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.294 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0926 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.0926 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0463 +1,0.388,0.388,0,0,0.957,0,0.45,0.486,0.486,0,0.0208,0.677 +1,0.183,0.183,0,0,0,0.55,0.395,0.453,0.453,0,0.267,0.0926 +1,0.099,0.099,0,0,0,0.167,0.333,0.445,0.445,0,0.501,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0.469,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0.534,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.572 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.089 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.0531 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.176 +0.667,0.245,0.245,0.467,0,0,0,0.24,0.519,0.519,0,0,0.108 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.305 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.472 +0.333,0.142,0.142,0.117,0,0,0,0.268,0.492,0.492,0,0,0.0926 +0,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0.3,0,0.629 +1,0.384,0.384,0,0.292,0,0,0.584,0.658,0.658,0.273,0,0.321 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.453 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.365 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.185 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.486 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0824 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.258 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.247 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.182 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.583 +1,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.413 +1,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.493 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0463 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0926 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.278 +0.667,0.238,0.238,0.117,0,0,0,0.327,0.552,0.552,0,0,0 +0,0.0495,0.0495,0.35,0,0,0,0.258,0.465,0.465,0,0,0.189 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.328,0.328,0.617,0,0.383,0,0.5,0.569,0.569,0,0,0 +1,0.595,0.595,0.0833,0.0833,0.255,0.3,0.658,0.583,0.583,0.68,0.407,0.0926 +1,0.726,0.726,0,0.5,0,0.417,0.639,0.559,0.559,0.77,0.315,0.0463 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.602 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0.233,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.443 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.246 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.202 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.123 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0463 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.185 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.667,0.273,0.273,0,0,0.957,0,0.475,0.594,0.594,0,0.0935,0.231 +0.667,0.328,0.328,0,0,0,0.55,0.5,0.569,0.569,0,0.7,0.139 +1,0.413,0.413,0,0,0,0.417,0.525,0.544,0.544,0,0.816,0.0463 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0.595,0.0463 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0.389,0.137 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.358 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.625 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.126 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.0855 +0.667,0.245,0.245,0,0.0833,0,0,0.24,0.519,0.519,0.696,0,0.243 +0.667,0.237,0.237,0,0.208,0,0,0.234,0.528,0.528,0.656,0,0.183 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,1,0,0.278 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0.39,0,0.509 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.185 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0463 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.509 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0926 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.185 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0734 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.243 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.179 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0.56,0,0.348 +0.667,0.24,0.24,0.233,0.562,0,0,0.239,0.517,0.517,0.434,0,0.197 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.0463 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.0926 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.0463 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.679 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.324 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.278 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0946 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.186 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.16,0.16,0,0.0833,0,0,0.276,0.487,0.487,0.612,0,0 +0.667,0.258,0.258,0,0.188,0,0,0.227,0.508,0.508,0.278,0,0.139 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.231 +0.333,0.145,0.145,0.233,0,0,0,0.248,0.491,0.491,0,0,0 +1,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.0463 +1,0.14,0.14,0,0,0.383,0,0.258,0.495,0.495,0,0,0 +1,0.14,0.14,0,0,0.277,0.283,0.267,0.491,0.491,0,0.389,0.176 +1,0.23,0.23,0,0,0,0.4,0.282,0.533,0.533,0,0,0.344 +1,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.278 +0.667,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.185 +0.667,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0.476,0,0.0926 +0.333,0.187,0.187,0,0.854,0,0,0.377,0.516,0.516,0.711,0,0.0926 +0.667,0.41,0.41,0,0.271,0,0,0.521,0.541,0.541,0.576,0,0.185 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0.348,0,0.219 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.203 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.35,0,0,0,0.258,0.465,0.465,0,0,0.168 +1,0.22,0.22,0.233,0,0,0,0.35,0.459,0.459,0,0,0.665 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.21 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.107 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.361 +0.333,0.15,0.15,0,0,0.0638,0,0.245,0.487,0.487,0,0,0.185 +0.333,0.145,0.145,0,0,0.255,0.3,0.248,0.491,0.491,0,0.303,0.0463 +0,0.0495,0.0495,0,0,0,0.85,0.258,0.465,0.465,0,0.233,0.0926 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.139 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0463 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0789 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.387 +0.333,0.159,0.159,0.233,0,0,0,0.365,0.528,0.528,0,0,0.455 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0926 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0463 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.185 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.412 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.404 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0924 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.193 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.106 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.244 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.278 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.324 +0.333,0.145,0.145,0.367,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0.1,0,0,0,0.245,0.495,0.495,0,0,0.231 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.14,0.14,0,0.0833,0,0,0.27,0.499,0.499,0.645,0,0.0463 +1,0.324,0.324,0,0.479,0,0,0.359,0.592,0.592,0.172,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +0.667,0.324,0.324,0,0,0.66,0,0.497,0.566,0.566,0,0,0.0926 +1,0.59,0.59,0,0,0,0.533,0.653,0.579,0.579,0,0.254,0.148 +1,0.496,0.496,0,0,0,0.383,0.509,0.525,0.525,0,0,0.139 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0463 +0.333,0.145,0.145,0.367,0,0,0,0.248,0.491,0.491,0,0,0.324 +0.333,0.141,0.141,0.1,0,0,0,0.245,0.495,0.495,0,0,0.139 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.139 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.255 +1,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0.296,0,0.185 +1,0.377,0.377,0,0.271,0.66,0,0.58,0.653,0.653,0.761,0,0.231 +1,0.461,0.461,0,0,0,0.533,0.616,0.616,0.616,0.558,0.277,0 +1,0.59,0.59,0,0,0,0.15,0.653,0.579,0.579,0.747,0.614,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.33,0.829,0 +1,0.386,0.386,0,0.708,0,0,0.448,0.484,0.484,0.291,0.0341,0.231 +0.667,0.0495,0.0495,0,0.146,0,0,0.258,0.465,0.465,0,0,0.185 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.202 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0908 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.509 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.164 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.416 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.289 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.185 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.231 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.386 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.417 +0.667,0.268,0.268,0.467,0,0,0,0.472,0.591,0.591,0.192,0,0.139 +1,0.461,0.461,0,0.271,0,0,0.616,0.616,0.616,0.632,0,0.324 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0463 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.0463 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.107 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.22,0.22,0,0.188,0,0,0.35,0.459,0.459,0.675,0,0 +1,0.274,0.274,0,0.667,0,0,0.374,0.5,0.5,0,0,0.0463 +1,0.16,0.16,0.233,0,0,0,0.276,0.487,0.487,0,0,0.0926 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.293 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.155 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.0463 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.0463 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.278 +0.667,0.233,0.233,0.45,0,0,0,0.325,0.549,0.549,0,0,0.139 +0.333,0.146,0.146,0.0167,0,0,0,0.334,0.524,0.524,0,0,0.0463 +0.667,0.159,0.159,0,0,0.489,0,0.365,0.528,0.528,0,0,0.0463 +1,0.461,0.461,0,0,0.17,0.367,0.616,0.616,0.616,0,0.574,0.0926 +1,0.59,0.59,0,0,0,0.55,0.653,0.579,0.579,0.321,0,0.139 +1,0.72,0.72,0,0.812,0,0,0.635,0.555,0.555,0.303,0,0.333 +1,0.554,0.554,0,0.0417,0,0,0.543,0.493,0.493,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.37 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.23 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.167 +1,0.154,0.154,0,0,0.489,0,0.242,0.487,0.487,0,0,0 +0.667,0.25,0.25,0,0,0.511,0.1,0.233,0.508,0.508,0,0.214,0 +0.667,0.24,0.24,0.233,0,0,0.583,0.239,0.517,0.517,0,0.141,0.612 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0463 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.231 +0.333,0.14,0.14,0.233,0,0,0,0.27,0.499,0.499,0,0,0.0926 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.278 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.169 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.131 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.139 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0926 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.199 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.231 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.354,0,0 +0.333,0.162,0.162,0,0.271,0.383,0,0.316,0.483,0.483,0.255,0,0 +0.333,0.16,0.16,0,0,0.617,0.0167,0.276,0.487,0.487,0,0.318,0 +0.333,0.154,0.154,0,0,0,0.433,0.242,0.487,0.487,0,0.343,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0.697,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0.45,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.475,0.37 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.568,0.231 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.43,0.0463 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.231 +0.667,0.141,0.141,0,0,0.383,0,0.291,0.507,0.507,0,0,0.223 +1,0.242,0.242,0.467,0,0.277,0.283,0.411,0.582,0.582,0,0.409,0.185 +1,0.377,0.377,0,0,0,0.633,0.58,0.653,0.653,0,0.488,0.324 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.359,0.51 +1,0.59,0.59,0,0,0.0638,0,0.653,0.579,0.579,0,0.0519,0.136 +1,0.72,0.72,0,0,0.936,0,0.635,0.555,0.555,0,0.157,0.245 +1,0.554,0.554,0,0,0,0.767,0.543,0.493,0.493,0,0,0.0638 +1,0.0495,0.0495,0,0,0,0.15,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.278 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.339 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.38 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.234 +1,0.324,0.324,0.233,0,0,0,0.359,0.592,0.592,0,0,0.132 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.0926 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0.271,0,0.139 +1,0.461,0.461,0,0.271,0,0,0.616,0.616,0.616,0.646,0,0.185 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.165,0,0.0463 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0463 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.144 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.248 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0463 +0.333,0.15,0.15,0,0,0.0638,0,0.245,0.487,0.487,0,0,0.365 +0.333,0.145,0.145,0,0,0.936,0,0.248,0.491,0.491,0,0.352,0 +0.333,0.141,0.141,0,0,0,0.683,0.245,0.495,0.495,0,0.374,0.231 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.389,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.551,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.691,0.0926 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0.334,0.0463 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0.27,0.423 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.191 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.139 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0926 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.246 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.158 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.133 +1,0.386,0.386,0,0,0,0,0.432,0.518,0.518,0.278,0,0.35 +0.333,0.16,0.16,0,0.271,0,0,0.276,0.487,0.487,0.257,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.417 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.0463 +0.667,0.24,0.24,0.117,0,0,0,0.239,0.517,0.517,0,0,0.0463 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0.0463 +0.333,0.14,0.14,0.283,0,0,0,0.258,0.495,0.495,0,0,0.139 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0.367,0,0,0,0.291,0.507,0.507,0,0,0.0463 +0.667,0.242,0.242,0.333,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.231 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.278 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.582 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.157 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.22,0.22,0.233,0,0,0,0.35,0.459,0.459,0,0,0.383 +1,0.386,0.386,0,0,0,0,0.432,0.518,0.518,0,0,0.0924 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.469 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.233 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0.111,0,0.125 +0.667,0.24,0.24,0,0.396,0,0,0.239,0.517,0.517,0.828,0,0.139 +0.333,0.141,0.141,0,0.167,0,0,0.245,0.495,0.495,0.07,0,0.185 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.134 +0.667,0.268,0.268,0.867,0,0,0,0.472,0.591,0.591,0,0,0 +1,0.461,0.461,0.65,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0.35,0,0,0,0.653,0.579,0.579,0,0,0.37 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0926 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.231 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.285 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.0525 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.292 +1,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.142 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.282 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0.66,0,0.258,0.465,0.465,0,0.0341,0.367 +0.333,0.14,0.14,0,0,0,0.867,0.258,0.495,0.495,0,0.7,0.347 +0.667,0.23,0.23,0,0,0,0.75,0.276,0.517,0.517,0,0,0.125 +0.667,0.23,0.23,0.233,0,0,0,0.282,0.533,0.533,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0463 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.231 +0.333,0.159,0.159,0,0.188,0,0,0.365,0.528,0.528,0.576,0,0.139 +0.333,0.187,0.187,0,0.375,0,0,0.377,0.516,0.516,0,0,0 +0.333,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.284 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.185 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0463 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.0737 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0463 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0926 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.233,0.233,0.7,0,0,0,0.325,0.549,0.549,0.14,0,0 +0.667,0.242,0.242,0,0.5,0,0,0.411,0.582,0.582,0.664,0,0.0926 +0.667,0.268,0.268,0,0.0625,0,0,0.472,0.591,0.591,0.693,0,0.0463 +0.667,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0.0646,0,0.463 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0463 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.231 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.185 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0.0463 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.261 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.411 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.0495,0.0495,0,0,1,0,0.258,0.465,0.465,0,0.188,0 +0.333,0.154,0.154,0,0,0,0.517,0.242,0.487,0.487,0,0.615,0 +0.333,0.15,0.15,0,0,0,0.4,0.245,0.487,0.487,0,0.136,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.231 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0463 +0.333,0.14,0.14,0.367,0,0,0,0.267,0.491,0.491,0,0,0.0926 +0.333,0.14,0.14,0.1,0,0,0,0.27,0.499,0.499,0,0,0.0926 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.231 +1,0.338,0.338,0,0.0833,0.383,0,0.488,0.641,0.641,0.522,0,0 +1,0.377,0.377,0,0.188,0.277,0.283,0.58,0.653,0.653,0.354,0.491,0 +1,0.461,0.461,0,0,0,0.633,0.616,0.616,0.616,0,0.227,0.185 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.535 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.278 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.324 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.29 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0896 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.139 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0463 +0.333,0.145,0.145,0.233,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.346 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.116 +0.667,0.23,0.23,0,0,0.383,0,0.276,0.517,0.517,0,0,0.12 +0.667,0.23,0.23,0,0,0.277,0.283,0.282,0.533,0.533,0,0.282,0.0463 +1,0.324,0.324,0,0,0,0.633,0.359,0.592,0.592,0.375,0.714,0 +1,0.338,0.338,0,0.708,0,0,0.488,0.641,0.641,0.501,0.316,0.0926 +0.667,0.268,0.268,0,0.146,0,0,0.472,0.591,0.591,0,0,0.0463 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.139 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.231 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.185 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.198 +0.667,0.274,0.274,0,0,0.383,0,0.374,0.5,0.5,0,0,0.212 +0.667,0.27,0.27,0,0,0.617,0.0167,0.294,0.508,0.508,0,0.448,0.314 +0.667,0.258,0.258,0,0,0,0.9,0.227,0.508,0.508,0,0.769,0.591 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0.453,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0.457,0.0463 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0.573,0.0926 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.509,0.231 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.786,0.37 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.409,0.0463 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0.53,0.0463 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.139 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.339 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0463 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.0897 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.423 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.108 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.185 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0.617,0,0,0,0.291,0.507,0.507,0,0,0.395 +1,0.338,0.338,0.0833,0,0,0,0.488,0.641,0.641,0,0,0.257 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.163 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.245 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.185 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.163 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.231 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.407 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0504,0.0504,0.1,0,0,0,0.288,0.418,0.418,0,0,0 +0.667,0.0763,0.0763,0.367,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.22,0.22,0.333,0,0,0,0.35,0.459,0.459,0,0,0.362 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.0846 +0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.37 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0463 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0463 +0.667,0.141,0.141,0.617,0,0,0,0.291,0.507,0.507,0,0,0 +1,0.242,0.242,0.0833,0,0,0,0.411,0.582,0.582,0,0,0.231 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.35,0,0.139 +1,0.59,0.59,0,0.562,0,0,0.653,0.579,0.579,0.391,0,0.139 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.278 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.407 +0.333,0.141,0.141,0,0,0.66,0,0.245,0.495,0.495,0,0,0.303 +0.667,0.23,0.23,0,0,0,0.617,0.258,0.525,0.525,0,0.895,0.358 +0.667,0.23,0.23,0,0,0,0.533,0.276,0.517,0.517,0,0.0816,0.233 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.233 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.0926 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.231 +0.667,0.268,0.268,0.467,0,0,0,0.472,0.591,0.591,0,0,0.463 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.37 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0463 +1,0.72,0.72,0,0,0.66,0,0.635,0.555,0.555,0,0.144,0.139 +1,0.554,0.554,0,0,0,0.867,0.543,0.493,0.493,0,0.776,0.0926 +1,0.183,0.183,0,0,0,0.05,0.393,0.451,0.451,0,0.605,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.16,0.16,0,0,0.489,0,0.276,0.487,0.487,0,0,0.0534 +0.667,0.154,0.154,0,0,0.511,0.1,0.242,0.487,0.487,0,0.49,0.0463 +0.667,0.15,0.15,0,0,0,0.817,0.245,0.487,0.487,0,0.813,0.0926 +0.667,0.145,0.145,0.45,0,0,0,0.248,0.491,0.491,0,0.536,0.0926 +0.667,0.232,0.232,0.95,0,0,0,0.233,0.525,0.525,0,0.457,0.0926 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.819,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.491,0.185 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0.522,0 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0.553,0.0463 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0.522,0.0463 +0.667,0.268,0.268,0,0.188,0,0,0.472,0.591,0.591,0.662,0.714,0 +1,0.461,0.461,0,0.667,0,0,0.616,0.616,0.616,0,0.168,0.37 +1,0.59,0.59,0.467,0,0,0,0.653,0.579,0.579,0.104,0,0.139 +1,0.72,0.72,0,0.271,0,0,0.635,0.555,0.555,0.479,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0.578,0,0.0463 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0.0252,0.282 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.0969,0,0 +1,0.0499,0.0499,0.233,0.396,0,0,0.273,0.442,0.442,0.637,0,0.282 +1,0.0763,0.0763,0,0.167,0,0,0.282,0.446,0.446,0,0,0.107 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.592 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0463 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.278 +0.333,0.141,0.141,0.233,0,0,0,0.245,0.495,0.495,0,0,0.19 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0.367,0,0,0,0.291,0.507,0.507,0,0,0.222 +1,0.338,0.338,0.1,0,0,0,0.488,0.641,0.641,0,0,0.0463 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.0463 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.139 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.231 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0926 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.641 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0.318,0,0 +1,0.305,0.305,0,0.562,0,0,0.396,0.456,0.456,0.366,0,0.179 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.105 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.435 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.278 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.139 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.14,0.14,0.367,0.0833,0,0,0.27,0.499,0.499,0.641,0,0 +1,0.324,0.324,0.1,0.562,0,0,0.359,0.592,0.592,0.761,0,0 +0.667,0.242,0.242,0,0.188,0,0,0.411,0.582,0.582,0.266,0,0.0926 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.37 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.0463 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.25,0,0.139 +1,0.72,0.72,0,0.271,0,0,0.635,0.555,0.555,0.221,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.304 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0984 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.162 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.125 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.417 +0.667,0.162,0.162,0,0,0.383,0,0.316,0.483,0.483,0,0,0 +0.667,0.16,0.16,0,0,0.277,0.283,0.276,0.487,0.487,0,0.377,0.231 +0.667,0.154,0.154,0,0,0,0.4,0.242,0.487,0.487,0,0.703,0.333 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0.3,0.266 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.493,0.455 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.45,0.0644 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.488,0.0569 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.337,0.322 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.466,0.232 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.138 +1,0.338,0.338,0,0,0.66,0,0.488,0.641,0.641,0,0,0.24 +1,0.268,0.268,0,0,0,0.533,0.472,0.591,0.591,0,0.542,0.402 +1,0.324,0.324,0,0,0,0.15,0.497,0.566,0.566,0,0.662,0.26 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0.107,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.273 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.164 +1,0.305,0.305,0,0,0,0,0.396,0.456,0.456,0,0,0.342 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.656 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.327 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0463 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.231 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.185 +0.333,0.141,0.141,0.233,0,0,0,0.245,0.495,0.495,0,0,0.0926 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0463 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0463 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0463 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.159,0.159,0.233,0.0833,0,0,0.365,0.528,0.528,0.607,0,0.0463 +1,0.461,0.461,0,0.771,0,0,0.616,0.616,0.616,0.115,0,0.37 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.198 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.183 +0.333,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.426 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.411 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.14,0.14,0.1,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0.33,0,0 +0.667,0.242,0.242,0,0.562,0,0,0.411,0.582,0.582,0,0,0.324 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.139 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.37 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.509 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.334 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0763,0.0763,0.233,0,0,0,0.282,0.446,0.446,0,0,0.0811 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.0741 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.148 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.231 +0.667,0.258,0.258,0.2,0,0,0,0.227,0.508,0.508,0,0,0.0926 +0.667,0.25,0.25,0.0333,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.278 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.0463 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0.489,0,0.276,0.517,0.517,0,0,0.357 +1,0.321,0.321,0,0,0.17,0.367,0.294,0.567,0.567,0,0.38,0.11 +1,0.324,0.324,0.233,0,0,0.317,0.359,0.592,0.592,0,0.537,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0.543,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0.866,0.231 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0926 +0.667,0.41,0.41,0,0.188,0,0,0.521,0.541,0.541,0.833,0,0.0463 +0.667,0.496,0.496,0,0.375,0,0,0.509,0.525,0.525,0.0862,0,0.0463 +0.667,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.156 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0.66,0,0.242,0.487,0.487,0,0.0208,0 +0.667,0.25,0.25,0,0,0,0.683,0.233,0.508,0.508,0,0.309,0 +0.667,0.24,0.24,0.7,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.185 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.0463 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.342 +1,0.321,0.321,0,0,0.489,0,0.294,0.567,0.567,0,0,0.0463 +1,0.233,0.233,0.233,0,0.511,0.1,0.325,0.549,0.549,0,0.639,0.417 +1,0.242,0.242,0,0,0,0.583,0.411,0.582,0.582,0,0.424,0.231 +1,0.268,0.268,0.2,0,0,0,0.472,0.591,0.591,0,0.447,0.0463 +0.667,0.187,0.187,1,0,0,0,0.377,0.516,0.516,0,0,0 +0.667,0.23,0.23,1,0,0,0,0.39,0.503,0.503,0,0,0.0463 +0.667,0.273,0.273,1,0,0,0,0.383,0.495,0.495,0,0,0.185 +0.667,0.218,0.218,0.783,0,0,0,0.353,0.475,0.475,0,0,0.278 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.266 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0377 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0 +0.667,0.22,0.22,0,0,0.0638,0,0.35,0.459,0.459,0,0,0.305 +0.667,0.274,0.274,0,0,0.596,0.0333,0.374,0.5,0.5,0,0.136,0.264 +0.333,0.16,0.16,0,0,0,1,0.276,0.487,0.487,0,0.26,0.278 +0.333,0.154,0.154,0,0,0,0.35,0.242,0.487,0.487,0,0.402,0.0463 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0.504,0.0926 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0.503,0.231 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0.626,0.139 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.457,0.0926 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.571,0.0926 +0.667,0.23,0.23,0.117,0,0,0,0.282,0.533,0.533,0,0.795,0.0463 +0.667,0.233,0.233,0.117,0,0,0,0.325,0.549,0.549,0,0,0.0463 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.231 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.491 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.37 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0.0833,0,0,0.258,0.495,0.495,0.573,0,0 +0.333,0.14,0.14,0,0.188,0,0,0.267,0.491,0.491,0,0,0.278 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0.124,0,0.0926 +1,0.324,0.324,0.467,0.271,0.0638,0,0.359,0.592,0.592,0.533,0,0.556 +1,0.338,0.338,0,0,0.596,0.0333,0.488,0.641,0.641,0,0.2,0.278 +1,0.268,0.268,0,0,0,1,0.472,0.591,0.591,0,0.129,0.324 +1,0.461,0.461,0,0,0,0.117,0.616,0.616,0.616,0,0,0.545 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.231 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0926 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.222 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.231 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.139 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.185 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.509 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.575 +1,0.462,0.462,0,0,0.702,0,0.521,0.541,0.541,0,0,0.214 +1,0.542,0.542,0,0,0.255,0.3,0.509,0.525,0.525,0,0.343,0.0463 +1,0.0495,0.0495,0,0,0,0.367,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.17 +1,0.104,0.104,0.117,0,0,0,0.307,0.426,0.426,0,0,0.139 +0.667,0.222,0.222,0.117,0,0,0,0.35,0.459,0.459,0,0,0.0525 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.592 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.324 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.231 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0926 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.139 +0.333,0.143,0.143,0.233,0,0,0,0.245,0.495,0.495,0,0,0.231 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.139 +0.667,0.235,0.235,0,0,0.383,0,0.276,0.517,0.517,0,0,0 +1,0.329,0.329,0.117,0,0.574,0.05,0.294,0.567,0.567,0,0.107,0 +0.667,0.239,0.239,0.117,0,0,0.617,0.325,0.549,0.549,0,0,0.185 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.139 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.139 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.0463 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0463 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.0926 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.05,0.05,0.117,0,0,0,0.273,0.442,0.442,0,0,0.225 +1,0.0768,0.0768,1,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.136,0.136,0.317,0,0,0,0.304,0.462,0.462,0,0,0.24 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.537 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0.226,0,0.535 +0.667,0.235,0.235,0,0.271,0,0,0.258,0.525,0.525,0.497,0,0.362 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.321 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.235 +1,0.334,0.334,0.233,0,0,0,0.359,0.592,0.592,0,0,0.446 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.139 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0.451,0,0.0463 +1,0.518,0.518,0,0.562,0,0,0.616,0.616,0.616,0.549,0,0.185 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0926 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.13 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.278 +0.667,0.162,0.162,0.1,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.127 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.133 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.139 +0.333,0.142,0.142,0.233,0,0,0,0.258,0.495,0.495,0,0,0.0463 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.188 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.439 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.389 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0915 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.321 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.139 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.49 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.121 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.142,0.142,0,0,0.383,0,0.258,0.495,0.495,0,0,0.126 +0.667,0.235,0.235,0,0,0.574,0.05,0.276,0.517,0.517,0,0.188,0.153 +0.667,0.236,0.236,0,0,0,1,0.282,0.533,0.533,0,0.501,0.292 +0.667,0.239,0.239,0.467,0,0,0.0667,0.325,0.549,0.549,0,0,0.254 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.277 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.509 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0926 +0.667,0.462,0.462,0.233,0,0,0,0.521,0.541,0.541,0,0,0.185 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0.307,0,0.231 +1,0.571,0.571,0,0.562,0,0,0.543,0.493,0.493,0.592,0,0.139 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0.0463 +1,0.124,0.124,0,0,0,0,0.368,0.431,0.431,0,0,0 +1,0.066,0.066,0,0,0,0,0.313,0.426,0.426,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0472 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.196 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0926 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.139 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.0926 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.353,0.353,0,0,0.638,0,0.488,0.641,0.641,0,0.184,0.278 +1,0.408,0.408,0.233,0,0,0.667,0.58,0.653,0.653,0,0,0.231 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.185 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.139 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.324 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.0768,0.0768,0.233,0,0,0,0.282,0.446,0.446,0,0,0.33 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.198 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.222 +0.333,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.156,0.156,0.1,0,0,0,0.242,0.487,0.487,0,0,0.0926 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.231 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0463 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0463 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.0926 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.252,0.252,0.233,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0.284,0,0.0926 +1,0.518,0.518,0,0.562,0,0,0.616,0.616,0.616,0.546,0,0.0463 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.278 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0849 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.209 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.13 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.204 +0.667,0.162,0.162,0.467,0,0,0,0.276,0.487,0.487,0,0,0.163 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.133 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.185 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0463 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.278 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0926 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.185 +0.333,0.143,0.143,0,0,0.0638,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0.233,0,0.574,0.05,0.291,0.507,0.507,0,0.266,0.0926 +0.667,0.252,0.252,0,0,0,0.617,0.411,0.582,0.582,0,0.415,0.185 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.61,0.139 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.139 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.272 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.457 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.179 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.148 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0.311 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.0536 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.0926 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.417 +0.333,0.153,0.153,0,0,0.0638,0,0.245,0.487,0.487,0,0,0.389 +0.333,0.147,0.147,0,0,0.894,0,0.248,0.491,0.491,0,0.239,0.139 +0.333,0.143,0.143,0,0,0,0.8,0.245,0.495,0.495,0,0.243,0 +0.667,0.142,0.142,0,0,0,0.1,0.258,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.37 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.139 +0.667,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +1,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.139 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.278 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.592 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.31 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.139 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.231 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.139 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.0926 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0.367,0,0,0,0.325,0.549,0.549,0,0,0.0926 +1,0.353,0.353,0.833,0,0,0,0.488,0.641,0.641,0.241,0,0.0463 +1,0.408,0.408,0,0.271,0.638,0,0.58,0.653,0.653,0.785,0.0994,0.0463 +1,0.518,0.518,0,0,0,0.667,0.616,0.616,0.616,0.684,0.773,0.463 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.592,0.527,0.324 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0.372,0.185 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.0934 +1,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.227 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.555 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.349 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.344 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0971 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.139 +0.333,0.143,0.143,0.467,0,0,0,0.27,0.499,0.499,0,0,0.417 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.139 +0.667,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.139 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.185 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.188 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.266 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0463 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.131 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0.233,0.0833,0,0,0.276,0.487,0.487,0.598,0,0 +1,0.263,0.263,0.233,0.479,0.319,0,0.227,0.508,0.508,0.582,0,0 +1,0.256,0.256,0,0,0,0.55,0.233,0.508,0.508,0.106,0.469,0 +1,0.343,0.343,0,0,0,0.35,0.23,0.542,0.542,0,0.636,0.0463 +1,0.331,0.331,0,0,0,0,0.221,0.555,0.555,0,0.15,0 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0.088 +1,0.327,0.327,0,0,0,0,0.285,0.542,0.542,0,0,0.0463 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.0463 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.0852 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.219 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.415 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.395 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.122 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.362 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.417 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.112 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0463 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0463 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.0463 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.278 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0463 +0.333,0.143,0.143,0.233,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.139 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.139 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.324 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.231 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.231 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0926 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.179 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.198 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.477 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0463 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.231 +0.333,0.142,0.142,0.367,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0.583,0,0,0,0.27,0.499,0.499,0,0,0.0463 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.185 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.139 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.37 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.185 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.132 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.115 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.261 +0.333,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.06 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.128 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.321 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.508 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0.638,0,0.258,0.465,0.465,0,0.0519,0 +0.333,0.143,0.143,0,0,0,0.8,0.27,0.499,0.499,0,0.577,0 +1,0.334,0.334,0,0,0,0.1,0.359,0.592,0.592,0,0.341,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0.138,0,0 +0.333,0.169,0.169,0.233,0.396,0,0,0.365,0.528,0.528,0.671,0,0 +0.667,0.362,0.362,0,0.167,0,0,0.497,0.566,0.566,0.445,0,0.539 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.212 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.139 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.361 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.162,0.162,0.367,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0.35,0,0,0,0.242,0.487,0.487,0,0,0.417 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.185 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0463 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.236,0.236,0.117,0,0,0,0.282,0.533,0.533,0,0,0.0463 +0.667,0.144,0.144,0.35,0,0,0,0.291,0.507,0.507,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.0463 +1,0.408,0.408,0.367,0,0,0,0.58,0.653,0.653,0,0,0.0926 +1,0.518,0.518,0.1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0926 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.748 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.118 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.274,0.274,0.583,0,0,0,0.294,0.508,0.508,0,0,0.328 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.141 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.16 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.389 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.303 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.379 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.481 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.258 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.557 +0.667,0.252,0.252,0.233,0,0,0,0.411,0.582,0.582,0,0,0.209 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.278 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0926 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.231 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.139 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.128 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.169 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.737 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0.702,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0.255,0.3,0.276,0.517,0.517,0,0.39,0.185 +1,0.329,0.329,0,0,0,0.15,0.294,0.567,0.567,0,0.426,0.463 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0.72,0.0463 +1,0.353,0.353,0.233,0,0,0,0.488,0.641,0.641,0,0.294,0.288 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0.941,0.433 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0.427,0.316 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0.601,0.144 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0.422,0.222 +1,0.571,0.571,0.233,0,0,0,0.543,0.493,0.493,0,0.827,0.12 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0.372,0.336 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.471 +0.667,0.143,0.143,0.467,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.142,0.142,0,0,0.638,0,0.267,0.491,0.491,0,0.162,0.231 +1,0.236,0.236,0.367,0,0,0.667,0.282,0.533,0.533,0,0.562,0.37 +1,0.334,0.334,0.1,0,0,0,0.359,0.592,0.592,0,0,0.315 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.457 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.364 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.348 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.819 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.216 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.179 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.124 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.221 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.133 +0.667,0.163,0.163,0.233,0,0,0,0.316,0.483,0.483,0,0,0.143 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.426 +0.333,0.153,0.153,0,0,0.957,0,0.245,0.487,0.487,0,0.16,0.0463 +0.333,0.147,0.147,0,0,0,0.55,0.248,0.491,0.491,0,0.623,0.0463 +0.333,0.143,0.143,0,0,0,0.35,0.245,0.495,0.495,0,0.62,0.0926 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.53,0.185 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0926 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.185 +0.667,0.239,0.239,0.467,0,0,0,0.325,0.549,0.549,0,0,0.0463 +1,0.353,0.353,0.233,0,0,0,0.488,0.641,0.641,0,0,0.278 +1,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.278 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.139 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.139 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.337 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.108 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.658 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0.241,0,0.273 +0.667,0.256,0.256,0,0.562,0.702,0,0.233,0.508,0.508,0.583,0,0.278 +0.667,0.245,0.245,0,0,0.255,0.3,0.239,0.517,0.517,0,0.714,0.0926 +0.667,0.237,0.237,0.367,0,0,0.367,0.233,0.525,0.525,0,0.766,0.0926 +0.667,0.235,0.235,0.1,0,0,0,0.258,0.525,0.525,0,0.286,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.227,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.611,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.625,0.139 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.0463 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.0926 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.185 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0463 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.105 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.475 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.696 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.201 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.216 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.581 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.518 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.231 +0.333,0.143,0.143,0.467,0,0,0,0.245,0.495,0.495,0,0,0.139 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0463 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.139 +0.333,0.151,0.151,0.117,0,0,0,0.334,0.524,0.524,0,0,0 +0.333,0.169,0.169,0.117,0,0,0,0.365,0.528,0.528,0,0,0.231 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0 +1,0.668,0.668,0,0,0.957,0,0.653,0.579,0.579,0,0.0653,0.0926 +1,0.788,0.788,0,0,0,0.55,0.635,0.555,0.555,0,0.0549,0.385 +1,0.223,0.223,0,0,0,0.35,0.353,0.475,0.475,0,0,0.253 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.126 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.273 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.417 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.142,0.142,0.317,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.231 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.37 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.179 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.14 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.105 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.124 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0776 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.186 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.226 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.165 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.291 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.277 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.231 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.142,0.142,0.367,0,0,0,0.267,0.491,0.491,0,0,0.139 +0.667,0.236,0.236,0.1,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.278 +0.667,0.252,0.252,0.367,0,0,0,0.411,0.582,0.582,0,0,0.0463 +1,0.408,0.408,0.1,0,0,0,0.58,0.653,0.653,0,0,0.0463 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.434 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.079 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.274,0.274,0.367,0,0,0,0.294,0.508,0.508,0,0,0.219 +1,0.37,0.37,0.1,0,0,0,0.212,0.53,0.53,0,0,0.112 +1,0.359,0.359,0,0,0,0,0.221,0.53,0.53,0,0,0.322 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0.156,0,0.262 +0.667,0.237,0.237,0,0.271,0,0,0.233,0.525,0.525,0.522,0,0.0926 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.231 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.0463 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.0926 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0926 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.0463 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.324 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.185 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0926 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.0926 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.186 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0.0463 +1,0.066,0.066,0,0,0,0,0.313,0.426,0.426,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.277,0.277,0.35,0,0,0,0.374,0.5,0.5,0.519,0,0 +1,0.387,0.387,0,0.562,0,0,0.313,0.53,0.53,0.355,0,0.249 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.307 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.32 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.315 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.398 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.203 +0.333,0.143,0.143,0.233,0,0,0,0.27,0.499,0.499,0,0,0.37 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.337 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.139 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0.289,0,0 +1,0.518,0.518,0,0.562,0,0,0.616,0.616,0.616,0.671,0,0.0463 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.582,0,0.448 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.469 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0463 +1,0.183,0.183,0,0.0833,0,0,0.393,0.451,0.451,0.583,0,0 +1,0.0743,0.0743,0,0.188,0,0,0.294,0.454,0.454,0.122,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.42 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.191 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.153 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0764 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.66 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.28 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.199 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.083 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.139 +0.333,0.143,0.143,0,0,0.0638,0,0.27,0.499,0.499,0,0,0.185 +0.667,0.239,0.239,0.117,0,0.894,0,0.325,0.549,0.549,0,0.297,0 +0.667,0.252,0.252,0.117,0,0,0.667,0.411,0.582,0.582,0,0.435,0.0926 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.435,0.0463 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0.654,0.231 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0.292,0.0926 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0.14,0.0463 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.219 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0.233,0,0,0,0.282,0.446,0.446,0,0,0.12 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.255 +1,0.39,0.39,0.617,0,0,0,0.432,0.518,0.518,0,0,0.134 +0.667,0.274,0.274,0.333,0,0,0,0.294,0.508,0.508,0,0,0.37 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.139 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0926 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0926 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.185 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0463 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0463 +0.333,0.143,0.143,0.117,0,0.702,0,0.27,0.499,0.499,0,0,0.185 +0.667,0.239,0.239,0.6,0,0.255,0.3,0.325,0.549,0.549,0,0.466,0.0926 +1,0.353,0.353,0,0,0,0.15,0.488,0.641,0.641,0,0,0.0463 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.0926 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.509 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.241 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.0173 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.55 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.658 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.171 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.37 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.247 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.0372 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0.367,0,0,0,0.27,0.499,0.499,0,0,0.0926 +0.667,0.239,0.239,0.35,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.185 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.247 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.0463 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.185 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.0926 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.305 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.157 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.268 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.267 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.107 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.262 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0.117,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.353,0.353,0.117,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.278 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.0926 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0463 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.175 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.112 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.412 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.105 +0.333,0.156,0.156,0.233,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0463 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.37 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.231 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.185 +0.333,0.151,0.151,0.467,0,0,0,0.334,0.524,0.524,0,0,0.0463 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.0463 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.278 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.578 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.231 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.364 +1,0.0743,0.0743,0.2,0,0,0,0.295,0.455,0.455,0,0,0.0962 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.319,0,0.258,0.465,0.465,0,0.0134,0 +1,0.139,0.139,0,0,0,0.917,0.305,0.463,0.463,0,0.418,0.139 +1,0.167,0.167,0.483,0,0,0,0.317,0.484,0.484,0,0.499,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0.427,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.472,0 +1,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0.907,0.0463 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0.496,0.0926 +0.667,0.251,0.251,0.283,0,0,0,0.234,0.528,0.528,0,0.602,0.0463 +0.667,0.249,0.249,0.2,0,0,0,0.259,0.528,0.528,0,0.0601,0.0463 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.185 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0926 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.417 +1,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.607,0,0.324 +0.667,0.454,0.454,0,0.583,0.915,0,0.5,0.569,0.569,0,0.0475,0.0926 +0.667,0.554,0.554,0,0,0.0426,0.45,0.525,0.544,0.544,0,0.172,0.406 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.0463 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.437 +1,0.183,0.183,0.0333,0,0,0,0.395,0.453,0.453,0,0,0.0846 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.249 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.387 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.0959 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0.12,0,0 +1,0.381,0.381,0,0.583,0,0,0.222,0.534,0.534,0.813,0,0.556 +1,0.364,0.364,0,0,0.319,0,0.232,0.546,0.546,0.233,0,0.0463 +1,0.352,0.352,0,0,0,0.683,0.222,0.559,0.559,0,0.512,0.139 +1,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.746,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.717,0.0926 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.389,0.0463 +0.333,0.154,0.154,0.233,0,0,0,0.292,0.509,0.509,0,0.699,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.231 +0.667,0.351,0.351,0,0,0.277,0,0.475,0.594,0.594,0,0,0.0463 +0.667,0.454,0.454,0,0,0.0426,0.467,0.5,0.569,0.569,0,0.316,0.139 +0.667,0.554,0.554,0.233,0,0,0.45,0.525,0.544,0.544,0,0.218,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.162 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0893 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.225 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.0635 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.225 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.328 +0.667,0.286,0.286,0.483,0,0,0,0.413,0.585,0.585,0,0,0.405 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.139 +0.667,0.454,0.454,0,0.0833,0,0,0.5,0.569,0.569,0.533,0,0 +1,0.806,0.806,0,0.208,0,0,0.658,0.583,0.583,0.144,0,0.329 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.409 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.26 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.341 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.301 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.151 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.14 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.139 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0463 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.246 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.271 +0,0.0495,0.0495,0,0,0.383,0,0.258,0.465,0.465,0,0,0.343 +0,0.0495,0.0495,0,0,0.255,0.3,0.258,0.465,0.465,0,0.45,0.139 +0.667,0.286,0.286,0,0,0,0.85,0.413,0.585,0.585,0,0.383,0.231 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.62,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0.475,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.53,0.185 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0.445,0.214 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.723,0.138 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0.401,0.185 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0.699,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0.81,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0.636,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0.705,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.22 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0.201,0,0 +0.333,0.16,0.16,0,0.292,0,0,0.246,0.488,0.488,0.413,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.185 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.139 +0.333,0.15,0.15,0.117,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0.117,0,0,0,0.292,0.509,0.509,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0.0754,0,0.231 +1,0.501,0.501,0,0.396,0.0638,0,0.584,0.658,0.658,0.381,0,0.37 +1,0.656,0.656,0,0.188,0.255,0.3,0.621,0.621,0.621,0,0.197,0.139 +0.667,0.554,0.554,0,0,0,0.383,0.525,0.544,0.544,0.133,0.0979,0.491 +1,0.584,0.584,0,0.292,0,0,0.512,0.528,0.528,0.727,0,0.184 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0.761,0,0.231 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0.0905,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.179 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.0926 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.139 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.185 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0463 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0463 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.278 +0.333,0.168,0.168,0.117,0,0,0,0.336,0.525,0.525,0,0,0.754 +0.667,0.351,0.351,0.367,0,0,0,0.475,0.594,0.594,0,0,0.0463 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.278 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.209 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.506 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0764 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.112 +1,0.317,0.317,0,0,0,0,0.398,0.459,0.459,0,0,0.635 +1,0.402,0.402,0,0,0.702,0,0.436,0.521,0.521,0,0,0.137 +0.667,0.286,0.286,0,0,0.255,0.3,0.296,0.511,0.511,0.589,0.555,0 +0.333,0.164,0.164,0,0.875,0,0.617,0.243,0.488,0.488,0.666,0,0.0463 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.555 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0463 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.185 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.189 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.278 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0.215,0,0.139 +0.667,0.286,0.286,0,0.396,0,0,0.413,0.585,0.585,0.522,0,0.0463 +0.667,0.351,0.351,0,0.479,0,0,0.475,0.594,0.594,0.627,0,0.439 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0.111,0,0.231 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.313 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0463 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.259,0.259,0,0,0.638,0,0.24,0.519,0.519,0,0.214,0.185 +0.667,0.251,0.251,0,0,0,0.45,0.234,0.528,0.528,0,0.454,0.324 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0.463,0 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.54,0.185 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.326,0.267 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.558,0.231 +0.333,0.168,0.168,0.233,0,0,0,0.336,0.525,0.525,0,0.51,0.324 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0.184,0.0463 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.0926 +1,0.584,0.584,0,0,0.277,0,0.512,0.528,0.528,0,0,0.503 +1,0.391,0.391,0,0,0.362,0.217,0.45,0.486,0.486,0,0.353,0.0463 +1,0.116,0.116,0,0,0,0.467,0.326,0.459,0.459,0,0.234,0.231 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0.0564,0.139 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.283,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0.433,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.154,0.154,0.233,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.139 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +1,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.0926 +1,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.417 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.139 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.185 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.47 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.424 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.251 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.357 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0.123,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0849 +1,0.0511,0.0511,0.233,0,0,0,0.29,0.42,0.42,0,0,0.188 +1,0.107,0.107,0.117,0,0,0,0.308,0.428,0.428,0,0,0.224 +0.667,0.139,0.139,1,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.167,0.167,1,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0.0463 +0.333,0.0495,0.0495,0.983,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.185 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0926 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0926 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0463 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.139 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.231 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.0926 +1,0.501,0.501,0.233,0,0,0,0.584,0.658,0.658,0,0,0.139 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.0926 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0.135,0,0.0463 +1,0.584,0.584,0,0.396,0,0,0.512,0.528,0.528,0.512,0,0.266 +1,0.391,0.391,0,0.188,0,0,0.45,0.486,0.486,0,0,0.202 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0.233,0,0,0,0.283,0.447,0.447,0,0,0.177 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.224 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.325 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.105 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0943 +1,0.404,0.404,0,0,0.0638,0,0.491,0.646,0.646,0.145,0,0 +0.667,0.351,0.351,0,0.583,0.255,0.3,0.475,0.594,0.594,0,0.372,0 +0.667,0.454,0.454,0,0,0,0.15,0.5,0.569,0.569,0,0.455,0 +0.667,0.554,0.554,0.867,0,0,0,0.525,0.544,0.544,0,0.553,0.139 +1,0.584,0.584,0.333,0,0,0,0.512,0.528,0.528,0,0.102,0.458 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.442 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.25 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0993 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.187 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.705 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.0922 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.0926 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.126 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.16 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.194 +0.667,0.351,0.351,0.367,0,0,0,0.475,0.594,0.594,0,0,0.0463 +0.667,0.454,0.454,0.35,0,0,0,0.5,0.569,0.569,0,0,0.0926 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.278 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.139 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.328 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.164 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.114 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.562 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.202 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.39 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0926 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.509 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.139 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.445 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.0926 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.143 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.117 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.113 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.231 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.184 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.178 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0.152,0,0 +0.333,0.15,0.15,0,0.292,0,0,0.246,0.496,0.496,0.431,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0926 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.185 +0.667,0.251,0.251,0.233,0,0,0,0.284,0.536,0.536,0,0,0.0926 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0463 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.139 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.0926 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.322 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.0946 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.206 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.167,0.167,0.283,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.284 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.172 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0.117,0,0.268 +0.667,0.249,0.249,0,0.604,0,0,0.259,0.528,0.528,0.7,0,0.0463 +0.667,0.249,0.249,0,0.271,0.277,0,0.277,0.519,0.519,0,0,0.0463 +0.667,0.251,0.251,0,0,0.362,0.217,0.284,0.536,0.536,0.226,0.347,0.0463 +1,0.363,0.363,0,0.292,0,0.7,0.361,0.596,0.596,0.607,0.372,0.0463 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0.576,0,0.367 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.0463 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.139 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.0463 +1,0.391,0.391,0,0,0.915,0,0.45,0.486,0.486,0,0.0208,0.274 +1,0.116,0.116,0,0,0.0426,0.05,0.326,0.459,0.459,0,0,0.0814 +1,0.0495,0.0495,0,0,0,0.217,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.311 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.105 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.257 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.284 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0463 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.186 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0.551,0,0.278 +0.667,0.351,0.351,0,0.583,0,0,0.475,0.594,0.594,0.785,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0.542,0,0.0926 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0.557,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0.65,0,0.0463 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0.594,0,0.185 +1,0.249,0.249,0,0,0,0.417,0.463,0.447,0.447,0,0,0.157 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.109 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.139 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.182 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.3 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.491 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.475 +0.333,0.154,0.154,0.233,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0926 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0.0463 +0.667,0.251,0.251,0.117,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0.117,0,0,0,0.327,0.552,0.552,0,0,0 +1,0.404,0.404,0.117,0,0,0,0.491,0.646,0.646,0,0,0.435 +1,0.501,0.501,0.117,0,0,0,0.584,0.658,0.658,0,0,0.36 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.297 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.231 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.504 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.133 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.259,0.259,0.483,0,0.319,0.05,0.327,0.552,0.552,0,0.0208,0.139 +1,0.404,0.404,0,0,0,0.867,0.491,0.646,0.646,0,0.84,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.499,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0.168,0.417 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.324 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.185 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.066,0.066,0,0,0,0,0.314,0.428,0.428,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0.957,0,0.283,0.447,0.447,0,0.0341,0 +1,0.228,0.228,0,0,0,0.55,0.352,0.461,0.461,0,0.455,0.139 +1,0.284,0.284,0,0,0,0.133,0.376,0.503,0.503,0,0.226,0.0842 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.467 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.314 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.197 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.324 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.231 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0463 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.286,0.286,0.233,0,0,0,0.413,0.585,0.585,0,0,0.0463 +0.667,0.351,0.351,0,0.0833,0,0,0.475,0.594,0.594,0.627,0,0.648 +1,0.656,0.656,0,0.5,0,0,0.621,0.621,0.621,0.442,0,0.193 +1,0.806,0.806,0,0.292,0,0,0.658,0.583,0.583,0.223,0,0.152 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.372 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0952 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.36 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.139 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0463 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.231 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0463 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.185 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.154,0.154,0.717,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.0926 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0.4,0,0.0926 +1,0.656,0.656,0,0.583,0,0,0.621,0.621,0.621,0.118,0,0.0926 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.139 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.295 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.114 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.284,0.284,0.367,0,0,0,0.376,0.503,0.503,0,0,0 +0.333,0.168,0.168,0.35,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0463 +0.333,0.149,0.149,0,0,0.0638,0,0.258,0.496,0.496,0,0,0.0926 +0.333,0.149,0.149,0,0,0.574,0.05,0.268,0.492,0.492,0,0.214,0.139 +0.667,0.251,0.251,0,0,0,0.867,0.284,0.536,0.536,0,0.543,0.0926 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.549,0.139 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.496,0.0926 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.291,0.384,0.0926 +0.667,0.454,0.454,0,0.583,0,0,0.5,0.569,0.569,0.348,0.0504,0 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0463 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.0926 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.444 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.185 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.199 +1,0.167,0.167,0.783,0,0,0,0.317,0.484,0.484,0.472,0,0.124 +1,0.286,0.286,0.667,0.583,0,0,0.296,0.511,0.511,0.348,0,0.132 +1,0.392,0.392,0.0333,0,0,0,0.213,0.534,0.534,0,0,0 +0.667,0.27,0.27,0.2,0,0,0,0.234,0.511,0.511,0,0,0 +1,0.364,0.364,0.233,0,0,0,0.232,0.546,0.546,0,0,0.139 +1,0.352,0.352,0,0,0,0,0.222,0.559,0.559,0,0,0 +1,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +1,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +1,0.351,0.351,0.283,0,0,0,0.297,0.571,0.571,0,0,0.0926 +1,0.363,0.363,0.433,0,0,0,0.361,0.596,0.596,0,0,0.139 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.139 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.139 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0463 +1,0.806,0.806,0,0,0.638,0,0.658,0.583,0.583,0,0.2,0.0926 +1,0.851,0.851,0,0,0,0.917,0.639,0.559,0.559,0,0.531,0.278 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0.675,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0.227,0.118 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.083 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.139 +0.333,0.16,0.16,0.0333,0,0,0,0.246,0.488,0.488,0,0,0.324 +0.333,0.154,0.154,0.933,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0.957,0,0.259,0.528,0.528,0,0.223,0 +1,0.349,0.349,0,0,0,0.717,0.287,0.546,0.546,0,0.26,0 +1,0.351,0.351,0,0,0,0.2,0.297,0.571,0.571,0,0,0.0463 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.324 +0.667,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.185 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.139 +0.667,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.0463 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.139 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.139 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.626 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.101 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.506 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0.21 +1,0.228,0.228,0.233,0,0,0,0.352,0.461,0.461,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.168,0.168,0.233,0,0,0,0.277,0.488,0.488,0,0,0.0926 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.139 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.0463 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0463 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0.142,0,0.0463 +0.333,0.149,0.149,0,0.292,0,0,0.268,0.492,0.492,0.75,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.259,0.259,0.367,0,0,0,0.327,0.552,0.552,0,0,0.139 +0.667,0.286,0.286,0.117,0,0,0,0.413,0.585,0.585,0,0,0.702 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.225 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.102 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.0463 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.231 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0924 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.0956 +0.667,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.219 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0.233,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0.483,0.0833,0,0,0.292,0.509,0.509,0.641,0,0.0926 +0.667,0.286,0.286,0,0.5,0,0,0.413,0.585,0.585,0,0,0.185 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.185 +1,0.656,0.656,0.717,0,0,0,0.621,0.621,0.621,0,0,0.0463 +1,0.806,0.806,0,0,0.638,0,0.658,0.583,0.583,0,0,0.17 +1,0.851,0.851,0,0,0,0.55,0.639,0.559,0.559,0,0.671,0.139 +1,0.391,0.391,0,0,0,0.133,0.45,0.486,0.486,0,0.111,0.213 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.378 +1,0.228,0.228,0.117,0,0,0,0.352,0.461,0.461,0,0,0.155 +0.667,0.167,0.167,0.117,0,0,0,0.317,0.484,0.484,0,0,0.153 +0.333,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.139 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0463 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.0463 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.37 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.417 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.139 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.324 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0503,0.0503,0.85,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.113 +0.667,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.306 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.466 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.149,0.149,0.233,0,0.638,0,0.268,0.492,0.492,0,0.154,0 +0.667,0.251,0.251,0.117,0,0,0.683,0.284,0.536,0.536,0,0.0467,0 +1,0.363,0.363,0.117,0,0,0,0.361,0.596,0.596,0,0,0 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.185 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.0463 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.0926 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0926 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.146 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0676 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.112 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0.181,0,0.227 +1,0.139,0.139,0,0.396,0.638,0,0.305,0.463,0.463,0.619,0,0.115 +0.667,0.284,0.284,0.233,0.188,0,0.55,0.376,0.503,0.503,0.153,0.393,0.0463 +0.333,0.168,0.168,0,0.292,0,0.133,0.277,0.488,0.488,0.673,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.463 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0926 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0926 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.669 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.278 +0.667,0.249,0.249,0.233,0,0,0,0.277,0.519,0.519,0,0,0.0926 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.353 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.157 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.517 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.0463 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.515 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.26 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.397,0,0.102 +1,0.168,0.168,0,0.292,0,0,0.277,0.488,0.488,0.118,0,0.142 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0926 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0,0 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0,0.616 +1,0.351,0.351,0.233,0,0,0,0.297,0.571,0.571,0,0,0.447 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.139 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.0926 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.185 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.139 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.278 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.139 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.378 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0.717,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0926 +0.667,0.259,0.259,0.283,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.15,0.15,0.917,0,0,0,0.246,0.496,0.496,0,0,0.278 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.231 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.278 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.328 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.331 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0.573,0,0.0926 +1,0.656,0.656,0,0.292,0,0,0.621,0.621,0.621,0.113,0,0.252 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.348 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.0463 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0.367,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0.133,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.169 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.659 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.0926 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.139 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.37 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.12 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.38 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.375 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.161 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.399 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0932 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.316 +0.667,0.172,0.172,0.25,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.35,0.35,0.367,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.655,0.655,0.383,0,0,0,0.699,0.788,0.788,0,0,0.185 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.231 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0926 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.185 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.34 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.134 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.225 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.157 +1,0.427,0.427,0,0,0,0,0.377,0.639,0.639,0,0,0.376 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0463 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.428 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.484 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.486 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0463 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0.124,0,0.0926 +1,0.655,0.655,0,0.396,0,0,0.699,0.788,0.788,0.68,0,0.324 +1,0.829,0.829,0,0.208,0,0,0.743,0.743,0.743,0,0,0.0463 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.463 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.222 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0.883,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0.389 +1,0.295,0.295,0.133,0,0,0,0.433,0.571,0.571,0,0,0.114 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.105 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.284 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.123 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.27 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.183 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0926 +0.667,0.35,0.35,0.25,0,0,0,0.478,0.67,0.67,0,0,0.0926 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.0463 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.0463 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.463 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0463 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.0594 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.199 +0.667,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.267 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.088 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.324 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0926 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.417 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.294,0.294,0.25,0,0,0,0.374,0.631,0.631,0,0,0.0463 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.278 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.0926 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.185 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0463 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.129 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.301,0.301,0.133,0,0,0,0.337,0.581,0.581,0,0,0.27 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.188 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.139 +1,0.378,0.378,0,0,0,0,0.311,0.669,0.669,0,0,0.278 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0463 +0.667,0.274,0.274,0.367,0,0,0,0.323,0.611,0.611,0,0,0.231 +1,0.417,0.417,0.133,0,0,0,0.433,0.713,0.713,0,0,0.0463 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.185 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0463 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.463 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.231 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.143 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.261 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0943 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.32 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.187 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.555 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.185 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.139 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.0463 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0.366,0,0.224 +1,0.655,0.655,0,0.917,0,0,0.699,0.788,0.788,0.129,0,0.354 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.468 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.4 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.0926 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.474 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.258 +1,0.0798,0.0798,0.25,0,0,0,0.305,0.474,0.474,0,0,0.129 +1,0.33,0.33,0,0,0,0,0.477,0.55,0.55,0,0,0.184 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.347 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.526 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.324 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.694 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0926 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0.332,0,0 +0.333,0.2,0.2,0.25,0.604,0,0,0.368,0.568,0.568,0.321,0,0 +0.667,0.453,0.453,0,0,0.0638,0,0.552,0.68,0.68,0,0,0 +0.667,0.569,0.569,0,0,0.532,0.0833,0.581,0.65,0.65,0,0.3,0.231 +1,0.905,0.905,0,0,0,0.617,0.788,0.698,0.698,0,0.652,0.0463 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.561 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.38 +1,0.249,0.249,0,0,0,0,0.555,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +1,0.295,0.295,0.367,0,0,0,0.433,0.571,0.571,0,0,0.459 +0.667,0.301,0.301,0.383,0,0,0,0.337,0.581,0.581,0,0,0.412 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0926 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0926 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.139 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.441 +0.667,0.294,0.294,0.617,0,0,0,0.374,0.631,0.631,0,0,0.163 +1,0.501,0.501,0.133,0,0,0,0.588,0.773,0.773,0,0,0.271 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.305,0,0 +0.667,0.569,0.569,0,0.292,0,0,0.581,0.65,0.65,0.257,0,0.185 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.417 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.145 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.0463 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.196 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.319 +0.667,0.172,0.172,0.367,0,0,0,0.346,0.518,0.518,0,0,0.136 +0.667,0.301,0.301,0.133,0,0,0,0.337,0.581,0.581,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0463 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0926 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0463 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0463 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.0463 +0.667,0.2,0.2,0,0,0.298,0.0667,0.368,0.568,0.568,0,0.111,0.0463 +1,0.453,0.453,0,0,0,1,0.552,0.68,0.68,0,0.493,0 +1,0.569,0.569,0,0,0,0.117,0.581,0.65,0.65,0,0.539,0.648 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.107,0.785 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.396 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.208 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.179 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0.478,0,0 +0.667,0.301,0.301,0,0.292,0,0,0.337,0.581,0.581,0.598,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.602 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.139 +0.667,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.37 +0.667,0.2,0.2,0.117,0,0,0,0.368,0.568,0.568,0,0,0.0463 +0.667,0.251,0.251,0.383,0,0,0,0.405,0.573,0.573,0,0,0.0463 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.192 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.452 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.139 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.486 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.109 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.413 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.362 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.138 +0.333,0.172,0.172,0.25,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.278 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.324 +1,0.829,0.829,0,0,0.894,0,0.743,0.743,0.743,0,0.0475,0.185 +1,0.62,0.62,0,0,0,0.6,0.611,0.621,0.621,0,0.479,0.0463 +1,0.564,0.564,0,0,0,0.35,0.596,0.601,0.601,0,0,0.185 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.322 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.136 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.181 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.293 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.158 +1,0.279,0.279,0.367,0,0,0,0.271,0.591,0.591,0,0,0.0698 +1,0.271,0.271,0.25,0,0,0,0.263,0.601,0.601,0,0,0.213 +0.667,0.159,0.159,0.133,0,0,0,0.275,0.533,0.533,0,0,0.185 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.139 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.06 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.287 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.417 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.324 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.231 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.397 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.139 +1,0.356,0.356,0.5,0,0,0,0.522,0.551,0.551,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0 +1,0.066,0.066,0,0,0,0,0.36,0.482,0.482,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.36,0.472,0.472,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.352,0.462,0.462,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.189 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.418 +0.667,0.291,0.291,0,0,0.596,0,0.263,0.581,0.581,0,0.102,0 +0.667,0.164,0.164,0,0,0,0.833,0.264,0.528,0.528,0,0.742,0 +0.667,0.16,0.16,0,0,0,1,0.261,0.533,0.533,0,0.601,0.0463 +0.667,0.159,0.159,0.25,0,0,0.0667,0.275,0.533,0.533,0,0.00445,0.0926 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.185 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.139 +0.667,0.172,0.172,0,0,0.0638,0,0.316,0.548,0.548,0,0,0 +0.667,0.2,0.2,0,0,0.532,0.0833,0.368,0.568,0.568,0,0.5,0 +0.667,0.453,0.453,0,0,0,0.617,0.552,0.68,0.68,0,0.444,0.463 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0.576,0.139 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.402,0.228 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.577,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0.675,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0.507,0.0314 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0.111,0.244 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.351 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.259 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0541 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0761 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.163 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0.367,0,0,0,0.478,0.67,0.67,0,0,0 +1,0.655,0.655,0.383,0,0,0,0.699,0.788,0.788,0,0,0.231 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.231 +1,0.905,0.905,0,0.0833,0,0,0.788,0.698,0.698,0.506,0,0.0463 +1,0.821,0.821,0,0.208,0,0,0.765,0.669,0.669,0.794,0,0.0463 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0.253,0,0.0463 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0902 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0.117,0,0,0,0.305,0.474,0.474,0,0,0.633 +1,0.236,0.236,0.133,0,0,0,0.404,0.522,0.522,0,0,0 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.278 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0985 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.072 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0463 +0.333,0.172,0.172,0.117,0,0,0,0.316,0.548,0.548,0,0,0.0926 +0.667,0.35,0.35,0.383,0,0,0,0.478,0.67,0.67,0,0,0.0926 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.417 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.375 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.163 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.176,0,0.4 +1,0.203,0.203,0,0.292,0,0,0.39,0.508,0.508,0.761,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0.101,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.345 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.071 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.469 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.376 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.135 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.255 +0.667,0.271,0.271,0,0,0.0638,0,0.263,0.601,0.601,0,0,0.25 +0.667,0.269,0.269,0,0,0.532,0.0833,0.293,0.601,0.601,0,0.454,0.189 +0.667,0.269,0.269,0,0,0,1,0.315,0.591,0.591,0,0.562,0.137 +1,0.387,0.387,0.617,0,0,0.1,0.355,0.684,0.684,0,0.461,0.0926 +0.667,0.294,0.294,0.133,0,0,0,0.374,0.631,0.631,0,0,0.0926 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0.196,0,0.417 +1,0.829,0.829,0,0.396,0,0,0.743,0.743,0.743,0.851,0,0.139 +1,0.905,0.905,0,0.521,0,0,0.788,0.698,0.698,0.541,0,0.0463 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.0727,0,0.244 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.159 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0.33 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.231 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.349 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0463 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0926 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.224 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.287 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.274,0.274,0.367,0,0,0,0.323,0.611,0.611,0,0,0.0926 +0.333,0.172,0.172,0.133,0,0,0,0.316,0.548,0.548,0,0,0.139 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.278 +0.667,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.712 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0926 +0.667,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.324 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.207 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.401 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.262 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.342 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.271 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.923 +0.333,0.164,0.164,0,0,0.894,0,0.264,0.528,0.528,0,0.12,0.447 +0.333,0.16,0.16,0.75,0,0,0.6,0.261,0.533,0.533,0,0.424,0 +0.667,0.269,0.269,0,0,0,0.35,0.293,0.601,0.601,0,0.671,0.0926 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.596,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0.531,0.0463 +1,0.417,0.417,0.25,0,0,0,0.433,0.713,0.713,0,0.568,0.0463 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0.455,0.0463 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0.309,0.231 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0926 +1,0.564,0.564,0,0.0833,0,0,0.596,0.601,0.601,0.654,0,0.324 +1,0.203,0.203,0,0.833,0,0,0.39,0.508,0.508,0,0,0.102 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.43 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.25,0,0.83,0,0.258,0.465,0.465,0,0.26,0 +1,0.382,0.382,0.25,0,0,0.7,0.266,0.669,0.669,0,0.337,0 +1,0.378,0.378,0,0,0,0,0.311,0.669,0.669,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0.117,0,0,0,0.323,0.611,0.611,0,0,0.231 +0.667,0.294,0.294,0.133,0,0,0,0.374,0.631,0.631,0,0,0.0926 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.324 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.231 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0926 +0.667,0.62,0.62,0.25,0,0,0,0.611,0.621,0.621,0,0,0.185 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.0463 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.417 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.566 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.204 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.463 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.0926 +0.667,0.269,0.269,0.25,0,0,0,0.293,0.601,0.601,0,0,0 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0,0.278 +1,0.387,0.387,0,0,0,0,0.355,0.684,0.684,0,0,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0.122,0,0.0463 +1,0.655,0.655,0,0.396,0,0,0.699,0.788,0.788,0.366,0,0.231 +1,0.829,0.829,0,0.521,0,0,0.743,0.743,0.743,0,0,0.0463 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0463 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.231 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0974 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.178 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.317 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.196 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.155 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0827 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0463 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.139 +1,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.231 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0926 +1,0.564,0.564,0,0,0.298,0.0667,0.596,0.601,0.601,0,0.0861,0.35 +1,0.203,0.203,0,0,0,0.633,0.39,0.508,0.508,0,0.338,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.465 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0.133,0,0,0,0.331,0.493,0.493,0,0,0.0726 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0.25,0,0,0,0.261,0.523,0.523,0,0,0.278 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.463 +0.333,0.162,0.162,0.25,0,0,0,0.29,0.538,0.538,0,0,0.0463 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0463 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.231 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.47 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.139 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.139 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.477 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.192 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.219 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.223 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0.75,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0.291,0,0 +1,0.569,0.569,0,0.708,0,0,0.581,0.65,0.65,0.307,0,0 +1,0.335,0.335,0,0.208,0,0,0.434,0.543,0.543,0,0,0.417 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.266 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.509 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.271 +1,0.417,0.417,0.5,0,0,0,0.521,0.624,0.624,0.443,0,0.314 +1,0.427,0.427,0,0.604,0,0,0.377,0.639,0.639,0.101,0,0.325 +0.667,0.299,0.299,0.117,0,0,0,0.256,0.581,0.581,0,0,0.727 +0.667,0.291,0.291,0.133,0,0,0,0.263,0.581,0.581,0,0,0.443 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.116 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0.117,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0.133,0,0,0,0.316,0.548,0.548,0,0,0.185 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.0926 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.139 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.139 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0463 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.251 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.152 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.624 +0.667,0.236,0.236,0.25,0,0,0,0.404,0.522,0.522,0,0,0.223 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.291 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.231 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.278 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.278 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.294,0.294,0.75,0,0,0,0.374,0.631,0.631,0,0,0.138 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.139 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.234 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.243 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.519 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0.0638,0,0.346,0.518,0.518,0,0,0 +1,0.175,0.175,0.867,0,0.532,0.0833,0.298,0.523,0.523,0,0.205,0 +1,0.424,0.424,0.383,0,0,0.383,0.255,0.639,0.639,0,0.423,0.283 +1,0.411,0.411,0,0,0,0,0.266,0.639,0.639,0,0.705,0.121 +1,0.394,0.394,0,0,0,0,0.277,0.654,0.654,0,0.102,0.0463 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.0926 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0,0 +1,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.139 +1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0.397,0,0.278 +0.667,0.453,0.453,0.117,0.604,0,0,0.552,0.68,0.68,0.72,0,0.278 +0.667,0.569,0.569,0.883,0,0,0,0.581,0.65,0.65,0.673,0,0.185 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.524,0,0.406 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.689,0,0.185 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0.618,0,0.0463 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0.634,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.358 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.344 +1,0.411,0.411,0,0,0,0,0.266,0.639,0.639,0,0,0.136 +1,0.394,0.394,0,0,0,0,0.277,0.654,0.654,0,0,0.127 +1,0.382,0.382,0,0,0,0,0.266,0.669,0.669,0,0,0.32 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.0463 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0463 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.37 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.139 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.231 +0.667,0.453,0.453,0.25,0,0,0,0.552,0.68,0.68,0.172,0,0.278 +1,0.829,0.829,0,0.292,0,0,0.743,0.743,0.743,0.746,0,0.185 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.383,0,0.185 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0.515,0,0.231 +1,0.51,0.51,0,0.604,0,0,0.654,0.594,0.594,0.662,0,0.139 +1,0.249,0.249,0,0,0,0,0.555,0.535,0.535,0,0,0.17 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.335 +1,0.236,0.236,0.25,0,0,0,0.404,0.522,0.522,0,0,0.228 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.2,0.2,0.867,0,0.0638,0,0.368,0.568,0.568,0,0,0.278 +1,0.655,0.655,0.133,0,0.83,0,0.699,0.788,0.788,0,0.214,0.0926 +1,0.829,0.829,0,0,0,0.85,0.743,0.743,0.743,0,0.252,0.0926 +1,0.62,0.62,0,0,0,1,0.611,0.621,0.621,0,0,0 +1,0.307,0.307,0,0,0,0.05,0.427,0.533,0.533,0,0,0.231 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.0758 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.194 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.43 +1,0.295,0.295,0.367,0,0,0,0.433,0.571,0.571,0,0,0.19 +0.667,0.301,0.301,0.133,0,0,0,0.337,0.581,0.581,0,0,0.454 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.383 +0.667,0.291,0.291,0.25,0,0,0,0.263,0.581,0.581,0,0,0.281 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.231 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0926 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0463 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0.413,0,0.0926 +1,0.501,0.501,0,0.604,0,0,0.588,0.773,0.773,0.0969,0,0.139 +1,0.655,0.655,0.5,0,0,0,0.699,0.788,0.788,0,0,0.0463 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.231 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0463 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.24 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.462 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.3 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.139 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0926 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0926 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0926 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.371 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.677 +0.667,0.35,0.35,0,0,0.298,0.0667,0.478,0.67,0.67,0,0.0223,0.321 +1,0.655,0.655,0,0,0,0.883,0.699,0.788,0.788,0,0.255,0.231 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0.608,0.417 +0.667,0.62,0.62,0.367,0,0,0,0.611,0.621,0.621,0,0.461,0.0463 +1,0.821,0.821,0.633,0,0,0,0.765,0.669,0.669,0,0.239,0.0463 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0.532,0,0.305,0.473,0.473,0,0,0.123 +0.667,0.147,0.147,0,0,0.0638,0.45,0.33,0.493,0.493,0,0.591,0.174 +0.333,0.177,0.177,0.233,0,0,0.583,0.345,0.518,0.518,0,0.102,0.0926 +0.333,0.184,0.184,0.0333,0,0,0,0.297,0.523,0.523,0,0,0.0463 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.139 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.0463 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0463 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0926 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +1,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.587 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.392 +0.667,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0.18 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.304 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.54 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0.267,0,0,0,0.33,0.493,0.493,0,0,0.0704 +0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0463 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.231 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0.817,0,0,0,0.316,0.547,0.547,0,0,0.139 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.231 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.0463 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.37 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.0926 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.243 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0171 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.139 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.185,0.185,0,0,0.383,0,0.257,0.523,0.523,0,0,0 +0.667,0.312,0.312,0,0,0.213,0.333,0.263,0.58,0.58,0,0.411,0 +0.333,0.175,0.175,0.117,0,0,0.95,0.264,0.528,0.528,0,0.32,0.185 +0.333,0.171,0.171,0.15,0,0,0,0.26,0.532,0.532,0,0.436,0.139 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.453,0.0463 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.577,0.0463 +0.667,0.338,0.338,0.367,0,0,0,0.322,0.609,0.609,0,0.426,0.231 +0.667,0.425,0.425,0.167,0,0,0,0.373,0.629,0.629,0,0.132,0.0463 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.189 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.493 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0463 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0.224,0,0 +1,0.345,0.345,0,0.646,0,0,0.521,0.55,0.55,0.341,0,0.0463 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.817,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0.402,0,0.102 +1,0.321,0.321,0,0.646,0,0,0.255,0.58,0.58,0.255,0,0.108 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.346 +1,0.426,0.426,0.267,0,0,0,0.276,0.652,0.652,0,0,0.208 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0.652 +1,0.409,0.409,0,0,0,0,0.31,0.667,0.667,0,0,0.244 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.417 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +1,0.612,0.612,0.267,0,0,0,0.431,0.711,0.711,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.37 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.224 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.0926 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0463 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.134 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.139 +1,0.249,0.249,0,0,0,0,0.553,0.533,0.533,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.187 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.24 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.381 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.0186 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0463 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.139 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.16 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.689 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.422 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.203 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.0463 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0896 +1,0.245,0.245,0.483,0,0,0,0.403,0.521,0.521,0,0,0.0726 +1,0.305,0.305,0.05,0,0,0,0.432,0.57,0.57,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.173,0.173,0.05,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0463 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.324 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.231 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.185 +1,0.747,0.747,0,0,0.298,0,0.785,0.696,0.696,0,0,0.45 +1,0.566,0.566,0,0,0,0.683,0.763,0.667,0.667,0,0.593,0.185 +1,0.0495,0.0495,0,0,0,0.0833,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.109 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.203 +0.333,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.176 +0.333,0.147,0.147,0.267,0,0,0,0.33,0.493,0.493,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0.145,0,0.185 +0,0.0495,0.0495,0,0.542,0,0,0.258,0.465,0.465,0.729,0,0 +0.333,0.171,0.171,0,0.104,0,0,0.26,0.532,0.532,0,0,0.0463 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0463 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0463 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.278 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.231 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.0926 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.401 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.308 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.213,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0.383,0.2,0.305,0.473,0.473,0,0.269,0.0949 +0.667,0.245,0.245,0,0,0,0.833,0.403,0.521,0.521,0,0.129,0.166 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.0531 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.185 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.416 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.362 +1,0.804,0.804,0,0,0.894,0,0.586,0.77,0.77,0,0.316,0.0926 +0.667,0.647,0.647,0,0,0,0.717,0.55,0.679,0.679,0,0.893,0.278 +1,0.919,0.919,0,0,0,0.317,0.741,0.741,0.741,0,0.647,0.139 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0.414,0.463 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.305 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.116 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0.345,0,0 +0.333,0.185,0.185,0,0.646,0,0,0.257,0.523,0.523,0.399,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.139 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.278 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0463 +0.333,0.173,0.173,0.533,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.338,0.338,0.533,0,0,0,0.322,0.609,0.609,0,0,0.0926 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.0463 +1,0.553,0.553,0.233,0,0,0,0.477,0.669,0.669,0,0,0.154 +1,0.946,0.946,0.0333,0.229,0.851,0,0.697,0.785,0.785,0.436,0,0.28 +1,0.919,0.919,0,0.417,0.0426,0.467,0.741,0.741,0.741,0,0.251,0.194 +1,0.515,0.515,0,0,0,0.567,0.609,0.619,0.619,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.509 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0.367,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0.333,0.171,0.171,0.167,0,0,0,0.26,0.532,0.532,0,0,0.0463 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.139 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.185 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.0463 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.139 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.417 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.0463 +0.667,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.384 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.278 +0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.44 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.253 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0463 +0.333,0.169,0.169,0,0,0.0638,0,0.275,0.532,0.532,0,0,0.0926 +0.667,0.297,0.297,0,0,0.83,0,0.314,0.59,0.59,0,0.141,0.0463 +0.667,0.338,0.338,0.533,0,0,0.25,0.322,0.609,0.609,0,0.466,0.0463 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.527,0.324 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0.141,0.37 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.0463 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.19 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.242 +0.667,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.149 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.505 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.0349 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0978 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0931 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.617 +0.333,0.184,0.184,0.733,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0.35,0,0,0,0.257,0.523,0.523,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,0.533,0,0.213,0,0.373,0.629,0.629,0,0,0 +1,0.804,0.804,0,0,0.383,0.2,0.586,0.77,0.77,0,0.239,0.0926 +1,0.946,0.946,0,0,0,0.567,0.697,0.785,0.785,0,0,0.278 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0.591,0,0.185 +1,0.747,0.747,0,0.646,0,0,0.785,0.696,0.696,0,0,0.293 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.539 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.151 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.369 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.212 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0815 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.406 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.39 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0.259,0,0.101 +0.333,0.169,0.169,0,0.646,0,0,0.275,0.532,0.532,0.706,0,0.173 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.154 +0.333,0.194,0.194,0.85,0,0,0,0.29,0.537,0.537,0,0,0.285 +0.333,0.237,0.237,0.267,0,0,0,0.316,0.547,0.547,0,0,0.0463 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0926 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.185 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.185 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.0463 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.417 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.141 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.099 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101 +1,0.245,0.245,0.267,0,0,0,0.403,0.521,0.521,0,0,0.149 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.173 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.567 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.211 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.164 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.392 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0.533,0,0,0,0.29,0.537,0.537,0,0,0.0926 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.0463 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.0926 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.231 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0463 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.242 +0.667,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.0852 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.284 +0.667,0.321,0.321,0,0,0.213,0,0.255,0.58,0.58,0,0,0.186 +0.667,0.312,0.312,0,0,0.681,0,0.263,0.58,0.58,0,0.329,0.228 +0.667,0.3,0.3,0,0,0,0.967,0.27,0.59,0.59,0,0.368,0 +0.667,0.292,0.292,0,0,0,0.317,0.263,0.6,0.6,0,0.53,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0.57,0.278 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.539,0.0463 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0.479,0.0463 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.488,0.139 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0.636,0.387 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0.696,0.421 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0.76,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0.504,0.0926 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0.748,0.0926 +0.333,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0.573,0.139 +0.667,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0.504,0.0463 +0.667,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0.27,0.391 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.693 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0.167 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0.172 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.114 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.395 +1,0.245,0.245,0.817,0,0,0,0.403,0.521,0.521,0,0,0.423 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.493 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.378 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.112 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0.353,0,0.324 +0.333,0.175,0.175,0,0.312,0,0,0.264,0.528,0.528,0.724,0,0.324 +0.333,0.171,0.171,0.233,0,0,0,0.26,0.532,0.532,0.37,0,0.0463 +0.333,0.169,0.169,0.0333,0,0,0,0.275,0.532,0.532,0,0,0.0926 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.185 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.0463 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +1,0.804,0.804,0,0,0.894,0,0.586,0.77,0.77,0,0.102,0.21 +0.667,0.647,0.647,0,0,0,0.517,0.55,0.679,0.679,0,0.366,0.237 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0.847,0.607 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0.509,0.325 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0.675,0.203 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0.277,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0.877,0.185 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0.577,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.257 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0183 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.169 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.108 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.382 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0926 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.139 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.185 +0.333,0.237,0.237,0.267,0,0,0,0.316,0.547,0.547,0,0,0.0926 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.185 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.185 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0.422,0,0.324 +0.667,0.515,0.515,0,0.646,0,0,0.609,0.619,0.619,0.86,0,0.0943 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0.646,0,0.118 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0.553,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0.321,0.171,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0.679,0,0.185 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0.521,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0.366,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0.0638,0,0.258,0.465,0.465,0,0,0.185 +1,0.147,0.147,0,0,0.532,0.0833,0.33,0.493,0.493,0,0.402,0 +1,0.177,0.177,0,0,0,0.95,0.345,0.518,0.518,0,0.184,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0.377,0 +1,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.3 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.273 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.225 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0.442,0,0.768 +0.333,0.169,0.169,0,0.979,0,0,0.275,0.532,0.532,0.305,0,0.0751 +1,0.421,0.421,0,0,0,0,0.343,0.652,0.652,0,0,0.188 +1,0.482,0.482,0.267,0,0,0,0.354,0.681,0.681,0,0,0.186 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.251 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.0463 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.582 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.521 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.139 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.231 +1,0.493,0.493,0,0.0833,0,0,0.652,0.593,0.593,0.546,0,0 +1,0.183,0.183,0,0.229,0,0,0.455,0.511,0.511,0.582,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0974 +1,0.0525,0.0525,0,0,0,0,0.329,0.471,0.471,0,0,0.332 +0.667,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.113 +0.667,0.245,0.245,0,0,0.532,0,0.403,0.521,0.521,0,0,0.207 +0.667,0.305,0.305,0,0,0.0638,0.45,0.432,0.57,0.57,0,0.0979,0 +0.333,0.184,0.184,0,0,0,0.317,0.297,0.523,0.523,0,0,0.0463 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.169,0.169,0,0,0.596,0,0.275,0.532,0.532,0,0.0979,0 +0.333,0.173,0.173,0,0,0,0.95,0.286,0.528,0.528,0,0.476,0 +0.333,0.194,0.194,0,0,0.213,0.0833,0.29,0.537,0.537,0,0.5,0 +0.333,0.237,0.237,0,0,0.681,0,0.316,0.547,0.547,0,0.0861,0.0463 +1,0.804,0.804,0,0,0,0.767,0.586,0.77,0.77,0,0.227,0.315 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.324 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.139 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.159 +1,0.566,0.566,0.267,0,0,0,0.763,0.667,0.667,0,0,0.414 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.102 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.103 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0.311,0,0.63 +0.667,0.305,0.305,0.983,0.312,0,0,0.432,0.57,0.57,0.795,0,0 +0.667,0.318,0.318,0.1,0,0,0,0.337,0.58,0.58,0.682,0,0.0926 +0.333,0.185,0.185,0.733,0,0,0,0.257,0.523,0.523,0.197,0,0.139 +0.333,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0.0926 +0.333,0.175,0.175,0.183,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0.483,0,0,0,0.29,0.537,0.537,0,0,0.0463 +0.667,0.425,0.425,0.333,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0.183,0,0 +1,0.946,0.946,0,0.312,0,0,0.697,0.785,0.785,0.727,0,0.324 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.0926 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0926 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0.189,0,0.432 +1,0.345,0.345,0,0.312,0,0,0.521,0.55,0.55,0.68,0,0.357 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.106 +1,0.051,0.051,0.3,0,0,0,0.293,0.468,0.468,0,0,0.0354 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.181 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.175 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.341 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.504 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.312 +0.333,0.181,0.181,0.267,0,0,0,0.26,0.523,0.523,0,0,0.0809 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0926 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.139 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0463 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.139 +0.667,0.425,0.425,0.483,0,0,0,0.373,0.629,0.629,0,0,0.139 +0.667,0.553,0.553,0.333,0,0,0,0.477,0.669,0.669,0,0,0.0926 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.0463 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.185 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.387 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.157 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.261 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.19 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.366 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0.346,0,0.385 +0.667,0.177,0.177,0,0.312,0,0,0.345,0.518,0.518,0.359,0,0.159 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.401 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.187 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.387 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.418 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.172 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.139 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.194,0.194,0.483,0,0,0,0.29,0.537,0.537,0,0,0.139 +0.667,0.425,0.425,0.05,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.278 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0.147,0,0.147 +1,0.919,0.919,0,0.312,0,0,0.741,0.741,0.741,0.443,0,0.339 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.0463 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0817 +1,0.0495,0.0495,0.267,0,0,0,0.305,0.463,0.463,0,0,0.0926 +1,0.0525,0.0525,0,0,0,0,0.329,0.471,0.471,0,0,0 +1,0.146,0.146,0,0,0,0,0.398,0.489,0.489,0.366,0,0 +0.667,0.245,0.245,0,0.646,0,0,0.403,0.521,0.521,0.18,0,0 +0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.426 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0463 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.0463 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.231 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.139 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0463 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.23 +0.667,0.425,0.425,0.483,0,0,0,0.373,0.629,0.629,0,0,0.426 +0.667,0.553,0.553,0.05,0,0,0,0.477,0.669,0.669,0,0,0.553 +0.667,0.647,0.647,0.233,0,0,0,0.55,0.679,0.679,0,0,0.0463 +0.333,0.339,0.339,0.3,0,0,0,0.419,0.557,0.557,0,0,0.0463 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.154 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.143 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.176 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0463 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.667,0.425,0.425,0.267,0,0,0,0.373,0.629,0.629,0,0,0.346 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.0978 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.139 +0.667,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0.278 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.278 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.0463 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.231 +0.667,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0926 +0.667,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0874 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0.409,0,0.518 +0.667,0.3,0.3,0,0.646,0,0,0.27,0.59,0.59,0.522,0,0.0808 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0.526,0,0.338 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.197 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.135 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0463 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.278 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.417 +1,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.139 +1,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0.147,0,0.0463 +1,0.747,0.747,0,0.312,0,0,0.785,0.696,0.696,0.553,0,0.139 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0.583,0,0 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0.598,0,0 +1,0.249,0.249,0,0,0,0,0.553,0.533,0.533,0.303,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0.585,0,0.0463 +1,0.066,0.066,0,0,0,0,0.359,0.481,0.481,0.637,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0.704,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.164 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0.619,0,0 +0.667,0.318,0.318,0,0.312,0,0,0.337,0.58,0.58,0.381,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0463 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.185 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.139 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.185 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.0463 +0.333,0.173,0.173,0.533,0,0,0,0.286,0.528,0.528,0,0,0.185 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.0926 +0.333,0.301,0.301,0.533,0,0,0,0.367,0.567,0.567,0,0,0.141 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.0463 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.0463 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.0926 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.117,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.222 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.0406 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.0463 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.37 +0.333,0.173,0.173,0,0,0.532,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0.362,0.217,0.29,0.537,0.537,0,0.393,0.324 +0.667,0.425,0.425,0,0,0,0.817,0.373,0.629,0.629,0,0.577,0.139 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.844,0.0463 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0.668,0.231 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0.368,0.0463 +1,0.747,0.747,0,0,0.596,0,0.785,0.696,0.696,0,0,0.401 +1,0.566,0.566,0,0,0,0.517,0.763,0.667,0.667,0,0.522,0.338 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0.708,0.194 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.0751 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.118 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.196 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.477 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.127 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0.494 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.185 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.178 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.374 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0463 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0463 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.278 +0.667,0.553,0.553,0.267,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.185 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.0926 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.0926 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0.404,0,0.139 +1,0.197,0.197,0,0.646,0,0,0.389,0.508,0.508,0.332,0,0.108 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.114,0.114,0,0,0,0,0.351,0.481,0.481,0,0,0.0714 +0.667,0.147,0.147,0.533,0,0,0,0.33,0.493,0.493,0,0,0.0987 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.129 +0.667,0.318,0.318,0,0,0.532,0,0.337,0.58,0.58,0,0,0.545 +0.667,0.321,0.321,0,0,0.362,0.217,0.255,0.58,0.58,0,0.561,0.254 +0.667,0.312,0.312,0,0,0,0.55,0.263,0.58,0.58,0,0.364,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.466,0.0463 +0.667,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0.289,0.0463 +0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.185 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.185 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0.391,0,0.0463 +0.667,0.553,0.553,0,0.312,0,0,0.477,0.669,0.669,0.273,0,0.231 +0.333,0.348,0.348,0.267,0,0,0,0.404,0.572,0.572,0,0,0.405 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.465 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.242 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.083 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.184,0.184,0.267,0,0,0,0.297,0.523,0.523,0,0,0.0463 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.0926 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0.251,0,0 +0.667,0.425,0.425,0,0.312,0,0,0.373,0.629,0.629,0.596,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.185 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.231 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.332 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.201 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.204 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.185 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0926 +0.667,0.314,0.314,0.367,0,0,0,0.375,0.705,0.705,0,0,0.0463 +1,0.513,0.513,0.183,0,0,0,0.447,0.862,0.862,0,0,0.139 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0.128 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.662 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.444 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.417 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.185 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.0926 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.203 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.105 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0.55,0,0,0,0.372,0.541,0.541,0,0,0.115 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0.154,0,0 +1,0.337,0.337,0,0.333,0,0,0.3,0.692,0.692,0.557,0,0.106 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0.619,0,0.278 +1,0.316,0.316,0,0,0.383,0,0.319,0.705,0.705,0.425,0,0.516 +1,0.307,0.307,0,0,0.234,0.317,0.31,0.717,0.717,0,0.312,0.202 +0.667,0.305,0.305,0,0,0,0.5,0.347,0.717,0.717,0,0.613,0.139 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0.703,0.139 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0.124,0.693,0 +0.667,0.457,0.457,0,0.333,0,0,0.449,0.755,0.755,0.402,0.402,0.324 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0.408,0.231 +0.333,0.366,0.366,0.117,0,0,0,0.465,0.641,0.641,0,0.457,0.37 +0.333,0.344,0.344,0.433,0,0,0,0.484,0.622,0.622,0,0,0.0926 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0926 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.0926 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0.404,0,0.174 +1,0.183,0.183,0,0.667,0,0,0.552,0.605,0.605,0.706,0,0.112 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0.522,0,0.185 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0.142 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.089 +0.667,0.251,0.251,0.467,0,0,0,0.487,0.617,0.617,0,0,0.381 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.23 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0927 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0849 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.128 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.146 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.333,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0.0926 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.247 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.509 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.226 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.143 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.323 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.186 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.608 +0.333,0.178,0.178,0.55,0,0,0,0.284,0.591,0.591,0,0,0.0926 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0926 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.255 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0.25,0,0.269 +1,0.869,0.869,0.117,0.667,0,0,0.741,0.974,0.974,0.619,0,0.342 +1,1,1,0.717,0.667,0,0,0.881,0.993,0.993,0.492,0,0.503 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0.205,0,0.228 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0679 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0926 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0.267,0,0,0,0.391,0.572,0.572,0,0,0.243 +0.667,0.33,0.33,0,0.0833,0,0,0.403,0.692,0.692,0.6,0,0.214 +0.667,0.337,0.337,0,0.25,0,0,0.3,0.692,0.692,0.56,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0.779,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0.269,0,0.231 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.185 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0463 +0.667,0.596,0.596,0.267,0,0,0,0.58,0.805,0.805,0,0,0.116 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.0463 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0.102,0,0.417 +1,0.554,0.554,0.117,0.333,0.617,0,0.965,0.843,0.843,0.294,0.196,0.3 +1,0.488,0.488,0.433,0,0,0.817,0.825,0.749,0.749,0,0,0.0463 +1,0.183,0.183,0,0,0,0.283,0.552,0.605,0.605,0,0,0.0463 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.256 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.181 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.497 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.139 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.403 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.0993 +1,1,1,0.55,0,0,0,0.881,0.993,0.993,0,0,0.258 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.307 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0926 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.0463 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.24 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0846 +1,0.251,0.251,0.467,0,0,0,0.487,0.617,0.617,0,0,0.128 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.284 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.196 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.394 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.33 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.201 +0.333,0.177,0.177,0.267,0,0,0,0.302,0.591,0.591,0,0,0.1 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.387 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.287 +0.667,0.253,0.253,0.117,0.0833,0,0,0.354,0.61,0.61,0.618,0,0.144 +1,0.596,0.596,0.15,0.583,0,0,0.58,0.805,0.805,0.767,0,0.253 +1,1,1,0,0,0,0,0.881,0.993,0.993,0.732,0,0.463 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0.185,0,0.277 +1,0.732,0.732,0,0,0.383,0,0.993,0.88,0.88,0,0,0.0463 +1,0.554,0.554,0,0,0.234,0.317,0.965,0.843,0.843,0,0.0475,0 +1,0.342,0.342,0,0,0,0.5,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.115 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.139 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.356 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.375 +1,0.661,0.661,0.117,0.0833,0,0,0.545,0.899,0.899,0.6,0,0.0926 +1,0.596,0.596,0.15,0.25,0,0,0.58,0.805,0.805,0.47,0,0.0463 +1,1,1,0,0.333,0,0,0.881,0.993,0.993,0.655,0,0.231 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.185 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0926 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.501 +1,0.342,0.342,0.267,0,0,0,0.636,0.655,0.655,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.33,0.33,0.467,0,0,0,0.403,0.692,0.692,0,0,0.104 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0.617,0,0.31,0.717,0.717,0,0.184,0 +0.667,0.305,0.305,0,0,0,0.817,0.347,0.717,0.717,0,0.76,0.324 +0.667,0.314,0.314,0.55,0,0,0,0.375,0.705,0.705,0,0.415,0.0463 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.2,0.139 +0.333,0.253,0.253,0.117,0,0,0,0.354,0.61,0.61,0,0,0.185 +0.667,0.596,0.596,0.417,0,0,0,0.58,0.805,0.805,0,0,0.278 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.185 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.0926 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.501 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.151 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.169 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.634 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.345 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0.267,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.258 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0926 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.185 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.278 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0926 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.185 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.139 +0.667,0.457,0.457,0.55,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0.285,0,0.0926 +0.667,0.683,0.683,0,0.333,0,0,0.673,0.817,0.817,0.546,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.777,0,0.278 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0926 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.231 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.476 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.147,0,0.104 +1,0.251,0.251,0,0.396,0,0,0.487,0.617,0.617,0.765,0,0.505 +0.667,0.181,0.181,0,0.271,0,0,0.391,0.572,0.572,0.637,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0.275,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0926 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.231 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.139 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.231 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0926 +0.333,0.323,0.323,0,0.0833,0,0,0.419,0.635,0.635,0.689,0,0.324 +1,1,1,0,0.583,0,0,0.881,0.993,0.993,0.698,0,0.139 +1,0.933,0.933,0.117,0,0,0,0.937,0.937,0.937,0.472,0,0.324 +1,0.732,0.732,0.15,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.196 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.32 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.514 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.457 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.193 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.87 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.518 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.374 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.457,0.457,0.117,0,0,0,0.449,0.755,0.755,0,0,0.231 +0.667,0.596,0.596,0.15,0,0,0,0.58,0.805,0.805,0,0,0.207 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0463 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.231 +1,0.732,0.732,0,0,0.936,0,0.993,0.88,0.88,0,0.107,0 +1,0.554,0.554,0,0,0,0.567,0.965,0.843,0.843,0,0.318,0.0926 +1,0.196,0.196,0,0,0,0.25,0.447,0.56,0.56,0,0,0.0926 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.506 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.141 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.538 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.196 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0852 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.187 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.278 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.324 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0926 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0926 +0.667,0.638,0.638,0.267,0,0,0,0.711,0.78,0.78,0.397,0,0.231 +1,0.732,0.732,0,0.333,0,0,0.993,0.88,0.88,0.718,0,0.398 +1,0.554,0.554,0,0.708,0,0,0.965,0.843,0.843,0.343,0,0.53 +1,0.0495,0.0495,0,0.312,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.494 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.401 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.0805 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.139 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0926 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0463 +0.333,0.178,0.178,0.367,0,0,0,0.284,0.591,0.591,0,0,0.0463 +0.333,0.177,0.177,1,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0.0333,0,0,0,0.316,0.585,0.585,0,0,0.0463 +0.667,0.359,0.359,0.867,0,0,0,0.384,0.73,0.73,0.433,0,0.0463 +0.667,0.457,0.457,0.25,0.667,0,0,0.449,0.755,0.755,0.639,0,0.231 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0.682,0,0.417 +1,1,1,0,0,0,0,0.881,0.993,0.993,0.492,0,0.509 +1,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.779,0,0.494 +1,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0.207 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.185 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.129 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.345 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.2 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.0463 +0.667,0.314,0.314,0,0.0833,0,0,0.375,0.705,0.705,0.417,0,0.185 +0.667,0.359,0.359,0,0.25,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.185 +1,1,1,0,0,0,0,0.881,0.993,0.993,0.316,0,0.231 +1,0.933,0.933,0,0.333,0,0,0.937,0.937,0.937,0.0898,0,0.185 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.324 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.185 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0463 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.278 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0984 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.278 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0463 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.494 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.116 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.869,0.869,0.867,0,0,0,0.741,0.974,0.974,0,0,0 +1,1,1,0.533,0,0,0,0.881,0.993,0.993,0,0,0.0926 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.479 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.296 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.337 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0.267,0,0,0,0.34,0.516,0.516,0,0,0.546 +0.667,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.187 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.321 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.272 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.336 +0.333,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.183,0.183,0.467,0,0,0,0.288,0.585,0.585,0,0,0 +1,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.278 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.139 +0.667,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0.418,0,0.231 +1,1,1,0,0.667,0,0,0.881,0.993,0.993,0.575,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0.643,0,0.324 +1,0.732,0.732,0.367,0,0,0,0.993,0.88,0.88,0.809,0,0.185 +1,0.386,0.386,0.183,0,0,0,0.729,0.717,0.717,0,0,0.227 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.111 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.421 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.128 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.19,0.19,0,0,0.702,0,0.33,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0.234,0.317,0.279,0.579,0.579,0,0.522,0.278 +0.667,0.189,0.189,0,0,0,0.5,0.284,0.579,0.579,0,0.62,0.185 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0.444,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0.656,0 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0.552,0.139 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.282,0.194 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.218,0.232 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.381,0.463 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0.595,0.0926 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0.448,0 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0.647,0.417 +0.667,0.277,0.277,0,0,0,0,0.503,0.604,0.604,0,0.473,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0.264,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.143 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.147 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.116 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0.183,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.237 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.247 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.0938 +1,0.47,0.47,0,0,0.702,0,0.475,0.806,0.806,0,0,0.484 +0.667,0.337,0.337,0,0,0.234,0.317,0.3,0.692,0.692,0,0.681,0.385 +0.667,0.328,0.328,0,0,0,0.5,0.31,0.692,0.692,0,0.496,0.0648 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.398,0.0463 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0926 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.314,0.314,0,0.0833,0,0,0.375,0.705,0.705,0.636,0,0.0463 +0.667,0.359,0.359,0,0.25,0,0,0.384,0.73,0.73,0.244,0,0 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0.544 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.139 +1,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.4 +0.667,0.344,0.344,0.867,0,0,0,0.484,0.622,0.622,0,0,0.139 +1,0.277,0.277,0.25,0,0,0,0.503,0.604,0.604,0,0,0.0926 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.251,0.251,0,0.0833,0,0,0.487,0.617,0.617,0.496,0,0.306 +0.667,0.181,0.181,0,0.938,0,0,0.391,0.572,0.572,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.185 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0463 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0463 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0.366,0,0.139 +0.667,0.457,0.457,0,0.667,0,0,0.449,0.755,0.755,0.576,0,0.278 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0.239,0,0.0463 +0.667,0.683,0.683,0,0.667,0,0,0.673,0.817,0.817,0.329,0,0.0463 +0.667,0.638,0.638,0,0,0.298,0.0667,0.711,0.78,0.78,0,0.089,0.0463 +1,0.732,0.732,0,0,0,0.75,0.993,0.88,0.88,0,0.561,0.0463 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0.479,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.257 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.172 +1,0.251,0.251,0.367,0,0,0,0.487,0.617,0.617,0,0,0.27 +0.667,0.181,0.181,0.183,0,0,0,0.391,0.572,0.572,0,0,0.169 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.193,0.193,0,0,0.298,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0.567,0.284,0.579,0.579,0,0.488,0.0463 +0.333,0.183,0.183,0,0,0,0.533,0.288,0.585,0.585,0,0.145,0.324 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.185 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0926 +0.667,0.314,0.314,0,0,0.617,0,0.375,0.705,0.705,0,0,0.0926 +0.667,0.359,0.359,0,0,0,0.567,0.384,0.73,0.73,0,0.659,0 +0.667,0.457,0.457,0.267,0,0,0.817,0.449,0.755,0.755,0,0.329,0.139 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0.642,0.0463 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0.0861,0.763 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.0751 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.488 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0.442,0,0.541 +1,0.342,0.342,0,0.333,0,0,0.636,0.655,0.655,0.144,0,0.278 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.101 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.139 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0926 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.185 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.231 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.0926 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.413 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0.111,0,0.185 +0.667,0.504,0.504,0,0.396,0,0,0.748,0.742,0.742,0.451,0,0.231 +0.667,0.386,0.386,0,0.271,0,0,0.729,0.717,0.717,0,0,0.449 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.219 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.137 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +1,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.332 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.584 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.0463 +0.667,0.457,0.457,0.867,0,0,0,0.449,0.755,0.755,0,0,0.0926 +1,0.869,0.869,0.25,0,0,0,0.741,0.974,0.974,0,0,0.231 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.231 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0463 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.378 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.138 +1,0.351,0.351,0.267,0,0,0,0.601,0.693,0.693,0,0,0.956 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.338 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.393 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.153 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.395 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.667,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.169 +0.667,0.366,0.366,0.367,0,0,0,0.465,0.641,0.641,0,0,0.0748 +1,0.638,0.638,0.467,0,0,0,0.711,0.78,0.78,0,0,0.402 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0463 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.37 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.278 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0.267,0,0,0,0.326,0.51,0.51,0,0,0.322 +1,0.15,0.15,0,0,0,0,0.503,0.618,0.618,0.133,0,0 +1,0.351,0.351,0,0.333,0,0,0.601,0.693,0.693,0.494,0,0.129 +0.667,0.313,0.313,0,0,0.298,0.0667,0.524,0.68,0.68,0.402,0.107,0 +0.333,0.19,0.19,0,0,0,0.75,0.33,0.579,0.579,0,0.559,0.0926 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.0463 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0463 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.278 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0926 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0.255,0,0.0463 +1,0.661,0.661,0,0.333,0,0,0.545,0.899,0.899,0.167,0,0 +1,0.869,0.869,0.267,0,0,0,0.741,0.974,0.974,0,0,0.0926 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.139 +1,0.933,0.933,0.55,0,0,0,0.937,0.937,0.937,0,0,0.185 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.128 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.139 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0463 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0824 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.361 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.0463 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.139 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.185 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.278 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.139 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.0926 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.157 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.366,0.366,0.867,0,0,0,0.465,0.641,0.641,0,0,0 +0.667,0.638,0.638,0.25,0,0,0,0.711,0.78,0.78,0,0,0.37 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.139 +0.333,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.288 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.25 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.34 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0.117,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.351,0.351,0.433,0,0,0,0.601,0.693,0.693,0,0,0.317 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.109 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.134 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.324 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.324 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.0463 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.341 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.463 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.173 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.103 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.345 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.602 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0463 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0.185,0,0.0926 +0.333,0.182,0.182,0,0.396,0,0,0.316,0.585,0.585,0.408,0,0.0463 +0.333,0.204,0.204,0,0.271,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0.367,0,0,0,0.354,0.61,0.61,0,0,0.0463 +0.333,0.323,0.323,0.183,0,0,0,0.419,0.635,0.635,0,0,0.0463 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0.231 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.0926 +0.667,0.504,0.504,0,0.0833,0,0,0.748,0.742,0.742,0.601,0,0.185 +1,0.218,0.218,0,0.583,0,0,0.493,0.591,0.591,0,0,0.18 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.808 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.179 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.108 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.867,0,0,0,0.258,0.465,0.465,0,0,0.0463 +1,0.307,0.307,0.533,0,0,0,0.31,0.717,0.717,0,0,0 +1,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.0924 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0.312,0,0.231 +0.667,0.457,0.457,0,0.667,0,0,0.449,0.755,0.755,0.7,0,0.231 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.278 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.0926 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0463 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.463 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.231 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.157 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0.454,0,0.0802 +0.667,0.19,0.19,0.267,0.667,0,0,0.33,0.579,0.579,0.212,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.417 +1,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +1,0.436,0.436,0,0,0,0,0.336,0.843,0.843,0,0,0.159 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.0463 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0926 +1,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +1,0.457,0.457,0.367,0,0,0,0.449,0.755,0.755,0,0,0.0926 +1,0.869,0.869,0.467,0,0.936,0,0.741,0.974,0.974,0,0.142,0.324 +1,1,1,0,0,0,0.567,0.881,0.993,0.993,0,0.663,0.0926 +0.667,0.638,0.638,0,0,0,0.533,0.711,0.78,0.78,0,0.43,0.139 +0.667,0.504,0.504,0,0.0833,0,0,0.748,0.742,0.742,0.363,0.433,0 +0.667,0.386,0.386,0,0.583,0,0,0.729,0.717,0.717,0,0.0608,0.37 +0.667,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.0926 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0926 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0949 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.253 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.193,0.193,0.75,0,0,0,0.279,0.579,0.579,0,0,0.0463 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.185 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.139 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0926 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.139 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.139 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0926 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.278 +1,1,1,0,0,0,0,0.881,0.993,0.993,0.28,0,0.231 +1,0.933,0.933,0,0.667,0,0,0.937,0.937,0.937,0.415,0,0.251 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.375 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.439 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.142 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_4.csv b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_4.csv new file mode 100644 index 00000000..48692ee8 --- /dev/null +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_4.csv @@ -0,0 +1,8761 @@ +occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.257 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.123 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.0907 +0.667,0.322,0.322,0,0.25,0,0,0.319,0.705,0.705,0.15,0,0.136 +0.667,0.313,0.313,0,0.55,0,0,0.31,0.717,0.717,0.591,0,0.227 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0.568,0,0.0453 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0.566,0,0.0907 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.175 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.188 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.449 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.272 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.0453 +0.667,0.565,0.565,0.0167,0.75,0,0,0.748,0.742,0.742,0.497,0,0.181 +0.667,0.43,0.43,1,0.05,0,0,0.729,0.717,0.717,0,0,0.229 +1,0.536,0.536,0.267,0,0,0,0.825,0.749,0.749,0,0,0.168 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.18 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.132 +1,0.253,0.253,0.0167,0,0,0,0.487,0.617,0.617,0,0,0.2 +1,0.316,0.316,0.75,0,0,0,0.524,0.68,0.68,0,0,0.35 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0926 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.205 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.283 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.181 +0.333,0.181,0.181,0,0.8,0,0,0.284,0.591,0.591,0.894,0,0.0907 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0.599,0,0.0907 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0.211,0,0.0453 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.453 +0.667,0.548,0.548,0.267,0,0,0,0.58,0.805,0.805,0,0,0.181 +0.333,0.359,0.359,0.5,0,0,0,0.465,0.641,0.641,0,0,0.0907 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.136 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.181 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0936 +0.667,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.181 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0.25,0,0,0.258,0.465,0.465,0.141,0,0 +1,0.183,0.183,0,0.283,0,0,0.391,0.572,0.572,0.404,0,0 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.136 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0907 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0907 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.136 +0.667,0.548,0.548,0.767,0,0,0,0.58,0.805,0.805,0,0,0.181 +0.333,0.359,0.359,0.25,0,0,0,0.465,0.641,0.641,0,0,0.136 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.0907 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.151 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.263 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0453 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.251 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.12 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.272 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.227 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.0453 +0.667,0.182,0.182,0.0167,0,0,0,0.316,0.585,0.585,0,0,0.272 +0.667,0.196,0.196,0.5,0,0,0,0.321,0.597,0.597,0,0,0.0907 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.318 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0752 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.193 +1,0.823,0.823,0,0.533,0,0,0.993,0.88,0.88,0.498,0,0.0907 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0.535,0,0.136 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0453 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.272 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0453 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.334,0.334,0.767,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.0907 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.227 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.0453 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.801 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.174 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.571 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.152 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.57 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.183,0.183,0.517,0,0.483,0.833,0.391,0.572,0.572,0,0.181,0 +1,0.334,0.334,0,0,0,0.25,0.403,0.692,0.692,0,0.315,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.363 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0453 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.0453 +0.333,0.18,0.18,0.25,0,0,0,0.302,0.591,0.591,0,0,0.0453 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.0907 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.0453 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.0907 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.272 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.149 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.181 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.187 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0453 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.272 +1,0.151,0.151,0.433,0,0,0,0.372,0.541,0.541,0,0,0.227 +0.667,0.183,0.183,0.0833,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.181 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0.122 +0.667,0.334,0.334,0,0.8,0,0,0.31,0.692,0.692,0.587,0,0.288 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0.153,0,0.111 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0907 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.322 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.166 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.0453 +0.333,0.234,0.234,0,0.417,0.483,0.583,0.354,0.61,0.61,0.272,0.108,0 +0.667,0.548,0.548,0.183,0.117,0,0.233,0.58,0.805,0.805,0.659,0.421,0.136 +1,0.979,0.979,0.0667,0,0,0,0.881,0.993,0.993,0.848,0,0.453 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0.186,0,0.129 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.353 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0453 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0453 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0614 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.155 +1,0.477,0.477,0.233,0,0,0,0.475,0.806,0.806,0,0,0.108 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.363 +0.667,0.311,0.311,0.517,0,0,0,0.347,0.717,0.717,0,0,0.0453 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.0453 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.408 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.136 +0.667,0.548,0.548,0,0.533,0.483,0.417,0.58,0.805,0.805,0.415,0.0669,0.179 +0.667,0.669,0.669,0,0,0,1,0.673,0.817,0.817,0,0.359,0.311 +1,0.991,0.991,0,0,0,0.483,0.937,0.937,0.937,0,0.277,0.0907 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.718,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.0453 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.143 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.174 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.652 +0.333,0.186,0.186,0.25,0,0,0,0.288,0.585,0.585,0,0,0.536 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0697 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0,0.136 +1,0.602,0.602,0,0.5,0,0,0.545,0.899,0.899,0.26,0,0.0907 +0.667,0.548,0.548,0.25,1,0,0,0.58,0.805,0.805,0.314,0,0.181 +1,0.979,0.979,0,0.117,0,0,0.881,0.993,0.993,0,0,0.272 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.0907 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.181 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.377 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0.0167,0,0,0,0.34,0.516,0.516,0,0,0.112 +1,0.355,0.355,0.233,0,0,0,0.601,0.693,0.693,0,0,0.146 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.271 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.365 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.545 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.333 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.156 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.116 +0.333,0.18,0.18,0.0167,0,0,0,0.302,0.591,0.591,0,0,0.157 +0.667,0.315,0.315,1,0.25,0,0,0.375,0.705,0.705,0.106,0,0 +0.333,0.196,0.196,1,0.283,0,0,0.321,0.597,0.597,0.674,0,0.0453 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0.685,0,0 +0.667,0.548,0.548,1,0,0,0,0.58,0.805,0.805,0.676,0,0.0907 +0.333,0.359,0.359,0.65,0,0,0,0.465,0.641,0.641,0.686,0,0.181 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0.699,0,0.0907 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0.378,0,0.249 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.136 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0907 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.181 +0.667,0.313,0.313,0.25,0,0,0,0.31,0.717,0.717,0,0,0.227 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.0453 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.317 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.227 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.136 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0,0.272 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.259 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.15 +1,0.823,0.823,0.0167,0,0,0,0.993,0.88,0.88,0,0,0.0907 +1,0.621,0.621,0.233,0,0,0,0.965,0.843,0.843,0,0,0.127 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0907 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.128 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.325 +1,0.316,0.316,0.767,0,0,0,0.524,0.68,0.68,0,0,0.327 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.238 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.0453 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.181 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0453 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.0453 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.0907 +0.667,0.315,0.315,0,0,0.483,0.667,0.375,0.705,0.705,0,0.207,0.0453 +0.667,0.343,0.343,0,0,0,0.417,0.384,0.73,0.73,0,0.205,0.181 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.457,0 +0.667,0.548,0.548,0.517,0,0,0,0.58,0.805,0.805,0,0.286,0.0453 +0.667,0.669,0.669,0.25,0,0,0,0.673,0.817,0.817,0,0.356,0.0907 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.0907 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.227 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +0.667,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.227 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.136 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0,0,0.183,0.0833,0.34,0.516,0.516,0,0,0.128 +1,0.151,0.151,0,0,0.3,0.183,0.372,0.541,0.541,0,0.667,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0.479,0.181 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0.241,0.0453 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0.25,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.181 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.0907 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.0453 +0.667,0.548,0.548,0,0.533,0,0,0.58,0.805,0.805,0.502,0,0.0453 +0.333,0.359,0.359,0,0.167,0,0,0.465,0.641,0.641,0.34,0,0 +1,0.991,0.991,0,0.633,0,0,0.937,0.937,0.937,0.509,0,0.832 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.392 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0936 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0907 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.183,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0.333,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.185 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.408 +1,0.334,0.334,0,0.533,0,0,0.403,0.692,0.692,0.645,0,0.084 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0.552,0,0.107 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0.543,0,0.0453 +0.333,0.186,0.186,0.933,0,0.433,0.267,0.288,0.585,0.585,0.658,0,0.272 +0.667,0.313,0.313,1,0,0.05,0,0.31,0.717,0.717,0.164,0.537,0.196 +0.333,0.18,0.18,0.133,0,0,0,0.302,0.591,0.591,0,0.293,0.382 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.0463,0.0453 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.227 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.0453 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.0453 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0672 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.181 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.225 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.115 +1,0.449,0.449,0.75,0,0,0,0.657,0.787,0.787,0,0,0.113 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0,0.373 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.136 +0.667,0.322,0.322,0.517,0,0,0,0.319,0.705,0.705,0,0,0.136 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.227 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.136 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0453 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.0907 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.317 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.193 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.191 +0.667,0.565,0.565,0.0167,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.43,0.43,0.5,0,0,0,0.729,0.717,0.717,0,0,0.0453 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0981 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.119 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.133 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.196,0.196,0.25,0,0,0,0.279,0.579,0.579,0,0,0.298 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.168 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.181 +0.667,0.313,0.313,0.267,0,0,0,0.31,0.717,0.717,0,0,0.0907 +0.667,0.311,0.311,0.5,0,0,0,0.347,0.717,0.717,0,0,0.227 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0,0.227 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0,0.0907 +1,0.602,0.602,0.25,0.5,0,0,0.545,0.899,0.899,0.213,0,0.0907 +1,0.798,0.798,0,0.0333,0,0,0.741,0.974,0.974,0.382,0,0.181 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.168 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.212 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.0907 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.181 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0453 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0921 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.261 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0.267,0.167,0.33,0.579,0.579,0,0,0 +0.667,0.196,0.196,0,0,0.217,0.65,0.279,0.579,0.579,0,0.402,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0.292,0.0453 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.353,0.25 +1,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0.27,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0.624,0.136 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.477,0.136 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.411,0 +0.667,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0.383,0.136 +0.667,0.548,0.548,0.25,0,0,0,0.58,0.805,0.805,0,0.442,0.0453 +0.333,0.359,0.359,0.517,0,0,0,0.465,0.641,0.641,0,0.0412,0.181 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.181 +0.667,0.565,0.565,0,0,0.267,0.167,0.748,0.742,0.742,0,0,0.317 +1,0.621,0.621,0,0,0.217,0.367,0.965,0.843,0.843,0,0.288,0.5 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0.615,0.248 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0.315,0.162 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.352 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.254 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.0983 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.384 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.578 +0.667,0.334,0.334,0,0,0.717,0.433,0.31,0.692,0.692,0,0.282,0.0453 +0.667,0.322,0.322,0,0,0,0.383,0.319,0.705,0.705,0,0.44,0.227 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0.494,0.363 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.36,0.181 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.498,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.414,0.0907 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.552,0.181 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0.32,0.181 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.0907 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.317 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.136 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.126 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0966 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0.0515,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.183,0.183,0.5,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0616 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.137 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0644 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.139 +0.667,0.311,0.311,0.25,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.0453 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.136 +1,0.418,0.418,0.25,0,0,0,0.449,0.755,0.755,0,0,0.136 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.136 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.408 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.411 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0907 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.188 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.227 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.0453 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0453 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.227 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.181 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.136 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.181 +1,0.798,0.798,0.683,0,0,0,0.741,0.974,0.974,0,0,0.419 +0.667,0.669,0.669,0.35,0,0,0,0.673,0.817,0.817,0,0,0.263 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.172 +1,0.823,0.823,0,0.533,0,0,0.993,0.88,0.88,0.646,0,0.378 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0.155,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.317 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.191 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.121 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.169 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.136 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.272 +0.667,0.186,0.186,0.183,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0.0667,0,0,0,0.284,0.591,0.591,0,0,0.181 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.272 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.272 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.0907 +0.667,0.669,0.669,0.767,0,0,0,0.673,0.817,0.817,0,0,0.272 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.0453 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.136 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.272 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.173 +1,0.183,0.183,0.517,0,0,0,0.391,0.572,0.572,0,0,0.0134 +0.333,0.192,0.192,0.25,0,0.517,0,0.33,0.579,0.579,0,0.0483,0 +0.333,0.196,0.196,0,0,0.683,0.267,0.279,0.579,0.579,0,0.375,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0.351,0.181 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0.589,0 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0.278,0.184 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.0453 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.181 +0.667,0.343,0.343,0,0,0.267,0.167,0.384,0.73,0.73,0,0,0.317 +0.333,0.234,0.234,0,0,0.217,0.1,0.354,0.61,0.61,0,0.525,0 +0.333,0.299,0.299,0,0,0,0,0.419,0.635,0.635,0,0.317,0.227 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0.461,0.317 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.466,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0.532,0.0453 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0.144,0.188 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.36 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0.045 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.0674 +1,0.343,0.343,0.767,0,0,0,0.3,0.692,0.692,0,0,0.147 +1,0.477,0.477,0.233,0,0.233,0.267,0.336,0.806,0.806,0,0.0444,0 +1,0.458,0.458,0,0,0,0,0.35,0.824,0.824,0,0.593,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0.269,0.0453 +1,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.64,0.0907 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0.416,0.0453 +1,0.49,0.49,0,0,0.0167,0,0.447,0.862,0.862,0,0.216,0.265 +1,0.602,0.602,0,0,0.467,0.533,0.545,0.899,0.899,0,0.126,0.136 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.317 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.317 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.363 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.0907 +0.667,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.0907 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.136 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.13 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0988 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.169 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0252 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.11 +0.667,0.334,0.334,0,0,0.483,0.267,0.31,0.692,0.692,0,0.113,0.0453 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0.763,0.363 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0.377,0.136 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.808,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.326,0.136 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.308,0 +0.667,0.418,0.418,0.767,0,0,0,0.449,0.755,0.755,0,0.472,0.0453 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0.391,0 +0.667,0.669,0.669,0.0167,0,0,0,0.673,0.817,0.817,0,0.228,0.408 +1,0.991,0.991,0.75,0,0,0,0.937,0.937,0.937,0,0,0.317 +1,0.823,0.823,0,0.533,0,0,0.993,0.88,0.88,0.692,0,0.0907 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.084 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.483,0.267,0.258,0.465,0.465,0,0.133,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0.312,0 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.308 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.332 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.152 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.101 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.0453 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.41 +0.667,0.196,0.196,0.0167,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.418,0.418,0.233,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.0907 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0453 +0.333,0.363,0.363,0,0,0,0,0.484,0.622,0.622,0,0,0.478 +1,0.823,0.823,0.0167,0,0,0,0.993,0.88,0.88,0,0,0.372 +1,0.621,0.621,0.233,0,0,0,0.965,0.843,0.843,0,0,0.136 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.272 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.272 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.137 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.316,0.316,0,0,0.0167,0,0.524,0.68,0.68,0,0,0.106 +0.667,0.334,0.334,0,0,0.467,0.533,0.403,0.692,0.692,0,0.152,0.0586 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0.844,0 +0.667,0.334,0.334,0.517,0,0,0,0.31,0.692,0.692,0,0.282,0.0907 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.317 +0.333,0.181,0.181,0.517,0,0,0,0.284,0.591,0.591,0,0,0.272 +0.667,0.311,0.311,0,0.5,0,0,0.347,0.717,0.717,0.345,0,0.227 +0.667,0.315,0.315,0,0.283,0,0,0.375,0.705,0.705,0.359,0,0 +0.667,0.343,0.343,0.0167,0.55,0,0,0.384,0.73,0.73,0.76,0,0.0453 +0.667,0.418,0.418,0.5,0,0,0,0.449,0.755,0.755,0,0,0.122 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.0453 +0.667,0.669,0.669,0.0167,0,0,0,0.673,0.817,0.817,0,0,0.0453 +0.667,0.677,0.677,0.233,0,0,0,0.711,0.78,0.78,0,0,0.447 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.401 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.248 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0453 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.0714 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.449 +1,0.477,0.477,0,0,0.483,0.267,0.475,0.806,0.806,0,0.00772,0.0453 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0.423,0.227 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0.369,0.0453 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0.622,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0.329,0.227 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.31,0 +0.667,0.315,0.315,0,0.8,0,0,0.375,0.705,0.705,0.595,0.363,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0.724,0.248,0.0453 +0.667,0.418,0.418,0.183,0,0,0,0.449,0.755,0.755,0.531,0.377,0.0907 +1,0.798,0.798,0.0667,0.167,0,0,0.741,0.974,0.974,0.15,0.638,0.136 +1,0.979,0.979,0,0.633,0,0,0.881,0.993,0.993,0.345,0.467,0.171 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0.252,0.0453 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.403 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.306 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,0.183,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.151,0.151,0.0667,0,0,0,0.372,0.541,0.541,0,0,0.321 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.846 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.328 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.322,0.322,0.183,0,0,0,0.319,0.705,0.705,0,0,0.0742 +0.667,0.313,0.313,0.583,0,0,0,0.31,0.717,0.717,0,0,0.272 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0.433,0.333,0.316,0.585,0.585,0,0,0.181 +0.667,0.343,0.343,0,0,0.05,0.75,0.384,0.73,0.73,0,0.633,0.272 +0.667,0.418,0.418,0.25,0,0,0,0.449,0.755,0.755,0,0.282,0.0453 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.0907 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.136 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0506 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.431 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.183,0.183,0.0167,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.334,0.334,0.75,0.533,0.267,0.167,0.403,0.692,0.692,0.641,0,0 +0.667,0.343,0.343,0,0,0.217,0.917,0.3,0.692,0.692,0.0889,0.364,0 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0.269,0 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0.464,0.101 +0.667,0.313,0.313,0.517,0,0,0,0.31,0.717,0.717,0,0.207,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.234,0 +0.667,0.315,0.315,0,0,0.267,0.167,0.375,0.705,0.705,0,0.212,0.0453 +0.667,0.343,0.343,0,0,0.217,0.1,0.384,0.73,0.73,0,0.414,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.453,0.544 +0.667,0.548,0.548,0.0167,0,0,0,0.58,0.805,0.805,0,0.275,0.136 +0.667,0.669,0.669,0.233,0,0,0,0.673,0.817,0.817,0,0,0.0907 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.181 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0453 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.363 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.166 +1,0.151,0.151,0.25,0,0,0,0.372,0.541,0.541,0,0,0.107 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.244 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.374 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.0729 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.0453 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.17 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.326 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0453 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0,0,0.308 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.196 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.298 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.393 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.393 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.305 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.0453 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.367 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.101 +1,0.477,0.477,0.517,0,0.0167,0,0.475,0.806,0.806,0,0,0 +0.667,0.343,0.343,0.25,0,0.7,0.683,0.3,0.692,0.692,0,0.234,0 +0.667,0.334,0.334,0,0,0,0.667,0.31,0.692,0.692,0,0.352,0.227 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0.485,0.272 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0.404,0.136 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0.283,0.0907 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0.298,0.0907 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.539,0 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.413,0.0453 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0.455,0.317 +0.667,0.669,0.669,0.0167,0,0,0,0.673,0.817,0.817,0,0.598,0 +1,0.991,0.991,1,0,0,0,0.937,0.937,0.937,0,0.47,0.0453 +1,0.823,0.823,0.0167,0,0,0,0.993,0.88,0.88,0,0.112,0.277 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.108 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.227 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.313,0.313,0,0.517,0,0,0.527,0.683,0.683,0.753,0,0.131 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0.155,0,0.146 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.0453 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.136 +0.667,0.177,0.177,0,0.2,0,0,0.303,0.593,0.593,0.127,0,0 +0.667,0.307,0.307,0,0.783,0,0,0.377,0.709,0.709,0.578,0,0.227 +0.667,0.322,0.322,0,0.583,0,0,0.386,0.734,0.734,0.521,0,0 +0.667,0.367,0.367,0.25,0,0,0,0.452,0.759,0.759,0.737,0,0.0453 +0.667,0.466,0.466,0.25,0,0,0,0.584,0.809,0.809,0,0,0.0453 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.16 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.0907 +0.667,0.625,0.625,0,0,0.25,0.783,0.753,0.746,0.746,0,0.178,0.363 +0.667,0.501,0.501,0.5,0,0,0,0.734,0.721,0.721,0,0.185,0.181 +0.667,0.442,0.442,0,0,0.75,0.25,0.64,0.658,0.658,0,0.17,0.453 +0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0.126,0.136 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.217,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,1,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,1,0,0,0,0.331,0.581,0.581,0,0,0.187 +0.667,0.337,0.337,0.0833,0,0,0,0.302,0.696,0.696,0,0,0.0936 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.0453 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0907 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.363 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.181 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0 +0.333,0.258,0.258,0,0.7,0,0,0.421,0.637,0.637,0.385,0,0.544 +0.333,0.322,0.322,0,0.0833,0,0,0.468,0.644,0.644,0.171,0,0.317 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.0453 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.181 +0.667,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.18 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0.148 +1,0.124,0.124,0,0,0,0,0.563,0.66,0.66,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.162 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.0875 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.122 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.414 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.361 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.136 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0907 +0.333,0.183,0.183,0.15,0,0,0,0.289,0.587,0.587,0,0,0.363 +0.333,0.178,0.178,0.1,0,0,0,0.284,0.593,0.593,0,0,0.0453 +0.667,0.305,0.305,0,0.133,0,0,0.349,0.721,0.721,0.0775,0,0 +0.667,0.307,0.307,0,0.65,0,0,0.377,0.709,0.709,0.762,0,0.363 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.0907 +0.667,0.367,0.367,0,0,0.5,0.25,0.452,0.759,0.759,0,0.197,0.227 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.351,0.136 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.0453 +1,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.119 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.501,0.501,0.15,0,0,0,0.734,0.721,0.721,0,0,0.293 +1,0.442,0.442,0.35,0,0,0,0.64,0.658,0.658,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.349 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0.65,0,0,0,0.331,0.581,0.581,0,0,0.235 +0.667,0.193,0.193,0.117,0,0,0,0.28,0.581,0.581,0,0,0.38 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.181 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.0453 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.272 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.227 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.181 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.0453 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.118 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.136 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.204 +1,0.313,0.313,0.0333,0,0,0,0.527,0.683,0.683,0,0,0.155 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.0737 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.0825 +0.667,0.328,0.328,0.25,0,0,0,0.311,0.696,0.696,0,0,0.506 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.165 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.466 +0.333,0.177,0.177,0,0,0.217,0.1,0.303,0.593,0.593,0,0,0.163 +0.667,0.307,0.307,0,0,0.283,0.417,0.377,0.709,0.709,0,0.4,0.136 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.498,0 +0.333,0.208,0.208,0,0.7,0,0,0.355,0.612,0.612,0.415,0.187,0 +0.333,0.258,0.258,0.467,0.0833,0,0,0.421,0.637,0.637,0.0889,0,0.0453 +0.333,0.322,0.322,0.0333,0,0,0,0.468,0.644,0.644,0,0,0.363 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.227 +0.333,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0,0,0.227 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.227 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0.3,0,0,0,0.374,0.543,0.543,0,0,0.108 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.372 +1,0.47,0.47,0,0,0,0,0.479,0.811,0.811,0,0,0.114 +1,0.481,0.481,0,0,0,0,0.324,0.811,0.811,0,0,0.327 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.218 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.317 +0.667,0.307,0.307,0.25,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.227 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.0907 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.136 +0.667,0.466,0.466,0,0.2,0,0,0.584,0.809,0.809,0.157,0,0.0453 +0.667,0.595,0.595,0,0.583,0,0,0.677,0.822,0.822,0.638,0,0.408 +0.667,0.67,0.67,0.25,0,0,0,0.715,0.784,0.784,0.728,0,0.0921 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.138 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.181 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.136 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.0664 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0.129 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.044 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.138 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.182 +1,0.313,0.313,0.467,0,0,0,0.527,0.683,0.683,0,0,0.0139 +1,0.47,0.47,0.0333,0,0,0,0.479,0.811,0.811,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.0453 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.0453 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0907 +0.667,0.307,0.307,0,0.45,0,0,0.311,0.721,0.721,0.315,0,0.181 +0.667,0.305,0.305,0,0.333,0.5,0.25,0.349,0.721,0.721,0.599,0.489,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.282,0.136 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.368,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.653,0.181 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.611,0.388 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.438,0.413 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.268,0.453 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.252,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0848 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.316 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.0453 +1,0.099,0.099,0,0,0,0,0.461,0.595,0.595,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0.467,0.25,0.392,0.574,0.574,0,0,0 +1,0.33,0.33,0,0,0.0333,0,0.405,0.696,0.696,0,0.38,0 +1,0.481,0.481,0.25,0,0,0,0.324,0.811,0.811,0,0.462,0.132 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0.615,0.151 +1,0.449,0.449,0,0,0,0,0.352,0.83,0.83,0,0.367,0.35 +1,0.436,0.436,0.25,0,0,0,0.338,0.849,0.849,0,0,0.164 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.227 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.0453 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0453 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.227 +0.333,0.322,0.322,0.25,0,0,0,0.468,0.644,0.644,0,0,0.223 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.317 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.136 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.0453 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.363 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.0453 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.0907 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0907 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.181 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.317 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.0907 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.136 +0.333,0.258,0.258,0.467,0,0,0,0.421,0.637,0.637,0,0,0.0907 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.317 +1,0.98,0.98,0.833,0,0,0,0.944,0.943,0.943,0,0,0.0913 +1,0.913,0.913,0,0.517,0.467,0.35,1,0.887,0.887,0.409,0,0.181 +1,0.727,0.727,0,0,0.0333,0.167,0.972,0.849,0.849,0.389,0.447,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0.525,0.0907 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0.342,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0765 +1,0.0495,0.0495,0.15,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0.867,0,0,0,0.341,0.505,0.505,0,0,0.218 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.12 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.204 +1,0.351,0.351,0,0,0,0,0.606,0.698,0.698,0,0,0.777 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.491 +1,0.47,0.47,0,0,0,0,0.479,0.811,0.811,0,0,0.335 +1,0.481,0.481,0,0,0,0,0.324,0.811,0.811,0,0,0.497 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0453 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.0453 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.305,0.305,0.25,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.0453 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0453 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.227 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.317 +0.667,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.299 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.218 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.227 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.135,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0276 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0692 +1,0.0495,0.0495,0.15,0,0,0,0.258,0.465,0.465,0,0,0.166 +1,0.313,0.313,0.617,0,0,0,0.527,0.683,0.683,0,0,0.109 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.135 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.139 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.227 +0.667,0.307,0.307,0,0,0.4,0.283,0.377,0.709,0.709,0,0,0 +0.667,0.322,0.322,0,0,0.1,0.767,0.386,0.734,0.734,0,0.156,0.0453 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.181 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.272 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0453 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.272 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.272 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.25 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0825 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131 +1,0.181,0.181,0.25,0,0,0,0.392,0.574,0.574,0,0,0.0707 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.337,0.337,0.25,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0453 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.0453 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.181 +0.333,0.186,0.186,0.467,0,0,0,0.322,0.6,0.6,0,0,0.272 +0.667,0.367,0.367,0.3,0.7,0,0,0.452,0.759,0.759,0.382,0,0.216 +1,0.674,0.674,0,0.0833,0,0,0.746,0.981,0.981,0.406,0,0.0453 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.136 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.136 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.136 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0907 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.385 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0996 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.0599 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.204 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.186 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0907 +0.333,0.183,0.183,0,0.2,0,0,0.289,0.587,0.587,0.167,0,0.0907 +0.333,0.178,0.178,0,0.583,0,0,0.284,0.593,0.593,0.718,0,0.0453 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0.115,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.272 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.215 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.126 +0.667,0.466,0.466,0.467,0,0,0,0.584,0.809,0.809,0,0,0.272 +0.667,0.595,0.595,0.0333,0,0,0,0.677,0.822,0.822,0,0,0.272 +0.667,0.67,0.67,0.767,0,0,0,0.715,0.784,0.784,0,0,0.0453 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.0453 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.272 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0453 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.119 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.263 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.107 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.0868 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.263 +0.667,0.328,0.328,0,0,0.467,0.35,0.311,0.696,0.696,0,0,0 +0.667,0.316,0.316,0,0,0.0333,0.7,0.321,0.709,0.709,0,0.43,0.136 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.219,0.272 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0.512,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.412,0.0907 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.34,0.181 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0.577,0.0453 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0.647,0.0453 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.412,0.181 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.296,0.136 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.668,0.0453 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0.278,0.0453 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0.23,0.105 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.0921 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.0674 +0.667,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.149 +0.333,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.0453 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.227 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0453 +0.667,0.307,0.307,0,0,0.25,0.783,0.311,0.721,0.721,0,0.0257,0.0907 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.541,0.181 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.331,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.257,0.0907 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.475,0.262 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.498,0.536 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.586,0.159 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.248,0.136 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.557,0.0453 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0.45,0.181 +1,0.442,0.442,0,0.45,0,0,0.64,0.658,0.658,0.256,0.533,0 +1,0.183,0.183,0,0.333,0,0,0.555,0.608,0.608,0.474,0,0.0907 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.257 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0.116 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.15,0.15,0.25,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.326 +1,0.47,0.47,0,0,0,0,0.479,0.811,0.811,0,0,0.411 +1,0.481,0.481,0,0,0.217,0.1,0.324,0.811,0.811,0,0,0.396 +1,0.468,0.468,0,0,0.283,0.417,0.338,0.811,0.811,0,0.304,0.129 +1,0.449,0.449,0,0,0,0,0.352,0.83,0.83,0,0.597,0.58 +1,0.436,0.436,0,0,0,0,0.338,0.849,0.849,0,0.459,0.25 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.264,0.0453 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.122,0 +0.667,0.322,0.322,0,0.2,0,0,0.386,0.734,0.734,0.0819,0,0 +0.667,0.367,0.367,0,0.583,0,0,0.452,0.759,0.759,0.786,0,0.0453 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0.744,0,0.0907 +1,0.868,0.868,0,0,0,0,0.887,1,1,0.641,0,0.453 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0.78,0,0.309 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0.631,0,0.0685 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0.202,0,0.227 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.21 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.275 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.16 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.0133 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0.9,0,0,0,0.284,0.593,0.593,0,0,0.181 +0.333,0.177,0.177,0.883,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.136 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0453 +0.667,0.367,0.367,0,0.383,0,0,0.452,0.759,0.759,0.338,0,0.181 +0.667,0.466,0.466,0.65,0.4,0,0,0.584,0.809,0.809,0.519,0,0.0907 +1,0.868,0.868,1,0,0.15,0.0333,0.887,1,1,0.681,0,0.363 +1,0.98,0.98,0.9,0.133,0.35,1,0.944,0.943,0.943,0.074,0.274,0 +1,0.913,0.913,0,0.65,0,0.283,1,0.887,0.887,0.583,0.592,0.0453 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0.788,0.448,0.0453 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0.0653,0,0.408 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.265 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.25 +1,0.481,0.481,0,0,0,0,0.324,0.811,0.811,0,0,0.15 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.344 +0.667,0.316,0.316,0.15,0,0,0,0.321,0.709,0.709,0,0,0.181 +0.667,0.307,0.307,0.1,0,0,0,0.311,0.721,0.721,0,0,0.0453 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.181 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.0453 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.0907 +1,0.674,0.674,0.25,0,0,0,0.746,0.981,0.981,0,0,0.136 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.227 +1,0.98,0.98,0,0.517,0,0,0.944,0.943,0.943,0.549,0,0.0453 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0.397,0,0.265 +1,0.727,0.727,0,0.783,0,0,0.972,0.849,0.849,0.657,0,0.272 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.115 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.0122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.135 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.464 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.136 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.409 +1,0.449,0.449,0,0,0,0,0.352,0.83,0.83,0,0,0 +0.667,0.307,0.307,0.5,0,0,0,0.311,0.721,0.721,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.0453 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.0453 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.287 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.272 +0.667,0.595,0.595,0.25,0,0,0,0.677,0.822,0.822,0,0,0.453 +1,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.0453 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.181 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.0453 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.135 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0747 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.105 +1,0.444,0.444,0.767,0.783,0,0,0.662,0.792,0.792,0.57,0,0 +0.667,0.33,0.33,0.967,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.337,0.337,0.05,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.0907 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.181 +0.333,0.178,0.178,0.25,0,0,0,0.284,0.593,0.593,0,0,0.0907 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.0453 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.0453 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.181 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.136 +1,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0 +1,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0453 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.0453 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.262 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.435 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.181 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.105 +1,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0772 +1,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.143 +1,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.089 +1,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.317 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.0907 +0.667,0.466,0.466,0,0.783,0,0,0.584,0.809,0.809,0.765,0,0.317 +0.667,0.595,0.595,0.5,0,0,0,0.677,0.822,0.822,0.73,0,0.499 +0.667,0.67,0.67,0,0.517,0,0,0.715,0.784,0.784,0.622,0,0.0907 +0.667,0.337,0.337,0,0,0,0,0.505,0.606,0.606,0.139,0,0.453 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0907 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.227 +0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.0453 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.218 +1,0.053,0.053,0,0,0,0,0.396,0.558,0.558,0,0,0.333 +1,0.116,0.116,0,0,0,0,0.424,0.57,0.57,0,0,0.091 +1,0.251,0.251,0,0,0,0,0.49,0.621,0.621,0,0,0.173 +1,0.444,0.444,0,0,0,0,0.662,0.792,0.792,0,0,0.178 +1,0.47,0.47,0,0,0,0,0.479,0.811,0.811,0,0,0.181 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.0453 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.136 +1,0.449,0.449,0,0,0,0,0.352,0.83,0.83,0,0,0.188 +1,0.436,0.436,0,0,0,0,0.338,0.849,0.849,0,0,0.0988 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.0453 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.408 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +0.333,0.258,0.258,0,0,0,0,0.421,0.637,0.637,0,0,0.518 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.0907 +0.667,0.67,0.67,0.467,0,0,0,0.715,0.784,0.784,0,0,0 +0.667,0.625,0.625,1,0,0,0,0.753,0.746,0.746,0,0,0.0453 +1,0.727,0.727,0.583,0,0,0,0.972,0.849,0.849,0,0,0.365 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.148 +1,0.15,0.15,0.217,0,0,0,0.374,0.543,0.543,0,0,0.0639 +1,0.181,0.181,0.55,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.227 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.136 +0.333,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.227 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0453 +0.667,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0453 +0.667,0.466,0.466,0.467,0,0,0,0.584,0.809,0.809,0,0,0.301 +0.667,0.595,0.595,1,0.45,0,0,0.677,0.822,0.822,0.249,0,0.227 +0.667,0.67,0.67,0.583,0.0667,0,0,0.715,0.784,0.784,0.476,0,0.136 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0.557,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.184 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.0757 +1,0.249,0.249,0,0,0,0,0.704,0.679,0.679,0,0,0.0907 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.551 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.368 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.125 +1,0.47,0.47,0,0,0,0,0.479,0.811,0.811,0,0,0.301 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.174 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.649 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0907 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0453 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.0453 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.0915 +0.333,0.258,0.258,0.5,0,0,0,0.421,0.637,0.637,0,0,0.108 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.225 +1,0.98,0.98,0,0,0.5,0.25,0.944,0.943,0.943,0,0.1,0.0453 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.341,0.472 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0.251,0.11 +0.667,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.15,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0.1,0,0,0,0.392,0.574,0.574,0,0,0.0596 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.155 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.389 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.0918 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.836 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.272 +0.333,0.177,0.177,0,0.633,0,0,0.303,0.593,0.593,0.463,0,0.0907 +0.333,0.178,0.178,0,0.15,0,0,0.317,0.587,0.587,0.223,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.301 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.556 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.457 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.0586 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0.467,0,0,0,0.374,0.543,0.543,0,0,0.0694 +0.667,0.313,0.313,0.55,0,0,0,0.527,0.683,0.683,0,0,0.0755 +0.667,0.33,0.33,0.717,0,0,0,0.405,0.696,0.696,0,0,0.312 +1,0.481,0.481,1,0,0,0,0.324,0.811,0.811,0,0,0.28 +1,0.468,0.468,0.0667,0,0,0,0.338,0.811,0.811,0,0,0.0907 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.0453 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.363 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.272 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.667,0.322,0.322,0.767,0,0,0,0.386,0.734,0.734,0,0,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.136 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.0453 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.272 +1,0.98,0.98,0,0.517,0,0,0.944,0.943,0.943,0.418,0,0.136 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0.216,0,0.0907 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.106 +1,0.481,0.481,0,0,0,0,0.324,0.811,0.811,0,0,0.255 +1,0.468,0.468,0,0,0,0,0.338,0.811,0.811,0,0,0.303 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.587 +1,0.436,0.436,0,0,0,0,0.338,0.849,0.849,0,0,0.146 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0.0453 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.363 +0.333,0.322,0.322,0,0,0,0,0.468,0.644,0.644,0,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.0907 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.0453 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.135 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.144 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +1,0.33,0.33,0.25,0,0,0,0.405,0.696,0.696,0,0,0.0986 +0.667,0.193,0.193,0,0,0.217,0,0.28,0.581,0.581,0,0,0.174 +0.667,0.328,0.328,0.217,0,0.533,0.85,0.311,0.696,0.696,0,0.4,0.406 +0.667,0.316,0.316,0.0333,0,0,0.2,0.321,0.709,0.709,0,0.508,0.0907 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.274,0 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0.255,0.272 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.43,0.0453 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0.615,0 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0.404,0.136 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.367,0.227 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.598,0.136 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0.282,0.408 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0.375,0.0907 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0.0746,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.113 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123 +1,0.147,0.147,0.233,0,0,0,0.331,0.494,0.494,0,0,0.133 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.171 +1,0.318,0.318,0.483,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.456,0.456,0,0,0,0,0.256,0.641,0.641,0,0,0 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.0453 +0.667,0.3,0.3,0,0,0.233,0.25,0.271,0.592,0.592,0,0,0.136 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0.467,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.402,0.136 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0.414,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0.45,0.0453 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.505,0.181 +0.333,0.222,0.222,0.267,0,0,0,0.368,0.569,0.569,0,0.187,0.0907 +0.667,0.507,0.507,0.45,0,0,0,0.553,0.682,0.682,0,0.477,0.0453 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0.317,0.227 +1,0.928,0.928,0.233,0.5,0,0,0.79,0.701,0.701,0.287,0.104,0.272 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0.167,0,0.216 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0907 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0907 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.135 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0948 +1,0.147,0.147,0.517,0,0,0,0.331,0.494,0.494,0,0,0.109 +1,0.305,0.305,1,0,0,0,0.435,0.572,0.572,0,0,0.166 +0.667,0.184,0.184,0.433,0,0.0167,0,0.298,0.524,0.524,0,0,0.0812 +0.667,0.185,0.185,0,0,0.717,0.667,0.257,0.524,0.524,0,0.327,0.273 +0.667,0.312,0.312,0,0,0,1,0.264,0.582,0.582,0,0.263,0.227 +1,0.3,0.3,0.0167,0,0,0.15,0.271,0.592,0.592,0,0.436,0.136 +1,0.292,0.292,1,0,0,0,0.264,0.602,0.602,0,0.303,0.136 +0.333,0.169,0.169,1,0,0,0,0.276,0.534,0.534,0,0.449,0.0453 +0.667,0.29,0.29,1,0,0,0,0.316,0.592,0.592,0,0.367,0 +0.667,0.298,0.298,1,0,0,0,0.323,0.612,0.612,0,0.495,0.0453 +1,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0.508,0 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0.479,0.0453 +0.667,0.507,0.507,0.567,0,0,0,0.553,0.682,0.682,0,0.302,0.0907 +0.667,0.613,0.613,0.0167,0,0,0,0.583,0.652,0.652,0,0.422,0 +1,0.928,0.928,0.467,0,0,0,0.79,0.701,0.701,0,0.272,0.0453 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0.525,0.272 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0.352,0.0453 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0.177,0.079 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0.233,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.181 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.41 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.444 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.136 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0453 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0907 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.227 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.363 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.181 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.136 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0878 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0807 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.275 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.132 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.202 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.114 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.0907 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.363 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.453 +0.333,0.171,0.171,0.1,0,0,0,0.261,0.534,0.534,0,0,0.0453 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.29,0.29,0.35,0,0,0,0.316,0.592,0.592,0,0,0 +1,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +1,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.136 +1,0.395,0.395,0.233,0,0,0,0.479,0.672,0.672,0,0,0.363 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.391 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.174 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.181 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.282 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.152 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0578 +1,0.147,0.147,0.233,0,0,0,0.331,0.494,0.494,0,0,0.192 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.466 +1,0.318,0.318,0.233,0,0,0,0.338,0.582,0.582,0,0,0.0936 +1,0.456,0.456,0,0,0,0,0.256,0.641,0.641,0,0,0.13 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.294 +0.667,0.3,0.3,0.483,0,0,0,0.271,0.592,0.592,0,0,0.317 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.227 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.338 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.317 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.181 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0 +0.667,0.395,0.395,0,0.5,0,0,0.479,0.672,0.672,0.294,0,0.0907 +1,0.736,0.736,0,0.267,0,0,0.701,0.79,0.79,0.197,0,0.0453 +1,0.895,0.895,0.267,0.5,0,0,0.745,0.745,0.745,0.629,0,0.203 +1,0.928,0.928,0.217,0,0,0,0.79,0.701,0.701,0.57,0,0.257 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0.634,0,0.204 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0.422,0,0.0907 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.147,0.147,0.717,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.329 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.363 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.0907 +0.667,0.292,0.292,0.233,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.136 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.227 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.0453 +1,0.736,0.736,0.0167,0,0,0,0.701,0.79,0.79,0,0,0.181 +1,0.895,0.895,0.467,0,0,0,0.745,0.745,0.745,0,0,0.408 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.363 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.0453 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.136 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0936 +1,0.433,0.433,0,0.5,0,0,0.523,0.626,0.626,0.38,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0.258,0,0.241 +1,0.456,0.456,0,0,0,0,0.256,0.641,0.641,0,0,0.0295 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0907 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.46 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.227 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.225 +0.667,0.29,0.29,0.233,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.227 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.317 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.136 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.24 +0.667,0.613,0.613,0,0.767,0.233,0.917,0.583,0.652,0.652,0.544,0.108,0.182 +0.667,0.635,0.635,0,0,0,0.383,0.613,0.622,0.622,0.136,0.475,0.0907 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0.422,0.0453 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0.32,0 +1,0.116,0.116,0,0.5,0,0,0.357,0.489,0.489,0.643,0.16,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0.667,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.167,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.254 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.11 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.113 +1,0.452,0.452,0.767,0,0,0,0.378,0.641,0.641,0,0,0.324 +0.667,0.321,0.321,1,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,1,0,0,0,0.264,0.582,0.582,0,0,0.0453 +0.667,0.3,0.3,1,0,0,0,0.271,0.592,0.592,0,0,0.0453 +0.667,0.292,0.292,0.617,0,0,0,0.264,0.602,0.602,0,0,0.408 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0453 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.333,0.188,0.188,0.233,0,0,0,0.316,0.549,0.549,0,0,0.0907 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.272 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.0907 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.453 +0.667,0.635,0.635,0.233,0,0,0,0.613,0.622,0.622,0,0,0.272 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.149 +0.667,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.142 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.21 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.0843 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.272 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.181 +0.667,0.3,0.3,0.267,0,0,0,0.271,0.592,0.592,0,0,0.146 +0.667,0.292,0.292,0.45,0,0,0,0.264,0.602,0.602,0,0,0.146 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.136 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0453 +0,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.333,0.278,0.278,1,0,0,0,0.405,0.574,0.574,0,0,0.621 +0.667,0.613,0.613,0.2,0,0,0,0.583,0.652,0.652,0,0,0.227 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0 +0.333,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.0453 +0.667,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.1,0,0,0,0.258,0.465,0.465,0,0,0.134 +1,0.305,0.305,0.617,0,0,0,0.435,0.572,0.572,0,0,0.086 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.0723 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.115 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.181 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0907 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0907 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0453 +0.667,0.395,0.395,0.1,0,0,0,0.479,0.672,0.672,0,0,0.136 +0.667,0.507,0.507,0.617,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.028 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.22 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.315 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.111 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.0875 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.0953 +1,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.134 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.323 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.389 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.104 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.136 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0453 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.181 +1,0.567,0.567,0.233,0,0,0,0.59,0.775,0.775,0,0,0.409 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0.233,0,0,0,0.745,0.745,0.745,0,0,0.371 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0907 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.317 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0797 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.114 +0.667,0.184,0.184,0.0167,0,0,0,0.298,0.524,0.524,0,0,0.0933 +1,0.321,0.321,0.467,0,0,0,0.257,0.582,0.582,0,0,0.204 +1,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.18 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.363 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0453 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.272 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.0907 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.272 +1,0.464,0.464,0.233,0,0,0,0.434,0.715,0.715,0,0,0.181 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.181 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.0907 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0453 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.302,0.302,0,0,0,0,0.428,0.534,0.534,0,0,0.363 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0734 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.0958 +1,0.305,0.305,0,0.5,0,0,0.435,0.572,0.572,0.237,0,0 +0.667,0.184,0.184,0,0,0.0167,0,0.298,0.524,0.524,0.571,0,0 +0.667,0.321,0.321,0,0,0.467,0.25,0.257,0.582,0.582,0.359,0.167,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0.482,0.0907 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0.512,0.161 +0.667,0.292,0.292,0.717,0,0,0,0.264,0.602,0.602,0,0.541,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.4,0.0453 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0.426,0.136 +0.667,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.181 +0.667,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.181 +0.667,0.222,0.222,0.233,0,0,0,0.368,0.569,0.569,0,0,0.181 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.181 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.227 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.0907 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.136 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.134 +0.667,0.177,0.177,0.267,0,0,0,0.346,0.519,0.519,0,0,0.084 +1,0.452,0.452,0.7,0,0,0,0.378,0.641,0.641,0,0,0.0873 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.0943 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.528 +0.667,0.292,0.292,0.483,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.0453 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.211 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.287 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.0453 +0,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.272 +0.667,0.613,0.613,0.467,0,0,0,0.583,0.652,0.652,0,0,0.443 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.371 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.154 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.102 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.311 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.487 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.317 +0.667,0.321,0.321,0.233,0,0.0167,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0.467,0.25,0.264,0.582,0.582,0,0.425,0.0907 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0.399,0.0453 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0.145,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.272 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0453 +0.667,0.395,0.395,0.233,0,0,0,0.479,0.672,0.672,0,0,0.0907 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.227 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.0453 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.181 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0907 +1,0.35,0.35,0,0.767,0.483,0.667,0.524,0.553,0.553,0.552,0.22,0.136 +1,0.183,0.183,0,0,0,0.1,0.457,0.513,0.513,0,0.579,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.104 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0983 +1,0.245,0.245,0.767,0,0,0,0.405,0.523,0.523,0,0,0.117 +1,0.305,0.305,0.933,0,0,0,0.435,0.572,0.572,0,0,0.353 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.0142 +0.333,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0907 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.136 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.227 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0453 +0.333,0.188,0.188,0.233,0,0,0,0.316,0.549,0.549,0,0,0.227 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.181 +0.667,0.507,0.507,0,0.5,0,0,0.553,0.682,0.682,0.585,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.425,0,0.0907 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.181 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.0907 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.227 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.495 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.0468 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.191 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0.181 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.227 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.317 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.272 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.136 +1,0.895,0.895,0,0,0.483,0.75,0.745,0.745,0.745,0,0.156,0.181 +1,0.928,0.928,0,0,0.1,0.0167,0.79,0.701,0.701,0,0.615,0 +1,0.302,0.302,0,0,0.383,0.767,0.428,0.534,0.534,0,0.342,0.227 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0.297,0.071 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0385 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.136 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.557 +1,0.409,0.409,0.483,0,0,0,0.312,0.671,0.671,0,0,0.0453 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.0907 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.227 +0.667,0.326,0.326,0.6,0,0,0,0.375,0.632,0.632,0,0,0.227 +0.667,0.395,0.395,0.117,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.227 +1,0.895,0.895,0,0.0833,0,0,0.745,0.745,0.745,0,0,0.0453 +1,0.928,0.928,0,0.417,0,0,0.79,0.701,0.701,0.436,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.136 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.158 +1,0.147,0.147,0.233,0,0,0,0.331,0.494,0.494,0,0,0.265 +1,0.433,0.433,0,0,0,0,0.523,0.626,0.626,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0453 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0907 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.227 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.181 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.136 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.181 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.181 +0.667,0.395,0.395,0.0167,0,0,0,0.479,0.672,0.672,0,0,0.181 +1,0.736,0.736,0.467,0,0,0,0.701,0.79,0.79,0,0,0.408 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0907 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.164 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.115 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.0943 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0.5,0,0,0.305,0.474,0.474,0.667,0,0 +1,0.147,0.147,0,0,0.483,0.417,0.331,0.494,0.494,0.129,0.0631,0 +1,0.305,0.305,0,0,0,0.883,0.435,0.572,0.572,0,0.605,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0.36,0.181 +0.667,0.185,0.185,0,0,0.483,0.25,0.257,0.524,0.524,0,0.273,0.166 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0.448,0.136 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0.333,0.468 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0.363,0.129 +1,0.409,0.409,0,0.5,0,0,0.312,0.671,0.671,0.211,0.713,0.181 +0.667,0.29,0.29,0.483,0,0,0,0.316,0.592,0.592,0.368,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0453 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0453 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.0907 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.269 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.179 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.223 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.198 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0.767,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,0.2,0,0,0,0.346,0.519,0.519,0,0,0.077 +1,0.452,0.452,0,0.5,0,0,0.378,0.641,0.641,0.618,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.136 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.181 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0907 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0453 +1,0.41,0.41,0,0,0,0,0.345,0.656,0.656,0,0,0.227 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0453 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0453 +0.333,0.222,0.222,0.767,0,0,0,0.368,0.569,0.569,0,0,0.181 +0.333,0.278,0.278,0.2,0,0,0,0.405,0.574,0.574,0,0,0.577 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.181 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.136 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.169 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.182 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.111 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.207 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.251 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.248 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0.179 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.229 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.317 +0.667,0.326,0.326,0,0.5,0,0,0.375,0.632,0.632,0.533,0,0.0453 +0.667,0.395,0.395,0.233,0,0,0,0.479,0.672,0.672,0.103,0,0.136 +0.333,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.0453 +0.333,0.331,0.331,0,0.767,0,0,0.42,0.559,0.559,0.563,0,0.272 +0.333,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.178 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.136 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.119 +1,0.114,0.114,0,0,0,0,0.353,0.483,0.483,0,0,0.0845 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.14 +1,0.305,0.305,0.717,0,0.233,0.667,0.435,0.572,0.572,0,0.0566,0.129 +1,0.318,0.318,0,0,0,1,0.338,0.582,0.582,0,0.324,0.302 +1,0.456,0.456,0,0,0,0.15,0.256,0.641,0.641,0,0,0.194 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.902 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0.181 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.272 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.136 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0453 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.0453 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.181 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.136 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.136 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.0453 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.0907 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0453 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0907 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.438 +1,0.147,0.147,0.1,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.177,0.177,0.383,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.687 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.3,0.3,0.1,0,0,0,0.271,0.592,0.592,0,0,0.0453 +0.333,0.171,0.171,0.867,0,0,0,0.261,0.534,0.534,0,0,0.363 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0453 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0453 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0453 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.0453 +0.667,0.395,0.395,0.6,0,0,0,0.479,0.672,0.672,0,0,0.227 +1,0.736,0.736,0.117,0,0,0,0.701,0.79,0.79,0,0,0.0453 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.344 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.0453 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0907 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0.1,0,0,0,0.331,0.494,0.494,0,0,0.329 +1,0.305,0.305,0.617,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.318,0.318,0.1,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0.133,0.5,0,0,0.257,0.582,0.582,0.617,0,0 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0.657,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0.138,0,0.0453 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0453 +0.333,0.169,0.169,0.1,0,0,0,0.276,0.534,0.534,0,0,0.181 +0.333,0.17,0.17,0.133,0,0,0,0.287,0.529,0.529,0,0,0.0453 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.136 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.136 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.453 +0.667,0.507,0.507,0,0,0.85,0,0.553,0.682,0.682,0,0.329,0.0453 +1,0.895,0.895,0,0,0.383,0.25,0.745,0.745,0.745,0,0.49,0.181 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.263,0.0738 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.188 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.317 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.0561 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.246 +1,0.318,0.318,0,0,0.267,0.167,0.338,0.582,0.582,0,0,0.126 +1,0.456,0.456,0,0,0.217,0.35,0.256,0.641,0.641,0,0.243,0.138 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.242 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0.169 +1,0.413,0.413,0.0167,0,0,0,0.267,0.671,0.671,0,0,0.169 +1,0.409,0.409,0.217,0,0,0,0.312,0.671,0.671,0,0,0.0907 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.181 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.0907 +0.667,0.395,0.395,0.517,0,0,0,0.479,0.672,0.672,0,0,0.136 +1,0.736,0.736,0.2,0,0,0,0.701,0.79,0.79,0,0,0.0453 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.136 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.136 +1,0.807,0.807,0,0.767,0,0,0.768,0.671,0.671,0.834,0,0.485 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0.852,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.086 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.132 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0907 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0907 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0453 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.272 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0907 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.272 +0.333,0.222,0.222,0.233,0,0,0,0.368,0.569,0.569,0,0,0.146 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.136 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.453 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.0907 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0907 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0755 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.213 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.22 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.184 +0.333,0.175,0.175,0,0.767,0,0,0.265,0.529,0.529,0.603,0,0.227 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0.47,0,0.227 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0.72,0,0 +1,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0.814,0,0.0453 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0.183,0,0.181 +0.333,0.188,0.188,0.717,0,0,0,0.316,0.549,0.549,0,0,0.136 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.0453 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.0453 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0453 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.161 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.307 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0907 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0453 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0.332 +1,0.318,0.318,0.433,0,0,0,0.338,0.582,0.582,0,0,0.106 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.137 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.136 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.499 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.0453 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.317 +0.667,0.326,0.326,0,0,0.267,0.167,0.375,0.632,0.632,0,0,0 +0.333,0.222,0.222,0,0.5,0.217,0.6,0.368,0.569,0.569,0.237,0.296,0 +0.333,0.278,0.278,0,0.267,0,0,0.405,0.574,0.574,0.552,0,0.326 +0.333,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0.213,0,0.725 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.487 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0907 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0453 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.213 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.494 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.467 +1,0.321,0.321,0,0,0.0167,0,0.257,0.582,0.582,0,0,0.748 +1,0.443,0.443,0,0,0.467,0.517,0.267,0.641,0.641,0,0.158,0.181 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0.384,0.136 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0.468,0.0907 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.456,0.0453 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0.1,0.0907 +0.333,0.174,0.174,0.233,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.395,0.395,0.267,0,0,0,0.479,0.672,0.672,0,0,0 +0.333,0.278,0.278,0.95,0,0,0,0.405,0.574,0.574,0,0,0.136 +0.333,0.331,0.331,0.233,0,0,0,0.42,0.559,0.559,0,0,0.227 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.0907 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.136 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0907 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.136 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.136 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.235 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.208 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.0453 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.0907 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.0907 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.0453 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0453 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.0453 +0.333,0.188,0.188,0,0,0.483,0.25,0.316,0.549,0.549,0,0.256,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0.452,0.0907 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0.905,0.0453 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0.175,0 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.0907 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.256 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0956 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.133 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.121 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0.288 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0.582 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.494 +0.667,0.279,0.279,0.233,0,0,0,0.271,0.591,0.591,0,0,0.181 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.136 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0453 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.136 +1,0.484,0.484,0.233,0.483,0,0,0.698,0.787,0.787,0.472,0,0.136 +1,0.619,0.619,0,0,0.767,0.433,0.742,0.742,0.742,0.373,0.219,0.181 +1,0.783,0.783,0,0,0,0.05,0.787,0.698,0.698,0,0.656,0.0453 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.176 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.237 +0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.17 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.142 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0541 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0907 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.134 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.253 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.453 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.181 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.181 +0.667,0.291,0.291,0.0167,0,0,0,0.477,0.67,0.67,0,0,0 +1,0.484,0.484,0.45,0,0,0,0.698,0.787,0.787,0,0,0.246 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.118 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.0907 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.227 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.289 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.352,0.462,0.462,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.667,0.0495,0.0495,0,0,0.0167,0,0.258,0.465,0.465,0,0,0.156 +0.667,0.301,0.301,0,0,0.5,0.483,0.337,0.581,0.581,0,0.144,0.154 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0.341,0.18 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.302 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.333,0.159,0.159,0.267,0,0,0,0.275,0.533,0.533,0,0,0.0907 +1,0.268,0.268,0.2,0,0,0,0.315,0.591,0.591,0,0,0.136 +0.667,0.269,0.269,0,0,0.267,0.133,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0.25,0.85,0.374,0.63,0.63,0,0.351,0.0907 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0.433,0.136 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0.319,0.0453 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0.347,0.227 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.495,0.0654 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0.466,0.499 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0.316,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0.322,0.0453 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0.518,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0.369,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.179,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.301,0.301,0,0,0.767,0.383,0.337,0.581,0.581,0,0.138,0.269 +1,0.424,0.424,0,0,0,1,0.255,0.638,0.638,0,0.477,0.0297 +0.333,0.17,0.17,0,0,0,1,0.26,0.523,0.523,0,0.596,0 +0.333,0.164,0.164,0,0,0,1,0.264,0.528,0.528,0,0.233,0 +0.333,0.16,0.16,0,0,0,1,0.26,0.533,0.533,0,0.329,0 +0.333,0.159,0.159,0,0,0,0.0833,0.275,0.533,0.533,0,0.753,0.136 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.264,0.0453 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0.378,0 +0.667,0.274,0.274,0,0.483,0,0,0.374,0.63,0.63,0.645,0.456,0.136 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0.611,0.0453 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0.449,0.317 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.0453 +1,0.783,0.783,0,0.733,0,0,0.787,0.698,0.698,0.631,0,0.227 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.577,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0.131,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.366 +0.667,0.175,0.175,0.233,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.0453 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.453 +0.333,0.16,0.16,0.233,0,0,0,0.26,0.533,0.533,0,0,0.136 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.268,0.268,0.233,0.733,0,0,0.315,0.591,0.591,0.76,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0.145,0,0.227 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0907 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.288 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.408 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0,0.317 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.202 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.303 +0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.1 +0.667,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.261 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.32 +1,0.066,0.066,0,0,0,0,0.359,0.482,0.482,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0558 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.301,0.301,0.267,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.299,0.299,0.2,0,0,0,0.256,0.581,0.581,0,0,0 +1,0.291,0.291,0,0.483,0,0,0.263,0.581,0.581,0.254,0,0 +1,0.279,0.279,0.0167,0,0.517,0.633,0.271,0.591,0.591,0.505,0.284,0.182 +1,0.382,0.382,0.217,0,0,0.35,0.266,0.668,0.668,0,0.591,0.174 +1,0.378,0.378,0,0,0,0,0.31,0.668,0.668,0,0.667,0.168 +1,0.378,0.378,0,0,0,0,0.344,0.653,0.653,0,0,0.0453 +0.667,0.269,0.269,0,0,0.517,0.383,0.322,0.61,0.61,0,0.0708,0.181 +0.667,0.162,0.162,0,0,0,1,0.316,0.548,0.548,0,0.34,0 +0.667,0.291,0.291,0,0,0,1,0.477,0.67,0.67,0,0.208,0.227 +0.667,0.339,0.339,0,0,0,0.35,0.551,0.68,0.68,0,0,0.507 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.5 +0.667,0.538,0.538,0,0.483,0,0,0.61,0.62,0.62,0.692,0,0.0453 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0.129,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.172,0.172,0.7,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.143 +0.667,0.279,0.279,0.3,0,0,0,0.271,0.591,0.591,0,0,0.166 +0.667,0.271,0.271,0.4,0,0,0,0.263,0.6,0.6,0,0,0.0453 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.0453 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.0453 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.136 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.499 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.499 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.105 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.235 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.309 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.0951 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.136 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.114 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0.287 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0.117 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.08 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.14 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.0907 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.272 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.272 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.136 +1,0.88,0.88,0,0.05,0,0,0.765,0.668,0.668,0,0,1 +1,0.415,0.415,0,0.683,0,0,0.522,0.551,0.551,0.767,0,0.402 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0.11,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0634 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0 +1,0.295,0.295,0,0.483,0,0,0.433,0.571,0.571,0.298,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0.519,0,0.199 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0453 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0453 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.269,0.269,0.767,0,0,0,0.293,0.6,0.6,0,0,0.181 +1,0.378,0.378,1,0,0,0,0.344,0.653,0.653,0,0,0.544 +1,0.379,0.379,1,0,0,0,0.355,0.683,0.683,0,0,0 +0.667,0.274,0.274,1,0,0,0,0.374,0.63,0.63,0,0,0.0907 +0.667,0.291,0.291,0.483,0,0,0,0.477,0.67,0.67,0,0,0.0907 +0.667,0.339,0.339,0.0167,0,0,0,0.551,0.68,0.68,0,0,0.272 +1,0.619,0.619,0.217,0,0,0,0.742,0.742,0.742,0,0,0.181 +1,0.783,0.783,0,0.5,0,0,0.787,0.698,0.698,0.235,0,0 +1,0.88,0.88,0,0.233,0,0,0.765,0.668,0.668,0.348,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.131 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.091 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.115 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.0868 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.121 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.0961 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0907 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.272 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.227 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0453 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0453 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.136 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.0453 +1,0.88,0.88,0.233,0,0,0,0.765,0.668,0.668,0,0,0.227 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.227 +0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.227 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.0907 +0.667,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.21 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.255 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0.41 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0453 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.136 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.227 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0.467,0,0,0,0.322,0.61,0.61,0,0,0.0453 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.136 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.136 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.406 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.181 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.317 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.181 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.309 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0432 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.333,0.17,0.17,0.233,0,0,0,0.26,0.523,0.523,0,0,0.363 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.181 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0.767,0,0,0,0.322,0.61,0.61,0,0,0.227 +0.667,0.274,0.274,1,0,0,0,0.374,0.63,0.63,0,0,0.0907 +1,0.412,0.412,0.117,0,0,0,0.587,0.772,0.772,0,0,0.0453 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.0907 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.0453 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.188 +1,0.88,0.88,0.7,0,0,0,0.765,0.668,0.668,0,0,0.147 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.229 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0865 +0.667,0.172,0.172,0.233,0,0,0,0.345,0.518,0.518,0,0,0.104 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.204 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0.767,0,0,0,0.263,0.6,0.6,0,0,0 +0.333,0.159,0.159,0.4,0,0,0,0.275,0.533,0.533,0,0,0.136 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0453 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.0907 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0453 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.499 +1,0.484,0.484,0.267,0,0,0,0.698,0.787,0.787,0,0,0.0907 +1,0.619,0.619,0.2,0,0,0,0.742,0.742,0.742,0,0,0.0453 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.227 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.0453 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.159 +1,0.249,0.249,0,0,0,0,0.554,0.534,0.534,0,0,0.0453 +1,0.099,0.099,0,0.55,0,0,0.381,0.501,0.501,0.382,0,0 +1,0.0578,0.0578,0,0.183,0,0,0.308,0.474,0.474,0.606,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0.821,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.0871,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.174,0.174,0,0,0.517,0.433,0.257,0.523,0.523,0,0.134,0 +0.667,0.0495,0.0495,0,0,0,0.55,0.258,0.465,0.465,0,0.427,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.135 +0.667,0.271,0.271,0,0,0.25,0.95,0.263,0.6,0.6,0,0.0862,0.181 +0.667,0.269,0.269,0,0,0,0.0333,0.293,0.6,0.6,0,0.525,0.136 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.166 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.227 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.363 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.181 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.317 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.346 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.192 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.222 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.408 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0621 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.308 +1,0.427,0.427,0,0.05,0,0,0.377,0.638,0.638,0,0,0.201 +1,0.424,0.424,0,0.433,0,0,0.255,0.638,0.638,0.681,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0.744,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0.814,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0.658,0,0.181 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0.276,0,0.181 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0772 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.385 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.409 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.119 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.391 +0.667,0.429,0.429,0.317,0,0,0,0.581,0.65,0.65,0,0,0.136 +1,0.783,0.783,0.85,0,0,0,0.787,0.698,0.698,0,0,0.136 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.544 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0.517,0.383,0.256,0.581,0.581,0,0.0515,0 +0.667,0.291,0.291,0,0,0,0.35,0.263,0.581,0.581,0,0.378,0.0907 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.313 +0.333,0.16,0.16,0,0.5,0,0,0.26,0.533,0.533,0.298,0,0.108 +0.667,0.269,0.269,0,0.233,0,0,0.293,0.6,0.6,0.571,0,0.415 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.423 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0415 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.134 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.308 +0.667,0.339,0.339,0,0.5,0,0,0.551,0.68,0.68,0.249,0,0.272 +0.667,0.429,0.429,0,0.233,0,0,0.581,0.65,0.65,0.23,0,0.136 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.181 +0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.272 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.139 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0 +0.667,0.291,0.291,0,0.733,0.517,0.233,0.263,0.581,0.581,0.427,0.142,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0.613,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0.297,0.0907 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0.468,0.0453 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0.471,0.0907 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0.412,0.0453 +0.667,0.274,0.274,0.0167,0,0,0,0.374,0.63,0.63,0,0.468,0.408 +0.667,0.291,0.291,0.45,0,0,0,0.477,0.67,0.67,0,0.181,0 +0.333,0.194,0.194,0.233,0,0,0,0.405,0.572,0.572,0,0,0.181 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.0907 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.136 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.181 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0943 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.344 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.138 +0.667,0.174,0.174,0.767,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.291,0.291,0.883,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.303 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.455 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.227 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.987 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.208 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.453 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.0907 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.272 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.227 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.265 +1,0.427,0.427,0.517,0,0,0,0.377,0.638,0.638,0,0,0.167 +1,0.424,0.424,0.183,0,0,0,0.255,0.638,0.638,0,0,0.169 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.227 +0.667,0.271,0.271,0,0.25,0,0,0.263,0.6,0.6,0.164,0,0.136 +0.667,0.269,0.269,0,0.483,0,0,0.293,0.6,0.6,0.49,0,0.181 +0.667,0.268,0.268,0.233,0,0.517,0.633,0.315,0.591,0.591,0,0.0978,0.0453 +0.667,0.269,0.269,0,0,0,0.6,0.322,0.61,0.61,0,0.409,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0.407,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.0907 +0.667,0.429,0.429,0,0.25,0,0,0.581,0.65,0.65,0.188,0,0.121 +1,0.783,0.783,0,0.483,0,0,0.787,0.698,0.698,0,0,0.677 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.272 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.291,0.291,0.233,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0,0.25,0,0,0.271,0.591,0.591,0.15,0,0 +0.667,0.271,0.271,0,0.233,0,0,0.263,0.6,0.6,0.653,0,0.0907 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0.589,0,0.0907 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.136 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.0907 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0453 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.227 +0.667,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.293 +1,0.619,0.619,0,0.483,0,0,0.742,0.742,0.742,0.498,0,0.0907 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0.551,0,0.136 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.136 +0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.398 +0.667,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.15 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.118 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.293 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.13 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.423 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0453 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.363 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.136 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +0.667,0.339,0.339,0,0.483,0,0,0.551,0.68,0.68,0.383,0,0.0907 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.132,0,0.136 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.181 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.363 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.118 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.424,0.424,0.317,0,0,0,0.255,0.638,0.638,0,0,0 +0.333,0.17,0.17,0.15,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.181 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.181 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.181 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0949 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.272 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0 +1,0.484,0.484,0.7,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.499 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.136 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0907 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0694 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.0536 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.0704 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.136 +0.667,0.279,0.279,0,0,0.517,0.633,0.271,0.591,0.591,0,0.233,0.181 +0.333,0.16,0.16,0,0,0,0.6,0.26,0.533,0.533,0,0,0.0907 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.0907 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.181 +0.667,0.274,0.274,0,0.25,0,0,0.374,0.63,0.63,0.145,0,0.136 +0.667,0.291,0.291,0,0.483,0,0,0.477,0.67,0.67,0.524,0,0.0453 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0.699,0,0.181 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0.653,0,0.136 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0.657,0,0.103 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.272 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.475 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.238 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0 +1,0.066,0.066,0,0,0,0,0.359,0.482,0.482,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0941 +0.667,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.292 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.21 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.233 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +1,0.394,0.394,0,0,0,0,0.277,0.653,0.653,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.0907 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0907 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0694 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.207 +0.667,0.274,0.274,0.233,0,0,0,0.374,0.63,0.63,0,0,0.136 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.0907 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.0453 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.0453 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.144 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.44 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.317 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.182 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.0644 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0966 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.272 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0907 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.165 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.207 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.111 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.181 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.0453 +0.667,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.136 +0.667,0.194,0.194,0,0.25,0,0,0.405,0.572,0.572,0.122,0,0.136 +0.667,0.239,0.239,0,0.483,0.517,0.383,0.419,0.558,0.558,0.746,0.0541,0.272 +1,0.538,0.538,0,0,0,0.6,0.61,0.62,0.62,0.74,0.188,0.136 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.0895 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.256 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.127 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0.267,0,0,0,0.345,0.518,0.518,0,0,0.0785 +1,0.301,0.301,0.2,0,0,0,0.337,0.581,0.581,0,0,0.176 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.918 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.348 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0453 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0453 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0907 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.136 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.136 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.0907 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.0453 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.136 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.272 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0843 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +1,0.427,0.427,0.7,0,0.267,0.133,0.377,0.638,0.638,0,0,0 +0.667,0.299,0.299,0,0,0.25,0.1,0.256,0.581,0.581,0,0.361,0 +0.667,0.291,0.291,0.7,0.5,0,0,0.263,0.581,0.581,0.279,0.486,0 +1,0.394,0.394,0,0.233,0,0,0.277,0.653,0.653,0.362,0.412,0.0664 +1,0.382,0.382,0,0,0,0,0.266,0.668,0.668,0,0.704,0.243 +1,0.378,0.378,0,0,0,0,0.31,0.668,0.668,0,0.342,0.17 +1,0.378,0.378,0,0,0,0,0.344,0.653,0.653,0,0.396,0.227 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0.458,0.136 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0907 +0.667,0.291,0.291,0,0.483,0.267,0.133,0.477,0.67,0.67,0.772,0,0.181 +0.667,0.339,0.339,0,0,0.25,0.6,0.551,0.68,0.68,0,0.288,0.227 +0.333,0.239,0.239,0,0,0,0,0.419,0.558,0.558,0,0.357,0.272 +0.667,0.538,0.538,0.467,0,0,0,0.61,0.62,0.62,0,0.359,0.227 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0.176,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.0453 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.119 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.0735 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.295,0.295,0.233,0.483,0,0,0.433,0.571,0.571,0.456,0,0.167 +1,0.427,0.427,0,0,0,0,0.377,0.638,0.638,0.401,0,0.238 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0 +1,0.411,0.411,0,0,0,0,0.266,0.638,0.638,0,0,0.0453 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0907 +0.333,0.16,0.16,0,0,0.317,0.183,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0.2,0.05,0.275,0.533,0.533,0,0.443,0.0453 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.373,0.0907 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0.378,0.0907 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0.426,0.0907 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0.7,0.227 +1,0.484,0.484,0,0.483,0,0,0.698,0.787,0.787,0.378,0.149,0.0453 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.141,0,0.0907 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.0453 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.0907 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.133 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,0.7,0,0,0,0.404,0.521,0.521,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.0907 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.227 +0.333,0.16,0.16,0,0.3,0,0,0.26,0.533,0.533,0.129,0,0.136 +0.667,0.269,0.269,0,0.433,0,0,0.293,0.6,0.6,0.883,0,0.0453 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0.27,0,0.342 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.0907 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.0453 +0.667,0.291,0.291,0,0.05,0,0,0.477,0.67,0.67,0,0,0.136 +1,0.484,0.484,0.817,0.683,0,0,0.698,0.787,0.787,0.601,0,0.136 +1,0.619,0.619,0.35,0,0,0,0.742,0.742,0.742,0.77,0,0 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0.172,0,0.218 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.136 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.126 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.114 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.078 +1,0.427,0.427,0,0,0.267,0.133,0.377,0.638,0.638,0,0,0.0732 +0.667,0.299,0.299,0,0,0.25,1,0.256,0.581,0.581,0,0.404,0.0907 +0.333,0.17,0.17,0,0,0,0.1,0.26,0.523,0.523,0,0.409,0.0453 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0.439,0.0907 +0.667,0.271,0.271,0.233,0,0,0,0.263,0.6,0.6,0,0.656,0.227 +0.667,0.269,0.269,0,0.483,0,0,0.293,0.6,0.6,0.272,0.78,0.0907 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0.397,0,0.357 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.186 +0.333,0.162,0.162,0.267,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.17,0.17,1,0,0,0,0.368,0.568,0.568,0,0,0.181 +0.667,0.339,0.339,0.633,0,0,0,0.551,0.68,0.68,0,0,0.0907 +0.333,0.239,0.239,0.683,0,0,0,0.419,0.558,0.558,0,0,0.181 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.136 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +0.667,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.137 +1,0.284,0.284,0.267,0,0,0,0.435,0.572,0.572,0,0,0.316 +1,0.404,0.404,0.683,0,0,0,0.378,0.641,0.641,0,0,0.0895 +1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.151 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.334 +0.333,0.15,0.15,0.517,0,0,0,0.261,0.534,0.534,0,0,0.247 +0.333,0.149,0.149,0.2,0,0,0,0.276,0.534,0.534,0,0,0.0907 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0907 +1,0.349,0.349,0,0,0,0,0.356,0.686,0.686,0,0,0.0907 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.0453 +0.333,0.173,0.173,0.467,0.25,0,0,0.405,0.574,0.574,0.0871,0,0.0453 +0.333,0.207,0.207,0.233,0.233,0.267,0.15,0.42,0.559,0.559,0.418,0,0.0453 +0.667,0.464,0.464,0,0,0.233,0.833,0.613,0.622,0.622,0,0.246,0.0453 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0.876,0.0907 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0.223,0.317 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0.249,0.261 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.228,0.228,0.767,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.284,0.284,0.917,0,0,0,0.435,0.572,0.572,0,0,0.11 +1,0.404,0.404,0,0,0,0,0.378,0.641,0.641,0,0,0.0453 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0453 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.181 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0.717,0,0,0.294,0.602,0.602,0.516,0,0.181 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0.216,0,0.0453 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0453 +0.667,0.151,0.151,0.767,0,0,0,0.316,0.549,0.549,0,0,0.0907 +0.667,0.157,0.157,1,0,0,0,0.368,0.569,0.569,0,0,0.363 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0.181 +0.667,0.365,0.365,1,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.671,0.671,1,0.5,0,0,0.79,0.701,0.701,0.232,0,0.0453 +1,0.799,0.799,0.533,0.217,0,0,0.768,0.671,0.671,0.556,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.231 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.259,0.259,0,0.717,0.517,0.15,0.271,0.592,0.592,0.57,0.0116,0.0453 +0.667,0.251,0.251,0,0,0.233,0.333,0.264,0.602,0.602,0,0.208,0.181 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.529,0.0453 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.122,0.181 +0.333,0.149,0.149,0.233,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,0.267,0,0,0,0.316,0.549,0.549,0,0,0.181 +0.667,0.264,0.264,0.45,0.483,0,0,0.479,0.672,0.672,0.232,0,0.0907 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0453 +0.667,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.227 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.135 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.15 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0907 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.45,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.102 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.263 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.27,0.27,0,0.483,0,0,0.264,0.582,0.582,0.568,0,0 +0.667,0.259,0.259,0.0167,0,0,0,0.271,0.592,0.592,0.713,0,0.0907 +0.667,0.251,0.251,0.217,0,0,0,0.264,0.602,0.602,0,0,0.179 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.0907 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.19 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.159 +0.667,0.252,0.252,0.267,0,0,0,0.375,0.632,0.632,0,0,0.272 +0.667,0.264,0.264,0.45,0,0,0,0.479,0.672,0.672,0,0,0.181 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.317 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.0453 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.136 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.181 +1,0.405,0.405,0,0,0.75,0.4,0.524,0.553,0.553,0,0.124,0.0797 +1,0.116,0.116,0,0,0,0.583,0.357,0.489,0.489,0,0.547,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.408 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.257 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.0453 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +0,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0.227 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0907 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0907 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.333,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.607 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.0907 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0.115,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.667,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.278,0.278,0.45,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +1,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +1,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.0453 +0.667,0.149,0.149,0,0.25,0,0,0.287,0.529,0.529,0.174,0,0.0453 +0.667,0.149,0.149,0,0.233,0,0,0.29,0.539,0.539,0.65,0,0.0907 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0.606,0,0.0907 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0.819,0,0.388 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0.643,0,0.545 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0.664,0,0.105 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.413,0,0.0907 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.0453 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.21 +1,0.284,0.284,0,0.25,0,0,0.435,0.572,0.572,0.138,0,0 +1,0.404,0.404,0.767,0.467,0,0,0.378,0.641,0.641,0.662,0,0.387 +1,0.392,0.392,0.433,0,0,0,0.256,0.641,0.641,0.818,0,0.0875 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0.741,0,0.136 +1,0.364,0.364,0.767,0,0,0,0.278,0.656,0.656,0,0,0.079 +1,0.352,0.352,0.667,0,0,0,0.267,0.671,0.671,0,0,0.575 +1,0.349,0.349,0,0,0,0,0.312,0.671,0.671,0,0,0.135 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.181 +0.333,0.157,0.157,0.45,0,0,0,0.368,0.569,0.569,0,0,0.0907 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0.267,0,0,0,0.583,0.652,0.652,0,0,0 +1,0.671,0.671,0.683,0,0,0,0.79,0.701,0.701,0,0,0.0907 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.0907 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.366 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.164,0.164,0.233,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,0,0,0.0167,0.15,0.271,0.592,0.592,0,0,0.0907 +0.667,0.251,0.251,0.267,0,0.233,1,0.264,0.602,0.602,0,0.193,0.0453 +0.667,0.249,0.249,0.45,0,0,1,0.294,0.602,0.602,0,0.606,0.0907 +0.667,0.249,0.249,0,0,0,0.0667,0.316,0.592,0.592,0,0.362,0.363 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0.684,0.363 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.209,0.0907 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0.43,0.0453 +0.667,0.296,0.296,0,0.483,0,0,0.553,0.682,0.682,0.258,0.292,0.136 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0.463,0.523,0.0453 +0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0.0296,0.136 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.272 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0453 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0418 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.423 +1,0.284,0.284,0.267,0,0,0,0.435,0.572,0.572,0,0,0.115 +0.667,0.168,0.168,0.683,0,0,0,0.298,0.524,0.524,0,0,0.0907 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.363 +0.667,0.27,0.27,0.767,0,0,0,0.264,0.582,0.582,0,0,0.0453 +0.667,0.259,0.259,0.183,0,0,0,0.271,0.592,0.592,0,0,0.0453 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0453 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.227 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.136 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.0453 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.296,0.296,0.717,0.25,0,0,0.553,0.682,0.682,0.129,0,0.181 +0.667,0.365,0.365,0,0.233,0,0,0.583,0.652,0.652,0.671,0,0.319 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0453 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.0907 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.0453 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.106 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.129 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.262 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.498 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.0143 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.0453 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.181 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +0.667,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.363 +0.667,0.296,0.296,0.233,0,0,0,0.553,0.682,0.682,0,0,0.136 +1,0.523,0.523,0,0,0.0167,0,0.745,0.745,0.745,0,0,0 +1,0.671,0.671,0,0,0.483,0.9,0.79,0.701,0.701,0,0.277,0.136 +1,0.549,0.549,0,0,0,0.0833,0.598,0.602,0.602,0,0,0.281 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.186 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.574 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.085 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.0679 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.224 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0614 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0.239 +1,0.364,0.364,0,0,0,0,0.278,0.656,0.656,0,0,0.187 +1,0.352,0.352,0.767,0,0,0,0.267,0.671,0.671,0,0,0.227 +1,0.349,0.349,0.183,0,0,0,0.312,0.671,0.671,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.0453 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.0907 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.0453 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.136 +0.667,0.296,0.296,0.717,0.483,0,0,0.553,0.682,0.682,0.545,0,0.0453 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0453 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.591 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.136 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.228 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.667,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.217,0,0,0,0.258,0.465,0.465,0,0,0.258 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.251,0.251,0,0,0.5,0.483,0.264,0.602,0.602,0,0.149,0.0453 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.586,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.447,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0.434,0.0907 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.24 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.272 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.365,0.365,0.233,0,0,0,0.583,0.652,0.652,0,0,0.136 +1,0.671,0.671,0,0,0.5,0.483,0.79,0.701,0.701,0,0.121,0.0907 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0.462,0.544 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.327 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.139,0.139,0.267,0.25,0,0,0.331,0.494,0.494,0.164,0,0 +1,0.402,0.402,0.45,0.467,0,0,0.523,0.626,0.626,0.61,0,0.0948 +1,0.404,0.404,0,0,0,0,0.378,0.641,0.641,0.8,0,0.307 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0.125,0,0.181 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.072 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.271 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0958 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.363 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.0453 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.0453 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.0907 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.227 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.243 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.0453 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.186 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.266 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.181 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.0556 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0907 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.0907 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.0453 +0.667,0.149,0.149,0,0,0.5,0.4,0.29,0.539,0.539,0,0.0541,0.136 +0.667,0.151,0.151,0,0,0,1,0.316,0.549,0.549,0,0.263,0.0453 +0.667,0.264,0.264,0,0,0,0.333,0.479,0.672,0.672,0,0.234,0.544 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.44,0.0907 +0.667,0.365,0.365,0.233,0,0,0,0.583,0.652,0.652,0,0.362,0.272 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0.467,0.0907 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0.393,0.224 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0.319,0.357 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0.561,0.136 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0.47,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0.458,0.0453 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0.448,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0.615,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0.0837,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.413 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.273 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.176 +1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0,0,0.0907 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.136 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.0453 +1,0.352,0.352,0,0,0,0,0.267,0.671,0.671,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.181 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.0453 +0.667,0.296,0.296,0.233,0,0,0,0.553,0.682,0.682,0,0,0.0453 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0453 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.544 +1,0.799,0.799,0.233,0,0,0,0.768,0.671,0.671,0,0,0.0907 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0873 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0687 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.103 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.333,0.154,0.154,0,0.5,0,0,0.265,0.529,0.529,0.254,0,0 +0.667,0.15,0.15,0,0.217,0,0,0.261,0.534,0.534,0.286,0,0.0453 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.0453 +0.667,0.252,0.252,0,0,0.5,0.4,0.375,0.632,0.632,0,0.0669,0.136 +0.667,0.264,0.264,0.267,0,0,0.333,0.479,0.672,0.672,0,0.642,0.131 +0.667,0.296,0.296,0.683,0,0,0,0.553,0.682,0.682,0,0.559,0.0907 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0.551,0.317 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0.498,0.347 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0.402,0.317 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0.456,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0.408,0.322 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.0722 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.177 +1,0.0781,0.0781,0.717,0,0,0,0.305,0.474,0.474,0,0,0.0148 +1,0.317,0.317,0.267,0,0,0,0.478,0.551,0.551,0,0,0.0639 +1,0.402,0.402,1,0,0,0,0.523,0.626,0.626,0,0,0.199 +0.667,0.286,0.286,0.167,0,0,0,0.338,0.582,0.582,0,0,0.361 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0453 +0.667,0.27,0.27,0.233,0,0.25,0.4,0.264,0.582,0.582,0,0,0.0453 +0.667,0.259,0.259,0,0,0,0.583,0.271,0.592,0.592,0,0.714,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0.488,0.136 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.188,0.0907 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.27,0.181 +0.667,0.249,0.249,0.717,0,0,0,0.323,0.612,0.612,0,0.546,0.272 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.346,0.0907 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0.198,0.0907 +0.667,0.296,0.296,0.717,0,0,0,0.553,0.682,0.682,0,0,0.0453 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.136 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.0907 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.272 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0.217,0.483,0,0,0.331,0.494,0.494,0.531,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.135 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.164,0.164,0.717,0,0,0,0.257,0.524,0.524,0,0,0.0907 +0.667,0.27,0.27,0,0,0.5,0.4,0.264,0.582,0.582,0,0.0541,0.0453 +0.667,0.259,0.259,0,0,0,0.0833,0.271,0.592,0.592,0,0.306,0.272 +1,0.352,0.352,0.717,0,0,0,0.267,0.671,0.671,0,0.53,0 +1,0.349,0.349,0.233,0,0,0,0.312,0.671,0.671,0,0.318,0.0907 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0 +1,0.349,0.349,0,0,0,0,0.356,0.686,0.686,0,0,0.0453 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.0453 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.0453 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.272 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.0907 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.312 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.299 +1,0.405,0.405,0.717,0.483,0,0,0.524,0.553,0.553,0.242,0,0.0907 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.747,0,0.114 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.374 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.0938 +1,0.139,0.139,0.267,0,0,0,0.331,0.494,0.494,0,0,0.437 +1,0.284,0.284,0.683,0,0,0,0.435,0.572,0.572,0,0,0.15 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.175 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.272 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.0907 +0.667,0.249,0.249,0,0.483,0,0,0.316,0.592,0.592,0.634,0,0.272 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.272 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.0907 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.317 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.0907 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.49,0,0.138 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.129 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.169 +1,0.168,0.168,0.233,0,0,0,0.298,0.524,0.524,0,0,0.114 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0933 +0.667,0.27,0.27,0.467,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.136 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.317 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0.0453 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.355 +0.667,0.151,0.151,0.0167,0,0,0,0.316,0.549,0.549,0,0,0.0907 +1,0.371,0.371,0.45,0,0,0,0.59,0.775,0.775,0,0,0.363 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.0907 +1,0.523,0.523,0,0.717,0,0,0.745,0.745,0.745,0.564,0,0.283 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.636,0,0.2 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.209,0,0.0453 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.0976 +1,0.284,0.284,0.2,0,0,0,0.435,0.572,0.572,0,0,0.305 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.123 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.453 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.181 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.252,0.252,0.717,0,0,0,0.375,0.632,0.632,0,0,0.272 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.0453 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0907 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.363 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.0453 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.0453 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.0907 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.0893 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.0453 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.0907 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.0453 +0.333,0.16,0.16,0,0,0.5,0.233,0.261,0.524,0.524,0,0.0611,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.68,0.136 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0.315,0.0907 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0.384,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0.474,0 +1,0.349,0.349,0,0,0,0,0.356,0.686,0.686,0,0.308,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.456,0.317 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0.664,0.0453 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.465,0.0453 +0.667,0.365,0.365,0.233,0,0,0,0.583,0.652,0.652,0,0.399,0.294 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0.417,0.0907 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0.526,0.0907 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0.296,0.312 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.0907 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.116 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0.0167,0,0.294,0.602,0.602,0,0,0.0907 +0.667,0.249,0.249,0,0,0.733,0.233,0.316,0.592,0.592,0,0.319,0.0907 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.409,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.793,0.181 +0.333,0.157,0.157,0.267,0,0,0,0.368,0.569,0.569,0,0,0.499 +0.333,0.173,0.173,1,0.25,0,0,0.405,0.574,0.574,0.15,0,0.578 +0.667,0.365,0.365,0.65,0.233,0.5,0.4,0.583,0.652,0.652,0.544,0.018,0.246 +1,0.671,0.671,0,0,0,0.833,0.79,0.701,0.701,0.793,0.462,0.0453 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0.569,0.0453 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0.315,0.0907 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.251,0.0907 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.129 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.175 +1,0.404,0.404,0,0.483,0,0,0.378,0.641,0.641,0.495,0,0.14 +1,0.392,0.392,0,0,0,0,0.256,0.641,0.641,0,0,0.1 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.777 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.131 +1,0.352,0.352,0,0,0,0,0.267,0.671,0.671,0,0,0.544 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.181 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.136 +0.333,0.149,0.149,0,0.483,0.767,0.133,0.29,0.539,0.539,0.591,0.214,0.0453 +0.667,0.151,0.151,0,0,0.25,0.1,0.316,0.549,0.549,0,0.645,0 +0.667,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0.423,0.544 +0.667,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0.382,0.0907 +0.667,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0.549,0 +0.667,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.426 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.197 +0.667,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.301 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0948 +1,0.228,0.228,0.267,0,0,0,0.405,0.523,0.523,0,0,0.0528 +0.667,0.167,0.167,1,0,0,0,0.346,0.519,0.519,0,0,0.097 +0.333,0.168,0.168,0.417,0,0,0,0.298,0.524,0.524,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.136 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.181 +0.667,0.251,0.251,0,0.483,0,0,0.264,0.602,0.602,0.657,0,0.0453 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0.127,0,0.227 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.272 +0.333,0.149,0.149,0,0,0.5,0.4,0.29,0.539,0.539,0,0.0746,0.0453 +0.667,0.252,0.252,0,0,0,0.0833,0.375,0.632,0.632,0,0.587,0.181 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0.556,0.181 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0.411,0.0453 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0.375,0.317 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0.356,0.0453 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0.279,0.0907 +0.667,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0.259,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0961 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.184 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.0606 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.272 +0.333,0.149,0.149,0,0,0.267,0.15,0.276,0.534,0.534,0,0,0.136 +0.667,0.249,0.249,0,0,0.233,0.333,0.316,0.592,0.592,0,0.366,0.0453 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0.69,0.0453 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.337,0.136 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0.374,0.136 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.531,0.363 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0.193,0.317 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.181 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.124 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.181 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.404,0.404,0.267,0,0,0,0.378,0.641,0.641,0,0,0.125 +1,0.392,0.392,0.2,0,0,0,0.256,0.641,0.641,0,0,0.0951 +1,0.381,0.381,0.267,0,0,0,0.267,0.641,0.641,0,0,0 +0.667,0.259,0.259,0.45,0,0,0,0.271,0.592,0.592,0,0,0.181 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.0453 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.0453 +1,0.249,0.249,0.267,0,0,0,0.316,0.592,0.592,0,0,0.317 +1,0.249,0.249,0.683,0,0,0,0.323,0.612,0.612,0,0,0.0453 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.136 +0.667,0.157,0.157,0.267,0,0,0,0.368,0.569,0.569,0,0,0.0453 +0.667,0.173,0.173,1,0,0,0,0.405,0.574,0.574,0,0,0.181 +1,0.365,0.365,0.65,0.483,0,0,0.583,0.652,0.652,0.254,0,0.573 +1,0.671,0.671,0.267,0,0.517,0.15,0.79,0.701,0.701,0.666,0.0463,0.0453 +1,0.799,0.799,0.45,0,0.233,0.333,0.768,0.671,0.671,0,0.358,0.295 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.227 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.158 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.286,0.286,0.767,0,0,0,0.338,0.582,0.582,0,0,0.131 +1,0.392,0.392,0.917,0,0,0,0.256,0.641,0.641,0,0,0.0722 +1,0.381,0.381,0,0,0,0,0.267,0.641,0.641,0,0,0.457 +1,0.364,0.364,0,0,0,0,0.278,0.656,0.656,0,0,0.0453 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.136 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.0453 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.0907 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.136 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.136 +0.333,0.157,0.157,0.233,0,0,0,0.368,0.569,0.569,0,0,0.136 +0.667,0.296,0.296,0.267,0,0,0,0.553,0.682,0.682,0,0,0.356 +0.667,0.365,0.365,0.2,0,0,0,0.583,0.652,0.652,0,0,0.106 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.117 +1,0.799,0.799,0,0.25,0,0,0.768,0.671,0.671,0.131,0,0 +1,0.582,0.582,0,0.233,0,0,0.656,0.596,0.596,0.716,0,0.317 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0.627,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.386 +1,0.404,0.404,0,0,0,0,0.378,0.641,0.641,0,0,0.136 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.136 +0.333,0.16,0.16,0,0.483,0,0,0.261,0.524,0.524,0.258,0,0.272 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0.763,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0.761,0,0.272 +0.333,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0.533,0,0.0453 +0.667,0.149,0.149,0.2,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0907 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.181 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.333,0.257,0.257,0,0,0,0,0.435,0.544,0.544,0,0,0.227 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.139,0.139,0.767,0,0.0167,0,0.331,0.494,0.494,0,0,0 +1,0.284,0.284,0.183,0,0.733,0.233,0.435,0.572,0.572,0,0.212,0.535 +0.667,0.286,0.286,0.0167,0,0,0,0.338,0.582,0.582,0,0.395,0 +0.667,0.278,0.278,0.7,0,0,0,0.257,0.582,0.582,0,0.518,0.0453 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0.662,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0.227,0.181 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.136 +0.333,0.149,0.149,0.233,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.136 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.0453 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.227 +0.333,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0,0.0453 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.0453 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.0453 +1,0.671,0.671,0,0.483,0,0,0.79,0.701,0.701,0.605,0,0.287 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0.176,0,0.449 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.307 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.178 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.0533 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.284,0.284,0.717,0,0.267,0.15,0.435,0.572,0.572,0,0,0.136 +0.667,0.168,0.168,0,0,0.233,0.583,0.298,0.524,0.524,0,0.42,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0.749,0.155 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0.592,0.161 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.459,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0.551,0 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0.445,0 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.21,0.136 +0.333,0.149,0.149,0.467,0,0,0,0.29,0.539,0.539,0,0,0.0907 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.0453 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.273 +1,0.42,0.42,0.267,0,0.0167,0,0.701,0.79,0.79,0,0,0.418 +1,0.523,0.523,0.2,0,0.483,0.233,0.745,0.745,0.745,0,0.225,0.0453 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0.454,0.181 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0.342,0.136 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0.281,0.0907 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0.296,0.11 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0.318,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.317 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0576 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.24 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.102 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.157 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.113 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.553 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0907 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.136 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0907 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.148,0.148,0.0167,0,0,0,0.336,0.525,0.525,0,0,0.0907 +0.333,0.161,0.161,0.217,0,0,0,0.366,0.53,0.53,0,0,0.181 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.227 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.227 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.136 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.0907 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0.219 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.272 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.242 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.134 +0.667,0.245,0.245,0,0,0.267,0.15,0.24,0.519,0.519,0,0,0.115 +0.667,0.237,0.237,0,0,0.233,0.0833,0.234,0.528,0.528,0,0.36,0.104 +0.667,0.235,0.235,0.0167,0,0,0,0.259,0.528,0.528,0,0.579,0.0907 +0,0.0495,0.0495,0.217,0,0,0,0.258,0.465,0.465,0,0,0.317 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.227 +0.333,0.148,0.148,0,0,0.75,0.4,0.336,0.525,0.525,0,0.197,0.272 +1,0.384,0.384,0,0,0,0.567,0.584,0.658,0.658,0,0.315,0.0453 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0.29,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.518,0.136 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.282 +1,0.136,0.136,0.267,0,0,0,0.305,0.463,0.463,0,0,0.0553 +1,0.277,0.277,0.2,0,0,0,0.376,0.503,0.503,0,0,0.312 +0.667,0.274,0.274,0.267,0,0,0,0.296,0.511,0.511,0,0,0.145 +0.667,0.263,0.263,0.2,0,0,0,0.228,0.511,0.511,0,0,0.27 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.0453 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.272 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.227 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.136 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0907 +0.667,0.238,0.238,0.467,0,0,0,0.327,0.552,0.552,0,0,0.263 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.227 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.272 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.331 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.343 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0453 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.317 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0453 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.0893 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0.233,0,0,0,0.234,0.528,0.528,0,0,0.272 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.181 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0,0.25,0,0,0.413,0.585,0.585,0.127,0,0.181 +0.667,0.273,0.273,0,0.217,0,0,0.475,0.594,0.594,0.634,0,0.181 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.136 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.284 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.179 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.56 +1,0.163,0.163,0.233,0,0,0,0.317,0.484,0.484,0,0,0.0619 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.305 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0907 +0.333,0.147,0.147,0.0167,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0.45,0,0,0,0.246,0.496,0.496,0,0,0.272 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0453 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.272 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.0453 +0.333,0.148,0.148,0.267,0,0,0,0.336,0.525,0.525,0,0,0.136 +1,0.384,0.384,0.2,0,0,0,0.584,0.658,0.658,0,0,0.136 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.0453 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.207 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.207 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.0907 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.14 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0453 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.0453 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.0907 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0453 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.227 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.222 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.227 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.501,0.501,0,0,0.5,0.233,0.512,0.528,0.528,0,0.0598,0.264 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0.401,0.0886 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0.548,0.227 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0.663,0.0453 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0.62,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0.31,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.162 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0.233,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0.7,0,0,0.259,0.528,0.528,0.718,0,0 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0.218,0,0.181 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.272 +0.333,0.144,0.144,0,0,0.267,0.15,0.292,0.509,0.509,0,0,0.0907 +0.333,0.148,0.148,0,0,0.233,1,0.336,0.525,0.525,0,0.349,0.29 +0.667,0.273,0.273,0,0,0,0.05,0.475,0.594,0.594,0,0.244,0.227 +0.333,0.189,0.189,0,0,0,0,0.379,0.517,0.517,0,0.438,0.216 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.421,0.373 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0.618,0.165 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0.54,0.0453 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0.64,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0.282,0.0609 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.224 +1,0.39,0.39,0,0,0.0167,0,0.436,0.521,0.521,0,0,0.197 +0.667,0.274,0.274,0,0,0.483,0.9,0.296,0.511,0.511,0,0.308,0 +0.667,0.263,0.263,0.517,0,0,0.0667,0.228,0.511,0.511,0,0.172,0.363 +0.667,0.256,0.256,0.417,0,0,0,0.234,0.511,0.511,0,0,0.0453 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.136 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0722 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.298 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0602 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.247,0.247,0.233,0.717,0,0,0.413,0.585,0.585,0.638,0,0.0907 +0.667,0.273,0.273,0,0.217,0,0,0.475,0.594,0.594,0.714,0,0.227 +0.667,0.328,0.328,0,0.467,0.267,0.15,0.5,0.569,0.569,0.69,0,0.227 +1,0.595,0.595,0,0,0.233,0.0833,0.658,0.583,0.583,0,0.501,0.0907 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0.431,0.297 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0.445,0.136 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0.217,0.0453 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0.516,0.181 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0.1,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.076 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.169 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.15 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.0907 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0907 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0.517,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,1,0,0.5,0.65,0.327,0.552,0.552,0,0.138,0 +0.667,0.247,0.247,1,0,0,0.317,0.413,0.585,0.585,0,0.394,0.227 +0.667,0.273,0.273,1,0,0,0,0.475,0.594,0.594,0,0.0927,0.0907 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0.256 +1,0.595,0.595,0.683,0,0,0,0.658,0.583,0.583,0,0,0.395 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.213 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.0453 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0.107,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.111 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.415 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.255 +1,0.387,0.387,0.233,0,0,0,0.315,0.534,0.534,0,0,0.16 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0907 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.181 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.0453 +0.333,0.142,0.142,0,0.25,0,0,0.271,0.501,0.501,0.118,0,0.0907 +0.333,0.144,0.144,0,0.217,0.5,0.4,0.292,0.509,0.509,0.725,0.0335,0.0946 +0.667,0.247,0.247,0,0,0,0.0833,0.413,0.585,0.585,0,0.465,0.323 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.68,0.0453 +1,0.467,0.467,0,0.25,0,0,0.621,0.621,0.621,0.139,0.36,0.272 +1,0.595,0.595,0,0.45,0,0,0.658,0.583,0.583,0.547,0.371,0.181 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0.805,0.793,0.274 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0.252,0.511,0 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0.181,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0.481,0.232 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.39,0.39,0.233,0,0,0,0.436,0.521,0.521,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.0907 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.0453 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.317 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.136 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.317 +0.333,0.142,0.142,0,0,0.5,0.4,0.271,0.501,0.501,0,0.0463,0.499 +0.333,0.144,0.144,0,0,0,0.567,0.292,0.509,0.509,0,0.497,0.0907 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0.378,0.0453 +0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0.456,0.136 +0.667,0.328,0.328,0.233,0,0,0,0.5,0.569,0.569,0,0.476,0.0453 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0.721,0 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0.625,0.0453 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0.197,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.138 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.223 +1,0.163,0.163,0.517,0,0,0,0.317,0.484,0.484,0,0,0.24 +0.667,0.274,0.274,0.417,0,0,0,0.296,0.511,0.511,0,0,0.0409 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.0453 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.117 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.0453 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0907 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0907 +1,0.332,0.332,0.233,0,0,0,0.361,0.596,0.596,0,0,0.0907 +1,0.345,0.345,0.233,0.25,0,0,0.491,0.646,0.646,0.105,0,0.453 +1,0.384,0.384,0.233,0.217,0,0,0.584,0.658,0.658,0.634,0,0.317 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.753,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0.24,0,0.0453 +1,0.726,0.726,0,0.7,0,0,0.639,0.559,0.559,0.509,0,0.123 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0.557,0,0.254 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.132 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.1 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.0843 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.227 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.516 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.0453 +0.333,0.143,0.143,0.233,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.235,0.235,0,0,0.0167,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,1,0.133,0.277,0.519,0.519,0,0.363,0.0907 +0.667,0.235,0.235,0,0.467,0.25,0.583,0.284,0.536,0.536,0.348,0.655,0.0453 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0.34,0.633,0.136 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.113,0.408 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0907 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.576 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.211 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.227 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.19 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.139 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.401 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0,0.497 +1,0.37,0.37,0.7,0,0,0,0.213,0.534,0.534,0,0,0.136 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.136 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.0907 +0.333,0.143,0.143,0,0,0.0167,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0.483,0.233,0.258,0.496,0.496,0,0.0309,0.136 +0.667,0.235,0.235,0.233,0,0,0,0.277,0.519,0.519,0,0,0.181 +1,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0453 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.0907 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.363 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.136 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.198 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.227 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.227 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.196 +1,0.136,0.136,0.267,0,0,0,0.305,0.463,0.463,0,0,0.084 +1,0.277,0.277,0.433,0,0,0,0.376,0.503,0.503,0,0,0.452 +1,0.387,0.387,0.233,0,0,0,0.315,0.534,0.534,0,0,0.0578 +0.667,0.263,0.263,0,0.7,0,0,0.228,0.511,0.511,0.503,0,0.0907 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.0907 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.0453 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.0907 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.363 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.136 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.136 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.0907 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.136 +0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.181 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.17 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.181 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0453 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0.2,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0.7,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.163,0.163,0.7,0,0,0,0.317,0.484,0.484,0,0,0.0453 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.558 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.091 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.226 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0.233,0.7,0,0,0.246,0.496,0.496,0.592,0,0.181 +0.667,0.235,0.235,0,0,0.5,0.65,0.259,0.528,0.528,0.279,0.184,0.0453 +1,0.327,0.327,0,0,0,0.0667,0.287,0.546,0.546,0,0.444,0 +1,0.328,0.328,0,0,0,0,0.297,0.571,0.571,0,0.438,0.363 +1,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.403,0.227 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.408,0.136 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.381,0 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0.435,0.227 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.21 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.285 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0566 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.115 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.253 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.329 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.178 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.47 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.181 +0,0.0495,0.0495,0.767,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.235,0.235,0.417,0,0,0,0.259,0.528,0.528,0,0,0.0453 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.136 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.0453 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.499 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.227 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.227 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0521 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.418 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.4 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.169 +0.667,0.256,0.256,0.267,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.245,0.245,0.667,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.136 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.227 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.272 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0907 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.0907 +0.667,0.161,0.161,0.267,0,0,0,0.366,0.53,0.53,0,0,0.0939 +0.667,0.328,0.328,0.2,0,0,0,0.5,0.569,0.569,0,0,0.0453 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.227 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0453 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.13 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.147,0.147,0,0.467,0,0,0.249,0.492,0.492,0.46,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0.645,0,0 +0.333,0.142,0.142,0,0,0.0167,0,0.258,0.496,0.496,0.117,0,0.0907 +0.667,0.235,0.235,0,0,0.483,0.483,0.277,0.519,0.519,0,0.198,0.33 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0.466,0.338 +0.667,0.238,0.238,0.233,0,0,0,0.327,0.552,0.552,0,0,0.187 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.128 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.387 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.408 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.227 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.363 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.235 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.182 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.171 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.0907 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.224 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.131 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.2 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.136 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.0453 +0.667,0.247,0.247,0.233,0,0,0,0.413,0.585,0.585,0,0,0.317 +1,0.384,0.384,0,0.7,0,0,0.584,0.658,0.658,0.605,0,0.227 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.261,0,0.0453 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.0453 +1,0.726,0.726,0,0.7,0,0,0.639,0.559,0.559,0.563,0,0.176 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0.279,0,0.0453 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.0835 +1,0.277,0.277,0.233,0,0,0,0.376,0.503,0.503,0,0,0.0923 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0,0.225 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.154 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.0907 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.227 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0.261 +1,0.328,0.328,0,0,0,0,0.259,0.559,0.559,0,0,0.228 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0,0,0 +1,0.328,0.328,0.0167,0,0,0,0.297,0.571,0.571,0,0,0.0907 +1,0.332,0.332,1,0,0,0,0.361,0.596,0.596,0,0,0.181 +0.667,0.247,0.247,0.867,0,0,0,0.413,0.585,0.585,0,0,0.162 +0.667,0.273,0.273,0.0167,0,0,0,0.475,0.594,0.594,0,0,0.0453 +1,0.328,0.328,0.683,0,0,0,0.5,0.569,0.569,0,0,0.317 +1,0.595,0.595,0,0,0.5,0.4,0.658,0.583,0.583,0,0.0444,0.0907 +1,0.726,0.726,0,0,0,1,0.639,0.559,0.559,0,0.558,0.153 +1,0.557,0.557,0,0,0,1,0.547,0.497,0.497,0,0.0463,0.0453 +1,0.116,0.116,0,0,0,1,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,1,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,1,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0.883,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.0875 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.263,0.263,0,0,0.0167,0,0.228,0.511,0.511,0,0,0.0907 +0.667,0.256,0.256,0,0,0.733,0.65,0.234,0.511,0.511,0,0.287,0.0453 +0.667,0.245,0.245,0,0,0,0.8,0.24,0.519,0.519,0,0.45,0.181 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0.194,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0.532,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0.349,0.453 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0.266,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.371,0.192 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.589,0.365 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0.474,0.357 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0.326,0.149 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0.229,0.141 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.0907 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.0907 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.234 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.0883 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.2 +1,0.39,0.39,0.467,0,0,0,0.436,0.521,0.521,0,0,0.254 +1,0.387,0.387,0,0,0,0,0.315,0.534,0.534,0,0,0.17 +1,0.37,0.37,0,0,0,0,0.213,0.534,0.534,0,0,0.17 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.539 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0453 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.136 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.0453 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.181 +0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.227 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.317 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.227 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.156 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.0453 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0.267,0,0,0,0.305,0.463,0.463,0,0,0.169 +1,0.39,0.39,0.433,0,0,0,0.436,0.521,0.521,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.143 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.992 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.0453 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.136 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.333,0.142,0.142,0,0.25,0,0,0.268,0.492,0.492,0.174,0,0.317 +0.333,0.142,0.142,0,0.217,0,0,0.271,0.501,0.501,0.38,0,0 +0.333,0.144,0.144,0.517,0,0,0,0.292,0.509,0.509,0,0,0 +0.333,0.148,0.148,0.183,0,0,0,0.336,0.525,0.525,0,0,0.181 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.796 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.0146 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.181 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.0907 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.0948 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.0724 +1,0.274,0.274,0.233,0,0,0,0.296,0.511,0.511,0,0,0.129 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.341 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.181 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0907 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.136 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.181 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.0453 +0.667,0.238,0.238,0.7,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.0453 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.0907 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.181 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.227 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.0453 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.272 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.294 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.517,0,0.5,0.4,0.258,0.465,0.465,0,0.0772,0.0907 +1,0.235,0.235,0.183,0.467,0,0.317,0.259,0.528,0.528,0.246,0.367,0.181 +1,0.327,0.327,0,0,0,0,0.287,0.546,0.546,0.242,0.474,0 +0.667,0.235,0.235,0,0.467,0,0,0.284,0.536,0.536,0.676,0.615,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0.833,0.39,0.0453 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0.425,0.417,0.317 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.619,0.136 +0.667,0.328,0.328,0.517,0,0,0,0.5,0.569,0.569,0,0.0927,0.0453 +1,0.595,0.595,0.183,0,0,0,0.658,0.583,0.583,0,0,0.0453 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0453 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.227 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0907 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.221 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.254 +0.667,0.163,0.163,0,0,0.517,0.15,0.317,0.484,0.484,0,0.0425,0.123 +1,0.274,0.274,0,0,0.233,1,0.296,0.511,0.511,0,0.561,0 +0.667,0.263,0.263,0,0,0,1,0.228,0.511,0.511,0,0.482,0 +0.667,0.256,0.256,0,0,0,0.0167,0.234,0.511,0.511,0,0.598,0.0907 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0.23,0.0907 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.0453 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.0907 +0.667,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.136 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.136 +0.667,0.144,0.144,0.267,0,0,0,0.292,0.509,0.509,0,0,0.0907 +0.667,0.247,0.247,0.2,0,0,0,0.413,0.585,0.585,0,0,0.272 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.177 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.435 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.181 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.134 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.361 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.198 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.106 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.0453 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.0453 +0.667,0.237,0.237,0.233,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.272 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.0453 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0453 +0.667,0.238,0.238,0.267,0,0,0,0.327,0.552,0.552,0,0,0.453 +1,0.345,0.345,1,0,0,0,0.491,0.646,0.646,0,0,0.181 +0.667,0.273,0.273,0.15,0.7,0,0,0.475,0.594,0.594,0.601,0,0.363 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.615,0,0.0453 +1,0.595,0.595,0,0.467,0,0,0.658,0.583,0.583,0.681,0,0 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0.742,0,0 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.177 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.321 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.0907 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.227 +0.333,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.263,0.263,0.233,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.0453 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.0453 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.0907 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.0453 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0453 +0.667,0.238,0.238,0.767,0,0,0,0.327,0.552,0.552,0,0,0.181 +0.667,0.247,0.247,0.167,0,0,0,0.413,0.585,0.585,0,0,0.0453 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.227 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.0907 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.227 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0907 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.0907 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.408 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0825 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.119 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.101 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.185 +0.333,0.153,0.153,0.233,0,0,0,0.246,0.488,0.488,0,0,0.202 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.136 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0907 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.0904 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.116 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.0453 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.136 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.227 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.301 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.201 +1,0.413,0.413,0,0.5,0,0,0.525,0.544,0.544,0.254,0,0.168 +1,0.501,0.501,0,1,0,0,0.512,0.528,0.528,0.51,0,0.0453 +1,0.388,0.388,0,0.15,0,0,0.45,0.486,0.486,0.343,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.121 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.0724 +1,0.103,0.103,0,0,0,0,0.307,0.426,0.426,0,0,0.109 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0453 +0.667,0.162,0.162,0.35,0,0,0,0.316,0.483,0.483,0,0,0.0287 +0.667,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0.35 +0.667,0.154,0.154,0.283,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.272 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.15 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.263 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.0453 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.136 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.181 +0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.0907 +0.333,0.23,0.23,0,0,0,0,0.39,0.503,0.503,0,0,0.173 +0.333,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.272 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.317 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0936 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.274,0.274,0.7,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.381,0.381,0,0,0,0,0.313,0.53,0.53,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.0453 +0.667,0.25,0.25,0.233,0,0,0,0.233,0.508,0.508,0,0,0.145 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.136 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.363 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.272 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0.267,0,0,0,0.282,0.533,0.533,0,0,0.317 +0.667,0.233,0.233,0.2,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.242,0.242,0.267,0,0,0,0.411,0.582,0.582,0,0,0.0907 +1,0.377,0.377,0.433,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.301 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.333 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.242 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.256 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0853 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0926 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.194 +0.667,0.27,0.27,0.0167,0,0,0,0.294,0.508,0.508,0,0,0.191 +1,0.362,0.362,0.683,0.25,0,0,0.212,0.53,0.53,0.204,0,0.15 +1,0.351,0.351,0,0.433,0,0,0.221,0.53,0.53,0.774,0,0.0895 +0.667,0.24,0.24,0.233,0,0,0,0.239,0.517,0.517,0.618,0,0.421 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.181 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.272 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.116 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0.307 +1,0.324,0.324,0.0167,0,0,0,0.359,0.592,0.592,0,0,0.21 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0.265 +0.667,0.268,0.268,0.617,0,0,0,0.472,0.591,0.591,0,0,0.1 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.23 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.227 +1,0.72,0.72,0,0.25,0,0,0.635,0.555,0.555,0.164,0,0.181 +1,0.554,0.554,0,0.433,0,0,0.543,0.493,0.493,0.667,0,0.0928 +1,0.116,0.116,0.233,0,0,0,0.325,0.458,0.458,0.469,0,0.272 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.136 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0763,0.0763,0,0,0.0167,0,0.282,0.446,0.446,0,0,0.292 +1,0.22,0.22,0,0,0.5,0.883,0.35,0.459,0.459,0,0.223,0.193 +1,0.274,0.274,0.233,0,0,0.0333,0.374,0.5,0.5,0,0.408,0 +1,0.381,0.381,0,0,0,0,0.313,0.53,0.53,0,0,0.298 +1,0.362,0.362,0,0,0,0,0.212,0.53,0.53,0,0,0.0548 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.078 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0,0.361 +1,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.136 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0,0.0453 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.0453 +1,0.321,0.321,0,0,0,0,0.294,0.567,0.567,0,0,0.0453 +0.667,0.233,0.233,0.233,0,0,0,0.325,0.549,0.549,0,0,0.082 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.0907 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.227 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0453 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.337 +1,0.72,0.72,0,0,0.0167,0,0.635,0.555,0.555,0,0,0.227 +1,0.554,0.554,0,0,0.5,0.883,0.543,0.493,0.493,0,0.25,0 +1,0.183,0.183,0,0,0,0.0333,0.393,0.451,0.451,0,0.687,0 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0.476,0 +1,0.066,0.066,0,0,0,0,0.313,0.426,0.426,0,0.229,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.0453 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.317 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.276 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.317 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.14,0.14,0.517,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.233,0.233,0.183,0,0,0,0.325,0.549,0.549,0,0,0.0453 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.0907 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.136 +0.667,0.324,0.324,0.767,0,0,0,0.497,0.566,0.566,0,0,0.0453 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0.319 +1,0.72,0.72,0.1,0,0,0,0.635,0.555,0.555,0,0,0.363 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.107 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.136 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.105 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0727 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.0888 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.11 +0.667,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.164 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.13 +0.667,0.135,0.135,0.267,0.25,0,0,0.304,0.462,0.462,0.124,0,0.227 +1,0.386,0.386,0.9,0.2,0,0,0.432,0.518,0.518,0.648,0,0.11 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.0453 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.136 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0907 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.0453 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.136 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.136 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.577 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.164 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.208 +1,0.338,0.338,0.467,0,0,0,0.488,0.641,0.641,0,0,0.0928 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.136 +1,0.461,0.461,0,0.45,0,0,0.616,0.616,0.616,0.253,0,0.0453 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.507,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.0938 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0262 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.207 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.148 +1,0.362,0.362,0.85,0,0,0,0.212,0.53,0.53,0,0,0 +0.667,0.25,0.25,1,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.24,0.24,0.0167,0,0,0,0.239,0.517,0.517,0,0,0.0907 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0453 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0453 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0453 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0453 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.181 +1,0.338,0.338,0.6,0,0,0,0.488,0.641,0.641,0,0,0.181 +1,0.377,0.377,0.567,0,0,0,0.58,0.653,0.653,0,0,0.0907 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.136 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.236 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.221 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.381,0.381,0.233,0,0.1,0,0.313,0.53,0.53,0,0,0 +0.667,0.258,0.258,0,0,0.417,0.683,0.227,0.508,0.508,0,0.225,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0.508,0.0453 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0.223,0.0453 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.303 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.16 +0.333,0.14,0.14,0.233,0,0,0,0.27,0.499,0.499,0,0,0.185 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.168 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.227 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.0907 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.558 +1,0.59,0.59,0,0.333,0,0,0.653,0.579,0.579,0.204,0,0.123 +1,0.273,0.273,0,0.35,0,0,0.383,0.495,0.495,0.459,0,0.136 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0.468,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.0634 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.224 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.205 +0.667,0.258,0.258,0.233,0,0,0,0.227,0.508,0.508,0,0,0.248 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.272 +0.667,0.24,0.24,0.233,0,0,0,0.239,0.517,0.517,0,0,0.317 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.181 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.0453 +0.667,0.23,0.23,0.233,0,0,0,0.276,0.517,0.517,0,0,0.0453 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.181 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.0453 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.136 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.227 +1,0.72,0.72,0,0,0.517,0.217,0.635,0.555,0.555,0,0.0405,0.213 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0.582,0.181 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0953 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0.267,0,0,0,0.245,0.487,0.487,0,0,0.0907 +0.667,0.24,0.24,0.2,0,0,0,0.239,0.517,0.517,0,0,0.227 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.136 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.0453 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.221 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.414 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.389 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.176 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.279 +1,0.554,0.554,0,0,0.517,0.383,0.543,0.493,0.493,0,0.0631,0.257 +1,0.116,0.116,0,0,0,0.3,0.325,0.458,0.458,0,0,0.101 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.175 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0903 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.117 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.207 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.317 +1,0.381,0.381,0,0,0,0,0.313,0.53,0.53,0,0,0.18 +1,0.362,0.362,0,0,0,0,0.212,0.53,0.53,0,0,0.263 +1,0.351,0.351,0.467,0,0,0,0.221,0.53,0.53,0,0,0.416 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.0453 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.227 +0.667,0.23,0.23,0.233,0,0,0,0.276,0.517,0.517,0,0,0.0453 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.227 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.181 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.136 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.0907 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.121 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.162 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0709 +1,0.249,0.249,0,0,0,0,0.46,0.444,0.444,0,0,0.115 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0453 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0.233,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.16,0.16,0.233,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0907 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.227 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.0453 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0453 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.408 +0.667,0.233,0.233,0.267,0,0,0,0.325,0.549,0.549,0,0,0.127 +1,0.338,0.338,0.2,0,0,0,0.488,0.641,0.641,0,0,0.192 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.159 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.181 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.0453 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.261 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.0973 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0907 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.227 +0.333,0.141,0.141,0,0,0.517,0.383,0.245,0.495,0.495,0,0.0425,0.227 +0.667,0.23,0.23,0,0,0,0.0667,0.258,0.525,0.525,0,0.198,0.0453 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.0453 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.0907 +0.667,0.233,0.233,0,0,0.767,0.367,0.325,0.549,0.549,0,0.056,0.0907 +0.667,0.242,0.242,0,0,0.0167,0.783,0.411,0.582,0.582,0,0.459,0.201 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.136 +0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.0907 +0.667,0.41,0.41,0,0,0.0167,0,0.521,0.541,0.541,0,0,0.136 +0.667,0.496,0.496,0,0,0.5,0.883,0.509,0.525,0.525,0,0.256,0.0907 +1,0.218,0.218,0,0,0,0.267,0.353,0.475,0.475,0,0,0.136 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.081 +0.667,0.154,0.154,0.35,0,0,0,0.242,0.487,0.487,0,0,0.174 +0.667,0.25,0.25,0.117,0,0,0,0.233,0.508,0.508,0,0,0.0724 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.372 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.0453 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.136 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0,0.0495,0.0495,0.1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.146,0.146,0.6,0,0,0,0.334,0.524,0.524,0,0,0.072 +0.333,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.172 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.414 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0907 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.136 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0.233,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.162,0.162,0.1,0,0,0,0.316,0.483,0.483,0,0,0.0988 +1,0.27,0.27,0.133,0,0,0,0.294,0.508,0.508,0,0,0.297 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.0453 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.363 +0.667,0.24,0.24,0.35,0,0,0,0.239,0.517,0.517,0,0,0.363 +0.333,0.141,0.141,0.35,0,0,0,0.245,0.495,0.495,0,0,0.232 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.257 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.0453 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.181 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.121 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.405 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.253 +1,0.22,0.22,0,0,0.0167,0,0.35,0.459,0.459,0,0,0.0609 +1,0.386,0.386,0,0,0.5,0.883,0.432,0.518,0.518,0,0.297,0 +1,0.381,0.381,0,0,0,0.267,0.313,0.53,0.53,0,0.447,0 +1,0.362,0.362,0,0,0,0,0.212,0.53,0.53,0,0.386,0.2 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0.208,0.371 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.371,0.317 +0.333,0.141,0.141,0.233,0,0,0,0.245,0.495,0.495,0,0,0.272 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.317 +0.667,0.23,0.23,0,0.45,0,0,0.276,0.517,0.517,0.312,0,0.0453 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0.551,0,0 +0.667,0.233,0.233,0,0.25,0,0,0.325,0.549,0.549,0.72,0,0.0907 +0.667,0.242,0.242,0,0.433,0,0,0.411,0.582,0.582,0.418,0,0.0453 +0.667,0.268,0.268,0.0167,0,0,0,0.472,0.591,0.591,0.632,0,0.0453 +1,0.461,0.461,0.217,0,0,0,0.616,0.616,0.616,0.516,0,0.0907 +1,0.59,0.59,0.0167,0,0,0,0.653,0.579,0.579,0.742,0,0 +1,0.72,0.72,0.217,0,0,0,0.635,0.555,0.555,0,0,0.0453 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.0453 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.0729 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.15 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.0993 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.12 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.272 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.0689 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.252 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.467 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.136 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.317 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.227 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.317 +1,0.59,0.59,0.233,0,0,0,0.653,0.579,0.579,0,0,0.317 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.335 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.0724 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.162,0.162,0,0.45,0,0,0.316,0.483,0.483,0.291,0,0 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0.357,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.181 +0.667,0.25,0.25,0,0,0.267,0.133,0.233,0.508,0.508,0,0,0.0907 +0.667,0.24,0.24,0.767,0,0.25,0.55,0.239,0.517,0.517,0,0.303,0 +0.667,0.232,0.232,0.867,0,0,0,0.233,0.525,0.525,0,0.255,0.0453 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.646,0.0907 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.565,0.272 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.367,0.163 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.441,0.151 +0.667,0.242,0.242,0.0167,0,0,0,0.411,0.582,0.582,0,0.187,0.22 +1,0.377,0.377,0.217,0,0,0,0.58,0.653,0.653,0,0.463,0.181 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.521,0 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0.0444,0.0907 +1,0.72,0.72,0,0.5,0,0,0.635,0.555,0.555,0.296,0,0.265 +1,0.554,0.554,0.517,1,0.0167,0,0.543,0.493,0.493,0.683,0,0.227 +0.667,0.183,0.183,1,0.1,0.5,0.883,0.393,0.451,0.451,0.753,0.239,0.0907 +0.667,0.0743,0.0743,0.117,0,0,0.267,0.294,0.454,0.454,0,0.154,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.105 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.0868 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.179 +1,0.362,0.362,0,0,0,0,0.212,0.53,0.53,0,0,0.109 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.0453 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0,0 +1,0.324,0.324,0.767,0,0,0,0.221,0.555,0.555,0,0,0 +1,0.32,0.32,1,0,0.267,0.133,0.258,0.555,0.555,0,0,0.118 +1,0.32,0.32,1,0,0.25,0.783,0.285,0.542,0.542,0,0.407,0.0684 +0.667,0.23,0.23,1,0,0,0,0.282,0.533,0.533,0,0.644,0.136 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0.453,0.0907 +0.333,0.146,0.146,0.383,0,0,0,0.334,0.524,0.524,0,0.293,0.22 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0.368,0.15 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0.56,0.0453 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0.367,0.277 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0453 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.136 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0453 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.212 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.0674 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.158 +0.333,0.14,0.14,0,0,0.267,0.133,0.258,0.495,0.495,0,0,0.223 +0.667,0.23,0.23,0,0,0.25,0.0833,0.276,0.517,0.517,0,0.329,0.091 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.227,0 +0.667,0.233,0.233,0.233,0,0,0,0.325,0.549,0.549,0,0.189,0.0453 +0.667,0.242,0.242,0,0,0.267,0.133,0.411,0.582,0.582,0,0,0.0907 +1,0.377,0.377,0,0.45,0.25,0.55,0.58,0.653,0.653,0.7,0.443,0.0907 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.744,0.629,0.499 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0.831,0.385,0.317 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0.557,0.448,0.102 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0.42,0.593,0.385 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.0772,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.269 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.124 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.0297 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.118 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.703 +0.667,0.25,0.25,0,0,0.1,0,0.233,0.508,0.508,0,0,0.136 +0.333,0.145,0.145,0,0,0.417,0.917,0.248,0.491,0.491,0,0.264,0.317 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0.414,0.227 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0.335,0.317 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0.229,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0.266,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0.399,0 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0.246,0 +0.667,0.268,0.268,0,0.683,0,0,0.472,0.591,0.591,0.591,0.498,0.0453 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.528,0 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0.347,0.317 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.535 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.229 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.227 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0.85,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.162,0.162,0.0833,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.381,0.381,0.233,0,0,0,0.313,0.53,0.53,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.181 +0.667,0.25,0.25,0.233,0,0,0,0.233,0.508,0.508,0,0,0.0453 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.227 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.0907 +1,0.32,0.32,0,0,0,0,0.258,0.555,0.555,0,0,0.272 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.0453 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.453 +0.667,0.233,0.233,0.35,0,0,0,0.325,0.549,0.549,0,0,0.369 +1,0.338,0.338,0.467,0,0,0,0.488,0.641,0.641,0,0,0.457 +1,0.377,0.377,0.583,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.59,0.59,0,0.333,0,0,0.653,0.579,0.579,0.265,0,0.103 +1,0.72,0.72,0,0.35,0,0,0.635,0.555,0.555,0.686,0,0.127 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.13 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.0629 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.181 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.0453 +0.333,0.14,0.14,0,0,0.517,0.217,0.258,0.495,0.495,0,0.0772,0.0907 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.432,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.286,0.0907 +0.667,0.233,0.233,0.233,0,0,0,0.325,0.549,0.549,0,0.162,0.0907 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.0453 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.363 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.136 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.317 +1,0.273,0.273,0,0,0,0,0.383,0.495,0.495,0,0,0.532 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.109 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.244 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.456 +1,0.274,0.274,0.233,0,0.0167,0,0.374,0.5,0.5,0,0,0.164 +0.667,0.27,0.27,0.233,0,0.5,0.883,0.294,0.508,0.508,0,0.133,0 +0.667,0.258,0.258,0,0,0,0.0333,0.227,0.508,0.508,0,0.208,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.0453 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.136 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.0453 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.181 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.0907 +0.667,0.233,0.233,0.0167,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.242,0.242,0.45,0,0,0,0.411,0.582,0.582,0,0,0.32 +0.667,0.268,0.268,0,0.25,0,0,0.472,0.591,0.591,0.284,0,0.0907 +1,0.461,0.461,0,0.433,0,0,0.616,0.616,0.616,0.524,0,0.0907 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0.564,0,0.0453 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0.742,0,0.136 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.228 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.145,0.145,0.767,0,0,0,0.248,0.491,0.491,0,0,0.227 +0.667,0.141,0.141,0.4,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0.45,0,0,0.258,0.495,0.495,0.606,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.111,0,0.0907 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.317 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.136 +0.667,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.365,0.528,0.528,0,0,0.181 +0.667,0.187,0.187,0.767,0,0,0,0.377,0.516,0.516,0,0,0.166 +0.667,0.23,0.23,0.167,0,0,0,0.39,0.503,0.503,0,0,0.276 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0453 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.0453 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0907 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.0167,0.15,0.258,0.465,0.465,0,0,0.0878 +1,0.22,0.22,0,0,0.233,0.0667,0.35,0.459,0.459,0,0.211,0.167 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0.293,0.0562 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0.359,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0.494,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0.32,0.35 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.153 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.168 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.0907 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.317 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0453 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.0907 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.181 +0.667,0.41,0.41,0.233,0,0,0,0.521,0.541,0.541,0,0,0.0907 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.0453 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.317 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.091 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.176 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.163 +1,0.351,0.351,0.0167,0,0,0,0.221,0.53,0.53,0,0,0.238 +1,0.335,0.335,0.917,0,0,0,0.23,0.542,0.542,0,0,0.0907 +0.667,0.232,0.232,0.233,0,0,0,0.233,0.525,0.525,0,0,0.0907 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.317 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.0453 +0.667,0.233,0.233,0.767,0,0,0,0.325,0.549,0.549,0,0,0.136 +0.667,0.242,0.242,1,0.25,0,0,0.411,0.582,0.582,0.171,0,0.227 +0.667,0.268,0.268,0.567,0.2,0,0,0.472,0.591,0.591,0.561,0,0.59 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.136 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.184 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.0995 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.141 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.102 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.478 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.0907 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0907 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.136 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.0453 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.0453 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.0907 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.212 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.276 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.272 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.317 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0274 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.0822 +1,0.27,0.27,0.233,0,0,0,0.294,0.508,0.508,0,0,0.221 +1,0.362,0.362,0,0,0,0,0.212,0.53,0.53,0,0,0.433 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.227 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.181 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0.0453 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.0453 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.0907 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.0696 +1,0.338,0.338,0,0,0.517,0.45,0.488,0.641,0.641,0,0.166,0.451 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0.399,0.472 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0.695,0.259 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0.29,0.0907 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0.52,0.0825 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.17 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.275 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0.233,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.323 +1,0.15,0.15,0.467,0,0,0,0.245,0.487,0.487,0,0,0.271 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.308 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.0907 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.363 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.181 +0.667,0.23,0.23,0,0.45,0,0,0.282,0.533,0.533,0.495,0,0.0988 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.0907 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.272 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.0453 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.0453 +1,0.496,0.496,0.233,0,0,0,0.509,0.525,0.525,0,0,0.0907 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0755 +1,0.386,0.386,0.467,0,0,0,0.432,0.518,0.518,0,0,0.206 +1,0.381,0.381,0,0,0,0,0.313,0.53,0.53,0,0,0.136 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.25,0.25,0.267,0,0,0,0.233,0.508,0.508,0,0,0.134 +0.667,0.24,0.24,0.667,0,0,0,0.239,0.517,0.517,0,0,0.317 +0.333,0.141,0.141,0,0,0.517,0.633,0.245,0.495,0.495,0,0.25,0 +0.667,0.23,0.23,0,0,0,0.283,0.258,0.525,0.525,0,0.284,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.583,0.181 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.465,0.227 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0.428,0 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0.616,0.317 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0.568,0.136 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0.642,0.181 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0.493,0.0907 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0.145,0.291 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.0907 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.0907 +1,0.0743,0.0743,0.467,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +1,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.183 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0.0807 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.0907 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0907 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0.233,0,0,0,0.27,0.499,0.499,0,0,0.136 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.272 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.136 +0.667,0.289,0.289,0.233,0.45,0,0,0.472,0.591,0.591,0.24,0,0.0907 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0.591,0,0.317 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.151 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.136 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.164 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.0883 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.0838 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0907 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.317 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0.45,0,0,0.411,0.582,0.582,0.204,0,0.171 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0.455,0,0.737 +0.667,0.362,0.362,0.517,0,0,0,0.497,0.566,0.566,0,0,0.185 +0.667,0.462,0.462,0.2,0.45,0,0,0.521,0.541,0.541,0.305,0,0.793 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.674,0,0.136 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0.523,0,0.272 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.276 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0.0167,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.256,0.256,0.217,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.136 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0453 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.136 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.136 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0453 +1,0.353,0.353,0.0167,0,0,0,0.488,0.641,0.641,0,0,0.118 +0.667,0.289,0.289,0.7,0,0,0,0.472,0.591,0.591,0,0,0.391 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.181 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.105 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.0591 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.533 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0.717,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.277,0.277,0.483,0.25,0,0,0.374,0.5,0.5,0.136,0,0 +1,0.274,0.274,0.217,0.2,0,0,0.294,0.508,0.508,0.228,0,0.118 +1,0.37,0.37,0,0,0,0,0.212,0.53,0.53,0,0,0 +1,0.359,0.359,0,0,0,0,0.221,0.53,0.53,0,0,0.0453 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0.211 +1,0.331,0.331,0,0,0,0,0.221,0.555,0.555,0,0,0.0827 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.181 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.425 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.0907 +0.333,0.151,0.151,0.0167,0,0,0,0.334,0.524,0.524,0,0,0.0907 +0.667,0.289,0.289,0.217,0,0,0,0.472,0.591,0.591,0,0,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.136 +1,0.462,0.462,0.233,0,0,0,0.521,0.541,0.541,0,0,0.272 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.271 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.211 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.152 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.163,0.163,0.767,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.274,0.274,0.917,0,0.5,0.4,0.294,0.508,0.508,0,0.0669,0 +0.667,0.263,0.263,0,0,0,0.267,0.227,0.508,0.508,0,0.288,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.23,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.181 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.227 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.317 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.26 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.109 +1,0.408,0.408,0,0,0.0167,0,0.58,0.653,0.653,0,0,0.181 +1,0.518,0.518,0,0,0.483,0.45,0.616,0.616,0.616,0,0.359,0.136 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0.281,0.0907 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.213 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.082 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.244 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.0548 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.263,0.263,0,0.45,0,0,0.227,0.508,0.508,1,0,0.0907 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0.493,0,0.499 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0.439,0,0 +0.667,0.237,0.237,0.467,0,0,0,0.233,0.525,0.525,0,0,0.181 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.0907 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0907 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.227 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.0453 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0453 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.227 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0.5,0.217,0.258,0.465,0.465,0,0.0373,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0.315,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0.49,0 +0.667,0.256,0.256,0.0167,0,0,0,0.233,0.508,0.508,0,0.104,0 +0.667,0.245,0.245,1,0,0,0,0.239,0.517,0.517,0,0,0 +0.333,0.143,0.143,0.183,0,0,0,0.245,0.495,0.495,0,0,0.453 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.181 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.0907 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.227 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0453 +1,0.353,0.353,0,0.683,0,0,0.488,0.641,0.641,0.676,0,0.417 +0.667,0.289,0.289,0,0.683,0,0,0.472,0.591,0.591,0.72,0,0.363 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.727,0,0.363 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0.383,0,0.0879 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.278 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.133 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.105 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.0815 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.235 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.311 +0.667,0.156,0.156,0,0,0.5,0.4,0.242,0.487,0.487,0,0.0541,0.227 +0.667,0.153,0.153,0,0,0,0.267,0.245,0.487,0.487,0,0.559,0.363 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.152,0.0907 +0.667,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.144,0.144,0.0167,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.151,0.151,0.45,0,0,0,0.334,0.524,0.524,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.136 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.0907 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.313 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.258 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.104 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.503 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.69 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.181 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.333,0.142,0.142,0.0167,0,0,0,0.267,0.491,0.491,0,0,0.136 +0.667,0.236,0.236,0.45,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.136 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.0907 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.189 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0453 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.227 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.298 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0.18 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.228 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.0981 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0907 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0907 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.181 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.0907 +0.667,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.453 +0.667,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.272 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.342 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.18 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.091 +1,0.542,0.542,0,0,0.5,0.45,0.509,0.525,0.525,0,0.0772,0.161 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0.266,0 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.319 +0.667,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0.0907 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.383 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.274,0.274,0,0,0.25,0.4,0.294,0.508,0.508,0,0,0 +0.333,0.156,0.156,0,0,0,0.05,0.242,0.487,0.487,0,0.356,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0.237,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.136 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0907 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +1,0.236,0.236,0.233,0,0,0,0.282,0.533,0.533,0,0,0.0453 +1,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0907 +1,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.0907 +1,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.0907 +1,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.136 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.136 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0907 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.227 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0.45,0,0,0.316,0.483,0.483,0.477,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0.131,0,0 +0.667,0.156,0.156,0.233,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0453 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,0.767,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0.433,0,0,0,0.258,0.495,0.495,0,0,0.0907 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0453 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.227 +1,0.353,0.353,0.0167,0,0,0,0.488,0.641,0.641,0,0,0.181 +1,0.408,0.408,0.7,0,0,0,0.58,0.653,0.653,0,0,0.0907 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.0907 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.317 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.136 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.0488 +1,0.39,0.39,0.45,0,0,0,0.432,0.518,0.518,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.181 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.136 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.181 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.544 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.364 +0.667,0.462,0.462,0.267,0.683,0,0,0.521,0.541,0.541,0.535,0,0.189 +1,0.788,0.788,0.2,0,0,0,0.635,0.555,0.555,0.758,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0883 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.113 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.394 +1,0.387,0.387,0,0,0,0,0.313,0.53,0.53,0,0,0.169 +1,0.37,0.37,0,0,0,0,0.212,0.53,0.53,0,0,0 +1,0.359,0.359,0,0,0,0,0.221,0.53,0.53,0,0,0.0907 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0.317 +1,0.331,0.331,0,0,0,0,0.221,0.555,0.555,0,0,0 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0.136 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.0907 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.136 +0.667,0.239,0.239,0.233,0,0,0,0.325,0.549,0.549,0,0,0.0907 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.0907 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.136 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.136 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0907 +0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.499 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0453 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0.267,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0.683,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.144 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.238 +1,0.387,0.387,0,0,0,0,0.313,0.53,0.53,0,0,0.274 +1,0.37,0.37,0,0,0,0,0.212,0.53,0.53,0,0,0.136 +0.667,0.256,0.256,0,0,0.5,0.4,0.233,0.508,0.508,0,0.0425,0.519 +0.667,0.245,0.245,0,0,0.0167,0.267,0.239,0.517,0.517,0,0.277,0.322 +0.667,0.237,0.237,0,0,0.483,0.9,0.233,0.525,0.525,0,0.263,0.0149 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0.389,0.136 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.7,0.181 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.5,0.363 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.0219,0.227 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.0907 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0453 +1,0.668,0.668,0,0.5,0,0,0.653,0.579,0.579,0.3,0,0.0453 +1,0.788,0.788,0,0.183,0,0,0.635,0.555,0.555,0.833,0,0 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.109 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.236 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.196 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.364 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.0907 +0.667,0.245,0.245,0,0.25,0,0,0.239,0.517,0.517,0.103,0,0 +0.333,0.143,0.143,0,0.2,0,0,0.245,0.495,0.495,0.709,0,0.316 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0.144 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.398 +0.333,0.143,0.143,0,0,0.0167,0,0.27,0.499,0.499,0,0,0.0819 +0.667,0.239,0.239,0.0167,0,0.483,0.667,0.325,0.549,0.549,0,0.421,0.227 +0.667,0.252,0.252,0.7,0,0,0,0.411,0.582,0.582,0,0.685,0.136 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.0721,0.181 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.272 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0.467,0,0,0,0.635,0.555,0.555,0,0,0.0907 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.181 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.19 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.139 +0.667,0.136,0.136,0.233,0,0,0,0.304,0.462,0.462,0,0,0.109 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.127 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.263,0.263,0.767,0,0,0,0.227,0.508,0.508,0,0,0.317 +0.667,0.256,0.256,1,0,0,0,0.233,0.508,0.508,0,0,0.136 +0.667,0.245,0.245,1,0,0.5,0.65,0.239,0.517,0.517,0,0.122,0.0453 +0.667,0.237,0.237,1,0,0,0.467,0.233,0.525,0.525,0,0.459,0.0907 +0.667,0.235,0.235,0.567,0,0,0,0.258,0.525,0.525,0,0,0.0453 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.0453 +0.333,0.143,0.143,0.233,0,0,0,0.27,0.499,0.499,0,0,0.136 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0453 +0.667,0.252,0.252,0.0167,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.408,0.408,0.217,0,0,0,0.58,0.653,0.653,0,0,0.136 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.136 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.0907 +0.667,0.542,0.542,0,0.45,0.267,0.15,0.509,0.525,0.525,0.483,0,0.254 +1,0.571,0.571,0,0,0.233,0.517,0.543,0.493,0.493,0.12,0.368,0.194 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0.266,0.185 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.0727 +1,0.222,0.222,0.217,0,0,0,0.35,0.459,0.459,0,0,0.133 +1,0.277,0.277,0.233,0,0,0,0.374,0.5,0.5,0,0,0.213 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.0785 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.211 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.291 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0.416 +1,0.331,0.331,0,0,0,0,0.221,0.555,0.555,0,0,0.0907 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0453 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0453 +0.667,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.136 +0.667,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.272 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.0453 +1,0.518,0.518,0,0,0.5,0.65,0.616,0.616,0.616,0,0.149,0.0453 +1,0.462,0.462,0,0,0,0.0167,0.521,0.541,0.541,0,0.0708,0.0907 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.317 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.272 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.274,0.274,0.467,0,0,0,0.294,0.508,0.508,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0453 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0453 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.419 +0.667,0.235,0.235,0.233,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.253 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.0907 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.227 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.209 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.174 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.136 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.138 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.528 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0.767,0,0,0,0.282,0.446,0.446,0,0,0.0787 +1,0.136,0.136,0.667,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.124 +1,0.387,0.387,0.0167,0,0,0,0.313,0.53,0.53,0,0,0.33 +1,0.37,0.37,0.7,0,0.0167,0,0.212,0.53,0.53,0,0,0.343 +1,0.359,0.359,0,0,0.483,0.9,0.221,0.53,0.53,0,0.16,0.389 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0.562,0.0453 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.385,0.317 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0.418,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.425,0.0907 +0.667,0.236,0.236,0.233,0,0,0,0.282,0.533,0.533,0,0.525,0.0453 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.322,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0.0553,0.142 +0.667,0.289,0.289,0,0.45,0,0,0.472,0.591,0.591,0.357,0,0.57 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0.235,0,0 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.0907 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.227 +0.667,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.243 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.542 +1,0.163,0.163,0.0167,0,0,0,0.316,0.483,0.483,0,0,0.171 +1,0.274,0.274,0.45,0,0,0,0.294,0.508,0.508,0,0,0.149 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.363 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.181 +0.667,0.235,0.235,0,0,0.5,0.4,0.258,0.525,0.525,0,0.0541,0 +0.667,0.235,0.235,0.267,0,0,0.267,0.276,0.517,0.517,0,0.503,0.0453 +0.667,0.236,0.236,1,0,0,0,0.282,0.533,0.533,0,0,0.0453 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0.228 +0.667,0.252,0.252,0.133,0,0,0,0.411,0.582,0.582,0,0,0.0453 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.408 +0.667,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.0453 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.0453 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.363 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.272 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.518,0.518,0,0,0 +0.667,0.274,0.274,0,0,0.0167,0.15,0.294,0.508,0.508,0,0,0.11 +0.667,0.263,0.263,0.233,0,0.233,0.517,0.227,0.508,0.508,0,0.0888,0.0772 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.168 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.351 +0.667,0.237,0.237,0.267,0,0,0,0.233,0.525,0.525,0,0,0.0453 +0.667,0.235,0.235,0.45,0,0,0,0.258,0.525,0.525,0,0,0.0907 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.445 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.0453 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0907 +0.333,0.151,0.151,0,0,0.25,0.217,0.334,0.524,0.524,0,0.0553,0.265 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.0553,0.121 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0453 +1,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.241 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.227 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.0453 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0586 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.0692 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.158 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.0918 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.164 +1,0.37,0.37,0,0,0,0,0.212,0.53,0.53,0,0,0.0747 +1,0.359,0.359,0,0,0,0,0.221,0.53,0.53,0,0,0.0907 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.168 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.0907 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0.267,0.15,0.267,0.491,0.491,0,0,0 +0.667,0.236,0.236,0,0.45,0.233,0.0667,0.282,0.533,0.533,0.436,0.018,0.181 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0.666,0,0.0907 +0.667,0.252,0.252,0,0,0.5,0.4,0.411,0.582,0.582,0.718,0.0553,0.136 +0.667,0.289,0.289,0,0,0,0.05,0.472,0.591,0.591,0,0.344,0.181 +0.667,0.362,0.362,0,0,0.5,0.4,0.497,0.566,0.566,0,0.0444,0.227 +0.667,0.462,0.462,0,0,0,0.5,0.521,0.541,0.541,0,0.449,0.317 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0.582,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0.36,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0907 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.136 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.156,0.156,0.267,0,0,0,0.242,0.487,0.487,0,0,0 +1,0.256,0.256,0.45,0,0,0,0.233,0.508,0.508,0,0,0.195 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.0907 +1,0.331,0.331,0,0,0,0,0.221,0.555,0.555,0,0,0.181 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0.136 +1,0.327,0.327,0,0,0.5,0.217,0.285,0.542,0.542,0,0.0772,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.345,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.512,0.181 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0.32,0.181 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0.552,0.181 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0.537,0.136 +0.667,0.462,0.462,0.767,0,0,0,0.521,0.541,0.541,0,0.431,0.317 +1,0.542,0.542,1,0,0,0,0.509,0.525,0.525,0,0,0.0907 +0.667,0.223,0.223,0.15,0,0,0,0.353,0.475,0.475,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.222,0.222,0.767,0,0,0,0.35,0.459,0.459,0,0,0 +0.333,0.0495,0.0495,1,0,0.517,0.15,0.258,0.465,0.465,0,0.0425,0 +0.333,0.162,0.162,0.633,0,0.233,0.517,0.276,0.487,0.487,0,0.295,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0.434,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0.324,0.317 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.511,0.0453 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.293,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.479,0.0453 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.526,0.0453 +1,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.525,0.227 +1,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.581,0.181 +0.667,0.151,0.151,0.233,0,0,0,0.334,0.524,0.524,0,0.585,0.363 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0.441,0 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.193 +1,0.668,0.668,0,0,0.0167,0,0.653,0.579,0.579,0,0,0.208 +1,0.788,0.788,0,0.5,0.483,0.667,0.635,0.555,0.555,0.34,0.246,0 +1,0.223,0.223,0,0.183,0,0,0.353,0.475,0.475,0.46,0.0502,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0704 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.174 +0.667,0.163,0.163,0,0,0.0167,0,0.316,0.483,0.483,0,0,0.106 +0.667,0.274,0.274,0,0,0.483,0.45,0.294,0.508,0.508,0,0.248,0.42 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0.517,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0.268,0.0453 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.498,0 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0.447,0.195 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.345,0.0907 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.0907 +0.667,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.136 +0.667,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.405 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.227 +0.333,0.206,0.206,0.233,0,0,0,0.377,0.516,0.516,0,0,0.0453 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.0907 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.395 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.187 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0.683,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.314 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.189 +1,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.318 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0453 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.333,0.0495,0.0495,0,0,0.5,0.4,0.258,0.465,0.465,0,0.0708,0.0907 +0.667,0.142,0.142,0,0,0,0.267,0.267,0.491,0.491,0,0.472,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.557,0 +1,0.334,0.334,0.0167,0,0,0,0.359,0.592,0.592,0,0.438,0 +1,0.353,0.353,0.217,0,0,0,0.488,0.641,0.641,0,0.625,0.0907 +0.667,0.289,0.289,0.233,0,0,0,0.472,0.591,0.591,0,0.165,0.0907 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0.566,0.0907 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0.538,0.181 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0.497,0.136 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0.181,0.0453 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.272 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0907 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0928 +1,0.387,0.387,0,0,0,0,0.313,0.53,0.53,0,0,0.121 +1,0.37,0.37,0,0,0,0,0.212,0.53,0.53,0,0,0 +1,0.359,0.359,0,0,0,0,0.221,0.53,0.53,0,0,0.131 +1,0.343,0.343,0.467,0,0,0,0.23,0.542,0.542,0,0,0.136 +1,0.331,0.331,0,0,0,0,0.221,0.555,0.555,0,0,0.0848 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.181 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.181 +0.333,0.143,0.143,0.233,0,0,0,0.27,0.499,0.499,0,0,0.136 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.181 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.317 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.181 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.0907 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.175 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.136 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.272 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.146 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.132 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.0946 +1,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.312 +1,0.359,0.359,0,0,0,0,0.221,0.53,0.53,0,0,0.141 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0.153 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.0453 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.317 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.181 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.136 +0.667,0.239,0.239,0.717,0,0,0,0.325,0.549,0.549,0,0,0.453 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.136 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.227 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0 +0.667,0.462,0.462,0.717,0.45,0,0,0.521,0.541,0.541,0.753,0,0.398 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.12,0,0.347 +1,0.571,0.571,0,0,0,0,0.543,0.493,0.493,0,0,0.0822 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.375 +1,0.099,0.099,0,0.45,0,0,0.331,0.443,0.443,0.767,0,0.239 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.138,0,0.0832 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.0453 +1,0.136,0.136,0.267,0,0,0,0.304,0.462,0.462,0,0,0.123 +1,0.277,0.277,0.45,0.5,0,0,0.374,0.5,0.5,0.26,0,0 +0.333,0.162,0.162,0.467,0.183,0,0,0.276,0.487,0.487,0.394,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.0453 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.0453 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.376 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.0907 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0.767,0,0,0,0.411,0.582,0.582,0,0,0.272 +0.667,0.289,0.289,0.433,0,0,0,0.472,0.591,0.591,0,0,0.181 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.0453 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.136 +1,0.788,0.788,0.767,0.25,0,0,0.635,0.555,0.555,0.166,0,0 +1,0.571,0.571,0.917,0.433,0,0,0.543,0.493,0.493,0.502,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.289 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.0677 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.151 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.0956 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.238 +0.667,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.173 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.0907 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.136 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.272 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.0453 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.0453 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.0453 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.0907 +1,0.518,0.518,0.233,0,0,0,0.616,0.616,0.616,0,0,0.453 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.0453 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.0907 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.256 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.234 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.138 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.165 +1,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.0453 +0.667,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0453 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0453 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.136 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.227 +0.667,0.286,0.286,0.433,0,0,0,0.413,0.585,0.585,0,0,0.0907 +1,0.501,0.501,0.283,0,0,0,0.584,0.658,0.658,0,0,0.0907 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.181 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.0907 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.171 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.0661 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0.135 +0.333,0.164,0.164,0.233,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.16,0.16,0.433,0,0,0,0.246,0.488,0.488,0,0,0.0453 +0.333,0.154,0.154,1,0,0,0,0.249,0.492,0.492,0,0,0.136 +0,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.377 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.4 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.106 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0453 +0.333,0.154,0.154,0.183,0,0,0,0.292,0.509,0.509,0,0,0.0907 +0.333,0.168,0.168,0.05,0,0,0,0.336,0.525,0.525,0,0,0.0453 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.103 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.238 +1,0.806,0.806,0.183,0,0,0,0.658,0.583,0.583,0,0,0.52 +1,0.584,0.584,0.533,0,0,0,0.512,0.528,0.528,0,0,0.144 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.272 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0.217,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.402,0.402,0,1,0,0,0.436,0.521,0.521,0.742,0,0 +0.667,0.286,0.286,0,0.4,0,0,0.296,0.511,0.511,0,0,0.131 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.227 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.0453 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.0453 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.0907 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.272 +0.333,0.154,0.154,0.483,0,0,0,0.292,0.509,0.509,0,0,0.181 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.181 +0.667,0.351,0.351,0.233,0,0,0,0.475,0.594,0.594,0,0,0.227 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.181 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.227 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.317 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0453 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0478 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.172 +1,0.284,0.284,0.0167,0.25,0,0,0.376,0.503,0.503,0.138,0,0.136 +0.667,0.286,0.286,0.217,0.717,0,0,0.296,0.511,0.511,0.641,0,0.181 +1,0.392,0.392,0,0.2,0,0,0.213,0.534,0.534,0,0,0.217 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.0296 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0.267,0.15,0.234,0.528,0.528,0,0,0.0453 +0.667,0.249,0.249,0,0,0.233,0.533,0.259,0.528,0.528,0,0.416,0.0453 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.613,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0.0553,0 +0.667,0.154,0.154,0.0167,0,0,0,0.292,0.509,0.509,0,0,0.13 +0.667,0.168,0.168,0.7,0,0,0,0.336,0.525,0.525,0,0,0.136 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.726 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.0453 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.372 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.2 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.371 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.424 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0.517,0,0,0,0.305,0.463,0.463,0,0,0.165 +1,0.284,0.284,1,0.467,0,0,0.376,0.503,0.503,0.65,0,0.0332 +1,0.286,0.286,0.417,0,0,0,0.296,0.511,0.511,0.394,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0.479,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0.704,0,0.227 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.363 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.136 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0907 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +0.333,0.15,0.15,0.767,0,0.5,0.4,0.271,0.501,0.501,0,0.0463,0 +0.667,0.259,0.259,0.45,0,0,0.283,0.327,0.552,0.552,0,0.317,0.181 +0.667,0.286,0.286,0.217,0,0,0,0.413,0.585,0.585,0,0,0.136 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.227 +1,0.656,0.656,0,1,0,0,0.621,0.621,0.621,0.894,0,0.317 +1,0.806,0.806,0,0.4,0,0,0.658,0.583,0.583,0,0,0.416 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.127 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0787 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.383 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.15 +1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0.109 +1,0.286,0.286,0.2,0,0,0,0.296,0.511,0.511,0,0,0.475 +0.333,0.164,0.164,0,0,0.5,0.4,0.243,0.488,0.488,0,0.0521,0 +0.333,0.16,0.16,0,0,0,0.283,0.246,0.488,0.488,0,0.465,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0.398,0.408 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0.593,0.317 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.418,0.0907 +0.667,0.149,0.149,0,0.7,0,0,0.268,0.492,0.492,0.629,0.341,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.782,0.0453 +0.333,0.154,0.154,0.233,0,0,0,0.292,0.509,0.509,0,0.203,0.0453 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.324 +0.667,0.351,0.351,0,0.7,0,0,0.475,0.594,0.594,0.53,0,0.128 +0.667,0.454,0.454,0.233,0,0,0,0.5,0.569,0.569,0,0,0.405 +1,0.806,0.806,0,0.7,0,0,0.658,0.583,0.583,0.451,0,0.0907 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0.51,0,0.418 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.284,0.284,0.517,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.168,0.168,0.45,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.16,0.16,0.0167,0,0,0,0.246,0.488,0.488,0,0,0.0907 +0.667,0.259,0.259,0.7,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.408 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.181 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.136 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0907 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.227 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.177 +0.667,0.351,0.351,0.267,0,0,0,0.475,0.594,0.594,0,0,0.217 +1,0.656,0.656,0.217,0,0,0,0.621,0.621,0.621,0,0,0.583 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.28 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0629 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0.0983 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.26 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.07 +1,0.284,0.284,0.683,0,0,0,0.376,0.503,0.503,0,0,0 +1,0.404,0.404,0.0333,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.0907 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0453 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.333,0.149,0.149,0,0.7,0,0,0.258,0.496,0.496,0.559,0,0.181 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0.578,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0.315,0,0.136 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0453 +1,0.404,0.404,0.233,0,0,0,0.491,0.646,0.646,0,0,0.408 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.224 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.21 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.427 +1,0.851,0.851,0.183,0,0,0,0.639,0.559,0.559,0,0,0.211 +1,0.391,0.391,1,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0.583,0,0,0,0.326,0.459,0.459,0,0,0.363 +1,0.0743,0.0743,0.233,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.239 +1,0.0781,0.0781,0,0,0.183,0.0667,0.283,0.447,0.447,0,0,0 +0.667,0.139,0.139,0,0,0.317,1,0.305,0.463,0.463,0,0.29,0.219 +0.667,0.167,0.167,0,0,0,1,0.317,0.484,0.484,0,0.0463,0.0805 +0.667,0.168,0.168,0.433,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.278,0.278,0.05,0,0,0,0.228,0.511,0.511,0,0,0.0453 +0,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.227 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.349 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.227 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.0907 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.0907 +0.333,0.15,0.15,0,0,0.5,0.217,0.271,0.501,0.501,0,0.0927,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.505,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0.371,0 +1,0.501,0.501,0,0.7,0,0,0.584,0.658,0.658,0.409,0.489,0.317 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0.387,0.0453 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.544,0.0453 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0.508,0.332 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.304,0.334 +1,0.183,0.183,0.417,0,0,0,0.395,0.453,0.453,0,0.378,0.0907 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0.49,0.0907 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0.362,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.154 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.111 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.326 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.181 +0.333,0.154,0.154,0,0.25,0,0,0.249,0.492,0.492,0.111,0,0.0453 +0.667,0.251,0.251,0.717,0.217,0,0,0.234,0.528,0.528,0.282,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.227 +0.333,0.149,0.149,0,0,0.5,0.4,0.268,0.492,0.492,0,0.00772,0.0453 +0.667,0.251,0.251,0,0,0,0.05,0.284,0.536,0.536,0,0.372,0.136 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.49,0.0453 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.0907 +1,0.501,0.501,0,0.5,0,0,0.584,0.658,0.658,0.202,0,0.294 +1,0.454,0.454,0,0.2,0,0,0.5,0.569,0.569,0.328,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.272 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0.0541,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0749 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.457 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.294 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.263 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.312 +0.667,0.259,0.259,0.267,0,0,0,0.24,0.519,0.519,0,0,0.323 +0.667,0.251,0.251,0.7,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.333,0.149,0.149,0,0,0.5,0.217,0.268,0.492,0.492,0,0.0476,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0.264,0.0907 +1,0.363,0.363,0.267,0,0,0,0.361,0.596,0.596,0,0.393,0.0907 +1,0.404,0.404,0.45,0,0,0,0.491,0.646,0.646,0,0.58,0.0907 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0.142,0.408 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.363 +0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.265 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.267 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0483 +1,0.107,0.107,0.483,0,0,0,0.308,0.428,0.428,0,0,0.0933 +1,0.228,0.228,0,0,0,0,0.352,0.461,0.461,0,0,0.277 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0453 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.0453 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0907 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.181 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.0933 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.213 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.141 +0.667,0.259,0.259,0.483,0,0.5,0.65,0.327,0.552,0.552,0,0.112,0 +0.667,0.286,0.286,0,0,0,0.0333,0.413,0.585,0.585,0,0,0.0453 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.136 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.453 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.0453 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.125 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0.217,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.0907 +0.667,0.259,0.259,0,0,0.0167,0,0.24,0.519,0.519,0,0,0.0907 +0.667,0.251,0.251,0,0,0.483,0.217,0.234,0.528,0.528,0,0.0849,0.0453 +0.667,0.249,0.249,0.0167,0,0,0,0.259,0.528,0.528,0,0,0.0907 +0.667,0.249,0.249,0.217,0,0,0,0.277,0.519,0.519,0,0,0.181 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.136 +0.667,0.259,0.259,0.517,0,0,0,0.327,0.552,0.552,0,0,0.136 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0.0907 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0.136 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0.0528 +1,0.806,0.806,1,0,0,0,0.658,0.583,0.583,0,0,0.404 +1,0.584,0.584,1,0,0,0,0.512,0.528,0.528,0,0,0.0453 +1,0.22,0.22,1,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.0926 +1,0.284,0.284,0.217,0,0,0,0.376,0.503,0.503,0,0,0.134 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0.155 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.115 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.218 +0.333,0.154,0.154,0,0,0.267,0.15,0.249,0.492,0.492,0,0,0.181 +0.667,0.251,0.251,0,0,0.233,0.0667,0.234,0.528,0.528,0,0.604,0.0453 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.489,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.492,0.0453 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0.618,0.179 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0.443,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.227 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.537 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.334 +0.667,0.554,0.554,0,0.467,0,0,0.525,0.544,0.544,0.7,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.0453 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.311 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.227 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.131 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.136 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0907 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0453 +0.333,0.154,0.154,0.183,0,0,0,0.292,0.509,0.509,0,0,0.0453 +0.333,0.168,0.168,1,0,0,0,0.336,0.525,0.525,0,0,0.0453 +1,0.501,0.501,0.0167,0.7,0,0,0.584,0.658,0.658,0.664,0,0.542 +1,0.656,0.656,0.233,0,0,0,0.621,0.621,0.621,0.202,0,0.152 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.0453 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.933,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.284,0.284,0.0333,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.217 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.473 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.252 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0907 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0907 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.136 +0.667,0.259,0.259,0,0,0.75,0.567,0.327,0.552,0.552,0,0.353,0.0453 +0.667,0.286,0.286,0,0,0,0.117,0.413,0.585,0.585,0,0.736,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0.454,0.0907 +1,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0.206,0.0666 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.136 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.194 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.317 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.138 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.116 +0.667,0.27,0.27,0.0167,0,0,0,0.234,0.511,0.511,0,0,0.619 +0.667,0.259,0.259,0.95,0,0,0,0.24,0.519,0.519,0,0,0.408 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.0453 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.227 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.136 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0907 +0.667,0.154,0.154,0.0167,0,0,0,0.292,0.509,0.509,0,0,0.136 +0.667,0.168,0.168,0.467,0,0,0,0.336,0.525,0.525,0,0,0.136 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.227 +0.667,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0907 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.139 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.198 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.127 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.272 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0453 +0.667,0.259,0.259,0.0167,0,0,0,0.24,0.519,0.519,0,0,0.0453 +0.667,0.251,0.251,1,0,0,0,0.234,0.528,0.528,0,0,0.272 +0.667,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.0495,0.0495,1,0,0.0167,0,0.258,0.465,0.465,0,0,0.0453 +0.333,0.0495,0.0495,1,0,0.483,0.9,0.258,0.465,0.465,0,0.36,0 +0.667,0.259,0.259,1,0,0,0.0167,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0.0907 +0.667,0.351,0.351,0.5,0,0,0,0.475,0.594,0.594,0,0,0.0546 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.25 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.544 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.136 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0.217,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.104 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.204 +1,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.329 +1,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.32 +1,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.0453 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0453 +0.667,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.408 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.317 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.0453 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.0453 +0.667,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.317 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.317 +0.667,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.21 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.17 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.244 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.667,0.167,0.167,0.45,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.0495,0.0495,0,0,0.5,0.4,0.258,0.465,0.465,0,0.0541,0 +0.333,0.16,0.16,0,0,0,0.283,0.246,0.488,0.488,0,0.671,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0.366,0.181 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0.499,0.0907 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0.394,0.136 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0.559,0.0453 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0.331,0.0907 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.272 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.136 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.499 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0.467,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,0,0,0.0167,0,0.305,0.463,0.463,0,0,0.124 +1,0.284,0.284,0,0,0.483,0.45,0.376,0.503,0.503,0,0.183,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.399,0.136 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0.265,0.136 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0.658,0.321 +0.667,0.259,0.259,0.517,0,0,0,0.24,0.519,0.519,0,0.438,0.227 +0.667,0.251,0.251,1,0,0,0,0.234,0.528,0.528,0,0,0.0907 +0.667,0.249,0.249,0.167,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.363 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.0907 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.227 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0907 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.201 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.22 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.0453 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.154 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.125 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0495,0.0495,0.183,0,0,0,0.258,0.465,0.465,0,0,0.12 +0.667,0.284,0.284,0.05,0,0,0,0.376,0.503,0.503,0,0,0.0453 +0.667,0.286,0.286,0.233,0,0,0,0.296,0.511,0.511,0,0,0.109 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.338 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0453 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.0453 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.272 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.408 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.181 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.136 +1,0.656,0.656,0.717,0,0,0,0.621,0.621,0.621,0,0,0.0453 +1,0.806,0.806,0,0.167,0,0,0.658,0.583,0.583,0.134,0,0.181 +1,0.851,0.851,0,0.3,0,0,0.639,0.559,0.559,0.69,0,0.0453 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0.587,0,0.272 +1,0.116,0.116,0.0167,0,0,0,0.326,0.459,0.459,0.329,0,0.0453 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0.3,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.183,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.139,0.139,0.05,0,0,0,0.305,0.463,0.463,0,0,0.136 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.0956 +1,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.168 +1,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.375 +1,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.0875 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.0453 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.181 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0453 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.0907 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.23 +0.333,0.168,0.168,0.683,0,0,0,0.336,0.525,0.525,0,0,0.156 +0.667,0.351,0.351,0.517,0,0,0,0.475,0.594,0.594,0,0,0.227 +1,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.274 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.161 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.353 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0.217,0,0,0,0.326,0.459,0.459,0.312,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.167 +0.667,0.167,0.167,0.0167,0,0.5,0.217,0.317,0.484,0.484,0,0.0553,0.136 +1,0.286,0.286,0.467,0,0,0,0.296,0.511,0.511,0,0.196,0.0755 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.128 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.134 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0453 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.136 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.0907 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.0907 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.363 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.317 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.0453 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.0907 +0.333,0.252,0.252,0,0,0,0,0.379,0.517,0.517,0,0,0.0453 +0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.13 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.193 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.15 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.0817 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.0634 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.185 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.0971 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.63 +1,0.278,0.278,0,0,0.25,0.9,0.228,0.511,0.511,0,0.149,0.893 +1,0.27,0.27,0,0,0,0.0167,0.234,0.511,0.511,0,0.389,0 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0.495,0.272 +1,0.352,0.352,0,0,0,0,0.222,0.559,0.559,0,0.473,0 +1,0.349,0.349,0,0,0,0,0.259,0.559,0.559,0,0.495,0.261 +1,0.349,0.349,0,0,0,0,0.287,0.546,0.546,0,0.421,0.12 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0.515,0.494 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0.439,0.317 +0.333,0.168,0.168,0,0.25,0,0,0.336,0.525,0.525,0.155,0,0.0453 +0.333,0.2,0.2,0,0.217,0,0,0.366,0.53,0.53,0.692,0,0.272 +0.667,0.454,0.454,0.233,0,0,0,0.5,0.569,0.569,0,0,0.272 +1,0.806,0.806,0,0,0.25,0.65,0.658,0.583,0.583,0,0.0631,0.17 +1,0.851,0.851,0,0,0,0.0333,0.639,0.559,0.559,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.114 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.203 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.227 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.48 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.082 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.0907 +0.333,0.154,0.154,0.0167,0,0,0,0.249,0.492,0.492,0,0,0.0453 +0.333,0.15,0.15,0.467,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.0907 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.0907 +0.333,0.15,0.15,0.233,0,0,0,0.271,0.501,0.501,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.363 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.0907 +1,0.501,0.501,0,0.25,0,0,0.584,0.658,0.658,0.0906,0,0.136 +1,0.656,0.656,0,0.45,0,0,0.621,0.621,0.621,0.538,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.0907 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.483,0.25,0,0,0.258,0.465,0.465,0.117,0,0 +1,0.286,0.286,0,0.45,0,0,0.296,0.511,0.511,0.361,0,0.105 +1,0.392,0.392,0,0.5,0,0,0.213,0.534,0.534,0.28,0,0.202 +1,0.381,0.381,0,0.2,0,0,0.222,0.534,0.534,0.814,0,0.109 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0.571,0,0.0453 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.0907 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.272 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.227 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0907 +0.667,0.259,0.259,0,0.467,0,0,0.327,0.552,0.552,0.225,0,0.136 +0.333,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0.256,0,0.272 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.227 +0.333,0.252,0.252,0,0,0.5,0.45,0.379,0.517,0.517,0,0.215,0.408 +0.333,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0.628,0.249 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0.493,0.23 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.0812 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.0453 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.0907 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.136 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.0453 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.251,0.251,0.0167,0,0,0,0.284,0.536,0.536,0,0,0.181 +0.667,0.259,0.259,0.217,0,0,0,0.327,0.552,0.552,0,0,0.136 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.136 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.131 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.348 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.181 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.0453 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.0907 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.75,0.567,0.258,0.465,0.465,0,0.199,0 +1,0.139,0.139,0,0,0,0.35,0.305,0.463,0.463,0,0.152,0.165 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.151 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.38 +1,0.392,0.392,0,0,0,0,0.213,0.534,0.534,0,0,0.755 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0,0.395 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.0712 +0.333,0.15,0.15,0,0,0.433,0.317,0.246,0.496,0.496,0,0,0.0907 +0.333,0.149,0.149,0,0,0.0667,0.6,0.258,0.496,0.496,0,0.647,0.181 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.263,0.0453 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.0453 +0.667,0.259,0.259,0.483,0.167,0,0,0.327,0.552,0.552,0.162,0,0 +1,0.404,0.404,0,0.717,0,0,0.491,0.646,0.646,0.526,0,0 +1,0.501,0.501,0,0.283,0,0,0.584,0.658,0.658,0.666,0,0.227 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.232 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.155 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.0679 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0664 +0.667,0.0495,0.0495,0.233,0,0,0,0.258,0.465,0.465,0,0,0.238 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0.086 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.157 +1,0.364,0.364,0.933,0,0,0,0.232,0.546,0.546,0,0,0.125 +0.667,0.251,0.251,0.0333,0,0,0,0.234,0.528,0.528,0,0,0.383 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.0453 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.0907 +1,0.351,0.351,0,0,0,0,0.297,0.571,0.571,0,0,0.0907 +0.667,0.259,0.259,0.183,0,0,0,0.327,0.552,0.552,0,0,0.181 +0.667,0.286,0.286,0.783,0,0,0,0.413,0.585,0.585,0,0,0.227 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.0453 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0692 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.15 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.265 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.427 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.127 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.25,0,0,0,0.258,0.465,0.465,0,0,0.412 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.227 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0969 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0.5,0,0,0.323,0.611,0.611,0.296,0,0.227 +0.667,0.294,0.294,0.767,0.233,0,0,0.374,0.631,0.631,0.563,0,0.0907 +0.667,0.35,0.35,0.733,0,0,0,0.478,0.67,0.67,0,0,0.181 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.127 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.227 +0.667,0.62,0.62,0.5,0,0,0,0.611,0.621,0.621,0,0,0.136 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.317 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.265 +1,0.249,0.249,0,0,0,0,0.555,0.535,0.535,0,0,0.3 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.0167,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0.45,0.933,0.331,0.493,0.493,0,0.236,0 +1,0.172,0.172,0.267,0,0,0.0167,0.346,0.518,0.518,0,0.36,0 +0.667,0.175,0.175,0.233,0,0,0,0.298,0.523,0.523,0,0.493,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0.649,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0.402,0.302 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0.313,0.394 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0.353,0.0135 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0.511,0.0453 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.543,0 +0.667,0.274,0.274,0.0167,0,0,0,0.323,0.611,0.611,0,0.474,0.0453 +0.667,0.294,0.294,0.733,0,0,0,0.374,0.631,0.631,0,0.394,0.0453 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0.42,0.227 +0.667,0.453,0.453,0.0167,0,0,0,0.552,0.68,0.68,0,0.334,0.272 +1,0.829,0.829,0.233,0,0,0,0.743,0.743,0.743,0,0.494,0.227 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.382,0.0453 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.459,0.357 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.139 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.308 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.139 +1,0.301,0.301,0,0.733,0,0,0.337,0.581,0.581,0.547,0,0.194 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0453 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0.5,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0453 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0907 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.333,0.2,0.2,0.517,0,0.467,0.433,0.368,0.568,0.568,0,0.0746,0.181 +0.667,0.453,0.453,0.233,0,0,0.267,0.552,0.68,0.68,0,0.554,0.408 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0.512,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.562,0.146 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.227 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.227 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.272 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.206 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0.267,0,0.467,0.433,0.331,0.493,0.493,0,0.0116,0 +0.667,0.172,0.172,0.483,0,0,0.267,0.346,0.518,0.518,0,0.323,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0.349,0.282 +1,0.424,0.424,0,0,0,0,0.255,0.639,0.639,0,0.359,0.151 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0.326,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0.402,0.181 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.0453 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0907 +0.667,0.274,0.274,0,0,0.267,0.183,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0.2,0.517,0.374,0.631,0.631,0,0.535,0.317 +0.667,0.35,0.35,0.517,0,0,0,0.478,0.67,0.67,0,0.396,0.181 +1,0.655,0.655,0.233,0.483,0,0,0.699,0.788,0.788,0.268,0.468,0.272 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0.573,0.3,0.227 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.362,0,0.136 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.0453 +1,0.51,0.51,0,0.5,0,0,0.654,0.594,0.594,0.254,0,0 +1,0.0495,0.0495,0,0.233,0,0,0.258,0.465,0.465,0.533,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0.5,0,0.517,0,0.298,0.523,0.523,0,0.018,0 +1,0.299,0.299,0,0,0.667,0.233,0.256,0.581,0.581,0,0.508,0 +1,0.411,0.411,0,0.733,0,0,0.266,0.639,0.639,0.535,0.366,0 +1,0.394,0.394,0.767,0,0,0,0.277,0.654,0.654,0,0.416,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.601,0.601,0,0.37,0.0907 +0.667,0.269,0.269,0.483,0,0,0,0.293,0.601,0.601,0,0.398,0.0453 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.269,0.181 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0.462,0.136 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.317 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.181 +0.333,0.251,0.251,0.0167,0,0,0,0.405,0.573,0.573,0,0,0.136 +1,0.829,0.829,1,0,0,0,0.743,0.743,0.743,0,0,0.128 +1,0.905,0.905,1,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0.233,0,0,0,0.765,0.669,0.669,0,0,0.363 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.224 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.43 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.174,0.174,0.75,0.5,0,0,0.257,0.523,0.523,0.27,0,0 +0.333,0.0495,0.0495,0,0.233,0,0,0.258,0.465,0.465,0.366,0,0.0453 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.227 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0453 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.136 +0.333,0.251,0.251,0.0167,0,0,0,0.405,0.573,0.573,0,0,0.371 +0.667,0.569,0.569,0.233,0,0,0,0.581,0.65,0.65,0,0,0.181 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.272 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0.733,0,0,0.256,0.581,0.581,0.585,0,0.116 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.236 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0453 +0.333,0.16,0.16,0.267,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.269,0.269,0.233,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0907 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.136 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0907 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.227 +0.667,0.453,0.453,0.5,0,0,0,0.552,0.68,0.68,0,0,0.0453 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0453 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.136 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.227 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.136 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0702 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.312 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.236 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.456 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.0453 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.0907 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.333,0.172,0.172,0.25,0,0,0,0.316,0.548,0.548,0,0,0.0453 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.181 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.615 +0.333,0.309,0.309,0,0.25,0,0,0.42,0.558,0.558,0.131,0,0.139 +0.667,0.62,0.62,0,0.233,0,0,0.611,0.621,0.621,0.514,0,0.212 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0.545,0,0 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.237 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0907 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0453 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.172,0.172,0.25,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +1,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +1,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +1,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.0907 +1,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.233 +1,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0453 +0.667,0.162,0.162,0,0,0.467,0.683,0.29,0.538,0.538,0,0.156,0 +0.667,0.294,0.294,0.25,0,0,0.267,0.374,0.631,0.631,0,0.546,0.227 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0.402,0.181 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.136 +1,0.829,0.829,0.0167,0,0,0,0.743,0.743,0.743,0,0,0.227 +1,0.905,0.905,0.233,0,0,0,0.788,0.698,0.698,0,0,0.0453 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0875 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.167 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.247 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.18 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0453 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0453 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0907 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0453 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.0907 +0.667,0.294,0.294,0,0,0.0167,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0.45,0.233,0.478,0.67,0.67,0,0.245,0.136 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0.353,0.84 +0.667,0.309,0.309,0,0.483,0,0,0.42,0.558,0.558,0.605,0,0.227 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.272 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.295,0.295,0,0.483,0,0,0.433,0.571,0.571,0.786,0,0 +0.333,0.175,0.175,0,0,0.0167,0.167,0.298,0.523,0.523,0.82,0,0.106 +0.667,0.299,0.299,0,0,0.217,0.0667,0.256,0.581,0.581,0.68,0.242,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0.155,0.246,0.272 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.136 +0.333,0.16,0.16,0.517,0,0,0,0.261,0.533,0.533,0,0,0.136 +0.667,0.269,0.269,0.233,0,0,0,0.293,0.601,0.601,0,0,0.0453 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.0907 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.0907 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.272 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.272 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0907 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.0907 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0518,0.0518,0,0,0,0,0.33,0.472,0.472,0,0,0 +1,0.11,0.11,0,0,0,0,0.352,0.482,0.482,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0478 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.196 +0.667,0.301,0.301,0,0.25,0,0,0.337,0.581,0.581,0.155,0,0 +0.667,0.299,0.299,0,0.233,0,0,0.256,0.581,0.581,0.423,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0453 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.187 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.361 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.227 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.136 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.333,0.2,0.2,0.517,0,0,0,0.368,0.568,0.568,0,0,0.347 +1,0.655,0.655,0.233,0.5,0,0,0.699,0.788,0.788,0.287,0,0.471 +0.667,0.569,0.569,0,0.233,0,0,0.581,0.65,0.65,0.369,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.0453 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.103 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.279 +1,0.143,0.143,0.517,0,0,0,0.331,0.493,0.493,0,0,0.0722 +1,0.295,0.295,0.233,0,0,0,0.433,0.571,0.571,0,0,0.133 +1,0.301,0.301,0.0167,0,0,0,0.337,0.581,0.581,0,0,0.0903 +1,0.299,0.299,0.233,0,0,0,0.256,0.581,0.581,0,0,0.0907 +1,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.272 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.136 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.0907 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.136 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.543 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.136 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.136 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.0453 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.181 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.0453 +1,0.356,0.356,0,0,0.767,0,0.522,0.551,0.551,0,0.203,0.0453 +1,0.0495,0.0495,0,0,0.417,0.233,0.258,0.465,0.465,0,0.065,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0395 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0664 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.153 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.306 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.193 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0453 +0.333,0.172,0.172,0,0,0.0167,0,0.316,0.548,0.548,0,0,0 +1,0.501,0.501,0.25,0.483,1,0.217,0.588,0.773,0.773,0.667,0.23,0 +1,0.655,0.655,0,0,0.167,0.967,0.699,0.788,0.788,0.449,0.229,0.136 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0.454,0.227 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.452,0.294 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.567 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.136 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0907 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.285 +1,0.0495,0.0495,0.0167,0,0,0,0.352,0.462,0.462,0,0,0.282 +1,0.0506,0.0506,0.233,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.214 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.105 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0907 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0453 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0907 +0.667,0.164,0.164,0,0,0.267,0.183,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,0,0,0.2,0.05,0.261,0.533,0.533,0,0.374,0.0907 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0.383,0.0907 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.474,0.0907 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.517,0 +0.667,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.0907 +0.667,0.453,0.453,0,0.483,0,0,0.552,0.68,0.68,0.277,0,0.181 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0.0889,0,0.125 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.644 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.0147 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.276 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.163 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.272 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.143 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.0526 +0.333,0.174,0.174,0.25,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.136 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.363 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0907 +0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.274,0.274,1,0,0,0,0.323,0.611,0.611,0,0,0.181 +0.667,0.294,0.294,1,0.5,0,0,0.374,0.631,0.631,0.368,0,0.0453 +0.667,0.35,0.35,1,0.733,0,0,0.478,0.67,0.67,0.732,0,0 +0.333,0.251,0.251,1,0.233,0,0,0.405,0.573,0.573,0.674,0,0.123 +1,0.829,0.829,0.25,0,0,0,0.743,0.743,0.743,0.474,0,0.21 +1,0.905,0.905,0,0,0.267,0.183,0.788,0.698,0.698,0,0,0.517 +1,0.821,0.821,0,0,0.2,0.517,0.765,0.669,0.669,0,0.412,0.317 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0.368,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0.25,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0.0167,0,0.258,0.465,0.465,0,0,0 +1,0.424,0.424,0,0,0.45,0.467,0.255,0.639,0.639,0,0.203,0.0907 +1,0.411,0.411,0,0,0,0,0.266,0.639,0.639,0,0.739,0.408 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0.328,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0.395,0 +0.667,0.269,0.269,0,0,0.467,0.683,0.293,0.601,0.601,0,0.248,0 +0.667,0.269,0.269,0,0,0,0.267,0.315,0.591,0.591,0,0.356,0.136 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.201,0.0907 +0.667,0.294,0.294,0.5,0,0.0167,0,0.374,0.631,0.631,0,0,0.0453 +1,0.501,0.501,0,0,0.45,0.7,0.588,0.773,0.773,0,0.282,0.272 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.181 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.0907 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0907 +1,0.821,0.821,0.767,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.51,0.51,0.483,0,0,0,0.654,0.594,0.594,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.382 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.197 +1,0.172,0.172,0.75,0,0,0,0.346,0.518,0.518,0,0,0.132 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +1,0.424,0.424,0,0,0,0,0.255,0.639,0.639,0,0,0.293 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.272 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.0907 +0.667,0.159,0.159,0.5,0,0,0,0.275,0.533,0.533,0,0,0.227 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.272 +0.667,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.181 +1,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0 +1,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.0453 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0907 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.136 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.255 +1,0.424,0.424,0,0,0,0,0.255,0.639,0.639,0,0,0.0775 +1,0.411,0.411,0,0,0,0,0.266,0.639,0.639,0,0,0.102 +0.333,0.164,0.164,0.267,0,0,0,0.264,0.528,0.528,0,0,0.249 +0.667,0.271,0.271,0.483,0,0,0,0.263,0.601,0.601,0,0,0.525 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.363 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0453 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.222 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.136 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.136 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.227 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.0453 +0.667,0.564,0.564,0.0167,0,0,0,0.596,0.601,0.601,0,0,0.0453 +1,0.356,0.356,0.733,0,0,0,0.522,0.551,0.551,0,0,0.181 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.149 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.208 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.331 +0.667,0.279,0.279,0,0,0.0167,0,0.271,0.591,0.591,0,0,0.0954 +1,0.382,0.382,0.5,0,0.45,0.233,0.266,0.669,0.669,0,0.477,0.338 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0.196,0.0907 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.499 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.272 +0.667,0.35,0.35,0,0,0.0167,0,0.478,0.67,0.67,0,0,0.0453 +0.667,0.453,0.453,0,0,0.45,0.233,0.552,0.68,0.68,0,0.329,0.0453 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0.221,0.0907 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.136 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.2 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.3 +1,0.301,0.301,0,0.5,0,0,0.337,0.581,0.581,0.261,0,0.0742 +0.667,0.174,0.174,0,0.233,0,0,0.257,0.523,0.523,0.564,0,0.215 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0.477,0,0 +0.667,0.279,0.279,0.267,0,0,0,0.271,0.591,0.591,0,0,0.0907 +0.333,0.16,0.16,0.233,0,0,0,0.261,0.533,0.533,0,0,0.227 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0907 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0907 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.227 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.136 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.0907 +1,0.569,0.569,0.25,0,0,0,0.581,0.65,0.65,0,0,0.158 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.371 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.5 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.317 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.04 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.139 +1,0.0798,0.0798,0.25,0,0,0,0.305,0.474,0.474,0,0,0.182 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.374 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.237 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.369 +1,0.424,0.424,0,0,0,0,0.255,0.639,0.639,0,0,0.391 +1,0.411,0.411,0,0,0,0,0.266,0.639,0.639,0,0,0.163 +1,0.394,0.394,0.0167,0,0.467,0.433,0.277,0.654,0.654,0,0.0412,0.0453 +1,0.382,0.382,0.483,0,0,0.267,0.266,0.669,0.669,0,0.624,0.289 +1,0.378,0.378,0,0,0,0,0.311,0.669,0.669,0,0.297,0 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0.519,0 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0.544,0 +0.333,0.172,0.172,0.267,0,0,0,0.316,0.548,0.548,0,0.319,0 +0.667,0.35,0.35,0.233,0,0,0,0.478,0.67,0.67,0,0.403,0.136 +0.667,0.453,0.453,0.25,0,0,0,0.552,0.68,0.68,0,0.385,0.0907 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.0907 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.0453 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0.733,0,0,0.346,0.518,0.518,0.57,0,0.163 +1,0.427,0.427,0.25,0,0,0,0.377,0.639,0.639,0.319,0,0.141 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0453 +1,0.394,0.394,0,0,0,0,0.277,0.654,0.654,0,0,0.0907 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.136 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.308 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.279 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.294,0.294,0.5,0,0,0,0.374,0.631,0.631,0,0,0.0978 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.295 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.133 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.488 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.323 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.181 +0.667,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.217 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.206 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.136 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.168 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.305 +0.667,0.269,0.269,0,0.733,0,0,0.293,0.601,0.601,0.706,0,0.0883 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.181 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.181 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.136 +0.333,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.136 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.0907 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.272 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.0907 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.181 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0473 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.238 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.302 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.317 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.0453 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0907 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.0907 +0.667,0.269,0.269,0.767,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0.483,0,0,0,0.315,0.591,0.591,0,0,0.136 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0453 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.136 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.181 +0.667,0.453,0.453,0,0.483,0,0,0.552,0.68,0.68,0.721,0,0 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0.772,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0.402,0,0.198 +1,0.821,0.821,0.5,0.483,0,0,0.765,0.669,0.669,0.319,0,0.227 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0.676,0,0.287 +0.667,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.143,0.143,0.0167,0,0,0,0.331,0.493,0.493,0,0,0.0586 +0.667,0.0495,0.0495,0.733,0.5,0.0167,0,0.258,0.465,0.465,0.282,0,0 +0.667,0.301,0.301,0.25,0.233,0.45,0.7,0.337,0.581,0.581,0,0.23,0.181 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0.293,0.0453 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.0907 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.181 +0.667,0.269,0.269,0.25,0.25,0,0,0.315,0.591,0.591,0.176,0,0.0453 +0.333,0.162,0.162,0,0.233,0,0,0.29,0.538,0.538,0.639,0,0.136 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0.209,0,0.0907 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.0453 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.227 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.408 +0.333,0.335,0.335,0,0,0,0,0.434,0.543,0.543,0,0,0.0907 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.0453 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.0672 +1,0.249,0.249,0,0,0,0,0.555,0.535,0.535,0,0,0.09 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0586 +1,0.417,0.417,0.5,0,0,0,0.521,0.624,0.624,0,0,0.192 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0918 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.0453 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.0453 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.0453 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.181 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.136 +1,0.501,0.501,0,0.483,0,0,0.588,0.773,0.773,0.216,0,0.0907 +1,0.655,0.655,0,0,0.467,0.233,0.699,0.788,0.788,0.638,0.245,0.491 +1,0.829,0.829,0,0.483,0,0,0.743,0.743,0.743,0.214,0.423,0.181 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0.516,0.201,0.103 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.53 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.405 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0.25,0.733,0,0,0.294,0.469,0.469,0.479,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.227 +1,0.295,0.295,0,0.25,0,0,0.433,0.571,0.571,0.111,0,0.141 +1,0.427,0.427,0,0.233,0,0,0.377,0.639,0.639,0.491,0,0.148 +1,0.424,0.424,0,0,0,0,0.255,0.639,0.639,0.787,0,0.495 +1,0.411,0.411,0,0,0,0,0.266,0.639,0.639,0.517,0,0.415 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.298 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.197 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.226 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.0453 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +0.333,0.172,0.172,0.0167,0,0,0,0.316,0.548,0.548,0,0,0.231 +0.667,0.35,0.35,0.983,0.733,0.467,0.233,0.478,0.67,0.67,0.571,0.0772,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0.477,0.0907 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0.405,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.59,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.437,0.248 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.299,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.148 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.169 +1,0.301,0.301,0,0,0.0167,0,0.337,0.581,0.581,0,0,0.132 +0.667,0.174,0.174,0,0,0.45,0.933,0.257,0.523,0.523,0,0.223,0 +0.667,0.17,0.17,0,0,0,1,0.261,0.523,0.523,0,0.605,0.0907 +0.667,0.279,0.279,0,0.733,0,0.2,0.271,0.591,0.591,0.737,0.695,0.0453 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0.12,0.375,0.136 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0.616,0.0907 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.438,0.272 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0.481,0.0453 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0.618,0.0453 +0.333,0.2,0.2,0.5,0,0,0,0.368,0.568,0.568,0,0.457,0.0907 +0.667,0.453,0.453,0,0.25,0,0,0.552,0.68,0.68,0.0923,0,0.32 +1,0.829,0.829,0,0.233,0,0,0.743,0.743,0.743,0.352,0,0.085 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.212 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.469 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.0453 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0907 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0.267,0,0,0,0.331,0.493,0.493,0,0,0.145 +0.333,0.172,0.172,0.233,0,0,0,0.346,0.518,0.518,0,0,0.157 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0.25,0,0,0,0.256,0.581,0.581,0,0,0.317 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.227 +0.667,0.279,0.279,0.5,0,0,0,0.271,0.591,0.591,0,0,0.363 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +1,0.378,0.378,0,0,0,0,0.311,0.669,0.669,0,0,0 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0,0.136 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.136 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.0907 +0.667,0.569,0.569,0,0,0.0167,0,0.581,0.65,0.65,0,0,0.181 +1,0.905,0.905,0,0,0.45,0.233,0.788,0.698,0.698,0,0.26,0.136 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0.565,0.136 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0.111,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.251 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.136 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.0453 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0907 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.272 +0.667,0.35,0.35,0.5,0,0,0,0.478,0.67,0.67,0,0,0.227 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.227 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.317 +0.667,0.62,0.62,0.25,0.483,0,0,0.611,0.621,0.621,0.357,0,0.408 +0.667,0.564,0.564,0,0.483,0,0,0.596,0.601,0.601,0.726,0,0.132 +0.667,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0.549,0,0.0453 +0.667,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.0863 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.11 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.181 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0453 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.338,0.338,0,0.517,0,0,0.322,0.609,0.609,0.62,0,0.0453 +0.667,0.425,0.425,0.383,0,0,0,0.373,0.629,0.629,0.31,0,0.136 +0.333,0.301,0.301,0.433,0,0,0,0.367,0.567,0.567,0,0,0.317 +0.333,0.348,0.348,0,0,0,0,0.404,0.572,0.572,0,0,0.0453 +0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0.0907 +0.667,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.136 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.505 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0873 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.358 +1,0.452,0.452,0,0,0,0,0.376,0.637,0.637,0,0,0.219 +0.667,0.321,0.321,0.633,0,0,0,0.255,0.58,0.58,0,0,0.272 +0.667,0.312,0.312,1,0,0,0,0.263,0.58,0.58,0,0,0.136 +0.667,0.3,0.3,0.833,0,0,0,0.27,0.59,0.59,0,0,0.136 +0.333,0.171,0.171,0,0.117,0,0,0.26,0.532,0.532,0,0,0.0907 +0.333,0.169,0.169,0,0.4,0,0,0.275,0.532,0.532,0.742,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0.566,0,0.0453 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0.176,0,0.136 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.227 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0 +0.667,0.647,0.647,0,0.517,0,0,0.55,0.679,0.679,0.544,0,0.0453 +0.667,0.629,0.629,0.383,0,0,0,0.58,0.649,0.649,0.672,0,0.0453 +1,0.747,0.747,0.7,0,0,0,0.785,0.696,0.696,0.387,0,0.181 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0907 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.237 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.0907 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0498 +1,0.177,0.177,0.267,0,0,0,0.345,0.518,0.518,0,0,0.173 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.0864 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.956 +1,0.443,0.443,0,0,0,0,0.265,0.637,0.637,0,0,0.181 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0453 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0907 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0453 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.136 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.317 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.0907 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.363 +0.667,0.647,0.647,0.267,0,0,0,0.55,0.679,0.679,0,0,0.272 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.181 +1,0.747,0.747,0,0.783,0,0,0.785,0.696,0.696,0.62,0,0.38 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.256 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0777 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0898 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.13 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.197 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0.182 +1,0.443,0.443,0,0,0,0,0.265,0.637,0.637,0,0,0.109 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.247 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.363 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0.667,0.301,0.301,0.767,0,0,0,0.367,0.567,0.567,0,0,0.363 +1,0.946,0.946,0.05,0,0,0,0.697,0.785,0.785,0,0,0.363 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.16 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.499 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0907 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0.117,0,0,0.258,0.465,0.465,0,0,0.172 +1,0.305,0.305,0,0.4,0,0,0.432,0.57,0.57,0.786,0,0 +0.667,0.184,0.184,0,0,0.467,0.25,0.297,0.523,0.523,0.78,0.00386,0.255 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0.179,0.227,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.2 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.484 +1,0.413,0.413,0.533,0,0.383,0.25,0.265,0.667,0.667,0,0,0.309 +1,0.409,0.409,0,0,0.0833,0,0.31,0.667,0.667,0,0.17,0.133 +1,0.421,0.421,0.133,0,0,0,0.343,0.652,0.652,0,0.163,0.172 +1,0.482,0.482,0.4,0,0,0,0.354,0.681,0.681,0,0,0.192 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.418 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.181 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.272 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.227 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.327 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0561 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.237 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.13 +0.667,0.184,0.184,0.383,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.321,0.321,0.15,0,0.467,0.55,0.255,0.58,0.58,0,0.171,0 +0.667,0.312,0.312,0,0,0,1,0.263,0.58,0.58,0,0.385,0.0453 +0.667,0.3,0.3,0,0,0,1,0.27,0.59,0.59,0,0.393,0.408 +0.333,0.171,0.171,0,0,0,1,0.26,0.532,0.532,0,0.0927,0.227 +0.667,0.289,0.289,0,0,0,1,0.292,0.6,0.6,0,0,0 +0.667,0.297,0.297,0,0,0,1,0.314,0.59,0.59,0,0,0.181 +0.667,0.338,0.338,0,0,0,1,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,0.533,0,0,0.167,0.373,0.629,0.629,0,0,0.227 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.619 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.136 +0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0.0453 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.0453 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.242 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.212 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.127 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.285 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0478 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.0907 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.0907 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.453 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0907 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0.533,0.617,0,0,0.29,0.537,0.537,0.437,0,0.14 +1,0.612,0.612,0.267,0.167,0,0,0.431,0.711,0.711,0.319,0,0.0309 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.227 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.227 +0.667,0.629,0.629,0,0.117,0,0,0.58,0.649,0.649,0,0,0.145 +1,0.747,0.747,0,0.667,0,0,0.785,0.696,0.696,0.819,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0.775,0,0.0453 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0.172,0,0.117 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.285 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.09 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.515 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.127 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.117 +0.667,0.321,0.321,0.883,0,0,0,0.255,0.58,0.58,0,0,0.0567 +0.667,0.312,0.312,1,0,0,0,0.263,0.58,0.58,0,0,0.217 +0.667,0.3,0.3,0.0333,0,0,0,0.27,0.59,0.59,0,0,0.194 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.446 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.45 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.117 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.0453 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.181 +0.667,0.553,0.553,0,0.617,0,0,0.477,0.669,0.669,0.556,0,0.0453 +0.667,0.647,0.647,0,0.167,0,0,0.55,0.679,0.679,0.796,0,0.0453 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0.49,0,0.144 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0.554,0,0.0857 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0453 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.0453 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.363 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0951 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.315 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.15 +1,0.321,0.321,0,0,0.467,0.517,0.255,0.58,0.58,0,0.201,0.38 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.0981 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.181 +0.667,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0453 +0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.227 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0453 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0907 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.179 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.136 +0.667,0.647,0.647,0.383,0,0,0,0.55,0.679,0.679,0,0,0.227 +1,0.919,0.919,0.433,0,0,0,0.741,0.741,0.741,0,0,0.0453 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.317 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0907 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.184,0.184,0.533,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.492 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.201 +0.667,0.173,0.173,0.0167,0,0,0,0.286,0.528,0.528,0,0,0 +1,0.338,0.338,0.25,0,0,0,0.322,0.609,0.609,0,0,0.0907 +1,0.425,0.425,0.267,0,0,0,0.373,0.629,0.629,0,0,0.317 +1,0.553,0.553,1,0.517,0,0,0.477,0.669,0.669,0.547,0,0.0907 +1,0.647,0.647,0.1,0,0,0,0.55,0.679,0.679,0.458,0,0.272 +0.667,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0.383,0,0 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.0907 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.363 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.413 +1,0.177,0.177,0,0.25,0,0,0.345,0.518,0.518,0.153,0,0.425 +1,0.318,0.318,0.267,0.267,0,0,0.337,0.58,0.58,0.61,0,0.163 +1,0.456,0.456,0.267,0,0,0,0.254,0.637,0.637,0.601,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0.754,0,0 +0.667,0.3,0.3,0,0,0.517,0.2,0.27,0.59,0.59,0.721,0.0425,0.0453 +0.667,0.292,0.292,0,0,0.183,1,0.263,0.6,0.6,0.0889,0.322,0.181 +0.333,0.169,0.169,0,0,0,0.0833,0.275,0.532,0.532,0,0,0.136 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.0907 +0.333,0.194,0.194,0.267,0,0,0,0.29,0.537,0.537,0,0,0.317 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.355 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.22 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.227 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.371 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.0453 +1,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.136 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.15 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.443 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.312,0.312,0.817,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.232 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.66 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.23 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.227 +0.667,0.194,0.194,0.633,0,0,0,0.29,0.537,0.537,0,0,0.227 +0.667,0.425,0.425,0.45,0,0,0,0.373,0.629,0.629,0,0,0.0453 +0.667,0.553,0.553,0,0.117,0,0,0.477,0.669,0.669,0,0,0.136 +0.667,0.647,0.647,0,0.667,0,0,0.55,0.679,0.679,0.789,0,0.272 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0.582,0,0.377 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.162,0,0.226 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.317 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.228 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.633,0,0,0,0.258,0.465,0.465,0,0,0.111 +1,0.147,0.147,0.45,0,0,0,0.33,0.493,0.493,0,0,0.214 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.136 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.0453 +0.333,0.175,0.175,0.817,0,0,0,0.264,0.528,0.528,0,0,0.227 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.499 +0.667,0.289,0.289,0.267,0,0,0,0.292,0.6,0.6,0,0,0.0453 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.136 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.333,0.301,0.301,0,0,0.133,0.05,0.367,0.567,0.567,0,0,0.0907 +0.667,0.647,0.647,0,0,0.333,0.717,0.55,0.679,0.679,0,0.319,0.0453 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0.323,0.227 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.181 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.13 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0717 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.0998 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.242 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.0571 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.198 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.19 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.181 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.0453 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.0453 +0.667,0.289,0.289,0,0,0,0.0333,0.292,0.6,0.6,0,0,0.227 +0.667,0.297,0.297,0,0,0.233,0.217,0.314,0.59,0.59,0,0.14,0 +0.667,0.338,0.338,0,0.517,0,0,0.322,0.609,0.609,0.517,0.481,0.0453 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.784,0 +1,0.553,0.553,0.533,0,0,0,0.477,0.669,0.669,0,0.568,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0.367,0.275 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0.454,0.298 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0.311,0.176 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0.436,0.0453 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.409 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.143 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.25 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0.18 +1,0.452,0.452,0,0,0,0,0.376,0.637,0.637,0,0,0 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0.0453 +1,0.443,0.443,0,0,0,0,0.265,0.637,0.637,0,0,0.136 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.0907 +0.667,0.292,0.292,0,0.367,0,0,0.263,0.6,0.6,0.246,0,0 +0.667,0.289,0.289,0,0.417,0.467,0.767,0.292,0.6,0.6,0.277,0.308,0.136 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.408,0.181 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0.488,0.0453 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.377,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.0811,0.657 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.196 +1,0.919,0.919,0,0.117,0,0,0.741,0.741,0.741,0,0,0.581 +1,0.747,0.747,0,0.667,0,0,0.785,0.696,0.696,0.671,0,0.207 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.316 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.0423 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.373 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0419 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.0644 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.287 +1,0.409,0.409,0,0.517,0,0,0.31,0.667,0.667,0.618,0,0.124 +1,0.421,0.421,0,0,0,0,0.343,0.652,0.652,0,0,0.313 +1,0.482,0.482,0.817,0,0,0,0.354,0.681,0.681,0,0,0.0453 +1,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.499 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.358 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.158 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.309 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.227 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.397 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0619 +0.667,0.177,0.177,0,0,0.0167,0,0.345,0.518,0.518,0,0,0.319 +0.333,0.184,0.184,0,0,0.467,0.25,0.297,0.523,0.523,0,0.0489,0.0626 +0.333,0.185,0.185,0,0,0.45,0.933,0.257,0.523,0.523,0,0.193,0.0571 +0.333,0.181,0.181,0.267,0,0,1,0.26,0.523,0.523,0,0,0.0885 +0.667,0.3,0.3,0,0,0,0.383,0.27,0.59,0.59,0,0,0.356 +0.667,0.292,0.292,0.767,0,0,0,0.263,0.6,0.6,0,0,0.355 +1,0.409,0.409,0.317,0,0,0,0.31,0.667,0.667,0,0,0.244 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.292 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.612,0.612,0,0.5,0,0,0.431,0.711,0.711,0.321,0,0 +1,0.804,0.804,0,0.0167,0.517,0.2,0.586,0.77,0.77,0.247,0.0592,0.136 +1,0.946,0.946,0,0,0.183,0.833,0.697,0.785,0.785,0,0.548,0.136 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.363 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.181 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.317 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0689 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.543 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.181 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.118 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.268 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.0907 +0.333,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.272 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.272 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.333,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.0976 +0.667,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.181 +1,0.747,0.747,0.267,0,0,0,0.785,0.696,0.696,0,0,0.227 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.181 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.0571 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.419 +1,0.426,0.426,0,0,0,0,0.276,0.652,0.652,0,0,0.396 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0.284 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.363 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.228 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.136 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.272 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.0907 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.0453 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.286 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0296 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0767 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.184,0.184,0.383,0,0,0,0.297,0.523,0.523,0,0,0 +0.333,0.185,0.185,0.433,0,0,0,0.257,0.523,0.523,0,0,0.0453 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.136 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.273 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.227 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.181 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.272 +0.333,0.348,0.348,0,0,0,0,0.404,0.572,0.572,0,0,0 +0.333,0.339,0.339,0,0,0,0,0.419,0.557,0.557,0,0,0.181 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.0453 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.144 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.0453 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0.383,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0.433,0,0,0,0.293,0.468,0.468,0,0,0.14 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.142 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.266 +1,0.305,0.305,0.383,0,0,0,0.432,0.57,0.57,0,0,0.298 +1,0.318,0.318,1,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.185,0.185,0.533,0,0,0,0.257,0.523,0.523,0,0,0.2 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.237 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.297 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.619 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.292 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.143 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.134 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.136 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.237 +1,0.946,0.946,0,0.783,0,0,0.697,0.785,0.785,0.599,0,0.0453 +1,0.919,0.919,0.817,0,0,0,0.741,0.741,0.741,0.622,0,0.136 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0.12,0,0.0907 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0453 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.272 +1,0.183,0.183,0,0,0.0167,0,0.455,0.511,0.511,0,0,0.0907 +1,0.0743,0.0743,0,0,0.567,0.25,0.319,0.483,0.483,0,0.145,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.0926 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0.282 +1,0.452,0.452,0.133,0,0,0,0.376,0.637,0.637,0,0,0.015 +0.667,0.321,0.321,0.4,0.783,0,0,0.255,0.58,0.58,0.552,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0.627,0,0.0453 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0.436,0,0.368 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.306 +1,0.409,0.409,0.533,0,0,0,0.31,0.667,0.667,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.227 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.0453 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.0453 +0.333,0.301,0.301,0.267,0.517,0,0,0.367,0.567,0.567,0.544,0,0.363 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0.679,0,0.136 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0.334,0,0.272 +0.333,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.0907 +0.333,0.222,0.222,0,0,0.233,0.533,0.426,0.532,0.532,0,0,0 +0.667,0.345,0.345,0,0,0,0.75,0.521,0.55,0.55,0,0.381,0.0453 +0.667,0.116,0.116,0,0,0.117,0,0.356,0.488,0.488,0,0,0.363 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.13 +1,0.184,0.184,0.133,0,0,0,0.297,0.523,0.523,0,0,0.121 +0.667,0.185,0.185,0.95,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.667,0.3,0.3,0,0.517,0.383,0.3,0.27,0.59,0.59,0.505,0,0 +0.667,0.292,0.292,0,0,0.0833,0.983,0.263,0.6,0.6,0,0.431,0.136 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.541,0.136 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.689,0.317 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0.326,0.363 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.386,0.227 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.333,0.0907 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0.274,0.136 +0.667,0.629,0.629,0.533,0,0,0,0.58,0.649,0.649,0,0,0.17 +1,0.747,0.747,0,0.117,0,0,0.785,0.696,0.696,0,0,0 +1,0.394,0.394,0,0.4,0,0,0.595,0.6,0.6,0.725,0,0.0875 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.136 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.524 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.373 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0.237 +1,0.443,0.443,0,0,0,0,0.265,0.637,0.637,0,0,0.249 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.0747 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.481 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.0907 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.181 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.249 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.146 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.15 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.719 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.201 +1,0.747,0.747,0.267,0,0,0,0.785,0.696,0.696,0,0,0.0907 +1,0.566,0.566,0.817,0,0,0,0.763,0.667,0.667,0,0,0.136 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.268 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.189 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0.126 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.0453 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.0988 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.136 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.0907 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.17 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.0907 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.272 +0.667,0.425,0.425,0,0.75,0,0,0.373,0.629,0.629,0.601,0,0.181 +1,0.804,0.804,0.767,0.0333,0,0,0.586,0.77,0.77,0,0,0.136 +1,0.946,0.946,0.05,0,0.0167,0,0.697,0.785,0.785,0,0,0 +1,0.919,0.919,0,0,0.45,0.933,0.741,0.741,0.741,0,0.315,0.294 +1,0.747,0.747,0,0,0,0.1,0.785,0.696,0.696,0,0.363,0.0907 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0.48,0.181 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0.359,0.227 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0.13,0.0907 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.146 +1,0.177,0.177,0.817,0.117,0,0,0.345,0.518,0.518,0,0,0 +1,0.184,0.184,0,0.4,0,0,0.297,0.523,0.523,0.733,0,0.0606 +1,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0.153,0,0 +1,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.141 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.254 +0.667,0.292,0.292,0,0.617,0,0,0.263,0.6,0.6,0.354,0,0.0453 +0.333,0.169,0.169,0,0.167,0,0,0.275,0.532,0.532,0.646,0,0.0907 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0.183,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.0453 +0.333,0.237,0.237,0.267,0,0,0,0.316,0.547,0.547,0,0,0.0907 +0.667,0.553,0.553,0.817,0.117,0,0,0.477,0.669,0.669,0,0,0.0453 +0.667,0.647,0.647,0,0.667,0,0,0.55,0.679,0.679,0.692,0,0.363 +1,0.919,0.919,0.267,0,0,0,0.741,0.741,0.741,0,0,0.181 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.419 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.151 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.228 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0.0927,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0566 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.253 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.131 +0.667,0.318,0.318,0,0,0.383,0.3,0.337,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0.0833,0.733,0.255,0.58,0.58,0,0.668,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0.471,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.453,0.0907 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0.346,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.523,0.0453 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.256,0.227 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0.408,0 +0.667,0.425,0.425,0.267,0,0,0,0.373,0.629,0.629,0,0.118,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.0475 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.333 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.0907 +0.667,0.282,0.282,0.267,0,0,0,0.434,0.542,0.542,0,0,0.527 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.166 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.233 +1,0.452,0.452,0,0,0,0,0.376,0.637,0.637,0,0,0.248 +1,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.133 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.235 +0.667,0.175,0.175,0.383,0,0.133,0.05,0.264,0.528,0.528,0,0,0.227 +0.667,0.171,0.171,0.783,0,0.333,1,0.26,0.532,0.532,0,0.43,0.0453 +0.667,0.169,0.169,0.45,0,0,0.233,0.275,0.532,0.532,0,0,0.192 +0.667,0.173,0.173,0.383,0,0,0,0.286,0.528,0.528,0,0,0.383 +0.667,0.338,0.338,0.15,0,0,0,0.322,0.609,0.609,0,0,0.272 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.0453 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.0907 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.0907 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.0453 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.0907 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.379 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.147,0.147,0.883,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.177,0.177,0.483,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.452,0.452,0,0,0,0,0.376,0.637,0.637,0,0,0 +0.667,0.321,0.321,0.883,0,0,0,0.255,0.58,0.58,0,0,0 +0.333,0.181,0.181,0.2,0,0,0,0.26,0.523,0.523,0,0,0.0907 +0.667,0.3,0.3,0,0,0.233,0.783,0.27,0.59,0.59,0,0.0669,0.0453 +0.667,0.292,0.292,0,0,0,0.5,0.263,0.6,0.6,0,1,0.272 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.342,0.0453 +0.667,0.297,0.297,0.383,0,0,0,0.314,0.59,0.59,0,0.26,0 +0.667,0.338,0.338,0.15,0,0,0,0.322,0.609,0.609,0,0.301,0.317 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.317 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.0907 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.0822 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.168 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.0453 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.181 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.0907 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0913 +1,0.147,0.147,0,0,0.467,0.55,0.33,0.493,0.493,0,0.156,0.141 +1,0.305,0.305,0,0,0,0.217,0.432,0.57,0.57,0,0.519,0 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0.201,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0.293,0.181 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0.641,0.0453 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.408,0.136 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0.408,0.0907 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.3,0.193 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.336,0.133 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0.108,0 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.181 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.272 +0.667,0.647,0.647,0.267,0,0,0,0.55,0.679,0.679,0,0,0 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.0907 +1,0.747,0.747,0,0,0.467,0.55,0.785,0.696,0.696,0,0.0824,0.0453 +1,0.566,0.566,0,0,0,0.217,0.763,0.667,0.667,0,0.327,0.369 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.0584 +1,0.249,0.249,0,0,0,0,0.553,0.533,0.533,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.19,0.19,0.55,0,0,0,0.33,0.579,0.579,0,0,0.133 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.266 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.266 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.254 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.339 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.272 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0,0.227 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.0907 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.0907 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.136 +0.667,0.683,0.683,0,0,0.0167,0,0.673,0.817,0.817,0,0,0.136 +1,0.933,0.933,0,0,0.467,0.917,0.937,0.937,0.937,0,0.115,0.363 +1,0.732,0.732,0,0,0,0.467,0.993,0.88,0.88,0,0.319,0.0907 +1,0.554,0.554,0,0.817,0,0,0.965,0.843,0.843,0.505,0,0.244 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.119 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.0787 +1,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.238 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.103 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0453 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.181 +0,0.0495,0.0495,0,0,0.0167,0,0.258,0.465,0.465,0,0,0.0907 +0.667,0.359,0.359,0,0,0.467,0.817,0.384,0.73,0.73,0,0.258,0.181 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.476,0.363 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.0453 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +0.667,0.638,0.638,0,0.5,0,0,0.711,0.78,0.78,0.276,0,0.0907 +1,0.732,0.732,0,0.317,0,0,0.993,0.88,0.88,0.508,0,0.507 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.138 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.128 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.0511 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.116 +0.667,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.238 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.15 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.136 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.299 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.126 +0.333,0.204,0.204,0,0,0.0167,0,0.321,0.597,0.597,0,0,0.227 +0.667,0.457,0.457,0.267,0,0.467,0.267,0.449,0.755,0.755,0,0.29,0.0907 +0.667,0.323,0.323,1,0,0,0,0.419,0.635,0.635,0,0,0.181 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.181 +0.333,0.344,0.344,1,0,0,0,0.484,0.622,0.622,0,0,0.691 +0.667,0.504,0.504,1,0,0.0167,0,0.748,0.742,0.742,0,0,0 +0.667,0.386,0.386,1,0.5,0.467,0.267,0.729,0.717,0.717,0.303,0.0412,0 +1,0.342,0.342,1,0.0333,0,0,0.636,0.655,0.655,0.373,0,0.0453 +1,0.116,0.116,1,0,0,0,0.405,0.535,0.535,0,0,0.181 +1,0.0743,0.0743,0.35,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.33,0.33,0.767,0,0,0,0.403,0.692,0.692,0,0,0.191 +1,0.481,0.481,0.35,0.533,0.483,0.667,0.322,0.806,0.806,0.519,0.167,0.0907 +1,0.468,0.468,0,0.5,0,1,0.336,0.806,0.806,0.322,0.427,0 +1,0.449,0.449,0,0.317,0,0.267,0.35,0.824,0.824,0.233,0.284,0.31 +1,0.436,0.436,0,0,0,0,0.336,0.843,0.843,0,0.462,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0.446,0.227 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0.652,0.0453 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.408,0.0907 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.331,0.0453 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0.13,0.363 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0.402,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0.579,0.0453 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0.502,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.136 +1,0.488,0.488,0,0.533,0,0,0.825,0.749,0.749,0.747,0,0.354 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.087 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.151 +0.667,0.316,0.316,0.267,0,0,0,0.319,0.705,0.705,0,0,0.0926 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.0453 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.136 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.363 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.0453 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.0907 +0.333,0.366,0.366,0.267,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.218 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.317 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.136 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.272 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.137 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.393 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0.5,0,0,0.258,0.465,0.465,0.218,0,0 +0.667,0.189,0.189,0,0.0333,0,0,0.284,0.579,0.579,0.521,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0.615,0,0.227 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.0907 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0453 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0.267,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.0907 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.227 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.408 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0453 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.181 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.0453 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.136 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.128 +1,0.313,0.313,0.267,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.153 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.0907 +0.667,0.307,0.307,0,0.5,0,0,0.31,0.717,0.717,0.24,0,0.136 +0.333,0.177,0.177,0,0.583,0,0,0.302,0.591,0.591,0.326,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0907 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.136 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.0453 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.0907 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.136 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0.5,0,0,0.965,0.843,0.843,0.333,0,0.227 +1,0.488,0.488,0,0.317,0,0,0.825,0.749,0.749,0.328,0,0.136 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0.227 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.313,0.313,0.767,0,0,0,0.524,0.68,0.68,0,0,0 +1,0.33,0.33,0.35,0,0,0,0.403,0.692,0.692,0,0,0.136 +0.667,0.337,0.337,0.267,0,0,0,0.3,0.692,0.692,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0907 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.363 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.39 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.181 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.181 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0827 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.33,0.33,0.267,0,0,0,0.403,0.692,0.692,0,0,0.0981 +1,0.481,0.481,1,0,0,0,0.322,0.806,0.806,0,0,0 +0.667,0.328,0.328,0.417,0,0,0,0.31,0.692,0.692,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.317 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.181 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.293 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.253 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.0453 +0.667,0.596,0.596,0.267,0,0,0,0.58,0.805,0.805,0,0,0.12 +1,1,1,0,0,0.0167,0,0.881,0.993,0.993,0,0,0.269 +1,0.933,0.933,0,0,0.467,0.267,0.937,0.937,0.937,0,0.288,0.267 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0.296,0.0747 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.0453 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.363 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.162 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.113 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.288 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.108 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.292 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.177 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.309 +0.333,0.178,0.178,0.267,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.177,0.177,0.283,0,0,0,0.302,0.591,0.591,0,0,0.0453 +0.667,0.314,0.314,0.267,0,0,0,0.375,0.705,0.705,0,0,0.181 +0.333,0.204,0.204,0,0.5,0.267,0,0.321,0.597,0.597,0.395,0,0 +0.333,0.253,0.253,0,0.0333,0.467,0.817,0.354,0.61,0.61,0.31,0.441,0.134 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0.532,0.334 +0.333,0.366,0.366,0.267,0,0,0,0.465,0.641,0.641,0,0.472,0.317 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0.573,0.0453 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0907 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.26 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.314 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0907 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.135 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.202 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.256 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.104 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.162 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0262 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0907 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.453 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.136 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.136 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0.0907 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0,0.227 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0453 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +0.667,0.504,0.504,0,0,0.483,0.667,0.748,0.742,0.742,0,0.144,0.0907 +1,0.554,0.554,0,0,0,0.15,0.965,0.843,0.843,0,0.378,0.0907 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0.329,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0.512,0.0453 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0.349,0.0453 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0.545,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0.509,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.422,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.313,0.313,0.267,0,0,0,0.524,0.68,0.68,0,0,0.194 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.104 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.363 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.181 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0.267,0,0,0,0.302,0.591,0.591,0,0,0.136 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.0453 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0.267,0,0,0,0.58,0.805,0.805,0,0,0.227 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.317 +1,0.638,0.638,0,0.75,0,0,0.711,0.78,0.78,0.566,0,0.136 +1,0.504,0.504,0,0.0667,0,0,0.748,0.742,0.742,0.0767,0,0 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.141 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.169 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.128 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.269 +1,0.444,0.444,0,0,0,0,0.657,0.787,0.787,0,0,0.143 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.136 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0453 +0.667,0.316,0.316,0.267,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.0907 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0.267,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.359,0.359,0.567,0,0,0,0.384,0.73,0.73,0,0,0.0907 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.227 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.0907 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.19 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.136 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0453 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.0936 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.399 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.294 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.257 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.599 +1,0.449,0.449,0,0,0.483,0.417,0.35,0.824,0.824,0,0.0592,0.136 +0.667,0.307,0.307,0,0,0,0.4,0.31,0.717,0.717,0,0.501,0.0453 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0.344,0.181 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0.344,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.356,0.0453 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0.618,0.181 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0.375,0.0907 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0.479,0.272 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.272 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.175 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.284 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.0855 +0.667,0.19,0.19,0.0167,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.193,0.193,1,0,0,0,0.279,0.579,0.579,0,0,0.0734 +0.667,0.189,0.189,0.95,0,0,0,0.284,0.579,0.579,0,0,0.426 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.19 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.119 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0907 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.136 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.136 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.181 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.0907 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.136 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.227 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.363 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.413 +1,0.116,0.116,0,0,0,0,0.422,0.567,0.567,0,0,0 +0.667,0.15,0.15,0,0,0.0167,0,0.372,0.541,0.541,0,0,0 +1,0.313,0.313,0,0,0.467,0.917,0.524,0.68,0.68,0,0.248,0.152 +1,0.33,0.33,0,0.75,0,0.183,0.403,0.692,0.692,0.618,0.286,0.193 +0.667,0.337,0.337,0,0.0667,0,0,0.3,0.692,0.692,0.0679,0,0.3 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.0453 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.227 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.167 +0.667,0.305,0.305,0.517,0,0,0,0.347,0.717,0.717,0,0,0.332 +1,0.446,0.446,0.6,0,0.483,0.417,0.433,0.824,0.824,0,0.00772,0.317 +0.667,0.359,0.359,0,0,0,0.683,0.384,0.73,0.73,0,0.0927,0.0907 +0.667,0.457,0.457,0.0167,0,0,0,0.449,0.755,0.755,0,0,0.0453 +0.667,0.596,0.596,0.817,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.0453 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.19 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0 +0.667,0.316,0.316,0.267,0,0,0,0.319,0.705,0.705,0,0,0.0453 +0.667,0.307,0.307,0.283,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0.0167,0,0,0,0.375,0.705,0.705,0,0,0.317 +1,0.513,0.513,0.533,0,0,0,0.447,0.862,0.862,0,0,0.0907 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.0453 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.181 +1,1,1,0,0.533,0,0,0.881,0.993,0.993,0.544,0,0.0907 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0.674,0,0.227 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0.298,0,0.0453 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.357 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.117 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0.503 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0.21 +1,0.066,0.066,0,0,0,0,0.431,0.567,0.567,0,0,0.505 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0.162 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.167 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.125 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.0699 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.198 +0.667,0.193,0.193,0.767,0,0,0,0.279,0.579,0.579,0,0,0.0453 +0.667,0.189,0.189,0.0667,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.183,0.183,0.267,0,0,0,0.288,0.585,0.585,0,0,0.272 +0.667,0.307,0.307,0.567,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0453 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.0907 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.181 +0.667,0.596,0.596,0.0167,0.817,0,0,0.58,0.805,0.805,0.643,0,0.136 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0.408 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0.0907 +1,0.732,0.732,0.8,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.311 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.181 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.235 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.181,0.181,0.267,0,0,0,0.391,0.572,0.572,0,0,0.0641 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.0699 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.105 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.427 +1,0.449,0.449,0,0,0,0,0.35,0.824,0.824,0,0,0.395 +1,0.436,0.436,0,0.533,0,0,0.336,0.843,0.843,0.599,0,0.192 +1,0.432,0.432,0,0,0.267,0.167,0.392,0.843,0.843,0.376,0,0.154 +0.667,0.314,0.314,0,0,0.217,1,0.375,0.705,0.705,0.791,0.268,0.0453 +0.667,0.359,0.359,0.517,0,0,0.767,0.384,0.73,0.73,0.153,0.664,0.0453 +0.667,0.457,0.457,0.0333,0,0,0,0.449,0.755,0.755,0,0.0425,0.0907 +0.667,0.596,0.596,0.0167,0,0,0,0.58,0.805,0.805,0,0,0.728 +0.667,0.683,0.683,0.25,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.0453 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.611 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.151 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.088 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.11 +1,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.289 +1,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.104 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.281 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.339 +0.667,0.307,0.307,0.267,0,0,0,0.31,0.717,0.717,0,0,0.415 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.388 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0907 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0.533,0,0,0.58,0.805,0.805,0.446,0,0.0907 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0.254,0,0.272 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.0453 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.0907 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.206 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.148 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.239 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.136 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.136 +0.667,0.307,0.307,0.55,0,0,0,0.31,0.717,0.717,0,0,0.181 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.363 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.0453 +0.667,0.359,0.359,0,0.5,0,0,0.384,0.73,0.73,0.322,0,0 +0.667,0.457,0.457,0,0.0333,0,0,0.449,0.755,0.755,0.632,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0.728,0,0.0453 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0.152,0,0.136 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.0737 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.408 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.158 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0453 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.311 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.317 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0.348 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.131 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.331 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.0697 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.13 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.108 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.227 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.272 +0.333,0.253,0.253,0,0,0.267,0.167,0.354,0.61,0.61,0,0,0.0907 +1,0.869,0.869,0,0,0.217,0.933,0.741,0.974,0.974,0,0.138,0.317 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.188 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.272 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.334 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.272 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.182 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0757 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0986 +0.667,0.181,0.181,0,0,0.483,0.417,0.391,0.572,0.572,0,0.0425,0 +0.667,0.33,0.33,0,0,0,0.4,0.403,0.692,0.692,0,0.498,0.317 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0.353,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0.27,0.227 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0.407,0.21 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0.537,0.441 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0.468,0.0453 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.46,0.363 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0.692,0.227 +0.667,0.457,0.457,0,0,0.483,0.417,0.449,0.755,0.755,0,0.0444,0.0907 +0.667,0.596,0.596,0,0,0,0.133,0.58,0.805,0.805,0,0.492,0.0453 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0.409,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0907 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.303 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.168 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.139 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.141 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0453 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.136 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.305,0.305,0.767,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0.35,0,0,0,0.375,0.705,0.705,0,0,0.0907 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0.181 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.181 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.0453 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0.227 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.0453 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.0453 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.241 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.467 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.313 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0907 +0.667,0.314,0.314,0.767,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.359,0.359,0.0667,0,0,0,0.384,0.73,0.73,0,0,0.563 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.529 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.0453 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0.181 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.0907 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.227 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.0907 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.0907 +0.667,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.265 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0.088 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.138 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.0453 +0.667,0.316,0.316,0.267,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.136 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.0453 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.272 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.136 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.0453 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.0907 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.181 +0.667,0.638,0.638,0,0.25,0,0,0.711,0.78,0.78,0.157,0,0.25 +1,0.732,0.732,0,0.283,0,0,0.993,0.88,0.88,0.524,0,0.427 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.184 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.167 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.128 +0.667,0.313,0.313,0.267,0,0,0,0.524,0.68,0.68,0,0,0.0863 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0.141 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.159 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.136 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.181 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.11 +0.667,0.305,0.305,0,0.25,0,0,0.347,0.717,0.717,0.197,0,0.227 +0.667,0.314,0.314,0,0.283,0,0,0.375,0.705,0.705,0.852,0,0.136 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0.767,0,0.317 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0.139,0,0.0907 +0.667,0.596,0.596,0,0.25,0,0,0.58,0.805,0.805,0.211,0,0 +0.333,0.366,0.366,0,0.567,0,0,0.465,0.641,0.641,0.723,0,0.0453 +0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.272 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.226 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0.145 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.222 +1,0.251,0.251,0.0167,0,0,0,0.487,0.617,0.617,0,0,0.0714 +0.667,0.313,0.313,0.817,0,0,0,0.524,0.68,0.68,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.25 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.0913 +0.333,0.183,0.183,0.767,0,0,0,0.288,0.585,0.585,0,0,0.0907 +0.667,0.307,0.307,0.0667,0,0,0,0.31,0.717,0.717,0,0,0.136 +0.667,0.305,0.305,0.517,0,0,0,0.347,0.717,0.717,0,0,0.453 +0.667,0.314,0.314,0.317,0,0,0,0.375,0.705,0.705,0,0,0.0453 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0.767,0,0,0,0.449,0.755,0.755,0,0,0.0907 +1,0.869,0.869,0.35,0,0,0,0.741,0.974,0.974,0,0,0.0453 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.136 +1,0.933,0.933,0,0.5,0,0,0.937,0.937,0.937,0.341,0,0.0907 +1,0.732,0.732,0.0167,0.0333,0,0,0.993,0.88,0.88,0.674,0,0.0453 +1,0.554,0.554,0.533,0,0,0,0.965,0.843,0.843,0,0,0.136 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.181 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.272 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.101 +1,0.33,0.33,0.267,0,0,0,0.403,0.692,0.692,0,0,0.196 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.0563 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.247 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.253 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.653 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.156 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.258 +1,0.513,0.513,0.517,0,0,0,0.447,0.862,0.862,0,0,0.181 +0.667,0.457,0.457,0.0333,0,0,0,0.449,0.755,0.755,0,0,0.0453 +1,0.869,0.869,0,0.5,0,0,0.741,0.974,0.974,0.19,0,0.272 +0.667,0.683,0.683,0,0.0333,0,0,0.673,0.817,0.817,0.47,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0.437,0,0.641 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.193 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.21 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.743 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.272 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0639 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.224 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.609 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.144 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.274 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.557 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0.085 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.139 +1,0.513,0.513,0,0,0,0,0.447,0.862,0.862,0,0,0.227 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0,0.483,0.417,0.58,0.805,0.805,0,0.0425,0.181 +0.667,0.683,0.683,0,0,0,0.4,0.673,0.817,0.817,0,0.695,0.0907 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0.332,0.272 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0.604,0.0907 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.136 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.0907 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0.767,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.33,0.33,0.0667,0,0,0,0.403,0.692,0.692,0,0,0.131 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.14 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.0907 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.136 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.0453 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0453 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.0907 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.363 +1,1,1,0,0.25,0,0,0.881,0.993,0.993,0.132,0,0.3 +1,0.933,0.933,0,0.283,0,0,0.937,0.937,0.937,0.523,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.0907 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.0453 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.136 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_5.csv b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_5.csv new file mode 100644 index 00000000..0f55157e --- /dev/null +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_5.csv @@ -0,0 +1,8761 @@ +occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.06 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.0762 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.409 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.251 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.333 +0.667,0.192,0.192,0.267,0,0,0,0.284,0.579,0.579,0,0,0.334 +0.667,0.322,0.322,1,0,0,0,0.319,0.705,0.705,0,0.506,0.343 +0.667,0.313,0.313,1,0,0.933,0.817,0.31,0.717,0.717,0,0.47,0 +0.667,0.18,0.18,0.0667,0,0,0,0.302,0.591,0.591,0,0,0.072 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.314 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.194 +0.667,0.418,0.418,0.517,0,0,0,0.449,0.755,0.755,0,0,0.156 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.108 +1,0.979,0.979,0.817,0,0,0,0.881,0.993,0.993,0,0,0.216 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.216 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.036 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0.0167,0,0,0,0.34,0.516,0.516,0,0,0.523 +1,0.253,0.253,0.75,0,0,0,0.487,0.617,0.617,0,0,0.144 +0.667,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0.226 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.036 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.334,0.334,0.517,0,0,0,0.31,0.692,0.692,0,0,0.216 +0.667,0.322,0.322,1,0,0,0,0.319,0.705,0.705,0,0,0.036 +0.667,0.313,0.313,0.05,0,0,0,0.31,0.717,0.717,0,0,0.108 +0.667,0.311,0.311,0.5,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.036 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.13 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.205 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.252 +0.333,0.359,0.359,0,0,0,0,0.465,0.641,0.641,0,0,0.072 +0.667,0.677,0.677,0,0.3,0,0,0.711,0.78,0.78,0.602,0,0.504 +0.667,0.565,0.565,0,1,0,0,0.748,0.742,0.742,0.768,0,0.252 +0.667,0.43,0.43,0,0.05,0,0,0.729,0.717,0.717,0.128,0,0.0985 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.072 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.144 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.251 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.072 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.036 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.036 +0.667,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.072 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.036 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.18 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.036 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0.186,0.31 +0.667,0.565,0.565,0,0,0.933,0.383,0.748,0.742,0.742,0,0.658,0.362 +0.667,0.43,0.43,0,0,0,0.433,0.729,0.717,0.717,0,0.131,0.072 +0.667,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.036 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0.045,0.036 +0.667,0.0495,0.0495,0,0,0.933,0.633,0.258,0.465,0.465,0,0.425,0 +1,0.0578,0.0578,0,0,0,1,0.344,0.516,0.516,0,0.612,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.311 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.104 +1,0.0833,0.0833,0.517,0,0,0,0.34,0.516,0.516,0,0,0.183 +0.667,0.151,0.151,1,0,0,0,0.372,0.541,0.541,0,0,0.175 +1,0.183,0.183,0.283,0,0,0,0.391,0.572,0.572,0,0,0.036 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +0.667,0.196,0.196,0.517,0,0,0,0.279,0.579,0.579,0,0,0 +0.667,0.334,0.334,1,0,0,0,0.31,0.692,0.692,0,0,0.144 +0.667,0.322,0.322,0.283,0,0,0,0.319,0.705,0.705,0,0,0.072 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.036 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.072 +0.333,0.196,0.196,0.517,0,0,0,0.321,0.597,0.597,0,0,0.036 +0.667,0.418,0.418,0.25,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.108 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.252 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.144 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.072 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.0774,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0628 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0494 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.0713 +1,0.316,0.316,0.0167,0,0,0,0.524,0.68,0.68,0,0,0.036 +0.667,0.192,0.192,0.75,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0.105,0 +0.667,0.334,0.334,0,0,0.933,0.383,0.31,0.692,0.692,0,0.259,0 +0.667,0.322,0.322,0,0,0,1,0.319,0.705,0.705,0,0,0.072 +0.333,0.181,0.181,0,0,0,1,0.284,0.591,0.591,0,0,0.072 +0.333,0.18,0.18,0,0,0,0.0667,0.302,0.591,0.591,0,0,0.18 +0.333,0.182,0.182,0,0.05,0,0,0.316,0.585,0.585,0.45,0,0 +0.667,0.343,0.343,0.0167,1,0,0,0.384,0.73,0.73,0.527,0,0.184 +0.667,0.418,0.418,1,0.567,0,0,0.449,0.755,0.755,0.408,0,0 +0.667,0.548,0.548,0.533,0,0,0,0.58,0.805,0.805,0,0,0.036 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.331 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.232 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.226 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0,0.144 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.321 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0.304,0.15 +0.667,0.151,0.151,0,0,0.933,0.55,0.372,0.541,0.541,0,0.421,0.182 +0.667,0.183,0.183,0,0,0,0.267,0.391,0.572,0.572,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.317 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.172 +0.667,0.313,0.313,0.183,0,0,0,0.31,0.717,0.717,0,0,0.0972 +0.333,0.18,0.18,0.583,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.108 +0.333,0.196,0.196,0.683,0,0,0,0.321,0.597,0.597,0,0,0 +0.667,0.418,0.418,1,0,0,0.05,0.449,0.755,0.755,0,0.52,0.18 +0.667,0.548,0.548,0.65,0,0.933,1,0.58,0.805,0.805,0,0.672,0.216 +0.667,0.669,0.669,0,0.467,0,0.0333,0.673,0.817,0.817,0.864,0.0886,0.036 +0.667,0.677,0.677,0,0.883,0,0,0.711,0.78,0.78,0.387,0,0.171 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0.276,0,0.335 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.072 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.271 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.21 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.295 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.219 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.403 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.0643 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.143 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.226 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.0717,0.645 +0.667,0.418,0.418,0.683,0,0.933,0.55,0.449,0.755,0.755,0,0.352,0.268 +0.667,0.548,0.548,1,0,0,0.267,0.58,0.805,0.805,0,0.239,0.036 +1,0.979,0.979,1,0,0,0,0.881,0.993,0.993,0,0.3,0.144 +1,0.991,0.991,1,0,0,0,0.937,0.937,0.937,0,0.177,0.108 +1,0.823,0.823,1,0,0.933,0.55,0.993,0.88,0.88,0,0.575,0.072 +0.667,0.43,0.43,0.233,0,0,0.533,0.729,0.717,0.717,0,0.447,0.072 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.036 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.282 +1,0.151,0.151,0.75,0,0,0,0.372,0.541,0.541,0,0,0.036 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.277 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.036 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.352 +1,0.458,0.458,0.767,0,0,0,0.35,0.824,0.824,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0.18 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.036 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.036 +0.667,0.548,0.548,0.517,0,0,0,0.58,0.805,0.805,0,0,0.216 +0.667,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.036 +1,0.991,0.991,0.283,0,0,0,0.937,0.937,0.937,0,0,0.036 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.036 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.036 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.072 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.187 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.118 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.129 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.118 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0.072 +0.667,0.192,0.192,1,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.186,0.186,0.283,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.18 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.504 +0.333,0.196,0.196,0.517,0,0,0,0.321,0.597,0.597,0,0,0 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0 +1,0.798,0.798,0.0333,0,0,0,0.741,0.974,0.974,0,0,0.18 +1,0.979,0.979,0.517,0,0,0,0.881,0.993,0.993,0,0,0.144 +1,0.991,0.991,0.25,0,0,0,0.937,0.937,0.937,0,0,0.252 +1,0.823,0.823,0,0.3,0,0,0.993,0.88,0.88,0.669,0,0.108 +1,0.621,0.621,0,1,0,0,0.965,0.843,0.843,0.324,0,0.261 +1,0.374,0.374,0,0.05,0,0,0.636,0.655,0.655,0,0,0.247 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.119 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.358 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.125 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.183,0.183,0.517,0,0,0,0.391,0.572,0.572,0,0,0.162 +0.667,0.334,0.334,1,0,0,0,0.403,0.692,0.692,0,0,0.43 +0.667,0.343,0.343,1,0,0,0,0.3,0.692,0.692,0,0,0.149 +0.667,0.334,0.334,1,0,0,0,0.31,0.692,0.692,0,0,0.322 +0.333,0.186,0.186,1,0,0,0,0.288,0.585,0.585,0,0,0.144 +0.333,0.181,0.181,0.4,0,0,0,0.284,0.591,0.591,0,0,0.072 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0.18 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.036 +0.333,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.234,0.234,1,0,0,0,0.354,0.61,0.61,0,0,0.072 +1,0.299,0.299,0.533,0,0,0,0.419,0.635,0.635,0,0,0.036 +1,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.288 +1,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0.129 +1,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0,0.145 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.136 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.18 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.036 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.108 +0.333,0.234,0.234,0.267,0,0,0,0.354,0.61,0.61,0,0,0.072 +0.333,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0.216 +0.667,0.669,0.669,0.283,0,0,0,0.673,0.817,0.817,0,0,0.316 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.229 +1,0.823,0.823,0,0.3,0,0,0.993,0.88,0.88,0.716,0,0.108 +1,0.621,0.621,0,1,0,0,0.965,0.843,0.843,0.663,0,0.216 +1,0.212,0.212,0,0.05,0,0,0.447,0.56,0.56,0,0,0.108 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.201 +1,0.0513,0.0513,1,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0833,0.0833,1,0,0,0,0.34,0.516,0.516,0,0.3,0 +0.667,0.0495,0.0495,0.317,0,0.933,0.633,0.258,0.465,0.465,0,0.436,0 +1,0.183,0.183,0,0,0,0.45,0.391,0.572,0.572,0,0.637,0.072 +1,0.477,0.477,0,0,0,0,0.475,0.806,0.806,0,0.64,0.036 +1,0.49,0.49,0,0,0,0,0.322,0.806,0.806,0,0.267,0 +1,0.477,0.477,0,0,0,0,0.336,0.806,0.806,0,0,0.144 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.144 +0.667,0.313,0.313,0.0167,0,0,0,0.31,0.717,0.717,0,0,0.144 +0.333,0.18,0.18,1,0,0,0,0.302,0.591,0.591,0,0,0.187 +0.667,0.315,0.315,1,0,0,0,0.375,0.705,0.705,0,0,0.152 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0.128 +0.333,0.234,0.234,1,0,0,0,0.354,0.61,0.61,0,0,0 +0.667,0.548,0.548,0.9,0,0,0,0.58,0.805,0.805,0,0,0.072 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.324 +1,0.991,0.991,0,0.05,0,0,0.937,0.937,0.937,0.354,0,0.036 +1,0.823,0.823,0,1,0,0,0.993,0.88,0.88,0.134,0,0 +1,0.43,0.43,0,0.3,0,0,0.729,0.717,0.717,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.075 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.123 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.239 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0,0.252 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.548,0.548,0,0.467,0,0,0.58,0.805,0.805,0.724,0,0 +1,0.669,0.669,0,0.883,0,0,0.673,0.817,0.817,0.105,0,0.036 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.36 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.432 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.174 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.173 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.319 +1,0.183,0.183,0.517,0,0,0,0.391,0.572,0.572,0,0,0.108 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.0957 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.404 +1,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.072 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0.108 +0.333,0.18,0.18,0,0.467,0,0,0.302,0.591,0.591,0.697,0,0.036 +0.333,0.182,0.182,0,1,0,0,0.316,0.585,0.585,0.596,0.0816,0.072 +0.333,0.196,0.196,0,0.15,0.733,0.3,0.321,0.597,0.597,0.824,0.655,0.247 +0.667,0.418,0.418,0.933,0,0.2,0.233,0.449,0.755,0.755,0,0.501,0.0789 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0.523,0.317 +1,0.979,0.979,0.583,0,0,0,0.881,0.993,0.993,0,0,0.373 +1,0.991,0.991,1,0,0,0,0.937,0.937,0.937,0,0,0.354 +0.667,0.565,0.565,1,0.217,0,0,0.748,0.742,0.742,0.54,0,0.144 +1,0.621,0.621,0.15,1,0,0,0.965,0.843,0.843,0.391,0,0.288 +1,0.212,0.212,0,0.133,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0833,0.0833,0.767,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.253,0.253,1,0,0,0,0.487,0.617,0.617,0,0,0 +0.667,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.334,0.334,1,0,0,0,0.403,0.692,0.692,0,0.125,0.072 +0.667,0.343,0.343,1,0,0.933,0.883,0.3,0.692,0.692,0,0,0.144 +0.667,0.334,0.334,0.15,0,0,0.467,0.31,0.692,0.692,0,0,0.036 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0,0.216 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.277 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.217 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.417 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.238 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.246 +1,0.979,0.979,0,0.55,0,0,0.881,0.993,0.993,0.644,0,0.177 +1,0.991,0.991,0.267,0.8,0,0,0.937,0.937,0.937,0,0,0.208 +1,0.823,0.823,1,0,0,0,0.993,0.88,0.88,0,0,0.036 +1,0.621,0.621,1,0,0,0,0.965,0.843,0.843,0,0,0.036 +1,0.212,0.212,0.0667,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.139 +0.667,0.316,0.316,1,0,0,0,0.524,0.68,0.68,0,0,0.119 +0.667,0.334,0.334,0.783,0,0,0,0.403,0.692,0.692,0,0,0.0899 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.327 +0.667,0.334,0.334,0.267,0,0,0,0.31,0.692,0.692,0,0,0.241 +0.667,0.322,0.322,1,0,0,0,0.319,0.705,0.705,0,0,0.319 +0.667,0.313,0.313,0.283,0,0,0,0.31,0.717,0.717,0,0,0.294 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.036 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.0969 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.334 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.302 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.416 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.252 +0.667,0.677,0.677,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.144 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.28 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.288 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.397 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.148 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.23 +0.667,0.334,0.334,0.0167,0,0,0,0.31,0.692,0.692,0,0,0.26 +0.667,0.322,0.322,1,0.55,0,0,0.319,0.705,0.705,0.86,0.162,0.284 +0.667,0.313,0.313,1,0.8,0.933,0.633,0.31,0.717,0.717,0,0.722,0.255 +0.333,0.18,0.18,0.317,0,0,0.183,0.302,0.591,0.591,0,0.316,0.036 +0.333,0.182,0.182,0.267,0,0,0,0.316,0.585,0.585,0,0.854,0.288 +0.333,0.196,0.196,1,0,0,0,0.321,0.597,0.597,0,0.3,0.036 +0.667,0.418,0.418,0.533,0,0,0,0.449,0.755,0.755,0,0,0.324 +0.667,0.548,0.548,0.767,0,0,0,0.58,0.805,0.805,0,0,0.036 +1,0.979,0.979,1,0,0,0,0.881,0.993,0.993,0,0,0.252 +1,0.991,0.991,0.567,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.18 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.106 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.129 +0.333,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.181 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0.249 +0.333,0.192,0.192,0.267,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.313,0.313,1,0,0,0,0.31,0.717,0.717,0,0,0.072 +0.667,0.311,0.311,0.0667,0,0,0,0.347,0.717,0.717,0,0,0.036 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.072 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0,0 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0,0.127 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.416 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.48 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.247 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.0924 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.236 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.32 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0.0853 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.199 +0.667,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.511 +1,0.316,0.316,0.267,0,0,0,0.524,0.68,0.68,0,0,0.286 +1,0.334,0.334,1,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.343,0.343,0.533,0,0,0,0.3,0.692,0.692,0,0,0.252 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.036 +0.667,0.322,0.322,0,0.05,0,0,0.319,0.705,0.705,0.369,0,0.144 +0.667,0.313,0.313,0.517,1,0,0,0.31,0.717,0.717,0.645,0,0.036 +0.667,0.311,0.311,1,0.3,0,0,0.347,0.717,0.717,0.755,0,0 +0.667,0.315,0.315,0.283,0,0,0,0.375,0.705,0.705,0,0,0.252 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0,0.036 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0.144 +0.667,0.548,0.548,0,0,0,0,0.58,0.805,0.805,0,0,0.18 +1,0.979,0.979,0.0167,0,0,0,0.881,0.993,0.993,0,0,0.32 +0.667,0.677,0.677,1,0,0,0,0.711,0.78,0.78,0,0,0.577 +0.667,0.565,0.565,0.783,0,0,0,0.748,0.742,0.742,0,0,0.234 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.454 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.072 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.072 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.683,0,0,0,0.258,0.465,0.465,0,0,0.109 +1,0.334,0.334,1,0,0,0,0.403,0.692,0.692,0,0,0.399 +1,0.49,0.49,0.65,0.467,0,0,0.322,0.806,0.806,0.814,0,0.118 +1,0.477,0.477,0,1,0,0,0.336,0.806,0.806,0.262,0,0.266 +1,0.458,0.458,0,0.15,0,0,0.35,0.824,0.824,0,0,0.131 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.144 +1,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.036 +0.667,0.343,0.343,0.683,0,0,0,0.384,0.73,0.73,0,0,0.036 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0.144 +1,0.798,0.798,0.65,0,0,0,0.741,0.974,0.974,0,0,0.18 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.144 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.18 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.072 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.036 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.18 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.036 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0.183,0,0,0,0.258,0.465,0.465,0,0,0.252 +1,0.0833,0.0833,1,0,0,0,0.34,0.516,0.516,0,0,0.144 +1,0.253,0.253,0.617,0,0,0,0.487,0.617,0.617,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0.333,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.186,0.186,0.183,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,1,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,1,0,0,0,0.302,0.591,0.591,0,0,0.324 +0.667,0.315,0.315,1,0,0,0,0.375,0.705,0.705,0,0,0.216 +0.667,0.343,0.343,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.333,0.234,0.234,0.917,0,0,0,0.354,0.61,0.61,0,0,0.072 +0.333,0.299,0.299,1,0,0,0,0.419,0.635,0.635,0,0,0 +0.667,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.036 +1,0.991,0.991,0.15,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.241 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.036 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.117,0.117,1,0,0,0,0.422,0.567,0.567,0,0,0.38 +1,0.151,0.151,0.817,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.68,0.68,0,0,0 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.334,0.334,0,0,0.0667,0.133,0.31,0.692,0.692,0,0.215,0.288 +0.667,0.322,0.322,0.517,0,0.867,1,0.319,0.705,0.705,0,0.485,0.072 +0.667,0.313,0.313,0.25,0,0,0.5,0.31,0.717,0.717,0,0.437,0.036 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0.377,0.288 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0.603,0.18 +0.667,0.343,0.343,0.267,0,0,0,0.384,0.73,0.73,0,0.402,0.036 +0.667,0.418,0.418,0.517,0,0,0,0.449,0.755,0.755,0,0.373,0.288 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.036 +1,0.979,0.979,1,0,0,0,0.881,0.993,0.993,0,0,0.18 +1,0.991,0.991,1,0.55,0,0,0.937,0.937,0.937,0.684,0,0.144 +1,0.823,0.823,1,0.8,0,0,0.993,0.88,0.88,0.644,0.114,0.144 +1,0.621,0.621,0.9,0,0.933,0.817,0.965,0.843,0.843,0,0,0.072 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.154 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.269 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0.113 +1,0.0833,0.0833,0,0,0,0,0.34,0.516,0.516,0,0,0.133 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.192,0.192,1,0,0,0,0.33,0.579,0.579,0,0,0.072 +0.667,0.196,0.196,1,0,0,0,0.279,0.579,0.579,0,0,0.144 +0.667,0.192,0.192,1,0,0,0,0.284,0.579,0.579,0,0,0.19 +0.667,0.186,0.186,1,0,0,0,0.288,0.585,0.585,0,0.478,0.036 +0.667,0.313,0.313,0.4,0,0.933,0.883,0.31,0.717,0.717,0,0.397,0.252 +0.333,0.18,0.18,0,0,0,1,0.302,0.591,0.591,0,0.387,0.036 +0.333,0.182,0.182,0.0167,0,0,0.283,0.316,0.585,0.585,0,0.46,0 +0.333,0.196,0.196,1,0,0,0,0.321,0.597,0.597,0,0.332,0.036 +1,0.602,0.602,1,0,0,0,0.545,0.899,0.899,0,0,0.072 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.072 +1,0.979,0.979,1,0,0,0,0.881,0.993,0.993,0,0,0 +0.667,0.677,0.677,0.9,0.3,0,0,0.711,0.78,0.78,0.511,0,0 +0.667,0.565,0.565,0.0167,1,0,0,0.748,0.742,0.742,0.19,0,0.396 +0.667,0.24,0.24,1,0.05,0,0,0.493,0.591,0.591,0,0,0.202 +1,0.374,0.374,0.783,0,0,0,0.636,0.655,0.655,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.407 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.192,0.192,0.0167,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.322,0.322,0.5,0,0,0,0.319,0.705,0.705,0,0,0.222 +0.667,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.15 +0.667,0.18,0.18,0.517,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.182,0.182,1,0,0,0,0.316,0.585,0.585,0,0,0.036 +0.667,0.343,0.343,0.817,0,0,0,0.384,0.73,0.73,0,0,0.036 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.548,0.548,0.517,0,0,0,0.58,0.805,0.805,0,0,0.36 +0.667,0.669,0.669,1,0,0,0,0.673,0.817,0.817,0,0,0.252 +0.667,0.677,0.677,0.0333,0,0,0,0.711,0.78,0.78,0,0,0.324 +0.667,0.565,0.565,0,0.3,0,0,0.748,0.742,0.742,0.741,0,0.216 +1,0.621,0.621,0,1,0,0,0.965,0.843,0.843,0.249,0,0.036 +1,0.374,0.374,0,0.317,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.415 +1,0.253,0.253,0,0,0,0,0.487,0.617,0.617,0,0,0.0701 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.122 +0.333,0.192,0.192,0,0,0,0,0.284,0.579,0.579,0,0,0.143 +0.333,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.667,0.343,0.343,0.767,0,0,0,0.384,0.73,0.73,0,0,0.396 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,0.979,0.979,1,0,0,0,0.881,0.993,0.993,0,0,0.288 +1,0.991,0.991,1,0,0,0,0.937,0.937,0.937,0,0,0.288 +1,0.823,0.823,0.15,0,0,0,0.993,0.88,0.88,0,0,0.322 +1,0.43,0.43,0,0,0,0,0.729,0.717,0.717,0,0,0.218 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.108 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.229 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.183,0.183,0.517,0,0,0,0.391,0.572,0.572,0,0,0.216 +0.667,0.334,0.334,1,0.05,0,0,0.403,0.692,0.692,0.427,0,0 +0.667,0.343,0.343,0.0333,1,0,0,0.3,0.692,0.692,0.787,0,0 +0.667,0.334,0.334,0,0.3,0,0,0.31,0.692,0.692,0.523,0,0.036 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0.678,0.263,0.036 +0.667,0.313,0.313,0,0,0.933,0.633,0.31,0.717,0.717,0.511,0.502,0.036 +0.333,0.18,0.18,0,0,0,0.183,0.302,0.591,0.591,0,0.457,0.036 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.577,0.216 +0.333,0.196,0.196,0,0,0,0,0.321,0.597,0.597,0,0.543,0.072 +0.333,0.234,0.234,0,0,0,0,0.354,0.61,0.61,0.238,0.481,0.273 +1,0.798,0.798,0.267,0.8,0,0,0.741,0.974,0.974,0.619,0.772,0.036 +0.667,0.669,0.669,1,0.267,0,0,0.673,0.817,0.817,0.393,0.523,0.072 +1,0.991,0.991,0.533,0,0,0,0.937,0.937,0.937,0,0.383,0.216 +0.667,0.565,0.565,0,0,0,0,0.748,0.742,0.742,0,0.671,0.036 +1,0.24,0.24,0,0,0,0,0.493,0.591,0.591,0,0.675,0.036 +1,0.212,0.212,0.0167,0,0,0,0.447,0.56,0.56,0,0.665,0.036 +1,0.116,0.116,0.5,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.108 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.15 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.29 +1,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.0678 +1,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.33 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0.222 +1,0.313,0.313,0,0,0,0,0.31,0.717,0.717,0,0,0.306 +1,0.441,0.441,0,0,0,0,0.392,0.843,0.843,0,0,0.0523 +1,0.448,0.448,0,0,0,0,0.433,0.824,0.824,0,0,0 +1,0.49,0.49,0,0,0,0,0.447,0.862,0.862,0,0,0.036 +1,0.602,0.602,0.683,0,0,0,0.545,0.899,0.899,0,0,0 +0.667,0.548,0.548,0.867,0,0,0,0.58,0.805,0.805,0,0,0.216 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.036 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.454 +1,0.536,0.536,0,0,0,0,0.825,0.749,0.749,0,0,0.557 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.064 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.192,0.192,0,0,0,0,0.33,0.579,0.579,0,0,0.0887 +1,0.196,0.196,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.00422,0 +0.333,0.181,0.181,0,0.467,0.733,0.3,0.284,0.591,0.591,0.711,0.54,0.144 +0.333,0.18,0.18,0,0.883,0.2,1,0.302,0.591,0.591,0,0.769,0 +0.667,0.315,0.315,0,0,0,0.05,0.375,0.705,0.705,0,0.627,0 +0.667,0.343,0.343,0,0,0,0,0.384,0.73,0.73,0,0.433,0.036 +0.667,0.418,0.418,0,0,0,0,0.449,0.755,0.755,0,0.477,0.072 +1,0.798,0.798,0,0,0,0,0.741,0.974,0.974,0,0,0.036 +1,0.979,0.979,0,0,0,0,0.881,0.993,0.993,0,0,0.216 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.252 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.036 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.463 +1,0.374,0.374,0,0,0,0,0.636,0.655,0.655,0,0,0.18 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.136 +1,0.0833,0.0833,0.517,0,0,0,0.34,0.516,0.516,0,0,0.0735 +0.667,0.253,0.253,1,0,0,0,0.487,0.617,0.617,0,0,0.137 +1,0.316,0.316,0.817,0,0,0,0.524,0.68,0.68,0,0,0.117 +0.667,0.334,0.334,0,0,0,0,0.403,0.692,0.692,0,0,0.263 +0.667,0.343,0.343,0,0,0,0,0.3,0.692,0.692,0,0,0.0885 +0.667,0.334,0.334,0,0,0,0,0.31,0.692,0.692,0,0,0.293 +0.667,0.322,0.322,0,0,0,0,0.319,0.705,0.705,0,0.179,0.191 +0.667,0.313,0.313,0,0,0.933,0.383,0.31,0.717,0.717,0,0.454,0.216 +0.667,0.311,0.311,0,0,0,0.433,0.347,0.717,0.717,0,0.312,0.036 +0.667,0.315,0.315,0.0167,0,0,0,0.375,0.705,0.705,0,0.381,0.036 +0.667,0.343,0.343,0.5,0,0,0,0.384,0.73,0.73,0,0.414,0.072 +1,0.602,0.602,0,0,0,0,0.545,0.899,0.899,0,0.741,0.036 +1,0.798,0.798,0.517,0,0,0,0.741,0.974,0.974,0,0.0323,0.036 +1,0.979,0.979,1,0,0,0,0.881,0.993,0.993,0,0,0.036 +1,0.991,0.991,0.0333,0,0,0,0.937,0.937,0.937,0,0,0.072 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.036 +1,0.116,0.116,0,0.3,0,0,0.405,0.535,0.535,0.621,0.0886,0 +1,0.0743,0.0743,0,0.8,0.933,0.633,0.358,0.529,0.529,0,0.546,0.108 +1,0.0578,0.0578,0,0,0,0.183,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.226 +1,0.151,0.151,0,0,0,0,0.372,0.541,0.541,0,0,0.48 +1,0.183,0.183,0,0,0,0,0.391,0.572,0.572,0,0,0.072 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.328 +0.667,0.186,0.186,0,0,0,0,0.288,0.585,0.585,0,0,0 +1,0.445,0.445,0,0,0,0,0.336,0.843,0.843,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0 +0.333,0.196,0.196,0.267,0,0,0,0.321,0.597,0.597,0,0,0.108 +0.333,0.234,0.234,1,0,0,0,0.354,0.61,0.61,0,0,0.553 +1,0.798,0.798,0.533,0,0,0,0.741,0.974,0.974,0,0,0.036 +0.667,0.669,0.669,0,0,0,0,0.673,0.817,0.817,0,0,0.036 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.036 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.371 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.208 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.072 +1,0.0495,0.0495,0,0.25,0,0,0.258,0.465,0.465,0,0.134,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.151,0.151,1,0,0,0,0.372,0.541,0.541,0,0,0.153 +1,0.183,0.183,0.833,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.334,0.334,0.75,0,0,0,0.403,0.692,0.692,0,0.0816,0 +1,0.49,0.49,0,0,0.933,0.383,0.322,0.806,0.806,0,0.491,0.036 +0.667,0.334,0.334,0.0167,0,0,0.7,0.31,0.692,0.692,0,0.615,0.072 +0.667,0.322,0.322,1,0,0,0,0.319,0.705,0.705,0,0,0.288 +0.667,0.313,0.313,0.533,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.311,0.311,0,0,0,0,0.347,0.717,0.717,0,0,0.036 +0.667,0.315,0.315,0,0,0,0,0.375,0.705,0.705,0,0,0.036 +0.333,0.196,0.196,0.267,0,0,0,0.321,0.597,0.597,0,0,0.036 +0.667,0.418,0.418,1,0,0,0,0.449,0.755,0.755,0,0,0.072 +1,0.798,0.798,1,0,0,0,0.741,0.974,0.974,0,0,0.144 +1,0.979,0.979,0.0667,0,0,0,0.881,0.993,0.993,0,0,0.036 +1,0.991,0.991,0,0,0,0,0.937,0.937,0.937,0,0,0.126 +1,0.823,0.823,0,0,0,0,0.993,0.88,0.88,0,0,0.18 +1,0.621,0.621,0,0,0,0,0.965,0.843,0.843,0,0,0.28 +1,0.212,0.212,0,0,0,0,0.447,0.56,0.56,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.0722 +1,0.47,0.47,0,0,0,0,0.479,0.811,0.811,0,0,0.24 +1,0.481,0.481,0,0.25,0,0,0.324,0.811,0.811,0.539,0,0.108 +1,0.468,0.468,0,1,0,0,0.338,0.811,0.811,0.0795,0,0 +1,0.449,0.449,0,0.0667,0,0,0.352,0.83,0.83,0,0,0.288 +1,0.436,0.436,0,0,0,0,0.338,0.849,0.849,0,0,0.108 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0,0.036 +1,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0.167,0,0.216 +1,0.458,0.458,0,0.75,0,0,0.451,0.868,0.868,0.776,0,0.036 +1,0.526,0.526,0,0.567,0,0,0.549,0.906,0.906,0,0,0.18 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0 +1,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.108 +1,0.67,0.67,0,0.25,0,0,0.715,0.784,0.784,0.555,0,0.18 +1,0.625,0.625,0,1,0,0,0.753,0.746,0.746,0.0738,0,0.036 +0.667,0.0495,0.0495,0,0.333,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.252 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.16 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.388 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.422 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.0604 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.0933 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.036 +0.333,0.178,0.178,0.217,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,1,0,0,0,0.322,0.6,0.6,0,0,0.144 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0,0.18 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0.46,0,0.036 +0.667,0.595,0.595,1,1,0,0,0.677,0.822,0.822,0.554,0,0.036 +0.667,0.67,0.67,0.65,0.583,0,0,0.715,0.784,0.784,0.667,0,0 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0.533,0,0.216 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.108 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.18 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.072 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.174 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.259 +0.333,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.138 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.119 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.134 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.324 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.144 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.036 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0.072 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.108 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.252 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.245 +0.667,0.595,0.595,0.9,0,0,0,0.677,0.822,0.822,0,0,0.241 +1,0.67,0.67,1,0,0,0,0.715,0.784,0.784,0,0,0.259 +0.667,0.337,0.337,1,0,0,0,0.505,0.606,0.606,0,0,0 +1,0.275,0.275,1,0,0,0,0.496,0.593,0.593,0,0,0.036 +1,0.442,0.442,0.967,0,0,0,0.64,0.658,0.658,0,0,0.108 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.275 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.211 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.105 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.252 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.072 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.072 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.036 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.036 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.072 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.216 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.396 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.036 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.108 +0.667,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.104 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.167 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.0814 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.0692 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0.125 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.189,0.189,0.767,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.183,0.183,0.0333,0,0,0,0.289,0.587,0.587,0,0,0 +1,0.436,0.436,0,0,0,0,0.338,0.849,0.849,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.108 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.216 +0.667,0.322,0.322,0.5,0,0,0,0.386,0.734,0.734,0,0,0.144 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.036 +1,0.674,0.674,0.467,0,0,0,0.746,0.981,0.981,0.144,0,0.108 +1,0.868,0.868,0.0333,0.75,0,0,0.887,1,1,0.588,0,0.252 +1,0.98,0.98,0,0.833,0,0,0.944,0.943,0.943,0.715,0,0.432 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.192 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.036 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.072 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.072 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0908 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.306 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0.0816,0 +0,0.0495,0.0495,0,0.25,0.867,0.317,0.258,0.465,0.465,0.538,0.624,0.036 +0.667,0.337,0.337,0,1,0.133,0.467,0.302,0.696,0.696,0.858,0.439,0.072 +0.667,0.328,0.328,0,0.0667,0,0,0.311,0.696,0.696,0.146,0.378,0.036 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0.385,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.547,0.139 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0.363,0.036 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.349,0.144 +0.667,0.322,0.322,0.467,0,0,0,0.386,0.734,0.734,0,0.606,0.072 +0.667,0.367,0.367,1,0,0,0,0.452,0.759,0.759,0,0.511,0.108 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0.336,0.072 +1,0.868,0.868,1,0,0,0,0.887,1,1,0,0,0.157 +1,0.98,0.98,1,0,0,0,0.944,0.943,0.943,0,0,0.036 +1,0.913,0.913,0.4,0,0,0,1,0.887,0.887,0,0,0.375 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.265 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.279 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.261 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.124 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.337,0.337,0.467,0,0,0,0.302,0.696,0.696,0,0,0.144 +0.667,0.328,0.328,1,0,0,0,0.311,0.696,0.696,0,0,0.108 +0.667,0.316,0.316,1,0,0,0,0.321,0.709,0.709,0,0,0.072 +0.667,0.307,0.307,1,0,0,0,0.311,0.721,0.721,0,0,0.18 +0.667,0.305,0.305,1,0,0,0,0.349,0.721,0.721,0,0.158,0.128 +1,0.435,0.435,0.4,0.25,1,0.817,0.437,0.83,0.83,0.496,0.643,0 +1,0.458,0.458,0,1,0,0.233,0.451,0.868,0.868,0.487,0.0788,0.18 +1,0.526,0.526,0.967,0.0667,0,0,0.549,0.906,0.906,0.556,0,0.151 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0.331,0,0 +1,0.868,0.868,1,1,0,0,0.887,1,1,0.688,0,0.072 +1,0.98,0.98,1,0.317,0,0,0.944,0.943,0.943,0.67,0,0.036 +1,0.913,0.913,0.9,0,0,0,1,0.887,0.887,0.23,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0884 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.168 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.0761 +1,0.47,0.47,0,0,0,0,0.479,0.811,0.811,0,0,0.182 +1,0.481,0.481,0,0,0,0,0.324,0.811,0.811,0,0,0.108 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.036 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.252 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.252 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.036 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0 +0.333,0.208,0.208,0.967,0,0,0,0.355,0.612,0.612,0,0,0.036 +0.667,0.466,0.466,1,0,0,0,0.584,0.809,0.809,0,0,0.036 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.18 +0.667,0.67,0.67,1,0,0,0,0.715,0.784,0.784,0,0,0.072 +0.667,0.625,0.625,0.9,0,0,0,0.753,0.746,0.746,0,0,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.108 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.216 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.467,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,1,0,0,0,0.341,0.518,0.518,0,0,0.294 +1,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0,0,0 +1,0.444,0.444,1,0,0,0,0.662,0.792,0.792,0,0,0 +0.667,0.33,0.33,1,0,0,0,0.405,0.696,0.696,0,0,0.036 +0.333,0.193,0.193,0.4,0,0,0,0.28,0.581,0.581,0,0,0.036 +0.333,0.189,0.189,0.467,0,0,0,0.284,0.581,0.581,0,0,0.108 +1,0.449,0.449,1,0,0,0,0.352,0.83,0.83,0,0,0.072 +1,0.436,0.436,0.317,0,0,0,0.338,0.849,0.849,0,0,0.18 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.036 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0.105,0,0.036 +0.333,0.208,0.208,0.717,0.75,0,0,0.355,0.612,0.612,0.665,0,0.144 +0.667,0.466,0.466,1,0.567,0,0,0.584,0.809,0.809,0,0,0.072 +1,0.868,0.868,1,0.25,0,0,0.887,1,1,0.588,0,0 +1,0.98,0.98,1,1,0,0,0.944,0.943,0.943,0.111,0,0.036 +1,0.913,0.913,1,0.0667,0,0,1,0.887,0.887,0,0,0.252 +1,0.727,0.727,0.15,0,0,0,0.972,0.849,0.849,0,0,0.072 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.368 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.127 +1,0.15,0.15,0.15,0,0,0,0.374,0.543,0.543,0,0,0.0981 +1,0.313,0.313,1,0,0,0,0.527,0.683,0.683,0,0,0.289 +0.667,0.33,0.33,0.633,0,0,0,0.405,0.696,0.696,0,0,0.182 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.072 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.252 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0 +0.333,0.208,0.208,0.65,0,0,0,0.355,0.612,0.612,0,0,0 +0.333,0.258,0.258,1,0,0,0,0.421,0.637,0.637,0.155,0,0.581 +1,0.868,0.868,1,0.683,0,0,0.887,1,1,0.805,0,0.39 +1,0.98,0.98,1,0.633,0,0,0.944,0.943,0.943,0,0,0.376 +0.667,0.625,0.625,1,0,0,0,0.753,0.746,0.746,0,0,0.242 +1,0.727,0.727,0.217,0,0,0,0.972,0.849,0.849,0,0,0.101 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.65,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,1,0,0,0,0.374,0.543,0.543,0,0,0.107 +1,0.181,0.181,0.133,0,0,0,0.392,0.574,0.574,0,0,0.178 +1,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0,0.494 +1,0.481,0.481,0,0,0,0,0.324,0.811,0.811,0,0,0.312 +1,0.468,0.468,0.65,0,0,0,0.338,0.811,0.811,0,0,0 +0.333,0.183,0.183,0.883,0,0,0,0.289,0.587,0.587,0,0,0.072 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.144 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.072 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.396 +0,0.0495,0.0495,0.65,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.466,0.466,1,0.433,0,0,0.584,0.809,0.809,0.691,0,0 +1,0.868,0.868,0.65,0.883,0,0,0.887,1,1,0.357,0,0 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.108 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.072 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.428 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.495 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.338 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0,0,0.176 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.108 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.164 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.47,0 +0.667,0.305,0.305,0,0,1,0.783,0.349,0.721,0.721,0,0.675,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0.00422,0.036 +0.667,0.322,0.322,0.217,0,0,0,0.386,0.734,0.734,0,0,0.18 +0.333,0.208,0.208,1,0,0,0,0.355,0.612,0.612,0,0,0.432 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0,0.072 +1,0.868,0.868,1,0,0,0,0.887,1,1,0,0,0 +1,0.98,0.98,1,0,0,0,0.944,0.943,0.943,0,0,0.108 +1,0.913,0.913,0.65,0,0,0,1,0.887,0.887,0,0,0.108 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.216 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.036 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.155 +1,0.0513,0.0513,0.467,0,0,0,0.327,0.511,0.511,0,0,0.231 +1,0.0829,0.0829,1,0.5,0,0,0.341,0.518,0.518,0.634,0,0 +1,0.15,0.15,1,1,0,0,0.374,0.543,0.543,0.134,0,0 +0.667,0.181,0.181,1,0.0833,0,0,0.392,0.574,0.574,0,0,0.036 +0.667,0.19,0.19,1,0,0,0,0.331,0.581,0.581,0,0,0.036 +0.667,0.193,0.193,0.4,0,0,0,0.28,0.581,0.581,0,0,0.216 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.072 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.301 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0.245,0,0.036 +0.667,0.322,0.322,0,0.75,0,0,0.386,0.734,0.734,1,0,0.198 +1,0.526,0.526,0,0.567,0,0,0.549,0.906,0.906,0.854,0,0.397 +1,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0.559,0,0.52 +1,0.868,0.868,0,1,0,0,0.887,1,1,0.782,0,0.3 +1,0.98,0.98,0,0.317,0,0,0.944,0.943,0.943,0.316,0,0.334 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.57 +1,0.727,0.727,0.717,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.638,0.638,0.05,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.12 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.312 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.13 +1,0.15,0.15,0.467,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.181,0.181,1,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0.833,0,0,0,0.331,0.581,0.581,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.108 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.108 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.036 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.036 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.036 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.036 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.036 +0.333,0.258,0.258,0.217,0,0,0,0.421,0.637,0.637,0,0,0.395 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.216 +1,0.98,0.98,0.317,0,0,0,0.944,0.943,0.943,0.27,0,0.108 +1,0.913,0.913,0,1,0,0,1,0.887,0.887,0.73,0,0 +1,0.727,0.727,0,0.317,0,0,0.972,0.849,0.849,0,0,0.036 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.322 +0.667,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.353 +0.667,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.337,0.337,0.217,0,0,0,0.302,0.696,0.696,0,0,0 +0.667,0.328,0.328,0.55,0,0,0,0.311,0.696,0.696,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.144 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.036 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.0816,0.108 +0.333,0.186,0.186,0,0,0.867,0.317,0.322,0.6,0.6,0,0.688,0.252 +0.667,0.367,0.367,0,0,0.133,0.733,0.452,0.759,0.759,0,0.913,0.253 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0.11,0.304 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.108 +0.667,0.36,0.36,0,0.5,0,0,0.486,0.625,0.625,0.985,0.423,0.18 +0.667,0.337,0.337,0,0.817,1,0.817,0.505,0.606,0.606,0.155,0.308,0 +1,0.275,0.275,0,0,0,0.233,0.496,0.593,0.593,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0741 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.29 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.289 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0.558 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.247 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.45 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.108 +0.667,0.466,0.466,0.717,0,0,0,0.584,0.809,0.809,0,0,0.036 +0.667,0.595,0.595,1,0,0,0,0.677,0.822,0.822,0,0,0.072 +1,0.98,0.98,1,0,0,0,0.944,0.943,0.943,0,0,0.288 +1,0.913,0.913,1,0,0,0,1,0.887,0.887,0,0,0.144 +1,0.727,0.727,1,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.442,0.442,0.15,0,0,0,0.64,0.658,0.658,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.134,0,0 +1,0.33,0.33,0,0.683,0,0,0.405,0.696,0.696,0.584,0,0 +1,0.337,0.337,0,0.633,0,0,0.302,0.696,0.696,0.536,0,0.0622 +0.667,0.328,0.328,0,0,0,0,0.311,0.696,0.696,0,0,0.329 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.319 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.46 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0.0816,0.468 +0.667,0.322,0.322,0,0,1,0.5,0.386,0.734,0.734,0,0.353,0.0863 +0.667,0.367,0.367,0,0,0,0.55,0.452,0.759,0.759,0,0.277,0.108 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0.56,0.036 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.665,0.18 +0.333,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0.466,0.252 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0.75,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.072 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.252 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.252 +1,0.0495,0.0495,0.15,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0.425,0,0 +1,0.19,0.19,0.383,0.933,0,0,0.331,0.581,0.581,0.28,0,0 +0.333,0.0495,0.0495,0,0.383,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.072 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.18 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0.097,0.072 +0.333,0.208,0.208,0,0,0.6,0.25,0.355,0.612,0.612,0,0.571,0.216 +0.667,0.466,0.466,0,0,0.4,1,0.584,0.809,0.809,0,0,0.072 +0.333,0.322,0.322,0,0,0,1,0.468,0.644,0.644,0,0,0.036 +0.333,0.36,0.36,0,0,0,0.383,0.486,0.625,0.625,0,0,0.252 +0.667,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.108 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.312 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.199 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.108 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.036 +1,0.0829,0.0829,0.467,0,0,0,0.341,0.518,0.518,0,0,0.124 +0.667,0.251,0.251,1,0,0,0,0.49,0.621,0.621,0.113,0,0.0802 +1,0.444,0.444,1,0.75,0,0,0.662,0.792,0.792,0.672,0,0 +0.667,0.33,0.33,1,0.833,0,0,0.405,0.696,0.696,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.302,0.696,0.696,0,0,0.18 +0.333,0.189,0.189,0.4,0,0,0,0.284,0.581,0.581,0,0,0.108 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.036 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.036 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.229 +1,0.526,0.526,0.967,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0,0.144 +1,0.595,0.595,0.333,0,0,0,0.677,0.822,0.822,0,0,0.144 +1,0.67,0.67,0,0,0,0,0.715,0.784,0.784,0,0,0.108 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.18 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.036 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.072 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.257 +0.667,0.193,0.193,0,0,0,0,0.28,0.581,0.581,0,0,0.0664 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.263 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.289 +0.667,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.16 +0.667,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.295 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.591 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.14 +0.667,0.367,0.367,0,0,0,0,0.452,0.759,0.759,0,0,0.229 +0.667,0.466,0.466,0,0,0,0,0.584,0.809,0.809,0,0,0.036 +0.667,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0.0886,0.573 +1,0.98,0.98,0,0,0.867,0.317,0.944,0.943,0.943,0,0.0197,0.354 +1,0.913,0.913,0,0,0.133,0.2,1,0.887,0.887,0,0,0.25 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.18 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.341,0.505,0.505,0,0,0.162 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0.127 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.251,0.251,0.717,0,0,0,0.49,0.621,0.621,0,0,0.072 +0.667,0.181,0.181,0.817,0,0,0,0.392,0.574,0.574,0,0,0.252 +0.667,0.19,0.19,0.467,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.302,0.696,0.696,0,0,0.108 +0.333,0.189,0.189,0.0667,0,0,0,0.284,0.581,0.581,0,0,0.072 +0.333,0.183,0.183,0.467,0,0,0,0.289,0.587,0.587,0,0,0.072 +0.667,0.178,0.178,1,0,0,0,0.284,0.593,0.593,0,0,0.108 +0.667,0.0495,0.0495,0.0667,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.105,0.216 +1,0.526,0.526,0,0.5,1,0.783,0.549,0.906,0.906,0.772,0,0 +0.667,0.466,0.466,0,1,0,0,0.584,0.809,0.809,0,0,0.118 +1,0.868,0.868,0.467,0.0833,0,0,0.887,1,1,0,0,0.327 +1,0.98,0.98,0.3,0,0,0,0.944,0.943,0.943,0,0,0.072 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0.177 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.18 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.15,0.15,0.217,0,0,0,0.374,0.543,0.543,0,0,0 +0.667,0.313,0.313,0.55,0,0,0,0.527,0.683,0.683,0,0,0 +0.667,0.33,0.33,0,0,0,0,0.405,0.696,0.696,0,0.307,0 +0.667,0.337,0.337,0,0,1,0.817,0.302,0.696,0.696,0,0.414,0.072 +0.667,0.328,0.328,0,0,0,1,0.311,0.696,0.696,0,0.506,0.036 +0.667,0.316,0.316,0,0,0,1,0.321,0.709,0.709,0,0.424,0.252 +0.667,0.307,0.307,0,0,0,1,0.311,0.721,0.721,0,0.406,0.252 +1,0.432,0.432,0,0,0,0.65,0.394,0.849,0.849,0,0.506,0.036 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0.726,0.108 +1,0.458,0.458,0,0,0,0,0.451,0.868,0.868,0,0.578,0 +1,0.526,0.526,0.967,0,0,0,0.549,0.906,0.906,0,0.35,0 +1,0.674,0.674,1,0,0,0,0.746,0.981,0.981,0,0.485,0 +1,0.868,0.868,1,0,0,0,0.887,1,1,0,0.498,0.036 +1,0.98,0.98,1,0,0,0,0.944,0.943,0.943,0,0.361,0.18 +1,0.913,0.913,0.9,0,0,0,1,0.887,0.887,0,0.429,0 +0.667,0.275,0.275,0,0,0,0,0.496,0.593,0.593,0,0,0.361 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.216 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0.301 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0896 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0.0668 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.383 +0.667,0.181,0.181,0,0,0,0,0.392,0.574,0.574,0,0,0.106 +0.667,0.33,0.33,0.467,0,0,0,0.405,0.696,0.696,0,0,0.0722 +0.667,0.337,0.337,1,0,0,0,0.302,0.696,0.696,0,0,0.287 +0.667,0.328,0.328,0.0667,0,0,0,0.311,0.696,0.696,0,0,0.122 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0.144 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0,0.327 +0.667,0.305,0.305,0,0,0,0,0.349,0.721,0.721,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0.288 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.036 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.108 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.324 +1,0.868,0.868,0.467,0,0,0,0.887,1,1,0,0,0.144 +1,0.98,0.98,1,0,0,0,0.944,0.943,0.943,0,0,0.144 +1,0.913,0.913,0.833,0,0,0,1,0.887,0.887,0,0,0.036 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.29 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.407,0.537,0.537,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.327,0.511,0.511,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.341,0.518,0.518,0,0,0 +1,0.15,0.15,0.5,0,0,0,0.374,0.543,0.543,0,0,0 +1,0.313,0.313,0,0,0,0,0.527,0.683,0.683,0.284,0,0.177 +1,0.33,0.33,0,0.933,0,0,0.405,0.696,0.696,0.571,0,0.142 +0.667,0.193,0.193,0,0.383,0,0,0.28,0.581,0.581,0.374,0.374,0.036 +0.667,0.189,0.189,0,0,1,1,0.284,0.581,0.581,0,0.585,0 +0.667,0.183,0.183,0,0,0,0.05,0.289,0.587,0.587,0,0,0.216 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.036 +0.667,0.305,0.305,0.65,0,0,0,0.349,0.721,0.721,0,0,0.138 +1,0.307,0.307,0.883,0,0,0,0.377,0.709,0.709,0,0,0.199 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.106 +0.667,0.208,0.208,0.4,0,0,0,0.355,0.612,0.612,0,0,0.036 +0.667,0.258,0.258,1,0,0,0,0.421,0.637,0.637,0,0,0.036 +0.667,0.322,0.322,0.383,0,0,0,0.468,0.644,0.644,0,0,0 +0.667,0.36,0.36,0,0,0,0,0.486,0.625,0.625,0,0,0.072 +1,0.625,0.625,0,0,0,0,0.753,0.746,0.746,0,0,0.317 +1,0.501,0.501,0,0,0,0,0.734,0.721,0.721,0,0,0.245 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.116 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.159 +1,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0.184 +1,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.107 +0.667,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.318 +0.667,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0.236 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0.491,0.036 +0.333,0.177,0.177,0,0,1,0.517,0.303,0.593,0.593,0,0.603,0.036 +0.333,0.178,0.178,0.4,0,0,0,0.317,0.587,0.587,0,0.332,0.036 +0.667,0.322,0.322,0.1,0,0,0,0.386,0.734,0.734,0,0,0 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0.072 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.144 +1,0.868,0.868,0,0,0,0,0.887,1,1,0,0,0.432 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.036 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.144 +1,0.638,0.638,0,0,0,0,0.831,0.755,0.755,0,0,0.036 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.108 +1,0.0743,0.0743,0,0,0,0,0.36,0.53,0.53,0,0,0.036 +1,0.0578,0.0578,0,0,0,0,0.346,0.518,0.518,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.346,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.036 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.302,0.696,0.696,0,0,0.18 +0.667,0.328,0.328,0,0,0,0.0667,0.311,0.696,0.696,0,0.554,0 +0.667,0.316,0.316,0,0,1,0.983,0.321,0.709,0.709,0,0.616,0 +0.667,0.307,0.307,0,0,0,0,0.311,0.721,0.721,0,0.442,0.036 +1,0.432,0.432,0,0,0,0,0.394,0.849,0.849,0,0.0485,0.108 +1,0.435,0.435,0,0,0,0,0.437,0.83,0.83,0,0,0 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.036 +1,0.526,0.526,0,0,0,0,0.549,0.906,0.906,0,0,0 +1,0.674,0.674,0,0,0,0,0.746,0.981,0.981,0,0,0.396 +1,0.595,0.595,0,0,0,0,0.677,0.822,0.822,0,0,0.18 +1,0.98,0.98,0,0,0,0,0.944,0.943,0.943,0,0,0.18 +1,0.913,0.913,0,0,0,0,1,0.887,0.887,0,0,0 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0 +1,0.246,0.246,0,0,0,0,0.449,0.562,0.562,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.15,0 +1,0.0495,0.0495,0,0,0.867,0.317,0.258,0.465,0.465,0,0.634,0 +1,0.15,0.15,0,0,0.133,0.733,0.374,0.543,0.543,0,0.3,0 +1,0.181,0.181,0.967,0,0,0,0.392,0.574,0.574,0,0,0 +0.667,0.19,0.19,1,0,0,0,0.331,0.581,0.581,0,0,0 +0.667,0.193,0.193,0.333,0,0,0,0.28,0.581,0.581,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.581,0.581,0,0,0.288 +0.333,0.183,0.183,0,0,0,0,0.289,0.587,0.587,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0.036 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.036 +0.333,0.178,0.178,0,0,0,0,0.317,0.587,0.587,0,0,0.036 +0.667,0.322,0.322,0,0,0,0,0.386,0.734,0.734,0,0,0.036 +0.667,0.367,0.367,0.967,0,0,0.0667,0.452,0.759,0.759,0,0.0886,0 +1,0.674,0.674,1,0,1,0.717,0.746,0.981,0.981,0.13,0,0.072 +1,0.868,0.868,1,0.75,0,0,0.887,1,1,0.669,0,0.072 +1,0.98,0.98,1,0.567,0,0,0.944,0.943,0.943,0.542,0,0.036 +1,0.913,0.913,0.9,0,0,0,1,0.887,0.887,0,0,0.144 +1,0.727,0.727,0,0,0,0,0.972,0.849,0.849,0,0,0.144 +1,0.442,0.442,0,0,0,0,0.64,0.658,0.658,0,0,0.216 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.446 +1,0.15,0.15,0,0,0,0,0.374,0.543,0.543,0,0,0.29 +1,0.444,0.444,0,0,0,0,0.662,0.792,0.792,0,0,0.203 +0.667,0.19,0.19,0.467,0,0,0,0.331,0.581,0.581,0,0,0.26 +1,0.481,0.481,1,0,0,0,0.324,0.811,0.811,0,0,0.212 +1,0.468,0.468,0.833,0,0,0,0.338,0.811,0.811,0,0,0.036 +0.667,0.316,0.316,0,0,0,0,0.321,0.709,0.709,0,0,0 +0.333,0.178,0.178,0,0,0,0,0.284,0.593,0.593,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.303,0.593,0.593,0,0,0.036 +0.667,0.307,0.307,0,0,0,0,0.377,0.709,0.709,0,0,0 +0.333,0.186,0.186,0,0,0,0,0.322,0.6,0.6,0,0,0.036 +0.333,0.208,0.208,0,0,0,0,0.355,0.612,0.612,0,0,0.216 +0.333,0.258,0.258,0.967,0,0,0,0.421,0.637,0.637,0,0,0.072 +0.333,0.322,0.322,1,0,0,0,0.468,0.644,0.644,0,0,0.108 +0.667,0.67,0.67,1,0,0,0,0.715,0.784,0.784,0,0,0.144 +0.667,0.625,0.625,1,0,0,0,0.753,0.746,0.746,0,0.0605,0.036 +1,0.501,0.501,0.9,0,0.867,0.317,0.734,0.721,0.721,0,0,0.072 +1,0.442,0.442,0,0,0.133,0.733,0.64,0.658,0.658,0,0,0.036 +1,0.183,0.183,0,0,0,0,0.555,0.608,0.608,0,0,0.26 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.141 +1,0.305,0.305,0.267,0,0,0,0.435,0.572,0.572,0,0,0.0905 +1,0.452,0.452,1,0,0,0,0.378,0.641,0.641,0,0,0.0887 +0.667,0.321,0.321,0.183,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.108 +0.667,0.3,0.3,0.0167,0,0,0,0.271,0.592,0.592,0,0,0 +0.333,0.171,0.171,0.7,0,0,0,0.261,0.534,0.534,0,0,0.144 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.288 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.108 +0.333,0.174,0.174,0.0167,0,0,0,0.29,0.539,0.539,0,0,0.072 +0.333,0.188,0.188,0.467,0,0,0,0.316,0.549,0.549,0,0,0.072 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.108 +1,0.736,0.736,0,0.3,0,0,0.701,0.79,0.79,0.642,0,0.144 +1,0.895,0.895,0,0.967,0,0,0.745,0.745,0.745,0.686,0,0.216 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0.211,0,0.226 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.0985 +1,0.35,0.35,0.0167,0,0,0,0.524,0.553,0.553,0,0,0.233 +1,0.116,0.116,1,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0.617,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.128 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.144 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.036 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.298,0.298,0.267,0,0,0,0.323,0.612,0.612,0,0,0.072 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0.036 +0.667,0.395,0.395,0.917,0,0,0,0.479,0.672,0.672,0,0,0.108 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.144 +1,0.895,0.895,0.717,0,0,0,0.745,0.745,0.745,0,0,0.072 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.108 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.046 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.106 +0.667,0.184,0.184,0.1,0,0,0,0.298,0.524,0.524,0,0,0.153 +0.667,0.185,0.185,1,0,0,0,0.257,0.524,0.524,0.303,0,0.178 +0.667,0.312,0.312,1,0.883,0,0,0.264,0.582,0.582,0.149,0,0.035 +0.333,0.175,0.175,1,0.383,0,0,0.265,0.529,0.529,0,0,0.036 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.108 +0,0.0495,0.0495,0.533,0,0,0,0.258,0.465,0.465,0,0,0.072 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.216 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.108 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.444 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.427 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.245 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.108 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.118 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.0761 +0.667,0.177,0.177,0.6,0,0,0,0.346,0.519,0.519,0,0,0 +0.333,0.184,0.184,0.117,0,0,0,0.298,0.524,0.524,0,0,0.036 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.036 +0,0.0495,0.0495,0.1,0,0,0,0.258,0.465,0.465,0,0,0.036 +0,0.0495,0.0495,0.383,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.072 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.216 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.144 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.252 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.266 +0.667,0.331,0.331,0.35,0,0,0,0.42,0.559,0.559,0,0,0.19 +0.667,0.635,0.635,1,0,0,0,0.613,0.622,0.622,0,0,0.0842 +1,0.807,0.807,0.833,0,0,0,0.768,0.671,0.671,0,0,0.215 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.108 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.46 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.108 +0.667,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.072 +0.667,0.318,0.318,0,0.55,0,0,0.338,0.582,0.582,0.766,0,0 +0.667,0.321,0.321,0,0.717,0,0,0.257,0.582,0.582,0.155,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.036 +0.667,0.3,0.3,0.767,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.292,0.292,1,0,0,0,0.264,0.602,0.602,0,0,0.036 +0.667,0.289,0.289,0.417,0,0,0,0.294,0.602,0.602,0,0,0.18 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.072 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.454 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.036 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.288 +0,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.331,0.331,1,0,0,0,0.42,0.559,0.559,0,0,0.18 +0.667,0.635,0.635,0.433,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.072 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0.767,0,0,0,0.258,0.465,0.465,0,0,0.117 +1,0.245,0.245,0.933,0,0,0,0.405,0.523,0.523,0,0,0.142 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.176 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.456,0.456,0,0,0,0,0.256,0.641,0.641,0,0,0.036 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0.036 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0 +1,0.413,0.413,0,0,0,0,0.267,0.671,0.671,0,0,0.398 +1,0.409,0.409,0,0,0,0,0.312,0.671,0.671,0,0,0.353 +1,0.41,0.41,0,0,0,0,0.345,0.656,0.656,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.072 +0.667,0.395,0.395,0.267,0,0,0,0.479,0.672,0.672,0,0,0.108 +0.667,0.507,0.507,0.217,0,0,0,0.553,0.682,0.682,0,0,0.324 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.072 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.144 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.208 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.212 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0.072 +0.667,0.321,0.321,0.183,0,0,0,0.257,0.582,0.582,0,0,0.036 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.036 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.036 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.036 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.216 +0.667,0.298,0.298,0.0167,0,0,0,0.323,0.612,0.612,0,0,0.036 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0.036 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0.18 +1,0.736,0.736,0.167,0,0,0,0.701,0.79,0.79,0,0,0.072 +1,0.895,0.895,0.267,0,0,0,0.745,0.745,0.745,0,0,0.036 +1,0.928,0.928,1,0,0,0,0.79,0.701,0.701,0,0.158,0.072 +1,0.807,0.807,0.433,0,0.933,0.383,0.768,0.671,0.671,0,0,0 +1,0.35,0.35,0,0,0,0.383,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0.267,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.305,0.305,1,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.318,0.318,0.183,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.072 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.144 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.036 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.108 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.298,0.298,0.267,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0.108 +0.667,0.395,0.395,0.917,0,0.0667,0.133,0.479,0.672,0.672,0,0.388,0.18 +1,0.736,0.736,0,0,0.867,0.633,0.701,0.79,0.79,0,0.323,0.108 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0.406,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.347,0.622 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0.495,0.0844 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0.489,0 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0.224,0 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0.419,0 +1,0.066,0.066,0,0,0,0,0.36,0.483,0.483,0,0.142,0.194 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.221 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.232 +0.667,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.302 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.408 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.191 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.447 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.108 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.219,0.252 +1,0.29,0.29,0.767,0,0.933,0.633,0.316,0.592,0.592,0,0.726,0.036 +0.667,0.174,0.174,1,0,0,1,0.29,0.539,0.539,0,0,0.144 +0.667,0.326,0.326,1,0.05,0,0.7,0.375,0.632,0.632,0.358,0,0.216 +1,0.567,0.567,1,1,0,0,0.59,0.775,0.775,0,0,0.252 +1,0.736,0.736,0.867,0.217,0,0,0.701,0.79,0.79,0.111,0,0.036 +1,0.895,0.895,0,0.8,0,0,0.745,0.745,0.745,0.655,0,0.221 +1,0.928,0.928,0,0.467,0,0,0.79,0.701,0.701,0.669,0,0.204 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.288 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.144 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.0529 +1,0.184,0.184,0.6,0,0,0,0.298,0.524,0.524,0,0,0.485 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.214 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.431 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.266 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.477 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.194 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.0825 +0.667,0.298,0.298,0.35,0,0,0,0.323,0.612,0.612,0,0,0.144 +1,0.464,0.464,1,0,0,0,0.434,0.715,0.715,0,0,0.036 +1,0.567,0.567,0.35,0,0,0,0.59,0.775,0.775,0,0,0.036 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.072 +0.667,0.613,0.613,0,0.133,0,0,0.583,0.652,0.652,0.429,0,0.144 +0.667,0.635,0.635,0,0.367,0,0,0.613,0.622,0.622,0.577,0,0.072 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.203 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0.31,0,0.234 +1,0.183,0.183,0,0.55,0,0,0.457,0.513,0.513,0.489,0,0.252 +1,0.099,0.099,0,0.65,0,0,0.383,0.503,0.503,0.195,0,0.108 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0.304,0.108 +0.667,0.292,0.292,0,0,0.933,0.767,0.264,0.602,0.602,0,0.654,0.108 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0.203,0.108 +0.333,0.17,0.17,0.85,0,0,0,0.287,0.529,0.529,0,0,0.108 +1,0.298,0.298,1,0,0,0,0.323,0.612,0.612,0,0,0.252 +0.667,0.188,0.188,0.333,0,0,0,0.316,0.549,0.549,0,0,0.036 +0.667,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.072 +0.667,0.278,0.278,0,0,0,0,0.405,0.574,0.574,0,0,0.072 +0.667,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.036 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.151 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.161 +1,0.183,0.183,0,0.333,0,0,0.457,0.513,0.513,0.36,0,0.465 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.0796 +1,0.245,0.245,0,0.55,0,0,0.405,0.523,0.523,0.699,0,0.201 +1,0.305,0.305,0,0.717,0,0,0.435,0.572,0.572,0.538,0,0.0975 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.1 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.258 +0.667,0.181,0.181,0.267,0,0,0,0.261,0.524,0.524,0,0,0 +0.333,0.175,0.175,0.217,0,0,0,0.265,0.529,0.529,0,0,0.144 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.144 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.072 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +1,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +1,0.326,0.326,0.267,0,0,0,0.375,0.632,0.632,0,0,0.036 +1,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0.072 +1,0.507,0.507,0.433,0,0,0,0.553,0.682,0.682,0,0,0.216 +1,0.331,0.331,0,0,0,0,0.42,0.559,0.559,0,0,0.072 +1,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.323 +1,0.245,0.245,0.483,0,0,0,0.405,0.523,0.523,0,0,0.153 +1,0.305,0.305,0.517,0,0,0,0.435,0.572,0.572,0,0,0.309 +1,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0.255 +0.667,0.185,0.185,0.183,0,0,0,0.257,0.524,0.524,0,0,0.118 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.108 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.036 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.18 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.036 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0.248,0.108 +1,0.567,0.567,0,0,0.933,0.883,0.59,0.775,0.775,0,0.28,0.233 +1,0.736,0.736,0,0,0,1,0.701,0.79,0.79,0,0,0.387 +1,0.895,0.895,0,0,0,0.983,0.745,0.745,0.745,0,0,0.199 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.603,0.273 +1,0.807,0.807,0,0,0.933,0.767,0.768,0.671,0.671,0,0,0.252 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.216 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.235 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.163 +1,0.177,0.177,0.767,0,0,0,0.346,0.519,0.519,0,0,0.306 +1,0.318,0.318,1,0.05,0,0,0.338,0.582,0.582,0.373,0,0.139 +1,0.456,0.456,1,1,0,0,0.256,0.641,0.641,0.641,0,0.344 +1,0.443,0.443,1,0.217,0,0,0.267,0.641,0.641,0.628,0,0.412 +1,0.426,0.426,0.867,0,0,0,0.278,0.656,0.656,0.216,0.287,0.377 +1,0.413,0.413,0,0,0.933,0.633,0.267,0.671,0.671,0,0.706,0.072 +0.667,0.169,0.169,0,0,0,0.4,0.276,0.534,0.534,0,0.366,0 +0.333,0.17,0.17,0.0167,0,0,0,0.287,0.529,0.529,0,0,0.036 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0.312 +0.667,0.395,0.395,0.167,0,0,0,0.479,0.672,0.672,0,0,0.44 +1,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.18 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.2 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.252 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.108 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.375 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.177,0.177,0.767,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.318,0.318,0.683,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.072 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.036 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.036 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.144 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0.036 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.036 +0.667,0.298,0.298,0.0167,0,0,0,0.323,0.612,0.612,0,0,0.072 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0.072 +1,0.395,0.395,0.433,0.3,0,0,0.479,0.672,0.672,0.715,0,0 +1,0.507,0.507,0,0.967,0,0,0.553,0.682,0.682,0.653,0,0.108 +1,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0.148,0,0.036 +1,0.928,0.928,0,0.8,0,0,0.79,0.701,0.701,0.46,0,0 +1,0.555,0.555,0,0.733,0,0,0.598,0.602,0.602,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.108 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0613 +1,0.177,0.177,0.717,0,0,0,0.346,0.519,0.519,0,0.0816,0 +0.667,0.184,0.184,0,0,0.933,0.383,0.298,0.524,0.524,0,0.556,0 +0.667,0.185,0.185,0,0,0,0.65,0.257,0.524,0.524,0,0.653,0 +0.667,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0.487,0.376 +1,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0 +1,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.036 +1,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.036 +1,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.252 +1,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0 +1,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.108 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.252 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.252 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.172 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.144 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0927 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.202 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.312 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.152 +1,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.151 +1,0.426,0.426,0,0,0,0,0.278,0.656,0.656,0,0,0.126 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.252 +0.333,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.216 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.036 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.072 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.072 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.108 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.108 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.0802 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.255 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0537 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.353 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.0878 +1,0.452,0.452,0,0,0,0,0.378,0.641,0.641,0,0,0.386 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.138 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.375 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.254 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.221 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.127 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0844 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.4 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.626 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.507,0.507,0,0.383,0,0,0.553,0.682,0.682,0.602,0.0731,0.144 +1,0.895,0.895,0,0.883,0.933,0.467,0.745,0.745,0.745,0.224,0.346,0.216 +1,0.928,0.928,0,0,0,0.567,0.79,0.701,0.701,0,0,0.288 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.148 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.375 +0.667,0.184,0.184,0.767,0,0,0,0.298,0.524,0.524,0,0,0.245 +0.667,0.185,0.185,1,0,0,0,0.257,0.524,0.524,0,0,0 +1,0.181,0.181,1,0,0,0,0.261,0.524,0.524,0,0,0.134 +1,0.3,0.3,1,0,0,0,0.271,0.592,0.592,0,0,0.264 +0.333,0.0495,0.0495,0.867,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.276,0.534,0.534,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0.072 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.072 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.072 +0.667,0.395,0.395,0.767,0,0,0,0.479,0.672,0.672,0,0,0.216 +0.667,0.507,0.507,1,0,0,0,0.553,0.682,0.682,0,0,0.432 +0.667,0.613,0.613,0.417,0,0,0,0.583,0.652,0.652,0,0,0.108 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.216 +1,0.807,0.807,0.517,0,0,0,0.768,0.671,0.671,0,0,0.18 +1,0.35,0.35,1,0,0,0,0.524,0.553,0.553,0,0,0.438 +1,0.183,0.183,1,0,0,0,0.457,0.513,0.513,0,0,0.036 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.145 +1,0.0495,0.0495,0.117,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.129 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +0.667,0.177,0.177,0.767,0,0,0,0.346,0.519,0.519,0,0,0.304 +0.667,0.318,0.318,1,0.05,0,0,0.338,0.582,0.582,0.412,0,0.102 +0,0.0495,0.0495,0.417,1,0,0,0.258,0.465,0.465,0.102,0,0 +0,0.0495,0.0495,0,0.217,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.175,0.175,0,0,0,0,0.265,0.529,0.529,0,0,0.288 +0.333,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0.036 +0.333,0.169,0.169,0.267,0,0,0,0.276,0.534,0.534,0,0,0.0463 +0.667,0.29,0.29,0.217,0,0,0,0.316,0.592,0.592,0,0,0.323 +1,0.422,0.422,0.517,0,0,0,0.356,0.686,0.686,0,0,0.205 +1,0.464,0.464,1,0,0,0,0.434,0.715,0.715,0,0,0.249 +1,0.395,0.395,0.667,0,0,0,0.479,0.672,0.672,0,0,0.072 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.036 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.18 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.036 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.036 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.205 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.144 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0421 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.036 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.302 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.108 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.288 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.29,0.29,0,0.3,0,0,0.316,0.592,0.592,0.636,0,0 +0.667,0.298,0.298,0.267,0.967,0,0,0.323,0.612,0.612,0.711,0,0 +1,0.464,0.464,1,0,0,0,0.434,0.715,0.715,0.607,0,0.036 +0.667,0.395,0.395,0.917,0,0,0,0.479,0.672,0.672,0,0,0.144 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.324 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.072 +0.667,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.036 +0.667,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.279 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.174 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0.102 +0.667,0.0495,0.0495,0,0.05,0,0,0.258,0.465,0.465,0.401,0,0 +0.667,0.184,0.184,0.267,1,0,0,0.298,0.524,0.524,0.66,0,0 +0.667,0.321,0.321,1,0.217,0,0,0.257,0.582,0.582,0.751,0,0.288 +0.667,0.312,0.312,1,0,0,0,0.264,0.582,0.582,0.854,0,0 +0.333,0.175,0.175,1,0,0,0,0.265,0.529,0.529,0.59,0,0.108 +1,0.413,0.413,1,0,0,0,0.267,0.671,0.671,0.609,0.0197,0 +0.667,0.289,0.289,0.367,0,0.933,0.25,0.294,0.602,0.602,0.81,0,0.108 +0.333,0.17,0.17,0,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.072 +0.333,0.188,0.188,0.483,0,0,0,0.316,0.549,0.549,0,0,0.107 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.144 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.252 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.144 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.276 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.188 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.28 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.172 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.767,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0.683,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.524,0.524,0,0,0.036 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.252 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.072 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.072 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.072 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.439 +0.333,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.222,0.222,1,0,0,0,0.368,0.569,0.569,0.201,0.267,0.18 +1,0.736,0.736,0.183,0.8,0.933,0.633,0.701,0.79,0.79,0.979,0.53,0.18 +1,0.895,0.895,0,0.467,0,0.133,0.745,0.745,0.745,0.59,0.43,0.288 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0.176,0.036 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0.0928,0.036 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.19 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.199 +1,0.0495,0.0495,0.1,0,0,0,0.258,0.465,0.465,0,0,0.0573 +1,0.147,0.147,0.617,0,0,0,0.331,0.494,0.494,0,0,0.0954 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.17 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.142 +1,0.321,0.321,0.6,0,0,0,0.257,0.582,0.582,0,0.271,0.18 +0.667,0.312,0.312,1,0,0.933,0.717,0.264,0.582,0.582,0,0.632,0.144 +1,0.426,0.426,1,0,0,0.317,0.278,0.656,0.656,0,0.579,0.036 +0.667,0.292,0.292,1,0,0,0,0.264,0.602,0.602,0,0.266,0.036 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0.539,0 +0.667,0.29,0.29,0.0333,0,0,0,0.316,0.592,0.592,0,0.454,0.108 +0.667,0.298,0.298,0.1,0,0,0,0.323,0.612,0.612,0,0.357,0 +0.667,0.326,0.326,1,0,0,0,0.375,0.632,0.632,0,0,0.072 +0.667,0.395,0.395,1,0,0,0,0.479,0.672,0.672,0,0,0.108 +1,0.736,0.736,0.0833,0,0,0,0.701,0.79,0.79,0,0,0.072 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.216 +1,0.635,0.635,0,0,0,0,0.613,0.622,0.622,0,0,0.144 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.704 +1,0.184,0.184,0,0,0,0,0.298,0.524,0.524,0,0,0.0997 +1,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.143 +1,0.443,0.443,0,0,0,0,0.267,0.641,0.641,0,0,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.222,0.222,0.1,0,0,0,0.368,0.569,0.569,0,0,0 +1,0.507,0.507,1,0,0,0,0.553,0.682,0.682,0,0,0.144 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.072 +1,0.928,0.928,0.0833,0,0,0,0.79,0.701,0.701,0,0,0.216 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.072 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.471 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0893 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.117 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.109 +1,0.147,0.147,0.267,0,0,0,0.331,0.494,0.494,0,0,0.261 +0.667,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.184,0.184,1,0,0,0,0.298,0.524,0.524,0,0,0.266 +0.667,0.321,0.321,1,0,0,0,0.257,0.582,0.582,0,0,0.326 +0.667,0.312,0.312,1,0,0,0,0.264,0.582,0.582,0,0,0.108 +0.333,0.175,0.175,0.367,0,0,0,0.265,0.529,0.529,0,0,0.036 +0.667,0.171,0.171,0,0,0,0,0.261,0.534,0.534,0,0,0 +1,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.108 +0.333,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.298,0.298,0.7,0,0,0,0.323,0.612,0.612,0,0,0.18 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.036 +0.667,0.395,0.395,0,0,0,0,0.479,0.672,0.672,0,0,0.108 +0.667,0.507,0.507,0,0,0,0,0.553,0.682,0.682,0,0,0.148 +0.667,0.613,0.613,0,0,0,0,0.583,0.652,0.652,0,0,0.656 +0.667,0.342,0.342,0,0,0,0,0.435,0.544,0.544,0,0,0.124 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.233 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.474,0.474,0,0,0.184 +1,0.245,0.245,0,0,0,0,0.405,0.523,0.523,0,0,0.102 +0.667,0.305,0.305,0.267,0,0,0,0.435,0.572,0.572,0,0,0.254 +0.667,0.318,0.318,1,0,0,0,0.338,0.582,0.582,0,0,0.557 +0.333,0.185,0.185,0.917,0,0,0,0.257,0.524,0.524,0,0,0.504 +0.333,0.181,0.181,0,0,0,0,0.261,0.524,0.524,0,0,0.072 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.18 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.036 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.101,0.108 +0.333,0.17,0.17,0,0,0.933,0.383,0.287,0.529,0.529,0,0,0.144 +0.333,0.174,0.174,0,0,0,0.65,0.29,0.539,0.539,0,0,0.108 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0 +0.333,0.222,0.222,0.767,0,0,0,0.368,0.569,0.569,0,0,0.072 +1,0.736,0.736,0.683,0.3,0,0,0.701,0.79,0.79,0.448,0,0.036 +1,0.895,0.895,0,0.967,0,0,0.745,0.745,0.745,0,0,0.216 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.175 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.156 +1,0.5,0.5,0,0,0,0,0.656,0.596,0.596,0,0,0.0896 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.127 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.171 +1,0.305,0.305,0,0,0,0,0.435,0.572,0.572,0,0,0.141 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.107 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.25 +0.667,0.312,0.312,0.767,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.3,0.3,1,0,0,0,0.271,0.592,0.592,0,0,0.036 +0.667,0.292,0.292,1,0,0,0,0.264,0.602,0.602,0,0,0.252 +0.667,0.289,0.289,1,0,0,0,0.294,0.602,0.602,0,0,0.036 +0.667,0.29,0.29,0.867,0,0,0,0.316,0.592,0.592,0,0,0.036 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.144 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.072 +0.333,0.222,0.222,0,0,0,0,0.368,0.569,0.569,0,0,0.036 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.252 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.072 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.555,0.555,0,0,0,0,0.598,0.602,0.602,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,1,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0816,0.0816,0.183,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.147,0.147,0.0167,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,1,0,0,0,0.346,0.519,0.519,0,0,0.151 +1,0.318,0.318,1,0.05,0,0,0.338,0.582,0.582,0.452,0.134,0.128 +0.667,0.185,0.185,1,1,0.933,0.383,0.257,0.524,0.524,0.588,0.551,0.144 +0.667,0.312,0.312,1,0.217,0,1,0.264,0.582,0.582,0.481,0.395,0 +0.667,0.3,0.3,0.617,0,0,0.95,0.271,0.592,0.592,0,0.392,0.036 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0.108 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.29,0.539,0.539,0,0,0.109 +0.333,0.188,0.188,0,0,0,0,0.316,0.549,0.549,0,0,0.157 +0.333,0.222,0.222,0.767,0,0,0,0.368,0.569,0.569,0,0,0.18 +0.667,0.507,0.507,1,0,0,0,0.553,0.682,0.682,0,0,0.072 +1,0.895,0.895,1,0,0,0,0.745,0.745,0.745,0,0,0.144 +1,0.635,0.635,1,0,0,0,0.613,0.622,0.622,0,0,0.036 +1,0.302,0.302,0.867,0,0,0,0.428,0.534,0.534,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.108 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.23 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.263 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0,0.0966 +0.667,0.321,0.321,0,0,0,0,0.257,0.582,0.582,0,0,0.284 +0.667,0.312,0.312,0,0,0,0,0.264,0.582,0.582,0,0,0.391 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0,0.217 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0,0.213 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.072 +0.667,0.298,0.298,0,0,0,0,0.323,0.612,0.612,0,0,0.108 +0.667,0.326,0.326,0,0,0,0,0.375,0.632,0.632,0,0,0.108 +1,0.567,0.567,0.767,0,0,0,0.59,0.775,0.775,0.142,0,0.036 +1,0.736,0.736,0.933,0.8,0,0,0.701,0.79,0.79,0.766,0,0.144 +1,0.895,0.895,0,0.733,0,0,0.745,0.745,0.745,0,0,0.472 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.18 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0 +1,0.2,0.2,0,0,0,0,0.391,0.509,0.509,0,0,0.112 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.177,0.177,0,0,0,0,0.346,0.519,0.519,0,0,0.162 +1,0.318,0.318,0,0,0,0,0.338,0.582,0.582,0,0.204,0.297 +1,0.321,0.321,0,0,0.933,0.467,0.257,0.582,0.582,0,0.426,0.176 +0.667,0.312,0.312,0,0,0,0.3,0.264,0.582,0.582,0,0.437,0 +0.667,0.3,0.3,0,0,0,0,0.271,0.592,0.592,0,0.478,0.108 +0.667,0.292,0.292,0,0,0,0,0.264,0.602,0.602,0,0.473,0.072 +0.667,0.289,0.289,0,0,0,0,0.294,0.602,0.602,0,0.0928,0 +0.667,0.29,0.29,0,0,0,0,0.316,0.592,0.592,0,0,0.571 +1,0.422,0.422,0,0,0,0,0.356,0.686,0.686,0,0,0.0875 +1,0.464,0.464,0,0,0,0,0.434,0.715,0.715,0,0,0.36 +1,0.567,0.567,0,0,0,0,0.59,0.775,0.775,0,0,0.403 +1,0.736,0.736,0,0,0,0,0.701,0.79,0.79,0,0,0.072 +1,0.895,0.895,0,0,0,0,0.745,0.745,0.745,0,0,0.072 +1,0.928,0.928,0,0,0,0,0.79,0.701,0.701,0,0,0.294 +1,0.807,0.807,0,0,0,0,0.768,0.671,0.671,0,0,0.188 +1,0.35,0.35,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.143 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.202 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.259 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.162 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.036 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +1,0.379,0.379,0,0,0,0,0.355,0.683,0.683,0,0,0.252 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.108 +1,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.144 +1,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.144 +1,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.144 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.108 +1,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.132 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.0826 +1,0.11,0.11,1,0,0,0,0.352,0.482,0.482,0,0,0.082 +1,0.33,0.33,0.383,0,0,0,0.477,0.549,0.549,0,0,0.166 +1,0.417,0.417,0,0,0,0,0.521,0.623,0.623,0,0,0 +1,0.427,0.427,0.267,0.55,0,0,0.377,0.638,0.638,0.617,0,0.0661 +0.667,0.299,0.299,1,0.683,0,0,0.256,0.581,0.581,0.644,0,0 +0.667,0.291,0.291,1,0,0,0,0.263,0.581,0.581,0.674,0,0.072 +0.667,0.279,0.279,1,0,0,0,0.271,0.591,0.591,0.63,0,0.108 +0.333,0.16,0.16,1,0,0,0,0.26,0.533,0.533,0.774,0,0 +0.333,0.159,0.159,0.217,0,0,0,0.275,0.533,0.533,0,0,0.144 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.252 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.31 +0.667,0.274,0.274,0.7,0,0,0,0.374,0.63,0.63,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.0713 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.206 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.216 +1,0.783,0.783,0,0.55,0,0,0.787,0.698,0.698,0.766,0,0 +0.667,0.326,0.326,0,0.933,0,0,0.427,0.533,0.533,0.149,0,0.144 +0.667,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +0.667,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,1,0.3,0,0,0.331,0.493,0.493,0.605,0,0.188 +1,0.172,0.172,1,0.933,0,0,0.345,0.518,0.518,0.203,0,0.0668 +1,0.427,0.427,1,0,0,0,0.377,0.638,0.638,0,0,0.168 +1,0.424,0.424,1,0,0,0,0.255,0.638,0.638,0,0,0.036 +0.667,0.291,0.291,0.217,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0.0167,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0.072 +0.667,0.269,0.269,0.633,0,0,0,0.293,0.6,0.6,0,0,0.036 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.036 +0.667,0.274,0.274,0.267,0,0,0,0.374,0.63,0.63,0,0,0.036 +0.667,0.291,0.291,0.2,0,0,0,0.477,0.67,0.67,0,0,0.108 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.144 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.072 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.108 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.232 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.178 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.0765 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.378 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.241 +0.667,0.175,0.175,0.0167,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.299,0.299,1,0,0,0,0.256,0.581,0.581,0,0,0.199 +0.667,0.291,0.291,1,0.55,0,0,0.263,0.581,0.581,0.366,0,0 +0.333,0.164,0.164,1,0.683,0,0,0.264,0.528,0.528,0,0,0.072 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0.18 +0.667,0.269,0.269,0.467,0,0,0,0.293,0.6,0.6,0,0,0.18 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.036 +0.667,0.269,0.269,0.267,0,0,0,0.322,0.61,0.61,0,0,0 +1,0.386,0.386,0.433,0,0,0,0.432,0.713,0.713,0,0,0.185 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.147 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.52 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.669 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.214 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.273 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.462 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.387 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.169 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.196 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0.123 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.116 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,1,0,0,0,0.305,0.474,0.474,0.119,0,0.323 +1,0.236,0.236,1,0.8,0,0,0.404,0.521,0.521,0.63,0,0.143 +0.667,0.172,0.172,1,0.433,0,0,0.345,0.518,0.518,0.45,0,0.036 +0.667,0.175,0.175,1,0,0,0,0.297,0.523,0.523,0,0,0.036 +0.667,0.174,0.174,0.217,0,0,0,0.257,0.523,0.523,0,0,0.396 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.036 +0.667,0.164,0.164,0.767,0,0,0,0.264,0.528,0.528,0,0,0.036 +0.667,0.271,0.271,1,0,0.0667,0.117,0.263,0.6,0.6,0,0.498,0 +0.667,0.269,0.269,1,0,0.933,0.617,0.293,0.6,0.6,0,0.487,0.072 +0.667,0.268,0.268,1,0,0,0,0.315,0.591,0.591,0,0.533,0 +0.667,0.269,0.269,0.717,0,0,0,0.322,0.61,0.61,0,0.226,0.36 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.036 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.301 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.178 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.036 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.29 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.242 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.3 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.326 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.211 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0.0281,0.153 +0.667,0.174,0.174,0,0,1,0.367,0.257,0.523,0.523,0,0.35,0.108 +0.667,0.291,0.291,0,0,0,0.117,0.263,0.581,0.581,0,0.717,0.288 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0.308,0.036 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0.321,0.036 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0.429,0.036 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0.342,0.036 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0.414,0 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0.385,0.036 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.072 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.36 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.072 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.072 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.072 +1,0.116,0.116,0,0.55,0,0,0.357,0.488,0.488,0.479,0,0.144 +1,0.0495,0.0495,0,0.883,0,0,0.258,0.465,0.465,0,0,0.115 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.0893 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.109 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.13 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.144 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.268,0.268,0,0,0.267,0.167,0.315,0.591,0.591,0,0.388,0.036 +0.667,0.269,0.269,0,0,0.733,1,0.322,0.61,0.61,0.242,0.406,0.036 +0.667,0.274,0.274,0,0.85,0,0.0667,0.374,0.63,0.63,0.474,0.232,0.072 +0.667,0.291,0.291,0.317,0.383,0,0,0.477,0.67,0.67,0.774,0.307,0.072 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0.592,0,0.036 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0.709,0,0.108 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0.812,0,0.288 +1,0.88,0.88,1,0,0,0,0.765,0.668,0.668,0,0,0.072 +1,0.415,0.415,0.167,0,0,0,0.522,0.551,0.551,0,0,0.036 +1,0.116,0.116,0,0.05,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.283 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.0883 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.187 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.201 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.072 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.216 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0.48,0.036 +1,0.412,0.412,0,0,1,0.667,0.587,0.772,0.772,0,0.291,0.108 +1,0.484,0.484,0,0.1,0,0.317,0.698,0.787,0.787,0.508,0.575,0.144 +1,0.619,0.619,0,1,0,0,0.742,0.742,0.742,0.165,0,0 +1,0.538,0.538,0,0.133,0,0,0.61,0.62,0.62,0,0,0.312 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.108 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.116 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.21 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0798,0.0798,0.267,0.05,0,0,0.305,0.474,0.474,0.374,0,0.141 +1,0.236,0.236,0.2,1,0,0,0.404,0.521,0.521,0.192,0,0 +0.667,0.172,0.172,0.467,0.183,0,0,0.345,0.518,0.518,0,0,0.228 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.0934 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.123 +0.333,0.17,0.17,0.267,0,0,0,0.26,0.523,0.523,0,0,0.369 +1,0.394,0.394,1,0,0,0,0.277,0.653,0.653,0,0,0.228 +0.667,0.271,0.271,0.15,0,0,0,0.263,0.6,0.6,0,0,0.275 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.142 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.257 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.333,0.162,0.162,0.267,0,0.0667,0.117,0.316,0.548,0.548,0,0.73,0.036 +1,0.412,0.412,1,0,0.933,0.617,0.587,0.772,0.772,0,0,0.252 +1,0.484,0.484,0.85,0,0,0,0.698,0.787,0.787,0,0,0.468 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.18 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.108 +0.667,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.216 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.145 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.036 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.144 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.252 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.036 +0.667,0.269,0.269,0.267,0,0,0,0.322,0.61,0.61,0,0.273,0.252 +1,0.386,0.386,0.467,0,1,0.617,0.432,0.713,0.713,0,0.203,0 +1,0.291,0.291,1,0,0,0.367,0.477,0.67,0.67,0,0,0.116 +1,0.484,0.484,0.383,0,0,0,0.698,0.787,0.787,0,0.142,0.379 +1,0.619,0.619,0,0,1,0.617,0.742,0.742,0.742,0,0.43,0.072 +1,0.783,0.783,0,0,0,0.617,0.787,0.698,0.698,0,0.644,0.072 +1,0.603,0.603,0.767,0,0,0,0.596,0.6,0.6,0,0.629,0 +1,0.415,0.415,0.883,0,0,0,0.522,0.551,0.551,0,0.207,0.036 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.281 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0.163 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.7,0,0,0,0.258,0.465,0.465,0,0,0.072 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.108 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.036 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.036 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.072 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.108 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0.137 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.339 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.144 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.108 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.108 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.235 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0182 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.119 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.144 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.199 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0.767,0,0,0,0.271,0.591,0.591,0,0,0.036 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0.036 +0.667,0.269,0.269,1,0,0,0,0.293,0.6,0.6,0,0,0.036 +0.667,0.268,0.268,1,0,0,0,0.315,0.591,0.591,0,0,0.072 +0.667,0.269,0.269,0.717,0,0,0,0.322,0.61,0.61,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.216 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.072 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.288 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.072 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.288 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.072 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.146,0 +1,0.0506,0.0506,0,0,1,0.617,0.294,0.469,0.469,0,0.522,0 +1,0.0798,0.0798,0,0,0,0.117,0.305,0.474,0.474,0,0.487,0.229 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0.511,0.115 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.301,0.301,0.0167,0.55,0,0,0.337,0.581,0.581,0.849,0,0.036 +0.667,0.299,0.299,1,0.683,0,0,0.256,0.581,0.581,0.14,0,0 +0.667,0.291,0.291,0.633,0,0.0667,0.117,0.263,0.581,0.581,0,0.353,0 +0.667,0.279,0.279,0,0,0.933,0.117,0.271,0.591,0.591,0,0.952,0.44 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0.338,0.248 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0.603,0.459 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0.276,0.306 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.036 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.216 +0.667,0.291,0.291,0.267,0,0,0,0.477,0.67,0.67,0,0,0.519 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0.216 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0,0.412 +1,0.538,0.538,1,0,0,0,0.61,0.62,0.62,0,0,0.119 +1,0.603,0.603,1,0,0,0,0.596,0.6,0.6,0,0,0.036 +1,0.415,0.415,0.217,0,0,0,0.522,0.551,0.551,0,0,0.108 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.178 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.142 +0.667,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0.184 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.383 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.159,0.159,0,0.6,0,0,0.275,0.533,0.533,0.594,0,0 +0.333,0.159,0.159,0,0.633,0,0,0.286,0.528,0.528,0,0,0.269 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.301 +0.333,0.162,0.162,0.817,0,0,0,0.316,0.548,0.548,0,0,0.144 +0.333,0.17,0.17,0.6,0,0,0,0.368,0.568,0.568,0,0,0.18 +0.333,0.194,0.194,0,0,0,0,0.405,0.572,0.572,0,0,0.036 +0.667,0.429,0.429,0,0,0,0,0.581,0.65,0.65,0,0,0.34 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.199 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.42 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.036 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.159 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.229 +0.333,0.16,0.16,0.317,0,0,0,0.26,0.533,0.533,0,0,0.15 +0.333,0.159,0.159,0.383,0,0,0,0.275,0.533,0.533,0,0,0.036 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.277 +0.333,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0.442 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0.223,0,0.072 +1,0.484,0.484,0,0.85,0,0,0.698,0.787,0.787,0.712,0.177,0.18 +1,0.619,0.619,0,0.383,1,0.667,0.742,0.742,0.742,0.77,0.64,0.144 +1,0.783,0.783,0,0,0,0.317,0.787,0.698,0.698,0,0.349,0.353 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.036 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.129 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.072 +0.667,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.072 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.216 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.108 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.216 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.108 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.144 +0.333,0.17,0.17,0.267,0,0,0,0.368,0.568,0.568,0,0,0.169 +0.667,0.339,0.339,1,0,0,0,0.551,0.68,0.68,0,0,0.434 +0.667,0.429,0.429,0.15,0,0,0,0.581,0.65,0.65,0,0,0.18 +0.667,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.78 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0.0667,0.117,0.258,0.465,0.465,0,0.0211,0.303 +1,0.295,0.295,0.767,0,0.933,0.867,0.433,0.571,0.571,0,0,0.238 +1,0.427,0.427,1,0,0,0,0.377,0.638,0.638,0,0,0 +0.667,0.299,0.299,1,0,0,0,0.256,0.581,0.581,0,0.0169,0 +0.667,0.291,0.291,1,0,1,0.367,0.263,0.581,0.581,0,0.453,0.036 +0.667,0.279,0.279,0.717,0,0,1,0.271,0.591,0.591,0,0.501,0.216 +0.667,0.271,0.271,0,0,0,0.617,0.263,0.6,0.6,0,0.703,0.144 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0.88,0.184 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0.677,0.248 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0.654,0 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0.364,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.417 +1,0.484,0.484,0,0.05,0,0,0.698,0.787,0.787,0.391,0,0.165 +0.667,0.429,0.429,0.517,1,0,0,0.581,0.65,0.65,0.105,0,0.143 +1,0.783,0.783,0.183,0.733,0,0,0.787,0.698,0.698,0.738,0,0 +0.667,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.182,0,0.036 +0.667,0.0495,0.0495,0,0.183,0,0,0.258,0.465,0.465,0,0,0.36 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.143 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.43 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.225 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.195 +0.667,0.279,0.279,0.267,0,0,0,0.271,0.591,0.591,0,0,0.685 +0.667,0.271,0.271,1,0,0,0,0.263,0.6,0.6,0,0,0.294 +0.333,0.159,0.159,0.15,0,0,0,0.275,0.533,0.533,0,0,0.072 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.036 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.072 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.036 +0.667,0.291,0.291,0.517,0,0,0,0.477,0.67,0.67,0,0,0.18 +1,0.484,0.484,0.183,0.233,0,0,0.698,0.787,0.787,0.715,0,0.216 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0.178,0,0.18 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0.144 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.036 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.143,0.143,0.267,0,0,0,0.331,0.493,0.493,0,0,0.128 +1,0.295,0.295,0.7,0,0.0667,0.117,0.433,0.571,0.571,0,0.506,0.113 +1,0.427,0.427,1,0,0.933,1,0.377,0.638,0.638,0,0,0.118 +0.667,0.299,0.299,1,0,0,0.117,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,1,0,0,0,0.263,0.581,0.581,0,0,0.036 +0.667,0.279,0.279,1,0,0,0,0.271,0.591,0.591,0,0.146,0 +0.667,0.271,0.271,0.217,0,1,0.617,0.263,0.6,0.6,0,0.425,0.036 +0.667,0.269,0.269,0.267,0.55,0,0.367,0.293,0.6,0.6,0.793,0.589,0 +0.667,0.268,0.268,0.433,0.683,0,0,0.315,0.591,0.591,0.824,0,0.036 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0.17,0,0.18 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0.167,0,0 +0.667,0.291,0.291,0,0.8,0,0,0.477,0.67,0.67,0.718,0,0.072 +0.333,0.194,0.194,0.517,0.483,0,0,0.405,0.572,0.572,0.674,0,0.036 +1,0.619,0.619,1,1,0,0,0.742,0.742,0.742,0.674,0,0.216 +1,0.783,0.783,0.133,0.183,0,0,0.787,0.698,0.698,0.985,0,0.108 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.072 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0.072 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0.108 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.202 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.153 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.164 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.237 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.154 +0.667,0.299,0.299,0.267,0,0,0,0.256,0.581,0.581,0,0,0.496 +1,0.411,0.411,0.433,0,0,0,0.266,0.638,0.638,0,0,0.291 +1,0.394,0.394,0,0,0,0,0.277,0.653,0.653,0,0,0.036 +1,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +1,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.18 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.036 +0.667,0.162,0.162,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.477,0.67,0.67,0,0,0 +0.667,0.339,0.339,0,0,0,0,0.551,0.68,0.68,0,0,0.072 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.072 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.468 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.183 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.072 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.155 +1,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.177 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.191 +1,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0.256,0.259 +0.667,0.164,0.164,0,0,1,0.233,0.264,0.528,0.528,0,0.53,0 +0.667,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0.882,0.072 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0.571,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +0.667,0.162,0.162,0.317,0,0,0,0.316,0.548,0.548,0,0,0.072 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0.288 +0.667,0.339,0.339,1,0,0,0,0.551,0.68,0.68,0,0,0.0936 +0.667,0.429,0.429,1,0,0,0,0.581,0.65,0.65,0,0,0.072 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.108 +1,0.88,0.88,0.167,0,0,0,0.765,0.668,0.668,0,0,0.072 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.213 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.174,0.174,0.317,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.291,0.291,1,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0.8,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0.117 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0.448 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.623 +1,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.103 +1,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.036 +1,0.484,0.484,0,0,0,0,0.698,0.787,0.787,0,0,0.216 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.288 +1,0.538,0.538,0,0,0,0,0.61,0.62,0.62,0,0,0.144 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.16 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.191 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.269 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0.115 +1,0.424,0.424,0,0,0,0,0.255,0.638,0.638,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0,0,0.0667,0.117,0.271,0.591,0.591,0,0.667,0.216 +0.667,0.271,0.271,0,0,0.933,0.367,0.263,0.6,0.6,0,0.842,0.194 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0.364,0.223 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0.767,0.18 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0.269,0.072 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0.895,0.108 +1,0.291,0.291,0.517,0,0,0,0.477,0.67,0.67,0,0.596,0.036 +1,0.484,0.484,0.9,0,0,0,0.698,0.787,0.787,0,0.114,0 +1,0.619,0.619,0,0.55,0,0,0.742,0.742,0.742,0.789,0,0 +1,0.783,0.783,0,0.683,0,0,0.787,0.698,0.698,0,0,0.108 +1,0.603,0.603,0,0,0,0,0.596,0.6,0.6,0,0,0.207 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.228 +1,0.172,0.172,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.291,0.291,0.2,0,0,0,0.263,0.581,0.581,0,0,0.036 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.6,0.6,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.036 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.036 +0.667,0.274,0.274,0,0,0,0,0.374,0.63,0.63,0,0,0.116 +0.333,0.17,0.17,0,0,0,0,0.368,0.568,0.568,0,0,0.152 +0.667,0.339,0.339,0.267,0.55,0,0,0.551,0.68,0.68,0.858,0,0 +1,0.619,0.619,1,0.683,0,0,0.742,0.742,0.742,0.125,0,0.36 +1,0.783,0.783,0.15,0,0,0,0.787,0.698,0.698,0,0,0.396 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.216 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.072 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0.183,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.231 +1,0.417,0.417,0.517,0,0,0,0.521,0.623,0.623,0,0.308,0.379 +1,0.427,0.427,1,0,1,0.617,0.377,0.638,0.638,0,0,0 +0.667,0.299,0.299,0.6,0,0,0.117,0.256,0.581,0.581,0,0,0.288 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.072 +0.667,0.279,0.279,0.267,0,0,0,0.271,0.591,0.591,0,0,0.072 +0.667,0.271,0.271,0.2,0,0,0,0.263,0.6,0.6,0,0,0.036 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.036 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.172 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.107 +1,0.386,0.386,0,0,0,0,0.432,0.713,0.713,0,0,0.381 +1,0.412,0.412,0,0,0,0,0.587,0.772,0.772,0,0,0.332 +1,0.484,0.484,0,0.55,0,0,0.698,0.787,0.787,0.784,0,0 +1,0.619,0.619,0,0.933,0,0,0.742,0.742,0.742,0,0,0.252 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0,0 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.261 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0518 +1,0.236,0.236,0,0,0,0,0.404,0.521,0.521,0,0,0.123 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.432 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.108 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.036 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.108 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.162,0.162,0.267,0,0,0,0.316,0.548,0.548,0,0,0.036 +0.667,0.291,0.291,0.433,0,0,0,0.477,0.67,0.67,0,0,0.108 +1,0.484,0.484,0,0.3,0,0,0.698,0.787,0.787,0.642,0,0 +1,0.619,0.619,0,1,0,0,0.742,0.742,0.742,0.345,0,0.036 +1,0.783,0.783,0,0.183,0,0,0.787,0.698,0.698,0,0,0 +0.667,0.326,0.326,0,0,0,0,0.427,0.533,0.533,0,0,0.287 +1,0.232,0.232,0,0,0,0,0.39,0.508,0.508,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.767,0,0,0,0.258,0.465,0.465,0,0,0.543 +1,0.0798,0.0798,0.883,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0.7,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.036 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.381 +0.333,0.17,0.17,0,0,0,0,0.26,0.523,0.523,0,0,0.173 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.036 +0.667,0.271,0.271,0,0,0,0,0.263,0.6,0.6,0.218,0,0.252 +0.667,0.269,0.269,0,0.8,0,0,0.293,0.6,0.6,0.487,0,0 +0.667,0.268,0.268,0,0.433,0,0,0.315,0.591,0.591,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.072 +1,0.386,0.386,0.267,0,0,0,0.432,0.713,0.713,0,0,0.072 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0,0.184 +0.667,0.339,0.339,0.383,0,0,0,0.551,0.68,0.68,0,0,0 +0.667,0.429,0.429,0.267,0,0,0,0.581,0.65,0.65,0,0,0 +1,0.783,0.783,1,0,0,0,0.787,0.698,0.698,0,0,0.216 +1,0.88,0.88,0.85,0,0,0,0.765,0.668,0.668,0,0,0.342 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.036 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.036 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0.036 +1,0.0578,0.0578,0,0,0,0,0.308,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.317,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.236,0.236,1,0,0,0,0.404,0.521,0.521,0,0,0.036 +1,0.295,0.295,0.8,0,0,0,0.433,0.571,0.571,0,0,0 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0.6,0,0,0.256,0.581,0.581,0.73,0,0.0463 +0.667,0.291,0.291,0,0.883,0,0,0.263,0.581,0.581,0.148,0,0.108 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.036 +0.333,0.16,0.16,0,0,0,0,0.26,0.533,0.533,0,0,0.072 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.072 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.159,0.159,0,0,0,0,0.29,0.538,0.538,0,0,0.124 +0.667,0.0495,0.0495,0.317,0,0,0,0.258,0.465,0.465,0,0,0.355 +1,0.412,0.412,1,0,0,0,0.587,0.772,0.772,0,0,0.53 +1,0.484,0.484,1,0,0,0,0.698,0.787,0.787,0,0,0.325 +1,0.619,0.619,1,0,0,0,0.742,0.742,0.742,0,0.696,0.117 +1,0.783,0.783,1,0,1,0.233,0.787,0.698,0.698,0,0.505,0.204 +1,0.88,0.88,0.167,0,0,0,0.765,0.668,0.668,0,0.741,0.036 +1,0.597,0.597,0,0,0,0,0.654,0.594,0.594,0,0.287,0.281 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.143 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0927 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.072 +0,0.0495,0.0495,0,0,0.267,0.167,0.258,0.465,0.465,0,0.771,0.016 +0.667,0.269,0.269,0,0,0.733,0.0667,0.322,0.61,0.61,0,0.574,0.187 +0.667,0.274,0.274,0.0667,0,0,0,0.374,0.63,0.63,0,0.471,0.144 +0.667,0.291,0.291,1,0,0,0,0.477,0.67,0.67,0,0.388,0 +1,0.484,0.484,0.583,0,0,0,0.698,0.787,0.787,0,0.224,0.072 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0.568,0.216 +1,0.783,0.783,0,0,0,0,0.787,0.698,0.698,0,0.172,0.216 +1,0.88,0.88,0,0,0,0,0.765,0.668,0.668,0,0,0.273 +1,0.415,0.415,0,0,0,0,0.522,0.551,0.551,0,0,0.144 +1,0.116,0.116,0,0,0,0,0.357,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.15 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.14 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.359 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.123 +0.667,0.271,0.271,0.767,0,0,0,0.263,0.6,0.6,0,0,0.288 +0.667,0.269,0.269,0.65,0,0,0,0.293,0.6,0.6,0,0,0.36 +0.667,0.268,0.268,0,0,0,0,0.315,0.591,0.591,0,0,0.072 +0.667,0.269,0.269,0,0,0,0,0.322,0.61,0.61,0,0,0.072 +0.667,0.274,0.274,0.0167,0,0,0,0.374,0.63,0.63,0,0,0.144 +1,0.412,0.412,0.45,0.55,0,0,0.587,0.772,0.772,0.881,0,0.108 +1,0.484,0.484,0,0.933,0,0,0.698,0.787,0.787,0.105,0,0.108 +1,0.619,0.619,0,0,0,0,0.742,0.742,0.742,0,0,0.108 +0.333,0.294,0.294,0.0167,0,0,0,0.434,0.543,0.543,0,0,0 +0.333,0.326,0.326,1,0,0,0,0.427,0.533,0.533,0,0,0.288 +0.667,0.232,0.232,1,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.183,0.183,0.1,0,0,0,0.455,0.511,0.511,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.336 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.314 +0.333,0.164,0.164,0.267,0,0,0,0.257,0.524,0.524,0,0,0.096 +0.333,0.16,0.16,1,0,0,0,0.261,0.524,0.524,0,0,0.036 +0.333,0.154,0.154,0.9,0,0,0,0.265,0.529,0.529,0,0,0.216 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.072 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.18 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +1,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0 +0.667,0.252,0.252,0.767,0,0,0,0.375,0.632,0.632,0,0,0.127 +1,0.371,0.371,0.667,0,0,0,0.59,0.775,0.775,0,0,0.392 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.072 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.072 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.036 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.108 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.385 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.254 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.259 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.0517 +0.333,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.101 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.324 +0.667,0.259,0.259,0.267,0,0,0,0.271,0.592,0.592,0,0,0.072 +0.667,0.251,0.251,0.2,0,0,0,0.264,0.602,0.602,0,0,0.036 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.216 +0.333,0.149,0.149,0.267,0,0,0,0.287,0.529,0.529,0,0,0 +0.333,0.149,0.149,1,0,0,0,0.29,0.539,0.539,0,0,0.072 +1,0.353,0.353,1,0,0,0,0.434,0.715,0.715,0,0,0 +1,0.371,0.371,1,0,0,0,0.59,0.775,0.775,0,0,0.36 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0,0 +1,0.523,0.523,0.317,0,0,0,0.745,0.745,0.745,0,0,0.036 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.072 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.0805 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.324 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0866 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.149 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.146 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0.151,0,0 +0.667,0.286,0.286,0,0.8,0,0,0.338,0.582,0.582,0.63,0,0.203 +0.667,0.278,0.278,0,0.417,0,0,0.257,0.582,0.582,0,0,0.462 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.376 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.159 +0.333,0.15,0.15,0.717,0,0,0,0.261,0.534,0.534,0,0,0.036 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0.211,0,0.036 +0.667,0.249,0.249,0,0.8,0.0667,0.117,0.316,0.592,0.592,0.58,0.774,0 +0.667,0.249,0.249,0.767,0.417,0.933,0.617,0.323,0.612,0.612,0.169,0,0 +0.667,0.252,0.252,1,0.8,0,0,0.375,0.632,0.632,0.632,0.129,0.451 +1,0.371,0.371,1,0.417,1,0.367,0.59,0.775,0.775,0.446,0.114,0.237 +1,0.42,0.42,1,0,0,0.367,0.701,0.79,0.79,0,0,0.036 +1,0.523,0.523,0.817,0,0,0,0.745,0.745,0.745,0,0,0.036 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.036 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.288 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.282 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.258 +0.667,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.12 +0.667,0.286,0.286,0,0,0.0667,0.117,0.338,0.582,0.582,0,0.478,0.108 +0.667,0.278,0.278,0,0,0.933,0.367,0.257,0.582,0.582,0,0.733,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0.198,0.338 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.391 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.036 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0.0802,0 +0.667,0.252,0.252,0,0,1,0.367,0.375,0.632,0.632,0,0.231,0.108 +0.667,0.264,0.264,0,0,0,0.117,0.479,0.672,0.672,0,0.712,0.072 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.534,0.108 +1,0.523,0.523,0,0.05,0,0,0.745,0.745,0.745,0.469,0.637,0.072 +1,0.671,0.671,0,1,0,0,0.79,0.701,0.701,0.103,0.695,0.432 +1,0.799,0.799,0,0.4,0,0,0.768,0.671,0.671,0,0.66,0.216 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.141 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.227 +1,0.0781,0.0781,0.267,0,0,0,0.305,0.474,0.474,0,0,0.0985 +1,0.228,0.228,1,0,0,0,0.405,0.523,0.523,0,0,0 +1,0.284,0.284,0.417,0,0,0,0.435,0.572,0.572,0,0,0.108 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.036 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.036 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0.422,0.144 +0.333,0.154,0.154,0,0,1,0.867,0.265,0.529,0.529,0,0.624,0 +0.333,0.15,0.15,0,0,0,0.117,0.261,0.534,0.534,0,0.713,0.18 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.252 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.18 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.157,0.157,0.767,0,0,0,0.368,0.569,0.569,0,0,0.108 +0.667,0.173,0.173,0.667,0,0,0,0.405,0.574,0.574,0,0,0 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.072 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.036 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,1,0,0,0,0.346,0.519,0.519,0,0.121,0 +1,0.286,0.286,1,0.3,1,0.483,0.338,0.582,0.582,0.69,0,0.142 +1,0.278,0.278,1,0.917,0,0,0.257,0.582,0.582,0.341,0,0.0893 +0.667,0.27,0.27,1,0,0,0,0.264,0.582,0.582,0,0,0.036 +0.333,0.154,0.154,0.317,0,0,0,0.265,0.529,0.529,0,0,0.072 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.144 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.036 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.18 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.18 +1,0.264,0.264,0.517,0,0,0,0.479,0.672,0.672,0,0,0 +1,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0.036 +1,0.523,0.523,0.65,0,0,0,0.745,0.745,0.745,0,0,0.339 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.072 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.036 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.164,0.164,0,0.55,0,0,0.257,0.524,0.524,0.632,0,0 +0.333,0.16,0.16,0,0.9,0,0,0.261,0.524,0.524,0.889,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0.946,0,0 +0.333,0.15,0.15,0,0,0.0667,0.117,0.261,0.534,0.534,0.182,0.488,0.036 +0.333,0.149,0.149,0,0,0.933,0.617,0.276,0.534,0.534,0,0.397,0.144 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.311,0.18 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.858,0.18 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0.724,0.036 +0.667,0.157,0.157,0,0,0,0,0.368,0.569,0.569,0,0.463,0.072 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0.18,0.657,0.252 +1,0.523,0.523,0,0.8,0,0,0.745,0.745,0.745,0.529,0.698,0.18 +1,0.671,0.671,0,0.417,0,0,0.79,0.701,0.701,0,0.264,0.072 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0.373,0.108 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.18 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0.297,0.247 +1,0.402,0.402,0,0,1,0.733,0.523,0.626,0.626,0,0.19,0.275 +0.667,0.286,0.286,0.767,0,0,0,0.338,0.582,0.582,0,0.385,0 +0.667,0.278,0.278,1,0,0,0,0.257,0.582,0.582,0,0.71,0 +0.667,0.27,0.27,0.4,0,0,0,0.264,0.582,0.582,0,0.47,0.036 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.595,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.252 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.108 +0.667,0.249,0.249,0,0.05,0,0,0.316,0.592,0.592,0.48,0,0.036 +0.333,0.149,0.149,0,1,0,0,0.29,0.539,0.539,0.323,0,0.072 +0.333,0.0495,0.0495,0.767,0.167,0,0,0.258,0.465,0.465,0,0.09,0.144 +1,0.371,0.371,0.917,0,1,0.617,0.59,0.775,0.775,0,0,0.072 +1,0.42,0.42,0,0,0,1,0.701,0.79,0.79,0,0,0.144 +1,0.523,0.523,0,0,0,0.85,0.745,0.745,0.745,0,0,0.288 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.144 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.177 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.262 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.0174 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.128 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.072 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.288 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.108 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.072 +1,0.349,0.349,0.267,0,0,0,0.356,0.686,0.686,0,0,0.108 +1,0.353,0.353,0.45,0,0,0,0.434,0.715,0.715,0,0,0.036 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.216 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.144 +1,0.523,0.523,0.267,0,0,0,0.745,0.745,0.745,0,0,0.16 +1,0.671,0.671,0.45,0,0,0,0.79,0.701,0.701,0,0,0.495 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.263 +1,0.405,0.405,0,0.05,0,0,0.524,0.553,0.553,0.397,0,0 +1,0.183,0.183,0,1,0,0,0.457,0.513,0.513,0.588,0,0 +1,0.0743,0.0743,0,0.4,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.036 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.134 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.0914 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.324 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.072 +0.333,0.149,0.149,0.767,0,0,0,0.276,0.534,0.534,0,0,0.288 +0.333,0.149,0.149,0.667,0,0,0,0.287,0.529,0.529,0,0,0.036 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.036 +0.333,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.072 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.396 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.036 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.108 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.18 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.096 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.0707 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.38 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.31 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.446 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.656 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.613 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.146 +0.667,0.249,0.249,0.267,0,0,0,0.323,0.612,0.612,0,0,0.3 +0.667,0.252,0.252,1,0,0,0,0.375,0.632,0.632,0,0,0.125 +0.667,0.264,0.264,0.417,0.05,0,0,0.479,0.672,0.672,0.446,0,0 +0.667,0.296,0.296,0,1,0,0,0.553,0.682,0.682,0.59,0.242,0.072 +1,0.523,0.523,0,0.4,1,0.367,0.745,0.745,0.745,0.749,0.142,0.036 +1,0.671,0.671,0,0,0,0.367,0.79,0.701,0.701,0,0,0.108 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.144 +1,0.405,0.405,0,0.55,0,0,0.524,0.553,0.553,0.693,0,0.072 +1,0.116,0.116,0,0.667,0,0,0.357,0.489,0.489,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.0878 +1,0.404,0.404,0,0,0,0,0.378,0.641,0.641,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.036 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.157,0.157,0.517,0,0,0,0.368,0.569,0.569,0,0,0 +1,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0.108 +1,0.365,0.365,0.65,0,0,0,0.583,0.652,0.652,0,0,0.036 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.216 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.396 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.164,0.164,1,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.27,0.27,0.9,0,0,0,0.264,0.582,0.582,0,0,0 +0.333,0.154,0.154,0.0167,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0.072 +0.667,0.249,0.249,1,0,0,0,0.294,0.602,0.602,0,0,0.226 +1,0.348,0.348,1,0,0,0,0.345,0.656,0.656,0,0,0.036 +0.667,0.249,0.249,1,0,0,0,0.323,0.612,0.612,0,0,0.108 +0.667,0.252,0.252,0.567,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.036 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.072 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.279 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.072 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.072 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.237 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.222 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.194 +1,0.404,0.404,0,0,0,0,0.378,0.641,0.641,0,0,0.403 +1,0.278,0.278,0.767,0,0,0,0.257,0.582,0.582,0,0,0.334 +1,0.381,0.381,0.917,0.55,0,0,0.267,0.641,0.641,0.625,0,0.141 +0.667,0.259,0.259,0,0.9,0,0,0.271,0.592,0.592,0,0,0.936 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.516 +0.667,0.249,0.249,0,0,0.0667,0.117,0.294,0.602,0.602,0,0.308,0.508 +0.667,0.249,0.249,0,0,0.933,0.367,0.316,0.592,0.592,0,0.781,0.394 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0.473,0.216 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0.74,0.549 +1,0.371,0.371,0.267,0,0,0,0.59,0.775,0.775,0,0.781,0.036 +1,0.42,0.42,1,0,0,0,0.701,0.79,0.79,0,0.467,0.072 +1,0.523,0.523,0.167,0,0,0,0.745,0.745,0.745,0,0.0844,0.072 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.18 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.036 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.221 +1,0.284,0.284,0.467,0,0,0,0.435,0.572,0.572,0,0,0.178 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.036 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.108 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.036 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.036 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.144 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.316,0.549,0.549,0,0,0.216 +1,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.108 +0.667,0.173,0.173,0,0,0,0,0.405,0.574,0.574,0,0,0.108 +0.667,0.207,0.207,0,0,0,0,0.42,0.559,0.559,0,0,0.036 +0.667,0.257,0.257,0,0.55,0,0,0.435,0.544,0.544,0.672,0,0.627 +1,0.799,0.799,0,0.667,0,0,0.768,0.671,0.671,0.132,0,0.446 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,1,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.168,0.168,0.433,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.278,0.278,1,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0.167,0,0,0,0.264,0.582,0.582,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.036 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.108 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.036 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.216 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0.119 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.273 +1,0.371,0.371,0,0.3,0,0,0.59,0.775,0.775,0.525,0,0.072 +1,0.42,0.42,0,0.917,0,0,0.701,0.79,0.79,0.506,0,0.684 +1,0.365,0.365,0.767,0,0,0,0.583,0.652,0.652,0,0,0.072 +1,0.464,0.464,0.917,0,0,0,0.613,0.622,0.622,0,0,0 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.203 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0963 +1,0.228,0.228,0.267,0,0,0,0.405,0.523,0.523,0.128,0,0 +1,0.284,0.284,1,0.8,0.0667,0.117,0.435,0.572,0.572,0.58,0.406,0 +1,0.286,0.286,0.417,0.65,0.933,0.117,0.338,0.582,0.582,0,0.405,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0.679,0.072 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.036 +1,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0.219,0.036 +0.667,0.15,0.15,0,0,1,0.367,0.261,0.534,0.534,0,0.588,0.18 +0.667,0.149,0.149,0,0,0,0.117,0.276,0.534,0.534,0,0.605,0 +0.667,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0.267,0.144 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0.426,0 +0.667,0.252,0.252,0.267,0,0,0,0.375,0.632,0.632,0,0,0.144 +0.667,0.264,0.264,1,0,0,0,0.479,0.672,0.672,0,0,0.036 +1,0.296,0.296,0.417,0,0,0,0.553,0.682,0.682,0,0,0.036 +1,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.072 +1,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.418 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.376 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.49 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.105 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.11 +0.667,0.168,0.168,0.767,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.278,0.278,1,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0.4,0,0,0,0.264,0.582,0.582,0,0,0.036 +0.667,0.259,0.259,0.267,0,0,0,0.271,0.592,0.592,0,0,0.072 +0.667,0.251,0.251,0.45,0,0,0,0.264,0.602,0.602,0,0,0.18 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.036 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.18 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.216 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.108 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.411 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.671 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.133 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.406 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.452 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.217 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.767,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,1,0,0,0,0.331,0.494,0.494,0,0,0.294 +1,0.167,0.167,1,0,0,0,0.346,0.519,0.519,0,0,0.45 +1,0.286,0.286,1,0,0,0,0.338,0.582,0.582,0,0,0.319 +0.667,0.278,0.278,0.817,0,0,0,0.257,0.582,0.582,0,0,0.122 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.324 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.036 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.153 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.036 +0.667,0.149,0.149,0,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.162 +0.667,0.264,0.264,0.517,0,0,0,0.479,0.672,0.672,0,0,0.149 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0.477 +1,0.523,0.523,0.167,0,0,0,0.745,0.745,0.745,0,0,0.0628 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.036 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.144 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +1,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0.252 +1,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.036 +1,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0.144 +0.667,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.18 +0.667,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.243 +1,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.151 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.072 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.072 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.036 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.336 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.072 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.036 +0.667,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0.097,0.036 +0.667,0.227,0.227,0,0,1,0.733,0.391,0.509,0.509,0,0,0.288 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.144 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.191 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.0582 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.193 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.255 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.116 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0.157,0,0 +0.667,0.164,0.164,0.717,0.8,0,0,0.257,0.524,0.524,0.655,0,0 +0.667,0.27,0.27,0.517,0.417,0,0,0.264,0.582,0.582,0.73,0,0 +0.667,0.259,0.259,1,0,0,0,0.271,0.592,0.592,0,0,0.216 +0.667,0.251,0.251,1,0,0,0,0.264,0.602,0.602,0,0,0.072 +0.667,0.249,0.249,1,0,0,0,0.294,0.602,0.602,0,0,0.144 +0.667,0.249,0.249,1,0,0,0,0.316,0.592,0.592,0,0,0.18 +0.667,0.249,0.249,0.0667,0,0,0,0.323,0.612,0.612,0,0,0.036 +0.667,0.252,0.252,0.767,0,0,0,0.375,0.632,0.632,0,0,0.036 +1,0.371,0.371,0.667,0,0,0,0.59,0.775,0.775,0,0,0.036 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0.166,0.144 +1,0.523,0.523,0,0,1,0.367,0.745,0.745,0.745,0,0.602,0.036 +1,0.671,0.671,0,0,0,0.367,0.79,0.701,0.701,0,0.603,0 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0.585,0.297 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0.0886,0.278 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,0,0.55,0,0,0.305,0.474,0.474,0.774,0.329,0.157 +1,0.228,0.228,0,0.9,1,0.617,0.405,0.523,0.523,0.119,0.0563,0 +0.667,0.167,0.167,0,0,0,0.367,0.346,0.519,0.519,0,0,0.0719 +0.667,0.286,0.286,0,0.05,0,0,0.338,0.582,0.582,0.425,0,0 +0.667,0.278,0.278,0,1,0,0,0.257,0.582,0.582,0.615,0.481,0.216 +0.667,0.27,0.27,0,0.167,1,0.483,0.264,0.582,0.582,0.203,0.536,0.632 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0.216,0.248,0.036 +0.667,0.251,0.251,0,0.8,0,0,0.264,0.602,0.602,0.805,0,0.036 +0.667,0.249,0.249,0,0.417,0,0,0.294,0.602,0.602,0.663,0,0.187 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0.128,0,0.251 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.33 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.036 +0.667,0.264,0.264,0,0.55,0,0,0.479,0.672,0.672,0.659,0,0.252 +1,0.42,0.42,0,0.717,0,0,0.701,0.79,0.79,0.634,0,0.072 +1,0.523,0.523,0,1,0,0,0.745,0.745,0.745,0.95,0,0 +1,0.464,0.464,0,0.4,0,0,0.613,0.622,0.622,0.586,0,0.216 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.0713 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0722 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.166 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.102 +0.667,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0.45,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.036 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.252 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.036 +0.667,0.251,0.251,0.267,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.249,0.249,1,0,0,0,0.294,0.602,0.602,0,0,0.036 +0.667,0.249,0.249,1,0.55,0,0,0.316,0.592,0.592,0.762,0,0.036 +0.667,0.249,0.249,1,0.667,0,0,0.323,0.612,0.612,0.151,0,0.036 +0.333,0.151,0.151,1,0,0,0,0.316,0.549,0.549,0,0,0.216 +1,0.371,0.371,0.317,0,0,0,0.59,0.775,0.775,0,0,0.072 +0.667,0.296,0.296,0,0,0,0,0.553,0.682,0.682,0,0,0.036 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.36 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.169 +1,0.299,0.299,0,0,0,0,0.428,0.534,0.534,0,0,0.072 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.288 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.237 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.147 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.21 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0.558 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.254 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.215 +1,0.259,0.259,0,0,0.0667,0.117,0.271,0.592,0.592,0,0.28,0.072 +1,0.251,0.251,0,0,0.933,0.117,0.264,0.602,0.602,0,0.399,0.072 +0.667,0.149,0.149,0.0167,0,0,0,0.276,0.534,0.534,0,0.601,0 +1,0.249,0.249,0.7,0,0,0,0.316,0.592,0.592,0,0.643,0.036 +1,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0.0816,0 +1,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.371,0.371,0,0,0,0,0.59,0.775,0.775,0,0,0.18 +1,0.42,0.42,0,0.3,0,0,0.701,0.79,0.79,0.563,0,0.216 +1,0.523,0.523,0,1,0,0,0.745,0.745,0.745,0,0,0.144 +1,0.671,0.671,0,0.15,0,0,0.79,0.701,0.701,0,0,0.036 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.488 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.0896 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.127 +0.667,0.284,0.284,0.417,0,0,0,0.435,0.572,0.572,0,0,0.169 +0.667,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.108 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0.036 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.036 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.072 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.036 +1,0.349,0.349,0,0,0,0,0.356,0.686,0.686,0,0,0.108 +1,0.353,0.353,0,0,0,0,0.434,0.715,0.715,0,0,0.194 +1,0.371,0.371,0.267,0,0,0,0.59,0.775,0.775,0,0,0.365 +1,0.42,0.42,0.2,0,0,0,0.701,0.79,0.79,0,0,0.324 +0.667,0.365,0.365,0,0,0,0,0.583,0.652,0.652,0,0,0.108 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.036 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.139 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.127 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0982 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.134 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.418 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.263 +1,0.286,0.286,0,0,0,0,0.338,0.582,0.582,0,0,0 +1,0.278,0.278,0,0,0,0,0.257,0.582,0.582,0,0,0.036 +1,0.27,0.27,0,0,0,0,0.264,0.582,0.582,0,0,0.036 +0.333,0.154,0.154,0,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0.036 +0.333,0.149,0.149,0,0,0,0,0.276,0.534,0.534,0,0,0.144 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.036 +0.667,0.149,0.149,0,0,0.0667,0.117,0.29,0.539,0.539,0,0.392,0.144 +0.667,0.252,0.252,0,0,0.933,1,0.375,0.632,0.632,0,0.446,0.252 +1,0.371,0.371,0,0,0,0.117,0.59,0.775,0.775,0,0.592,0.036 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0.692,0.252 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0.491,0.036 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0,0,0.224 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.24 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.132 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.114 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.103 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.283 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.504 +1,0.284,0.284,0,0,0,0,0.435,0.572,0.572,0,0,0.187 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.036 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0.333,0.15,0.15,0,0,0,0,0.261,0.534,0.534,0,0,0 +0.667,0.249,0.249,0.717,0,0,0,0.294,0.602,0.602,0,0,0 +1,0.348,0.348,0,0,0,0,0.345,0.656,0.656,0,0,0 +0.667,0.249,0.249,0.767,0,0,0,0.323,0.612,0.612,0,0,0.144 +1,0.353,0.353,1,0,0,0,0.434,0.715,0.715,0,0,0.036 +1,0.371,0.371,0.4,0,0,0,0.59,0.775,0.775,0,0,0.072 +1,0.42,0.42,0,0.05,0,0,0.701,0.79,0.79,0.496,0,0.216 +0.667,0.365,0.365,0,1,0,0,0.583,0.652,0.652,0.77,0,0.434 +1,0.671,0.671,0,0.4,0,0,0.79,0.701,0.701,0,0,0.243 +1,0.799,0.799,0,0,0,0,0.768,0.671,0.671,0,0,0.135 +1,0.582,0.582,0,0,0,0,0.656,0.596,0.596,0,0,0.216 +0.667,0.116,0.116,0,0.05,0,0,0.357,0.489,0.489,0.443,0,0.103 +1,0.0743,0.0743,0,1,0,0,0.32,0.484,0.484,0.233,0,0 +1,0.0578,0.0578,0,0.4,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0503,0.0503,0,0,0,0,0.294,0.469,0.469,0,0,0.104 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.103 +0.667,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.346,0.519,0.519,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.298,0.524,0.524,0,0,0.144 +0.667,0.164,0.164,0.267,0,0,0,0.257,0.524,0.524,0,0,0.198 +0.667,0.27,0.27,1,0.3,0,0,0.264,0.582,0.582,0.586,0,0.203 +0.667,0.259,0.259,0.417,0.917,0,0,0.271,0.592,0.592,0.366,0,0.072 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.072 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.108 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0.108 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.036 +0.667,0.252,0.252,0,0,0,0,0.375,0.632,0.632,0,0,0.072 +0.667,0.264,0.264,0,0,0,0,0.479,0.672,0.672,0,0,0.072 +1,0.42,0.42,0,0,0,0,0.701,0.79,0.79,0,0,0.329 +1,0.523,0.523,0,0,0,0,0.745,0.745,0.745,0,0,0.617 +1,0.671,0.671,0,0,0,0,0.79,0.701,0.701,0.107,0,0.152 +1,0.799,0.799,0,0.8,0,0,0.768,0.671,0.671,0.657,0,0.308 +1,0.227,0.227,0,0.65,0,0,0.391,0.509,0.509,0,0,0.242 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.053 +1,0.0781,0.0781,0,0,0,0,0.305,0.474,0.474,0,0,0.109 +1,0.228,0.228,0,0,0,0,0.405,0.523,0.523,0,0,0.147 +0.667,0.284,0.284,0.267,0,0,0,0.435,0.572,0.572,0,0,0.107 +0.667,0.286,0.286,1,0,0,0,0.338,0.582,0.582,0,0,0.142 +0.333,0.164,0.164,0.167,0,0,0,0.257,0.524,0.524,0,0,0.25 +0.333,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.143 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0.252 +1,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.036 +1,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +1,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.473 +1,0.252,0.252,0.267,0,0,0,0.375,0.632,0.632,0,0,0 +1,0.264,0.264,0.2,0,0,0,0.479,0.672,0.672,0,0,0.072 +1,0.296,0.296,0.767,0,0,0,0.553,0.682,0.682,0,0,0.108 +1,0.523,0.523,1,0,0,0,0.745,0.745,0.745,0,0,0.227 +1,0.671,0.671,1,0,0,0,0.79,0.701,0.701,0,0,0.268 +1,0.799,0.799,1,0,0,0,0.768,0.671,0.671,0,0,0.156 +1,0.582,0.582,0.817,0,0,0,0.656,0.596,0.596,0,0,0.413 +1,0.249,0.249,0,0,0,0,0.556,0.537,0.537,0,0,0.355 +1,0.099,0.099,0,0,0,0,0.383,0.503,0.503,0,0,0.138 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0.218 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.14 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.173 +1,0.0511,0.0511,0,0,0,0,0.331,0.473,0.473,0,0,0 +1,0.107,0.107,0,0,0,0,0.353,0.483,0.483,0,0,0.18 +0.667,0.139,0.139,0.767,0,0,0,0.331,0.494,0.494,0,0,0.036 +0.667,0.284,0.284,0.667,0.05,0,0,0.435,0.572,0.572,0.387,0,0 +0.333,0.168,0.168,0.0167,1,0,0,0.298,0.524,0.524,0.542,0,0.036 +0.667,0.278,0.278,1,0.4,0,0,0.257,0.582,0.582,0,0,0 +0.667,0.27,0.27,1,0,0,0,0.264,0.582,0.582,0,0,0.036 +0.333,0.154,0.154,1,0,0,0,0.265,0.529,0.529,0,0,0 +0.333,0.15,0.15,1,0,0,0,0.261,0.534,0.534,0,0,0.108 +0.333,0.149,0.149,0.567,0,0,0,0.276,0.534,0.534,0,0,0.036 +0.333,0.149,0.149,0,0,0,0,0.287,0.529,0.529,0,0,0.036 +0.333,0.149,0.149,0.0167,0,0,0,0.29,0.539,0.539,0,0,0 +0.333,0.151,0.151,1,0,0,0,0.316,0.549,0.549,0,0,0 +0.667,0.264,0.264,0.683,0,0,0,0.479,0.672,0.672,0,0,0.036 +0.667,0.296,0.296,1,0,0,0,0.553,0.682,0.682,0,0,0.443 +1,0.523,0.523,0.167,0.55,0,0,0.745,0.745,0.745,0.887,0,0.462 +1,0.671,0.671,0,0.667,0,0,0.79,0.701,0.701,0,0,0 +1,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0 +1,0.227,0.227,0,0,0,0,0.391,0.509,0.509,0,0,0.241 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.166 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.194 +1,0.139,0.139,0,0,0,0,0.331,0.494,0.494,0,0,0.274 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.257,0.524,0.524,0,0,0.18 +0.667,0.16,0.16,0,0,0,0,0.261,0.524,0.524,0,0,0.153 +0.667,0.259,0.259,0,0,0,0,0.271,0.592,0.592,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.264,0.602,0.602,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.294,0.602,0.602,0,0,0.432 +0.667,0.249,0.249,0,0,0,0,0.316,0.592,0.592,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.323,0.612,0.612,0,0,0.036 +0.667,0.252,0.252,0.267,0,0,0,0.375,0.632,0.632,0,0,0 +0.667,0.264,0.264,1,0.05,0,0,0.479,0.672,0.672,0.367,0,0 +1,0.42,0.42,0.9,1,0,0,0.701,0.79,0.79,0.455,0,0.332 +0.667,0.365,0.365,0,0.167,0,0,0.583,0.652,0.652,0,0,0.036 +0.667,0.464,0.464,0,0,0,0,0.613,0.622,0.622,0,0,0.327 +0.667,0.549,0.549,0,0,0,0,0.598,0.602,0.602,0,0,0.282 +1,0.405,0.405,0,0,0,0,0.524,0.553,0.553,0,0,0.195 +1,0.183,0.183,0,0,0,0,0.457,0.513,0.513,0,0,0.121 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.0637 +1,0.222,0.222,0.7,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.162,0.162,1,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.156,0.156,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.256,0.256,1,0.55,0,0,0.234,0.511,0.511,0.659,0,0.108 +0.667,0.245,0.245,0.233,0.85,0,0,0.24,0.519,0.519,0,0.0281,0.072 +0.667,0.237,0.237,1,0,1,0.367,0.234,0.528,0.528,0,0.726,0.216 +1,0.328,0.328,1,0,0,0.6,0.259,0.559,0.559,0,0,0.252 +1,0.327,0.327,1,0,0,0,0.287,0.546,0.546,0,0,0.415 +1,0.328,0.328,1,0,0,0,0.297,0.571,0.571,0,0.364,0.22 +0.667,0.238,0.238,0.467,0,1,0.617,0.327,0.552,0.552,0,0.549,0.036 +0.667,0.247,0.247,0,0,0,1,0.413,0.585,0.585,0,0.332,0.072 +1,0.384,0.384,0,0,0,0.55,0.584,0.658,0.658,0,0,0.036 +1,0.467,0.467,0,0.3,0,0,0.621,0.621,0.621,0.14,0,0.336 +1,0.595,0.595,0,0.867,0,0,0.658,0.583,0.583,0,0,0.392 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0.144 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.072 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.353 +0.333,0.144,0.144,0.267,0,0,0,0.292,0.509,0.509,0,0,0.144 +0.333,0.148,0.148,1,0,0,0,0.336,0.525,0.525,0,0,0.252 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0.36 +0.667,0.328,0.328,1,0,0,0,0.5,0.569,0.569,0,0,0.288 +0.667,0.413,0.413,1,0,0,0,0.525,0.544,0.544,0,0,0.072 +1,0.501,0.501,0.217,0,0,0,0.512,0.528,0.528,0,0,0.288 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.324 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.241 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.259 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.183 +1,0.328,0.328,0,0.3,0,0,0.297,0.571,0.571,0.676,0,0.364 +1,0.332,0.332,0.267,0.867,0,0,0.361,0.596,0.596,0.621,0,0.142 +1,0.345,0.345,1,0,0,0,0.491,0.646,0.646,0.207,0,0.601 +1,0.384,0.384,0.383,0,0,0,0.584,0.658,0.658,0,0,0.18 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.432 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.626 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.124 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.107 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0661 +1,0.0768,0.0768,0.767,0,0,0,0.283,0.447,0.447,0,0,0.165 +1,0.222,0.222,1,0,0,0,0.352,0.461,0.461,0,0,0.0722 +1,0.163,0.163,1,0,0,0,0.317,0.484,0.484,0,0,0.406 +1,0.387,0.387,1,0,0,0,0.315,0.534,0.534,0,0,0 +1,0.37,0.37,0.717,0,0,0,0.213,0.534,0.534,0,0,0.036 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.144 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.072 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.33 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.188 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.254 +0.667,0.235,0.235,0,0,0.0667,0.117,0.284,0.536,0.536,0,0.181,0.572 +0.333,0.144,0.144,0,0,0.933,0.117,0.292,0.509,0.509,0,0,0.158 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.144 +0.667,0.328,0.328,0.767,0,0,0,0.5,0.569,0.569,0,0,0.072 +1,0.595,0.595,0.883,0,0,0,0.658,0.583,0.583,0,0,0.18 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.144 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.331 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.216 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.211 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.198 +0.667,0.163,0.163,0.767,0,0,0,0.317,0.484,0.484,0,0.409,0 +0.667,0.274,0.274,1,0,1,0.867,0.296,0.511,0.511,0,0.596,0 +0.667,0.263,0.263,1,0,0,1,0.228,0.511,0.511,0,0.269,0.146 +0.667,0.256,0.256,1,0,0,0.55,0.234,0.511,0.511,0,0.547,0.224 +0.667,0.245,0.245,0.717,0,0,0,0.24,0.519,0.519,0,0.782,0.276 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0.357,1 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0.523,0.178 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0.416,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.795,0.108 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.515,0.497 +1,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.336,0.252 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.527,0.036 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0.52,0.036 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.388,0.108 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.036 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.139 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.121 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.136,0.136,0.9,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.036 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.144 +0.667,0.256,0.256,0,0.05,0,0,0.234,0.511,0.511,0.426,0,0 +0.667,0.245,0.245,0.767,1,0,0,0.24,0.519,0.519,0.526,0,0.108 +0.667,0.237,0.237,1,0.117,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0.717,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.072 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.036 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.036 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.252 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.036 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.175 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.221 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.135 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.156,0.156,0.267,0,0,0,0.243,0.488,0.488,0,0,0.13 +0.667,0.256,0.256,0.2,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.144 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.18 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.072 +1,0.332,0.332,0.267,0,0,0,0.361,0.596,0.596,0,0,0.144 +1,0.345,0.345,1,0.55,0,0,0.491,0.646,0.646,0.665,0,0.072 +1,0.384,0.384,0.85,0.617,0,0,0.584,0.658,0.658,0.569,0,0.036 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0.852,0,0.071 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0.657,0,0.18 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.204 +0.667,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.036 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0.2,0,0,0,0.305,0.463,0.463,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.239 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.156 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.258 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.072 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.216 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.036 +0.333,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.18 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.238,0.238,0.4,0,0,0,0.327,0.552,0.552,0,0,0.216 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.108 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.467,0.467,0,0.05,0,0,0.621,0.621,0.621,0.398,0,0.155 +1,0.595,0.595,0,1,0,0,0.658,0.583,0.583,0.292,0,0.233 +1,0.726,0.726,0,0.117,0,0,0.639,0.559,0.559,0,0,0.258 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.613 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.0884 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.303 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.21 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.454 +1,0.359,0.359,0,0,0,0,0.222,0.534,0.534,0,0,0.036 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.072 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.216 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.175 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.172 +1,0.238,0.238,0.767,0,0,0,0.327,0.552,0.552,0,0,0.202 +0.667,0.247,0.247,0.65,0.55,0,0,0.413,0.585,0.585,0.795,0,0.108 +0.667,0.273,0.273,0,0.617,0,0,0.475,0.594,0.594,0.165,0,0.144 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.144 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.18 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.133 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.186 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.108 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.172 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.136,0.136,0.467,0.3,0,0,0.305,0.463,0.463,0.534,0,0 +1,0.277,0.277,0,0.867,0,0,0.376,0.503,0.503,0.718,0,0 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0.731,0,0 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0.61,0,0.036 +0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0.646,0,0.036 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.526 +1,0.331,0.331,0,0,0,0,0.222,0.559,0.559,0,0,0.218 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.036 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.072 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +1,0.345,0.345,0,0.05,0,0,0.491,0.646,0.646,0.352,0,0 +1,0.384,0.384,0,1,0,0,0.584,0.658,0.658,0.199,0,0.036 +0.667,0.328,0.328,0,0.117,0,0,0.5,0.569,0.569,0,0,0.252 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.0973 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.036 +1,0.388,0.388,0,0,0.0667,0.117,0.45,0.486,0.486,0,0.45,0 +1,0.116,0.116,0,0,0.933,0.117,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.0774 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0.128 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.103 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.036 +0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.18 +0.667,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.036 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.108 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.228 +0.667,0.142,0.142,0.0167,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0.683,0,0,0,0.271,0.501,0.501,0,0,0.252 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.072 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.072 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.208 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.158 +1,0.595,0.595,0,0,0.0667,0.117,0.658,0.583,0.583,0,0.39,0.238 +1,0.726,0.726,0,0,0.933,0.367,0.639,0.559,0.559,0,0,0 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.072 +0.667,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.14 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.156 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.371 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.325 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.281 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.108 +0.333,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.45 +0.667,0.273,0.273,0.517,0,0,0,0.475,0.594,0.594,0,0,0.266 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0.216 +1,0.595,0.595,1,0,0,0,0.658,0.583,0.583,0,0,0.072 +1,0.726,0.726,1,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.388,0.388,0.967,0,0,0,0.45,0.486,0.486,0,0,0.072 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.222,0.222,0,0,0,0,0.352,0.461,0.461,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.487 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.036 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.036 +0.333,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.144 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.108 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +1,0.328,0.328,0.267,0,0,0,0.297,0.571,0.571,0,0,0.036 +1,0.332,0.332,0.433,0,0,0,0.361,0.596,0.596,0,0,0.144 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.108 +1,0.384,0.384,0,0.3,0,0,0.584,0.658,0.658,0.561,0,0 +1,0.467,0.467,0,1,0,0,0.621,0.621,0.621,0.148,0,0.0796 +1,0.595,0.595,0,0.1,0,0,0.658,0.583,0.583,0,0,0.278 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.108 +1,0.388,0.388,0,0.55,0,0,0.45,0.486,0.486,0.397,0,0.141 +1,0.116,0.116,0,0.617,0,0,0.326,0.459,0.459,0,0,0.238 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.269 +1,0.0506,0.0506,1,0,0,0,0.29,0.42,0.42,0,0,0.198 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0.217,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.156,0.156,0,0,0.0667,0.117,0.243,0.488,0.488,0,0.44,0 +0.667,0.256,0.256,0,0,0.933,0.85,0.234,0.511,0.511,0,0.356,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0.629,0.036 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0.101,0.036 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0.364,0.216 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0.75,0.036 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0.574,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.426,0 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.37,0.108 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0.361,0.216 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0.402,0.18 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0.131,0.282 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.175 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0.184 +1,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.323 +0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0.112 +0.667,0.147,0.147,0.267,0,0,0,0.249,0.492,0.492,0,0,0 +0.667,0.237,0.237,0.433,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0.3,0,0,0.259,0.528,0.528,0.531,0,0.18 +0.667,0.235,0.235,0,0.867,0,0,0.277,0.519,0.519,0.684,0,0.072 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0.877,0.332,0.072 +0.667,0.238,0.238,0,0,1,0.233,0.327,0.552,0.552,0,0.639,0.072 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.689,0.036 +1,0.384,0.384,0,0.55,0,0,0.584,0.658,0.658,0.684,0.0886,0.561 +1,0.467,0.467,0,0.85,0,0,0.621,0.621,0.621,0,0,0.43 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.251 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0561 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.183 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.259 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0777 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.262 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.151 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.247 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.06 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.0936 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.4 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0.612 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.287 +0.667,0.144,0.144,0,0,0,0,0.292,0.509,0.509,0,0,0.168 +0.667,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.18 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.324 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.072 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.144 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.193 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.0582 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.036 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.156,0.156,1,0,0,0,0.243,0.488,0.488,0.111,0,0 +0.667,0.256,0.256,0.1,0.8,0,0,0.234,0.511,0.511,0.446,0,0.253 +0.667,0.245,0.245,0.267,0.6,0,0,0.24,0.519,0.519,0,0,0.072 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.504 +0.333,0.142,0.142,1,0,0,0,0.258,0.496,0.496,0,0,0.18 +0.333,0.142,0.142,1,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.284,0.536,0.536,0,0,0.072 +0.333,0.144,0.144,0.217,0,0,0,0.292,0.509,0.509,0,0,0.036 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.072 +0.333,0.161,0.161,0,0,0,0,0.366,0.53,0.53,0,0,0.336 +0.667,0.328,0.328,0.517,0,0,0,0.5,0.569,0.569,0,0,0.375 +0.667,0.231,0.231,1,0,0,0,0.391,0.505,0.505,0,0,0.0536 +1,0.275,0.275,0.133,0,0,0,0.385,0.496,0.496,0,0,0.036 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.18 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.302 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.122 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.291,0.333 +1,0.0511,0.0511,0,0,1,0.617,0.306,0.397,0.397,0,0.422,0.0948 +1,0.131,0.131,0,0,0,0.35,0.334,0.41,0.41,0,0.547,0.183 +1,0.308,0.308,0,0,0,0,0.398,0.459,0.459,0,1,0.082 +0.667,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0.347,0.227 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0.515,0.306 +1,0.37,0.37,0,0.05,0,0,0.213,0.534,0.534,0.475,0.0816,0.239 +1,0.359,0.359,0,1,0,0,0.222,0.534,0.534,0.385,0,0.612 +0.667,0.245,0.245,0,0.117,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0.247 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.108 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.072 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.036 +0.667,0.238,0.238,0.767,0,0,0,0.327,0.552,0.552,0,0,0.036 +0.667,0.247,0.247,1,0,0,0,0.413,0.585,0.585,0,0,0.036 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0.036 +1,0.467,0.467,1,0,0,0,0.621,0.621,0.621,0,0,0.108 +1,0.595,0.595,0.717,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.275,0.275,0,0,0,0,0.385,0.496,0.496,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0814 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.133 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.255,0 +0.667,0.163,0.163,0,0,1,0.617,0.317,0.484,0.484,0,0.422,0 +0.667,0.162,0.162,0,0,0,0.35,0.277,0.488,0.488,0,0.674,0 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0.581,0.216 +0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0.416,0.036 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0.544,0 +0.667,0.237,0.237,0,0.55,0,0,0.234,0.528,0.528,0.584,0.368,0.036 +0.667,0.235,0.235,0,0.617,0,0,0.259,0.528,0.528,0.826,0.371,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0.866,0.333,0.144 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0.558,0.072 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.443,0.072 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0.603,0.036 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0.281,0.108 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0.596,0.224 +1,0.595,0.595,0.0167,0,0,0,0.658,0.583,0.583,0,0.537,0.367 +1,0.501,0.501,1,0,0,0,0.512,0.528,0.528,0,0,0.036 +1,0.219,0.219,1,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0.1,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0771 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.0975 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +0.333,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.19 +0.333,0.147,0.147,0.2,0,0,0,0.249,0.492,0.492,0,0,0.324 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.108 +0.333,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.036 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.144 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.072 +0.667,0.247,0.247,0,0,0,0,0.413,0.585,0.585,0,0,0.072 +1,0.384,0.384,0,0.3,0,0,0.584,0.658,0.658,0.72,0,0.108 +1,0.467,0.467,0,0.867,0,0,0.621,0.621,0.621,0.485,0,0 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0.498,0,0.409 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.0176 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.141 +1,0.136,0.136,1,0,0,0,0.305,0.463,0.463,0,0,0.174 +1,0.277,0.277,1,0,0,0,0.376,0.503,0.503,0,0,0.245 +1,0.274,0.274,1,0,0,0,0.296,0.511,0.511,0,0.0731,0.176 +0.667,0.156,0.156,1,0.55,1,0.367,0.243,0.488,0.488,0.561,0.491,0.036 +0.667,0.153,0.153,0.467,0.85,0,0.35,0.246,0.488,0.488,0,0.442,0.036 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0.392,0.036 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0.388,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0.688,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0.506,0.108 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0.321,0 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0.442,0 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0.515,0.072 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0.179,0.18 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0,0.153 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.212 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.535 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.147 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.192 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.143 +0.667,0.263,0.263,0.0167,0.3,0,0,0.228,0.511,0.511,0.711,0,0.155 +0.333,0.153,0.153,1,0.867,0,0,0.246,0.488,0.488,0.274,0.0774,0.252 +0.667,0.245,0.245,1,0,1,0.717,0.24,0.519,0.519,0,0,0.036 +0.333,0.143,0.143,1,0,0,0,0.246,0.496,0.496,0,0,0.252 +0.333,0.142,0.142,1,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.142,0.142,0.467,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.036 +0.333,0.144,0.144,0,0.05,0,0,0.292,0.509,0.509,0.389,0,0.288 +0.667,0.247,0.247,0,1,0,0,0.413,0.585,0.585,0.128,0,0.18 +0.667,0.273,0.273,0,0.4,0,0,0.475,0.594,0.594,0.394,0,0.108 +1,0.467,0.467,0,1,0,0,0.621,0.621,0.621,0.175,0,0.036 +1,0.595,0.595,0,0.117,0,0,0.658,0.583,0.583,0,0,0.205 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.225 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.369 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.341 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.314 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.35 +1,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.129 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.264 +0.667,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.249,0.492,0.492,0,0,0.036 +0.333,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.496,0.496,0,0,0.072 +0.333,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.144 +0.333,0.144,0.144,0.133,0,0,0,0.292,0.509,0.509,0,0.3,0.216 +0.667,0.247,0.247,0,0,1,0.617,0.413,0.585,0.585,0,0.295,0.18 +1,0.384,0.384,0,0,0,0.35,0.584,0.658,0.658,0,0.494,0.036 +1,0.467,0.467,0,0,0,0,0.621,0.621,0.621,0,0.44,0.036 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0.757,0.108 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0.263,0.216 +1,0.557,0.557,0,0,0,0,0.547,0.497,0.497,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.102 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.253 +0.667,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.333,0.143,0.143,0.267,0,0,0,0.246,0.496,0.496,0,0,0.036 +0.667,0.235,0.235,1,0,0,0,0.259,0.528,0.528,0,0,0.036 +1,0.327,0.327,0.383,0,0,0,0.287,0.546,0.546,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0.036 +1,0.332,0.332,0,0,0,0,0.361,0.596,0.596,0,0,0.252 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0,0,0.072 +1,0.384,0.384,0,0,0,0,0.584,0.658,0.658,0,0,0.108 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.072 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.12 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.108 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.411 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.321 +1,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.192 +0.667,0.162,0.162,0.0167,0,0,0,0.277,0.488,0.488,0,0,0.165 +0.667,0.263,0.263,1,0,0,0,0.228,0.511,0.511,0,0,0 +0,0.0495,0.0495,0.667,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.249,0.492,0.492,0,0,0.036 +0.667,0.237,0.237,0.15,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.072 +0.667,0.238,0.238,0,0,0,0,0.327,0.552,0.552,0,0,0.036 +1,0.345,0.345,0,0,0,0,0.491,0.646,0.646,0.192,0,0.18 +1,0.384,0.384,0,0.8,0,0,0.584,0.658,0.658,0.485,0,0.108 +1,0.467,0.467,0,0.367,0,0,0.621,0.621,0.621,0,0,0.324 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.18 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.274,0.443,0.443,0,0,0.0881 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0.17,0.36 +0.667,0.156,0.156,0,0,1,0.617,0.243,0.488,0.488,0,0.378,0.036 +0.667,0.153,0.153,0,0,0,0.1,0.246,0.488,0.488,0,0.709,0 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0.345,0 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0.437,0.18 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.18 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0.17,0.144 +0.667,0.238,0.238,0,0,1,0.367,0.327,0.552,0.552,0,0.679,0.036 +1,0.345,0.345,0.0167,0,0,1,0.491,0.646,0.646,0,0.256,0.288 +1,0.384,0.384,1,0,0,1,0.584,0.658,0.658,0,0,0.036 +1,0.467,0.467,0.4,0,0,0.05,0.621,0.621,0.621,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.18 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.313 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0.534 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.242 +1,0.0768,0.0768,0,0,0,0,0.283,0.447,0.447,0,0,0.298 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.229 +0.667,0.163,0.163,0,0,0,0,0.317,0.484,0.484,0,0,0.0706 +0.667,0.274,0.274,0,0,0,0,0.296,0.511,0.511,0,0,0.036 +0.333,0.156,0.156,0,0,0,0,0.243,0.488,0.488,0,0,0.108 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.237,0.237,0.2,0,0,0,0.234,0.528,0.528,0,0,0.376 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.333,0.142,0.142,0.517,0,0,0,0.271,0.501,0.501,0,0,0.216 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0.036 +0.667,0.247,0.247,1,0,0,0,0.413,0.585,0.585,0,0,0.072 +1,0.384,0.384,1,0,0,0,0.584,0.658,0.658,0,0,0.036 +1,0.467,0.467,0.967,0,0,0,0.621,0.621,0.621,0,0,0.036 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.036 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.234 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.288 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.305 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.0692 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.162,0.162,0.0167,0,0,0,0.277,0.488,0.488,0,0,0.113 +0.667,0.156,0.156,0.45,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.108 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.235 +0.667,0.143,0.143,0,0,0,0,0.246,0.496,0.496,0,0,0.036 +0.667,0.142,0.142,0,0.05,0,0,0.258,0.496,0.496,0.38,0,0.072 +0.667,0.235,0.235,0,1,0,0,0.277,0.519,0.519,0.256,0,0.599 +0.667,0.235,0.235,0.267,0.117,0,0,0.284,0.536,0.536,0,0,0.356 +0.667,0.238,0.238,1,0,0,0,0.327,0.552,0.552,0,0,0.298 +0.667,0.247,0.247,0.15,0,0,0,0.413,0.585,0.585,0,0,0.072 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.036 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.216 +1,0.595,0.595,0,0,0,0,0.658,0.583,0.583,0,0,0.263 +1,0.726,0.726,0,0,0,0,0.639,0.559,0.559,0,0,0.16 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.102 +1,0.136,0.136,0,0,0,0,0.305,0.463,0.463,0,0,0.319 +1,0.277,0.277,0,0,0,0,0.376,0.503,0.503,0,0,0.351 +0.667,0.162,0.162,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.228,0.511,0.511,0,0,0.216 +0.667,0.256,0.256,0,0,0,0,0.234,0.511,0.511,0,0,0.036 +0.667,0.245,0.245,0,0,0,0,0.24,0.519,0.519,0,0,0.036 +0.667,0.237,0.237,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.259,0.528,0.528,0,0,0.036 +0.667,0.235,0.235,0,0,0,0,0.277,0.519,0.519,0,0,0.036 +0.667,0.235,0.235,0,0,0,0,0.284,0.536,0.536,0,0,0.144 +0.333,0.144,0.144,0.467,0,0,0,0.292,0.509,0.509,0,0,0.036 +0.333,0.148,0.148,0,0,0,0,0.336,0.525,0.525,0,0,0.252 +0.667,0.273,0.273,0,0,0,0,0.475,0.594,0.594,0,0,0.332 +0.667,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.173 +0.667,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.312 +0.667,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.199 +0.667,0.219,0.219,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.13 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.263,0.263,1,0,0,0,0.228,0.511,0.511,0,0,0 +1,0.359,0.359,1,0,0,0,0.222,0.534,0.534,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.036 +0,0.0495,0.0495,0.217,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.142,0.142,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.271,0.501,0.501,0,0,0 +0.333,0.144,0.144,0,0.05,0,0,0.292,0.509,0.509,0.387,0,0 +0.333,0.148,0.148,0,1,0,0,0.336,0.525,0.525,0.308,0,0.144 +0.333,0.161,0.161,0,0.35,0,0,0.366,0.53,0.53,0,0,0.18 +1,0.328,0.328,0,0,0,0,0.5,0.569,0.569,0,0,0.072 +1,0.413,0.413,0,0,0,0,0.525,0.544,0.544,0,0,0.288 +1,0.501,0.501,0,0,0,0,0.512,0.528,0.528,0,0,0.236 +1,0.388,0.388,0,0,0,0,0.45,0.486,0.486,0,0,0.212 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.108 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.1,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0.367,0,0,0,0.258,0.465,0.465,0,0,0.235 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.484 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.15 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.104 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.3 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.195 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.0662 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.203 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.291 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.264 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.151 +0.333,0.159,0.159,0.6,0,0,0,0.365,0.528,0.528,0,0,0.237 +0.667,0.324,0.324,1,0,0,0,0.497,0.566,0.566,0,0,0.108 +0.667,0.41,0.41,1,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.72,0.72,1,0,0,0,0.635,0.555,0.555,0,0,0.114 +1,0.554,0.554,0.85,0,0,0,0.543,0.493,0.493,0,0,0.206 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.184 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.142 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.13 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.072 +0.333,0.145,0.145,0.267,0,0,0,0.248,0.491,0.491,0,0,0.036 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0,0.036 +0.667,0.23,0.23,1,0,0,0,0.258,0.525,0.525,0,0,0.324 +0.667,0.23,0.23,1,0,0,0,0.276,0.517,0.517,0,0,0.144 +0.667,0.23,0.23,1,0.05,0,0,0.282,0.533,0.533,0.443,0.0928,0.072 +0.667,0.233,0.233,0.183,1,1,0.617,0.325,0.549,0.549,0.602,0.592,0.072 +0.667,0.242,0.242,0,0.0833,0,0.0667,0.411,0.582,0.582,0,0,0.18 +0.667,0.268,0.268,0,0.55,0,0,0.472,0.591,0.591,0.751,0,0.216 +1,0.461,0.461,0,0.817,0,0,0.616,0.616,0.616,0.824,0,0.144 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.036 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.072 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.322 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.63 +0.667,0.162,0.162,0.267,0,0,0,0.316,0.483,0.483,0,0.0844,0.633 +0.667,0.27,0.27,0.433,0,1,0.367,0.294,0.508,0.508,0,0.779,0.142 +0.667,0.258,0.258,0,0,0,0.55,0.227,0.508,0.508,0,0.515,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0.442,0.036 +0.333,0.145,0.145,0.517,0,0,0,0.248,0.491,0.491,0,0,0.18 +0.333,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0.036 +0.333,0.14,0.14,0.117,0,0,0,0.258,0.495,0.495,0,0,0.072 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.144 +0.667,0.23,0.23,0.267,0,0,0,0.282,0.533,0.533,0,0,0.036 +1,0.324,0.324,0.2,0,0,0,0.359,0.592,0.592,0,0,0.072 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.216 +1,0.461,0.461,0.267,0,0,0,0.616,0.616,0.616,0,0,0.108 +1,0.59,0.59,0.2,0,0,0,0.653,0.579,0.579,0,0,0.288 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,1,0,0,0,0.304,0.462,0.462,0,0,0.0634 +0.667,0.162,0.162,0.833,0,0,0,0.316,0.483,0.483,0,0,0.216 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.154,0.154,0.517,0.05,0,0,0.242,0.487,0.487,0.473,0,0.036 +0.667,0.25,0.25,1,1,0,0,0.233,0.508,0.508,0.701,0,0.072 +0.667,0.24,0.24,0.583,0.317,0,0,0.239,0.517,0.517,0.768,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0.738,0,0.108 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0.534,0,0.235 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.125 +0.333,0.14,0.14,0.7,0,0,0,0.27,0.499,0.499,0,0,0.036 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.144 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.252 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.036 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.108 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.108 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.072 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.116 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.162 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.621 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.206 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0.467,0,0,0,0.248,0.491,0.491,0,0,0.036 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.108 +0.667,0.23,0.23,0.517,0,0,0,0.258,0.525,0.525,0,0,0.108 +0.667,0.23,0.23,1,0,0,0,0.276,0.517,0.517,0,0,0.036 +0.667,0.23,0.23,0.583,0,0,0,0.282,0.533,0.533,0,0,0.108 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.424 +1,0.338,0.338,0.0167,0,0,0,0.488,0.641,0.641,0,0,0.367 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.036 +1,0.461,0.461,0.617,0,0,0,0.616,0.616,0.616,0,0,0.144 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.072 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.233 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.331 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0.263 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.0857 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.129 +0.667,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.291 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.123 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.318 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.144 +0.667,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.072 +0.667,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.14,0.14,0,0.55,0,0,0.267,0.491,0.491,0.638,0,0.036 +0.333,0.14,0.14,0,0.583,0,0,0.27,0.499,0.499,0.812,0,0.108 +1,0.324,0.324,0.767,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0.633,0,0,0,0.488,0.641,0.641,0,0,0.0664 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.324 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.036 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.498 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.378 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.185 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.162,0.162,0.1,0,0,0,0.316,0.483,0.483,0,0,0.149 +1,0.381,0.381,1,0,0,0,0.313,0.53,0.53,0,0,0.175 +0.667,0.258,0.258,0.3,0,0,0,0.227,0.508,0.508,0,0,0.237 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.072 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.18 +0.333,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.072 +0.333,0.14,0.14,0.35,0,0,0,0.27,0.499,0.499,0,0,0.18 +1,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0.072 +1,0.242,0.242,0.283,0,0,0,0.411,0.582,0.582,0,0,0 +1,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0 +1,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.18 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.108 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.072 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.036 +1,0.183,0.183,0,0.55,0,0,0.393,0.451,0.451,0.529,0,0.036 +1,0.0495,0.0495,0,0.5,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.85,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.258,0.258,0.25,0,0,0,0.227,0.508,0.508,0,0,0.0997 +0.333,0.15,0.15,0.35,0,0,0,0.245,0.487,0.487,0,0,0.186 +0.333,0.145,0.145,1,0,0,0,0.248,0.491,0.491,0,0,0.0707 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.14,0.14,1,0,0,0,0.258,0.495,0.495,0,0,0.144 +0.667,0.23,0.23,1,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.23,0.23,0.1,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.108 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.396 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.396 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.216 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.144 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.072 +1,0.116,0.116,0,0.0833,0,0,0.325,0.458,0.458,0,0,0.072 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.236 +1,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.104 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.036 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.072 +0.667,0.24,0.24,0.267,0,0,0,0.239,0.517,0.517,0,0,0.108 +0.667,0.232,0.232,0.433,0,0,0,0.233,0.525,0.525,0,0,0.152 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.0973 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.036 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.141,0.141,0.767,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.242,0.242,1,0,0,0,0.411,0.582,0.582,0,0,0.216 +1,0.377,0.377,0.333,0,0,0,0.58,0.653,0.653,0,0,0.072 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.036 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.108 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.108 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.036 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.141 +1,0.0504,0.0504,0,0,0,0,0.288,0.418,0.418,0,0,0.167 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.133 +1,0.135,0.135,0.267,0,0,0,0.304,0.462,0.462,0,0,0.287 +1,0.274,0.274,1,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.16,0.16,0.367,0,0,0,0.276,0.487,0.487,0,0,0.144 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.072 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.036 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.0561 +0.667,0.232,0.232,0.767,0,0,0,0.233,0.525,0.525,0,0,0.113 +0.667,0.23,0.23,1,0,0,0,0.258,0.525,0.525,0,0,0.14 +0.667,0.23,0.23,0.333,0,0,0,0.276,0.517,0.517,0,0,0.316 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.036 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0.144 +1,0.338,0.338,0.267,0,0,0,0.488,0.641,0.641,0,0,0.144 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0.298 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0.164 +1,0.496,0.496,1,0,0,0,0.509,0.525,0.525,0,0,0.0893 +1,0.386,0.386,0.183,0,0,0,0.448,0.484,0.484,0,0,0.602 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.381 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0.226 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.189 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.174 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.0905 +0.667,0.0495,0.0495,0,0,0.0667,0.117,0.258,0.465,0.465,0,0.266,0 +0.667,0.16,0.16,0,0,0.933,0.567,0.276,0.487,0.487,0,0.371,0 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0.134,0.108 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.108 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.072 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.219,0.072 +0.667,0.23,0.23,0,0,1,0.617,0.276,0.517,0.517,0,0,0.144 +0.667,0.23,0.23,0.767,0,0,0.0667,0.282,0.533,0.533,0,0,0 +0.667,0.233,0.233,0.867,0,0,0,0.325,0.549,0.549,0,0,0.144 +0.667,0.242,0.242,0.267,0,0,0,0.411,0.582,0.582,0,0,0.108 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.225 +1,0.461,0.461,0.133,0,0,0,0.616,0.616,0.616,0,0,0.0878 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.072 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.072 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.316,0 +1,0.162,0.162,0,0,1,0.617,0.316,0.483,0.483,0,0.57,0 +0.667,0.27,0.27,0,0,0,0.3,0.294,0.508,0.508,0,0.397,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0.506,0 +0.667,0.25,0.25,0.0167,0,0,0,0.233,0.508,0.508,0,0.045,0.036 +0.333,0.145,0.145,1,0,0,0,0.248,0.491,0.491,0,0,0.108 +0.667,0.141,0.141,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0.152 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.106 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.484 +0.667,0.233,0.233,0,0.55,0,0,0.325,0.549,0.549,0.588,0.174,0.148 +1,0.338,0.338,0,0.583,1,0.617,0.488,0.641,0.641,0.801,0.481,0.0917 +1,0.377,0.377,0,0,0,0.0667,0.58,0.653,0.653,0.826,0.322,0.505 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0.261,0,0.144 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.261 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.147 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.167 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.265 +0.667,0.258,0.258,0,0,0.0667,0.117,0.227,0.508,0.508,0,0.414,0 +0.667,0.25,0.25,0,0,0.933,0.8,0.233,0.508,0.508,0,0.421,0 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.195,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.592,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.072 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.216 +0.333,0.141,0.141,0.267,0,0,0,0.291,0.507,0.507,0,0,0.252 +0.667,0.242,0.242,0.433,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.072 +0.667,0.324,0.324,0.767,0,0,0,0.497,0.566,0.566,0,0,0.036 +0.667,0.41,0.41,1,0,0,0,0.521,0.541,0.541,0,0.0563,0.216 +0.667,0.496,0.496,1,0,1,0.217,0.509,0.525,0.525,0,0.435,0.072 +1,0.386,0.386,1,0,0,0,0.448,0.484,0.484,0,0,0.145 +1,0.183,0.183,0.683,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.162 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.104 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.326 +1,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.221 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.298 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.342 +0.667,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.072 +1,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.108 +1,0.233,0.233,0.467,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.036 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.036 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.18 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.18 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.41 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.102 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.036 +1,0.099,0.099,0,0,0,0,0.331,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.162,0.162,0.1,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.16,0.16,1,0,0,0,0.276,0.487,0.487,0,0,0.424 +1,0.258,0.258,0.3,0,0,0,0.227,0.508,0.508,0,0,0.243 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.351 +1,0.335,0.335,0,0,0,0,0.23,0.542,0.542,0,0,0.128 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.241 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0.316,0,0.138 +0.333,0.14,0.14,0,0.883,0,0,0.267,0.491,0.491,0.527,0,0.036 +0.333,0.14,0.14,0,0.25,0,0,0.27,0.499,0.499,0.473,0,0.036 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.036 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.108 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.072 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.108 +1,0.59,0.59,0.35,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.72,0.72,1,0,0,0,0.635,0.555,0.555,0,0,0.177 +1,0.554,0.554,1,0,0,0,0.543,0.493,0.493,0,0,0.327 +1,0.183,0.183,0.917,0,0,0,0.393,0.451,0.451,0,0,0.183 +1,0.0743,0.0743,1,0,0,0,0.294,0.454,0.454,0,0,0.0579 +1,0.0578,0.0578,0.183,0,0,0,0.285,0.446,0.446,0,0,0.238 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0.0899 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0,0.0936 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.153 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.252 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.036 +0.333,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0.242,0 +0.667,0.25,0.25,0,0,1,0.617,0.233,0.508,0.508,0,0,0.144 +0.667,0.24,0.24,0.267,0,0,0.3,0.239,0.517,0.517,0,0,0 +0.667,0.232,0.232,0.433,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.072 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.036 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.282 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.216 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.263 +1,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0.412,0.144 +1,0.59,0.59,0,0,1,0.867,0.653,0.579,0.579,0,0.0619,0.18 +1,0.496,0.496,0,0,0,0.05,0.509,0.525,0.525,0,0,0.036 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.18 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.036 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0.162 +0.667,0.15,0.15,0.267,0,0,0,0.245,0.487,0.487,0,0.0928,0 +0.667,0.145,0.145,0.2,0,1,0.367,0.248,0.491,0.491,0,0.467,0 +0.667,0.232,0.232,0,0,0,1,0.233,0.525,0.525,0,0.519,0.036 +0.667,0.23,0.23,0,0,0,1,0.258,0.525,0.525,0,0.487,0.108 +0.333,0.14,0.14,0,0,0,1,0.267,0.491,0.491,0,0.166,0.108 +0.667,0.14,0.14,0.7,0,0,0.583,0.27,0.499,0.499,0,0,0.072 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.242,0.242,0,0,0.0667,0.117,0.411,0.582,0.582,0.128,0.454,0.18 +1,0.377,0.377,0,0.8,0.933,1,0.58,0.653,0.653,0.475,0.224,0.288 +1,0.461,0.461,0,0.633,0,0.267,0.616,0.616,0.616,0.718,0,0.18 +1,0.59,0.59,0,0.833,0,0,0.653,0.579,0.579,0,0,0.288 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.22,0.22,0.2,0,0,0,0.35,0.459,0.459,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.156 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.301 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.216 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.072 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.036 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.826 +1,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.151 +1,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.072 +1,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.144 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.072 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.112 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.16 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0.342 +0.667,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.286 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.67 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.036 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0,0.072 +0.667,0.23,0.23,0.267,0,0,0,0.282,0.533,0.533,0,0,0.18 +1,0.324,0.324,1,0,0,0,0.359,0.592,0.592,0,0,0.072 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0.144 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.144 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0.144 +1,0.59,0.59,0.183,0,0,0,0.653,0.579,0.579,0,0,0.16 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0.226,0 +1,0.218,0.218,0,0,1,0.367,0.353,0.475,0.475,0,0.376,0 +1,0.116,0.116,0,0,0,1,0.325,0.458,0.458,0,0.105,0.036 +1,0.099,0.099,0,0,0,0.483,0.331,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.236 +1,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0.136 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0.179 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.228 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.0911 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0.128,0.228,0.072 +0.667,0.25,0.25,0,0.8,1,0.367,0.233,0.508,0.508,0.393,0.395,0.036 +0.667,0.24,0.24,0,0.333,0,0.55,0.239,0.517,0.517,0,0.657,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0.511,0.072 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0.409,0.108 +1,0.23,0.23,0,0,0,0,0.276,0.517,0.517,0,0.405,0 +1,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.494,0.144 +1,0.233,0.233,0.267,0,0,0,0.325,0.549,0.549,0,0.333,0.216 +1,0.338,0.338,1,0,0,0,0.488,0.641,0.641,0,0,0.144 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.288 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0.252 +1,0.41,0.41,1,0,0,0,0.521,0.541,0.541,0,0,0.036 +1,0.273,0.273,0.183,0,0,0,0.383,0.495,0.495,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0671 +1,0.162,0.162,0.35,0,0,0,0.316,0.483,0.483,0,0,0.331 +1,0.27,0.27,1,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.258,0.258,0.75,0,0,0,0.227,0.508,0.508,0,0,0.189 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.245,0.495,0.495,0,0,0.072 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.036 +0.333,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.108 +0.333,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.108 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.036 +0.667,0.242,0.242,0.35,0,0,0,0.411,0.582,0.582,0,0,0.108 +0.667,0.268,0.268,1,0,0,0,0.472,0.591,0.591,0,0,0.238 +1,0.461,0.461,1,0,0,0,0.616,0.616,0.616,0,0,0.198 +1,0.59,0.59,1,0,0,0,0.653,0.579,0.579,0,0,0.072 +1,0.72,0.72,1,0,0,0,0.635,0.555,0.555,0,0,0 +1,0.218,0.218,0.1,0,0,0,0.353,0.475,0.475,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.112 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.151 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0763,0.0763,0,0,0,0,0.282,0.446,0.446,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.85,0,0,0,0.258,0.465,0.465,0,0,0.151 +0.667,0.27,0.27,1,0,0,0,0.294,0.508,0.508,0,0,0.308 +1,0.362,0.362,0.25,0,0,0,0.212,0.53,0.53,0,0,0.153 +1,0.351,0.351,0,0,0,0,0.221,0.53,0.53,0,0,0.177 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.036 +0.667,0.23,0.23,0,0,0,0,0.258,0.525,0.525,0,0,0.108 +1,0.32,0.32,0.35,0,0,0,0.285,0.542,0.542,0,0,0 +1,0.321,0.321,1,0,0,0,0.294,0.567,0.567,0,0,0 +1,0.324,0.324,0.283,0,0,0,0.359,0.592,0.592,0,0,0.072 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0.036 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.036 +1,0.461,0.461,0,0,0,0,0.616,0.616,0.616,0,0,0.072 +1,0.41,0.41,0,0,0.4,0.2,0.521,0.541,0.541,0,0.414,0.108 +1,0.496,0.496,0,0.383,0.6,0.717,0.509,0.525,0.525,0.728,0,0.072 +1,0.386,0.386,0,0.75,0,0,0.448,0.484,0.484,0.634,0,0.288 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0.291,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.217 +1,0.135,0.135,0.267,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.162,0.162,1,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.27,0.27,1,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.362,0.362,1,0,0,0,0.212,0.53,0.53,0,0,0.036 +1,0.351,0.351,1,0,0,0,0.221,0.53,0.53,0,0,0.502 +0.667,0.24,0.24,0.183,0,0,0,0.239,0.517,0.517,0,0,0.218 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0.125,0,0.143 +0.667,0.23,0.23,0,0.8,0,0,0.258,0.525,0.525,0.308,0,0.108 +0.333,0.14,0.14,0,0.333,0,0,0.267,0.491,0.491,0,0,0.036 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0 +1,0.324,0.324,0,0.3,0,0,0.359,0.592,0.592,0.638,0,0.144 +0.667,0.242,0.242,0.517,0.833,0,0,0.411,0.582,0.582,0.167,0,0.036 +0.667,0.268,0.268,1,0,0,0,0.472,0.591,0.591,0,0,0.072 +1,0.461,0.461,0.583,0,0,0,0.616,0.616,0.616,0.176,0,0.036 +1,0.59,0.59,0,0.8,0,0,0.653,0.579,0.579,0.538,0,0.252 +1,0.72,0.72,0,0.567,0,0,0.635,0.555,0.555,0.651,0,0.036 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.18 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0982 +1,0.0763,0.0763,0.267,0,0,0,0.282,0.446,0.446,0,0,0.159 +1,0.135,0.135,1,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.162,0.162,0.133,0,0,0,0.316,0.483,0.483,0,0,0.197 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.565 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.342 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.0899 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0.036 +0.333,0.141,0.141,0.767,0,0,0,0.245,0.495,0.495,0,0,0.036 +0.667,0.14,0.14,0.633,0,0,0,0.258,0.495,0.495,0,0,0.036 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0.108 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.072 +0.667,0.141,0.141,0,0,0,0,0.291,0.507,0.507,0,0,0.072 +0.667,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0 +1,0.377,0.377,0,0,0,0,0.58,0.653,0.653,0,0,0.036 +1,0.324,0.324,0,0.3,0,0,0.497,0.566,0.566,0.485,0,0.108 +1,0.41,0.41,0,0.833,0,0,0.521,0.541,0.541,0,0,0.036 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.288 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.206 +1,0.22,0.22,0,0,0,0,0.35,0.459,0.459,0,0,0.101 +0.667,0.274,0.274,0,0,0,0,0.374,0.5,0.5,0,0,0.139 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0.036 +0.333,0.145,0.145,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.233,0.525,0.525,0,0,0.036 +0.667,0.23,0.23,0.517,0,0,0,0.258,0.525,0.525,0,0.142,0 +0.667,0.23,0.23,0.183,0,1,0.45,0.276,0.517,0.517,0,0.568,0 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0.47,0 +0.667,0.233,0.233,0.267,0,0,0,0.325,0.549,0.549,0,0.142,0.18 +1,0.338,0.338,0.433,0,0,0,0.488,0.641,0.641,0,0,0.108 +1,0.377,0.377,0.767,0.55,0,0,0.58,0.653,0.653,0.693,0,0.252 +1,0.461,0.461,0.633,0.583,0,0,0.616,0.616,0.616,0.289,0,0.216 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.108 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.072 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.108 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.115 +1,0.135,0.135,1,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.0495,0.0495,0.833,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0.165 +0.667,0.25,0.25,0,0,0.0667,0.117,0.233,0.508,0.508,0,0.706,0.036 +0.667,0.24,0.24,0.267,0,0.933,0.8,0.239,0.517,0.517,0,0,0.108 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0,0.072 +0.667,0.23,0.23,1,0,0,0,0.258,0.525,0.525,0,0,0.072 +0.667,0.23,0.23,1,0,0,0,0.276,0.517,0.517,0,0.312,0.036 +1,0.321,0.321,1,0,1,0.617,0.294,0.567,0.567,0,0.579,0 +0.667,0.233,0.233,0.183,0,0,0.3,0.325,0.549,0.549,0,0.00844,0.072 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.252 +1,0.377,0.377,0,0.05,0,0,0.58,0.653,0.653,0.372,0,0.072 +1,0.461,0.461,0,1,0,0,0.616,0.616,0.616,0.444,0,0 +1,0.59,0.59,0,0.0833,0,0,0.653,0.579,0.579,0,0,0.072 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.216 +1,0.386,0.386,0,0,0,0,0.448,0.484,0.484,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,1,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0763,0.0763,0.133,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.135,0.135,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.162,0.162,0,0.05,0,0,0.316,0.483,0.483,0.399,0,0.336 +0.667,0.27,0.27,0,1,0,0,0.294,0.508,0.508,0.704,0,0 +0.667,0.258,0.258,0,0.0833,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.036 +0.667,0.24,0.24,0.517,0,0,0,0.239,0.517,0.517,0,0,0.036 +0.667,0.232,0.232,1,0,0,0,0.233,0.525,0.525,0,0,0.072 +0.667,0.23,0.23,0.133,0,0,0,0.258,0.525,0.525,0,0,0.113 +0,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.14,0.14,1,0,0,0,0.27,0.499,0.499,0,0,0.108 +0.333,0.141,0.141,0.0833,0,0,0,0.291,0.507,0.507,0,0,0.072 +0.333,0.146,0.146,0,0,0,0,0.334,0.524,0.524,0,0,0.216 +0,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.187,0.187,1,0,0,0,0.377,0.516,0.516,0,0,0.643 +0.333,0.23,0.23,1,0,0,0,0.39,0.503,0.503,0,0,0.36 +0.667,0.496,0.496,1,0,0,0,0.509,0.525,0.525,0,0,0 +0.667,0.218,0.218,0.933,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.575 +1,0.162,0.162,0,0,0,0,0.316,0.483,0.483,0,0,0.126 +1,0.16,0.16,0,0,0,0,0.276,0.487,0.487,0,0,0 +1,0.154,0.154,0,0,0,0,0.242,0.487,0.487,0,0,0 +1,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0,0 +1,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0.565,0.108 +0.333,0.141,0.141,0,0,1,0.7,0.245,0.495,0.495,0,0,0.108 +0.333,0.14,0.14,0,0,0,0.45,0.258,0.495,0.495,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.14,0.14,0,0,0,0,0.27,0.499,0.499,0,0,0.036 +0.667,0.233,0.233,0,0,0,0,0.325,0.549,0.549,0,0,0.404 +0.667,0.242,0.242,0,0,0,0,0.411,0.582,0.582,0,0,0.375 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.148 +0.667,0.324,0.324,0,0,0,0,0.497,0.566,0.566,0,0,0.604 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.072 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0499,0.0499,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.261 +1,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.761 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.245,0.487,0.487,0,0.101,0 +0.333,0.145,0.145,0,0,1,0.45,0.248,0.491,0.491,0,0,0.324 +0.333,0.141,0.141,0,0,0,0.467,0.245,0.495,0.495,0,0,0.036 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0,0.0495,0.0495,0,0.383,0,0,0.258,0.465,0.465,0.676,0,0.144 +0.333,0.14,0.14,0.85,0.983,0,0,0.27,0.499,0.499,0.0747,0,0.072 +1,0.324,0.324,0.783,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0.35,0,0,0,0.488,0.641,0.641,0,0,0 +1,0.377,0.377,1,0,0,0,0.58,0.653,0.653,0,0,0.036 +1,0.461,0.461,0.05,0,0,0,0.616,0.616,0.616,0,0,0.108 +1,0.59,0.59,0,0,0,0,0.653,0.579,0.579,0,0,0.036 +1,0.72,0.72,0,0,0,0,0.635,0.555,0.555,0,0,0.144 +1,0.554,0.554,0,0,0,0,0.543,0.493,0.493,0,0,0.123 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.189 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.0917 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0763,0.0763,1,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.135,0.135,0.833,0,0,0,0.304,0.462,0.462,0,0,0.143 +1,0.386,0.386,0,0.05,0,0,0.432,0.518,0.518,0.41,0,0.245 +0.333,0.16,0.16,0,1,0,0,0.276,0.487,0.487,0.362,0,0.344 +0.333,0.154,0.154,0,0.317,0,0,0.242,0.487,0.487,0,0,0.144 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0,0,0.144 +0.667,0.24,0.24,0,0,0,0,0.239,0.517,0.517,0,0,0.036 +0.667,0.232,0.232,0.767,0,0,0,0.233,0.525,0.525,0,0,0 +0.667,0.23,0.23,1,0,0,0,0.258,0.525,0.525,0,0,0 +0.667,0.23,0.23,0.333,0,0,0,0.276,0.517,0.517,0,0,0.036 +0.667,0.23,0.23,0,0,0,0,0.282,0.533,0.533,0,0,0.108 +1,0.324,0.324,0,0,0,0,0.359,0.592,0.592,0,0,0 +1,0.338,0.338,0,0,0,0,0.488,0.641,0.641,0,0,0 +0.667,0.268,0.268,0,0,0,0,0.472,0.591,0.591,0,0,0.252 +0.333,0.187,0.187,0,0,0,0,0.377,0.516,0.516,0,0,0.144 +0.667,0.41,0.41,0,0,0,0,0.521,0.541,0.541,0,0,0.18 +0.667,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.036 +0.667,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.036 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.132 +0.667,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.44 +1,0.386,0.386,0,0,0,0,0.432,0.518,0.518,0,0,0.096 +0.667,0.27,0.27,0,0,0,0,0.294,0.508,0.508,0,0,0.0722 +0.667,0.258,0.258,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.25,0.25,0,0,0,0,0.233,0.508,0.508,0.169,0,0.288 +0.667,0.24,0.24,0,0.8,0,0,0.239,0.517,0.517,0.697,0,0.072 +0.667,0.232,0.232,0.267,0.333,0,0,0.233,0.525,0.525,0.697,0,0 +0.667,0.23,0.23,1,0,0.0667,0.117,0.258,0.525,0.525,0.347,0.463,0.144 +0.667,0.23,0.23,1,0,0.933,0.333,0.276,0.517,0.517,0,0.495,0.072 +0.667,0.23,0.23,1,0,0,0,0.282,0.533,0.533,0,0.11,0.108 +0.667,0.233,0.233,1,0,0,0,0.325,0.549,0.549,0,0,0.108 +0.667,0.242,0.242,0.183,0,0,0,0.411,0.582,0.582,0,0,0.18 +1,0.377,0.377,0,0.05,0,0,0.58,0.653,0.653,0.37,0,0.072 +1,0.461,0.461,0,1,0,0,0.616,0.616,0.616,0.28,0,0.072 +1,0.59,0.59,0,0.0833,0,0,0.653,0.579,0.579,0,0,0.036 +1,0.496,0.496,0,0,0,0,0.509,0.525,0.525,0,0,0.036 +1,0.218,0.218,0,0,0,0,0.353,0.475,0.475,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.185 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.322 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.885 +0.667,0.274,0.274,0.267,0,0,0,0.294,0.508,0.508,0,0,0.18 +0.667,0.263,0.263,0.2,0,0,0,0.227,0.508,0.508,0,0,0.036 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.288 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.036 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.036 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.18 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.036 +0.667,0.236,0.236,0.267,0,0,0,0.282,0.533,0.533,0,0,0.134 +1,0.334,0.334,0.2,0,0,0,0.359,0.592,0.592,0,0,0.144 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.108 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0,0.108 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.036 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.108 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.244 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.21 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0.361 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.136,0.136,0,0.55,0,0,0.304,0.462,0.462,0.684,0,0 +0.667,0.163,0.163,0,0.6,0,0,0.316,0.483,0.483,0.841,0,0.291 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.125,0,0.108 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.108 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.108 +0.333,0.147,0.147,0.267,0,0,0,0.248,0.491,0.491,0.117,0,0 +0.667,0.237,0.237,1,0.8,0,0,0.233,0.525,0.525,0.77,0,0 +0.667,0.235,0.235,0.167,0.35,0,0,0.258,0.525,0.525,0.64,0,0 +1,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +1,0.236,0.236,0.267,0,0,0,0.282,0.533,0.533,0,0,0.216 +1,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0,0.396 +0.667,0.151,0.151,1,0,0,0,0.334,0.524,0.524,0,0,0.108 +0.667,0.289,0.289,1,0,0,0,0.472,0.591,0.591,0,0,0.108 +0.667,0.362,0.362,1,0,0,0,0.497,0.566,0.566,0,0,0 +0.667,0.462,0.462,0.317,0,0,0,0.521,0.541,0.541,0,0,0 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.33 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.129 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.107 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.506 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.0811 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.207 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.288 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.279 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.072 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.219 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.144 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.036 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.113 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.354 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.372 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.377 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.22 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.346 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.349 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.222,0.222,1,0,0,0,0.35,0.459,0.459,0,0,0.238 +0.667,0.163,0.163,1,0,0,0,0.316,0.483,0.483,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.317,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0.3,0 +0.333,0.143,0.143,0,0,1,0.217,0.245,0.495,0.495,0,0.315,0 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0.541,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.433,0.369 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.857,0.435 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.251 +0.333,0.151,0.151,0.0167,0,0,0,0.334,0.524,0.524,0,0,0.288 +1,0.408,0.408,0.45,0,0,0,0.58,0.653,0.653,0,0,0.269 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.232 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.15 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.489 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.934 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.177 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0.244 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.036 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.277,0.277,0.267,0,0,0,0.374,0.5,0.5,0,0,0 +1,0.274,0.274,1,0,0,0,0.294,0.508,0.508,0,0,0.335 +1,0.263,0.263,0.9,0,0,0,0.227,0.508,0.508,0,0,0.519 +1,0.359,0.359,0,0.55,0,0,0.221,0.53,0.53,0.686,0,0.536 +0.667,0.245,0.245,0,0.6,0,0,0.239,0.517,0.517,0,0,0.435 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.036 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0.13,0,0.036 +0.333,0.143,0.143,0.267,0.8,0,0,0.27,0.499,0.499,0.764,0,0.288 +0.667,0.239,0.239,1,0.35,0,0,0.325,0.549,0.549,0,0,0.072 +1,0.353,0.353,1,0,0,0,0.488,0.641,0.641,0,0,0.036 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0.072 +1,0.362,0.362,1,0,0,0,0.497,0.566,0.566,0,0,0.36 +1,0.462,0.462,0.317,0,0,0,0.521,0.541,0.541,0,0,0 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.072 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.163,0.163,0,0,0.0667,0.117,0.316,0.483,0.483,0,0.487,0.27 +1,0.274,0.274,0,0,0.933,0.333,0.294,0.508,0.508,0,0.615,0.171 +1,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0.305,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.036 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.072 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.18 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0.252 +1,0.334,0.334,0.717,0,0,0,0.359,0.592,0.592,0,0,0.072 +0.667,0.252,0.252,0.517,0,0,0,0.411,0.582,0.582,0,0,0.036 +0.667,0.289,0.289,0.2,0,0,0,0.472,0.591,0.591,0,0,0.036 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.036 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.218 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.036 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0637 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.237 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.248 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.121 +1,0.387,0.387,0,0,0,0,0.313,0.53,0.53,0,0,0.381 +1,0.37,0.37,0,0,0,0,0.212,0.53,0.53,0,0,0.072 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.072 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.072 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.036 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.072 +0.333,0.143,0.143,0.0167,0,0,0,0.27,0.499,0.499,0,0,0.108 +0.333,0.144,0.144,0.7,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.18 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.072 +0.667,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.144 +0.667,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.252 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.105 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.151 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.488 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.257 +1,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.128 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.205 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0,0.0495,0.0495,0.767,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.142,0.142,1,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.235,0.235,1,0,0,0,0.276,0.517,0.517,0,0,0.036 +0.667,0.236,0.236,1,0,0,0,0.282,0.533,0.533,0,0.131,0 +0.667,0.239,0.239,0.817,0,1,0.617,0.325,0.549,0.549,0,0,0 +0.667,0.252,0.252,0,0,0,0.283,0.411,0.582,0.582,0,0,0.18 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.324 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.108 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.284 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.108 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,1,0,0,0,0.273,0.442,0.442,0,0,0.341 +1,0.104,0.104,1,0,0,0,0.307,0.426,0.426,0,0,0.29 +0.667,0.136,0.136,1,0,0,0,0.304,0.462,0.462,0,0,0.136 +0.667,0.163,0.163,1,0,0,0,0.316,0.483,0.483,0,0,0.19 +0.667,0.162,0.162,0.317,0,0,0,0.276,0.487,0.487,0,0,0.106 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.252 +0.333,0.153,0.153,0.0167,0.55,0,0,0.245,0.487,0.487,0.703,0,0.072 +0.333,0.147,0.147,1,0.833,0,0,0.248,0.491,0.491,0,0,0.279 +0.667,0.237,0.237,0.667,0,0,0,0.233,0.525,0.525,0,0,0.209 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.204 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.036 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.036 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.239 +1,0.353,0.353,0.267,0,0,0,0.488,0.641,0.641,0,0,0.124 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0.216 +1,0.518,0.518,0.167,0,0,0,0.616,0.616,0.616,0,0,0.325 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.273 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.072 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.115 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.313 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.333,0.153,0.153,0.767,0.55,0,0,0.245,0.487,0.487,0.908,0,0.036 +0.667,0.147,0.147,0.917,0.6,0,0,0.248,0.491,0.491,0.115,0,0.108 +0.667,0.143,0.143,0,0,0.0667,0.117,0.245,0.495,0.495,0,0.44,0.072 +1,0.235,0.235,0,0,0.933,1,0.258,0.525,0.525,0,0.335,0.144 +1,0.327,0.327,0,0,0,1,0.285,0.542,0.542,0,0.381,0.18 +1,0.329,0.329,0,0,0,1,0.294,0.567,0.567,0,0.3,0.072 +1,0.334,0.334,0.767,0,0,0.733,0.359,0.592,0.592,0,0.568,0 +1,0.353,0.353,1,0,0,0,0.488,0.641,0.641,0,0.571,0.072 +1,0.408,0.408,1,0.55,0,0,0.58,0.653,0.653,0.891,0.352,0.252 +1,0.518,0.518,1,0.65,0,0,0.616,0.616,0.616,0.453,0.477,0.144 +1,0.462,0.462,0.817,1,0,0,0.521,0.541,0.541,0.555,0.513,0.072 +1,0.542,0.542,0,0.1,0,0,0.509,0.525,0.525,0.845,0.15,0.121 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.126 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0.114,0.072 +1,0.0743,0.0743,0,0,1,0.217,0.294,0.454,0.454,0,0.163,0.128 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,1,0,0,0,0.304,0.462,0.462,0,0,0.264 +1,0.163,0.163,0.167,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.156,0.156,1,0,0,0,0.242,0.487,0.487,0,0,0.036 +0.333,0.153,0.153,1,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0 +0.333,0.143,0.143,1,0,0,0,0.245,0.495,0.495,0,0,0 +0.333,0.142,0.142,0.317,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.036 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.253 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.182 +1,0.353,0.353,0.0167,0,0,0,0.488,0.641,0.641,0,0,0.072 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0.18 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0,0 +1,0.462,0.462,0.15,0,0,0,0.521,0.541,0.541,0,0,0.072 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.517 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.653 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.11 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.144 +1,0.277,0.277,0.267,0,0,0,0.374,0.5,0.5,0,0,0.13 +0.667,0.274,0.274,1,0,0,0,0.294,0.508,0.508,0,0,0.229 +0.667,0.263,0.263,0.417,0,0,0,0.227,0.508,0.508,0,0.125,0.111 +0.667,0.256,0.256,0,0,1,0.617,0.233,0.508,0.508,0,0.543,0.21 +0.667,0.245,0.245,0.467,0,0,0.283,0.239,0.517,0.517,0,0.105,0.18 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.072 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.237 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.166 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0.072 +1,0.408,0.408,0.467,0.55,0,0,0.58,0.653,0.653,0.785,0,0.36 +1,0.518,0.518,0,0.6,0,0,0.616,0.616,0.616,0.898,0,0.072 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0.284,0,0.216 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.072 +1,0.397,0.397,0,0.05,0,0,0.448,0.484,0.484,0.32,0,0.284 +1,0.183,0.183,0,1,0,0,0.393,0.451,0.451,0.132,0,0.232 +1,0.0743,0.0743,0,0.1,0,0,0.294,0.454,0.454,0,0,0.145 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.164 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.036 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.036 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.108 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.144 +0.667,0.235,0.235,0,0.3,0,0,0.258,0.525,0.525,0.594,0,0 +0.667,0.235,0.235,0,1,0,0,0.276,0.517,0.517,0.134,0,0.036 +0.667,0.236,0.236,0,0.0833,0,0,0.282,0.533,0.533,0,0,0.216 +0.667,0.239,0.239,0.0167,0,0,0,0.325,0.549,0.549,0,0,0.036 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0.072 +1,0.408,0.408,0.417,0,0,0,0.58,0.653,0.653,0,0,0.072 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.072 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.257 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.111 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.152 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.222,0.222,0.517,0,0,0,0.35,0.459,0.459,0,0,0.128 +1,0.39,0.39,1,0,0,0,0.432,0.518,0.518,0,0,0.155 +0.667,0.274,0.274,0.167,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.108 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.336,0 +0.667,0.245,0.245,0,0,1,0.217,0.239,0.517,0.517,0,0.588,0.036 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0.187,0.288 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0.443,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0.629,0.324 +0.667,0.236,0.236,0.517,0,0,0,0.282,0.533,0.533,0,0.475,0.211 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0.336,0.036 +1,0.353,0.353,1,0.3,0,0,0.488,0.641,0.641,0.571,0.599,0.144 +1,0.408,0.408,1,0.85,0,0,0.58,0.653,0.653,0.693,0.612,0.288 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0.511,0.18 +1,0.668,0.668,0.0667,0,0,0,0.653,0.579,0.579,0,0.553,0.036 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0.34,0.468 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0.00844,0.159 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0.45,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.163,0.163,0.267,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.274,0.274,1,0,0,0,0.294,0.508,0.508,0,0,0 +1,0.37,0.37,0.9,0,0,0,0.212,0.53,0.53,0,0,0.036 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.237,0.237,0.717,0,0,0,0.233,0.525,0.525,0,0.0886,0.108 +1,0.328,0.328,0,0,1,0.367,0.258,0.555,0.555,0,0.677,0.144 +1,0.327,0.327,0,0,0,0.533,0.285,0.542,0.542,0,0.402,0 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0.478,0.072 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0.394,0.072 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0.633,0.144 +1,0.408,0.408,0,0,0,0,0.58,0.653,0.653,0,0.456,0.036 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0.549,0.036 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0.429,0 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0.482,0.144 +0.667,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0.534,0.036 +0.667,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0.629,0 +0.667,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0.655,0 +0.667,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0.788,0 +1,0.0495,0.0495,0,0,0,0,0.285,0.442,0.442,0,0.584,0 +1,0.0495,0.0495,0,0,0,0,0.282,0.438,0.438,0,0.166,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.491 +1,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0.229 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.036 +0.667,0.274,0.274,0,0.55,0,0,0.294,0.508,0.508,0.797,0,0.036 +0.667,0.263,0.263,0,0.833,0,0,0.227,0.508,0.508,0,0,0.108 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.288 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.036 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.036 +0.333,0.143,0.143,0.267,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0.2,0,0,0,0.291,0.507,0.507,0,0,0.036 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.036 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.072 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.036 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.47 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.206 +1,0.0768,0.0768,0.767,0,0,0,0.282,0.446,0.446,0,0,0.149 +1,0.136,0.136,1,0,0,0,0.304,0.462,0.462,0,0,0.222 +1,0.163,0.163,0.4,0,0,0,0.316,0.483,0.483,0,0,0.546 +1,0.387,0.387,0,0,0,0,0.313,0.53,0.53,0,0,0.0844 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.383 +1,0.256,0.256,0.767,0,0,0,0.233,0.508,0.508,0,0,0.113 +1,0.343,0.343,0.667,0,0,0,0.23,0.542,0.542,0,0,0.036 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.072 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.144 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.036 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.144 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.144 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.072 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.108 +1,0.296,0.296,0,0,0,0,0.383,0.495,0.495,0,0.17,0 +1,0.223,0.223,0,0,1,0.617,0.353,0.475,0.475,0,0.48,0.072 +1,0.116,0.116,0,0,0,0.283,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.162,0.162,0.767,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,1,0,0,0,0.242,0.487,0.487,0,0,0 +0.333,0.153,0.153,1,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,1,0,0,0,0.248,0.491,0.491,0,0,0.036 +0.333,0.143,0.143,0.817,0,0,0,0.245,0.495,0.495,0,0,0.036 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.216 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.036 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0,0.29 +1,0.353,0.353,0.267,0,0,0,0.488,0.641,0.641,0,0,0.108 +1,0.408,0.408,1,0,0,0,0.58,0.653,0.653,0,0,0.072 +1,0.518,0.518,0.9,0,0,0,0.616,0.616,0.616,0,0,0.108 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.108 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.144 +1,0.571,0.571,0,0.55,0,0,0.543,0.493,0.493,0.494,0,0.144 +1,0.183,0.183,0,0.6,0,0,0.393,0.451,0.451,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,1,0,0,0,0.282,0.446,0.446,0,0,0 +1,0.136,0.136,0.65,0,0,0,0.304,0.462,0.462,0,0,0 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.036 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.667,0.245,0.245,0.267,0,0,0,0.239,0.517,0.517,0,0,0.036 +0.333,0.143,0.143,1,0,0,0,0.245,0.495,0.495,0,0,0.27 +0.667,0.142,0.142,0.9,0,0,0,0.258,0.495,0.495,0,0,0.372 +0.667,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0.108,0.104 +0.667,0.236,0.236,0.267,0,1,0.617,0.282,0.533,0.533,0,0,0.072 +0.333,0.144,0.144,0.45,0,0,0.733,0.291,0.507,0.507,0,0,0.226 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.274 +0.667,0.289,0.289,0.767,0,0,0,0.472,0.591,0.591,0,0,0.072 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0,0.623 +1,0.668,0.668,0.4,0,0,0,0.653,0.579,0.579,0,0,0.216 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.144 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.373 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.0595 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.201 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.301 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0,0.321 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.036 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.036 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.036 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.216 +0.333,0.142,0.142,0,0,0.0667,0.117,0.267,0.491,0.491,0,0.474,0.396 +0.333,0.143,0.143,0,0,0.933,0.783,0.27,0.499,0.499,0,0.504,0.359 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.564,0.148 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0.425,0.266 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0.38,0.144 +1,0.518,0.518,0,0.3,0,0,0.616,0.616,0.616,0.596,0,0.036 +1,0.668,0.668,0,0.85,0,0,0.653,0.579,0.579,0.169,0,0.036 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.767,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0.139 +1,0.387,0.387,0.4,0,0,0,0.313,0.53,0.53,0,0,0.33 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.072 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.195 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.34 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0,0.216 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.198 +1,0.329,0.329,0,0,0,0,0.294,0.567,0.567,0,0,0.036 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.108 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.036 +0.333,0.169,0.169,0,0,0,0,0.365,0.528,0.528,0,0,0.381 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.406 +0.667,0.462,0.462,0,0,0,0,0.521,0.541,0.541,0,0,0.036 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0.13,0,0.271 +0.667,0.397,0.397,0,0.8,0,0,0.448,0.484,0.484,0.81,0,0.234 +0.667,0.116,0.116,0,0.583,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.227 +1,0.308,0.308,0,0,0,0,0.396,0.456,0.456,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.294,0.508,0.508,0,0,0.036 +0.667,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.177 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.318 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0 +0.667,0.237,0.237,0,0.3,0,0,0.233,0.525,0.525,0.68,0,0.036 +0.667,0.235,0.235,0,0.85,0.0667,0.117,0.258,0.525,0.525,0,0.429,0.18 +0.667,0.235,0.235,0,0,0.933,0.783,0.276,0.517,0.517,0,0.142,0.036 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.324 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0.036 +0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.36 +0.667,0.289,0.289,0.45,0,0,0,0.472,0.591,0.591,0.144,0,0 +0.667,0.362,0.362,0,0.8,0,0,0.497,0.566,0.566,0.341,0,0.31 +1,0.668,0.668,0,0.35,0,0,0.653,0.579,0.579,0,0,0.504 +1,0.542,0.542,0,0.3,0,0,0.509,0.525,0.525,0.724,0,0 +1,0.0495,0.0495,0,0.85,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.307,0.41,0.41,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0768,0.0768,0,0,0,0,0.282,0.446,0.446,0,0,0.153 +1,0.222,0.222,0,0,0.0667,0.117,0.35,0.459,0.459,0,0.549,0.182 +0.667,0.163,0.163,0,0,0.933,1,0.316,0.483,0.483,0,0.643,0.504 +0.667,0.162,0.162,0,0,0,0.917,0.276,0.487,0.487,0,0.433,0.167 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0.523,0.41 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.35,0.531 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0.136,0.172 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0 +0.667,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.036 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0,0.036 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.036 +0.333,0.151,0.151,0,0.55,0,0,0.334,0.524,0.524,0.812,0,0.072 +0.667,0.289,0.289,0,0.6,0,0,0.472,0.591,0.591,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.377,0.516,0.516,0,0,0.108 +0.333,0.256,0.256,0,0,0,0,0.39,0.503,0.503,0,0,0.108 +0.667,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.072 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.285,0.446,0.446,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.159,0 +1,0.163,0.163,0.717,0,1,0.617,0.316,0.483,0.483,0,0.498,0 +0.667,0.274,0.274,0,0,0,0.05,0.294,0.508,0.508,0,0.817,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0.463,0 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0.316,0.036 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0.136 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.21 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0.072 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.072 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.291,0.507,0.507,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.334,0.524,0.524,0,0,0.108 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.072 +1,0.518,0.518,0,0.05,0,0,0.616,0.616,0.616,0.462,0,0.18 +1,0.668,0.668,0,1,0,0,0.653,0.579,0.579,0.302,0,0.072 +1,0.788,0.788,0,0.1,0,0,0.635,0.555,0.555,0,0,0.108 +1,0.223,0.223,0,0,0,0,0.353,0.475,0.475,0,0,0.108 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.175 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.468 +1,0.277,0.277,1,0,0,0,0.374,0.5,0.5,0,0,0.0972 +1,0.274,0.274,1,0,0,0,0.294,0.508,0.508,0,0,0.0982 +0.667,0.263,0.263,1,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.256,0.256,1,0,0,0,0.233,0.508,0.508,0,0,0.144 +0,0.0495,0.0495,0.317,0,0,0,0.258,0.465,0.465,0,0,0.036 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.142,0.142,0.267,0,0,0,0.267,0.491,0.491,0,0,0.144 +0.667,0.236,0.236,0.2,0,0,0,0.282,0.533,0.533,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0.385,0 +0.667,0.252,0.252,0,0,1,0.867,0.411,0.582,0.582,0,0.671,0.216 +1,0.408,0.408,0,0,0,0.0333,0.58,0.653,0.653,0,0.239,0.108 +1,0.518,0.518,0,0,0,0,0.616,0.616,0.616,0,0,0.18 +1,0.668,0.668,0,0.55,0,0,0.653,0.579,0.579,0.933,0,0.227 +1,0.788,0.788,0,0.6,0,0,0.635,0.555,0.555,0,0,0.075 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.072 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0 +1,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.248,0.491,0.491,0,0,0.036 +0.333,0.143,0.143,0,0,0,0,0.245,0.495,0.495,0,0,0.036 +0.333,0.142,0.142,0,0,0,0,0.258,0.495,0.495,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.288 +0.333,0.143,0.143,0,0,0,0,0.27,0.499,0.499,0,0,0.144 +0.333,0.144,0.144,0.267,0,0,0,0.291,0.507,0.507,0,0,0 +0.667,0.252,0.252,1,0,0,0,0.411,0.582,0.582,0,0,0.18 +0.667,0.289,0.289,1,0,0,0,0.472,0.591,0.591,0,0,0.072 +0.667,0.362,0.362,1,0,0,0,0.497,0.566,0.566,0,0,0.144 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0,0.108 +1,0.788,0.788,0.317,0,0,0,0.635,0.555,0.555,0,0,0.216 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.18 +1,0.183,0.183,0,0,0,0,0.393,0.451,0.451,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.14 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.35,0.459,0.459,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.036 +0.667,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.574 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.036 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.252 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.276,0.517,0.517,0,0,0.036 +1,0.329,0.329,0.267,0,0,0,0.294,0.567,0.567,0,0,0 +0.667,0.239,0.239,0.45,0,0,0,0.325,0.549,0.549,0,0,0 +1,0.353,0.353,0,0,0,0,0.488,0.641,0.641,0,0,0 +0.667,0.289,0.289,0,0.3,0,0,0.472,0.591,0.591,0.642,0,0.18 +1,0.518,0.518,0,1,0,0,0.616,0.616,0.616,0.142,0,0.216 +1,0.668,0.668,0,0.0833,0,0,0.653,0.579,0.579,0,0,0.072 +1,0.788,0.788,0,0,0,0,0.635,0.555,0.555,0,0,0.359 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.144 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.05,0.05,0,0,0,0,0.273,0.442,0.442,0,0,0 +1,0.0768,0.0768,0.267,0,0,0,0.282,0.446,0.446,0,0,0.176 +1,0.222,0.222,1,0,0,0,0.35,0.459,0.459,0,0,0.175 +0.667,0.277,0.277,0.9,0,0,0,0.374,0.5,0.5,0,0,0.072 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0.144 +0.333,0.156,0.156,0,0,0,0,0.242,0.487,0.487,0,0,0.126 +0.667,0.256,0.256,0,0,0,0,0.233,0.508,0.508,0,0,0.0933 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0 +0.333,0.142,0.142,0.767,0,0,0,0.258,0.495,0.495,0,0.591,0 +0.667,0.235,0.235,0.917,0,1,0.667,0.276,0.517,0.517,0,0.478,0.036 +0.667,0.236,0.236,0,0,0,0,0.282,0.533,0.533,0,0.325,0.072 +1,0.334,0.334,0,0,0,0,0.359,0.592,0.592,0,0.689,0.18 +1,0.353,0.353,0.517,0,0,0,0.488,0.641,0.641,0,0.345,0 +1,0.408,0.408,1,0.05,0,0,0.58,0.653,0.653,0.366,0,0.036 +1,0.518,0.518,0.65,1,0,0,0.616,0.616,0.616,0.757,0,0.072 +1,0.668,0.668,0,0.65,0,0,0.653,0.579,0.579,0.703,0,0.18 +1,0.788,0.788,0,0.6,0,0,0.635,0.555,0.555,0.667,0,0.108 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0.072 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.212 +1,0.136,0.136,0.267,0,0,0,0.304,0.462,0.462,0,0,0.0484 +1,0.163,0.163,1,0.3,0.0667,0.117,0.316,0.483,0.483,0.776,0.295,0 +1,0.162,0.162,0.9,1,0.933,1,0.276,0.487,0.487,0.218,0.484,0 +1,0.156,0.156,0.467,0.133,0,0.467,0.242,0.487,0.487,0.421,0,0 +1,0.256,0.256,0,0.867,0,0,0.233,0.508,0.508,0.657,0,0 +1,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0.575,0,0.072 +1,0.331,0.331,0,0,0,0,0.221,0.555,0.555,0.753,0,0.072 +1,0.328,0.328,0,0,0,0,0.258,0.555,0.555,0.287,0,0.036 +0.333,0.142,0.142,0,0,0,0,0.267,0.491,0.491,0,0,0.144 +0.333,0.143,0.143,0,0,0.0667,0.117,0.27,0.499,0.499,0,0.557,0.0982 +1,0.334,0.334,0.0167,0,0.933,1,0.359,0.592,0.592,0,0.532,0.212 +1,0.353,0.353,1,0,0,1,0.488,0.641,0.641,0,0.584,0.288 +1,0.408,0.408,1,0,0,0.133,0.58,0.653,0.653,0,0.366,0.216 +1,0.518,0.518,1,0,0,0,0.616,0.616,0.616,0,0.267,0 +1,0.668,0.668,1,0,0,0,0.653,0.579,0.579,0,0.511,0.238 +1,0.788,0.788,0.567,0,0,0,0.635,0.555,0.555,0,0.101,0.379 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,1,0.05,0,0,0.288,0.418,0.418,0.42,0,0 +0.333,0.0768,0.0768,0.167,1,0,0,0.282,0.446,0.446,0.134,0,0 +0.333,0.136,0.136,0,0.1,0,0,0.304,0.462,0.462,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.483,0.483,0,0,0.036 +0.333,0.162,0.162,0,0,0,0,0.276,0.487,0.487,0,0,0 +0.667,0.263,0.263,0,0,0,0,0.227,0.508,0.508,0,0,0.0713 +0.333,0.153,0.153,0,0,0,0,0.245,0.487,0.487,0,0,0.115 +0.667,0.245,0.245,0,0,0,0,0.239,0.517,0.517,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.324 +0.667,0.235,0.235,0,0,0,0,0.258,0.525,0.525,0,0.129,0.144 +0.333,0.142,0.142,0,0,1,0.367,0.267,0.491,0.491,0,0.242,0 +0.667,0.236,0.236,0,0,0,0.3,0.282,0.533,0.533,0,0.0689,0.108 +0.667,0.239,0.239,0,0,0,0,0.325,0.549,0.549,0,0,0.036 +0.667,0.252,0.252,0,0,0,0,0.411,0.582,0.582,0,0,0.207 +0.667,0.289,0.289,0,0.05,0,0,0.472,0.591,0.591,0.448,0,0.072 +1,0.518,0.518,0.717,1,0,0,0.616,0.616,0.616,0.375,0,0.108 +1,0.668,0.668,0,0.1,0,0,0.653,0.579,0.579,0,0,0.036 +1,0.542,0.542,0,0.55,0,0,0.509,0.525,0.525,0.883,0,0.036 +1,0.223,0.223,0,0.6,0,0,0.353,0.475,0.475,0,0,0.216 +1,0.116,0.116,0,0,0,0,0.325,0.458,0.458,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.294,0.454,0.454,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.462,0.462,0,0,0.0768 +1,0.277,0.277,0,0,0,0,0.374,0.5,0.5,0,0.134,0.194 +1,0.387,0.387,0,0.55,1,0.367,0.313,0.53,0.53,0.91,0.511,0.162 +1,0.37,0.37,0,0.6,0,0.533,0.212,0.53,0.53,0,0.563,0.0847 +1,0.359,0.359,0,0,0,0,0.221,0.53,0.53,0,0.754,0.28 +1,0.343,0.343,0,0,0,0,0.23,0.542,0.542,0,0,0.107 +0.667,0.237,0.237,0,0,0,0,0.233,0.525,0.525,0,0,0.198 +0,0.0495,0.0495,0,0,0.0667,0.117,0.258,0.465,0.465,0,0.481,0.216 +0.667,0.235,0.235,0,0,0.933,1,0.276,0.517,0.517,0,0.544,0.036 +0.333,0.143,0.143,0.267,0,0,0.917,0.27,0.499,0.499,0,0.567,0.252 +0.667,0.239,0.239,1,0,0,0,0.325,0.549,0.549,0,0.636,0.072 +0.667,0.252,0.252,0.9,0,0,0,0.411,0.582,0.582,0,0,0.216 +0.667,0.289,0.289,0,0,0,0,0.472,0.591,0.591,0,0,0.433 +0.667,0.362,0.362,0,0,0,0,0.497,0.566,0.566,0,0,0.779 +1,0.668,0.668,0,0,0,0,0.653,0.579,0.579,0,0,0.116 +1,0.542,0.542,0,0,0,0,0.509,0.525,0.525,0,0,0.176 +1,0.397,0.397,0,0,0,0,0.448,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.369 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.276 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.182 +0.333,0.0495,0.0495,0.933,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.278,0.278,1,0,0,0,0.228,0.511,0.511,0,0,0 +0.667,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0.072 +0.667,0.259,0.259,1,0,0,0,0.24,0.519,0.519,0.328,0,0.036 +0.667,0.251,0.251,0.65,0.967,0,0,0.234,0.528,0.528,0.709,0,0 +0.333,0.149,0.149,0,0.2,0,0,0.258,0.496,0.496,0.598,0,0.144 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0.207,0 +1,0.656,0.656,0,0,1,0.45,0.621,0.621,0.621,0,0.534,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0.461,0.146 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0.468,0.203 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0.214,0.471 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +1,0.164,0.164,0.683,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.259,0.259,0.483,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +1,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.036 +1,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.108 +1,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.036 +1,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0 +1,0.168,0.168,0,0,0,0,0.336,0.525,0.525,0,0,0.192 +1,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.036 +0.667,0.454,0.454,0.433,0,0,0,0.5,0.569,0.569,0,0,0.343 +0.667,0.554,0.554,1,0,0,0,0.525,0.544,0.544,0,0,0.144 +1,0.584,0.584,1,0,0,0,0.512,0.528,0.528,0,0,0.036 +1,0.391,0.391,1,0,0,0,0.45,0.486,0.486,0,0,0.288 +1,0.116,0.116,0.583,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0.317,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.0847 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.237 +0.667,0.278,0.278,0.267,0,0,0,0.228,0.511,0.511,0,0,0.337 +0.667,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0.305 +0.667,0.259,0.259,1,0,0,0,0.24,0.519,0.519,0,0,0.036 +0.333,0.15,0.15,1,0,0,0,0.246,0.496,0.496,0,0,0.144 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0.072 +0.333,0.149,0.149,0.317,0,0,0,0.268,0.492,0.492,0,0,0.144 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.072 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.236 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.072 +1,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.072 +1,0.554,0.554,0,0,0.0667,0.117,0.525,0.544,0.544,0,0.627,0.216 +1,0.584,0.584,0,0,0.933,0.8,0.512,0.528,0.528,0,0.388,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.036 +1,0.116,0.116,0.25,0,0,0,0.326,0.459,0.459,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.146 +1,0.0781,0.0781,1,0,0,0,0.283,0.447,0.447,0,0,0.232 +1,0.139,0.139,0.667,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.148 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0.181,0.036 +0.667,0.16,0.16,0,0,1,0.617,0.246,0.488,0.488,0,0.402,0.288 +0.667,0.154,0.154,0,0,0,0.767,0.249,0.492,0.492,0,0.613,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0.402,0.036 +0.333,0.149,0.149,0.767,0,0,0,0.258,0.496,0.496,0,0.506,0.072 +0.667,0.249,0.249,1,0,0,0,0.277,0.519,0.519,0,0.435,0.036 +1,0.351,0.351,1,0,0,0,0.297,0.571,0.571,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.327,0.552,0.552,0,0,0.036 +0.667,0.286,0.286,0.817,0,0,0,0.413,0.585,0.585,0,0,0.072 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.144 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.252 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.072 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.103 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.433 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.767,0,0,0,0.258,0.465,0.465,0,0,0.0585 +1,0.284,0.284,0.917,0,0,0,0.376,0.503,0.503,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.14 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.226 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.0167 +0.667,0.259,0.259,0.0167,0,0,0,0.24,0.519,0.519,0,0,0.072 +0.667,0.251,0.251,0.467,0,0,0,0.234,0.528,0.528,0,0,0.108 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.072 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.108 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.036 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.036 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.036 +1,0.501,0.501,0.767,0,0,0,0.584,0.658,0.658,0,0,0.144 +1,0.656,0.656,0.917,0,0,0,0.621,0.621,0.621,0,0.21,0.252 +1,0.806,0.806,0,0,1,0.367,0.658,0.583,0.583,0,0.273,0.036 +1,0.584,0.584,0,0,0,1,0.512,0.528,0.528,0,0,0.072 +1,0.22,0.22,0,0,0,1,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0.167,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.717,0,0,0,0.258,0.465,0.465,0,0,0.218 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.0561 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.13 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.18 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.252 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.276 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.252 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.108 +0,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0.268 +0.333,0.168,0.168,1,0,0,0,0.336,0.525,0.525,0,0,0.41 +0.667,0.351,0.351,1,0.05,0,0,0.475,0.594,0.594,0.297,0,0.036 +0.667,0.454,0.454,1,1,0,0,0.5,0.569,0.569,0.427,0,0 +1,0.806,0.806,1,0.117,0,0,0.658,0.583,0.583,0,0,0.036 +1,0.851,0.851,0.0667,0,0,0,0.639,0.559,0.559,0,0,0 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.072 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0503,0.0503,0.517,0,0,0,0.274,0.443,0.443,0,0,0.21 +1,0.0781,0.0781,1,0,0,0,0.283,0.447,0.447,0,0,0.192 +1,0.139,0.139,0.167,0,0,0,0.305,0.463,0.463,0,0,0.599 +1,0.402,0.402,0,0,0,0,0.436,0.521,0.521,0,0,0.328 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.271 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.277 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.275 +0.667,0.259,0.259,0,0.3,0,0,0.24,0.519,0.519,0.623,0,0.374 +0.667,0.251,0.251,0,0.867,0,0,0.234,0.528,0.528,0.291,0,0.269 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.036 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.036 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.29 +0.667,0.259,0.259,0.767,0,0,0,0.327,0.552,0.552,0,0,0.124 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0.0905 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0.036 +0.667,0.454,0.454,1,0,0,0,0.5,0.569,0.569,0,0,0.036 +1,0.806,0.806,0.817,0,0,0,0.658,0.583,0.583,0,0,0 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.108 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.072 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.103 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.395 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.141 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.196 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.361 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.194 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.232 +1,0.259,0.259,0.183,0,0,0,0.327,0.552,0.552,0,0,0.252 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0.105 +1,0.501,0.501,0.983,0,0,0,0.584,0.658,0.658,0.328,0,0.383 +1,0.656,0.656,0,0.467,0,0,0.621,0.621,0.621,0.318,0,0 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.288 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.304 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.288 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +1,0.0781,0.0781,0.683,0,0,0,0.283,0.447,0.447,0,0,0 +1,0.139,0.139,1,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.167,0.167,1,0,0,0,0.317,0.484,0.484,0,0,0.34 +1,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0.288 +0.333,0.164,0.164,0.9,0,0,0,0.243,0.488,0.488,0,0,0.265 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.258 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.491 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.144 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,0.683,0,0,0,0.413,0.585,0.585,0,0,0 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0.18 +1,0.656,0.656,0.683,0.217,0,0,0.621,0.621,0.621,0.534,0,0.216 +1,0.806,0.806,0.0333,0.95,0,0,0.658,0.583,0.583,0.741,0,0.072 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0.406,0,0.232 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.093 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.185 +1,0.167,0.167,0.517,0,0,0,0.317,0.484,0.484,0,0,0.036 +0.667,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.16,0.16,1,0.3,0,0,0.246,0.488,0.488,0.63,0.241,0.072 +0.667,0.259,0.259,1,0.867,1,0.217,0.24,0.519,0.519,0.14,0.248,0.252 +0.667,0.251,0.251,0.0667,0,0,0,0.234,0.528,0.528,0,0.421,0.144 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.278,0.036 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.592,0.108 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.18 +1,0.363,0.363,0.767,0,0,0,0.361,0.596,0.596,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0.211,0,0 +1,0.501,0.501,0.4,0.8,0,0,0.584,0.658,0.658,0.678,0,0.072 +1,0.656,0.656,0,0.367,0,0,0.621,0.621,0.621,0,0,0.036 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.036 +1,0.584,0.584,0,0.05,0,0,0.512,0.528,0.528,0.345,0,0.036 +1,0.22,0.22,0,1,0,0,0.354,0.476,0.476,0.318,0,0.108 +1,0.0495,0.0495,0,0.35,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0503,0.0503,0.2,0,0,0,0.274,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.203 +0.333,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.104 +0.667,0.164,0.164,1,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.24,0.519,0.519,0,0,0.216 +0.667,0.251,0.251,1,0,0,0,0.234,0.528,0.528,0,0,0.072 +0.667,0.249,0.249,0.567,0,0,0,0.259,0.528,0.528,0,0,0.18 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.144 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0.0167,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,0.7,0,0,0,0.413,0.585,0.585,0,0,0.072 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.18 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.432 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.108 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.193 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.225 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.216 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.483,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0.933,0,0,0,0.317,0.484,0.484,0.103,0.173,0 +1,0.168,0.168,0,0.8,1,0.367,0.277,0.488,0.488,0.496,0.522,0 +1,0.278,0.278,0,0.367,0,0.55,0.228,0.511,0.511,0,0.53,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0.474,0 +0.667,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0.373,0.144 +0.667,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.036 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.036 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.28,0.108 +0.667,0.251,0.251,0,0,1,0.617,0.284,0.536,0.536,0,0,0.108 +0.667,0.259,0.259,0.517,0,0,0.0667,0.327,0.552,0.552,0,0,0.252 +0.667,0.286,0.286,0.2,0,0,0,0.413,0.585,0.585,0,0,0.072 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.18 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.144 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.216 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.18 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0887 +1,0.0503,0.0503,0.0167,0,0,0,0.274,0.443,0.443,0,0,0.219 +1,0.0781,0.0781,0.467,0,0,0,0.283,0.447,0.447,0,0,0.0488 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.262 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.454 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0.383,0.17 +1,0.392,0.392,0,0,1,0.45,0.213,0.534,0.534,0,0.406,0.673 +1,0.381,0.381,0,0,0,0,0.222,0.534,0.534,0,0.629,0.171 +1,0.364,0.364,0,0,0,0,0.232,0.546,0.546,0,0.581,0.174 +1,0.352,0.352,0,0,0,0,0.222,0.559,0.559,0,0.316,0.036 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0.422,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0.231,0.036 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.072 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,0.767,0,0,0,0.413,0.585,0.585,0,0,0.108 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0.036 +0.333,0.252,0.252,1,0,0,0,0.379,0.517,0.517,0,0,0.216 +0.333,0.302,0.302,1,0,0,0,0.391,0.505,0.505,0,0,0 +0.333,0.317,0.317,0.817,0,0,0,0.385,0.496,0.496,0,0,0.175 +0.667,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.398 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.152 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.717,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.036 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.036 +0.667,0.251,0.251,0.0167,0,0,0,0.234,0.528,0.528,0,0,0.18 +0.667,0.249,0.249,1,0,0,0,0.259,0.528,0.528,0,0,0.18 +0.667,0.249,0.249,1,0,0,0,0.277,0.519,0.519,0,0,0.072 +0.667,0.251,0.251,0.15,0,0,0,0.284,0.536,0.536,0,0,0.216 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.432 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.108 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.036 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0.278 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0.223 +1,0.099,0.099,0,0,0,0,0.333,0.445,0.445,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.164,0.164,0.483,0,0,0,0.243,0.488,0.488,0,0,0 +0.667,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.036 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.216 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.072 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.379 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.216 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.351,0.351,0,0,0,0.0333,0.475,0.594,0.594,0,0.71,0 +1,0.656,0.656,0,0,1,0.883,0.621,0.621,0.621,0,0.539,0.108 +1,0.806,0.806,0.433,0,0,0,0.658,0.583,0.583,0,0.786,0 +1,0.851,0.851,0.05,0,0,0,0.639,0.559,0.559,0,0.7,0.036 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0.276,0.124 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0.518,0.175 +1,0.124,0.124,0,0,0,0,0.371,0.434,0.434,0,0.127,0.252 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.183,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.168,0.168,0.5,0,0,0,0.277,0.488,0.488,0,0,0.161 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.169 +0.333,0.16,0.16,0.433,0,0,0,0.246,0.488,0.488,0,0,0.119 +0.333,0.154,0.154,0.283,0,0,0,0.249,0.492,0.492,0,0,0.257 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.571 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.298 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.108 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.036 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.108 +1,0.404,0.404,0.433,0,0,0,0.491,0.646,0.646,0,0,0.252 +0.667,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0.18 +1,0.656,0.656,0.0167,0,0,0,0.621,0.621,0.621,0,0,0.072 +0.667,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.072 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.0534,0.21 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.294 +1,0.167,0.167,0.433,0,0,0,0.317,0.484,0.484,0,0,0.176 +1,0.404,0.404,0,0,0,0,0.315,0.534,0.534,0,0,0 +0.667,0.278,0.278,0,0.55,0.0667,0.117,0.228,0.511,0.511,0.753,0.716,0 +1,0.381,0.381,0,0.617,0.933,1,0.222,0.534,0.534,0.09,0.385,0.144 +1,0.364,0.364,0,0,0,0.0333,0.232,0.546,0.546,0,0.388,0.072 +1,0.352,0.352,0,0,0,0,0.222,0.559,0.559,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0.216 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.108 +0.667,0.251,0.251,0.0167,0,0,0,0.284,0.536,0.536,0,0,0.108 +1,0.363,0.363,0.467,0,0,0,0.361,0.596,0.596,0,0,0.036 +1,0.404,0.404,0,0,0,0,0.491,0.646,0.646,0,0,0.036 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.036 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.036 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.036 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.144 +1,0.22,0.22,0.517,0,0,0,0.354,0.476,0.476,0,0,0.072 +1,0.116,0.116,0.2,0,0,0,0.326,0.459,0.459,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.124 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.118 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.0887 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.151 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.127 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.203 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0.222,0.18 +0.333,0.164,0.164,0,0,1,0.867,0.243,0.488,0.488,0,0.639,0.108 +0.667,0.27,0.27,0,0,0,0.733,0.234,0.511,0.511,0,0.39,0.324 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0.243,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0.477,0.036 +0.333,0.149,0.149,0,0,1,0.683,0.268,0.492,0.492,0,0,0.072 +0.333,0.15,0.15,0,0,0.0667,0.117,0.271,0.501,0.501,0,0.509,0.108 +0.667,0.259,0.259,0.267,0,0.933,0.8,0.327,0.552,0.552,0.192,0.802,0.072 +1,0.404,0.404,1,0.8,0,0,0.491,0.646,0.646,0.688,0.0886,0 +1,0.501,0.501,1,0.367,0,0,0.584,0.658,0.658,0,0,0.036 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0,0.271 +1,0.806,0.806,1,0,0,0,0.658,0.583,0.583,0,0,0.194 +1,0.851,0.851,0.317,0,0,0,0.639,0.559,0.559,0,0,0.108 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.072 +1,0.183,0.183,0,0,0,0,0.395,0.453,0.453,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0.0655 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0.531 +1,0.139,0.139,0.933,0,0,0,0.305,0.463,0.463,0.134,0,0.234 +1,0.167,0.167,0,0.8,0,0,0.317,0.484,0.484,0.575,0,0.177 +0.667,0.286,0.286,0,0.6,0,0,0.296,0.511,0.511,0,0,0.0878 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.072 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.036 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.072 +1,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.18 +0.667,0.302,0.302,0,0,0,0,0.391,0.505,0.505,0,0,0.22 +1,0.317,0.317,0,0,0,0,0.385,0.496,0.496,0,0,0.18 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0.108 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.108 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.139,0.139,0.517,0,0,0,0.305,0.463,0.463,0,0,0.0536 +1,0.402,0.402,0.2,0,0,0,0.436,0.521,0.521,0,0,0.233 +0.667,0.286,0.286,0,0.05,0,0,0.296,0.511,0.511,0.456,0,0 +0.333,0.164,0.164,0,1,0,0,0.243,0.488,0.488,0.67,0,0 +0.333,0.16,0.16,0,0.117,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0.483,0,0,0,0.249,0.492,0.492,0,0,0.216 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.178 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.18 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.072 +0.667,0.251,0.251,0.517,0,0,0,0.284,0.536,0.536,0,0,0.187 +0.667,0.259,0.259,0.2,0,0,0,0.327,0.552,0.552,0,0,0.072 +0.667,0.286,0.286,0,0,0,0,0.413,0.585,0.585,0,0,0.072 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.216 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.432 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.072 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.468 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.25 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0 +0.667,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.167,0.167,1,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.168,0.168,1,0,0,0,0.277,0.488,0.488,0,0,0.277 +0.667,0.278,0.278,1,0,0,0,0.228,0.511,0.511,0,0,0.466 +0.667,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0.229 +0.667,0.259,0.259,0.0667,0,0,0,0.24,0.519,0.519,0,0,0.186 +0.667,0.251,0.251,0.0167,0,0,0,0.234,0.528,0.528,0,0,0.108 +0.333,0.149,0.149,1,0,0,0,0.258,0.496,0.496,0,0,0.036 +0.667,0.249,0.249,1,0,0,0,0.277,0.519,0.519,0,0,0.036 +0.667,0.251,0.251,1,0,0,0,0.284,0.536,0.536,0,0,0.139 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0,0.216 +1,0.404,0.404,0.567,0,0,0,0.491,0.646,0.646,0,0,0.036 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.108 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.108 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.426 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.223 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.511 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.072 +0.667,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.145 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.511 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.0542 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.144 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.036 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.17 +0.333,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.036 +0.667,0.168,0.168,0.683,0,0,0,0.336,0.525,0.525,0,0,0.072 +1,0.351,0.351,1,0,0,0,0.475,0.594,0.594,0,0,0.144 +1,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0 +1,0.554,0.554,0,0,0,0,0.525,0.544,0.544,0,0,0.357 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.397 +0.667,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0698 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.146 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.201 +0.667,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0 +0.333,0.16,0.16,0.183,0,0,0,0.246,0.488,0.488,0,0,0 +0,0.0495,0.0495,0.3,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0.036 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0 +0.333,0.15,0.15,0.433,0,0,0,0.271,0.501,0.501,0,0,0.108 +0.333,0.154,0.154,0.05,0,0,0.0333,0.292,0.509,0.509,0,0.336,0 +1,0.404,0.404,0,0,1,0.883,0.491,0.646,0.646,0,0.439,0.36 +1,0.501,0.501,0,0,0,0,0.584,0.658,0.658,0,0,0.072 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.108 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.466 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.144 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.517,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0781,0.0781,1,0,0,0,0.283,0.447,0.447,0,0,0.0921 +1,0.228,0.228,0.65,0,0,0,0.352,0.461,0.461,0,0,0.319 +1,0.284,0.284,0,0,0,0,0.376,0.503,0.503,0,0,0.132 +0.667,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.072 +0.667,0.278,0.278,0,0,0,0,0.228,0.511,0.511,0,0,0.351 +0.667,0.27,0.27,0,0,0,0,0.234,0.511,0.511,0,0,0.216 +0.667,0.259,0.259,0.767,0,0,0,0.24,0.519,0.519,0,0,0.252 +0.667,0.251,0.251,1,0,0,0,0.234,0.528,0.528,0,0,0.261 +0.667,0.249,0.249,1,0,0,0,0.259,0.528,0.528,0,0,0.144 +0.667,0.249,0.249,1,0,0,0,0.277,0.519,0.519,0,0,0.036 +0.667,0.251,0.251,0.817,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,0.517,0,0,0,0.327,0.552,0.552,0,0,0.036 +0.667,0.286,0.286,0.933,0,0,0,0.413,0.585,0.585,0,0,0 +0.667,0.351,0.351,0,0,0,0,0.475,0.594,0.594,0,0,0.072 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.397 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.036 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.108 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0668 +1,0.0495,0.0495,0,0,0,0,0.283,0.438,0.438,0,0,0.219 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.345,0 +1,0.0781,0.0781,0,0,1,0.867,0.283,0.447,0.447,0,0.114,0 +0.667,0.0495,0.0495,0.0167,0,0,1,0.258,0.465,0.465,0,0,0.16 +0.667,0.167,0.167,1,0,0,0.433,0.317,0.484,0.484,0,0,0.206 +0.667,0.286,0.286,1,0,0,0,0.296,0.511,0.511,0,0,0.25 +0.667,0.278,0.278,1,0,0,0,0.228,0.511,0.511,0,0,0.255 +0.667,0.27,0.27,1,0,0,0,0.234,0.511,0.511,0,0,0.31 +0.667,0.259,0.259,0.567,0,0,0,0.24,0.519,0.519,0,0,0.072 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.072 +0.667,0.149,0.149,0.767,0,0,0,0.268,0.492,0.492,0,0,0.036 +0.667,0.251,0.251,1,0,0,0,0.284,0.536,0.536,0,0,0 +0.667,0.259,0.259,1,0,0,0,0.327,0.552,0.552,0,0,0 +0.667,0.286,0.286,1,0,0,0,0.413,0.585,0.585,0,0,0.144 +1,0.501,0.501,0.817,0,0,0,0.584,0.658,0.658,0,0,0.389 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0,0,0.327 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.072 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.108 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.286,0.447,0.447,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.272 +1,0.139,0.139,0.7,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0.122 +1,0.278,0.278,0.267,0,0,0,0.228,0.511,0.511,0,0,0.2 +0.667,0.27,0.27,0.45,0,0,0,0.234,0.511,0.511,0,0,0 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.108 +0.667,0.251,0.251,0,0,0.0667,0.117,0.234,0.528,0.528,0,0.333,0.072 +0.667,0.249,0.249,0,0,0.933,1,0.259,0.528,0.528,0,0.684,0.18 +0.667,0.249,0.249,0,0,0,1,0.277,0.519,0.519,0,0.388,0 +0.667,0.251,0.251,0.767,0,0,0.183,0.284,0.536,0.536,0,0,0.181 +1,0.363,0.363,1,0,0,0,0.361,0.596,0.596,0,0,0.541 +1,0.404,0.404,1,0,0,0,0.491,0.646,0.646,0,0,0.164 +0.667,0.351,0.351,1,0.05,0,0,0.475,0.594,0.594,0.397,0,0.175 +1,0.656,0.656,0.817,1,0,0,0.621,0.621,0.621,0.644,0,0.443 +1,0.806,0.806,0,0.117,0,0,0.658,0.583,0.583,0,0,0.18 +1,0.584,0.584,0.517,0,0,0,0.512,0.528,0.528,0,0,0 +1,0.22,0.22,0.2,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.123 +1,0.0503,0.0503,0,0,0,0,0.274,0.443,0.443,0,0,0.111 +1,0.0781,0.0781,0,0,0,0,0.283,0.447,0.447,0,0,0.219 +1,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0.134 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0.522 +1,0.286,0.286,0,0,0,0,0.296,0.511,0.511,0,0,0.404 +1,0.392,0.392,0,0.55,0,0,0.213,0.534,0.534,0.747,0,0.036 +0.667,0.27,0.27,0,0.85,0,0,0.234,0.511,0.511,0.132,0,0.545 +0.667,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0.144 +0.667,0.249,0.249,0,0,0,0,0.259,0.528,0.528,0,0,0 +0.667,0.249,0.249,0,0,0,0,0.277,0.519,0.519,0,0,0.108 +0.667,0.251,0.251,0,0,0,0,0.284,0.536,0.536,0,0,0.216 +0.667,0.259,0.259,0,0,0,0,0.327,0.552,0.552,0,0,0.072 +0.333,0.168,0.168,0.517,0,0,0,0.336,0.525,0.525,0,0,0.036 +0.333,0.2,0.2,1,0,0,0,0.366,0.53,0.53,0,0,0.18 +0.667,0.454,0.454,0.167,0,0,0,0.5,0.569,0.569,0,0,0.036 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.148 +1,0.851,0.851,0,0,0,0,0.639,0.559,0.559,0,0,0.072 +1,0.22,0.22,0,0,0,0,0.354,0.476,0.476,0,0,0 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.295,0.455,0.455,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.286,0.443,0.443,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.29,0.42,0.42,0,0,0.0817 +1,0.107,0.107,0,0,0,0,0.308,0.428,0.428,0,0,0 +0.667,0.139,0.139,0,0,0,0,0.305,0.463,0.463,0,0,0 +0.667,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +0.333,0.164,0.164,0,0,0,0,0.243,0.488,0.488,0,0,0.036 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0.072 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0.0816,0.036 +0.333,0.149,0.149,0,0,1,0.367,0.258,0.496,0.496,0,0.533,0.036 +0.667,0.249,0.249,0,0,0,1,0.277,0.519,0.519,0,0.546,0.108 +1,0.351,0.351,0,0,0,0.933,0.297,0.571,0.571,0,0.409,0.216 +1,0.363,0.363,0,0,0,0,0.361,0.596,0.596,0,0,0.072 +1,0.404,0.404,0,0.3,0,0,0.491,0.646,0.646,0.439,0,0.144 +1,0.501,0.501,0,0.867,0,0,0.584,0.658,0.658,0.762,0,0 +1,0.656,0.656,0,0,0,0,0.621,0.621,0.621,0.27,0,0.072 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.216 +1,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.499 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.167,0.167,0,0,0,0,0.317,0.484,0.484,0,0,0 +1,0.168,0.168,0,0,0,0,0.277,0.488,0.488,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.108 +0.333,0.154,0.154,0,0,0,0,0.249,0.492,0.492,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.246,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.288 +0.667,0.251,0.251,0.433,0,0,0,0.284,0.536,0.536,0,0,0.252 +0.667,0.259,0.259,1,0,0,0,0.327,0.552,0.552,0,0,0.036 +0.333,0.168,0.168,0.0167,0,0,0,0.336,0.525,0.525,0,0,0.252 +0.333,0.2,0.2,0,0,0,0,0.366,0.53,0.53,0,0,0.036 +0.667,0.454,0.454,0,0,0,0,0.5,0.569,0.569,0,0,0.0765 +1,0.806,0.806,0,0,0,0,0.658,0.583,0.583,0,0,0.56 +0.667,0.584,0.584,0,0,0,0,0.512,0.528,0.528,0,0,0.268 +1,0.391,0.391,0,0,0,0,0.45,0.486,0.486,0,0,0.0698 +1,0.116,0.116,0,0,0,0,0.326,0.459,0.459,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.133 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.408 +1,0.16,0.16,0,0,0,0,0.246,0.488,0.488,0,0,0.169 +1,0.259,0.259,0,0,0,0,0.24,0.519,0.519,0,0,0.223 +0.667,0.251,0.251,0,0,0,0,0.234,0.528,0.528,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.258,0.496,0.496,0,0,0.108 +0.333,0.149,0.149,0,0,0,0,0.268,0.492,0.492,0,0,0.321 +0.333,0.15,0.15,0,0,0,0,0.271,0.501,0.501,0,0,0.508 +0.667,0.154,0.154,0,0,0,0,0.292,0.509,0.509,0,0,0.188 +0.667,0.286,0.286,0.683,0,0,0,0.413,0.585,0.585,0,0,0.188 +1,0.501,0.501,1,0,0,0,0.584,0.658,0.658,0,0,0.292 +1,0.656,0.656,1,0,0,0,0.621,0.621,0.621,0,0.203,0.254 +1,0.806,0.806,1,0,1,0.217,0.658,0.583,0.583,0,0.376,0.036 +1,0.851,0.851,0.9,0,0,0,0.639,0.559,0.559,0,0.532,0.036 +1,0.561,0.561,0,0,0,0,0.547,0.497,0.497,0,0.097,0.093 +1,0.249,0.249,0,0,0,0,0.463,0.447,0.447,0,0,0.072 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.072 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.124 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.159 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.46 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0.0533 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.14 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0.219,0.108 +0.667,0.291,0.291,0,0,0.933,0.883,0.263,0.581,0.581,0,0.398,0.036 +0.667,0.279,0.279,0.517,0,0,1,0.271,0.591,0.591,0,0.271,0.036 +0.667,0.271,0.271,0.983,0,0,0.5,0.263,0.601,0.601,0,0,0.288 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.108 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.108 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +1,0.417,0.417,0.517,0,0,0,0.433,0.713,0.713,0,0,0 +0.667,0.35,0.35,1,0.05,0,0,0.478,0.67,0.67,0.406,0,0.288 +0.667,0.453,0.453,0.733,1,0,0,0.552,0.68,0.68,0.272,0,0.252 +1,0.829,0.829,0,0.717,0,0,0.743,0.743,0.743,0.716,0,0.144 +1,0.905,0.905,0,0.667,0,0,0.788,0.698,0.698,0.791,0,0.36 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0.103,0,0.072 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0393 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.132 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.107 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.119 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.236 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0.398,0.232 +0.667,0.279,0.279,0,0,0.933,0.233,0.271,0.591,0.591,0,0.622,0.203 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0.847,0.294 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0.64,0.108 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.267,0.036 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0.53,0 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0.508,0.216 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.144 +0.333,0.251,0.251,0,0,0,0,0.405,0.573,0.573,0,0,0.072 +0.667,0.569,0.569,0,0.55,0,0,0.581,0.65,0.65,0.577,0,0.036 +0.667,0.62,0.62,0,0.667,0,0,0.611,0.621,0.621,0,0,0.43 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.22 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.144 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.151 +1,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0.144 +1,0.417,0.417,1,0,0,0,0.521,0.624,0.624,0,0,0.251 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0 +0.667,0.299,0.299,1,0,0,0,0.256,0.581,0.581,0,0,0.036 +0.667,0.291,0.291,0.5,0,0,0,0.263,0.581,0.581,0,0,0.288 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.072 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.0893 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.248 +0.667,0.274,0.274,0.767,0,0,0,0.323,0.611,0.611,0,0,0.28 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0 +1,0.501,0.501,1,0,0,0,0.588,0.773,0.773,0,0,0.036 +1,0.655,0.655,1,0,0,0,0.699,0.788,0.788,0,0,0.216 +1,0.829,0.829,1,0,0,0,0.743,0.743,0.743,0,0,0.216 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.233,0 +1,0.821,0.821,0,0,0.933,0.883,0.765,0.669,0.669,0,0.45,0.072 +1,0.356,0.356,0,0,0,0.3,0.522,0.551,0.551,0,0.461,0.036 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0.551,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0.0366,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.201 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.266 +1,0.172,0.172,1,0,0,0,0.346,0.518,0.518,0,0,0.1 +1,0.301,0.301,0.733,0,0,0,0.337,0.581,0.581,0,0,0.0969 +0.667,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.232 +0.667,0.17,0.17,0.267,0,0,0,0.261,0.523,0.523,0,0,0.089 +0.667,0.279,0.279,0.483,0.05,0,0,0.271,0.591,0.591,0.461,0,0 +0.667,0.271,0.271,0,1,0,0,0.263,0.601,0.601,0.673,0,0.272 +0.667,0.269,0.269,0,0.417,0,0,0.293,0.601,0.601,0.305,0,0.308 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.408 +0.667,0.274,0.274,0.767,0,0,0,0.323,0.611,0.611,0,0,0.215 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0.036 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0.216 +0.667,0.453,0.453,1,0,0,0,0.552,0.68,0.68,0,0,0.108 +0.667,0.569,0.569,1,0,0,0,0.581,0.65,0.65,0,0,0.324 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.072 +0.667,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.363 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.126 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.112 +1,0.099,0.099,0,0,0,0,0.382,0.502,0.502,0,0,0.694 +1,0.066,0.066,0,0,0,0,0.36,0.482,0.482,0,0,0.147 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.176 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.446 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.108 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.32 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.252 +0.333,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.144 +0.667,0.279,0.279,1,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0.983,0,0,0,0.263,0.601,0.601,0,0,0.072 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.036 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.036 +0.333,0.2,0.2,0.517,0,0,0,0.368,0.568,0.568,0,0,0.108 +0.667,0.453,0.453,0.983,0,0,0,0.552,0.68,0.68,0,0,0.324 +0.667,0.569,0.569,0,0.05,0,0,0.581,0.65,0.65,0.383,0,0.144 +0.667,0.62,0.62,0,1,0,0,0.611,0.621,0.621,0.732,0,0.072 +0.667,0.564,0.564,0,0.167,0,0,0.596,0.601,0.601,0,0,0.072 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.036 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.108 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.149 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.228 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.135 +0.667,0.299,0.299,0,0.55,0,0,0.256,0.581,0.581,0.579,0,0.349 +0.667,0.291,0.291,0,0.917,0,0,0.263,0.581,0.581,0,0,0.295 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.607 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.509 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.122 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0.259,0.108 +0.333,0.162,0.162,0,0,0.933,0.633,0.29,0.538,0.538,0,0.571,0.252 +0.667,0.294,0.294,0,0,0,0.317,0.374,0.631,0.631,0,0,0.252 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.108 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.252 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.438 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.167,0.516 +0.667,0.203,0.203,0,0,0.933,0.633,0.39,0.508,0.508,0,0.252,0 +0.667,0.0495,0.0495,0,0,0,0.317,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.211 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0.115 +1,0.0495,0.0495,0,0,0,0,0.305,0.464,0.464,0,0,0.367 +1,0.0506,0.0506,0.0167,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0.733,0,0,0,0.305,0.474,0.474,0,0,0.036 +1,0.143,0.143,0,0,0.0667,0.133,0.331,0.493,0.493,0,0.19,0.036 +0.667,0.172,0.172,0,0,0.867,0.333,0.346,0.518,0.518,0,0.444,0.036 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0.506,0.18 +0.667,0.174,0.174,0.267,0,0,0,0.257,0.523,0.523,0,0.153,0 +0.667,0.291,0.291,0.233,0,0,0,0.263,0.581,0.581,0,0,0.072 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.072 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.036 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.457,0.036 +0.333,0.162,0.162,0,0,0.933,0.7,0.29,0.538,0.538,0,0.374,0.036 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0.113 +1,0.501,0.501,0.767,0,0,0,0.588,0.773,0.773,0,0,0.036 +1,0.655,0.655,1,0,0,0,0.699,0.788,0.788,0,0,0.036 +1,0.829,0.829,0.483,0,0,0,0.743,0.743,0.743,0,0,0.036 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.036 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.036 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.34 +1,0.143,0.143,0.267,0,0,0,0.331,0.493,0.493,0,0,0.135 +1,0.172,0.172,1,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.175,0.175,0.983,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.036 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.036 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.072 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.036 +0.333,0.159,0.159,0.517,0,0,0,0.286,0.528,0.528,0,0,0.072 +0.667,0.274,0.274,1,0,0,0,0.323,0.611,0.611,0,0,0.999 +1,0.417,0.417,0.733,0,0,0,0.433,0.713,0.713,0,0,0.216 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.072 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.144 +1,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.144 +1,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.36 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0875 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.239 +0.667,0.175,0.175,0.267,0,0,0,0.298,0.523,0.523,0,0,0.036 +0.333,0.174,0.174,0.483,0,0,0,0.257,0.523,0.523,0,0,0.072 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.144 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.144 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.18 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.108 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.0951 +1,0.417,0.417,0,0,0,0,0.433,0.713,0.713,0,0,0.036 +1,0.501,0.501,0.267,0,0,0,0.588,0.773,0.773,0.115,0,0 +1,0.655,0.655,1,0.8,0,0,0.699,0.788,0.788,0.789,0,0.036 +1,0.829,0.829,1,0.417,0,0,0.743,0.743,0.743,0.626,0,0.18 +1,0.62,0.62,1,0,0,0,0.611,0.621,0.621,0.847,0,0.036 +1,0.564,0.564,1,0,0,0,0.596,0.601,0.601,0.243,0,0.108 +1,0.356,0.356,0.5,0,0,0,0.522,0.551,0.551,0,0,0.473 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0.129 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0649 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.115 +1,0.172,0.172,0.267,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.175,0.175,1,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.299,0.299,0.983,0,0,0,0.256,0.581,0.581,0,0.195,0 +0.667,0.291,0.291,0,0,0.933,0.467,0.263,0.581,0.581,0,0.442,0.036 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0.539,0.18 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.036 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.144 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.144 +0.667,0.294,0.294,0.0167,0,0,0,0.374,0.631,0.631,0,0,0.216 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0.072 +1,0.655,0.655,1,0,0,0,0.699,0.788,0.788,0,0,0.144 +1,0.829,0.829,1,0,0,0,0.743,0.743,0.743,0,0,0.108 +1,0.905,0.905,1,0,0,0,0.788,0.698,0.698,0,0,0.216 +1,0.564,0.564,0.75,0,0,0,0.596,0.601,0.601,0,0,0.108 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0924 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.0722 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.072 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.036 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.288 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0.252 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.108 +1,0.501,0.501,0.767,0.3,0,0,0.588,0.773,0.773,0.4,0,0.18 +1,0.655,0.655,1,0.917,0,0,0.699,0.788,0.788,0.653,0,0.036 +1,0.829,0.829,0.483,0,0,0,0.743,0.743,0.743,0,0,0.072 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.456 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.217 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.18 +1,0.116,0.116,0,0.05,0,0,0.357,0.489,0.489,0.435,0,0.036 +1,0.0495,0.0495,0,1,0,0,0.258,0.465,0.465,0.134,0,0.036 +1,0.0495,0.0495,0,0.167,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0798,0.0798,1,0,0,0,0.305,0.474,0.474,0,0,0.0789 +0.333,0.143,0.143,0.233,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.072 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.108 +0.667,0.269,0.269,0.267,0,0,0,0.293,0.601,0.601,0,0,0.108 +0.667,0.269,0.269,0.233,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.324 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.443 +1,0.655,0.655,0,0.05,0,0,0.699,0.788,0.788,0.391,0,0 +1,0.829,0.829,0,0.933,0,0,0.743,0.743,0.743,0.448,0,0.18 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.036 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.072 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.128 +1,0.172,0.172,0.767,0,0,0,0.346,0.518,0.518,0,0,0.143 +1,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0.485,0 +1,0.299,0.299,1,0,0.933,0.883,0.256,0.581,0.581,0,0.47,0.0774 +0.667,0.17,0.17,1,0,0,0.533,0.261,0.523,0.523,0,0.333,0 +0.667,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0.726,0 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0.284,0.036 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0.036 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +0.333,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0,0 +0.333,0.2,0.2,0.267,0,0,0,0.368,0.568,0.568,0,0,0.036 +1,0.655,0.655,1,0.05,0,0,0.699,0.788,0.788,0.439,0,0 +1,0.829,0.829,1,1,0,0,0.743,0.743,0.743,0.14,0,0.246 +1,0.905,0.905,1,0.167,0,0,0.788,0.698,0.698,0,0,0.144 +0.667,0.564,0.564,1,0,0,0,0.596,0.601,0.601,0,0,0.18 +0.667,0.356,0.356,0.5,0,0,0,0.522,0.551,0.551,0,0,0.036 +1,0.249,0.249,0,0,0,0,0.555,0.535,0.535,0,0,0.144 +0.667,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.252 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.309,0.469,0.469,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.275 +1,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0.355 +1,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.0714 +1,0.411,0.411,0.267,0.55,0,0,0.266,0.639,0.639,0.582,0,0 +0.667,0.279,0.279,1,0.917,0,0,0.271,0.591,0.591,0,0,0.036 +0.667,0.271,0.271,0.983,0,0,0,0.263,0.601,0.601,0,0,0.036 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.036 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.108 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.108 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.371 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0.229 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.072 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.424 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.227 +1,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0.0349 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.17,0.17,0.0167,0,0,0,0.261,0.523,0.523,0,0,0 +0.667,0.279,0.279,1,0,0,0,0.271,0.591,0.591,0,0,0.036 +0.333,0.16,0.16,1,0,0,0,0.261,0.533,0.533,0,0,0 +0.667,0.269,0.269,1,0,0,0,0.293,0.601,0.601,0,0,0 +0.333,0.159,0.159,1,0,0,0,0.286,0.528,0.528,0,0,0.144 +0.333,0.162,0.162,0.75,0,0,0,0.29,0.538,0.538,0,0,0.072 +0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.2,0.2,1,0,0,0,0.368,0.568,0.568,0,0,0.108 +0.333,0.251,0.251,1,0,0,0,0.405,0.573,0.573,0,0,0.216 +0.333,0.309,0.309,1,0,0,0,0.42,0.558,0.558,0,0,0.199 +0.667,0.62,0.62,1,0,0,0,0.611,0.621,0.621,0,0,0.357 +1,0.564,0.564,0.5,0,0,0,0.596,0.601,0.601,0,0,0.216 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,1,0,0,0,0.294,0.469,0.469,0,0,0.348 +1,0.0798,0.0798,1,0,0,0,0.305,0.474,0.474,0,0,0.126 +1,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0.0701 +1,0.295,0.295,1,0.3,0,0,0.433,0.571,0.571,0.764,0,0.036 +0.667,0.175,0.175,0.5,1,0,0,0.298,0.523,0.523,0.76,0,0.072 +0.667,0.299,0.299,0,0.167,0,0,0.256,0.581,0.581,0.567,0,0.072 +0.333,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0.593,0,0.224 +1,0.394,0.394,0.767,0,0,0,0.277,0.654,0.654,0.787,0.291,0.144 +1,0.382,0.382,1,0,0.933,0.7,0.266,0.669,0.669,0,0.689,0 +1,0.378,0.378,0.483,0,0,0,0.311,0.669,0.669,0,0.449,0 +1,0.379,0.379,0,0,0,0,0.344,0.654,0.654,0,0,0.454 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.554 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.339 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.508 +1,0.655,0.655,0,0.05,0,0,0.699,0.788,0.788,0.469,0.198,0.257 +1,0.829,0.829,0.517,1,0.933,0.383,0.743,0.743,0.743,0.554,0.391,0.664 +1,0.62,0.62,1,0.167,0,0.8,0.611,0.621,0.621,0,0,0.162 +1,0.564,0.564,0.233,0,0,0,0.596,0.601,0.601,0,0,0 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.292 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0506 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.125 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.175,0.175,0,0.55,0,0,0.298,0.523,0.523,0.726,0,0.144 +0.667,0.174,0.174,0.0167,0.917,0,0,0.257,0.523,0.523,0.607,0,0 +0.667,0.17,0.17,1,0,0,0,0.261,0.523,0.523,0.305,0,0.036 +0.667,0.164,0.164,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.601,0.601,0,0,0.072 +0.667,0.269,0.269,1,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0.75,0,0,0,0.315,0.591,0.591,0,0,0 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.036 +0.667,0.294,0.294,0.767,0,0,0,0.374,0.631,0.631,0,0,0.144 +1,0.501,0.501,0.983,0,0,0,0.588,0.773,0.773,0,0,0.18 +1,0.655,0.655,0.267,0,0,0,0.699,0.788,0.788,0,0,0.252 +1,0.569,0.569,1,0,0,0,0.581,0.65,0.65,0,0,0.18 +1,0.62,0.62,0.983,0.05,0,0,0.611,0.621,0.621,0.358,0,0.072 +1,0.564,0.564,0,1,0,0,0.596,0.601,0.601,0.762,0,0.406 +1,0.203,0.203,0,0.167,0,0,0.39,0.508,0.508,0.251,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.143,0.143,1,0,0,0,0.331,0.493,0.493,0,0,0.363 +1,0.172,0.172,0.483,0,0,0,0.346,0.518,0.518,0,0,0.116 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.205 +1,0.299,0.299,0.267,0,0,0,0.256,0.581,0.581,0,0,0 +0.667,0.291,0.291,1,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,1,0,0,0,0.271,0.591,0.591,0,0,0.18 +0.667,0.271,0.271,1,0,0,0,0.263,0.601,0.601,0,0,0 +0.333,0.159,0.159,1,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.162,0.162,0.267,0,0,0,0.29,0.538,0.538,0,0,0.216 +0.667,0.294,0.294,1,0,0,0,0.374,0.631,0.631,0,0,0.072 +0.667,0.35,0.35,0.233,0,0,0,0.478,0.67,0.67,0,0,0.072 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.108 +0.667,0.569,0.569,0,0,0,0,0.581,0.65,0.65,0,0,0.252 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.036 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.036 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.341 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.121 +0.667,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.146,0,0 +0.667,0.301,0.301,0,0.8,0,0,0.337,0.581,0.581,0.667,0,0 +0.667,0.299,0.299,0,0.417,0,0,0.256,0.581,0.581,0,0,0.072 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.036 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.072 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.072 +0.667,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0.347,0.144 +0.667,0.2,0.2,0,0,0.933,0.467,0.368,0.568,0.568,0,0.45,0.216 +0.667,0.453,0.453,0,0.05,0,0,0.552,0.68,0.68,0.409,0.345,0.036 +1,0.829,0.829,0,1,0,0,0.743,0.743,0.743,0.633,0,0 +0.667,0.62,0.62,0,0.417,0,0,0.611,0.621,0.621,0,0,0.036 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.036 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.108 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.288 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.282 +0.667,0.175,0.175,0.517,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.174,0.174,0.983,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.116 +0.667,0.279,0.279,0,0,0.0667,0.133,0.271,0.591,0.591,0,0.437,0 +1,0.271,0.271,0,0,0.867,0.333,0.263,0.601,0.601,0,0.377,0 +1,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0.693,0.072 +0.667,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.108 +1,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.144 +1,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +1,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0,0.18 +1,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.396 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.072 +0.667,0.62,0.62,0,0,0,0,0.611,0.621,0.621,0,0,0.212 +0.667,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0.174,0.182 +0.667,0.356,0.356,0,0,0.933,0.383,0.522,0.551,0.551,0,0.245,0.333 +0.667,0.183,0.183,0,0,0,1,0.456,0.512,0.512,0,0,0.036 +0.667,0.0495,0.0495,0,0,0,1,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.175,0.175,1,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.174,0.174,0.233,0,0,0,0.257,0.523,0.523,0,0,0.269 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0799 +0.333,0.164,0.164,0.267,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,1,0,0,0,0.261,0.533,0.533,0,0,0.288 +0.333,0.159,0.159,1,0,0,0,0.275,0.533,0.533,0,0,0.144 +0.333,0.159,0.159,1,0,0,0,0.286,0.528,0.528,0,0,0.036 +0.333,0.162,0.162,1,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.294,0.294,0.5,0,0,0,0.374,0.631,0.631,0,0,0.036 +0.667,0.2,0.2,0,0,0,0,0.368,0.568,0.568,0,0,0.072 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.036 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.268 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0.381 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.072 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.108 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.137 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0.186,0.036 +0.333,0.17,0.17,0,0,0.933,0.383,0.261,0.523,0.523,0,0.525,0.216 +0.333,0.164,0.164,0,0,0,0.317,0.264,0.528,0.528,0,0.105,0.036 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.162,0.162,1,0,0,0,0.29,0.538,0.538,0,0,0.036 +1,0.417,0.417,0.733,0,0,0,0.433,0.713,0.713,0,0,0 +1,0.501,0.501,0,0,0,0,0.588,0.773,0.773,0,0,0 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0.342,0.036 +1,0.829,0.829,0,0,0.933,0.633,0.743,0.743,0.743,0,0,0.18 +1,0.905,0.905,0,0,0,0.0667,0.788,0.698,0.698,0,0,0.324 +1,0.564,0.564,0,0,0,0,0.596,0.601,0.601,0,0,0.324 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.036 +1,0.183,0.183,0,0,0,0,0.456,0.512,0.512,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0.234 +1,0.0798,0.0798,0.0167,0,0,0,0.305,0.474,0.474,0,0,0.164 +1,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0.173 +1,0.417,0.417,1,0,0,0,0.521,0.624,0.624,0,0,0.0936 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0.599 +0.667,0.299,0.299,1,0,0,0,0.256,0.581,0.581,0,0,0.221 +0.333,0.17,0.17,0.75,0,0,0,0.261,0.523,0.523,0,0,0.072 +0.667,0.279,0.279,0,0,0,0,0.271,0.591,0.591,0,0,0.216 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.036 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0.036 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.329 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.29 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0 +0.667,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0.118,0.036 +0.667,0.453,0.453,0,0,0.933,0.383,0.552,0.68,0.68,0,0.195,0 +1,0.829,0.829,0.267,0,0,0.317,0.743,0.743,0.743,0,0,0.19 +1,0.905,0.905,1,0,0,0,0.788,0.698,0.698,0,0,0.116 +1,0.564,0.564,0.983,0,0,0,0.596,0.601,0.601,0,0,0.18 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0 +1,0.417,0.417,0,0,0,0,0.521,0.624,0.624,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.072 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.252 +0.667,0.291,0.291,0,0.3,0,0,0.263,0.581,0.581,0.736,0,0.036 +0.333,0.164,0.164,0,0.683,0,0,0.264,0.528,0.528,0.255,0,0.072 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.324 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.036 +0.667,0.274,0.274,0,0,0,0,0.323,0.611,0.611,0,0,0.036 +0.667,0.294,0.294,0.0167,0,0,0,0.374,0.631,0.631,0,0,0.036 +1,0.501,0.501,0.483,0,0,0,0.588,0.773,0.773,0,0,0.036 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0,0.072 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.162 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.119 +1,0.51,0.51,0,0,0,0,0.654,0.594,0.594,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.29,0 +1,0.0798,0.0798,0,0,0.933,0.7,0.305,0.474,0.474,0,0.717,0 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0.714,0 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0.364,0.185 +1,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.192 +1,0.174,0.174,0,0,0,0,0.257,0.523,0.523,0,0,0.361 +1,0.17,0.17,0,0,0,0,0.261,0.523,0.523,0,0,0.252 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.468 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.667,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0.323,0 +0.667,0.274,0.274,0,0,0.933,0.883,0.323,0.611,0.611,0,0.308,0 +0.667,0.294,0.294,0,0,0,1,0.374,0.631,0.631,0,0,0.299 +0.667,0.35,0.35,0.267,0,0,0.25,0.478,0.67,0.67,0,0,0.18 +1,0.655,0.655,0.5,0,0,0,0.699,0.788,0.788,0,0,0.0863 +1,0.829,0.829,1,0,0,0,0.743,0.743,0.743,0,0,0.234 +0.667,0.62,0.62,1,0,0,0,0.611,0.621,0.621,0,0,0 +1,0.821,0.821,1,0,0,0,0.765,0.669,0.669,0,0,0.108 +1,0.203,0.203,1,0,0,0,0.39,0.508,0.508,0,0,0.072 +1,0.0495,0.0495,0.5,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.221 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.104 +1,0.143,0.143,0,0,0,0,0.331,0.493,0.493,0,0,0.061 +0.667,0.172,0.172,0,0,0,0,0.346,0.518,0.518,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.337,0.581,0.581,0,0,0.18 +0.667,0.299,0.299,0.767,0,0,0,0.256,0.581,0.581,0,0,0.144 +0.667,0.291,0.291,1,0,0,0,0.263,0.581,0.581,0,0,0.216 +0.667,0.279,0.279,0.483,0,0,0,0.271,0.591,0.591,0,0,0.072 +0.667,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.108 +0.667,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0.104,0.216 +0.667,0.159,0.159,0,0,0.933,0.633,0.286,0.528,0.528,0,0.435,0.252 +0.667,0.162,0.162,0,0,0,0.55,0.29,0.538,0.538,0,0.745,0 +0.667,0.172,0.172,0,0,0,0,0.316,0.548,0.548,0,0.502,0.036 +1,0.35,0.35,0,0,0,0,0.478,0.67,0.67,0,0.684,0.159 +1,0.655,0.655,0,0,0,0,0.699,0.788,0.788,0,0.422,0.404 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0.66,0.223 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0.316,0.036 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0,0,0.0805 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.155 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.108 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0 +0.667,0.279,0.279,0.767,0,0,0,0.271,0.591,0.591,0,0,0 +0.667,0.271,0.271,1,0,0,0,0.263,0.601,0.601,0,0,0.072 +0.333,0.159,0.159,0.483,0,0,0,0.275,0.533,0.533,0,0,0.201 +0.667,0.269,0.269,0,0.05,0,0,0.315,0.591,0.591,0.401,0,0 +0.667,0.274,0.274,0,1,0,0,0.323,0.611,0.611,0.616,0,0 +0.667,0.294,0.294,0,0.417,0,0,0.374,0.631,0.631,0.803,0,0.252 +1,0.501,0.501,0.267,0,0,0,0.588,0.773,0.773,0.502,0,0.144 +1,0.655,0.655,1,0,0,0,0.699,0.788,0.788,0.985,0.191,0.144 +1,0.829,0.829,0.983,0,0.933,0.383,0.743,0.743,0.743,0.628,0.84,0.072 +1,0.905,0.905,0,0,0,1,0.788,0.698,0.698,0.693,0.518,0 +1,0.821,0.821,0,0,0,0.0333,0.765,0.669,0.669,0.18,0,0.273 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.208 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.193 +1,0.0743,0.0743,0,0,0,0,0.32,0.484,0.484,0,0,0.119 +1,0.0578,0.0578,0,0,0,0,0.309,0.474,0.474,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.115 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.177 +1,0.301,0.301,0.267,0,0,0,0.337,0.581,0.581,0,0,0 +0.333,0.174,0.174,1,0,0,0,0.257,0.523,0.523,0,0,0 +0.333,0.17,0.17,0.483,0,0,0,0.261,0.523,0.523,0,0,0 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.072 +0.667,0.269,0.269,0.517,0,0,0,0.293,0.601,0.601,0,0,0.144 +0.667,0.269,0.269,1,0,0,0,0.315,0.591,0.591,0,0,0.072 +0.667,0.162,0.162,1,0,0,0,0.29,0.538,0.538,0,0,0.216 +0.667,0.172,0.172,1,0,0,0,0.316,0.548,0.548,0,0,0 +1,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0.144 +0.667,0.251,0.251,0.25,0,0,0,0.405,0.573,0.573,0,0,0.108 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.072 +1,0.905,0.905,0,0,0.0667,0.133,0.788,0.698,0.698,0,0.586,0.18 +1,0.564,0.564,0,0,0.867,0.333,0.596,0.601,0.601,0,0.321,0.396 +1,0.356,0.356,0,0,0,0,0.522,0.551,0.551,0,0,0.221 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0506,0.0506,0,0,0,0,0.294,0.469,0.469,0,0,0 +1,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0.184 +1,0.236,0.236,1,0,0,0,0.404,0.522,0.522,0,0,0.0969 +1,0.295,0.295,1,0.05,0,0,0.433,0.571,0.571,0.376,0,0.216 +1,0.301,0.301,1,1,0,0,0.337,0.581,0.581,0.627,0,0.167 +1,0.299,0.299,1,0.417,0,0,0.256,0.581,0.581,0,0,0.144 +0.667,0.17,0.17,0.75,0,0,0,0.261,0.523,0.523,0,0,0.072 +0.333,0.164,0.164,0.5,0,0,0,0.264,0.528,0.528,0,0,0.036 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.036 +0.667,0.269,0.269,0,0,0,0,0.293,0.601,0.601,0,0,0 +1,0.269,0.269,0,0,0,0,0.315,0.591,0.591,0,0,0.144 +1,0.387,0.387,0.267,0,0,0,0.355,0.684,0.684,0,0,0.072 +1,0.417,0.417,1,0,0,0,0.433,0.713,0.713,0,0,0.108 +0.667,0.35,0.35,1,0,0,0,0.478,0.67,0.67,0,0,0.036 +0.667,0.251,0.251,1,0,0,0,0.405,0.573,0.573,0.174,0,0.209 +1,0.569,0.569,1,0.8,0,0,0.581,0.65,0.65,0.584,0,0.338 +1,0.62,0.62,0.5,0.667,0,0,0.611,0.621,0.621,0.946,0,0.072 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0.155,0,0.169 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.22 +1,0.0798,0.0798,0,0,0,0,0.305,0.474,0.474,0,0,0.419 +1,0.236,0.236,0,0,0,0,0.404,0.522,0.522,0,0,0.0786 +0.667,0.0495,0.0495,0.767,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.301,0.301,1,0,0,0,0.337,0.581,0.581,0,0,0.036 +0.667,0.299,0.299,1,0,0,0,0.256,0.581,0.581,0,0,0.036 +0.667,0.291,0.291,1,0,0,0,0.263,0.581,0.581,0,0,0.18 +0.667,0.279,0.279,1,0,0,0,0.271,0.591,0.591,0,0,0.216 +0.333,0.16,0.16,0,0,0,0,0.261,0.533,0.533,0,0,0.036 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.159,0.159,0.267,0,0,0,0.286,0.528,0.528,0,0,0.072 +0.333,0.162,0.162,1,0,0,0,0.29,0.538,0.538,0,0,0.036 +0.667,0.294,0.294,0.233,0,0,0,0.374,0.631,0.631,0,0,0.036 +0.667,0.35,0.35,0.5,0,0,0,0.478,0.67,0.67,0,0,0.036 +0.667,0.453,0.453,0,0,0,0,0.552,0.68,0.68,0,0,0.108 +1,0.829,0.829,0,0,0,0,0.743,0.743,0.743,0,0,0.036 +1,0.905,0.905,0,0,0,0,0.788,0.698,0.698,0,0,0 +1,0.307,0.307,0,0,0,0,0.427,0.533,0.533,0,0,0.036 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.348 +1,0.295,0.295,0,0,0,0,0.433,0.571,0.571,0,0,0.288 +0.667,0.175,0.175,0,0,0,0,0.298,0.523,0.523,0,0,0 +0.667,0.299,0.299,0,0,0,0,0.256,0.581,0.581,0,0,0.235 +0.667,0.291,0.291,0,0,0,0,0.263,0.581,0.581,0,0,0.0543 +0.333,0.164,0.164,0,0,0,0,0.264,0.528,0.528,0,0,0.072 +0.667,0.271,0.271,0,0,0,0,0.263,0.601,0.601,0,0,0.108 +0.333,0.159,0.159,0,0,0,0,0.275,0.533,0.533,0,0,0 +0.333,0.159,0.159,0,0,0,0,0.286,0.528,0.528,0,0,0.108 +0.333,0.162,0.162,0,0,0,0,0.29,0.538,0.538,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.374,0.631,0.631,0,0,0.072 +1,0.501,0.501,0.267,0.05,0,0,0.588,0.773,0.773,0.417,0,0.144 +0.667,0.453,0.453,0.483,1,0,0,0.552,0.68,0.68,0.67,0,0.072 +0.667,0.569,0.569,0,0.167,0,0,0.581,0.65,0.65,0.598,0.11,0.171 +1,0.905,0.905,0,0,0.933,0.467,0.788,0.698,0.698,0.663,0,0.934 +1,0.821,0.821,0,0,0,0,0.765,0.669,0.669,0.759,0,0.149 +1,0.203,0.203,0,0,0,0,0.39,0.508,0.508,0.138,0,0.273 +1,0.116,0.116,0,0,0,0,0.357,0.489,0.489,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.036 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.18 +1,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.324 +1,0.289,0.289,0.883,0,0,0,0.292,0.6,0.6,0,0,0.108 +1,0.297,0.297,1,0,0,0,0.314,0.59,0.59,0,0.0844,0.108 +1,0.338,0.338,0.0333,0,0.533,0.25,0.322,0.609,0.609,0,0.534,0 +0.667,0.425,0.425,0,0,0.4,0.517,0.373,0.629,0.629,0,0.478,0.108 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.328,0.176 +1,0.946,0.946,0,0.417,0,0,0.697,0.785,0.785,0.579,0.965,0.269 +1,0.919,0.919,0,0.9,0,0,0.741,0.741,0.741,0.374,0.319,0.18 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.216 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.036 +0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.386 +0.667,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.118 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0607 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.225 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.252 +0.667,0.177,0.177,0.133,0,0,0,0.345,0.518,0.518,0,0,0.102 +0.667,0.318,0.318,0.4,0,0,0,0.337,0.58,0.58,0,0,0.189 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.216 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.108 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.036 +0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.396 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.036 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.229 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.208 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.108 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.216 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.332 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.231 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.187 +0.667,0.0495,0.0495,0.767,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,1,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.305,0.305,1,0,0,0,0.432,0.57,0.57,0,0,0.226 +1,0.318,0.318,1,0,0,0,0.337,0.58,0.58,0,0,0.241 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.215 +0.667,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0.072 +0.667,0.3,0.3,0.05,0.05,0,0,0.27,0.59,0.59,0.41,0,0.072 +0.333,0.171,0.171,0,1,0,0,0.26,0.532,0.532,0.797,0,0 +0.333,0.169,0.169,0,0.267,0,0,0.275,0.532,0.532,0.791,0,0.036 +0.333,0.173,0.173,0,0,0.0667,0.133,0.286,0.528,0.528,0.245,0.459,0.108 +0.333,0.194,0.194,0.0167,0,0.867,1,0.29,0.537,0.537,0,0.584,0.18 +0.333,0.237,0.237,1,0,0,0.667,0.316,0.547,0.547,0,0.48,0.036 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0.248,0.18 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0.121,0,0.448 +0.667,0.629,0.629,1,0.8,0,0,0.58,0.649,0.649,0.728,0,0.126 +0.667,0.515,0.515,1,0.783,0,0,0.609,0.619,0.619,0,0,0.036 +0.667,0.0495,0.0495,0.183,0,0,0,0.258,0.465,0.465,0,0,0.15 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.271 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.216 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.45 +1,0.456,0.456,0,0,0,0,0.254,0.637,0.637,0,0,0.293 +1,0.443,0.443,0,0,0,0,0.265,0.637,0.637,0,0,0.214 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.233 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.333 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.036 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.036 +0.667,0.425,0.425,0.267,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.108 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0.128,0,0.242 +1,0.919,0.919,0.2,0.8,0,0,0.741,0.741,0.741,0.544,0,0.252 +1,0.747,0.747,0,0.833,0,0,0.785,0.696,0.696,0.425,0,0.108 +1,0.566,0.566,0,1,0,0,0.763,0.667,0.667,0.421,0,0.108 +1,0.197,0.197,0,0.267,0,0,0.389,0.508,0.508,0,0,0.108 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.119,0.146 +1,0.177,0.177,0,0,0.533,0.25,0.345,0.518,0.518,0,0.643,0 +1,0.318,0.318,0,0,0.4,0.783,0.337,0.58,0.58,0,0.616,0 +1,0.321,0.321,0.383,0,0,0,0.255,0.58,0.58,0,0.291,0 +0.667,0.312,0.312,1,0,0.933,0.75,0.263,0.58,0.58,0,0.0197,0 +0.667,0.3,0.3,1,0,0,0.283,0.27,0.59,0.59,0,0,0.072 +0.667,0.292,0.292,1,0,0,0,0.263,0.6,0.6,0,0,0.144 +0.667,0.289,0.289,1,0,0,0,0.292,0.6,0.6,0,0,0.144 +0.667,0.297,0.297,0.817,0,0,0,0.314,0.59,0.59,0,0.239,0.108 +0.667,0.338,0.338,0,0,0.933,0.5,0.322,0.609,0.609,0,0.43,0.072 +0.667,0.425,0.425,0,0,0,0.0167,0.373,0.629,0.629,0,0.74,0.267 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0.71,0.286 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0.887,0.072 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0.421,0 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0.297,0.036 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.371 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0.209,0,0 +0.667,0.185,0.185,0,0.667,0,0,0.257,0.523,0.523,0.686,0,0 +0.667,0.312,0.312,0.133,0.917,0,0,0.263,0.58,0.58,0,0,0 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.292,0.292,0.5,0,0,0,0.263,0.6,0.6,0,0,0.072 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.036 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.036 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.036 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.036 +1,0.804,0.804,0,0.167,0,0,0.586,0.77,0.77,0.427,0,0.252 +1,0.946,0.946,0,1,0,0,0.697,0.785,0.785,0.768,0,0.252 +1,0.919,0.919,0,0.15,0,0,0.741,0.741,0.741,0.31,0,0.072 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.258 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.374 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.144 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0495,0.0495,0.383,0,0,0,0.258,0.465,0.465,0,0,0.0704 +1,0.245,0.245,1,0,0,0,0.403,0.521,0.521,0.211,0,0.166 +1,0.433,0.433,0.883,0.917,0,0,0.52,0.622,0.622,0.59,0,0.036 +0.667,0.318,0.318,1,0.667,0,0,0.337,0.58,0.58,0,0,0.036 +0.667,0.321,0.321,1,0,0,0,0.255,0.58,0.58,0,0,0.036 +0.667,0.312,0.312,1,0,0,0,0.263,0.58,0.58,0,0,0.18 +0.333,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0.036 +0.333,0.171,0.171,0.567,0,0,0,0.26,0.532,0.532,0,0,0.18 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.144 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.036 +0.667,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0 +1,0.425,0.425,0.383,0,0,0,0.373,0.629,0.629,0,0,0.036 +1,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.108 +1,0.647,0.647,1,0,0,0,0.55,0.679,0.679,0,0,0.036 +1,0.629,0.629,1,0,0,0,0.58,0.649,0.649,0,0,0.072 +1,0.515,0.515,1,0,0,0,0.609,0.619,0.619,0,0,0.18 +1,0.222,0.222,0.817,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.883,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,1,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.177,0.177,1,0,0,0,0.345,0.518,0.518,0,0,0.072 +1,0.318,0.318,1,0,0,0,0.337,0.58,0.58,0,0,0.0686 +0.667,0.321,0.321,1,0,0,0,0.255,0.58,0.58,0,0,0.151 +1,0.443,0.443,0.7,0,0,0,0.265,0.637,0.637,0,0,0.036 +0.667,0.175,0.175,1,0,0,0,0.264,0.528,0.528,0,0,0.118 +0.667,0.292,0.292,1,0,0,0,0.263,0.6,0.6,0,0,0.191 +0.667,0.289,0.289,1,0,0,0,0.292,0.6,0.6,0,0,0.186 +0.667,0.297,0.297,1,0,0,0,0.314,0.59,0.59,0,0,0.036 +0.333,0.194,0.194,1,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,1,0,0,0,0.316,0.547,0.547,0,0,0.18 +0.667,0.553,0.553,0.25,0,0,0,0.477,0.669,0.669,0,0,0.036 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.432 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.036 +1,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.186 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.266 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.147,0.147,0.633,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.177,0.177,1,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.184,0.184,1,0,0,0,0.297,0.523,0.523,0,0,0.258 +0.667,0.321,0.321,1,0.417,0,0,0.255,0.58,0.58,0.778,0.215,0.318 +0.667,0.312,0.312,1,1,0.933,0.5,0.263,0.58,0.58,0.337,0.552,0.219 +0.333,0.175,0.175,0.567,0.167,0,0.533,0.264,0.528,0.528,0,0.425,0.18 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0.316,0.036 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0.248,0.072 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0.345,0.18 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0.857,0.036 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.229 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.397 +0.667,0.629,0.629,0,0.417,0,0,0.58,0.649,0.649,0.534,0,0.072 +0.667,0.515,0.515,0,0.9,0,0,0.609,0.619,0.619,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.123 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.175 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.036 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.18 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.263 +0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.143 +0.667,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.108 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.221 +0.667,0.237,0.237,0.517,0,0,0,0.316,0.547,0.547,0,0,0.203 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0 +0.667,0.647,0.647,0.4,0,0,0,0.55,0.679,0.679,0,0,0 +1,0.919,0.919,0,0.3,0,0,0.741,0.741,0.741,0.58,0,0.036 +1,0.747,0.747,0,1,0,0,0.785,0.696,0.696,0,0,0.36 +1,0.566,0.566,0,0.283,0,0,0.763,0.667,0.667,0,0,0.0939 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.228 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.134 +1,0.0816,0.0816,0.267,0,0,0,0.305,0.473,0.473,0,0,0.129 +1,0.147,0.147,1,0.05,0,0,0.33,0.493,0.493,0.453,0,0 +1,0.177,0.177,1,1,0,0,0.345,0.518,0.518,0.574,0.345,0.295 +1,0.318,0.318,0.2,0.267,0.933,0.633,0.337,0.58,0.58,0,0.222,0 +0.667,0.185,0.185,0,0,0,0.65,0.257,0.523,0.523,0,0,0.072 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.216 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.072 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.036 +0,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.301,0.301,1,0,0,0,0.367,0.567,0.567,0,0,0.072 +0.667,0.647,0.647,0.65,0,0,0,0.55,0.679,0.679,0,0,0.216 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.71 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.121 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.223 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.395 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.216 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.16 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.383,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.177,0.177,1,0,0,0,0.345,0.518,0.518,0,0.288,0 +0.667,0.184,0.184,1,0,0.933,0.75,0.297,0.523,0.523,0,0.25,0 +0.667,0.185,0.185,1,0,0,0.0167,0.257,0.523,0.523,0,0,0.305 +0.667,0.181,0.181,1,0,0,0,0.26,0.523,0.523,0,0,0.198 +1,0.3,0.3,0.817,0,0,0,0.27,0.59,0.59,0,0,0.413 +1,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.36 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.108 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.036 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.036 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0 +0.333,0.301,0.301,0.133,0,0,0,0.367,0.567,0.567,0,0,0.072 +0.333,0.348,0.348,0.683,0,0,0,0.404,0.572,0.572,0,0,0.036 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.108 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.474 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.598 +1,0.493,0.493,0,0,0,0,0.652,0.593,0.593,0,0,0.244 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.505 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0.12 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0921 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0.121 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.232 +1,0.147,0.147,0.883,0,0,0,0.33,0.493,0.493,0,0,0.108 +1,0.305,0.305,1,0,0,0,0.432,0.57,0.57,0.119,0,0.119 +0.667,0.184,0.184,0.583,0.667,0,0,0.297,0.523,0.523,0.607,0,0.072 +0.667,0.185,0.185,0,0.65,0,0,0.257,0.523,0.523,0.395,0,0.036 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.252 +0.667,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.072 +0.667,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0.319,0.036 +0.667,0.173,0.173,0,0,0.933,0.75,0.286,0.528,0.528,0,0.591,0.036 +0.667,0.194,0.194,0,0,0,1,0.29,0.537,0.537,0,0.463,0.538 +1,0.612,0.612,0,0,0,0.567,0.431,0.711,0.711,0,0,0.072 +1,0.804,0.804,0.817,0,0,0,0.586,0.77,0.77,0,0,0.072 +1,0.946,0.946,0,0.167,0,0,0.697,0.785,0.785,0.483,0,0 +1,0.919,0.919,0,1,0,0,0.741,0.741,0.741,0.613,0,0.216 +1,0.515,0.515,0,0.15,0,0,0.609,0.619,0.619,0.439,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.195 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.0921 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.16 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0.072 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.36 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.0933 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.036 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.036 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.667,0.108 +0.333,0.194,0.194,0,0,0.933,0.25,0.29,0.537,0.537,0,0.608,0.072 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0.681,0.036 +0.667,0.553,0.553,0.133,0,0,0,0.477,0.669,0.669,0,0.311,0.216 +0.667,0.647,0.647,1,0,0,0,0.55,0.679,0.679,0,0.612,0.036 +1,0.919,0.919,1,0.417,0,0,0.741,0.741,0.741,0.586,0.371,0 +1,0.747,0.747,0.333,0.633,0,0,0.785,0.696,0.696,0.318,0.422,0.108 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.072 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.108 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.106 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0982 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0.273 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0.243,0,0.348 +0.667,0.312,0.312,0,0.783,0,0,0.263,0.58,0.58,0.448,0,0.257 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0.238 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.154 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.036 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.338,0.338,0.383,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0.144 +1,0.804,0.804,0.533,0,0,0,0.586,0.77,0.77,0,0,0.216 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.154 +1,0.919,0.919,0,0.167,0,0,0.741,0.741,0.741,0.456,0,0.191 +1,0.747,0.747,0,1,0,0,0.785,0.696,0.696,0.299,0,0.036 +1,0.566,0.566,0,0.15,0,0,0.763,0.667,0.667,0,0,0.072 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.114 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.147 +1,0.433,0.433,0,0,0,0,0.52,0.622,0.622,0,0,0.036 +1,0.452,0.452,0,0,0,0,0.376,0.637,0.637,0,0,0.144 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.446 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.108 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.18 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.036 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0.383,0,0,0,0.29,0.537,0.537,0,0,0.036 +0.667,0.425,0.425,0.283,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0 +1,0.946,0.946,0.5,0,0,0,0.697,0.785,0.785,0,0,0.18 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0.18 +1,0.747,0.747,0,0.167,0,0,0.785,0.696,0.696,0.466,0,0 +1,0.394,0.394,0,1,0,0,0.595,0.6,0.6,0,0,0.036 +1,0.345,0.345,0,0.15,0,0,0.521,0.55,0.55,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.072 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.072 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.517,0,0,0,0.305,0.463,0.463,0,0,0.036 +1,0.051,0.051,1,0,0,0,0.293,0.468,0.468,0,0,0.195 +1,0.114,0.114,1,0,0,0,0.351,0.481,0.481,0,0,0.252 +1,0.245,0.245,1,0,0,0,0.403,0.521,0.521,0,0,0 +0.667,0.305,0.305,1,0,0,0,0.432,0.57,0.57,0,0,0.144 +0,0.0495,0.0495,0.683,0,0,0,0.258,0.465,0.465,0,0,0.036 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.252 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0,0.0495,0.0495,0.533,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0.108 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.18 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.432 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.18 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.101 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.13 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.117 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0.36 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0.391 +0.667,0.318,0.318,0,0.3,0,0,0.337,0.58,0.58,0.54,0,0.106 +0.667,0.321,0.321,0,1,0,0,0.255,0.58,0.58,0.695,0,0.108 +0.333,0.181,0.181,0,0.0167,0,0,0.26,0.523,0.523,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.264,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0.108 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,0.767,0,0,0,0.29,0.537,0.537,0,0,0.144 +0.667,0.425,0.425,1,0.05,0,0,0.373,0.629,0.629,0.41,0,0.036 +0.667,0.553,0.553,1,1,0,0,0.477,0.669,0.669,0.511,0,0.108 +0.667,0.647,0.647,1,0.267,0,0,0.55,0.679,0.679,0.586,0,0.288 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0.185 +1,0.747,0.747,0.433,0,0,0,0.785,0.696,0.696,0,0,0.302 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0.108 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.072 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0799 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.121 +0.667,0.0495,0.0495,0.883,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.318,0.318,1,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.321,0.321,0.583,0,0,0,0.255,0.58,0.58,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.216 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.252 +1,0.413,0.413,0,0,0,0,0.265,0.667,0.667,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.18 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.108 +0.667,0.338,0.338,0.133,0,0,0,0.322,0.609,0.609,0,0,0.108 +0.667,0.425,0.425,0.683,0,0,0,0.373,0.629,0.629,0,0,0.072 +0.333,0.301,0.301,0,0,0,0,0.367,0.567,0.567,0,0,0.213 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.144 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.036 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.389 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.126 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.107 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.313 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0.036 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0.633,0,0,0,0.258,0.465,0.465,0,0,0.418 +1,0.245,0.245,1,0,0,0,0.403,0.521,0.521,0,0,0.0789 +0.667,0.177,0.177,0.283,0,0,0,0.345,0.518,0.518,0,0,0 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0,0.036 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.036 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.072 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.108 +1,0.421,0.421,0,0,0,0,0.343,0.652,0.652,0,0,0.072 +0.667,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0.036 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.072 +1,0.946,0.946,0,0,0,0,0.697,0.785,0.785,0,0,0.108 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.18 +1,0.282,0.282,0,0,0,0,0.434,0.542,0.542,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.817,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0.337,0,0.144 +0.667,0.312,0.312,0,0.917,0,0,0.263,0.58,0.58,0.433,0,0.072 +0.667,0.3,0.3,0,0.667,0,0,0.27,0.59,0.59,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.072 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +1,0.482,0.482,0,0,0,0,0.354,0.681,0.681,0,0,0 +1,0.612,0.612,0,0,0,0,0.431,0.711,0.711,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.144 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.108 +0.667,0.629,0.629,0,0,0,0,0.58,0.649,0.649,0,0,0 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.072 +0.667,0.222,0.222,0,0,0,0,0.426,0.532,0.532,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.216 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0.883,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.177,0.177,0.75,0,0,0,0.345,0.518,0.518,0,0,0 +1,0.184,0.184,0,0,0,0,0.297,0.523,0.523,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0.224,0.388 +0.667,0.3,0.3,0,0.167,0.933,0.75,0.27,0.59,0.59,0.397,0,0.0522 +0.667,0.292,0.292,0,1,0,0.0167,0.263,0.6,0.6,0.527,0,0.078 +0.667,0.289,0.289,0,0.15,0,0,0.292,0.6,0.6,0.393,0,0.141 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.18 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.206 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.434 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.336 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.442 +1,0.919,0.919,0,0.417,0,0,0.741,0.741,0.741,0.536,0,0.459 +1,0.747,0.747,0,0.9,0,0,0.785,0.696,0.696,0.684,0,0.419 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0.287,0,0.134 +0.667,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0.275 +1,0.183,0.183,0,0,0,0,0.455,0.511,0.511,0,0,0.328 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.255,0.58,0.58,0,0,0.072 +0.667,0.312,0.312,0,0,0,0,0.263,0.58,0.58,0,0.045,0.0767 +0.333,0.175,0.175,0,0,0.933,0.5,0.264,0.528,0.528,0,0,0.291 +0.667,0.292,0.292,0,0,0,1,0.263,0.6,0.6,0,0,0.036 +0,0.0495,0.0495,0,0,0,0.567,0.258,0.465,0.465,0,0,0.144 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.288 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.072 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0.132,0,0.108 +0.667,0.553,0.553,0,0.667,0,0,0.477,0.669,0.669,0.577,0,0.036 +1,0.946,0.946,0,0.65,0,0,0.697,0.785,0.785,0.586,0,0.036 +0.667,0.629,0.629,0.383,0,0,0,0.58,0.649,0.649,0.433,0,0 +1,0.747,0.747,1,0.167,0,0,0.785,0.696,0.696,0.475,0,0.072 +1,0.566,0.566,1,1,0,0,0.763,0.667,0.667,0.119,0,0 +1,0.345,0.345,0.0833,0.15,0,0,0.521,0.55,0.55,0,0,0.183 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.319,0.483,0.483,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.228 +1,0.177,0.177,0.267,0,0,0,0.345,0.518,0.518,0,0,0.22 +1,0.184,0.184,1,0,0,0,0.297,0.523,0.523,0,0,0.118 +1,0.321,0.321,1,0,0,0,0.255,0.58,0.58,0,0,0.176 +1,0.312,0.312,0.2,0,0,0,0.263,0.58,0.58,0,0,0.0899 +1,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.174,0.446 +1,0.292,0.292,0,0,0.933,0.633,0.263,0.6,0.6,0,0.381,0.243 +1,0.289,0.289,0,0,0,0.133,0.292,0.6,0.6,0,0.134,0.63 +1,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.308 +1,0.338,0.338,0,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.036 +0.667,0.301,0.301,0.517,0,0,0,0.367,0.567,0.567,0,0,0.108 +0.667,0.647,0.647,1,0,0,0,0.55,0.679,0.679,0,0,0.108 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0.036 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0,0,0.366 +1,0.394,0.394,1,0,0,0,0.595,0.6,0.6,0,0,0.495 +1,0.345,0.345,0.683,0,0,0,0.521,0.55,0.55,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.308,0.473,0.473,0,0,0.312 +1,0.0495,0.0495,0,0,0,0,0.308,0.468,0.468,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.127 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.579 +1,0.245,0.245,0,0,0,0,0.403,0.521,0.521,0,0,0.315 +1,0.305,0.305,0,0,0,0,0.432,0.57,0.57,0,0,0.114 +1,0.318,0.318,0,0,0,0,0.337,0.58,0.58,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.144 +0.667,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.036 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +0.333,0.171,0.171,0,0,0,0,0.26,0.532,0.532,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.324 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.108 +0.333,0.237,0.237,0,0,0,0,0.316,0.547,0.547,0,0,0.18 +0.667,0.553,0.553,0,0,0,0,0.477,0.669,0.669,0,0,0.072 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.036 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.072 +0.667,0.515,0.515,0,0,0,0,0.609,0.619,0.619,0,0,0.072 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.072 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.108 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0,0 +0.667,0.0495,0.0495,0.383,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.321,0.321,0.15,0,0,0,0.255,0.58,0.58,0,0.0886,0.396 +0.667,0.312,0.312,0,0,0.533,0.25,0.263,0.58,0.58,0,0.219,0.22 +0.667,0.3,0.3,0,0,0.4,1,0.27,0.59,0.59,0,0.255,0 +0.667,0.292,0.292,0,0,0,0.817,0.263,0.6,0.6,0,0.647,0.036 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.402,0 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0,0.036 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.252 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0.144 +1,0.804,0.804,0,0,0,0,0.586,0.77,0.77,0,0,0.18 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.036 +1,0.919,0.919,0,0.167,0,0,0.741,0.741,0.741,0.433,0,0.072 +1,0.747,0.747,0,1,0,0,0.785,0.696,0.696,0.119,0,0.072 +1,0.566,0.566,0,0.15,0,0,0.763,0.667,0.667,0,0,0.18 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.051,0.051,0,0,0,0,0.293,0.468,0.468,0,0,0 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0.374,0.036 +0.667,0.312,0.312,0,0,0.933,0.75,0.263,0.58,0.58,0,0,0 +0.667,0.3,0.3,0,0,0,0.8,0.27,0.59,0.59,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.324 +0.333,0.173,0.173,0,0,0,0,0.286,0.528,0.528,0,0,0.072 +0.333,0.194,0.194,0,0,0,0,0.29,0.537,0.537,0,0,0.036 +0.667,0.425,0.425,0,0,0,0,0.373,0.629,0.629,0,0,0 +1,0.804,0.804,0.633,0,0,0,0.586,0.77,0.77,0,0,0 +0.667,0.647,0.647,1,0,0,0,0.55,0.679,0.679,0,0,0.18 +0.667,0.629,0.629,1,0,0,0,0.58,0.649,0.649,0,0,0.036 +0.333,0.282,0.282,1,0,0,0,0.434,0.542,0.542,0,0,0.141 +0.667,0.222,0.222,1,0,0,0,0.426,0.532,0.532,0,0,0.0982 +0.667,0.0495,0.0495,0.567,0,0,0,0.258,0.465,0.465,0,0,0.18 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.172 +0.667,0.0495,0.0495,0,0,0,0,0.305,0.463,0.463,0,0,0.138 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0942 +1,0.0816,0.0816,0,0,0,0,0.305,0.473,0.473,0,0,0.131 +0.667,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.345,0.518,0.518,0,0.00844,0.158 +0.667,0.318,0.318,0,0,0.533,0.25,0.337,0.58,0.58,0,0.539,0.428 +0.667,0.321,0.321,0,0,0.4,1,0.255,0.58,0.58,0,0.449,0.104 +0.667,0.312,0.312,0,0,0,0.817,0.263,0.58,0.58,0,0.304,0.493 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.368,0.195 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.275,0.532,0.532,0,0,0.108 +0.333,0.173,0.173,0.383,0,0,0,0.286,0.528,0.528,0,0,0 +0.333,0.194,0.194,1,0,0,0,0.29,0.537,0.537,0,0,0 +0.333,0.237,0.237,0.917,0,0,0,0.316,0.547,0.547,0,0,0.108 +0.667,0.553,0.553,1,0,0,0,0.477,0.669,0.669,0,0,0.18 +1,0.946,0.946,1,0,0,0,0.697,0.785,0.785,0,0,0.072 +1,0.919,0.919,1,0,0,0,0.741,0.741,0.741,0,0,0.0823 +1,0.747,0.747,1,0,0,0,0.785,0.696,0.696,0,0,0.364 +1,0.566,0.566,0.817,0,0,0,0.763,0.667,0.667,0,0,0.072 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.225 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.171 +1,0.177,0.177,0.383,0,0,0,0.345,0.518,0.518,0,0,0.432 +1,0.452,0.452,0.433,0,0,0,0.376,0.637,0.637,0.379,0.432,0 +0.667,0.321,0.321,0,0.917,0.933,0.75,0.255,0.58,0.58,0.498,0.546,0 +0.667,0.312,0.312,0,0.667,0,0.0167,0.263,0.58,0.58,0,0.43,0 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0.522,0.036 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0.54,0 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0.568,0.036 +0.667,0.297,0.297,0,0,0,0,0.314,0.59,0.59,0,0.361,0.072 +0.667,0.338,0.338,0.383,0,0,0,0.322,0.609,0.609,0,0.284,0.216 +1,0.612,0.612,1,0,0,0,0.431,0.711,0.711,0,0,0.072 +1,0.804,0.804,1,0,0,0,0.586,0.77,0.77,0,0,0.072 +0.667,0.647,0.647,0.0833,0,0,0,0.55,0.679,0.679,0,0,0.072 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.108 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0 +1,0.566,0.566,0,0,0,0,0.763,0.667,0.667,0,0,0.473 +1,0.345,0.345,0,0,0,0,0.521,0.55,0.55,0,0,0.159 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0 +1,0.099,0.099,0,0,0,0,0.381,0.501,0.501,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.304 +1,0.147,0.147,0,0,0,0,0.33,0.493,0.493,0,0,0 +1,0.305,0.305,0,0.417,0,0,0.432,0.57,0.57,0.707,0,0 +0.667,0.184,0.184,0,0.9,0,0,0.297,0.523,0.523,0.349,0,0 +0.667,0.185,0.185,0,0,0,0,0.257,0.523,0.523,0,0,0.108 +0.333,0.181,0.181,0,0,0,0,0.26,0.523,0.523,0,0,0.036 +0.667,0.3,0.3,0,0,0,0,0.27,0.59,0.59,0,0,0.108 +0.667,0.292,0.292,0,0,0,0,0.263,0.6,0.6,0,0,0.252 +0.667,0.289,0.289,0,0,0,0,0.292,0.6,0.6,0,0,0.144 +0.667,0.297,0.297,0.383,0,0,0,0.314,0.59,0.59,0,0,0.252 +0.667,0.338,0.338,1,0,0,0,0.322,0.609,0.609,0,0,0 +0.667,0.425,0.425,1,0,0,0,0.373,0.629,0.629,0,0,0 +0.667,0.553,0.553,0.0833,0,0,0,0.477,0.669,0.669,0,0,0.144 +0.667,0.647,0.647,0,0,0,0,0.55,0.679,0.679,0,0,0.18 +1,0.919,0.919,0,0,0,0,0.741,0.741,0.741,0,0,0.423 +1,0.747,0.747,0,0,0,0,0.785,0.696,0.696,0,0,0.362 +1,0.394,0.394,0,0,0,0,0.595,0.6,0.6,0,0,0 +1,0.197,0.197,0,0,0,0,0.389,0.508,0.508,0,0,0 +1,0.116,0.116,0,0,0,0,0.356,0.488,0.488,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.551 +1,0.47,0.47,0,0,0,0,0.475,0.806,0.806,0,0,0.325 +1,0.481,0.481,0.767,0,0,0,0.322,0.806,0.806,0,0,0.399 +1,0.468,0.468,1,0,0,0,0.336,0.806,0.806,0,0,0.346 +0.667,0.316,0.316,0.767,0,0,0,0.319,0.705,0.705,0,0,0.351 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.0735 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.316 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0.34,0.036 +0.333,0.204,0.204,0,0,0.933,0.633,0.321,0.597,0.597,0,0.43,0.108 +0.333,0.253,0.253,0,0,0,0.467,0.354,0.61,0.61,0,0.468,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0.739,0.252 +1,1,1,0,0,0,0,0.881,0.993,0.993,0.151,0.0668,0.144 +1,0.933,0.933,0,0.8,0,0,0.937,0.937,0.937,0.722,0,0.036 +1,0.504,0.504,0,0.567,0,0,0.748,0.742,0.742,0,0,0.036 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.288 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.126 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0.767,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.19,0.19,0.333,0,0,0,0.33,0.579,0.579,0,0,0.138 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.328,0.328,0.417,0,0,0,0.31,0.692,0.692,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.036 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.319 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.144 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.072 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.28 +0.667,0.596,0.596,0.267,0,0,0,0.58,0.805,0.805,0,0,0.405 +1,1,1,0.283,0,0,0,0.881,0.993,0.993,0,0,0.45 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0.3,0,0,0.993,0.88,0.88,0.521,0,0.108 +1,0.554,0.554,0,1,0,0,0.965,0.843,0.843,0.801,0,0 +1,0.342,0.342,0,0.0667,0,0,0.636,0.655,0.655,0.318,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0433 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.449 +1,0.181,0.181,0.267,0,0,0,0.391,0.572,0.572,0,0,0.147 +1,0.33,0.33,0.567,0,0,0,0.403,0.692,0.692,0,0.177,0.153 +0.667,0.193,0.193,0.0167,0,0.933,0.267,0.279,0.579,0.579,0,0.105,0.216 +0.667,0.189,0.189,1,0,0,0,0.284,0.579,0.579,0.188,0,0.036 +0.667,0.183,0.183,0.967,0.8,0,0,0.288,0.585,0.585,0.839,0,0.417 +0.667,0.307,0.307,1,0.833,0,0,0.31,0.717,0.717,0.234,0,0.215 +0.667,0.305,0.305,1,0,0,0,0.347,0.717,0.717,0,0,0.358 +0.667,0.314,0.314,1,0,0,0,0.375,0.705,0.705,0,0,0.168 +0.667,0.359,0.359,1,0,0,0,0.384,0.73,0.73,0,0,0.146 +0.667,0.457,0.457,1,0,0,0,0.449,0.755,0.755,0,0,0.312 +0.333,0.323,0.323,0.333,0,0,0,0.419,0.635,0.635,0,0,0.288 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.216 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.178 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.036 +0.667,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.072 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.153 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.253 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0.267,0,0,0,0.34,0.504,0.504,0,0,0 +1,0.0513,0.0513,1,0,0,0,0.326,0.51,0.51,0,0,0.072 +1,0.0829,0.0829,0.7,0,0,0,0.34,0.516,0.516,0,0,0.172 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.171 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.3 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.036 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.108 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.144 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.333,0.178,0.178,0,0.55,0,0,0.284,0.591,0.591,0.741,0,0 +0.667,0.305,0.305,0,0.817,0,0,0.347,0.717,0.717,0.0824,0,0.072 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.108 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0.267,0,0,0,0.354,0.61,0.61,0,0,0.072 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,1,1,0.417,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0.55,0,0,0.937,0.937,0.937,0.642,0,0.288 +1,0.732,0.732,0,1,0,0,0.993,0.88,0.88,0.672,0,0.036 +1,0.218,0.218,0,0.0833,0,0,0.493,0.591,0.591,0.789,0,0.072 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.419 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.364 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.245 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.0625 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.142 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.072 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.108 +0.667,0.316,0.316,0,0.3,0,0,0.319,0.705,0.705,0.573,0,0.252 +0.667,0.307,0.307,0.767,1,0,0,0.31,0.717,0.717,0.4,0,0.036 +0.667,0.305,0.305,1,0.0667,0,0,0.347,0.717,0.717,0,0,0.036 +0.667,0.314,0.314,0.767,0,0,0,0.375,0.705,0.705,0,0,0.072 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.036 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.036 +1,1,1,0.767,0,0,0,0.881,0.993,0.993,0.163,0,0.108 +1,0.933,0.933,1,0.8,0,0,0.937,0.937,0.937,0.621,0,0.252 +1,0.732,0.732,1,0.567,0,0,0.993,0.88,0.88,0,0,0 +1,0.386,0.386,1,0,0,0,0.729,0.717,0.717,0,0,0.036 +1,0.342,0.342,1,0,0,0,0.636,0.655,0.655,0,0,0.072 +1,0.183,0.183,0.583,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.166 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.505,0 +0.667,0.181,0.181,0,0,0.933,0.633,0.391,0.572,0.572,0,0.446,0 +0.667,0.19,0.19,0.767,0,0,0.467,0.33,0.579,0.579,0,0.439,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0.783,0 +0.667,0.328,0.328,1,0,0,0,0.31,0.692,0.692,0,0.588,0 +0.667,0.316,0.316,1,0,0,0,0.319,0.705,0.705,0,0.613,0.143 +0.667,0.307,0.307,1,0,0,0,0.31,0.717,0.717,0,0.599,0.15 +1,0.432,0.432,0.583,0,0,0,0.392,0.843,0.843,0,0.442,0.226 +1,0.446,0.446,0,0,0,0,0.433,0.824,0.824,0,0.547,0.445 +1,0.513,0.513,0.267,0,0,0,0.447,0.862,0.862,0,0.252,0.321 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0.266,0.036 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0.368,0.036 +1,1,1,0.267,0,0,0,0.881,0.993,0.993,0,0,0.108 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.18 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.393 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.188 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.0893 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.409 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.166 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.168 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.219 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.108 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.377 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.41 +1,0.47,0.47,0.767,0,0,0,0.475,0.806,0.806,0,0,0.122 +1,0.337,0.337,0.0667,0,0,0,0.3,0.692,0.692,0,0,0.333 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.104 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.072 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.108 +0.333,0.177,0.177,0.267,0,0,0,0.302,0.591,0.591,0,0,0.252 +0.333,0.182,0.182,0.567,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.216 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0 +0.333,0.323,0.323,0,0,0,0,0.419,0.635,0.635,0,0,0.216 +0.333,0.366,0.366,0,0,0,0,0.465,0.641,0.641,0,0,0.18 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.308 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.072 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.366 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.284 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.369 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +1,0.251,0.251,0,0,0,0,0.487,0.617,0.617,0,0,0.173 +1,0.313,0.313,0,0,0,0,0.524,0.68,0.68,0,0,0.779 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.308 +1,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.123 +1,0.328,0.328,0.267,0,0,0,0.31,0.692,0.692,0,0,0.556 +0.667,0.316,0.316,1,0,0,0,0.319,0.705,0.705,0,0,0.41 +0.667,0.307,0.307,1,0,0,0,0.31,0.717,0.717,0,0,0.602 +0.333,0.177,0.177,0.267,0,0,0,0.302,0.591,0.591,0,0,0.189 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.036 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.036 +0.667,0.457,0.457,0.517,0,0,0,0.449,0.755,0.755,0,0,0.144 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.288 +1,0.683,0.683,0.167,0,0,0,0.673,0.817,0.817,0,0,0.036 +1,0.933,0.933,0.517,0,0,0,0.937,0.937,0.937,0,0,0.108 +1,0.732,0.732,1,0.55,0,0,0.993,0.88,0.88,0.638,0,0.072 +1,0.554,0.554,1,0.533,0,0,0.965,0.843,0.843,0.745,0,0.036 +0.667,0.342,0.342,1,0,0,0,0.636,0.655,0.655,0.213,0,0.227 +1,0.183,0.183,1,0,0,0,0.552,0.605,0.605,0,0,0.036 +1,0.0495,0.0495,0.833,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0.216 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0.072 +0.667,0.307,0.307,1,0,0,0,0.31,0.717,0.717,0,0,0.108 +0.333,0.177,0.177,0.0833,0,0,0,0.302,0.591,0.591,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.403 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.44 +0.667,0.683,0.683,0.55,0.05,0,0,0.673,0.817,0.817,0.363,0.117,0.18 +0.667,0.638,0.638,0,1,0.933,0.383,0.711,0.78,0.78,0.212,0.388,0.241 +1,0.732,0.732,0,0.317,0,1,0.993,0.88,0.88,0,0,0 +1,0.554,0.554,0,0,0,1,0.965,0.843,0.843,0,0,0.036 +1,0.342,0.342,0,0,0,0.383,0.636,0.655,0.655,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.144 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.135 +1,0.313,0.313,0.267,0,0,0,0.524,0.68,0.68,0,0,0.127 +0.667,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.0495,0.0495,0.417,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.252 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.288 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.216 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.036 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.108 +0.667,0.457,0.457,0.0167,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0.817,0,0,0,0.58,0.805,0.805,0,0,0.072 +1,1,1,0,0.05,0,0,0.881,0.993,0.993,0.41,0,0 +1,0.933,0.933,0,1,0,0,0.937,0.937,0.937,0.368,0,0 +1,0.732,0.732,0,0.317,0,0,0.993,0.88,0.88,0,0,0.108 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.144 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.144 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.364 +1,0.15,0.15,0.267,0,0,0,0.372,0.541,0.541,0,0,0.298 +1,0.313,0.313,1,0,0,0,0.524,0.68,0.68,0,0,0 +0.333,0.0495,0.0495,0.7,0,0,0,0.258,0.465,0.465,0,0,0.0951 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.354 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.357 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.108 +0.333,0.0495,0.0495,0.0167,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.869,0.869,0.667,0,0,0,0.741,0.974,0.974,0,0,0 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.194 +1,0.554,0.554,0,0,0.0667,0.133,0.965,0.843,0.843,0,0.53,0 +1,0.488,0.488,0,0,0.867,0.967,0.825,0.749,0.749,0,0.246,0.252 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0.425,0.192 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0729 +1,0.251,0.251,0,0,0.0667,0.133,0.487,0.617,0.617,0,0.366,0 +0.667,0.313,0.313,0,0,0.867,0.967,0.524,0.68,0.68,0,0.648,0 +0.667,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0.506,0.144 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0.352,0.072 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0.674,0.036 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0.696,0.036 +1,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0.215,0 +1,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.18 +1,0.446,0.446,0,0,0.0667,0.133,0.433,0.824,0.824,0,0.491,0.036 +1,0.513,0.513,0,0,0.867,0.683,0.447,0.862,0.862,0,0.195,0.036 +1,0.661,0.661,0,0,0,0,0.545,0.899,0.899,0,0.451,0.072 +0.667,0.596,0.596,0.0167,0,0,0,0.58,0.805,0.805,0,0.332,0 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.216 +1,0.933,0.933,0.95,0,0,0,0.937,0.937,0.937,0,0,0.153 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.208 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.217 +1,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0.0924 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0893 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.248 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.036 +0.667,0.189,0.189,0,0.55,0,0,0.284,0.579,0.579,0.575,0,0 +0.667,0.183,0.183,0,1,0,0,0.288,0.585,0.585,0,0,0 +0.667,0.307,0.307,0.0167,0.0833,0,0,0.31,0.717,0.717,0,0,0.246 +0.333,0.177,0.177,0.817,0,0,0,0.302,0.591,0.591,0,0,0.144 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.036 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.144 +0.667,0.457,0.457,0.767,0,0,0,0.449,0.755,0.755,0,0,0.148 +0.667,0.596,0.596,0.917,0,0,0,0.58,0.805,0.805,0,0,0.109 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.3 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.15 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.257 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.182 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.144 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.036 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.036 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.338 +1,0.444,0.444,0.767,0,0,0,0.657,0.787,0.787,0,0,0.414 +0.667,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0.017 +0.667,0.337,0.337,0.767,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.328,0.328,0.767,0,0,0,0.31,0.692,0.692,0,0,0.036 +0.667,0.316,0.316,0.917,0,0,0,0.319,0.705,0.705,0,0,0.072 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.072 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.39 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.187 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.366 +0.333,0.253,0.253,0.0167,0,0,0,0.354,0.61,0.61,0,0,0.108 +0.333,0.323,0.323,0.533,0,0,0,0.419,0.635,0.635,0,0,0.54 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.036 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.163 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.294 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.662 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.207 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.142 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.333,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.68 +0.333,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.036 +0.333,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.036 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.144 +0.333,0.204,0.204,0,0,0,0,0.321,0.597,0.597,0,0,0.108 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0,0.036 +0.333,0.323,0.323,0.267,0,0,0,0.419,0.635,0.635,0,0,0.252 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.18 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0.252 +1,0.732,0.732,0.267,0,0,0,0.993,0.88,0.88,0,0,0.288 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.0869 +1,0.488,0.488,0,0.3,0,0,0.825,0.749,0.749,0.692,0,0.171 +1,0.183,0.183,0,1,0,0,0.552,0.605,0.605,0.341,0,0.144 +1,0.0743,0.0743,0,0.0667,0,0,0.358,0.529,0.529,0,0,0.169 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.19,0.19,0,0.05,0,0,0.33,0.579,0.579,0.358,0,0 +0.667,0.193,0.193,0,1,0,0,0.279,0.579,0.579,0.234,0,0.344 +0.667,0.189,0.189,0,0.317,0,0,0.284,0.579,0.579,0,0,0.192 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.036 +0.667,0.178,0.178,0,0,0,0,0.284,0.591,0.591,0,0,0.144 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.072 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0.181,0.072 +0.333,0.323,0.323,0,0,0.933,0.633,0.419,0.635,0.635,0,0.271,0.252 +0.333,0.366,0.366,0.767,0,0,0.467,0.465,0.641,0.641,0,0,0.072 +0.667,0.638,0.638,1,0,0,0,0.711,0.78,0.78,0,0,0.216 +0.667,0.504,0.504,0.767,0,0,0,0.748,0.742,0.742,0,0,0 +0.667,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.072 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0.226 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.0722 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0963 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0.54 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0.278 +1,0.468,0.468,0,0,0,0,0.336,0.806,0.806,0,0,0.254 +1,0.449,0.449,0.267,0,0,0,0.35,0.824,0.824,0,0,0.455 +0.667,0.307,0.307,1,0,0,0,0.31,0.717,0.717,0,0,0.072 +0.667,0.305,0.305,0.417,0,0,0,0.347,0.717,0.717,0,0,0.18 +0.667,0.314,0.314,0.0167,0,0,0,0.375,0.705,0.705,0,0,0.144 +0.667,0.359,0.359,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.333,0.253,0.253,0.95,0,0,0,0.354,0.61,0.61,0,0,0.432 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.036 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.144 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.216 +1,0.342,0.342,0,0,0.0667,0.133,0.636,0.655,0.655,0,0.61,0.036 +1,0.183,0.183,0,0,0.867,0.967,0.552,0.605,0.605,0,0.401,0 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0.705,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0.498,0 +1,0.0495,0.0495,0,0,0,0,0.344,0.51,0.51,0,0.72,0 +1,0.0495,0.0495,0,0,0,0,0.34,0.504,0.504,0,0.395,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.24 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.296 +0.667,0.33,0.33,0.267,0,0,0,0.403,0.692,0.692,0,0,0.183 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.328,0.328,1,0,0,0,0.31,0.692,0.692,0,0,0.036 +0.667,0.316,0.316,0.267,0,0,0,0.319,0.705,0.705,0,0,0.18 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0.194,0 +1,0.513,0.513,0,0,0.933,0.633,0.447,0.862,0.862,0,0.421,0.036 +1,0.661,0.661,0,0,0,0.467,0.545,0.899,0.899,0,0.0816,0.18 +1,0.596,0.596,0.55,0,0,0,0.58,0.805,0.805,0,0,0.036 +0.667,0.683,0.683,0,0.55,0,0,0.673,0.817,0.817,0.816,0,0.144 +0.667,0.638,0.638,0,0.817,0,0,0.711,0.78,0.78,0.78,0,0.036 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0.278,0,0 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.072 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0.267,0,0,0,0.372,0.541,0.541,0,0.0731,0.322 +1,0.444,0.444,1,0,0.933,0.383,0.657,0.787,0.787,0,0.239,0.111 +1,0.47,0.47,1,0,0,1,0.475,0.806,0.806,0.383,0,0.305 +1,0.481,0.481,1,0.8,0,0,0.322,0.806,0.806,0.276,0,0 +0.667,0.328,0.328,1,0.833,0,0,0.31,0.692,0.692,0,0,0.18 +0.667,0.316,0.316,1,0,0,0,0.319,0.705,0.705,0,0,0.036 +0.667,0.307,0.307,0.0833,0,0,0,0.31,0.717,0.717,0,0,0.324 +0.667,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.108 +0.667,0.182,0.182,0.267,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.359,0.359,1,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0.7,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0.267,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,1,0,0,0,0.673,0.817,0.817,0,0,0.148 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0.697 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0,0,0.697 +1,0.386,0.386,1,0,0,0,0.729,0.717,0.717,0,0,0.658 +1,0.196,0.196,1,0,0,0,0.447,0.56,0.56,0,0,0.072 +1,0.0495,0.0495,0.0833,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.137 +1,0.0829,0.0829,0.0167,0,0,0,0.34,0.516,0.516,0,0,0.111 +1,0.15,0.15,1,0,0,0,0.372,0.541,0.541,0,0,0 +0.667,0.181,0.181,0.95,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.19,0.19,0,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0.59 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.196 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.286 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.471 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.381 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.374 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.072 +0.333,0.253,0.253,0.0167,0,0,0,0.354,0.61,0.61,0,0,0.036 +0.667,0.596,0.596,0.817,0.55,0,0,0.58,0.805,0.805,0.944,0,0.036 +0.667,0.683,0.683,0,1,0,0,0.673,0.817,0.817,0.64,0,0.216 +0.667,0.638,0.638,0,0.0833,0,0,0.711,0.78,0.78,0.157,0,0.0616 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.291 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.072 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.18 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.072 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0513,0.0513,0,0,0,0,0.326,0.51,0.51,0,0,0 +0.667,0.0829,0.0829,0.767,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.0495,0.0495,1,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.2,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.305,0.305,0.267,0,0,0,0.347,0.717,0.717,0,0,0.14 +0.667,0.314,0.314,0.283,0,0,0,0.375,0.705,0.705,0,0.129,0.126 +1,0.513,0.513,0,0,0.933,0.383,0.447,0.862,0.862,0,0.138,0.036 +1,0.661,0.661,0,0,0,0.433,0.545,0.899,0.899,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.072 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.072 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.216 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.108 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.036 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.108 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +1,0.481,0.481,0,0,0,0,0.322,0.806,0.806,0,0,0 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0 +0.333,0.183,0.183,0.267,0,0,0,0.288,0.585,0.585,0,0,0.108 +0.333,0.178,0.178,1,0,0,0,0.284,0.591,0.591,0,0,0.18 +0.333,0.177,0.177,0.417,0,0,0,0.302,0.591,0.591,0,0,0.036 +0.667,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.036 +1,0.661,0.661,0.267,0,0,0,0.545,0.899,0.899,0,0,0.108 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0.108 +1,1,1,0.7,0,0,0,0.881,0.993,0.993,0,0,0.108 +0.667,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0 +0.667,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.036 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.108 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.167 +1,0.183,0.183,0,0,0,0,0.552,0.605,0.605,0,0,0.108 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.036 +1,0.0578,0.0578,0.767,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0.0667,0,0,0,0.344,0.51,0.51,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0.267,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.328,0.328,0.417,0,0,0,0.31,0.692,0.692,0,0,0 +0.333,0.183,0.183,0.767,0,0,0,0.288,0.585,0.585,0,0,0 +0.333,0.178,0.178,0.917,0,0,0,0.284,0.591,0.591,0,0,0 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.108 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.036 +1,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.127 +1,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.413 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.407 +1,1,1,0.0167,0,0,0,0.881,0.993,0.993,0,0,0.072 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0.144 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0,0,0.216 +1,0.554,0.554,1,0.55,0,0,0.965,0.843,0.843,0.741,0,0.036 +1,0.196,0.196,1,0.817,0,0,0.447,0.56,0.56,0,0,0.108 +1,0.183,0.183,1,0,0,0,0.552,0.605,0.605,0,0,0.154 +1,0.0743,0.0743,0.333,0,0,0,0.358,0.529,0.529,0,0,0.163 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.154 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.181 +1,0.053,0.053,0,0,0,0,0.394,0.555,0.555,0,0,0 +0.667,0.0829,0.0829,0,0,0,0,0.34,0.516,0.516,0,0,0 +0.667,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +0.333,0.181,0.181,0.0167,0,0,0,0.391,0.572,0.572,0,0,0.036 +0.333,0.19,0.19,1,0,0,0,0.33,0.579,0.579,0,0,0.18 +0.667,0.337,0.337,0.667,0,0,0,0.3,0.692,0.692,0,0,0.252 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.036 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.036 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.036 +0.667,0.305,0.305,0,0,0,0,0.347,0.717,0.717,0,0,0.203 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.036 +0.333,0.204,0.204,0.517,0,0,0,0.321,0.597,0.597,0,0,0.072 +1,0.661,0.661,1,0,0,0,0.545,0.899,0.899,0,0,0.18 +1,0.869,0.869,1,0,0,0,0.741,0.974,0.974,0,0,0 +1,1,1,1,0,0,0,0.881,0.993,0.993,0,0,0 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0.072 +1,0.732,0.732,0.833,0,0.0667,0.133,0.993,0.88,0.88,0,0.842,0 +1,0.554,0.554,0,0,0.867,1,0.965,0.843,0.843,0,0.647,0.144 +1,0.488,0.488,0,0,0,0.25,0.825,0.749,0.749,0,0,0.117 +0.667,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +0.667,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0.235 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.288 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.256 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.19,0.19,0.267,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.337,0.337,1,0,0,0,0.3,0.692,0.692,0,0,0.036 +0.667,0.328,0.328,1,0,0,0,0.31,0.692,0.692,0,0,0.072 +0.667,0.316,0.316,1,0,0,0,0.319,0.705,0.705,0,0,0.072 +0.667,0.307,0.307,1,0,0,0,0.31,0.717,0.717,0,0,0 +0.667,0.305,0.305,1,0,0,0,0.347,0.717,0.717,0,0,0 +0.667,0.314,0.314,0.0833,0,0,0,0.375,0.705,0.705,0,0,0.144 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.144 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0.154 +1,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0.501 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0.16 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0,0.323 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.072 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0.203,0.294 +1,0.342,0.342,0,0,0.933,0.55,0.636,0.655,0.655,0,0.62,0.108 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0.485,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0.429,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.232 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0 +1,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.11 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0.422 +0.667,0.328,0.328,0,0,0,0,0.31,0.692,0.692,0,0,0.49 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0.382 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0.107 +0.333,0.177,0.177,0,0.3,0,0,0.302,0.591,0.591,0.596,0,0.108 +0.667,0.314,0.314,0,0.783,0,0,0.375,0.705,0.705,0.502,0,0.072 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0 +0.667,0.457,0.457,0.517,0,0,0,0.449,0.755,0.755,0.13,0,0.072 +1,0.869,0.869,1,0.8,0,0,0.741,0.974,0.974,0.699,0,0.072 +1,1,1,0.45,0.567,0,0,0.881,0.993,0.993,0,0,0.036 +1,0.933,0.933,0.0167,0,0,0,0.937,0.937,0.937,0,0,0.216 +1,0.732,0.732,1,0,0,0,0.993,0.88,0.88,0,0,0.036 +1,0.386,0.386,0.95,0,0,0,0.729,0.717,0.717,0,0,0 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.181,0.181,0.0167,0,0,0,0.391,0.572,0.572,0,0,0 +1,0.33,0.33,1,0,0,0,0.403,0.692,0.692,0,0,0.168 +1,0.481,0.481,1,0,0,0,0.322,0.806,0.806,0,0,0.225 +1,0.468,0.468,1,0,0,0,0.336,0.806,0.806,0,0,0.124 +1,0.449,0.449,1,0,0,0,0.35,0.824,0.824,0,0,0.282 +0.667,0.307,0.307,1,0.55,0,0,0.31,0.717,0.717,0.78,0.408,0.18 +0.667,0.305,0.305,0.333,1,0.933,0.55,0.347,0.717,0.717,0.197,0,0.18 +0.667,0.314,0.314,0,0.0833,0,0,0.375,0.705,0.705,0,0,0.252 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.323,0.036 +1,0.661,0.661,0,0,0.933,0.633,0.545,0.899,0.899,0,0.357,0.036 +1,0.869,0.869,0,0,0,0.467,0.741,0.974,0.974,0,0,0.288 +1,1,1,0,0,0,0,0.881,0.993,0.993,0,0,0 +0.333,0.344,0.344,0,0,0,0,0.484,0.622,0.622,0,0,0.18 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.072 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.072 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.108 +1,0.249,0.249,0,0,0,0,0.699,0.674,0.674,0,0,0.108 +1,0.099,0.099,0,0,0,0,0.459,0.592,0.592,0,0,0.315 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0.075 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.236 +0.667,0.181,0.181,0,0,0,0,0.391,0.572,0.572,0,0,0.139 +0.333,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.333,0.0495,0.0495,0.767,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.328,0.328,0.0667,0,0,0,0.31,0.692,0.692,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.319,0.705,0.705,0,0,0 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.302,0.591,0.591,0,0,0.036 +0.333,0.182,0.182,0,0,0,0,0.316,0.585,0.585,0,0,0.036 +0.333,0.204,0.204,0.0167,0,0,0,0.321,0.597,0.597,0,0,0.072 +0.333,0.253,0.253,0.533,0,0,0,0.354,0.61,0.61,0,0,0 +1,0.869,0.869,0,0,0,0,0.741,0.974,0.974,0,0,0.18 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.216 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.425 +1,0.504,0.504,0,0,0,0,0.748,0.742,0.742,0,0,0.203 +1,0.218,0.218,0,0,0,0,0.493,0.591,0.591,0,0,0.434 +1,0.196,0.196,0,0,0,0,0.447,0.56,0.56,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.036 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +0.667,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.0796 +0.667,0.307,0.307,0,0,0,0,0.31,0.717,0.717,0.142,0,0 +0.667,0.305,0.305,0,0.8,0,0,0.347,0.717,0.717,0.808,0,0.169 +0.667,0.314,0.314,0,0.567,0,0,0.375,0.705,0.705,0.517,0,0.036 +1,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0.186,0.036 +1,0.457,0.457,0,0,0.933,0.55,0.449,0.755,0.755,0,0.762,0.072 +1,0.869,0.869,0.267,0,0,0,0.741,0.974,0.974,0,0.179,0.18 +1,1,1,0.567,0,0,0,0.881,0.993,0.993,0,0.466,0 +1,0.933,0.933,0,0,0,0,0.937,0.937,0.937,0,0.578,0.108 +1,0.732,0.732,0,0,0,0,0.993,0.88,0.88,0,0,0.36 +1,0.554,0.554,0,0,0,0,0.965,0.843,0.843,0,0,0.036 +1,0.488,0.488,0,0,0,0,0.825,0.749,0.749,0,0,0.143 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0.108 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.18 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.2 +1,0.181,0.181,0.55,0,0,0,0.391,0.572,0.572,0,0,0.148 +1,0.33,0.33,0,0,0,0,0.403,0.692,0.692,0,0,0 +0.333,0.193,0.193,0,0,0,0,0.279,0.579,0.579,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.284,0.579,0.579,0,0,0.169 +0.333,0.183,0.183,0,0,0,0,0.288,0.585,0.585,0,0,0.337 +0.667,0.307,0.307,0.0167,0.3,0,0,0.31,0.717,0.717,0.554,0,0.072 +0.333,0.177,0.177,0.533,1,0,0,0.302,0.591,0.591,0.608,0,0.144 +0.667,0.314,0.314,0,0.0667,0,0,0.375,0.705,0.705,0.668,0,0.036 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0.444,0,0 +0.333,0.253,0.253,0,0,0,0,0.354,0.61,0.61,0,0.315,0.036 +0.333,0.323,0.323,0,0,0.933,0.633,0.419,0.635,0.635,0,0.505,0.108 +0.667,0.683,0.683,0.267,0,0,0.183,0.673,0.817,0.817,0,0.391,0.072 +1,0.933,0.933,1,0,0,0,0.937,0.937,0.937,0,0,0.144 +1,0.732,0.732,0.7,0,0,0,0.993,0.88,0.88,0,0,0.252 +1,0.386,0.386,0,0,0,0,0.729,0.717,0.717,0,0,0.036 +1,0.342,0.342,0,0,0,0,0.636,0.655,0.655,0,0,0.144 +1,0.116,0.116,0,0,0,0,0.405,0.535,0.535,0,0,0 +1,0.0743,0.0743,0,0,0,0,0.358,0.529,0.529,0,0,0 +1,0.0578,0.0578,0,0,0,0,0.344,0.516,0.516,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0 +1,0.0495,0.0495,0,0,0,0,0.258,0.465,0.465,0,0,0.0902 +1,0.15,0.15,0,0,0,0,0.372,0.541,0.541,0,0,0.289 +1,0.181,0.181,0.267,0,0,0,0.391,0.572,0.572,0,0,0.0726 +0.667,0.19,0.19,0.283,0,0,0,0.33,0.579,0.579,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.3,0.692,0.692,0,0,0 +0.667,0.328,0.328,0,0.05,0,0,0.31,0.692,0.692,0.413,0,0 +0.667,0.316,0.316,0,1,0,0,0.319,0.705,0.705,0.348,0,0.036 +0.667,0.307,0.307,0,0.317,0,0,0.31,0.717,0.717,0,0,0.216 +1,0.432,0.432,0,0,0,0,0.392,0.843,0.843,0,0,0.252 +0.667,0.314,0.314,0,0,0,0,0.375,0.705,0.705,0,0,0.144 +0.667,0.359,0.359,0,0,0,0,0.384,0.73,0.73,0,0,0.036 +0.667,0.457,0.457,0,0,0,0,0.449,0.755,0.755,0,0,0 +0.667,0.596,0.596,0,0,0,0,0.58,0.805,0.805,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.673,0.817,0.817,0,0,0.301 +0.667,0.638,0.638,0,0,0,0,0.711,0.78,0.78,0,0,0.481 +0.667,0.504,0.504,0,0.55,0,0,0.748,0.742,0.742,0.944,0,0.315 +1,0.554,0.554,0.517,0.817,0,0,0.965,0.843,0.843,0,0,0.036 +1,0.342,0.342,1,0,0,0,0.636,0.655,0.655,0,0,0.036 +1,0.116,0.116,0.45,0,0,0,0.405,0.535,0.535,0,0,0 diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_6.csv b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_6.csv new file mode 100644 index 00000000..d2877a26 --- /dev/null +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_6.csv @@ -0,0 +1,8761 @@ +occupants,lighting_interior,lighting_garage,cooking_range,dishwasher,clothes_washer,clothes_dryer,ceiling_fan,plug_loads_other,plug_loads_tv,hot_water_dishwasher,hot_water_clothes_washer,hot_water_fixtures +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0529 +1,0.0841,0.0841,0,0.583,0,0,0.34,0.52,0.52,0.727,0,0.223 +1,0.153,0.153,0,0.767,0,0,0.372,0.545,0.545,0,0,0 +1,0.184,0.184,0.5,0,0,0,0.391,0.577,0.577,0,0,0 +1,0.337,0.337,0.0167,0,0,0,0.403,0.697,0.697,0,0,0.26 +0.667,0.198,0.198,0,0.583,0,0,0.279,0.583,0.583,0.729,0,0.173 +0.667,0.337,0.337,0,0.767,0,0,0.31,0.697,0.697,0.21,0,0.0866 +0.667,0.325,0.325,0,0,0,0,0.319,0.71,0.71,0,0,0.112 +0.667,0.316,0.316,0,0,0,0,0.31,0.722,0.722,0,0,0.0813 +0.667,0.313,0.313,0,0,0,0,0.347,0.722,0.722,0,0,0 +0.667,0.318,0.318,0,0,0,0,0.375,0.71,0.71,0,0,0.173 +1,0.494,0.494,0,0,0,0,0.447,0.868,0.868,0,0,0.838 +0.667,0.421,0.421,0,0,0,0,0.449,0.76,0.76,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.363,0.363,0,0,0,0,0.465,0.646,0.646,0,0,0.0433 +0.667,0.683,0.683,0.25,0,0,0,0.711,0.785,0.785,0,0,0.0866 +0.667,0.57,0.57,0,0,0,0,0.748,0.747,0.747,0,0,0.303 +0.667,0.434,0.434,0,0,0,0,0.729,0.722,0.722,0,0,0.0866 +0.667,0.214,0.214,0,0,0,0,0.447,0.564,0.564,0,0,0.373 +1,0.184,0.184,0,0,0,0,0.552,0.609,0.609,0,0,0.122 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.291 +1,0.184,0.184,0,0,0,0,0.391,0.577,0.577,0,0,0.297 +0.667,0.337,0.337,0,0,0,0,0.403,0.697,0.697,0,0,0.253 +0.667,0.346,0.346,0,0,0,0,0.3,0.697,0.697,0,0,0.0433 +0.333,0.194,0.194,0,0,1,0.133,0.284,0.583,0.583,0,0.0039,0.0866 +0.333,0.187,0.187,0,0.583,0,0.683,0.288,0.589,0.589,0.523,0.475,0.0433 +0.333,0.183,0.183,0,1,0,0,0.284,0.595,0.595,0.702,0,0 +0.333,0.182,0.182,0,0.3,0,0,0.302,0.595,0.595,0,0,0.13 +0.333,0.184,0.184,0,0,0,0,0.316,0.589,0.589,0,0,0.346 +0.333,0.198,0.198,0,0,0,0,0.321,0.602,0.602,0,0,0.173 +0.333,0.236,0.236,0,0,0,0,0.354,0.614,0.614,0,0,0.0866 +0.333,0.302,0.302,0.25,0,0,0,0.419,0.639,0.639,0,0,0.0866 +0.667,0.675,0.675,0,0,0,0,0.673,0.823,0.823,0,0,0.346 +0.667,0.683,0.683,0,0,0.103,0,0.711,0.785,0.785,0,0,0.0433 +0.667,0.57,0.57,0,0,0.379,0.267,0.748,0.747,0.747,0,0.323,0 +0.667,0.434,0.434,0,0,0,0,0.729,0.722,0.722,0,0.222,0.665 +1,0.541,0.541,0,0,0,0,0.825,0.755,0.755,0,0,0.111 +1,0.184,0.184,0,0,0,0,0.552,0.609,0.609,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.34,0.507,0.507,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.229 +1,0.184,0.184,0,0,0,0,0.391,0.577,0.577,0,0,0.445 +0.667,0.194,0.194,0,0,0,0,0.33,0.583,0.583,0,0,0.0924 +0.667,0.198,0.198,0,0,0.103,0,0.279,0.583,0.583,0,0,0 +0.333,0.05,0.05,0,0,0.379,0.883,0.258,0.469,0.469,0,0.259,0.173 +0.667,0.325,0.325,0,0,0,0.2,0.319,0.71,0.71,0,0.508,0.0866 +0.333,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0.347,0 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0.536,0 +0.333,0.184,0.184,0,0,0,0,0.316,0.589,0.589,0,0.217,0.0866 +0.333,0.198,0.198,0,0,0,0,0.321,0.602,0.602,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.302,0.302,0,0,0,0,0.419,0.639,0.639,0,0,0.216 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.381 +0.333,0.367,0.367,1,0,0,0,0.484,0.627,0.627,0,0,0.237 +0.667,0.57,0.57,0.0333,0,0,0,0.748,0.747,0.747,0,0,0.112 +0.667,0.434,0.434,0,0,0,0,0.729,0.722,0.722,0,0,0.324 +0.667,0.378,0.378,0,0,0,0,0.636,0.659,0.659,0,0,0.137 +0.667,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0671 +1,0.0518,0.0518,0.25,0,0,0,0.326,0.514,0.514,0,0,0.0642 +1,0.0841,0.0841,0,0,0.483,0.633,0.34,0.52,0.52,0,0.211,0 +1,0.153,0.153,0,0,0,0.183,0.372,0.545,0.545,0,0.322,0.541 +1,0.319,0.319,0,0,0,0,0.524,0.685,0.685,0,0.248,0.465 +1,0.481,0.481,0,0,0,0,0.475,0.811,0.811,0,0.433,0.468 +1,0.495,0.495,0,0,0,0,0.322,0.811,0.811,0,0.442,0.398 +0.667,0.337,0.337,0,0,0,0,0.31,0.697,0.697,0,0,0.334 +0.333,0.187,0.187,0,0,0,0,0.288,0.589,0.589,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.333,0.236,0.236,0.767,0,0,0,0.354,0.614,0.614,0,0,0 +0.333,0.302,0.302,0,0,0,0,0.419,0.639,0.639,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.465,0.646,0.646,0,0,0 +0.333,0.367,0.367,0,0,0,0,0.484,0.627,0.627,0,0,0.173 +0.333,0.31,0.31,0,0,0,0,0.503,0.608,0.608,0,0,0.0433 +0.667,0.434,0.434,0,0,0,0,0.729,0.722,0.722,0,0,0.0433 +0.667,0.214,0.214,0,0,0,0,0.447,0.564,0.564,0,0,0 +1,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.0992 +1,0.153,0.153,0.783,0,0,0,0.372,0.545,0.545,0,0,0 +1,0.184,0.184,0.25,0,0,0,0.391,0.577,0.577,0,0,0.0449 +1,0.194,0.194,0,0,0,0,0.33,0.583,0.583,0,0,0.16 +1,0.198,0.198,0,0.0833,0,0,0.279,0.583,0.583,0.501,0,0.148 +1,0.194,0.194,0,0.983,0,0,0.284,0.583,0.583,0.0902,0,0.131 +1,0.187,0.187,0,0,0,0,0.288,0.589,0.589,0,0,0.134 +1,0.316,0.316,0,0,0,0,0.31,0.722,0.722,0,0,0.154 +1,0.313,0.313,0,0,0,0,0.347,0.722,0.722,0,0,0.487 +0.667,0.318,0.318,0.25,0,0,0,0.375,0.71,0.71,0,0,0.0433 +0.333,0.198,0.198,0,0,0,0,0.321,0.602,0.602,0,0,0 +0.333,0.236,0.236,0,0,0,0,0.354,0.614,0.614,0,0,0 +0.333,0.302,0.302,0,0,0,0,0.419,0.639,0.639,0,0,0.13 +0.333,0.363,0.363,0,0,0,0,0.465,0.646,0.646,0,0,0.13 +0.667,0.683,0.683,0,0,0,0,0.711,0.785,0.785,0,0,0.303 +0.667,0.57,0.57,0,0,0,0,0.748,0.747,0.747,0,0,0.13 +0.667,0.434,0.434,0,0,0,0,0.729,0.722,0.722,0,0,0.173 +0.667,0.378,0.378,0,0,0,0,0.636,0.659,0.659,0,0,0.354 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.275 +1,0.0583,0.0583,0,0,0,0,0.344,0.52,0.52,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.517,0,0,0,0.258,0.469,0.469,0,0,0.135 +1,0.453,0.453,0,0,0,0,0.657,0.792,0.792,0,0,0.422 +1,0.481,0.481,0,0,0,0,0.475,0.811,0.811,0,0,0.277 +1,0.495,0.495,0,0,0,0,0.322,0.811,0.811,0,0,0.25 +1,0.481,0.481,0,0,0,0,0.336,0.811,0.811,0,0,0.419 +0.667,0.325,0.325,0,0,0,0,0.319,0.71,0.71,0,0,0.392 +0.667,0.316,0.316,0,0,0,0,0.31,0.722,0.722,0,0,0.288 +0.667,0.313,0.313,0,0,0,0,0.347,0.722,0.722,0,0,0.461 +0.667,0.318,0.318,0,0,0,0,0.375,0.71,0.71,0,0,0.382 +0.667,0.346,0.346,0,0,0,0,0.384,0.735,0.735,0,0,0.234 +0.333,0.236,0.236,0,0,0.483,0.8,0.354,0.614,0.614,0,0.3,0.293 +0.333,0.302,0.302,0,0,0,0.0167,0.419,0.639,0.639,0,0.267,0.13 +0.333,0.363,0.363,0,0,0,0,0.465,0.646,0.646,0,0.451,0.173 +0.333,0.367,0.367,0,0,0,0,0.484,0.627,0.627,0,0.401,0.19 +0.667,0.57,0.57,0,0,0,0,0.748,0.747,0.747,0,0,0.0433 +1,0.626,0.626,0,0,0,0,0.965,0.849,0.849,0,0,0.26 +1,0.214,0.214,0,0,0,0,0.447,0.564,0.564,0,0,0.173 +1,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0.0866 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0.303 +1,0.0583,0.0583,0,0,0,0,0.344,0.52,0.52,0,0,0.181 +1,0.05,0.05,0,0,0,0,0.344,0.514,0.514,0,0,0.0137 +1,0.05,0.05,0,0,0,0,0.34,0.507,0.507,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.194,0.194,0,0,0,0,0.33,0.583,0.583,0,0,0 +1,0.346,0.346,0,0,0,0,0.3,0.697,0.697,0,0,0 +0.667,0.194,0.194,0.517,0,0,0,0.284,0.583,0.583,0,0,0.0866 +0.667,0.187,0.187,0,0,0,0,0.288,0.589,0.589,0,0,0.0433 +0.667,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0.13 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0 +0.333,0.184,0.184,0.417,0,0,0,0.316,0.589,0.589,0,0,0 +0.333,0.198,0.198,0.35,0,0,0,0.321,0.602,0.602,0,0,0.0866 +0.667,0.421,0.421,0,0,0,0,0.449,0.76,0.76,0,0,0 +0.667,0.553,0.553,0,0,0,0,0.58,0.81,0.81,0,0,0 +0.667,0.675,0.675,0,0,0,0,0.673,0.823,0.823,0,0,0.173 +0.667,0.683,0.683,0,0,0,0,0.711,0.785,0.785,0,0,0.216 +0.667,0.57,0.57,0,0,0,0,0.748,0.747,0.747,0,0,0.0503 +0.667,0.434,0.434,0,0,0,0,0.729,0.722,0.722,0,0,0.451 +0.667,0.214,0.214,0,0,0,0,0.447,0.564,0.564,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.184,0.184,0,0,0,0,0.391,0.577,0.577,0,0,0.159 +0.667,0.337,0.337,0,0,0,0,0.403,0.697,0.697,0,0,0 +0.333,0.198,0.198,0,0,0,0,0.279,0.583,0.583,0,0,0 +0.333,0.194,0.194,0.25,0,0,0,0.284,0.583,0.583,0,0,0.0433 +0.333,0.187,0.187,0.517,0,0,0,0.288,0.589,0.589,0,0,0.26 +0.333,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0.0433 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.316,0.589,0.589,0,0,0.173 +0.333,0.198,0.198,0,0,0,0,0.321,0.602,0.602,0,0,0.13 +0.333,0.236,0.236,0,0,0,0,0.354,0.614,0.614,0,0,0.0433 +0.333,0.302,0.302,0,0,0,0,0.419,0.639,0.639,0,0,0.13 +0.333,0.363,0.363,0,0,0,0,0.465,0.646,0.646,0,0,0.13 +0.667,0.683,0.683,0,0,0,0,0.711,0.785,0.785,0,0,0.13 +0.667,0.57,0.57,0,0,0,0,0.748,0.747,0.747,0,0,0.0866 +0.667,0.242,0.242,0,0,0,0,0.493,0.595,0.595,0,0,0.173 +0.667,0.214,0.214,0,0,0,0,0.447,0.564,0.564,0,0,0.0433 +0.667,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.144 +1,0.153,0.153,0.5,0,0,0,0.372,0.545,0.545,0,0,0.225 +0.667,0.184,0.184,1,0,0,0,0.391,0.577,0.577,0,0,0 +0.333,0.05,0.05,0.05,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.346,0.346,0,0,0,0,0.3,0.697,0.697,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.31,0.697,0.697,0,0,0.13 +0.667,0.325,0.325,0,0,0,0,0.319,0.71,0.71,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0.0866 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0.0866 +0.333,0.184,0.184,0,0,0,0,0.316,0.589,0.589,0,0,0.0866 +0.333,0.198,0.198,0,0,0,0,0.321,0.602,0.602,0,0,0.0866 +0.333,0.236,0.236,0,0,0,0,0.354,0.614,0.614,0,0,0.13 +0.333,0.302,0.302,0,0,0,0,0.419,0.639,0.639,0.131,0,0.0433 +0.333,0.363,0.363,0.75,0.833,0,0,0.465,0.646,0.646,0.32,0,0.13 +0,0.05,0.05,0.0167,0.517,0.103,0,0.258,0.469,0.469,0,0,0.216 +0,0.05,0.05,0,0,0.379,0.533,0.258,0.469,0.469,0,0.384,0.303 +0.333,0.242,0.242,0,0,0,0,0.493,0.595,0.595,0,0.328,0.216 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.5,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0518,0.0518,0.267,0,0,0,0.326,0.514,0.514,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.116 +1,0.153,0.153,0,0,0,0,0.372,0.545,0.545,0,0,0.146 +1,0.319,0.319,0,0,0,0,0.524,0.685,0.685,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.33,0.583,0.583,0,0,0 +0.333,0.198,0.198,0,0,0,0,0.279,0.583,0.583,0,0,0.0433 +0.333,0.194,0.194,0,0,0,0,0.284,0.583,0.583,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0.13 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0.13 +0.333,0.184,0.184,0,0,0,0,0.316,0.589,0.589,0,0,0.0433 +0.333,0.198,0.198,0,0,0,0,0.321,0.602,0.602,0,0,0.0866 +0.333,0.236,0.236,0,0,0,0,0.354,0.614,0.614,0,0,0.216 +0.333,0.302,0.302,0,0,0,0,0.419,0.639,0.639,0,0,0.216 +0.333,0.363,0.363,0,0,0,0,0.465,0.646,0.646,0,0,0.303 +0.333,0.367,0.367,0,0,0,0,0.484,0.627,0.627,0,0,0.258 +0.667,0.57,0.57,0,0,0.483,0.633,0.748,0.747,0.747,0,0.221,0.217 +0.667,0.434,0.434,0,0,0,0.183,0.729,0.722,0.722,0,0.59,0 +0.667,0.378,0.378,0,0,0,0,0.636,0.659,0.659,0,0.216,0.214 +0.667,0.184,0.184,0,0,0,0,0.552,0.609,0.609,0,0,0.169 +0.667,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0.0804 +0.667,0.0583,0.0583,0,0,0,0,0.344,0.52,0.52,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.319,0.319,0,0,0,0,0.524,0.685,0.685,0,0,0 +1,0.337,0.337,0,0,0,0,0.403,0.697,0.697,0,0,0.0839 +0.333,0.198,0.198,0,0,0,0,0.279,0.583,0.583,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.284,0.583,0.583,0,0,0 +0.333,0.187,0.187,0.517,0,0,0,0.288,0.589,0.589,0,0,0.0866 +0.333,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0 +0.667,0.313,0.313,0,0,0,0,0.347,0.722,0.722,0,0,0.13 +0.333,0.184,0.184,0,0,0,0,0.316,0.589,0.589,0,0,0.13 +0.667,0.346,0.346,0,0,0,0,0.384,0.735,0.735,0,0,0.26 +0.667,0.421,0.421,0,0,0,0,0.449,0.76,0.76,0,0,0.649 +0.667,0.553,0.553,0,0,0,0,0.58,0.81,0.81,0,0,0 +1,0.988,0.988,0,0,0,0,0.881,1,1,0,0,0.0433 +0.667,0.683,0.683,0,0,0,0,0.711,0.785,0.785,0,0,0.216 +0.667,0.57,0.57,0,0,0,0,0.748,0.747,0.747,0,0,0.13 +0.667,0.434,0.434,0,0,0,0,0.729,0.722,0.722,0,0,0.0433 +0.667,0.378,0.378,0,0,0.483,0.133,0.636,0.659,0.659,0,0,0.26 +1,0.184,0.184,0,0,0,0.133,0.552,0.609,0.609,0,0.446,0.153 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0.153 +1,0.0583,0.0583,0,0,0,0,0.344,0.52,0.52,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.117 +1,0.153,0.153,0,0,0,0,0.372,0.545,0.545,0,0,0.0708 +1,0.184,0.184,0,0,0,0,0.391,0.577,0.577,0,0,0.143 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.224 +1,0.346,0.346,0,0,0,0,0.3,0.697,0.697,0,0,0.26 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.14 +0.667,0.187,0.187,0,0,0,0,0.288,0.589,0.589,0,0,0.199 +0.667,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0.139 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0.124 +0.667,0.318,0.318,0,0,0,0,0.375,0.71,0.71,0,0,0.245 +0.333,0.198,0.198,0,0,0,0,0.321,0.602,0.602,0,0,0.216 +0.333,0.236,0.236,0,0,0,0,0.354,0.614,0.614,0,0,0.173 +0.333,0.302,0.302,0,0,0,0,0.419,0.639,0.639,0,0,0.0433 +0.333,0.363,0.363,0,0,0,0,0.465,0.646,0.646,0,0,0.16 +0.333,0.367,0.367,0,0,0,0,0.484,0.627,0.627,0,0,0.283 +0.667,0.57,0.57,0,0,0,0,0.748,0.747,0.747,0,0,0.0433 +0.667,0.242,0.242,0,0.0833,0,0,0.493,0.595,0.595,0.602,0,0.157 +1,0.214,0.214,0,0.983,0,0,0.447,0.564,0.564,0.385,0,0.0866 +1,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0.0897,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.667,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.153,0.153,0.1,0,0,0,0.372,0.545,0.545,0,0,0 +1,0.184,0.184,0,0,0,0,0.391,0.577,0.577,0,0,0.307 +1,0.337,0.337,0,0,0,0,0.403,0.697,0.697,0,0,0.23 +0.667,0.198,0.198,0,0,0,0,0.279,0.583,0.583,0,0,0.174 +0.667,0.194,0.194,0,0,0,0,0.284,0.583,0.583,0,0,0 +0.667,0.187,0.187,0,0,0,0,0.288,0.589,0.589,0,0,0.0433 +0.667,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0.0433 +0.667,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0.422 +0.667,0.184,0.184,0,0,0,0,0.316,0.589,0.589,0,0,0.209 +0.667,0.198,0.198,0,0,0,0,0.321,0.602,0.602,0,0,0.312 +0.667,0.236,0.236,0,0,0,0,0.354,0.614,0.614,0,0,0.37 +0.667,0.553,0.553,0,0,0,0,0.58,0.81,0.81,0,0,0.26 +0.333,0.363,0.363,0,0,0,0,0.465,0.646,0.646,0,0,0.237 +0.667,0.683,0.683,0,0,0,0,0.711,0.785,0.785,0,0,0.216 +0.667,0.31,0.31,0,0,0,0,0.503,0.608,0.608,0,0,0.0433 +0.667,0.242,0.242,0,0,0,0,0.493,0.595,0.595,0,0,0.0433 +1,0.214,0.214,0,0,0,0,0.447,0.564,0.564,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0841,0.0841,0,0,0,0,0.34,0.52,0.52,0,0,0 +1,0.153,0.153,0,0,0,0,0.372,0.545,0.545,0,0,0.066 +1,0.184,0.184,0,0,0,0,0.391,0.577,0.577,0,0,0.348 +1,0.337,0.337,0,0,0,0,0.403,0.697,0.697,0,0,0.281 +1,0.495,0.495,0,0,0,0,0.322,0.811,0.811,0,0,0.261 +0.667,0.337,0.337,0,0,0,0,0.31,0.697,0.697,0,0,0.379 +0.333,0.187,0.187,0,0,0,0,0.288,0.589,0.589,0,0,0.0433 +0.333,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0.13 +0.333,0.184,0.184,0,0,0.483,0.55,0.316,0.589,0.589,0,0.135,0.0433 +0.667,0.346,0.346,0,0,0,0.267,0.384,0.735,0.735,0,0.368,0.352 +0.667,0.421,0.421,0,0,0,0,0.449,0.76,0.76,0,0.415,0.269 +0.667,0.553,0.553,0,0,0,0,0.58,0.81,0.81,0,0.688,0.417 +0.667,0.675,0.675,0,0,0,0,0.673,0.823,0.823,0,0.48,0.637 +1,1,1,0,0,0,0,0.937,0.943,0.943,0,0.394,0 +0.667,0.57,0.57,0,0,0,0,0.748,0.747,0.747,0,0.499,0.346 +0.667,0.434,0.434,0,0,0,0,0.729,0.722,0.722,0,0,0.13 +0.667,0.214,0.214,0,0,0,0,0.447,0.564,0.564,0,0,0.301 +1,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0509 +1,0.153,0.153,0,0,0,0,0.372,0.545,0.545,0,0,0.149 +1,0.319,0.319,0.767,0,0,0,0.524,0.685,0.685,0,0,0 +0.667,0.337,0.337,0,0,0.483,0.383,0.403,0.697,0.697,0,0.0117,0 +0.667,0.346,0.346,0,0,0,0.7,0.3,0.697,0.697,0,0.347,0.173 +0.667,0.337,0.337,0,0,0,0,0.31,0.697,0.697,0,0.228,0 +0.333,0.187,0.187,0.5,0,0,0,0.288,0.589,0.589,0,0,0.0433 +0.333,0.183,0.183,0.0167,0,0,0,0.284,0.595,0.595,0,0,0.0866 +0.667,0.313,0.313,0,0,0,0,0.347,0.722,0.722,0,0,0.0433 +0.667,0.318,0.318,0,0,0,0,0.375,0.71,0.71,0,0,0.0866 +0.667,0.198,0.198,0,0,0,0,0.321,0.602,0.602,0,0,0.13 +1,0.236,0.236,0,0,0,0,0.354,0.614,0.614,0,0,0.173 +0.667,0.302,0.302,0.25,0,0,0,0.419,0.639,0.639,0,0,0.13 +1,0.675,0.675,0,0,0,0,0.673,0.823,0.823,0,0,0.13 +0.667,0.683,0.683,0,0,0,0,0.711,0.785,0.785,0,0,0.26 +0.667,0.57,0.57,0,0,0,0,0.748,0.747,0.747,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.493,0.595,0.595,0,0,0.237 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.145 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.296 +1,0.255,0.255,1,0,0,0,0.487,0.622,0.622,0,0,0.231 +1,0.453,0.453,0.55,0,0,0,0.657,0.792,0.792,0,0,0.0887 +1,0.481,0.481,0,0,0,0,0.475,0.811,0.811,0,0,0.352 +0.333,0.198,0.198,0,0,0,0,0.279,0.583,0.583,0,0,0.13 +0.333,0.194,0.194,0,0,0,0,0.284,0.583,0.583,0,0,0.0433 +0.333,0.187,0.187,0,0,0,0,0.288,0.589,0.589,0,0,0.0866 +0.667,0.316,0.316,0,0,0,0,0.31,0.722,0.722,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.316,0.589,0.589,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.236,0.236,0.75,0,0,0,0.354,0.614,0.614,0,0,0.173 +0.333,0.302,0.302,1,0,0,0,0.419,0.639,0.639,0,0,0.0674 +0.667,0.675,0.675,0.05,0,0,0,0.673,0.823,0.823,0,0,0.13 +0.333,0.367,0.367,0,0,0,0,0.484,0.627,0.627,0,0,0.438 +0.667,0.57,0.57,0,0,0,0,0.748,0.747,0.747,0,0,0.491 +0.333,0.242,0.242,0,0,0,0,0.493,0.595,0.595,0,0,0.582 +1,0.541,0.541,0,0,0,0,0.825,0.755,0.755,0,0,0.32 +1,0.252,0.252,0,0,0,0,0.699,0.679,0.679,0,0,0.0979 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.198 +1,0.255,0.255,0.783,0,0,0,0.487,0.622,0.622,0,0,0.236 +1,0.453,0.453,0,0,0,0,0.657,0.792,0.792,0,0,0.365 +0.667,0.337,0.337,0,0,0,0,0.403,0.697,0.697,0,0,0.224 +0.667,0.346,0.346,0.25,0,0,0,0.3,0.697,0.697,0,0,0.192 +0.667,0.337,0.337,0,0,0,0,0.31,0.697,0.697,0,0,0.433 +0.333,0.187,0.187,0,0,0,0,0.288,0.589,0.589,0,0,0.563 +0.333,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0.346 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.236,0.236,0,0,0,0,0.354,0.614,0.614,0,0,0 +0.333,0.302,0.302,0,0,0,0,0.419,0.639,0.639,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.465,0.646,0.646,0,0,0 +0.333,0.367,0.367,0,0,0,0,0.484,0.627,0.627,0,0,0 +0.333,0.31,0.31,0,0,0,0,0.503,0.608,0.608,0,0,0.13 +0.667,0.434,0.434,0,0,0,0,0.729,0.722,0.722,0,0,0.26 +0.667,0.214,0.214,0,0,0,0,0.447,0.564,0.564,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.344,0.52,0.52,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.319,0.319,0,0,0,0,0.524,0.685,0.685,0,0,0.246 +0.667,0.337,0.337,0,0,0,0,0.403,0.697,0.697,0,0,0.15 +0.333,0.198,0.198,0,0,0,0,0.279,0.583,0.583,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.284,0.583,0.583,0,0,0.13 +0.333,0.187,0.187,0,0,0,0,0.288,0.589,0.589,0,0,0.173 +0.333,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0.0866 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0.519 +0.333,0.184,0.184,0,0,0,0,0.316,0.589,0.589,0,0,0.216 +0.333,0.198,0.198,0.25,0,0,0,0.321,0.602,0.602,0,0,0.173 +0.667,0.421,0.421,0,0,0,0,0.449,0.76,0.76,0,0,0 +0.333,0.302,0.302,0,0,0,0,0.419,0.639,0.639,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +0.333,0.242,0.242,0,0,0,0,0.493,0.595,0.595,0,0,0.0433 +0.667,0.214,0.214,0,0,0,0,0.447,0.564,0.564,0,0,0.239 +1,0.184,0.184,0,0,0,0,0.552,0.609,0.609,0,0,0.142 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0.15 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.192 +1,0.255,0.255,0,0,0,0,0.487,0.622,0.622,0,0,0.36 +1,0.453,0.453,0,0,0,0,0.657,0.792,0.792,0,0,0.0836 +1,0.481,0.481,0,0,0,0,0.475,0.811,0.811,0,0,0.376 +0.667,0.346,0.346,0,0,0,0,0.3,0.697,0.697,0,0,0.533 +0.333,0.194,0.194,0,0,0,0,0.284,0.583,0.583,0,0,0.157 +0.333,0.187,0.187,0.5,0.0833,0,0,0.288,0.589,0.589,0.389,0,0.0866 +0.667,0.316,0.316,0.267,0.983,0.483,0.383,0.31,0.722,0.722,0.122,0.0468,0 +0.667,0.313,0.313,0,0,0,0.7,0.347,0.722,0.722,0,0.477,0.0433 +0.667,0.318,0.318,0,0,0,0,0.375,0.71,0.71,0,0.484,0 +0.667,0.346,0.346,0,0,0,0,0.384,0.735,0.735,0,0.277,0.0866 +0.667,0.421,0.421,0,0,0,0,0.449,0.76,0.76,0,0,0.13 +1,0.553,0.553,0,0,0,0,0.58,0.81,0.81,0,0,0.389 +0.667,0.363,0.363,0,0,0,0,0.465,0.646,0.646,0,0,0.0866 +0.667,0.367,0.367,0,0,0,0,0.484,0.627,0.627,0,0,0.0866 +0.667,0.31,0.31,0,0,0,0,0.503,0.608,0.608,0,0,0.0866 +0.667,0.242,0.242,0,0,0,0,0.493,0.595,0.595,0,0,0.0866 +0.667,0.214,0.214,0,0,0,0,0.447,0.564,0.564,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0633 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.167,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.6,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.184,0.184,0,0,0,0,0.391,0.577,0.577,0,0,0 +0.667,0.337,0.337,0,0,0,0,0.403,0.697,0.697,0,0,0 +0.667,0.346,0.346,0,0,0,0,0.3,0.697,0.697,0,0,0.0433 +0.667,0.337,0.337,0,0,0,0,0.31,0.697,0.697,0,0,0.303 +0.667,0.325,0.325,0,0,0,0,0.319,0.71,0.71,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.182,0.182,0,0,0.448,0.05,0.302,0.595,0.595,0,0,0.0433 +0.667,0.318,0.318,0,0,0.0345,1,0.375,0.71,0.71,0,0.363,0.0866 +1,0.494,0.494,0,0,0,1,0.447,0.868,0.868,0,0,0 +0.333,0.236,0.236,0,0,0,0.117,0.354,0.614,0.614,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.333,0.367,0.367,0.417,0,0,0,0.484,0.627,0.627,0,0,0.0433 +0.333,0.31,0.31,1,0,0,0,0.503,0.608,0.608,0.274,0,0 +1,0.626,0.626,0.383,1,0.483,0.267,0.965,0.849,0.849,0.389,0.0182,0 +1,0.378,0.378,0,0.35,0,0,0.636,0.659,0.659,0,0.492,0 +1,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0.343,0 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0.157 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.667,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.153,0.153,0.1,0,0,0,0.372,0.545,0.545,0,0,0.198 +1,0.319,0.319,0,0,0,0,0.524,0.685,0.685,0,0,0.199 +0.667,0.337,0.337,0,0,0,0,0.403,0.697,0.697,0,0,0.205 +0.333,0.198,0.198,0,0,0,0,0.279,0.583,0.583,0,0,0.295 +0.333,0.194,0.194,0.417,0,0,0,0.284,0.583,0.583,0,0,0.35 +0.333,0.187,0.187,0.1,0,0,0,0.288,0.589,0.589,0,0,0.0433 +0.333,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0.13 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0.173 +0.333,0.184,0.184,0,0,0,0,0.316,0.589,0.589,0,0,0.216 +0.667,0.346,0.346,0,0,0,0,0.384,0.735,0.735,0,0,0.173 +0.667,0.421,0.421,0,0,0,0,0.449,0.76,0.76,0,0,0 +0.333,0.302,0.302,0,0,0,0,0.419,0.639,0.639,0,0,0.0673 +0.333,0.363,0.363,0,0,0,0,0.465,0.646,0.646,0,0,0.18 +0.667,0.683,0.683,0,0,0,0,0.711,0.785,0.785,0,0,0.216 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.195 +0.667,0.242,0.242,0,0,0,0,0.493,0.595,0.595,0,0,0.216 +1,0.214,0.214,0,0,0,0,0.447,0.564,0.564,0,0,0.102 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0834 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.153 +0.667,0.184,0.184,0,0,0,0,0.391,0.577,0.577,0,0,0.275 +0.333,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.198,0.198,0,0,0,0,0.279,0.583,0.583,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.284,0.583,0.583,0,0,0.0433 +0.333,0.187,0.187,0,0,0,0,0.288,0.589,0.589,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.31,0.722,0.722,0,0,0 +0.333,0.182,0.182,0.25,0,0,0,0.302,0.595,0.595,0,0,0 +0.333,0.184,0.184,0.267,0,0,0,0.316,0.589,0.589,0,0,0 +0.667,0.346,0.346,0,0,0,0,0.384,0.735,0.735,0,0,0.0433 +0.667,0.421,0.421,0,0,0,0,0.449,0.76,0.76,0,0,0.433 +0.667,0.553,0.553,0,0,0,0,0.58,0.81,0.81,0,0,0.236 +1,0.988,0.988,0,0.0833,0,0,0.881,1,1,0.495,0,0.244 +1,1,1,0,0.983,0,0,0.937,0.943,0.943,0.4,0,0.303 +0.667,0.57,0.57,0,0,0,0,0.748,0.747,0.747,0,0,0.173 +0.667,0.434,0.434,0,0,0,0,0.729,0.722,0.722,0,0,0.289 +1,0.378,0.378,0,0,0,0,0.636,0.659,0.659,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0518,0.0518,0,0,0,0,0.326,0.514,0.514,0,0,0 +1,0.0841,0.0841,0,0,0,0,0.34,0.52,0.52,0,0,0 +0.667,0.153,0.153,0,0,0,0,0.372,0.545,0.545,0,0,0.14 +0.667,0.319,0.319,0.5,0,0,0,0.524,0.685,0.685,0,0,0.275 +0.333,0.194,0.194,0.533,0,0,0,0.33,0.583,0.583,0,0,0.674 +0.667,0.346,0.346,0,0.583,0,0,0.3,0.697,0.697,0.634,0,0.274 +0.333,0.194,0.194,0,0.483,0,0,0.284,0.583,0.583,0,0,0.38 +0.333,0.187,0.187,0,0,0,0,0.288,0.589,0.589,0,0,0.223 +0.333,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.236,0.236,0,0,0,0,0.354,0.614,0.614,0,0,0 +0.333,0.302,0.302,0,0,0,0,0.419,0.639,0.639,0,0,0.0433 +0.333,0.363,0.363,0,0,0,0,0.465,0.646,0.646,0,0,0 +0.667,0.683,0.683,0,0,0,0,0.711,0.785,0.785,0,0,0.389 +0.667,0.57,0.57,0,0,0,0,0.748,0.747,0.747,0,0,0.0866 +1,0.626,0.626,0,0,0,0,0.965,0.849,0.849,0,0,0 +1,0.378,0.378,0,0,0,0,0.636,0.659,0.659,0,0,0.123 +1,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0.168 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0.36 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0958 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.101 +1,0.153,0.153,0,0.0833,0,0,0.372,0.545,0.545,0.53,0,0 +1,0.184,0.184,0,0.983,0,0,0.391,0.577,0.577,0.216,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.198,0.198,0,0,0,0,0.279,0.583,0.583,0,0,0.13 +0.333,0.194,0.194,0,0,0,0,0.284,0.583,0.583,0,0,0.26 +0.333,0.187,0.187,0,0,0,0,0.288,0.589,0.589,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0.0866 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.174 +0.333,0.236,0.236,0.25,0,0,0,0.354,0.614,0.614,0,0,0.216 +0.333,0.302,0.302,0,0,0,0,0.419,0.639,0.639,0,0,0 +0.667,0.675,0.675,0,0,0,0,0.673,0.823,0.823,0,0,0.13 +0.333,0.367,0.367,0,0,0,0,0.484,0.627,0.627,0,0,0.303 +0.333,0.31,0.31,0,0,0,0,0.503,0.608,0.608,0,0,0.0866 +0.667,0.434,0.434,0,0,0,0,0.729,0.722,0.722,0,0,0.13 +0.667,0.378,0.378,0,0,0,0,0.636,0.659,0.659,0,0,0.173 +0.667,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0.483,0.383,0.258,0.469,0.469,0,0.078,0 +1,0.0841,0.0841,0,0,0,0.7,0.34,0.52,0.52,0,0.172,0 +1,0.358,0.358,0,0,0,0,0.601,0.698,0.698,0,0.564,0.147 +1,0.453,0.453,0,0,0,0,0.657,0.792,0.792,0,0.33,0.0327 +1,0.481,0.481,0.5,0,0,0,0.475,0.811,0.811,0,0.482,0 +0.667,0.346,0.346,0.267,0,0,0,0.3,0.697,0.697,0,0,0.0866 +0.667,0.337,0.337,0,0,0,0,0.31,0.697,0.697,0,0,0.173 +0.667,0.325,0.325,0,0.333,0,0,0.319,0.71,0.71,0.473,0,0.346 +0.667,0.316,0.316,0,1,0,0,0.31,0.722,0.722,0.455,0,0.0433 +0.667,0.313,0.313,0,0.0167,0,0,0.347,0.722,0.722,0.718,0,0.216 +0.333,0.184,0.184,0,0,0,0,0.316,0.589,0.589,0,0,0.27 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0.238,0,0 +0.333,0.236,0.236,0,0.833,0,0,0.354,0.614,0.614,0.68,0,0.173 +0.333,0.302,0.302,0,0.233,0,0,0.419,0.639,0.639,0.663,0,0.264 +0.667,0.675,0.675,0,0,0,0,0.673,0.823,0.823,0.687,0,0.413 +0.667,0.683,0.683,0,0,0,0,0.711,0.785,0.785,0.591,0,0.13 +0.667,0.57,0.57,0,0,0,0,0.748,0.747,0.747,0.462,0,0.303 +0.667,0.434,0.434,0,0,0,0,0.729,0.722,0.722,0.392,0,0.0433 +1,0.541,0.541,0,0,0,0,0.825,0.755,0.755,0,0,0.384 +1,0.252,0.252,0,0,0,0,0.699,0.679,0.679,0,0,0.156 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0.14 +1,0.0583,0.0583,0,0,0,0,0.344,0.52,0.52,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.271 +1,0.153,0.153,0,0,0,0,0.372,0.545,0.545,0,0,0.293 +1,0.319,0.319,0,0,0,0,0.524,0.685,0.685,0,0,0.19 +1,0.481,0.481,0,0,0.483,0.383,0.475,0.811,0.811,0,0.0754,0.525 +1,0.495,0.495,0,0,0,0.15,0.322,0.811,0.811,0,0.286,0.173 +1,0.481,0.481,0,0.583,0,0,0.336,0.811,0.811,0.586,0.176,0 +1,0.463,0.463,0,0.483,0,0,0.35,0.83,0.83,0.674,0,0.173 +0.667,0.316,0.316,0,0,0,0,0.31,0.722,0.722,0,0,0.0433 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.316,0.589,0.589,0,0,0 +0.333,0.198,0.198,0,0,0,0,0.321,0.602,0.602,0,0,0.0433 +0.333,0.236,0.236,0,0,0,0,0.354,0.614,0.614,0,0,0.0433 +0.333,0.302,0.302,0,0,0,0,0.419,0.639,0.639,0,0,0.173 +0.333,0.363,0.363,0.25,0,0,0,0.465,0.646,0.646,0,0,0.13 +0.333,0.367,0.367,0,0,0,0,0.484,0.627,0.627,0,0,0.13 +0.333,0.31,0.31,0,0,0,0,0.503,0.608,0.608,0,0,0.3 +1,0.626,0.626,0,0,0,0,0.965,0.849,0.849,0,0,0.446 +1,0.378,0.378,0,0,0,0,0.636,0.659,0.659,0,0,0.216 +1,0.184,0.184,0,0,0,0,0.552,0.609,0.609,0,0,0.0866 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.153,0.153,0,0,0,0,0.372,0.545,0.545,0,0,0 +1,0.319,0.319,0,0,0.483,0.533,0.524,0.685,0.685,0,0.0559,0.242 +1,0.481,0.481,0,0,0,0,0.475,0.811,0.811,0,0.675,0 +0.667,0.346,0.346,0,0,0,0,0.3,0.697,0.697,0,0.568,0.328 +1,0.481,0.481,0.167,0.25,0,0,0.336,0.811,0.811,0.454,0,0.145 +1,0.463,0.463,0.867,0.817,0,0,0.35,0.83,0.83,0.347,0,0.21 +1,0.449,0.449,0,0,0,0,0.336,0.849,0.849,0,0,0.242 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.316,0.589,0.589,0,0,0 +0.333,0.198,0.198,0,0,0,0,0.321,0.602,0.602,0,0,0.433 +0.333,0.236,0.236,0,0,0,0,0.354,0.614,0.614,0,0,0.216 +0.333,0.302,0.302,0,0,0,0,0.419,0.639,0.639,0,0,0.13 +0.333,0.363,0.363,0,0,0,0,0.465,0.646,0.646,0,0,0.13 +0.667,0.683,0.683,0,0,0,0,0.711,0.785,0.785,0,0,0.13 +0.667,0.57,0.57,0,0,0,0,0.748,0.747,0.747,0,0,0 +0.667,0.434,0.434,0,0,0,0,0.729,0.722,0.722,0,0,0.0688 +0.667,0.214,0.214,0,0,0,0,0.447,0.564,0.564,0,0,0.191 +0.667,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0.209 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0.0853 +1,0.0583,0.0583,0,0,0,0,0.344,0.52,0.52,0,0,0.196 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.184,0.184,0,0,0,0,0.391,0.577,0.577,0,0,0.131 +1,0.337,0.337,0,0,0,0,0.403,0.697,0.697,0,0,0.0711 +0.667,0.346,0.346,0,0,0,0,0.3,0.697,0.697,0,0,0 +0.333,0.194,0.194,0,0,0,0,0.284,0.583,0.583,0,0,0.0918 +0.667,0.325,0.325,0,0,0,0,0.319,0.71,0.71,0,0,0.342 +0.333,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0.185 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0.173 +0.667,0.318,0.318,0,0,0,0,0.375,0.71,0.71,0,0,0.216 +0.667,0.346,0.346,0,0,0,0,0.384,0.735,0.735,0,0,0.173 +0.333,0.236,0.236,0,0,0,0,0.354,0.614,0.614,0,0,0.216 +0.333,0.302,0.302,0.767,0,0,0,0.419,0.639,0.639,0,0,0.346 +0.667,0.675,0.675,0,0,0,0,0.673,0.823,0.823,0,0,0.13 +0.667,0.683,0.683,0,0,0,0,0.711,0.785,0.785,0,0,0.13 +0.667,0.57,0.57,0,0,0,0,0.748,0.747,0.747,0,0,0.26 +0.667,0.434,0.434,0,0,0,0,0.729,0.722,0.722,0,0,0.115 +0.667,0.214,0.214,0,0,0,0,0.447,0.564,0.564,0,0,0.126 +0.667,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0.19 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.344,0.52,0.52,0,0,0.303 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.149 +0.667,0.153,0.153,0.25,0,0,0,0.372,0.545,0.545,0,0,0.149 +0.667,0.184,0.184,0,0,0,0,0.391,0.577,0.577,0,0,0 +0.667,0.194,0.194,0,0,0,0,0.33,0.583,0.583,0,0,0 +0.667,0.346,0.346,0,0,0,0,0.3,0.697,0.697,0,0,0.472 +0.667,0.337,0.337,0,0,0,0,0.31,0.697,0.697,0,0,0.269 +0.333,0.187,0.187,0,0,0,0,0.288,0.589,0.589,0,0,0.114 +0.333,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0.471 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.184,0.184,1,0,0,0,0.316,0.589,0.589,0,0,0.0866 +0.667,0.346,0.346,0.55,0,0,0,0.384,0.735,0.735,0,0,0.173 +0.667,0.421,0.421,0.25,0,0,0,0.449,0.76,0.76,0,0,0.13 +1,0.805,0.805,0,0,0,0,0.741,0.981,0.981,0,0,0.389 +0.333,0.363,0.363,0,0,0,0,0.465,0.646,0.646,0,0,0.303 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.24 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.242,0.242,0,0,0,0,0.493,0.595,0.595,0,0,0.0813 +0.667,0.214,0.214,0,0,0,0,0.447,0.564,0.564,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.12 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.184,0.184,0,0,0,0,0.391,0.577,0.577,0,0,0.196 +0.667,0.194,0.194,0,0,0,0,0.33,0.583,0.583,0,0,0 +0.667,0.198,0.198,0,0,0,0,0.279,0.583,0.583,0,0,0.0941 +0.667,0.337,0.337,0,0,0,0,0.31,0.697,0.697,0,0,0.0961 +0.667,0.325,0.325,0,0.0833,0,0,0.319,0.71,0.71,0.521,0,0.545 +0.667,0.316,0.316,0,1,0,0,0.31,0.722,0.722,0.527,0,0.291 +0.667,0.313,0.313,0,0.8,0,0,0.347,0.722,0.722,0.751,0,0.0866 +0.667,0.318,0.318,0,0,0,0,0.375,0.71,0.71,0.639,0,0.216 +0.667,0.346,0.346,0,0,0,0,0.384,0.735,0.735,0.11,0,0.13 +0.667,0.421,0.421,0,0,0,0,0.449,0.76,0.76,0,0,0.0433 +0.333,0.302,0.302,0.767,0,0,0,0.419,0.639,0.639,0,0,0.216 +0.333,0.363,0.363,0,0,0,0,0.465,0.646,0.646,0,0,0.303 +0.333,0.367,0.367,0,0,0,0,0.484,0.627,0.627,0,0,0.216 +0.333,0.31,0.31,0,0,0,0,0.503,0.608,0.608,0,0,0.173 +0.667,0.434,0.434,0,0,0,0,0.729,0.722,0.722,0,0,0.0433 +1,0.541,0.541,0,0,0,0,0.825,0.755,0.755,0,0,0.0433 +1,0.184,0.184,0,0,0,0,0.552,0.609,0.609,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.145 +1,0.153,0.153,0.25,0,0.103,0,0.372,0.545,0.545,0,0,0.128 +1,0.319,0.319,0,0,0.379,0.883,0.524,0.685,0.685,0,0.194,0.27 +1,0.337,0.337,0,0,0,0.467,0.403,0.697,0.697,0,0.692,0.127 +1,0.346,0.346,0,0,0,0,0.3,0.697,0.697,0,0.341,0.106 +1,0.337,0.337,0,0,0,0,0.31,0.697,0.697,0,0,0.171 +0.667,0.187,0.187,0,0,0,0,0.288,0.589,0.589,0,0,0.303 +0.333,0.183,0.183,0,0,0,0,0.284,0.595,0.595,0,0,0.13 +0.333,0.182,0.182,0,0,0,0,0.302,0.595,0.595,0,0,0 +0.333,0.184,0.184,0,0,0,0,0.316,0.589,0.589,0,0,0.303 +0.667,0.198,0.198,0,0,0,0,0.321,0.602,0.602,0.0847,0,0.233 +0.667,0.421,0.421,0,0.833,0,0,0.449,0.76,0.76,0.543,0,0.136 +0.333,0.302,0.302,0.5,0.233,0,0,0.419,0.639,0.639,0,0,0.0866 +0.667,0.675,0.675,0.783,0,0,0,0.673,0.823,0.823,0,0,0.0866 +0.333,0.367,0.367,0,0,0,0,0.484,0.627,0.627,0,0,0.216 +0.333,0.31,0.31,0,0,0,0,0.503,0.608,0.608,0,0,0.0433 +0.667,0.242,0.242,0,0,0,0,0.493,0.595,0.595,0,0,0.173 +0.667,0.214,0.214,0,0,0,0,0.447,0.564,0.564,0,0,0.189 +0.667,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0.0722 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.346,0.521,0.521,0,0,0 +1,0.05,0.05,0,0,0,0,0.346,0.515,0.515,0,0,0 +1,0.05,0.05,0,0,0,0,0.341,0.509,0.509,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0813 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.101 +0.333,0.185,0.185,0,0,0,0,0.289,0.591,0.591,0,0,0.364 +0.333,0.18,0.18,0,0,0,0,0.284,0.598,0.598,0,0,0.0935 +0.333,0.179,0.179,0,0,0,0,0.303,0.598,0.598,0,0,0.128 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0.0927 +0.333,0.187,0.187,0,0,0,0,0.322,0.604,0.604,0,0,0.302 +0.333,0.21,0.21,0,0,0,0,0.355,0.617,0.617,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0.517,0.517,0.258,0.469,0.469,0,0.382,0.0866 +0.667,0.676,0.676,0,0,0,0,0.715,0.79,0.79,0,0.531,0.306 +0.667,0.631,0.631,0,0,0,0,0.753,0.752,0.752,0,0,0.0787 +0.667,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0,0.22 +0.667,0.446,0.446,0,0,0,0,0.64,0.663,0.663,0,0,0.0884 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0901 +1,0.0749,0.0749,0,0,0,0,0.36,0.534,0.534,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.183,0.183,0,0,0,0,0.392,0.579,0.579,0,0,0.65 +1,0.333,0.333,0,0,0,0,0.405,0.701,0.701,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.191,0.191,0,0,0,0,0.284,0.585,0.585,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.289,0.591,0.591,0,0,0.346 +0.333,0.18,0.18,0,0,0,0,0.284,0.598,0.598,0,0,0.173 +0.333,0.179,0.179,0.2,0,0,0,0.303,0.598,0.598,0,0,0.0866 +0,0.05,0.05,0.3,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.325,0.325,0,0,0,0,0.386,0.739,0.739,0,0,0.0866 +0.333,0.21,0.21,0,0,0,0,0.355,0.617,0.617,0,0,0 +0.333,0.26,0.26,0,0,0,0,0.421,0.642,0.642,0,0,0.231 +0.333,0.325,0.325,0,0,0,0,0.468,0.648,0.648,0,0,0.357 +0.667,0.676,0.676,0,0,0,0,0.715,0.79,0.79,0,0,0.266 +1,0.631,0.631,0,0,0,0,0.753,0.752,0.752,0,0,0.13 +1,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0,0.106 +1,0.248,0.248,0,0,0,0,0.449,0.566,0.566,0,0,0 +1,0.117,0.117,0,0,0,0,0.407,0.54,0.54,0,0,0.508 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0836,0.0836,0,0,0,0,0.341,0.521,0.521,0,0,0 +1,0.151,0.151,0.5,0,0,0,0.374,0.547,0.547,0,0,0 +1,0.316,0.316,0,0,0.379,0,0.527,0.688,0.688,0,0,0 +0.667,0.333,0.333,0,0,0.138,1,0.405,0.701,0.701,0,0.545,0 +0.667,0.34,0.34,0,0,0,0.05,0.302,0.701,0.701,0,0.711,0.0433 +1,0.472,0.472,0,0,0,0,0.338,0.817,0.817,0,0.112,0.173 +0.333,0.185,0.185,0.5,0,0,0,0.289,0.591,0.591,0,0,0 +0.667,0.31,0.31,0,0,0.379,0,0.311,0.726,0.726,0,0,0 +0.667,0.308,0.308,0,0,0.138,0.783,0.349,0.726,0.726,0,0.359,0.13 +0.667,0.31,0.31,0,0,0,0,0.377,0.714,0.714,0,0.33,0.0866 +0.333,0.187,0.187,0,0,0,0,0.322,0.604,0.604,0,0.438,0.519 +0.333,0.21,0.21,0.25,0,0,0,0.355,0.617,0.617,0,0.589,0.173 +0.333,0.26,0.26,0,0.467,0,0,0.421,0.642,0.642,0.742,0,0.0433 +0.667,0.601,0.601,0,0.583,0,0,0.677,0.828,0.828,0,0,0.13 +0.667,0.676,0.676,0,0,0,0,0.715,0.79,0.79,0,0,0.303 +0.667,0.34,0.34,0,0,0,0,0.505,0.61,0.61,0,0,0.224 +0.667,0.278,0.278,0,0,0,0,0.496,0.598,0.598,0,0,0.141 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.163 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.183,0.183,0,0,0,0,0.392,0.579,0.579,0,0,0.144 +0.667,0.191,0.191,0,0,0,0,0.331,0.585,0.585,0,0,0.0768 +0.667,0.34,0.34,0,0,0,0,0.302,0.701,0.701,0,0,0.156 +1,0.472,0.472,0,0,0,0,0.338,0.817,0.817,0,0,0.228 +0.667,0.319,0.319,0,0.217,0,0,0.321,0.714,0.714,0.389,0,0 +0.333,0.18,0.18,0,0.833,0,0,0.284,0.598,0.598,0.587,0,0 +0.667,0.179,0.179,0,0,0,0,0.303,0.598,0.598,0.729,0,0.216 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0.273,0,0.0433 +0.333,0.05,0.05,0.633,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.21,0.21,0.383,0,0,0,0.355,0.617,0.617,0,0,0.0433 +0.667,0.47,0.47,0,0,0,0,0.584,0.815,0.815,0,0,0.0433 +0.667,0.601,0.601,0,0,0,0,0.677,0.828,0.828,0,0,0.121 +0.667,0.676,0.676,0,0,0,0,0.715,0.79,0.79,0,0,0 +0.667,0.631,0.631,0,0,0,0,0.753,0.752,0.752,0,0,0.13 +0.667,0.278,0.278,0,0,0,0,0.496,0.598,0.598,0,0,0.397 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.111 +1,0.151,0.151,0,0,0,0,0.374,0.547,0.547,0,0,0.229 +1,0.183,0.183,0,0,0,0,0.392,0.579,0.579,0,0,0.103 +1,0.333,0.333,0,0,0,0,0.405,0.701,0.701,0,0,0.959 +1,0.485,0.485,0,0,0,0,0.324,0.817,0.817,0,0,0.282 +0.667,0.331,0.331,0,0,0,0,0.311,0.701,0.701,0,0,0.537 +0.667,0.319,0.319,0,0,0,0,0.321,0.714,0.714,0,0,0.13 +0.667,0.31,0.31,0,0,0,0,0.311,0.726,0.726,0,0,0.0866 +0.667,0.179,0.179,0,0,0,0,0.303,0.598,0.598,0,0,0.0433 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0 +0.333,0.187,0.187,0.95,0,0,0,0.322,0.604,0.604,0,0,0.0433 +0.333,0.21,0.21,0.317,0,0,0,0.355,0.617,0.617,0,0,0.0433 +0.333,0.26,0.26,0,0,0,0,0.421,0.642,0.642,0,0,0.0866 +0.333,0.325,0.325,0,0,0,0,0.468,0.648,0.648,0,0,0.13 +0.333,0.363,0.363,0,0,0,0,0.486,0.629,0.629,0,0,0.0433 +0.333,0.34,0.34,0,0,0,0,0.505,0.61,0.61,0,0,0.0433 +0.667,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0,0 +0.667,0.248,0.248,0,0,0,0,0.449,0.566,0.566,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.347 +1,0.253,0.253,0,0,0,0,0.49,0.625,0.625,0,0,0.364 +1,0.449,0.449,0.45,0,0,0,0.662,0.798,0.798,0,0,0.168 +1,0.474,0.474,0.05,0,0,0,0.479,0.817,0.817,0,0,0.186 +0.667,0.34,0.34,0,0,0,0,0.302,0.701,0.701,0,0,0.303 +0.333,0.191,0.191,0,0,0,0,0.284,0.585,0.585,0,0,0.0433 +0.333,0.185,0.185,0,0,0,0,0.289,0.591,0.591,0,0,0.0433 +0.333,0.18,0.18,0,0,0,0,0.284,0.598,0.598,0,0,0 +0.333,0.179,0.179,0,0,0,0,0.303,0.598,0.598,0,0,0.0433 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0.216 +0.333,0.187,0.187,0,0,0,0,0.322,0.604,0.604,0,0,0 +0.333,0.21,0.21,0,0,0,0,0.355,0.617,0.617,0,0,0.173 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.325,0.325,0,0,0,0,0.468,0.648,0.648,0,0,0.303 +0.333,0.363,0.363,0,0,0,0,0.486,0.629,0.629,0,0,0.13 +0.667,0.631,0.631,0,0,0,0,0.753,0.752,0.752,0,0,0 +0.667,0.278,0.278,0,0.533,0,0,0.496,0.598,0.598,0.582,0,0.0433 +1,0.446,0.446,0,0.783,0,0,0.64,0.663,0.663,0,0,0.164 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.172 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.151,0.151,0,0,0,0,0.374,0.547,0.547,0,0,0.111 +0.667,0.316,0.316,0,0,0,0,0.527,0.688,0.688,0,0,0.129 +0.333,0.191,0.191,0,0,0,0,0.331,0.585,0.585,0,0,0 +0.333,0.195,0.195,0,0,0,0,0.28,0.585,0.585,0,0,0.0866 +0.333,0.191,0.191,0,0,0,0,0.284,0.585,0.585,0,0,0.303 +0.333,0.185,0.185,0,0,0,0,0.289,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.284,0.598,0.598,0,0,0.0866 +0.667,0.308,0.308,0,0,0,0,0.349,0.726,0.726,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0.0433 +0.333,0.187,0.187,0,0,0,0,0.322,0.604,0.604,0,0,0.173 +0.333,0.21,0.21,0,0,0,0,0.355,0.617,0.617,0,0,0.0866 +0.333,0.26,0.26,0,0,0,0,0.421,0.642,0.642,0,0,0.0866 +0.333,0.325,0.325,0,0,0.517,0.0667,0.468,0.648,0.648,0,0,0.0433 +0.667,0.676,0.676,0,0,0,0.983,0.715,0.79,0.79,0,0.398,0.303 +0.667,0.631,0.631,0,0,0,0,0.753,0.752,0.752,0,0.161,0.0866 +0.667,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0,0 +0.667,0.446,0.446,0,0,0,0,0.64,0.663,0.663,0,0,0.0866 +0.667,0.117,0.117,0,0,0,0,0.407,0.54,0.54,0,0,0 +0.667,0.0749,0.0749,0,0,0,0,0.36,0.534,0.534,0,0,0.0927 +1,0.0583,0.0583,0,0,0,0,0.346,0.521,0.521,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.152 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0.45,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.191,0.191,1,0,0,0,0.284,0.585,0.585,0,0,0.0433 +0.333,0.185,0.185,0.0833,0,0,0,0.289,0.591,0.591,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.284,0.598,0.598,0,0,0 +0.667,0.179,0.179,0,0,0,0,0.303,0.598,0.598,0,0,0.0433 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0.173 +0.333,0.187,0.187,0,0,0,0,0.322,0.604,0.604,0,0,0.26 +0.333,0.21,0.21,0,0,0,0,0.355,0.617,0.617,0,0,0.0433 +0.333,0.26,0.26,0,0,0,0,0.421,0.642,0.642,0,0,0.26 +0.333,0.325,0.325,0.5,0,0,0,0.468,0.648,0.648,0,0,0.0433 +0.667,0.676,0.676,0,0,0.517,0.817,0.715,0.79,0.79,0,0.22,0.216 +0.667,0.631,0.631,0,0,0,0.233,0.753,0.752,0.752,0,0.649,0.0433 +0.667,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0.401,0.277 +1,0.644,0.644,0,0,0,0,0.831,0.76,0.76,0,0,0 +1,0.184,0.184,0,0,0,0,0.555,0.612,0.612,0,0,0.0866 +1,0.0749,0.0749,0,0,0,0,0.36,0.534,0.534,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.346,0.521,0.521,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.183,0.183,0,0,0,0,0.392,0.579,0.579,0,0,0 +1,0.333,0.333,0.95,0,0,0,0.405,0.701,0.701,0,0,0 +0.667,0.34,0.34,1,0,0,0,0.302,0.701,0.701,0,0,0 +0.667,0.331,0.331,0.1,0,0,0,0.311,0.701,0.701,0,0,0.0433 +0.333,0.185,0.185,0,0,0,0,0.289,0.591,0.591,0,0,0.216 +0.333,0.18,0.18,0,0,0,0,0.284,0.598,0.598,0,0,0.0866 +0.333,0.179,0.179,0,0,0,0,0.303,0.598,0.598,0,0,0.173 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0.303 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.333,0.325,0.325,0,0,0,0,0.468,0.648,0.648,0,0,0.168 +0.667,0.676,0.676,0,0,0,0,0.715,0.79,0.79,0,0,0.091 +1,0.631,0.631,0,0,0,0,0.753,0.752,0.752,0,0,0 +1,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0,0.155 +1,0.446,0.446,0,0,0,0,0.64,0.663,0.663,0,0,0.21 +1,0.117,0.117,0,0,0,0,0.407,0.54,0.54,0,0,0.016 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.183,0.183,0,0,0,0,0.392,0.579,0.579,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.195,0.195,0,0,0,0,0.28,0.585,0.585,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.183 +0.667,0.319,0.319,0,0,0,0,0.321,0.714,0.714,0,0,0.124 +0.333,0.18,0.18,0.5,0,0,0,0.284,0.598,0.598,0,0,0.182 +0.667,0.308,0.308,0,0,0,0,0.349,0.726,0.726,0,0,0.214 +0.667,0.31,0.31,0,0,0,0,0.377,0.714,0.714,0,0,0.419 +1,0.462,0.462,0,0,0,0,0.451,0.874,0.874,0,0,0.13 +0.333,0.21,0.21,0,0,0,0,0.355,0.617,0.617,0,0,0.303 +0.333,0.26,0.26,0,0,0,0,0.421,0.642,0.642,0,0,0.173 +0.333,0.325,0.325,0,0,0,0,0.468,0.648,0.648,0,0,0.173 +0.667,0.676,0.676,0,0,0,0,0.715,0.79,0.79,0,0,0.0866 +1,0.921,0.921,0,0,0,0,1,0.893,0.893,0,0,0.123 +1,0.734,0.734,0,0,0,0,0.972,0.855,0.855,0,0,0.461 +1,0.446,0.446,0,0,0,0,0.64,0.663,0.663,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0.883,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.183,0.183,0.133,0,0,0,0.392,0.579,0.579,0.112,0,0 +0.667,0.191,0.191,0,0.717,0,0,0.331,0.585,0.585,0.711,0,0.345 +0.667,0.34,0.34,0,0.6,0,0,0.302,0.701,0.701,0.739,0,0.293 +0.667,0.331,0.331,0,0,0,0,0.311,0.701,0.701,0.662,0,0.283 +1,0.454,0.454,0,0,0,0,0.352,0.836,0.836,0.597,0,0 +0.667,0.31,0.31,0,0,0,0,0.311,0.726,0.726,0.691,0,0.598 +0.667,0.308,0.308,0,0,0,0,0.349,0.726,0.726,0.438,0,0.26 +0.333,0.18,0.18,0.633,0,0.517,0.5,0.317,0.591,0.591,0,0.151,0 +0.667,0.325,0.325,0.133,0,0,0.55,0.386,0.739,0.739,0,0.459,0.13 +1,0.531,0.531,0,0.467,0,0,0.549,0.912,0.912,0.547,0.311,0.13 +0.667,0.47,0.47,0,0.583,0,0,0.584,0.815,0.815,0,0,0.0433 +0.667,0.601,0.601,0,0,0.379,0,0.677,0.828,0.828,0,0,0.205 +0.667,0.676,0.676,0,0,0.138,0.517,0.715,0.79,0.79,0,0.199,0.178 +1,0.34,0.34,0,0,0,0,0.505,0.61,0.61,0,0,0.13 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.2,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.316,0.316,0.567,0,0,0,0.527,0.688,0.688,0,0,0.132 +1,0.474,0.474,0.5,0,0,0,0.479,0.817,0.817,0,0,0.393 +1,0.485,0.485,0,0,0,0,0.324,0.817,0.817,0,0,0.509 +0.667,0.331,0.331,0,0,0,0,0.311,0.701,0.701,0,0,0.264 +0.333,0.185,0.185,0,0,0,0,0.289,0.591,0.591,0,0,0.532 +0.333,0.18,0.18,0,0,0,0,0.284,0.598,0.598,0,0,0.181 +0.667,0.308,0.308,0,0,0,0,0.349,0.726,0.726,0,0,0.287 +0.667,0.31,0.31,0,0,0,0,0.377,0.714,0.714,0,0,0.13 +0.667,0.325,0.325,0,0,0,0,0.386,0.739,0.739,0,0,0 +0.333,0.21,0.21,0,0,0,0,0.355,0.617,0.617,0,0,0.0433 +0.333,0.26,0.26,0.767,0,0,0,0.421,0.642,0.642,0,0,0 +0.333,0.325,0.325,0,0,0,0,0.468,0.648,0.648,0,0,0.0433 +0.333,0.363,0.363,0,0,0,0,0.486,0.629,0.629,0.168,0,0.13 +0.667,0.631,0.631,0,0.783,0,0,0.753,0.752,0.752,0.529,0,0.0433 +0.333,0.278,0.278,0,0.533,0,0,0.496,0.598,0.598,0,0,0.129 +0.667,0.446,0.446,0,0,0,0,0.64,0.663,0.663,0,0,0 +1,0.252,0.252,0,0,0,0,0.704,0.684,0.684,0,0,0.0433 +1,0.125,0.125,0,0,0,0,0.563,0.665,0.665,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.102 +1,0.253,0.253,0,0,0,0,0.49,0.625,0.625,0,0,0.437 +1,0.316,0.316,0,0,0,0,0.527,0.688,0.688,0,0,0.159 +0.667,0.191,0.191,0,0,0,0,0.331,0.585,0.585,0,0,0.206 +0.667,0.195,0.195,0,0,0,0,0.28,0.585,0.585,0,0,0.283 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0 +0.333,0.187,0.187,0,0,0,0,0.322,0.604,0.604,0,0,0.144 +0.667,0.371,0.371,0,0,0,0,0.452,0.764,0.764,0,0,0.185 +0.667,0.47,0.47,0.95,0,0,0,0.584,0.815,0.815,0,0,0.173 +0.667,0.601,0.601,0.0667,0,0,0,0.677,0.828,0.828,0,0,0.173 +0.333,0.363,0.363,0,0,0,0,0.486,0.629,0.629,0,0,0.454 +0.667,0.631,0.631,0,0,0,0,0.753,0.752,0.752,0,0,0.554 +0.667,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0,0.304 +1,0.644,0.644,0,0,0,0,0.831,0.76,0.76,0,0,0.115 +1,0.117,0.117,0,0,0,0,0.407,0.54,0.54,0,0,0.167 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.346,0.515,0.515,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0.45,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.191,0.191,0.05,0,0,0,0.331,0.585,0.585,0,0,0.0833 +0.667,0.195,0.195,0,0,0,0,0.28,0.585,0.585,0,0,0.227 +0.667,0.331,0.331,0,0,0,0,0.311,0.701,0.701,0,0,0.145 +0.333,0.185,0.185,0,0,0,0,0.289,0.591,0.591,0,0,0.0433 +0.333,0.18,0.18,0,0,0,0,0.284,0.598,0.598,0,0,0 +0.333,0.179,0.179,0,0,0,0,0.303,0.598,0.598,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0 +0.333,0.187,0.187,0,0,0,0,0.322,0.604,0.604,0,0,0.0433 +0.333,0.21,0.21,0,0,0,0,0.355,0.617,0.617,0,0,0.13 +0.333,0.26,0.26,0.95,0,0,0,0.421,0.642,0.642,0,0,0.0866 +0.667,0.601,0.601,0.317,0,0,0,0.677,0.828,0.828,0,0,0.386 +1,0.989,0.989,0,0,0,0,0.944,0.95,0.95,0,0,0.438 +0.667,0.631,0.631,0,0,0,0,0.753,0.752,0.752,0,0,0.13 +0.667,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0,0.0433 +0.667,0.446,0.446,0,0,0,0,0.64,0.663,0.663,0,0,0.0433 +0.667,0.117,0.117,0,0,0,0,0.407,0.54,0.54,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.0583,0.0583,0,0,0,0,0.346,0.521,0.521,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.183,0.183,0,0,0,0,0.392,0.579,0.579,0,0,0.279 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.195,0.195,0,0,0,0,0.28,0.585,0.585,0,0,0 +0.667,0.331,0.331,0,0,0,0,0.311,0.701,0.701,0,0,0 +0.667,0.319,0.319,0,0,0,0,0.321,0.714,0.714,0,0,0.216 +0.667,0.31,0.31,0,0,0,0,0.311,0.726,0.726,0,0,0.0866 +0.667,0.308,0.308,0,0,0,0,0.349,0.726,0.726,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0.0866 +0.333,0.187,0.187,0,0,0,0,0.322,0.604,0.604,0,0,0.13 +0.333,0.21,0.21,0,0,0,0,0.355,0.617,0.617,0,0,0.0433 +0.333,0.26,0.26,0,0,0,0,0.421,0.642,0.642,0,0,0.0574 +0.667,0.601,0.601,0.25,0,0,0,0.677,0.828,0.828,0,0,0.607 +0.667,0.676,0.676,0,0,0,0,0.715,0.79,0.79,0,0,0.575 +0.667,0.631,0.631,0,0,0,0,0.753,0.752,0.752,0,0,0.0433 +0.667,0.506,0.506,0,0.533,0,0,0.734,0.726,0.726,1,0,0 +0.667,0.446,0.446,0,0.817,0,0,0.64,0.663,0.663,0.25,0,0 +0.667,0.117,0.117,0.25,0.8,0,0,0.407,0.54,0.54,0.429,0,0.224 +1,0.0999,0.0999,0.317,0.0167,0,0,0.461,0.6,0.6,0,0,0.346 +1,0.0666,0.0666,0,0,0,0,0.433,0.574,0.574,0,0,0.166 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.213 +1,0.449,0.449,0,0,0,0,0.662,0.798,0.798,0,0,0.312 +0.667,0.333,0.333,0,0,0.517,0.783,0.405,0.701,0.701,0,0.173,0.152 +0.667,0.34,0.34,0,0,0,0,0.302,0.701,0.701,0,0.42,0.387 +0.667,0.331,0.331,0,0,0,0,0.311,0.701,0.701,0,0.349,0.103 +0.333,0.185,0.185,0.2,0,0,0,0.289,0.591,0.591,0,0.293,0.0433 +0.333,0.18,0.18,0.3,0,0,0,0.284,0.598,0.598,0,0.0637,0.216 +0.333,0.179,0.179,0,0,0,0,0.303,0.598,0.598,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0.26 +0.333,0.187,0.187,0.45,0,0,0,0.322,0.604,0.604,0,0,0.303 +0.333,0.21,0.21,0.05,0.0333,0,0,0.355,0.617,0.617,0.267,0,0 +0.333,0.26,0.26,0,1,0,0,0.421,0.642,0.642,0.796,0,0.0433 +0.333,0.325,0.325,0,0.0167,0,0,0.468,0.648,0.648,0.227,0,0.0944 +0.667,0.676,0.676,0,0,0,0,0.715,0.79,0.79,0,0,0.13 +0.667,0.631,0.631,0,0,0,0,0.753,0.752,0.752,0,0,0.0866 +0.667,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0,0.0753 +0.667,0.446,0.446,0,0,0,0,0.64,0.663,0.663,0,0,0.26 +1,0.184,0.184,0.2,0.2,0,0,0.555,0.612,0.612,0,0,0.0433 +1,0.0749,0.0749,0,0,0,0,0.36,0.534,0.534,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.346,0.521,0.521,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.183,0.183,0,0,0,0,0.392,0.579,0.579,0,0,0.0765 +1,0.333,0.333,0,0,0,0,0.405,0.701,0.701,0,0,0 +0.667,0.195,0.195,0,0,0,0,0.28,0.585,0.585,0,0,0.0762 +0.667,0.331,0.331,0,0,0,0,0.311,0.701,0.701,0,0,0.109 +1,0.319,0.319,0,0,0,0,0.321,0.714,0.714,0,0,0.126 +1,0.44,0.44,0,0,0,0,0.338,0.855,0.855,0,0,0.523 +0.667,0.308,0.308,0,0,0,0,0.349,0.726,0.726,0,0,0.445 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0.289 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.21,0.21,0,0,0,0,0.355,0.617,0.617,0,0,0 +0.667,0.47,0.47,0,0,0,0,0.584,0.815,0.815,0,0,0.13 +0.667,0.601,0.601,0,0,0,0,0.677,0.828,0.828,0,0,0 +0.667,0.676,0.676,0,0,0,0,0.715,0.79,0.79,0,0,0.433 +0.333,0.34,0.34,0,0,0,0,0.505,0.61,0.61,0,0,0.383 +0.667,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0,0.303 +0.667,0.446,0.446,0,0,0,0,0.64,0.663,0.663,0,0,0.26 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.183,0.183,0,0,0,0,0.392,0.579,0.579,0,0,0 +0.667,0.333,0.333,0,0,0,0,0.405,0.701,0.701,0,0,0 +0.333,0.195,0.195,0,0,0,0,0.28,0.585,0.585,0,0,0 +0,0.05,0.05,0,0,0.517,0.5,0.258,0.469,0.469,0,0.0676,0.115 +0.667,0.319,0.319,0,0,0,0.0167,0.321,0.714,0.714,0,0.549,0.424 +0.667,0.31,0.31,0,0,0,0,0.311,0.726,0.726,0,0.237,0.346 +0.667,0.308,0.308,0.133,0,0,0,0.349,0.726,0.726,0,0,0 +0.667,0.31,0.31,0.633,0,0,0,0.377,0.714,0.714,0,0,0 +0.667,0.325,0.325,0,0,0,0,0.386,0.739,0.739,0,0,0.0433 +0.333,0.21,0.21,0,0,0,0,0.355,0.617,0.617,0,0,0 +0.333,0.26,0.26,0.883,0,0,0,0.421,0.642,0.642,0,0,0.0866 +0.667,0.601,0.601,0.133,0,0,0,0.677,0.828,0.828,0,0,0.0433 +0.667,0.676,0.676,0,0,0,0,0.715,0.79,0.79,0,0,0.26 +0.667,0.631,0.631,0,0,0,0,0.753,0.752,0.752,0,0,0 +0.667,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0,0.303 +0.667,0.248,0.248,0,0,0,0,0.449,0.566,0.566,0,0,0.0433 +0.667,0.117,0.117,0,0,0,0,0.407,0.54,0.54,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.095 +1,0.151,0.151,0.95,0,0,0,0.374,0.547,0.547,0,0,0.583 +0.667,0.316,0.316,0.833,0,0,0,0.527,0.688,0.688,0,0,0.214 +0.667,0.333,0.333,0,0,0,0,0.405,0.701,0.701,0,0,0.103 +0.667,0.34,0.34,0.2,0,0,0,0.302,0.701,0.701,0,0,0.0433 +0.667,0.331,0.331,0.567,0,0,0,0.311,0.701,0.701,0,0,0.407 +0.667,0.319,0.319,0,0,0,0,0.321,0.714,0.714,0,0,0.26 +0.333,0.18,0.18,0,0,0,0,0.284,0.598,0.598,0,0,0.0433 +0.333,0.179,0.179,0,0,0,0,0.303,0.598,0.598,0,0,0.13 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0 +0.333,0.187,0.187,0,0,0,0,0.322,0.604,0.604,0,0,0 +0.333,0.21,0.21,0,0,0,0,0.355,0.617,0.617,0,0,0.173 +0.333,0.26,0.26,0,0,0,0,0.421,0.642,0.642,0,0,0.303 +0.333,0.325,0.325,0,0,0,0,0.468,0.648,0.648,0,0,0.707 +0.333,0.363,0.363,0,0,0,0,0.486,0.629,0.629,0,0,0.241 +0.667,0.631,0.631,0,0,0,0,0.753,0.752,0.752,0,0,0.126 +0.667,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0,0.0583 +0.667,0.248,0.248,0,0,0,0,0.449,0.566,0.566,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.183,0.183,0,0,0,0,0.392,0.579,0.579,0,0,0.0988 +0.667,0.191,0.191,0,0,0,0,0.331,0.585,0.585,0,0,0.131 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.191,0.191,0,0,0,0,0.284,0.585,0.585,0,0,0.0866 +0.333,0.185,0.185,0,0,0.517,0.517,0.289,0.591,0.591,0,0.0897,0 +0.333,0.18,0.18,0,0,0,0,0.284,0.598,0.598,0,0.42,0 +0.333,0.179,0.179,0.2,0,0,0,0.303,0.598,0.598,0,0.45,0.173 +0.333,0.18,0.18,1,0,0,0,0.317,0.591,0.591,0,0.165,0 +0.667,0.325,0.325,0.333,0,0,0,0.386,0.739,0.739,0,0,0.389 +0.667,0.371,0.371,0,0,0,0,0.452,0.764,0.764,0,0,0 +0.333,0.26,0.26,0,0,0.517,0.317,0.421,0.642,0.642,0,0,0.173 +0.667,0.601,0.601,0,0,0,0.467,0.677,0.828,0.828,0,0.355,0.0433 +0.667,0.676,0.676,0,0,0,0,0.715,0.79,0.79,0,0.479,0.303 +0.667,0.631,0.631,0,0,0,0,0.753,0.752,0.752,0,0.625,0.13 +0.667,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0.416,0.238 +1,0.446,0.446,0,0,0,0,0.64,0.663,0.663,0,0.213,0 +1,0.117,0.117,0,0,0,0,0.407,0.54,0.54,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.101 +1,0.151,0.151,0,0,0,0,0.374,0.547,0.547,0,0,0.253 +1,0.316,0.316,0,0,0,0,0.527,0.688,0.688,0,0,0.317 +1,0.333,0.333,0,0,0,0,0.405,0.701,0.701,0,0,0.282 +0.667,0.195,0.195,0,0,0,0,0.28,0.585,0.585,0,0,0.0598 +0.333,0.191,0.191,0,0,0,0,0.284,0.585,0.585,0,0,0.0433 +0.333,0.185,0.185,0,0,0,0,0.289,0.591,0.591,0,0,0.173 +0.333,0.18,0.18,0.5,0,0,0,0.284,0.598,0.598,0,0,0.13 +0.667,0.308,0.308,0,0,0,0,0.349,0.726,0.726,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0.0433 +0.333,0.187,0.187,0,0,0,0,0.322,0.604,0.604,0,0,0.485 +0.667,0.371,0.371,0,0.0333,0,0,0.452,0.764,0.764,0.383,0,0.268 +0.667,0.47,0.47,0,1,0,0,0.584,0.815,0.815,0.263,0,0.13 +0.667,0.601,0.601,0.45,0.8,0,0,0.677,0.828,0.828,0,0,0.0866 +0.333,0.363,0.363,0.317,0,0,0,0.486,0.629,0.629,0,0,0.272 +1,0.921,0.921,0,0,0,0,1,0.893,0.893,0,0,0.0433 +1,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0,0 +1,0.446,0.446,0,0,0,0,0.64,0.663,0.663,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.45,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.151,0.151,0.05,0,0,0,0.374,0.547,0.547,0,0,0 +1,0.316,0.316,0,0,0,0,0.527,0.688,0.688,0,0,0.0949 +1,0.474,0.474,0,0,0,0,0.479,0.817,0.817,0,0,0.187 +0.667,0.195,0.195,0.25,0,0,0,0.28,0.585,0.585,0,0,0.0433 +0.667,0.331,0.331,0,0,0,0,0.311,0.701,0.701,0,0,0.302 +0.667,0.319,0.319,0,0,0,0,0.321,0.714,0.714,0,0,0.378 +0.333,0.18,0.18,0,0,0,0,0.284,0.598,0.598,0,0,0 +0.667,0.308,0.308,0,0,0,0,0.349,0.726,0.726,0,0,0.189 +1,0.439,0.439,0,0,0.517,0.317,0.437,0.836,0.836,0,0,0.0171 +0.667,0.325,0.325,0,0,0,0.2,0.386,0.739,0.739,0,0.57,0.346 +0.667,0.371,0.371,0,0,0,0,0.452,0.764,0.764,0,0.124,0.173 +0.667,0.47,0.47,0.45,0,0,0,0.584,0.815,0.815,0,0,0.446 +0.667,0.601,0.601,0.567,0.533,0,0,0.677,0.828,0.828,0.617,0,0.0433 +1,0.989,0.989,0,0.783,0,0,0.944,0.95,0.95,0.665,0,0.13 +1,0.921,0.921,0,0,0,0,1,0.893,0.893,0.232,0,0.173 +0.667,0.278,0.278,0,0,0,0,0.496,0.598,0.598,0,0,0.105 +0.667,0.248,0.248,0,0,0,0,0.449,0.566,0.566,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.208 +0.667,0.183,0.183,0,0,0,0,0.392,0.579,0.579,0,0,0.328 +0.667,0.191,0.191,0,0,0,0,0.331,0.585,0.585,0,0,0.122 +0.667,0.195,0.195,0,0,0,0,0.28,0.585,0.585,0,0,0.264 +0.333,0.191,0.191,0,0,0,0,0.284,0.585,0.585,0,0,0.356 +0.333,0.185,0.185,0,0,0.517,0.517,0.289,0.591,0.591,0,0.251,0.0433 +0.667,0.31,0.31,0,0,0,0,0.311,0.726,0.726,0,0,0.439 +0.333,0.179,0.179,0,0,0,0,0.303,0.598,0.598,0,0,0.0866 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0.13 +0.333,0.187,0.187,0.45,0,0,0,0.322,0.604,0.604,0,0,0.0866 +0.333,0.21,0.21,0.317,0,0,0,0.355,0.617,0.617,0,0,0.216 +0.333,0.26,0.26,0.95,0,0,0,0.421,0.642,0.642,0,0,0.13 +0.333,0.325,0.325,0.0667,0,0,0,0.468,0.648,0.648,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.389 +0.333,0.34,0.34,0,0,0,0,0.505,0.61,0.61,0,0,0.0433 +1,0.734,0.734,0,0,0,0,0.972,0.855,0.855,0,0,0 +0.667,0.446,0.446,0,0,0,0,0.64,0.663,0.663,0,0,0 +1,0.117,0.117,0,0,0,0,0.407,0.54,0.54,0,0,0.389 +1,0.0749,0.0749,0,0,0,0,0.36,0.534,0.534,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.633,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0836,0.0836,0.9,0,0,0,0.341,0.521,0.521,0,0,0.16 +1,0.253,0.253,0,0,0,0,0.49,0.625,0.625,0,0,0.0921 +1,0.449,0.449,0,0,0,0,0.662,0.798,0.798,0,0,0 +0.333,0.191,0.191,0,0,0,0,0.331,0.585,0.585,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.26,0.26,0,0,0,0,0.421,0.642,0.642,0,0,0 +0.333,0.325,0.325,0,0,0,0,0.468,0.648,0.648,0,0,0 +0.333,0.363,0.363,0,0,0,0,0.486,0.629,0.629,0,0,0.173 +0.667,0.631,0.631,0,0,0,0,0.753,0.752,0.752,0,0,0.303 +0.667,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0,0.26 +0.667,0.248,0.248,0,0,0,0,0.449,0.566,0.566,0,0,0.13 +0.667,0.117,0.117,0,0,0,0,0.407,0.54,0.54,0,0,0.217 +1,0.0749,0.0749,0,0,0,0,0.36,0.534,0.534,0,0,0.103 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0.379,0,0.258,0.469,0.469,0,0,0.152 +0.667,0.191,0.191,0,0,0.138,0.25,0.331,0.585,0.585,0,0.499,0.0768 +0.667,0.34,0.34,0,0,0,0,0.302,0.701,0.701,0,0.274,0.0506 +0.667,0.331,0.331,0,0,0,0,0.311,0.701,0.701,0,0.629,0.0898 +0.667,0.319,0.319,0,0,0,0,0.321,0.714,0.714,0,0.172,0 +0.333,0.18,0.18,0,0,0,0,0.284,0.598,0.598,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.631,0.631,0,0,0,0,0.753,0.752,0.752,0,0,0 +0.667,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0,0.0866 +1,0.446,0.446,0,0,0,0,0.64,0.663,0.663,0,0,0.0433 +1,0.117,0.117,0,0,0,0,0.407,0.54,0.54,0,0,0.0866 +1,0.0749,0.0749,0,0,0,0,0.36,0.534,0.534,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.273 +1,0.117,0.117,0,0,0,0,0.424,0.574,0.574,0,0,0.189 +0.667,0.151,0.151,0,0,0,0,0.374,0.547,0.547,0,0,0.257 +0.333,0.183,0.183,0,0,0,0,0.392,0.579,0.579,0,0,0.17 +0.333,0.191,0.191,0,0,0,0,0.331,0.585,0.585,0,0,0.53 +0.333,0.195,0.195,0,0,0,0,0.28,0.585,0.585,0,0,0.489 +0.667,0.331,0.331,0,0,0,0,0.311,0.701,0.701,0,0,0.434 +0.333,0.185,0.185,0,0,0,0,0.289,0.591,0.591,0,0,0.193 +0.333,0.18,0.18,0,0,0,0,0.284,0.598,0.598,0,0,0.142 +0.333,0.179,0.179,0,0,0,0,0.303,0.598,0.598,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0.13 +0.333,0.187,0.187,0,0,0,0,0.322,0.604,0.604,0,0,0 +0.333,0.21,0.21,0,0,0,0,0.355,0.617,0.617,0,0,0.0866 +0.333,0.26,0.26,0,0,0,0,0.421,0.642,0.642,0,0,0.0866 +0.333,0.325,0.325,0,0,0,0,0.468,0.648,0.648,0,0,0.314 +0.333,0.363,0.363,0.2,0,0,0,0.486,0.629,0.629,0,0,0.412 +0.333,0.34,0.34,0.3,0,0,0,0.505,0.61,0.61,0,0,0.0866 +0.667,0.506,0.506,0,0,0,0,0.734,0.726,0.726,0,0,0.146 +0.667,0.446,0.446,0,0,0,0,0.64,0.663,0.663,0,0,0.0171 +0.667,0.184,0.184,0,0,0,0,0.555,0.612,0.612,0,0,0 +1,0.0999,0.0999,0,0,0,0,0.461,0.6,0.6,0,0,0.0433 +1,0.0583,0.0583,0,0,0,0,0.346,0.521,0.521,0,0,0 +1,0.05,0.05,0,0,0,0,0.346,0.515,0.515,0,0,0 +1,0.05,0.05,0,0,0,0,0.341,0.509,0.509,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0759 +1,0.151,0.151,0.25,0,0,0,0.374,0.547,0.547,0,0,0.0959 +1,0.316,0.316,0,0,0,0,0.527,0.688,0.688,0,0,0.395 +0.667,0.191,0.191,0,0,0,0,0.331,0.585,0.585,0,0,0 +0.333,0.195,0.195,0,0,0,0,0.28,0.585,0.585,0,0,0.0433 +0.333,0.191,0.191,0,0,0,0,0.284,0.585,0.585,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.289,0.591,0.591,0,0,0.0433 +0.333,0.18,0.18,0,0,0,0,0.284,0.598,0.598,0,0,0.0433 +0.333,0.179,0.179,0,0,0,0,0.303,0.598,0.598,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0.22 +0.333,0.187,0.187,0.25,0,0,0,0.322,0.604,0.604,0,0,0.0612 +0.333,0.21,0.21,0,0,0,0,0.355,0.617,0.617,0,0,0.26 +0.333,0.26,0.26,0,0,0,0,0.421,0.642,0.642,0,0,0.216 +0.667,0.601,0.601,0,0,0,0,0.677,0.828,0.828,0,0,0.0433 +0.667,0.676,0.676,0,0,0,0,0.715,0.79,0.79,0,0,0.0866 +0.667,0.631,0.631,0,0.533,0,0,0.753,0.752,0.752,0.858,0,0.303 +0.667,0.506,0.506,0,0.517,0,0,0.734,0.726,0.726,0.184,0,0.215 +1,0.644,0.644,0,0,0,0,0.831,0.76,0.76,0,0,0.0847 +1,0.117,0.117,0,0,0,0,0.407,0.54,0.54,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0966 +1,0.183,0.183,0,0,0,0,0.392,0.579,0.579,0,0,0.0322 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.289,0.591,0.591,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.284,0.598,0.598,0,0,0 +0.667,0.179,0.179,0,0,0,0,0.303,0.598,0.598,0,0,0 +0.667,0.18,0.18,0,0,0,0,0.317,0.591,0.591,0,0,0.173 +0.333,0.187,0.187,0,0,0,0,0.322,0.604,0.604,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0945 +0.333,0.26,0.26,0,0,0.517,0.567,0.421,0.642,0.642,0,0.0299,0.146 +0.333,0.325,0.325,0,0,0,0.217,0.468,0.648,0.648,0,1,0.0866 +0.333,0.363,0.363,0,0,0,0,0.486,0.629,0.629,0,0.263,0 +0.333,0.34,0.34,0,0,0,0,0.505,0.61,0.61,0,0,0.0433 +0.333,0.278,0.278,0,0,0,0,0.496,0.598,0.598,0,0,0.346 +0.667,0.446,0.446,0,0,0,0,0.64,0.663,0.663,0,0,0.0866 +1,0.117,0.117,0,0,0,0,0.407,0.54,0.54,0,0,0.26 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0841 +0.333,0.05,0.05,0.233,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.172,0.172,0,0,0,0,0.261,0.538,0.538,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.103 +0.333,0.175,0.175,0,0,0,0,0.29,0.543,0.543,0,0,0.181 +0.667,0.329,0.329,0,0.0833,0,0,0.375,0.637,0.637,0.396,0,0.147 +0.667,0.398,0.398,0,0.933,0,0,0.479,0.677,0.677,0.558,0,0.272 +0.667,0.512,0.512,0.25,0,0,0,0.553,0.687,0.687,0.626,0,0.452 +0.667,0.619,0.619,0.467,0,0,0,0.583,0.657,0.657,0,0,0.382 +0.667,0.641,0.641,0,0,0,0,0.613,0.627,0.627,0,0,0.173 +1,0.56,0.56,0,0,0,0,0.598,0.607,0.607,0,0,0.0866 +1,0.353,0.353,0,0,0,0,0.524,0.557,0.557,0,0,0.34 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.148 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.243 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.148,0.148,0.233,0,0,0,0.331,0.498,0.498,0,0,0 +1,0.308,0.308,0,0,0,0,0.435,0.577,0.577,0,0,0.0745 +0.667,0.321,0.321,0,0,0,0,0.338,0.587,0.587,0,0,0.236 +0.667,0.324,0.324,0,0,0,0,0.257,0.587,0.587,0,0,0.158 +0.333,0.183,0.183,0,0,0,0,0.261,0.528,0.528,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.265,0.533,0.533,0,0,0.13 +0.333,0.172,0.172,0,0,0,0,0.261,0.538,0.538,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.276,0.538,0.538,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.287,0.533,0.533,0,0,0.173 +0.333,0.175,0.175,0,0,0,0,0.29,0.543,0.543,0,0,0.216 +0.333,0.189,0.189,0,0,0,0,0.316,0.553,0.553,0,0,0.0433 +0.333,0.224,0.224,0,0,0,0,0.368,0.573,0.573,0,0,0.173 +0.333,0.281,0.281,0,0,0,0,0.405,0.578,0.578,0,0,0.13 +0.667,0.619,0.619,0,0,0,0,0.583,0.657,0.657,0,0,0.0866 +0.667,0.641,0.641,0,0,0,0,0.613,0.627,0.627,0,0,0.26 +0.667,0.56,0.56,0,0,0,0,0.598,0.607,0.607,0,0,0 +0.667,0.353,0.353,0,0,0,0,0.524,0.557,0.557,0,0,0.254 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.087 +1,0.0583,0.0583,0,0,0,0,0.309,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.179,0.179,0,0,0,0,0.346,0.523,0.523,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.298,0.528,0.528,0,0,0 +0.333,0.187,0.187,0,0,0,0,0.257,0.528,0.528,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.261,0.528,0.528,0,0,0.216 +0.333,0.177,0.177,0,0,0,0,0.265,0.533,0.533,0,0,0.398 +0.667,0.294,0.294,0,0,0,0,0.264,0.607,0.607,0,0,0.177 +0.333,0.171,0.171,0,0,0,0,0.276,0.538,0.538,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.189,0.189,0.0833,0,0,0,0.316,0.553,0.553,0,0,0.0433 +0.333,0.224,0.224,0.4,0,0,0,0.368,0.573,0.573,0,0,0.0866 +0.333,0.281,0.281,0,0,0,0,0.405,0.578,0.578,0,0,0.0433 +0.667,0.619,0.619,0,0,0,0,0.583,0.657,0.657,0,0,0 +0.667,0.641,0.641,0,0,0,0,0.613,0.627,0.627,0,0,0.309 +1,0.815,0.815,0,0,0,0,0.768,0.676,0.676,0,0,0.173 +1,0.353,0.353,0,0,0,0,0.524,0.557,0.557,0,0,0.216 +1,0.184,0.184,0,0,0,0,0.457,0.517,0.517,0,0,0.0433 +1,0.0999,0.0999,0,0,0,0,0.383,0.507,0.507,0,0,0.262 +1,0.0583,0.0583,0,0,0,0,0.309,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.0833,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.4,0,0,0,0.258,0.469,0.469,0,0,0.0907 +1,0.308,0.308,0,0,0,0,0.435,0.577,0.577,0,0,0.123 +1,0.456,0.456,0,0,0,0,0.378,0.646,0.646,0,0,0.0449 +0.667,0.324,0.324,0,0,0,0,0.257,0.587,0.587,0,0,0.13 +0.667,0.315,0.315,0,0,0,0,0.264,0.587,0.587,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.265,0.533,0.533,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.171,0.171,0,0,0,0,0.287,0.533,0.533,0,0,0.0866 +0.333,0.175,0.175,0,0,0,0,0.29,0.543,0.543,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.224,0.224,0,0,0,0,0.368,0.573,0.573,0,0,0.383 +0.667,0.281,0.281,0,0,0,0,0.405,0.578,0.578,0,0,0.293 +0.667,0.335,0.335,0,0,0,0,0.42,0.563,0.563,0,0,0 +0.667,0.346,0.346,0,0,0,0,0.435,0.548,0.548,0,0,0.0866 +1,0.56,0.56,0,0,0,0,0.598,0.607,0.607,0,0,0.173 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.119 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0.296 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.0823,0.0823,0,0,0,0,0.305,0.478,0.478,0,0,0 +1,0.148,0.148,0,0,0,0,0.331,0.498,0.498,0,0,0.356 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.163 +0.667,0.321,0.321,0,0,0,0,0.338,0.587,0.587,0,0,0.597 +0.667,0.324,0.324,0,0,0.103,0,0.257,0.587,0.587,0,0,0.272 +0.333,0.183,0.183,0,0,0.379,0.767,0.261,0.528,0.528,0,0.176,0.13 +0.333,0.177,0.177,0,0,0,0,0.265,0.533,0.533,0,0.104,0.13 +0.333,0.172,0.172,0,0,0,0,0.261,0.538,0.538,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.171,0.171,0,0,0,0,0.287,0.533,0.533,0,0,0 +0.333,0.175,0.175,0.25,0,0,0,0.29,0.543,0.543,0,0,0.0433 +0.333,0.189,0.189,0.467,0,0,0,0.316,0.553,0.553,0,0,0 +0.333,0.224,0.224,0,0,0,0,0.368,0.573,0.573,0,0,0 +0.333,0.281,0.281,0,0,0,0,0.405,0.578,0.578,0,0,0.26 +0.333,0.335,0.335,0,0.333,0,0,0.42,0.563,0.563,0.475,0,0.0866 +0.667,0.641,0.641,0,0.933,0,0,0.613,0.627,0.627,0.529,0,0 +0.667,0.56,0.56,0,0,0,0,0.598,0.607,0.607,0,0,0.0433 +0.667,0.201,0.201,0,0,0,0,0.391,0.513,0.513,0,0,0.13 +0.667,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.101 +1,0.148,0.148,0,0,0,0,0.331,0.498,0.498,0,0,0.0819 +1,0.179,0.179,0,0,0,0,0.346,0.523,0.523,0,0,0.222 +0.667,0.185,0.185,0,0,0,0,0.298,0.528,0.528,0,0,0.548 +0.667,0.324,0.324,0,0,0,0,0.257,0.587,0.587,0,0,0.161 +1,0.448,0.448,0,0,0,0,0.267,0.646,0.646,0,0,0.0919 +1,0.43,0.43,0,0,0,0,0.278,0.661,0.661,0,0,0.451 +1,0.417,0.417,0,0,0,0,0.267,0.676,0.676,0,0,0.4 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.193 +0.667,0.293,0.293,0,0,0,0,0.316,0.597,0.597,0,0,0.502 +0.667,0.301,0.301,0,0,0,0,0.323,0.617,0.617,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.316,0.553,0.553,0,0,0.0866 +0.333,0.224,0.224,0,0,0,0,0.368,0.573,0.573,0,0,0.13 +0.667,0.512,0.512,0,0,0,0,0.553,0.687,0.687,0,0,0 +0.667,0.619,0.619,0,0,0,0,0.583,0.657,0.657,0,0,0.0433 +0.667,0.641,0.641,0,0,0,0,0.613,0.627,0.627,0,0,0.0866 +0.667,0.305,0.305,0,0,0,0,0.428,0.538,0.538,0,0,0 +1,0.353,0.353,0,0,0,0,0.524,0.557,0.557,0,0,0.26 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.179,0.179,0,0,0,0,0.346,0.523,0.523,0,0,0.184 +1,0.185,0.185,0,0,0,0,0.298,0.528,0.528,0,0,0.177 +0.667,0.324,0.324,0.483,0,0,0,0.257,0.587,0.587,0,0,0.263 +1,0.448,0.448,0,0,0,0,0.267,0.646,0.646,0,0,0.298 +0.333,0.177,0.177,0,0,0,0,0.265,0.533,0.533,0,0,0.346 +0.333,0.172,0.172,0,0,0,0,0.261,0.538,0.538,0,0,0.0433 +0,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.433 +0.333,0.171,0.171,0.717,0,0,0,0.287,0.533,0.533,0,0,0 +0.667,0.301,0.301,0.483,0,0,0,0.323,0.617,0.617,0,0,0.173 +0.667,0.329,0.329,0,0,0,0,0.375,0.637,0.637,0,0,0 +0.667,0.398,0.398,0,0,0,0,0.479,0.677,0.677,0,0,0.216 +0.333,0.281,0.281,0,0,0,0,0.405,0.578,0.578,0,0,0.0433 +0.333,0.335,0.335,0,0,0,0,0.42,0.563,0.563,0,0,0.13 +0.333,0.346,0.346,0,0.583,0,0,0.435,0.548,0.548,0.615,0,0.346 +0.667,0.56,0.56,0,0.433,0,0,0.598,0.607,0.607,0,0,0.0433 +1,0.353,0.353,0,0,0,0,0.524,0.557,0.557,0,0,0 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.0432 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.233,0.0833,0,0,0.258,0.469,0.469,0.501,0,0 +1,0.247,0.247,0,1,0,0,0.405,0.527,0.527,0.328,0,0.0839 +1,0.308,0.308,0.25,0.183,0,0,0.435,0.577,0.577,0,0,0.433 +0.333,0.185,0.185,0.467,0.583,0.483,0.25,0.298,0.528,0.528,0.691,0.0715,0.0863 +0.333,0.187,0.187,0,0.683,0,0,0.257,0.528,0.528,0,0.577,0.216 +0.333,0.183,0.183,0,0,0,0,0.261,0.528,0.528,0,0.257,0.149 +1,0.43,0.43,0,0,0,0,0.278,0.661,0.661,0,0.65,0.24 +0.667,0.172,0.172,0,0,0,0,0.261,0.538,0.538,0,0.553,0.0866 +0.667,0.171,0.171,0,0,0,0,0.276,0.538,0.538,0,0.635,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.667,0.175,0.175,0.233,0,0,0,0.29,0.543,0.543,0,0,0 +0.667,0.329,0.329,0,0,0,0,0.375,0.637,0.637,0,0,0.13 +0.667,0.398,0.398,0,0,0,0,0.479,0.677,0.677,0,0,0.0776 +1,0.743,0.743,0,0.0833,0,0,0.701,0.796,0.796,0.479,0,0.0913 +1,0.904,0.904,0,1,0,0,0.745,0.751,0.751,0.529,0,0.298 +0.667,0.346,0.346,0,0.183,0,0,0.435,0.548,0.548,0,0,0.712 +0.667,0.305,0.305,0,0,0,0,0.428,0.538,0.538,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0.138,0,0 +1,0.185,0.185,0,0.833,0,0,0.298,0.528,0.528,0.606,0,0 +1,0.324,0.324,0,0.183,0,0,0.257,0.587,0.587,0.464,0,0 +1,0.315,0.315,0,0,0,0,0.264,0.587,0.587,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.265,0.533,0.533,0,0,0.0433 +0.667,0.172,0.172,0,0,0,0,0.261,0.538,0.538,0,0,0.0433 +0.667,0.171,0.171,0,0,0,0,0.276,0.538,0.538,0,0,0 +0.667,0.293,0.293,0,0,0,0,0.316,0.597,0.597,0,0,0.13 +0.667,0.301,0.301,0,0,0,0,0.323,0.617,0.617,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.316,0.553,0.553,0,0,0.0866 +0.667,0.398,0.398,0,0,0,0,0.479,0.677,0.677,0,0,0.303 +0.667,0.512,0.512,0,0,0,0,0.553,0.687,0.687,0,0,0.177 +0.333,0.335,0.335,0,0,0,0,0.42,0.563,0.563,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.305,0.305,0,0,0,0,0.428,0.538,0.538,0,0,0.303 +0.667,0.201,0.201,0,0,0,0,0.391,0.513,0.513,0,0,0 +0.667,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0.483,0.467,0.258,0.469,0.469,0,0.0559,0 +0.667,0.171,0.171,0.483,0,0,0.3,0.276,0.538,0.538,0,0.397,0 +1,0.293,0.293,0.233,0,0,0,0.316,0.597,0.597,0,0.406,0.0433 +0.667,0.301,0.301,0,0,0,0,0.323,0.617,0.617,0,0.572,0 +0.667,0.329,0.329,0.333,0,0,0,0.375,0.637,0.637,0,0.319,0.13 +1,0.572,0.572,0.15,0,0,0,0.59,0.781,0.781,0,0.209,0.13 +0.333,0.281,0.281,0,0,0,0,0.405,0.578,0.578,0,0,0.0433 +0.333,0.335,0.335,0,0,0,0,0.42,0.563,0.563,0,0,0.13 +0.667,0.641,0.641,0,0,0,0,0.613,0.627,0.627,0,0,0.346 +0.667,0.56,0.56,0,0,0,0,0.598,0.607,0.607,0,0,0.309 +0.667,0.201,0.201,0,0,0,0,0.391,0.513,0.513,0,0,0.125 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.382 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0.493 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.164 +1,0.308,0.308,0,0,0,0,0.435,0.577,0.577,0,0,0.842 +0.667,0.321,0.321,0,0,0,0,0.338,0.587,0.587,0,0,0.291 +0.667,0.324,0.324,0,0,0,0,0.257,0.587,0.587,0,0,0.182 +0.667,0.315,0.315,0,0,0,0,0.264,0.587,0.587,0,0,0.273 +0.667,0.303,0.303,0,0,0,0,0.271,0.597,0.597,0,0,0.13 +0.667,0.172,0.172,0,0,0,0,0.261,0.538,0.538,0,0,0.0866 +0.667,0.171,0.171,0,0,0,0,0.276,0.538,0.538,0,0,0.13 +0.667,0.171,0.171,0,0,0,0,0.287,0.533,0.533,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.29,0.543,0.543,0,0,0.173 +0.333,0.189,0.189,0,0,0,0,0.316,0.553,0.553,0,0,0 +0.333,0.224,0.224,0,0,0,0,0.368,0.573,0.573,0,0,0.0866 +0.667,0.512,0.512,0,0,0,0,0.553,0.687,0.687,0,0,0.2 +1,0.904,0.904,0,0,0,0,0.745,0.751,0.751,0,0,0.17 +1,0.937,0.937,0,0,0,0,0.79,0.706,0.706,0,0,0.493 +1,0.56,0.56,0,0,0,0,0.598,0.607,0.607,0,0,0.0941 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.158 +0.667,0.179,0.179,0,0,0,0,0.346,0.523,0.523,0,0,0.129 +1,0.321,0.321,0,0,0,0,0.338,0.587,0.587,0,0,0.384 +1,0.324,0.324,0,0,0,0,0.257,0.587,0.587,0,0,0.235 +0.667,0.183,0.183,0,0,0,0,0.261,0.528,0.528,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.265,0.533,0.533,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.667,0.175,0.175,0,0,0,0,0.29,0.543,0.543,0,0,0.0866 +0.333,0.189,0.189,0,0,0,0,0.316,0.553,0.553,0,0,0 +0.333,0.224,0.224,0,0,0,0,0.368,0.573,0.573,0,0,0.0866 +0.667,0.512,0.512,0,0,0.103,0,0.553,0.687,0.687,0,0,0.346 +0.667,0.619,0.619,0.717,0,0.379,0.883,0.583,0.657,0.657,0,0.199,0.303 +0.667,0.641,0.641,0,0.333,0,0.15,0.613,0.627,0.627,0.715,0,0.237 +0.667,0.56,0.56,0,0.683,0,0,0.598,0.607,0.607,0.12,0,0.17 +0.667,0.353,0.353,0,0,0,0,0.524,0.557,0.557,0,0,0.0866 +0.667,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.0433 +0.667,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0.188 +0.667,0.0583,0.0583,0,0,0,0,0.309,0.478,0.478,0,0,0.782 +0.667,0.05,0.05,0,0,0,0,0.309,0.473,0.473,0,0,0.143 +0.667,0.05,0.05,0,0,0,0,0.305,0.468,0.468,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.148,0.148,0,0,0,0,0.331,0.498,0.498,0,0,0.178 +0.667,0.179,0.179,0,0,0,0,0.346,0.523,0.523,0,0,0.265 +0.667,0.185,0.185,0,0,0,0,0.298,0.528,0.528,0,0,0.119 +0.667,0.187,0.187,0,0,0,0,0.257,0.528,0.528,0,0,0.343 +0.667,0.183,0.183,0,0,0,0,0.261,0.528,0.528,0,0,0.195 +0.333,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.437 +0.667,0.294,0.294,0.233,0,0,0,0.264,0.607,0.607,0,0,0.39 +1,0.413,0.413,0,0,0,0,0.312,0.676,0.676,0,0,0.167 +1,0.414,0.414,0,0,0,0,0.345,0.661,0.661,0,0,0.334 +0.667,0.301,0.301,0,0,0,0,0.323,0.617,0.617,0,0,0.447 +0.333,0.189,0.189,0,0,0,0,0.316,0.553,0.553,0,0,0.0866 +0.667,0.398,0.398,0,0,0,0,0.479,0.677,0.677,0,0,0.216 +0.667,0.512,0.512,0,0,0,0,0.553,0.687,0.687,0,0,0.0433 +0.667,0.619,0.619,0.25,0,0,0,0.583,0.657,0.657,0,0,0.0433 +0.667,0.641,0.641,0.467,0,0,0,0.613,0.627,0.627,0,0,0 +1,0.815,0.815,0,0,0,0,0.768,0.676,0.676,0,0,0.222 +1,0.504,0.504,0,0,0.483,0.133,0.656,0.601,0.601,0,0,0.0433 +1,0.117,0.117,0,0,0,0.633,0.357,0.493,0.493,0,0.238,0 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0.635,0 +1,0.0583,0.0583,0,0,0,0,0.309,0.478,0.478,0,0.757,0.303 +1,0.05,0.05,0,0,0,0,0.309,0.473,0.473,0,0.264,0 +1,0.05,0.05,0,0,0,0,0.305,0.468,0.468,0,0.345,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.179,0.179,0,0,0,0,0.346,0.523,0.523,0,0,0.13 +0.667,0.321,0.321,0.717,0,0,0,0.338,0.587,0.587,0,0,0.376 +0.667,0.324,0.324,0,0,0,0,0.257,0.587,0.587,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.264,0.587,0.587,0,0,0 +0.667,0.303,0.303,0,0.333,0,0,0.271,0.597,0.597,0.503,0,0 +0.667,0.294,0.294,0,0.683,0,0,0.264,0.607,0.607,0.455,0,0 +0.333,0.171,0.171,1,0,0,0,0.276,0.538,0.538,0,0,0.173 +0.667,0.293,0.293,0.45,0,0,0,0.316,0.597,0.597,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.316,0.553,0.553,0,0,0.13 +0.667,0.398,0.398,0,0,0,0,0.479,0.677,0.677,0,0,0.389 +0.667,0.512,0.512,0,0,0,0,0.553,0.687,0.687,0,0,0.234 +0.667,0.619,0.619,0.967,0,0,0,0.583,0.657,0.657,0,0,0.433 +0.667,0.641,0.641,0,0.583,0,0,0.613,0.627,0.627,0.525,0,0.185 +1,0.56,0.56,0,0.433,0,0,0.598,0.607,0.607,0.82,0,0.212 +1,0.353,0.353,0,0,0,0,0.524,0.557,0.557,0.525,0,0.292 +1,0.252,0.252,0,0,0,0,0.556,0.54,0.54,0.361,0,0.133 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0.111 +1,0.0583,0.0583,0,0,0,0,0.309,0.478,0.478,0,0,0.14 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0.333,0,0,0.258,0.469,0.469,0.494,0,0 +0.667,0.05,0.05,0,0.933,0,0,0.258,0.469,0.469,0.134,0,0 +1,0.308,0.308,0,0,0,0,0.435,0.577,0.577,0,0,0.488 +0.667,0.321,0.321,0,0,0,0,0.338,0.587,0.587,0,0,0.112 +0.333,0.187,0.187,0,0,0,0,0.257,0.528,0.528,0,0,0.0881 +0.333,0.183,0.183,0,0,0,0,0.261,0.528,0.528,0,0,0.0433 +0.333,0.177,0.177,0,0,0,0,0.265,0.533,0.533,0,0,0.0866 +0.333,0.172,0.172,0.717,0,0,0,0.261,0.538,0.538,0,0,0.173 +0.333,0.171,0.171,0,0,0,0,0.276,0.538,0.538,0,0,0.0433 +0.333,0.171,0.171,0,0,0,0,0.287,0.533,0.533,0,0,0.13 +0.333,0.175,0.175,0,0,0,0,0.29,0.543,0.543,0,0,0.13 +0.333,0.189,0.189,0,0,0,0,0.316,0.553,0.553,0,0,0.0866 +0.333,0.224,0.224,0,0,0,0,0.368,0.573,0.573,0,0,0 +0.333,0.281,0.281,0,0,0,0,0.405,0.578,0.578,0,0,0.0433 +0.667,0.619,0.619,0,0.583,0,0,0.583,0.657,0.657,0.716,0,0.13 +0.667,0.641,0.641,0,0.683,0,0,0.613,0.627,0.627,0,0,0.0866 +0.667,0.56,0.56,0,0,0,0,0.598,0.607,0.607,0,0,0.208 +0.667,0.201,0.201,0,0,0,0,0.391,0.513,0.513,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0823,0.0823,0,0,0.483,0.133,0.305,0.478,0.478,0,0,0 +1,0.247,0.247,0,0,0,0.9,0.405,0.527,0.527,0,0.293,0 +0.667,0.308,0.308,0,0,0,0,0.435,0.577,0.577,0,0.49,0 +0.667,0.321,0.321,0,0,0,0,0.338,0.587,0.587,0,0.283,0.28 +0.667,0.324,0.324,0,0,0,0,0.257,0.587,0.587,0,0,0.204 +0.333,0.183,0.183,0,0,0,0,0.261,0.528,0.528,0,0,0.13 +0.333,0.177,0.177,0,0,0,0,0.265,0.533,0.533,0,0,0.0433 +0.667,0.172,0.172,0,0,0,0,0.261,0.538,0.538,0,0,0.0866 +0.333,0.171,0.171,0,0,0,0,0.276,0.538,0.538,0,0,0.0866 +0.333,0.171,0.171,0,0,0,0,0.287,0.533,0.533,0,0,0.216 +0.333,0.175,0.175,0,0,0,0,0.29,0.543,0.543,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.316,0.553,0.553,0,0,0 +0.333,0.224,0.224,0,0,0,0,0.368,0.573,0.573,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.346,0.346,0.233,0,0,0,0.435,0.548,0.548,0,0,0.13 +0.667,0.56,0.56,0,0,0,0,0.598,0.607,0.607,0,0,0.13 +1,0.353,0.353,0,0,0,0,0.524,0.557,0.557,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.309,0.473,0.473,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0515,0.0515,0,0,0,0,0.294,0.473,0.473,0,0,0 +1,0.0823,0.0823,0,0,0,0,0.305,0.478,0.478,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.179,0.179,0,0,0,0,0.346,0.523,0.523,0,0,0 +1,0.321,0.321,0,0,0,0,0.338,0.587,0.587,0,0,0.13 +1,0.324,0.324,0,0,0,0,0.257,0.587,0.587,0,0,0.155 +0.667,0.315,0.315,0,0,0,0,0.264,0.587,0.587,0,0,0.388 +0.667,0.303,0.303,0,0,0,0,0.271,0.597,0.597,0,0,0.303 +0.667,0.294,0.294,0,0,0,0,0.264,0.607,0.607,0,0,0.286 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.293,0.293,0,0,0,0,0.316,0.597,0.597,0,0,0.389 +0.333,0.175,0.175,0,0,0,0,0.29,0.543,0.543,0,0,0.389 +0.333,0.189,0.189,0,0,0,0,0.316,0.553,0.553,0,0,0.0433 +0.333,0.224,0.224,0,0,0,0,0.368,0.573,0.573,0,0,0.13 +0.667,0.512,0.512,0,0,0,0,0.553,0.687,0.687,0,0,0.0433 +0.667,0.619,0.619,0,0,0,0,0.583,0.657,0.657,0,0,0.306 +1,0.937,0.937,0,0,0,0,0.79,0.706,0.706,0,0,0.21 +1,0.815,0.815,0,0,0,0,0.768,0.676,0.676,0,0,0.372 +1,0.353,0.353,0,0,0,0,0.524,0.557,0.557,0,0,0 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0347 +1,0.321,0.321,0,0,0.483,0.217,0.338,0.587,0.587,0,0,0.305 +0.667,0.324,0.324,0,0,0,1,0.257,0.587,0.587,0,0.269,0.0978 +0.667,0.315,0.315,0,0,0,0.0833,0.264,0.587,0.587,0,0.0832,0.131 +1,0.43,0.43,0,0,0,0,0.278,0.661,0.661,0,0.49,0.13 +1,0.417,0.417,0,0,0,0,0.267,0.676,0.676,0,0.404,0.216 +0.667,0.292,0.292,0,0,0,0,0.294,0.607,0.607,0,0.505,0.364 +1,0.414,0.414,0,0,0,0,0.345,0.661,0.661,0,0.633,0.115 +1,0.426,0.426,0,0,0,0,0.356,0.691,0.691,0,0.592,0.0433 +0.667,0.329,0.329,0,0,0,0,0.375,0.637,0.637,0,0.244,0.0866 +0.667,0.398,0.398,0,0,0,0,0.479,0.677,0.677,0,0.469,0.346 +0.667,0.512,0.512,0,0,0,0,0.553,0.687,0.687,0,0.281,0.13 +0.667,0.619,0.619,0,0,0,0,0.583,0.657,0.657,0,0,0.0866 +1,0.641,0.641,0,0,0,0,0.613,0.627,0.627,0,0,0 +1,0.56,0.56,0,0,0,0,0.598,0.607,0.607,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.126 +1,0.179,0.179,0,0,0.483,0.133,0.346,0.523,0.523,0,0,0.0433 +1,0.456,0.456,0,0,0,1,0.378,0.646,0.646,0,0.472,0.11 +0.667,0.324,0.324,0,0,0,1,0.257,0.587,0.587,0,0.35,0 +0.667,0.315,0.315,0,0,0,0.733,0.264,0.587,0.587,0,0.621,0.0866 +0.667,0.303,0.303,0,0,0,0,0.271,0.597,0.597,0,0.322,0.519 +0.667,0.294,0.294,0,0,0,0,0.264,0.607,0.607,0,0.525,0.316 +0.667,0.292,0.292,0,0,0,0,0.294,0.607,0.607,0,0.605,0.209 +0.333,0.171,0.171,0,0,0,0,0.287,0.533,0.533,0,0.519,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.333,0.224,0.224,0,0,0,0,0.368,0.573,0.573,0,0,0.0433 +0.333,0.281,0.281,0,0,0,0,0.405,0.578,0.578,0,0,0 +0.333,0.335,0.335,0.25,0,0,0,0.42,0.563,0.563,0,0,0.137 +0.667,0.641,0.641,1,0,0,0,0.613,0.627,0.627,0,0,0.227 +0.667,0.305,0.305,0.45,0,0,0,0.428,0.538,0.538,0,0,0.303 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.277 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.0433 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0515,0.0515,0,0,0,0,0.294,0.473,0.473,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.148,0.148,0,0,0,0,0.331,0.498,0.498,0,0,0.125 +1,0.179,0.179,0,0,0,0,0.346,0.523,0.523,0,0,0.139 +0.667,0.185,0.185,0,0,0,0,0.298,0.528,0.528,0,0,0.123 +0.667,0.324,0.324,0,0,0,0,0.257,0.587,0.587,0,0,0.0756 +0.667,0.315,0.315,0,0,0,0,0.264,0.587,0.587,0,0,0.26 +0.667,0.303,0.303,0,0,0,0,0.271,0.597,0.597,0,0,0.13 +0.667,0.294,0.294,0,0,0,0,0.264,0.607,0.607,0,0,0.202 +0.667,0.292,0.292,0,0,0,0,0.294,0.607,0.607,0,0,0.561 +0.667,0.293,0.293,0,0,0,0,0.316,0.597,0.597,0,0,0 +0.333,0.175,0.175,0.25,0,0,0,0.29,0.543,0.543,0,0,0.0433 +0.667,0.329,0.329,0.717,0,0,0,0.375,0.637,0.637,0,0,0.0433 +0.667,0.398,0.398,0,0,0,0,0.479,0.677,0.677,0,0,0.0433 +0.667,0.512,0.512,0,0,0,0,0.553,0.687,0.687,0,0,0.0433 +0.667,0.619,0.619,0.25,0,0,0,0.583,0.657,0.657,0,0,0.0866 +1,0.937,0.937,0.467,0,0,0,0.79,0.706,0.706,0,0,0.173 +1,0.815,0.815,0,0,0,0,0.768,0.676,0.676,0,0,0.0866 +0.667,0.201,0.201,0,0,0,0,0.391,0.513,0.513,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.102 +0.667,0.321,0.321,0,0,0,0,0.338,0.587,0.587,0,0,0.251 +0.667,0.324,0.324,0,0,0,0,0.257,0.587,0.587,0,0,0.721 +0.667,0.315,0.315,0,0,0,0,0.264,0.587,0.587,0,0,0.116 +0.667,0.303,0.303,0,0,0,0,0.271,0.597,0.597,0,0,0.13 +0.333,0.172,0.172,0,0,0,0,0.261,0.538,0.538,0,0,0.0433 +0.333,0.171,0.171,0,0,0,0,0.276,0.538,0.538,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.175,0.175,0,0,0,0,0.29,0.543,0.543,0,0,0 +0.667,0.189,0.189,0.25,0,0,0,0.316,0.553,0.553,0,0,0 +0.667,0.398,0.398,0.967,0,0,0,0.479,0.677,0.677,0,0,0.0433 +0.667,0.512,0.512,0.717,0,0,0,0.553,0.687,0.687,0,0,0.26 +1,0.904,0.904,0,0,0,0,0.745,0.751,0.751,0,0,0.303 +1,0.937,0.937,0,0,0,0,0.79,0.706,0.706,0,0,0.692 +1,0.815,0.815,0,0,0,0,0.768,0.676,0.676,0,0,0.0866 +1,0.353,0.353,0,0,0,0,0.524,0.557,0.557,0,0,0.237 +1,0.184,0.184,0,0,0,0,0.457,0.517,0.517,0,0,0 +1,0.0999,0.0999,0,0,0,0,0.383,0.507,0.507,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.309,0.478,0.478,0,0,0.303 +1,0.05,0.05,0,0,0,0,0.309,0.473,0.473,0,0,0 +1,0.05,0.05,0,0,0,0,0.305,0.468,0.468,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.326 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.33 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.183,0.183,0.75,0,0,0,0.261,0.528,0.528,0,0,0.145 +0.667,0.303,0.303,0.217,0,0,0,0.271,0.597,0.597,0,0,0.285 +0.667,0.172,0.172,0.483,0,0,0,0.261,0.538,0.538,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.276,0.538,0.538,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.287,0.533,0.533,0,0,0 +0.667,0.175,0.175,0,0,0,0,0.29,0.543,0.543,0,0,0.172 +0.667,0.329,0.329,0.75,0,0,0,0.375,0.637,0.637,0,0,0.32 +0.667,0.398,0.398,0.95,0,0,0,0.479,0.677,0.677,0,0,0.238 +0.667,0.512,0.512,0,0,0,0,0.553,0.687,0.687,0,0,0.165 +0.667,0.619,0.619,0,0,0,0,0.583,0.657,0.657,0,0,0.173 +1,0.641,0.641,0,0,0,0,0.613,0.627,0.627,0,0,0.216 +1,0.56,0.56,0,0,0,0,0.598,0.607,0.607,0,0,0.0866 +1,0.353,0.353,0,0,0,0,0.524,0.557,0.557,0,0,0.0866 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.405,0.527,0.527,0,0,0.319 +0.333,0.179,0.179,0,0.583,0,0,0.346,0.523,0.523,0.799,0,0.183 +0.667,0.321,0.321,0,0.683,0,0,0.338,0.587,0.587,0,0,0.164 +0.333,0.187,0.187,0,0,0,0,0.257,0.528,0.528,0,0,0.0866 +0.333,0.183,0.183,0,0,0,0,0.261,0.528,0.528,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.265,0.533,0.533,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.171,0.171,0,0,0,0,0.287,0.533,0.533,0,0,0.26 +0.333,0.175,0.175,0,0,0,0,0.29,0.543,0.543,0,0,0 +0.333,0.189,0.189,0.483,0,0,0,0.316,0.553,0.553,0,0,0 +0.333,0.224,0.224,0.233,0,0,0,0.368,0.573,0.573,0,0,0.0433 +0.333,0.281,0.281,0,0,0,0,0.405,0.578,0.578,0,0,0 +0.667,0.619,0.619,0,0,0,0,0.583,0.657,0.657,0,0,0.13 +0.667,0.641,0.641,0,0,0,0,0.613,0.627,0.627,0,0,0 +0.667,0.56,0.56,0.25,0,0,0,0.598,0.607,0.607,0,0,0.0433 +0.667,0.201,0.201,0.233,0,0,0,0.391,0.513,0.513,0,0,0.26 +0.667,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.0866 +0.667,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.136 +1,0.148,0.148,0,0,0,0,0.331,0.498,0.498,0,0,0.116 +1,0.308,0.308,0,0,0,0,0.435,0.577,0.577,0,0,0.129 +0.667,0.185,0.185,0,0,0,0,0.298,0.528,0.528,0,0,0.335 +0.667,0.187,0.187,0,0,0,0,0.257,0.528,0.528,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.05,0.05,0.583,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.172,0.172,0.867,0,0,0,0.261,0.538,0.538,0,0,0.26 +0.667,0.292,0.292,0,0,0,0,0.294,0.607,0.607,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.287,0.533,0.533,0,0,0 +0.667,0.301,0.301,0,0,0,0,0.323,0.617,0.617,0,0,0.0433 +0.667,0.329,0.329,0,0,0,0,0.375,0.637,0.637,0,0,0.173 +1,0.572,0.572,0,0,0,0,0.59,0.781,0.781,0,0,0.0433 +1,0.743,0.743,0,0.167,0.483,0.217,0.701,0.796,0.796,0.309,0,0.173 +0.667,0.619,0.619,0,1,0,0.817,0.583,0.657,0.657,0.593,0.248,0.232 +0.667,0.641,0.641,0,0.1,0,0,0.613,0.627,0.627,0.663,0,0.159 +0.667,0.56,0.56,0,0,0,0,0.598,0.607,0.607,0.657,0,0.257 +0.667,0.353,0.353,0,0,0,0,0.524,0.557,0.557,0.442,0,0.412 +0.667,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.081 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.309,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.309,0.473,0.473,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.179,0.179,0,0,0,0,0.346,0.523,0.523,0,0,0 +1,0.185,0.185,0,0,0.483,0.517,0.298,0.528,0.528,0,0.131,0 +1,0.187,0.187,0,0,0,0,0.257,0.528,0.528,0,0.224,0 +1,0.183,0.183,0,0,0,0,0.261,0.528,0.528,0,0.532,0.179 +1,0.303,0.303,0,0,0,0,0.271,0.597,0.597,0,0.576,0.189 +1,0.417,0.417,0.0833,0,0,0,0.267,0.676,0.676,0,0.384,0.227 +1,0.413,0.413,0.633,0,0,0,0.312,0.676,0.676,0,0.433,0.359 +1,0.414,0.414,0,0,0,0,0.345,0.661,0.661,0,0.655,0.13 +1,0.426,0.426,0,0,0,0,0.356,0.691,0.691,0,0.52,0.0866 +1,0.468,0.468,0,0,0,0,0.434,0.721,0.721,0,0.377,0.0866 +1,0.572,0.572,0,0,0,0,0.59,0.781,0.781,0,0.326,0.173 +1,0.743,0.743,0,0,0,0,0.701,0.796,0.796,0,0.0117,0.389 +1,0.904,0.904,0,0,0,0,0.745,0.751,0.751,0,0,0.0866 +1,0.641,0.641,0,0,0,0,0.613,0.627,0.627,0,0,0 +1,0.56,0.56,0,0,0,0,0.598,0.607,0.607,0,0,0.351 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.013 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.309,0.473,0.473,0,0,0.39 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0.233,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.179,0.179,0,0,0,0,0.346,0.523,0.523,0,0,0.121 +1,0.185,0.185,0,0,0,0,0.298,0.528,0.528,0,0,0.339 +0.667,0.187,0.187,0,0,0,0,0.257,0.528,0.528,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.264,0.587,0.587,0,0,0.13 +0.667,0.303,0.303,0.25,0,0,0,0.271,0.597,0.597,0,0,0.173 +0.333,0.172,0.172,0.233,0,0,0,0.261,0.538,0.538,0,0,0.0866 +0.333,0.171,0.171,0,0,0,0,0.276,0.538,0.538,0,0,0.346 +0.333,0.171,0.171,0,0,0,0,0.287,0.533,0.533,0,0,0.26 +0,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.189,0.189,0.233,0,0,0,0.316,0.553,0.553,0,0,0.0866 +0.667,0.398,0.398,0,0,0,0,0.479,0.677,0.677,0,0,0.13 +0.667,0.512,0.512,0,0,0,0,0.553,0.687,0.687,0,0,0 +0.333,0.335,0.335,0.483,0,0,0,0.42,0.563,0.563,0,0,0 +0.667,0.641,0.641,0,0,0,0,0.613,0.627,0.627,0.182,0,0.26 +0.667,0.56,0.56,0,0.833,0,0,0.598,0.607,0.607,0.479,0,0.243 +1,0.504,0.504,0,0.433,0,0,0.656,0.601,0.601,0,0,0.123 +1,0.252,0.252,0,0,0,0,0.556,0.54,0.54,0,0,0 +1,0.0999,0.0999,0,0,0,0,0.383,0.507,0.507,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0515,0.0515,0,0,0,0,0.294,0.473,0.473,0,0,0.0866 +1,0.0823,0.0823,0,0,0,0,0.305,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.456,0.456,0,0,0,0,0.378,0.646,0.646,0,0,0.551 +1,0.461,0.461,0,0,0,0,0.256,0.646,0.646,0,0,0.341 +0.667,0.315,0.315,0,0,0,0,0.264,0.587,0.587,0,0,0.391 +0.667,0.303,0.303,0,0,0,0,0.271,0.597,0.597,0,0,0.398 +0.667,0.294,0.294,0,0,0,0,0.264,0.607,0.607,0,0,0.435 +0.333,0.171,0.171,0,0,0,0,0.276,0.538,0.538,0,0,0.414 +0.333,0.171,0.171,0,0,0,0,0.287,0.533,0.533,0,0,0.303 +0.667,0.301,0.301,0.25,0,0,0,0.323,0.617,0.617,0,0,0.0433 +0.667,0.329,0.329,0.233,0,0,0,0.375,0.637,0.637,0,0,0.173 +0.667,0.398,0.398,0,0,0,0,0.479,0.677,0.677,0,0,0.388 +0.667,0.512,0.512,0,0,0,0,0.553,0.687,0.687,0,0,0 +0.333,0.335,0.335,0,0,0,0,0.42,0.563,0.563,0,0,0 +0.667,0.641,0.641,0,0,0,0,0.613,0.627,0.627,0,0,0.0433 +0.667,0.56,0.56,0,0,0,0,0.598,0.607,0.607,0,0,0.0866 +1,0.353,0.353,0,0,0,0,0.524,0.557,0.557,0,0,0 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.148,0.148,0.717,0,0,0,0.331,0.498,0.498,0,0,0.117 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.321,0.321,0,0,0,0,0.338,0.587,0.587,0,0,0.383 +0.667,0.324,0.324,0,0,0,0,0.257,0.587,0.587,0,0,0.579 +0.333,0.183,0.183,0,0,0,0,0.261,0.528,0.528,0,0,0.214 +0.667,0.177,0.177,0,0.0833,0,0,0.265,0.533,0.533,0.466,0,0 +0.667,0.294,0.294,0,1,0,0,0.264,0.607,0.607,0.462,0,0.295 +0.667,0.292,0.292,0,0.183,0,0,0.294,0.607,0.607,0,0,0.188 +0.333,0.171,0.171,0,0,0,0,0.287,0.533,0.533,0,0,0 +0.333,0.175,0.175,0.25,0,0,0,0.29,0.543,0.543,0,0,0 +0.667,0.329,0.329,1,0,0,0,0.375,0.637,0.637,0,0,0.303 +0.667,0.398,0.398,0.45,0,0,0,0.479,0.677,0.677,0,0,0.0433 +0.333,0.281,0.281,0,0,0,0,0.405,0.578,0.578,0,0,0.0866 +0.333,0.05,0.05,0,0.0833,0,0,0.258,0.469,0.469,0.425,0,0.216 +0.667,0.346,0.346,0,1,0,0,0.435,0.548,0.548,0.122,0,0.173 +1,0.56,0.56,0,0.183,0,0,0.598,0.607,0.607,0,0,0.0433 +1,0.353,0.353,0,0,0,0,0.524,0.557,0.557,0,0,0 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.15 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0.25 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.0515,0.0515,0,0,0,0,0.294,0.473,0.473,0,0,0.154 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.171 +0.667,0.179,0.179,0,0,0,0,0.346,0.523,0.523,0,0,0.208 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.246 +0.667,0.187,0.187,0,0,0,0,0.257,0.528,0.528,0,0,0.225 +0.333,0.183,0.183,0,0,0,0,0.261,0.528,0.528,0,0,0.289 +0.333,0.177,0.177,0,0,0,0,0.265,0.533,0.533,0,0,0.193 +0.333,0.172,0.172,0,0,0,0,0.261,0.538,0.538,0,0,0.256 +0.333,0.171,0.171,0.233,0,0,0,0.276,0.538,0.538,0,0,0.0866 +0.333,0.171,0.171,0,0,0,0,0.287,0.533,0.533,0,0,0.0433 +0.333,0.175,0.175,0,0,0,0,0.29,0.543,0.543,0,0,0 +0.333,0.189,0.189,0,0,0,0,0.316,0.553,0.553,0,0,0.0866 +0.333,0.224,0.224,0,0,0,0,0.368,0.573,0.573,0,0,0.265 +0.333,0.281,0.281,0,0,0,0,0.405,0.578,0.578,0,0,0.0866 +0.333,0.335,0.335,0,0,0,0,0.42,0.563,0.563,0,0,0 +0.667,0.641,0.641,0,0,0.103,0,0.613,0.627,0.627,0,0,0.0921 +0.667,0.56,0.56,0,0,0.379,0.883,0.598,0.607,0.607,0,0.252,0.13 +0.667,0.353,0.353,0,0,0,0.15,0.524,0.557,0.557,0,0,0 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.263 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.309,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0515,0.0515,0,0,0,0,0.294,0.473,0.473,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.148,0.148,0,0,0,0,0.331,0.498,0.498,0,0,0.29 +0.667,0.308,0.308,0,0,0,0,0.435,0.577,0.577,0,0,0.127 +0.333,0.185,0.185,0,0,0,0,0.298,0.528,0.528,0,0,0.0878 +0.333,0.187,0.187,0,0,0,0,0.257,0.528,0.528,0,0,0.111 +0.333,0.183,0.183,0,0,0,0,0.261,0.528,0.528,0,0,0.0866 +0.333,0.177,0.177,0,0,0,0,0.265,0.533,0.533,0,0,0.0433 +0.333,0.172,0.172,0,0,0,0,0.261,0.538,0.538,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.276,0.538,0.538,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.287,0.533,0.533,0,0,0.13 +0.333,0.175,0.175,0,0,0,0,0.29,0.543,0.543,0,0,0.0866 +0.667,0.189,0.189,0.25,0,0,0,0.316,0.553,0.553,0,0,0.0866 +0.667,0.224,0.224,0.467,0,0,0,0.368,0.573,0.573,0,0,0.427 +0.667,0.512,0.512,0,0,0,0,0.553,0.687,0.687,0,0,0.201 +0.333,0.335,0.335,0,0,0,0,0.42,0.563,0.563,0,0,0.13 +0.333,0.346,0.346,0,0,0,0,0.435,0.548,0.548,0,0,0.49 +0.667,0.56,0.56,0,0,0,0,0.598,0.607,0.607,0,0,0.216 +0.667,0.201,0.201,0,0,0,0,0.391,0.513,0.513,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0434 +1,0.148,0.148,0,0,0,0,0.331,0.498,0.498,0,0,0.326 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.298,0.528,0.528,0,0,0.147 +0.667,0.187,0.187,0,0,0,0,0.257,0.528,0.528,0,0,0.128 +1,0.448,0.448,0,0,0,0,0.267,0.646,0.646,0,0,0.0904 +1,0.43,0.43,0,0,0,0,0.278,0.661,0.661,0,0,0.228 +1,0.417,0.417,0,0,0,0,0.267,0.676,0.676,0,0,0.0433 +0.333,0.171,0.171,0,0,0,0,0.276,0.538,0.538,0,0,0.173 +0.333,0.171,0.171,0.0833,0,0,0,0.287,0.533,0.533,0,0,0.13 +0.333,0.175,0.175,0.15,0,0,0,0.29,0.543,0.543,0,0,0 +0.667,0.329,0.329,0,0,0,0,0.375,0.637,0.637,0,0,0.346 +0.667,0.398,0.398,0,0,0,0,0.479,0.677,0.677,0,0,0.0433 +0.667,0.512,0.512,0,0,0,0,0.553,0.687,0.687,0,0,0.386 +0.667,0.619,0.619,0,0,0,0,0.583,0.657,0.657,0,0,0.216 +0.667,0.641,0.641,0,0,0,0,0.613,0.627,0.627,0,0,0.0433 +0.667,0.56,0.56,0,0,0,0,0.598,0.607,0.607,0,0,0 +0.667,0.201,0.201,0,0,0,0,0.391,0.513,0.513,0,0,0 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.242 +1,0.304,0.304,0,0.133,0,0,0.337,0.585,0.585,0.403,0,0.091 +1,0.302,0.302,0,1,0,0,0.256,0.585,0.585,0.74,0,0 +0.667,0.293,0.293,0,0.1,0,0,0.263,0.585,0.585,0.565,0,0.585 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.13 +0.333,0.162,0.162,0,0,0,0,0.26,0.537,0.537,0,0,0.519 +0.667,0.271,0.271,0,0,0,0,0.293,0.605,0.605,0,0,0.0866 +0.667,0.271,0.271,0,0,0,0,0.315,0.595,0.595,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0,0,0.186 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.105 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.333,0.196,0.196,0,0,0,0,0.405,0.577,0.577,0,0,0.216 +0.333,0.241,0.241,0,0,0,0,0.419,0.562,0.562,0,0,0.13 +0.667,0.297,0.297,0,0,0,0,0.434,0.547,0.547,0,0,0 +0.667,0.329,0.329,0,0,0,0,0.427,0.537,0.537,0.337,0,0.216 +0.667,0.234,0.234,0,0.883,0,0,0.39,0.512,0.512,0.236,0,0.177 +1,0.117,0.117,0,0.35,0,0,0.357,0.492,0.492,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.136 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.297,0.297,0,0,0,0,0.433,0.575,0.575,0,0,0.335 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.26,0.537,0.537,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0.0866 +0.667,0.272,0.272,0,0,0,0,0.322,0.615,0.615,0,0,0.13 +0.667,0.276,0.276,0,0,0,0,0.374,0.635,0.635,0,0,0.0866 +0.333,0.172,0.172,0.7,0,0,0,0.368,0.572,0.572,0,0,0.0866 +0.333,0.196,0.196,0,0,0,0,0.405,0.577,0.577,0,0,0.303 +0.667,0.433,0.433,0,0,0,0,0.581,0.655,0.655,0,0,0.0866 +0.667,0.543,0.543,0.233,0,0,0,0.61,0.625,0.625,0,0,0.0433 +0.667,0.609,0.609,0,0,0,0,0.596,0.605,0.605,0,0,0.13 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.297,0.297,0,0,0,0,0.433,0.575,0.575,0,0,0.329 +1,0.431,0.431,0,0,0,0,0.377,0.643,0.643,0,0,0.0841 +0.667,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0.104 +0.333,0.172,0.172,0,0,0,0,0.26,0.527,0.527,0,0,0.275 +0.333,0.166,0.166,0,0,0.517,0.617,0.264,0.532,0.532,0,0.144,0.346 +0.333,0.162,0.162,0,0,0,0.617,0.26,0.537,0.537,0,0.363,0.0866 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.0433 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0.389 +0.333,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0,0,0.13 +0.333,0.163,0.163,0.7,0,0,0,0.316,0.552,0.552,0,0,0.0433 +0.667,0.294,0.294,0,0,0,0,0.477,0.675,0.675,0,0,0.369 +0.333,0.196,0.196,0,0,0,0,0.405,0.577,0.577,0,0,0 +0.333,0.241,0.241,0,0,0,0,0.419,0.562,0.562,0,0,0 +0.667,0.543,0.543,0,0,0,0,0.61,0.625,0.625,0,0,0.0866 +0.667,0.609,0.609,0,0,0,0,0.596,0.605,0.605,0,0,0.13 +0.667,0.419,0.419,0,0,0,0,0.522,0.555,0.555,0,0,0.165 +0.667,0.184,0.184,0,0,0,0,0.455,0.515,0.515,0,0,0.399 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.294,0.472,0.472,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.0949 +0.667,0.144,0.144,0.45,0,0,0,0.331,0.497,0.497,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.345,0.522,0.522,0,0,0.0866 +0.667,0.304,0.304,0,0,0.103,0,0.337,0.585,0.585,0,0,0.265 +0.667,0.302,0.302,0,0,0.414,0.233,0.256,0.585,0.585,0,0.316,0.18 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0.661,0 +0.667,0.282,0.282,0,0,0,0,0.271,0.595,0.595,0,0,0.26 +0.667,0.274,0.274,0,0,0,0,0.263,0.605,0.605,0,0,0.0866 +0.667,0.271,0.271,0,0,0,0,0.293,0.605,0.605,0,0,0.13 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0.13 +0.333,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0,0,0.0866 +0.333,0.163,0.163,0,0,0,0,0.316,0.552,0.552,0,0,0.0433 +0.333,0.172,0.172,0,0,0,0,0.368,0.572,0.572,0,0,0.264 +0.667,0.342,0.342,0,0,0,0,0.551,0.685,0.685,0,0,0.285 +0.333,0.241,0.241,0,0,0.517,0.617,0.419,0.562,0.562,0,0.0819,0.0978 +0.333,0.297,0.297,0,0,0,0.117,0.434,0.547,0.547,0,0,0.173 +0.667,0.609,0.609,0,0,0.517,0.117,0.596,0.605,0.605,0,0,0.0866 +0.667,0.234,0.234,0,0,0,0.367,0.39,0.512,0.512,0,0.524,0 +1,0.184,0.184,0,0,0,0,0.455,0.515,0.515,0,0.078,0.234 +1,0.0999,0.0999,0,0,0,0,0.381,0.505,0.505,0,0,0.0938 +1,0.0583,0.0583,0,0,0,0,0.308,0.477,0.477,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.174,0.174,0.467,0,0,0,0.345,0.522,0.522,0,0,0 +1,0.304,0.304,0,0,0,0,0.337,0.585,0.585,0,0,0.153 +1,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0.0478 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.552,0.552,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.368,0.572,0.572,0,0,0.0433 +0.333,0.196,0.196,0,0,0,0,0.405,0.577,0.577,0,0,0.13 +0.333,0.241,0.241,0,0,0,0,0.419,0.562,0.562,0,0,0 +0.333,0.297,0.297,0,0,0,0,0.434,0.547,0.547,0,0,0.433 +0.667,0.609,0.609,0,0,0,0,0.596,0.605,0.605,0,0,0.476 +0.667,0.419,0.419,0,0,0,0,0.522,0.555,0.555,0,0,0.0433 +0.667,0.184,0.184,0,0,0,0,0.455,0.515,0.515,0,0,0 +0.667,0.0749,0.0749,0,0,0,0,0.32,0.487,0.487,0,0,0 +0.667,0.0583,0.0583,0,0,0,0,0.308,0.477,0.477,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.174,0.174,0,0,0,0,0.345,0.522,0.522,0,0,0.411 +1,0.177,0.177,0,0,0,0,0.297,0.527,0.527,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0 +0,0.05,0.05,0.233,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.552,0.552,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0.467,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.241,0.241,0,0,0,0,0.419,0.562,0.562,0,0,0.0866 +0.333,0.297,0.297,0,0,0,0,0.434,0.547,0.547,0,0,0.13 +0.333,0.329,0.329,0,0,0,0,0.427,0.537,0.537,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.39,0.512,0.512,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.305,0.467,0.467,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.144,0.144,0,0,0,0,0.331,0.497,0.497,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.345,0.522,0.522,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.297,0.527,0.527,0,0,0 +0.667,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0.324 +0.333,0.172,0.172,0,0,0,0,0.26,0.527,0.527,0,0,0.0884 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.0866 +0.333,0.162,0.162,0,0,0,0,0.26,0.537,0.537,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0.173 +0.333,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0,0,0.13 +0.333,0.163,0.163,0,0,0,0,0.316,0.552,0.552,0,0,0.216 +0.667,0.294,0.294,0,0,0,0,0.477,0.675,0.675,0,0,0.496 +0.667,0.342,0.342,0.7,0,0,0,0.551,0.685,0.685,0,0,0.207 +0.667,0.433,0.433,0,0,0,0,0.581,0.655,0.655,0.308,0,0.13 +1,0.79,0.79,0,0.883,0,0,0.787,0.703,0.703,0.234,0,0 +1,0.609,0.609,0,0.1,0,0,0.596,0.605,0.605,0,0,0.189 +1,0.234,0.234,0,0,0,0,0.39,0.512,0.512,0,0,0.13 +1,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0.116 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0.7,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.345,0.522,0.522,0,0,0.0765 +0.667,0.177,0.177,0,0,0,0,0.297,0.527,0.527,0,0,0.19 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0454 +0.333,0.172,0.172,0,0,0,0,0.26,0.527,0.527,0,0,0.143 +0.333,0.166,0.166,0.7,0,0,0,0.264,0.532,0.532,0,0,0.425 +0.333,0.162,0.162,0.3,0,0,0,0.26,0.537,0.537,0,0,0.389 +0.667,0.271,0.271,0.167,0,0,0,0.293,0.605,0.605,0,0,0 +0.667,0.271,0.271,0,0,0,0,0.315,0.595,0.595,0,0,0.13 +0.333,0.161,0.161,0.7,0,0,0,0.29,0.542,0.542,0,0,0.216 +0.333,0.163,0.163,0,0,0,0,0.316,0.552,0.552,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.333,0.241,0.241,0,0,0,0,0.419,0.562,0.562,0,0,0.13 +0.333,0.297,0.297,0,0,0,0,0.434,0.547,0.547,0,0,0 +0.333,0.329,0.329,0,0,0,0,0.427,0.537,0.537,0,0,0.13 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0806,0.0806,0,0,0,0,0.305,0.477,0.477,0,0,0.362 +1,0.144,0.144,0,0,0,0,0.331,0.497,0.497,0,0,0.0702 +1,0.297,0.297,0,0,0,0,0.433,0.575,0.575,0,0,0.235 +1,0.304,0.304,0.5,0,0,0,0.337,0.585,0.585,0,0,0.263 +0.667,0.302,0.302,0.2,0,0,0,0.256,0.585,0.585,0,0,0.861 +0.333,0.172,0.172,0,0,0,0,0.26,0.527,0.527,0,0,0.136 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.203 +0.333,0.162,0.162,0,0,0,0,0.26,0.537,0.537,0,0,0.484 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.161,0.161,0.217,0,0,0,0.29,0.542,0.542,0,0,0.103 +0.667,0.276,0.276,0,0,0,0,0.374,0.635,0.635,0,0,0.102 +0.333,0.172,0.172,0,0,0,0,0.368,0.572,0.572,0,0,0 +0.333,0.196,0.196,0,0,0,0,0.405,0.577,0.577,0,0,0.13 +0.667,0.433,0.433,0,0.583,0,0,0.581,0.655,0.655,0.7,0,0.0866 +0.667,0.543,0.543,0,0.733,0,0,0.61,0.625,0.625,0.608,0,0.0433 +0.667,0.329,0.329,0,0.65,0,0,0.427,0.537,0.537,0.711,0,0.231 +1,0.419,0.419,0,0,0,0,0.522,0.555,0.555,0.0994,0,0.119 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0603 +1,0.177,0.177,0.7,0,0,0,0.297,0.527,0.527,0,0,0.0839 +1,0.428,0.428,0,0,0,0,0.255,0.643,0.643,0,0,0.2 +1,0.415,0.415,0,0,0,0,0.266,0.643,0.643,0,0,0.534 +0.667,0.282,0.282,0,0,0,0,0.271,0.595,0.595,0,0,0.315 +0.333,0.162,0.162,0,0,0,0,0.26,0.537,0.537,0,0,0.173 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.26 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.163,0.163,0,0.333,0,0,0.316,0.552,0.552,0.722,0,0.216 +0.333,0.172,0.172,0,0.65,0,0,0.368,0.572,0.572,0.19,0,0 +0.333,0.196,0.196,0,0,0,0,0.405,0.577,0.577,0,0,0.0433 +0.667,0.433,0.433,0,0,0,0,0.581,0.655,0.655,0,0,0.216 +0.667,0.543,0.543,0,0,0,0,0.61,0.625,0.625,0,0,0.216 +1,0.888,0.888,0,0,0,0,0.765,0.673,0.673,0,0,0.203 +1,0.419,0.419,0,0,0,0,0.522,0.555,0.555,0,0,0 +1,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.32,0.487,0.487,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.144,0.144,0,0,0,0,0.331,0.497,0.497,0,0,0 +1,0.421,0.421,0,0,0,0,0.521,0.628,0.628,0,0,0.209 +0.667,0.304,0.304,0,0,0,0,0.337,0.585,0.585,0,0,0.196 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.0433 +0.333,0.162,0.162,0.25,0,0,0,0.26,0.537,0.537,0,0,0.303 +0.333,0.161,0.161,0.45,0.0833,0,0,0.275,0.537,0.537,0.497,0,0 +0.333,0.16,0.16,0.467,0.9,0,0,0.286,0.532,0.532,0.548,0,0.0866 +0.667,0.272,0.272,0,0,0,0,0.322,0.615,0.615,0.209,0,0.476 +0.333,0.163,0.163,0,0,0,0,0.316,0.552,0.552,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0,0.05,0.05,0.75,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.667,0.433,0.433,0.667,0,0,0,0.581,0.655,0.655,0,0,0.216 +0.667,0.543,0.543,0,0,0,0,0.61,0.625,0.625,0,0,0.0433 +0.667,0.609,0.609,0,0,0,0,0.596,0.605,0.605,0,0,0 +1,0.419,0.419,0,0,0,0,0.522,0.555,0.555,0,0,0 +1,0.184,0.184,0,0,0,0,0.455,0.515,0.515,0,0,0.0433 +1,0.0999,0.0999,0,0,0,0,0.381,0.505,0.505,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.308,0.477,0.477,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0651 +1,0.144,0.144,0,0,0,0,0.331,0.497,0.497,0,0,0.185 +1,0.297,0.297,0,0,0,0,0.433,0.575,0.575,0,0,0.0742 +0.667,0.304,0.304,0,0,0,0,0.337,0.585,0.585,0,0,0.178 +0.667,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0.561 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0,0.295 +0.667,0.282,0.282,0,0,0,0,0.271,0.595,0.595,0,0,0.248 +0.667,0.274,0.274,0.467,0,0,0,0.263,0.605,0.605,0,0,0.195 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.126 +1,0.271,0.271,0,0,0,0,0.315,0.595,0.595,0,0,0.183 +0.333,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0,0,0.0637 +0.333,0.163,0.163,0,0,0,0,0.316,0.552,0.552,0,0,0.0433 +0.333,0.172,0.172,0.233,0,0,0,0.368,0.572,0.572,0,0,0.0433 +0.333,0.196,0.196,0,0,0,0,0.405,0.577,0.577,0,0,0.216 +0.667,0.433,0.433,0,0.333,0,0,0.581,0.655,0.655,0.816,0,0.0866 +0.333,0.297,0.297,0,0.65,0,0,0.434,0.547,0.547,0,0,0 +1,0.888,0.888,0,0,0,0,0.765,0.673,0.673,0,0,0 +1,0.234,0.234,0,0,0,0,0.39,0.512,0.512,0,0,0.326 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.139 +1,0.177,0.177,0,0,0,0,0.297,0.527,0.527,0,0,0.0566 +1,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0,0,0.611 +0.667,0.172,0.172,0,0,0,0,0.26,0.527,0.527,0,0,0 +0.667,0.166,0.166,0,0,0.517,0.617,0.264,0.532,0.532,0,0.209,0.13 +0.667,0.162,0.162,0,0,0,0.117,0.26,0.537,0.537,0,0.411,0.0433 +0.667,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0.367,0 +0.667,0.271,0.271,0,0,0,0,0.315,0.595,0.595,0,0.496,0.471 +0.667,0.272,0.272,0,0,0,0,0.322,0.615,0.615,0,0,0.274 +0.667,0.276,0.276,0,0,0,0,0.374,0.635,0.635,0,0,0.121 +0.333,0.172,0.172,0,0,0,0,0.368,0.572,0.572,0,0,0.225 +0.333,0.196,0.196,0,0,0,0,0.405,0.577,0.577,0,0,0.189 +0.333,0.241,0.241,0,0,0,0,0.419,0.562,0.562,0,0,0.303 +0.667,0.543,0.543,0,0,0,0,0.61,0.625,0.625,0,0,0.476 +0.667,0.609,0.609,0,0,0,0,0.596,0.605,0.605,0,0,0.26 +0.667,0.234,0.234,0,0,0,0,0.39,0.512,0.512,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.305,0.467,0.467,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.294,0.472,0.472,0,0,0 +1,0.0806,0.0806,0,0,0,0,0.305,0.477,0.477,0,0,0 +1,0.239,0.239,0,0,0,0,0.404,0.525,0.525,0,0,0.14 +0.667,0.297,0.297,0,0,0,0,0.433,0.575,0.575,0,0,0.216 +0.667,0.304,0.304,0,0,0,0,0.337,0.585,0.585,0,0,0.32 +0.333,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0,0,0.396 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.4 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.106 +0.333,0.162,0.162,0,0,0,0,0.26,0.537,0.537,0,0,0.0866 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.0433 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0.0866 +1,0.272,0.272,0,0,0,0,0.322,0.615,0.615,0,0,0 +1,0.276,0.276,0,0,0,0,0.374,0.635,0.635,0,0,0.13 +1,0.294,0.294,0.05,0,0,0,0.477,0.675,0.675,0,0,0.0866 +0.333,0.196,0.196,1,0,0,0,0.405,0.577,0.577,0,0,0.157 +0.667,0.433,0.433,0.367,0,0,0,0.581,0.655,0.655,0,0,0.372 +1,0.79,0.79,0.55,0,0,0,0.787,0.703,0.703,0,0,0.0866 +1,0.888,0.888,0.867,0,0,0,0.765,0.673,0.673,0,0,0 +1,0.419,0.419,0,0,0,0,0.522,0.555,0.555,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.233,0,0,0,0.258,0.469,0.469,0,0,0.597 +1,0.304,0.304,0,0,0.517,0.167,0.337,0.585,0.585,0,0,0.0995 +0.667,0.302,0.302,0,0,0,0.317,0.256,0.585,0.585,0,0.303,0.338 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0.52,0.105 +0.667,0.282,0.282,0,0,0,0,0.271,0.595,0.595,0,0.724,0 +0.667,0.274,0.274,0,0,0,0,0.263,0.605,0.605,0,0.57,0.301 +0.667,0.271,0.271,0,0,0,0,0.293,0.605,0.605,0,0.26,0.173 +0.667,0.271,0.271,0.3,0,0,0,0.315,0.595,0.595,0,0,0.491 +1,0.383,0.383,0.167,0,0,0,0.355,0.688,0.688,0,0,0.268 +0.667,0.276,0.276,0,0,0,0,0.374,0.635,0.635,0,0,0.0433 +0.667,0.294,0.294,0,0,0,0,0.477,0.675,0.675,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.551,0.685,0.685,0,0,0 +0.667,0.433,0.433,0,0,0,0,0.581,0.655,0.655,0,0,0.13 +0.667,0.543,0.543,0,0,0,0,0.61,0.625,0.625,0,0,0.173 +0.667,0.609,0.609,0,0,0,0,0.596,0.605,0.605,0,0,0.216 +1,0.419,0.419,0,0,0,0,0.522,0.555,0.555,0,0,0.183 +1,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.32,0.487,0.487,0,0,0.173 +1,0.0583,0.0583,0,0,0,0,0.308,0.477,0.477,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.141 +1,0.0806,0.0806,0,0,0,0,0.305,0.477,0.477,0,0,0.141 +1,0.144,0.144,0,0,0,0,0.331,0.497,0.497,0,0,0 +1,0.297,0.297,0,0,0,0,0.433,0.575,0.575,0,0,0.289 +0.667,0.304,0.304,0.25,0,0,0,0.337,0.585,0.585,0,0,0.426 +0.333,0.176,0.176,0.217,0,0,0,0.257,0.527,0.527,0,0,0.13 +0.333,0.172,0.172,0,0,0,0,0.26,0.527,0.527,0,0,0.0866 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.0433 +0.333,0.162,0.162,0,0,0,0,0.26,0.537,0.537,0,0,0.0433 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.0866 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.552,0.552,0,0,0 +0.333,0.172,0.172,0.5,0,0,0,0.368,0.572,0.572,0,0,0.13 +0.333,0.196,0.196,0.2,0,0,0,0.405,0.577,0.577,0,0,0.0433 +0.333,0.241,0.241,0,0,0,0,0.419,0.562,0.562,0,0,0.13 +0.667,0.543,0.543,0,0,0,0,0.61,0.625,0.625,0,0,0.286 +0.667,0.609,0.609,0,0,0,0,0.596,0.605,0.605,0,0,0.0433 +0.667,0.419,0.419,0,0,0,0,0.522,0.555,0.555,0,0,0.0866 +0.667,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0 +1,0.0999,0.0999,0,0,0,0,0.381,0.505,0.505,0,0,0.185 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.377 +1,0.144,0.144,0,0,0,0,0.331,0.497,0.497,0,0,0.206 +1,0.421,0.421,0,0,0,0,0.521,0.628,0.628,0,0,0.109 +1,0.431,0.431,0,0,0,0,0.377,0.643,0.643,0,0,0.246 +1,0.428,0.428,0,0,0,0,0.255,0.643,0.643,0,0,1 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0,0.29 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.26,0.537,0.537,0,0,0.173 +0,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.333,0.16,0.16,1,0,0,0,0.286,0.532,0.532,0,0,0.26 +0.333,0.161,0.161,0.4,0,0,0,0.29,0.542,0.542,0,0,0.173 +0.333,0.163,0.163,0,0,0,0,0.316,0.552,0.552,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.368,0.572,0.572,0,0,0.173 +0.333,0.196,0.196,0,0,0,0,0.405,0.577,0.577,0,0,0.0866 +0.333,0.241,0.241,0,0,0,0,0.419,0.562,0.562,0,0,0.142 +0.667,0.543,0.543,0,0,0,0,0.61,0.625,0.625,0,0,0.487 +0.667,0.609,0.609,0,0,0,0,0.596,0.605,0.605,0,0,0.13 +1,0.603,0.603,0,0,0,0,0.654,0.598,0.598,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.294,0.472,0.472,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.144,0.144,0.233,0,0,0,0.331,0.497,0.497,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.345,0.522,0.522,0,0,0.0433 +0.667,0.177,0.177,0,0,0,0,0.297,0.527,0.527,0,0,0.336 +0.667,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0,0,0 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0,0.339 +0.667,0.282,0.282,0,0,0,0,0.271,0.595,0.595,0,0,0.316 +0.333,0.162,0.162,0,0,0,0,0.26,0.537,0.537,0,0,0.0866 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.13 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0.0433 +0.333,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0,0,0 +0.333,0.163,0.163,0.233,0,0,0,0.316,0.552,0.552,0,0,0.0433 +0.333,0.172,0.172,0,0,0,0,0.368,0.572,0.572,0,0,0.0433 +0.333,0.196,0.196,0,0,0,0,0.405,0.577,0.577,0,0,0.13 +0.333,0.241,0.241,0,0,0,0,0.419,0.562,0.562,0,0,0.0866 +0.667,0.543,0.543,0,0,0,0,0.61,0.625,0.625,0,0,0.175 +1,0.609,0.609,0,0.583,0,0,0.596,0.605,0.605,0.912,0,0.491 +1,0.234,0.234,0,0.65,0,0,0.39,0.512,0.512,0,0,0 +1,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0.26 +1,0.0749,0.0749,0,0,0,0,0.32,0.487,0.487,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.174,0.174,0,0,0,0,0.345,0.522,0.522,0,0,0 +1,0.304,0.304,0.467,0,0,0,0.337,0.585,0.585,0,0,0 +0.667,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0,0,0.235 +0.667,0.172,0.172,0,0,0,0,0.26,0.527,0.527,0,0,0 +0.667,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.258 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.346 +0.667,0.271,0.271,0,0,0,0,0.293,0.605,0.605,0,0,0.216 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0.13 +0.333,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0.164,0,0.0433 +0.333,0.163,0.163,0.25,0.833,0,0,0.316,0.552,0.552,0.659,0,0 +0.667,0.294,0.294,0.217,0.15,0,0,0.477,0.675,0.675,0,0,0.0866 +0.667,0.342,0.342,0,0,0,0,0.551,0.685,0.685,0,0,0.216 +0.333,0.241,0.241,0,0,0,0,0.419,0.562,0.562,0,0,0.216 +0.333,0.297,0.297,0,0,0,0,0.434,0.547,0.547,0,0,0 +0.333,0.329,0.329,0,0,0,0,0.427,0.537,0.537,0,0,0.151 +1,0.419,0.419,0,0,0,0,0.522,0.555,0.555,0,0,0.0433 +1,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.294,0.472,0.472,0,0,0 +1,0.0806,0.0806,0,0,0,0,0.305,0.477,0.477,0,0,0.11 +1,0.239,0.239,0.233,0,0,0,0.404,0.525,0.525,0,0,0.153 +1,0.421,0.421,0,0,0,0,0.521,0.628,0.628,0,0,0.615 +1,0.304,0.304,0,0,0,0,0.337,0.585,0.585,0,0,0.598 +0.667,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0.0433 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0,0.0433 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0,0,0 +0.667,0.276,0.276,0,0,0,0,0.374,0.635,0.635,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.477,0.675,0.675,0,0,0.311 +0.333,0.196,0.196,0,0,0,0,0.405,0.577,0.577,0,0,0.216 +0.333,0.241,0.241,0,0,0,0,0.419,0.562,0.562,0,0,0.173 +0.667,0.543,0.543,0,0,0,0,0.61,0.625,0.625,0,0,0.13 +0.667,0.609,0.609,0,0,0,0,0.596,0.605,0.605,0,0,0 +0.667,0.419,0.419,0,0,0,0,0.522,0.555,0.555,0,0,0.0853 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.308,0.477,0.477,0,0,0 +1,0.05,0.05,0,0,0,0,0.308,0.472,0.472,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.183 +1,0.174,0.174,0,0,0,0,0.345,0.522,0.522,0,0,0.0762 +1,0.177,0.177,0,0,0,0,0.297,0.527,0.527,0,0,0.119 +1,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0.592 +0.667,0.293,0.293,0,0,0.517,0.417,0.263,0.585,0.585,0,0.112,0.365 +0.333,0.166,0.166,0,0,0,0.0667,0.264,0.532,0.532,0,0,0.0866 +0.333,0.162,0.162,0,0,0,0,0.26,0.537,0.537,0,0,0.0866 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.13 +0.333,0.16,0.16,0.467,0,0,0,0.286,0.532,0.532,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0,0,0.0433 +0.667,0.276,0.276,0,0,0,0,0.374,0.635,0.635,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.477,0.675,0.675,0,0,0.346 +0.667,0.342,0.342,0,0,0,0,0.551,0.685,0.685,0,0,0.0433 +1,0.625,0.625,0,0,0,0,0.742,0.748,0.748,0,0,0.13 +1,0.79,0.79,0,0,0,0,0.787,0.703,0.703,0,0,0.0866 +1,0.888,0.888,0,0,0,0,0.765,0.673,0.673,0,0,0.0866 +1,0.603,0.603,0,0,0,0,0.654,0.598,0.598,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.294,0.472,0.472,0,0,0 +1,0.0806,0.0806,0,0,0,0,0.305,0.477,0.477,0,0,0 +1,0.239,0.239,0,0,0,0,0.404,0.525,0.525,0,0,0 +0.667,0.174,0.174,0,0,0,0,0.345,0.522,0.522,0,0,0.154 +0.333,0.177,0.177,0,0,0,0,0.297,0.527,0.527,0,0,0.26 +0.333,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.26,0.537,0.537,0,0,0.216 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.0866 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0.0866 +0.333,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0,0,0.173 +0.333,0.163,0.163,0.3,0,0,0,0.316,0.552,0.552,0,0,0.0433 +0.667,0.294,0.294,0.167,0,0,0,0.477,0.675,0.675,0,0,0 +0.667,0.342,0.342,0,0,0,0,0.551,0.685,0.685,0,0,0.0433 +0.667,0.241,0.241,0,0,0,0,0.419,0.562,0.562,0,0,0.173 +1,0.543,0.543,0,0,0,0,0.61,0.625,0.625,0,0,0.254 +1,0.609,0.609,0,0,0,0,0.596,0.605,0.605,0,0,0 +1,0.234,0.234,0,0,0,0,0.39,0.512,0.512,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0806,0.0806,0,0,0,0,0.305,0.477,0.477,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.174,0.174,0,0.333,0,0,0.345,0.522,0.522,0.483,0,0 +1,0.304,0.304,0.467,0.65,0,0,0.337,0.585,0.585,0.273,0,0.0682 +0.667,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0.147,0,0.13 +0.667,0.293,0.293,0,0.833,0,0,0.263,0.585,0.585,0.396,0,0 +0.333,0.166,0.166,0,0.4,0,0,0.264,0.532,0.532,0,0,0.0866 +0.667,0.274,0.274,0,0,0.517,0.367,0.263,0.605,0.605,0,0.0559,0.13 +0.667,0.271,0.271,0,0,0,1,0.293,0.605,0.605,0,0.524,0.0866 +0.333,0.16,0.16,0,0,0,0.117,0.286,0.532,0.532,0,0.689,0.0866 +0.333,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0,0.375,0.173 +0.333,0.163,0.163,0,0,0,0,0.316,0.552,0.552,0,0.558,0 +0.667,0.294,0.294,0.233,0,0,0,0.477,0.675,0.675,0,0.486,0.0433 +0.667,0.342,0.342,0,0,0,0,0.551,0.685,0.685,0,0.502,0.0433 +0.667,0.433,0.433,0,0,0,0,0.581,0.655,0.655,0,0.517,0 +0.667,0.543,0.543,0,0,0,0,0.61,0.625,0.625,0,0.704,0.433 +0.667,0.609,0.609,0,0,0,0,0.596,0.605,0.605,0,0.707,0.0433 +0.667,0.419,0.419,0,0,0,0,0.522,0.555,0.555,0,0.467,0.216 +0.667,0.184,0.184,0,0,0,0,0.455,0.515,0.515,0,0.0468,0.146 +0.667,0.0999,0.0999,0,0,0,0,0.381,0.505,0.505,0,0,0.115 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0806,0.0806,0.217,0,0,0,0.305,0.477,0.477,0,0,0.111 +1,0.239,0.239,0,0,0,0,0.404,0.525,0.525,0,0,0.13 +1,0.297,0.297,0,0,0,0,0.433,0.575,0.575,0,0,0 +0.667,0.177,0.177,0,0.583,0,0,0.297,0.527,0.527,0.799,0,0.173 +0.667,0.176,0.176,0,0.65,0,0,0.257,0.527,0.527,0.138,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.115 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.333,0.172,0.172,0,0,0,0,0.368,0.572,0.572,0,0,0.216 +0.333,0.196,0.196,0,0,0,0,0.405,0.577,0.577,0,0,0.216 +0.333,0.241,0.241,0,0,0,0,0.419,0.562,0.562,0,0,0 +0.333,0.297,0.297,0.7,0,0,0,0.434,0.547,0.547,0,0,0.166 +0.667,0.609,0.609,0,0.333,0.103,0,0.596,0.605,0.605,0.455,0,0.219 +0.667,0.419,0.419,0,0.65,0.414,0.733,0.522,0.555,0.555,0.313,0.281,0 +1,0.184,0.184,0,0,0,0,0.455,0.515,0.515,0,0.0078,0.302 +1,0.0749,0.0749,0,0,0,0,0.32,0.487,0.487,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0327 +1,0.421,0.421,0,0,0,0,0.521,0.628,0.628,0,0,0.332 +0.333,0.177,0.177,0,0,0,0,0.297,0.527,0.527,0,0,0.172 +0.667,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.26,0.527,0.527,0,0,0.19 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.13 +0.333,0.162,0.162,0,0,0,0,0.26,0.537,0.537,0,0,0.0433 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.205 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0.655 +0.333,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0,0,0.236 +0.667,0.276,0.276,0.25,0,0,0,0.374,0.635,0.635,0,0,0.0866 +1,0.416,0.416,0.217,0,0,0,0.587,0.778,0.778,0,0,0.0433 +1,0.488,0.488,0,0,0,0,0.698,0.792,0.792,0,0,0.267 +0.667,0.433,0.433,0,0,0.517,0.117,0.581,0.655,0.655,0,0,0.0866 +0.667,0.543,0.543,0,0,0,0.617,0.61,0.625,0.625,0,0.666,0.13 +1,0.888,0.888,0,0,0,0,0.765,0.673,0.673,0,0.578,0.433 +1,0.603,0.603,0,0,0,0,0.654,0.598,0.598,0,0.142,0.296 +1,0.184,0.184,0,0,0,0,0.455,0.515,0.515,0,0,0.124 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.129 +0.667,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0,0,0.0853 +0.333,0.05,0.05,0,0,0.517,0.367,0.258,0.469,0.469,0,0.0579,0.104 +0.333,0.166,0.166,0,0,0,0.867,0.264,0.532,0.532,0,0.735,0 +0.333,0.162,0.162,0,0,0,0,0.26,0.537,0.537,0,0.38,0.13 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0.364,0.26 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0.273,0.173 +0.333,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0,0.276,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.552,0.552,0,0.166,0.0866 +0.333,0.172,0.172,0,0.333,0,0,0.368,0.572,0.572,0.575,0,0.0433 +0.667,0.342,0.342,0,0.9,0,0,0.551,0.685,0.685,0.571,0,0.499 +0.667,0.433,0.433,0,0,0,0,0.581,0.655,0.655,0.576,0,0.173 +0.667,0.543,0.543,0,0,0,0,0.61,0.625,0.625,0.389,0,0.0866 +0.667,0.609,0.609,0,0,0,0,0.596,0.605,0.605,0,0,0.0433 +0.667,0.419,0.419,0,0,0,0,0.522,0.555,0.555,0,0,0 +0.667,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.32,0.487,0.487,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.308,0.477,0.477,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.75,0,0,0,0.258,0.469,0.469,0,0,0.12 +1,0.297,0.297,0.667,0,0,0,0.433,0.575,0.575,0,0,0.141 +0.667,0.177,0.177,0,0,0,0,0.297,0.527,0.527,0,0,0 +0.333,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0.145,0,0 +0.333,0.172,0.172,0,0.833,0,0,0.26,0.527,0.527,0.483,0,0 +0.333,0.166,0.166,0,0.15,0,0,0.264,0.532,0.532,0,0,0.0433 +0.333,0.162,0.162,0,0,0,0,0.26,0.537,0.537,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0.467,0,0,0,0.258,0.469,0.469,0,0,0.293 +0.333,0.172,0.172,0,0,0,0,0.368,0.572,0.572,0,0,0.433 +0.333,0.196,0.196,0,0,0,0,0.405,0.577,0.577,0,0,0.0433 +0.333,0.241,0.241,0,0,0,0,0.419,0.562,0.562,0,0,0 +0.667,0.543,0.543,0,0,0,0,0.61,0.625,0.625,0,0,0.216 +0.667,0.609,0.609,0,0,0,0,0.596,0.605,0.605,0,0,0.346 +0.667,0.419,0.419,0,0,0,0,0.522,0.555,0.555,0,0,0.173 +1,0.184,0.184,0,0,0,0,0.455,0.515,0.515,0,0,0.38 +1,0.0999,0.0999,0,0,0,0,0.381,0.505,0.505,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.165 +1,0.239,0.239,0,0,0,0,0.404,0.525,0.525,0.254,0,0 +1,0.297,0.297,0,0.883,0,0,0.433,0.575,0.575,0.589,0,0 +1,0.304,0.304,0.3,0.1,0,0,0.337,0.585,0.585,0.726,0,0.156 +1,0.302,0.302,0.4,0,0,0,0.256,0.585,0.585,0.0902,0,0.168 +0.333,0.172,0.172,0,0,0.517,0.667,0.26,0.527,0.527,0,0.221,0.258 +0.333,0.166,0.166,0,0,0,0.317,0.264,0.532,0.532,0.311,0.469,0.0866 +1,0.385,0.385,0,0.883,0.517,0.667,0.266,0.673,0.673,0.831,0.289,0.0433 +0.667,0.271,0.271,0,0.6,0,0.317,0.293,0.605,0.605,0.0764,0.116,0.0433 +0.333,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0 +0.667,0.272,0.272,0.05,0,0,0,0.322,0.615,0.615,0,0,0.0866 +0.333,0.163,0.163,0.183,0,0,0,0.316,0.552,0.552,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.477,0.675,0.675,0,0,0.173 +0.667,0.342,0.342,0,0,0,0,0.551,0.685,0.685,0,0,0.386 +0.667,0.433,0.433,0,0,0,0,0.581,0.655,0.655,0,0,0.349 +0.667,0.543,0.543,0,0,0,0,0.61,0.625,0.625,0,0,0.186 +1,0.329,0.329,0,0,0,0,0.427,0.537,0.537,0,0,0.155 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.174,0.174,0,0,0,0,0.345,0.522,0.522,0,0,0 +0.667,0.304,0.304,0.467,0,0,0,0.337,0.585,0.585,0,0,0.186 +0.667,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0.232 +1,0.415,0.415,0,0,0.517,0.667,0.266,0.643,0.643,0,0.105,0.611 +1,0.398,0.398,0,0,0,0.567,0.277,0.658,0.658,0,0.351,0.941 +1,0.385,0.385,0,0,0,0,0.266,0.673,0.673,0,0.401,0.165 +1,0.382,0.382,0,0,0,0,0.31,0.673,0.673,0,0.538,0.241 +0.667,0.271,0.271,0,0,0,0,0.315,0.595,0.595,0,0.371,0.271 +0.333,0.161,0.161,0,0,0,0,0.29,0.542,0.542,0,0.408,0.216 +0.333,0.163,0.163,0,0,0,0,0.316,0.552,0.552,0,0.234,0.173 +0.333,0.172,0.172,0,0,0,0,0.368,0.572,0.572,0,0.762,0.26 +0.667,0.342,0.342,0,0,0,0,0.551,0.685,0.685,0,0.464,0.173 +0.667,0.433,0.433,0,0,0,0,0.581,0.655,0.655,0,0.445,0.0866 +0.667,0.543,0.543,0,0.383,0,0,0.61,0.625,0.625,0.6,0.592,0.0433 +0.667,0.609,0.609,0,0.85,0,0,0.596,0.605,0.605,0,0,0.243 +0.667,0.234,0.234,0,0,0,0,0.39,0.512,0.512,0,0,0.13 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.399 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.21 +1,0.0583,0.0583,0,0,0,0,0.308,0.477,0.477,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.233,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.297,0.527,0.527,0,0,0 +0.667,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0,0,0.0705 +0.667,0.172,0.172,0,0,0,0,0.26,0.527,0.527,0,0,0 +0.667,0.282,0.282,0,0,0,0,0.271,0.595,0.595,0,0,0.154 +0.667,0.274,0.274,0,0,0,0,0.263,0.605,0.605,0,0,0.444 +0.667,0.271,0.271,0,0,0,0,0.293,0.605,0.605,0,0,0.223 +0.667,0.16,0.16,0,0,0,0,0.286,0.532,0.532,0,0,0.188 +0.667,0.272,0.272,0,0,0,0,0.322,0.615,0.615,0,0,0.271 +0.333,0.163,0.163,0,0,0,0,0.316,0.552,0.552,0.142,0,0.195 +0.333,0.172,0.172,0,0.833,0,0,0.368,0.572,0.572,0.368,0,0.175 +0.333,0.196,0.196,0,0.4,0,0,0.405,0.577,0.577,0,0,0.373 +0.333,0.241,0.241,0,0,0,0,0.419,0.562,0.562,0,0,0.198 +0.667,0.543,0.543,0,0,0,0,0.61,0.625,0.625,0,0,0.0433 +1,0.888,0.888,0,0,0,0,0.765,0.673,0.673,0,0,0.606 +1,0.419,0.419,0,0,0,0,0.522,0.555,0.555,0,0,0.26 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.048 +1,0.287,0.287,0.483,0,0,0,0.435,0.577,0.577,0,0,0 +0.667,0.288,0.288,0.467,0,0,0,0.338,0.587,0.587,0,0,0 +0.667,0.281,0.281,0,0,0,0,0.257,0.587,0.587,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.264,0.587,0.587,0,0,0.13 +0.667,0.262,0.262,0,0,0,0,0.271,0.597,0.597,0,0,0.149 +0.333,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.276,0.538,0.538,0,0,0.0433 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0 +0.333,0.152,0.152,0.25,0,0,0,0.316,0.553,0.553,0,0,0.216 +0.667,0.266,0.266,1,0,0,0,0.479,0.677,0.677,0,0,0.0433 +0.667,0.299,0.299,1,0,0,0,0.553,0.687,0.687,0,0,0.0433 +1,0.528,0.528,1,0,0,0,0.745,0.751,0.751,0,0,0.173 +0.667,0.468,0.468,0.6,0,0,0,0.613,0.627,0.627,0,0,0.173 +0.667,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.0433 +0.667,0.229,0.229,0,0,0,0,0.391,0.513,0.513,0,0,0 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.0433 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.254 +1,0.14,0.14,0,0,0,0,0.331,0.498,0.498,0,0,0 +0.667,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.0844 +1,0.288,0.288,0.7,0,0,0,0.338,0.587,0.587,0,0,0.15 +1,0.281,0.281,0,0,0,0,0.257,0.587,0.587,0,0,0.468 +1,0.273,0.273,0,0,0,0,0.264,0.587,0.587,0,0,0.493 +1,0.262,0.262,0,0,0.517,0.117,0.271,0.597,0.597,0,0,0.218 +0.667,0.254,0.254,0,0,0,0.867,0.264,0.607,0.607,0,0.464,0.305 +0.667,0.251,0.251,0,0,0,0,0.294,0.607,0.607,0,0.355,0.215 +0.667,0.251,0.251,0,0,0,0,0.316,0.597,0.597,0,0.412,0 +0.667,0.252,0.252,0,0,0,0,0.323,0.617,0.617,0,0.311,0.0433 +0.667,0.255,0.255,0,0,0,0,0.375,0.637,0.637,0,0.512,0.0866 +0.667,0.266,0.266,0,0,0,0,0.479,0.677,0.677,0,0.27,0.26 +0.333,0.175,0.175,0,0,0,0,0.405,0.578,0.578,0,0.482,0 +0.333,0.209,0.209,0,0,0,0,0.42,0.563,0.563,0,0.645,0 +0.667,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0,0.497,0.0433 +1,0.806,0.806,0,0,0,0,0.768,0.676,0.676,0,0,0.224 +1,0.408,0.408,0,0,0,0,0.524,0.557,0.557,0,0,0.772 +1,0.184,0.184,0,0,0,0,0.457,0.517,0.517,0,0,0.291 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.14,0.14,0,0,0,0,0.331,0.498,0.498,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.169,0.169,0,0.583,0,0,0.298,0.528,0.528,0.676,0,0 +0.667,0.165,0.165,0,0.633,0,0,0.257,0.528,0.528,0,0,0.0433 +0.667,0.273,0.273,0,0,0,0,0.264,0.587,0.587,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.265,0.533,0.533,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.276,0.538,0.538,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0.0433 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.0433 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0.346 +0.333,0.175,0.175,0,0,0,0,0.405,0.578,0.578,0,0,0.26 +0.333,0.209,0.209,0.233,0,0,0,0.42,0.563,0.563,0,0,0.0433 +0.667,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0.175,0,0.346 +1,0.554,0.554,0,0.833,0.103,0,0.598,0.607,0.607,0.716,0,0.0866 +1,0.408,0.408,0,0.133,0.414,0.867,0.524,0.557,0.557,0.573,0.207,0.519 +1,0.184,0.184,0,0,0,0.617,0.457,0.517,0.517,0,0.187,0 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.309,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.309,0.473,0.473,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.23,0.23,0,0,0,0,0.405,0.527,0.527,0,0,0.261 +0.667,0.168,0.168,0,0,0,0,0.346,0.523,0.523,0,0,0.21 +0.667,0.169,0.169,0,0,0,0,0.298,0.528,0.528,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.05,0.05,0.233,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0.216 +0.333,0.151,0.151,0,0,0,0,0.276,0.538,0.538,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0.0866 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.346 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0.0866 +0.333,0.175,0.175,0,0,0,0,0.405,0.578,0.578,0,0,0.13 +0.333,0.209,0.209,0,0,0,0,0.42,0.563,0.563,0,0,0.173 +0.333,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.137 +1,0.302,0.302,0.217,0.333,0,0,0.428,0.538,0.538,0.562,0,0 +1,0.229,0.229,0,0.883,0,0,0.391,0.513,0.513,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.169,0.169,0.75,0,0,0,0.298,0.528,0.528,0,0,0 +1,0.281,0.281,1,0,0,0,0.257,0.587,0.587,0,0,0.348 +1,0.384,0.384,1,0,0,0,0.267,0.646,0.646,0,0,0.0964 +0.333,0.156,0.156,1,0,0,0,0.265,0.533,0.533,0,0,0 +0.333,0.152,0.152,1,0,0,0,0.261,0.538,0.538,0,0,0 +0.333,0.151,0.151,0.55,0,0,0,0.276,0.538,0.538,0,0,0.26 +0.667,0.251,0.251,0,0,0,0,0.316,0.597,0.597,0,0,0.0433 +0.667,0.252,0.252,0.5,0,0,0,0.323,0.617,0.617,0,0,0 +0.667,0.255,0.255,0.217,0,0,0,0.375,0.637,0.637,0,0,0.361 +0.667,0.266,0.266,0,0,0,0,0.479,0.677,0.677,0,0,0.209 +0.667,0.299,0.299,0,0,0.517,0.617,0.553,0.687,0.687,0,0.209,0.303 +0.667,0.368,0.368,0,0,0,0.367,0.583,0.657,0.657,0,0.46,0.26 +0.667,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0,0.135,0.0433 +0.667,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.139 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0.103,0,0.258,0.469,0.469,0,0,0.12 +0.333,0.168,0.168,0,0,0.414,0.733,0.346,0.523,0.523,0,0.107,0 +0.333,0.169,0.169,0,0,0,0,0.298,0.528,0.528,0,0.344,0.209 +0.667,0.281,0.281,0,0,0,0,0.257,0.587,0.587,0,0.667,0.344 +0.667,0.273,0.273,0,0,0,0,0.264,0.587,0.587,0,0.427,0 +0.333,0.156,0.156,0,0,0,0,0.265,0.533,0.533,0,0.295,0.0866 +0.333,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0.313,0.0433 +0.333,0.151,0.151,0,0,0,0,0.276,0.538,0.538,0,0.584,0.0433 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0.36,0 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0.0559,0.13 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.33 +0.667,0.266,0.266,0,0,0,0,0.479,0.677,0.677,0,0,0.241 +0.667,0.299,0.299,0,0,0,0,0.553,0.687,0.687,0,0,0.329 +0.333,0.209,0.209,0,0,0,0,0.42,0.563,0.563,0,0,0.0866 +0.667,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0,0,0.26 +0.667,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.216 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0788,0.0788,0,0,0,0,0.305,0.478,0.478,0,0,0.217 +1,0.23,0.23,0,0,0,0,0.405,0.527,0.527,0,0,0.159 +0.333,0.168,0.168,0,0,0,0,0.346,0.523,0.523,0,0,0.091 +0.333,0.169,0.169,0,0,0,0,0.298,0.528,0.528,0,0,0.0859 +0.333,0.165,0.165,0,0,0,0,0.257,0.528,0.528,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0.0433 +0.667,0.262,0.262,0,0,0,0,0.271,0.597,0.597,0,0,0.26 +0.667,0.254,0.254,0,0,0,0,0.264,0.607,0.607,0,0,0.123 +0.667,0.251,0.251,0,0,0,0,0.294,0.607,0.607,0,0,0.173 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0.173 +0.667,0.299,0.299,0,0.0833,0,0,0.553,0.687,0.687,0.403,0,0.346 +0.667,0.368,0.368,0,1,0,0,0.583,0.657,0.657,0.442,0,0 +0.667,0.468,0.468,0,0.133,0,0,0.613,0.627,0.627,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.225 +0.667,0.229,0.229,0,0,0,0,0.391,0.513,0.513,0,0,0.0433 +0.667,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.131 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0.25 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0333 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.147 +1,0.287,0.287,0.5,0,0,0,0.435,0.577,0.577,0.168,0,0.426 +0.667,0.288,0.288,1,0.833,0.103,0,0.338,0.587,0.587,0.608,0,0.184 +0.667,0.281,0.281,1,0.133,0.414,0.483,0.257,0.587,0.587,0,0.298,0.166 +0.667,0.273,0.273,0.383,0.583,0.517,0.617,0.264,0.587,0.587,0.759,0.267,0.0433 +0.333,0.156,0.156,0,0.383,0,0.117,0.265,0.533,0.533,0.125,0,0.26 +0.333,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.276,0.538,0.538,0,0,0.258 +0.667,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0.216 +0.667,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.41 +0.667,0.266,0.266,1,0,0,0,0.479,0.677,0.677,0,0,0.246 +0.667,0.299,0.299,0.2,0,0,0,0.553,0.687,0.687,0,0,0.186 +0.333,0.209,0.209,0,0,0,0,0.42,0.563,0.563,0,0,0.0433 +0.667,0.259,0.259,0,0,0,0,0.435,0.548,0.548,0,0,0.192 +1,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.13 +1,0.229,0.229,0,0,0,0,0.391,0.513,0.513,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.14,0.14,0.467,0,0,0,0.331,0.498,0.498,0,0,0 +1,0.287,0.287,0,0,0,0,0.435,0.577,0.577,0.175,0,0.316 +0.667,0.288,0.288,0,0.833,0,0,0.338,0.587,0.587,0.63,0,0 +0.333,0.165,0.165,0,0.383,0,0,0.257,0.528,0.528,0.746,0,0 +0.333,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0.433 +0.333,0.156,0.156,0,0,0,0,0.265,0.533,0.533,0,0,0.13 +0.333,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0 +0,0.05,0.05,0.717,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0.173 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0.26 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.105 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.405,0.578,0.578,0,0,0.0866 +0.333,0.209,0.209,0.467,0,0,0,0.42,0.563,0.563,0,0,0.285 +0.667,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0,0,0.202 +0.667,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.108 +1,0.588,0.588,0,0,0,0,0.656,0.601,0.601,0,0,0.335 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.194 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0.163 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.0508,0.0508,0,0,0,0,0.294,0.473,0.473,0,0,0 +1,0.0788,0.0788,0,0,0,0,0.305,0.478,0.478,0,0,0 +1,0.14,0.14,0,0,0,0,0.331,0.498,0.498,0,0,0.119 +1,0.168,0.168,0,0,0,0,0.346,0.523,0.523,0,0,0.127 +1,0.288,0.288,0,0,0,0,0.338,0.587,0.587,0,0,0.383 +1,0.281,0.281,0,0,0,0,0.257,0.587,0.587,0,0,0.0859 +1,0.273,0.273,0,0,0.517,0.117,0.264,0.587,0.587,0,0,0.181 +1,0.367,0.367,0,0,0,0.367,0.278,0.661,0.661,0,0.147,0.341 +1,0.355,0.355,0,0,0,0,0.267,0.676,0.676,0,0,0.368 +0.333,0.151,0.151,0,0,0,0,0.276,0.538,0.538,0,0,0.173 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0.303 +0.333,0.175,0.175,0,0,0,0,0.405,0.578,0.578,0,0,0.26 +0.333,0.209,0.209,0,0,0,0,0.42,0.563,0.563,0,0,0.173 +0.667,0.468,0.468,0,0.333,0,0,0.613,0.627,0.627,0.692,0,0.159 +1,0.806,0.806,0,0.883,0,0,0.768,0.676,0.676,0.344,0,0.341 +1,0.408,0.408,0,0,0,0,0.524,0.557,0.557,0,0,0.403 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.273 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0322 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.305,0.468,0.468,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.144 +1,0.0788,0.0788,0,0,0,0,0.305,0.478,0.478,0,0,0.132 +0.667,0.14,0.14,0,0,0,0,0.331,0.498,0.498,0,0,0.0375 +1,0.287,0.287,0,0,0,0,0.435,0.577,0.577,0,0,0.227 +0.667,0.169,0.169,0,0,0,0,0.298,0.528,0.528,0,0,0.13 +0.333,0.165,0.165,0,0,0,0,0.257,0.528,0.528,0,0,0.316 +0.333,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0.153 +0.333,0.156,0.156,0,0,0,0,0.265,0.533,0.533,0,0,0.0433 +0.333,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0.173 +0.333,0.151,0.151,0,0,0,0,0.276,0.538,0.538,0,0,0.0433 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0.216 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.13 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0 +0.333,0.175,0.175,0.467,0,0,0,0.405,0.578,0.578,0,0,0.0866 +0.333,0.209,0.209,0,0,0,0,0.42,0.563,0.563,0,0,0.216 +0.333,0.259,0.259,0,0,0,0,0.435,0.548,0.548,0,0,0.286 +0.667,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0 +0.667,0.408,0.408,0,0,0,0,0.524,0.557,0.557,0,0,0.0433 +1,0.252,0.252,0,0,0,0,0.556,0.54,0.54,0,0,0 +1,0.0999,0.0999,0,0,0,0,0.383,0.507,0.507,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.177 +0.333,0.05,0.05,0.233,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.298,0.528,0.528,0,0,0.0935 +0.667,0.281,0.281,0,0,0,0,0.257,0.587,0.587,0,0,0.115 +0.667,0.273,0.273,0,0,0,0,0.264,0.587,0.587,0,0,0.233 +0.667,0.262,0.262,0.25,0,0,0,0.271,0.597,0.597,0,0,0.0873 +0.667,0.254,0.254,0.467,0,0,0,0.264,0.607,0.607,0,0,0.469 +1,0.352,0.352,0,0,0,0,0.312,0.676,0.676,0,0,0.13 +0.333,0.15,0.15,0.233,0,0,0,0.287,0.533,0.533,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.323,0.617,0.617,0,0,0.0866 +0.667,0.255,0.255,0,0,0,0,0.375,0.637,0.637,0,0,0.13 +0.667,0.266,0.266,0,0,0,0,0.479,0.677,0.677,0,0,0.0866 +0.667,0.299,0.299,0,0,0,0,0.553,0.687,0.687,0,0,0.13 +0.667,0.368,0.368,0,0,0,0,0.583,0.657,0.657,0,0,0.303 +0.667,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0,0,0 +0.667,0.302,0.302,0,0,0,0,0.428,0.538,0.538,0,0,0.13 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.23 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0.0881 +1,0.0583,0.0583,0,0,0,0,0.309,0.478,0.478,0,0,0.175 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.14,0.14,0,0,0,0,0.331,0.498,0.498,0,0,0.13 +1,0.287,0.287,0,0,0,0,0.435,0.577,0.577,0,0,0.368 +0.667,0.288,0.288,0,0,0,0,0.338,0.587,0.587,0,0,0 +0.667,0.281,0.281,0.25,0,0,0,0.257,0.587,0.587,0,0,0.242 +0.667,0.273,0.273,0.7,0,0,0,0.264,0.587,0.587,0,0,0.0433 +0.333,0.156,0.156,0,0,0,0,0.265,0.533,0.533,0,0,0.0433 +0.333,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0.0433 +0.667,0.251,0.251,0,0,0,0,0.294,0.607,0.607,0,0,0.0433 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0.0433 +0.667,0.151,0.151,0.467,0,0,0,0.29,0.543,0.543,0,0,0.0433 +0.667,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.13 +0.667,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0.13 +0.667,0.175,0.175,0,0,0,0,0.405,0.578,0.578,0,0,0.0433 +0.667,0.209,0.209,0,0,0,0,0.42,0.563,0.563,0,0,0.185 +1,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0,0,0.24 +1,0.806,0.806,0,0,0,0,0.768,0.676,0.676,0,0,0.0532 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0788,0.0788,0,0,0,0,0.305,0.478,0.478,0,0,0 +1,0.23,0.23,0,0,0,0,0.405,0.527,0.527,0,0,0 +1,0.287,0.287,0.717,0,0,0,0.435,0.577,0.577,0,0,0 +1,0.288,0.288,0,0,0,0,0.338,0.587,0.587,0,0,0.0866 +0.667,0.281,0.281,0.467,0,0,0,0.257,0.587,0.587,0,0,0.0866 +0.667,0.273,0.273,0,0,0,0,0.264,0.587,0.587,0,0,0.0433 +0.333,0.156,0.156,0,0,0,0,0.265,0.533,0.533,0,0,0 +0.333,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0.173 +0.667,0.251,0.251,0,0,0,0,0.294,0.607,0.607,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0.0433 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.0433 +1,0.374,0.374,0,0,0,0,0.59,0.781,0.781,0,0,0 +1,0.424,0.424,0,0,0,0,0.701,0.796,0.796,0,0,0.0433 +0.667,0.368,0.368,0,0,0,0,0.583,0.657,0.657,0,0,0.13 +0.667,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0,0,0.0866 +0.667,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.173 +0.667,0.229,0.229,0,0,0,0,0.391,0.513,0.513,0,0,0.346 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.14,0.14,0.25,0,0,0,0.331,0.498,0.498,0,0,0 +0.667,0.168,0.168,1,0,0,0,0.346,0.523,0.523,0,0,0 +0.667,0.288,0.288,1,0,0,0,0.338,0.587,0.587,0,0,0.162 +0.333,0.165,0.165,0.633,0,0,0,0.257,0.528,0.528,0,0,0.14 +0.333,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0.205 +0.333,0.156,0.156,0.467,0,0,0,0.265,0.533,0.533,0,0,0.405 +0.333,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0.13 +0.333,0.151,0.151,0,0,0,0,0.276,0.538,0.538,0,0,0.0433 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0.0866 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.0433 +0.667,0.266,0.266,0,0,0,0,0.479,0.677,0.677,0,0,0.38 +0.333,0.175,0.175,0,0,0,0,0.405,0.578,0.578,0,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0.155,0,0 +1,0.168,0.168,0,0.833,0,0,0.346,0.523,0.523,0.646,0,0 +0.667,0.288,0.288,0,0.383,0.517,0.367,0.338,0.587,0.587,0.516,0.0468,0.0995 +0.667,0.281,0.281,0,0,0,0.367,0.257,0.587,0.587,0,0.473,0.275 +0.667,0.273,0.273,0,0,0,0,0.264,0.587,0.587,0,0.653,0.0739 +0.667,0.262,0.262,0,0,0,0,0.271,0.597,0.597,0,0.444,0.497 +0.667,0.254,0.254,0,0,0,0,0.264,0.607,0.607,0,0.508,0.245 +0.667,0.251,0.251,0,0,0,0,0.294,0.607,0.607,0,0.526,0.0433 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.144 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.121 +0.667,0.266,0.266,0,0,0,0,0.479,0.677,0.677,0,0,0.248 +0.667,0.299,0.299,0,0,0,0,0.553,0.687,0.687,0,0,0.122 +0.667,0.368,0.368,0,0,0,0,0.583,0.657,0.657,0,0,0.498 +0.333,0.259,0.259,0.467,0,0,0,0.435,0.548,0.548,0,0,0.0866 +1,0.806,0.806,0,0,0,0,0.768,0.676,0.676,0,0,0.13 +1,0.588,0.588,0,0,0,0,0.656,0.601,0.601,0,0,0.104 +1,0.252,0.252,0,0.583,0,0,0.556,0.54,0.54,0.657,0,0.303 +1,0.0749,0.0749,0,0.383,0,0,0.32,0.488,0.488,0,0,0.173 +1,0.0583,0.0583,0,0,0,0,0.309,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.168,0.168,0.5,0,0,0,0.346,0.523,0.523,0,0,0.115 +0.667,0.288,0.288,0.217,0,0,0,0.338,0.587,0.587,0,0,0.253 +0.667,0.281,0.281,0,0,0,0,0.257,0.587,0.587,0,0,0.451 +0.667,0.273,0.273,0,0,0,0,0.264,0.587,0.587,0,0,0.137 +0.667,0.262,0.262,0.717,0,0,0,0.271,0.597,0.597,0,0,0.0433 +0.333,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0.0866 +0.333,0.151,0.151,0,0,0,0,0.276,0.538,0.538,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.316,0.597,0.597,0,0,0.173 +0.667,0.252,0.252,0,0,0,0,0.323,0.617,0.617,0,0,0.303 +0.667,0.255,0.255,0,0,0,0,0.375,0.637,0.637,0,0,0.14 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0.173 +0.333,0.175,0.175,0.25,0,0,0,0.405,0.578,0.578,0,0,0.0866 +0.667,0.368,0.368,0.217,0,0,0,0.583,0.657,0.657,0,0,0.412 +0.333,0.259,0.259,0.75,0,0,0,0.435,0.548,0.548,0,0,0.173 +1,0.806,0.806,0.2,0,0,0,0.768,0.676,0.676,0,0,0.517 +1,0.229,0.229,0,0,0,0,0.391,0.513,0.513,0,0,0.32 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0924 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.12 +1,0.287,0.287,0,0,0,0,0.435,0.577,0.577,0,0,0.0989 +1,0.288,0.288,0,0,0,0,0.338,0.587,0.587,0,0,0.323 +1,0.281,0.281,0,0,0,0,0.257,0.587,0.587,0,0,0.458 +0.667,0.273,0.273,0,0,0,0,0.264,0.587,0.587,0,0,0.13 +0.333,0.156,0.156,0,0,0,0,0.265,0.533,0.533,0,0,0.216 +0.333,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.276,0.538,0.538,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0.173 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0.173 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.26 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0.216 +0.667,0.299,0.299,0.5,0,0,0,0.553,0.687,0.687,0,0,0.13 +0.667,0.368,0.368,0.45,0,0,0,0.583,0.657,0.657,0,0,0.216 +0.667,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0,0,0.0433 +0.667,0.554,0.554,0,0.583,0,0,0.598,0.607,0.607,0.788,0,0 +1,0.588,0.588,0,1,0,0,0.656,0.601,0.601,0.645,0,0 +1,0.184,0.184,0,0.117,0,0,0.457,0.517,0.517,0.394,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0 +0.667,0.156,0.156,0,0,0,0,0.265,0.533,0.533,0,0,0 +0.667,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.276,0.538,0.538,0,0,0.346 +0.667,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0.13 +0.667,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0.0866 +0.667,0.255,0.255,0.717,0,0,0,0.375,0.637,0.637,0,0,0.258 +0.667,0.266,0.266,0,0,0,0,0.479,0.677,0.677,0,0,0.173 +0.333,0.175,0.175,0,0,0,0,0.405,0.578,0.578,0,0,0.485 +0.667,0.368,0.368,0,0,0,0,0.583,0.657,0.657,0,0,0.303 +0.667,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0,0,0.346 +1,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.0866 +1,0.408,0.408,0,0,0,0,0.524,0.557,0.557,0,0,0.216 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.309,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.288,0.288,0,0,0,0,0.338,0.587,0.587,0,0,0.198 +0.667,0.281,0.281,0,0,0,0,0.257,0.587,0.587,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.265,0.533,0.533,0,0,0.384 +0.667,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0.189 +0.667,0.151,0.151,0,0,0,0,0.276,0.538,0.538,0,0,0.189 +0.667,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0.485 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0.216 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.173 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0.44 +0.667,0.299,0.299,0,0,0,0,0.553,0.687,0.687,0,0,0.0433 +0.667,0.368,0.368,0,0,0,0,0.583,0.657,0.657,0,0,0.0866 +0.667,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.13 +0.667,0.229,0.229,0,0,0,0,0.391,0.513,0.513,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0 +1,0.0666,0.0666,0,0,0,0,0.36,0.487,0.487,0,0,0 +1,0.05,0.05,0,0,0,0,0.309,0.473,0.473,0,0,0 +1,0.05,0.05,0,0,0,0,0.305,0.468,0.468,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.23,0.23,0,0,0,0,0.405,0.527,0.527,0,0,0.484 +0.667,0.168,0.168,0,0,0,0,0.346,0.523,0.523,0,0,0.412 +1,0.288,0.288,0,0,0,0,0.338,0.587,0.587,0,0,0.187 +1,0.281,0.281,0,0,0,0,0.257,0.587,0.587,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.182 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0.0433 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.309 +0,0.05,0.05,0.717,0,0,0,0.258,0.469,0.469,0,0,0.236 +0.667,0.299,0.299,0,0,0,0,0.553,0.687,0.687,0,0,0.0433 +0.667,0.368,0.368,0,0,0,0,0.583,0.657,0.657,0,0,0.0433 +0.667,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0,0,0.173 +0.667,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.0433 +0.667,0.408,0.408,0,0,0,0,0.524,0.557,0.557,0,0,0 +0.667,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.309,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.309,0.473,0.473,0,0,0 +1,0.05,0.05,0,0,0,0,0.305,0.468,0.468,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.23,0.23,0,0,0,0,0.405,0.527,0.527,0,0,0.237 +0.667,0.287,0.287,0,0,0,0,0.435,0.577,0.577,0,0,0 +0.667,0.288,0.288,0,0,0,0,0.338,0.587,0.587,0,0,0.114 +0.333,0.165,0.165,0.717,0,0,0,0.257,0.528,0.528,0,0,0.0433 +0.333,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0.0433 +0.667,0.262,0.262,0,0,0,0,0.271,0.597,0.597,0,0,0.173 +0.667,0.254,0.254,0,0,0,0,0.264,0.607,0.607,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0,0.276,0.538,0.538,0,0,0.0433 +0.667,0.251,0.251,0,0,0,0,0.316,0.597,0.597,0,0,0.0433 +0.667,0.252,0.252,0,0,0,0,0.323,0.617,0.617,0,0,0.0433 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.346 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0.0433 +0.333,0.175,0.175,0,0,0,0,0.405,0.578,0.578,0,0,0.0433 +0.667,0.368,0.368,0,0,0,0,0.583,0.657,0.657,0,0,0.0866 +0.667,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0.193,0,0.173 +0.667,0.554,0.554,0,0.833,0,0,0.598,0.607,0.607,0.606,0,0.233 +1,0.05,0.05,0,0.383,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.14,0.14,0.25,0,0,0,0.331,0.498,0.498,0,0,0.255 +0.667,0.287,0.287,0.217,0,0,0,0.435,0.577,0.577,0,0,0.0642 +0.667,0.288,0.288,0,0,0,0,0.338,0.587,0.587,0,0,0 +0.333,0.165,0.165,0,0,0,0,0.257,0.528,0.528,0,0,0.13 +0.333,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0.389 +0.333,0.156,0.156,0,0,0,0,0.265,0.533,0.533,0,0,0.13 +0.333,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0.13 +0.667,0.251,0.251,0.25,0,0,0,0.294,0.607,0.607,0,0,0.216 +0.333,0.15,0.15,0.467,0,0,0,0.287,0.533,0.533,0,0,0 +0.667,0.252,0.252,0,0,0,0,0.323,0.617,0.617,0,0,0.225 +0.667,0.255,0.255,0.467,0,0,0,0.375,0.637,0.637,0,0,0.341 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0.0663,0,0.0433 +0.333,0.175,0.175,0.233,0.833,0,0,0.405,0.578,0.578,0.589,0,0.0433 +0.667,0.368,0.368,0,0.133,0,0,0.583,0.657,0.657,0.564,0,0.303 +0.333,0.259,0.259,0,0,0,0,0.435,0.548,0.548,0,0,0.155 +0.667,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.389 +0.667,0.229,0.229,0,0,0,0,0.391,0.513,0.513,0,0,0.0866 +1,0.184,0.184,0,0,0,0,0.457,0.517,0.517,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0788,0.0788,0.5,0,0,0,0.305,0.478,0.478,0,0,0.157 +1,0.23,0.23,0.7,0,0,0,0.405,0.527,0.527,0,0,0.0691 +0.667,0.287,0.287,0,0,0,0,0.435,0.577,0.577,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.298,0.528,0.528,0,0,0 +0.333,0.165,0.165,0,0,0,0,0.257,0.528,0.528,0,0,0.0866 +0.333,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0.0866 +0.667,0.262,0.262,0,0,0,0,0.271,0.597,0.597,0,0,0 +0.667,0.254,0.254,0,0,0,0,0.264,0.607,0.607,0,0,0.0866 +0.667,0.251,0.251,0,0,0,0,0.294,0.607,0.607,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.316,0.597,0.597,0,0,0.13 +0.667,0.252,0.252,0,0,0,0,0.323,0.617,0.617,0,0,0 +0.667,0.255,0.255,0.25,0,0,0,0.375,0.637,0.637,0,0,0 +0.333,0.158,0.158,1,0,0,0,0.368,0.573,0.573,0,0,0.0433 +0.333,0.175,0.175,0.917,0,0,0,0.405,0.578,0.578,0,0,0.0866 +0.333,0.209,0.209,0,0,0,0,0.42,0.563,0.563,0,0,0.606 +0.667,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0,0,0 +0.667,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.36 +0.667,0.408,0.408,0,0,0,0,0.524,0.557,0.557,0,0,0.21 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0.102 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0788,0.0788,0,0,0,0,0.305,0.478,0.478,0,0,0.31 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.149 +1,0.405,0.405,0,0,0,0,0.523,0.631,0.631,0,0,0.129 +0.667,0.288,0.288,0,0,0,0,0.338,0.587,0.587,0,0,0.514 +0.667,0.281,0.281,0,0,0,0,0.257,0.587,0.587,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0.5,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.152,0.152,0.217,0,0,0,0.316,0.553,0.553,0,0,0 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0 +0.333,0.175,0.175,0.25,0,0,0,0.405,0.578,0.578,0,0,0 +1,0.528,0.528,0.467,0,0,0,0.745,0.751,0.751,0,0,0.13 +1,0.677,0.677,0,0,0,0,0.79,0.706,0.706,0,0,0.431 +0.667,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.0157 +0.667,0.229,0.229,0,0,0,0,0.391,0.513,0.513,0,0,0.0866 +0.667,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.439 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0.333,0,0,0.258,0.469,0.469,0.676,0,0 +1,0.0508,0.0508,0,0.633,0,0,0.294,0.473,0.473,0.744,0,0 +1,0.0788,0.0788,0,0,0,0,0.305,0.478,0.478,0.127,0,0 +1,0.14,0.14,0,0,0,0,0.331,0.498,0.498,0,0,0 +1,0.287,0.287,0.233,0,0,0,0.435,0.577,0.577,0,0,0.13 +0.667,0.169,0.169,0,0,0,0,0.298,0.528,0.528,0,0,0.216 +0.667,0.165,0.165,0,0,0,0,0.257,0.528,0.528,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0.0866 +0.667,0.156,0.156,0,0,0,0,0.265,0.533,0.533,0.118,0,0.623 +0.667,0.254,0.254,0,0.833,0,0,0.264,0.607,0.607,0.762,0,0.13 +0.667,0.251,0.251,0,0.383,0,0,0.294,0.607,0.607,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0.0866 +0.333,0.151,0.151,0,0.333,0,0,0.29,0.543,0.543,0.648,0,0 +0.333,0.152,0.152,0,0.633,0,0,0.316,0.553,0.553,0.315,0,0.346 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0.148 +0.333,0.175,0.175,0,0,0,0,0.405,0.578,0.578,0,0,0.13 +0.667,0.368,0.368,0,0,0,0,0.583,0.657,0.657,0,0,0.0433 +0.667,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0,0,0 +1,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.0433 +1,0.408,0.408,0,0,0,0,0.524,0.557,0.557,0,0,0 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.121 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0 +1,0.0583,0.0583,0.233,0,0,0,0.309,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.309,0.473,0.473,0,0,0 +1,0.05,0.05,0,0,0,0,0.305,0.468,0.468,0,0,0.0433 +1,0.05,0.05,0,0,0.517,0.117,0.258,0.469,0.469,0,0,0.211 +1,0.0788,0.0788,0,0,0,0.117,0.305,0.478,0.478,0,0.164,0.374 +1,0.14,0.14,0,0,0,0,0.331,0.498,0.498,0,0,0.531 +1,0.287,0.287,0,0,0,0,0.435,0.577,0.577,0,0,0.142 +0.667,0.169,0.169,0,0,0,0,0.298,0.528,0.528,0,0,0.303 +0.333,0.165,0.165,0,0,0,0,0.257,0.528,0.528,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0.13 +0.333,0.156,0.156,0,0,0,0,0.265,0.533,0.533,0,0,0.0433 +0.333,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0,0.276,0.538,0.538,0,0,0.173 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.0866 +0.667,0.266,0.266,0,0.333,0,0,0.479,0.677,0.677,0.65,0,0 +0.667,0.299,0.299,0,0.883,0,0,0.553,0.687,0.687,0.586,0,0.0433 +0.667,0.368,0.368,0,0.333,0,0,0.583,0.657,0.657,0.615,0,0 +0.667,0.468,0.468,0,0.633,0,0,0.613,0.627,0.627,0,0,0.0433 +0.667,0.302,0.302,0,0,0,0,0.428,0.538,0.538,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.287,0.287,0,0,0,0,0.435,0.577,0.577,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.298,0.528,0.528,0,0,0 +0.333,0.165,0.165,0,0,0,0,0.257,0.528,0.528,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.265,0.533,0.533,0,0,0 +0.667,0.254,0.254,0,0,0,0,0.264,0.607,0.607,0,0,0.252 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.183 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.255,0.255,0,0,0,0,0.375,0.637,0.637,0,0,0.303 +0.333,0.158,0.158,0.233,0,0,0,0.368,0.573,0.573,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.405,0.578,0.578,0,0,0.0711 +1,0.368,0.368,0,0,0,0,0.583,0.657,0.657,0,0,0.159 +1,0.677,0.677,0,0,0,0,0.79,0.706,0.706,0,0,0.253 +0.667,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.26 +0.667,0.408,0.408,0,0,0,0,0.524,0.557,0.557,0,0,0.0433 +0.667,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0.0866 +0.667,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0.0433 +0.667,0.0583,0.0583,0,0,0,0,0.309,0.478,0.478,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.309,0.473,0.473,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.305,0.468,0.468,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.23,0.23,0.717,0,0,0,0.405,0.527,0.527,0,0,0.394 +0.667,0.168,0.168,0,0,0,0,0.346,0.523,0.523,0,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.144 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.135 +0.333,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0.216 +0.333,0.156,0.156,0.75,0,0,0,0.265,0.533,0.533,0,0,0 +0.333,0.152,0.152,0.2,0,0,0,0.261,0.538,0.538,0,0,0.0866 +0.667,0.251,0.251,0,0,0,0,0.294,0.607,0.607,0,0,0 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0.291 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.394 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0.0866 +0.667,0.299,0.299,0,0,0,0,0.553,0.687,0.687,0,0,0.0866 +0.667,0.209,0.209,0,0,0,0,0.42,0.563,0.563,0,0,0.173 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.174 +1,0.408,0.408,0,0,0,0,0.524,0.557,0.557,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0508,0.0508,0,0,0,0,0.294,0.473,0.473,0,0,0.31 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.346,0.523,0.523,0,0,0.0433 +0.667,0.169,0.169,0,0,0.517,0.617,0.298,0.528,0.528,0,0.187,0.0866 +0.667,0.165,0.165,0,0,0,0.117,0.257,0.528,0.528,0,0.27,0 +0.667,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.184 +0.667,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0.253 +0.667,0.251,0.251,0,0,0,0,0.294,0.607,0.607,0,0,0.173 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0.0433 +0.333,0.152,0.152,0.717,0,0,0,0.316,0.553,0.553,0,0,0.13 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0.216 +0.333,0.175,0.175,0,0,0,0,0.405,0.578,0.578,0,0,0 +0.333,0.209,0.209,0,0,0,0,0.42,0.563,0.563,0.12,0,0.173 +0.667,0.468,0.468,0,0.833,0,0,0.613,0.627,0.627,0.611,0,0.392 +1,0.806,0.806,0,0.383,0,0,0.768,0.676,0.676,0,0,0.255 +1,0.408,0.408,0,0,0,0,0.524,0.557,0.557,0,0,0.267 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.32,0.488,0.488,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.309,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.309,0.473,0.473,0,0,0 +1,0.05,0.05,0,0,0,0,0.305,0.468,0.468,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0788,0.0788,0.25,0,0,0,0.305,0.478,0.478,0,0,0.177 +1,0.14,0.14,0.467,0,0,0,0.331,0.498,0.498,0,0,0.39 +0.667,0.287,0.287,0.467,0,0,0,0.435,0.577,0.577,0,0,0 +0.333,0.169,0.169,0.217,0,0,0,0.298,0.528,0.528,0,0,0 +0.333,0.165,0.165,0,0,0,0,0.257,0.528,0.528,0,0,0.216 +0.333,0.161,0.161,0,0,0,0,0.261,0.528,0.528,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.265,0.533,0.533,0,0,0.173 +0.333,0.152,0.152,0,0,0,0,0.261,0.538,0.538,0,0,0.0866 +0.333,0.151,0.151,0,0,0,0,0.276,0.538,0.538,0,0,0.238 +0.333,0.15,0.15,0,0,0,0,0.287,0.533,0.533,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.29,0.543,0.543,0,0,0.0866 +0.333,0.152,0.152,0,0,0,0,0.316,0.553,0.553,0,0,0.0866 +0.333,0.158,0.158,0,0,0,0,0.368,0.573,0.573,0,0,0.0866 +0.333,0.175,0.175,0,0,0,0,0.405,0.578,0.578,0,0,0.26 +0.333,0.209,0.209,0,0,0,0,0.42,0.563,0.563,0,0,0.0866 +0.667,0.468,0.468,0,0,0,0,0.613,0.627,0.627,0,0,0.27 +0.667,0.554,0.554,0,0,0,0,0.598,0.607,0.607,0,0,0.0433 +1,0.588,0.588,0,0,0,0,0.656,0.601,0.601,0,0,0.0433 +1,0.117,0.117,0,0,0,0,0.357,0.493,0.493,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.165,0.165,0,0,0,0,0.317,0.487,0.487,0,0,0.28 +1,0.163,0.163,0,0,0,0,0.277,0.492,0.492,0,0,0 +0.667,0.266,0.266,0,0,0,0,0.228,0.515,0.515,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.246,0.492,0.492,0,0,0.0433 +0.667,0.247,0.247,0,0,0,0,0.24,0.523,0.523,0,0,0.0866 +0.667,0.145,0.145,0,0,0,0,0.246,0.5,0.5,0,0,0.303 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.563 +0.333,0.145,0.145,0,0,0,0,0.292,0.512,0.512,0,0,0.175 +0.667,0.249,0.249,0,0,0,0,0.413,0.59,0.59,0,0,0.353 +0.667,0.162,0.162,0,0,0,0,0.366,0.533,0.533,0,0,0 +0.667,0.331,0.331,0,0,0,0,0.5,0.573,0.573,0,0,0.13 +0.667,0.417,0.417,0,0.333,0,0,0.525,0.548,0.548,0.51,0,0.13 +0.667,0.505,0.505,0,0.833,0,0,0.512,0.531,0.531,0,0,0.385 +0.667,0.221,0.221,0,0,0,0,0.354,0.479,0.479,0,0,0.261 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.39,0.39,0,0,0,0,0.315,0.538,0.538,0,0,0 +1,0.374,0.374,0.467,0,0.517,0.483,0.213,0.538,0.538,0,0.161,0 +1,0.362,0.362,0,0,0,0,0.222,0.538,0.538,0,0.449,0 +0.667,0.247,0.247,0,0,0,0,0.24,0.523,0.523,0,0.418,0.0866 +0.667,0.239,0.239,0,0,0,0,0.234,0.531,0.531,0,0.718,0.13 +0.667,0.237,0.237,0,0,0,0,0.259,0.531,0.531,0,0.458,0.0866 +1,0.33,0.33,0,0,0,0,0.287,0.55,0.55,0,0.237,0 +0.667,0.237,0.237,0,0,0,0,0.284,0.54,0.54,0,0,0 +0.667,0.24,0.24,0,0,0,0,0.327,0.556,0.556,0,0,0.0866 +0.667,0.249,0.249,0,0,0,0,0.413,0.59,0.59,0,0,0.488 +1,0.388,0.388,0,0,0,0,0.584,0.663,0.663,0,0,0.182 +1,0.471,0.471,0,0,0,0,0.621,0.625,0.625,0,0,0.519 +0.667,0.417,0.417,0,0,0,0,0.525,0.548,0.548,0,0,0.299 +1,0.733,0.733,0,0,0,0,0.639,0.563,0.563,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0.75,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.279,0.279,0.183,0,0,0,0.376,0.506,0.506,0,0,0 +0.667,0.277,0.277,0,0,0,0,0.296,0.515,0.515,0.282,0,0 +0.333,0.158,0.158,0,0.833,0,0,0.243,0.492,0.492,0.621,0,0.0433 +0.333,0.154,0.154,0,0.567,0,0,0.246,0.492,0.492,0,0,0.227 +0.333,0.149,0.149,0,0,0,0,0.249,0.496,0.496,0,0,0.0794 +0.333,0.145,0.145,0,0,0,0,0.246,0.5,0.5,0,0,0.303 +0.333,0.144,0.144,0,0,0,0,0.258,0.5,0.5,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0,0.173 +0.333,0.144,0.144,0,0,0,0,0.271,0.504,0.504,0,0,0.0866 +0.333,0.145,0.145,0,0,0,0,0.292,0.512,0.512,0,0,0.0433 +0.333,0.149,0.149,0.467,0,0,0,0.336,0.529,0.529,0,0,0.297 +0.667,0.275,0.275,0,0,0,0,0.475,0.598,0.598,0,0,0.0866 +0.667,0.331,0.331,0,0,0,0,0.5,0.573,0.573,0,0,0.277 +0.667,0.417,0.417,0,0,0,0,0.525,0.548,0.548,0,0,0 +0.667,0.505,0.505,0,0,0,0,0.512,0.531,0.531,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.224,0.224,0.467,0,0,0,0.352,0.465,0.465,0,0,0.429 +1,0.279,0.279,0,0,0,0,0.376,0.506,0.506,0,0,0.163 +0.667,0.163,0.163,0,0,0,0,0.277,0.492,0.492,0,0,0.0841 +0.667,0.266,0.266,0,0,0,0,0.228,0.515,0.515,0,0,0.405 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.249,0.496,0.496,0,0,0.0866 +0.333,0.145,0.145,0,0,0,0,0.246,0.5,0.5,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.258,0.5,0.5,0,0,0.0433 +0.333,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0,0.0866 +0.333,0.144,0.144,0,0,0,0,0.271,0.504,0.504,0,0,0.0433 +0.333,0.145,0.145,0,0,0,0,0.292,0.512,0.512,0,0,0.13 +0.333,0.149,0.149,0,0,0,0,0.336,0.529,0.529,0,0,0.0866 +0.667,0.275,0.275,0,0,0,0,0.475,0.598,0.598,0.116,0,0.53 +0.667,0.331,0.331,0,0.833,0,0,0.5,0.573,0.573,0.676,0,0 +0.667,0.417,0.417,0,0.817,0,0,0.525,0.548,0.548,0,0,0.25 +0.667,0.278,0.278,0,0,0,0,0.385,0.5,0.5,0,0,0.238 +0.667,0.221,0.221,0,0,0,0,0.354,0.479,0.479,0,0,0.207 +1,0.184,0.184,0,0,0,0,0.395,0.456,0.456,0,0,0.0433 +1,0.0749,0.0749,0,0,0,0,0.295,0.458,0.458,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.286,0.45,0.45,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0.0833,0,0,0.258,0.469,0.469,0.497,0,0 +0.667,0.266,0.266,0,1,0,0,0.228,0.515,0.515,0.309,0,0.269 +0.333,0.154,0.154,0,0.317,0,0,0.246,0.492,0.492,0,0,0.406 +0.333,0.149,0.149,0,0,0,0,0.249,0.496,0.496,0,0,0 +0.667,0.239,0.239,0,0,0,0,0.234,0.531,0.531,0,0,0.216 +0.667,0.237,0.237,0,0,0,0,0.259,0.531,0.531,0,0,0.303 +0.333,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.185 +0.333,0.19,0.19,0.25,0,0,0,0.379,0.521,0.521,0,0,0 +0.667,0.417,0.417,0.683,0,0,0,0.525,0.548,0.548,0,0,0 +0.667,0.505,0.505,0,0,0.517,0.617,0.512,0.531,0.531,0,0.239,0.13 +0.667,0.392,0.392,0,0,0,0.1,0.45,0.49,0.49,0,0.321,0.13 +1,0.252,0.252,0,0,0,0,0.463,0.45,0.45,0,0.447,0 +1,0.0749,0.0749,0,0,0,0,0.295,0.458,0.458,0,0.568,0.0866 +1,0.0583,0.0583,0,0,0,0,0.286,0.45,0.45,0,0.435,0 +1,0.05,0.05,0,0,0,0,0.286,0.446,0.446,0,0.15,0.223 +1,0.05,0.05,0,0,0,0,0.283,0.442,0.442,0,0,0.0156 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.137,0.137,0,0,0,0,0.305,0.467,0.467,0,0,0.223 +0.667,0.165,0.165,0,0,0,0,0.317,0.487,0.487,0,0,0.135 +0.667,0.163,0.163,0,0,0,0,0.277,0.492,0.492,0,0,0.332 +1,0.374,0.374,0,0,0,0,0.213,0.538,0.538,0,0,0.296 +0.667,0.258,0.258,0,0,0,0,0.234,0.515,0.515,0,0,0.323 +0.667,0.247,0.247,0,0,0,0,0.24,0.523,0.523,0,0,0.2 +0.333,0.145,0.145,0,0,0,0,0.246,0.5,0.5,0,0,0.0433 +0.333,0.144,0.144,0,0,0,0,0.258,0.5,0.5,0,0,0.0866 +0.333,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0,0.0433 +0.333,0.144,0.144,0,0,0,0,0.271,0.504,0.504,0,0,0.225 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.234,0.234,0,0,0,0,0.391,0.508,0.508,0,0,0 +0.333,0.278,0.278,0,0,0,0,0.385,0.5,0.5,0,0,0 +0.667,0.221,0.221,0,0,0,0,0.354,0.479,0.479,0,0,0 +0.667,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.277,0.492,0.492,0,0,0 +0.667,0.158,0.158,0,0.333,0,0,0.243,0.492,0.492,0.637,0,0 +0.667,0.258,0.258,0,0.6,0,0,0.234,0.515,0.515,0.637,0,0.197 +0.667,0.247,0.247,0,0,0,0,0.24,0.523,0.523,0.913,0,0 +0.667,0.239,0.239,0,0,0.103,0,0.234,0.531,0.531,0.77,0,0.0866 +0.333,0.144,0.144,0,0,0.414,0.233,0.258,0.5,0.5,0,0.0754,0.0866 +0.333,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.333,0.145,0.145,0,0,0,0,0.292,0.512,0.512,0,0,0.0433 +0.333,0.149,0.149,0,0,0,0,0.336,0.529,0.529,0,0,0.13 +0.333,0.162,0.162,0,0,0,0,0.366,0.533,0.533,0,0,0.0433 +0.333,0.19,0.19,0.233,0,0,0,0.379,0.521,0.521,0,0,0.389 +0.667,0.417,0.417,0,0,0,0,0.525,0.548,0.548,0,0,0.0866 +0.667,0.278,0.278,0,0,0,0,0.385,0.5,0.5,0,0,0.0866 +0.667,0.221,0.221,0.7,0,0,0,0.354,0.479,0.479,0,0,0.0433 +1,0.184,0.184,0,0,0,0,0.395,0.456,0.456,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.165,0.165,0,0,0,0,0.317,0.487,0.487,0,0,0.328 +1,0.277,0.277,0,0,0,0,0.296,0.515,0.515,0,0,0.0631 +1,0.374,0.374,0,0,0,0,0.213,0.538,0.538,0,0,0.574 +1,0.362,0.362,0,0,0,0,0.222,0.538,0.538,0,0,0.472 +1,0.346,0.346,0,0,0,0,0.232,0.55,0.55,0,0,0.348 +1,0.239,0.239,0,0,0,0,0.234,0.531,0.531,0,0,0.262 +0.667,0.144,0.144,0,0,0,0,0.258,0.5,0.5,0,0,0.365 +0.333,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0,0.0907 +0.333,0.144,0.144,0,0,0,0,0.271,0.504,0.504,0,0,0.11 +0.333,0.145,0.145,0,0,0,0,0.292,0.512,0.512,0,0,0.433 +0.333,0.149,0.149,0,0,0,0,0.336,0.529,0.529,0,0,0.216 +0.333,0.162,0.162,0,0,0,0,0.366,0.533,0.533,0,0,0.433 +0.333,0.19,0.19,0,0,0,0,0.379,0.521,0.521,0,0,0.0433 +0.333,0.234,0.234,0,0,0,0,0.391,0.508,0.508,0,0,0.13 +0.333,0.278,0.278,0,0,0,0,0.385,0.5,0.5,0,0,0.0433 +0.667,0.392,0.392,0,0,0,0,0.45,0.49,0.49,0,0,0.13 +0.667,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.165,0.165,0,0,0,0,0.317,0.487,0.487,0,0,0 +1,0.277,0.277,0,0,0,0,0.296,0.515,0.515,0,0,0 +0.667,0.266,0.266,0,0,0,0,0.228,0.515,0.515,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.234,0.515,0.515,0,0,0.253 +0.333,0.149,0.149,0,0,0,0,0.249,0.496,0.496,0,0,0.303 +0.333,0.145,0.145,0,0,0,0,0.246,0.5,0.5,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.258,0.5,0.5,0,0,0.0866 +0.333,0.143,0.143,0.5,0,0,0,0.268,0.496,0.496,0,0,0 +0.333,0.05,0.05,0.2,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.667,0.24,0.24,0,0,0,0,0.327,0.556,0.556,0,0,0.13 +0.667,0.249,0.249,0,0,0,0,0.413,0.59,0.59,0,0,0.13 +0.667,0.275,0.275,0,0.333,0,0,0.475,0.598,0.598,0.683,0,0.216 +0.667,0.331,0.331,0,1,0,0,0.5,0.573,0.573,0.591,0,0.0866 +0.667,0.417,0.417,0,0.317,0,0,0.525,0.548,0.548,0,0,0.0964 +0.667,0.278,0.278,0,0,0,0,0.385,0.5,0.5,0,0,0.0866 +0.667,0.221,0.221,0,0,0,0,0.354,0.479,0.479,0,0,0.26 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.134 +1,0.165,0.165,0,0,0,0,0.317,0.487,0.487,0,0,0.137 +1,0.163,0.163,0.25,0,0,0,0.277,0.492,0.492,0,0,0 +0.667,0.158,0.158,0.217,0,0,0,0.243,0.492,0.492,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.234,0.515,0.515,0,0,0.0433 +0.667,0.247,0.247,0.25,0,0,0,0.24,0.523,0.523,0,0,0 +0.667,0.239,0.239,0.45,0.0833,0,0,0.234,0.531,0.531,0.449,0,0.13 +0.667,0.237,0.237,0,1,0,0,0.259,0.531,0.531,0.265,0,0.216 +0.667,0.237,0.237,0,0.0833,0,0,0.277,0.523,0.523,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.271,0.504,0.504,0,0,0.0433 +0.333,0.145,0.145,0,0,0,0,0.292,0.512,0.512,0,0,0.0433 +0.333,0.149,0.149,0,0,0,0,0.336,0.529,0.529,0,0,0.26 +0.333,0.162,0.162,0.25,0,0,0,0.366,0.533,0.533,0,0,0.0866 +0.667,0.331,0.331,0.45,0,0,0,0.5,0.573,0.573,0,0,0.13 +0.667,0.234,0.234,0,0,0,0,0.391,0.508,0.508,0,0,0.13 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.346 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.277,0.277,0,0,0,0,0.296,0.515,0.515,0,0,0.0972 +1,0.266,0.266,0,0,0,0,0.228,0.515,0.515,0,0,0.317 +1,0.258,0.258,0,0,0,0,0.234,0.515,0.515,0,0,0.132 +0.667,0.149,0.149,0,0,0,0,0.249,0.496,0.496,0.0939,0,0.272 +1,0.334,0.334,0,0.833,0,0,0.222,0.563,0.563,0.446,0,0.41 +0.667,0.237,0.237,0,0.567,0,0,0.259,0.531,0.531,0.486,0,0.402 +0.667,0.237,0.237,0,0,0,0,0.277,0.523,0.523,0,0,0.293 +0.667,0.237,0.237,0,0,0,0,0.284,0.54,0.54,0,0,0.0433 +0.667,0.24,0.24,0,0,0,0,0.327,0.556,0.556,0,0,0.13 +0.667,0.249,0.249,0,0,0,0,0.413,0.59,0.59,0,0,0.0866 +0.667,0.275,0.275,0.467,0,0,0,0.475,0.598,0.598,0,0,0.0866 +0.667,0.331,0.331,0,0,0,0,0.5,0.573,0.573,0,0,0.0866 +0.667,0.417,0.417,0,0,0,0,0.525,0.548,0.548,0,0,0.464 +0.667,0.505,0.505,0,0,0,0,0.512,0.531,0.531,0,0,0.287 +0.667,0.392,0.392,0,0,0,0,0.45,0.49,0.49,0,0,0.221 +0.667,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +0.667,0.0749,0.0749,0,0,0,0,0.295,0.458,0.458,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.171 +0.667,0.165,0.165,0,0,0,0,0.317,0.487,0.487,0,0,0.2 +1,0.277,0.277,0.5,0,0.103,0,0.296,0.515,0.515,0,0,0.0435 +0.667,0.266,0.266,0.2,0,0.414,0.867,0.228,0.515,0.515,0,0.254,0 +0.667,0.258,0.258,0,0,0,0.583,0.234,0.515,0.515,0,0.42,0 +0.667,0.247,0.247,0,0,0,0,0.24,0.523,0.523,0,0.623,0 +0.667,0.239,0.239,0,0,0,0,0.234,0.531,0.531,0,0.353,0.0433 +0.333,0.144,0.144,0,0,0,0,0.258,0.5,0.5,0,0.46,0.519 +0.333,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0.349,0.0433 +0.333,0.144,0.144,0.467,0,0,0,0.271,0.504,0.504,0,0.265,0 +0.333,0.145,0.145,0,0,0,0,0.292,0.512,0.512,0,0,0.0433 +0.333,0.149,0.149,0,0,0,0,0.336,0.529,0.529,0,0,0.13 +0.333,0.162,0.162,0,0,0,0,0.366,0.533,0.533,0,0,0.358 +0.667,0.331,0.331,0,0,0,0,0.5,0.573,0.573,0,0,0.26 +0.667,0.417,0.417,0,0,0,0,0.525,0.548,0.548,0,0,0.0866 +0.667,0.278,0.278,0,0,0,0,0.385,0.5,0.5,0,0,0.285 +1,0.392,0.392,0,0,0,0,0.45,0.49,0.49,0,0,0 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +1,0.0749,0.0749,0.233,0,0,0,0.295,0.458,0.458,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.286,0.45,0.45,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.101 +1,0.224,0.224,0.467,0,0,0,0.352,0.465,0.465,0,0,0.143 +0.667,0.165,0.165,0,0,0,0,0.317,0.487,0.487,0,0,0.208 +0.667,0.163,0.163,0,0,0,0,0.277,0.492,0.492,0,0,0 +0.667,0.158,0.158,0,0,0,0,0.243,0.492,0.492,0,0,0.448 +0.333,0.154,0.154,0,0,0,0,0.246,0.492,0.492,0,0,0.135 +0.333,0.149,0.149,0,0,0,0,0.249,0.496,0.496,0,0,0.536 +0.333,0.145,0.145,0,0,0,0,0.246,0.5,0.5,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.258,0.5,0.5,0,0,0.0866 +0.333,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0,0.173 +0.667,0.237,0.237,0,0,0,0,0.284,0.54,0.54,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.346 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.505,0.505,0,0,0,0,0.512,0.531,0.531,0,0,0.087 +1,0.392,0.392,0,0,0,0,0.45,0.49,0.49,0,0,0 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0884 +1,0.39,0.39,0,0,0,0,0.315,0.538,0.538,0,0,0.302 +0.667,0.266,0.266,0,0,0,0,0.228,0.515,0.515,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.234,0.515,0.515,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.24,0.523,0.523,0,0,0.0433 +0.333,0.145,0.145,0,0,0,0,0.246,0.5,0.5,0,0,0.0866 +0.667,0.237,0.237,0.5,0,0,0,0.259,0.531,0.531,0,0,0 +0.667,0.237,0.237,0.433,0,0,0,0.277,0.523,0.523,0,0,0.137 +0.333,0.144,0.144,0,0,0,0,0.271,0.504,0.504,0,0,0.0866 +0.333,0.145,0.145,0,0,0,0,0.292,0.512,0.512,0,0,0.0433 +0.333,0.149,0.149,0,0,0,0,0.336,0.529,0.529,0,0,0.173 +0.333,0.162,0.162,0,0,0,0,0.366,0.533,0.533,0,0,0 +0.333,0.19,0.19,0,0,0,0,0.379,0.521,0.521,0,0,0.363 +0.333,0.234,0.234,0,0,0.517,0.367,0.391,0.508,0.508,0,0.0299,0.0866 +0.333,0.278,0.278,0,0,0,0.117,0.385,0.5,0.5,0,0.222,0.216 +0.667,0.221,0.221,0,0,0,0,0.354,0.479,0.479,0,0,0.173 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.153 +1,0.0775,0.0775,0.25,0,0,0,0.283,0.45,0.45,0.127,0,0.225 +1,0.311,0.311,0.7,0.833,0,0,0.398,0.463,0.463,0.495,0,0.539 +0.667,0.279,0.279,0.467,0.333,0,0,0.376,0.506,0.506,0,0,0.103 +0.667,0.277,0.277,0.933,0,0,0,0.296,0.515,0.515,0,0,0.322 +0.667,0.266,0.266,0,0,0,0,0.228,0.515,0.515,0,0,0.198 +0.333,0.154,0.154,0.25,0,0,0,0.246,0.492,0.492,0,0,0.386 +0.333,0.149,0.149,0.217,0,0,0,0.249,0.496,0.496,0,0,0.138 +0.333,0.145,0.145,0,0,0,0,0.246,0.5,0.5,0,0,0.348 +0.333,0.144,0.144,0.467,0,0,0,0.258,0.5,0.5,0,0,0.0433 +0.333,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0,0 +0.333,0.144,0.144,0.233,0,0,0,0.271,0.504,0.504,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.292,0.512,0.512,0,0,0.216 +0.667,0.249,0.249,0,0,0,0,0.413,0.59,0.59,0,0,0.216 +0.333,0.162,0.162,0,0,0,0,0.366,0.533,0.533,0,0,0.0866 +0.333,0.19,0.19,0,0,0,0,0.379,0.521,0.521,0,0,0.13 +0.333,0.234,0.234,0,0,0,0,0.391,0.508,0.508,0,0,0.173 +0.667,0.278,0.278,0,0,0,0,0.385,0.5,0.5,0,0,0.0433 +0.667,0.221,0.221,0,0,0,0,0.354,0.479,0.479,0,0,0 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.145 +1,0.137,0.137,0,0,0,0,0.305,0.467,0.467,0,0,0.363 +0.667,0.165,0.165,0.233,0,0,0,0.317,0.487,0.487,0,0,0.425 +0.333,0.163,0.163,0,0,0,0,0.277,0.492,0.492,0,0,0.167 +0.333,0.158,0.158,0,0,0,0,0.243,0.492,0.492,0,0,0.242 +0.667,0.258,0.258,0,0,0,0,0.234,0.515,0.515,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.249,0.496,0.496,0,0,0.0989 +0.333,0.145,0.145,0,0,0,0,0.246,0.5,0.5,0,0,0.106 +0.333,0.144,0.144,0.467,0,0,0,0.258,0.5,0.5,0,0,0.173 +0.333,0.143,0.143,0,0,0.103,0,0.268,0.496,0.496,0,0,0.0433 +0.667,0.237,0.237,0,0,0.414,0.717,0.284,0.54,0.54,0,0.378,0.0866 +0.333,0.145,0.145,0,0,0,0,0.292,0.512,0.512,0,0.113,0.13 +0.667,0.249,0.249,0,0,0.517,0.483,0.413,0.59,0.59,0,0.191,0.0866 +0.667,0.275,0.275,0.233,0,0,0,0.475,0.598,0.598,0,0,0.519 +0.667,0.331,0.331,0,0,0,0,0.5,0.573,0.573,0,0,0.13 +0.667,0.417,0.417,0,0,0,0,0.525,0.548,0.548,0,0,0.173 +0.667,0.505,0.505,0,0,0,0,0.512,0.531,0.531,0,0,0.223 +0.667,0.221,0.221,0,0,0,0,0.354,0.479,0.479,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.199 +1,0.0775,0.0775,0,0,0,0,0.283,0.45,0.45,0,0,0.108 +0.667,0.137,0.137,0,0,0,0,0.305,0.467,0.467,0,0,0 +0.333,0.165,0.165,0,0,0,0,0.317,0.487,0.487,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.249,0.496,0.496,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.246,0.5,0.5,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.258,0.5,0.5,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.667,0.237,0.237,0,0,0,0,0.284,0.54,0.54,0,0,0 +0.667,0.24,0.24,1,0,0,0,0.327,0.556,0.556,0,0,0.0866 +0.667,0.249,0.249,0.183,0,0,0,0.413,0.59,0.59,0,0,0.0433 +0.667,0.275,0.275,0,0,0,0,0.475,0.598,0.598,0,0,0.303 +0.667,0.331,0.331,0,0,0,0,0.5,0.573,0.573,0,0,0.173 +0.667,0.417,0.417,0,0,0,0,0.525,0.548,0.548,0,0,0.173 +0.667,0.505,0.505,0,0,0,0,0.512,0.531,0.531,0,0,0.212 +0.667,0.392,0.392,0,0,0,0,0.45,0.49,0.49,0,0,0.227 +0.667,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0.215 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.258 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.227 +1,0.394,0.394,0.683,0,0,0,0.436,0.525,0.525,0,0,0.0716 +0.333,0.163,0.163,0,0,0,0,0.277,0.492,0.492,0,0,0.352 +0.333,0.158,0.158,0,0,0,0,0.243,0.492,0.492,0,0,0.232 +0.333,0.154,0.154,0,0,0,0,0.246,0.492,0.492,0,0,0.263 +0.333,0.149,0.149,0,0,0,0,0.249,0.496,0.496,0,0,0.303 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.667,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0,0.346 +0.667,0.144,0.144,0,0,0,0,0.271,0.504,0.504,0,0,0 +0.667,0.145,0.145,0,0,0,0,0.292,0.512,0.512,0,0,0 +0.667,0.149,0.149,0,0,0,0,0.336,0.529,0.529,0,0,0.13 +0.667,0.275,0.275,0,0,0,0,0.475,0.598,0.598,0,0,0.759 +0.667,0.331,0.331,0,0,0,0,0.5,0.573,0.573,0,0,0.121 +0.667,0.417,0.417,0,0,0.517,0.117,0.525,0.548,0.548,0,0,0.0433 +0.667,0.505,0.505,0,0,0,0.85,0.512,0.531,0.531,0,0.436,0.0433 +0.667,0.392,0.392,0,0,0,0,0.45,0.49,0.49,0,0.549,0.0866 +0.667,0.184,0.184,0,0,0,0,0.395,0.456,0.456,0,0.37,0.0433 +0.667,0.0749,0.0749,0,0,0,0,0.295,0.458,0.458,0,0.43,0 +0.667,0.0583,0.0583,0,0,0,0,0.286,0.45,0.45,0,0.438,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0.112,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0775,0.0775,0,0,0,0,0.283,0.45,0.45,0,0,0.396 +0.667,0.137,0.137,0,0,0,0,0.305,0.467,0.467,0,0,0.423 +0.667,0.279,0.279,0,0,0,0,0.376,0.506,0.506,0,0,0.091 +0.333,0.163,0.163,0,0,0,0,0.277,0.492,0.492,0,0,0.0433 +0,0.05,0.05,0,0,0.517,0.367,0.258,0.469,0.469,0,0.0449,0 +0.333,0.154,0.154,0,0,0,0.117,0.246,0.492,0.492,0,0.395,0.173 +0.333,0.149,0.149,0,0,0,0,0.249,0.496,0.496,0,0.42,0.0433 +0.667,0.239,0.239,0,0,0,0,0.234,0.531,0.531,0,0.221,0.0433 +0.333,0.144,0.144,0,0,0,0,0.258,0.5,0.5,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.476 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.346 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.519 +0.667,0.249,0.249,0,0,0,0,0.413,0.59,0.59,0,0,0.0864 +1,0.388,0.388,0,0,0,0,0.584,0.663,0.663,0,0,0 +1,0.471,0.471,0,0.583,0,0,0.621,0.625,0.625,0.726,0,0 +1,0.601,0.601,0,0.583,0,0,0.658,0.588,0.588,0.225,0,0.064 +1,0.733,0.733,0.467,0,0,0,0.639,0.563,0.563,0,0,0.0866 +0.667,0.392,0.392,0,0,0,0,0.45,0.49,0.49,0,0,0.26 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0.109 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.137,0.137,0,0,0,0,0.305,0.467,0.467,0,0,0.0839 +1,0.165,0.165,0,0,0,0,0.317,0.487,0.487,0,0,0.382 +1,0.163,0.163,0,0,0,0,0.277,0.492,0.492,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.246,0.492,0.492,0,0,0.26 +0.333,0.149,0.149,0.25,0,0,0,0.249,0.496,0.496,0,0,0.0866 +0.333,0.145,0.145,1,0,0.517,0.117,0.246,0.5,0.5,0,0,0 +0.333,0.144,0.144,0.167,0,0,0.85,0.258,0.5,0.5,0,0.257,0 +0.667,0.237,0.237,0,0,0,0,0.277,0.523,0.523,0,0.369,0.207 +0.333,0.144,0.144,0,0,0,0,0.271,0.504,0.504,0.199,0.438,0 +0.333,0.145,0.145,0,0.833,0,0,0.292,0.512,0.512,0.558,0.183,0.13 +0.333,0.149,0.149,0,0.333,0,0,0.336,0.529,0.529,0.645,0,0.216 +0.333,0.162,0.162,0,0,0.517,0.617,0.366,0.533,0.533,0.398,0.277,0.173 +0.333,0.19,0.19,0,0,0,0.583,0.379,0.521,0.521,0,0.0572,0.706 +0.333,0.234,0.234,0,0,0,0,0.391,0.508,0.508,0,0,0.21 +0.667,0.278,0.278,0,0,0,0,0.385,0.5,0.5,0,0,0.175 +0.667,0.221,0.221,0,0,0,0,0.354,0.479,0.479,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.376,0.506,0.506,0,0,0.382 +0.667,0.277,0.277,0,0,0,0,0.296,0.515,0.515,0,0,0 +0.333,0.158,0.158,0,0,0,0,0.243,0.492,0.492,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.249,0.496,0.496,0,0,0.13 +0.333,0.145,0.145,0,0,0,0,0.246,0.5,0.5,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.271,0.504,0.504,0,0,0.303 +0.333,0.145,0.145,0,0,0,0,0.292,0.512,0.512,0,0,0.0433 +0.667,0.249,0.249,0.467,0,0,0,0.413,0.59,0.59,0,0,0.216 +0.667,0.275,0.275,0,0,0,0,0.475,0.598,0.598,0,0,0.216 +0.667,0.331,0.331,0,0,0,0,0.5,0.573,0.573,0,0,0.173 +0.333,0.234,0.234,0,0,0,0,0.391,0.508,0.508,0,0,0.303 +0.667,0.505,0.505,0,0,0,0,0.512,0.531,0.531,0,0,0.238 +0.667,0.392,0.392,0,0,0,0,0.45,0.49,0.49,0,0,0.237 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0.175 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.279,0.279,0,0,0,0,0.376,0.506,0.506,0,0,0.151 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.158 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.161 +0.333,0.145,0.145,0.7,0,0,0,0.246,0.5,0.5,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.259,0.531,0.531,0,0,0.0873 +0.667,0.237,0.237,0.233,0,0,0,0.277,0.523,0.523,0,0,0.237 +0.667,0.237,0.237,0,0,0,0,0.284,0.54,0.54,0,0,0.859 +0.333,0.145,0.145,0.233,0,0,0,0.292,0.512,0.512,0,0,0.339 +0.667,0.249,0.249,0,0,0,0,0.413,0.59,0.59,0,0,0.571 +0.667,0.275,0.275,0,0,0,0,0.475,0.598,0.598,0,0,0.26 +0.667,0.331,0.331,0,0,0,0,0.5,0.573,0.573,0,0,0.173 +0.667,0.417,0.417,0,0,0,0,0.525,0.548,0.548,0,0,0.13 +0.667,0.505,0.505,0,0,0,0,0.512,0.531,0.531,0,0,0.196 +0.667,0.221,0.221,0,0,0,0,0.354,0.479,0.479,0,0,0.0634 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.135 +0.667,0.165,0.165,0,0,0,0,0.317,0.487,0.487,0,0,0.123 +0.667,0.163,0.163,0.25,0,0,0,0.277,0.492,0.492,0,0,0.149 +0.667,0.158,0.158,0.217,0,0,0,0.243,0.492,0.492,0,0,0.276 +0.667,0.258,0.258,0,0,0,0,0.234,0.515,0.515,0,0,0.0657 +0.667,0.247,0.247,0.25,0,0,0,0.24,0.523,0.523,0,0,0.173 +0.333,0.145,0.145,0.217,0,0,0,0.246,0.5,0.5,0,0,0.173 +0.333,0.144,0.144,0,0,0,0,0.258,0.5,0.5,0,0,0.173 +0.333,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0,0.0433 +0.667,0.144,0.144,0,0,0,0,0.271,0.504,0.504,0,0,0.433 +0.667,0.145,0.145,0,0,0,0,0.292,0.512,0.512,0,0,0.26 +0.667,0.149,0.149,0,0.583,0,0,0.336,0.529,0.529,0.785,0,0 +0.667,0.275,0.275,0,0.35,0,0,0.475,0.598,0.598,0.492,0,0.0866 +0.667,0.331,0.331,0,0,0,0,0.5,0.573,0.573,0.298,0,0.216 +0.667,0.417,0.417,0,0,0,0,0.525,0.548,0.548,0,0,0.0866 +0.667,0.278,0.278,0,0,0,0,0.385,0.5,0.5,0,0,0.519 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.295,0.458,0.458,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.286,0.45,0.45,0,0,0 +1,0.05,0.05,0,0,0,0,0.286,0.446,0.446,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.235 +0.667,0.277,0.277,0,0,0,0,0.296,0.515,0.515,0,0,0.138 +0.667,0.266,0.266,0,0,0,0,0.228,0.515,0.515,0,0,0.0984 +0.333,0.154,0.154,0,0,0,0,0.246,0.492,0.492,0,0,0.0433 +0.333,0.149,0.149,0,0,0,0,0.249,0.496,0.496,0,0,0.0433 +0.333,0.145,0.145,0,0,0,0,0.246,0.5,0.5,0,0,0.0433 +0.333,0.144,0.144,0,0,0,0,0.258,0.5,0.5,0,0,0.0433 +0.333,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0,0 +0.333,0.144,0.144,0.933,0,0,0,0.271,0.504,0.504,0,0,0.0433 +0.667,0.24,0.24,0,0,0,0,0.327,0.556,0.556,0,0,0.363 +1,0.348,0.348,0,0,0.103,0,0.491,0.65,0.65,0,0,0.23 +1,0.388,0.388,0,0,0.414,0.867,0.584,0.663,0.663,0,0.187,0.273 +1,0.471,0.471,0,0,0,0.1,0.621,0.625,0.625,0,0.185,0.0866 +0.667,0.417,0.417,0,0,0,0,0.525,0.548,0.548,0,0.191,0.173 +0.667,0.278,0.278,0,0,0,0,0.385,0.5,0.5,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.295,0.458,0.458,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.147 +1,0.137,0.137,0,0,0,0,0.305,0.467,0.467,0,0,0.12 +1,0.279,0.279,0,0,0,0,0.376,0.506,0.506,0,0,0.269 +0.667,0.163,0.163,0,0,0,0,0.277,0.492,0.492,0,0,0.104 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.32 +0.333,0.154,0.154,0,0,0,0,0.246,0.492,0.492,0,0,0.216 +0.333,0.149,0.149,0,0,0,0,0.249,0.496,0.496,0,0,0.0866 +0.333,0.145,0.145,0,0,0,0,0.246,0.5,0.5,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.258,0.5,0.5,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0,0.13 +0.333,0.144,0.144,0,0,0,0,0.271,0.504,0.504,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.292,0.512,0.512,0,0,0.0866 +0.333,0.149,0.149,0,0,0,0,0.336,0.529,0.529,0,0,0.0866 +0.333,0.162,0.162,0,0,0,0,0.366,0.533,0.533,0,0,0.389 +0.333,0.19,0.19,0,0,0,0,0.379,0.521,0.521,0,0,0.0433 +0.333,0.234,0.234,0,0,0,0,0.391,0.508,0.508,0,0,0.295 +0.667,0.278,0.278,0,0,0,0,0.385,0.5,0.5,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.165,0.165,0,0,0,0,0.317,0.487,0.487,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.277,0.492,0.492,0,0,0.221 +0.667,0.158,0.158,0,0,0,0,0.243,0.492,0.492,0,0,0.124 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.239,0.239,0,0,0,0,0.234,0.531,0.531,0,0,0.252 +0.667,0.237,0.237,0,0,0,0,0.259,0.531,0.531,0,0,0.352 +0.667,0.237,0.237,0,0,0,0,0.277,0.523,0.523,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.284,0.54,0.54,0,0,0.13 +0.333,0.145,0.145,0.233,0,0,0,0.292,0.512,0.512,0,0,0.26 +0.667,0.249,0.249,0,0,0,0,0.413,0.59,0.59,0,0,0.463 +0.667,0.275,0.275,0,0,0,0,0.475,0.598,0.598,0,0,0.173 +0.333,0.19,0.19,0,0,0,0,0.379,0.521,0.521,0,0,0.346 +0.667,0.234,0.234,0,0,0,0,0.391,0.508,0.508,0,0,0.0433 +0.667,0.278,0.278,0,0,0,0,0.385,0.5,0.5,0,0,0 +0.667,0.221,0.221,0.233,0,0,0,0.354,0.479,0.479,0,0,0 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0.0433 +1,0.0749,0.0749,0,0,0,0,0.295,0.458,0.458,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.286,0.45,0.45,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.165,0.165,0,0,0.103,0,0.317,0.487,0.487,0,0,0.264 +0.667,0.277,0.277,1,0,0.414,0.233,0.296,0.515,0.515,0,0.283,0.18 +0.667,0.266,0.266,0.883,0,0,0,0.228,0.515,0.515,0,0.593,0 +0.667,0.258,0.258,0,0,0,0,0.234,0.515,0.515,0,0.527,0.173 +0.667,0.247,0.247,0,0,0,0,0.24,0.523,0.523,0,0.0299,0.0433 +0.667,0.239,0.239,0,0,0,0,0.234,0.531,0.531,0,0,0.0866 +0.667,0.237,0.237,0,0,0,0,0.259,0.531,0.531,0,0,0.216 +0.667,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0,0.13 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.333,0.05,0.05,0.233,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.162,0.162,0,0,0,0,0.366,0.533,0.533,0.138,0,0.0866 +0.667,0.331,0.331,0,0.833,0,0,0.5,0.573,0.573,0.486,0,0 +0.667,0.417,0.417,0,0.1,0,0,0.525,0.548,0.548,0,0,0 +0.667,0.505,0.505,0,0,0,0,0.512,0.531,0.531,0,0,0.0433 +1,0.563,0.563,0,0,0,0,0.547,0.5,0.5,0,0,0.0433 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.143 +1,0.0775,0.0775,0,0,0,0,0.283,0.45,0.45,0,0,0.198 +1,0.137,0.137,0,0,0,0,0.305,0.467,0.467,0,0,0.166 +1,0.279,0.279,0.25,0,0,0,0.376,0.506,0.506,0,0,0.201 +0.667,0.277,0.277,0.683,0.0833,0,0,0.296,0.515,0.515,0.503,0,0.0433 +0.333,0.158,0.158,0.5,1,0,0,0.243,0.492,0.492,0.335,0,0 +0.333,0.154,0.154,0.433,0.0833,0,0,0.246,0.492,0.492,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.249,0.496,0.496,0,0,0.13 +0.333,0.145,0.145,0,0,0,0,0.246,0.5,0.5,0,0,0.0866 +0.333,0.144,0.144,0,0,0,0,0.258,0.5,0.5,0,0,0.0433 +0.333,0.143,0.143,0,0,0,0,0.268,0.496,0.496,0,0,0.13 +0.333,0.144,0.144,0,0,0,0,0.271,0.504,0.504,0,0,0.26 +0.333,0.145,0.145,0,0,0,0,0.292,0.512,0.512,0,0,0.173 +0.333,0.149,0.149,0.7,0,0,0,0.336,0.529,0.529,0,0,0.242 +0.667,0.275,0.275,0,0,0,0,0.475,0.598,0.598,0,0,0.13 +0.333,0.19,0.19,0,0,0,0,0.379,0.521,0.521,0,0,0.13 +0.333,0.234,0.234,0,0,0,0,0.391,0.508,0.508,0,0,0.0866 +0.667,0.505,0.505,0,0,0,0,0.512,0.531,0.531,0,0,0 +0.667,0.221,0.221,0,0,0,0,0.354,0.479,0.479,0,0,0.13 +0.667,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0691 +1,0.165,0.165,0,0,0,0,0.317,0.487,0.487,0,0,0.219 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.158,0.158,0,0,0,0,0.243,0.492,0.492,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.246,0.492,0.492,0,0,0.0866 +0.667,0.149,0.149,0.25,0.583,0,0,0.249,0.496,0.496,0.667,0,0.13 +0.667,0.239,0.239,1,0.583,0,0,0.234,0.531,0.531,0.127,0,0 +1,0.331,0.331,1,0.333,0,0,0.259,0.563,0.563,0.652,0,0.13 +1,0.33,0.33,0.35,0.717,0,0,0.287,0.55,0.55,0.543,0,0.303 +0.667,0.237,0.237,0,0.35,0,0,0.284,0.54,0.54,0.762,0,0.303 +0.667,0.24,0.24,0,0,0,0,0.327,0.556,0.556,0.21,0,0.0433 +0.667,0.249,0.249,0,0,0,0,0.413,0.59,0.59,0,0,0.0433 +0.333,0.162,0.162,0,0,0,0,0.366,0.533,0.533,0,0,0.0866 +0.667,0.331,0.331,0,0,0,0,0.5,0.573,0.573,0,0,0.216 +0.667,0.417,0.417,0,0,0,0,0.525,0.548,0.548,0,0,0.0866 +1,0.505,0.505,0,0,0,0,0.512,0.531,0.531,0,0,0.303 +1,0.221,0.221,0,0,0,0,0.354,0.479,0.479,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.165,0.165,0,0,0,0,0.317,0.487,0.487,0,0,0.163 +1,0.163,0.163,0,0,0,0,0.277,0.492,0.492,0,0,0.0731 +1,0.266,0.266,0,0,0,0,0.228,0.515,0.515,0,0,0.384 +1,0.258,0.258,0,0,0,0,0.234,0.515,0.515,0,0,0.382 +1,0.247,0.247,0,0,0,0,0.24,0.523,0.523,0,0,0.229 +1,0.239,0.239,0.7,0,0,0,0.234,0.531,0.531,0,0,0.522 +0.667,0.237,0.237,0,0,0,0,0.259,0.531,0.531,0,0,0.343 +0.667,0.237,0.237,0,0,0,0,0.277,0.523,0.523,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.284,0.54,0.54,0,0,0.323 +0.667,0.24,0.24,0,0,0,0,0.327,0.556,0.556,0,0,0.182 +0.333,0.149,0.149,0.233,0,0,0,0.336,0.529,0.529,0,0,0.0866 +0.667,0.275,0.275,0,0,0,0,0.475,0.598,0.598,0,0,0.389 +0.667,0.331,0.331,0,0,0,0,0.5,0.573,0.573,0,0,0.216 +0.667,0.417,0.417,0,0,0,0,0.525,0.548,0.548,0,0,0.0866 +1,0.505,0.505,0,0,0,0,0.512,0.531,0.531,0,0,0 +1,0.221,0.221,0,0,0,0,0.354,0.479,0.479,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.486,0.486,0,0,0 +0.667,0.273,0.273,0,0,0.517,0.683,0.294,0.512,0.512,0.105,0.277,0.335 +0.667,0.26,0.26,0,0.667,0,0,0.227,0.512,0.512,0.637,0.43,0.0714 +0.667,0.253,0.253,0,0.467,0,0,0.233,0.512,0.512,0,0.596,0.0433 +0.667,0.242,0.242,0.233,0,0,0,0.239,0.52,0.52,0,0.529,0.173 +1,0.327,0.327,0,0,0,0,0.221,0.559,0.559,0,0.321,0.13 +1,0.323,0.323,0,0,0,0,0.258,0.559,0.559,0,0.169,0.246 +1,0.323,0.323,0,0,0,0,0.285,0.546,0.546,0,0.341,0 +0.333,0.141,0.141,0,0,0,0,0.27,0.503,0.503,0,0,0.13 +0.667,0.235,0.235,0,0,0,0,0.325,0.553,0.553,0,0,0.0866 +0.667,0.244,0.244,0,0,0,0,0.411,0.587,0.587,0,0,0.26 +0.667,0.271,0.271,0,0,0,0,0.472,0.595,0.595,0,0,0.0866 +0.667,0.327,0.327,0,0,0,0,0.497,0.57,0.57,0,0,0.211 +0.667,0.413,0.413,0,0,0,0,0.521,0.545,0.545,0,0,0.272 +1,0.501,0.501,0,0,0,0,0.509,0.529,0.529,0,0,0.194 +1,0.22,0.22,0,0,0,0,0.353,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.314 +1,0.39,0.39,0,0,0,0,0.432,0.521,0.521,0,0,0.468 +1,0.384,0.384,0,0,0,0,0.313,0.534,0.534,0,0,0.364 +1,0.366,0.366,0.25,0,0,0,0.212,0.534,0.534,0,0,0.017 +0.667,0.253,0.253,0.45,0,0,0,0.233,0.512,0.512,0,0,0.0665 +0.333,0.146,0.146,0,0,0,0,0.248,0.494,0.494,0,0,0.748 +0.333,0.142,0.142,0,0,0,0,0.245,0.499,0.499,0,0,0.114 +0.333,0.141,0.141,0,0,0,0,0.258,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.27,0.503,0.503,0,0,0.0866 +0.333,0.142,0.142,0,0,0,0,0.291,0.511,0.511,0,0,0.26 +0.333,0.147,0.147,0.233,0,0,0,0.334,0.528,0.528,0,0,0.0433 +0.333,0.16,0.16,0,0,0,0,0.365,0.532,0.532,0.225,0,0.346 +0.667,0.327,0.327,0,0.833,0,0,0.497,0.57,0.57,0.733,0,0.173 +1,0.595,0.595,0,0.3,0,0,0.653,0.583,0.583,0,0,0.112 +0.667,0.276,0.276,0,0,0,0,0.383,0.499,0.499,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.077,0.077,0,0,0,0,0.282,0.449,0.449,0,0,0.179 +1,0.222,0.222,0,0,0,0,0.35,0.462,0.462,0,0,0.185 +0.667,0.276,0.276,0.233,0,0,0,0.374,0.504,0.504,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.276,0.49,0.49,0,0,0.791 +0.333,0.155,0.155,0,0,0,0,0.242,0.49,0.49,0,0,0.563 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.333,0.146,0.146,0.7,0,0,0,0.248,0.494,0.494,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.245,0.499,0.499,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.258,0.529,0.529,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.276,0.52,0.52,0,0,0.13 +0.333,0.141,0.141,0,0,0,0,0.27,0.503,0.503,0,0,0.303 +0.667,0.235,0.235,0,0,0,0,0.325,0.553,0.553,0,0,0.173 +0.667,0.244,0.244,0,0,0,0,0.411,0.587,0.587,0,0,0.0866 +0.667,0.271,0.271,0,0,0,0,0.472,0.595,0.595,0,0,0.534 +0.333,0.188,0.188,0,0,0,0,0.377,0.519,0.519,0,0,0.216 +0.333,0.232,0.232,0,0,0,0,0.39,0.507,0.507,0,0,0.145 +0.667,0.501,0.501,0,0,0,0,0.509,0.529,0.529,0,0,0.0433 +0.667,0.389,0.389,0,0,0,0,0.448,0.487,0.487,0,0,0.13 +0.667,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.128 +0.667,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0.102 +0.667,0.0583,0.0583,0,0,0,0,0.285,0.449,0.449,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.313,0.421,0.421,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0504,0.0504,0,0,0,0,0.273,0.445,0.445,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.136,0.136,0.467,0,0,0,0.304,0.466,0.466,0,0,0.678 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.155,0.155,0.467,0,0,0,0.242,0.49,0.49,0,0,0.0866 +0.667,0.253,0.253,0,0,0,0,0.233,0.512,0.512,0,0,0 +0.667,0.242,0.242,0,0,0,0,0.239,0.52,0.52,0,0,0.273 +0.667,0.234,0.234,0,0,0,0,0.233,0.529,0.529,0,0,0.358 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.333,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.282,0.537,0.537,0,0,0 +0.667,0.235,0.235,0.25,0,0,0,0.325,0.553,0.553,0,0,0 +0.333,0.147,0.147,0.217,0,0,0,0.334,0.528,0.528,0,0,0.13 +0.667,0.271,0.271,0,0,0,0,0.472,0.595,0.595,0,0,0.0866 +0.333,0.188,0.188,0,0,0,0,0.377,0.519,0.519,0,0,0.26 +0.667,0.413,0.413,0,0,0,0,0.521,0.545,0.545,0,0,0.0866 +0.667,0.501,0.501,0.467,0,0,0,0.509,0.529,0.529,0,0,0 +0.667,0.389,0.389,0,0,0,0,0.448,0.487,0.487,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.222,0.222,0,0,0,0,0.35,0.462,0.462,0,0,0 +1,0.39,0.39,0,0,0,0,0.432,0.521,0.521,0,0,0.206 +0.667,0.273,0.273,0,0,0,0,0.294,0.512,0.512,0,0,0.25 +0.667,0.26,0.26,0,0,0,0,0.227,0.512,0.512,0,0,0.212 +1,0.354,0.354,0,0,0,0,0.221,0.534,0.534,0,0,0.21 +0.667,0.242,0.242,0,0,0,0,0.239,0.52,0.52,0,0,0.0866 +0.333,0.142,0.142,0,0,0,0,0.245,0.499,0.499,0,0,0 +0.667,0.232,0.232,0,0,0.517,0.117,0.258,0.529,0.529,0,0,0.0433 +0.667,0.232,0.232,0,0,0,1,0.276,0.52,0.52,0,0.33,0.0433 +0.667,0.232,0.232,0,0,0,0.0333,0.282,0.537,0.537,0,0.408,0.0433 +0.667,0.235,0.235,0.467,0,0,0,0.325,0.553,0.553,0,0.172,0.13 +1,0.341,0.341,0,0,0,0,0.488,0.645,0.645,0,0,0.216 +0.667,0.271,0.271,0,0,0,0,0.472,0.595,0.595,0,0,0.173 +0.667,0.327,0.327,0,0,0,0,0.497,0.57,0.57,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.521,0.545,0.545,0,0,0.141 +0.667,0.501,0.501,0,0,0,0,0.509,0.529,0.529,0,0,0.13 +1,0.389,0.389,0,0,0,0,0.448,0.487,0.487,0,0,0.26 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.136,0.136,0.217,0,0,0,0.304,0.466,0.466,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.155,0.155,0,0,0,0,0.242,0.49,0.49,0,0,0.413 +0.667,0.151,0.151,0,0,0,0,0.245,0.49,0.49,0,0,0.173 +0.667,0.146,0.146,0.467,0,0,0,0.248,0.494,0.494,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.05,0.05,0,0,0.103,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.05,0.05,0,0,0.414,0.45,0.258,0.469,0.469,0,0.288,0 +0.333,0.142,0.142,0,0,0,0,0.291,0.511,0.511,0,0.361,0 +0.333,0.147,0.147,0,0,0,0,0.334,0.528,0.528,0,0.518,0 +0.333,0.16,0.16,0,0,0,0,0.365,0.532,0.532,0,0.468,0.0433 +0.333,0.188,0.188,0,0,0,0,0.377,0.519,0.519,0,0.427,0.0866 +0.667,0.413,0.413,0,0,0,0,0.521,0.545,0.545,0,0,0.173 +0.667,0.276,0.276,0,0,0,0,0.383,0.499,0.499,0,0,0.0433 +0.667,0.22,0.22,0,0,0,0,0.353,0.478,0.478,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.285,0.445,0.445,0,0,0 +1,0.05,0.05,0,0,0,0,0.282,0.441,0.441,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.161,0.161,0,0,0,0,0.276,0.49,0.49,0,0,0.42 +1,0.26,0.26,0,0.417,0,0,0.227,0.512,0.512,0.645,0,0.524 +0.667,0.253,0.253,0,0.5,0,0,0.233,0.512,0.512,0.659,0,0.142 +0.667,0.242,0.242,0,0,0,0,0.239,0.52,0.52,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.245,0.499,0.499,0,0,0.346 +0.333,0.141,0.141,0,0,0,0,0.258,0.499,0.499,0,0,0.0433 +0.667,0.232,0.232,0,0,0,0,0.276,0.52,0.52,0,0,0.13 +0.667,0.232,0.232,0,0,0,0,0.282,0.537,0.537,0,0,0.0433 +0.667,0.235,0.235,0.333,0,0,0,0.325,0.553,0.553,0,0,0.0866 +0.667,0.244,0.244,0.367,0,0,0,0.411,0.587,0.587,0,0,0.0433 +0.667,0.271,0.271,0,0,0,0,0.472,0.595,0.595,0,0,0 +0.667,0.327,0.327,0,0,0,0,0.497,0.57,0.57,0,0,0.0433 +1,0.595,0.595,0,0,0,0,0.653,0.583,0.583,0,0,0.221 +1,0.727,0.727,0,0,0,0,0.635,0.559,0.559,0,0,0.232 +1,0.22,0.22,0,0,0,0,0.353,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.486,0.486,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.245,0.49,0.49,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.179 +0.333,0.141,0.141,0,0,0,0,0.27,0.503,0.503,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.334,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.365,0.532,0.532,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.232,0.232,0,0,0,0,0.39,0.507,0.507,0,0,0.0433 +0.333,0.276,0.276,0,0,0,0,0.383,0.499,0.499,0,0,0.389 +0.333,0.22,0.22,0,0,0,0,0.353,0.478,0.478,0,0,0.132 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.077,0.077,0,0,0,0,0.282,0.449,0.449,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.466,0.466,0,0,0 +1,0.276,0.276,0,0,0,0,0.374,0.504,0.504,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.276,0.49,0.49,0,0,0.173 +0.333,0.155,0.155,0,0,0,0,0.242,0.49,0.49,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.389 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.27,0.503,0.503,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.291,0.511,0.511,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.334,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0,0,0,0.365,0.532,0.532,0,0,0.0433 +0.333,0.188,0.188,0,0,0,0,0.377,0.519,0.519,0,0,0.26 +0.333,0.232,0.232,0,0,0,0,0.39,0.507,0.507,0,0,0 +0.667,0.501,0.501,0,0,0,0,0.509,0.529,0.529,0,0,0 +1,0.389,0.389,0,0,0,0,0.448,0.487,0.487,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.077,0.077,0,0,0,0,0.282,0.449,0.449,0,0,0.284 +1,0.136,0.136,0,0.333,0,0,0.304,0.466,0.466,0.575,0,0 +1,0.276,0.276,0.25,1,0,0,0.374,0.504,0.504,0.678,0,0.121 +1,0.273,0.273,0.217,0.267,0,0,0.294,0.512,0.512,0.505,0,0.262 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.151,0.151,0,0,0,0,0.245,0.49,0.49,0,0,0.45 +0.667,0.242,0.242,0,0,0,0,0.239,0.52,0.52,0,0,0.401 +0.667,0.234,0.234,0,0,0,0,0.233,0.529,0.529,0,0,0.425 +0.667,0.232,0.232,0,0,0,0,0.258,0.529,0.529,0,0,0.472 +0.333,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0.252 +0.333,0.141,0.141,0,0,0,0,0.27,0.503,0.503,0,0,0.404 +0.333,0.142,0.142,0,0,0,0,0.291,0.511,0.511,0,0,0.444 +0.333,0.147,0.147,0,0,0,0,0.334,0.528,0.528,0,0,0 +0.333,0.16,0.16,0,0.333,0,0,0.365,0.532,0.532,0.53,0,0.0866 +0.667,0.327,0.327,0,0.117,0,0,0.497,0.57,0.57,0.337,0,0.13 +0.667,0.232,0.232,0,0,0,0,0.39,0.507,0.507,0,0,0.535 +0.667,0.276,0.276,0,0,0,0,0.383,0.499,0.499,0,0,0.163 +1,0.22,0.22,0,0,0,0,0.353,0.478,0.478,0,0,0 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.276,0.276,0,0,0,0,0.374,0.504,0.504,0,0,0.413 +1,0.384,0.384,0,0,0,0,0.313,0.534,0.534,0,0,0.453 +0.333,0.155,0.155,0,0,0,0,0.242,0.49,0.49,0,0,0.184 +0.333,0.151,0.151,0,0,0,0,0.245,0.49,0.49,0,0,0.176 +0.667,0.242,0.242,0,0,0,0,0.239,0.52,0.52,0,0,0.371 +0.667,0.234,0.234,0,0,0,0,0.233,0.529,0.529,0,0,0.405 +0.333,0.141,0.141,0,0,0,0,0.258,0.499,0.499,0,0,0.303 +0.667,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0.346 +0.667,0.141,0.141,0.483,0,0,0,0.27,0.503,0.503,0,0,0.13 +1,0.327,0.327,0.217,0,0,0,0.359,0.596,0.596,0,0,0.353 +0.667,0.244,0.244,0,0,0,0,0.411,0.587,0.587,0,0,0.0433 +0.333,0.16,0.16,0,0,0,0,0.365,0.532,0.532,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.667,0.413,0.413,0,0,0,0,0.521,0.545,0.545,0.133,0,0.18 +1,0.727,0.727,0,0.833,0,0,0.635,0.559,0.559,0.645,0,0.0866 +1,0.559,0.559,0,0.0833,0,0,0.543,0.496,0.496,0.58,0,0.0866 +1,0.184,0.184,0,0,0,0,0.393,0.454,0.454,0,0,0.108 +1,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0.402 +1,0.0583,0.0583,0,0,0,0,0.285,0.449,0.449,0,0,0.211 +1,0.05,0.05,0,0,0,0,0.285,0.445,0.445,0,0,0.103 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.163,0.163,0.217,0,0,0,0.316,0.486,0.486,0,0,0.0433 +0.667,0.161,0.161,0,0,0,0,0.276,0.49,0.49,0,0,0.405 +0.667,0.155,0.155,0,0,0,0,0.242,0.49,0.49,0,0,0.0337 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.146,0.146,0,0,0,0,0.248,0.494,0.494,0,0,0.0433 +0.333,0.142,0.142,0,0,0,0,0.245,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.258,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0.0866 +0.333,0.141,0.141,0,0,0,0,0.27,0.503,0.503,0,0,0.13 +0.333,0.142,0.142,0,0,0,0,0.291,0.511,0.511,0,0,0.173 +0.333,0.147,0.147,0.5,0,0,0,0.334,0.528,0.528,0,0,0 +0.667,0.271,0.271,0.2,0,0,0,0.472,0.595,0.595,0,0,0.0866 +0.667,0.327,0.327,0,0,0,0,0.497,0.57,0.57,0,0,0.13 +1,0.413,0.413,0,0,0,0,0.521,0.545,0.545,0,0,0 +1,0.501,0.501,0,0,0,0,0.509,0.529,0.529,0,0,0 +1,0.389,0.389,0,0,0,0,0.448,0.487,0.487,0,0,0.0866 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.0433 +1,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.276,0.49,0.49,0,0,0.167 +0.333,0.155,0.155,0,0,0,0,0.242,0.49,0.49,0,0,0.141 +0.333,0.151,0.151,0,0,0,0,0.245,0.49,0.49,0,0,0.182 +0.333,0.146,0.146,0,0,0,0,0.248,0.494,0.494,0,0,0.0995 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.116 +0.333,0.142,0.142,0,0,0,0,0.291,0.511,0.511,0,0,0.222 +0.333,0.147,0.147,0,0,0,0,0.334,0.528,0.528,0,0,0.224 +0.667,0.271,0.271,0,0,0,0,0.472,0.595,0.595,0,0,0.216 +0.667,0.327,0.327,0,0.333,0,0,0.497,0.57,0.57,0.589,0,0.389 +0.667,0.413,0.413,0,1,0,0,0.521,0.545,0.545,0,0,0.108 +0.667,0.501,0.501,0,0.267,0,0,0.509,0.529,0.529,0,0,0.0433 +0.667,0.389,0.389,0,0,0,0,0.448,0.487,0.487,0,0,0.262 +0.667,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0 +0.667,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.466,0.466,0,0,0 +0.667,0.276,0.276,0,0,0,0,0.374,0.504,0.504,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.276,0.49,0.49,0,0,0 +0.333,0.155,0.155,0,0,0,0,0.242,0.49,0.49,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0,0.245,0.49,0.49,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.333,0.142,0.142,0.333,0,0,0,0.245,0.499,0.499,0,0,0 +0.333,0.141,0.141,0.367,0,0,0,0.258,0.499,0.499,0,0,0.0433 +0.333,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.27,0.503,0.503,0,0,0.0866 +0.333,0.142,0.142,0,0,0,0,0.291,0.511,0.511,0,0,0.173 +0.667,0.244,0.244,0,0,0,0,0.411,0.587,0.587,0,0,0.0433 +0.667,0.271,0.271,0,0,0.517,0.2,0.472,0.595,0.595,0,0,0.0866 +0.667,0.327,0.327,0,0,0,0.0167,0.497,0.57,0.57,0,0.386,0.26 +0.667,0.413,0.413,0,0,0,0,0.521,0.545,0.545,0,0.0572,0.26 +0.333,0.276,0.276,0,0,0,0,0.383,0.499,0.499,0,0,0.0866 +0.667,0.389,0.389,0.333,0,0,0,0.448,0.487,0.487,0,0,0.0866 +0.667,0.117,0.117,0.367,0,0,0,0.325,0.461,0.461,0,0,0 +0.667,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0.216 +0.667,0.0583,0.0583,0,0,0,0,0.285,0.449,0.449,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.136,0.136,0,0,0,0,0.304,0.466,0.466,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.486,0.486,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.276,0.49,0.49,0,0,0.152 +0.667,0.26,0.26,0,0,0,0,0.227,0.512,0.512,0,0,0.386 +1,0.354,0.354,0,0,0,0,0.221,0.534,0.534,0,0,0.311 +0.333,0.146,0.146,0,0,0,0,0.248,0.494,0.494,0,0,0 +0,0.05,0.05,0.333,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.333,0.141,0.141,0.367,0,0,0,0.258,0.499,0.499,0,0,0.0433 +0.333,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.27,0.503,0.503,0,0,0 +0.667,0.235,0.235,0,0,0,0,0.325,0.553,0.553,0,0,0.0631 +0.667,0.244,0.244,0,0,0,0,0.411,0.587,0.587,0,0,0.0433 +0.667,0.271,0.271,0,0,0,0,0.472,0.595,0.595,0,0,0.173 +0.667,0.327,0.327,0,0,0,0,0.497,0.57,0.57,0,0,0.216 +0.667,0.413,0.413,0,0,0,0,0.521,0.545,0.545,0,0,0.173 +0.667,0.276,0.276,0,0,0,0,0.383,0.499,0.499,0,0,0.13 +1,0.389,0.389,0,0,0,0,0.448,0.487,0.487,0,0,0.0866 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.0433 +1,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.285,0.449,0.449,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.285,0.445,0.445,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.163,0.163,0.25,0,0,0,0.316,0.486,0.486,0,0,0 +1,0.273,0.273,1,0,0,0,0.294,0.512,0.512,0,0,0 +1,0.26,0.26,1,0,0,0,0.227,0.512,0.512,0,0,0.394 +1,0.253,0.253,0.567,0,0,0,0.233,0.512,0.512,0,0,0.179 +0.667,0.242,0.242,0,0,0,0,0.239,0.52,0.52,0,0,0.541 +0.667,0.234,0.234,0,0,0,0,0.233,0.529,0.529,0,0,0.0433 +0.333,0.141,0.141,0,0,0,0,0.258,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0.0433 +0.333,0.141,0.141,0,0,0,0,0.27,0.503,0.503,0,0,0.173 +0.333,0.142,0.142,0,0,0.517,0.117,0.291,0.511,0.511,0,0,0.173 +0.667,0.244,0.244,0,0,0,0.8,0.411,0.587,0.587,0,0.229,0.635 +0.333,0.16,0.16,0,0,0,0,0.365,0.532,0.532,0,0,0.0433 +0.667,0.327,0.327,0,0,0,0,0.497,0.57,0.57,0,0,0 +0.667,0.413,0.413,0.233,0,0,0,0.521,0.545,0.545,0,0,0.173 +0.667,0.501,0.501,0,0,0,0,0.509,0.529,0.529,0,0,0.0433 +1,0.22,0.22,0,0,0,0,0.353,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.163,0.163,0,0,0,0,0.316,0.486,0.486,0,0,0.344 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.215 +0.667,0.155,0.155,0,0,0,0,0.242,0.49,0.49,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.245,0.49,0.49,0,0,0 +0.667,0.146,0.146,0,0,0,0,0.248,0.494,0.494,0,0,0.0433 +0.667,0.142,0.142,0.233,0,0,0,0.245,0.499,0.499,0,0,0.216 +0.667,0.141,0.141,0,0,0,0,0.258,0.499,0.499,0,0,0.0433 +0.667,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0.197 +0.667,0.232,0.232,0,0,0,0,0.282,0.537,0.537,0,0,0.137 +0.667,0.142,0.142,0,0,0,0,0.291,0.511,0.511,0,0,0.0433 +0.667,0.147,0.147,0,0,0,0,0.334,0.528,0.528,0,0,0.346 +0.333,0.16,0.16,0,0,0,0,0.365,0.532,0.532,0,0,0.0866 +0.333,0.188,0.188,0,0,0,0,0.377,0.519,0.519,0,0,0.303 +0.667,0.413,0.413,0,0,0,0,0.521,0.545,0.545,0,0,0.0433 +0.667,0.501,0.501,0,0,0,0,0.509,0.529,0.529,0,0,0 +0.667,0.389,0.389,0,0,0,0,0.448,0.487,0.487,0,0,0.0433 +1,0.184,0.184,0,0,0,0,0.393,0.454,0.454,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.161,0.161,0.75,0,0,0,0.276,0.49,0.49,0,0,0 +1,0.366,0.366,0.417,0.333,0,0,0.212,0.534,0.534,0.58,0,0 +0.333,0.151,0.151,0,0.8,0,0,0.245,0.49,0.49,0.488,0,0 +0.333,0.146,0.146,0,0,0,0,0.248,0.494,0.494,0.681,0,0.216 +0.667,0.234,0.234,0,0,0,0,0.233,0.529,0.529,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.258,0.529,0.529,0,0,0.13 +0.333,0.141,0.141,0.5,0,0,0,0.267,0.494,0.494,0,0,0.0433 +0.667,0.232,0.232,1,0,0,0,0.282,0.537,0.537,0,0,0.13 +0.667,0.235,0.235,0.6,0.333,0,0,0.325,0.553,0.553,0.659,0,0.433 +0.667,0.244,0.244,0,1,0,0,0.411,0.587,0.587,0.308,0,0.303 +0.667,0.271,0.271,0,0.267,0,0,0.472,0.595,0.595,0.162,0,0.13 +1,0.465,0.465,0,0.833,0,0,0.616,0.621,0.621,0.748,0,0.13 +0.667,0.413,0.413,0,0.0833,0,0,0.521,0.545,0.545,0.567,0,0.0866 +0.667,0.501,0.501,0,0,0,0,0.509,0.529,0.529,0.534,0,0.0866 +1,0.559,0.559,0,0,0,0,0.543,0.496,0.496,0,0,0.995 +1,0.184,0.184,0,0,0,0,0.393,0.454,0.454,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0504,0.0504,0,0,0,0,0.273,0.445,0.445,0,0,0.568 +1,0.077,0.077,0.75,0,0,0,0.282,0.449,0.449,0,0,0.0708 +0.667,0.05,0.05,0.183,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.486,0.486,0,0,0.0433 +0.667,0.273,0.273,0.25,0,0,0,0.294,0.512,0.512,0,0,0.39 +0.333,0.155,0.155,0.45,0,0,0,0.242,0.49,0.49,0,0,0.149 +0.333,0.151,0.151,0,0,0,0,0.245,0.49,0.49,0,0,0.0866 +0.333,0.146,0.146,0,0,0,0,0.248,0.494,0.494,0,0,0.13 +0.333,0.142,0.142,0,0,0,0,0.245,0.499,0.499,0,0,0.216 +0.667,0.232,0.232,0.467,0,0,0,0.258,0.529,0.529,0,0,0.0433 +0.333,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.282,0.537,0.537,0,0,0.452 +0.667,0.235,0.235,0,0,0,0,0.325,0.553,0.553,0,0,0.199 +0.667,0.244,0.244,0,0,0,0,0.411,0.587,0.587,0.197,0,0.126 +0.333,0.16,0.16,0,0.833,0,0,0.365,0.532,0.532,0.737,0,0.13 +0.667,0.327,0.327,0,0.0833,0,0,0.497,0.57,0.57,0,0,0 +0.667,0.413,0.413,0,0,0,0,0.521,0.545,0.545,0,0,0.0866 +0.667,0.501,0.501,0,0,0,0,0.509,0.529,0.529,0,0,0.239 +0.667,0.389,0.389,0,0,0,0,0.448,0.487,0.487,0,0,0.272 +1,0.184,0.184,0,0,0,0,0.393,0.454,0.454,0,0,0.0944 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0504,0.0504,0.217,0,0,0,0.273,0.445,0.445,0,0,0 +1,0.077,0.077,0,0,0,0,0.282,0.449,0.449,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.466,0.466,0,0,0.0935 +0.667,0.05,0.05,0.233,0,0,0,0.258,0.469,0.469,0,0,0.206 +0.667,0.161,0.161,0,0,0,0,0.276,0.49,0.49,0,0,0.124 +0.667,0.155,0.155,0,0,0,0,0.242,0.49,0.49,0,0,0.353 +0.667,0.253,0.253,0,0,0,0,0.233,0.512,0.512,0,0,0.202 +0.333,0.146,0.146,0,0,0,0,0.248,0.494,0.494,0,0,0.443 +0.333,0.142,0.142,0,0,0,0,0.245,0.499,0.499,0,0,0.173 +0.333,0.141,0.141,0,0,0,0,0.258,0.499,0.499,0,0,0.0433 +0.333,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.291,0.511,0.511,0,0,0.0866 +0.333,0.147,0.147,0,0,0,0,0.334,0.528,0.528,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.232,0.232,0,0.583,0,0,0.39,0.507,0.507,0.691,0,0.146 +0.667,0.501,0.501,0,0.333,0,0,0.509,0.529,0.529,0.118,0,0.335 +0.667,0.389,0.389,0,0,0,0,0.448,0.487,0.487,0,0,0.128 +1,0.184,0.184,0,0,0,0,0.393,0.454,0.454,0,0,0.0433 +1,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0.0433 +1,0.0583,0.0583,0,0,0,0,0.285,0.449,0.449,0,0,0 +1,0.05,0.05,0,0,0,0,0.285,0.445,0.445,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.467,0,0,0,0.258,0.469,0.469,0.385,0,0 +1,0.276,0.276,0.233,0.917,0,0,0.374,0.504,0.504,0.309,0,0 +1,0.273,0.273,0,0,0,0,0.294,0.512,0.512,0,0,0 +1,0.26,0.26,0,0,0,0,0.227,0.512,0.512,0,0,0 +1,0.354,0.354,0,0,0,0,0.221,0.534,0.534,0,0,0.0433 +1,0.338,0.338,0.7,0,0,0,0.23,0.546,0.546,0,0,0 +0.667,0.234,0.234,0,0,0,0,0.233,0.529,0.529,0,0,0.0866 +0.667,0.232,0.232,0,0,0,0,0.258,0.529,0.529,0,0,0.13 +0.667,0.232,0.232,0,0,0,0,0.276,0.52,0.52,0,0,0 +1,0.232,0.232,0,0,0,0,0.282,0.537,0.537,0,0,0.0433 +1,0.235,0.235,0,0,0,0,0.325,0.553,0.553,0,0,0.0866 +0.667,0.147,0.147,0,0,0,0,0.334,0.528,0.528,0,0,0 +1,0.381,0.381,0,0,0,0,0.58,0.658,0.658,0,0,0.344 +1,0.465,0.465,0,0,0,0,0.616,0.621,0.621,0,0,0.173 +0.667,0.413,0.413,0,0,0,0,0.521,0.545,0.545,0,0,0.0433 +0.667,0.501,0.501,0,0,0,0,0.509,0.529,0.529,0,0,0.295 +1,0.559,0.559,0,0,0,0,0.543,0.496,0.496,0,0,0.291 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.466,0.466,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.276,0.49,0.49,0,0,0 +0.667,0.155,0.155,0,0,0,0,0.242,0.49,0.49,0,0,0.348 +0.333,0.151,0.151,0,0,0,0,0.245,0.49,0.49,0,0,0.116 +0.333,0.146,0.146,0,0,0,0,0.248,0.494,0.494,0,0,0.219 +0.333,0.142,0.142,0,0,0,0,0.245,0.499,0.499,0,0,0.253 +0.333,0.141,0.141,0,0,0,0,0.258,0.499,0.499,0,0,0.268 +0.667,0.232,0.232,0,0,0,0,0.276,0.52,0.52,0,0,0.509 +0.333,0.141,0.141,0,0,0,0,0.27,0.503,0.503,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.389 +0,0.05,0.05,0,0,0.517,0.7,0.258,0.469,0.469,0,0.196,0.26 +0.667,0.271,0.271,0,0,0,0.45,0.472,0.595,0.595,0,0.601,0.0866 +0.667,0.327,0.327,0,0,0,0,0.497,0.57,0.57,0,0.498,0.0708 +0.667,0.413,0.413,0,0,0,0,0.521,0.545,0.545,0,0.0273,0.36 +0.333,0.276,0.276,0,0,0,0,0.383,0.499,0.499,0,0,0.465 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.176 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.136,0.136,0,0,0,0,0.304,0.466,0.466,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.316,0.486,0.486,0,0,0.137 +0.333,0.161,0.161,0,0,0,0,0.276,0.49,0.49,0,0,0.187 +0.333,0.155,0.155,0,0,0,0,0.242,0.49,0.49,0,0,0.0433 +0.333,0.151,0.151,0.25,0,0,0,0.245,0.49,0.49,0,0,0.303 +0.333,0.146,0.146,0.917,0,0,0,0.248,0.494,0.494,0,0,0.0866 +0.667,0.234,0.234,0,0,0,0,0.233,0.529,0.529,0,0,0.0866 +0.333,0.141,0.141,0,0,0,0,0.258,0.499,0.499,0,0,0.0433 +0.333,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0.0433 +0.333,0.141,0.141,0,0,0,0,0.27,0.503,0.503,0,0,0.0433 +0.333,0.142,0.142,0,0,0,0,0.291,0.511,0.511,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.334,0.528,0.528,0,0,0.13 +0.667,0.271,0.271,0,0,0,0,0.472,0.595,0.595,0,0,0.322 +0.667,0.327,0.327,0,0,0,0,0.497,0.57,0.57,0,0,0.29 +0.667,0.413,0.413,0,0,0,0,0.521,0.545,0.545,0,0,0.137 +0.667,0.501,0.501,0,0,0,0,0.509,0.529,0.529,0,0,0 +0.667,0.22,0.22,0,0,0,0,0.353,0.478,0.478,0,0,0.13 +0.667,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.131 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.124 +1,0.276,0.276,0,0,0,0,0.374,0.504,0.504,0,0,0.204 +0.667,0.273,0.273,0,0,0,0,0.294,0.512,0.512,0,0,0.205 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.193 +0.333,0.146,0.146,0,0,0.517,0.617,0.248,0.494,0.494,0,0.252,0.193 +0.333,0.142,0.142,0,0,0,0.0667,0.245,0.499,0.499,0,0.529,0 +0.333,0.141,0.141,0.25,0,0,0,0.258,0.499,0.499,0,0.183,0.345 +0.667,0.232,0.232,0.217,0,0,0,0.276,0.52,0.52,0,0,0.13 +0.667,0.232,0.232,0,0,0,0,0.282,0.537,0.537,0,0,0.0433 +0.667,0.235,0.235,0.25,0,0,0,0.325,0.553,0.553,0,0,0.13 +0.667,0.244,0.244,0.917,0,0,0,0.411,0.587,0.587,0,0,0.303 +0.667,0.16,0.16,0,0,0,0,0.365,0.532,0.532,0,0,0.389 +0.667,0.188,0.188,0,0,0,0,0.377,0.519,0.519,0,0,0 +0.667,0.232,0.232,0,0,0,0,0.39,0.507,0.507,0,0,0.19 +1,0.276,0.276,0,0,0,0,0.383,0.499,0.499,0,0,0.135 +1,0.22,0.22,0,0,0,0,0.353,0.478,0.478,0,0,0.0433 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.466,0.466,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.486,0.486,0,0,0.181 +0.667,0.161,0.161,0,0.333,0,0,0.276,0.49,0.49,0.659,0,0.0711 +1,0.26,0.26,0,0.8,0,0,0.227,0.512,0.512,0,0,0.135 +0.667,0.253,0.253,0,0,0,0,0.233,0.512,0.512,0,0,0.102 +0.333,0.146,0.146,0.25,0,0,0,0.248,0.494,0.494,0,0,0.13 +0.333,0.142,0.142,0.217,0,0,0,0.245,0.499,0.499,0,0,0.0866 +0.333,0.141,0.141,0,0,0,0,0.258,0.499,0.499,0,0,0.388 +0.333,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0.433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.142,0.142,0,0,0,0,0.291,0.511,0.511,0,0,0.0433 +0.333,0.147,0.147,0,0,0,0,0.334,0.528,0.528,0,0,0.173 +0.333,0.16,0.16,0,0,0,0,0.365,0.532,0.532,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.232,0.232,0,0,0,0,0.39,0.507,0.507,0,0,0.0866 +0.667,0.501,0.501,0,0,0,0,0.509,0.529,0.529,0,0,0.435 +0.667,0.22,0.22,0,0,0,0,0.353,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.282,0.441,0.441,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0.0833,0,0,0.258,0.469,0.469,0.464,0,0.0866 +0.667,0.163,0.163,0,1,0,0,0.316,0.486,0.486,0.429,0,0 +0.667,0.161,0.161,0,0.283,0,0,0.276,0.49,0.49,0,0,0 +0.667,0.155,0.155,0,0,0,0,0.242,0.49,0.49,0,0,0.0433 +0.667,0.151,0.151,0,0,0,0,0.245,0.49,0.49,0,0,0.0866 +0,0.05,0.05,0.5,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.333,0.142,0.142,0.2,0,0,0,0.245,0.499,0.499,0,0,0.26 +0.333,0.141,0.141,0,0,0,0,0.258,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0.258,0,0 +0.333,0.141,0.141,0,0.833,0,0,0.27,0.503,0.503,0.843,0,0 +0.333,0.142,0.142,0,0.3,0.517,0.117,0.291,0.511,0.511,0.821,0,0 +0.333,0.147,0.147,0,0,0,0.567,0.334,0.528,0.528,0,0.56,0.216 +0.333,0.16,0.16,0,0,0,0,0.365,0.532,0.532,0,0.209,0.0433 +0.667,0.327,0.327,0,0,0,0,0.497,0.57,0.57,0,0,0.173 +0.667,0.413,0.413,0.5,0,0,0,0.521,0.545,0.545,0,0,0.216 +0.667,0.276,0.276,0.667,0,0,0,0.383,0.499,0.499,0,0,0.26 +0.667,0.22,0.22,0,0,0,0,0.353,0.478,0.478,0,0,0.13 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0504,0.0504,0,0,0,0,0.273,0.445,0.445,0,0,0 +1,0.077,0.077,0,0,0,0,0.282,0.449,0.449,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.466,0.466,0,0,0 +1,0.163,0.163,0,0.333,0,0,0.316,0.486,0.486,0.436,0,0.144 +1,0.161,0.161,0,0.8,0,0,0.276,0.49,0.49,0,0,0.421 +1,0.26,0.26,0,0,0,0,0.227,0.512,0.512,0,0,0.205 +1,0.253,0.253,0,0,0,0,0.233,0.512,0.512,0,0,0.539 +0.667,0.242,0.242,0,0,0,0,0.239,0.52,0.52,0,0,0.221 +0.333,0.142,0.142,0,0,0,0,0.245,0.499,0.499,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.141,0.141,0.467,0,0,0,0.267,0.494,0.494,0,0,0.433 +0.333,0.141,0.141,0,0,0,0,0.27,0.503,0.503,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.291,0.511,0.511,0,0,0 +0.333,0.147,0.147,0,0,0,0,0.334,0.528,0.528,0,0,0.216 +0.667,0.16,0.16,0.5,0,0,0,0.365,0.532,0.532,0,0,0 +0.667,0.327,0.327,1,0,0,0,0.497,0.57,0.57,0,0,0.0433 +0.667,0.413,0.413,0.133,0.583,0,0,0.521,0.545,0.545,0.65,0,0.0866 +0.667,0.501,0.501,0,0.333,0,0,0.509,0.529,0.529,0.735,0,0 +0.667,0.389,0.389,0,0,0,0,0.448,0.487,0.487,0,0,0 +0.667,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.263 +1,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.466,0.466,0,0,0 +1,0.276,0.276,0,0,0,0,0.374,0.504,0.504,0,0,0 +1,0.273,0.273,0,0,0,0,0.294,0.512,0.512,0,0,0 +0.667,0.155,0.155,0,0,0,0,0.242,0.49,0.49,0,0,0.169 +0.667,0.151,0.151,0,0,0,0,0.245,0.49,0.49,0,0,0.28 +0.333,0.146,0.146,0,0,0,0,0.248,0.494,0.494,0,0,0.284 +0.333,0.142,0.142,0,0,0,0,0.245,0.499,0.499,0,0,0.173 +0.333,0.141,0.141,0,0,0,0,0.258,0.499,0.499,0,0,0.269 +0.333,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0.173 +0.333,0.141,0.141,0,0,0,0,0.27,0.503,0.503,0,0,0.0433 +0,0.05,0.05,0,0,0.517,0.45,0.258,0.469,0.469,0,0.0897,0.0433 +0.667,0.244,0.244,0,0,0,0,0.411,0.587,0.587,0,0.891,0.13 +0.667,0.271,0.271,0,0,0,0,0.472,0.595,0.595,0,0.525,0.26 +1,0.465,0.465,0.467,0,0,0,0.616,0.621,0.621,0,0.242,0 +1,0.595,0.595,0,0,0,0,0.653,0.583,0.583,0,0,0.0433 +1,0.727,0.727,0,0,0,0,0.635,0.559,0.559,0,0,0.216 +1,0.559,0.559,0,0,0,0,0.543,0.496,0.496,0,0,0 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.316,0.486,0.486,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0.107,0,0 +0.333,0.147,0.147,0,0.667,0,0,0.334,0.528,0.528,0.532,0,0 +0.333,0.16,0.16,0,0.25,0,0,0.365,0.532,0.532,0,0,0 +0.333,0.188,0.188,0,0,0,0,0.377,0.519,0.519,0,0,0 +0.333,0.232,0.232,0,0,0,0,0.39,0.507,0.507,0,0,0.173 +0.333,0.276,0.276,0,0,0,0,0.383,0.499,0.499,0.217,0,0.433 +1,0.389,0.389,0,0.917,0,0,0.448,0.487,0.487,0.366,0,0.26 +1,0.05,0.05,0,0.217,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.466,0.466,0,0,0.169 +0.667,0.163,0.163,0,0,0,0,0.316,0.486,0.486,0,0,0.116 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.162 +0.333,0.155,0.155,0,0,0,0,0.242,0.49,0.49,0,0,0.13 +0.333,0.151,0.151,0,0,0,0,0.245,0.49,0.49,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.142,0.142,0,0,0,0,0.245,0.499,0.499,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.258,0.499,0.499,0,0,0.0433 +0.333,0.141,0.141,0,0,0,0,0.267,0.494,0.494,0,0,0 +0.333,0.141,0.141,0,0,0,0,0.27,0.503,0.503,0,0,0.303 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.275 +0.667,0.147,0.147,0,0,0,0,0.334,0.528,0.528,0,0,0.255 +0.667,0.271,0.271,0,0,0,0,0.472,0.595,0.595,0,0,0.29 +0.667,0.327,0.327,0,0,0,0,0.497,0.57,0.57,0,0,0.188 +0.667,0.413,0.413,0,0,0,0,0.521,0.545,0.545,0,0,0.216 +0.667,0.501,0.501,0,0,0,0,0.509,0.529,0.529,0,0,0.13 +1,0.559,0.559,0,0,0,0,0.543,0.496,0.496,0,0,0.0433 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.0433 +1,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.136,0.136,0,0,0,0,0.304,0.466,0.466,0,0,0.26 +0.667,0.163,0.163,0,0,0,0,0.316,0.486,0.486,0,0,0.153 +1,0.273,0.273,0,0,0,0,0.294,0.512,0.512,0,0,0.187 +0.667,0.155,0.155,0.25,0,0,0,0.242,0.49,0.49,0,0,0.242 +0.667,0.253,0.253,0.917,0,0.517,0.117,0.233,0.512,0.512,0,0,0.13 +0.667,0.242,0.242,0,0,0,0.1,0.239,0.52,0.52,0,0.445,0 +0.333,0.142,0.142,0,0,0,0,0.245,0.499,0.499,0,0.4,0 +0.667,0.232,0.232,0.25,0,0,0,0.258,0.529,0.529,0,0.607,0.476 +0.667,0.232,0.232,0.217,0,0,0,0.276,0.52,0.52,0,0.416,0.0433 +0.667,0.232,0.232,0,0,0,0,0.282,0.537,0.537,0,0.552,0.0433 +0.667,0.235,0.235,0,0,0,0,0.325,0.553,0.553,0,0.557,0.0433 +0.667,0.244,0.244,0.25,0.583,0,0,0.411,0.587,0.587,0.737,0.285,0.0433 +0.667,0.271,0.271,0.45,0.333,0,0,0.472,0.595,0.595,0,0.0449,0.173 +0.333,0.188,0.188,0,0,0,0,0.377,0.519,0.519,0,0,0 +0.333,0.232,0.232,0,0,0,0,0.39,0.507,0.507,0,0,0.0866 +0.667,0.276,0.276,0,0,0,0,0.383,0.499,0.499,0,0,0.0433 +0.667,0.22,0.22,0,0,0,0,0.353,0.478,0.478,0,0,0.389 +0.667,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0947 +0.667,0.163,0.163,0.467,0,0,0,0.276,0.49,0.49,0,0,0.159 +1,0.374,0.374,0,0,0,0,0.212,0.534,0.534,0,0,0.351 +0.667,0.258,0.258,0,0,0,0,0.233,0.512,0.512,0,0,0.265 +0.333,0.149,0.149,0,0,0,0,0.248,0.494,0.494,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.303 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0.216 +0.667,0.238,0.238,0,0,0,0,0.282,0.537,0.537,0,0,0.303 +0.667,0.241,0.241,0,0,0,0,0.325,0.553,0.553,0,0,0.349 +0.667,0.254,0.254,0,0,0,0,0.411,0.587,0.587,0,0,0.125 +0.333,0.171,0.171,0,0,0,0,0.365,0.532,0.532,0,0,0.173 +0.667,0.365,0.365,0,0,0,0,0.497,0.57,0.57,0,0,0.303 +0.667,0.466,0.466,0,0,0,0,0.521,0.545,0.545,0,0,0.346 +0.667,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0.13 +0.667,0.401,0.401,0,0,0,0,0.448,0.487,0.487,0,0,0.0866 +0.667,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0775,0.0775,0,0,0,0,0.282,0.449,0.449,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.165,0.165,0.717,0,0,0,0.316,0.486,0.486,0,0,0 +1,0.277,0.277,0,0,0,0,0.294,0.512,0.512,0,0,0.0433 +0.333,0.158,0.158,0,0,0,0,0.242,0.49,0.49,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.245,0.49,0.49,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.248,0.494,0.494,0,0,0.0433 +0.333,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.13 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0.0866 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.173 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.0866 +0.333,0.152,0.152,0,0,0,0,0.334,0.528,0.528,0,0,0.0866 +0.333,0.171,0.171,0,0,0,0,0.365,0.532,0.532,0,0,0.173 +0.667,0.365,0.365,0,0,0,0,0.497,0.57,0.57,0,0,0.0866 +0.667,0.466,0.466,0,0,0,0,0.521,0.545,0.545,0,0,0.0866 +1,0.795,0.795,0,0,0,0,0.635,0.559,0.559,0,0,0 +1,0.401,0.401,0,0,0,0,0.448,0.487,0.487,0,0,0.0433 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0505,0.0505,0.25,0,0,0,0.273,0.445,0.445,0,0,0 +1,0.105,0.105,0.217,0,0,0,0.307,0.429,0.429,0,0,0 +1,0.224,0.224,0,0,0,0,0.35,0.462,0.462,0,0,0 +0.667,0.165,0.165,0,0,0,0,0.316,0.486,0.486,0,0,0.0433 +0.667,0.163,0.163,0,0,0,0,0.276,0.49,0.49,0,0,0.114 +0.667,0.158,0.158,0,0,0,0,0.242,0.49,0.49,0,0,0.234 +0.667,0.154,0.154,0,0,0,0,0.245,0.49,0.49,0,0,0.117 +1,0.247,0.247,0,0,0,0,0.239,0.52,0.52,0,0,0.454 +0.667,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0,0.653 +0.333,0.144,0.144,0,0.333,0,0,0.258,0.499,0.499,0.582,0,0 +0.333,0.143,0.143,0,0.817,0,0,0.267,0.494,0.494,0.886,0,0.13 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.13 +0.667,0.241,0.241,0,0,0,0,0.325,0.553,0.553,0,0,0.216 +0.667,0.254,0.254,0,0,0,0,0.411,0.587,0.587,0,0,0.386 +0.667,0.291,0.291,0,0,0.517,0.617,0.472,0.595,0.595,0,0.238,0.192 +0.667,0.365,0.365,0,0,0,0.05,0.497,0.57,0.57,0,0.0468,0.234 +1,0.674,0.674,0,0,0,0,0.653,0.583,0.583,0,0,0.401 +1,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0.209 +1,0.225,0.225,0,0,0,0,0.353,0.478,0.478,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.279,0.279,0.233,0,0,0,0.374,0.504,0.504,0,0,0.154 +0.667,0.277,0.277,0,0,0,0,0.294,0.512,0.512,0,0,0 +0.667,0.266,0.266,0,0,0,0,0.227,0.512,0.512,0,0,0.0534 +0.667,0.258,0.258,0,0,0,0,0.233,0.512,0.512,0,0,0.225 +0.667,0.247,0.247,0,0,0,0,0.239,0.52,0.52,0,0,0.241 +0.333,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0,0.169 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.276,0.52,0.52,0,0,0 +0.667,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.13 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.0866 +0.333,0.152,0.152,0,0,0,0,0.334,0.528,0.528,0,0,0.13 +0.667,0.291,0.291,0,0,0,0,0.472,0.595,0.595,0,0,0.0866 +0.667,0.365,0.365,0,0,0,0,0.497,0.57,0.57,0,0,0.0866 +0.667,0.466,0.466,0,0,0.517,0.117,0.521,0.545,0.545,0,0,0.26 +0.667,0.298,0.298,0,0,0,0.333,0.383,0.499,0.499,0,0.277,0 +0.667,0.225,0.225,0,0,0,0,0.353,0.478,0.478,0,0.551,0 +0.667,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0.152,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.266,0.266,0,0,0,0,0.227,0.512,0.512,0,0,0.33 +0.667,0.258,0.258,0,0,0,0,0.233,0.512,0.512,0,0,0.191 +0.667,0.247,0.247,0,0,0,0,0.239,0.52,0.52,0,0,0.299 +0.667,0.239,0.239,0,0,0,0,0.233,0.529,0.529,0,0,0.757 +0.667,0.237,0.237,0.467,0,0,0,0.258,0.529,0.529,0,0,0.203 +0.667,0.237,0.237,0,0,0,0,0.276,0.52,0.52,0,0,0.282 +0.667,0.238,0.238,0,0,0,0,0.282,0.537,0.537,0,0,0.0866 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.13 +0.333,0.152,0.152,0,0,0,0,0.334,0.528,0.528,0,0,0.26 +0.667,0.291,0.291,0,0,0,0,0.472,0.595,0.595,0,0,0.0866 +0.667,0.365,0.365,0,0,0,0,0.497,0.57,0.57,0,0,0.13 +0.667,0.466,0.466,0,0,0,0,0.521,0.545,0.545,0,0,0.0433 +0.667,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0.0866 +0.667,0.401,0.401,0,0,0,0,0.448,0.487,0.487,0,0,0.13 +0.667,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.324 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.165,0.165,0,0,0,0,0.316,0.486,0.486,0,0,0.0884 +0.667,0.163,0.163,0,0,0,0,0.276,0.49,0.49,0,0,0.129 +0.333,0.158,0.158,0,0,0,0,0.242,0.49,0.49,0,0,0 +0.333,0.154,0.154,0,0,0.517,0.117,0.245,0.49,0.49,0,0,0.0866 +0.333,0.149,0.149,0,0,0,1,0.248,0.494,0.494,0,0.589,0.346 +0.333,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0.401,0.13 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0.295,0 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0.514,0.0433 +0.333,0.144,0.144,0.717,0,0,0,0.27,0.503,0.503,0,0,0.0433 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.0866 +0.333,0.152,0.152,0,0,0,0,0.334,0.528,0.528,0,0,0.13 +0.667,0.171,0.171,0,0,0,0,0.365,0.532,0.532,0,0,0.404 +0.667,0.208,0.208,0,0,0,0,0.377,0.519,0.519,0,0,0.467 +1,0.674,0.674,0,0,0,0,0.653,0.583,0.583,0,0,0.299 +1,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0.0304 +1,0.401,0.401,0,0,0,0,0.448,0.487,0.487,0,0,0.0433 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.224,0.224,0,0,0,0,0.35,0.462,0.462,0,0,0.25 +1,0.394,0.394,0,0,0,0,0.432,0.521,0.521,0,0,0.183 +0.333,0.163,0.163,0,0,0,0,0.276,0.49,0.49,0,0,0.451 +0.333,0.158,0.158,0,0.583,0,0,0.242,0.49,0.49,0.847,0,0.221 +0.333,0.154,0.154,0,0.567,0,0,0.245,0.49,0.49,0,0,0.0433 +0.333,0.149,0.149,0,0,0,0,0.248,0.494,0.494,0,0,0.173 +0.333,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0,0.0433 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.0866 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0.0866 +0,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.533 +0.333,0.146,0.146,1,0,0,0,0.291,0.511,0.511,0,0,0.189 +0.333,0.152,0.152,0.183,0.0833,0,0,0.334,0.528,0.528,0.472,0,0.436 +1,0.412,0.412,0,0.833,0,0,0.58,0.658,0.658,0.255,0,0.0992 +1,0.523,0.523,0,0,0,0,0.616,0.621,0.621,0.208,0,0.245 +1,0.674,0.674,0,0.833,0,0,0.653,0.583,0.583,0.738,0,0.0554 +1,0.795,0.795,0,0.0833,0,0,0.635,0.559,0.559,0,0,0.435 +1,0.576,0.576,0,0,0,0,0.543,0.496,0.496,0,0,0.0433 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0.101,0,0 +1,0.158,0.158,0,0.833,0,0,0.242,0.49,0.49,0.808,0,0 +1,0.154,0.154,0,0.0833,0,0,0.245,0.49,0.49,0.56,0,0 +1,0.149,0.149,0,0,0,0,0.248,0.494,0.494,0.818,0,0 +0.667,0.145,0.145,0.25,0,0,0,0.245,0.499,0.499,0.672,0,0.0433 +0.667,0.237,0.237,0.7,0,0,0,0.258,0.529,0.529,0,0,0 +0.667,0.237,0.237,0,0,0,0,0.276,0.52,0.52,0,0,0.0866 +0.333,0.144,0.144,0,0,0.517,0.117,0.27,0.503,0.503,0,0,0.0866 +0.667,0.241,0.241,0.717,0,0,0.1,0.325,0.553,0.553,0,0.239,0.173 +0.667,0.254,0.254,0,0,0,0,0.411,0.587,0.587,0,0,0.301 +1,0.412,0.412,0,0.333,0,0,0.58,0.658,0.658,0.523,0,0.204 +0.333,0.208,0.208,0,0.583,0,0,0.377,0.519,0.519,0,0,0.0433 +0.667,0.466,0.466,0,0,0,0,0.521,0.545,0.545,0,0,0.205 +0.667,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0.165 +0.667,0.401,0.401,0,0,0,0,0.448,0.487,0.487,0,0,0 +0.667,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.346 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0775,0.0775,0,0,0,0,0.282,0.449,0.449,0,0,0.612 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.101 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.163,0.163,0.467,0,0,0,0.276,0.49,0.49,0,0,0.0433 +0.667,0.158,0.158,0,0,0,0,0.242,0.49,0.49,0,0,0.0433 +0.667,0.258,0.258,0,0,0,0,0.233,0.512,0.512,0,0,0.33 +0.667,0.247,0.247,0,0,0,0,0.239,0.52,0.52,0,0,0.15 +0.333,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0,0.131 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.13 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0.216 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.115 +0.667,0.241,0.241,0,0,0,0,0.325,0.553,0.553,0,0,0.0866 +0.333,0.152,0.152,0,0,0,0,0.334,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.365,0.532,0.532,0,0,0.0866 +0.333,0.208,0.208,0,0,0,0,0.377,0.519,0.519,0,0,0.356 +0.667,0.466,0.466,0,0,0,0,0.521,0.545,0.545,0,0,0.27 +0.667,0.298,0.298,0,0,0,0,0.383,0.499,0.499,0,0,0.389 +1,0.401,0.401,0,0,0,0,0.448,0.487,0.487,0,0,0 +1,0.184,0.184,0,0,0,0,0.393,0.454,0.454,0,0,0.145 +1,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0.61 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.147 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0775,0.0775,0.25,0,0,0,0.282,0.449,0.449,0,0,0 +1,0.224,0.224,0.467,0,0.517,0.367,0.35,0.462,0.462,0,0.0767,0 +1,0.279,0.279,0,0,0,0.75,0.374,0.504,0.504,0,0.389,0 +0.667,0.277,0.277,0,0,0,0,0.294,0.512,0.512,0,0.429,0.0866 +0.667,0.158,0.158,0.25,0,0,0,0.242,0.49,0.49,0,0,0.0433 +0.333,0.154,0.154,0.7,0,0,0,0.245,0.49,0.49,0,0,0.0866 +0.333,0.149,0.149,0,0,0,0,0.248,0.494,0.494,0,0,0.0866 +0.333,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0,0.13 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.26 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0.13 +0.667,0.238,0.238,0,0,0,0,0.282,0.537,0.537,0,0,0.0866 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.0433 +0.333,0.152,0.152,0,0,0,0,0.334,0.528,0.528,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.365,0.532,0.532,0,0,0.173 +0.333,0.208,0.208,0,0,0,0,0.377,0.519,0.519,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.521,0.545,0.545,0,0,0 +0.667,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0.0866 +0.667,0.401,0.401,0,0,0,0,0.448,0.487,0.487,0,0,0.26 +1,0.184,0.184,0,0,0,0,0.393,0.454,0.454,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0.0433 +1,0.0583,0.0583,0,0,0,0,0.285,0.449,0.449,0,0,0 +1,0.05,0.05,0,0,0,0,0.285,0.445,0.445,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0489 +1,0.165,0.165,0,0,0,0,0.316,0.486,0.486,0,0,0.198 +0.667,0.163,0.163,0,0,0,0,0.276,0.49,0.49,0,0,0.201 +0.667,0.266,0.266,0,0,0,0,0.227,0.512,0.512,0,0,0.103 +0.667,0.258,0.258,0,0,0,0,0.233,0.512,0.512,0,0,0.21 +0.333,0.149,0.149,0,0,0,0,0.248,0.494,0.494,0,0,0.0866 +0.333,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.13 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.0866 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.389 +0.667,0.254,0.254,0,0,0,0,0.411,0.587,0.587,0,0,0.619 +0.333,0.171,0.171,0,0,0,0,0.365,0.532,0.532,0,0,0.233 +0.333,0.208,0.208,0,0,0,0,0.377,0.519,0.519,0,0,0.0866 +0.333,0.258,0.258,0,0,0,0,0.39,0.507,0.507,0,0,0.0433 +0.667,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0.173 +0.667,0.225,0.225,0,0,0,0,0.353,0.478,0.478,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0775,0.0775,0,0,0,0,0.282,0.449,0.449,0,0,0.277 +1,0.137,0.137,0,0,0,0,0.304,0.466,0.466,0,0,0.117 +1,0.165,0.165,0,0,0,0,0.316,0.486,0.486,0,0,0.188 +1,0.163,0.163,0.467,0,0,0,0.276,0.49,0.49,0,0,0.499 +1,0.374,0.374,0,0,0,0,0.212,0.534,0.534,0,0,0.431 +0.333,0.154,0.154,0,0,0.103,0,0.245,0.49,0.49,0.184,0,0 +0.333,0.149,0.149,0.233,0.833,0.414,0.667,0.248,0.494,0.494,0.626,0.423,0.216 +0.333,0.145,0.145,0,0.0833,0,0,0.245,0.499,0.499,0,0,0.0866 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.0433 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.216 +0.667,0.241,0.241,0,0,0,0,0.325,0.553,0.553,0,0,0.0866 +0.667,0.254,0.254,0,0,0.517,0.217,0.411,0.587,0.587,0,0.153,0.216 +0.667,0.291,0.291,0,0,0,0,0.472,0.595,0.595,0,0.376,0 +0.667,0.365,0.365,0,0,0,0,0.497,0.57,0.57,0,0.34,0.13 +0.667,0.466,0.466,0,0,0,0,0.521,0.545,0.545,0,0.429,0.0433 +0.667,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0.312,0.457 +1,0.401,0.401,0,0,0,0,0.448,0.487,0.487,0,0,0.327 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.137,0.137,0.233,0,0,0,0.304,0.466,0.466,0,0,0.161 +1,0.394,0.394,0,0,0,0,0.432,0.521,0.521,0,0,0.181 +1,0.39,0.39,0,0,0,0,0.313,0.534,0.534,0,0,0.274 +1,0.374,0.374,0,0,0.517,0.117,0.212,0.534,0.534,0,0,0.589 +1,0.362,0.362,0,0,0,0.333,0.221,0.534,0.534,0,0.479,0.215 +1,0.346,0.346,0,0.333,0,0,0.23,0.546,0.546,0.63,0.0299,0.538 +0.667,0.239,0.239,0,0.583,0,0,0.233,0.529,0.529,0,0,0.249 +0.667,0.237,0.237,0,0,0,0,0.258,0.529,0.529,0,0,0.303 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0.223 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.356 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.422 +0.333,0.152,0.152,0,0.333,0,0,0.334,0.528,0.528,0.58,0,0.412 +0.333,0.171,0.171,0,0.817,0,0,0.365,0.532,0.532,0.285,0,0.0866 +0.667,0.365,0.365,0,0,0,0,0.497,0.57,0.57,0,0,0.0866 +0.667,0.466,0.466,0,0,0,0,0.521,0.545,0.545,0,0,0.0433 +0.667,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0 +0.667,0.401,0.401,0,0,0,0,0.448,0.487,0.487,0,0,0.359 +0.667,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.402 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.137,0.137,0.5,0,0,0,0.304,0.466,0.466,0,0,0.196 +1,0.279,0.279,1,0,0,0,0.374,0.504,0.504,0,0,0.144 +1,0.277,0.277,0.667,0,0,0,0.294,0.512,0.512,0,0,0.0335 +0.667,0.266,0.266,0,0,0,0,0.227,0.512,0.512,0,0,0.234 +0.667,0.258,0.258,0,0,0,0,0.233,0.512,0.512,0,0,0.549 +0.667,0.247,0.247,0,0,0,0,0.239,0.52,0.52,0,0,0.221 +0.667,0.239,0.239,0,0,0,0,0.233,0.529,0.529,0,0,0.23 +0.667,0.237,0.237,0,0,0,0,0.258,0.529,0.529,0,0,0.104 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0.303 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.173 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.0433 +0.333,0.152,0.152,0,0.583,0,0,0.334,0.528,0.528,0.652,0,0.173 +0.333,0.171,0.171,0,1,0,0,0.365,0.532,0.532,0.326,0,0 +0.667,0.365,0.365,0,0.0333,0,0,0.497,0.57,0.57,0,0,0 +0.667,0.466,0.466,0,0,0,0,0.521,0.545,0.545,0,0,0.0433 +0.667,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0.368 +0.667,0.225,0.225,0,0,0,0,0.353,0.478,0.478,0,0,0.921 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.165,0.165,0,0,0,0,0.316,0.486,0.486,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.276,0.49,0.49,0,0,0.191 +0.667,0.158,0.158,0.233,0,0,0,0.242,0.49,0.49,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.233,0.512,0.512,0,0,0 +0.667,0.247,0.247,0,0,0,0,0.239,0.52,0.52,0,0,0.216 +0.333,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0,0.0433 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.43 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0.395 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.218 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.148 +0.333,0.152,0.152,0,0,0,0,0.334,0.528,0.528,0,0,0.13 +0.333,0.171,0.171,0,0,0,0,0.365,0.532,0.532,0,0,0.0433 +0.667,0.365,0.365,0,0,0,0,0.497,0.57,0.57,0,0,0.26 +0.667,0.466,0.466,0,0,0,0,0.521,0.545,0.545,0,0,0.0433 +0.667,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0 +1,0.576,0.576,0,0,0,0,0.543,0.496,0.496,0,0,0.0959 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.172 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0447 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.165,0.165,0,0,0,0,0.316,0.486,0.486,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.158,0.158,0,0,0,0,0.242,0.49,0.49,0,0,0.306 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.111 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.0433 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.26 +0,0.05,0.05,0,0,0.517,0.367,0.258,0.469,0.469,0,0.0618,0.0866 +0.333,0.171,0.171,0,0,0,0.0833,0.365,0.532,0.532,0,0.347,0.0866 +0.667,0.365,0.365,0.467,0,0,0,0.497,0.57,0.57,0,0.445,0.216 +0.667,0.466,0.466,0,0,0,0,0.521,0.545,0.545,0,0.0527,0.26 +0.667,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0 +0.667,0.401,0.401,0,0,0,0,0.448,0.487,0.487,0,0,0.13 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.532 +1,0.394,0.394,0,0,0,0,0.432,0.521,0.521,0,0,0.19 +0.333,0.163,0.163,0,0,0,0,0.276,0.49,0.49,0,0,0.0679 +0.333,0.158,0.158,0,0,0,0,0.242,0.49,0.49,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.245,0.49,0.49,0,0,0 +0.333,0.149,0.149,0.5,0,0.517,0.617,0.248,0.494,0.494,0,0.0715,0 +0.667,0.239,0.239,0.45,0,0,0.05,0.233,0.529,0.529,0,0.563,0.346 +0.667,0.237,0.237,0,0,0,0,0.258,0.529,0.529,0,0.655,0 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0.346,0.0866 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0.513,0.0433 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0.353,0.13 +0.333,0.152,0.152,0,0,0,0,0.334,0.528,0.528,0,0,0.13 +0.333,0.171,0.171,0,0,0,0,0.365,0.532,0.532,0,0,0.173 +0.333,0.208,0.208,0.233,0,0,0,0.377,0.519,0.519,0,0,0.0433 +1,0.674,0.674,0,0,0,0,0.653,0.583,0.583,0,0,0.356 +0.667,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0.0866 +1,0.576,0.576,0,0,0,0,0.543,0.496,0.496,0,0,0 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.177 +1,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0.239 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0505,0.0505,0,0,0,0,0.273,0.445,0.445,0,0,0.233 +1,0.0775,0.0775,0,0,0.517,0.367,0.282,0.449,0.449,0,0.0468,0.167 +1,0.224,0.224,1,0,0,0.533,0.35,0.462,0.462,0,0.615,0 +1,0.279,0.279,1,0,0,0,0.374,0.504,0.504,0,0.425,0.13 +1,0.39,0.39,0.883,0,0,0,0.313,0.534,0.534,0,0.311,0.592 +1,0.374,0.374,0,0,0,0,0.212,0.534,0.534,0,0.33,0 +0.667,0.258,0.258,0,0,0,0,0.233,0.512,0.512,0,0.3,0.0866 +0.333,0.149,0.149,0,0,0,0,0.248,0.494,0.494,0,0.558,0 +0.333,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0.432,0.0866 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0.702,0 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0.661,0.13 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0.62,0.0433 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0.322,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.333,0.208,0.208,0,0,0,0,0.377,0.519,0.519,0,0,0.211 +0.333,0.258,0.258,0,0,0,0,0.39,0.507,0.507,0,0,0.125 +0.333,0.298,0.298,0,0,0,0,0.383,0.499,0.499,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.0433 +1,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.277,0.277,0,0,0,0,0.294,0.512,0.512,0,0,0 +0.667,0.158,0.158,0,0,0,0,0.242,0.49,0.49,0,0,0.224 +0.667,0.258,0.258,0,0,0,0,0.233,0.512,0.512,0,0,0.117 +0.667,0.247,0.247,0,0,0.517,0.117,0.239,0.52,0.52,0,0,0.432 +0.667,0.239,0.239,0,0,0,0.333,0.233,0.529,0.529,0,0.362,0.0433 +0.667,0.237,0.237,0,0,0,0,0.258,0.529,0.529,0,0.242,0 +0.667,0.237,0.237,0,0,0,0,0.276,0.52,0.52,0,0.663,0.0866 +0.667,0.238,0.238,0,0,0,0,0.282,0.537,0.537,0,0.495,0.0866 +1,0.241,0.241,0.25,0,0,0,0.325,0.553,0.553,0,0,0.0866 +1,0.357,0.357,1,0,0,0,0.488,0.645,0.645,0,0,0.281 +0.667,0.291,0.291,0.183,0,0,0,0.472,0.595,0.595,0,0,0.184 +1,0.523,0.523,0,0,0,0,0.616,0.621,0.621,0,0,0.215 +0.667,0.466,0.466,0,0,0,0,0.521,0.545,0.545,0,0,0.173 +1,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0.177 +1,0.401,0.401,0,0,0,0,0.448,0.487,0.487,0,0,0.173 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0775,0.0775,0,0,0,0,0.282,0.449,0.449,0,0,0.102 +0.667,0.224,0.224,0,0,0,0,0.35,0.462,0.462,0,0,0.274 +0.667,0.279,0.279,0,0,0,0,0.374,0.504,0.504,0,0,0.235 +0.667,0.277,0.277,0,0,0,0,0.294,0.512,0.512,0,0,0.316 +0.333,0.158,0.158,0,0,0,0,0.242,0.49,0.49,0,0,0.118 +0.333,0.154,0.154,0,0,0,0,0.245,0.49,0.49,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.248,0.494,0.494,0,0,0 +0.333,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0,0.216 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.0433 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0.0866 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.303 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.13 +0.667,0.254,0.254,0.717,0,0,0,0.411,0.587,0.587,0,0,0.0866 +0.333,0.171,0.171,0,0,0,0,0.365,0.532,0.532,0,0,0.0866 +0.333,0.208,0.208,0.75,0,0,0,0.377,0.519,0.519,0,0,0.0866 +0.667,0.466,0.466,0.45,0,0,0,0.521,0.545,0.545,0,0,0.0433 +0.667,0.298,0.298,0,0,0,0,0.383,0.499,0.499,0,0,0.0866 +0.667,0.225,0.225,0,0,0,0,0.353,0.478,0.478,0,0,0.108 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.323 +1,0.279,0.279,0.75,0,0,0,0.374,0.504,0.504,0,0,0.0662 +1,0.39,0.39,0.2,0,0,0,0.313,0.534,0.534,0,0,0.277 +1,0.374,0.374,0,0.583,0,0,0.212,0.534,0.534,0.831,0,0.211 +0.667,0.258,0.258,0,0.333,0,0,0.233,0.512,0.512,0,0,0.13 +0.333,0.149,0.149,0,0,0,0,0.248,0.494,0.494,0,0,0 +0.333,0.145,0.145,0.717,0,0,0,0.245,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.0433 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0.216 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.26 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.0433 +0.333,0.152,0.152,0,0,0,0,0.334,0.528,0.528,0,0,0.287 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.333,0.05,0.05,0,0,0.103,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.258,0.258,0,0,0.414,0.667,0.39,0.507,0.507,0,0.437,0.0866 +0.667,0.298,0.298,0,0,0,0,0.383,0.499,0.499,0,0.109,0 +0.667,0.225,0.225,0,0,0,0,0.353,0.478,0.478,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.166 +1,0.224,0.224,0,0,0,0,0.35,0.462,0.462,0,0,0.124 +1,0.279,0.279,0,0,0,0,0.374,0.504,0.504,0,0,0.244 +1,0.277,0.277,0,0,0,0,0.294,0.512,0.512,0,0,0.0415 +1,0.374,0.374,0,0,0,0,0.212,0.534,0.534,0,0,0.388 +0.333,0.154,0.154,0,0,0,0,0.245,0.49,0.49,0,0,0 +0.333,0.149,0.149,0.5,0,0,0,0.248,0.494,0.494,0,0,0.26 +0.333,0.145,0.145,0.45,0,0,0,0.245,0.499,0.499,0,0,0.0433 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.216 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0.0866 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.0433 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.0433 +0.333,0.152,0.152,0,0,0,0,0.334,0.528,0.528,0,0,0.18 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.37 +0.333,0.258,0.258,0,0,0,0,0.39,0.507,0.507,0,0,0.163 +0.667,0.298,0.298,0,0,0,0,0.383,0.499,0.499,0,0,0.173 +0.667,0.225,0.225,0,0,0,0,0.353,0.478,0.478,0,0,0 +1,0.184,0.184,0,0,0,0,0.393,0.454,0.454,0,0,0.129 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0642 +1,0.165,0.165,0.233,0,0,0,0.316,0.486,0.486,0,0,0 +1,0.163,0.163,0,0,0,0,0.276,0.49,0.49,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.154,0.154,0,0,0,0,0.245,0.49,0.49,0,0,0.173 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.143 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.171,0.171,0,0,0,0,0.365,0.532,0.532,0,0,0 +1,0.523,0.523,0,0,0,0,0.616,0.621,0.621,0,0,0.444 +1,0.674,0.674,0,0,0,0,0.653,0.583,0.583,0,0,0 +0.667,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0 +0.667,0.401,0.401,0,0,0,0,0.448,0.487,0.487,0,0,0.0866 +0.667,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0.13 +0.667,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.285,0.449,0.449,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.224,0.224,0,0,0,0,0.35,0.462,0.462,0,0,0.364 +1,0.394,0.394,0,0,0,0,0.432,0.521,0.521,0,0,0.561 +0.667,0.277,0.277,0,0,0,0,0.294,0.512,0.512,0,0,0.309 +0.667,0.266,0.266,0,0,0,0,0.227,0.512,0.512,0,0,0.344 +0.333,0.154,0.154,0,0,0,0,0.245,0.49,0.49,0,0,0.277 +0.333,0.149,0.149,0,0,0,0,0.248,0.494,0.494,0,0,0.492 +0.333,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0,0.226 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.0433 +0.333,0.143,0.143,0,0.583,0,0,0.267,0.494,0.494,0.832,0,0.0866 +0.333,0.144,0.144,0,0.567,0,0,0.27,0.503,0.503,0.796,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.208,0.208,0,0,0,0,0.377,0.519,0.519,0,0,0 +0.667,0.258,0.258,0,0,0,0,0.39,0.507,0.507,0,0,0 +0.667,0.298,0.298,0,0,0,0,0.383,0.499,0.499,0,0,0.0866 +0.667,0.225,0.225,0,0,0,0,0.353,0.478,0.478,0,0,0.568 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.113 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.105 +1,0.266,0.266,0,0,0,0,0.227,0.512,0.512,0,0,0.0969 +0.667,0.154,0.154,0,0,0,0,0.245,0.49,0.49,0,0,0.2 +0.667,0.149,0.149,0,0,0,0,0.248,0.494,0.494,0,0,0.105 +0.667,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0,0.501 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.0866 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0.0433 +0.667,0.238,0.238,0,0,0,0,0.282,0.537,0.537,0,0,0 +0.667,0.241,0.241,0,0,0,0,0.325,0.553,0.553,0,0,0.0433 +0.667,0.254,0.254,0,0,0,0,0.411,0.587,0.587,0,0,0.26 +0.333,0.171,0.171,0,0.583,0,0,0.365,0.532,0.532,0.554,0,0.0433 +0.333,0.208,0.208,0,0.567,0,0,0.377,0.519,0.519,0.134,0,0.0433 +1,0.674,0.674,0,0.833,0,0,0.653,0.583,0.583,0.641,0,0.52 +1,0.795,0.795,0,0.317,0,0,0.635,0.559,0.559,0,0,0.102 +1,0.401,0.401,0,0,0,0,0.448,0.487,0.487,0,0,0 +1,0.184,0.184,0,0,0,0,0.393,0.454,0.454,0,0,0.0866 +1,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0631 +1,0.137,0.137,0,0,0,0,0.304,0.466,0.466,0,0,0.161 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.136 +0.667,0.163,0.163,0,0,0,0,0.276,0.49,0.49,0,0,0 +0.333,0.158,0.158,0,0,0,0,0.242,0.49,0.49,0,0,0.13 +0.333,0.154,0.154,0,0,0,0,0.245,0.49,0.49,0,0,0 +0.333,0.149,0.149,0,0,0,0,0.248,0.494,0.494,0,0,0.0866 +0.667,0.239,0.239,0,0,0,0,0.233,0.529,0.529,0,0,0.417 +0.667,0.237,0.237,0,0,0,0,0.258,0.529,0.529,0,0,0.0433 +0.667,0.237,0.237,0,0,0,0,0.276,0.52,0.52,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.0433 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.173 +0.333,0.152,0.152,0,0,0,0,0.334,0.528,0.528,0,0,0.26 +0.667,0.291,0.291,0,0,0,0,0.472,0.595,0.595,0,0,0.0866 +0.667,0.365,0.365,0,0,0,0,0.497,0.57,0.57,0,0,0.0866 +1,0.674,0.674,0,0.0833,0,0,0.653,0.583,0.583,0.484,0,0.258 +1,0.547,0.547,0,1,0,0,0.509,0.529,0.529,0.578,0,0.0866 +1,0.401,0.401,0,0.0667,0,0,0.448,0.487,0.487,0.424,0,0.0433 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.137,0.137,0.7,0,0,0,0.304,0.466,0.466,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.276,0.49,0.49,0,0,0.489 +0.667,0.158,0.158,0,0,0,0,0.242,0.49,0.49,0,0,0.253 +0.667,0.258,0.258,0,0,0,0,0.233,0.512,0.512,0,0,0.503 +0.667,0.247,0.247,0,0,0,0,0.239,0.52,0.52,0,0,0.382 +0.667,0.239,0.239,0,0,0,0,0.233,0.529,0.529,0,0,0.0998 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.0866 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.13 +0.667,0.241,0.241,0,0,0,0,0.325,0.553,0.553,0,0,0.26 +0.667,0.254,0.254,0,0,0,0,0.411,0.587,0.587,0,0,0.389 +0.333,0.171,0.171,0,0,0,0,0.365,0.532,0.532,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.333,0.298,0.298,0,0,0,0,0.383,0.499,0.499,0,0,0.174 +1,0.576,0.576,0,0,0,0,0.543,0.496,0.496,0,0,0.532 +1,0.117,0.117,0,0,0,0,0.325,0.461,0.461,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.123 +1,0.224,0.224,0,0,0,0,0.35,0.462,0.462,0,0,0.262 +1,0.394,0.394,0,0,0,0,0.432,0.521,0.521,0,0,0.228 +0.667,0.277,0.277,0,0,0,0,0.294,0.512,0.512,0,0,0.118 +0.333,0.158,0.158,0,0,0,0,0.242,0.49,0.49,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.245,0.49,0.49,0,0,0.0433 +0.333,0.149,0.149,0,0,0,0,0.248,0.494,0.494,0,0,0.173 +0.333,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0,0.266 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.0866 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.346 +0.333,0.152,0.152,0,0,0,0,0.334,0.528,0.528,0,0,0.216 +0.333,0.171,0.171,0,0,0,0,0.365,0.532,0.532,0,0,0.173 +0.333,0.208,0.208,0,0,0,0,0.377,0.519,0.519,0,0,0.317 +0.667,0.466,0.466,0,0,0,0,0.521,0.545,0.545,0,0,0.13 +0.667,0.547,0.547,0.717,0,0,0,0.509,0.529,0.529,0,0,0.0433 +1,0.401,0.401,0,0,0,0,0.448,0.487,0.487,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.165,0.165,0.467,0,0,0,0.316,0.486,0.486,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.276,0.49,0.49,0,0,0 +0.667,0.266,0.266,0,0,0,0,0.227,0.512,0.512,0,0,0 +0.333,0.154,0.154,0,0,0,0,0.245,0.49,0.49,0,0,0.0433 +0.333,0.149,0.149,0,0,0,0,0.248,0.494,0.494,0,0,0.0433 +0.333,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0,0 +0.333,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0 +0.333,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0.0866 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.216 +0.667,0.241,0.241,0,0,0,0,0.325,0.553,0.553,0,0,0 +1,0.357,0.357,0,0,0,0,0.488,0.645,0.645,0,0,0 +0.667,0.291,0.291,0,0,0,0,0.472,0.595,0.595,0,0,0.246 +1,0.523,0.523,0,0,0,0,0.616,0.621,0.621,0,0,0 +0.333,0.258,0.258,0,0,0,0,0.39,0.507,0.507,0.158,0,0.173 +0.667,0.547,0.547,0,0.833,0,0,0.509,0.529,0.529,0.657,0,0.519 +0.667,0.401,0.401,0,0.0833,0,0,0.448,0.487,0.487,0,0,0.483 +1,0.184,0.184,0,0,0,0,0.393,0.454,0.454,0,0,0.0433 +1,0.0749,0.0749,0,0,0,0,0.294,0.457,0.457,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0.144,0,0 +1,0.137,0.137,0,0.833,0,0,0.304,0.466,0.466,0.742,0,0.0637 +1,0.279,0.279,0,0.0833,0,0,0.374,0.504,0.504,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.276,0.49,0.49,0.147,0,0 +0.333,0.158,0.158,0,0.833,0,0,0.242,0.49,0.49,0.843,0,0 +0.333,0.154,0.154,0,0.317,0,0,0.245,0.49,0.49,0.663,0,0.0433 +0.333,0.149,0.149,0,0,0,0,0.248,0.494,0.494,0.214,0,0 +0.333,0.145,0.145,0,0,0,0,0.245,0.499,0.499,0,0,0.26 +0.667,0.144,0.144,0,0,0,0,0.258,0.499,0.499,0,0,0.173 +0.667,0.143,0.143,0,0,0,0,0.267,0.494,0.494,0,0,0.433 +0.667,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0.0433 +0.667,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0.346 +0.667,0.152,0.152,0,0,0,0,0.334,0.528,0.528,0,0,0 +0.667,0.171,0.171,0.25,0,0,0,0.365,0.532,0.532,0,0,0.389 +0.667,0.208,0.208,0.217,0,0,0,0.377,0.519,0.519,0,0,0.173 +0.667,0.466,0.466,0,0,0,0,0.521,0.545,0.545,0,0,0.0866 +1,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0 +1,0.401,0.401,0,0,0.103,0,0.448,0.487,0.487,0,0,0 +1,0.184,0.184,0,0,0.414,0.217,0.393,0.454,0.454,0,0.368,0.239 +1,0.0999,0.0999,0,0,0,0,0.331,0.446,0.446,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0775,0.0775,0,0,0,0,0.282,0.449,0.449,0,0,0.285 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.158,0.158,0,0,0.103,0,0.242,0.49,0.49,0,0,0.188 +0.667,0.154,0.154,0.233,0,0.414,0.667,0.245,0.49,0.49,0,0.274,0.116 +1,0.346,0.346,0,0,0,0,0.23,0.546,0.546,0,0,0.18 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.144,0.144,0,0,0,0,0.27,0.503,0.503,0,0,0 +0.333,0.146,0.146,0,0,0,0,0.291,0.511,0.511,0,0,0 +0.333,0.152,0.152,0,0,0,0,0.334,0.528,0.528,0,0,0.0866 +0.667,0.291,0.291,0,0,0,0,0.472,0.595,0.595,0,0,0.389 +0.333,0.208,0.208,0,0,0,0,0.377,0.519,0.519,0,0,0.216 +0.333,0.258,0.258,0,0,0,0,0.39,0.507,0.507,0,0,0.216 +0.667,0.547,0.547,0,0,0,0,0.509,0.529,0.529,0,0,0.576 +0.667,0.401,0.401,0,0,0,0,0.448,0.487,0.487,0,0,0.404 +0.667,0.184,0.184,0,0,0,0,0.393,0.454,0.454,0,0,0.0433 +0.667,0.0749,0.0749,0,0,0,0,0.295,0.458,0.458,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0603 +1,0.168,0.168,0,0,0,0,0.317,0.487,0.487,0,0,0.111 +1,0.288,0.288,0,0,0,0,0.296,0.515,0.515,0,0,0.142 +1,0.281,0.281,0,0,0,0,0.228,0.515,0.515,0,0,0.432 +1,0.273,0.273,0,0,0,0,0.234,0.515,0.515,0,0,0.26 +0.333,0.05,0.05,0.483,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.152,0.152,0,0,0,0,0.246,0.5,0.5,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.271,0.504,0.504,0,0,0.0866 +0.333,0.156,0.156,0,0,0,0,0.292,0.512,0.512,0,0,0.216 +0.333,0.169,0.169,0,0,0,0,0.336,0.529,0.529,0,0,0.389 +0.667,0.354,0.354,0,0,0,0,0.475,0.598,0.598,0,0,0.346 +0.667,0.458,0.458,0,0,0,0,0.5,0.573,0.573,0,0,0 +0.667,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.118 +1,0.14,0.14,0,0,0,0,0.305,0.467,0.467,0,0,0.209 +1,0.168,0.168,0,0,0,0,0.317,0.487,0.487,0,0,0.254 +1,0.288,0.288,0,0,0,0,0.296,0.515,0.515,0,0,0.418 +1,0.396,0.396,0,0,0,0,0.213,0.538,0.538,0,0,0.504 +1,0.384,0.384,0,0,0,0,0.222,0.538,0.538,0,0,0.0406 +0.667,0.262,0.262,0,0,0,0,0.24,0.523,0.523,0,0,0.0866 +0.333,0.152,0.152,0,0,0,0,0.246,0.5,0.5,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0,0 +0.667,0.251,0.251,0,0,0,0,0.277,0.523,0.523,0,0,0 +0.667,0.253,0.253,0,0,0,0,0.284,0.54,0.54,0,0,0.26 +0.333,0.156,0.156,0,0,0,0,0.292,0.512,0.512,0,0,0.173 +0.667,0.289,0.289,0,0,0,0,0.413,0.59,0.59,0,0,0.0866 +0.667,0.354,0.354,0.167,0,0,0,0.475,0.598,0.598,0,0,0.389 +0.667,0.458,0.458,0.0667,0,0,0,0.5,0.573,0.573,0,0,0.173 +0.667,0.304,0.304,0,0,0.517,0.283,0.391,0.508,0.508,0,0,0.26 +0.333,0.05,0.05,0,0,0,0.167,0.258,0.469,0.469,0,0.459,0 +0.667,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0.381,0.13 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0438 +1,0.0508,0.0508,0,0,0,0,0.274,0.446,0.446,0,0,0.452 +1,0.0788,0.0788,0,0,0,0,0.283,0.45,0.45,0,0,0.141 +1,0.14,0.14,0,0,0,0,0.305,0.467,0.467,0,0,0.0998 +1,0.287,0.287,0,0,0,0,0.376,0.506,0.506,0,0,0.21 +0.667,0.169,0.169,0,0.333,0,0,0.277,0.492,0.492,0.645,0,0 +0.667,0.165,0.165,0,0.833,0,0,0.243,0.492,0.492,0.762,0,0.0433 +0.667,0.273,0.273,0,0,0,0,0.234,0.515,0.515,0.821,0,0.13 +0.333,0.156,0.156,0,0,0,0,0.249,0.496,0.496,0.0902,0,0.13 +0.333,0.152,0.152,0.483,0,0,0,0.246,0.5,0.5,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.333,0.156,0.156,0.483,0,0,0,0.292,0.512,0.512,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.336,0.529,0.529,0,0,0 +0.333,0.202,0.202,0,0,0.103,0,0.366,0.533,0.533,0,0,0 +0.333,0.254,0.254,0,0,0.414,0.683,0.379,0.521,0.521,0,0.267,0.216 +0.667,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0,0.427,0.0433 +0.667,0.32,0.32,0,0,0,0,0.385,0.5,0.5,0,0,0.173 +0.667,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.124 +1,0.14,0.14,0,0,0,0,0.305,0.467,0.467,0,0,0.433 +1,0.287,0.287,0.483,0,0,0,0.376,0.506,0.506,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.277,0.492,0.492,0,0,0 +0.667,0.165,0.165,0,0,0,0,0.243,0.492,0.492,0,0,0 +0.667,0.161,0.161,0,0,0.517,0.367,0.246,0.492,0.492,0,0.0618,0.173 +1,0.262,0.262,0,0,0,0.317,0.24,0.523,0.523,0,0.332,0.173 +1,0.254,0.254,0,0,0,0,0.234,0.531,0.531,0,0.55,0.0866 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0.127,0 +0.333,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0,0.271,0.504,0.504,0,0,0.0433 +0.333,0.156,0.156,0,0,0,0,0.292,0.512,0.512,0,0,0.13 +0.333,0.169,0.169,0.5,0,0,0,0.336,0.529,0.529,0,0,0 +0.333,0.202,0.202,1,0,0,0,0.366,0.533,0.533,0,0,0.13 +0.333,0.254,0.254,1,0,0,0,0.379,0.521,0.521,0,0,0.173 +0.333,0.304,0.304,1,0,0,0,0.391,0.508,0.508,0,0,0.173 +0.667,0.589,0.589,1,0,0,0,0.512,0.531,0.531,0,0,0.0866 +0.667,0.394,0.394,0.817,0,0,0,0.45,0.49,0.49,0,0,0.0866 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.717,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.14,0.14,0.233,0,0,0,0.305,0.467,0.467,0,0,0 +1,0.405,0.405,0,0,0,0,0.436,0.525,0.525,0,0,0 +0.667,0.288,0.288,0,0,0,0,0.296,0.515,0.515,0,0,0 +0.333,0.165,0.165,0,0.583,0,0,0.243,0.492,0.492,0.816,0,0.0866 +0.333,0.161,0.161,0.25,0.583,0,0,0.246,0.492,0.492,0.779,0,0.13 +0.333,0.156,0.156,0.233,0,0,0,0.249,0.496,0.496,0,0,0.0866 +0.667,0.254,0.254,0,0,0,0,0.234,0.531,0.531,0,0,0.0866 +0.667,0.251,0.251,0,0,0,0,0.259,0.531,0.531,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0,0.35 +0.333,0.151,0.151,0,0,0,0,0.271,0.504,0.504,0,0,0.126 +0.333,0.156,0.156,0.5,0,0,0,0.292,0.512,0.512,0,0,0.297 +0.333,0.169,0.169,0.7,0,0,0,0.336,0.529,0.529,0,0,0.13 +0.667,0.354,0.354,0,0,0,0,0.475,0.598,0.598,0,0,0.0866 +0.333,0.254,0.254,0,0,0,0,0.379,0.521,0.521,0,0,0.476 +0.333,0.304,0.304,0,0,0,0,0.391,0.508,0.508,0,0,0.0866 +0.667,0.589,0.589,0,0,0,0,0.512,0.531,0.531,0,0,0.125 +1,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0.292 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.286,0.45,0.45,0,0,0 +1,0.05,0.05,0,0,0,0,0.286,0.446,0.446,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.5,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0788,0.0788,0.467,0,0,0,0.283,0.45,0.45,0,0,0.119 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.128 +0.667,0.287,0.287,0,0,0,0,0.376,0.506,0.506,0,0,0.151 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.407 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.333,0.161,0.161,0.233,0,0,0,0.246,0.492,0.492,0,0,0.233 +0,0.05,0.05,0.483,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.152,0.152,0,0,0,0,0.246,0.5,0.5,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0,0.0866 +0.333,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.271,0.504,0.504,0,0,0.0433 +0.333,0.156,0.156,0,0,0,0,0.292,0.512,0.512,0,0,0.0866 +0.667,0.289,0.289,0,0.583,0,0,0.413,0.59,0.59,0.451,0,0.0433 +0.333,0.202,0.202,0,0.35,0,0,0.366,0.533,0.533,0,0,0.245 +0.667,0.458,0.458,0,0,0,0,0.5,0.573,0.573,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.195 +0.667,0.589,0.589,0,0,0,0,0.512,0.531,0.531,0,0,0.0433 +1,0.394,0.394,0,0,0,0,0.45,0.49,0.49,0,0,0.0433 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.295,0.458,0.458,0,0,0.13 +1,0.0583,0.0583,0,0,0,0,0.286,0.45,0.45,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.191 +1,0.0508,0.0508,0,0,0,0,0.274,0.446,0.446,0,0,0.226 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.168,0.168,0,0,0,0,0.317,0.487,0.487,0,0,0.0847 +1,0.288,0.288,0,0,0,0,0.296,0.515,0.515,0,0,0.204 +1,0.281,0.281,0,0,0,0,0.228,0.515,0.515,0,0,0.33 +1,0.384,0.384,0,0,0,0,0.222,0.538,0.538,0,0,0.142 +0.333,0.156,0.156,0,0,0,0,0.249,0.496,0.496,0,0,0 +0.333,0.152,0.152,0,0,0,0,0.246,0.5,0.5,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.151,0.151,0,0,0,0,0.271,0.504,0.504,0,0,0.26 +0.667,0.261,0.261,0,0,0,0,0.327,0.556,0.556,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.336,0.529,0.529,0,0,0.323 +0.333,0.202,0.202,0,0,0,0,0.366,0.533,0.533,0,0,0.476 +0.333,0.254,0.254,0,0,0,0,0.379,0.521,0.521,0,0,0 +0.667,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0,0,0.485 +0.667,0.589,0.589,0,0,0,0,0.512,0.531,0.531,0,0,0.121 +0.667,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0.255 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0.397 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0696 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.167,0,0,0,0.258,0.469,0.469,0,0,0.421 +1,0.32,0.32,0.317,0,0,0,0.398,0.463,0.463,0,0,0.405 +0.667,0.287,0.287,0,0,0,0,0.376,0.506,0.506,0,0,0.0853 +0.667,0.288,0.288,0,0,0,0,0.296,0.515,0.515,0,0,0 +0.333,0.165,0.165,0,0,0,0,0.243,0.492,0.492,0,0,0.216 +0.333,0.161,0.161,0.167,0,0,0,0.246,0.492,0.492,0,0,0.0433 +0.333,0.156,0.156,0.8,0,0,0,0.249,0.496,0.496,0,0,0.13 +0.667,0.254,0.254,0,0,0,0,0.234,0.531,0.531,0,0,0.26 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0,0.26 +0.333,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0,0.0866 +0.333,0.151,0.151,0,0,0,0,0.271,0.504,0.504,0,0,0 +0.667,0.261,0.261,0,0,0,0,0.327,0.556,0.556,0,0,0.0433 +0.667,0.289,0.289,0,0,0,0,0.413,0.59,0.59,0,0,0.0433 +0.667,0.354,0.354,0,0,0,0,0.475,0.598,0.598,0,0,0.216 +0.667,0.458,0.458,0,0,0,0,0.5,0.573,0.573,0,0,0.535 +0.667,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0,0,0.319 +1,0.589,0.589,0,0,0,0,0.512,0.531,0.531,0,0,0.104 +1,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.107 +1,0.14,0.14,0.167,0,0,0,0.305,0.467,0.467,0,0,0.322 +1,0.168,0.168,0.55,0,0,0,0.317,0.487,0.487,0,0,0.0679 +1,0.407,0.407,0,0,0,0,0.315,0.538,0.538,0,0,0 +1,0.396,0.396,0,0,0,0,0.213,0.538,0.538,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.234,0.515,0.515,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.563 +0,0.05,0.05,0.483,0,0,0,0.258,0.469,0.469,0.114,0,0.0433 +0.333,0.151,0.151,0,0.75,0,0,0.258,0.5,0.5,0.716,0,0.173 +0,0.05,0.05,0,0.183,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.271,0.504,0.504,0,0,0 +0.333,0.156,0.156,0.483,0.25,0,0,0.292,0.512,0.512,0.468,0,0.0433 +0.667,0.289,0.289,0,0.683,0,0,0.413,0.59,0.59,0.592,0,0.0433 +0.667,0.354,0.354,0,0,0,0,0.475,0.598,0.598,0.185,0,0.452 +1,0.458,0.458,0,0,0,0,0.5,0.573,0.573,0,0,0.173 +1,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0,0,0 +1,0.32,0.32,0,0,0,0,0.385,0.5,0.5,0,0,0.0433 +1,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0.13 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.295,0.458,0.458,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.5,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.14,0.14,1,0,0,0,0.305,0.467,0.467,0,0,0 +0.667,0.168,0.168,0.183,0,0,0,0.317,0.487,0.487,0,0,0.22 +0.333,0.169,0.169,0,0,0,0,0.277,0.492,0.492,0,0,0.158 +0.333,0.165,0.165,0,0,0,0,0.243,0.492,0.492,0,0,0.12 +0.333,0.161,0.161,0,0,0,0,0.246,0.492,0.492,0,0,0.367 +0.333,0.156,0.156,0,0,0,0,0.249,0.496,0.496,0,0,0.303 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0,0.271,0.504,0.504,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.292,0.512,0.512,0,0,0 +0.333,0.169,0.169,0,0,0,0,0.336,0.529,0.529,0.166,0,0 +0.333,0.202,0.202,0.233,0.833,0,0,0.366,0.533,0.533,0.744,0,0.0433 +0.667,0.458,0.458,0,0.1,0,0,0.5,0.573,0.573,0.801,0,0.0866 +0.667,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0.184,0,0.303 +0.667,0.589,0.589,0,0,0,0,0.512,0.531,0.531,0,0,0.303 +0.667,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.111 +1,0.14,0.14,1,0,0,0,0.305,0.467,0.467,0,0,0.13 +1,0.405,0.405,0.45,0,0,0,0.436,0.525,0.525,0,0,0.106 +0.667,0.288,0.288,0,0,0,0,0.296,0.515,0.515,0,0,0.134 +0.667,0.281,0.281,0,0,0,0,0.228,0.515,0.515,0,0,0.484 +0.333,0.161,0.161,0,0,0,0,0.246,0.492,0.492,0,0,0.0433 +0.333,0.156,0.156,0,0,0,0,0.249,0.496,0.496,0,0,0.13 +0.333,0.152,0.152,0,0,0,0,0.246,0.5,0.5,0,0,0.173 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0,0.0866 +0.333,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0,0.216 +0,0.05,0.05,0.233,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.292,0.512,0.512,0,0,0.0433 +0.333,0.169,0.169,0,0,0,0,0.336,0.529,0.529,0,0,0.173 +0.333,0.202,0.202,0,0,0,0,0.366,0.533,0.533,0,0,0.114 +0.333,0.254,0.254,0,0,0,0,0.379,0.521,0.521,0,0,0.0949 +0.667,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0,0,0.216 +0.667,0.589,0.589,0,0,0,0,0.512,0.531,0.531,0,0,0.412 +1,0.394,0.394,0,0,0,0,0.45,0.49,0.49,0,0,0.112 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.101 +1,0.169,0.169,0,0,0,0,0.277,0.492,0.492,0.171,0,0 +0.667,0.281,0.281,0,0.833,0,0,0.228,0.515,0.515,0.661,0,0 +0.333,0.161,0.161,0,0.1,0,0,0.246,0.492,0.492,0.615,0,0 +0.333,0.156,0.156,0,0,0,0,0.249,0.496,0.496,0.727,0,0.216 +0.333,0.152,0.152,0.75,0,0,0,0.246,0.5,0.5,0.954,0,0.0866 +0.333,0.151,0.151,0.217,0,0,0,0.258,0.5,0.5,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0,0.271,0.504,0.504,0,0,0.649 +0.333,0.156,0.156,0,0,0,0,0.292,0.512,0.512,0,0,0.303 +0.333,0.169,0.169,0,0,0,0,0.336,0.529,0.529,0,0,0.13 +0.667,0.354,0.354,0,0,0,0,0.475,0.598,0.598,0,0,0 +0.667,0.458,0.458,0,0,0,0,0.5,0.573,0.573,0,0,0 +0.667,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0,0,0.233 +0.667,0.589,0.589,0,0,0,0,0.512,0.531,0.531,0,0,0.18 +0.667,0.394,0.394,0,0,0,0,0.45,0.49,0.49,0,0,0.0944 +0.667,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.135 +1,0.0583,0.0583,0,0,0,0,0.286,0.45,0.45,0,0,0.125 +1,0.05,0.05,0,0,0,0,0.286,0.446,0.446,0,0,0.145 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.483,0,0,0,0.258,0.469,0.469,0,0,0.348 +1,0.23,0.23,0,0.333,0,0,0.352,0.465,0.465,0.615,0,0.109 +0.667,0.168,0.168,0,0.833,0,0,0.317,0.487,0.487,0.19,0,0.366 +0.667,0.288,0.288,0,0.0833,0,0,0.296,0.515,0.515,0.479,0,0.186 +0.667,0.281,0.281,0,1,0,0,0.228,0.515,0.515,0.184,0,0.272 +0.667,0.273,0.273,0,0.0833,0,0,0.234,0.515,0.515,0,0,0.238 +0.667,0.262,0.262,0,0,0,0,0.24,0.523,0.523,0,0,0.231 +0.667,0.254,0.254,0,0,0,0,0.234,0.531,0.531,0,0,0.318 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0,0.132 +0.333,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.169,0.169,0.967,0,0,0,0.336,0.529,0.529,0,0,0 +0.333,0.202,0.202,0,0,0,0,0.366,0.533,0.533,0,0,0 +0.333,0.254,0.254,0,0,0,0,0.379,0.521,0.521,0,0,0 +0.667,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0,0,0 +1,0.589,0.589,0,0,0,0,0.512,0.531,0.531,0,0,0.0866 +1,0.394,0.394,0,0,0,0,0.45,0.49,0.49,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.283,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.384 +1,0.168,0.168,0,0,0,0,0.317,0.487,0.487,0,0,0.268 +1,0.288,0.288,0,0,0,0,0.296,0.515,0.515,0,0,0.163 +0.667,0.281,0.281,0,0,0,0,0.228,0.515,0.515,0,0,0.0824 +0.667,0.273,0.273,0,0,0,0,0.234,0.515,0.515,0,0,0.0433 +0.667,0.262,0.262,0,0,0,0,0.24,0.523,0.523,0,0,0 +0.667,0.254,0.254,0,0,0,0,0.234,0.531,0.531,0,0,0.0961 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0,0.36 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.156,0.156,0.25,0,0,0,0.292,0.512,0.512,0,0,0.216 +0.333,0.169,0.169,0.717,0,0,0,0.336,0.529,0.529,0,0,0.0433 +0.333,0.202,0.202,0,0,0,0,0.366,0.533,0.533,0,0,0 +0.667,0.458,0.458,0,0,0,0,0.5,0.573,0.573,0,0,0.346 +0.667,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0,0,0.13 +1,0.589,0.589,0,0,0,0,0.512,0.531,0.531,0,0,0.173 +1,0.394,0.394,0,0,0,0,0.45,0.49,0.49,0,0,0.216 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0788,0.0788,0,0,0,0,0.283,0.45,0.45,0,0,0.319 +1,0.14,0.14,0,0,0,0,0.305,0.467,0.467,0,0,0.415 +1,0.287,0.287,0,0,0,0,0.376,0.506,0.506,0,0,0.0873 +1,0.288,0.288,0,0,0,0,0.296,0.515,0.515,0,0,0.0433 +0.667,0.165,0.165,0,0,0,0,0.243,0.492,0.492,0,0,0.13 +0.333,0.161,0.161,0,0,0,0,0.246,0.492,0.492,0,0,0.216 +0.333,0.156,0.156,0,0,0,0,0.249,0.496,0.496,0,0,0.0866 +0.333,0.152,0.152,0,0,0,0,0.246,0.5,0.5,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0,0 +0.333,0.151,0.151,0,0,0.517,0.283,0.268,0.496,0.496,0,0,0.0433 +0.333,0.151,0.151,0,0,0,0.867,0.271,0.504,0.504,0,0.393,0.0866 +0.667,0.261,0.261,0,0,0,0,0.327,0.556,0.556,0,0.547,0.0433 +0.333,0.169,0.169,0,0,0,0,0.336,0.529,0.529,0,0.637,0.13 +0.333,0.202,0.202,0,0,0,0,0.366,0.533,0.533,0,0.83,0.303 +0.667,0.458,0.458,0,0,0,0,0.5,0.573,0.573,0,0,0.0866 +0.333,0.304,0.304,0,0,0,0,0.391,0.508,0.508,0,0,0.271 +1,0.859,0.859,0,0,0,0,0.639,0.563,0.563,0,0,0.374 +1,0.566,0.566,0,0,0,0,0.547,0.5,0.5,0,0,0.0969 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0632 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.393 +1,0.287,0.287,0,0,0,0,0.376,0.506,0.506,0,0,0.333 +1,0.407,0.407,0,0,0.517,0.533,0.315,0.538,0.538,0,0.101,0.323 +0.667,0.281,0.281,0,0,0,0.617,0.228,0.515,0.515,0,0.278,0.32 +0.333,0.161,0.161,0,0,0.517,0.45,0.246,0.492,0.492,0,0.524,0.0433 +0.333,0.156,0.156,0.717,0,0,0,0.249,0.496,0.496,0,0.55,0.0433 +0.333,0.152,0.152,0,0,0,0,0.246,0.5,0.5,0,0,0.0433 +0.667,0.251,0.251,0,0,0,0,0.259,0.531,0.531,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0,0.173 +0.333,0.151,0.151,0,0,0,0,0.271,0.504,0.504,0,0,0 +0.333,0.156,0.156,0,0.25,0,0,0.292,0.512,0.512,0.567,0,0.0866 +0.667,0.289,0.289,0.667,0.917,0,0,0.413,0.59,0.59,0.615,0,0.216 +0.667,0.354,0.354,1,0,0.448,0.0333,0.475,0.598,0.598,0,0,0.26 +0.667,0.458,0.458,1,0,0.069,0.883,0.5,0.573,0.573,0,0.276,0.0433 +1,0.814,0.814,1,0,0,0,0.658,0.588,0.588,0,0.505,0 +1,0.589,0.589,1,0,0,0,0.512,0.531,0.531,0,0.0299,0 +1,0.05,0.05,1,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.583,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.267,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.152 +1,0.14,0.14,0,0,0,0,0.305,0.467,0.467,0,0,0.187 +1,0.287,0.287,0,0,0,0,0.376,0.506,0.506,0,0,0.113 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.161,0.161,0,0,0,0,0.246,0.492,0.492,0,0,0.13 +0.333,0.156,0.156,0,0,0,0,0.249,0.496,0.496,0,0,0 +0.333,0.152,0.152,0,0,0,0,0.246,0.5,0.5,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0,0.26 +0.333,0.151,0.151,0.483,0.333,0,0,0.271,0.504,0.504,0.573,0,0.173 +0.667,0.261,0.261,0,0.6,0,0,0.327,0.556,0.556,0.53,0,0.285 +0.333,0.169,0.169,0.5,0,0,0,0.336,0.529,0.529,0,0,0.173 +0.333,0.202,0.202,0.467,0,0,0,0.366,0.533,0.533,0,0,0.216 +0.333,0.254,0.254,0.717,0,0,0,0.379,0.521,0.521,0,0,0.0866 +0.667,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0,0,0.216 +0.667,0.589,0.589,0,0,0,0,0.512,0.531,0.531,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0.0866 +0.667,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.205 +1,0.14,0.14,0.233,0,0,0,0.305,0.467,0.467,0,0,0.353 +0.667,0.168,0.168,0.717,0,0,0,0.317,0.487,0.487,0,0,0.0813 +0.667,0.288,0.288,0,0,0,0,0.296,0.515,0.515,0,0,0.183 +0.667,0.281,0.281,0,0,0,0,0.228,0.515,0.515,0,0,0 +0.667,0.273,0.273,0,0,0,0,0.234,0.515,0.515,0,0,0.0433 +0.667,0.262,0.262,0,0,0,0,0.24,0.523,0.523,0,0,0.152 +0.333,0.152,0.152,0,0,0,0,0.246,0.5,0.5,0,0,0.213 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0,0.103 +0.333,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0.483,0,0,0,0.258,0.469,0.469,0,0,0.519 +0.667,0.354,0.354,0,0,0,0,0.475,0.598,0.598,0,0,0 +0.667,0.458,0.458,0,0,0,0,0.5,0.573,0.573,0,0,0.307 +0.667,0.559,0.559,0,0,0.517,0.367,0.525,0.548,0.548,0,0.0416,0.0433 +0.667,0.589,0.589,0,0,0,0.317,0.512,0.531,0.531,0,0.766,0 +1,0.394,0.394,0,0,0,0,0.45,0.49,0.49,0,0.0754,0 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.108 +0.333,0.168,0.168,0,0,0,0,0.317,0.487,0.487,0,0,0.181 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.333,0.156,0.156,0.25,0,0,0,0.249,0.496,0.496,0,0,0.216 +0.333,0.152,0.152,1,0,0,0,0.246,0.5,0.5,0,0,0 +0.667,0.151,0.151,0.2,0,0,0,0.258,0.5,0.5,0,0,0 +0.667,0.151,0.151,0.75,0,0,0,0.268,0.496,0.496,0,0,0.0433 +1,0.253,0.253,0.933,0,0,0,0.284,0.54,0.54,0,0,0.453 +1,0.367,0.367,0,0,0,0,0.361,0.6,0.6,0,0,0.1 +0.333,0.169,0.169,0.5,0,0,0,0.336,0.529,0.529,0,0,0.13 +0.667,0.354,0.354,0.95,0,0,0,0.475,0.598,0.598,0,0,0.173 +0.667,0.458,0.458,0,0,0,0,0.5,0.573,0.573,0,0,0.0433 +0.667,0.559,0.559,0,0.333,0,0,0.525,0.548,0.548,0.53,0,0.0433 +0.667,0.32,0.32,0,0.6,0,0,0.385,0.5,0.5,0.368,0,0.0433 +0.667,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0.346 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.0749,0.0749,0,0,0,0,0.295,0.458,0.458,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.286,0.45,0.45,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.168,0.168,0.467,0,0,0,0.317,0.487,0.487,0,0,0 +0.667,0.169,0.169,0,0,0,0,0.277,0.492,0.492,0,0,0 +0.667,0.165,0.165,0,0,0,0,0.243,0.492,0.492,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.327 +0.333,0.156,0.156,0,0,0,0,0.249,0.496,0.496,0,0,0.465 +0.333,0.152,0.152,1,0,0,0,0.246,0.5,0.5,0,0,0.242 +0.333,0.151,0.151,0.2,0,0,0,0.258,0.5,0.5,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0,0.13 +0.333,0.151,0.151,0,0.0833,0,0,0.271,0.504,0.504,0.424,0,0.173 +0.333,0.156,0.156,0,1,0,0,0.292,0.512,0.512,0.436,0,0.433 +0.333,0.169,0.169,0,0.317,0,0,0.336,0.529,0.529,0,0,0 +0.333,0.202,0.202,0,0,0,0,0.366,0.533,0.533,0,0,0.13 +0.333,0.254,0.254,0,0,0,0,0.379,0.521,0.521,0,0,0.13 +0.333,0.304,0.304,0,0,0,0,0.391,0.508,0.508,0,0,0 +0.667,0.32,0.32,0,0,0,0,0.385,0.5,0.5,0,0,0.13 +0.667,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0.26 +0.667,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.295,0.458,0.458,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.5,0,0,0,0.258,0.469,0.469,0,0,0.29 +1,0.405,0.405,0.217,0,0,0,0.436,0.525,0.525,0,0,0.441 +1,0.407,0.407,1,0,0,0,0.315,0.538,0.538,0,0,0 +0.667,0.281,0.281,0.2,0,0,0,0.228,0.515,0.515,0,0,0.15 +0.667,0.273,0.273,0,0,0,0,0.234,0.515,0.515,0,0,0.187 +0.333,0.156,0.156,0,0,0,0,0.249,0.496,0.496,0,0,0.0433 +0.333,0.152,0.152,0,0,0,0,0.246,0.5,0.5,0,0,0.255 +0.667,0.251,0.251,0,0,0,0,0.259,0.531,0.531,0,0,0.216 +0.667,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0,0.26 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.346 +0.333,0.254,0.254,0,0,0,0,0.379,0.521,0.521,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0864 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.483,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.14,0.14,0,0,0,0,0.305,0.467,0.467,0,0,0.307 +1,0.405,0.405,0,0,0,0,0.436,0.525,0.525,0,0,0.395 +0.667,0.288,0.288,0,0,0,0,0.296,0.515,0.515,0,0,0.172 +0.667,0.281,0.281,0,0,0,0,0.228,0.515,0.515,0,0,0.282 +1,0.384,0.384,0,0,0,0,0.222,0.538,0.538,0,0,0.389 +0.667,0.262,0.262,0,0,0,0,0.24,0.523,0.523,0,0,0.338 +1,0.355,0.355,0,0,0,0,0.222,0.563,0.563,0,0,0.186 +0.667,0.251,0.251,0,0,0,0,0.259,0.531,0.531,0,0,0.249 +0.667,0.251,0.251,0,0,0.517,0.683,0.277,0.523,0.523,0,0.267,0.343 +0.667,0.253,0.253,0,0,0,0,0.284,0.54,0.54,0,0.619,0.188 +1,0.367,0.367,0,0,0,0,0.361,0.6,0.6,0,0.303,0.0433 +0.667,0.289,0.289,0,0,0,0,0.413,0.59,0.59,0,0.209,0.0433 +0.667,0.354,0.354,0,0,0,0,0.475,0.598,0.598,0,0,0.609 +0.667,0.458,0.458,0,0,0,0,0.5,0.573,0.573,0,0,0.0433 +0.667,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0,0,0.0433 +1,0.589,0.589,0,0,0,0,0.512,0.531,0.531,0,0,0 +1,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.167,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0788,0.0788,0.8,0,0,0,0.283,0.45,0.45,0,0,0 +1,0.14,0.14,0,0,0,0,0.305,0.467,0.467,0,0,0 +1,0.168,0.168,0.483,0,0,0,0.317,0.487,0.487,0,0,0.0753 +1,0.288,0.288,0,0,0,0,0.296,0.515,0.515,0,0,0.259 +1,0.281,0.281,0,0,0,0,0.228,0.515,0.515,0,0,0.145 +0.667,0.161,0.161,0.167,0,0,0,0.246,0.492,0.492,0,0,0.17 +0.667,0.156,0.156,0.55,0,0,0,0.249,0.496,0.496,0,0,0.53 +0.667,0.254,0.254,0,0,0,0,0.234,0.531,0.531,0,0,0.125 +0.667,0.251,0.251,0,0,0,0,0.259,0.531,0.531,0,0,0 +1,0.251,0.251,0,0,0,0,0.277,0.523,0.523,0,0,0.0866 +0.667,0.253,0.253,0.417,0,0,0,0.284,0.54,0.54,0,0,0.1 +1,0.367,0.367,1,0,0,0,0.361,0.6,0.6,0,0,0.173 +0.667,0.289,0.289,0.267,0,0,0,0.413,0.59,0.59,0,0,0.346 +0.333,0.202,0.202,0,0,0,0,0.366,0.533,0.533,0,0,0.0866 +0.333,0.254,0.254,0,0,0,0,0.379,0.521,0.521,0,0,0.0433 +0.333,0.304,0.304,0,0,0,0,0.391,0.508,0.508,0,0,0 +0.333,0.32,0.32,0,0,0,0,0.385,0.5,0.5,0,0,0 +0.333,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0.13 +0.333,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +0.333,0.0749,0.0749,0,0,0,0,0.295,0.458,0.458,0,0,0.14 +0.667,0.0583,0.0583,0,0,0,0,0.286,0.45,0.45,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.286,0.446,0.446,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.283,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.24 +0.667,0.168,0.168,0,0,0,0,0.317,0.487,0.487,0,0,0.108 +0.333,0.169,0.169,0,0,0,0,0.277,0.492,0.492,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.213 +0.667,0.254,0.254,0,0,0,0,0.234,0.531,0.531,0,0,0.0841 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0,0.269 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0.483,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.156,0.156,0,0,0,0,0.292,0.512,0.512,0,0,0.0433 +0.333,0.169,0.169,0.233,0,0,0,0.336,0.529,0.529,0,0,0.109 +0.667,0.354,0.354,0,0.583,0,0,0.475,0.598,0.598,0.694,0,0.0433 +0.667,0.458,0.458,0,0.817,0,0,0.5,0.573,0.573,0,0,0.0433 +0.667,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0,0,0.173 +0.667,0.589,0.589,0,0,0,0,0.512,0.531,0.531,0,0,0.357 +0.667,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0.0866 +1,0.184,0.184,0,0,0,0,0.395,0.456,0.456,0,0,0.222 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.147 +1,0.14,0.14,0,0,0,0,0.305,0.467,0.467,0,0,0.18 +1,0.287,0.287,0,0,0,0,0.376,0.506,0.506,0,0,0.799 +1,0.288,0.288,0.5,0,0,0,0.296,0.515,0.515,0,0,0.178 +0.667,0.165,0.165,0.467,0,0,0,0.243,0.492,0.492,0,0,0.145 +0.667,0.273,0.273,0,0.583,0,0,0.234,0.515,0.515,0.593,0,0.238 +0.667,0.262,0.262,0,0.583,0,0,0.24,0.523,0.523,0,0,0.182 +0.333,0.152,0.152,0,0,0,0,0.246,0.5,0.5,0,0,0.0671 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0,0.216 +0.333,0.05,0.05,0.483,0,0,0,0.258,0.469,0.469,0,0,0.282 +0.667,0.253,0.253,0,0,0,0,0.284,0.54,0.54,0,0,0.571 +0.667,0.261,0.261,0,0,0,0,0.327,0.556,0.556,0,0,0.173 +0.333,0.169,0.169,0,0,0,0,0.336,0.529,0.529,0,0,0.0433 +0.333,0.202,0.202,0,0.0833,0,0,0.366,0.533,0.533,0.383,0,0.0866 +0.333,0.254,0.254,0,1,0,0,0.379,0.521,0.521,0.262,0,0 +0.667,0.559,0.559,0.483,0.0833,0,0,0.525,0.548,0.548,0,0,0.13 +0.667,0.589,0.589,0,0,0,0,0.512,0.531,0.531,0,0,0.0433 +1,0.566,0.566,0,0.333,0,0,0.547,0.5,0.5,0.547,0,0.0866 +1,0.117,0.117,0,0.6,0,0,0.326,0.462,0.462,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.149 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.123 +0.667,0.168,0.168,0,0,0,0,0.317,0.487,0.487,0,0,0.283 +0.333,0.05,0.05,0.233,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.165,0.165,0,0,0,0,0.243,0.492,0.492,0,0,0.0866 +0.333,0.161,0.161,0,0,0,0,0.246,0.492,0.492,0,0,0.433 +0.333,0.156,0.156,0,0,0,0,0.249,0.496,0.496,0,0,0.0866 +0.333,0.152,0.152,0,0,0,0,0.246,0.5,0.5,0,0,0.0866 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0,0.13 +0.333,0.151,0.151,0,0,0,0,0.271,0.504,0.504,0,0,0.216 +0.667,0.261,0.261,0.75,0,0,0,0.327,0.556,0.556,0,0,0.0433 +1,0.289,0.289,0.217,0,0,0,0.413,0.59,0.59,0,0,0.0866 +1,0.354,0.354,0,0,0,0,0.475,0.598,0.598,0,0,0.0433 +0.667,0.458,0.458,0,0,0,0,0.5,0.573,0.573,0,0,0.0866 +0.667,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0,0,0.0433 +0.667,0.589,0.589,0,0,0,0,0.512,0.531,0.531,0,0,0.0433 +0.667,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.137 +1,0.14,0.14,0,0,0,0,0.305,0.467,0.467,0,0,0.202 +1,0.168,0.168,0,0,0,0,0.317,0.487,0.487,0,0,0.0986 +1,0.288,0.288,0,0,0,0,0.296,0.515,0.515,0,0,0.146 +1,0.281,0.281,0.483,0,0,0,0.228,0.515,0.515,0,0,0.482 +1,0.273,0.273,0,0,0,0,0.234,0.515,0.515,0,0,0.474 +1,0.262,0.262,0,0,0,0,0.24,0.523,0.523,0,0,0.568 +1,0.355,0.355,0,0,0,0,0.222,0.563,0.563,0,0,0.326 +1,0.352,0.352,0,0,0,0,0.259,0.563,0.563,0,0,0.189 +1,0.352,0.352,0,0,0,0,0.287,0.55,0.55,0,0,0 +0.333,0.151,0.151,0,0,0,0,0.271,0.504,0.504,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.146 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0,0.05,0.05,0,0.0833,0,0,0.258,0.469,0.469,0.407,0,0.303 +0.667,0.458,0.458,0.717,0.85,0,0,0.5,0.573,0.573,0.247,0,0 +1,0.814,0.814,0,0,0,0,0.658,0.588,0.588,0,0,0 +0.667,0.32,0.32,0,0,0,0,0.385,0.5,0.5,0,0,0.117 +1,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0 +1,0.117,0.117,0,0,0,0,0.326,0.462,0.462,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.295,0.458,0.458,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.286,0.45,0.45,0,0,0 +1,0.05,0.05,0,0,0,0,0.286,0.446,0.446,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.283,0.442,0.442,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.157 +1,0.14,0.14,0,0,0,0,0.305,0.467,0.467,0,0,0.23 +1,0.168,0.168,0,0,0,0,0.317,0.487,0.487,0,0,0.191 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.161,0.161,0,0,0,0,0.246,0.492,0.492,0,0,0.581 +0.333,0.156,0.156,0,0,0,0,0.249,0.496,0.496,0,0,0.0671 +0.333,0.152,0.152,0,0,0,0,0.246,0.5,0.5,0,0,0.175 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0,0.184 +0.333,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0,0.236 +0.333,0.151,0.151,0,0,0,0,0.271,0.504,0.504,0,0,0 +0.333,0.156,0.156,0,0,0,0,0.292,0.512,0.512,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +0.333,0.254,0.254,0,0,0,0,0.379,0.521,0.521,0,0,0.216 +0.333,0.304,0.304,0,0,0,0,0.391,0.508,0.508,0,0,0 +0.333,0.32,0.32,0,0,0,0,0.385,0.5,0.5,0,0,0.122 +1,0.394,0.394,0,0,0,0,0.45,0.49,0.49,0,0,0.26 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.131 +1,0.0788,0.0788,0,0,0,0,0.283,0.45,0.45,0,0,0.174 +1,0.14,0.14,0,0,0,0,0.305,0.467,0.467,0,0,0 +1,0.168,0.168,0,0,0,0,0.317,0.487,0.487,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.491 +0.667,0.273,0.273,0,0,0,0,0.234,0.515,0.515,0,0,0.211 +0.333,0.156,0.156,0,0,0,0,0.249,0.496,0.496,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.05,0.05,0,0,0.517,0.683,0.258,0.469,0.469,0,0.274,0.173 +0.333,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0.382,0.175 +0.667,0.253,0.253,0,0,0,0,0.284,0.54,0.54,0,0.479,0.122 +0.333,0.156,0.156,0.233,0,0,0,0.292,0.512,0.512,0,0.289,0 +0.333,0.169,0.169,0,0,0,0,0.336,0.529,0.529,0,0,0.0433 +0.333,0.202,0.202,0,0,0,0,0.366,0.533,0.533,0,0,0.631 +0.667,0.458,0.458,0,0,0,0,0.5,0.573,0.573,0,0,0.0433 +0.667,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0,0,0.0866 +1,0.859,0.859,0,0,0,0,0.639,0.563,0.563,0,0,0.0866 +1,0.222,0.222,0,0,0,0,0.354,0.479,0.479,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0.448,0.0333,0.258,0.469,0.469,0,0,0.362 +1,0.287,0.287,0,0,0.069,0.417,0.376,0.506,0.506,0,0.424,0 +0.667,0.169,0.169,0.417,0,0,0,0.277,0.492,0.492,0,0.342,0 +0.333,0.165,0.165,0.3,0,0,0,0.243,0.492,0.492,0,0.382,0 +0.667,0.273,0.273,0,0,0,0,0.234,0.515,0.515,0,0.459,0.26 +0.667,0.262,0.262,0,0,0,0,0.24,0.523,0.523,0,0.247,0.0433 +0.333,0.152,0.152,0,0,0,0,0.246,0.5,0.5,0,0.347,0.0433 +0.333,0.151,0.151,0,0,0,0,0.258,0.5,0.5,0,0.566,0.303 +0.333,0.151,0.151,0,0,0,0,0.268,0.496,0.496,0,0.472,0 +0.333,0.151,0.151,0,0,0,0,0.271,0.504,0.504,0,0.199,0.0866 +0.333,0.156,0.156,0,0,0,0,0.292,0.512,0.512,0,0.27,0 +0.333,0.169,0.169,0,0,0,0,0.336,0.529,0.529,0,0,0.13 +0.667,0.354,0.354,0,0,0,0,0.475,0.598,0.598,0,0,0.173 +0.667,0.458,0.458,0,0,0,0,0.5,0.573,0.573,0,0,0.792 +0.667,0.559,0.559,0,0,0,0,0.525,0.548,0.548,0,0,0.0497 +0.667,0.589,0.589,0,0,0,0,0.512,0.531,0.531,0,0,0.175 +0.667,0.394,0.394,0,0,0,0,0.45,0.49,0.49,0,0,0.406 +1,0.184,0.184,0,0,0,0,0.395,0.456,0.456,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.32,0.487,0.487,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.309,0.477,0.477,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.297,0.297,0,0,0,0,0.433,0.575,0.575,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.298,0.527,0.527,0,0,0 +0.333,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0,0,0.146 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0,0.0433 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.0866 +0.333,0.162,0.162,0,0,0,0,0.261,0.537,0.537,0,0,0.0866 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.26 +0.333,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0.26 +0.333,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0.0433 +0.333,0.202,0.202,0.5,0,0,0,0.368,0.572,0.572,0,0,0.13 +0.333,0.254,0.254,0.25,0,0,0,0.405,0.577,0.577,0,0,0.0433 +0.333,0.312,0.312,1,0,0,0,0.42,0.562,0.562,0,0,0 +0.333,0.338,0.338,0,0,0,0,0.434,0.547,0.547,0,0,0.346 +0.667,0.309,0.309,0,0,0,0,0.427,0.537,0.537,0,0,0.0827 +1,0.205,0.205,0,0,0,0,0.39,0.512,0.512,0,0,0.0433 +1,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.294,0.472,0.472,0,0,0.244 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.124 +0.667,0.144,0.144,0,0,0,0,0.331,0.497,0.497,0,0,0.139 +0.333,0.174,0.174,0,0,0,0,0.346,0.522,0.522,0,0,0.359 +0.333,0.177,0.177,0,0,0,0,0.298,0.527,0.527,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.261,0.527,0.527,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +0.333,0.162,0.162,0,0,0,0,0.261,0.537,0.537,0,0,0 +0.333,0.161,0.161,0.25,0,0,0,0.275,0.537,0.537,0,0,0.364 +0.333,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0.13 +0.667,0.277,0.277,0,0,0,0,0.323,0.615,0.615,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.374,0.635,0.635,0,0,0.13 +0.667,0.353,0.353,0.75,0,0,0,0.478,0.675,0.675,0,0,0 +0.333,0.254,0.254,0,0,0,0,0.405,0.577,0.577,0,0,0.13 +0.333,0.312,0.312,0,0,0,0,0.42,0.562,0.562,0,0,0.189 +0.667,0.626,0.626,0,0,0,0,0.611,0.625,0.625,0,0,0.144 +0.667,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0 +1,0.514,0.514,0,0,0,0,0.654,0.599,0.599,0,0,0.0866 +1,0.184,0.184,0,0,0,0,0.456,0.515,0.515,0,0,0.0433 +1,0.0749,0.0749,0,0,0,0,0.32,0.487,0.487,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.174,0.174,0,0,0,0,0.346,0.522,0.522,0,0,0 +1,0.304,0.304,0,0,0,0,0.337,0.585,0.585,0,0,0 +0.667,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0 +0.667,0.293,0.293,0.25,0,0,0,0.263,0.585,0.585,0,0,0 +0.667,0.282,0.282,0,0,0,0,0.271,0.595,0.595,0,0,0.13 +0.333,0.162,0.162,0,0,0,0,0.261,0.537,0.537,0,0,0.0866 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.173 +0.333,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0.216 +0.667,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0.0433 +0.667,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0.216 +0.667,0.202,0.202,0,0,0,0,0.368,0.572,0.572,0,0,0.0866 +0.667,0.458,0.458,0.5,0,0,0,0.552,0.685,0.685,0,0,0.0866 +0.667,0.575,0.575,0.75,0,0,0,0.581,0.655,0.655,0,0,0.0433 +0.667,0.626,0.626,0,0,0,0,0.611,0.625,0.625,0,0,0.232 +0.667,0.309,0.309,0,0,0,0,0.427,0.537,0.537,0,0,0.408 +1,0.205,0.205,0,0,0,0,0.39,0.512,0.512,0,0,0.0433 +1,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.32,0.487,0.487,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.309,0.477,0.477,0,0,0 +1,0.05,0.05,0,0,0,0,0.309,0.472,0.472,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.144,0.144,0,0,0,0,0.331,0.497,0.497,0,0,0.19 +1,0.297,0.297,0,0,0,0,0.433,0.575,0.575,0,0,0.327 +0.667,0.304,0.304,0,0,0,0,0.337,0.585,0.585,0,0,0.104 +0.333,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0,0,0.189 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0,0.355 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.109 +0.667,0.274,0.274,0,0,0,0,0.263,0.605,0.605,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.13 +0.333,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0.0433 +0.333,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0.13 +0.333,0.202,0.202,0,0,0,0,0.368,0.572,0.572,0,0,0.216 +0.667,0.458,0.458,0,0,0,0,0.552,0.685,0.685,0,0,0.13 +0,0.05,0.05,0.5,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.667,0.626,0.626,0,0,0,0,0.611,0.625,0.625,0,0,0.216 +0.667,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0.26 +1,0.514,0.514,0,0,0,0,0.654,0.599,0.599,0,0,0 +1,0.184,0.184,0,0,0,0,0.456,0.515,0.515,0,0,0.216 +1,0.0749,0.0749,0,0,0,0,0.32,0.487,0.487,0,0,0.0433 +1,0.0583,0.0583,0,0,0,0,0.309,0.477,0.477,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.294,0.472,0.472,0,0,0 +1,0.0806,0.0806,0,0,0,0,0.305,0.477,0.477,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.177,0.177,0,0,0,0,0.298,0.527,0.527,0,0,0.172 +0.667,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0.221 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0,0.131 +0.667,0.282,0.282,0,0,0,0,0.271,0.595,0.595,0,0,0.348 +0.667,0.274,0.274,0,0,0,0,0.263,0.605,0.605,0,0,0.256 +0.667,0.271,0.271,0,0.333,0,0,0.293,0.605,0.605,0.597,0,0.354 +0.333,0.161,0.161,0,0.65,0.483,0.383,0.286,0.532,0.532,0.387,0.0039,0.0433 +0.333,0.163,0.163,0,0,0,0.567,0.29,0.542,0.542,0,0.79,0.0433 +0.333,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0.318,0.346 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.254,0.254,0,0,0,0,0.405,0.577,0.577,0,0,0.173 +0.333,0.05,0.05,0,0,0.483,0.133,0.258,0.469,0.469,0,0,0.173 +0.333,0.338,0.338,0,0,0,0.333,0.434,0.547,0.547,0,0.507,0.149 +1,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0.112,0.153 +1,0.205,0.205,0,0,0,0,0.39,0.512,0.512,0,0,0 +1,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.261,0.527,0.527,0,0,0.144 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.0694 +0.333,0.162,0.162,0,0,0,0,0.261,0.537,0.537,0,0,0.196 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.0433 +0.333,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0.0866 +0.333,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0.13 +0.333,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.333,0.312,0.312,0,0,0,0,0.42,0.562,0.562,0,0,0.346 +0.667,0.338,0.338,0,0,0,0,0.434,0.547,0.547,0,0,0.0433 +1,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0 +1,0.36,0.36,0,0,0,0,0.522,0.555,0.555,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0523,0.0523,0,0,0,0,0.33,0.476,0.476,0,0,0 +1,0.111,0.111,0,0,0,0,0.352,0.486,0.486,0,0,0 +1,0.239,0.239,0,0,0,0,0.404,0.525,0.525,0,0,0 +1,0.297,0.297,0.75,0,0,0,0.433,0.575,0.575,0,0,0.0433 +0.667,0.304,0.304,0.25,0,0,0,0.337,0.585,0.585,0,0,0.13 +0.333,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0,0,0.0866 +0.333,0.172,0.172,0,0,0,0,0.261,0.527,0.527,0,0,0 +0.333,0.166,0.166,0,0,0.483,0.133,0.264,0.532,0.532,0,0,0 +0.667,0.274,0.274,0,0,0,0.567,0.263,0.605,0.605,0,0.255,0.414 +0.667,0.271,0.271,0,0,0,0,0.293,0.605,0.605,0,0,0.273 +0.667,0.272,0.272,0,0,0,0,0.315,0.595,0.595,0,0,0.36 +0.333,0.163,0.163,0.25,0,0,0,0.29,0.542,0.542,0,0,0.216 +0.333,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0.346 +0.333,0.202,0.202,0,0,0,0,0.368,0.572,0.572,0,0,0 +0.667,0.458,0.458,0,0.333,0,0,0.552,0.685,0.685,0.492,0,0 +0.667,0.575,0.575,0,1,0,0,0.581,0.655,0.655,0.814,0,0.0433 +0.667,0.338,0.338,0,0.383,0,0,0.434,0.547,0.547,0.691,0,0 +0.667,0.309,0.309,0,0,0,0,0.427,0.537,0.537,0.764,0,0.0433 +0.667,0.205,0.205,0,0,0,0,0.39,0.512,0.512,0.127,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.294,0.472,0.472,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.261,0.527,0.527,0,0,0.128 +0.667,0.282,0.282,0,0,0,0,0.271,0.595,0.595,0,0,0.121 +0.667,0.274,0.274,0,0,0,0,0.263,0.605,0.605,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0.0866 +0.333,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0.173 +0.333,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0 +0.333,0.202,0.202,0,0,0,0,0.368,0.572,0.572,0,0,0.0433 +0.333,0.254,0.254,0,0,0,0,0.405,0.577,0.577,0,0,0.0433 +0.333,0.312,0.312,0.75,0,0,0,0.42,0.562,0.562,0,0,0.563 +1,0.626,0.626,0.75,0,0,0,0.611,0.625,0.625,0,0,0.0433 +1,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0.195 +1,0.36,0.36,0,0,0,0,0.522,0.555,0.555,0,0,0.261 +1,0.184,0.184,0,0,0,0,0.456,0.515,0.515,0,0,0.245 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.144,0.144,0,0,0,0,0.331,0.497,0.497,0,0,0.192 +1,0.421,0.421,0,0,0,0,0.521,0.629,0.629,0,0,0.0495 +0.667,0.304,0.304,0,0,0,0,0.337,0.585,0.585,0,0,0.179 +0.333,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.261,0.527,0.527,0,0,0.389 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.613 +0.333,0.162,0.162,0.5,0,0,0,0.261,0.537,0.537,0,0,0.0593 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.389 +0.333,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.1 +0.667,0.353,0.353,0,0,0,0,0.478,0.675,0.675,0,0,0.333 +0.333,0.254,0.254,0,0,0,0,0.405,0.577,0.577,0,0,0.173 +0.333,0.312,0.312,0,0,0,0,0.42,0.562,0.562,0,0,0 +0.333,0.338,0.338,0,0,0,0,0.434,0.547,0.547,0,0,0.0433 +0.667,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0.173 +0.667,0.36,0.36,0,0,0,0,0.522,0.555,0.555,0,0,0.127 +1,0.184,0.184,0,0,0,0,0.456,0.515,0.515,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0806,0.0806,0,0,0,0,0.305,0.477,0.477,0,0,0.269 +1,0.239,0.239,0,0,0,0,0.404,0.525,0.525,0,0,0.431 +0.667,0.174,0.174,0,0,0,0,0.346,0.522,0.522,0,0,0 +0.333,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.176,0.176,0.5,0,0,0,0.257,0.527,0.527,0,0,0.173 +0.333,0.172,0.172,0,0,0,0,0.261,0.527,0.527,0,0,0 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0 +0.333,0.162,0.162,0,0.583,0,0,0.261,0.537,0.537,0.389,0,0.0433 +0.333,0.161,0.161,0,0.4,0,0,0.275,0.537,0.537,0,0,0.0433 +0.333,0.161,0.161,0,0.0833,0,0,0.286,0.532,0.532,0.425,0,0 +0.333,0.163,0.163,0,1,0,0,0.29,0.542,0.542,0.72,0,0.0866 +0.333,0.174,0.174,0,0.133,0.483,0.383,0.316,0.552,0.552,0.221,0.0455,0.0433 +0.333,0.202,0.202,0,0,0,0.317,0.368,0.572,0.572,0,0.295,0.173 +0.333,0.254,0.254,0,0,0,0,0.405,0.577,0.577,0,0.743,0.0433 +0.333,0.312,0.312,0,0,0,0,0.42,0.562,0.562,0,0.218,0.0866 +0.333,0.338,0.338,0,0,0,0,0.434,0.547,0.547,0,0.317,0.276 +0.333,0.309,0.309,0,0,0.483,0.383,0.427,0.537,0.537,0,0.078,0.305 +0.667,0.36,0.36,0,0,0,0.317,0.522,0.555,0.555,0,0.315,0.479 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.338 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.239,0.239,0,0,0,0,0.404,0.525,0.525,0,0,0.209 +1,0.297,0.297,0,0,0,0,0.433,0.575,0.575,0,0,0.185 +0.667,0.304,0.304,0,0.333,0,0,0.337,0.585,0.585,0.702,0,0.0887 +0.667,0.302,0.302,0,0.65,0,0,0.256,0.585,0.585,0.144,0,0.277 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0,0.13 +0.667,0.282,0.282,0,0,0,0,0.271,0.595,0.595,0,0,0.173 +0.667,0.274,0.274,0,0,0,0,0.263,0.605,0.605,0,0,0.13 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0.0433 +0.333,0.163,0.163,0.25,0,0,0,0.29,0.542,0.542,0,0,0 +0.667,0.297,0.297,0,0,0,0,0.374,0.635,0.635,0,0,0.0433 +1,0.505,0.505,0,0,0,0,0.588,0.778,0.778,0,0,0.0433 +1,0.662,0.662,0,0,0,0,0.699,0.793,0.793,0,0,0.216 +1,0.837,0.837,0,0,0,0,0.743,0.748,0.748,0,0,0.346 +0.667,0.626,0.626,0,0,0,0,0.611,0.625,0.625,0,0,0.346 +0.667,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0.13 +0.667,0.36,0.36,0,0,0,0,0.522,0.555,0.555,0,0,0.117 +1,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.32,0.487,0.487,0,0,0.13 +1,0.0583,0.0583,0,0,0,0,0.309,0.477,0.477,0,0,0.24 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.239,0.239,0,0,0,0,0.404,0.525,0.525,0,0,0.254 +0.667,0.174,0.174,0,0,0,0,0.346,0.522,0.522,0,0,0.32 +0.333,0.177,0.177,0,0,0,0,0.298,0.527,0.527,0,0,0.153 +0.333,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0,0,0.389 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.244 +0.667,0.274,0.274,0,0,0,0,0.263,0.605,0.605,0,0,0.0972 +0.667,0.271,0.271,0,0,0,0,0.293,0.605,0.605,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0.0433 +0.333,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0.0433 +0.333,0.202,0.202,0,0,0,0,0.368,0.572,0.572,0,0,0.0433 +0.667,0.458,0.458,0,0,0,0,0.552,0.685,0.685,0,0,0.173 +0.667,0.575,0.575,0,0,0,0,0.581,0.655,0.655,0,0,0 +0.667,0.626,0.626,0,0,0,0,0.611,0.625,0.625,0,0,0 +0.667,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0.265 +1,0.514,0.514,0,0,0,0,0.654,0.599,0.599,0,0,0.364 +1,0.184,0.184,0,0,0,0,0.456,0.515,0.515,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.416 +0.667,0.162,0.162,0,0,0.483,0.633,0.261,0.537,0.537,0,0.134,0 +0.667,0.161,0.161,0,0,0,0.0667,0.275,0.537,0.537,0,0.687,0 +0.667,0.272,0.272,0,0,0,0,0.315,0.595,0.595,0,0.546,0.0433 +0.333,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0.216 +0.333,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0.476 +0.333,0.202,0.202,0,0,0,0,0.368,0.572,0.572,0,0,0 +0.667,0.458,0.458,0,0,0,0,0.552,0.685,0.685,0,0,0.0866 +0.667,0.575,0.575,0,0,0,0,0.581,0.655,0.655,0,0,0.107 +1,0.914,0.914,0,0,0,0,0.788,0.703,0.703,0,0,0.557 +1,0.829,0.829,0,0,0.483,0.133,0.765,0.674,0.674,0,0,0.209 +1,0.205,0.205,0,0,0,0.567,0.39,0.512,0.512,0,0.202,0.13 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.294,0.472,0.472,0,0,0.102 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.667,0.304,0.304,0,0,0,0,0.337,0.585,0.585,0,0,0.213 +0.333,0.176,0.176,0.5,0,0,0,0.257,0.527,0.527,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.261,0.527,0.527,0,0,0 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.0433 +0.333,0.162,0.162,0.5,0,0,0,0.261,0.537,0.537,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0 +0.667,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0.173 +0.667,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0.216 +1,0.297,0.297,0,0,0,0,0.374,0.635,0.635,0,0,0.476 +0.667,0.202,0.202,0,0,0,0,0.368,0.572,0.572,0,0,0.6 +0.667,0.254,0.254,0,0.583,0,0,0.405,0.577,0.577,0.786,0,0 +0.667,0.312,0.312,0.75,0.4,0,0,0.42,0.562,0.562,0.206,0,0.226 +0.667,0.626,0.626,0,0,0,0,0.611,0.625,0.625,0,0,0.165 +0.333,0.309,0.309,0,0,0,0,0.427,0.537,0.537,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0.313 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.174,0.174,0,0,0,0,0.346,0.522,0.522,0,0,0.275 +1,0.304,0.304,0,0,0,0,0.337,0.585,0.585,0,0,0.468 +0.667,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0.101 +0.333,0.172,0.172,0,0,0,0,0.261,0.527,0.527,0,0,0.342 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0 +0.333,0.174,0.174,0.5,0,0,0,0.316,0.552,0.552,0,0,0 +0.333,0.202,0.202,0,0,0,0,0.368,0.572,0.572,0,0,0 +0.333,0.254,0.254,0,0,0,0,0.405,0.577,0.577,0,0,0.346 +0.333,0.312,0.312,0,0,0,0,0.42,0.562,0.562,0,0,0.525 +0.667,0.626,0.626,0.5,0,0,0,0.611,0.625,0.625,0,0,0.0433 +0.667,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0.0433 +0.667,0.36,0.36,0,0,0,0,0.522,0.555,0.555,0,0,0.0433 +0.667,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0.26 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0.483,0.467,0.305,0.467,0.467,0,0.124,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0.0527,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.144 +1,0.297,0.297,0.25,0,0,0,0.433,0.575,0.575,0,0,0.32 +1,0.431,0.431,0,0,0.483,0.633,0.377,0.644,0.644,0,0.243,0.439 +0.667,0.302,0.302,0,0,0,0.0667,0.256,0.585,0.585,0,0.481,0.214 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0.293,0 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0.39,0.13 +0.333,0.162,0.162,0,0,0,0,0.261,0.537,0.537,0,0.248,0.173 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0.443,0.0866 +0.667,0.272,0.272,0.25,0,0,0,0.315,0.595,0.595,0,0.584,0.162 +0.667,0.277,0.277,0.5,0,0,0,0.323,0.615,0.615,0,0.322,0.221 +0.333,0.174,0.174,0,0,0.483,0.633,0.316,0.552,0.552,0,0.117,0.173 +0.667,0.353,0.353,0,0,0,0.0667,0.478,0.675,0.675,0,0.498,0.0866 +0.667,0.458,0.458,0,0,0,0,0.552,0.685,0.685,0,0.341,0.216 +0.333,0.312,0.312,0,0,0,0,0.42,0.562,0.562,0,0.319,0.26 +0.667,0.626,0.626,0,0,0,0,0.611,0.625,0.625,0,0.315,0 +0.667,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0.449,0 +1,0.36,0.36,0,0,0,0,0.522,0.555,0.555,0,0.449,0.0433 +1,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0.615,0 +1,0.0749,0.0749,0,0,0,0,0.32,0.487,0.487,0,0.12,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.211 +1,0.239,0.239,0,0,0,0,0.404,0.525,0.525,0,0,0.257 +1,0.421,0.421,0,0,0,0,0.521,0.629,0.629,0,0,0.15 +0,0.05,0.05,0,0,0.103,0,0.258,0.469,0.469,0,0,0 +0.333,0.176,0.176,0,0,0.379,0.883,0.257,0.527,0.527,0,0.243,0.173 +0.333,0.172,0.172,0,0,0,0.0667,0.261,0.527,0.527,0,0.35,0.0433 +0.667,0.282,0.282,0,0,0,0,0.271,0.595,0.595,0,0.393,0.0866 +0.667,0.274,0.274,0,0,0,0,0.263,0.605,0.605,0,0.316,0.0433 +0.667,0.271,0.271,0,0,0,0,0.293,0.605,0.605,0,0.593,0 +0.667,0.272,0.272,0,0,0,0,0.315,0.595,0.595,0,0.44,0 +0.667,0.277,0.277,0,0,0,0,0.323,0.615,0.615,0,0.395,0.0433 +0.667,0.297,0.297,0,0,0,0,0.374,0.635,0.635,0,0.463,0.0433 +0.667,0.353,0.353,0,0.333,0,0,0.478,0.675,0.675,0.738,0.0546,0.13 +0.667,0.458,0.458,0,0.65,0,0,0.552,0.685,0.685,0.762,0,0.26 +0.667,0.575,0.575,0,0,0,0,0.581,0.655,0.655,0.551,0,0.0866 +0.667,0.626,0.626,0,0,0,0,0.611,0.625,0.625,0,0,0.173 +0.667,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0 +1,0.205,0.205,0,0,0,0,0.39,0.512,0.512,0,0,0 +1,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.174,0.174,0.25,0,0,0,0.346,0.522,0.522,0,0,0 +1,0.177,0.177,0,0,0,0,0.298,0.527,0.527,0,0,0 +1,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0.241 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.333,0.162,0.162,0,0,0,0,0.261,0.537,0.537,0,0,0.349 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.362 +0.667,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0.087 +0.667,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0.364 +0.667,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0.537 +0.333,0.202,0.202,0,0,0,0,0.368,0.572,0.572,0,0,0.26 +0.333,0.254,0.254,0,0,0,0,0.405,0.577,0.577,0,0,0.346 +0.333,0.312,0.312,0,0,0,0,0.42,0.562,0.562,0,0,0.37 +0.667,0.626,0.626,0,0,0,0,0.611,0.625,0.625,0,0,0.348 +1,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0.152 +1,0.205,0.205,0,0,0,0,0.39,0.512,0.512,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0511,0.0511,0,0,0,0,0.294,0.472,0.472,0,0,0 +1,0.0806,0.0806,0,0,0,0,0.305,0.477,0.477,0,0,0 +1,0.144,0.144,0.5,0,0.483,0.633,0.331,0.497,0.497,0,0.124,0 +1,0.174,0.174,0,0,0,0.0667,0.346,0.522,0.522,0,0.408,0.0866 +0.667,0.177,0.177,0,0,0,0,0.298,0.527,0.527,0,0.408,0.216 +0.667,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0.531,0.244 +0.333,0.172,0.172,0,0,0,0,0.261,0.527,0.527,0,0.403,0 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0.394,0.0866 +0.333,0.162,0.162,0,0,0,0,0.261,0.537,0.537,0,0.414,0.0433 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0 +0.333,0.161,0.161,0.5,0,0,0,0.286,0.532,0.532,0,0,0 +0.667,0.277,0.277,0,0,0.483,0.133,0.323,0.615,0.615,0,0,0.417 +0.667,0.297,0.297,0,0,0,0.1,0.374,0.635,0.635,0.206,0.51,0.236 +0.667,0.353,0.353,0.5,0.833,0,0,0.478,0.675,0.675,0.797,0.161,0 +0.667,0.458,0.458,0.5,0.383,0.483,0.383,0.552,0.685,0.685,0.689,0.0507,0.0433 +0.667,0.575,0.575,0,0,0,0.567,0.581,0.655,0.655,0.151,0.511,0.13 +1,0.914,0.914,0,0,0,0,0.788,0.703,0.703,0,0.562,0.377 +1,0.829,0.829,0,0,0,0,0.765,0.674,0.674,0,0.669,0.259 +1,0.36,0.36,0,0,0,0,0.522,0.555,0.555,0,0.318,0.0866 +1,0.184,0.184,0,0,0,0,0.456,0.515,0.515,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.421,0.421,0,0,0,0,0.521,0.629,0.629,0,0,0.229 +1,0.431,0.431,0,0,0,0,0.377,0.644,0.644,0,0,0.1 +0.667,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0.212 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0,0.157 +0.667,0.282,0.282,0,0,0,0,0.271,0.595,0.595,0,0,0.169 +0.667,0.274,0.274,0,0,0,0,0.263,0.605,0.605,0,0,0.36 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.346 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +0.333,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0 +0.667,0.353,0.353,0.5,0,0,0,0.478,0.675,0.675,0,0,0 +0.667,0.458,0.458,0.25,0,0,0,0.552,0.685,0.685,0,0,0.0433 +0.667,0.575,0.575,0,0,0,0,0.581,0.655,0.655,0,0,0.13 +0.667,0.626,0.626,0.5,0,0,0,0.611,0.625,0.625,0,0,0.612 +1,0.569,0.569,0.25,0,0,0,0.596,0.605,0.605,0,0,0.318 +1,0.36,0.36,0,0,0,0,0.522,0.555,0.555,0,0,0.0433 +1,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.144 +1,0.174,0.174,0,0,0,0,0.346,0.522,0.522,0,0,0.107 +1,0.431,0.431,0,0,0,0,0.377,0.644,0.644,0,0,0.366 +1,0.428,0.428,0,0,0,0,0.255,0.644,0.644,0,0,0.486 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0,0.173 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.404 +0.333,0.162,0.162,0,0,0,0,0.261,0.537,0.537,0,0,0.0433 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.0433 +0.333,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0.173 +0.667,0.277,0.277,0,0,0,0,0.323,0.615,0.615,0,0,0.26 +0.667,0.297,0.297,0,0,0,0,0.374,0.635,0.635,0,0,0.216 +0.667,0.353,0.353,0,0.583,0,0,0.478,0.675,0.675,0.692,0,0.173 +0.667,0.458,0.458,0,0.633,0,0,0.552,0.685,0.685,0.917,0,0.0866 +0.667,0.575,0.575,0,0,0,0,0.581,0.655,0.655,0,0,0.173 +0.667,0.626,0.626,0,0,0,0,0.611,0.625,0.625,0,0,0.0433 +0.667,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0 +0.667,0.205,0.205,0,0,0,0,0.39,0.512,0.512,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.305,0.467,0.467,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.194 +1,0.297,0.297,0.75,0,0,0,0.433,0.575,0.575,0,0,0.199 +1,0.431,0.431,0,0,0,0,0.377,0.644,0.644,0,0,0.167 +0.667,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0.154 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0,0.207 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.363 +0.333,0.162,0.162,0.25,0,0,0,0.261,0.537,0.537,0,0,0.104 +0.333,0.161,0.161,0,0,0.483,0.133,0.275,0.537,0.537,0,0,0.216 +0.667,0.272,0.272,0,0,0,0.333,0.315,0.595,0.595,0,0.423,0 +0.667,0.277,0.277,0,0,0,0,0.323,0.615,0.615,0,0.403,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.402 +0.333,0.202,0.202,0,0,0,0,0.368,0.572,0.572,0,0,0.233 +0.333,0.254,0.254,0,0,0,0,0.405,0.577,0.577,0,0,0.315 +0.667,0.575,0.575,0,0,0,0,0.581,0.655,0.655,0,0,0 +0.667,0.626,0.626,0,0,0,0,0.611,0.625,0.625,0,0,0.0433 +0.667,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0.389 +0.667,0.36,0.36,0,0,0,0,0.522,0.555,0.555,0,0,0.173 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.144,0.144,0,0,0,0,0.331,0.497,0.497,0,0,0.177 +1,0.297,0.297,0,0,0,0,0.433,0.575,0.575,0,0,0.0705 +0.667,0.177,0.177,0,0,0,0,0.298,0.527,0.527,0,0,0.109 +0.667,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0,0,0.0433 +0.667,0.172,0.172,0,0,0,0,0.261,0.527,0.527,0,0,0.216 +0.667,0.282,0.282,0,0,0,0,0.271,0.595,0.595,0,0,0.397 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.109 +0.667,0.271,0.271,0,0,0,0,0.293,0.605,0.605,0,0,0.216 +0.667,0.272,0.272,0,0,0,0,0.315,0.595,0.595,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.202,0.202,0,0,0,0,0.368,0.572,0.572,0,0,0.173 +0.333,0.254,0.254,0,0,0,0,0.405,0.577,0.577,0,0,0.263 +0.667,0.575,0.575,0,0,0,0,0.581,0.655,0.655,0,0,0.155 +0.667,0.626,0.626,0,0,0,0,0.611,0.625,0.625,0,0,0.303 +0.667,0.309,0.309,0,0,0,0,0.427,0.537,0.537,0,0,0.173 +0.667,0.205,0.205,0,0,0,0,0.39,0.512,0.512,0,0,0.13 +0.667,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.232 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.116 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.0806,0.0806,0,0,0,0,0.305,0.477,0.477,0,0,0.205 +0.667,0.144,0.144,0,0,0,0,0.331,0.497,0.497,0,0,0.179 +0.667,0.174,0.174,0,0,0,0,0.346,0.522,0.522,0,0,0 +0.667,0.177,0.177,0,0,0,0,0.298,0.527,0.527,0,0,0 +0.667,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0,0,0 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0,0 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.261,0.537,0.537,0,0,0.173 +0.667,0.271,0.271,0,0,0,0,0.293,0.605,0.605,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0 +0.333,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0.0433 +0.333,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0.0866 +0.333,0.202,0.202,0,0,0,0,0.368,0.572,0.572,0,0,0.0433 +0.333,0.254,0.254,0.25,0,0,0,0.405,0.577,0.577,0,0,0.216 +0.667,0.575,0.575,0,0,0,0,0.581,0.655,0.655,0,0,0.13 +0.667,0.626,0.626,0,0,0,0,0.611,0.625,0.625,0,0,0.26 +0.667,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0.303 +0.667,0.36,0.36,0,0,0,0,0.522,0.555,0.555,0,0,0.382 +1,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0.158 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.297,0.297,0.25,0,0,0,0.433,0.575,0.575,0,0,0.225 +0.667,0.304,0.304,0.25,0,0,0,0.337,0.585,0.585,0,0,0.0995 +0.667,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0.173 +0.333,0.172,0.172,0,0,0,0,0.261,0.527,0.527,0,0,0.173 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,1,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.333,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0.13 +0.333,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0 +0.333,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0 +0.667,0.353,0.353,0,0,0,0,0.478,0.675,0.675,0,0,0.303 +0.667,0.458,0.458,0,0,0,0,0.552,0.685,0.685,0,0,0.173 +0.667,0.575,0.575,0,0,0,0,0.581,0.655,0.655,0,0,0.0433 +0.667,0.626,0.626,0,0.583,0,0,0.611,0.625,0.625,0.519,0,0.216 +0.667,0.569,0.569,0,0.4,0,0,0.596,0.605,0.605,0,0,0.0433 +1,0.514,0.514,0,0,0,0,0.654,0.599,0.599,0,0,0.111 +1,0.184,0.184,0,0,0,0,0.456,0.515,0.515,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.32,0.487,0.487,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.309,0.477,0.477,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.177,0.177,0,0,0,0,0.298,0.527,0.527,0,0,0.195 +0.333,0.176,0.176,0,0,0,0,0.257,0.527,0.527,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.162,0.162,0,0,0,0,0.261,0.537,0.537,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.44 +0.667,0.202,0.202,0.5,0,0,0,0.368,0.572,0.572,0,0,0.236 +0.667,0.458,0.458,0,0,0,0,0.552,0.685,0.685,0,0,0.0925 +0.333,0.312,0.312,0,0,0,0,0.42,0.562,0.562,0,0,0 +0.333,0.338,0.338,0,0,0,0,0.434,0.547,0.547,0,0,0.173 +0.667,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0.359 +0.667,0.205,0.205,0,0,0,0,0.39,0.512,0.512,0,0,0.183 +0.667,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0.394 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.174,0.174,0,0,0.483,0.233,0.346,0.522,0.522,0,0.195,0.207 +1,0.304,0.304,0,0,0,0,0.337,0.585,0.585,0,0.51,0.147 +1,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0 +1,0.415,0.415,0,0,0,0,0.266,0.644,0.644,0,0,0.0972 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0.0433 +0.333,0.162,0.162,0,0,0,0,0.261,0.537,0.537,0,0,0.0433 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0 +0.333,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0.13 +0.333,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0.26 +0.333,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0.0866 +0.333,0.202,0.202,0,0,0,0,0.368,0.572,0.572,0,0,0.0433 +0.333,0.254,0.254,0,0,0,0,0.405,0.577,0.577,0,0,0.173 +0.333,0.312,0.312,0,0,0,0,0.42,0.562,0.562,0,0,0.216 +0.333,0.338,0.338,0,0,0,0,0.434,0.547,0.547,0,0,0.228 +0.667,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0.209 +0.667,0.205,0.205,0,0,0,0,0.39,0.512,0.512,0,0,0.18 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.309,0.477,0.477,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.305,0.467,0.467,0,0,0.304 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0161 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.215 +1,0.431,0.431,0,0,0,0,0.377,0.644,0.644,0,0,0.372 +1,0.428,0.428,0,0,0,0,0.255,0.644,0.644,0,0,0.372 +1,0.415,0.415,0,0,0,0,0.266,0.644,0.644,0,0,0.193 +0.667,0.282,0.282,0,0,0,0,0.271,0.595,0.595,0,0,0.0866 +0.333,0.162,0.162,0,0,0,0,0.261,0.537,0.537,0,0,0.26 +0.333,0.161,0.161,0,0,0,0,0.275,0.537,0.537,0,0,0.0433 +0.333,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0.173 +0.333,0.163,0.163,0.25,0,0,0,0.29,0.542,0.542,0,0,0.13 +0.333,0.174,0.174,0.5,0,0,0,0.316,0.552,0.552,0,0,0.0866 +0.333,0.202,0.202,0,0,0,0,0.368,0.572,0.572,0,0,0 +0.333,0.254,0.254,0,0,0,0,0.405,0.577,0.577,0,0,0.0866 +0.667,0.575,0.575,0,0,0,0,0.581,0.655,0.655,0,0,0.0866 +0.667,0.626,0.626,0,0,0,0,0.611,0.625,0.625,0,0,0.0433 +0.667,0.309,0.309,0,0,0,0,0.427,0.537,0.537,0,0,0.0866 +0.667,0.205,0.205,0,0,0,0,0.39,0.512,0.512,0,0,0.348 +1,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0.0654 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.5,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.144,0.144,0.5,0,0,0,0.331,0.497,0.497,0,0,0 +1,0.421,0.421,0,0,0,0,0.521,0.629,0.629,0,0,0.25 +1,0.431,0.431,0,0,0,0,0.377,0.644,0.644,0,0,0.272 +0.667,0.302,0.302,0,0,0,0,0.256,0.585,0.585,0,0,0.328 +0.667,0.293,0.293,0,0,0,0,0.263,0.585,0.585,0,0,0.401 +0.667,0.282,0.282,0.25,0,0,0,0.271,0.595,0.595,0,0,0.216 +0.667,0.274,0.274,0.75,0,0.483,0.633,0.263,0.605,0.605,0,0.0767,0 +0.333,0.161,0.161,0,0,0,0.0667,0.275,0.537,0.537,0,0.495,0.13 +0.333,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0.254,0.26 +0.333,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0.277,0 +0.333,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.333,0.312,0.312,0,0,0,0,0.42,0.562,0.562,0,0,0.513 +0.333,0.338,0.338,0,0,0,0,0.434,0.547,0.547,0,0,0.0866 +0.667,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0.139 +1,0.205,0.205,0,0,0,0,0.39,0.512,0.512,0,0,0.0587 +0.667,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0 +1,0.0999,0.0999,0,0,0,0,0.382,0.505,0.505,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.174,0.174,0,0,0,0,0.346,0.522,0.522,0,0,0.244 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.293,0.293,0.25,0,0,0,0.263,0.585,0.585,0,0,0 +0.667,0.282,0.282,0.75,0.333,0,0,0.271,0.595,0.595,0.674,0,0.103 +0.667,0.274,0.274,0,0.883,0,0,0.263,0.605,0.605,0.127,0,0 +0.667,0.271,0.271,0,0,0,0,0.293,0.605,0.605,0,0,0.0433 +0.667,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0.173 +0.333,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0.0433 +0.333,0.202,0.202,0,0,0,0,0.368,0.572,0.572,0,0,0.0866 +0.333,0.254,0.254,0,0.333,0,0,0.405,0.577,0.577,0.516,0,0.13 +0.333,0.312,0.312,0,0.65,0,0,0.42,0.562,0.562,0.773,0,0.173 +0.333,0.338,0.338,0,0,0,0,0.434,0.547,0.547,0.681,0,0.0433 +0.667,0.569,0.569,0,0,0,0,0.596,0.605,0.605,0,0,0.0433 +1,0.514,0.514,0,0,0,0,0.654,0.599,0.599,0,0,0.389 +1,0.184,0.184,0,0,0,0,0.456,0.515,0.515,0,0,0.108 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.5,0,0,0,0.258,0.469,0.469,0,0,0.256 +0.667,0.174,0.174,0.5,0,0,0,0.346,0.522,0.522,0,0,0.196 +0.333,0.177,0.177,0,0,0,0,0.298,0.527,0.527,0,0,0 +0.333,0.176,0.176,0,0.333,0,0,0.257,0.527,0.527,0.637,0,0 +0.333,0.172,0.172,0,0.65,0,0,0.261,0.527,0.527,0.131,0,0.0433 +0.333,0.166,0.166,0,0,0,0,0.264,0.532,0.532,0,0,0 +0.333,0.162,0.162,0,0,0,0,0.261,0.537,0.537,0,0,0.13 +0.667,0.271,0.271,0,0,0,0,0.293,0.605,0.605,0,0,0.26 +0.667,0.161,0.161,0,0,0,0,0.286,0.532,0.532,0,0,0 +0.667,0.163,0.163,0,0,0,0,0.29,0.542,0.542,0,0,0.13 +0.333,0.174,0.174,0,0,0,0,0.316,0.552,0.552,0,0,0.0433 +0.667,0.353,0.353,0,0.583,0,0,0.478,0.675,0.675,0.703,0,0.26 +0.667,0.458,0.458,0.75,0.633,0,0,0.552,0.685,0.685,0.473,0,0.209 +0.667,0.575,0.575,0.25,0,0,0,0.581,0.655,0.655,0,0,0.0433 +0.333,0.338,0.338,0,0,0,0,0.434,0.547,0.547,0,0,0.26 +0.333,0.309,0.309,0,0,0,0,0.427,0.537,0.537,0,0,0.216 +0.667,0.36,0.36,0,0,0,0,0.522,0.555,0.555,0,0,0.0866 +0.667,0.117,0.117,0,0,0,0,0.357,0.492,0.492,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.148,0.148,0,0,0,0,0.33,0.496,0.496,0,0,0.357 +1,0.179,0.179,0,0,0,0,0.345,0.521,0.521,0,0,0.554 +0.667,0.185,0.185,0.117,0,0,0,0.297,0.526,0.526,0,0,0.107 +0.667,0.187,0.187,0.7,0,0,0,0.257,0.526,0.526,0,0,0.393 +0.667,0.183,0.183,0,0,0,0,0.26,0.526,0.526,0,0,0.216 +0.333,0.177,0.177,0.367,0,0,0,0.264,0.531,0.531,0,0,0.173 +0.667,0.172,0.172,1,0,0,0,0.26,0.536,0.536,0,0,0 +0.667,0.171,0.171,0.267,0,0,0,0.275,0.536,0.536,0,0,0.303 +0.667,0.175,0.175,0,0,0,0,0.286,0.531,0.531,0,0,0.0433 +0.667,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0 +0.667,0.429,0.429,0.117,0,0,0,0.373,0.634,0.634,0,0,0 +0.667,0.558,0.558,0.7,0,0,0,0.477,0.674,0.674,0,0,0.216 +0.667,0.653,0.653,0,0,0,0,0.55,0.683,0.683,0,0,0.102 +0.667,0.635,0.635,0,0,0,0,0.58,0.654,0.654,0,0,0.271 +1,0.754,0.754,0,0,0,0,0.785,0.701,0.701,0,0,0.496 +0.667,0.397,0.397,0,0,0,0,0.595,0.604,0.604,0,0,0 +0.667,0.348,0.348,0,0,0,0,0.521,0.554,0.554,0,0,0.0866 +0.667,0.184,0.184,0,0.333,0,0,0.455,0.514,0.514,0.611,0,0 +1,0.0749,0.0749,0,1,0,0,0.319,0.487,0.487,0.661,0,0 +1,0.0583,0.0583,0,0.133,0,0,0.308,0.477,0.477,0.519,0,0.0873 +1,0.05,0.05,0,0,0,0,0.308,0.472,0.472,0,0,0 +1,0.05,0.05,0,0,0,0,0.305,0.467,0.467,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0.367,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.667,0.179,0.179,0.45,0,0,0,0.345,0.521,0.521,0,0,0 +0.667,0.185,0.185,0.267,0,0,0,0.297,0.526,0.526,0,0,0 +0.667,0.187,0.187,0,0,0,0,0.257,0.526,0.526,0,0,0 +0.667,0.183,0.183,0,0,0,0,0.26,0.526,0.526,0,0,0.0433 +0.667,0.177,0.177,0,0,0,0,0.264,0.531,0.531,0,0,0 +0.667,0.172,0.172,0,0,0,0,0.26,0.536,0.536,0,0,0.13 +0.667,0.171,0.171,0,0,0,0,0.275,0.536,0.536,0,0,0.0866 +0.667,0.175,0.175,0.367,0,0,0,0.286,0.531,0.531,0,0,0.419 +1,0.486,0.486,0.167,0,0,0,0.354,0.686,0.686,0,0,0.389 +0.667,0.429,0.429,0,0,0,0,0.373,0.634,0.634,0,0,0.13 +0.667,0.558,0.558,0,0,0.345,0,0.477,0.674,0.674,0.256,0,0.0433 +0.667,0.653,0.653,0,0.95,0.138,0.25,0.55,0.683,0.683,0.359,0.311,0.13 +0.333,0.342,0.342,0,0.1,0,0,0.419,0.561,0.561,0,0.538,0.13 +0.333,0.285,0.285,0,0,0,0,0.434,0.546,0.546,0,0.0936,0.0628 +0.667,0.397,0.397,0,0,0,0,0.595,0.604,0.604,0,0,0 +1,0.199,0.199,0,0,0,0,0.389,0.511,0.511,0,0,0.0433 +1,0.05,0.05,0,0.117,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.066 +1,0.0515,0.0515,0,0,0,0,0.293,0.472,0.472,0,0,0.089 +1,0.0823,0.0823,0,0,0,0,0.305,0.477,0.477,0,0,0 +1,0.148,0.148,0,0,0,0,0.33,0.496,0.496,0,0,0.115 +1,0.308,0.308,0,0,0,0,0.432,0.574,0.574,0,0,0.0433 +0.667,0.321,0.321,0,0,0,0,0.337,0.584,0.584,0,0,0 +0.333,0.187,0.187,0,0,0,0,0.257,0.526,0.526,0,0,0.13 +0.333,0.183,0.183,0,0,0,0,0.26,0.526,0.526,0,0,0.13 +0.667,0.303,0.303,0,0,0,0,0.27,0.594,0.594,0,0,0.173 +0.333,0.172,0.172,0,0,0,0,0.26,0.536,0.536,0,0,0 +0,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.175,0.175,0.0167,0,0,0,0.286,0.531,0.531,0,0,0 +0.333,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0.0866 +0.333,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0,0 +0.333,0.304,0.304,0,0,0,0,0.367,0.571,0.571,0,0,0.173 +0.667,0.653,0.653,0,0,0,0,0.55,0.683,0.683,0,0,0.0866 +0.667,0.635,0.635,0,0,0,0,0.58,0.654,0.654,0,0,0.173 +0.667,0.519,0.519,0,0,0,0,0.609,0.624,0.624,0,0,0.216 +0.667,0.224,0.224,0,0,0,0,0.426,0.536,0.536,0,0,0.216 +1,0.348,0.348,0,0,0,0,0.521,0.554,0.554,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0756 +1,0.179,0.179,0.25,0,0,0,0.345,0.521,0.521,0,0,0 +0.667,0.05,0.05,0.567,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.324,0.324,0,0,0.483,0.633,0.255,0.584,0.584,0,0.157,0 +0.667,0.315,0.315,0,0,0,0.133,0.263,0.584,0.584,0,0.184,0.208 +0.667,0.303,0.303,0,0,0,0,0.27,0.594,0.594,0,0,0 +1,0.417,0.417,0,0,0,0,0.265,0.671,0.671,0,0,0 +0.667,0.171,0.171,0,0,0,0,0.275,0.536,0.536,0,0,0.0866 +0.333,0.175,0.175,0.267,0,0,0,0.286,0.531,0.531,0,0,0.0433 +0.667,0.195,0.195,0.25,0,0,0,0.29,0.541,0.541,0,0,0.0866 +0.667,0.429,0.429,0.0167,0,0.483,0.633,0.373,0.634,0.634,0,0.289,0.13 +0.667,0.558,0.558,0,0,0,0.65,0.477,0.674,0.674,0,0.573,0 +0.333,0.352,0.352,0,0,0,0,0.404,0.576,0.576,0,0.326,0.0433 +0.333,0.342,0.342,0,0,0,0,0.419,0.561,0.561,0,0,0.0866 +1,0.519,0.519,0,0,0,0,0.609,0.624,0.624,0,0,0.13 +1,0.397,0.397,0,0,0,0,0.595,0.604,0.604,0,0,0.216 +1,0.199,0.199,0,0,0,0,0.389,0.511,0.511,0,0,0.443 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.615 +1,0.148,0.148,0.367,0,0,0,0.33,0.496,0.496,0,0,0.166 +1,0.437,0.437,0.45,0,0,0,0.52,0.627,0.627,0,0,0.181 +0.333,0.185,0.185,0,0,0,0,0.297,0.526,0.526,0,0,0 +0.333,0.187,0.187,0,0.45,0,0,0.257,0.526,0.526,0.661,0,0.0433 +0.333,0.183,0.183,0,0.867,0,0,0.26,0.526,0.526,0.689,0,0.303 +0.333,0.177,0.177,0,0,0,0,0.264,0.531,0.531,0.147,0,0.346 +0.333,0.172,0.172,0,0,0,0,0.26,0.536,0.536,0,0,0.13 +0.333,0.171,0.171,0,0,0,0,0.275,0.536,0.536,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.286,0.531,0.531,0,0,0.216 +0.333,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0 +0.333,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0,0 +0.333,0.304,0.304,0,0.45,0,0,0.367,0.571,0.571,0.578,0,0.196 +0.333,0.352,0.352,0,1,0,0,0.404,0.576,0.576,0.144,0,0.31 +0.333,0.342,0.342,0,0.133,0,0,0.419,0.561,0.561,0,0,0.638 +0.667,0.519,0.519,0,0.2,0,0,0.609,0.624,0.624,0.578,0,0.0433 +0.667,0.397,0.397,0,0.85,0,0,0.595,0.604,0.604,0.164,0,0.0433 +1,0.348,0.348,0,0,0,0,0.521,0.554,0.554,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0515,0.0515,0,0,0,0,0.293,0.472,0.472,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.179,0.179,0,0,0,0,0.345,0.521,0.521,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0161 +1,0.324,0.324,0,0,0.483,0.517,0.255,0.584,0.584,0,0.0494,0.202 +0.333,0.183,0.183,0,0,0,0,0.26,0.526,0.526,0,0.389,0.0433 +0.333,0.177,0.177,0.817,0,0,0,0.264,0.531,0.531,0,0,0 +0.333,0.172,0.172,0.617,0,0,0,0.26,0.536,0.536,0,0,0.0433 +0.333,0.171,0.171,1,0,0,0,0.275,0.536,0.536,0,0,0.0866 +0.333,0.175,0.175,0.0167,0,0,0,0.286,0.531,0.531,0,0,0.216 +0.333,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0.0433 +0.333,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0,0 +0.333,0.304,0.304,0,0,0,0,0.367,0.571,0.571,0,0,0.303 +0.333,0.352,0.352,0,0,0,0,0.404,0.576,0.576,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0.483,0.5,0.258,0.469,0.469,0,0.0195,0.0433 +0.667,0.397,0.397,0.267,0,0,1,0.595,0.604,0.604,0,0.68,0.0159 +1,0.498,0.498,0,0,0,0.05,0.652,0.597,0.597,0,0.371,0.304 +1,0.184,0.184,0,0,0,0,0.455,0.514,0.514,0,0,0.104 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.0515,0.0515,0.367,0,0,0,0.293,0.472,0.472,0,0,0 +1,0.115,0.115,1,0.45,0,0,0.351,0.485,0.485,0.508,0,0 +1,0.247,0.247,0.55,0.867,0,0,0.403,0.524,0.524,0.32,0,0.261 +1,0.308,0.308,0,0,0,0,0.432,0.574,0.574,0,0,0.415 +1,0.321,0.321,0,0,0,0,0.337,0.584,0.584,0,0,0.217 +0.667,0.187,0.187,0,0,0,0,0.257,0.526,0.526,0,0,0.465 +0.333,0.05,0.05,0,0,0.345,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0.138,1,0.258,0.469,0.469,0,0.464,0.0866 +0.333,0.172,0.172,0,0,0,0.283,0.26,0.536,0.536,0,0.378,0.13 +0.333,0.171,0.171,0,0,0,0,0.275,0.536,0.536,0,0.415,0.476 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.304,0.304,0.817,0,0,0,0.367,0.571,0.571,0,0,0.4 +0.333,0.352,0.352,0,0,0,0,0.404,0.576,0.576,0,0,0 +0.667,0.635,0.635,0,0,0,0,0.58,0.654,0.654,0,0,0 +0.667,0.519,0.519,0,0,0,0,0.609,0.624,0.624,0,0,0 +0.667,0.224,0.224,0,0,0,0,0.426,0.536,0.536,0,0,0.216 +0.667,0.199,0.199,0,0,0,0,0.389,0.511,0.511,0,0,0.0753 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.016 +1,0.148,0.148,0,0,0,0,0.33,0.496,0.496,0,0,0.329 +1,0.179,0.179,0.867,0,0,0,0.345,0.521,0.521,0,0,0.258 +1,0.321,0.321,0.217,0,0,0,0.337,0.584,0.584,0,0,0.664 +0.667,0.324,0.324,0,0,0,0,0.255,0.584,0.584,0,0,0.238 +0.333,0.183,0.183,0.617,0,0,0,0.26,0.526,0.526,0,0,0.344 +0.333,0.177,0.177,0.2,0,0,0,0.264,0.531,0.531,0,0,0.0433 +0.333,0.172,0.172,0,0,0,0,0.26,0.536,0.536,0,0,0.0593 +0.667,0.292,0.292,0,0,0,0,0.292,0.604,0.604,0,0,0.358 +0.667,0.3,0.3,0,0,0,0,0.314,0.594,0.594,0,0,0.365 +0.667,0.341,0.341,0,0,0,0,0.322,0.614,0.614,0,0,0.194 +0.333,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0,0.0433 +0.667,0.558,0.558,0,0,0,0,0.477,0.674,0.674,0,0,0.0866 +0.667,0.653,0.653,0,0,0,0,0.55,0.683,0.683,0,0,0.216 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.519,0.519,0,0,0,0,0.609,0.624,0.624,0,0,0 +0.667,0.397,0.397,0,0,0,0,0.595,0.604,0.604,0.133,0,0.303 +0.667,0.348,0.348,0,0.7,0,0,0.521,0.554,0.554,0.761,0,0.118 +0.667,0.184,0.184,0,0.35,0,0,0.455,0.514,0.514,0,0,0.0628 +0.667,0.0749,0.0749,0,0,0,0,0.319,0.487,0.487,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.308,0.477,0.477,0,0,0 +1,0.05,0.05,0,0,0,0,0.308,0.472,0.472,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.101 +1,0.179,0.179,0,0,0,0,0.345,0.521,0.521,0,0,0.0794 +1,0.185,0.185,0,0,0,0,0.297,0.526,0.526,0,0,0.139 +0.667,0.324,0.324,0,0,0,0,0.255,0.584,0.584,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.31 +0.333,0.177,0.177,0,0,0,0,0.264,0.531,0.531,0,0,0.0433 +0.333,0.172,0.172,0,0,0,0,0.26,0.536,0.536,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.275,0.536,0.536,0,0,0.13 +0.333,0.175,0.175,0,0,0,0,0.286,0.531,0.531,0,0,0.0433 +0.333,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0.0433 +0.333,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0,0.0866 +0.333,0.304,0.304,0,0,0,0,0.367,0.571,0.571,0,0,0.13 +0.333,0.352,0.352,0,0,0,0,0.404,0.576,0.576,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0594 +0.667,0.519,0.519,0,0,0,0,0.609,0.624,0.624,0,0,0.897 +0.667,0.224,0.224,0,0,0,0,0.426,0.536,0.536,0,0,0.0433 +0.667,0.199,0.199,0,0,0,0,0.389,0.511,0.511,0,0,0.0866 +1,0.117,0.117,0,0,0,0,0.356,0.492,0.492,0,0,0.148 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0588 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.182 +1,0.179,0.179,0,0,0,0,0.345,0.521,0.521,0,0,0.27 +1,0.321,0.321,0,0,0,0,0.337,0.584,0.584,0,0,0.162 +1,0.324,0.324,0,0,0,0,0.255,0.584,0.584,0,0,0.518 +1,0.448,0.448,0,0,0,0,0.265,0.642,0.642,0,0,0.161 +1,0.43,0.43,0,0,0,0,0.276,0.657,0.657,0,0,0.339 +0.667,0.294,0.294,0,0,0,0,0.263,0.604,0.604,0,0,0 +0.333,0.171,0.171,0,0,0.483,0.133,0.275,0.536,0.536,0,0,0.13 +0.333,0.175,0.175,0,0,0,0.9,0.286,0.531,0.531,0,0.52,0.0433 +0.333,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0.225,0.26 +0.667,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0.506,0.216 +0.667,0.304,0.304,0,0,0,0,0.367,0.571,0.571,0,0.501,0.0433 +0.667,0.653,0.653,0,0,0,0,0.55,0.683,0.683,0,0.785,0 +0.667,0.635,0.635,0,0,0,0,0.58,0.654,0.654,0,0.324,0.0433 +0.667,0.519,0.519,0,0,0,0,0.609,0.624,0.624,0,0.73,0.0866 +0.667,0.224,0.224,0,0,0,0,0.426,0.536,0.536,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.0749,0.0749,0,0,0,0,0.319,0.487,0.487,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.308,0.477,0.477,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.567,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.187,0.187,0.75,0,0,0,0.257,0.526,0.526,0,0,0 +0.667,0.315,0.315,0.617,0,0,0,0.263,0.584,0.584,0,0,0 +0.667,0.303,0.303,0,0,0,0,0.27,0.594,0.594,0,0,0.0433 +0.667,0.294,0.294,0,0,0,0,0.263,0.604,0.604,0,0,0 +0.667,0.292,0.292,0,0,0,0,0.292,0.604,0.604,0,0,0.13 +0.667,0.3,0.3,0,0.583,0,0,0.314,0.594,0.594,0.676,0,0.0866 +0.667,0.341,0.341,0,0.733,0,0,0.322,0.614,0.614,0,0,0.0866 +0.667,0.429,0.429,0.75,0,0,0,0.373,0.634,0.634,0,0,0.0866 +0.333,0.304,0.304,1,0,0,0,0.367,0.571,0.571,0,0,0.13 +0.333,0.352,0.352,0.167,0,0,0,0.404,0.576,0.576,0,0,0.26 +0.667,0.635,0.635,0,0,0,0,0.58,0.654,0.654,0,0,0.0433 +0.667,0.519,0.519,0,0,0,0,0.609,0.624,0.624,0,0,0.0433 +1,0.571,0.571,0,0,0,0,0.763,0.671,0.671,0,0,0.0433 +1,0.348,0.348,0,0,0,0,0.521,0.554,0.554,0,0,0.13 +1,0.117,0.117,0,0,0,0,0.356,0.492,0.492,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.817,0,0,0,0.258,0.469,0.469,0,0,0.465 +0.667,0.308,0.308,0,0,0,0,0.432,0.574,0.574,0,0,0.212 +0.667,0.321,0.321,0,0,0,0,0.337,0.584,0.584,0,0,0.471 +0.667,0.324,0.324,0,0,0,0,0.255,0.584,0.584,0,0,0.0975 +0.333,0.183,0.183,0,0,0,0,0.26,0.526,0.526,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.333,0.171,0.171,0,0,0,0,0.275,0.536,0.536,0,0,0.303 +0.333,0.175,0.175,0,0,0,0,0.286,0.531,0.531,0,0,0 +0.333,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0 +0.333,0.239,0.239,0.267,0,0,0,0.316,0.551,0.551,0,0,0.0433 +0.667,0.558,0.558,0,0.45,0,0,0.477,0.674,0.674,0.654,0,0.346 +0.667,0.653,0.653,0.367,0.867,0,0,0.55,0.683,0.683,0.317,0,0.0433 +0.333,0.342,0.342,0.717,0,0,0,0.419,0.561,0.561,0,0,0 +0.333,0.285,0.285,0.617,0,0,0,0.434,0.546,0.546,0,0,0.599 +1,0.571,0.571,0.467,0,0,0,0.763,0.671,0.671,0,0,0.235 +1,0.348,0.348,0,0,0,0,0.521,0.554,0.554,0,0,0.337 +1,0.184,0.184,0,0,0,0,0.455,0.514,0.514,0,0,0.505 +1,0.0999,0.0999,0,0,0,0,0.381,0.504,0.504,0,0,0.075 +1,0.0583,0.0583,0,0,0,0,0.308,0.477,0.477,0,0,0 +1,0.05,0.05,0,0,0,0,0.308,0.472,0.472,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0515,0.0515,0,0,0,0,0.293,0.472,0.472,0,0,0 +1,0.0823,0.0823,0,0,0,0,0.305,0.477,0.477,0,0,0 +1,0.148,0.148,0,0,0,0,0.33,0.496,0.496,0,0,0 +1,0.179,0.179,0,0,0,0,0.345,0.521,0.521,0,0,0 +1,0.185,0.185,0,0,0,0,0.297,0.526,0.526,0,0,0 +0.667,0.187,0.187,0,0,0,0,0.257,0.526,0.526,0,0,0.216 +0.667,0.183,0.183,0,0,0,0,0.26,0.526,0.526,0,0,0.14 +0.667,0.177,0.177,0,0,0.483,0.75,0.264,0.531,0.531,0,0.168,0 +0.667,0.294,0.294,0,0,0,0.0167,0.263,0.604,0.604,0,0.165,0.216 +0.667,0.292,0.292,0,0,0,0,0.292,0.604,0.604,0,0.484,0.288 +0.667,0.3,0.3,0,0,0,0,0.314,0.594,0.594,0,0,0.262 +0.667,0.341,0.341,0,0,0,0,0.322,0.614,0.614,0,0,0.705 +0.667,0.429,0.429,0.617,0,0,0,0.373,0.634,0.634,0,0,0.0921 +0.667,0.558,0.558,1,0,0,0,0.477,0.674,0.674,0,0,0.216 +0.667,0.653,0.653,0.0167,0,0,0,0.55,0.683,0.683,0,0,0.303 +0.333,0.342,0.342,0,0,0,0,0.419,0.561,0.561,0,0,0 +0.333,0.285,0.285,0,0,0,0,0.434,0.546,0.546,0,0,0.13 +0.667,0.397,0.397,0,0,0,0,0.595,0.604,0.604,0,0,0.357 +1,0.348,0.348,0,0,0,0,0.521,0.554,0.554,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.148,0.148,0,0,0,0,0.33,0.496,0.496,0,0,0.105 +1,0.308,0.308,0.533,0,0,0,0.432,0.574,0.574,0,0,0.263 +1,0.456,0.456,0,0,0,0,0.376,0.642,0.642,0,0,0.482 +0.333,0.187,0.187,0.617,0,0,0,0.257,0.526,0.526,0,0,0 +0.333,0.183,0.183,1,0,0,0,0.26,0.526,0.526,0,0,0.0433 +0.333,0.177,0.177,1,0,0,0,0.264,0.531,0.531,0,0,0.173 +0.333,0.172,0.172,1,0,0,0,0.26,0.536,0.536,0,0,0.303 +0.333,0.171,0.171,1,0,0,0,0.275,0.536,0.536,0,0,0.0433 +0.333,0.175,0.175,1,0,0,0,0.286,0.531,0.531,0,0,0.0433 +0.333,0.195,0.195,1,0,0,0,0.29,0.541,0.541,0,0,0.346 +0,0.05,0.05,1,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.333,0.304,0.304,1,0,0,0,0.367,0.571,0.571,0,0,0.173 +0,0.05,0.05,1,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.635,0.635,1,0,0,0,0.58,0.654,0.654,0,0,0 +0.667,0.519,0.519,0.35,0,0,0,0.609,0.624,0.624,0,0,0 +0.667,0.397,0.397,0,0,0,0,0.595,0.604,0.604,0,0,0.0927 +1,0.348,0.348,0,0,0,0,0.521,0.554,0.554,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0.345,0,0.258,0.469,0.469,0.319,0,0 +1,0.308,0.308,0,0.95,0.138,0.517,0.432,0.574,0.574,0.387,0.345,0 +0.667,0.185,0.185,0,0.367,0,0,0.297,0.526,0.526,0,0.588,0 +0.667,0.187,0.187,0,0,0,0,0.257,0.526,0.526,0,0.472,0 +0.667,0.183,0.183,0,0,0,0,0.26,0.526,0.526,0,0.371,0.216 +0.667,0.177,0.177,0,0,0,0,0.264,0.531,0.531,0,0.356,0.13 +0.667,0.172,0.172,0,0,0,0,0.26,0.536,0.536,0,0.624,0.13 +0.667,0.292,0.292,0.117,0,0,0,0.292,0.604,0.604,0,0,0.0433 +0.667,0.175,0.175,0.15,0,0,0,0.286,0.531,0.531,0,0,0.0433 +0.667,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0.0433 +0.667,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0,0.0433 +0.667,0.304,0.304,0,0,0,0,0.367,0.571,0.571,0,0,0.0433 +0.667,0.352,0.352,0,0,0,0,0.404,0.576,0.576,0,0,0.26 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.519 +0.667,0.285,0.285,0,0,0,0,0.434,0.546,0.546,0,0,0.0596 +0.667,0.224,0.224,0,0,0,0,0.426,0.536,0.536,0,0,0.174 +1,0.348,0.348,0,0,0,0,0.521,0.554,0.554,0,0,0 +1,0.184,0.184,0,0,0,0,0.455,0.514,0.514,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.319,0.487,0.487,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.308,0.477,0.477,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.179,0.179,0,0,0,0,0.345,0.521,0.521,0,0,0.185 +0.667,0.185,0.185,0,0,0,0,0.297,0.526,0.526,0,0,0.138 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.183,0.183,0,0,0,0,0.26,0.526,0.526,0,0,0.0433 +0.333,0.177,0.177,0,0,0,0,0.264,0.531,0.531,0,0,0.0433 +0.333,0.172,0.172,0,0,0,0,0.26,0.536,0.536,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.275,0.536,0.536,0,0,0 +0.333,0.175,0.175,0.267,0,0,0,0.286,0.531,0.531,0,0,0.0433 +0.333,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0.0433 +0.333,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0,0.0866 +0.333,0.304,0.304,0,0,0,0,0.367,0.571,0.571,0,0,0.216 +0.333,0.352,0.352,0,0,0,0,0.404,0.576,0.576,0,0,0.13 +0.333,0.342,0.342,0.367,0,0,0,0.419,0.561,0.561,0,0,0.173 +0.333,0.285,0.285,0.167,0,0,0,0.434,0.546,0.546,0,0,0.0433 +0.333,0.224,0.224,0,0,0,0,0.426,0.536,0.536,0,0,0.0433 +0.333,0.199,0.199,0,0,0,0,0.389,0.511,0.511,0,0,0.13 +0.667,0.117,0.117,0,0,0,0,0.356,0.492,0.492,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0634 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0753 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.26,0.536,0.536,0,0,0.0861 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.175,0.175,0.5,0,0,0,0.286,0.531,0.531,0,0,0 +0.333,0.195,0.195,0.317,0,0,0,0.29,0.541,0.541,0,0,0.173 +0.333,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0,0.346 +0.333,0.304,0.304,0,0,0,0,0.367,0.571,0.571,0,0,0.0866 +0.667,0.653,0.653,0,0,0,0,0.55,0.683,0.683,0,0,0.26 +0.333,0.342,0.342,0,0,0,0,0.419,0.561,0.561,0,0,0.39 +0.667,0.519,0.519,0.75,0,0,0,0.609,0.624,0.624,0,0,0.522 +0.667,0.397,0.397,0.0667,0,0,0,0.595,0.604,0.604,0,0,0.902 +1,0.498,0.498,0,0,0,0,0.652,0.597,0.597,0,0,0.25 +1,0.117,0.117,0,0,0,0,0.356,0.492,0.492,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.293 +1,0.179,0.179,0,0,0,0,0.345,0.521,0.521,0,0,0.156 +1,0.321,0.321,0,0,0,0,0.337,0.584,0.584,0,0,0.134 +1,0.324,0.324,0,0,0,0,0.255,0.584,0.584,0,0,0.547 +1,0.448,0.448,0,0,0,0,0.265,0.642,0.642,0,0,0.142 +0.667,0.303,0.303,0,0,0,0,0.27,0.594,0.594,0,0,0.137 +0.667,0.294,0.294,0,0,0,0,0.263,0.604,0.604,0,0,0.0614 +0.333,0.171,0.171,0,0,0,0,0.275,0.536,0.536,0,0,0.346 +0.333,0.175,0.175,0,0,0,0,0.286,0.531,0.531,0,0,0 +0.333,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0.216 +0.333,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0,0.0866 +0.333,0.304,0.304,0,0,0,0,0.367,0.571,0.571,0,0,0.0866 +0.333,0.352,0.352,0.817,0,0,0,0.404,0.576,0.576,0,0,0.216 +0.667,0.635,0.635,0,0,0,0,0.58,0.654,0.654,0,0,0.0866 +0.667,0.519,0.519,0,0,0,0,0.609,0.624,0.624,0,0,0.0866 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0164 +1,0.179,0.179,0,0,0,0,0.345,0.521,0.521,0,0,0.484 +0.667,0.321,0.321,0,0,0,0,0.337,0.584,0.584,0,0,0.152 +0.333,0.187,0.187,0,0,0,0,0.257,0.526,0.526,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.175,0.175,0,0,0,0,0.286,0.531,0.531,0,0,0 +0.667,0.341,0.341,0,0,0,0,0.322,0.614,0.614,0,0,0 +0.333,0.239,0.239,0.267,0,0,0,0.316,0.551,0.551,0,0,0 +0.333,0.304,0.304,0,0,0,0,0.367,0.571,0.571,0,0,0.13 +0.333,0.352,0.352,0,0,0,0,0.404,0.576,0.576,0,0,0.0866 +0.333,0.342,0.342,0.267,0,0,0,0.419,0.561,0.561,0,0,0.173 +0.667,0.519,0.519,0,0,0,0,0.609,0.624,0.624,0,0,0.0433 +1,0.224,0.224,0,0,0,0,0.426,0.536,0.536,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.367,0,0,0,0.258,0.469,0.469,0,0,0.14 +1,0.179,0.179,0.533,0,0,0,0.345,0.521,0.521,0,0,0.0569 +0.667,0.321,0.321,0.45,0,0,0,0.337,0.584,0.584,0,0,0.231 +0.667,0.324,0.324,0,0,0,0,0.255,0.584,0.584,0,0,0 +0.667,0.315,0.315,0,0,0,0,0.263,0.584,0.584,0,0,0.134 +0.667,0.303,0.303,0.367,0,0,0,0.27,0.594,0.594,0,0,0.228 +0.333,0.172,0.172,0.717,0,0,0,0.26,0.536,0.536,0,0,0.295 +0.333,0.171,0.171,0,0,0,0,0.275,0.536,0.536,0,0,0.216 +0.333,0.175,0.175,0.617,0,0,0,0.286,0.531,0.531,0,0,0.173 +0.333,0.195,0.195,0.2,0,0,0,0.29,0.541,0.541,0,0,0.303 +0.667,0.429,0.429,0,0,0,0,0.373,0.634,0.634,0,0,0.26 +0.667,0.558,0.558,0,0,0,0,0.477,0.674,0.674,0,0,0 +0.333,0.352,0.352,0,0,0,0,0.404,0.576,0.576,0.0994,0,0 +0.667,0.635,0.635,0,0.7,0,0,0.58,0.654,0.654,0.545,0,0.26 +0.667,0.519,0.519,0,0.35,0,0,0.609,0.624,0.624,0,0,0.0586 +1,0.571,0.571,0,0,0,0,0.763,0.671,0.671,0,0,0.0433 +1,0.498,0.498,0,0,0,0,0.652,0.597,0.597,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0515,0.0515,0,0,0,0,0.293,0.472,0.472,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.148,0.148,0,0,0,0,0.33,0.496,0.496,0,0,0.121 +1,0.437,0.437,0,0,0,0,0.52,0.627,0.627,0,0,0.113 +1,0.456,0.456,0,0,0,0,0.376,0.642,0.642,0,0,0.265 +0.667,0.324,0.324,0,0,0,0,0.255,0.584,0.584,0,0,0.204 +0.333,0.183,0.183,0.367,0,0,0,0.26,0.526,0.526,0,0,0.173 +0.333,0.177,0.177,0.167,0,0,0,0.264,0.531,0.531,0,0,0.13 +0.333,0.172,0.172,0,0,0,0,0.26,0.536,0.536,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.175,0.175,0,0,0,0,0.286,0.531,0.531,0,0,0.13 +0.333,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0.0433 +0.667,0.429,0.429,0,0,0,0,0.373,0.634,0.634,0,0,0 +0.667,0.558,0.558,0,0,0,0,0.477,0.674,0.674,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.389 +0.333,0.342,0.342,0,0,0,0,0.419,0.561,0.561,0,0,0.173 +0.333,0.285,0.285,0,0,0,0,0.434,0.546,0.546,0,0,0.137 +0.667,0.397,0.397,0,0,0,0,0.595,0.604,0.604,0,0,0 +0.667,0.348,0.348,0,0,0,0,0.521,0.554,0.554,0,0,0 +0.667,0.117,0.117,0,0,0,0,0.356,0.492,0.492,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.016 +1,0.053,0.053,0.367,0,0,0,0.329,0.475,0.475,0,0,0.157 +1,0.115,0.115,0.167,0,0,0,0.351,0.485,0.485,0,0,0.0748 +1,0.247,0.247,0,0,0,0,0.403,0.524,0.524,0,0,0.726 +0.667,0.308,0.308,0,0,0,0,0.432,0.574,0.574,0,0,0.0727 +0.333,0.185,0.185,0,0,0,0,0.297,0.526,0.526,0,0,0.221 +0.333,0.187,0.187,0,0,0,0,0.257,0.526,0.526,0,0,0.173 +0.333,0.183,0.183,0.367,0,0,0,0.26,0.526,0.526,0,0,0.0433 +0.333,0.177,0.177,0.45,0,0,0,0.264,0.531,0.531,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.26,0.536,0.536,0,0,0.0433 +0.333,0.171,0.171,0,0,0,0,0.275,0.536,0.536,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.286,0.531,0.531,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0,0.216 +0.333,0.304,0.304,0,0,0,0,0.367,0.571,0.571,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.563 +0.333,0.285,0.285,0,0,0,0,0.434,0.546,0.546,0,0,0.0433 +1,0.571,0.571,0,0,0,0,0.763,0.671,0.671,0,0,0 +1,0.348,0.348,0,0,0,0,0.521,0.554,0.554,0,0,0 +1,0.184,0.184,0,0,0,0,0.455,0.514,0.514,0,0,0.0884 +1,0.0999,0.0999,0,0,0,0,0.381,0.504,0.504,0,0,0.0433 +1,0.0583,0.0583,0,0,0,0,0.308,0.477,0.477,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.305,0.467,0.467,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0154 +1,0.148,0.148,0,0,0,0,0.33,0.496,0.496,0,0,0.389 +0.667,0.179,0.179,0,0,0,0,0.345,0.521,0.521,0,0,0.382 +1,0.456,0.456,0,0,0,0,0.376,0.642,0.642,0,0,0.148 +0.667,0.187,0.187,0,0,0,0,0.257,0.526,0.526,0,0,0.123 +0.667,0.183,0.183,0,0,0,0,0.26,0.526,0.526,0,0,0.612 +0.333,0.177,0.177,0,0,0,0,0.264,0.531,0.531,0,0,0.221 +0.333,0.172,0.172,0,0,0,0,0.26,0.536,0.536,0,0,0.459 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0.0866 +0.333,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0,0 +0.333,0.304,0.304,0,0,0,0,0.367,0.571,0.571,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.333,0.342,0.342,0,0,0,0,0.419,0.561,0.561,0,0,0.173 +0.333,0.285,0.285,0,0,0,0,0.434,0.546,0.546,0,0,0.303 +0.667,0.397,0.397,0,0,0,0,0.595,0.604,0.604,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.128 +1,0.148,0.148,0,0,0,0,0.33,0.496,0.496,0,0,0.111 +1,0.308,0.308,0,0,0,0,0.432,0.574,0.574,0,0,0.177 +1,0.456,0.456,0,0,0,0,0.376,0.642,0.642,0,0,0.204 +1,0.461,0.461,0.267,0,0,0,0.254,0.642,0.642,0,0,0.137 +0.667,0.315,0.315,0,0,0,0,0.263,0.584,0.584,0,0,0.173 +0.667,0.303,0.303,0,0,0,0,0.27,0.594,0.594,0,0,0 +0.333,0.172,0.172,0,0,0,0,0.26,0.536,0.536,0,0,0.13 +0.333,0.171,0.171,0,0,0,0,0.275,0.536,0.536,0,0,0.13 +0.333,0.175,0.175,0,0,0,0,0.286,0.531,0.531,0,0,0.179 +0.667,0.341,0.341,0,0,0.103,0,0.322,0.614,0.614,0,0,0.0433 +1,0.618,0.618,0,0,0.379,0.767,0.431,0.716,0.716,0,0.243,0.0866 +0.667,0.558,0.558,0,0,0,0,0.477,0.674,0.674,0,0.739,0.0866 +0.667,0.653,0.653,0,0,0,0,0.55,0.683,0.683,0,0.199,0.13 +0.667,0.635,0.635,0,0,0,0,0.58,0.654,0.654,0,0,0.0433 +0.667,0.519,0.519,0,0,0,0,0.609,0.624,0.624,0,0,0.231 +1,0.397,0.397,0,0,0,0,0.595,0.604,0.604,0,0,0.398 +1,0.199,0.199,0,0,0,0,0.389,0.511,0.511,0,0,0.0866 +1,0.117,0.117,0,0,0,0,0.356,0.492,0.492,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.319,0.487,0.487,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.119 +1,0.247,0.247,0,0,0,0,0.403,0.524,0.524,0,0,0.258 +0.667,0.179,0.179,0,0,0,0,0.345,0.521,0.521,0,0,0.25 +0.667,0.321,0.321,0,0,0,0,0.337,0.584,0.584,0,0,0.202 +0.667,0.324,0.324,0,0,0,0,0.255,0.584,0.584,0,0,0.353 +0.667,0.315,0.315,0,0,0,0,0.263,0.584,0.584,0,0,0.13 +0.667,0.303,0.303,0,0,0,0,0.27,0.594,0.594,0,0,0.0866 +0.667,0.294,0.294,0,0,0,0,0.263,0.604,0.604,0,0,0.109 +0.667,0.292,0.292,0,0,0,0,0.292,0.604,0.604,0,0,0.169 +0.333,0.175,0.175,0,0,0,0,0.286,0.531,0.531,0,0,0.216 +0.333,0.195,0.195,0,0,0.483,0.133,0.29,0.541,0.541,0,0,0.13 +0.333,0.239,0.239,0,0,0,0.633,0.316,0.551,0.551,0,0.177,0.13 +0.333,0.304,0.304,0.5,0,0,0,0.367,0.571,0.571,0,0.341,0.26 +0.333,0.352,0.352,0.583,0,0,0,0.404,0.576,0.576,0,0.421,0.128 +0.667,0.635,0.635,0,0,0,0,0.58,0.654,0.654,0,0.631,0 +0.667,0.285,0.285,0,0,0,0,0.434,0.546,0.546,0,0.0975,0.0866 +0.667,0.224,0.224,0,0,0,0,0.426,0.536,0.536,0,0,0.308 +0.667,0.199,0.199,0,0,0,0,0.389,0.511,0.511,0,0,0.398 +1,0.117,0.117,0,0,0,0,0.356,0.492,0.492,0,0,0.191 +1,0.0749,0.0749,0,0,0,0,0.319,0.487,0.487,0,0,0.168 +1,0.0583,0.0583,0,0,0,0,0.308,0.477,0.477,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.308,0.472,0.472,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.367,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.148,0.148,0.717,0,0,0,0.33,0.496,0.496,0,0,0 +1,0.179,0.179,0,0,0,0,0.345,0.521,0.521,0,0,0.15 +0.667,0.185,0.185,0,0,0,0,0.297,0.526,0.526,0,0,0 +0.667,0.187,0.187,0,0,0,0,0.257,0.526,0.526,0,0,0.216 +0.667,0.183,0.183,0,0,0,0,0.26,0.526,0.526,0,0,0.13 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.175,0.175,0,0,0,0,0.286,0.531,0.531,0,0,0 +0.333,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0 +0.333,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0,0 +0.333,0.304,0.304,0,0,0,0,0.367,0.571,0.571,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.346 +0.333,0.342,0.342,0,0,0,0,0.419,0.561,0.561,0,0,0.0433 +0.333,0.285,0.285,0,0,0,0,0.434,0.546,0.546,0,0,0.303 +0.667,0.397,0.397,0,0,0,0,0.595,0.604,0.604,0,0,0 +0.667,0.348,0.348,0,0,0,0,0.521,0.554,0.554,0,0,0 +1,0.117,0.117,0,0,0,0,0.356,0.492,0.492,0,0,0.115 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.367,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0823,0.0823,0.167,0,0,0,0.305,0.477,0.477,0,0,0.0171 +1,0.247,0.247,0,0,0,0,0.403,0.524,0.524,0,0,0.59 +1,0.308,0.308,0,0,0,0,0.432,0.574,0.574,0,0,0.142 +0.667,0.321,0.321,0,0,0,0,0.337,0.584,0.584,0,0,0.648 +0.667,0.324,0.324,0,0,0,0,0.255,0.584,0.584,0,0,0.223 +0.333,0.183,0.183,0,0,0,0,0.26,0.526,0.526,0,0,0.0866 +0.333,0.177,0.177,0,0,0,0,0.264,0.531,0.531,0,0,0.101 +0.667,0.294,0.294,0,0,0,0,0.263,0.604,0.604,0,0,0.0433 +0.333,0.171,0.171,0,0,0,0,0.275,0.536,0.536,0,0,0 +0.333,0.175,0.175,0,0,0,0,0.286,0.531,0.531,0,0,0.0433 +0.333,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0.0866 +0.333,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0,0.26 +0.333,0.304,0.304,0,0,0,0,0.367,0.571,0.571,0,0,0.0866 +0.667,0.653,0.653,0,0,0,0,0.55,0.683,0.683,0,0,0.173 +0.333,0.342,0.342,0,0,0,0,0.419,0.561,0.561,0,0,0 +0.333,0.285,0.285,0,0,0,0,0.434,0.546,0.546,0,0,0 +0.333,0.224,0.224,0,0,0,0,0.426,0.536,0.536,0,0,0.232 +0.333,0.199,0.199,0,0,0,0,0.389,0.511,0.511,0,0,0.252 +0.667,0.117,0.117,0,0,0,0,0.356,0.492,0.492,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0168 +1,0.308,0.308,0,0,0,0,0.432,0.574,0.574,0,0,0.354 +0.667,0.185,0.185,0,0,0,0,0.297,0.526,0.526,0,0,0 +0.667,0.187,0.187,0,0,0,0,0.257,0.526,0.526,0,0,0 +0.667,0.183,0.183,0.367,0,0,0,0.26,0.526,0.526,0,0,0 +0.667,0.177,0.177,0.167,0,0,0,0.264,0.531,0.531,0,0,0 +0.667,0.294,0.294,0,0,0,0,0.263,0.604,0.604,0,0,0.216 +0.667,0.292,0.292,0,0,0,0,0.292,0.604,0.604,0,0,0.0433 +0.333,0.175,0.175,0,0,0,0,0.286,0.531,0.531,0,0,0.173 +0.333,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0.26 +0.333,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0,0 +0.667,0.304,0.304,0,0,0,0,0.367,0.571,0.571,0,0,0.303 +0.667,0.352,0.352,0,0,0,0,0.404,0.576,0.576,0,0,0.0866 +0.667,0.342,0.342,0,0,0,0,0.419,0.561,0.561,0,0,0.13 +0.667,0.285,0.285,0,0,0,0,0.434,0.546,0.546,0,0,0.0866 +0.667,0.224,0.224,0,0,0,0,0.426,0.536,0.536,0,0,0.0157 +1,0.348,0.348,0,0,0,0,0.521,0.554,0.554,0,0,0.314 +1,0.184,0.184,0,0,0,0,0.455,0.514,0.514,0,0,0.269 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.148,0.148,0.367,0,0.483,0.25,0.33,0.496,0.496,0,0,0.0915 +0.667,0.308,0.308,1,0.45,0,0.783,0.432,0.574,0.574,0.624,0.427,0 +0.667,0.321,0.321,1,0.6,0,0,0.337,0.584,0.584,0.118,0.268,0 +0.667,0.324,0.324,0.1,0,0.483,0.25,0.255,0.584,0.584,0,0.181,0.0433 +0.667,0.315,0.315,0,0,0,0.517,0.263,0.584,0.584,0,0.492,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0 +0.333,0.239,0.239,0,0,0,0,0.316,0.551,0.551,0,0,0 +0.667,0.558,0.558,0,0,0,0,0.477,0.674,0.674,0,0,0 +0.667,0.653,0.653,0,0,0,0,0.55,0.683,0.683,0,0,0.0866 +0.667,0.635,0.635,0,0,0,0,0.58,0.654,0.654,0,0,0.0866 +0.667,0.519,0.519,0,0,0,0,0.609,0.624,0.624,0,0,0.26 +0.667,0.397,0.397,0,0,0,0,0.595,0.604,0.604,0,0,0.0433 +0.667,0.348,0.348,0,0,0,0,0.521,0.554,0.554,0,0,0.13 +0.667,0.117,0.117,0,0,0,0,0.356,0.492,0.492,0,0,0.0433 +0.667,0.0749,0.0749,0,0,0,0,0.319,0.487,0.487,0,0,0.0152 +1,0.0583,0.0583,0,0,0,0,0.308,0.477,0.477,0,0,0.156 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.115 +1,0.148,0.148,0,0,0,0,0.33,0.496,0.496,0,0,0.163 +1,0.308,0.308,0.533,0,0,0,0.432,0.574,0.574,0,0,0.0927 +0.667,0.185,0.185,0,0,0,0,0.297,0.526,0.526,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.102 +0.333,0.183,0.183,0,0,0,0,0.26,0.526,0.526,0,0,0.511 +0.333,0.177,0.177,0,0,0,0,0.264,0.531,0.531,0,0,0.0866 +0.333,0.172,0.172,0,0,0,0,0.26,0.536,0.536,0,0,0 +0.333,0.171,0.171,0,0,0,0,0.275,0.536,0.536,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.236 +0.667,0.195,0.195,0,0,0,0,0.29,0.541,0.541,0,0,0.173 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.333,0.285,0.285,0,0,0,0,0.434,0.546,0.546,0,0,0 +0.333,0.224,0.224,0,0,0,0,0.426,0.536,0.536,0,0,0.0152 +0.667,0.348,0.348,0,0.45,0,0,0.521,0.554,0.554,0.54,0,0.0911 +0.667,0.184,0.184,0,0.883,0,0,0.455,0.514,0.514,0.424,0,0.0433 +0.667,0.0749,0.0749,0,0.517,0,0,0.358,0.533,0.533,0.145,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.344,0.514,0.514,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.151,0.151,0.583,0,0,0,0.372,0.545,0.545,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.577,0.577,0,0,0 +1,0.333,0.333,0,0,0,0,0.403,0.697,0.697,0,0,0 +1,0.34,0.34,0,0,0,0,0.3,0.697,0.697,0,0,0.216 +1,0.472,0.472,0,0,0,0,0.336,0.811,0.811,0,0,0.27 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0,0.05,0.05,0.267,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.179,0.179,0,0,0,0,0.302,0.595,0.595,0,0,0.216 +0.333,0.183,0.183,0,0,0,0,0.316,0.589,0.589,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.321,0.602,0.602,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.354,0.614,0.614,0,0,0.0866 +0.667,0.602,0.602,0,0.0833,0,0,0.58,0.81,0.81,0.554,0,0 +0.667,0.69,0.69,0,1,0,0,0.673,0.823,0.823,0.525,0,0.0866 +0.667,0.644,0.644,0,0.283,0,0,0.711,0.785,0.785,0.67,0,0.216 +0.667,0.509,0.509,0.75,0,0,0,0.748,0.747,0.747,0.541,0,0 +0.667,0.389,0.389,0.0833,0,0,0,0.729,0.722,0.722,0,0,0.239 +0.667,0.345,0.345,0,0,0,0,0.636,0.659,0.659,0,0,0.26 +0.667,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.545,0.545,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.577,0.577,0,0,0 +1,0.333,0.333,0,0,0,0,0.403,0.697,0.697,0,0,0.14 +0.667,0.34,0.34,0,0,0,0,0.3,0.697,0.697,0,0,0.0433 +0.333,0.191,0.191,0,0,0,0,0.284,0.583,0.583,0,0,0.173 +0.333,0.185,0.185,0,0,0,0,0.288,0.589,0.589,0,0,0.0866 +0.333,0.18,0.18,0,0,0,0,0.284,0.595,0.595,0,0,0.216 +0.333,0.179,0.179,0,0,0,0,0.302,0.595,0.595,0,0,0.216 +0.333,0.183,0.183,0,0,0,0,0.316,0.589,0.589,0,0,0.0866 +0.333,0.206,0.206,0,0,0,0,0.321,0.602,0.602,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0.5,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.333,0.37,0.37,0.05,0,0,0,0.465,0.646,0.646,0,0,0.216 +0.333,0.347,0.347,0,0,0,0,0.484,0.627,0.627,0,0,0 +0.667,0.509,0.509,0,0,0,0,0.748,0.747,0.747,0,0,0 +1,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0.14,0,0.346 +1,0.345,0.345,0,0.833,0,0,0.636,0.659,0.659,0.788,0,0.13 +1,0.184,0.184,0,0.533,0,0,0.552,0.609,0.609,0,0,0.202 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.101 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.545,0.545,0,0,0 +1,0.183,0.183,0.25,0,0.483,0.633,0.391,0.577,0.577,0,0.229,0 +1,0.333,0.333,0.3,0,0,1,0.403,0.697,0.697,0,0.207,0 +0.667,0.195,0.195,0,0,0,0.0167,0.279,0.583,0.583,0,0,0.0433 +0.667,0.191,0.191,0,0,0,0,0.284,0.583,0.583,0,0,0.0866 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.606 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.183,0.183,0.267,0,0,0,0.316,0.589,0.589,0,0,0.0433 +0.667,0.362,0.362,0,0,0,0,0.384,0.735,0.735,0,0,0 +0.667,0.461,0.461,0,0,0,0,0.449,0.76,0.76,0,0,0 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0.303 +0.333,0.37,0.37,0,0,0,0,0.465,0.646,0.646,0,0,0.173 +0.333,0.347,0.347,0.5,0,0,0,0.484,0.627,0.627,0,0,0.317 +0.667,0.509,0.509,0.617,0,0,0,0.748,0.747,0.747,0,0,0 +0.667,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0,0,0.216 +1,0.345,0.345,0,0,0,0,0.636,0.659,0.659,0,0,0.542 +1,0.184,0.184,0,0,0,0,0.552,0.609,0.609,0,0,0.0908 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0873 +1,0.0583,0.0583,0,0,0,0,0.344,0.52,0.52,0,0,0.145 +1,0.05,0.05,0,0,0,0,0.344,0.514,0.514,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.577,0.577,0,0,0.221 +1,0.474,0.474,0.75,0,0,0,0.475,0.811,0.811,0,0,0.152 +1,0.485,0.485,0.0833,0,0,0,0.322,0.811,0.811,0,0,0.123 +0.667,0.331,0.331,0,0,0,0,0.31,0.697,0.697,0,0,0.241 +0.667,0.319,0.319,0,0,0,0,0.319,0.71,0.71,0,0,0.213 +1,0.44,0.44,0,0,0,0,0.336,0.849,0.849,0,0,0.521 +1,0.436,0.436,0,0,0,0,0.392,0.849,0.849,0,0,0.507 +0.667,0.316,0.316,0,0,0.483,0.633,0.375,0.71,0.71,0,0.196,0.264 +0.667,0.362,0.362,0,0,0,0.75,0.384,0.735,0.735,0,0.44,0.0866 +0.667,0.461,0.461,0,0,0,0,0.449,0.76,0.76,0,0.498,0.0433 +0.667,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0.346 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.279,0.279,0,0,0,0,0.503,0.608,0.608,0,0,0.557 +1,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0,0,0 +1,0.345,0.345,0,0,0,0,0.636,0.659,0.659,0,0,0 +1,0.184,0.184,0,0,0,0,0.552,0.609,0.609,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0517,0.0517,0,0,0,0,0.326,0.514,0.514,0,0,0.15 +1,0.117,0.117,0,0,0,0,0.422,0.571,0.571,0,0,0.172 +1,0.253,0.253,0,0,0,0,0.487,0.622,0.622,0,0,0.12 +0.667,0.316,0.316,0.55,0,0,0,0.524,0.685,0.685,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.346 +0.333,0.191,0.191,0,0,0,0,0.284,0.583,0.583,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.288,0.589,0.589,0,0,0 +0.333,0.18,0.18,0,0,0.483,0.383,0.284,0.595,0.595,0,0.0637,0 +0.333,0.179,0.179,0,0,0,0.433,0.302,0.595,0.595,0,0.0858,0.26 +0,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.333,0.206,0.206,0.0167,0,0,0,0.321,0.602,0.602,0,0,0.0433 +0.333,0.256,0.256,0,0,0,0,0.354,0.614,0.614,0,0,0.0433 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0.0866 +0.667,0.69,0.69,0,0,0,0,0.673,0.823,0.823,0,0,0.0866 +0.667,0.347,0.347,0,0,0,0,0.484,0.627,0.627,0,0,0.389 +0.667,0.279,0.279,0,0,0,0,0.503,0.608,0.608,0,0,0.173 +0.667,0.22,0.22,0,0,0,0,0.493,0.595,0.595,0,0,0.0433 +1,0.493,0.493,0,0,0,0,0.825,0.755,0.755,0,0,0.128 +1,0.184,0.184,0,0,0,0,0.552,0.609,0.609,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +1,0.0517,0.0517,0,0,0,0,0.326,0.514,0.514,0,0,0 +1,0.0836,0.0836,0,0,0,0,0.34,0.52,0.52,0,0,0.146 +0.667,0.151,0.151,0,0,0,0,0.372,0.545,0.545,0,0,0.366 +1,0.316,0.316,0,0,0,0,0.524,0.685,0.685,0,0,0.521 +1,0.333,0.333,0,0,0,0,0.403,0.697,0.697,0,0,0.364 +1,0.485,0.485,0,0,0,0,0.322,0.811,0.811,0,0,0.149 +0.667,0.331,0.331,0,0,0,0,0.31,0.697,0.697,0,0,0 +0.667,0.319,0.319,0,0,0,0,0.319,0.71,0.71,0,0,0.0433 +0.667,0.31,0.31,0,0,0,0,0.31,0.722,0.722,0,0,0.0433 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0 +0.333,0.37,0.37,0,0,0,0,0.465,0.646,0.646,0,0,0 +0.333,0.347,0.347,0,0,0,0,0.484,0.627,0.627,0,0,0 +0.333,0.279,0.279,0,0,0,0,0.503,0.608,0.608,0,0,0.13 +0.667,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0,0,0.0433 +1,0.198,0.198,0,0,0,0,0.447,0.564,0.564,0,0,0.0866 +1,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0836,0.0836,0.25,0,0,0,0.34,0.52,0.52,0,0,0.305 +1,0.151,0.151,1,0,0,0,0.372,0.545,0.545,0,0,0 +1,0.316,0.316,0.717,0,0,0,0.524,0.685,0.685,0,0,0.156 +0.667,0.191,0.191,0,0,0,0,0.33,0.583,0.583,0,0,0.0433 +0.667,0.34,0.34,0,0,0,0,0.3,0.697,0.697,0,0,0.512 +0.333,0.191,0.191,0,0,0,0,0.284,0.583,0.583,0,0,0.269 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +0.333,0.18,0.18,0,0,0,0,0.284,0.595,0.595,0,0,0.13 +0.333,0.179,0.179,0,0,0,0,0.302,0.595,0.595,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.563 +0,0.05,0.05,0.833,0,0,0,0.258,0.469,0.469,0,0,0.433 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0 +0.333,0.37,0.37,0,0,0,0,0.465,0.646,0.646,0,0,0 +0.667,0.644,0.644,0,0,0,0,0.711,0.785,0.785,0,0,0.0433 +0.667,0.509,0.509,0,0,0,0,0.748,0.747,0.747,0,0,0.17 +0.667,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0,0,0 +0.667,0.345,0.345,0,0,0,0,0.636,0.659,0.659,0,0,0.127 +1,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.545,0.545,0,0,0 +0.667,0.316,0.316,0,0,0.483,0.55,0.524,0.685,0.685,0,0.117,0 +0.667,0.333,0.333,0,0,0,0,0.403,0.697,0.697,0,0.625,0 +0.667,0.34,0.34,0,0,0,0,0.3,0.697,0.697,0,0.367,0.0642 +0.667,0.331,0.331,0,0,0,0,0.31,0.697,0.697,0,0.468,0.206 +0.667,0.319,0.319,0,0,0,0,0.319,0.71,0.71,0,0.328,0.553 +1,0.44,0.44,0,0,0,0,0.336,0.849,0.849,0,0.304,0.29 +0.667,0.308,0.308,0,0,0,0,0.347,0.722,0.722,0,0.611,0.0168 +0.333,0.183,0.183,0,0,0,0,0.316,0.589,0.589,0,0.81,0 +0.667,0.362,0.362,0,0,0,0,0.384,0.735,0.735,0,0.228,0 +0.333,0.256,0.256,0,0,0,0,0.354,0.614,0.614,0,0.358,0.0866 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0.0866 +0.333,0.37,0.37,0.55,0,0,0,0.465,0.646,0.646,0,0,0.13 +0.333,0.347,0.347,0,0,0,0,0.484,0.627,0.627,0,0,0.606 +0.333,0.279,0.279,0,0,0,0,0.503,0.608,0.608,0,0,0 +0.667,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0,0,0.476 +0.667,0.345,0.345,0,0,0,0,0.636,0.659,0.659,0,0,0.272 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.333,0.333,0,0,0,0,0.403,0.697,0.697,0,0,0 +1,0.485,0.485,0,0,0,0,0.322,0.811,0.811,0,0,0.298 +0.667,0.331,0.331,0.267,0,0,0,0.31,0.697,0.697,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.288,0.589,0.589,0,0,0.0866 +0.333,0.18,0.18,0,0,0,0,0.284,0.595,0.595,0,0,0.0433 +0.333,0.179,0.179,0,0,0,0,0.302,0.595,0.595,0,0,0.216 +0.333,0.183,0.183,0,0,0,0,0.316,0.589,0.589,0,0,0.189 +0.333,0.206,0.206,0,0,0,0,0.321,0.602,0.602,0,0,0.146 +0.333,0.256,0.256,0,0,0,0,0.354,0.614,0.614,0,0,0.265 +0.667,0.602,0.602,0,0,0,0,0.58,0.81,0.81,0,0,0.241 +0.333,0.37,0.37,0,0,0,0,0.465,0.646,0.646,0,0,0.216 +0.333,0.347,0.347,0,0,0,0,0.484,0.627,0.627,0,0,0.13 +0.333,0.279,0.279,0,0,0,0,0.503,0.608,0.608,0,0,0.173 +0.667,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0,0,0 +1,0.493,0.493,0,0,0,0,0.825,0.755,0.755,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.105 +0.667,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.151,0.151,0.867,0,0,0,0.372,0.545,0.545,0,0,0 +0.667,0.316,0.316,0,0,0,0,0.524,0.685,0.685,0,0,0 +0.333,0.191,0.191,0,0,0,0,0.33,0.583,0.583,0,0,0 +0.333,0.195,0.195,0,0,0,0,0.279,0.583,0.583,0,0,0 +0.333,0.191,0.191,0,0,0,0,0.284,0.583,0.583,0,0,0.0866 +0.333,0.185,0.185,0.5,0,0,0,0.288,0.589,0.589,0,0,0.0866 +0.333,0.18,0.18,0.05,0,0,0,0.284,0.595,0.595,0,0,0.0866 +0.333,0.179,0.179,0,0,0,0,0.302,0.595,0.595,0,0,0.563 +0.667,0.316,0.316,0,0,0,0,0.375,0.71,0.71,0,0,0.216 +0.667,0.362,0.362,0,0,0,0,0.384,0.735,0.735,0,0,0.0433 +0.667,0.461,0.461,0,0,0,0,0.449,0.76,0.76,0.149,0,0 +0.333,0.326,0.326,0,0.833,0,0,0.419,0.639,0.639,0.646,0,0.173 +0.333,0.37,0.37,0,1,0,0,0.465,0.646,0.646,0.317,0,0.13 +0.333,0.347,0.347,0,0.0667,0,0,0.484,0.627,0.627,0,0,0 +0.667,0.509,0.509,0,0,0,0,0.748,0.747,0.747,0,0,0.0904 +0.667,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0,0,0.0433 +0.667,0.345,0.345,0,0,0,0,0.636,0.659,0.659,0,0,0.0866 +0.667,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.34,0.507,0.507,0,0,0 +1,0.0517,0.0517,0,0,0,0,0.326,0.514,0.514,0,0,0 +1,0.0836,0.0836,0,0,0,0,0.34,0.52,0.52,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.545,0.545,0,0,0.451 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.206 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.321,0.602,0.602,0,0,0 +0.333,0.256,0.256,0,0.0833,0,0,0.354,0.614,0.614,0.424,0,0.0433 +0.667,0.602,0.602,0.55,1,0.103,0,0.58,0.81,0.81,0.243,0,0 +0.333,0.37,0.37,0,0.283,0.379,0.817,0.465,0.646,0.646,0.709,0.205,0.0433 +0.333,0.347,0.347,0,0,0,0,0.484,0.627,0.627,0,0.288,0.216 +0.667,0.509,0.509,0,0,0,0,0.748,0.747,0.747,0,0.514,0.304 +0.667,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0,0.378,0 +1,0.493,0.493,0,0,0,0,0.825,0.755,0.755,0,0.717,0.303 +1,0.252,0.252,0,0,0,0,0.699,0.679,0.679,0,0.209,0.256 +1,0.0999,0.0999,0,0,0,0,0.459,0.596,0.596,0,0.316,0.22 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0.137,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.151,0.151,0.75,0,0,0,0.372,0.545,0.545,0,0,0.148 +1,0.316,0.316,0.0833,0,0,0,0.524,0.685,0.685,0,0,0.0895 +1,0.333,0.333,0,0,0,0,0.403,0.697,0.697,0,0,0.19 +1,0.485,0.485,0,0,0,0,0.322,0.811,0.811,0,0,0.258 +0.333,0.191,0.191,0,0,0,0,0.284,0.583,0.583,0,0,0.222 +0.333,0.185,0.185,0,0,0,0,0.288,0.589,0.589,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.284,0.595,0.595,0,0,0 +0.333,0.179,0.179,0,0,0,0,0.302,0.595,0.595,0,0,0.419 +0.667,0.316,0.316,0,0,0,0,0.375,0.71,0.71,0,0,0.706 +0.333,0.206,0.206,0.267,0,0,0,0.321,0.602,0.602,0,0,0.0899 +0.333,0.256,0.256,0,0,0,0,0.354,0.614,0.614,0,0,0.0433 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0.303 +0.333,0.37,0.37,0,0,0,0,0.465,0.646,0.646,0,0,0.26 +0.333,0.347,0.347,1,0,0,0,0.484,0.627,0.627,0,0,0.216 +0.667,0.509,0.509,0.967,0,0,0,0.748,0.747,0.747,0,0,0.173 +0.667,0.389,0.389,0,0.583,0,0,0.729,0.722,0.722,0.792,0,0.349 +1,0.493,0.493,0,1,0,0,0.825,0.755,0.755,0,0,0.19 +1,0.117,0.117,0,0.317,0,0,0.405,0.539,0.539,0,0,0.0433 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0517,0.0517,0,0,0,0,0.326,0.514,0.514,0,0,0.152 +1,0.0836,0.0836,0,0,0,0,0.34,0.52,0.52,0,0,0.139 +1,0.151,0.151,0,0,0,0,0.372,0.545,0.545,0,0,0.11 +1,0.183,0.183,0,0,0,0,0.391,0.577,0.577,0,0,0.327 +1,0.333,0.333,0,0,0,0,0.403,0.697,0.697,0,0,0.0653 +0.667,0.195,0.195,0,0,0,0,0.279,0.583,0.583,0,0,0.426 +1,0.472,0.472,0,0,0,0,0.336,0.811,0.811,0,0,0.303 +0.667,0.319,0.319,0,0,0,0,0.319,0.71,0.71,0,0,0.216 +0.667,0.31,0.31,0,0,0,0,0.31,0.722,0.722,0,0,0.304 +0.333,0.179,0.179,0,0,0,0,0.302,0.595,0.595,0,0,0 +0.333,0.183,0.183,0,0,0,0,0.316,0.589,0.589,0,0,0.0433 +0.333,0.206,0.206,0,0,0,0,0.321,0.602,0.602,0,0,0.0433 +0.333,0.256,0.256,0,0,0,0,0.354,0.614,0.614,0,0,0.0433 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0.0433 +0.667,0.69,0.69,0,0,0,0,0.673,0.823,0.823,0.103,0,0.0433 +0.667,0.644,0.644,0,0.833,0,0,0.711,0.785,0.785,0.435,0,0.145 +0.667,0.509,0.509,0,0.533,0,0,0.748,0.747,0.747,0,0,0.13 +0.667,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0,0,0.227 +0.333,0.198,0.198,0,0,0,0,0.447,0.564,0.564,0,0,0.281 +1,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0.111 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.143 +1,0.316,0.316,0.55,0,0,0,0.524,0.685,0.685,0,0,0.0794 +0.667,0.333,0.333,0,0,0,0,0.403,0.697,0.697,0,0,0.144 +0.667,0.34,0.34,0,0,0,0,0.3,0.697,0.697,0,0,0.146 +0.667,0.331,0.331,0,0,0,0,0.31,0.697,0.697,0,0,0.391 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.144 +0.333,0.18,0.18,0,0,0,0,0.284,0.595,0.595,0,0,0.0866 +0.333,0.179,0.179,0,0,0,0,0.302,0.595,0.595,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.206,0.206,0.25,0,0,0,0.321,0.602,0.602,0,0,0 +0.333,0.256,0.256,0.867,0,0,0,0.354,0.614,0.614,0,0,0.0433 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0.131 +0.667,0.69,0.69,0,0,0,0,0.673,0.823,0.823,0,0,0.447 +0.667,0.644,0.644,0.75,0,0,0,0.711,0.785,0.785,0,0,0 +0.667,0.509,0.509,0.65,0,0,0,0.748,0.747,0.747,0,0,0.122 +0.667,0.22,0.22,0,0,0,0,0.493,0.595,0.595,0,0,0.13 +1,0.198,0.198,0,0,0,0,0.447,0.564,0.564,0,0,0.306 +1,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0.454 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.344,0.52,0.52,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0517,0.0517,0,0,0,0,0.326,0.514,0.514,0,0,0 +1,0.0836,0.0836,0,0,0,0,0.34,0.52,0.52,0,0,0.173 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.175 +0.667,0.191,0.191,0,0,0,0,0.33,0.583,0.583,0,0,0.233 +0.667,0.34,0.34,0,0,0,0,0.3,0.697,0.697,0,0,0.111 +0.667,0.331,0.331,0,0,0,0,0.31,0.697,0.697,0,0,0 +0.333,0.185,0.185,0,0,0,0,0.288,0.589,0.589,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.183,0.183,0,0,0,0,0.316,0.589,0.589,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.321,0.602,0.602,0,0,0.388 +0.667,0.461,0.461,0,0,0,0,0.449,0.76,0.76,0,0,0 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0.13 +0.333,0.37,0.37,0.75,0,0,0,0.465,0.646,0.646,0,0,0.303 +0.667,0.644,0.644,0.0833,0,0,0,0.711,0.785,0.785,0,0,0.26 +0.667,0.509,0.509,0,0,0,0,0.748,0.747,0.747,0,0,0.34 +1,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0,0,0.0433 +1,0.198,0.198,0,0,0,0,0.447,0.564,0.564,0,0,0.13 +1,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0.152 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0716 +1,0.191,0.191,0,0,0,0,0.33,0.583,0.583,0,0,0.136 +1,0.34,0.34,0,0,0,0,0.3,0.697,0.697,0,0,0.174 +1,0.331,0.331,0,0,0,0,0.31,0.697,0.697,0,0,0 +1,0.319,0.319,0,0,0,0,0.319,0.71,0.71,0,0,0.0866 +0.667,0.18,0.18,0,0,0,0,0.284,0.595,0.595,0,0,0.346 +0.667,0.308,0.308,0,0,0,0,0.347,0.722,0.722,0,0,0.292 +0.667,0.316,0.316,0,0,0,0,0.375,0.71,0.71,0,0,0.261 +0.667,0.362,0.362,0,0,0,0,0.384,0.735,0.735,0,0,0.267 +0.333,0.256,0.256,0,0,0,0,0.354,0.614,0.614,0,0,0.173 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.433 +0.333,0.37,0.37,0,0,0.483,0.133,0.465,0.646,0.646,0,0,0.161 +0.667,0.347,0.347,0.5,0,0,0.683,0.484,0.627,0.627,0,0.39,0.13 +0.667,0.279,0.279,0.333,0,0.483,0.133,0.503,0.608,0.608,0,0,0 +0.667,0.22,0.22,0,0,0,0.683,0.493,0.595,0.595,0,0.598,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.333,0.333,0.867,0,0,0,0.403,0.697,0.697,0,0,0 +0.667,0.195,0.195,0,0,0,0,0.279,0.583,0.583,0,0,0 +0.667,0.191,0.191,0,0,0.483,0.133,0.284,0.583,0.583,0,0,0 +0.667,0.319,0.319,0,0,0,0.417,0.319,0.71,0.71,0,0.321,0.0866 +1,0.44,0.44,0,0,0,0,0.336,0.849,0.849,0,0.603,0.13 +0.667,0.308,0.308,0,0.583,0,0,0.347,0.722,0.722,0.842,0,0 +0.667,0.316,0.316,0,1,0,0,0.375,0.71,0.71,0.733,0,0.0866 +0.667,0.362,0.362,0,0.317,0,0,0.384,0.735,0.735,0.359,0,0.0866 +0.333,0.256,0.256,0,0,0,0,0.354,0.614,0.614,0,0,0.13 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0.173 +0.333,0.37,0.37,0,0,0,0,0.465,0.646,0.646,0,0,0.188 +0.667,0.644,0.644,0.5,0,0,0,0.711,0.785,0.785,0,0,0.13 +0.667,0.509,0.509,0.05,0,0,0,0.748,0.747,0.747,0.164,0,0.216 +1,0.559,0.559,0,0.833,0,0,0.965,0.849,0.849,0.75,0,0 +1,0.493,0.493,0,1,0,0,0.825,0.755,0.755,0,0,0.426 +1,0.117,0.117,0,0.0667,0,0,0.405,0.539,0.539,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.55,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.151,0.151,0,0,0,0,0.372,0.545,0.545,0,0,0.254 +1,0.316,0.316,0,0,0,0,0.524,0.685,0.685,0,0,0.0731 +1,0.333,0.333,0,0,0,0,0.403,0.697,0.697,0,0,0.102 +1,0.34,0.34,0,0,0,0,0.3,0.697,0.697,0,0,0.214 +0.667,0.191,0.191,0,0,0,0,0.284,0.583,0.583,0,0,0 +0.667,0.185,0.185,0,0,0,0,0.288,0.589,0.589,0,0,0.346 +0.667,0.18,0.18,0,0,0,0,0.284,0.595,0.595,0,0,0 +0.667,0.179,0.179,0,0,0,0,0.302,0.595,0.595,0,0,0.0866 +0.667,0.183,0.183,0,0,0,0,0.316,0.589,0.589,0,0,0.173 +1,0.518,0.518,0,0,0,0,0.447,0.868,0.868,0,0,0.619 +0.333,0.256,0.256,0,0,0,0,0.354,0.614,0.614,0,0,0.0433 +0.333,0.326,0.326,0.267,0.333,0,0,0.419,0.639,0.639,0.49,0,0.26 +0.667,0.69,0.69,0,1,0,0,0.673,0.823,0.823,0,0,0 +0.667,0.644,0.644,0,0.0333,0,0,0.711,0.785,0.785,0,0,0.216 +0.667,0.509,0.509,0,0,0,0,0.748,0.747,0.747,0,0,0.186 +0.667,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0,0,0.132 +1,0.493,0.493,0,0,0,0,0.825,0.755,0.755,0,0,0.421 +1,0.184,0.184,0,0,0,0,0.552,0.609,0.609,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.267,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.449,0.449,0,0,0,0,0.657,0.792,0.792,0,0,0.111 +1,0.474,0.474,0,0,0,0,0.475,0.811,0.811,0,0,0.225 +0.667,0.34,0.34,0,0,0,0,0.3,0.697,0.697,0,0,0.085 +0.667,0.331,0.331,0,0,0,0,0.31,0.697,0.697,0,0,0.173 +0.667,0.185,0.185,0,0,0,0,0.288,0.589,0.589,0,0,0.0433 +0.667,0.31,0.31,0,0,0,0,0.31,0.722,0.722,0,0,0.195 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.135 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.321,0.602,0.602,0,0,0.13 +0.333,0.256,0.256,0,0,0,0,0.354,0.614,0.614,0,0,0.365 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0.131 +0,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0.336 +0.667,0.644,0.644,0.583,0,0,0,0.711,0.785,0.785,0,0,0.0433 +0.667,0.509,0.509,0,0,0,0,0.748,0.747,0.747,0,0,0.0433 +0.667,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0,0,0.146 +0.667,0.198,0.198,0,0,0,0,0.447,0.564,0.564,0,0,0.205 +1,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0.262 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0.217 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.394 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0517,0.0517,0,0,0,0,0.326,0.514,0.514,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.122 +1,0.253,0.253,0,0,0,0,0.487,0.622,0.622,0,0,0.325 +0.667,0.183,0.183,0,0,0,0,0.391,0.577,0.577,0,0,0.144 +0.667,0.191,0.191,0.25,0,0,0,0.33,0.583,0.583,0,0,0.138 +0.667,0.34,0.34,0.0167,0,0,0,0.3,0.697,0.697,0,0,0.174 +0.667,0.331,0.331,0,0,0.483,0.133,0.31,0.697,0.697,0,0,0.0825 +0.333,0.185,0.185,0.25,0,0,1,0.288,0.589,0.589,0,0.338,0.0433 +0.333,0.18,0.18,0.583,0,0,0.517,0.284,0.595,0.595,0.223,0,0.0866 +0.333,0.179,0.179,0,0.833,0,0,0.302,0.595,0.595,0.355,0,0.173 +0.667,0.316,0.316,0,0.533,0,0,0.375,0.71,0.71,0,0,0.441 +0.667,0.362,0.362,0,0,0,0,0.384,0.735,0.735,0,0,0.426 +0.333,0.256,0.256,0,0,0,0,0.354,0.614,0.614,0,0,0.216 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0.346 +0.333,0.37,0.37,0,0,0,0,0.465,0.646,0.646,0,0,0 +0.333,0.347,0.347,0,0,0,0,0.484,0.627,0.627,0,0,0.338 +0.333,0.279,0.279,0,0,0,0,0.503,0.608,0.608,0,0,0.0866 +0.333,0.22,0.22,0,0,0,0,0.493,0.595,0.595,0,0,0 +1,0.493,0.493,0,0,0,0,0.825,0.755,0.755,0,0,0.157 +1,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0 +1,0.0583,0.0583,0,0,0,0,0.344,0.52,0.52,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0517,0.0517,0,0,0,0,0.326,0.514,0.514,0,0,0.309 +1,0.0836,0.0836,0,0,0,0,0.34,0.52,0.52,0,0,0.354 +1,0.151,0.151,0,0,0,0,0.372,0.545,0.545,0,0,0.439 +1,0.316,0.316,0,0,0,0,0.524,0.685,0.685,0,0,0.352 +0.667,0.333,0.333,0,0,0,0,0.403,0.697,0.697,0,0,0.457 +0.333,0.195,0.195,0,0,0,0,0.279,0.583,0.583,0,0,0.314 +0.333,0.191,0.191,0,0,0,0,0.284,0.583,0.583,0,0,0.146 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0,0.05,0.05,0.5,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.179,0.179,0.617,0,0,0,0.302,0.595,0.595,0,0,0.0866 +0.667,0.183,0.183,0,0,0,0,0.316,0.589,0.589,0,0,0.13 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0.333,0.05,0.05,0.75,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.69,0.69,0.933,0,0,0,0.673,0.823,0.823,0,0,0 +1,0.644,0.644,0,0,0,0,0.711,0.785,0.785,0,0,0 +1,0.509,0.509,0,0,0,0,0.748,0.747,0.747,0,0,0.0918 +1,0.559,0.559,0,0,0,0,0.965,0.849,0.849,0,0,0.343 +1,0.493,0.493,0,0,0,0,0.825,0.755,0.755,0,0,0.357 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.0836,0.0836,0,0,0,0,0.34,0.52,0.52,0,0,0.166 +0.667,0.151,0.151,0,0,0,0,0.372,0.545,0.545,0,0,0.152 +0.667,0.183,0.183,0,0,0,0,0.391,0.577,0.577,0,0,0.259 +0.667,0.191,0.191,0,0,0,0,0.33,0.583,0.583,0,0,0 +0.667,0.34,0.34,0,0,0,0,0.3,0.697,0.697,0,0,0 +0.667,0.331,0.331,0,0,0,0,0.31,0.697,0.697,0,0,0.13 +0.333,0.185,0.185,0,0,0,0,0.288,0.589,0.589,0,0,0.0433 +0.333,0.18,0.18,0.55,0,0,0,0.284,0.595,0.595,0,0,0.346 +0.667,0.308,0.308,0,0,0,0,0.347,0.722,0.722,0,0,0.0433 +0.667,0.316,0.316,0,0.333,0,0,0.375,0.71,0.71,0.595,0,0.216 +0.667,0.362,0.362,0,1,0,0,0.384,0.735,0.735,0.709,0,0.0866 +0.667,0.461,0.461,0,0.0333,0,0,0.449,0.76,0.76,0.884,0,0.0433 +0.667,0.602,0.602,0,0,0,0,0.58,0.81,0.81,0.396,0,0.13 +0.667,0.69,0.69,0,0,0,0,0.673,0.823,0.823,0.613,0,0.13 +0.667,0.644,0.644,0,0,0,0,0.711,0.785,0.785,0.619,0,0.0433 +0.667,0.509,0.509,0,0,0,0,0.748,0.747,0.747,0,0,0 +1,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0,0,0.167 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.117,0.117,0,0,0,0,0.422,0.571,0.571,0,0,0.496 +1,0.253,0.253,0.833,0,0,0,0.487,0.622,0.622,0,0,0.0165 +1,0.316,0.316,0,0,0,0,0.524,0.685,0.685,0,0,0.187 +0.667,0.191,0.191,0,0,0,0,0.33,0.583,0.583,0,0,0.23 +0.667,0.195,0.195,0.25,0,0,0,0.279,0.583,0.583,0,0,0.0433 +0.667,0.331,0.331,1,0,0,0,0.31,0.697,0.697,0,0,0 +0.667,0.319,0.319,0.15,0,0,0,0.319,0.71,0.71,0,0,0.303 +0.667,0.18,0.18,0,0,0,0,0.284,0.595,0.595,0,0,0.0433 +1,0.308,0.308,0,0,0,0,0.347,0.722,0.722,0,0,0.0433 +1,0.316,0.316,0,0,0,0,0.375,0.71,0.71,0,0,0.0433 +0.667,0.362,0.362,0,0,0,0,0.384,0.735,0.735,0,0,0.173 +0.667,0.256,0.256,0,0,0,0,0.354,0.614,0.614,0,0,0.346 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0.13 +0.667,0.69,0.69,0.25,0,0,0,0.673,0.823,0.823,0,0,0.216 +0.667,0.644,0.644,0.567,0.333,0,0,0.711,0.785,0.785,0.53,0,0.0433 +0.667,0.509,0.509,0,1,0,0,0.748,0.747,0.747,0.164,0,0 +1,0.389,0.389,0,0.0333,0,0,0.729,0.722,0.722,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.389 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.0517,0.0517,0,0,0,0,0.326,0.514,0.514,0,0,0.268 +1,0.0836,0.0836,0,0,0,0,0.34,0.52,0.52,0,0,0.0878 +1,0.151,0.151,0,0,0,0,0.372,0.545,0.545,0,0,0.229 +1,0.183,0.183,0,0,0,0,0.391,0.577,0.577,0,0,0.291 +1,0.191,0.191,0,0,0,0,0.33,0.583,0.583,0,0,0.185 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.667,0.191,0.191,0,0,0,0,0.284,0.583,0.583,0,0,0.13 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.179,0.179,0.75,0,0,0,0.302,0.595,0.595,0,0,0 +0.333,0.183,0.183,0.0833,0,0,0,0.316,0.589,0.589,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.321,0.602,0.602,0,0,0.0433 +0.667,0.461,0.461,0,0,0,0,0.449,0.76,0.76,0,0,0.303 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0 +0.333,0.37,0.37,0,0,0,0,0.465,0.646,0.646,0,0,0.173 +0.333,0.347,0.347,0,0,0,0,0.484,0.627,0.627,0,0,0.303 +0.667,0.509,0.509,0,0,0,0,0.748,0.747,0.747,0,0,0.813 +0.667,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0,0,0.173 +0.667,0.198,0.198,0,0,0,0,0.447,0.564,0.564,0,0,0 +0.667,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0.335 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0779 +1,0.183,0.183,0,0,0,0,0.391,0.577,0.577,0,0,0.14 +0.667,0.191,0.191,0,0,0,0,0.33,0.583,0.583,0,0,0.1 +0.667,0.195,0.195,0,0,0,0,0.279,0.583,0.583,0,0,0 +0.667,0.331,0.331,0,0,0,0,0.31,0.697,0.697,0,0,0.436 +0.667,0.319,0.319,0,0,0,0,0.319,0.71,0.71,0,0,0.0866 +0.333,0.18,0.18,0,0,0,0,0.284,0.595,0.595,0,0,0.13 +0.333,0.179,0.179,0,0,0,0,0.302,0.595,0.595,0,0,0.216 +0.333,0.183,0.183,0,0,0,0,0.316,0.589,0.589,0,0,0.0433 +0.667,0.362,0.362,0,0,0,0,0.384,0.735,0.735,0,0,0.13 +0.333,0.256,0.256,0,0,0,0,0.354,0.614,0.614,0,0,0.303 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +0.333,0.37,0.37,0,0,0,0,0.465,0.646,0.646,0,0,0.0433 +0.333,0.347,0.347,0,0,0,0,0.484,0.627,0.627,0,0,0.13 +0.333,0.279,0.279,0.75,0,0,0,0.503,0.608,0.608,0,0,0 +0.667,0.389,0.389,0.367,0,0,0,0.729,0.722,0.722,0,0,0.0433 +1,0.345,0.345,0,0,0,0,0.636,0.659,0.659,0,0,0 +1,0.117,0.117,0,0,0,0,0.405,0.539,0.539,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.0836,0.0836,0,0,0,0,0.34,0.52,0.52,0,0,0.0867 +1,0.253,0.253,0,0,0,0,0.487,0.622,0.622,0,0,0.337 +1,0.449,0.449,0.55,0,0,0,0.657,0.792,0.792,0,0,0 +0.667,0.333,0.333,0,0,0,0,0.403,0.697,0.697,0,0,0.303 +0.667,0.34,0.34,0,0,0,0,0.3,0.697,0.697,0,0,0 +0.667,0.331,0.331,0,0,0,0,0.31,0.697,0.697,0,0,0.249 +0.333,0.185,0.185,0,0,0,0,0.288,0.589,0.589,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.284,0.595,0.595,0,0,0 +0.333,0.179,0.179,0,0,0.483,0.133,0.302,0.595,0.595,0,0,0 +0.333,0.183,0.183,0,0,0,1,0.316,0.589,0.589,0,0.394,0.0433 +0.333,0.206,0.206,0,0,0,1,0.321,0.602,0.602,0,0,0 +0.333,0.256,0.256,0,0,0,0.0667,0.354,0.614,0.614,0,0,0.216 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0.0433 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +0.333,0.347,0.347,0,0,0,0,0.484,0.627,0.627,0,0,0 +0.333,0.279,0.279,0,0,0,0,0.503,0.608,0.608,0,0,0.303 +0.667,0.22,0.22,0,0,0,0,0.493,0.595,0.595,0,0,0.0433 +1,0.345,0.345,0,0,0,0,0.636,0.659,0.659,0,0,0.303 +1,0.184,0.184,0,0,0,0,0.552,0.609,0.609,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.114 +0.667,0.05,0.05,0.5,0,0.483,0.133,0.258,0.469,0.469,0,0,0 +0.667,0.191,0.191,0.05,0,0,0.683,0.33,0.583,0.583,0,0.475,0 +0.667,0.195,0.195,0,0,0,0,0.279,0.583,0.583,0,0,0 +0.333,0.05,0.05,0.25,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.185,0.185,0.3,0,0,0,0.288,0.589,0.589,0,0,0 +0.333,0.18,0.18,0,0,0,0,0.284,0.595,0.595,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.303 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.331 +0.333,0.256,0.256,0,0,0.483,0.633,0.354,0.614,0.614,0,0.151,0 +0.333,0.326,0.326,0,0,0,0.467,0.419,0.639,0.639,0,0.51,0 +0.333,0.37,0.37,0.5,0,0,0,0.465,0.646,0.646,0,0.585,0 +0.333,0.347,0.347,0.333,0.333,0,0,0.484,0.627,0.627,0.582,0.0936,0.234 +0.667,0.509,0.509,0,0.75,0,0,0.748,0.747,0.747,0.184,0,0.196 +0.667,0.389,0.389,0,0,0,0,0.729,0.722,0.722,0,0,0.389 +1,0.345,0.345,0,0,0,0,0.636,0.659,0.659,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.216 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.173 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0.55,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.316,0.316,0,0,0,0,0.524,0.685,0.685,0,0,0.761 +1,0.333,0.333,0,0,0,0,0.403,0.697,0.697,0,0,0.139 +1,0.34,0.34,0,0.333,0,0,0.3,0.697,0.697,0.652,0,0.0969 +0.667,0.191,0.191,0,1,0,0,0.284,0.583,0.583,0,0,0.0433 +0.667,0.185,0.185,0,0.0333,0,0,0.288,0.589,0.589,0,0,0 +0.667,0.31,0.31,0,0,0,0,0.31,0.722,0.722,0,0,0.26 +0.667,0.308,0.308,0,0,0,0,0.347,0.722,0.722,0,0,0.532 +0.667,0.316,0.316,0,0,0,0,0.375,0.71,0.71,0,0,0.433 +0.667,0.362,0.362,0,0,0,0,0.384,0.735,0.735,0,0,0.24 +0.667,0.461,0.461,0,0,0,0,0.449,0.76,0.76,0,0,0.308 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0.357 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0.5,0,0,0,0.258,0.469,0.469,0,0,0.346 +0.333,0.279,0.279,0.05,0,0,0,0.503,0.608,0.608,0,0,0 +0.333,0.22,0.22,0,0,0,0,0.493,0.595,0.595,0,0,0.0433 +0.333,0.05,0.05,0.75,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.117,0.117,0.933,0,0,0,0.405,0.539,0.539,0,0,0 +1,0.0749,0.0749,0,0,0,0,0.358,0.533,0.533,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0433 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.151,0.151,0,0,0,0,0.372,0.545,0.545,0,0,0 +0.667,0.316,0.316,0,0.583,0,0,0.524,0.685,0.685,0.952,0,0 +0.667,0.333,0.333,0,0.783,0,0,0.403,0.697,0.697,0.834,0,0 +0.667,0.34,0.34,0,0,0,0,0.3,0.697,0.697,0.709,0,0.358 +0.667,0.331,0.331,0,0,0.103,0,0.31,0.697,0.697,0.783,0,0.26 +0.667,0.319,0.319,0,0,0.379,0.817,0.319,0.71,0.71,0,0.105,0.0866 +0.667,0.31,0.31,0,0,0,0,0.31,0.722,0.722,0,0.573,0.216 +0.333,0.179,0.179,0,0,0,0,0.302,0.595,0.595,0,0.277,0 +0.667,0.316,0.316,0,0,0,0,0.375,0.71,0.71,0,0.363,0.13 +1,0.518,0.518,0,0,0,0,0.447,0.868,0.868,0,0,0.0866 +1,0.461,0.461,0,0,0,0,0.449,0.76,0.76,0,0,0.173 +1,0.878,0.878,0.25,0,0,0,0.741,0.981,0.981,0,0,0.321 +0.333,0.37,0.37,0.3,0.333,0,0,0.465,0.646,0.646,0.587,0,0.347 +1,0.941,0.941,0,0.75,0,0,0.937,0.943,0.943,0.245,0,0.304 +1,0.738,0.738,0,0,0,0,0.993,0.887,0.887,0,0,0.225 +1,0.559,0.559,0,0,0,0,0.965,0.849,0.849,0,0,0.303 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.13 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.667,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0637 +0.667,0.183,0.183,0,0,0,0,0.391,0.577,0.577,0,0,0.402 +0.667,0.333,0.333,0,0,0,0,0.403,0.697,0.697,0,0,0.134 +0.333,0.195,0.195,0,0,0,0,0.279,0.583,0.583,0,0,0.102 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0,0.05,0.05,0.267,0,0,0,0.258,0.469,0.469,0,0,0.26 +0.667,0.31,0.31,0,0,0,0,0.31,0.722,0.722,0,0,0.594 +0.333,0.179,0.179,0,0,0,0,0.302,0.595,0.595,0,0,0.13 +0.333,0.183,0.183,0,0,0,0,0.316,0.589,0.589,0,0,0 +0.333,0.206,0.206,0,0,0,0,0.321,0.602,0.602,0,0,0 +0.333,0.256,0.256,0,0,0,0,0.354,0.614,0.614,0,0,0.13 +0.333,0.326,0.326,0,0,0,0,0.419,0.639,0.639,0,0,0.173 +0.667,0.69,0.69,0,0,0,0,0.673,0.823,0.823,0,0,0 +0.667,0.644,0.644,0,0,0,0,0.711,0.785,0.785,0,0,0.13 +0.667,0.509,0.509,0,0,0,0,0.748,0.747,0.747,0,0,0.216 +1,0.559,0.559,0,0,0.483,0.633,0.965,0.849,0.849,0,0.142,0.216 +1,0.198,0.198,0,0,0,0.467,0.447,0.564,0.564,0.166,0.485,0 +1,0.117,0.117,0,0.833,0,0,0.405,0.539,0.539,0.477,0.0579,0.0433 +1,0.0749,0.0749,0,0.25,0,0,0.358,0.533,0.533,0.58,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +1,0.183,0.183,0,0,0,0,0.391,0.577,0.577,0,0,0 +1,0.333,0.333,0,0,0,0,0.403,0.697,0.697,0,0,0.114 +1,0.34,0.34,0,0,0,0,0.3,0.697,0.697,0,0,0.151 +0.333,0.191,0.191,0,0,0,0,0.284,0.583,0.583,0,0,0.442 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0.0866 +0,0.05,0.05,0,0,0,0,0.258,0.469,0.469,0,0,0 +0.333,0.179,0.179,0,0,0.483,0.133,0.302,0.595,0.595,0,0,0.0433 +0.333,0.183,0.183,0,0,0,0.417,0.316,0.589,0.589,0,0.278,0 +0.333,0.206,0.206,0,0,0,0,0.321,0.602,0.602,0,0.429,0 +0.333,0.256,0.256,0,0,0,0,0.354,0.614,0.614,0,0.298,0.284 +0.667,0.602,0.602,0,0,0,0,0.58,0.81,0.81,0,0.564,0.26 +0.667,0.69,0.69,0,0,0,0,0.673,0.823,0.823,0.114,0.28,0.173 +0.667,0.644,0.644,0,0.833,0,0,0.711,0.785,0.785,0.799,0,0.238 +1,0.738,0.738,0.75,0.25,0,0,0.993,0.887,0.887,0.25,0,0.554 +0.667,0.389,0.389,0.367,0,0,0,0.729,0.722,0.722,0,0,0.0866 +0.667,0.198,0.198,0,0,0,0,0.447,0.564,0.564,0,0,0 +1,0.184,0.184,0,0,0,0,0.552,0.609,0.609,0,0,0 diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb index 1c4c851b..7d145af7 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb @@ -1,17 +1,15 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true # Annual constant schedule class ScheduleConstant def initialize(model, sch_name, val = 1.0, schedule_type_limits_name = nil, unavailable_periods: []) - @model = model - @year = model.getYearDescription.assumedYear - @sch_name = sch_name - @val = val - @schedule = nil - @schedule_type_limits_name = schedule_type_limits_name - @unavailable_periods = unavailable_periods - - @schedule = create_schedule() + year = model.getYearDescription.assumedYear + @schedule = create_schedule(model, sch_name, val, year, schedule_type_limits_name, unavailable_periods) end def schedule @@ -20,31 +18,31 @@ def schedule private - def create_schedule() - if @unavailable_periods.empty? - if @val == 1.0 && (@schedule_type_limits_name.nil? || @schedule_type_limits_name == Constants.ScheduleTypeLimitsOnOff) - schedule = @model.alwaysOnDiscreteSchedule - elsif @val == 0.0 && (@schedule_type_limits_name.nil? || @schedule_type_limits_name == Constants.ScheduleTypeLimitsOnOff) - schedule = @model.alwaysOffDiscreteSchedule + def create_schedule(model, sch_name, val, year, schedule_type_limits_name, unavailable_periods) + if unavailable_periods.empty? + if val == 1.0 && (schedule_type_limits_name.nil? || schedule_type_limits_name == Constants.ScheduleTypeLimitsOnOff) + schedule = model.alwaysOnDiscreteSchedule + elsif val == 0.0 && (schedule_type_limits_name.nil? || schedule_type_limits_name == Constants.ScheduleTypeLimitsOnOff) + schedule = model.alwaysOffDiscreteSchedule else - schedule = OpenStudio::Model::ScheduleConstant.new(@model) - schedule.setName(@sch_name) - schedule.setValue(@val) + schedule = OpenStudio::Model::ScheduleConstant.new(model) + schedule.setName(sch_name) + schedule.setValue(val) - Schedule.set_schedule_type_limits(@model, schedule, @schedule_type_limits_name) + Schedule.set_schedule_type_limits(model, schedule, schedule_type_limits_name) end else - schedule = OpenStudio::Model::ScheduleRuleset.new(@model) - schedule.setName(@sch_name) - schedule.defaultDaySchedule.setName(@sch_name + ' default day') + schedule = OpenStudio::Model::ScheduleRuleset.new(model) + schedule.setName(sch_name) + schedule.defaultDaySchedule.setName(sch_name + ' default day') default_day_sch = schedule.defaultDaySchedule default_day_sch.clearValues - default_day_sch.addValue(OpenStudio::Time.new(0, 24, 0, 0), @val) + default_day_sch.addValue(OpenStudio::Time.new(0, 24, 0, 0), val) - Schedule.set_unavailable_periods(schedule, @sch_name, @unavailable_periods, @year) + Schedule.set_unavailable_periods(schedule, sch_name, unavailable_periods, year) - Schedule.set_schedule_type_limits(@model, schedule, @schedule_type_limits_name) + Schedule.set_schedule_type_limits(model, schedule, schedule_type_limits_name) end return schedule @@ -57,21 +55,15 @@ class HourlyByMonthSchedule # weekend_month_by_hour_values must be a 12-element array of 24-element arrays of numbers. def initialize(model, sch_name, weekday_month_by_hour_values, weekend_month_by_hour_values, schedule_type_limits_name = nil, normalize_values = true, unavailable_periods: nil) - @model = model - @year = model.getYearDescription.assumedYear - @sch_name = sch_name - @schedule = nil + year = model.getYearDescription.assumedYear @weekday_month_by_hour_values = validate_values(weekday_month_by_hour_values, 12, 24) @weekend_month_by_hour_values = validate_values(weekend_month_by_hour_values, 12, 24) - @schedule_type_limits_name = schedule_type_limits_name - @unavailable_periods = unavailable_periods - if normalize_values @maxval = calc_max_val() else @maxval = 1.0 end - @schedule = create_schedule() + @schedule = create_schedule(model, sch_name, year, schedule_type_limits_name, unavailable_periods) end def calc_design_level(val) @@ -121,26 +113,26 @@ def calc_max_val() return maxval end - def create_schedule() - day_startm = Schedule.day_start_months(@year) - day_endm = Schedule.day_end_months(@year) + def create_schedule(model, sch_name, year, schedule_type_limits_name, unavailable_periods) + day_startm = Schedule.day_start_months(year) + day_endm = Schedule.day_end_months(year) time = [] for h in 1..24 time[h] = OpenStudio::Time.new(0, h, 0, 0) end - schedule = OpenStudio::Model::ScheduleRuleset.new(@model) - schedule.setName(@sch_name) - schedule.defaultDaySchedule.setName(@sch_name + ' default day') + schedule = OpenStudio::Model::ScheduleRuleset.new(model) + schedule.setName(sch_name) + schedule.defaultDaySchedule.setName(sch_name + ' default day') prev_wkdy_vals = nil prev_wkdy_rule = nil prev_wknd_vals = nil prev_wknd_rule = nil for m in 1..12 - date_s = OpenStudio::Date::fromDayOfYear(day_startm[m - 1], @year) - date_e = OpenStudio::Date::fromDayOfYear(day_endm[m - 1], @year) + date_s = OpenStudio::Date::fromDayOfYear(day_startm[m - 1], year) + date_e = OpenStudio::Date::fromDayOfYear(day_endm[m - 1], year) wkdy_vals = [] wknd_vals = [] @@ -156,9 +148,9 @@ def create_schedule() elsif wkdy_vals == wknd_vals # Alldays wkdy_rule = OpenStudio::Model::ScheduleRule.new(schedule) - wkdy_rule.setName(@sch_name + " #{Schedule.allday_name} ruleset#{m}") + wkdy_rule.setName(sch_name + " #{Schedule.allday_name} ruleset#{m}") wkdy = wkdy_rule.daySchedule - wkdy.setName(@sch_name + " #{Schedule.allday_name}#{m}") + wkdy.setName(sch_name + " #{Schedule.allday_name}#{m}") previous_value = wkdy_vals[1] for h in 1..24 next if (h != 24) && (wkdy_vals[h + 1] == previous_value) @@ -175,9 +167,9 @@ def create_schedule() else # Weekdays wkdy_rule = OpenStudio::Model::ScheduleRule.new(schedule) - wkdy_rule.setName(@sch_name + " #{Schedule.weekday_name} ruleset#{m}") + wkdy_rule.setName(sch_name + " #{Schedule.weekday_name} ruleset#{m}") wkdy = wkdy_rule.daySchedule - wkdy.setName(@sch_name + " #{Schedule.weekday_name}#{m}") + wkdy.setName(sch_name + " #{Schedule.weekday_name}#{m}") previous_value = wkdy_vals[1] for h in 1..24 next if (h != 24) && (wkdy_vals[h + 1] == previous_value) @@ -192,9 +184,9 @@ def create_schedule() # Weekends wknd_rule = OpenStudio::Model::ScheduleRule.new(schedule) - wknd_rule.setName(@sch_name + " #{Schedule.weekend_name} ruleset#{m}") + wknd_rule.setName(sch_name + " #{Schedule.weekend_name} ruleset#{m}") wknd = wknd_rule.daySchedule - wknd.setName(@sch_name + " #{Schedule.weekend_name}#{m}") + wknd.setName(sch_name + " #{Schedule.weekend_name}#{m}") previous_value = wknd_vals[1] for h in 1..24 next if (h != 24) && (wknd_vals[h + 1] == previous_value) @@ -212,9 +204,9 @@ def create_schedule() prev_wknd_vals = wknd_vals end - Schedule.set_unavailable_periods(schedule, @sch_name, @unavailable_periods, @year) + Schedule.set_unavailable_periods(schedule, sch_name, unavailable_periods, year) - Schedule.set_schedule_type_limits(@model, schedule, @schedule_type_limits_name) + Schedule.set_schedule_type_limits(model, schedule, schedule_type_limits_name) return schedule end @@ -226,22 +218,16 @@ class HourlyByDaySchedule # weekend_day_by_hour_values must be a 365-element array of 24-element arrays of numbers. def initialize(model, sch_name, weekday_day_by_hour_values, weekend_day_by_hour_values, schedule_type_limits_name = nil, normalize_values = true, unavailable_periods: nil) - @model = model - @year = model.getYearDescription.assumedYear - @sch_name = sch_name - @schedule = nil - @num_days = Constants.NumDaysInYear(@year) - @weekday_day_by_hour_values = validate_values(weekday_day_by_hour_values, @num_days, 24) - @weekend_day_by_hour_values = validate_values(weekend_day_by_hour_values, @num_days, 24) - @schedule_type_limits_name = schedule_type_limits_name - @unavailable_periods = unavailable_periods - + year = model.getYearDescription.assumedYear + num_days = Constants.NumDaysInYear(year) + @weekday_day_by_hour_values = validate_values(weekday_day_by_hour_values, num_days, 24) + @weekend_day_by_hour_values = validate_values(weekend_day_by_hour_values, num_days, 24) if normalize_values @maxval = calc_max_val() else @maxval = 1.0 end - @schedule = create_schedule() + @schedule = create_schedule(model, sch_name, year, num_days, schedule_type_limits_name, unavailable_periods) end def calc_design_level(val) @@ -291,23 +277,23 @@ def calc_max_val() return maxval end - def create_schedule() + def create_schedule(model, sch_name, year, num_days, schedule_type_limits_name, unavailable_periods) time = [] for h in 1..24 time[h] = OpenStudio::Time.new(0, h, 0, 0) end - schedule = OpenStudio::Model::ScheduleRuleset.new(@model) - schedule.setName(@sch_name) - schedule.defaultDaySchedule.setName(@sch_name + ' default day') + schedule = OpenStudio::Model::ScheduleRuleset.new(model) + schedule.setName(sch_name) + schedule.defaultDaySchedule.setName(sch_name + ' default day') prev_wkdy_vals = nil prev_wkdy_rule = nil prev_wknd_vals = nil prev_wknd_rule = nil - for d in 1..@num_days - date_s = OpenStudio::Date::fromDayOfYear(d, @year) - date_e = OpenStudio::Date::fromDayOfYear(d, @year) + for d in 1..num_days + date_s = OpenStudio::Date::fromDayOfYear(d, year) + date_e = OpenStudio::Date::fromDayOfYear(d, year) wkdy_vals = [] wknd_vals = [] @@ -323,9 +309,9 @@ def create_schedule() elsif wkdy_vals == wknd_vals # Alldays wkdy_rule = OpenStudio::Model::ScheduleRule.new(schedule) - wkdy_rule.setName(@sch_name + " #{Schedule.allday_name} ruleset#{d}") + wkdy_rule.setName(sch_name + " #{Schedule.allday_name} ruleset#{d}") wkdy = wkdy_rule.daySchedule - wkdy.setName(@sch_name + " #{Schedule.allday_name}#{d}") + wkdy.setName(sch_name + " #{Schedule.allday_name}#{d}") previous_value = wkdy_vals[1] for h in 1..24 next if (h != 24) && (wkdy_vals[h + 1] == previous_value) @@ -342,9 +328,9 @@ def create_schedule() else # Weekdays wkdy_rule = OpenStudio::Model::ScheduleRule.new(schedule) - wkdy_rule.setName(@sch_name + " #{Schedule.weekday_name} ruleset#{d}") + wkdy_rule.setName(sch_name + " #{Schedule.weekday_name} ruleset#{d}") wkdy = wkdy_rule.daySchedule - wkdy.setName(@sch_name + " #{Schedule.weekday_name}#{d}") + wkdy.setName(sch_name + " #{Schedule.weekday_name}#{d}") previous_value = wkdy_vals[1] for h in 1..24 next if (h != 24) && (wkdy_vals[h + 1] == previous_value) @@ -359,9 +345,9 @@ def create_schedule() # Weekends wknd_rule = OpenStudio::Model::ScheduleRule.new(schedule) - wknd_rule.setName(@sch_name + " #{Schedule.weekend_name} ruleset#{d}") + wknd_rule.setName(sch_name + " #{Schedule.weekend_name} ruleset#{d}") wknd = wknd_rule.daySchedule - wknd.setName(@sch_name + " #{Schedule.weekend_name}#{d}") + wknd.setName(sch_name + " #{Schedule.weekend_name}#{d}") previous_value = wknd_vals[1] for h in 1..24 next if (h != 24) && (wknd_vals[h + 1] == previous_value) @@ -379,9 +365,9 @@ def create_schedule() prev_wknd_vals = wknd_vals end - Schedule.set_unavailable_periods(schedule, @sch_name, @unavailable_periods, @year) + Schedule.set_unavailable_periods(schedule, sch_name, unavailable_periods, year) - Schedule.set_schedule_type_limits(@model, schedule, @schedule_type_limits_name) + Schedule.set_schedule_type_limits(model, schedule, schedule_type_limits_name) return schedule end @@ -395,20 +381,10 @@ class MonthWeekdayWeekendSchedule def initialize(model, sch_name, weekday_hourly_values, weekend_hourly_values, monthly_values, schedule_type_limits_name = nil, normalize_values = true, begin_month = 1, begin_day = 1, end_month = 12, end_day = 31, unavailable_periods: nil) - @model = model - @year = model.getYearDescription.assumedYear - @sch_name = sch_name - @schedule = nil + year = model.getYearDescription.assumedYear @weekday_hourly_values = Schedule.validate_values(weekday_hourly_values, 24, 'weekday') @weekend_hourly_values = Schedule.validate_values(weekend_hourly_values, 24, 'weekend') @monthly_values = Schedule.validate_values(monthly_values, 12, 'monthly') - @schedule_type_limits_name = schedule_type_limits_name - @begin_month = begin_month - @begin_day = begin_day - @end_month = end_month - @end_day = end_day - @unavailable_periods = unavailable_periods - if normalize_values @weekday_hourly_values = normalize_sum_to_one(@weekday_hourly_values) @weekend_hourly_values = normalize_sum_to_one(@weekend_hourly_values) @@ -419,7 +395,8 @@ def initialize(model, sch_name, weekday_hourly_values, weekend_hourly_values, mo @maxval = 1.0 @schadjust = 1.0 end - @schedule = create_schedule() + @schedule = create_schedule(model, sch_name, year, begin_month, begin_day, end_month, end_day, + schedule_type_limits_name, unavailable_periods) end def calc_design_level_from_daily_kwh(daily_kwh) @@ -489,39 +466,40 @@ def calc_sch_adjust() return 1 / sum_wkdy end - def create_schedule() - month_num_days = Constants.NumDaysInMonths(@year) - month_num_days[@end_month - 1] = @end_day + def create_schedule(model, sch_name, year, begin_month, begin_day, end_month, end_day, + schedule_type_limits_name, unavailable_periods) + month_num_days = Constants.NumDaysInMonths(year) + month_num_days[end_month - 1] = end_day - day_startm = Schedule.day_start_months(@year) - day_startm[@begin_month - 1] += @begin_day - 1 - day_endm = [Schedule.day_start_months(@year), month_num_days].transpose.map { |i| i.reduce(:+) - 1 } + day_startm = Schedule.day_start_months(year) + day_startm[begin_month - 1] += begin_day - 1 + day_endm = [Schedule.day_start_months(year), month_num_days].transpose.map { |i| i.reduce(:+) - 1 } time = [] for h in 1..24 time[h] = OpenStudio::Time.new(0, h, 0, 0) end - schedule = OpenStudio::Model::ScheduleRuleset.new(@model) - schedule.setName(@sch_name) - schedule.defaultDaySchedule.setName(@sch_name + ' default day') + schedule = OpenStudio::Model::ScheduleRuleset.new(model) + schedule.setName(sch_name) + schedule.defaultDaySchedule.setName(sch_name + ' default day') prev_wkdy_vals = nil prev_wkdy_rule = nil prev_wknd_vals = nil prev_wknd_rule = nil periods = [] - if @begin_month <= @end_month # contiguous period - periods << [@begin_month, @end_month] + if begin_month <= end_month # contiguous period + periods << [begin_month, end_month] else # non-contiguous period - periods << [1, @end_month] - periods << [@begin_month, 12] + periods << [1, end_month] + periods << [begin_month, 12] end periods.each do |period| for m in period[0]..period[1] - date_s = OpenStudio::Date::fromDayOfYear(day_startm[m - 1], @year) - date_e = OpenStudio::Date::fromDayOfYear(day_endm[m - 1], @year) + date_s = OpenStudio::Date::fromDayOfYear(day_startm[m - 1], year) + date_e = OpenStudio::Date::fromDayOfYear(day_endm[m - 1], year) wkdy_vals = [] wknd_vals = [] @@ -537,9 +515,9 @@ def create_schedule() elsif wkdy_vals == wknd_vals # Alldays wkdy_rule = OpenStudio::Model::ScheduleRule.new(schedule) - wkdy_rule.setName(@sch_name + " #{Schedule.allday_name} ruleset#{m}") + wkdy_rule.setName(sch_name + " #{Schedule.allday_name} ruleset#{m}") wkdy = wkdy_rule.daySchedule - wkdy.setName(@sch_name + " #{Schedule.allday_name}#{m}") + wkdy.setName(sch_name + " #{Schedule.allday_name}#{m}") previous_value = wkdy_vals[1] for h in 1..24 next if (h != 24) && (wkdy_vals[h + 1] == previous_value) @@ -556,9 +534,9 @@ def create_schedule() else # Weekdays wkdy_rule = OpenStudio::Model::ScheduleRule.new(schedule) - wkdy_rule.setName(@sch_name + " #{Schedule.weekday_name} ruleset#{m}") + wkdy_rule.setName(sch_name + " #{Schedule.weekday_name} ruleset#{m}") wkdy = wkdy_rule.daySchedule - wkdy.setName(@sch_name + " #{Schedule.weekday_name}#{m}") + wkdy.setName(sch_name + " #{Schedule.weekday_name}#{m}") previous_value = wkdy_vals[1] for h in 1..24 next if (h != 24) && (wkdy_vals[h + 1] == previous_value) @@ -573,9 +551,9 @@ def create_schedule() # Weekends wknd_rule = OpenStudio::Model::ScheduleRule.new(schedule) - wknd_rule.setName(@sch_name + " #{Schedule.weekend_name} ruleset#{m}") + wknd_rule.setName(sch_name + " #{Schedule.weekend_name} ruleset#{m}") wknd = wknd_rule.daySchedule - wknd.setName(@sch_name + " #{Schedule.weekend_name}#{m}") + wknd.setName(sch_name + " #{Schedule.weekend_name}#{m}") previous_value = wknd_vals[1] for h in 1..24 next if (h != 24) && (wknd_vals[h + 1] == previous_value) @@ -594,9 +572,9 @@ def create_schedule() end end - Schedule.set_unavailable_periods(schedule, @sch_name, @unavailable_periods, @year) + Schedule.set_unavailable_periods(schedule, sch_name, unavailable_periods, year) - Schedule.set_schedule_type_limits(@model, schedule, @schedule_type_limits_name) + Schedule.set_schedule_type_limits(model, schedule, schedule_type_limits_name) return schedule end @@ -750,6 +728,9 @@ def self.set_unavailable_periods(schedule, sch_name, unavailable_periods, year) # Add off rule(s), will override previous rules unavailable_periods.each_with_index do |period, i| # Special Values + # FUTURE: Assign an object type to the schedules and use that to determine what + # kind of schedule each is, rather than looking at object names. That would + # be more robust. See https://github.com/NREL/OpenStudio-HPXML/issues/1450. if sch_name.include? Constants.ObjectNameWaterHeaterSetpoint # Water heater setpoint # Temperature of tank < 2C indicates of possibility of freeze. @@ -1098,27 +1079,27 @@ def self.PoolHeaterMonthlyMultipliers return '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' end - def self.HotTubPumpWeekdayFractions + def self.PermanentSpaPumpWeekdayFractions return '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' end - def self.HotTubPumpWeekendFractions + def self.PermanentSpaPumpWeekendFractions return '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' end - def self.HotTubPumpMonthlyMultipliers + def self.PermanentSpaPumpMonthlyMultipliers return '0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921' end - def self.HotTubHeaterWeekdayFractions + def self.PermanentSpaHeaterWeekdayFractions return '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' end - def self.HotTubHeaterWeekendFractions + def self.PermanentSpaHeaterWeekendFractions return '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' end - def self.HotTubHeaterMonthlyMultipliers + def self.PermanentSpaHeaterMonthlyMultipliers return '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837' end @@ -1353,8 +1334,8 @@ class SchedulesFile ColumnFuelLoadsFireplace = 'fuel_loads_fireplace' ColumnPoolPump = 'pool_pump' ColumnPoolHeater = 'pool_heater' - ColumnHotTubPump = 'hot_tub_pump' - ColumnHotTubHeater = 'hot_tub_heater' + ColumnPermanentSpaPump = 'permanent_spa_pump' + ColumnPermanentSpaHeater = 'permanent_spa_heater' ColumnHotWaterDishwasher = 'hot_water_dishwasher' ColumnHotWaterClothesWasher = 'hot_water_clothes_washer' ColumnHotWaterFixtures = 'hot_water_fixtures' @@ -1375,22 +1356,18 @@ class SchedulesFile ColumnWholeHouseFan = 'whole_house_fan' def initialize(runner: nil, - model: nil, schedules_paths:, year:, unavailable_periods: [], output_path:) return if schedules_paths.empty? - @runner = runner - @model = model - @schedules_paths = schedules_paths @year = year - - import() + import(schedules_paths) battery_schedules + expand_schedules @tmp_schedules = Marshal.load(Marshal.dump(@schedules)) - set_unavailable_periods(unavailable_periods) + set_unavailable_periods(runner, unavailable_periods) convert_setpoints @output_schedules_path = output_path export() @@ -1412,10 +1389,10 @@ def includes_col_name(col_name) return false end - def import() + def import(schedules_paths) num_hrs_in_year = Constants.NumHoursInYear(@year) @schedules = {} - @schedules_paths.each do |schedules_path| + schedules_paths.each do |schedules_path| columns = CSV.read(schedules_path).transpose columns.each do |col| col_name = col[0] @@ -1496,10 +1473,9 @@ def get_col_index(col_name:) return col_num end - def create_schedule_file(col_name:, - rows_to_skip: 1, + def create_schedule_file(model, col_name:, rows_to_skip: 1, schedule_type_limits_name: nil) - @model.getScheduleFiles.each do |schedule_file| + model.getScheduleFiles.each do |schedule_file| next if schedule_file.name.to_s != col_name return schedule_file @@ -1514,14 +1490,20 @@ def create_schedule_file(col_name:, schedule_length = @schedules[col_name].length min_per_item = 60.0 / (schedule_length / num_hrs_in_year) - schedule_file = OpenStudio::Model::ScheduleFile.new(@model, @output_schedules_path) + file_path = File.dirname(@output_schedules_path) + workflow_json = model.workflowJSON + file_paths = workflow_json.filePaths.map(&:to_s) + workflow_json.addFilePath(file_path) unless file_paths.include?(file_path) + + schedule_file = OpenStudio::Model::ScheduleFile.new(model, File.basename(@output_schedules_path)) schedule_file.setName(col_name) schedule_file.setColumnNumber(col_index + 1) schedule_file.setRowstoSkipatTop(rows_to_skip) schedule_file.setNumberofHoursofData(num_hrs_in_year.to_i) schedule_file.setMinutesperItem(min_per_item.to_i) + schedule_file.setTranslateFileWithRelativePath(true) - Schedule.set_schedule_type_limits(@model, schedule_file, schedule_type_limits_name) + Schedule.set_schedule_type_limits(model, schedule_file, schedule_type_limits_name) return schedule_file end @@ -1641,7 +1623,17 @@ def create_column_values_from_periods(col_name, periods) end end - def set_unavailable_periods(unavailable_periods) + def expand_schedules + # Expand schedules with fewer elements such that all the schedules have the same number of elements + max_size = @schedules.map { |_k, v| v.size }.uniq.max + @schedules.each do |col, values| + if values.size < max_size + @schedules[col] = values.map { |v| [v] * (max_size / values.size) }.flatten + end + end + end + + def set_unavailable_periods(runner, unavailable_periods) if @unavailable_periods_csv_data.nil? @unavailable_periods_csv_data = Schedule.get_unavailable_periods_csv_data end @@ -1667,13 +1659,13 @@ def set_unavailable_periods(unavailable_periods) end # Skip those unaffected - next unless Schedule.unavailable_period_applies(@runner, schedule_name2, column_name) + next unless Schedule.unavailable_period_applies(runner, schedule_name2, column_name) @tmp_schedules[column_name].each_with_index do |_ts, i| if schedule_name == ColumnWaterHeaterSetpoint # Temperature of tank < 2C indicates of possibility of freeze. @tmp_schedules[schedule_name][i] = UnitConversions.convert(2.0, 'C', 'F') if @tmp_schedules[column_name][i] == 1.0 - else + elsif ![SchedulesFile::ColumnHeatingSetpoint, SchedulesFile::ColumnCoolingSetpoint].include?(schedule_name) @tmp_schedules[schedule_name][i] *= (1.0 - @tmp_schedules[column_name][i]) end end @@ -1738,8 +1730,8 @@ def self.OccupancyColumnNames ColumnFuelLoadsFireplace, ColumnPoolPump, ColumnPoolHeater, - ColumnHotTubPump, - ColumnHotTubHeater, + ColumnPermanentSpaPump, + ColumnPermanentSpaHeater, ColumnHotWaterDishwasher, ColumnHotWaterClothesWasher, ColumnHotWaterFixtures diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb index d3e0c75e..aa7467cd 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb @@ -1,12 +1,17 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class SimControls - def self.apply(model, hpxml) + def self.apply(model, hpxml_header) sim = model.getSimulationControl sim.setRunSimulationforSizingPeriods(false) tstep = model.getTimestep - tstep.setNumberOfTimestepsPerHour(60 / hpxml.header.timestep) + tstep.setNumberOfTimestepsPerHour(60 / hpxml_header.timestep) shad = model.getShadowCalculation shad.setMaximumFiguresInShadowOverlapCalculations(200) @@ -15,20 +20,6 @@ def self.apply(model, hpxml) # interior shading transmittance, etc.). shad.setShadingCalculationUpdateFrequency(20) - has_windows_varying_transmittance = false - hpxml.windows.each do |window| - sf_summer = window.interior_shading_factor_summer * window.exterior_shading_factor_summer - sf_winter = window.interior_shading_factor_winter * window.exterior_shading_factor_winter - next if sf_summer == sf_winter - - has_windows_varying_transmittance = true - end - if has_windows_varying_transmittance - # Detailed diffuse algorithm is required for window interior shading with varying - # transmittance schedules - shad.setSkyDiffuseModelingAlgorithm('DetailedSkyDiffuseModeling') - end - outsurf = model.getOutsideSurfaceConvectionAlgorithm outsurf.setAlgorithm('DOE-2') @@ -36,17 +27,17 @@ def self.apply(model, hpxml) insurf.setAlgorithm('TARP') zonecap = model.getZoneCapacitanceMultiplierResearchSpecial - zonecap.setTemperatureCapacityMultiplier(hpxml.header.temperature_capacitance_multiplier) + zonecap.setTemperatureCapacityMultiplier(hpxml_header.temperature_capacitance_multiplier) zonecap.setHumidityCapacityMultiplier(15) convlim = model.getConvergenceLimits convlim.setMinimumSystemTimestep(0) run_period = model.getRunPeriod - run_period.setBeginMonth(hpxml.header.sim_begin_month) - run_period.setBeginDayOfMonth(hpxml.header.sim_begin_day) - run_period.setEndMonth(hpxml.header.sim_end_month) - run_period.setEndDayOfMonth(hpxml.header.sim_end_day) + run_period.setBeginMonth(hpxml_header.sim_begin_month) + run_period.setBeginDayOfMonth(hpxml_header.sim_begin_day) + run_period.setEndMonth(hpxml_header.sim_end_month) + run_period.setEndDayOfMonth(hpxml_header.sim_end_day) ppt = model.getPerformancePrecisionTradeoffs ppt.setZoneRadiantExchangeAlgorithm('CarrollMRT') diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb index 7c72624a..06202761 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class UnitConversions diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/util.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/util.rb index 0ab6e6e0..449216fa 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/util.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/util.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class MathTools @@ -96,8 +101,8 @@ def self.bicubic(x, y, c) if c.size != 10 puts 'Error: There must be 10 coefficients in a bicubic polynomial' end - z = c[0] + c[1] * x + c[2] * y + c[3] * x**2 + c[4] * x * y + c[5] * y**2 + \ - c[6] * x**3 + c[7] * y * x**2 + c[8] * x * y**2 + c[9] * y**3 + z = c[0] + c[1] * x + c[2] * x**2 + c[3] * y + c[4] * y**2 + c[5] * x * y + \ + c[6] * x**3 + c[7] * y**3 + c[8] * x**2 * y + c[9] * x * y**2 return z end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/utility_bills.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/utility_bills.rb index bcbf957c..f07025a9 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/utility_bills.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/utility_bills.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class UtilityBills @@ -24,7 +29,7 @@ def self.get_rates_from_eia_data(runner, state_code, fuel_type, fixed_charge, ma year_ix = nil rows = CSV.read(File.join(File.dirname(__FILE__), '../../ReportUtilityBills/resources/simple_rates/Average_retail_price_of_electricity.csv')) rows.each do |row| - year_ix = row.index('2021') if row[0] == 'description' + year_ix = row.size - 1 if row[0] == 'description' # last item in the row next if row[0].upcase != "Residential : #{state_name}".upcase average_rate = Float(row[year_ix]) / 100.0 # Convert cents/kWh to $/kWh diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb index bfbd41e4..1cd77d09 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb @@ -1,8 +1,13 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class Version - OS_HPXML_Version = '1.6.0' # Version of the OS-HPXML workflow - OS_Version = '3.6.1' # Required version of OpenStudio (can be 'X.X' or 'X.X.X') + OS_HPXML_Version = '1.7.0' # Version of the OS-HPXML workflow + OS_Version = '3.7.0' # Required version of OpenStudio (can be 'X.X' or 'X.X.X') HPXML_Version = '4.0' # HPXML schemaVersion def self.check_openstudio_version diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb index 957509cd..0aee45f7 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb @@ -1,10 +1,15 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class Waterheater - def self.apply_tank(model, runner, loc_space, loc_schedule, water_heating_system, ec_adj, solar_thermal_system, eri_version, schedules_file, unavailable_periods) + def self.apply_tank(model, runner, loc_space, loc_schedule, water_heating_system, ec_adj, solar_thermal_system, eri_version, schedules_file, unavailable_periods, unit_multiplier) solar_fraction = get_water_heater_solar_fraction(water_heating_system, solar_thermal_system) t_set_c = get_t_set_c(water_heating_system.temperature, water_heating_system.water_heater_type) - loop = create_new_loop(model, Constants.ObjectNamePlantLoopDHW, t_set_c, eri_version) + loop = create_new_loop(model, t_set_c, eri_version, unit_multiplier) act_vol = calc_storage_tank_actual_vol(water_heating_system.tank_volume, water_heating_system.fuel_type) u, ua, eta_c = calc_tank_UA(act_vol, water_heating_system, solar_fraction) @@ -20,22 +25,23 @@ def self.apply_tank(model, runner, loc_space, loc_schedule, water_heating_system ua: ua, eta_c: eta_c, schedules_file: schedules_file, - unavailable_periods: unavailable_periods) + unavailable_periods: unavailable_periods, + unit_multiplier: unit_multiplier) loop.addSupplyBranchForComponent(new_heater) - add_ec_adj(model, new_heater, ec_adj, loc_space, water_heating_system) - add_desuperheater(model, runner, water_heating_system, new_heater, loc_space, loc_schedule, loop) + add_ec_adj(model, new_heater, ec_adj, loc_space, water_heating_system, unit_multiplier) + add_desuperheater(model, runner, water_heating_system, new_heater, loc_space, loc_schedule, loop, unit_multiplier) return loop end - def self.apply_tankless(model, runner, loc_space, loc_schedule, water_heating_system, ec_adj, solar_thermal_system, eri_version, schedules_file, unavailable_periods) - water_heating_system.heating_capacity = 100000000000.0 + def self.apply_tankless(model, runner, loc_space, loc_schedule, water_heating_system, ec_adj, solar_thermal_system, eri_version, schedules_file, unavailable_periods, unit_multiplier) + water_heating_system.heating_capacity = 100000000000.0 * unit_multiplier solar_fraction = get_water_heater_solar_fraction(water_heating_system, solar_thermal_system) t_set_c = get_t_set_c(water_heating_system.temperature, water_heating_system.water_heater_type) - loop = create_new_loop(model, Constants.ObjectNamePlantLoopDHW, t_set_c, eri_version) + loop = create_new_loop(model, t_set_c, eri_version, unit_multiplier) - act_vol = 1.0 + act_vol = 1.0 * unit_multiplier _u, ua, eta_c = calc_tank_UA(act_vol, water_heating_system, solar_fraction) new_heater = create_new_heater(name: Constants.ObjectNameWaterHeater, water_heating_system: water_heating_system, @@ -48,21 +54,22 @@ def self.apply_tankless(model, runner, loc_space, loc_schedule, water_heating_sy ua: ua, eta_c: eta_c, schedules_file: schedules_file, - unavailable_periods: unavailable_periods) + unavailable_periods: unavailable_periods, + unit_multiplier: unit_multiplier) loop.addSupplyBranchForComponent(new_heater) - add_ec_adj(model, new_heater, ec_adj, loc_space, water_heating_system) - add_desuperheater(model, runner, water_heating_system, new_heater, loc_space, loc_schedule, loop) + add_ec_adj(model, new_heater, ec_adj, loc_space, water_heating_system, unit_multiplier) + add_desuperheater(model, runner, water_heating_system, new_heater, loc_space, loc_schedule, loop, unit_multiplier) return loop end - def self.apply_heatpump(model, runner, loc_space, loc_schedule, weather, water_heating_system, ec_adj, solar_thermal_system, living_zone, eri_version, schedules_file, unavailable_periods) + def self.apply_heatpump(model, runner, loc_space, loc_schedule, weather, water_heating_system, ec_adj, solar_thermal_system, conditioned_zone, eri_version, schedules_file, unavailable_periods, unit_multiplier) obj_name_hpwh = Constants.ObjectNameWaterHeater solar_fraction = get_water_heater_solar_fraction(water_heating_system, solar_thermal_system) t_set_c = get_t_set_c(water_heating_system.temperature, water_heating_system.water_heater_type) - loop = create_new_loop(model, Constants.ObjectNamePlantLoopDHW, t_set_c, eri_version) + loop = create_new_loop(model, t_set_c, eri_version, unit_multiplier) h_tank = 0.0188 * water_heating_system.tank_volume + 0.0935 # Linear relationship that gets GE height at 50 gal and AO Smith height at 80 gal @@ -85,7 +92,7 @@ def self.apply_heatpump(model, runner, loc_space, loc_schedule, weather, water_h if not schedules_file.nil? # To handle variable setpoints, need one schedule that gets sensed and a new schedule that gets actuated # Sensed schedule - setpoint_schedule = schedules_file.create_schedule_file(col_name: SchedulesFile::ColumnWaterHeaterSetpoint) + setpoint_schedule = schedules_file.create_schedule_file(model, col_name: SchedulesFile::ColumnWaterHeaterSetpoint) if not setpoint_schedule.nil? Schedule.set_schedule_type_limits(model, setpoint_schedule, Constants.ScheduleTypeLimitsTemperature) @@ -108,23 +115,23 @@ def self.apply_heatpump(model, runner, loc_space, loc_schedule, weather, water_h max_temp = 120.0 # F # Coil:WaterHeating:AirToWaterHeatPump:Wrapped - coil = setup_hpwh_dxcoil(model, runner, water_heating_system, weather, obj_name_hpwh, airflow_rate) + coil = setup_hpwh_dxcoil(model, runner, water_heating_system, weather, obj_name_hpwh, airflow_rate, unit_multiplier) # WaterHeater:Stratified - tank = setup_hpwh_stratified_tank(model, water_heating_system, obj_name_hpwh, h_tank, solar_fraction, hpwh_tamb, bottom_element_setpoint_schedule, top_element_setpoint_schedule) + tank = setup_hpwh_stratified_tank(model, water_heating_system, obj_name_hpwh, h_tank, solar_fraction, hpwh_tamb, bottom_element_setpoint_schedule, top_element_setpoint_schedule, unit_multiplier) loop.addSupplyBranchForComponent(tank) - add_desuperheater(model, runner, water_heating_system, tank, loc_space, loc_schedule, loop) + add_desuperheater(model, runner, water_heating_system, tank, loc_space, loc_schedule, loop, unit_multiplier) # Fan:SystemModel - fan = setup_hpwh_fan(model, water_heating_system, obj_name_hpwh, airflow_rate) + fan = setup_hpwh_fan(model, water_heating_system, obj_name_hpwh, airflow_rate, unit_multiplier) # WaterHeater:HeatPump:WrappedCondenser - hpwh = setup_hpwh_wrapped_condenser(model, obj_name_hpwh, coil, tank, fan, h_tank, airflow_rate, hpwh_tamb, hpwh_rhamb, min_temp, max_temp, control_setpoint_schedule) + hpwh = setup_hpwh_wrapped_condenser(model, obj_name_hpwh, coil, tank, fan, h_tank, airflow_rate, hpwh_tamb, hpwh_rhamb, min_temp, max_temp, control_setpoint_schedule, unit_multiplier) # Amb temp & RH sensors, temp sensor shared across programs - amb_temp_sensor, amb_rh_sensors = get_loc_temp_rh_sensors(model, obj_name_hpwh, loc_schedule, loc_space, living_zone) - hpwh_inlet_air_program = add_hpwh_inlet_air_and_zone_heat_gain_program(model, obj_name_hpwh, loc_space, hpwh_tamb, hpwh_rhamb, tank, coil, fan, amb_temp_sensor, amb_rh_sensors) + amb_temp_sensor, amb_rh_sensors = get_loc_temp_rh_sensors(model, obj_name_hpwh, loc_schedule, loc_space, conditioned_zone) + hpwh_inlet_air_program = add_hpwh_inlet_air_and_zone_heat_gain_program(model, obj_name_hpwh, loc_space, hpwh_tamb, hpwh_rhamb, tank, coil, fan, amb_temp_sensor, amb_rh_sensors, unit_multiplier) # EMS for the HPWH control logic op_mode = water_heating_system.operating_mode @@ -137,12 +144,12 @@ def self.apply_heatpump(model, runner, loc_space, loc_schedule, weather, water_h program_calling_manager.addProgram(hpwh_ctrl_program) program_calling_manager.addProgram(hpwh_inlet_air_program) - add_ec_adj(model, hpwh, ec_adj, loc_space, water_heating_system) + add_ec_adj(model, hpwh, ec_adj, loc_space, water_heating_system, unit_multiplier) return loop end - def self.apply_combi(model, runner, loc_space, loc_schedule, water_heating_system, ec_adj, solar_thermal_system, eri_version, schedules_file, unavailable_periods) + def self.apply_combi(model, runner, loc_space, loc_schedule, water_heating_system, ec_adj, solar_thermal_system, eri_version, schedules_file, unavailable_periods, unit_multiplier) solar_fraction = get_water_heater_solar_fraction(water_heating_system, solar_thermal_system) boiler, boiler_plant_loop = get_combi_boiler_and_plant_loop(model, water_heating_system.related_hvac_idref) @@ -166,7 +173,7 @@ def self.apply_combi(model, runner, loc_space, loc_schedule, water_heating_syste end t_set_c = get_t_set_c(water_heating_system.temperature, water_heating_system.water_heater_type) - loop = create_new_loop(model, Constants.ObjectNamePlantLoopDHW, t_set_c, eri_version) + loop = create_new_loop(model, t_set_c, eri_version, unit_multiplier) # Create water heater new_heater = create_new_heater(name: obj_name_combi, @@ -180,8 +187,9 @@ def self.apply_combi(model, runner, loc_space, loc_schedule, water_heating_syste ua: ua, is_combi: true, schedules_file: schedules_file, - unavailable_periods: unavailable_periods) - new_heater.setSourceSideDesignFlowRate(100) # set one large number, override by EMS + unavailable_periods: unavailable_periods, + unit_multiplier: unit_multiplier) + new_heater.setSourceSideDesignFlowRate(100 * unit_multiplier) # set one large number, override by EMS # Create alternate setpoint schedule for source side flow request alternate_stp_sch = new_heater.setpointTemperatureSchedule.get.clone(model).to_Schedule.get @@ -209,11 +217,11 @@ def self.apply_combi(model, runner, loc_space, loc_schedule, water_heating_syste scheme.addEquipment(1000000000, boiler) boiler_plant_loop.setPrimaryPlantEquipmentOperationScheme(scheme) boiler_plant_loop.addDemandBranchForComponent(new_heater) - boiler_plant_loop.setPlantLoopVolume(0.001) # Cannot be auto-calculated because of large default tank source side mfr(set to be overwritten by EMS) + boiler_plant_loop.setPlantLoopVolume(0.001 * unit_multiplier) # Cannot be auto-calculated because of large default tank source side mfr(set to be overwritten by EMS) loop.addSupplyBranchForComponent(new_heater) - add_ec_adj(model, new_heater, ec_adj, loc_space, water_heating_system, boiler) + add_ec_adj(model, new_heater, ec_adj, loc_space, water_heating_system, unit_multiplier, boiler) return loop end @@ -305,7 +313,7 @@ def self.apply_combi_system_EMS(model, water_heating_systems, plantloop_map) mains_temp_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Site Mains Water Temperature') mains_temp_sensor.setName('Mains Temperature') - mains_temp_sensor.setKeyName('*') + mains_temp_sensor.setKeyName('Environment') # Program combi_ctrl_program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) @@ -350,7 +358,7 @@ def self.apply_combi_system_EMS(model, water_heating_systems, plantloop_map) end end - def self.apply_solar_thermal(model, loc_space, loc_schedule, solar_thermal_system, plantloop_map) + def self.apply_solar_thermal(model, loc_space, loc_schedule, solar_thermal_system, plantloop_map, unit_multiplier) if [HPXML::WaterHeaterTypeCombiStorage, HPXML::WaterHeaterTypeCombiTankless].include? solar_thermal_system.water_heating_system.water_heater_type fail "Water heating system '#{solar_thermal_system.water_heating_system.id}' connected to solar thermal system '#{solar_thermal_system.id}' cannot be a space-heating boiler." end @@ -381,16 +389,23 @@ def self.apply_solar_thermal(model, loc_space, loc_schedule, solar_thermal_syste heat_ex_eff = 1.0 end + collector_area = solar_thermal_system.collector_area * unit_multiplier + storage_volume = solar_thermal_system.storage_volume * unit_multiplier + if solar_thermal_system.collector_loop_type == HPXML::SolarThermalLoopTypeThermosyphon pump_power = 0.0 else - pump_power = 0.8 * solar_thermal_system.collector_area + pump_power = 0.8 * collector_area end - tank_r = 10.0 test_flow = 55.0 / UnitConversions.convert(1.0, 'lbm/min', 'kg/hr') / Liquid.H2O_l.rho * UnitConversions.convert(1.0, 'ft^2', 'm^2') # cfm/ft^2 - coll_flow = test_flow * solar_thermal_system.collector_area # cfm - storage_Uvalue = 1.0 / tank_r # Btu/hr-ft^2-R + coll_flow = test_flow * collector_area # cfm + if fluid_type == Constants.FluidWater # Direct, make the storage tank a dummy tank with 0 tank losses + u_tank = 0.0 + else + r_tank = 10.0 # Btu/(hr-ft2-F) + u_tank = UnitConversions.convert(1.0 / r_tank, 'Btu/(hr*ft^2*F)', 'W/(m^2*K)') # W/m2-K + end # Get water heater and setpoint temperature schedules from loop water_heater = nil @@ -416,7 +431,7 @@ def self.apply_solar_thermal(model, loc_space, loc_schedule, solar_thermal_syste end plant_loop = OpenStudio::Model::PlantLoop.new(model) - plant_loop.setName(Constants.ObjectNamePlantLoopSHW) + plant_loop.setName('solar hot water loop') if fluid_type == Constants.FluidWater plant_loop.setFluidType('Water') else @@ -448,8 +463,9 @@ def self.apply_solar_thermal(model, loc_space, loc_schedule, solar_thermal_syste pump.setRatedFlowRate(UnitConversions.convert(coll_flow, 'cfm', 'm^3/s')) pump.addToNode(plant_loop.supplyInletNode) pump.additionalProperties.setFeature('HPXML_ID', solar_thermal_system.water_heating_system.id) # Used by reporting measure + pump.additionalProperties.setFeature('ObjectType', Constants.ObjectNameSolarHotWater) # Used by reporting measure - panel_length = UnitConversions.convert(solar_thermal_system.collector_area, 'ft^2', 'm^2')**0.5 + panel_length = UnitConversions.convert(collector_area, 'ft^2', 'm^2')**0.5 run = Math::cos(solar_thermal_system.collector_tilt * Math::PI / 180) * panel_length offset = 1000.0 # prevent shading @@ -487,8 +503,8 @@ def self.apply_solar_thermal(model, loc_space, loc_schedule, solar_thermal_syste ics_performance = collector_plate.solarCollectorPerformance # Values are based on spec sheet + OG-100 listing for Solarheart ICS collectors ics_performance.setName(obj_name + ' coll perf') - ics_performance.setGrossArea(UnitConversions.convert(solar_thermal_system.collector_area, 'ft^2', 'm^2')) - ics_performance.setCollectorWaterVolume(UnitConversions.convert(solar_thermal_system.storage_volume, 'gal', 'm^3')) + ics_performance.setGrossArea(UnitConversions.convert(collector_area, 'ft^2', 'm^2')) + ics_performance.setCollectorWaterVolume(UnitConversions.convert(storage_volume, 'gal', 'm^3')) ics_performance.setBottomHeatLossConductance(1.902) # Spec sheet ics_performance.setSideHeatLossConductance(1.268) ics_performance.setAspectRatio(0.721) @@ -505,7 +521,7 @@ def self.apply_solar_thermal(model, loc_space, loc_schedule, solar_thermal_syste collector_plate.setMaximumFlowRate(UnitConversions.convert(coll_flow, 'cfm', 'm^3/s')) collector_performance = collector_plate.solarCollectorPerformance collector_performance.setName(obj_name + ' coll perf') - collector_performance.setGrossArea(UnitConversions.convert(solar_thermal_system.collector_area, 'ft^2', 'm^2')) + collector_performance.setGrossArea(UnitConversions.convert(collector_area, 'ft^2', 'm^2')) collector_performance.setTestFluid('Water') collector_performance.setTestFlowRate(UnitConversions.convert(coll_flow, 'cfm', 'm^3/s')) collector_performance.setTestCorrelationType('Inlet') @@ -537,18 +553,15 @@ def self.apply_solar_thermal(model, loc_space, loc_schedule, solar_thermal_syste storage_tank.setSourceSideEffectiveness(heat_ex_eff) storage_tank.setTankShape('VerticalCylinder') if (solar_thermal_system.collector_type == HPXML::SolarThermalTypeICS) || (fluid_type == Constants.FluidWater) # Use a 60 gal tank dummy tank for direct systems, storage volume for ICS is assumed to be collector volume - storage_tank.setTankVolume(0.2271) - storage_tank.setTankHeight(1.3755) - storage_tank.setUseSideOutletHeight(1.3755) - storage_tank.setSourceSideInletHeight(1.3755 / 3.0) + tank_volume = UnitConversions.convert(60 * unit_multiplier, 'gal', 'm^3') else - storage_diam = (4.0 * UnitConversions.convert(solar_thermal_system.storage_volume, 'gal', 'ft^3') / 3.0 / Math::PI)**(1.0 / 3.0) # ft - storage_ht = 3.0 * storage_diam # ft - storage_tank.setTankVolume(UnitConversions.convert(solar_thermal_system.storage_volume, 'gal', 'm^3')) - storage_tank.setTankHeight(UnitConversions.convert(storage_ht, 'ft', 'm')) - storage_tank.setUseSideOutletHeight(UnitConversions.convert(storage_ht, 'ft', 'm')) - storage_tank.setSourceSideInletHeight(UnitConversions.convert(storage_ht, 'ft', 'm') / 3.0) + tank_volume = UnitConversions.convert(storage_volume, 'gal', 'm^3') end + tank_height = UnitConversions.convert(4.5, 'ft', 'm') + storage_tank.setTankVolume(tank_volume) + storage_tank.setTankHeight(tank_height) + storage_tank.setUseSideOutletHeight(tank_height) + storage_tank.setSourceSideInletHeight(tank_height / 3.0) storage_tank.setMaximumTemperatureLimit(99) storage_tank.heater1SetpointTemperatureSchedule.remove storage_tank.setHeater1SetpointTemperatureSchedule(setpoint_schedule_one) @@ -562,13 +575,8 @@ def self.apply_solar_thermal(model, loc_space, loc_schedule, solar_thermal_syste storage_tank.setHeaterThermalEfficiency(1) storage_tank.ambientTemperatureSchedule.get.remove set_wh_ambient(loc_space, loc_schedule, storage_tank) - if fluid_type == Constants.FluidWater # Direct, make the storage tank a dummy tank with 0 tank losses - storage_tank.setUniformSkinLossCoefficientperUnitAreatoAmbientTemperature(0.0) - else - storage_tank.setUniformSkinLossCoefficientperUnitAreatoAmbientTemperature(UnitConversions.convert(storage_Uvalue, 'Btu/(hr*ft^2*F)', 'W/(m^2*K)')) - end - storage_tank.setSkinLossFractiontoZone(1) - storage_tank.setOffCycleFlueLossFractiontoZone(1) + storage_tank.setSkinLossFractiontoZone(1.0 / unit_multiplier) # Tank losses are multiplied by E+ zone multiplier, so need to compensate here + storage_tank.setOffCycleFlueLossFractiontoZone(1.0 / unit_multiplier) storage_tank.setUseSideEffectiveness(1) storage_tank.setUseSideInletHeight(0) storage_tank.setSourceSideOutletHeight(0) @@ -576,19 +584,13 @@ def self.apply_solar_thermal(model, loc_space, loc_schedule, solar_thermal_syste storage_tank.setIndirectWaterHeatingRecoveryTime(1.5) storage_tank.setNumberofNodes(8) storage_tank.setAdditionalDestratificationConductivity(0) - storage_tank.setNode1AdditionalLossCoefficient(0) - storage_tank.setNode2AdditionalLossCoefficient(0) - storage_tank.setNode3AdditionalLossCoefficient(0) - storage_tank.setNode4AdditionalLossCoefficient(0) - storage_tank.setNode5AdditionalLossCoefficient(0) - storage_tank.setNode6AdditionalLossCoefficient(0) - storage_tank.setNode7AdditionalLossCoefficient(0) - storage_tank.setNode8AdditionalLossCoefficient(0) storage_tank.setSourceSideDesignFlowRate(UnitConversions.convert(coll_flow, 'cfm', 'm^3/s')) storage_tank.setOnCycleParasiticFuelConsumptionRate(0) storage_tank.setOffCycleParasiticFuelConsumptionRate(0) - storage_tank.setUseSideDesignFlowRate(UnitConversions.convert(solar_thermal_system.storage_volume, 'gal', 'm^3') / 60.1) # Sized to ensure that E+ never autosizes the design flow rate to be larger than the tank volume getting drawn out in a hour (60 minutes) + storage_tank.setUseSideDesignFlowRate(UnitConversions.convert(storage_volume, 'gal', 'm^3') / 60.1) # Sized to ensure that E+ never autosizes the design flow rate to be larger than the tank volume getting drawn out in a hour (60 minutes) + set_stratified_tank_ua(storage_tank, u_tank, unit_multiplier) storage_tank.additionalProperties.setFeature('HPXML_ID', solar_thermal_system.water_heating_system.id) # Used by reporting measure + storage_tank.additionalProperties.setFeature('ObjectType', Constants.ObjectNameSolarHotWater) # Used by reporting measure plant_loop.addDemandBranchForComponent(storage_tank) dhw_loop.addSupplyBranchForComponent(storage_tank) @@ -620,7 +622,7 @@ def self.apply_solar_thermal(model, loc_space, loc_schedule, solar_thermal_syste swh_program = OpenStudio::Model::EnergyManagementSystemProgram.new(model) swh_program.setName("#{obj_name} Controller") swh_program.addLine("If #{coll_sensor.name} > #{tank_source_sensor.name}") - swh_program.addLine("Set #{swh_pump_actuator.name} = 100") + swh_program.addLine("Set #{swh_pump_actuator.name} = 100 * #{unit_multiplier}") swh_program.addLine('Else') swh_program.addLine("Set #{swh_pump_actuator.name} = 0") swh_program.addLine('EndIf') @@ -634,9 +636,9 @@ def self.apply_solar_thermal(model, loc_space, loc_schedule, solar_thermal_syste private - def self.setup_hpwh_wrapped_condenser(model, obj_name_hpwh, coil, tank, fan, h_tank, airflow_rate, hpwh_tamb, hpwh_rhamb, min_temp, max_temp, setpoint_schedule) + def self.setup_hpwh_wrapped_condenser(model, obj_name_hpwh, coil, tank, fan, h_tank, airflow_rate, hpwh_tamb, hpwh_rhamb, min_temp, max_temp, setpoint_schedule, unit_multiplier) h_condtop = (1.0 - (5.5 / 12.0)) * h_tank # in the 6th node of the tank (counting from top) - h_condbot = 0.01 # bottom node + h_condbot = 0.01 * unit_multiplier # bottom node h_hpctrl_up = (1.0 - (2.5 / 12.0)) * h_tank # in the 3rd node of the tank h_hpctrl_low = (1.0 - (8.5 / 12.0)) * h_tank # in the 9th node of the tank @@ -645,7 +647,7 @@ def self.setup_hpwh_wrapped_condenser(model, obj_name_hpwh, coil, tank, fan, h_t hpwh.setDeadBandTemperatureDifference(3.89) hpwh.setCondenserBottomLocation(h_condbot) hpwh.setCondenserTopLocation(h_condtop) - hpwh.setEvaporatorAirFlowRate(UnitConversions.convert(airflow_rate, 'ft^3/min', 'm^3/s')) + hpwh.setEvaporatorAirFlowRate(UnitConversions.convert(airflow_rate * unit_multiplier, 'ft^3/min', 'm^3/s')) hpwh.setInletAirConfiguration('Schedule') hpwh.setInletAirTemperatureSchedule(hpwh_tamb) hpwh.setInletAirHumiditySchedule(hpwh_rhamb) @@ -665,7 +667,7 @@ def self.setup_hpwh_wrapped_condenser(model, obj_name_hpwh, coil, tank, fan, h_t return hpwh end - def self.setup_hpwh_dxcoil(model, runner, water_heating_system, weather, obj_name_hpwh, airflow_rate) + def self.setup_hpwh_dxcoil(model, runner, water_heating_system, weather, obj_name_hpwh, airflow_rate, unit_multiplier) # Curves hpwh_cap = OpenStudio::Model::CurveBiquadratic.new(model) hpwh_cap.setName('HPWH-Cap-fT') @@ -694,15 +696,16 @@ def self.setup_hpwh_dxcoil(model, runner, water_heating_system, weather, obj_nam hpwh_cop.setMaximumValueofy(100) # Assumptions and values - cap = 0.5 # kW + cap = 0.5 * unit_multiplier # kW shr = 0.88 # unitless # Calculate an altitude adjusted rated evaporator wetbulb temperature rated_ewb_F = 56.4 rated_edb_F = 67.5 + p_atm = UnitConversions.convert(1.0, 'atm', 'psi') rated_edb = UnitConversions.convert(rated_edb_F, 'F', 'C') - w_rated = Psychrometrics.w_fT_Twb_P(rated_edb_F, rated_ewb_F, 14.7) - dp_rated = Psychrometrics.Tdp_fP_w(runner, 14.7, w_rated) + w_rated = Psychrometrics.w_fT_Twb_P(rated_edb_F, rated_ewb_F, p_atm) + dp_rated = Psychrometrics.Tdp_fP_w(runner, p_atm, w_rated) p_atm = Psychrometrics.Pstd_fZ(weather.header.Altitude) w_adj = Psychrometrics.w_fT_Twb_P(dp_rated, dp_rated, p_atm) twb_adj = Psychrometrics.Twb_fT_w_P(runner, rated_edb_F, w_adj, p_atm) @@ -732,7 +735,7 @@ def self.setup_hpwh_dxcoil(model, runner, water_heating_system, weather, obj_nam coil.setRatedEvaporatorInletAirDryBulbTemperature(rated_edb) coil.setRatedEvaporatorInletAirWetBulbTemperature(UnitConversions.convert(twb_adj, 'F', 'C')) coil.setRatedCondenserWaterTemperature(48.89) - coil.setRatedEvaporatorAirFlowRate(UnitConversions.convert(airflow_rate, 'ft^3/min', 'm^3/s')) + coil.setRatedEvaporatorAirFlowRate(UnitConversions.convert(airflow_rate * unit_multiplier, 'ft^3/min', 'm^3/s')) coil.setEvaporatorFanPowerIncludedinRatedCOP(true) coil.setEvaporatorAirTemperatureTypeforCurveObjects('WetBulbTemperature') coil.setHeatingCapacityFunctionofTemperatureCurve(hpwh_cap) @@ -743,7 +746,7 @@ def self.setup_hpwh_dxcoil(model, runner, water_heating_system, weather, obj_nam return coil end - def self.setup_hpwh_stratified_tank(model, water_heating_system, obj_name_hpwh, h_tank, solar_fraction, hpwh_tamb, hpwh_bottom_element_sp, hpwh_top_element_sp) + def self.setup_hpwh_stratified_tank(model, water_heating_system, obj_name_hpwh, h_tank, solar_fraction, hpwh_tamb, hpwh_bottom_element_sp, hpwh_top_element_sp, unit_multiplier) # Calculate some geometry parameters for UA, the location of sensors and heat sources in the tank v_actual = calc_storage_tank_actual_vol(water_heating_system.tank_volume, water_heating_system.fuel_type) # gal a_tank, a_side = calc_tank_areas(v_actual, UnitConversions.convert(h_tank, 'm', 'ft')) # sqft @@ -761,6 +764,10 @@ def self.setup_hpwh_stratified_tank(model, water_heating_system, obj_name_hpwh, tank_ua = apply_tank_jacket(water_heating_system, tank_ua, a_side) u_tank = ((5.678 * tank_ua) / a_tank) * (1.0 - solar_fraction) + v_actual *= unit_multiplier + e_cap *= unit_multiplier + parasitics *= unit_multiplier + h_UE = (1.0 - (3.5 / 12.0)) * h_tank # in the 3rd node of the tank (counting from top) h_LE = (1.0 - (9.5 / 12.0)) * h_tank # in the 10th node of the tank (counting from top) @@ -787,28 +794,24 @@ def self.setup_hpwh_stratified_tank(model, water_heating_system, obj_name_hpwh, tank.setOffCycleParasiticFuelType(EPlus::FuelTypeElectricity) tank.setOnCycleParasiticFuelConsumptionRate(parasitics) tank.setOnCycleParasiticFuelType(EPlus::FuelTypeElectricity) - tank.setUniformSkinLossCoefficientperUnitAreatoAmbientTemperature(u_tank) tank.ambientTemperatureSchedule.get.remove tank.setAmbientTemperatureSchedule(hpwh_tamb) tank.setNumberofNodes(6) tank.setAdditionalDestratificationConductivity(0) - tank.setNode1AdditionalLossCoefficient(0) - tank.setNode2AdditionalLossCoefficient(0) - tank.setNode3AdditionalLossCoefficient(0) - tank.setNode4AdditionalLossCoefficient(0) - tank.setNode5AdditionalLossCoefficient(0) - tank.setNode6AdditionalLossCoefficient(0) tank.setUseSideDesignFlowRate(UnitConversions.convert(v_actual, 'gal', 'm^3') / 60.1) # Sized to ensure that E+ never autosizes the design flow rate to be larger than the tank volume getting drawn out in a hour (60 minutes) tank.setSourceSideDesignFlowRate(0) tank.setSourceSideFlowControlMode('') tank.setSourceSideInletHeight(0) tank.setSourceSideOutletHeight(0) + tank.setSkinLossFractiontoZone(1.0 / unit_multiplier) # Tank losses are multiplied by E+ zone multiplier, so need to compensate here + tank.setOffCycleFlueLossFractiontoZone(1.0 / unit_multiplier) + set_stratified_tank_ua(tank, u_tank, unit_multiplier) tank.additionalProperties.setFeature('HPXML_ID', water_heating_system.id) # Used by reporting measure return tank end - def self.setup_hpwh_fan(model, water_heating_system, obj_name_hpwh, airflow_rate) + def self.setup_hpwh_fan(model, water_heating_system, obj_name_hpwh, airflow_rate, unit_multiplier) fan_power = 0.0462 # W/cfm, Based on 1st gen AO Smith HPWH, could be updated but pretty minor impact fan = OpenStudio::Model::FanSystemModel.new(model) fan.setSpeedControlMethod('Discrete') @@ -819,13 +822,14 @@ def self.setup_hpwh_fan(model, water_heating_system, obj_name_hpwh, airflow_rate fan.setEndUseSubcategory('Domestic Hot Water') fan.setMotorEfficiency(1.0) fan.setMotorInAirStreamFraction(1.0) - fan.setDesignMaximumAirFlowRate(UnitConversions.convert(airflow_rate, 'ft^3/min', 'm^3/s')) + fan.setDesignMaximumAirFlowRate(UnitConversions.convert(airflow_rate * unit_multiplier, 'ft^3/min', 'm^3/s')) fan.additionalProperties.setFeature('HPXML_ID', water_heating_system.id) # Used by reporting measure + fan.additionalProperties.setFeature('ObjectType', Constants.ObjectNameWaterHeater) # Used by reporting measure return fan end - def self.get_loc_temp_rh_sensors(model, obj_name_hpwh, loc_schedule, loc_space, living_zone) + def self.get_loc_temp_rh_sensors(model, obj_name_hpwh, loc_schedule, loc_space, conditioned_zone) rh_sensors = [] if not loc_schedule.nil? amb_temp_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Schedule Value') @@ -840,7 +844,7 @@ def self.get_loc_temp_rh_sensors(model, obj_name_hpwh, loc_schedule, loc_space, elsif loc_schedule.name.get == HPXML::LocationOtherHousingUnit amb_rh_sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Air Relative Humidity') amb_rh_sensor.setName("#{obj_name_hpwh} amb rh") - amb_rh_sensor.setKeyName(living_zone.name.to_s) + amb_rh_sensor.setKeyName(conditioned_zone.name.to_s) rh_sensors << amb_rh_sensor else amb_rh_sensor1 = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Site Outdoor Air Relative Humidity') @@ -848,7 +852,7 @@ def self.get_loc_temp_rh_sensors(model, obj_name_hpwh, loc_schedule, loc_space, amb_rh_sensor1.setKeyName('Environment') amb_rh_sensor2 = OpenStudio::Model::EnergyManagementSystemSensor.new(model, 'Zone Air Relative Humidity') amb_rh_sensor2.setName("#{obj_name_hpwh} amb2 rh") - amb_rh_sensor2.setKeyName(living_zone.name.to_s) + amb_rh_sensor2.setKeyName(conditioned_zone.name.to_s) rh_sensors << amb_rh_sensor1 rh_sensors << amb_rh_sensor2 end @@ -874,7 +878,7 @@ def self.get_loc_temp_rh_sensors(model, obj_name_hpwh, loc_schedule, loc_space, return amb_temp_sensor, rh_sensors end - def self.add_hpwh_inlet_air_and_zone_heat_gain_program(model, obj_name_hpwh, loc_space, hpwh_tamb, hpwh_rhamb, tank, coil, fan, amb_temp_sensor, amb_rh_sensors) + def self.add_hpwh_inlet_air_and_zone_heat_gain_program(model, obj_name_hpwh, loc_space, hpwh_tamb, hpwh_rhamb, tank, coil, fan, amb_temp_sensor, amb_rh_sensors, unit_multiplier) # EMS Actuators: Inlet T & RH, sensible and latent gains to the space tamb_act_actuator = OpenStudio::Model::EnergyManagementSystemActuator.new(hpwh_tamb, *EPlus::EMSActuatorScheduleConstantValue) tamb_act_actuator.setName("#{obj_name_hpwh} Tamb act") @@ -940,8 +944,9 @@ def self.add_hpwh_inlet_air_and_zone_heat_gain_program(model, obj_name_hpwh, loc end if not loc_space.nil? # Sensible/latent heat gain to the space - hpwh_inlet_air_program.addLine("Set #{sens_act_actuator.name} = 0 - #{sens_cool_sensor.name} - (#{tl_sensor.name} + #{fan_power_sensor.name})") - hpwh_inlet_air_program.addLine("Set #{lat_act_actuator.name} = 0 - #{lat_cool_sensor.name}") + # Tank losses are multiplied by E+ zone multiplier, so need to compensate here + hpwh_inlet_air_program.addLine("Set #{sens_act_actuator.name} = (0 - #{sens_cool_sensor.name} - (#{tl_sensor.name} + #{fan_power_sensor.name})) / #{unit_multiplier}") + hpwh_inlet_air_program.addLine("Set #{lat_act_actuator.name} = (0 - #{lat_cool_sensor.name}) / #{unit_multiplier}") end return hpwh_inlet_air_program end @@ -970,7 +975,7 @@ def self.add_hpwh_control_program(model, runner, obj_name_hpwh, amb_temp_sensor, op_mode_schedule = nil if not schedules_file.nil? - op_mode_schedule = schedules_file.create_schedule_file(col_name: SchedulesFile::ColumnWaterHeaterOperatingMode) + op_mode_schedule = schedules_file.create_schedule_file(model, col_name: SchedulesFile::ColumnWaterHeaterOperatingMode) end # Sensor on op_mode_schedule @@ -1021,6 +1026,48 @@ def self.add_hpwh_control_program(model, runner, obj_name_hpwh, amb_temp_sensor, return hpwh_ctrl_program end + def self.set_stratified_tank_ua(tank, u_tank, unit_multiplier) + node_ua = [0] * 12 # Max number of nodes in E+ stratified tank model + if unit_multiplier == 1 + tank.setUniformSkinLossCoefficientperUnitAreatoAmbientTemperature(u_tank) + else + tank.setUniformSkinLossCoefficientperUnitAreatoAmbientTemperature(0) + + # Calculate UA for each node; this is needed to accommodate unit multipliers where + # the surface area for each node is not scaled proportionally. + vol_tank = UnitConversions.convert(tank.tankVolume.get, 'm^3', 'gal') + h_tank = UnitConversions.convert(tank.tankHeight.get, 'm', 'ft') + + # Calculate areas for tank w/o unit multiplier + a_tank, a_side = calc_tank_areas(vol_tank / unit_multiplier, h_tank) + a_top = (a_tank - a_side) / 2.0 + num_nodes = tank.numberofNodes + + # Calculate desired UA for each node + for node_num in 0..num_nodes - 1 + # These node area calculations are based on the E+ WaterThermalTankData::SetupStratifiedNodes() method + a_node = a_side / num_nodes + if (node_num == 0) || (node_num == num_nodes - 1) # Top or bottom node + a_node += a_top + end + node_ua[node_num] = u_tank.to_f * UnitConversions.convert(a_node, 'ft^2', 'm^2') * unit_multiplier + end + end + + tank.setNode1AdditionalLossCoefficient(node_ua[0]) + tank.setNode2AdditionalLossCoefficient(node_ua[1]) + tank.setNode3AdditionalLossCoefficient(node_ua[2]) + tank.setNode4AdditionalLossCoefficient(node_ua[3]) + tank.setNode5AdditionalLossCoefficient(node_ua[4]) + tank.setNode6AdditionalLossCoefficient(node_ua[5]) + tank.setNode7AdditionalLossCoefficient(node_ua[6]) + tank.setNode8AdditionalLossCoefficient(node_ua[7]) + tank.setNode9AdditionalLossCoefficient(node_ua[8]) + tank.setNode10AdditionalLossCoefficient(node_ua[9]) + tank.setNode11AdditionalLossCoefficient(node_ua[10]) + tank.setNode12AdditionalLossCoefficient(node_ua[11]) + end + def self.get_combi_boiler_and_plant_loop(model, heating_source_id) # Search for the right boiler OS object boiler_hw = nil @@ -1058,12 +1105,12 @@ def self.get_desuperheatercoil(water_heating_system, model) fail "RelatedHVACSystem '#{water_heating_system.related_hvac_idref}' for water heating system '#{water_heating_system.id}' is not currently supported for desuperheaters." end - def self.add_desuperheater(model, runner, water_heating_system, tank, loc_space, loc_schedule, loop) + def self.add_desuperheater(model, runner, water_heating_system, tank, loc_space, loc_schedule, loop, unit_multiplier) return unless water_heating_system.uses_desuperheater desuperheater_clg_coil = get_desuperheatercoil(water_heating_system, model) reclaimed_efficiency = 0.25 # default - desuperheater_name = Constants.ObjectNameDesuperheater(tank.name) + desuperheater_name = "#{tank.name} desuperheater" # create a storage tank vol = 50.0 @@ -1085,7 +1132,8 @@ def self.add_desuperheater(model, runner, water_heating_system, tank, loc_space, model: model, runner: runner, ua: assumed_ua, - is_dsh_storage: true) + is_dsh_storage: true, + unit_multiplier: unit_multiplier) loop.addSupplyBranchForComponent(storage_tank) tank.addToNode(storage_tank.supplyOutletModelObject.get.to_Node.get) @@ -1108,6 +1156,7 @@ def self.add_desuperheater(model, runner, water_heating_system, tank, loc_space, desuperheater.setWaterPumpPower(0) # attach to the clg coil source desuperheater.setHeatingSource(desuperheater_clg_coil) + desuperheater.setWaterFlowRate(0.0001 * unit_multiplier) desuperheater.additionalProperties.setFeature('HPXML_ID', water_heating_system.id) # Used by reporting measure end @@ -1266,7 +1315,7 @@ def self.calc_tank_areas(act_vol, height = nil) end def self.get_tank_height() - return 4.0 # feet + return 4.0 # feet, assumption from BEopt end def self.calc_indirect_ua_with_standbyloss(act_vol, water_heating_system, a_side, solar_fraction) @@ -1300,7 +1349,7 @@ def self.get_default_num_bathrooms(num_beds) return num_baths end - def self.add_ec_adj(model, heater, ec_adj, loc_space, water_heating_system, combi_boiler = nil) + def self.add_ec_adj(model, heater, ec_adj, loc_space, water_heating_system, unit_multiplier, combi_boiler = nil) adjustment = ec_adj - 1.0 if loc_space.nil? # WH is not in a zone, set the other equipment to be in a random space @@ -1319,7 +1368,9 @@ def self.add_ec_adj(model, heater, ec_adj, loc_space, water_heating_system, comb end # Add an other equipment object for water heating that will get actuated, has a small initial load but gets overwritten by EMS - ec_adj_object = HotWaterAndAppliances.add_other_equipment(model, Constants.ObjectNameWaterHeaterAdjustment(heater.name), loc_space, 0.01, 0, 0, model.alwaysOnDiscreteSchedule, fuel_type) + cnt = model.getOtherEquipments.select { |e| e.endUseSubcategory.start_with? Constants.ObjectNameWaterHeaterAdjustment }.size # Ensure unique meter for each water heater + ec_adj_object = HotWaterAndAppliances.add_other_equipment(model, "#{Constants.ObjectNameWaterHeaterAdjustment}#{cnt + 1}", loc_space, 0.01, 0, 0, model.alwaysOnDiscreteSchedule, fuel_type) + ec_adj_object.additionalProperties.setFeature('HPXML_ID', water_heating_system.id) # Used by reporting measure # EMS for calculating the EC_adj @@ -1366,24 +1417,15 @@ def self.add_ec_adj(model, heater, ec_adj, loc_space, water_heating_system, comb else ec_adj_program.addLine("Set dhw_e_cons = #{ec_adj_sensor.name} + #{ec_adj_oncyc_sensor.name} + #{ec_adj_offcyc_sensor.name}") end - ec_adj_program.addLine("Set #{ec_adj_actuator.name} = #{adjustment} * dhw_e_cons") - ec_adj_program.addLine("Set ec_adj_energy = #{ec_adj_actuator.name} * 3600 * SystemTimeStep") + # Since the water heater has been multiplied by the unit_multiplier, and this OtherEquipment object will be adding + # load to a thermal zone with an E+ multiplier, we would double-count the multiplier if we didn't divide by it here. + ec_adj_program.addLine("Set #{ec_adj_actuator.name} = #{adjustment} * dhw_e_cons / #{unit_multiplier}") # Program Calling Manager program_calling_manager = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model) program_calling_manager.setName("#{heater.name} EC_adj ProgramManager") program_calling_manager.setCallingPoint('EndOfSystemTimestepBeforeHVACReporting') program_calling_manager.addProgram(ec_adj_program) - - # EMS Output Variable for EC_adj reporting - ec_adj_output_var = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, 'ec_adj_energy') - ec_adj_output_var.setName("#{Constants.ObjectNameWaterHeaterAdjustment(heater.name)} outvar") - ec_adj_output_var.setTypeOfDataInVariable('Summed') - ec_adj_output_var.setUpdateFrequency('SystemTimestep') - ec_adj_output_var.setEMSProgramOrSubroutineName(ec_adj_program) - ec_adj_output_var.setUnits('J') - ec_adj_output_var.additionalProperties.setFeature('FuelType', EPlus.fuel_type(fuel_type)) # Used by reporting measure - ec_adj_output_var.additionalProperties.setFeature('HPXML_ID', water_heating_system.id) # Used by reporting measure end def self.get_default_hot_water_temperature(eri_version) @@ -1405,22 +1447,22 @@ def self.get_default_performance_adjustment(water_heating_system) end end - def self.get_default_location(hpxml, climate_zone_iecc) + def self.get_default_location(hpxml_bldg, climate_zone_iecc) iecc_zone = (climate_zone_iecc.nil? ? nil : climate_zone_iecc.zone) if ['1A', '1B', '1C', '2A', '2B', '2C', '3B', '3C'].include? iecc_zone location_hierarchy = [HPXML::LocationGarage, - HPXML::LocationLivingSpace] + HPXML::LocationConditionedSpace] elsif ['3A', '4A', '4B', '4C', '5A', '5B', '5C', '6A', '6B', '6C', '7', '8'].include? iecc_zone location_hierarchy = [HPXML::LocationBasementConditioned, HPXML::LocationBasementUnconditioned, - HPXML::LocationLivingSpace] + HPXML::LocationConditionedSpace] elsif iecc_zone.nil? location_hierarchy = [HPXML::LocationBasementConditioned, HPXML::LocationBasementUnconditioned, - HPXML::LocationLivingSpace] + HPXML::LocationConditionedSpace] end location_hierarchy.each do |location| - if hpxml.has_location(location) + if hpxml_bldg.has_location(location) return location end end @@ -1581,7 +1623,7 @@ def self.create_new_schedule_manager(model, t_set_c) OpenStudio::Model::SetpointManagerScheduled.new(model, new_schedule) end - def self.create_new_heater(name:, water_heating_system: nil, act_vol:, t_set_c: nil, loc_space:, loc_schedule: nil, model:, runner:, u: nil, ua:, eta_c: nil, is_dsh_storage: false, is_combi: false, schedules_file: nil, unavailable_periods: []) + def self.create_new_heater(name:, water_heating_system: nil, act_vol:, t_set_c: nil, loc_space:, loc_schedule: nil, model:, runner:, u: nil, ua:, eta_c: nil, is_dsh_storage: false, is_combi: false, schedules_file: nil, unavailable_periods: [], unit_multiplier: 1.0) # storage tank doesn't require water_heating_system class argument being passed if is_dsh_storage || is_combi fuel = nil @@ -1598,48 +1640,41 @@ def self.create_new_heater(name:, water_heating_system: nil, act_vol:, t_set_c: tank_model_type = water_heating_system.tank_model_type end + ua *= unit_multiplier + cap *= unit_multiplier + act_vol *= unit_multiplier + if tank_model_type == HPXML::WaterHeaterTankModelTypeStratified - h_tank = 1.2192 # 4 feet in m, using the relationship currently assumed in BEopt - # height of upper and lower element based on TRNSYS assumptions for an ERWH - h_UE = 0.733333333 * h_tank # node 4 - h_LE = 0.133333333 * h_tank # node 13 + h_tank = get_tank_height() # ft # Add a WaterHeater:Stratified to the model new_heater = OpenStudio::Model::WaterHeaterStratified.new(model) new_heater.setEndUseSubcategory('Domestic Hot Water') - new_heater.setTankHeight(h_tank) + new_heater.setTankVolume(UnitConversions.convert(act_vol, 'gal', 'm^3')) + new_heater.setTankHeight(UnitConversions.convert(h_tank, 'ft', 'm')) new_heater.setMaximumTemperatureLimit(90) new_heater.setHeaterPriorityControl('MasterSlave') configure_stratified_tank_setpoint_schedules(new_heater, schedules_file, t_set_c, model, runner, unavailable_periods) new_heater.setHeater1Capacity(UnitConversions.convert(cap, 'kBtu/hr', 'W')) - new_heater.setHeater1Height(h_UE) + new_heater.setHeater1Height(UnitConversions.convert(h_tank * 0.733333333, 'ft', 'm')) # node 4; height of upper element based on TRNSYS assumptions for an ERWH new_heater.setHeater1DeadbandTemperatureDifference(5.556) new_heater.setHeater2Capacity(UnitConversions.convert(cap, 'kBtu/hr', 'W')) - new_heater.setHeater2Height(h_LE) + new_heater.setHeater2Height(UnitConversions.convert(h_tank * 0.733333333, 'ft', 'm')) # node 13; height of upper element based on TRNSYS assumptions for an ERWH new_heater.setHeater2DeadbandTemperatureDifference(5.556) new_heater.setHeaterThermalEfficiency(1) - new_heater.setUniformSkinLossCoefficientperUnitAreatoAmbientTemperature(u) unless u.nil? new_heater.setNumberofNodes(12) new_heater.setAdditionalDestratificationConductivity(0) - new_heater.setNode1AdditionalLossCoefficient(0) - new_heater.setNode2AdditionalLossCoefficient(0) - new_heater.setNode3AdditionalLossCoefficient(0) - new_heater.setNode4AdditionalLossCoefficient(0) - new_heater.setNode5AdditionalLossCoefficient(0) - new_heater.setNode6AdditionalLossCoefficient(0) - new_heater.setNode7AdditionalLossCoefficient(0) - new_heater.setNode8AdditionalLossCoefficient(0) - new_heater.setNode9AdditionalLossCoefficient(0) - new_heater.setNode10AdditionalLossCoefficient(0) - new_heater.setNode11AdditionalLossCoefficient(0) - new_heater.setNode12AdditionalLossCoefficient(0) new_heater.setUseSideDesignFlowRate(UnitConversions.convert(act_vol, 'gal', 'm^3') / 60.1) new_heater.setSourceSideDesignFlowRate(0) new_heater.setSourceSideFlowControlMode('') new_heater.setSourceSideInletHeight(0) new_heater.setSourceSideOutletHeight(0) + new_heater.setSkinLossFractiontoZone(1.0 / unit_multiplier) # Tank losses are multiplied by E+ zone multiplier, so need to compensate here + new_heater.setOffCycleFlueLossFractiontoZone(1.0 / unit_multiplier) + set_stratified_tank_ua(new_heater, u, unit_multiplier) else new_heater = OpenStudio::Model::WaterHeaterMixed.new(model) + new_heater.setTankVolume(UnitConversions.convert(act_vol, 'gal', 'm^3')) new_heater.setHeaterThermalEfficiency(eta_c) unless eta_c.nil? configure_mixed_tank_setpoint_schedule(new_heater, schedules_file, t_set_c, model, runner, unavailable_periods) new_heater.setMaximumTemperatureLimit(99.0) @@ -1673,8 +1708,8 @@ def self.create_new_heater(name:, water_heating_system: nil, act_vol:, t_set_c: skinlossfrac = 0.96 # Condensing end end - new_heater.setOffCycleLossFractiontoThermalZone(skinlossfrac) - new_heater.setOnCycleLossFractiontoThermalZone(1.0) + new_heater.setOffCycleLossFractiontoThermalZone(skinlossfrac / unit_multiplier) # Tank losses are multiplied by E+ zone multiplier, so need to compensate here + new_heater.setOnCycleLossFractiontoThermalZone(1.0 / unit_multiplier) # Tank losses are multiplied by E+ zone multiplier, so need to compensate here ua_w_k = UnitConversions.convert(ua, 'Btu/(hr*F)', 'W/K') new_heater.setOnCycleLossCoefficienttoAmbientTemperature(ua_w_k) @@ -1689,7 +1724,6 @@ def self.create_new_heater(name:, water_heating_system: nil, act_vol:, t_set_c: end new_heater.setName(name) - new_heater.setTankVolume(UnitConversions.convert(act_vol, 'gal', 'm^3')) new_heater.setHeaterFuelType(EPlus.fuel_type(fuel)) unless fuel.nil? set_wh_ambient(loc_space, loc_schedule, new_heater) @@ -1724,7 +1758,7 @@ def self.set_wh_ambient(loc_space, loc_schedule, wh_obj) def self.configure_mixed_tank_setpoint_schedule(new_heater, schedules_file, t_set_c, model, runner, unavailable_periods) new_schedule = nil if not schedules_file.nil? - new_schedule = schedules_file.create_schedule_file(col_name: SchedulesFile::ColumnWaterHeaterSetpoint) + new_schedule = schedules_file.create_schedule_file(model, col_name: SchedulesFile::ColumnWaterHeaterSetpoint) end if new_schedule.nil? # constant new_schedule = ScheduleConstant.new(model, Constants.ObjectNameWaterHeaterSetpoint, t_set_c, Constants.ScheduleTypeLimitsTemperature, unavailable_periods: unavailable_periods) @@ -1741,7 +1775,7 @@ def self.configure_mixed_tank_setpoint_schedule(new_heater, schedules_file, t_se def self.configure_stratified_tank_setpoint_schedules(new_heater, schedules_file, t_set_c, model, runner, unavailable_periods) new_schedule = nil if not schedules_file.nil? - new_schedule = schedules_file.create_schedule_file(col_name: SchedulesFile::ColumnWaterHeaterSetpoint) + new_schedule = schedules_file.create_schedule_file(model, col_name: SchedulesFile::ColumnWaterHeaterSetpoint) end if new_schedule.nil? # constant new_schedule = ScheduleConstant.new(model, Constants.ObjectNameWaterHeaterSetpoint, t_set_c, Constants.ScheduleTypeLimitsTemperature, unavailable_periods: unavailable_periods) @@ -1761,8 +1795,9 @@ def self.get_t_set_c(t_set, wh_type) return UnitConversions.convert(t_set, 'F', 'C') + deadband(wh_type) / 2.0 # Half the deadband to account for E+ deadband end - def self.create_new_loop(model, name, t_set_c, eri_version) + def self.create_new_loop(model, t_set_c, eri_version, unit_multiplier) # Create a new plant loop for the water heater + name = 'dhw loop' if t_set_c.nil? t_set_c = UnitConversions.convert(get_default_hot_water_temperature(eri_version), 'F', 'C') @@ -1772,8 +1807,8 @@ def self.create_new_loop(model, name, t_set_c, eri_version) loop.setName(name) loop.sizingPlant.setDesignLoopExitTemperature(t_set_c) loop.sizingPlant.setLoopDesignTemperatureDifference(UnitConversions.convert(10.0, 'deltaF', 'deltaC')) - loop.setPlantLoopVolume(0.003) # ~1 gal - loop.setMaximumLoopFlowRate(0.01) # This size represents the physical limitations to flow due to losses in the piping system. We assume that the pipes are always adequately sized. + loop.setPlantLoopVolume(0.003 * unit_multiplier) # ~1 gal + loop.setMaximumLoopFlowRate(0.01 * unit_multiplier) # This size represents the physical limitations to flow due to losses in the piping system. We assume that the pipes are always adequately sized. bypass_pipe = OpenStudio::Model::PipeAdiabatic.new(model) out_pipe = OpenStudio::Model::PipeAdiabatic.new(model) diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb index 3206f85f..4d2bb60b 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class WeatherHeader @@ -10,7 +15,9 @@ def initialize class WeatherData def initialize end - ATTRS ||= [:AnnualAvgDrybulb, :CDD50F, :CDD65F, :HDD50F, :HDD65F, :MonthlyAvgDrybulbs, :GroundMonthlyTemps, :WSF, :MonthlyAvgDailyHighDrybulbs, :MonthlyAvgDailyLowDrybulbs] + ATTRS ||= [:AnnualAvgDrybulb, :AnnualMinDrybulb, :AnnualMaxDrybulb, :CDD50F, :CDD65F, :HDD50F, :HDD65F, :MonthlyAvgDrybulbs, :ShallowGroundAnnualTemp, :ShallowGroundMonthlyTemps, + :DeepGroundAnnualTemp, :DeepGroundSurfTempAmp1, :DeepGroundSurfTempAmp2, :DeepGroundPhaseShiftTempAmp1, :DeepGroundPhaseShiftTempAmp2, + :WSF, :MonthlyAvgDailyHighDrybulbs, :MonthlyAvgDailyLowDrybulbs, :MainsAnnualTemp, :MainsDailyTemps, :MainsMonthlyTemps] attr_accessor(*ATTRS) end @@ -22,7 +29,7 @@ def initialize end class WeatherProcess - def initialize(epw_path:, runner:) + def initialize(epw_path:, runner:, hpxml: nil) @header = WeatherHeader.new @data = WeatherData.new @design = WeatherDesign.new @@ -33,28 +40,28 @@ def initialize(epw_path:, runner:) epw_file = OpenStudio::EpwFile.new(epw_path, true) - process_epw(runner, epw_file) + process_epw(runner, epw_file, hpxml) end attr_accessor(:header, :data, :design) private - def process_epw(runner, epw_file) + def process_epw(runner, epw_file, hpxml) # Header info: - @header.City = epw_file.city - @header.State = epw_file.stateProvinceRegion - @header.Country = epw_file.country - @header.DataSource = epw_file.dataSource - @header.Station = epw_file.wmoNumber - @header.Latitude = epw_file.latitude - @header.Longitude = epw_file.longitude - @header.Timezone = epw_file.timeZone - @header.Altitude = UnitConversions.convert(epw_file.elevation, 'm', 'ft') - @header.LocalPressure = Math::exp(-0.0000368 * @header.Altitude) # atm - @header.RecordsPerHour = epw_file.recordsPerHour - if @header.RecordsPerHour != 1 - fail "Unexpected records per hour: #{@header.RecordsPerHour}." + header.City = epw_file.city + header.State = epw_file.stateProvinceRegion + header.Country = epw_file.country + header.DataSource = epw_file.dataSource + header.Station = epw_file.wmoNumber + header.Latitude = epw_file.latitude + header.Longitude = epw_file.longitude + header.Timezone = epw_file.timeZone + header.Altitude = UnitConversions.convert(epw_file.elevation, 'm', 'ft') + header.LocalPressure = Math::exp(-0.0000368 * header.Altitude) # atm + header.RecordsPerHour = epw_file.recordsPerHour + if header.RecordsPerHour != 1 + fail "Unexpected records per hour: #{header.RecordsPerHour}." end epw_file_data = epw_file.data @@ -92,12 +99,12 @@ def process_epw(runner, epw_file) rowdata << rowdict - next unless (rownum + 1) % (24 * @header.RecordsPerHour) == 0 + next unless (rownum + 1) % (24 * header.RecordsPerHour) == 0 db = [] - maxdb = rowdata[rowdata.length - (24 * @header.RecordsPerHour)]['db'] - mindb = rowdata[rowdata.length - (24 * @header.RecordsPerHour)]['db'] - rowdata[rowdata.length - (24 * @header.RecordsPerHour)..-1].each do |x| + maxdb = rowdata[rowdata.length - (24 * header.RecordsPerHour)]['db'] + mindb = rowdata[rowdata.length - (24 * header.RecordsPerHour)]['db'] + rowdata[rowdata.length - (24 * header.RecordsPerHour)..-1].each do |x| if x['db'] > maxdb maxdb = x['db'] end @@ -107,37 +114,41 @@ def process_epw(runner, epw_file) db << x['db'] end - dailydbs << db.sum(0.0) / (24.0 * @header.RecordsPerHour) + dailydbs << db.sum(0.0) / (24.0 * header.RecordsPerHour) dailyhighdbs << maxdb dailylowdbs << mindb end - @data.AnnualAvgDrybulb = UnitConversions.convert(rowdata.map { |x| x['db'] }.sum(0.0) / rowdata.length, 'C', 'F') - @data.MonthlyAvgDrybulbs = [] + data.AnnualAvgDrybulb = UnitConversions.convert(rowdata.map { |x| x['db'] }.sum(0.0) / rowdata.length, 'C', 'F') + data.AnnualMinDrybulb = UnitConversions.convert(rowdata.map { |x| x['db'] }.min, 'C', 'F') + data.AnnualMaxDrybulb = UnitConversions.convert(rowdata.map { |x| x['db'] }.max, 'C', 'F') + data.MonthlyAvgDrybulbs = [] for i in 1..12 - @data.MonthlyAvgDrybulbs << UnitConversions.convert(monthdbs[i - 1].sum / monthdbs[i - 1].length, 'C', 'F') + data.MonthlyAvgDrybulbs << UnitConversions.convert(monthdbs[i - 1].sum / monthdbs[i - 1].length, 'C', 'F') end calc_heat_cool_degree_days(dailydbs) calc_avg_monthly_highs_lows(dailyhighdbs, dailylowdbs) - calc_ground_temperatures - @data.WSF = calc_ashrae_622_wsf(rowdata) + calc_shallow_ground_temperatures + calc_deep_ground_temperatures(hpxml) + calc_mains_temperatures(dailydbs.size) + data.WSF = calc_ashrae_622_wsf(rowdata) if not epwHasDesignData if not runner.nil? runner.registerWarning('No design condition info found; calculating design conditions from EPW weather data.') end calc_design_info(runner, rowdata) - @design.DailyTemperatureRange = @data.MonthlyAvgDailyHighDrybulbs[7] - @data.MonthlyAvgDailyLowDrybulbs[7] + design.DailyTemperatureRange = data.MonthlyAvgDailyHighDrybulbs[7] - data.MonthlyAvgDailyLowDrybulbs[7] end end def calc_heat_cool_degree_days(dailydbs) # Calculates and stores heating/cooling degree days - @data.HDD65F = calc_degree_days(dailydbs, 65, true) - @data.HDD50F = calc_degree_days(dailydbs, 50, true) - @data.CDD65F = calc_degree_days(dailydbs, 65, false) - @data.CDD50F = calc_degree_days(dailydbs, 50, false) + data.HDD65F = calc_degree_days(dailydbs, 65, true) + data.HDD50F = calc_degree_days(dailydbs, 50, true) + data.CDD65F = calc_degree_days(dailydbs, 65, false) + data.CDD50F = calc_degree_days(dailydbs, 50, false) end def calc_degree_days(daily_dbs, base_temp_f, is_heating) @@ -168,8 +179,8 @@ def calc_degree_days(daily_dbs, base_temp_f, is_heating) def calc_avg_monthly_highs_lows(daily_high_dbs, daily_low_dbs) # Calculates and stores avg daily highs and lows for each month - @data.MonthlyAvgDailyHighDrybulbs = [] - @data.MonthlyAvgDailyLowDrybulbs = [] + data.MonthlyAvgDailyHighDrybulbs = [] + data.MonthlyAvgDailyLowDrybulbs = [] if daily_high_dbs.size == 365 # standard year month_num_days = Constants.NumDaysInMonths(1999) @@ -187,8 +198,8 @@ def calc_avg_monthly_highs_lows(daily_high_dbs, daily_low_dbs) end avg_high = daily_high_dbs[first_day, ndays].sum(0.0) / ndays.to_f avg_low = daily_low_dbs[first_day, ndays].sum(0.0) / ndays.to_f - @data.MonthlyAvgDailyHighDrybulbs << UnitConversions.convert(avg_high, 'C', 'F') - @data.MonthlyAvgDailyLowDrybulbs << UnitConversions.convert(avg_low, 'C', 'F') + data.MonthlyAvgDailyHighDrybulbs << UnitConversions.convert(avg_high, 'C', 'F') + data.MonthlyAvgDailyLowDrybulbs << UnitConversions.convert(avg_low, 'C', 'F') end end @@ -198,7 +209,7 @@ def calc_ashrae_622_wsf(rowdata) wsf = nil CSV.read(ashrae_csv, headers: false).each do |data| - next unless data[0] == @header.Station + next unless data[0] == header.Station wsf = Float(data[1]).round(2) end @@ -247,12 +258,12 @@ def get_design_info_from_epw(epw_file) if epw_design_conditions.length > 0 epwHasDesignData = true epw_design_conditions = epw_design_conditions[0] - @design.HeatingDrybulb = UnitConversions.convert(epw_design_conditions.heatingDryBulb99, 'C', 'F') - @design.CoolingDrybulb = UnitConversions.convert(epw_design_conditions.coolingDryBulb1, 'C', 'F') - @design.CoolingWetbulb = UnitConversions.convert(epw_design_conditions.coolingMeanCoincidentWetBulb1, 'C', 'F') - @design.DailyTemperatureRange = UnitConversions.convert(epw_design_conditions.coolingDryBulbRange, 'deltaC', 'deltaF') - std_press = Psychrometrics.Pstd_fZ(@header.Altitude) - @design.CoolingHumidityRatio = Psychrometrics.w_fT_Twb_P(design.CoolingDrybulb, design.CoolingWetbulb, std_press) + design.HeatingDrybulb = UnitConversions.convert(epw_design_conditions.heatingDryBulb99, 'C', 'F') + design.CoolingDrybulb = UnitConversions.convert(epw_design_conditions.coolingDryBulb1, 'C', 'F') + design.CoolingWetbulb = UnitConversions.convert(epw_design_conditions.coolingMeanCoincidentWetBulb1, 'C', 'F') + design.DailyTemperatureRange = UnitConversions.convert(epw_design_conditions.coolingDryBulbRange, 'deltaC', 'deltaF') + std_press = Psychrometrics.Pstd_fZ(header.Altitude) + design.CoolingHumidityRatio = Psychrometrics.w_fT_Twb_P(design.CoolingDrybulb, design.CoolingWetbulb, std_press) end return epwHasDesignData end @@ -264,12 +275,12 @@ def calc_design_info(runner, rowdata) # - Cooling mean coincident wetbulb # - Cooling mean coincident humidity ratio - std_press = Psychrometrics.Pstd_fZ(@header.Altitude) + std_press = Psychrometrics.Pstd_fZ(header.Altitude) annual_hd_sorted_by_db = rowdata.sort_by { |x| x['db'] } # 1%/99%/2% values - heat99per_db = annual_hd_sorted_by_db[88 * @header.RecordsPerHour]['db'] - cool01per_db = annual_hd_sorted_by_db[8673 * @header.RecordsPerHour]['db'] + heat99per_db = annual_hd_sorted_by_db[88 * header.RecordsPerHour]['db'] + cool01per_db = annual_hd_sorted_by_db[8673 * header.RecordsPerHour]['db'] # Mean coincident values for cooling cool_wetbulb = [] @@ -281,15 +292,16 @@ def calc_design_info(runner, rowdata) end cool_design_wb = cool_wetbulb.sum(0.0) / cool_wetbulb.size - @design.CoolingDrybulb = UnitConversions.convert(cool01per_db, 'C', 'F') - @design.CoolingWetbulb = cool_design_wb - @design.CoolingHumidityRatio = Psychrometrics.w_fT_Twb_P(design.CoolingDrybulb, design.CoolingWetbulb, std_press) + design.CoolingDrybulb = UnitConversions.convert(cool01per_db, 'C', 'F') + design.CoolingWetbulb = cool_design_wb + design.CoolingHumidityRatio = Psychrometrics.w_fT_Twb_P(design.CoolingDrybulb, design.CoolingWetbulb, std_press) - @design.HeatingDrybulb = UnitConversions.convert(heat99per_db, 'C', 'F') + design.HeatingDrybulb = UnitConversions.convert(heat99per_db, 'C', 'F') end - def calc_ground_temperatures - # Return monthly ground temperatures. + def calc_shallow_ground_temperatures + # Return shallow monthly/annual ground temperatures. + # This correlation is the same that is used in DOE-2's src\WTH.f file, subroutine GTEMP amon = [15.0, 46.0, 74.0, 95.0, 135.0, 166.0, 196.0, 227.0, 258.0, 288.0, 319.0, 349.0] po = 0.6 @@ -298,47 +310,93 @@ def calc_ground_temperatures beta = Math::sqrt(Math::PI / (p * dif)) * 10.0 x = Math::exp(-beta) - x2 = x * x s = Math::sin(beta) c = Math::cos(beta) - y = (x2 - 2.0 * x * c + 1.0) / (2.0 * beta**2.0) + y = (x**2 - 2.0 * x * c + 1.0) / (2.0 * beta**2.0) gm = Math::sqrt(y) z = (1.0 - x * (c + s)) / (1.0 - x * (c - s)) phi = Math::atan(z) bo = (data.MonthlyAvgDrybulbs.max - data.MonthlyAvgDrybulbs.min) * 0.5 - @data.GroundMonthlyTemps = [] + data.ShallowGroundMonthlyTemps = [] for i in 0..11 theta = amon[i] * 24.0 - @data.GroundMonthlyTemps << UnitConversions.convert(data.AnnualAvgDrybulb - bo * Math::cos(2.0 * Math::PI / p * theta - po - phi) * gm + 460.0, 'R', 'F') + data.ShallowGroundMonthlyTemps << UnitConversions.convert(data.AnnualAvgDrybulb - bo * Math::cos(2.0 * Math::PI / p * theta - po - phi) * gm + 460.0, 'R', 'F') + end + data.ShallowGroundAnnualTemp = data.AnnualAvgDrybulb + + if header.Latitude < 0 + # Southern hemisphere + data.ShallowGroundMonthlyTemps.rotate!(6) + end + end + + def calc_deep_ground_temperatures(hpxml) + # Return deep annual ground temperature. + # Annual average ground temperature using Xing's model. + + # Avoid this lookup/calculation if there's no GSHP since there is a (small) runtime penalty. + if !hpxml.nil? + has_gshp = false + hpxml.buildings.each do |hpxml_bldg| + has_gshp = true if hpxml_bldg.heat_pumps.select { |h| h.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir }.size > 0 + end + return if !has_gshp + end + + deep_ground_temperatures = File.join(File.dirname(__FILE__), 'data', 'Xing_okstate_0664D_13659_Table_A-3.csv') + if not File.exist?(deep_ground_temperatures) + fail 'Could not find Xing_okstate_0664D_13659_Table_A-3.csv' + end + + require 'csv' + require 'matrix' + + # Minimize distance to Station + v1 = Vector[header.Latitude, header.Longitude] + dist = 1 / Constants.small + temperatures_amplitudes = nil + CSV.foreach(deep_ground_temperatures) do |row| + v2 = Vector[row[3].to_f, row[4].to_f] + new_dist = (v1 - v2).magnitude + if new_dist < dist + temperatures_amplitudes = row[5..9].map(&:to_f) + dist = new_dist + end end + + data.DeepGroundAnnualTemp = UnitConversions.convert(temperatures_amplitudes[0], 'C', 'F') + data.DeepGroundSurfTempAmp1 = UnitConversions.convert(temperatures_amplitudes[1], 'deltac', 'deltaf') + data.DeepGroundSurfTempAmp2 = UnitConversions.convert(temperatures_amplitudes[2], 'deltac', 'deltaf') + data.DeepGroundPhaseShiftTempAmp1 = temperatures_amplitudes[3] # days + data.DeepGroundPhaseShiftTempAmp2 = temperatures_amplitudes[4] # days end - def self.calc_mains_temperatures(avgOAT, maxDiffMonthlyAvgOAT, latitude, year) - n_days = Constants.NumDaysInYear(year) - pi = Math::PI - deg_rad = pi / 180 - mainsDailyTemps = Array.new(n_days, 0) - mainsMonthlyTemps = Array.new(12, 0) - mainsAvgTemp = 0 - - tmains_ratio = 0.4 + 0.01 * (avgOAT - 44) - tmains_lag = 35 - (avgOAT - 44) - if latitude < 0 + def calc_mains_temperatures(n_days) + # Algorithm based on Burch & Christensen "Towards Development of an Algorithm for Mains Water Temperature" + deg_rad = Math::PI / 180 + + tmains_ratio = 0.4 + 0.01 * (data.AnnualAvgDrybulb - 44) + tmains_lag = 35 - (data.AnnualAvgDrybulb - 44) + if header.Latitude < 0 sign = 1 # southern hemisphere else sign = -1 end + maxDiffMonthlyAvgOAT = data.MonthlyAvgDrybulbs.max - data.MonthlyAvgDrybulbs.min + # Calculate daily and annual + data.MainsDailyTemps = [] for d in 1..n_days - mainsDailyTemps[d - 1] = avgOAT + 6 + tmains_ratio * maxDiffMonthlyAvgOAT / 2 * Math.sin(deg_rad * (0.986 * (d - 15 - tmains_lag) + sign * 90)) - mainsAvgTemp += mainsDailyTemps[d - 1] / Float(n_days) + data.MainsDailyTemps << data.AnnualAvgDrybulb + 6 + tmains_ratio * maxDiffMonthlyAvgOAT / 2 * Math.sin(deg_rad * (0.986 * (d - 15 - tmains_lag) + sign * 90)) end + data.MainsAnnualTemp = data.MainsDailyTemps.sum / n_days + # Calculate monthly + data.MainsMonthlyTemps = [] for m in 1..12 - mainsMonthlyTemps[m - 1] = avgOAT + 6 + tmains_ratio * maxDiffMonthlyAvgOAT / 2 * Math.sin(deg_rad * (0.986 * ((m * 30 - 15) - 15 - tmains_lag) + sign * 90)) + data.MainsMonthlyTemps << data.AnnualAvgDrybulb + 6 + tmains_ratio * maxDiffMonthlyAvgOAT / 2 * Math.sin(deg_rad * (0.986 * ((m * 30 - 15) - 15 - tmains_lag) + sign * 90)) end - return mainsAvgTemp, mainsMonthlyTemps, mainsDailyTemps end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb index bf1ea6a3..a8b08067 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class XMLHelper diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlvalidator.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlvalidator.rb index 2ef26d26..1171ddac 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlvalidator.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlvalidator.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class XMLValidator @@ -55,17 +60,21 @@ def self.validate_against_schematron(hpxml_path, validator, hpxml_doc, errors = # Try to retrieve SystemIdentifier context_element = hpxml_doc.xpath(current_context.gsub('h:', ''))[current_context_idx] - sys_id = XMLHelper.get_attribute_value(XMLHelper.get_element(context_element, 'SystemIdentifier'), 'id') - if sys_id.nil? + if context_element.nil? + fail "Could not find element at xpath '#{current_context}' with index #{current_context_idx}." + end + + element_id = get_element_id(context_element) + if element_id.nil? # Keep checking parent elements context_element.each_ancestor do |parent_element| - sys_id = XMLHelper.get_attribute_value(XMLHelper.get_element(parent_element, 'SystemIdentifier'), 'id') - break unless sys_id.nil? + element_id = get_element_id(parent_element) + break unless element_id.nil? end end - sys_id_string = ", id: \"#{sys_id}\"" unless sys_id.nil? + element_id_string = ", id: \"#{element_id}\"" unless element_id.nil? - full_msg = "#{msg_txt} [context: #{current_context.gsub('h:', '')}#{sys_id_string}]" + full_msg = "#{msg_txt} [context: #{current_context.gsub('h:', '')}#{element_id_string}]" if n.name == 'failed-assert' errors.append(full_msg) elsif n.name == 'successful-report' @@ -76,4 +85,12 @@ def self.validate_against_schematron(hpxml_path, validator, hpxml_doc, errors = end return errors, warnings end + + def self.get_element_id(element) + if element.name.to_s == 'Building' + return XMLHelper.get_attribute_value(XMLHelper.get_element(element, 'BuildingID'), 'id') + else + return XMLHelper.get_attribute_value(XMLHelper.get_element(element, 'SystemIdentifier'), 'id') + end + end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb index 6ad29ecd..ba89c00e 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -8,9 +13,10 @@ require_relative '../resources/util.rb' require_relative 'util.rb' -class HPXMLtoOpenStudioAirflowTest < MiniTest::Test - def sample_files_dir - return File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'sample_files') +class HPXMLtoOpenStudioAirflowTest < Minitest::Test + def setup + @root_path = File.absolute_path(File.join(File.dirname(__FILE__), '..', '..')) + @sample_files_path = File.join(@root_path, 'workflow', 'sample_files') end def get_eed_for_ventilation(model, ee_name) @@ -36,8 +42,8 @@ def get_oed_for_ventilation(model, oe_name) def test_infiltration_ach50 args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") @@ -48,8 +54,8 @@ def test_infiltration_ach50 def test_infiltration_ach_house_pressure args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-enclosure-infil-ach-house-pressure.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-enclosure-infil-ach-house-pressure.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") @@ -60,8 +66,8 @@ def test_infiltration_ach_house_pressure def test_infiltration_ach50_flue args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-enclosure-infil-flue.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-enclosure-infil-flue.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") @@ -72,8 +78,8 @@ def test_infiltration_ach50_flue def test_infiltration_cfm50 args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-enclosure-infil-cfm50.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-enclosure-infil-cfm50.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") @@ -84,8 +90,8 @@ def test_infiltration_cfm50 def test_infiltration_cfm_house_pressure args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-enclosure-infil-cfm-house-pressure.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-enclosure-infil-cfm-house-pressure.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") @@ -96,8 +102,8 @@ def test_infiltration_cfm_house_pressure def test_infiltration_natural_ach args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-enclosure-infil-natural-ach.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-enclosure-infil-natural-ach.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") @@ -108,8 +114,8 @@ def test_infiltration_natural_ach def test_infiltration_natural_cfm args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-enclosure-infil-natural-cfm.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-enclosure-infil-natural-cfm.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") @@ -120,8 +126,8 @@ def test_infiltration_natural_cfm def test_infiltration_natural_ela args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-enclosure-infil-ela.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-enclosure-infil-ela.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") @@ -132,8 +138,8 @@ def test_infiltration_natural_ela def test_infiltration_multifamily args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-bldgtype-mf-unit.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") @@ -144,8 +150,8 @@ def test_infiltration_multifamily def test_infiltration_multifamily_compartmentalization args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-infil-compartmentalization-test.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-bldgtype-mf-unit-infil-compartmentalization-test.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") @@ -156,8 +162,8 @@ def test_infiltration_multifamily_compartmentalization def test_natural_ventilation args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check natural ventilation/whole house fan program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameNaturalVentilation} program") @@ -173,8 +179,8 @@ def test_natural_ventilation def test_natural_ventilation_7_days_per_week args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-enclosure-windows-natural-ventilation-availability.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-enclosure-windows-natural-ventilation-availability.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check natural ventilation/whole house fan program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameNaturalVentilation} program") @@ -190,8 +196,8 @@ def test_natural_ventilation_7_days_per_week def test_mechanical_ventilation_none args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") @@ -208,11 +214,11 @@ def test_mechanical_ventilation_none def test_mechanical_ventilation_supply args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-mechvent-supply.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-mechvent-supply.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - vent_fan = hpxml.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } + vent_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } vent_fan_cfm = vent_fan.average_total_unit_flow_rate vent_fan_power = vent_fan.fan_power @@ -232,11 +238,11 @@ def test_mechanical_ventilation_supply def test_mechanical_ventilation_exhaust args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-mechvent-exhaust.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-mechvent-exhaust.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - vent_fan = hpxml.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } + vent_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } vent_fan_cfm = vent_fan.average_total_unit_flow_rate vent_fan_power = vent_fan.fan_power @@ -256,11 +262,11 @@ def test_mechanical_ventilation_exhaust def test_mechanical_ventilation_balanced args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-mechvent-balanced.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-mechvent-balanced.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - vent_fan = hpxml.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } + vent_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } vent_fan_cfm = vent_fan.average_total_unit_flow_rate vent_fan_power = vent_fan.fan_power @@ -280,11 +286,11 @@ def test_mechanical_ventilation_balanced def test_mechanical_ventilation_erv args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-mechvent-erv.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-mechvent-erv.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - vent_fan = hpxml.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } + vent_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } vent_fan_cfm = vent_fan.average_total_unit_flow_rate vent_fan_power = vent_fan.fan_power @@ -304,11 +310,11 @@ def test_mechanical_ventilation_erv def test_mechanical_ventilation_hrv args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-mechvent-hrv.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-mechvent-hrv.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - vent_fan = hpxml.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } + vent_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } vent_fan_cfm = vent_fan.average_total_unit_flow_rate vent_fan_power = vent_fan.fan_power @@ -328,11 +334,11 @@ def test_mechanical_ventilation_hrv def test_mechanical_ventilation_cfis args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-mechvent-cfis.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-mechvent-cfis.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - vent_fan = hpxml.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } + vent_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } vent_fan_cfm = vent_fan.oa_unit_flow_rate vent_fan_power = vent_fan.fan_power vent_fan_mins = vent_fan.hours_in_operation / 24.0 * 60.0 @@ -353,11 +359,11 @@ def test_mechanical_ventilation_cfis def test_mechanical_ventilation_cfis_with_supplemental_fan args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-mechvent-cfis-supplemental-fan-exhaust.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-mechvent-cfis-supplemental-fan-exhaust.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - vent_fan = hpxml.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } + vent_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } vent_fan_cfm = vent_fan.oa_unit_flow_rate vent_fan_power = vent_fan.fan_power vent_fan_mins = vent_fan.hours_in_operation / 24.0 * 60.0 @@ -382,14 +388,14 @@ def test_mechanical_ventilation_cfis_with_supplemental_fan def test_ventilation_bath_kitchen_fans args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-mechvent-bath-kitchen-fans.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-mechvent-bath-kitchen-fans.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - bath_fan = hpxml.ventilation_fans.find { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationBath } + bath_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationBath } bath_fan_cfm = bath_fan.flow_rate * bath_fan.count bath_fan_power = bath_fan.fan_power * bath_fan.count - kitchen_fan = hpxml.ventilation_fans.find { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationKitchen } + kitchen_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationKitchen } kitchen_fan_cfm = kitchen_fan.flow_rate * (kitchen_fan.count.nil? ? 1 : kitchen_fan.count) kitchen_fan_power = kitchen_fan.fan_power * (kitchen_fan.count.nil? ? 1 : kitchen_fan.count) @@ -414,8 +420,8 @@ def test_ventilation_bath_kitchen_fans def test_clothes_dryer_exhaust args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") @@ -424,11 +430,11 @@ def test_clothes_dryer_exhaust def test_multiple_mechvent args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-mechvent-multiple.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-mechvent-multiple.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - vent_fans = hpxml.ventilation_fans.select { |f| !f.is_cfis_supplemental_fan? } + vent_fans = hpxml_bldg.ventilation_fans.select { |f| !f.is_cfis_supplemental_fan? } vent_fans.each do |vent_fan| vent_fan.hours_in_operation = 24.0 if vent_fan.hours_in_operation.nil? end @@ -496,17 +502,17 @@ def test_multiple_mechvent def test_shared_mechvent_multiple args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-mechvent-multiple.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-bldgtype-mf-unit-shared-mechvent-multiple.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - vent_fans_preheat = hpxml.ventilation_fans.select { |f| (not f.preheating_fuel.nil?) } - vent_fans_precool = hpxml.ventilation_fans.select { |f| (not f.precooling_fuel.nil?) } - vent_fans_tot_pow_noncfis = hpxml.ventilation_fans.select { |f| f.fan_type != HPXML::MechVentTypeCFIS }.map { |f| f.average_unit_fan_power }.sum(0.0) + vent_fans_preheat = hpxml_bldg.ventilation_fans.select { |f| (not f.preheating_fuel.nil?) } + vent_fans_precool = hpxml_bldg.ventilation_fans.select { |f| (not f.precooling_fuel.nil?) } + vent_fans_tot_pow_noncfis = hpxml_bldg.ventilation_fans.select { |f| f.fan_type != HPXML::MechVentTypeCFIS }.map { |f| f.average_unit_fan_power }.sum(0.0) # total cfms - vent_fans_cfm_tot_sup = hpxml.ventilation_fans.select { |f| f.fan_type == HPXML::MechVentTypeSupply }.map { |f| f.average_total_unit_flow_rate }.sum(0.0) - vent_fans_cfm_tot_exh = hpxml.ventilation_fans.select { |f| f.fan_type == HPXML::MechVentTypeExhaust }.map { |f| f.average_total_unit_flow_rate }.sum(0.0) - vent_fans_cfm_tot_ervhrvbal = hpxml.ventilation_fans.select { |f| [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV, HPXML::MechVentTypeBalanced].include? f.fan_type }.map { |f| f.average_total_unit_flow_rate }.sum(0.0) + vent_fans_cfm_tot_sup = hpxml_bldg.ventilation_fans.select { |f| f.fan_type == HPXML::MechVentTypeSupply }.map { |f| f.average_total_unit_flow_rate }.sum(0.0) + vent_fans_cfm_tot_exh = hpxml_bldg.ventilation_fans.select { |f| f.fan_type == HPXML::MechVentTypeExhaust }.map { |f| f.average_total_unit_flow_rate }.sum(0.0) + vent_fans_cfm_tot_ervhrvbal = hpxml_bldg.ventilation_fans.select { |f| [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV, HPXML::MechVentTypeBalanced].include? f.fan_type }.map { |f| f.average_total_unit_flow_rate }.sum(0.0) # preconditioned mech vent oa cfms vent_fans_cfm_oa_preheat_sup = vent_fans_preheat.select { |f| f.fan_type == HPXML::MechVentTypeSupply }.map { |f| f.average_oa_unit_flow_rate }.sum(0.0) vent_fans_cfm_oa_precool_sup = vent_fans_precool.select { |f| f.fan_type == HPXML::MechVentTypeSupply }.map { |f| f.average_oa_unit_flow_rate }.sum(0.0) @@ -515,9 +521,9 @@ def test_shared_mechvent_multiple vent_fans_cfm_oa_preheat_ervhrv = vent_fans_preheat.select { |f| [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? f.fan_type }.map { |f| f.average_oa_unit_flow_rate }.sum(0.0) vent_fans_cfm_oa_precool_ervhrv = vent_fans_precool.select { |f| [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? f.fan_type }.map { |f| f.average_oa_unit_flow_rate }.sum(0.0) # CFIS - vent_fans_cfm_oa_cfis = hpxml.ventilation_fans.select { |f| f.fan_type == HPXML::MechVentTypeCFIS }.map { |f| f.oa_unit_flow_rate }.sum(0.0) - vent_fans_pow_cfis = hpxml.ventilation_fans.select { |f| f.fan_type == HPXML::MechVentTypeCFIS }.map { |f| f.unit_fan_power }.sum(0.0) - vent_fans_mins_cfis = hpxml.ventilation_fans.select { |f| f.fan_type == HPXML::MechVentTypeCFIS }.map { |f| f.hours_in_operation / 24.0 * 60.0 }.sum(0.0) + vent_fans_cfm_oa_cfis = hpxml_bldg.ventilation_fans.select { |f| f.fan_type == HPXML::MechVentTypeCFIS }.map { |f| f.oa_unit_flow_rate }.sum(0.0) + vent_fans_pow_cfis = hpxml_bldg.ventilation_fans.select { |f| f.fan_type == HPXML::MechVentTypeCFIS }.map { |f| f.unit_fan_power }.sum(0.0) + vent_fans_mins_cfis = hpxml_bldg.ventilation_fans.select { |f| f.fan_type == HPXML::MechVentTypeCFIS }.map { |f| f.hours_in_operation / 24.0 * 60.0 }.sum(0.0) # Load and energy eed assert_equal(1, get_oed_for_ventilation(model, "#{Constants.ObjectNameMechanicalVentilationHouseFan} sensible load").size) @@ -544,12 +550,12 @@ def test_shared_mechvent_multiple def test_ducts_leakage_cfm25 args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - supply_leakage = hpxml.hvac_distributions[0].duct_leakage_measurements.find { |m| m.duct_type == HPXML::DuctTypeSupply } - return_leakage = hpxml.hvac_distributions[0].duct_leakage_measurements.find { |m| m.duct_type == HPXML::DuctTypeReturn } + supply_leakage = hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.find { |m| m.duct_type == HPXML::DuctTypeSupply } + return_leakage = hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.find { |m| m.duct_type == HPXML::DuctTypeReturn } supply_leakage_cfm25 = supply_leakage.duct_leakage_value return_leakage_cfm25 = return_leakage.duct_leakage_value @@ -561,12 +567,12 @@ def test_ducts_leakage_cfm25 def test_ducts_leakage_cfm50 args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-ducts-leakage-cfm50.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-ducts-leakage-cfm50.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - supply_leakage = hpxml.hvac_distributions[0].duct_leakage_measurements.find { |m| m.duct_type == HPXML::DuctTypeSupply } - return_leakage = hpxml.hvac_distributions[0].duct_leakage_measurements.find { |m| m.duct_type == HPXML::DuctTypeReturn } + supply_leakage = hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.find { |m| m.duct_type == HPXML::DuctTypeSupply } + return_leakage = hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.find { |m| m.duct_type == HPXML::DuctTypeReturn } supply_leakage_cfm50 = supply_leakage.duct_leakage_value return_leakage_cfm50 = return_leakage.duct_leakage_value @@ -578,12 +584,12 @@ def test_ducts_leakage_cfm50 def test_ducts_leakage_percent args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-ducts-leakage-percent.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-ducts-leakage-percent.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - supply_leakage = hpxml.hvac_distributions[0].duct_leakage_measurements.select { |m| m.duct_type == HPXML::DuctTypeSupply }[0] - return_leakage = hpxml.hvac_distributions[0].duct_leakage_measurements.select { |m| m.duct_type == HPXML::DuctTypeReturn }[0] + supply_leakage = hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.select { |m| m.duct_type == HPXML::DuctTypeSupply }[0] + return_leakage = hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.select { |m| m.duct_type == HPXML::DuctTypeReturn }[0] supply_leakage_frac = supply_leakage.duct_leakage_value return_leakage_frac = return_leakage.duct_leakage_value @@ -598,12 +604,12 @@ def test_ducts_ua 'base-hvac-ducts-area-multipliers.xml', 'base-hvac-ducts-effective-rvalue.xml'].each do |hpxml_name| args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, hpxml_name)) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, hpxml_name)) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - supply_area_multiplier = hpxml.hvac_distributions[0].ducts[0].duct_surface_area_multiplier - return_area_multiplier = hpxml.hvac_distributions[0].ducts[1].duct_surface_area_multiplier + supply_area_multiplier = hpxml_bldg.hvac_distributions[0].ducts[0].duct_surface_area_multiplier + return_area_multiplier = hpxml_bldg.hvac_distributions[0].ducts[1].duct_surface_area_multiplier supply_area_multiplier = 1.0 if supply_area_multiplier.nil? return_area_multiplier = 1.0 if return_area_multiplier.nil? @@ -616,8 +622,8 @@ def test_ducts_ua def test_ducts_ua_buried args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-ducts-buried.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-ducts-buried.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check ducts program program_values = get_ems_values(model.getEnergyManagementSystemSubroutines, 'duct subroutine') @@ -627,77 +633,77 @@ def test_ducts_ua_buried def test_infiltration_compartmentalization_area # Base - hpxml = HPXML.new(hpxml_path: File.absolute_path(File.join(sample_files_dir, 'base.xml'))) - total_area, exterior_area = hpxml.compartmentalization_boundary_areas + _hpxml, hpxml_bldg = _create_hpxml('base.xml') + total_area, exterior_area = hpxml_bldg.compartmentalization_boundary_areas assert_in_delta(5216, exterior_area, 1.0) assert_in_delta(5216, total_area, 1.0) # Test adjacent garage - hpxml = HPXML.new(hpxml_path: File.absolute_path(File.join(sample_files_dir, 'base-enclosure-garage.xml'))) - total_area, exterior_area = hpxml.compartmentalization_boundary_areas + _hpxml, hpxml_bldg = _create_hpxml('base-enclosure-garage.xml') + total_area, exterior_area = hpxml_bldg.compartmentalization_boundary_areas assert_in_delta(4976, exterior_area, 1.0) assert_in_delta(5216, total_area, 1.0) # Test unvented attic/crawlspace within infiltration volume - hpxml = HPXML.new(hpxml_path: File.absolute_path(File.join(sample_files_dir, 'base-foundation-unvented-crawlspace.xml'))) - hpxml.attics.each do |attic| + _hpxml, hpxml_bldg = _create_hpxml('base-foundation-unvented-crawlspace.xml') + hpxml_bldg.attics.each do |attic| attic.within_infiltration_volume = true end - hpxml.foundations.each do |foundation| + hpxml_bldg.foundations.each do |foundation| foundation.within_infiltration_volume = true end - total_area, exterior_area = hpxml.compartmentalization_boundary_areas + total_area, exterior_area = hpxml_bldg.compartmentalization_boundary_areas assert_in_delta(5000, exterior_area, 1.0) assert_in_delta(5000, total_area, 1.0) # Test unvented attic/crawlspace not within infiltration volume - hpxml = HPXML.new(hpxml_path: File.absolute_path(File.join(sample_files_dir, 'base-foundation-unvented-crawlspace.xml'))) - hpxml.attics.each do |attic| + _hpxml, hpxml_bldg = _create_hpxml('base-foundation-unvented-crawlspace.xml') + hpxml_bldg.attics.each do |attic| attic.within_infiltration_volume = false end - hpxml.foundations.each do |foundation| + hpxml_bldg.foundations.each do |foundation| foundation.within_infiltration_volume = false end - total_area, exterior_area = hpxml.compartmentalization_boundary_areas + total_area, exterior_area = hpxml_bldg.compartmentalization_boundary_areas assert_in_delta(3900, exterior_area, 1.0) assert_in_delta(3900, total_area, 1.0) # Test multifamily - hpxml = HPXML.new(hpxml_path: File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily.xml'))) - total_area, exterior_area = hpxml.compartmentalization_boundary_areas + _hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit.xml') + total_area, exterior_area = hpxml_bldg.compartmentalization_boundary_areas assert_in_delta(686, exterior_area, 1.0) assert_in_delta(2780, total_area, 1.0) end def test_infiltration_assumed_height # Base - hpxml = HPXML.new(hpxml_path: File.absolute_path(File.join(sample_files_dir, 'base.xml'))) - infil_volume = hpxml.air_infiltration_measurements.select { |m| !m.infiltration_volume.nil? }[0].infiltration_volume - infil_height = hpxml.inferred_infiltration_height(infil_volume) + _hpxml, hpxml_bldg = _create_hpxml('base.xml') + infil_volume = hpxml_bldg.air_infiltration_measurements.select { |m| !m.infiltration_volume.nil? }[0].infiltration_volume + infil_height = hpxml_bldg.inferred_infiltration_height(infil_volume) assert_equal(9.75, infil_height) # Test w/o conditioned basement - hpxml = HPXML.new(hpxml_path: File.absolute_path(File.join(sample_files_dir, 'base-foundation-unconditioned-basement.xml'))) - infil_volume = hpxml.air_infiltration_measurements.select { |m| !m.infiltration_volume.nil? }[0].infiltration_volume - infil_height = hpxml.inferred_infiltration_height(infil_volume) + _hpxml, hpxml_bldg = _create_hpxml('base-foundation-unconditioned-basement.xml') + infil_volume = hpxml_bldg.air_infiltration_measurements.select { |m| !m.infiltration_volume.nil? }[0].infiltration_volume + infil_height = hpxml_bldg.inferred_infiltration_height(infil_volume) assert_equal(8, infil_height) # Test w/ walkout basement - hpxml = HPXML.new(hpxml_path: File.absolute_path(File.join(sample_files_dir, 'base-foundation-walkout-basement.xml'))) - infil_volume = hpxml.air_infiltration_measurements.select { |m| !m.infiltration_volume.nil? }[0].infiltration_volume - infil_height = hpxml.inferred_infiltration_height(infil_volume) + _hpxml, hpxml_bldg = _create_hpxml('base-foundation-walkout-basement.xml') + infil_volume = hpxml_bldg.air_infiltration_measurements.select { |m| !m.infiltration_volume.nil? }[0].infiltration_volume + infil_height = hpxml_bldg.inferred_infiltration_height(infil_volume) assert_equal(16, infil_height) # Test 2 story building - hpxml = HPXML.new(hpxml_path: File.absolute_path(File.join(sample_files_dir, 'base-enclosure-2stories.xml'))) - infil_volume = hpxml.air_infiltration_measurements.select { |m| !m.infiltration_volume.nil? }[0].infiltration_volume - infil_height = hpxml.inferred_infiltration_height(infil_volume) + _hpxml, hpxml_bldg = _create_hpxml('base-enclosure-2stories.xml') + infil_volume = hpxml_bldg.air_infiltration_measurements.select { |m| !m.infiltration_volume.nil? }[0].infiltration_volume + infil_height = hpxml_bldg.inferred_infiltration_height(infil_volume) assert_equal(17.75, infil_height) # Test w/ cathedral ceiling - hpxml = HPXML.new(hpxml_path: File.absolute_path(File.join(sample_files_dir, 'base-atticroof-cathedral.xml'))) - infil_volume = hpxml.air_infiltration_measurements.find { |m| !m.infiltration_volume.nil? }.infiltration_volume - infil_height = hpxml.inferred_infiltration_height(infil_volume) + _hpxml, hpxml_bldg = _create_hpxml('base-atticroof-cathedral.xml') + infil_volume = hpxml_bldg.air_infiltration_measurements.find { |m| !m.infiltration_volume.nil? }.infiltration_volume + infil_height = hpxml_bldg.inferred_infiltration_height(infil_volume) assert_equal(13.75, infil_height) end @@ -736,6 +742,11 @@ def _test_measure(args_hash) File.delete(File.join(File.dirname(__FILE__), 'in.xml')) - return model, hpxml + return model, hpxml, hpxml.buildings[0] + end + + def _create_hpxml(hpxml_name) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, hpxml_name)) + return hpxml, hpxml.buildings[0] end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_battery.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_battery.rb index 2658ce1b..3c07f54e 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_battery.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_battery.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -7,7 +12,7 @@ require_relative '../measure.rb' require_relative '../resources/util.rb' -class HPXMLtoOpenStudioBatteryTest < MiniTest::Test +class HPXMLtoOpenStudioBatteryTest < Minitest::Test def sample_files_dir return File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'sample_files') end @@ -28,9 +33,9 @@ def calc_nom_capacity(battery) def test_battery_default args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-misc-defaults.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) - hpxml.batteries.each do |hpxml_battery| + hpxml_bldg.batteries.each do |hpxml_battery| battery = get_battery(model, hpxml_battery.id) # Check object @@ -61,9 +66,9 @@ def test_battery_default def test_battery args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-battery.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) - hpxml.batteries.each do |hpxml_battery| + hpxml_bldg.batteries.each do |hpxml_battery| battery = get_battery(model, hpxml_battery.id) assert_empty(battery) @@ -76,9 +81,9 @@ def test_battery def test_battery_scheduled args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-battery-scheduled.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) - hpxml.batteries.each do |hpxml_battery| + hpxml_bldg.batteries.each do |hpxml_battery| battery = get_battery(model, hpxml_battery.id) # Check object @@ -117,9 +122,9 @@ def test_battery_scheduled def test_pv_battery args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-pv-battery.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) - hpxml.batteries.each do |hpxml_battery| + hpxml_bldg.batteries.each do |hpxml_battery| battery = get_battery(model, hpxml_battery.id) # Check object @@ -153,9 +158,9 @@ def test_pv_battery def test_pv_battery_scheduled args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-pv-battery-scheduled.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) - hpxml.batteries.each do |hpxml_battery| + hpxml_bldg.batteries.each do |hpxml_battery| battery = get_battery(model, hpxml_battery.id) # Check object @@ -194,9 +199,9 @@ def test_pv_battery_scheduled def test_pv_battery_round_trip_efficiency args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-pv-battery-round-trip-efficiency.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) - hpxml.batteries.each do |hpxml_battery| + hpxml_bldg.batteries.each do |hpxml_battery| battery = get_battery(model, hpxml_battery.id) # Check object @@ -231,9 +236,9 @@ def test_pv_battery_lifetime_model skip # Temporarily disabled args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-pv-battery-lifetime-model.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) - hpxml.batteries.each do |hpxml_battery| + hpxml_bldg.batteries.each do |hpxml_battery| battery = get_battery(model, hpxml_battery.id) # Check object @@ -264,9 +269,9 @@ def test_pv_battery_lifetime_model def test_pv_battery_garage args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-pv-battery-garage.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) - hpxml.batteries.each do |hpxml_battery| + hpxml_bldg.batteries.each do |hpxml_battery| battery = get_battery(model, hpxml_battery.id) # Check object @@ -298,9 +303,9 @@ def test_pv_battery_garage def test_pv_battery_ah args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-pv-battery-ah.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) - hpxml.batteries.each do |hpxml_battery| + hpxml_bldg.batteries.each do |hpxml_battery| battery = get_battery(model, hpxml_battery.id) # Check object @@ -363,6 +368,6 @@ def _test_measure(args_hash) File.delete(File.join(File.dirname(__FILE__), 'in.xml')) - return model, hpxml + return model, hpxml, hpxml.buildings[0] end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb index 721c7952..c499f2fc 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -7,7 +12,7 @@ require_relative '../measure.rb' require_relative '../resources/util.rb' -class HPXMLtoOpenStudioDefaultsTest < MiniTest::Test +class HPXMLtoOpenStudioDefaultsTest < Minitest::Test ConstantDaySchedule = '0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1' ConstantMonthSchedule = '1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1' @@ -31,145 +36,49 @@ def teardown def test_header # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml, _hpxml_bldg = _create_hpxml('base.xml') hpxml.header.timestep = 30 hpxml.header.sim_begin_month = 2 hpxml.header.sim_begin_day = 2 hpxml.header.sim_end_month = 11 hpxml.header.sim_end_day = 11 hpxml.header.sim_calendar_year = 2009 - hpxml.header.dst_enabled = false - hpxml.header.dst_begin_month = 3 - hpxml.header.dst_begin_day = 3 - hpxml.header.dst_end_month = 10 - hpxml.header.dst_end_day = 10 - hpxml.header.heat_pump_sizing_methodology = HPXML::HeatPumpSizingMaxLoad - hpxml.header.allow_increased_fixed_capacities = true - hpxml.header.state_code = 'CA' - hpxml.header.time_zone_utc_offset = -8 hpxml.header.temperature_capacitance_multiplier = 1.5 - hpxml.header.natvent_days_per_week = 7 hpxml.header.unavailable_periods.add(column_name: 'Power Outage', begin_month: 1, begin_day: 1, begin_hour: 3, end_month: 12, end_day: 31, end_hour: 4, natvent_availability: HPXML::ScheduleUnavailable) - hpxml.header.shading_summer_begin_month = 2 - hpxml.header.shading_summer_begin_day = 3 - hpxml.header.shading_summer_end_month = 4 - hpxml.header.shading_summer_end_day = 5 - hpxml.header.manualj_heating_design_temp = 0.0 - hpxml.header.manualj_cooling_design_temp = 100.0 - hpxml.header.manualj_heating_setpoint = 68.0 - hpxml.header.manualj_cooling_setpoint = 78.0 - hpxml.header.manualj_humidity_setpoint = 0.44 - hpxml.header.manualj_internal_loads_sensible = 1600.0 - hpxml.header.manualj_internal_loads_latent = 60.0 - hpxml.header.manualj_num_occupants = 8 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_header_values(hpxml_default, 30, 2, 2, 11, 11, 2009, false, 3, 3, 10, 10, HPXML::HeatPumpSizingMaxLoad, true, 'CA', - -8, 1.5, 7, 3, 4, HPXML::ScheduleUnavailable, 2, 3, 4, 5, 0.0, 100.0, 68.0, 78.0, 0.44, 1600.0, 60.0, 8) - - # Test defaults - DST not in weather file - hpxml.header.timestep = nil - hpxml.header.sim_begin_month = nil - hpxml.header.sim_begin_day = nil - hpxml.header.sim_end_month = nil - hpxml.header.sim_end_day = nil - hpxml.header.sim_calendar_year = nil - hpxml.header.dst_enabled = nil - hpxml.header.dst_begin_month = nil - hpxml.header.dst_begin_day = nil - hpxml.header.dst_end_month = nil - hpxml.header.dst_end_day = nil - hpxml.header.heat_pump_sizing_methodology = nil - hpxml.header.allow_increased_fixed_capacities = nil - hpxml.header.state_code = nil - hpxml.header.time_zone_utc_offset = nil - hpxml.header.temperature_capacitance_multiplier = nil - hpxml.header.natvent_days_per_week = nil - hpxml.header.unavailable_periods[-1].begin_hour = nil - hpxml.header.unavailable_periods[-1].end_hour = nil - hpxml.header.unavailable_periods[-1].natvent_availability = nil - hpxml.header.shading_summer_begin_month = nil - hpxml.header.shading_summer_begin_day = nil - hpxml.header.shading_summer_end_month = nil - hpxml.header.shading_summer_end_day = nil - hpxml.header.manualj_heating_design_temp = nil - hpxml.header.manualj_cooling_design_temp = nil - hpxml.header.manualj_heating_setpoint = nil - hpxml.header.manualj_cooling_setpoint = nil - hpxml.header.manualj_humidity_setpoint = nil - hpxml.header.manualj_internal_loads_sensible = nil - hpxml.header.manualj_internal_loads_latent = nil - hpxml.header.manualj_num_occupants = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_header_values(hpxml_default, 60, 1, 1, 12, 31, 2007, true, 3, 12, 11, 5, HPXML::HeatPumpSizingHERS, false, 'CO', - -7, 1.0, 3, 0, 24, HPXML::ScheduleRegular, 5, 1, 10, 31, 6.8, 91.8, 70.0, 75.0, 0.5, 2400.0, 0.0, 4) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, _default_hpxml_bldg = _test_measure() + _test_default_header_values(default_hpxml, 30, 2, 2, 11, 11, 2009, 1.5, 3, 4, HPXML::ScheduleUnavailable) - # Test defaults - DST in weather file - hpxml = _create_hpxml('base-location-AMY-2012.xml') + # Test defaults - calendar year override by AMY year + hpxml, _hpxml_bldg = _create_hpxml('base-location-AMY-2012.xml') hpxml.header.timestep = nil hpxml.header.sim_begin_month = nil hpxml.header.sim_begin_day = nil hpxml.header.sim_end_month = nil hpxml.header.sim_end_day = nil - hpxml.header.sim_calendar_year = nil - hpxml.header.dst_enabled = nil - hpxml.header.dst_begin_month = nil - hpxml.header.dst_begin_day = nil - hpxml.header.dst_end_month = nil - hpxml.header.dst_end_day = nil - hpxml.header.heat_pump_sizing_methodology = nil - hpxml.header.allow_increased_fixed_capacities = nil - hpxml.header.state_code = nil - hpxml.header.time_zone_utc_offset = nil hpxml.header.temperature_capacitance_multiplier = nil - hpxml.header.shading_summer_begin_month = nil - hpxml.header.shading_summer_begin_day = nil - hpxml.header.shading_summer_end_month = nil - hpxml.header.shading_summer_end_day = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_header_values(hpxml_default, 60, 1, 1, 12, 31, 2012, true, 3, 11, 11, 4, nil, false, 'CO', - -7, 1.0, 3, nil, nil, nil, 5, 1, 9, 30, 10.2, 91.4, 70.0, 75.0, 0.5, 2400.0, 0.0, 4) - - # Test defaults - calendar year override by AMY year hpxml.header.sim_calendar_year = 2020 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_header_values(hpxml_default, 60, 1, 1, 12, 31, 2012, true, 3, 11, 11, 4, nil, false, 'CO', - -7, 1.0, 3, nil, nil, nil, 5, 1, 9, 30, 10.2, 91.4, 70.0, 75.0, 0.5, 2400.0, 0.0, 4) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, _default_hpxml_bldg = _test_measure() + _test_default_header_values(default_hpxml, 60, 1, 1, 12, 31, 2012, 1.0, nil, nil, nil) - # Test defaults - southern hemisphere, invalid state code - hpxml = _create_hpxml('base-location-capetown-zaf.xml') + # Test defaults - southern hemisphere + hpxml, _hpxml_bldg = _create_hpxml('base-location-capetown-zaf.xml') hpxml.header.timestep = nil hpxml.header.sim_begin_month = nil hpxml.header.sim_begin_day = nil hpxml.header.sim_end_month = nil hpxml.header.sim_end_day = nil hpxml.header.sim_calendar_year = nil - hpxml.header.dst_enabled = nil - hpxml.header.dst_begin_month = nil - hpxml.header.dst_begin_day = nil - hpxml.header.dst_end_month = nil - hpxml.header.dst_end_day = nil - hpxml.header.heat_pump_sizing_methodology = nil - hpxml.header.allow_increased_fixed_capacities = nil - hpxml.header.state_code = nil - hpxml.header.time_zone_utc_offset = nil hpxml.header.temperature_capacitance_multiplier = nil - hpxml.header.shading_summer_begin_month = nil - hpxml.header.shading_summer_begin_day = nil - hpxml.header.shading_summer_end_month = nil - hpxml.header.shading_summer_end_day = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_header_values(hpxml_default, 60, 1, 1, 12, 31, 2007, true, 3, 12, 11, 5, nil, false, nil, - 2, 1.0, 3, nil, nil, nil, 12, 1, 4, 30, 41.0, 84.4, 70.0, 75.0, 0.5, 2400.0, 0.0, 4) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, _default_hpxml_bldg = _test_measure() + _test_default_header_values(default_hpxml, 60, 1, 1, 12, 31, 2007, 1.0, nil, nil, nil) end def test_emissions_factors # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-misc-loads-large-uncommon.xml') + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon.xml') for emissions_type in ['CO2e', 'NOx', 'SO2', 'foo'] hpxml.header.emissions_scenarios.add(name: emissions_type, emissions_type: emissions_type, @@ -190,13 +99,13 @@ def test_emissions_factors wood_pellets_units: HPXML::EmissionsScenario::UnitsLbPerMBtu, wood_pellets_value: 999.0) end - hpxml.water_heating_systems[0].fuel_type = HPXML::FuelTypePropane - hpxml.clothes_dryers[0].fuel_type = HPXML::FuelTypeOil - hpxml.cooking_ranges[0].fuel_type = HPXML::FuelTypeWoodCord - hpxml.fuel_loads[0].fuel_type = HPXML::FuelTypeWoodPellets - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - hpxml_default.header.emissions_scenarios.each do |scenario| + hpxml_bldg.water_heating_systems[0].fuel_type = HPXML::FuelTypePropane + hpxml_bldg.clothes_dryers[0].fuel_type = HPXML::FuelTypeOil + hpxml_bldg.cooking_ranges[0].fuel_type = HPXML::FuelTypeWoodCord + hpxml_bldg.fuel_loads[0].fuel_type = HPXML::FuelTypeWoodPellets + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, _default_hpxml_bldg = _test_measure() + default_hpxml.header.emissions_scenarios.each do |scenario| _test_default_emissions_values(scenario, 1, 9, HPXML::EmissionsScenario::UnitsLbPerMBtu, 123.0, HPXML::EmissionsScenario::UnitsLbPerMBtu, 234.0, @@ -222,9 +131,9 @@ def test_emissions_factors scenario.wood_pellets_units = nil scenario.wood_pellets_value = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - hpxml_default.header.emissions_scenarios.each do |scenario| + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, _default_hpxml_bldg = _test_measure() + default_hpxml.header.emissions_scenarios.each do |scenario| if scenario.emissions_type == 'CO2e' natural_gas_value, propane_value, fuel_oil_value = 147.3, 177.8, 195.9 # lb/MBtu elsif scenario.emissions_type == 'NOx' @@ -246,7 +155,7 @@ def test_emissions_factors def test_utility_bills # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-pv.xml') + hpxml, _hpxml_bldg = _create_hpxml('base-pv.xml') hpxml.header.utility_bill_scenarios.clear for pv_compensation_type in [HPXML::PVCompensationTypeNetMetering, HPXML::PVCompensationTypeFeedInTariff] hpxml.header.utility_bill_scenarios.add(name: pv_compensation_type, @@ -270,9 +179,9 @@ def test_utility_bills pv_feed_in_tariff_rate: 0.15, pv_monthly_grid_connection_fee_dollars: 3) end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - scenarios = hpxml_default.header.utility_bill_scenarios + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, _default_hpxml_bldg = _test_measure() + scenarios = default_hpxml.header.utility_bill_scenarios _test_default_bills_values(scenarios[0], 8, 9, 10, 11, 12, 13, 14, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, HPXML::PVCompensationTypeNetMetering, HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost, nil, nil, nil, 3) _test_default_bills_values(scenarios[1], 8, 9, 10, 11, 12, 13, 14, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, HPXML::PVCompensationTypeFeedInTariff, nil, nil, 0.15, nil, 3) @@ -299,542 +208,644 @@ def test_utility_bills scenario.pv_monthly_grid_connection_fee_dollars_per_kw = nil scenario.pv_monthly_grid_connection_fee_dollars = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - hpxml_default.header.utility_bill_scenarios.each do |scenario| - _test_default_bills_values(scenario, 12, 12, nil, nil, nil, nil, nil, 0.11362695139911635, 0.7169975308418142, nil, nil, nil, nil, nil, HPXML::PVCompensationTypeNetMetering, HPXML::PVAnnualExcessSellbackRateTypeUserSpecified, 0.03, nil, nil, 0) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, _default_hpxml_bldg = _test_measure() + default_hpxml.header.utility_bill_scenarios.each do |scenario| + _test_default_bills_values(scenario, 12, 12, nil, nil, nil, nil, nil, 0.12522695139911635, 1.059331185615199, nil, nil, nil, nil, nil, HPXML::PVCompensationTypeNetMetering, HPXML::PVAnnualExcessSellbackRateTypeUserSpecified, 0.03, nil, nil, 0) end # Test defaults w/ electricity JSON file hpxml.header.utility_bill_scenarios.each do |scenario| scenario.elec_tariff_filepath = File.join(File.dirname(__FILE__), '..', '..', 'ReportUtilityBills', 'resources', 'detailed_rates', 'Sample Tiered Rate.json') end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - hpxml_default.header.utility_bill_scenarios.each do |scenario| - _test_default_bills_values(scenario, nil, 12, nil, nil, nil, nil, nil, nil, 0.7169975308418142, nil, nil, nil, nil, nil, HPXML::PVCompensationTypeNetMetering, HPXML::PVAnnualExcessSellbackRateTypeUserSpecified, 0.03, nil, nil, 0) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, _default_hpxml_bldg = _test_measure() + default_hpxml.header.utility_bill_scenarios.each do |scenario| + _test_default_bills_values(scenario, nil, 12, nil, nil, nil, nil, nil, nil, 1.059331185615199, nil, nil, nil, nil, nil, HPXML::PVCompensationTypeNetMetering, HPXML::PVAnnualExcessSellbackRateTypeUserSpecified, 0.03, nil, nil, 0) end end + def test_building + # Test inputs not overridden by defaults + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.dst_enabled = false + hpxml_bldg.dst_begin_month = 3 + hpxml_bldg.dst_begin_day = 3 + hpxml_bldg.dst_end_month = 10 + hpxml_bldg.dst_end_day = 10 + hpxml_bldg.state_code = 'CA' + hpxml_bldg.time_zone_utc_offset = -8 + hpxml_bldg.header.natvent_days_per_week = 7 + hpxml_bldg.header.heat_pump_sizing_methodology = HPXML::HeatPumpSizingMaxLoad + hpxml_bldg.header.allow_increased_fixed_capacities = true + hpxml_bldg.header.shading_summer_begin_month = 2 + hpxml_bldg.header.shading_summer_begin_day = 3 + hpxml_bldg.header.shading_summer_end_month = 4 + hpxml_bldg.header.shading_summer_end_day = 5 + hpxml_bldg.header.manualj_heating_design_temp = 0.0 + hpxml_bldg.header.manualj_cooling_design_temp = 100.0 + hpxml_bldg.header.manualj_heating_setpoint = 68.0 + hpxml_bldg.header.manualj_cooling_setpoint = 78.0 + hpxml_bldg.header.manualj_humidity_setpoint = 0.44 + hpxml_bldg.header.manualj_internal_loads_sensible = 1600.0 + hpxml_bldg.header.manualj_internal_loads_latent = 60.0 + hpxml_bldg.header.manualj_num_occupants = 8 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_building_values(default_hpxml_bldg, false, 3, 3, 10, 10, 'CA', -8, 7, HPXML::HeatPumpSizingMaxLoad, true, + 2, 3, 4, 5, 0.0, 100.0, 68.0, 78.0, 0.44, 1600.0, 60.0, 8) + + # Test defaults - DST not in weather file + hpxml_bldg.dst_enabled = nil + hpxml_bldg.dst_begin_month = nil + hpxml_bldg.dst_begin_day = nil + hpxml_bldg.dst_end_month = nil + hpxml_bldg.dst_end_day = nil + hpxml_bldg.state_code = nil + hpxml_bldg.time_zone_utc_offset = nil + hpxml_bldg.header.natvent_days_per_week = nil + hpxml_bldg.header.heat_pump_sizing_methodology = nil + hpxml_bldg.header.allow_increased_fixed_capacities = nil + hpxml_bldg.header.shading_summer_begin_month = nil + hpxml_bldg.header.shading_summer_begin_day = nil + hpxml_bldg.header.shading_summer_end_month = nil + hpxml_bldg.header.shading_summer_end_day = nil + hpxml_bldg.header.manualj_heating_design_temp = nil + hpxml_bldg.header.manualj_cooling_design_temp = nil + hpxml_bldg.header.manualj_heating_setpoint = nil + hpxml_bldg.header.manualj_cooling_setpoint = nil + hpxml_bldg.header.manualj_humidity_setpoint = nil + hpxml_bldg.header.manualj_internal_loads_sensible = nil + hpxml_bldg.header.manualj_internal_loads_latent = nil + hpxml_bldg.header.manualj_num_occupants = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_building_values(default_hpxml_bldg, true, 3, 12, 11, 5, 'CO', -7, 3, HPXML::HeatPumpSizingHERS, false, + 5, 1, 10, 31, 6.8, 91.4, 70.0, 75.0, 0.5, 2400.0, 0.0, 4) + + # Test defaults - DST in weather file + hpxml, hpxml_bldg = _create_hpxml('base-location-AMY-2012.xml') + hpxml_bldg.dst_enabled = nil + hpxml_bldg.dst_begin_month = nil + hpxml_bldg.dst_begin_day = nil + hpxml_bldg.dst_end_month = nil + hpxml_bldg.dst_end_day = nil + hpxml_bldg.state_code = nil + hpxml_bldg.time_zone_utc_offset = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_building_values(default_hpxml_bldg, true, 3, 11, 11, 4, 'CO', -7, 3, nil, false, + 5, 1, 9, 30, 10.2, 91.4, 70.0, 75.0, 0.5, 2400.0, 0.0, 4) + + # Test defaults - southern hemisphere, invalid state code + hpxml, hpxml_bldg = _create_hpxml('base-location-capetown-zaf.xml') + hpxml_bldg.dst_enabled = nil + hpxml_bldg.dst_begin_month = nil + hpxml_bldg.dst_begin_day = nil + hpxml_bldg.dst_end_month = nil + hpxml_bldg.dst_end_day = nil + hpxml_bldg.state_code = nil + hpxml_bldg.time_zone_utc_offset = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_building_values(default_hpxml_bldg, true, 3, 12, 11, 5, nil, 2, 3, nil, false, + 12, 1, 4, 30, 41.0, 84.4, 70.0, 75.0, 0.5, 2400.0, 0.0, 4) + end + def test_site # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.site.site_type = HPXML::SiteTypeRural - hpxml.site.shielding_of_home = HPXML::ShieldingExposed - hpxml.site.ground_conductivity = 0.8 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, HPXML::SiteTypeRural, HPXML::ShieldingExposed, 0.8) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.site.site_type = HPXML::SiteTypeRural + hpxml_bldg.site.shielding_of_home = HPXML::ShieldingExposed + hpxml_bldg.site.ground_conductivity = 0.8 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_site_values(default_hpxml_bldg, HPXML::SiteTypeRural, HPXML::ShieldingExposed, 0.8) # Test defaults - hpxml.site.site_type = nil - hpxml.site.shielding_of_home = nil - hpxml.site.ground_conductivity = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.0) + hpxml_bldg.site.site_type = nil + hpxml_bldg.site.shielding_of_home = nil + hpxml_bldg.site.ground_conductivity = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_site_values(default_hpxml_bldg, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.0) end def test_neighbor_buildings # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-misc-neighbor-shading.xml') - hpxml.neighbor_buildings[0].azimuth = 123 - hpxml.neighbor_buildings[1].azimuth = 321 - hpxml.walls[0].azimuth = 123 - hpxml.walls[1].azimuth = 321 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_neighbor_building_values(hpxml_default, [123, 321]) + hpxml, hpxml_bldg = _create_hpxml('base-misc-neighbor-shading.xml') + hpxml_bldg.neighbor_buildings[0].azimuth = 123 + hpxml_bldg.neighbor_buildings[1].azimuth = 321 + hpxml_bldg.walls[0].azimuth = 123 + hpxml_bldg.walls[1].azimuth = 321 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_neighbor_building_values(default_hpxml_bldg, [123, 321]) # Test defaults - hpxml.neighbor_buildings[0].azimuth = nil - hpxml.neighbor_buildings[1].azimuth = nil - hpxml.neighbor_buildings[0].orientation = HPXML::OrientationEast - hpxml.neighbor_buildings[1].orientation = HPXML::OrientationNorth - hpxml.walls[0].azimuth = 90 - hpxml.walls[1].azimuth = 0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_neighbor_building_values(hpxml_default, [90, 0]) + hpxml_bldg.neighbor_buildings[0].azimuth = nil + hpxml_bldg.neighbor_buildings[1].azimuth = nil + hpxml_bldg.neighbor_buildings[0].orientation = HPXML::OrientationEast + hpxml_bldg.neighbor_buildings[1].orientation = HPXML::OrientationNorth + hpxml_bldg.walls[0].azimuth = 90 + hpxml_bldg.walls[1].azimuth = 0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_neighbor_building_values(default_hpxml_bldg, [90, 0]) end def test_occupancy # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.building_occupancy.weekday_fractions = ConstantDaySchedule - hpxml.building_occupancy.weekend_fractions = ConstantDaySchedule - hpxml.building_occupancy.monthly_multipliers = ConstantMonthSchedule - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_occupancy_values(hpxml_default, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.building_occupancy.weekday_fractions = ConstantDaySchedule + hpxml_bldg.building_occupancy.weekend_fractions = ConstantDaySchedule + hpxml_bldg.building_occupancy.monthly_multipliers = ConstantMonthSchedule + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_occupancy_values(default_hpxml_bldg, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults - hpxml.building_occupancy.weekday_fractions = nil - hpxml.building_occupancy.weekend_fractions = nil - hpxml.building_occupancy.monthly_multipliers = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_occupancy_values(hpxml_default, Schedule.OccupantsWeekdayFractions, Schedule.OccupantsWeekendFractions, Schedule.OccupantsMonthlyMultipliers) + hpxml_bldg.building_occupancy.weekday_fractions = nil + hpxml_bldg.building_occupancy.weekend_fractions = nil + hpxml_bldg.building_occupancy.monthly_multipliers = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_occupancy_values(default_hpxml_bldg, Schedule.OccupantsWeekdayFractions, Schedule.OccupantsWeekendFractions, Schedule.OccupantsMonthlyMultipliers) end def test_building_construction # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.building_construction.number_of_bathrooms = 4 - hpxml.building_construction.conditioned_building_volume = 20000 - hpxml.building_construction.average_ceiling_height = 7 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_building_construction_values(hpxml_default, 20000, 7, 4) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.building_construction.number_of_bathrooms = 4 + hpxml_bldg.building_construction.conditioned_building_volume = 20000 + hpxml_bldg.building_construction.average_ceiling_height = 7 + hpxml_bldg.building_construction.number_of_units = 3 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_building_construction_values(default_hpxml_bldg, 20000, 7, 4, 3) # Test defaults - hpxml.building_construction.conditioned_building_volume = nil - hpxml.building_construction.average_ceiling_height = nil - hpxml.building_construction.number_of_bathrooms = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_building_construction_values(hpxml_default, 21600, 8, 2) + hpxml_bldg.building_construction.conditioned_building_volume = nil + hpxml_bldg.building_construction.average_ceiling_height = nil + hpxml_bldg.building_construction.number_of_bathrooms = nil + hpxml_bldg.building_construction.number_of_units = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_building_construction_values(default_hpxml_bldg, 21600, 8, 2, 1) # Test defaults w/ average ceiling height - hpxml.building_construction.conditioned_building_volume = nil - hpxml.building_construction.average_ceiling_height = 10 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_building_construction_values(hpxml_default, 27000, 10, 2) + hpxml_bldg.building_construction.conditioned_building_volume = nil + hpxml_bldg.building_construction.average_ceiling_height = 10 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_building_construction_values(default_hpxml_bldg, 27000, 10, 2, 1) # Test defaults w/ conditioned building volume - hpxml.building_construction.conditioned_building_volume = 20000 - hpxml.building_construction.average_ceiling_height = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_building_construction_values(hpxml_default, 20000, 7.4, 2) + hpxml_bldg.building_construction.conditioned_building_volume = 20000 + hpxml_bldg.building_construction.average_ceiling_height = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_building_construction_values(default_hpxml_bldg, 20000, 7.4, 2, 1) # Test defaults w/ infiltration volume - hpxml.building_construction.conditioned_building_volume = nil - hpxml.air_infiltration_measurements[0].infiltration_volume = 25650 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_building_construction_values(hpxml_default, 21600, 8, 2) + hpxml_bldg.building_construction.conditioned_building_volume = nil + hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = 25650 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_building_construction_values(default_hpxml_bldg, 21600, 8, 2, 1) # Test defaults w/ infiltration volume - hpxml.building_construction.conditioned_building_volume = nil - hpxml.air_infiltration_measurements[0].infiltration_volume = 18000 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_building_construction_values(hpxml_default, 18000, 6.67, 2) + hpxml_bldg.building_construction.conditioned_building_volume = nil + hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = 18000 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_building_construction_values(default_hpxml_bldg, 18000, 6.67, 2, 1) # Test defaults w/ conditioned crawlspace - hpxml = _create_hpxml('base-foundation-conditioned-crawlspace.xml') - hpxml.building_construction.conditioned_building_volume = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_building_construction_values(hpxml_default, 16200, 8, 2) + hpxml, hpxml_bldg = _create_hpxml('base-foundation-conditioned-crawlspace.xml') + hpxml_bldg.building_construction.conditioned_building_volume = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_building_construction_values(default_hpxml_bldg, 16200, 8, 2, 1) end def test_climate_and_risk_zones # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.climate_and_risk_zones.climate_zone_ieccs[0].year = 2009 - hpxml.climate_and_risk_zones.climate_zone_ieccs[0].zone = '2B' - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_climate_and_risk_zones_values(hpxml_default, 2009, '2B') + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs[0].year = 2009 + hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs[0].zone = '2B' + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_climate_and_risk_zones_values(default_hpxml_bldg, 2009, '2B') # Test defaults - hpxml.climate_and_risk_zones.climate_zone_ieccs[0].delete - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_climate_and_risk_zones_values(hpxml_default, 2006, '5B') + hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs[0].delete + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_climate_and_risk_zones_values(default_hpxml_bldg, 2006, '5B') # Test defaults - invalid IECC zone - hpxml = _create_hpxml('base-location-capetown-zaf.xml') - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_climate_and_risk_zones_values(hpxml_default, nil, nil) + hpxml, _hpxml_bldg = _create_hpxml('base-location-capetown-zaf.xml') + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_climate_and_risk_zones_values(default_hpxml_bldg, nil, nil) end def test_infiltration # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.air_infiltration_measurements[0].infiltration_volume = 25000 - hpxml.air_infiltration.has_flue_or_chimney_in_conditioned_space = true - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_infiltration_values(hpxml_default, 25000, true) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = 25000 + hpxml_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space = true + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_infiltration_values(default_hpxml_bldg, 25000, true) # Test defaults w/ conditioned basement - hpxml.air_infiltration_measurements[0].infiltration_volume = nil - hpxml.air_infiltration.has_flue_or_chimney_in_conditioned_space = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_infiltration_values(hpxml_default, 2700 * 8, false) + hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = nil + hpxml_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_infiltration_values(default_hpxml_bldg, 2700 * 8, false) # Test defaults w/ conditioned basement and atmospheric water heater w/ flue - hpxml.water_heating_systems[0].fuel_type = HPXML::FuelTypeNaturalGas - hpxml.water_heating_systems[0].energy_factor = 0.6 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_infiltration_values(hpxml_default, 2700 * 8, true) + hpxml_bldg.water_heating_systems[0].fuel_type = HPXML::FuelTypeNaturalGas + hpxml_bldg.water_heating_systems[0].energy_factor = 0.6 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_infiltration_values(default_hpxml_bldg, 2700 * 8, true) # Test defaults w/o conditioned basement - hpxml = _create_hpxml('base-foundation-slab.xml') - hpxml.air_infiltration_measurements[0].infiltration_volume = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_infiltration_values(hpxml_default, 1350 * 8, false) + hpxml, hpxml_bldg = _create_hpxml('base-foundation-slab.xml') + hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_infiltration_values(default_hpxml_bldg, 1350 * 8, false) # Test defaults w/ conditioned crawlspace - hpxml = _create_hpxml('base-foundation-conditioned-crawlspace.xml') - hpxml.air_infiltration_measurements[0].infiltration_volume = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_infiltration_values(hpxml_default, 1350 * 12, false) + hpxml, hpxml_bldg = _create_hpxml('base-foundation-conditioned-crawlspace.xml') + hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_infiltration_values(default_hpxml_bldg, 1350 * 12, false) end def test_infiltration_compartmentaliztion_test_adjustment # Test single-family detached - hpxml = _create_hpxml('base.xml') - hpxml.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitTotal - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_infiltration_compartmentalization_test_values(hpxml_default.air_infiltration_measurements[0], nil) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitTotal + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_infiltration_compartmentalization_test_values(default_hpxml_bldg.air_infiltration_measurements[0], nil) # Test single-family attached not overridden by defaults - hpxml = _create_hpxml('base-bldgtype-attached.xml') - hpxml.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitTotal - hpxml.air_infiltration_measurements[0].a_ext = 0.5 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_infiltration_compartmentalization_test_values(hpxml_default.air_infiltration_measurements[0], 0.5) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') + hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitTotal + hpxml_bldg.air_infiltration_measurements[0].a_ext = 0.5 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_infiltration_compartmentalization_test_values(default_hpxml_bldg.air_infiltration_measurements[0], 0.5) # Test single-family attached defaults - hpxml.air_infiltration_measurements[0].a_ext = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_infiltration_compartmentalization_test_values(hpxml_default.air_infiltration_measurements[0], 0.840) + hpxml_bldg.air_infiltration_measurements[0].a_ext = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_infiltration_compartmentalization_test_values(default_hpxml_bldg.air_infiltration_measurements[0], 0.840) - hpxml.attics[0].within_infiltration_volume = true - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_infiltration_compartmentalization_test_values(hpxml_default.air_infiltration_measurements[0], 0.817) + hpxml_bldg.attics[0].within_infiltration_volume = true + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_infiltration_compartmentalization_test_values(default_hpxml_bldg.air_infiltration_measurements[0], 0.817) # Test multifamily not overridden by defaults - hpxml = _create_hpxml('base-bldgtype-multifamily.xml') - hpxml.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitTotal - hpxml.air_infiltration_measurements[0].a_ext = 0.5 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_infiltration_compartmentalization_test_values(hpxml_default.air_infiltration_measurements[0], 0.5) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit.xml') + hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitTotal + hpxml_bldg.air_infiltration_measurements[0].a_ext = 0.5 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_infiltration_compartmentalization_test_values(default_hpxml_bldg.air_infiltration_measurements[0], 0.5) # Test multifamily defaults - hpxml.air_infiltration_measurements[0].a_ext = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_infiltration_compartmentalization_test_values(hpxml_default.air_infiltration_measurements[0], 0.247) + hpxml_bldg.air_infiltration_measurements[0].a_ext = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_infiltration_compartmentalization_test_values(default_hpxml_bldg.air_infiltration_measurements[0], 0.247) end def test_attics # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-atticroof-vented.xml') - hpxml.attics[0].vented_attic_sla = 0.001 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_attic_values(hpxml_default.attics[0], 0.001) + hpxml, hpxml_bldg = _create_hpxml('base-atticroof-vented.xml') + hpxml_bldg.attics[0].vented_attic_sla = 0.001 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_attic_values(default_hpxml_bldg.attics[0], 0.001) # Test defaults - hpxml.attics[0].vented_attic_sla = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_attic_values(hpxml_default.attics[0], 1.0 / 300.0) + hpxml_bldg.attics[0].vented_attic_sla = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_attic_values(default_hpxml_bldg.attics[0], 1.0 / 300.0) # Test defaults w/o Attic element - hpxml.attics[0].delete - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_attic_values(hpxml_default.attics[0], 1.0 / 300.0) + hpxml_bldg.attics[0].delete + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_attic_values(default_hpxml_bldg.attics[0], 1.0 / 300.0) end def test_foundations # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-foundation-vented-crawlspace.xml') - hpxml.foundations[0].vented_crawlspace_sla = 0.001 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_foundation_values(hpxml_default.foundations[0], 0.001) + hpxml, hpxml_bldg = _create_hpxml('base-foundation-vented-crawlspace.xml') + hpxml_bldg.foundations[0].vented_crawlspace_sla = 0.001 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_foundation_values(default_hpxml_bldg.foundations[0], 0.001) # Test defaults - hpxml.foundations[0].vented_crawlspace_sla = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_foundation_values(hpxml_default.foundations[0], 1.0 / 150.0) + hpxml_bldg.foundations[0].vented_crawlspace_sla = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_foundation_values(default_hpxml_bldg.foundations[0], 1.0 / 150.0) # Test defaults w/o Foundation element - hpxml.foundations[0].delete - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_foundation_values(hpxml_default.foundations[0], 1.0 / 150.0) + hpxml_bldg.foundations[0].delete + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_foundation_values(default_hpxml_bldg.foundations[0], 1.0 / 150.0) end def test_roofs # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-atticroof-radiant-barrier.xml') - hpxml.roofs[0].roof_type = HPXML::RoofTypeMetal - hpxml.roofs[0].solar_absorptance = 0.77 - hpxml.roofs[0].roof_color = HPXML::ColorDark - hpxml.roofs[0].emittance = 0.88 - hpxml.roofs[0].interior_finish_type = HPXML::InteriorFinishPlaster - hpxml.roofs[0].interior_finish_thickness = 0.25 - hpxml.roofs[0].azimuth = 123 - hpxml.roofs[0].radiant_barrier_grade = 3 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_roof_values(hpxml_default.roofs[0], HPXML::RoofTypeMetal, 0.77, HPXML::ColorDark, 0.88, true, 3, HPXML::InteriorFinishPlaster, 0.25, 123) + hpxml, hpxml_bldg = _create_hpxml('base-atticroof-radiant-barrier.xml') + hpxml_bldg.roofs[0].roof_type = HPXML::RoofTypeMetal + hpxml_bldg.roofs[0].solar_absorptance = 0.77 + hpxml_bldg.roofs[0].roof_color = HPXML::ColorDark + hpxml_bldg.roofs[0].emittance = 0.88 + hpxml_bldg.roofs[0].interior_finish_type = HPXML::InteriorFinishPlaster + hpxml_bldg.roofs[0].interior_finish_thickness = 0.25 + hpxml_bldg.roofs[0].azimuth = 123 + hpxml_bldg.roofs[0].radiant_barrier_grade = 3 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_roof_values(default_hpxml_bldg.roofs[0], HPXML::RoofTypeMetal, 0.77, HPXML::ColorDark, 0.88, true, 3, HPXML::InteriorFinishPlaster, 0.25, 123) # Test defaults w/ RoofColor - hpxml.roofs[0].roof_type = nil - hpxml.roofs[0].solar_absorptance = nil - hpxml.roofs[0].roof_color = HPXML::ColorLight - hpxml.roofs[0].emittance = nil - hpxml.roofs[0].interior_finish_thickness = nil - hpxml.roofs[0].orientation = HPXML::OrientationNortheast - hpxml.roofs[0].azimuth = nil - hpxml.roofs[0].radiant_barrier_grade = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_roof_values(hpxml_default.roofs[0], HPXML::RoofTypeAsphaltShingles, 0.75, HPXML::ColorLight, 0.90, true, 1, HPXML::InteriorFinishPlaster, 0.5, 45) + hpxml_bldg.roofs[0].roof_type = nil + hpxml_bldg.roofs[0].solar_absorptance = nil + hpxml_bldg.roofs[0].roof_color = HPXML::ColorLight + hpxml_bldg.roofs[0].emittance = nil + hpxml_bldg.roofs[0].interior_finish_thickness = nil + hpxml_bldg.roofs[0].orientation = HPXML::OrientationNortheast + hpxml_bldg.roofs[0].azimuth = nil + hpxml_bldg.roofs[0].radiant_barrier_grade = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_roof_values(default_hpxml_bldg.roofs[0], HPXML::RoofTypeAsphaltShingles, 0.75, HPXML::ColorLight, 0.90, true, 1, HPXML::InteriorFinishPlaster, 0.5, 45) # Test defaults w/ SolarAbsorptance - hpxml.roofs[0].solar_absorptance = 0.99 - hpxml.roofs[0].roof_color = nil - hpxml.roofs[0].interior_finish_type = nil - hpxml.roofs[0].radiant_barrier = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_roof_values(hpxml_default.roofs[0], HPXML::RoofTypeAsphaltShingles, 0.99, HPXML::ColorDark, 0.90, false, nil, HPXML::InteriorFinishNone, nil, 45) + hpxml_bldg.roofs[0].solar_absorptance = 0.99 + hpxml_bldg.roofs[0].roof_color = nil + hpxml_bldg.roofs[0].interior_finish_type = nil + hpxml_bldg.roofs[0].radiant_barrier = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_roof_values(default_hpxml_bldg.roofs[0], HPXML::RoofTypeAsphaltShingles, 0.99, HPXML::ColorDark, 0.90, false, nil, HPXML::InteriorFinishNone, nil, 45) # Test defaults w/o RoofColor & SolarAbsorptance - hpxml.roofs[0].solar_absorptance = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_roof_values(hpxml_default.roofs[0], HPXML::RoofTypeAsphaltShingles, 0.85, HPXML::ColorMedium, 0.90, false, nil, HPXML::InteriorFinishNone, nil, 45) + hpxml_bldg.roofs[0].solar_absorptance = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_roof_values(default_hpxml_bldg.roofs[0], HPXML::RoofTypeAsphaltShingles, 0.85, HPXML::ColorMedium, 0.90, false, nil, HPXML::InteriorFinishNone, nil, 45) # Test defaults w/ conditioned space - hpxml = _create_hpxml('base-atticroof-cathedral.xml') - hpxml.roofs[0].roof_type = nil - hpxml.roofs[0].solar_absorptance = nil - hpxml.roofs[0].roof_color = HPXML::ColorLight - hpxml.roofs[0].emittance = nil - hpxml.roofs[0].interior_finish_type = nil - hpxml.roofs[0].interior_finish_thickness = nil - hpxml.roofs[0].orientation = HPXML::OrientationNortheast - hpxml.roofs[0].azimuth = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_roof_values(hpxml_default.roofs[0], HPXML::RoofTypeAsphaltShingles, 0.75, HPXML::ColorLight, 0.90, false, nil, HPXML::InteriorFinishGypsumBoard, 0.5, 45) + hpxml, hpxml_bldg = _create_hpxml('base-atticroof-cathedral.xml') + hpxml_bldg.roofs[0].roof_type = nil + hpxml_bldg.roofs[0].solar_absorptance = nil + hpxml_bldg.roofs[0].roof_color = HPXML::ColorLight + hpxml_bldg.roofs[0].emittance = nil + hpxml_bldg.roofs[0].interior_finish_type = nil + hpxml_bldg.roofs[0].interior_finish_thickness = nil + hpxml_bldg.roofs[0].orientation = HPXML::OrientationNortheast + hpxml_bldg.roofs[0].azimuth = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_roof_values(default_hpxml_bldg.roofs[0], HPXML::RoofTypeAsphaltShingles, 0.75, HPXML::ColorLight, 0.90, false, nil, HPXML::InteriorFinishGypsumBoard, 0.5, 45) end def test_rim_joists # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.rim_joists[0].siding = HPXML::SidingTypeBrick - hpxml.rim_joists[0].solar_absorptance = 0.55 - hpxml.rim_joists[0].color = HPXML::ColorLight - hpxml.rim_joists[0].emittance = 0.88 - hpxml.rim_joists[0].azimuth = 123 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_rim_joist_values(hpxml_default.rim_joists[0], HPXML::SidingTypeBrick, 0.55, HPXML::ColorLight, 0.88, 123) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.rim_joists[0].siding = HPXML::SidingTypeBrick + hpxml_bldg.rim_joists[0].solar_absorptance = 0.55 + hpxml_bldg.rim_joists[0].color = HPXML::ColorLight + hpxml_bldg.rim_joists[0].emittance = 0.88 + hpxml_bldg.rim_joists[0].azimuth = 123 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_rim_joist_values(default_hpxml_bldg.rim_joists[0], HPXML::SidingTypeBrick, 0.55, HPXML::ColorLight, 0.88, 123) # Test defaults w/ Color - hpxml.rim_joists[0].siding = nil - hpxml.rim_joists[0].solar_absorptance = nil - hpxml.rim_joists[0].color = HPXML::ColorDark - hpxml.rim_joists[0].emittance = nil - hpxml.rim_joists[0].orientation = HPXML::OrientationNorthwest - hpxml.rim_joists[0].azimuth = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_rim_joist_values(hpxml_default.rim_joists[0], HPXML::SidingTypeWood, 0.95, HPXML::ColorDark, 0.90, 315) + hpxml_bldg.rim_joists[0].siding = nil + hpxml_bldg.rim_joists[0].solar_absorptance = nil + hpxml_bldg.rim_joists[0].color = HPXML::ColorDark + hpxml_bldg.rim_joists[0].emittance = nil + hpxml_bldg.rim_joists[0].orientation = HPXML::OrientationNorthwest + hpxml_bldg.rim_joists[0].azimuth = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_rim_joist_values(default_hpxml_bldg.rim_joists[0], HPXML::SidingTypeWood, 0.95, HPXML::ColorDark, 0.90, 315) # Test defaults w/ SolarAbsorptance - hpxml.rim_joists[0].solar_absorptance = 0.99 - hpxml.rim_joists[0].color = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_rim_joist_values(hpxml_default.rim_joists[0], HPXML::SidingTypeWood, 0.99, HPXML::ColorDark, 0.90, 315) + hpxml_bldg.rim_joists[0].solar_absorptance = 0.99 + hpxml_bldg.rim_joists[0].color = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_rim_joist_values(default_hpxml_bldg.rim_joists[0], HPXML::SidingTypeWood, 0.99, HPXML::ColorDark, 0.90, 315) # Test defaults w/o Color & SolarAbsorptance - hpxml.rim_joists[0].solar_absorptance = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_rim_joist_values(hpxml_default.rim_joists[0], HPXML::SidingTypeWood, 0.7, HPXML::ColorMedium, 0.90, 315) + hpxml_bldg.rim_joists[0].solar_absorptance = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_rim_joist_values(default_hpxml_bldg.rim_joists[0], HPXML::SidingTypeWood, 0.7, HPXML::ColorMedium, 0.90, 315) end def test_walls # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.walls[0].siding = HPXML::SidingTypeFiberCement - hpxml.walls[0].solar_absorptance = 0.66 - hpxml.walls[0].color = HPXML::ColorDark - hpxml.walls[0].emittance = 0.88 - hpxml.walls[0].interior_finish_type = HPXML::InteriorFinishWood - hpxml.walls[0].interior_finish_thickness = 0.75 - hpxml.walls[0].azimuth = 123 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_wall_values(hpxml_default.walls[0], HPXML::SidingTypeFiberCement, 0.66, HPXML::ColorDark, 0.88, HPXML::InteriorFinishWood, 0.75, 123) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.walls[0].siding = HPXML::SidingTypeFiberCement + hpxml_bldg.walls[0].solar_absorptance = 0.66 + hpxml_bldg.walls[0].color = HPXML::ColorDark + hpxml_bldg.walls[0].emittance = 0.88 + hpxml_bldg.walls[0].interior_finish_type = HPXML::InteriorFinishWood + hpxml_bldg.walls[0].interior_finish_thickness = 0.75 + hpxml_bldg.walls[0].azimuth = 123 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_wall_values(default_hpxml_bldg.walls[0], HPXML::SidingTypeFiberCement, 0.66, HPXML::ColorDark, 0.88, HPXML::InteriorFinishWood, 0.75, 123) # Test defaults w/ Color - hpxml.walls[0].siding = nil - hpxml.walls[0].solar_absorptance = nil - hpxml.walls[0].color = HPXML::ColorLight - hpxml.walls[0].emittance = nil - hpxml.walls[0].interior_finish_type = HPXML::InteriorFinishWood - hpxml.walls[0].interior_finish_thickness = nil - hpxml.walls[0].orientation = HPXML::OrientationSouth - hpxml.walls[0].azimuth = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_wall_values(hpxml_default.walls[0], HPXML::SidingTypeWood, 0.5, HPXML::ColorLight, 0.90, HPXML::InteriorFinishWood, 0.5, 180) + hpxml_bldg.walls[0].siding = nil + hpxml_bldg.walls[0].solar_absorptance = nil + hpxml_bldg.walls[0].color = HPXML::ColorLight + hpxml_bldg.walls[0].emittance = nil + hpxml_bldg.walls[0].interior_finish_type = HPXML::InteriorFinishWood + hpxml_bldg.walls[0].interior_finish_thickness = nil + hpxml_bldg.walls[0].orientation = HPXML::OrientationSouth + hpxml_bldg.walls[0].azimuth = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_wall_values(default_hpxml_bldg.walls[0], HPXML::SidingTypeWood, 0.5, HPXML::ColorLight, 0.90, HPXML::InteriorFinishWood, 0.5, 180) # Test defaults w/ SolarAbsorptance - hpxml.walls[0].solar_absorptance = 0.99 - hpxml.walls[0].color = nil - hpxml.walls[0].interior_finish_type = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_wall_values(hpxml_default.walls[0], HPXML::SidingTypeWood, 0.99, HPXML::ColorDark, 0.90, HPXML::InteriorFinishGypsumBoard, 0.5, 180) + hpxml_bldg.walls[0].solar_absorptance = 0.99 + hpxml_bldg.walls[0].color = nil + hpxml_bldg.walls[0].interior_finish_type = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_wall_values(default_hpxml_bldg.walls[0], HPXML::SidingTypeWood, 0.99, HPXML::ColorDark, 0.90, HPXML::InteriorFinishGypsumBoard, 0.5, 180) # Test defaults w/o Color & SolarAbsorptance - hpxml.walls[0].solar_absorptance = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_wall_values(hpxml_default.walls[0], HPXML::SidingTypeWood, 0.7, HPXML::ColorMedium, 0.90, HPXML::InteriorFinishGypsumBoard, 0.5, 180) + hpxml_bldg.walls[0].solar_absorptance = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_wall_values(default_hpxml_bldg.walls[0], HPXML::SidingTypeWood, 0.7, HPXML::ColorMedium, 0.90, HPXML::InteriorFinishGypsumBoard, 0.5, 180) # Test defaults w/ unconditioned space - hpxml.walls[1].siding = nil - hpxml.walls[1].solar_absorptance = nil - hpxml.walls[1].color = HPXML::ColorLight - hpxml.walls[1].emittance = nil - hpxml.walls[1].interior_finish_type = nil - hpxml.walls[1].interior_finish_thickness = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_wall_values(hpxml_default.walls[1], HPXML::SidingTypeWood, 0.5, HPXML::ColorLight, 0.90, HPXML::InteriorFinishNone, nil, nil) + hpxml_bldg.walls[1].siding = nil + hpxml_bldg.walls[1].solar_absorptance = nil + hpxml_bldg.walls[1].color = HPXML::ColorLight + hpxml_bldg.walls[1].emittance = nil + hpxml_bldg.walls[1].interior_finish_type = nil + hpxml_bldg.walls[1].interior_finish_thickness = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_wall_values(default_hpxml_bldg.walls[1], HPXML::SidingTypeWood, 0.5, HPXML::ColorLight, 0.90, HPXML::InteriorFinishNone, nil, nil) end def test_foundation_walls # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.foundation_walls[0].thickness = 7.0 - hpxml.foundation_walls[0].interior_finish_type = HPXML::InteriorFinishGypsumCompositeBoard - hpxml.foundation_walls[0].interior_finish_thickness = 0.625 - hpxml.foundation_walls[0].azimuth = 123 - hpxml.foundation_walls[0].area = 789 - hpxml.foundation_walls[0].insulation_interior_distance_to_top = 0.5 - hpxml.foundation_walls[0].insulation_interior_distance_to_bottom = 7.75 - hpxml.foundation_walls[0].insulation_exterior_distance_to_top = 0.75 - hpxml.foundation_walls[0].insulation_exterior_distance_to_bottom = 7.5 - hpxml.foundation_walls[0].type = HPXML::FoundationWallTypeConcreteBlock - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_foundation_wall_values(hpxml_default.foundation_walls[0], 7.0, HPXML::InteriorFinishGypsumCompositeBoard, 0.625, 123, + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.foundation_walls[0].thickness = 7.0 + hpxml_bldg.foundation_walls[0].interior_finish_type = HPXML::InteriorFinishGypsumCompositeBoard + hpxml_bldg.foundation_walls[0].interior_finish_thickness = 0.625 + hpxml_bldg.foundation_walls[0].azimuth = 123 + hpxml_bldg.foundation_walls[0].area = 789 + hpxml_bldg.foundation_walls[0].insulation_interior_distance_to_top = 0.5 + hpxml_bldg.foundation_walls[0].insulation_interior_distance_to_bottom = 7.75 + hpxml_bldg.foundation_walls[0].insulation_exterior_distance_to_top = 0.75 + hpxml_bldg.foundation_walls[0].insulation_exterior_distance_to_bottom = 7.5 + hpxml_bldg.foundation_walls[0].type = HPXML::FoundationWallTypeConcreteBlock + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_foundation_wall_values(default_hpxml_bldg.foundation_walls[0], 7.0, HPXML::InteriorFinishGypsumCompositeBoard, 0.625, 123, 789, 0.5, 7.75, 0.75, 7.5, HPXML::FoundationWallTypeConcreteBlock) # Test defaults - hpxml.foundation_walls[0].thickness = nil - hpxml.foundation_walls[0].interior_finish_type = nil - hpxml.foundation_walls[0].interior_finish_thickness = nil - hpxml.foundation_walls[0].orientation = HPXML::OrientationSoutheast - hpxml.foundation_walls[0].azimuth = nil - hpxml.foundation_walls[0].area = nil - hpxml.foundation_walls[0].length = 100 - hpxml.foundation_walls[0].insulation_interior_distance_to_bottom = nil - hpxml.foundation_walls[0].insulation_exterior_distance_to_bottom = nil - hpxml.foundation_walls[0].type = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_foundation_wall_values(hpxml_default.foundation_walls[0], 8.0, HPXML::InteriorFinishGypsumBoard, 0.5, 135, + hpxml_bldg.foundation_walls[0].thickness = nil + hpxml_bldg.foundation_walls[0].interior_finish_type = nil + hpxml_bldg.foundation_walls[0].interior_finish_thickness = nil + hpxml_bldg.foundation_walls[0].orientation = HPXML::OrientationSoutheast + hpxml_bldg.foundation_walls[0].azimuth = nil + hpxml_bldg.foundation_walls[0].area = nil + hpxml_bldg.foundation_walls[0].length = 100 + hpxml_bldg.foundation_walls[0].insulation_interior_distance_to_bottom = nil + hpxml_bldg.foundation_walls[0].insulation_exterior_distance_to_bottom = nil + hpxml_bldg.foundation_walls[0].type = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_foundation_wall_values(default_hpxml_bldg.foundation_walls[0], 8.0, HPXML::InteriorFinishGypsumBoard, 0.5, 135, 800, 0.5, 8.0, 0.75, 8.0, HPXML::FoundationWallTypeSolidConcrete) # Test defaults w/ unconditioned surfaces - hpxml = _create_hpxml('base-foundation-unconditioned-basement.xml') - hpxml.foundation_walls[0].thickness = nil - hpxml.foundation_walls[0].interior_finish_type = nil - hpxml.foundation_walls[0].interior_finish_thickness = nil - hpxml.foundation_walls[0].orientation = HPXML::OrientationSoutheast - hpxml.foundation_walls[0].azimuth = nil - hpxml.foundation_walls[0].area = nil - hpxml.foundation_walls[0].length = 100 - hpxml.foundation_walls[0].height = 10 - hpxml.foundation_walls[0].insulation_interior_distance_to_top = nil - hpxml.foundation_walls[0].insulation_interior_distance_to_bottom = nil - hpxml.foundation_walls[0].insulation_exterior_distance_to_top = nil - hpxml.foundation_walls[0].insulation_exterior_distance_to_bottom = nil - hpxml.foundation_walls[0].type = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_foundation_wall_values(hpxml_default.foundation_walls[0], 8.0, HPXML::InteriorFinishNone, nil, 135, + hpxml, hpxml_bldg = _create_hpxml('base-foundation-unconditioned-basement.xml') + hpxml_bldg.foundation_walls[0].thickness = nil + hpxml_bldg.foundation_walls[0].interior_finish_type = nil + hpxml_bldg.foundation_walls[0].interior_finish_thickness = nil + hpxml_bldg.foundation_walls[0].orientation = HPXML::OrientationSoutheast + hpxml_bldg.foundation_walls[0].azimuth = nil + hpxml_bldg.foundation_walls[0].area = nil + hpxml_bldg.foundation_walls[0].length = 100 + hpxml_bldg.foundation_walls[0].height = 10 + hpxml_bldg.foundation_walls[0].insulation_interior_distance_to_top = nil + hpxml_bldg.foundation_walls[0].insulation_interior_distance_to_bottom = nil + hpxml_bldg.foundation_walls[0].insulation_exterior_distance_to_top = nil + hpxml_bldg.foundation_walls[0].insulation_exterior_distance_to_bottom = nil + hpxml_bldg.foundation_walls[0].type = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_foundation_wall_values(default_hpxml_bldg.foundation_walls[0], 8.0, HPXML::InteriorFinishNone, nil, 135, 1000, 0.0, 10.0, 0.0, 10.0, HPXML::FoundationWallTypeSolidConcrete) end def test_floors # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.floors[0].interior_finish_type = HPXML::InteriorFinishWood - hpxml.floors[0].interior_finish_thickness = 0.375 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_floor_values(hpxml_default.floors[0], HPXML::InteriorFinishWood, 0.375) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.floors[0].interior_finish_type = HPXML::InteriorFinishWood + hpxml_bldg.floors[0].interior_finish_thickness = 0.375 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_floor_values(default_hpxml_bldg.floors[0], HPXML::InteriorFinishWood, 0.375) # Test defaults w/ ceiling - hpxml.floors[0].interior_finish_type = nil - hpxml.floors[0].interior_finish_thickness = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_floor_values(hpxml_default.floors[0], HPXML::InteriorFinishGypsumBoard, 0.5) + hpxml_bldg.floors[0].interior_finish_type = nil + hpxml_bldg.floors[0].interior_finish_thickness = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_floor_values(default_hpxml_bldg.floors[0], HPXML::InteriorFinishGypsumBoard, 0.5) # Test defaults w/ floor - hpxml = _create_hpxml('base-foundation-vented-crawlspace.xml') - hpxml.floors[0].interior_finish_type = nil - hpxml.floors[0].interior_finish_thickness = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_floor_values(hpxml_default.floors[0], HPXML::InteriorFinishNone, nil) + hpxml, hpxml_bldg = _create_hpxml('base-foundation-vented-crawlspace.xml') + hpxml_bldg.floors[0].interior_finish_type = nil + hpxml_bldg.floors[0].interior_finish_thickness = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_floor_values(default_hpxml_bldg.floors[0], HPXML::InteriorFinishNone, nil) end def test_slabs # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.slabs[0].thickness = 7.0 - hpxml.slabs[0].carpet_r_value = 1.1 - hpxml.slabs[0].carpet_fraction = 0.5 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_slab_values(hpxml_default.slabs[0], 7.0, 1.1, 0.5) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.slabs[0].thickness = 7.0 + hpxml_bldg.slabs[0].carpet_r_value = 1.1 + hpxml_bldg.slabs[0].carpet_fraction = 0.5 + hpxml_bldg.slabs[0].depth_below_grade = 2.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_slab_values(default_hpxml_bldg.slabs[0], 7.0, 1.1, 0.5, nil) # Test defaults w/ conditioned basement - hpxml.slabs[0].thickness = nil - hpxml.slabs[0].carpet_r_value = nil - hpxml.slabs[0].carpet_fraction = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_slab_values(hpxml_default.slabs[0], 4.0, 2.0, 0.8) + hpxml_bldg.slabs[0].thickness = nil + hpxml_bldg.slabs[0].carpet_r_value = nil + hpxml_bldg.slabs[0].carpet_fraction = nil + hpxml_bldg.slabs[0].depth_below_grade = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_slab_values(default_hpxml_bldg.slabs[0], 4.0, 2.0, 0.8, nil) # Test defaults w/ crawlspace - hpxml = _create_hpxml('base-foundation-unvented-crawlspace.xml') - hpxml.slabs[0].thickness = nil - hpxml.slabs[0].carpet_r_value = nil - hpxml.slabs[0].carpet_fraction = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_slab_values(hpxml_default.slabs[0], 0.0, 0.0, 0.0) + hpxml, hpxml_bldg = _create_hpxml('base-foundation-unvented-crawlspace.xml') + hpxml_bldg.slabs[0].thickness = nil + hpxml_bldg.slabs[0].carpet_r_value = nil + hpxml_bldg.slabs[0].carpet_fraction = nil + hpxml_bldg.slabs[0].depth_below_grade = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_slab_values(default_hpxml_bldg.slabs[0], 0.0, 0.0, 0.0, nil) + + # Test defaults w/ slab-on-grade + hpxml, hpxml_bldg = _create_hpxml('base-foundation-slab.xml') + hpxml_bldg.slabs[0].thickness = nil + hpxml_bldg.slabs[0].carpet_r_value = nil + hpxml_bldg.slabs[0].carpet_fraction = nil + hpxml_bldg.slabs[0].depth_below_grade = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_slab_values(default_hpxml_bldg.slabs[0], 4.0, 2.0, 0.8, 0.0) end def test_windows # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-enclosure-windows-shading.xml') - hpxml.windows.each do |window| + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-windows-shading.xml') + hpxml_bldg.windows.each do |window| window.fraction_operable = 0.5 window.exterior_shading_factor_summer = 0.44 window.exterior_shading_factor_winter = 0.55 @@ -842,13 +853,13 @@ def test_windows window.interior_shading_factor_winter = 0.77 window.azimuth = 123 end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - n_windows = hpxml_default.windows.size - _test_default_window_values(hpxml_default, [0.44] * n_windows, [0.55] * n_windows, [0.66] * n_windows, [0.77] * n_windows, [0.5] * n_windows, [123] * n_windows) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + n_windows = default_hpxml_bldg.windows.size + _test_default_window_values(default_hpxml_bldg, [0.44] * n_windows, [0.55] * n_windows, [0.66] * n_windows, [0.77] * n_windows, [0.5] * n_windows, [123] * n_windows) # Test defaults - hpxml.windows.each do |window| + hpxml_bldg.windows.each do |window| window.fraction_operable = nil window.exterior_shading_factor_summer = nil window.exterior_shading_factor_winter = nil @@ -857,52 +868,52 @@ def test_windows window.orientation = HPXML::OrientationSouthwest window.azimuth = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - n_windows = hpxml_default.windows.size - _test_default_window_values(hpxml_default, [1.0] * n_windows, [1.0] * n_windows, [0.7] * n_windows, [0.85] * n_windows, [0.67] * n_windows, [225] * n_windows) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + n_windows = default_hpxml_bldg.windows.size + _test_default_window_values(default_hpxml_bldg, [1.0] * n_windows, [1.0] * n_windows, [0.7] * n_windows, [0.85] * n_windows, [0.67] * n_windows, [225] * n_windows) end def test_windows_properties # Test defaults w/ single pane, aluminum frame - hpxml = _create_hpxml('base.xml') - hpxml.windows[0].ufactor = nil - hpxml.windows[0].shgc = nil - hpxml.windows[0].frame_type = HPXML::WindowFrameTypeAluminum - hpxml.windows[0].glass_layers = HPXML::WindowLayersSinglePane - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - - assert_equal(false, hpxml_default.windows[0].thermal_break) - assert_equal(HPXML::WindowGlassTypeClear, hpxml_default.windows[0].glass_type) - assert_nil(hpxml_default.windows[0].gas_fill) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.windows[0].ufactor = nil + hpxml_bldg.windows[0].shgc = nil + hpxml_bldg.windows[0].frame_type = HPXML::WindowFrameTypeAluminum + hpxml_bldg.windows[0].glass_layers = HPXML::WindowLayersSinglePane + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() + + assert_equal(false, default_hpxml_bldg.windows[0].thermal_break) + assert_equal(HPXML::WindowGlassTypeClear, default_hpxml_bldg.windows[0].glass_type) + assert_nil(default_hpxml_bldg.windows[0].gas_fill) # Test defaults w/ double pane, metal frame - hpxml = _create_hpxml('base.xml') - hpxml.windows[0].ufactor = nil - hpxml.windows[0].shgc = nil - hpxml.windows[0].frame_type = HPXML::WindowFrameTypeMetal - hpxml.windows[0].glass_layers = HPXML::WindowLayersDoublePane - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - - assert_equal(true, hpxml_default.windows[0].thermal_break) - assert_equal(HPXML::WindowGlassTypeClear, hpxml_default.windows[0].glass_type) - assert_equal(HPXML::WindowGasAir, hpxml_default.windows[0].gas_fill) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.windows[0].ufactor = nil + hpxml_bldg.windows[0].shgc = nil + hpxml_bldg.windows[0].frame_type = HPXML::WindowFrameTypeMetal + hpxml_bldg.windows[0].glass_layers = HPXML::WindowLayersDoublePane + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() + + assert_equal(true, default_hpxml_bldg.windows[0].thermal_break) + assert_equal(HPXML::WindowGlassTypeClear, default_hpxml_bldg.windows[0].glass_type) + assert_equal(HPXML::WindowGasAir, default_hpxml_bldg.windows[0].gas_fill) # Test defaults w/ single pane, wood frame - hpxml = _create_hpxml('base.xml') - hpxml.windows[0].ufactor = nil - hpxml.windows[0].shgc = nil - hpxml.windows[0].frame_type = HPXML::WindowFrameTypeWood - hpxml.windows[0].glass_layers = HPXML::WindowLayersTriplePane - hpxml.windows[0].glass_type = HPXML::WindowGlassTypeLowE - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - - assert_nil(hpxml_default.windows[0].thermal_break) - assert_equal(HPXML::WindowGlassTypeLowE, hpxml_default.windows[0].glass_type) - assert_equal(HPXML::WindowGasArgon, hpxml_default.windows[0].gas_fill) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.windows[0].ufactor = nil + hpxml_bldg.windows[0].shgc = nil + hpxml_bldg.windows[0].frame_type = HPXML::WindowFrameTypeWood + hpxml_bldg.windows[0].glass_layers = HPXML::WindowLayersTriplePane + hpxml_bldg.windows[0].glass_type = HPXML::WindowGlassTypeLowE + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() + + assert_nil(default_hpxml_bldg.windows[0].thermal_break) + assert_equal(HPXML::WindowGlassTypeLowE, default_hpxml_bldg.windows[0].glass_type) + assert_equal(HPXML::WindowGasArgon, default_hpxml_bldg.windows[0].gas_fill) # Test U/SHGC lookups [frame_type, thermal_break, glass_layers, glass_type, gas_fill] => [ufactor, shgc] tests = { [HPXML::WindowFrameTypeAluminum, false, HPXML::WindowLayersSinglePane, nil, nil] => [1.27, 0.75], @@ -928,39 +939,39 @@ def test_windows_properties frame_type, thermal_break, glass_layers, glass_type, gas_fill = k ufactor, shgc = v - hpxml = _create_hpxml('base.xml') - hpxml.windows[0].ufactor = nil - hpxml.windows[0].shgc = nil - hpxml.windows[0].frame_type = frame_type - hpxml.windows[0].thermal_break = thermal_break - hpxml.windows[0].glass_layers = glass_layers - hpxml.windows[0].glass_type = glass_type - hpxml.windows[0].gas_fill = gas_fill - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.windows[0].ufactor = nil + hpxml_bldg.windows[0].shgc = nil + hpxml_bldg.windows[0].frame_type = frame_type + hpxml_bldg.windows[0].thermal_break = thermal_break + hpxml_bldg.windows[0].glass_layers = glass_layers + hpxml_bldg.windows[0].glass_type = glass_type + hpxml_bldg.windows[0].gas_fill = gas_fill + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() - assert_equal(ufactor, hpxml_default.windows[0].ufactor) - assert_equal(shgc, hpxml_default.windows[0].shgc) + assert_equal(ufactor, default_hpxml_bldg.windows[0].ufactor) + assert_equal(shgc, default_hpxml_bldg.windows[0].shgc) end end def test_skylights # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-enclosure-skylights.xml') - hpxml.skylights.each do |skylight| + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-skylights.xml') + hpxml_bldg.skylights.each do |skylight| skylight.exterior_shading_factor_summer = 0.44 skylight.exterior_shading_factor_winter = 0.55 skylight.interior_shading_factor_summer = 0.66 skylight.interior_shading_factor_winter = 0.77 skylight.azimuth = 123 end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - n_skylights = hpxml_default.skylights.size - _test_default_skylight_values(hpxml_default, [0.44] * n_skylights, [0.55] * n_skylights, [0.66] * n_skylights, [0.77] * n_skylights, [123] * n_skylights) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + n_skylights = default_hpxml_bldg.skylights.size + _test_default_skylight_values(default_hpxml_bldg, [0.44] * n_skylights, [0.55] * n_skylights, [0.66] * n_skylights, [0.77] * n_skylights, [123] * n_skylights) # Test defaults - hpxml.skylights.each do |skylight| + hpxml_bldg.skylights.each do |skylight| skylight.exterior_shading_factor_summer = nil skylight.exterior_shading_factor_winter = nil skylight.interior_shading_factor_summer = nil @@ -968,52 +979,52 @@ def test_skylights skylight.orientation = HPXML::OrientationWest skylight.azimuth = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - n_skylights = hpxml_default.skylights.size - _test_default_skylight_values(hpxml_default, [1.0] * n_skylights, [1.0] * n_skylights, [1.0] * n_skylights, [1.0] * n_skylights, [270] * n_skylights) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + n_skylights = default_hpxml_bldg.skylights.size + _test_default_skylight_values(default_hpxml_bldg, [1.0] * n_skylights, [1.0] * n_skylights, [1.0] * n_skylights, [1.0] * n_skylights, [270] * n_skylights) end def test_skylights_properties # Test defaults w/ single pane, aluminum frame - hpxml = _create_hpxml('base-enclosure-skylights.xml') - hpxml.skylights[0].ufactor = nil - hpxml.skylights[0].shgc = nil - hpxml.skylights[0].frame_type = HPXML::WindowFrameTypeAluminum - hpxml.skylights[0].glass_layers = HPXML::WindowLayersSinglePane - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - - assert_equal(false, hpxml_default.skylights[0].thermal_break) - assert_equal(HPXML::WindowGlassTypeClear, hpxml_default.skylights[0].glass_type) - assert_nil(hpxml_default.skylights[0].gas_fill) + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-skylights.xml') + hpxml_bldg.skylights[0].ufactor = nil + hpxml_bldg.skylights[0].shgc = nil + hpxml_bldg.skylights[0].frame_type = HPXML::WindowFrameTypeAluminum + hpxml_bldg.skylights[0].glass_layers = HPXML::WindowLayersSinglePane + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() + + assert_equal(false, default_hpxml_bldg.skylights[0].thermal_break) + assert_equal(HPXML::WindowGlassTypeClear, default_hpxml_bldg.skylights[0].glass_type) + assert_nil(default_hpxml_bldg.skylights[0].gas_fill) # Test defaults w/ double pane, metal frame - hpxml = _create_hpxml('base-enclosure-skylights.xml') - hpxml.skylights[0].ufactor = nil - hpxml.skylights[0].shgc = nil - hpxml.skylights[0].frame_type = HPXML::WindowFrameTypeMetal - hpxml.skylights[0].glass_layers = HPXML::WindowLayersDoublePane - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - - assert_equal(true, hpxml_default.skylights[0].thermal_break) - assert_equal(HPXML::WindowGlassTypeClear, hpxml_default.skylights[0].glass_type) - assert_equal(HPXML::WindowGasAir, hpxml_default.skylights[0].gas_fill) + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-skylights.xml') + hpxml_bldg.skylights[0].ufactor = nil + hpxml_bldg.skylights[0].shgc = nil + hpxml_bldg.skylights[0].frame_type = HPXML::WindowFrameTypeMetal + hpxml_bldg.skylights[0].glass_layers = HPXML::WindowLayersDoublePane + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() + + assert_equal(true, default_hpxml_bldg.skylights[0].thermal_break) + assert_equal(HPXML::WindowGlassTypeClear, default_hpxml_bldg.skylights[0].glass_type) + assert_equal(HPXML::WindowGasAir, default_hpxml_bldg.skylights[0].gas_fill) # Test defaults w/ single pane, wood frame - hpxml = _create_hpxml('base-enclosure-skylights.xml') - hpxml.skylights[0].ufactor = nil - hpxml.skylights[0].shgc = nil - hpxml.skylights[0].frame_type = HPXML::WindowFrameTypeWood - hpxml.skylights[0].glass_layers = HPXML::WindowLayersTriplePane - hpxml.skylights[0].glass_type = HPXML::WindowGlassTypeLowE - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - - assert_nil(hpxml_default.skylights[0].thermal_break) - assert_equal(HPXML::WindowGlassTypeLowE, hpxml_default.skylights[0].glass_type) - assert_equal(HPXML::WindowGasArgon, hpxml_default.skylights[0].gas_fill) + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-skylights.xml') + hpxml_bldg.skylights[0].ufactor = nil + hpxml_bldg.skylights[0].shgc = nil + hpxml_bldg.skylights[0].frame_type = HPXML::WindowFrameTypeWood + hpxml_bldg.skylights[0].glass_layers = HPXML::WindowLayersTriplePane + hpxml_bldg.skylights[0].glass_type = HPXML::WindowGlassTypeLowE + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() + + assert_nil(default_hpxml_bldg.skylights[0].thermal_break) + assert_equal(HPXML::WindowGlassTypeLowE, default_hpxml_bldg.skylights[0].glass_type) + assert_equal(HPXML::WindowGasArgon, default_hpxml_bldg.skylights[0].gas_fill) # Test U/SHGC lookups [frame_type, thermal_break, glass_layers, glass_type, gas_fill] => [ufactor, shgc] tests = { [HPXML::WindowFrameTypeAluminum, false, HPXML::WindowLayersSinglePane, nil, nil] => [1.98, 0.75], @@ -1039,773 +1050,788 @@ def test_skylights_properties frame_type, thermal_break, glass_layers, glass_type, gas_fill = k ufactor, shgc = v - hpxml = _create_hpxml('base-enclosure-skylights.xml') - hpxml.skylights[0].ufactor = nil - hpxml.skylights[0].shgc = nil - hpxml.skylights[0].frame_type = frame_type - hpxml.skylights[0].thermal_break = thermal_break - hpxml.skylights[0].glass_layers = glass_layers - hpxml.skylights[0].glass_type = glass_type - hpxml.skylights[0].gas_fill = gas_fill - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-skylights.xml') + hpxml_bldg.skylights[0].ufactor = nil + hpxml_bldg.skylights[0].shgc = nil + hpxml_bldg.skylights[0].frame_type = frame_type + hpxml_bldg.skylights[0].thermal_break = thermal_break + hpxml_bldg.skylights[0].glass_layers = glass_layers + hpxml_bldg.skylights[0].glass_type = glass_type + hpxml_bldg.skylights[0].gas_fill = gas_fill + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() - assert_equal(ufactor, hpxml_default.skylights[0].ufactor) - assert_equal(shgc, hpxml_default.skylights[0].shgc) + assert_equal(ufactor, default_hpxml_bldg.skylights[0].ufactor) + assert_equal(shgc, default_hpxml_bldg.skylights[0].shgc) end end def test_doors # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.doors.each_with_index do |door, i| + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.doors.each_with_index do |door, i| door.azimuth = 35 * (i + 1) end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_door_values(hpxml_default, [35, 70]) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_door_values(default_hpxml_bldg, [35, 70]) # Test defaults w/ AttachedToWall azimuth - hpxml.walls[0].azimuth = 89 - hpxml.doors.each do |door| + hpxml_bldg.walls[0].azimuth = 89 + hpxml_bldg.doors.each do |door| door.azimuth = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_door_values(hpxml_default, [89, 89]) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_door_values(default_hpxml_bldg, [89, 89]) # Test defaults w/o AttachedToWall azimuth - hpxml.walls[0].azimuth = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_door_values(hpxml_default, [0, 0]) + hpxml_bldg.walls[0].azimuth = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_door_values(default_hpxml_bldg, [0, 0]) # Test defaults w/ Orientation - hpxml.doors.each do |door| + hpxml_bldg.doors.each do |door| door.orientation = HPXML::OrientationEast end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_door_values(hpxml_default, [90, 90]) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_door_values(default_hpxml_bldg, [90, 90]) end def test_thermal_mass # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-enclosure-thermal-mass.xml') - hpxml.partition_wall_mass.area_fraction = 0.5 - hpxml.partition_wall_mass.interior_finish_thickness = 0.75 - hpxml.partition_wall_mass.interior_finish_type = HPXML::InteriorFinishWood - hpxml.furniture_mass.area_fraction = 0.75 - hpxml.furniture_mass.type = HPXML::FurnitureMassTypeHeavyWeight - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_partition_wall_mass_values(hpxml_default.partition_wall_mass, 0.5, HPXML::InteriorFinishWood, 0.75) - _test_default_furniture_mass_values(hpxml_default.furniture_mass, 0.75, HPXML::FurnitureMassTypeHeavyWeight) + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-thermal-mass.xml') + hpxml_bldg.partition_wall_mass.area_fraction = 0.5 + hpxml_bldg.partition_wall_mass.interior_finish_thickness = 0.75 + hpxml_bldg.partition_wall_mass.interior_finish_type = HPXML::InteriorFinishWood + hpxml_bldg.furniture_mass.area_fraction = 0.75 + hpxml_bldg.furniture_mass.type = HPXML::FurnitureMassTypeHeavyWeight + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_partition_wall_mass_values(default_hpxml_bldg.partition_wall_mass, 0.5, HPXML::InteriorFinishWood, 0.75) + _test_default_furniture_mass_values(default_hpxml_bldg.furniture_mass, 0.75, HPXML::FurnitureMassTypeHeavyWeight) # Test defaults - hpxml.partition_wall_mass.area_fraction = nil - hpxml.partition_wall_mass.interior_finish_thickness = nil - hpxml.partition_wall_mass.interior_finish_type = nil - hpxml.furniture_mass.area_fraction = nil - hpxml.furniture_mass.type = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_partition_wall_mass_values(hpxml_default.partition_wall_mass, 1.0, HPXML::InteriorFinishGypsumBoard, 0.5) - _test_default_furniture_mass_values(hpxml_default.furniture_mass, 0.4, HPXML::FurnitureMassTypeLightWeight) + hpxml_bldg.partition_wall_mass.area_fraction = nil + hpxml_bldg.partition_wall_mass.interior_finish_thickness = nil + hpxml_bldg.partition_wall_mass.interior_finish_type = nil + hpxml_bldg.furniture_mass.area_fraction = nil + hpxml_bldg.furniture_mass.type = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_partition_wall_mass_values(default_hpxml_bldg.partition_wall_mass, 1.0, HPXML::InteriorFinishGypsumBoard, 0.5) + _test_default_furniture_mass_values(default_hpxml_bldg.furniture_mass, 0.4, HPXML::FurnitureMassTypeLightWeight) end def test_central_air_conditioners # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-central-ac-only-1-speed.xml') - hpxml.cooling_systems[0].cooling_shr = 0.88 - hpxml.cooling_systems[0].compressor_type = HPXML::HVACCompressorTypeVariableSpeed - hpxml.cooling_systems[0].fan_watts_per_cfm = 0.66 - hpxml.cooling_systems[0].charge_defect_ratio = -0.11 - hpxml.cooling_systems[0].airflow_defect_ratio = -0.22 - hpxml.cooling_systems[0].cooling_capacity = 12345 - hpxml.cooling_systems[0].cooling_efficiency_seer = 12.0 - hpxml.cooling_systems[0].crankcase_heater_watts = 40.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_central_air_conditioner_values(hpxml_default.cooling_systems[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 12.0, 40.0) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-central-ac-only-1-speed.xml') + hpxml_bldg.cooling_systems[0].cooling_shr = 0.88 + hpxml_bldg.cooling_systems[0].compressor_type = HPXML::HVACCompressorTypeVariableSpeed + hpxml_bldg.cooling_systems[0].fan_watts_per_cfm = 0.66 + hpxml_bldg.cooling_systems[0].charge_defect_ratio = -0.11 + hpxml_bldg.cooling_systems[0].airflow_defect_ratio = -0.22 + hpxml_bldg.cooling_systems[0].cooling_capacity = 12345 + hpxml_bldg.cooling_systems[0].cooling_efficiency_seer = 12.0 + hpxml_bldg.cooling_systems[0].crankcase_heater_watts = 40.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_central_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 12.0, 40.0) # Test defaults - SEER2 - hpxml.cooling_systems[0].cooling_efficiency_seer = nil - hpxml.cooling_systems[0].cooling_efficiency_seer2 = 11.4 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_central_air_conditioner_values(hpxml_default.cooling_systems[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 12.0, 40.0) + hpxml_bldg.cooling_systems[0].cooling_efficiency_seer = nil + hpxml_bldg.cooling_systems[0].cooling_efficiency_seer2 = 11.4 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_central_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 12.0, 40.0) # Test defaults - hpxml.cooling_systems[0].cooling_shr = nil - hpxml.cooling_systems[0].compressor_type = nil - hpxml.cooling_systems[0].fan_watts_per_cfm = nil - hpxml.cooling_systems[0].charge_defect_ratio = nil - hpxml.cooling_systems[0].airflow_defect_ratio = nil - hpxml.cooling_systems[0].cooling_capacity = nil - hpxml.cooling_systems[0].crankcase_heater_watts = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_central_air_conditioner_values(hpxml_default.cooling_systems[0], 0.73, HPXML::HVACCompressorTypeSingleStage, 0.5, 0, 0, nil, 12.0, 50.0) + hpxml_bldg.cooling_systems[0].cooling_shr = nil + hpxml_bldg.cooling_systems[0].compressor_type = nil + hpxml_bldg.cooling_systems[0].fan_watts_per_cfm = nil + hpxml_bldg.cooling_systems[0].charge_defect_ratio = nil + hpxml_bldg.cooling_systems[0].airflow_defect_ratio = nil + hpxml_bldg.cooling_systems[0].cooling_capacity = nil + hpxml_bldg.cooling_systems[0].crankcase_heater_watts = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_central_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.73, HPXML::HVACCompressorTypeSingleStage, 0.5, 0, 0, nil, 12.0, 50.0) end def test_room_air_conditioners # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-room-ac-only.xml') - hpxml.cooling_systems[0].cooling_shr = 0.88 - hpxml.cooling_systems[0].cooling_capacity = 12345 - hpxml.cooling_systems[0].crankcase_heater_watts = 40.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_room_air_conditioner_ptac_values(hpxml_default.cooling_systems[0], 0.88, 12345, 40.0) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-room-ac-only.xml') + hpxml_bldg.cooling_systems[0].cooling_shr = 0.88 + hpxml_bldg.cooling_systems[0].cooling_capacity = 12345 + hpxml_bldg.cooling_systems[0].crankcase_heater_watts = 40.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.88, 12345, 40.0) # Test defaults - hpxml.cooling_systems[0].cooling_shr = nil - hpxml.cooling_systems[0].cooling_capacity = nil - hpxml.cooling_systems[0].crankcase_heater_watts = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_room_air_conditioner_ptac_values(hpxml_default.cooling_systems[0], 0.65, nil, 0.0) + hpxml_bldg.cooling_systems[0].cooling_shr = nil + hpxml_bldg.cooling_systems[0].cooling_capacity = nil + hpxml_bldg.cooling_systems[0].crankcase_heater_watts = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.65, nil, 0.0) end def test_evaporative_coolers # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-evap-cooler-only.xml') - hpxml.cooling_systems[0].cooling_capacity = 12345 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_evap_cooler_values(hpxml_default.cooling_systems[0], 12345) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-evap-cooler-only.xml') + hpxml_bldg.cooling_systems[0].cooling_capacity = 12345 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_evap_cooler_values(default_hpxml_bldg.cooling_systems[0], 12345) # Test defaults - hpxml.cooling_systems[0].cooling_capacity = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_evap_cooler_values(hpxml_default.cooling_systems[0], nil) + hpxml_bldg.cooling_systems[0].cooling_capacity = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_evap_cooler_values(default_hpxml_bldg.cooling_systems[0], nil) end def test_mini_split_air_conditioners # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-mini-split-air-conditioner-only-ducted.xml') - hpxml.cooling_systems[0].cooling_shr = 0.78 - hpxml.cooling_systems[0].fan_watts_per_cfm = 0.66 - hpxml.cooling_systems[0].charge_defect_ratio = -0.11 - hpxml.cooling_systems[0].airflow_defect_ratio = -0.22 - hpxml.cooling_systems[0].cooling_capacity = 12345 - hpxml.cooling_systems[0].crankcase_heater_watts = 40.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mini_split_air_conditioner_values(hpxml_default.cooling_systems[0], 0.78, 0.66, -0.11, -0.22, 12345, 19.0, 40.0) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-mini-split-air-conditioner-only-ducted.xml') + hpxml_bldg.cooling_systems[0].cooling_shr = 0.78 + hpxml_bldg.cooling_systems[0].fan_watts_per_cfm = 0.66 + hpxml_bldg.cooling_systems[0].charge_defect_ratio = -0.11 + hpxml_bldg.cooling_systems[0].airflow_defect_ratio = -0.22 + hpxml_bldg.cooling_systems[0].cooling_capacity = 12345 + hpxml_bldg.cooling_systems[0].crankcase_heater_watts = 40.0 + hpxml_bldg.cooling_systems[0].compressor_type = HPXML::HVACCompressorTypeVariableSpeed + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mini_split_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.78, 0.66, -0.11, -0.22, 12345, 19.0, 40.0, HPXML::HVACCompressorTypeVariableSpeed) # Test defaults - hpxml.cooling_systems[0].cooling_shr = nil - hpxml.cooling_systems[0].fan_watts_per_cfm = nil - hpxml.cooling_systems[0].charge_defect_ratio = nil - hpxml.cooling_systems[0].airflow_defect_ratio = nil - hpxml.cooling_systems[0].cooling_capacity = nil - hpxml.cooling_systems[0].crankcase_heater_watts = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mini_split_air_conditioner_values(hpxml_default.cooling_systems[0], 0.73, 0.18, 0, 0, nil, 19.0, 50.0) + hpxml_bldg.cooling_systems[0].cooling_shr = nil + hpxml_bldg.cooling_systems[0].fan_watts_per_cfm = nil + hpxml_bldg.cooling_systems[0].charge_defect_ratio = nil + hpxml_bldg.cooling_systems[0].airflow_defect_ratio = nil + hpxml_bldg.cooling_systems[0].cooling_capacity = nil + hpxml_bldg.cooling_systems[0].crankcase_heater_watts = nil + hpxml_bldg.cooling_systems[0].compressor_type = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mini_split_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.73, 0.18, 0, 0, nil, 19.0, 50.0, HPXML::HVACCompressorTypeVariableSpeed) # Test defaults w/ ductless - hpxml.cooling_systems[0].distribution_system.delete - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mini_split_air_conditioner_values(hpxml_default.cooling_systems[0], 0.73, 0.07, 0, 0, nil, 19.0, 50.0) + hpxml_bldg.cooling_systems[0].distribution_system.delete + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mini_split_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.73, 0.07, 0, 0, nil, 19.0, 50.0, HPXML::HVACCompressorTypeVariableSpeed) # Test defaults w/ ductless - SEER2 - hpxml.cooling_systems[0].cooling_efficiency_seer = nil - hpxml.cooling_systems[0].cooling_efficiency_seer2 = 13.3 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mini_split_air_conditioner_values(hpxml_default.cooling_systems[0], 0.73, 0.07, 0, 0, nil, 13.3, 50.0) + hpxml_bldg.cooling_systems[0].cooling_efficiency_seer = nil + hpxml_bldg.cooling_systems[0].cooling_efficiency_seer2 = 13.3 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mini_split_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.73, 0.07, 0, 0, nil, 13.3, 50.0, HPXML::HVACCompressorTypeVariableSpeed) end def test_ptac # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-ptac-with-heating-electricity.xml') - hpxml.cooling_systems[0].cooling_shr = 0.75 - hpxml.cooling_systems[0].cooling_capacity = 12345 - hpxml.cooling_systems[0].crankcase_heater_watts = 40.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_room_air_conditioner_ptac_values(hpxml_default.cooling_systems[0], 0.75, 12345, 40.0) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ptac-with-heating-electricity.xml') + hpxml_bldg.cooling_systems[0].cooling_shr = 0.75 + hpxml_bldg.cooling_systems[0].cooling_capacity = 12345 + hpxml_bldg.cooling_systems[0].crankcase_heater_watts = 40.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.75, 12345, 40.0) # Test defaults - hpxml.cooling_systems[0].cooling_shr = nil - hpxml.cooling_systems[0].cooling_capacity = nil - hpxml.cooling_systems[0].crankcase_heater_watts = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_room_air_conditioner_ptac_values(hpxml_default.cooling_systems[0], 0.65, nil, 0.0) + hpxml_bldg.cooling_systems[0].cooling_shr = nil + hpxml_bldg.cooling_systems[0].cooling_capacity = nil + hpxml_bldg.cooling_systems[0].crankcase_heater_watts = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.65, nil, 0.0) end def test_furnaces # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.heating_systems[0].fan_watts_per_cfm = 0.66 - hpxml.heating_systems[0].airflow_defect_ratio = -0.22 - hpxml.heating_systems[0].heating_capacity = 12345 - hpxml.heating_systems[0].pilot_light = true - hpxml.heating_systems[0].pilot_light_btuh = 999 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_furnace_values(hpxml_default.heating_systems[0], 0.66, -0.22, 12345, true, 999) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.heating_systems[0].fan_watts_per_cfm = 0.66 + hpxml_bldg.heating_systems[0].airflow_defect_ratio = -0.22 + hpxml_bldg.heating_systems[0].heating_capacity = 12345 + hpxml_bldg.heating_systems[0].pilot_light = true + hpxml_bldg.heating_systems[0].pilot_light_btuh = 999 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_furnace_values(default_hpxml_bldg.heating_systems[0], 0.66, -0.22, 12345, true, 999) # Test defaults - hpxml.heating_systems[0].fan_watts_per_cfm = nil - hpxml.heating_systems[0].airflow_defect_ratio = nil - hpxml.heating_systems[0].heating_capacity = nil - hpxml.heating_systems[0].pilot_light_btuh = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_furnace_values(hpxml_default.heating_systems[0], 0.375, 0, nil, true, 500) + hpxml_bldg.heating_systems[0].fan_watts_per_cfm = nil + hpxml_bldg.heating_systems[0].airflow_defect_ratio = nil + hpxml_bldg.heating_systems[0].heating_capacity = nil + hpxml_bldg.heating_systems[0].pilot_light_btuh = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_furnace_values(default_hpxml_bldg.heating_systems[0], 0.375, 0, nil, true, 500) # Test defaults w/o pilot - hpxml.heating_systems[0].pilot_light = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_furnace_values(hpxml_default.heating_systems[0], 0.375, 0, nil, false, nil) + hpxml_bldg.heating_systems[0].pilot_light = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_furnace_values(default_hpxml_bldg.heating_systems[0], 0.375, 0, nil, false, nil) # Test defaults w/ gravity distribution system - hpxml = _create_hpxml('base-hvac-furnace-gas-only.xml') - hpxml.heating_systems[0].distribution_system.air_type = HPXML::AirTypeGravity - hpxml.heating_systems[0].fan_watts_per_cfm = nil - hpxml.heating_systems[0].airflow_defect_ratio = nil - hpxml.heating_systems[0].heating_capacity = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_furnace_values(hpxml_default.heating_systems[0], 0.0, 0, nil, false, nil) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-furnace-gas-only.xml') + hpxml_bldg.heating_systems[0].distribution_system.air_type = HPXML::AirTypeGravity + hpxml_bldg.heating_systems[0].fan_watts_per_cfm = nil + hpxml_bldg.heating_systems[0].airflow_defect_ratio = nil + hpxml_bldg.heating_systems[0].heating_capacity = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_furnace_values(default_hpxml_bldg.heating_systems[0], 0.0, 0, nil, false, nil) end def test_wall_furnaces # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-wall-furnace-elec-only.xml') - hpxml.heating_systems[0].fan_watts = 22 - hpxml.heating_systems[0].heating_capacity = 12345 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_wall_furnace_values(hpxml_default.heating_systems[0], 22, 12345) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-wall-furnace-elec-only.xml') + hpxml_bldg.heating_systems[0].fan_watts = 22 + hpxml_bldg.heating_systems[0].heating_capacity = 12345 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_wall_furnace_values(default_hpxml_bldg.heating_systems[0], 22, 12345) # Test defaults - hpxml.heating_systems[0].fan_watts = nil - hpxml.heating_systems[0].heating_capacity = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_wall_furnace_values(hpxml_default.heating_systems[0], 0, nil) + hpxml_bldg.heating_systems[0].fan_watts = nil + hpxml_bldg.heating_systems[0].heating_capacity = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_wall_furnace_values(default_hpxml_bldg.heating_systems[0], 0, nil) # Test defaults w/o pilot - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_wall_furnace_values(hpxml_default.heating_systems[0], 0, nil) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_wall_furnace_values(default_hpxml_bldg.heating_systems[0], 0, nil) end def test_floor_furnaces # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-floor-furnace-propane-only.xml') - hpxml.heating_systems[0].fan_watts = 22 - hpxml.heating_systems[0].heating_capacity = 12345 - hpxml.heating_systems[0].pilot_light = true - hpxml.heating_systems[0].pilot_light_btuh = 999 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_floor_furnace_values(hpxml_default.heating_systems[0], 22, 12345, true, 999) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-floor-furnace-propane-only.xml') + hpxml_bldg.heating_systems[0].fan_watts = 22 + hpxml_bldg.heating_systems[0].heating_capacity = 12345 + hpxml_bldg.heating_systems[0].pilot_light = true + hpxml_bldg.heating_systems[0].pilot_light_btuh = 999 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_floor_furnace_values(default_hpxml_bldg.heating_systems[0], 22, 12345, true, 999) # Test defaults - hpxml.heating_systems[0].fan_watts = nil - hpxml.heating_systems[0].pilot_light_btuh = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_floor_furnace_values(hpxml_default.heating_systems[0], 0, nil, true, 500) + hpxml_bldg.heating_systems[0].fan_watts = nil + hpxml_bldg.heating_systems[0].pilot_light_btuh = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_floor_furnace_values(default_hpxml_bldg.heating_systems[0], 0, nil, true, 500) # Test defaults w/o pilot - hpxml.heating_systems[0].pilot_light = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_floor_furnace_values(hpxml_default.heating_systems[0], 0, nil, false, nil) + hpxml_bldg.heating_systems[0].pilot_light = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_floor_furnace_values(default_hpxml_bldg.heating_systems[0], 0, nil, false, nil) end def test_boilers # Test inputs not overridden by defaults (in-unit boiler) - hpxml = _create_hpxml('base-hvac-boiler-gas-only.xml') - hpxml.heating_systems[0].electric_auxiliary_energy = 99.9 - hpxml.heating_systems[0].heating_capacity = 12345 - hpxml.heating_systems[0].pilot_light = true - hpxml.heating_systems[0].pilot_light_btuh = 999 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_boiler_values(hpxml_default.heating_systems[0], 99.9, 12345, true, 999) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-boiler-gas-only.xml') + hpxml_bldg.heating_systems[0].electric_auxiliary_energy = 99.9 + hpxml_bldg.heating_systems[0].heating_capacity = 12345 + hpxml_bldg.heating_systems[0].pilot_light = true + hpxml_bldg.heating_systems[0].pilot_light_btuh = 999 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_boiler_values(default_hpxml_bldg.heating_systems[0], 99.9, 12345, true, 999) # Test defaults w/ in-unit boiler - hpxml.heating_systems[0].electric_auxiliary_energy = nil - hpxml.heating_systems[0].heating_capacity = nil - hpxml.heating_systems[0].pilot_light_btuh = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_boiler_values(hpxml_default.heating_systems[0], 170.0, nil, true, 500) + hpxml_bldg.heating_systems[0].electric_auxiliary_energy = nil + hpxml_bldg.heating_systems[0].heating_capacity = nil + hpxml_bldg.heating_systems[0].pilot_light_btuh = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_boiler_values(default_hpxml_bldg.heating_systems[0], 170.0, nil, true, 500) # Test inputs not overridden by defaults (shared boiler) - hpxml = _create_hpxml('base-bldgtype-multifamily-shared-boiler-only-baseboard.xml') - hpxml.heating_systems[0].shared_loop_watts = nil - hpxml.heating_systems[0].electric_auxiliary_energy = 99.9 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_boiler_values(hpxml_default.heating_systems[0], 99.9, nil, false, nil) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml') + hpxml_bldg.heating_systems[0].shared_loop_watts = nil + hpxml_bldg.heating_systems[0].electric_auxiliary_energy = 99.9 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_boiler_values(default_hpxml_bldg.heating_systems[0], 99.9, nil, false, nil) end def test_stoves # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-stove-oil-only.xml') - hpxml.heating_systems[0].fan_watts = 22 - hpxml.heating_systems[0].heating_capacity = 12345 - hpxml.heating_systems[0].pilot_light = true - hpxml.heating_systems[0].pilot_light_btuh = 999 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_stove_values(hpxml_default.heating_systems[0], 22, 12345, true, 999) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-stove-oil-only.xml') + hpxml_bldg.heating_systems[0].fan_watts = 22 + hpxml_bldg.heating_systems[0].heating_capacity = 12345 + hpxml_bldg.heating_systems[0].pilot_light = true + hpxml_bldg.heating_systems[0].pilot_light_btuh = 999 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_stove_values(default_hpxml_bldg.heating_systems[0], 22, 12345, true, 999) # Test defaults - hpxml.heating_systems[0].fan_watts = nil - hpxml.heating_systems[0].heating_capacity = nil - hpxml.heating_systems[0].pilot_light_btuh = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_stove_values(hpxml_default.heating_systems[0], 40, nil, true, 500) + hpxml_bldg.heating_systems[0].fan_watts = nil + hpxml_bldg.heating_systems[0].heating_capacity = nil + hpxml_bldg.heating_systems[0].pilot_light_btuh = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_stove_values(default_hpxml_bldg.heating_systems[0], 40, nil, true, 500) # Test defaults w/o pilot - hpxml.heating_systems[0].pilot_light = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_stove_values(hpxml_default.heating_systems[0], 40, nil, false, nil) - end - - def test_portable_heaters - # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-portable-heater-gas-only.xml') - hpxml.heating_systems[0].fan_watts = 22 - hpxml.heating_systems[0].heating_capacity = 12345 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_portable_heater_values(hpxml_default.heating_systems[0], 22, 12345) - - # Test defaults - hpxml.heating_systems[0].fan_watts = nil - hpxml.heating_systems[0].heating_capacity = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_portable_heater_values(hpxml_default.heating_systems[0], 0, nil) + hpxml_bldg.heating_systems[0].pilot_light = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_stove_values(default_hpxml_bldg.heating_systems[0], 40, nil, false, nil) end - def test_fixed_heaters + def test_space_heaters # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-fixed-heater-gas-only.xml') - hpxml.heating_systems[0].fan_watts = 22 - hpxml.heating_systems[0].heating_capacity = 12345 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_fixed_heater_values(hpxml_default.heating_systems[0], 22, 12345) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-space-heater-gas-only.xml') + hpxml_bldg.heating_systems[0].fan_watts = 22 + hpxml_bldg.heating_systems[0].heating_capacity = 12345 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_portable_heater_values(default_hpxml_bldg.heating_systems[0], 22, 12345) # Test defaults - hpxml.heating_systems[0].fan_watts = nil - hpxml.heating_systems[0].heating_capacity = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_fixed_heater_values(hpxml_default.heating_systems[0], 0, nil) + hpxml_bldg.heating_systems[0].fan_watts = nil + hpxml_bldg.heating_systems[0].heating_capacity = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_portable_heater_values(default_hpxml_bldg.heating_systems[0], 0, nil) end def test_fireplaces # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-fireplace-wood-only.xml') - hpxml.heating_systems[0].fan_watts = 22 - hpxml.heating_systems[0].heating_capacity = 12345 - hpxml.heating_systems[0].pilot_light = true - hpxml.heating_systems[0].pilot_light_btuh = 999 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_fireplace_values(hpxml_default.heating_systems[0], 22, 12345, true, 999) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-fireplace-wood-only.xml') + hpxml_bldg.heating_systems[0].fan_watts = 22 + hpxml_bldg.heating_systems[0].heating_capacity = 12345 + hpxml_bldg.heating_systems[0].pilot_light = true + hpxml_bldg.heating_systems[0].pilot_light_btuh = 999 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_fireplace_values(default_hpxml_bldg.heating_systems[0], 22, 12345, true, 999) # Test defaults - hpxml.heating_systems[0].fan_watts = nil - hpxml.heating_systems[0].heating_capacity = nil - hpxml.heating_systems[0].pilot_light_btuh = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_fireplace_values(hpxml_default.heating_systems[0], 0, nil, true, 500) + hpxml_bldg.heating_systems[0].fan_watts = nil + hpxml_bldg.heating_systems[0].heating_capacity = nil + hpxml_bldg.heating_systems[0].pilot_light_btuh = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_fireplace_values(default_hpxml_bldg.heating_systems[0], 0, nil, true, 500) # Test defaults w/o pilot - hpxml.heating_systems[0].pilot_light = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_fireplace_values(hpxml_default.heating_systems[0], 0, nil, false, nil) + hpxml_bldg.heating_systems[0].pilot_light = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_fireplace_values(default_hpxml_bldg.heating_systems[0], 0, nil, false, nil) end def test_air_source_heat_pumps # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') - hpxml.heat_pumps[0].cooling_shr = 0.88 - hpxml.heat_pumps[0].compressor_type = HPXML::HVACCompressorTypeVariableSpeed - hpxml.heat_pumps[0].fan_watts_per_cfm = 0.66 - hpxml.heat_pumps[0].charge_defect_ratio = -0.11 - hpxml.heat_pumps[0].airflow_defect_ratio = -0.22 - hpxml.heat_pumps[0].cooling_capacity = 12345 - hpxml.heat_pumps[0].heating_capacity = 23456 - hpxml.heat_pumps[0].backup_heating_capacity = 34567 - hpxml.heat_pumps[0].cooling_efficiency_seer = 14.0 - hpxml.heat_pumps[0].heating_efficiency_hspf = 8.0 - hpxml.heat_pumps[0].heating_capacity_retention_fraction = 0.1 - hpxml.heat_pumps[0].heating_capacity_retention_temp = 2.0 - hpxml.heat_pumps[0].crankcase_heater_watts = 40.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_air_to_air_heat_pump_values(hpxml_default.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 23456, nil, 34567, 14.0, 8.0, 0.1, 2.0, 40.0) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.heat_pumps[0].cooling_shr = 0.88 + hpxml_bldg.heat_pumps[0].compressor_type = HPXML::HVACCompressorTypeVariableSpeed + hpxml_bldg.heat_pumps[0].fan_watts_per_cfm = 0.66 + hpxml_bldg.heat_pumps[0].charge_defect_ratio = -0.11 + hpxml_bldg.heat_pumps[0].airflow_defect_ratio = -0.22 + hpxml_bldg.heat_pumps[0].cooling_capacity = 12345 + hpxml_bldg.heat_pumps[0].heating_capacity = 23456 + hpxml_bldg.heat_pumps[0].backup_heating_capacity = 34567 + hpxml_bldg.heat_pumps[0].cooling_efficiency_seer = 14.0 + hpxml_bldg.heat_pumps[0].heating_efficiency_hspf = 8.0 + hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = 0.1 + hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = 2.0 + hpxml_bldg.heat_pumps[0].crankcase_heater_watts = 40.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 23456, nil, 34567, 14.0, 8.0, 0.1, 2.0, 40.0) # Test w/ heating capacity 17F - hpxml.heat_pumps[0].heating_capacity_17F = 9876 - hpxml.heat_pumps[0].heating_capacity_retention_fraction = nil - hpxml.heat_pumps[0].heating_capacity_retention_temp = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_air_to_air_heat_pump_values(hpxml_default.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 23456, 9876, 34567, 14.0, 8.0, nil, nil, 40.0) + hpxml_bldg.heat_pumps[0].heating_capacity_17F = 9876 + hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = nil + hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 23456, 9876, 34567, 14.0, 8.0, nil, nil, 40.0) # Test defaults - SEER2/HSPF2 - hpxml.heat_pumps[0].cooling_efficiency_seer = nil - hpxml.heat_pumps[0].cooling_efficiency_seer2 = 13.3 - hpxml.heat_pumps[0].heating_efficiency_hspf = nil - hpxml.heat_pumps[0].heating_efficiency_hspf2 = 6.8 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_air_to_air_heat_pump_values(hpxml_default.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 23456, 9876, 34567, 14.0, 8.0, nil, nil, 40.0) + hpxml_bldg.heat_pumps[0].cooling_efficiency_seer = nil + hpxml_bldg.heat_pumps[0].cooling_efficiency_seer2 = 13.3 + hpxml_bldg.heat_pumps[0].heating_efficiency_hspf = nil + hpxml_bldg.heat_pumps[0].heating_efficiency_hspf2 = 6.8 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 23456, 9876, 34567, 14.0, 8.0, nil, nil, 40.0) # Test defaults - hpxml.heat_pumps[0].cooling_shr = nil - hpxml.heat_pumps[0].compressor_type = nil - hpxml.heat_pumps[0].fan_watts_per_cfm = nil - hpxml.heat_pumps[0].charge_defect_ratio = nil - hpxml.heat_pumps[0].airflow_defect_ratio = nil - hpxml.heat_pumps[0].cooling_capacity = nil - hpxml.heat_pumps[0].heating_capacity = nil - hpxml.heat_pumps[0].heating_capacity_17F = nil - hpxml.heat_pumps[0].backup_heating_capacity = nil - hpxml.heat_pumps[0].crankcase_heater_watts = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_air_to_air_heat_pump_values(hpxml_default.heat_pumps[0], 0.73, HPXML::HVACCompressorTypeSingleStage, 0.5, 0, 0, nil, nil, nil, nil, 14.0, 8.0, 0.425, 5.0, 50.0) + hpxml_bldg.heat_pumps[0].cooling_shr = nil + hpxml_bldg.heat_pumps[0].compressor_type = nil + hpxml_bldg.heat_pumps[0].fan_watts_per_cfm = nil + hpxml_bldg.heat_pumps[0].charge_defect_ratio = nil + hpxml_bldg.heat_pumps[0].airflow_defect_ratio = nil + hpxml_bldg.heat_pumps[0].cooling_capacity = nil + hpxml_bldg.heat_pumps[0].heating_capacity = nil + hpxml_bldg.heat_pumps[0].heating_capacity_17F = nil + hpxml_bldg.heat_pumps[0].backup_heating_capacity = nil + hpxml_bldg.heat_pumps[0].crankcase_heater_watts = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.73, HPXML::HVACCompressorTypeSingleStage, 0.5, 0, 0, nil, nil, nil, nil, 14.0, 8.0, 0.425, 5.0, 50.0) + + # Test w/ detailed performance data + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml') + hpxml_bldg.heat_pumps[0].cooling_shr = 0.88 + hpxml_bldg.heat_pumps[0].fan_watts_per_cfm = 0.66 + hpxml_bldg.heat_pumps[0].charge_defect_ratio = -0.11 + hpxml_bldg.heat_pumps[0].airflow_defect_ratio = -0.22 + hpxml_bldg.heat_pumps[0].cooling_efficiency_seer = 14.0 + hpxml_bldg.heat_pumps[0].heating_efficiency_hspf = 8.0 + hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = 0.1 + hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = 2.0 + hpxml_bldg.heat_pumps[0].crankcase_heater_watts = 40.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, nil, nil, nil, nil, 14.0, 8.0, 0.1, 2.0, 40.0) + + hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = nil + hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil + max_cap_at_5f = hpxml_bldg.heat_pumps[0].heating_detailed_performance_data.find { |dp| dp.outdoor_temperature == 5.0 && dp.capacity_description == HPXML::CapacityDescriptionMaximum }.capacity + max_cap_at_47f = hpxml_bldg.heat_pumps[0].heating_detailed_performance_data.find { |dp| dp.outdoor_temperature == 47.0 && dp.capacity_description == HPXML::CapacityDescriptionMaximum }.capacity + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, nil, nil, nil, nil, 14.0, 8.0, (max_cap_at_5f / max_cap_at_47f).round(5), 5.0, 40.0) + + hpxml_bldg.heat_pumps[0].heating_capacity_17F = 9876 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, nil, nil, 9876, nil, 14.0, 8.0, nil, nil, 40.0) end def test_pthp # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-pthp.xml') - hpxml.heat_pumps[0].cooling_shr = 0.88 - hpxml.heat_pumps[0].cooling_capacity = 12345 - hpxml.heat_pumps[0].heating_capacity = 23456 - hpxml.heat_pumps[0].heating_capacity_retention_fraction = 0.1 - hpxml.heat_pumps[0].heating_capacity_retention_temp = 2.0 - hpxml.heat_pumps[0].crankcase_heater_watts = 40.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_pthp_values(hpxml_default.heat_pumps[0], 0.88, 12345, 23456, nil, 0.1, 2.0, 40.0) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-pthp.xml') + hpxml_bldg.heat_pumps[0].cooling_shr = 0.88 + hpxml_bldg.heat_pumps[0].cooling_capacity = 12345 + hpxml_bldg.heat_pumps[0].heating_capacity = 23456 + hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = 0.1 + hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = 2.0 + hpxml_bldg.heat_pumps[0].crankcase_heater_watts = 40.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_pthp_values(default_hpxml_bldg.heat_pumps[0], 0.88, 12345, 23456, nil, 0.1, 2.0, 40.0) # Test w/ heating capacity 17F - hpxml.heat_pumps[0].heating_capacity_17F = 9876 - hpxml.heat_pumps[0].heating_capacity_retention_fraction = nil - hpxml.heat_pumps[0].heating_capacity_retention_temp = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_pthp_values(hpxml_default.heat_pumps[0], 0.88, 12345, 23456, 9876, nil, nil, 40.0) + hpxml_bldg.heat_pumps[0].heating_capacity_17F = 9876 + hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = nil + hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_pthp_values(default_hpxml_bldg.heat_pumps[0], 0.88, 12345, 23456, 9876, nil, nil, 40.0) # Test defaults - hpxml.heat_pumps[0].cooling_shr = nil - hpxml.heat_pumps[0].cooling_capacity = nil - hpxml.heat_pumps[0].heating_capacity = nil - hpxml.heat_pumps[0].backup_heating_capacity = nil - hpxml.heat_pumps[0].heating_capacity_17F = nil - hpxml.heat_pumps[0].crankcase_heater_watts = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_pthp_values(hpxml_default.heat_pumps[0], 0.65, nil, nil, nil, 0.425, 5.0, 0.0) + hpxml_bldg.heat_pumps[0].cooling_shr = nil + hpxml_bldg.heat_pumps[0].cooling_capacity = nil + hpxml_bldg.heat_pumps[0].heating_capacity = nil + hpxml_bldg.heat_pumps[0].backup_heating_capacity = nil + hpxml_bldg.heat_pumps[0].heating_capacity_17F = nil + hpxml_bldg.heat_pumps[0].crankcase_heater_watts = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_pthp_values(default_hpxml_bldg.heat_pumps[0], 0.65, nil, nil, nil, 0.425, 5.0, 0.0) end def test_mini_split_heat_pumps # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-mini-split-heat-pump-ducted.xml') - hpxml.heat_pumps[0].cooling_shr = 0.78 - hpxml.heat_pumps[0].fan_watts_per_cfm = 0.66 - hpxml.heat_pumps[0].charge_defect_ratio = -0.11 - hpxml.heat_pumps[0].airflow_defect_ratio = -0.22 - hpxml.heat_pumps[0].cooling_capacity = 12345 - hpxml.heat_pumps[0].heating_capacity = 23456 - hpxml.heat_pumps[0].backup_heating_capacity = 34567 - hpxml.heat_pumps[0].heating_capacity_retention_fraction = 0.1 - hpxml.heat_pumps[0].heating_capacity_retention_temp = 2.0 - hpxml.heat_pumps[0].crankcase_heater_watts = 40.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mini_split_heat_pump_values(hpxml_default.heat_pumps[0], 0.78, 0.66, -0.11, -0.22, 12345, 23456, nil, 34567, 19.0, 10.0, 0.1, 2.0, 40.0) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-mini-split-heat-pump-ducted.xml') + hpxml_bldg.heat_pumps[0].cooling_shr = 0.78 + hpxml_bldg.heat_pumps[0].fan_watts_per_cfm = 0.66 + hpxml_bldg.heat_pumps[0].charge_defect_ratio = -0.11 + hpxml_bldg.heat_pumps[0].airflow_defect_ratio = -0.22 + hpxml_bldg.heat_pumps[0].cooling_capacity = 12345 + hpxml_bldg.heat_pumps[0].heating_capacity = 23456 + hpxml_bldg.heat_pumps[0].backup_heating_capacity = 34567 + hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = 0.1 + hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = 2.0 + hpxml_bldg.heat_pumps[0].crankcase_heater_watts = 40.0 + hpxml_bldg.heat_pumps[0].compressor_type = HPXML::HVACCompressorTypeVariableSpeed + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.78, 0.66, -0.11, -0.22, 12345, 23456, nil, 34567, 19.0, 10.0, 0.1, 2.0, 40.0, HPXML::HVACCompressorTypeVariableSpeed) # Test w/ heating capacity 17F - hpxml.heat_pumps[0].heating_capacity_17F = 9876 - hpxml.heat_pumps[0].heating_capacity_retention_fraction = nil - hpxml.heat_pumps[0].heating_capacity_retention_temp = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mini_split_heat_pump_values(hpxml_default.heat_pumps[0], 0.78, 0.66, -0.11, -0.22, 12345, 23456, 9876, 34567, 19.0, 10.0, nil, nil, 40.0) + hpxml_bldg.heat_pumps[0].heating_capacity_17F = 9876 + hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = nil + hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.78, 0.66, -0.11, -0.22, 12345, 23456, 9876, 34567, 19.0, 10.0, nil, nil, 40.0, HPXML::HVACCompressorTypeVariableSpeed) # Test defaults - hpxml.heat_pumps[0].cooling_shr = nil - hpxml.heat_pumps[0].fan_watts_per_cfm = nil - hpxml.heat_pumps[0].charge_defect_ratio = nil - hpxml.heat_pumps[0].airflow_defect_ratio = nil - hpxml.heat_pumps[0].cooling_capacity = nil - hpxml.heat_pumps[0].heating_capacity = nil - hpxml.heat_pumps[0].heating_capacity_17F = nil - hpxml.heat_pumps[0].backup_heating_capacity = nil - hpxml.heat_pumps[0].crankcase_heater_watts = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mini_split_heat_pump_values(hpxml_default.heat_pumps[0], 0.73, 0.18, 0, 0, nil, nil, nil, nil, 19.0, 10.0, 0.5, 5.0, 50.0) + hpxml_bldg.heat_pumps[0].cooling_shr = nil + hpxml_bldg.heat_pumps[0].fan_watts_per_cfm = nil + hpxml_bldg.heat_pumps[0].charge_defect_ratio = nil + hpxml_bldg.heat_pumps[0].airflow_defect_ratio = nil + hpxml_bldg.heat_pumps[0].cooling_capacity = nil + hpxml_bldg.heat_pumps[0].heating_capacity = nil + hpxml_bldg.heat_pumps[0].heating_capacity_17F = nil + hpxml_bldg.heat_pumps[0].backup_heating_capacity = nil + hpxml_bldg.heat_pumps[0].crankcase_heater_watts = nil + hpxml_bldg.heat_pumps[0].compressor_type = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.73, 0.18, 0, 0, nil, nil, nil, nil, 19.0, 10.0, 0.62, 5.0, 50.0, HPXML::HVACCompressorTypeVariableSpeed) # Test defaults w/ ductless and no backup - hpxml.heat_pumps[0].distribution_system.delete - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mini_split_heat_pump_values(hpxml_default.heat_pumps[0], 0.73, 0.07, 0, 0, nil, nil, nil, nil, 19.0, 10.0, 0.5, 5.0, 50.0) + hpxml_bldg.heat_pumps[0].distribution_system.delete + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.73, 0.07, 0, 0, nil, nil, nil, nil, 19.0, 10.0, 0.62, 5.0, 50.0, HPXML::HVACCompressorTypeVariableSpeed) # Test defaults w/ ductless - SEER2/HSPF2 - hpxml.heat_pumps[0].cooling_efficiency_seer = nil - hpxml.heat_pumps[0].cooling_efficiency_seer2 = 13.3 - hpxml.heat_pumps[0].heating_efficiency_hspf = nil - hpxml.heat_pumps[0].heating_efficiency_hspf2 = 6.8 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mini_split_heat_pump_values(hpxml_default.heat_pumps[0], 0.73, 0.07, 0, 0, nil, nil, nil, nil, 13.3, 7.56, 0.5, 5.0, 50.0) + hpxml_bldg.heat_pumps[0].cooling_efficiency_seer = nil + hpxml_bldg.heat_pumps[0].cooling_efficiency_seer2 = 13.3 + hpxml_bldg.heat_pumps[0].heating_efficiency_hspf = nil + hpxml_bldg.heat_pumps[0].heating_efficiency_hspf2 = 6.8 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.73, 0.07, 0, 0, nil, nil, nil, nil, 13.3, 7.56, 0.51, 5.0, 50.0, HPXML::HVACCompressorTypeVariableSpeed) end def test_heat_pump_temperatures # Test inputs not overridden by defaults - ASHP w/ electric backup - hpxml = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') - hpxml.heat_pumps[0].compressor_lockout_temp = -2.0 - hpxml.heat_pumps[0].backup_heating_lockout_temp = 44.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_heat_pump_temperature_values(hpxml_default.heat_pumps[0], -2.0, 44.0, nil) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.heat_pumps[0].compressor_lockout_temp = -2.0 + hpxml_bldg.heat_pumps[0].backup_heating_lockout_temp = 44.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_heat_pump_temperature_values(default_hpxml_bldg.heat_pumps[0], -2.0, 44.0, nil) # Test defaults - hpxml.heat_pumps[0].compressor_lockout_temp = nil - hpxml.heat_pumps[0].backup_heating_lockout_temp = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_heat_pump_temperature_values(hpxml_default.heat_pumps[0], 0.0, 40.0, nil) + hpxml_bldg.heat_pumps[0].compressor_lockout_temp = nil + hpxml_bldg.heat_pumps[0].backup_heating_lockout_temp = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_heat_pump_temperature_values(default_hpxml_bldg.heat_pumps[0], 0.0, 40.0, nil) # Test inputs not overridden by defaults - MSHP w/o backup - hpxml = _create_hpxml('base-hvac-mini-split-heat-pump-ductless.xml') - hpxml.heat_pumps[0].compressor_lockout_temp = 33.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_heat_pump_temperature_values(hpxml_default.heat_pumps[0], 33.0, nil, nil) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-mini-split-heat-pump-ductless.xml') + hpxml_bldg.heat_pumps[0].compressor_lockout_temp = 33.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_heat_pump_temperature_values(default_hpxml_bldg.heat_pumps[0], 33.0, nil, nil) # Test defaults - hpxml.heat_pumps[0].compressor_lockout_temp = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_heat_pump_temperature_values(hpxml_default.heat_pumps[0], -20.0, nil, nil) + hpxml_bldg.heat_pumps[0].compressor_lockout_temp = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_heat_pump_temperature_values(default_hpxml_bldg.heat_pumps[0], -20.0, nil, nil) # Test inputs not overridden by defaults - MSHP w/ electric backup - hpxml = _create_hpxml('base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml') - hpxml.heat_pumps[0].compressor_lockout_temp = -2.0 - hpxml.heat_pumps[0].backup_heating_lockout_temp = 44.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_heat_pump_temperature_values(hpxml_default.heat_pumps[0], -2.0, 44.0, nil) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml') + hpxml_bldg.heat_pumps[0].compressor_lockout_temp = -2.0 + hpxml_bldg.heat_pumps[0].backup_heating_lockout_temp = 44.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_heat_pump_temperature_values(default_hpxml_bldg.heat_pumps[0], -2.0, 44.0, nil) # Test defaults - hpxml.heat_pumps[0].compressor_lockout_temp = nil - hpxml.heat_pumps[0].backup_heating_lockout_temp = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_heat_pump_temperature_values(hpxml_default.heat_pumps[0], -20.0, 40.0, nil) + hpxml_bldg.heat_pumps[0].compressor_lockout_temp = nil + hpxml_bldg.heat_pumps[0].backup_heating_lockout_temp = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_heat_pump_temperature_values(default_hpxml_bldg.heat_pumps[0], -20.0, 40.0, nil) # Test inputs not overridden by defaults - HP w/ fuel backup ['base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml', 'base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml', 'base-hvac-mini-split-heat-pump-ductless-backup-stove.xml'].each do |hpxml_name| - hpxml = _create_hpxml(hpxml_name) - hpxml.heat_pumps[0].backup_heating_switchover_temp = 33.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_heat_pump_temperature_values(hpxml_default.heat_pumps[0], nil, nil, 33.0) + hpxml, hpxml_bldg = _create_hpxml(hpxml_name) + hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp = 33.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_heat_pump_temperature_values(default_hpxml_bldg.heat_pumps[0], nil, nil, 33.0) # Test inputs not overridden by defaults - HP w/ integrated/separate fuel backup, lockout temps - hpxml.heat_pumps[0].backup_heating_switchover_temp = nil - hpxml.heat_pumps[0].compressor_lockout_temp = 22.0 - hpxml.heat_pumps[0].backup_heating_lockout_temp = 44.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_heat_pump_temperature_values(hpxml_default.heat_pumps[0], 22.0, 44.0, nil) + hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp = nil + hpxml_bldg.heat_pumps[0].compressor_lockout_temp = 22.0 + hpxml_bldg.heat_pumps[0].backup_heating_lockout_temp = 44.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_heat_pump_temperature_values(default_hpxml_bldg.heat_pumps[0], 22.0, 44.0, nil) # Test defaults - hpxml.heat_pumps[0].compressor_lockout_temp = nil - hpxml.heat_pumps[0].backup_heating_lockout_temp = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_heat_pump_temperature_values(hpxml_default.heat_pumps[0], 25.0, 50.0, nil) + hpxml_bldg.heat_pumps[0].compressor_lockout_temp = nil + hpxml_bldg.heat_pumps[0].backup_heating_lockout_temp = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_heat_pump_temperature_values(default_hpxml_bldg.heat_pumps[0], 25.0, 50.0, nil) end end def test_ground_source_heat_pumps # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') - hpxml.heat_pumps[0].pump_watts_per_ton = 9.9 - hpxml.heat_pumps[0].fan_watts_per_cfm = 0.66 - hpxml.heat_pumps[0].airflow_defect_ratio = -0.22 - hpxml.heat_pumps[0].cooling_capacity = 12345 - hpxml.heat_pumps[0].heating_capacity = 23456 - hpxml.heat_pumps[0].backup_heating_capacity = 34567 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_ground_to_air_heat_pump_values(hpxml_default.heat_pumps[0], 9.9, 0.66, -0.22, 12345, 23456, 34567) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml_bldg.heat_pumps[0].pump_watts_per_ton = 9.9 + hpxml_bldg.heat_pumps[0].fan_watts_per_cfm = 0.66 + hpxml_bldg.heat_pumps[0].airflow_defect_ratio = -0.22 + hpxml_bldg.heat_pumps[0].cooling_capacity = 12345 + hpxml_bldg.heat_pumps[0].heating_capacity = 23456 + hpxml_bldg.heat_pumps[0].backup_heating_capacity = 34567 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_ground_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 9.9, 0.66, -0.22, 12345, 23456, 34567) # Test defaults - hpxml.heat_pumps[0].pump_watts_per_ton = nil - hpxml.heat_pumps[0].fan_watts_per_cfm = nil - hpxml.heat_pumps[0].airflow_defect_ratio = nil - hpxml.heat_pumps[0].cooling_capacity = nil - hpxml.heat_pumps[0].heating_capacity = nil - hpxml.heat_pumps[0].backup_heating_capacity = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_ground_to_air_heat_pump_values(hpxml_default.heat_pumps[0], 30.0, 0.375, 0, nil, nil, nil) + hpxml_bldg.heat_pumps[0].pump_watts_per_ton = nil + hpxml_bldg.heat_pumps[0].fan_watts_per_cfm = nil + hpxml_bldg.heat_pumps[0].airflow_defect_ratio = nil + hpxml_bldg.heat_pumps[0].cooling_capacity = nil + hpxml_bldg.heat_pumps[0].heating_capacity = nil + hpxml_bldg.heat_pumps[0].backup_heating_capacity = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_ground_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 30.0, 0.375, 0, nil, nil, nil) end def test_hvac_location # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-foundation-unconditioned-basement.xml') - hpxml.heating_systems[0].location = HPXML::LocationAtticUnvented - hpxml.cooling_systems[0].delete - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_hvac_location_values(hpxml_default.heating_systems[0], HPXML::LocationAtticUnvented) + hpxml, hpxml_bldg = _create_hpxml('base-foundation-unconditioned-basement.xml') + hpxml_bldg.heating_systems[0].location = HPXML::LocationAtticUnvented + hpxml_bldg.cooling_systems[0].delete + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_hvac_location_values(default_hpxml_bldg.heating_systems[0], HPXML::LocationAtticUnvented) # Test defaults - hpxml.heating_systems[0].location = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_hvac_location_values(hpxml_default.heating_systems[0], HPXML::LocationBasementUnconditioned) + hpxml_bldg.heating_systems[0].location = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_hvac_location_values(default_hpxml_bldg.heating_systems[0], HPXML::LocationBasementUnconditioned) # Test defaults -- multiple duct locations - hpxml.heating_systems[0].distribution_system.ducts.add(id: "Ducts#{hpxml.heating_systems[0].distribution_system.ducts.size + 1}", - duct_type: HPXML::DuctTypeSupply, - duct_insulation_r_value: 0, - duct_location: HPXML::LocationAtticUnvented, - duct_surface_area: 151) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_hvac_location_values(hpxml_default.heating_systems[0], HPXML::LocationAtticUnvented) + hpxml_bldg.heating_systems[0].distribution_system.ducts.add(id: "Ducts#{hpxml_bldg.heating_systems[0].distribution_system.ducts.size + 1}", + duct_type: HPXML::DuctTypeSupply, + duct_insulation_r_value: 0, + duct_location: HPXML::LocationAtticUnvented, + duct_surface_area: 151) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_hvac_location_values(default_hpxml_bldg.heating_systems[0], HPXML::LocationAtticUnvented) # Test defaults -- ducts outside - hpxml.heating_systems[0].distribution_system.ducts.each do |d| + hpxml_bldg.heating_systems[0].distribution_system.ducts.each do |d| d.duct_location = HPXML::LocationOutside end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_hvac_location_values(hpxml_default.heating_systems[0], HPXML::LocationOtherExterior) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_hvac_location_values(default_hpxml_bldg.heating_systems[0], HPXML::LocationOtherExterior) # Test defaults -- hydronic - hpxml.heating_systems[0].heating_system_type = HPXML::HVACTypeBoiler - hpxml.heating_systems[0].distribution_system.distribution_system_type = HPXML::HVACDistributionTypeHydronic - hpxml.heating_systems[0].distribution_system.hydronic_type = HPXML::HydronicTypeBaseboard - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_hvac_location_values(hpxml_default.heating_systems[0], HPXML::LocationBasementUnconditioned) + hpxml_bldg.heating_systems[0].heating_system_type = HPXML::HVACTypeBoiler + hpxml_bldg.heating_systems[0].distribution_system.distribution_system_type = HPXML::HVACDistributionTypeHydronic + hpxml_bldg.heating_systems[0].distribution_system.hydronic_type = HPXML::HydronicTypeBaseboard + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_hvac_location_values(default_hpxml_bldg.heating_systems[0], HPXML::LocationBasementUnconditioned) # Test defaults -- DSE = 1 - hpxml.heating_systems[0].distribution_system.distribution_system_type = HPXML::HVACDistributionTypeDSE - hpxml.heating_systems[0].distribution_system.annual_heating_dse = 1.0 - hpxml.heating_systems[0].distribution_system.annual_cooling_dse = 0.5 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_hvac_location_values(hpxml_default.heating_systems[0], HPXML::LocationLivingSpace) + hpxml_bldg.heating_systems[0].distribution_system.distribution_system_type = HPXML::HVACDistributionTypeDSE + hpxml_bldg.heating_systems[0].distribution_system.annual_heating_dse = 1.0 + hpxml_bldg.heating_systems[0].distribution_system.annual_cooling_dse = 0.5 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_hvac_location_values(default_hpxml_bldg.heating_systems[0], HPXML::LocationConditionedSpace) # Test defaults -- DSE < 1 - hpxml.heating_systems[0].distribution_system.annual_heating_dse = 0.8 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_hvac_location_values(hpxml_default.heating_systems[0], HPXML::LocationUnconditionedSpace) + hpxml_bldg.heating_systems[0].distribution_system.annual_heating_dse = 0.8 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_hvac_location_values(default_hpxml_bldg.heating_systems[0], HPXML::LocationUnconditionedSpace) # Test defaults -- ductless - hpxml.heating_systems[0].heating_system_type = HPXML::HVACTypeWallFurnace - hpxml.heating_systems[0].distribution_system.delete - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_hvac_location_values(hpxml_default.heating_systems[0], HPXML::LocationLivingSpace) + hpxml_bldg.heating_systems[0].heating_system_type = HPXML::HVACTypeWallFurnace + hpxml_bldg.heating_systems[0].distribution_system.delete + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_hvac_location_values(default_hpxml_bldg.heating_systems[0], HPXML::LocationConditionedSpace) end def test_hvac_controls # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.hvac_controls[0].heating_setpoint_temp = 71.5 - hpxml.hvac_controls[0].cooling_setpoint_temp = 77.5 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_hvac_control_setpoint_values(hpxml_default.hvac_controls[0], 71.5, 77.5) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_controls[0].heating_setpoint_temp = 71.5 + hpxml_bldg.hvac_controls[0].cooling_setpoint_temp = 77.5 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_hvac_control_setpoint_values(default_hpxml_bldg.hvac_controls[0], 71.5, 77.5) # Test defaults - hpxml.hvac_controls[0].heating_setpoint_temp = nil - hpxml.hvac_controls[0].cooling_setpoint_temp = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_hvac_control_setpoint_values(hpxml_default.hvac_controls[0], 68, 78) + hpxml_bldg.hvac_controls[0].heating_setpoint_temp = nil + hpxml_bldg.hvac_controls[0].cooling_setpoint_temp = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_hvac_control_setpoint_values(default_hpxml_bldg.hvac_controls[0], 68, 78) # Test inputs not overridden by defaults (w/ setbacks) - hpxml = _create_hpxml('base-hvac-setpoints-daily-setbacks.xml') - hpxml.hvac_controls[0].heating_setback_start_hour = 12 - hpxml.hvac_controls[0].cooling_setup_start_hour = 12 - hpxml.hvac_controls[0].seasons_heating_begin_month = 1 - hpxml.hvac_controls[0].seasons_heating_begin_day = 1 - hpxml.hvac_controls[0].seasons_heating_end_month = 6 - hpxml.hvac_controls[0].seasons_heating_end_day = 30 - hpxml.hvac_controls[0].seasons_cooling_begin_month = 7 - hpxml.hvac_controls[0].seasons_cooling_begin_day = 1 - hpxml.hvac_controls[0].seasons_cooling_end_month = 12 - hpxml.hvac_controls[0].seasons_cooling_end_day = 31 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_hvac_control_setback_values(hpxml_default.hvac_controls[0], 12, 12) - _test_default_hvac_control_season_values(hpxml_default.hvac_controls[0], 1, 1, 6, 30, 7, 1, 12, 31) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-setpoints-daily-setbacks.xml') + hpxml_bldg.hvac_controls[0].heating_setback_start_hour = 12 + hpxml_bldg.hvac_controls[0].cooling_setup_start_hour = 12 + hpxml_bldg.hvac_controls[0].seasons_heating_begin_month = 1 + hpxml_bldg.hvac_controls[0].seasons_heating_begin_day = 1 + hpxml_bldg.hvac_controls[0].seasons_heating_end_month = 6 + hpxml_bldg.hvac_controls[0].seasons_heating_end_day = 30 + hpxml_bldg.hvac_controls[0].seasons_cooling_begin_month = 7 + hpxml_bldg.hvac_controls[0].seasons_cooling_begin_day = 1 + hpxml_bldg.hvac_controls[0].seasons_cooling_end_month = 12 + hpxml_bldg.hvac_controls[0].seasons_cooling_end_day = 31 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_hvac_control_setback_values(default_hpxml_bldg.hvac_controls[0], 12, 12) + _test_default_hvac_control_season_values(default_hpxml_bldg.hvac_controls[0], 1, 1, 6, 30, 7, 1, 12, 31) # Test defaults w/ setbacks - hpxml.hvac_controls[0].heating_setback_start_hour = nil - hpxml.hvac_controls[0].cooling_setup_start_hour = nil - hpxml.hvac_controls[0].seasons_heating_begin_month = nil - hpxml.hvac_controls[0].seasons_heating_begin_day = nil - hpxml.hvac_controls[0].seasons_heating_end_month = nil - hpxml.hvac_controls[0].seasons_heating_end_day = nil - hpxml.hvac_controls[0].seasons_cooling_begin_month = nil - hpxml.hvac_controls[0].seasons_cooling_begin_day = nil - hpxml.hvac_controls[0].seasons_cooling_end_month = nil - hpxml.hvac_controls[0].seasons_cooling_end_day = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_hvac_control_setback_values(hpxml_default.hvac_controls[0], 23, 9) - _test_default_hvac_control_season_values(hpxml_default.hvac_controls[0], 1, 1, 12, 31, 1, 1, 12, 31) + hpxml_bldg.hvac_controls[0].heating_setback_start_hour = nil + hpxml_bldg.hvac_controls[0].cooling_setup_start_hour = nil + hpxml_bldg.hvac_controls[0].seasons_heating_begin_month = nil + hpxml_bldg.hvac_controls[0].seasons_heating_begin_day = nil + hpxml_bldg.hvac_controls[0].seasons_heating_end_month = nil + hpxml_bldg.hvac_controls[0].seasons_heating_end_day = nil + hpxml_bldg.hvac_controls[0].seasons_cooling_begin_month = nil + hpxml_bldg.hvac_controls[0].seasons_cooling_begin_day = nil + hpxml_bldg.hvac_controls[0].seasons_cooling_end_month = nil + hpxml_bldg.hvac_controls[0].seasons_cooling_end_day = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_hvac_control_setback_values(default_hpxml_bldg.hvac_controls[0], 23, 9) + _test_default_hvac_control_season_values(default_hpxml_bldg.hvac_controls[0], 1, 1, 12, 31, 1, 1, 12, 31) end def test_hvac_distribution # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.hvac_distributions[0].conditioned_floor_area_served = 2700.0 - hpxml.hvac_distributions[0].number_of_return_registers = 2 - hpxml.hvac_distributions[0].ducts[0].duct_surface_area_multiplier = 0.5 - hpxml.hvac_distributions[0].ducts[1].duct_surface_area_multiplier = 1.5 - hpxml.hvac_distributions[0].ducts[0].duct_buried_insulation_level = HPXML::DuctBuriedInsulationPartial - hpxml.hvac_distributions[0].ducts[1].duct_buried_insulation_level = HPXML::DuctBuriedInsulationDeep - hpxml.hvac_distributions[0].ducts[0].duct_insulation_r_value = nil - hpxml.hvac_distributions[0].ducts[1].duct_insulation_r_value = nil - hpxml.hvac_distributions[0].ducts[0].duct_effective_r_value = 1.23 - hpxml.hvac_distributions[0].ducts[1].duct_effective_r_value = 3.21 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - expected_supply_locations = ['attic - unvented'] - expected_return_locations = ['attic - unvented'] + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_distributions[0].conditioned_floor_area_served = 2700.0 + hpxml_bldg.hvac_distributions[0].number_of_return_registers = 2 + hpxml_bldg.hvac_distributions[0].ducts[0].duct_surface_area_multiplier = 0.5 + hpxml_bldg.hvac_distributions[0].ducts[1].duct_surface_area_multiplier = 1.5 + hpxml_bldg.hvac_distributions[0].ducts[0].duct_buried_insulation_level = HPXML::DuctBuriedInsulationPartial + hpxml_bldg.hvac_distributions[0].ducts[1].duct_buried_insulation_level = HPXML::DuctBuriedInsulationDeep + hpxml_bldg.hvac_distributions[0].ducts[0].duct_insulation_r_value = nil + hpxml_bldg.hvac_distributions[0].ducts[1].duct_insulation_r_value = nil + hpxml_bldg.hvac_distributions[0].ducts[0].duct_effective_r_value = 1.23 + hpxml_bldg.hvac_distributions[0].ducts[1].duct_effective_r_value = 3.21 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + expected_supply_locations = [HPXML::LocationAtticUnvented] + expected_return_locations = [HPXML::LocationAtticUnvented] expected_supply_areas = [150.0] expected_return_areas = [50.0] expected_supply_fracs = [1.0] @@ -1816,26 +1842,26 @@ def test_hvac_distribution expected_return_effective_rvalues = [3.21] expected_supply_buried_levels = [HPXML::DuctBuriedInsulationPartial] expected_return_buried_levels = [HPXML::DuctBuriedInsulationDeep] - expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, + expected_n_return_registers = default_hpxml_bldg.building_construction.number_of_conditioned_floors + _test_default_duct_values(default_hpxml_bldg, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_supply_fracs, expected_return_fracs, expected_n_return_registers, expected_supply_area_mults, expected_return_area_mults, expected_supply_buried_levels, expected_return_buried_levels, expected_supply_effective_rvalues, expected_return_effective_rvalues) # Test defaults w/ conditioned basement - hpxml.hvac_distributions[0].number_of_return_registers = nil - hpxml.hvac_distributions[0].ducts.each do |duct| + hpxml_bldg.hvac_distributions[0].number_of_return_registers = nil + hpxml_bldg.hvac_distributions[0].ducts.each do |duct| duct.duct_location = nil duct.duct_surface_area = nil duct.duct_surface_area_multiplier = nil duct.duct_buried_insulation_level = nil duct.duct_effective_r_value = nil end - hpxml.hvac_distributions[0].ducts[0].duct_insulation_r_value = 4 - hpxml.hvac_distributions[0].ducts[1].duct_insulation_r_value = 0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - expected_supply_locations = ['basement - conditioned'] - expected_return_locations = ['basement - conditioned'] + hpxml_bldg.hvac_distributions[0].ducts[0].duct_insulation_r_value = 4 + hpxml_bldg.hvac_distributions[0].ducts[1].duct_insulation_r_value = 0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + expected_supply_locations = [HPXML::LocationBasementConditioned] + expected_return_locations = [HPXML::LocationBasementConditioned] expected_supply_areas = [729.0] expected_return_areas = [270.0] expected_supply_fracs = [1.0] @@ -1846,25 +1872,25 @@ def test_hvac_distribution expected_return_buried_levels = [HPXML::DuctBuriedInsulationNone] expected_supply_effective_rvalues = [4.5] expected_return_effective_rvalues = [1.7] - expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, + expected_n_return_registers = default_hpxml_bldg.building_construction.number_of_conditioned_floors + _test_default_duct_values(default_hpxml_bldg, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_supply_fracs, expected_return_fracs, expected_n_return_registers, expected_supply_area_mults, expected_return_area_mults, expected_supply_buried_levels, expected_return_buried_levels, expected_supply_effective_rvalues, expected_return_effective_rvalues) # Test defaults w/ multiple foundations - hpxml = _create_hpxml('base-foundation-multiple.xml') - hpxml.hvac_distributions[0].conditioned_floor_area_served = 1350.0 - hpxml.hvac_distributions[0].number_of_return_registers = 1 - hpxml.hvac_distributions[0].ducts.each do |duct| + hpxml, hpxml_bldg = _create_hpxml('base-foundation-multiple.xml') + hpxml_bldg.hvac_distributions[0].conditioned_floor_area_served = 1350.0 + hpxml_bldg.hvac_distributions[0].number_of_return_registers = 1 + hpxml_bldg.hvac_distributions[0].ducts.each do |duct| duct.duct_location = nil duct.duct_surface_area = nil duct.duct_surface_area_multiplier = nil duct.duct_buried_insulation_level = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - expected_supply_locations = ['basement - unconditioned'] - expected_return_locations = ['basement - unconditioned'] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + expected_supply_locations = [HPXML::LocationBasementUnconditioned] + expected_return_locations = [HPXML::LocationBasementUnconditioned] expected_supply_areas = [364.5] expected_return_areas = [67.5] expected_supply_fracs = [1.0] @@ -1875,25 +1901,25 @@ def test_hvac_distribution expected_return_effective_rvalues = [1.7] expected_supply_buried_levels = [HPXML::DuctBuriedInsulationNone] expected_return_buried_levels = [HPXML::DuctBuriedInsulationNone] - expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, + expected_n_return_registers = default_hpxml_bldg.building_construction.number_of_conditioned_floors + _test_default_duct_values(default_hpxml_bldg, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_supply_fracs, expected_return_fracs, expected_n_return_registers, expected_supply_area_mults, expected_return_area_mults, expected_supply_buried_levels, expected_return_buried_levels, expected_supply_effective_rvalues, expected_return_effective_rvalues) # Test defaults w/ foundation exposed to ambient - hpxml = _create_hpxml('base-foundation-ambient.xml') - hpxml.hvac_distributions[0].conditioned_floor_area_served = 1350.0 - hpxml.hvac_distributions[0].number_of_return_registers = 1 - hpxml.hvac_distributions[0].ducts.each do |duct| + hpxml, hpxml_bldg = _create_hpxml('base-foundation-ambient.xml') + hpxml_bldg.hvac_distributions[0].conditioned_floor_area_served = 1350.0 + hpxml_bldg.hvac_distributions[0].number_of_return_registers = 1 + hpxml_bldg.hvac_distributions[0].ducts.each do |duct| duct.duct_location = nil duct.duct_surface_area = nil duct.duct_surface_area_multiplier = nil duct.duct_buried_insulation_level = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - expected_supply_locations = ['attic - unvented'] - expected_return_locations = ['attic - unvented'] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + expected_supply_locations = [HPXML::LocationAtticUnvented] + expected_return_locations = [HPXML::LocationAtticUnvented] expected_supply_areas = [364.5] expected_return_areas = [67.5] expected_supply_fracs = [1.0] @@ -1904,25 +1930,25 @@ def test_hvac_distribution expected_return_effective_rvalues = [1.7] expected_supply_buried_levels = [HPXML::DuctBuriedInsulationNone] expected_return_buried_levels = [HPXML::DuctBuriedInsulationNone] - expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, + expected_n_return_registers = default_hpxml_bldg.building_construction.number_of_conditioned_floors + _test_default_duct_values(default_hpxml_bldg, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_supply_fracs, expected_return_fracs, expected_n_return_registers, expected_supply_area_mults, expected_return_area_mults, expected_supply_buried_levels, expected_return_buried_levels, expected_supply_effective_rvalues, expected_return_effective_rvalues) # Test defaults w/ building/unit adjacent to other housing unit - hpxml = _create_hpxml('base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml') - hpxml.hvac_distributions[0].conditioned_floor_area_served = 900.0 - hpxml.hvac_distributions[0].number_of_return_registers = 1 - hpxml.hvac_distributions[0].ducts.each do |duct| + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml') + hpxml_bldg.hvac_distributions[0].conditioned_floor_area_served = 900.0 + hpxml_bldg.hvac_distributions[0].number_of_return_registers = 1 + hpxml_bldg.hvac_distributions[0].ducts.each do |duct| duct.duct_location = nil duct.duct_surface_area = nil duct.duct_surface_area_multiplier = nil duct.duct_buried_insulation_level = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - expected_supply_locations = ['living space'] - expected_return_locations = ['living space'] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + expected_supply_locations = [HPXML::LocationConditionedSpace] + expected_return_locations = [HPXML::LocationConditionedSpace] expected_supply_areas = [243.0] expected_return_areas = [45.0] expected_supply_fracs = [1.0] @@ -1933,25 +1959,25 @@ def test_hvac_distribution expected_return_effective_rvalues = [1.7] expected_supply_buried_levels = [HPXML::DuctBuriedInsulationNone] expected_return_buried_levels = [HPXML::DuctBuriedInsulationNone] - expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, + expected_n_return_registers = default_hpxml_bldg.building_construction.number_of_conditioned_floors + _test_default_duct_values(default_hpxml_bldg, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_supply_fracs, expected_return_fracs, expected_n_return_registers, expected_supply_area_mults, expected_return_area_mults, expected_supply_buried_levels, expected_return_buried_levels, expected_supply_effective_rvalues, expected_return_effective_rvalues) # Test defaults w/ 2-story building - hpxml = _create_hpxml('base-enclosure-2stories.xml') - hpxml.hvac_distributions[0].conditioned_floor_area_served = 4050.0 - hpxml.hvac_distributions[0].number_of_return_registers = 3 - hpxml.hvac_distributions[0].ducts.each do |duct| + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-2stories.xml') + hpxml_bldg.hvac_distributions[0].conditioned_floor_area_served = 4050.0 + hpxml_bldg.hvac_distributions[0].number_of_return_registers = 3 + hpxml_bldg.hvac_distributions[0].ducts.each do |duct| duct.duct_location = nil duct.duct_surface_area = nil duct.duct_surface_area_multiplier = nil duct.duct_buried_insulation_level = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - expected_supply_locations = ['basement - conditioned', 'basement - conditioned', 'living space', 'living space'] - expected_return_locations = ['basement - conditioned', 'basement - conditioned', 'living space', 'living space'] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + expected_supply_locations = [HPXML::LocationBasementConditioned, HPXML::LocationBasementConditioned, HPXML::LocationConditionedSpace, HPXML::LocationConditionedSpace] + expected_return_locations = [HPXML::LocationBasementConditioned, HPXML::LocationBasementConditioned, HPXML::LocationConditionedSpace, HPXML::LocationConditionedSpace] expected_supply_areas = [410.06, 410.06, 136.69, 136.69] expected_return_areas = [227.82, 227.82, 75.94, 75.94] expected_supply_fracs = [0.375, 0.375, 0.125, 0.125] @@ -1962,14 +1988,14 @@ def test_hvac_distribution expected_return_buried_levels = [HPXML::DuctBuriedInsulationNone] * 4 expected_supply_effective_rvalues = [4.5] * 4 expected_return_effective_rvalues = [1.7] * 4 - expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, + expected_n_return_registers = default_hpxml_bldg.building_construction.number_of_conditioned_floors + _test_default_duct_values(default_hpxml_bldg, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_supply_fracs, expected_return_fracs, expected_n_return_registers, expected_supply_area_mults, expected_return_area_mults, expected_supply_buried_levels, expected_return_buried_levels, expected_supply_effective_rvalues, expected_return_effective_rvalues) # Test defaults w/ 1-story building & multiple HVAC systems - hpxml = _create_hpxml('base-hvac-multiple.xml') - hpxml.hvac_distributions.each do |hvac_distribution| + hpxml, hpxml_bldg = _create_hpxml('base-hvac-multiple.xml') + hpxml_bldg.hvac_distributions.each do |hvac_distribution| next unless hvac_distribution.distribution_system_type == HPXML::HVACDistributionTypeAir hvac_distribution.conditioned_floor_area_served = 270.0 @@ -1981,29 +2007,29 @@ def test_hvac_distribution duct.duct_buried_insulation_level = nil end end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - expected_supply_locations = ['basement - conditioned', 'basement - conditioned'] * hpxml_default.hvac_distributions.size - expected_return_locations = ['basement - conditioned', 'basement - conditioned'] * hpxml_default.hvac_distributions.size - expected_supply_areas = [36.45, 36.45] * hpxml_default.hvac_distributions.size - expected_return_areas = [13.5, 13.5] * hpxml_default.hvac_distributions.size - expected_supply_fracs = [0.5, 0.5] * hpxml_default.hvac_distributions.size - expected_return_fracs = [0.5, 0.5] * hpxml_default.hvac_distributions.size - expected_supply_area_mults = [1.0, 1.0] * hpxml_default.hvac_distributions.size - expected_return_area_mults = [1.0, 1.0] * hpxml_default.hvac_distributions.size - expected_supply_buried_levels = [HPXML::DuctBuriedInsulationNone] * 2 * hpxml_default.hvac_distributions.size - expected_return_buried_levels = [HPXML::DuctBuriedInsulationNone] * 2 * hpxml_default.hvac_distributions.size - expected_supply_effective_rvalues = [6.74] * 2 * hpxml_default.hvac_distributions.size - expected_return_effective_rvalues = [4.86] * 2 * hpxml_default.hvac_distributions.size - expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + expected_supply_locations = [HPXML::LocationBasementConditioned, HPXML::LocationBasementConditioned] * default_hpxml_bldg.hvac_distributions.size + expected_return_locations = [HPXML::LocationBasementConditioned, HPXML::LocationBasementConditioned] * default_hpxml_bldg.hvac_distributions.size + expected_supply_areas = [36.45, 36.45] * default_hpxml_bldg.hvac_distributions.size + expected_return_areas = [13.5, 13.5] * default_hpxml_bldg.hvac_distributions.size + expected_supply_fracs = [0.5, 0.5] * default_hpxml_bldg.hvac_distributions.size + expected_return_fracs = [0.5, 0.5] * default_hpxml_bldg.hvac_distributions.size + expected_supply_area_mults = [1.0, 1.0] * default_hpxml_bldg.hvac_distributions.size + expected_return_area_mults = [1.0, 1.0] * default_hpxml_bldg.hvac_distributions.size + expected_supply_buried_levels = [HPXML::DuctBuriedInsulationNone] * 2 * default_hpxml_bldg.hvac_distributions.size + expected_return_buried_levels = [HPXML::DuctBuriedInsulationNone] * 2 * default_hpxml_bldg.hvac_distributions.size + expected_supply_effective_rvalues = [6.74] * 2 * default_hpxml_bldg.hvac_distributions.size + expected_return_effective_rvalues = [4.86] * 2 * default_hpxml_bldg.hvac_distributions.size + expected_n_return_registers = default_hpxml_bldg.building_construction.number_of_conditioned_floors + _test_default_duct_values(default_hpxml_bldg, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_supply_fracs, expected_return_fracs, expected_n_return_registers, expected_supply_area_mults, expected_return_area_mults, expected_supply_buried_levels, expected_return_buried_levels, expected_supply_effective_rvalues, expected_return_effective_rvalues) # Test defaults w/ 2-story building & multiple HVAC systems - hpxml = _create_hpxml('base-hvac-multiple.xml') - hpxml.building_construction.number_of_conditioned_floors_above_grade = 2 - hpxml.hvac_distributions.each do |hvac_distribution| + hpxml, hpxml_bldg = _create_hpxml('base-hvac-multiple.xml') + hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 2 + hpxml_bldg.hvac_distributions.each do |hvac_distribution| next unless hvac_distribution.distribution_system_type == HPXML::HVACDistributionTypeAir hvac_distribution.conditioned_floor_area_served = 270.0 @@ -2015,29 +2041,29 @@ def test_hvac_distribution duct.duct_buried_insulation_level = nil end end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - expected_supply_locations = ['basement - conditioned', 'basement - conditioned', 'living space', 'living space'] * hpxml_default.hvac_distributions.size - expected_return_locations = ['basement - conditioned', 'basement - conditioned', 'living space', 'living space'] * hpxml_default.hvac_distributions.size - expected_supply_areas = [27.34, 27.34, 9.11, 9.11] * hpxml_default.hvac_distributions.size - expected_return_areas = [10.125, 10.125, 3.375, 3.375] * hpxml_default.hvac_distributions.size - expected_supply_fracs = [0.375, 0.375, 0.125, 0.125] * hpxml_default.hvac_distributions.size - expected_return_fracs = [0.375, 0.375, 0.125, 0.125] * hpxml_default.hvac_distributions.size - expected_supply_area_mults = [1.0, 1.0, 1.0, 1.0] * hpxml_default.hvac_distributions.size - expected_return_area_mults = [1.0, 1.0, 1.0, 1.0] * hpxml_default.hvac_distributions.size - expected_supply_buried_levels = [HPXML::DuctBuriedInsulationNone] * 4 * hpxml_default.hvac_distributions.size - expected_return_buried_levels = [HPXML::DuctBuriedInsulationNone] * 4 * hpxml_default.hvac_distributions.size - expected_supply_effective_rvalues = [6.74] * 4 * hpxml_default.hvac_distributions.size - expected_return_effective_rvalues = [4.86] * 4 * hpxml_default.hvac_distributions.size - expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + expected_supply_locations = [HPXML::LocationBasementConditioned, HPXML::LocationBasementConditioned, HPXML::LocationConditionedSpace, HPXML::LocationConditionedSpace] * default_hpxml_bldg.hvac_distributions.size + expected_return_locations = [HPXML::LocationBasementConditioned, HPXML::LocationBasementConditioned, HPXML::LocationConditionedSpace, HPXML::LocationConditionedSpace] * default_hpxml_bldg.hvac_distributions.size + expected_supply_areas = [27.34, 27.34, 9.11, 9.11] * default_hpxml_bldg.hvac_distributions.size + expected_return_areas = [10.125, 10.125, 3.375, 3.375] * default_hpxml_bldg.hvac_distributions.size + expected_supply_fracs = [0.375, 0.375, 0.125, 0.125] * default_hpxml_bldg.hvac_distributions.size + expected_return_fracs = [0.375, 0.375, 0.125, 0.125] * default_hpxml_bldg.hvac_distributions.size + expected_supply_area_mults = [1.0, 1.0, 1.0, 1.0] * default_hpxml_bldg.hvac_distributions.size + expected_return_area_mults = [1.0, 1.0, 1.0, 1.0] * default_hpxml_bldg.hvac_distributions.size + expected_supply_buried_levels = [HPXML::DuctBuriedInsulationNone] * 4 * default_hpxml_bldg.hvac_distributions.size + expected_return_buried_levels = [HPXML::DuctBuriedInsulationNone] * 4 * default_hpxml_bldg.hvac_distributions.size + expected_supply_effective_rvalues = [6.74] * 4 * default_hpxml_bldg.hvac_distributions.size + expected_return_effective_rvalues = [4.86] * 4 * default_hpxml_bldg.hvac_distributions.size + expected_n_return_registers = default_hpxml_bldg.building_construction.number_of_conditioned_floors + _test_default_duct_values(default_hpxml_bldg, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_supply_fracs, expected_return_fracs, expected_n_return_registers, expected_supply_area_mults, expected_return_area_mults, expected_supply_buried_levels, expected_return_buried_levels, expected_supply_effective_rvalues, expected_return_effective_rvalues) # Test defaults w/ 2-story building & multiple HVAC systems & duct area fractions - hpxml = _create_hpxml('base-hvac-multiple.xml') - hpxml.building_construction.number_of_conditioned_floors_above_grade = 2 - hpxml.hvac_distributions.each do |hvac_distribution| + hpxml, hpxml_bldg = _create_hpxml('base-hvac-multiple.xml') + hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 2 + hpxml_bldg.hvac_distributions.each do |hvac_distribution| next unless hvac_distribution.distribution_system_type == HPXML::HVACDistributionTypeAir hvac_distribution.conditioned_floor_area_served = 270.0 @@ -2047,76 +2073,76 @@ def test_hvac_distribution hvac_distribution.ducts[2].duct_fraction_area = 0.5 hvac_distribution.ducts[3].duct_fraction_area = 0.5 end - hpxml.hvac_distributions.each do |hvac_distribution| + hpxml_bldg.hvac_distributions.each do |hvac_distribution| hvac_distribution.ducts.each do |duct| duct.duct_surface_area = nil duct.duct_surface_area_multiplier = nil duct.duct_buried_insulation_level = nil end end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - expected_supply_locations = ['attic - unvented', 'outside', 'attic - unvented', 'outside'] * hpxml_default.hvac_distributions.size - expected_return_locations = ['attic - unvented', 'outside', 'attic - unvented', 'outside'] * hpxml_default.hvac_distributions.size - expected_supply_areas = [54.675, 18.225] * hpxml_default.hvac_distributions.size - expected_return_areas = [13.5, 13.5] * hpxml_default.hvac_distributions.size - expected_supply_fracs = [0.75, 0.25] * hpxml_default.hvac_distributions.size - expected_return_fracs = [0.5, 0.5] * hpxml_default.hvac_distributions.size - expected_supply_area_mults = [1.0, 1.0] * hpxml_default.hvac_distributions.size - expected_return_area_mults = [1.0, 1.0] * hpxml_default.hvac_distributions.size - expected_supply_buried_levels = [HPXML::DuctBuriedInsulationNone] * 2 * hpxml_default.hvac_distributions.size - expected_return_buried_levels = [HPXML::DuctBuriedInsulationNone] * 2 * hpxml_default.hvac_distributions.size - expected_supply_effective_rvalues = [6.74] * 2 * hpxml_default.hvac_distributions.size - expected_return_effective_rvalues = [4.86] * 2 * hpxml_default.hvac_distributions.size - expected_n_return_registers = hpxml_default.building_construction.number_of_conditioned_floors - _test_default_duct_values(hpxml_default, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + expected_supply_locations = [HPXML::LocationAtticUnvented, HPXML::LocationOutside, HPXML::LocationAtticUnvented, HPXML::LocationOutside] * default_hpxml_bldg.hvac_distributions.size + expected_return_locations = [HPXML::LocationAtticUnvented, HPXML::LocationOutside, HPXML::LocationAtticUnvented, HPXML::LocationOutside] * default_hpxml_bldg.hvac_distributions.size + expected_supply_areas = [54.675, 18.225] * default_hpxml_bldg.hvac_distributions.size + expected_return_areas = [13.5, 13.5] * default_hpxml_bldg.hvac_distributions.size + expected_supply_fracs = [0.75, 0.25] * default_hpxml_bldg.hvac_distributions.size + expected_return_fracs = [0.5, 0.5] * default_hpxml_bldg.hvac_distributions.size + expected_supply_area_mults = [1.0, 1.0] * default_hpxml_bldg.hvac_distributions.size + expected_return_area_mults = [1.0, 1.0] * default_hpxml_bldg.hvac_distributions.size + expected_supply_buried_levels = [HPXML::DuctBuriedInsulationNone] * 2 * default_hpxml_bldg.hvac_distributions.size + expected_return_buried_levels = [HPXML::DuctBuriedInsulationNone] * 2 * default_hpxml_bldg.hvac_distributions.size + expected_supply_effective_rvalues = [6.74] * 2 * default_hpxml_bldg.hvac_distributions.size + expected_return_effective_rvalues = [4.86] * 2 * default_hpxml_bldg.hvac_distributions.size + expected_n_return_registers = default_hpxml_bldg.building_construction.number_of_conditioned_floors + _test_default_duct_values(default_hpxml_bldg, expected_supply_locations, expected_return_locations, expected_supply_areas, expected_return_areas, expected_supply_fracs, expected_return_fracs, expected_n_return_registers, expected_supply_area_mults, expected_return_area_mults, expected_supply_buried_levels, expected_return_buried_levels, expected_supply_effective_rvalues, expected_return_effective_rvalues) end def test_mech_ventilation_fans # Test inputs not overridden by defaults w/ shared exhaust system - hpxml = _create_hpxml('base-bldgtype-attached.xml') - hpxml.ventilation_fans.add(id: 'MechanicalVentilation', - fan_type: HPXML::MechVentTypeExhaust, - used_for_whole_building_ventilation: true, - is_shared_system: true, - fraction_recirculation: 0.0, - in_unit_flow_rate: 10.0, - hours_in_operation: 22.0, - fan_power: 12.5, - delivered_ventilation: 89) - vent_fan = hpxml.ventilation_fans[0] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, true, 22.0, 12.5, 89) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') + hpxml_bldg.ventilation_fans.add(id: 'MechanicalVentilation', + fan_type: HPXML::MechVentTypeExhaust, + used_for_whole_building_ventilation: true, + is_shared_system: true, + fraction_recirculation: 0.0, + in_unit_flow_rate: 10.0, + hours_in_operation: 22.0, + fan_power: 12.5, + delivered_ventilation: 89) + vent_fan = hpxml_bldg.ventilation_fans[0] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, true, 22.0, 12.5, 89) # Test inputs w/ TestedFlowRate vent_fan.tested_flow_rate = 79 vent_fan.rated_flow_rate = nil vent_fan.calculated_flow_rate = nil vent_fan.delivered_ventilation = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, true, 22.0, 12.5, 79) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, true, 22.0, 12.5, 79) # Test inputs w/ RatedFlowRate vent_fan.tested_flow_rate = nil vent_fan.rated_flow_rate = 69 vent_fan.calculated_flow_rate = nil vent_fan.delivered_ventilation = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, true, 22.0, 12.5, 69) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, true, 22.0, 12.5, 69) # Test inputs w/ CalculatedFlowRate vent_fan.tested_flow_rate = nil vent_fan.rated_flow_rate = nil vent_fan.calculated_flow_rate = 59 vent_fan.delivered_ventilation = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, true, 22.0, 12.5, 59) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, true, 22.0, 12.5, 59) # Test defaults vent_fan.rated_flow_rate = nil @@ -2131,107 +2157,107 @@ def test_mech_ventilation_fans vent_fan.rated_flow_rate = nil vent_fan.calculated_flow_rate = nil vent_fan.delivered_ventilation = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 24.0, 27.1, 77.3) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.1, 77.3) # Test defaults w/ SFA building, compartmentalization test - hpxml = _create_hpxml('base-bldgtype-attached.xml') - hpxml.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitTotal - hpxml.ventilation_fans.add(id: 'MechanicalVentilation', - fan_type: HPXML::MechVentTypeExhaust, - used_for_whole_building_ventilation: true) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 24.0, 27.4, 78.4) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') + hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitTotal + hpxml_bldg.ventilation_fans.add(id: 'MechanicalVentilation', + fan_type: HPXML::MechVentTypeExhaust, + used_for_whole_building_ventilation: true) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.4, 78.4) # Test defaults w/ SFA building, guarded test - hpxml.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 24.0, 27.2, 77.3) + hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.2, 77.3) # Test defaults w/ MF building, compartmentalization test - hpxml = _create_hpxml('base-bldgtype-multifamily.xml') - hpxml.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitTotal - hpxml.ventilation_fans.add(id: 'MechanicalVentilation', - fan_type: HPXML::MechVentTypeExhaust, - used_for_whole_building_ventilation: true) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 24.0, 19.8, 56.5) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit.xml') + hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitTotal + hpxml_bldg.ventilation_fans.add(id: 'MechanicalVentilation', + fan_type: HPXML::MechVentTypeExhaust, + used_for_whole_building_ventilation: true) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.8, 56.5) # Test defaults w/ MF building, guarded test - hpxml.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 24.0, 19.2, 54.9) + hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 19.2, 54.9) # Test defaults w/ nACH infiltration - hpxml = _create_hpxml('base-enclosure-infil-natural-ach.xml') - hpxml.ventilation_fans.add(id: 'MechanicalVentilation', - fan_type: HPXML::MechVentTypeExhaust, - used_for_whole_building_ventilation: true) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 24.0, 21.6, 61.7) + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-infil-natural-ach.xml') + hpxml_bldg.ventilation_fans.add(id: 'MechanicalVentilation', + fan_type: HPXML::MechVentTypeExhaust, + used_for_whole_building_ventilation: true) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 21.6, 61.7) # Test defaults w/ CFM50 infiltration - hpxml = _create_hpxml('base-enclosure-infil-cfm50.xml') - hpxml.ventilation_fans.add(id: 'MechanicalVentilation', - fan_type: HPXML::MechVentTypeExhaust, - used_for_whole_building_ventilation: true) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 24.0, 34.9, 99.6) + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-infil-cfm50.xml') + hpxml_bldg.ventilation_fans.add(id: 'MechanicalVentilation', + fan_type: HPXML::MechVentTypeExhaust, + used_for_whole_building_ventilation: true) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 34.9, 99.6) # Test defaults w/ balanced system - hpxml = _create_hpxml('base.xml') - hpxml.ventilation_fans.add(id: 'MechanicalVentilation', - fan_type: HPXML::MechVentTypeBalanced, - used_for_whole_building_ventilation: true) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 24.0, 52.8, 75.4) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.ventilation_fans.add(id: 'MechanicalVentilation', + fan_type: HPXML::MechVentTypeBalanced, + used_for_whole_building_ventilation: true) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 52.8, 75.4) # Test defaults w/ cathedral ceiling - hpxml = _create_hpxml('base-atticroof-cathedral.xml') - hpxml.ventilation_fans.add(id: 'MechanicalVentilation', - fan_type: HPXML::MechVentTypeExhaust, - used_for_whole_building_ventilation: true) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 24.0, 27.0, 77.1) + hpxml, hpxml_bldg = _create_hpxml('base-atticroof-cathedral.xml') + hpxml_bldg.ventilation_fans.add(id: 'MechanicalVentilation', + fan_type: HPXML::MechVentTypeExhaust, + used_for_whole_building_ventilation: true) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 27.0, 77.1) # Test inputs not overridden by defaults w/ CFIS - hpxml = _create_hpxml('base-mechvent-cfis.xml') - vent_fan = hpxml.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } + hpxml, hpxml_bldg = _create_hpxml('base-mechvent-cfis.xml') + vent_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } vent_fan.is_shared_system = false vent_fan.hours_in_operation = 12.0 vent_fan.fan_power = 12.5 vent_fan.rated_flow_rate = 222.0 vent_fan.cfis_vent_mode_airflow_fraction = 0.5 vent_fan.cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplementalFan - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - tested_flow_rate: 79.0, - fan_power: 9.0, - fan_type: HPXML::MechVentTypeExhaust, - is_shared_system: false, - used_for_whole_building_ventilation: true) - suppl_vent_fan = hpxml.ventilation_fans[-1] + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + tested_flow_rate: 79.0, + fan_power: 9.0, + fan_type: HPXML::MechVentTypeExhaust, + is_shared_system: false, + used_for_whole_building_ventilation: true) + suppl_vent_fan = hpxml_bldg.ventilation_fans[-1] vent_fan.cfis_supplemental_fan_idref = suppl_vent_fan.id - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 12.0, 12.5, 222.0, 0.5, HPXML::CFISModeSupplementalFan) - _test_default_mech_vent_suppl_values(hpxml_default, false, nil, 9.0, 79.0) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, false, 12.0, 12.5, 222.0, 0.5, HPXML::CFISModeSupplementalFan) + _test_default_mech_vent_suppl_values(default_hpxml_bldg, false, nil, 9.0, 79.0) # Test defaults w/ CFIS supplemental fan suppl_vent_fan.tested_flow_rate = nil suppl_vent_fan.is_shared_system = nil suppl_vent_fan.fan_power = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_suppl_values(hpxml_default, false, nil, 35.0, 100.0) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_suppl_values(default_hpxml_bldg, false, nil, 35.0, 100.0) # Test defaults w/ CFIS vent_fan.is_shared_system = nil @@ -2240,48 +2266,48 @@ def test_mech_ventilation_fans vent_fan.rated_flow_rate = nil vent_fan.cfis_vent_mode_airflow_fraction = nil vent_fan.cfis_addtl_runtime_operating_mode = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 8.0, 149.4, 298.7, 1.0, HPXML::CFISModeAirHandler) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, false, 8.0, 149.4, 298.7, 1.0, HPXML::CFISModeAirHandler) # Test inputs not overridden by defaults w/ ERV - hpxml = _create_hpxml('base-mechvent-erv.xml') - vent_fan = hpxml.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } + hpxml, hpxml_bldg = _create_hpxml('base-mechvent-erv.xml') + vent_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_whole_building_ventilation } vent_fan.is_shared_system = false vent_fan.hours_in_operation = 20.0 vent_fan.fan_power = 45.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 20.0, 45.0, 110) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, false, 20.0, 45.0, 110) # Test defaults w/ ERV vent_fan.is_shared_system = nil vent_fan.hours_in_operation = nil vent_fan.fan_power = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 24.0, 110.0, 110) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_mech_vent_values(default_hpxml_bldg, false, 24.0, 110.0, 110) end def test_local_ventilation_fans # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-mechvent-bath-kitchen-fans.xml') - kitchen_fan = hpxml.ventilation_fans.find { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationKitchen } + hpxml, hpxml_bldg = _create_hpxml('base-mechvent-bath-kitchen-fans.xml') + kitchen_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationKitchen } kitchen_fan.rated_flow_rate = 300 kitchen_fan.fan_power = 20 kitchen_fan.start_hour = 12 kitchen_fan.count = 2 kitchen_fan.hours_in_operation = 2 - bath_fan = hpxml.ventilation_fans.find { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationBath } + bath_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationBath } bath_fan.rated_flow_rate = 80 bath_fan.fan_power = 33 bath_fan.start_hour = 6 bath_fan.count = 3 bath_fan.hours_in_operation = 3 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_kitchen_fan_values(hpxml_default, 2, 300, 2, 20, 12) - _test_default_bath_fan_values(hpxml_default, 3, 80, 3, 33, 6) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_kitchen_fan_values(default_hpxml_bldg, 2, 300, 2, 20, 12) + _test_default_bath_fan_values(default_hpxml_bldg, 3, 80, 3, 33, 6) # Test defaults kitchen_fan.rated_flow_rate = nil @@ -2294,51 +2320,51 @@ def test_local_ventilation_fans bath_fan.start_hour = nil bath_fan.count = nil bath_fan.hours_in_operation = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_kitchen_fan_values(hpxml_default, 1, 100, 1, 30, 18) - _test_default_bath_fan_values(hpxml_default, 2, 50, 1, 15, 7) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_kitchen_fan_values(default_hpxml_bldg, 1, 100, 1, 30, 18) + _test_default_bath_fan_values(default_hpxml_bldg, 2, 50, 1, 15, 7) end def test_whole_house_fan # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-mechvent-whole-house-fan.xml') - whf = hpxml.ventilation_fans.find { |f| f.used_for_seasonal_cooling_load_reduction } + hpxml, hpxml_bldg = _create_hpxml('base-mechvent-whole-house-fan.xml') + whf = hpxml_bldg.ventilation_fans.find { |f| f.used_for_seasonal_cooling_load_reduction } whf.rated_flow_rate = 3000 whf.fan_power = 321 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_whole_house_fan_values(hpxml_default, 3000, 321) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_whole_house_fan_values(default_hpxml_bldg, 3000, 321) # Test defaults whf.rated_flow_rate = nil whf.fan_power = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_whole_house_fan_values(hpxml_default, 5400, 540) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_whole_house_fan_values(default_hpxml_bldg, 5400, 540) end def test_storage_water_heaters # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-bldgtype-attached.xml') - hpxml.water_heating_systems.each do |wh| + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') + hpxml_bldg.water_heating_systems.each do |wh| wh.is_shared_system = true wh.number_of_units_served = 2 wh.heating_capacity = 15000.0 wh.tank_volume = 40.0 wh.recovery_efficiency = 0.95 - wh.location = HPXML::LocationLivingSpace + wh.location = HPXML::LocationConditionedSpace wh.temperature = 111 wh.energy_factor = 0.90 wh.tank_model_type = HPXML::WaterHeaterTankModelTypeStratified end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_storage_water_heater_values(hpxml_default, - [true, 15000.0, 40.0, 0.95, HPXML::LocationLivingSpace, 111, 0.90, HPXML::WaterHeaterTankModelTypeStratified]) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_storage_water_heater_values(default_hpxml_bldg, + [true, 15000.0, 40.0, 0.95, HPXML::LocationConditionedSpace, 111, 0.90, HPXML::WaterHeaterTankModelTypeStratified]) # Test defaults w/ 3-bedroom house & electric storage water heater - hpxml.water_heating_systems.each do |wh| + hpxml_bldg.water_heating_systems.each do |wh| wh.is_shared_system = nil wh.heating_capacity = nil wh.tank_volume = nil @@ -2347,14 +2373,14 @@ def test_storage_water_heaters wh.temperature = nil wh.tank_model_type = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_storage_water_heater_values(hpxml_default, + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_storage_water_heater_values(default_hpxml_bldg, [false, 18766.7, 50.0, 0.98, HPXML::LocationBasementConditioned, 125, 0.9, HPXML::WaterHeaterTankModelTypeMixed]) # Test defaults w/ 5-bedroom house & electric storage water heater - hpxml = _create_hpxml('base-enclosure-beds-5.xml') - hpxml.water_heating_systems.each do |wh| + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-beds-5.xml') + hpxml_bldg.water_heating_systems.each do |wh| wh.is_shared_system = nil wh.heating_capacity = nil wh.tank_volume = nil @@ -2363,14 +2389,14 @@ def test_storage_water_heaters wh.temperature = nil wh.tank_model_type = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_storage_water_heater_values(hpxml_default, + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_storage_water_heater_values(default_hpxml_bldg, [false, 18766.7, 66.0, 0.98, HPXML::LocationBasementConditioned, 125, 0.95, HPXML::WaterHeaterTankModelTypeMixed]) # Test defaults w/ 3-bedroom house & 2 storage water heaters (1 electric and 1 natural gas) - hpxml = _create_hpxml('base-dhw-multiple.xml') - hpxml.water_heating_systems.each do |wh| + hpxml, hpxml_bldg = _create_hpxml('base-dhw-multiple.xml') + hpxml_bldg.water_heating_systems.each do |wh| wh.is_shared_system = nil next unless wh.water_heater_type == HPXML::WaterHeaterTypeStorage @@ -2381,257 +2407,264 @@ def test_storage_water_heaters wh.temperature = nil wh.tank_model_type = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_storage_water_heater_values(hpxml_default, + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_storage_water_heater_values(default_hpxml_bldg, [false, 15354.6, 50.0, 0.98, HPXML::LocationBasementConditioned, 125, 0.95, HPXML::WaterHeaterTankModelTypeMixed], [false, 36000.0, 40.0, 0.757, HPXML::LocationBasementConditioned, 125, 0.59, HPXML::WaterHeaterTankModelTypeMixed]) # Test inputs not overridden by defaults w/ UEF - hpxml = _create_hpxml('base-dhw-tank-gas-uef.xml') - hpxml.water_heating_systems.each do |wh| + hpxml, hpxml_bldg = _create_hpxml('base-dhw-tank-gas-uef.xml') + hpxml_bldg.water_heating_systems.each do |wh| wh.first_hour_rating = nil wh.usage_bin = HPXML::WaterHeaterUsageBinVerySmall wh.tank_model_type = HPXML::WaterHeaterTankModelTypeStratified end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - assert_nil(hpxml_default.water_heating_systems[0].first_hour_rating) - assert_equal(HPXML::WaterHeaterUsageBinVerySmall, hpxml_default.water_heating_systems[0].usage_bin) - assert_equal(HPXML::WaterHeaterTankModelTypeStratified, hpxml_default.water_heating_systems[0].tank_model_type) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + assert_nil(default_hpxml_bldg.water_heating_systems[0].first_hour_rating) + assert_equal(HPXML::WaterHeaterUsageBinVerySmall, default_hpxml_bldg.water_heating_systems[0].usage_bin) + assert_equal(HPXML::WaterHeaterTankModelTypeStratified, default_hpxml_bldg.water_heating_systems[0].tank_model_type) # Test defaults w/ UEF & FHR - hpxml.water_heating_systems.each do |wh| + hpxml_bldg.water_heating_systems.each do |wh| wh.first_hour_rating = 40 wh.usage_bin = nil wh.tank_model_type = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - assert_equal(40, hpxml_default.water_heating_systems[0].first_hour_rating) - assert_equal(HPXML::WaterHeaterUsageBinLow, hpxml_default.water_heating_systems[0].usage_bin) - assert_equal(HPXML::WaterHeaterTankModelTypeMixed, hpxml_default.water_heating_systems[0].tank_model_type) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + assert_equal(40, default_hpxml_bldg.water_heating_systems[0].first_hour_rating) + assert_equal(HPXML::WaterHeaterUsageBinLow, default_hpxml_bldg.water_heating_systems[0].usage_bin) + assert_equal(HPXML::WaterHeaterTankModelTypeMixed, default_hpxml_bldg.water_heating_systems[0].tank_model_type) # Test defaults w/ UEF & no FHR - hpxml.water_heating_systems.each do |wh| + hpxml_bldg.water_heating_systems.each do |wh| wh.first_hour_rating = nil wh.usage_bin = nil wh.tank_model_type = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - assert_nil(hpxml_default.water_heating_systems[0].first_hour_rating) - assert_equal(HPXML::WaterHeaterUsageBinMedium, hpxml_default.water_heating_systems[0].usage_bin) - assert_equal(HPXML::WaterHeaterTankModelTypeMixed, hpxml_default.water_heating_systems[0].tank_model_type) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + assert_nil(default_hpxml_bldg.water_heating_systems[0].first_hour_rating) + assert_equal(HPXML::WaterHeaterUsageBinMedium, default_hpxml_bldg.water_heating_systems[0].usage_bin) + assert_equal(HPXML::WaterHeaterTankModelTypeMixed, default_hpxml_bldg.water_heating_systems[0].tank_model_type) end def test_tankless_water_heaters # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-dhw-tankless-gas.xml') - hpxml.water_heating_systems[0].performance_adjustment = 0.88 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_tankless_water_heater_values(hpxml_default, [0.88]) + hpxml, hpxml_bldg = _create_hpxml('base-dhw-tankless-gas.xml') + hpxml_bldg.water_heating_systems[0].performance_adjustment = 0.88 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_tankless_water_heater_values(default_hpxml_bldg, [0.88]) # Test defaults w/ EF - hpxml.water_heating_systems[0].performance_adjustment = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_tankless_water_heater_values(hpxml_default, [0.92]) + hpxml_bldg.water_heating_systems[0].performance_adjustment = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_tankless_water_heater_values(default_hpxml_bldg, [0.92]) # Test defaults w/ UEF - hpxml.water_heating_systems[0].energy_factor = nil - hpxml.water_heating_systems[0].uniform_energy_factor = 0.93 - hpxml.water_heating_systems[0].first_hour_rating = 5.7 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_tankless_water_heater_values(hpxml_default, [0.94]) + hpxml_bldg.water_heating_systems[0].energy_factor = nil + hpxml_bldg.water_heating_systems[0].uniform_energy_factor = 0.93 + hpxml_bldg.water_heating_systems[0].first_hour_rating = 5.7 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_tankless_water_heater_values(default_hpxml_bldg, [0.94]) end def test_heat_pump_water_heaters # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-dhw-tank-heat-pump.xml') - hpxml.water_heating_systems[0].operating_mode = HPXML::WaterHeaterOperatingModeHeatPumpOnly - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_heat_pump_water_heater_values(hpxml_default, [HPXML::WaterHeaterOperatingModeHeatPumpOnly]) + hpxml, hpxml_bldg = _create_hpxml('base-dhw-tank-heat-pump.xml') + hpxml_bldg.water_heating_systems[0].operating_mode = HPXML::WaterHeaterOperatingModeHeatPumpOnly + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_heat_pump_water_heater_values(default_hpxml_bldg, [HPXML::WaterHeaterOperatingModeHeatPumpOnly]) # Test defaults - hpxml.water_heating_systems[0].operating_mode = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_heat_pump_water_heater_values(hpxml_default, [HPXML::WaterHeaterOperatingModeHybridAuto]) + hpxml_bldg.water_heating_systems[0].operating_mode = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_heat_pump_water_heater_values(default_hpxml_bldg, [HPXML::WaterHeaterOperatingModeHybridAuto]) end def test_indirect_water_heaters # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-dhw-indirect.xml') - hpxml.water_heating_systems[0].standby_loss_value = 0.99 - hpxml.water_heating_systems[0].standby_loss_units = HPXML::UnitsDegFPerHour - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_indirect_water_heater_values(hpxml_default, [HPXML::UnitsDegFPerHour, 0.99]) + hpxml, hpxml_bldg = _create_hpxml('base-dhw-indirect.xml') + hpxml_bldg.water_heating_systems[0].standby_loss_value = 0.99 + hpxml_bldg.water_heating_systems[0].standby_loss_units = HPXML::UnitsDegFPerHour + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_indirect_water_heater_values(default_hpxml_bldg, [HPXML::UnitsDegFPerHour, 0.99]) # Test defaults - hpxml.water_heating_systems[0].standby_loss_value = nil - hpxml.water_heating_systems[0].standby_loss_units = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_indirect_water_heater_values(hpxml_default, [HPXML::UnitsDegFPerHour, 0.843]) + hpxml_bldg.water_heating_systems[0].standby_loss_value = nil + hpxml_bldg.water_heating_systems[0].standby_loss_units = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_indirect_water_heater_values(default_hpxml_bldg, [HPXML::UnitsDegFPerHour, 0.843]) end def test_hot_water_distribution # Test inputs not overridden by defaults -- standard - hpxml = _create_hpxml('base.xml') - hpxml.hot_water_distributions[0].pipe_r_value = 2.5 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_standard_distribution_values(hpxml_default.hot_water_distributions[0], 50.0, 2.5) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hot_water_distributions[0].pipe_r_value = 2.5 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_standard_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 50.0, 2.5) # Test inputs not overridden by defaults -- recirculation - hpxml = _create_hpxml('base-dhw-recirc-demand.xml') - hpxml.hot_water_distributions[0].recirculation_pump_power = 65.0 - hpxml.hot_water_distributions[0].pipe_r_value = 2.5 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_recirc_distribution_values(hpxml_default.hot_water_distributions[0], 50.0, 50.0, 65.0, 2.5) + hpxml, hpxml_bldg = _create_hpxml('base-dhw-recirc-demand.xml') + hpxml_bldg.hot_water_distributions[0].recirculation_pump_power = 65.0 + hpxml_bldg.hot_water_distributions[0].pipe_r_value = 2.5 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_recirc_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 50.0, 50.0, 65.0, 2.5) # Test inputs not overridden by defaults -- shared recirculation - hpxml = _create_hpxml('base-bldgtype-multifamily-shared-water-heater-recirc.xml') - hpxml.hot_water_distributions[0].shared_recirculation_pump_power = 333.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_shared_recirc_distribution_values(hpxml_default.hot_water_distributions[0], 333.0) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-water-heater-recirc.xml') + hpxml_bldg.hot_water_distributions[0].shared_recirculation_pump_power = 333.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_shared_recirc_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 333.0) # Test defaults w/ conditioned basement - hpxml = _create_hpxml('base.xml') - hpxml.hot_water_distributions[0].standard_piping_length = nil - hpxml.hot_water_distributions[0].pipe_r_value = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_standard_distribution_values(hpxml_default.hot_water_distributions[0], 93.48, 0.0) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hot_water_distributions[0].standard_piping_length = nil + hpxml_bldg.hot_water_distributions[0].pipe_r_value = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_standard_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 93.48, 0.0) # Test defaults w/ unconditioned basement - hpxml = _create_hpxml('base-foundation-unconditioned-basement.xml') - hpxml.hot_water_distributions[0].standard_piping_length = nil - hpxml.hot_water_distributions[0].pipe_r_value = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_standard_distribution_values(hpxml_default.hot_water_distributions[0], 88.48, 0.0) + hpxml, hpxml_bldg = _create_hpxml('base-foundation-unconditioned-basement.xml') + hpxml_bldg.hot_water_distributions[0].standard_piping_length = nil + hpxml_bldg.hot_water_distributions[0].pipe_r_value = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_standard_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 88.48, 0.0) # Test defaults w/ 2-story building - hpxml = _create_hpxml('base-enclosure-2stories.xml') - hpxml.hot_water_distributions[0].standard_piping_length = nil - hpxml.hot_water_distributions[0].pipe_r_value = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_standard_distribution_values(hpxml_default.hot_water_distributions[0], 103.48, 0.0) + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-2stories.xml') + hpxml_bldg.hot_water_distributions[0].standard_piping_length = nil + hpxml_bldg.hot_water_distributions[0].pipe_r_value = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_standard_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 103.48, 0.0) # Test defaults w/ recirculation & conditioned basement - hpxml = _create_hpxml('base-dhw-recirc-demand.xml') - hpxml.hot_water_distributions[0].recirculation_piping_length = nil - hpxml.hot_water_distributions[0].recirculation_branch_piping_length = nil - hpxml.hot_water_distributions[0].recirculation_pump_power = nil - hpxml.hot_water_distributions[0].pipe_r_value = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_recirc_distribution_values(hpxml_default.hot_water_distributions[0], 166.96, 10.0, 50.0, 0.0) + hpxml, hpxml_bldg = _create_hpxml('base-dhw-recirc-demand.xml') + hpxml_bldg.hot_water_distributions[0].recirculation_piping_length = nil + hpxml_bldg.hot_water_distributions[0].recirculation_branch_piping_length = nil + hpxml_bldg.hot_water_distributions[0].recirculation_pump_power = nil + hpxml_bldg.hot_water_distributions[0].pipe_r_value = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_recirc_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 166.96, 10.0, 50.0, 0.0) # Test defaults w/ recirculation & unconditioned basement - hpxml = _create_hpxml('base-foundation-unconditioned-basement.xml') - hpxml.hot_water_distributions.clear - hpxml.hot_water_distributions.add(id: 'HotWaterDistribution', - system_type: HPXML::DHWDistTypeRecirc, - recirculation_control_type: HPXML::DHWRecirControlTypeSensor) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_recirc_distribution_values(hpxml_default.hot_water_distributions[0], 156.96, 10.0, 50.0, 0.0) + hpxml, hpxml_bldg = _create_hpxml('base-foundation-unconditioned-basement.xml') + hpxml_bldg.hot_water_distributions.clear + hpxml_bldg.hot_water_distributions.add(id: 'HotWaterDistribution', + system_type: HPXML::DHWDistTypeRecirc, + recirculation_control_type: HPXML::DHWRecirControlTypeSensor) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_recirc_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 156.96, 10.0, 50.0, 0.0) # Test defaults w/ recirculation & 2-story building - hpxml = _create_hpxml('base-enclosure-2stories.xml') - hpxml.hot_water_distributions.clear - hpxml.hot_water_distributions.add(id: 'HotWaterDistribution', - system_type: HPXML::DHWDistTypeRecirc, - recirculation_control_type: HPXML::DHWRecirControlTypeSensor) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_recirc_distribution_values(hpxml_default.hot_water_distributions[0], 186.96, 10.0, 50.0, 0.0) + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-2stories.xml') + hpxml_bldg.hot_water_distributions.clear + hpxml_bldg.hot_water_distributions.add(id: 'HotWaterDistribution', + system_type: HPXML::DHWDistTypeRecirc, + recirculation_control_type: HPXML::DHWRecirControlTypeSensor) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_recirc_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 186.96, 10.0, 50.0, 0.0) # Test defaults w/ shared recirculation - hpxml = _create_hpxml('base-bldgtype-multifamily-shared-water-heater-recirc.xml') - hpxml.hot_water_distributions[0].shared_recirculation_pump_power = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_shared_recirc_distribution_values(hpxml_default.hot_water_distributions[0], 220.0) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-water-heater-recirc.xml') + hpxml_bldg.hot_water_distributions[0].shared_recirculation_pump_power = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_shared_recirc_distribution_values(default_hpxml_bldg.hot_water_distributions[0], 220.0) end def test_water_fixtures # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.water_heating.water_fixtures_usage_multiplier = 2.0 - hpxml.water_heating.water_fixtures_weekday_fractions = ConstantDaySchedule - hpxml.water_heating.water_fixtures_weekend_fractions = ConstantDaySchedule - hpxml.water_heating.water_fixtures_monthly_multipliers = ConstantMonthSchedule - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_water_fixture_values(hpxml_default, 2.0, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.water_heating.water_fixtures_usage_multiplier = 2.0 + hpxml_bldg.water_heating.water_fixtures_weekday_fractions = ConstantDaySchedule + hpxml_bldg.water_heating.water_fixtures_weekend_fractions = ConstantDaySchedule + hpxml_bldg.water_heating.water_fixtures_monthly_multipliers = ConstantMonthSchedule + hpxml_bldg.water_fixtures[0].low_flow = false + hpxml_bldg.water_fixtures[0].count = 9 + hpxml_bldg.water_fixtures[1].low_flow = nil + hpxml_bldg.water_fixtures[1].flow_rate = 99 + hpxml_bldg.water_fixtures[1].count = 8 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_water_fixture_values(default_hpxml_bldg, 2.0, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule, false, false) # Test defaults - hpxml.water_heating.water_fixtures_usage_multiplier = nil - hpxml.water_heating.water_fixtures_weekday_fractions = nil - hpxml.water_heating.water_fixtures_weekend_fractions = nil - hpxml.water_heating.water_fixtures_monthly_multipliers = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_water_fixture_values(hpxml_default, 1.0, Schedule.FixturesWeekdayFractions, Schedule.FixturesWeekendFractions, Schedule.FixturesMonthlyMultipliers) + hpxml_bldg.water_heating.water_fixtures_usage_multiplier = nil + hpxml_bldg.water_heating.water_fixtures_weekday_fractions = nil + hpxml_bldg.water_heating.water_fixtures_weekend_fractions = nil + hpxml_bldg.water_heating.water_fixtures_monthly_multipliers = nil + hpxml_bldg.water_fixtures[0].low_flow = true + hpxml_bldg.water_fixtures[1].flow_rate = 2 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_water_fixture_values(default_hpxml_bldg, 1.0, Schedule.FixturesWeekdayFractions, Schedule.FixturesWeekendFractions, Schedule.FixturesMonthlyMultipliers, true, true) end def test_solar_thermal_systems # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-dhw-solar-direct-flat-plate.xml') - hpxml.solar_thermal_systems[0].storage_volume = 55.0 - hpxml.solar_thermal_systems[0].collector_azimuth = 123 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_solar_thermal_values(hpxml_default.solar_thermal_systems[0], 55.0, 123) + hpxml, hpxml_bldg = _create_hpxml('base-dhw-solar-direct-flat-plate.xml') + hpxml_bldg.solar_thermal_systems[0].storage_volume = 55.0 + hpxml_bldg.solar_thermal_systems[0].collector_azimuth = 123 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_solar_thermal_values(default_hpxml_bldg.solar_thermal_systems[0], 55.0, 123) # Test defaults w/ collector area of 40 sqft - hpxml.solar_thermal_systems[0].storage_volume = nil - hpxml.solar_thermal_systems[0].collector_orientation = HPXML::OrientationNorth - hpxml.solar_thermal_systems[0].collector_azimuth = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_solar_thermal_values(hpxml_default.solar_thermal_systems[0], 60.0, 0) + hpxml_bldg.solar_thermal_systems[0].storage_volume = nil + hpxml_bldg.solar_thermal_systems[0].collector_orientation = HPXML::OrientationNorth + hpxml_bldg.solar_thermal_systems[0].collector_azimuth = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_solar_thermal_values(default_hpxml_bldg.solar_thermal_systems[0], 60.0, 0) # Test defaults w/ collector area of 100 sqft - hpxml.solar_thermal_systems[0].collector_area = 100.0 - hpxml.solar_thermal_systems[0].storage_volume = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_solar_thermal_values(hpxml_default.solar_thermal_systems[0], 150.0, 0) + hpxml_bldg.solar_thermal_systems[0].collector_area = 100.0 + hpxml_bldg.solar_thermal_systems[0].storage_volume = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_solar_thermal_values(default_hpxml_bldg.solar_thermal_systems[0], 150.0, 0) end def test_pv_systems # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-bldgtype-attached.xml') - hpxml.pv_systems.add(id: 'PVSystem', - is_shared_system: true, - number_of_bedrooms_served: 20, - system_losses_fraction: 0.20, - location: HPXML::LocationGround, - tracking: HPXML::PVTrackingType1Axis, - module_type: HPXML::PVModuleTypePremium, - array_azimuth: 123, - array_tilt: 0, - max_power_output: 1000, - inverter_idref: 'Inverter') - hpxml.inverters.add(id: 'Inverter', - inverter_efficiency: 0.90) - pv = hpxml.pv_systems[0] - inv = hpxml.inverters[0] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_pv_system_values(hpxml_default, 0.90, 0.20, true, HPXML::LocationGround, HPXML::PVTrackingType1Axis, HPXML::PVModuleTypePremium, 123) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') + hpxml_bldg.pv_systems.add(id: 'PVSystem', + is_shared_system: true, + number_of_bedrooms_served: 20, + system_losses_fraction: 0.20, + location: HPXML::LocationGround, + tracking: HPXML::PVTrackingType1Axis, + module_type: HPXML::PVModuleTypePremium, + array_azimuth: 123, + array_tilt: 0, + max_power_output: 1000, + inverter_idref: 'Inverter') + hpxml_bldg.inverters.add(id: 'Inverter', + inverter_efficiency: 0.90) + pv = hpxml_bldg.pv_systems[0] + inv = hpxml_bldg.inverters[0] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_pv_system_values(default_hpxml_bldg, 0.90, 0.20, true, HPXML::LocationGround, HPXML::PVTrackingType1Axis, HPXML::PVModuleTypePremium, 123) # Test defaults w/o year modules manufactured pv.is_shared_system = nil @@ -2642,363 +2675,362 @@ def test_pv_systems pv.array_orientation = HPXML::OrientationSoutheast pv.array_azimuth = nil inv.inverter_efficiency = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_pv_system_values(hpxml_default, 0.96, 0.14, false, HPXML::LocationRoof, HPXML::PVTrackingTypeFixed, HPXML::PVModuleTypeStandard, 135) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_pv_system_values(default_hpxml_bldg, 0.96, 0.14, false, HPXML::LocationRoof, HPXML::PVTrackingTypeFixed, HPXML::PVModuleTypeStandard, 135) # Test defaults w/ year modules manufactured pv.year_modules_manufactured = 2010 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_pv_system_values(hpxml_default, 0.96, 0.194, false, HPXML::LocationRoof, HPXML::PVTrackingTypeFixed, HPXML::PVModuleTypeStandard, 135) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_pv_system_values(default_hpxml_bldg, 0.96, 0.194, false, HPXML::LocationRoof, HPXML::PVTrackingTypeFixed, HPXML::PVModuleTypeStandard, 135) end def test_batteries # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-pv-battery.xml') - hpxml.batteries[0].nominal_capacity_kwh = 45.0 - hpxml.batteries[0].nominal_capacity_ah = nil - hpxml.batteries[0].usable_capacity_kwh = 34.0 - hpxml.batteries[0].usable_capacity_ah = nil - hpxml.batteries[0].rated_power_output = 1234.0 - hpxml.batteries[0].location = HPXML::LocationBasementConditioned - # hpxml.batteries[0].lifetime_model = HPXML::BatteryLifetimeModelKandlerSmith - hpxml.batteries[0].round_trip_efficiency = 0.9 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_battery_values(hpxml_default.batteries[0], 45.0, nil, 34.0, nil, 1234.0, HPXML::LocationBasementConditioned, nil, 0.9) + hpxml, hpxml_bldg = _create_hpxml('base-pv-battery.xml') + hpxml_bldg.batteries[0].nominal_capacity_kwh = 45.0 + hpxml_bldg.batteries[0].nominal_capacity_ah = nil + hpxml_bldg.batteries[0].usable_capacity_kwh = 34.0 + hpxml_bldg.batteries[0].usable_capacity_ah = nil + hpxml_bldg.batteries[0].rated_power_output = 1234.0 + hpxml_bldg.batteries[0].location = HPXML::LocationBasementConditioned + # hpxml_bldg.batteries[0].lifetime_model = HPXML::BatteryLifetimeModelKandlerSmith + hpxml_bldg.batteries[0].round_trip_efficiency = 0.9 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_battery_values(default_hpxml_bldg.batteries[0], 45.0, nil, 34.0, nil, 1234.0, HPXML::LocationBasementConditioned, nil, 0.9) # Test w/ Ah instead of kWh - hpxml.batteries[0].nominal_capacity_kwh = nil - hpxml.batteries[0].nominal_capacity_ah = 987.0 - hpxml.batteries[0].usable_capacity_kwh = nil - hpxml.batteries[0].usable_capacity_ah = 876.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_battery_values(hpxml_default.batteries[0], nil, 987.0, nil, 876.0, 1234.0, HPXML::LocationBasementConditioned, nil, 0.9) + hpxml_bldg.batteries[0].nominal_capacity_kwh = nil + hpxml_bldg.batteries[0].nominal_capacity_ah = 987.0 + hpxml_bldg.batteries[0].usable_capacity_kwh = nil + hpxml_bldg.batteries[0].usable_capacity_ah = 876.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_battery_values(default_hpxml_bldg.batteries[0], nil, 987.0, nil, 876.0, 1234.0, HPXML::LocationBasementConditioned, nil, 0.9) # Test defaults - hpxml.batteries[0].nominal_capacity_kwh = nil - hpxml.batteries[0].nominal_capacity_ah = nil - hpxml.batteries[0].usable_capacity_kwh = nil - hpxml.batteries[0].usable_capacity_ah = nil - hpxml.batteries[0].rated_power_output = nil - hpxml.batteries[0].location = nil - hpxml.batteries[0].lifetime_model = nil - hpxml.batteries[0].round_trip_efficiency = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_battery_values(hpxml_default.batteries[0], 10.0, nil, 9.0, nil, 5000.0, HPXML::LocationOutside, nil, 0.925) + hpxml_bldg.batteries[0].nominal_capacity_kwh = nil + hpxml_bldg.batteries[0].nominal_capacity_ah = nil + hpxml_bldg.batteries[0].usable_capacity_kwh = nil + hpxml_bldg.batteries[0].usable_capacity_ah = nil + hpxml_bldg.batteries[0].rated_power_output = nil + hpxml_bldg.batteries[0].location = nil + hpxml_bldg.batteries[0].lifetime_model = nil + hpxml_bldg.batteries[0].round_trip_efficiency = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_battery_values(default_hpxml_bldg.batteries[0], 10.0, nil, 9.0, nil, 5000.0, HPXML::LocationOutside, nil, 0.925) # Test defaults w/ nominal kWh - hpxml.batteries[0].nominal_capacity_kwh = 14.0 - hpxml.batteries[0].nominal_capacity_ah = nil - hpxml.batteries[0].usable_capacity_kwh = nil - hpxml.batteries[0].usable_capacity_ah = nil - hpxml.batteries[0].rated_power_output = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_battery_values(hpxml_default.batteries[0], 14.0, nil, 12.6, nil, 7000.0, HPXML::LocationOutside, nil, 0.925) + hpxml_bldg.batteries[0].nominal_capacity_kwh = 14.0 + hpxml_bldg.batteries[0].nominal_capacity_ah = nil + hpxml_bldg.batteries[0].usable_capacity_kwh = nil + hpxml_bldg.batteries[0].usable_capacity_ah = nil + hpxml_bldg.batteries[0].rated_power_output = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_battery_values(default_hpxml_bldg.batteries[0], 14.0, nil, 12.6, nil, 7000.0, HPXML::LocationOutside, nil, 0.925) # Test defaults w/ usable kWh - hpxml.batteries[0].nominal_capacity_kwh = nil - hpxml.batteries[0].nominal_capacity_ah = nil - hpxml.batteries[0].usable_capacity_kwh = 12.0 - hpxml.batteries[0].usable_capacity_ah = nil - hpxml.batteries[0].rated_power_output = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_battery_values(hpxml_default.batteries[0], 13.33, nil, 12.0, nil, 6665.0, HPXML::LocationOutside, nil, 0.925) + hpxml_bldg.batteries[0].nominal_capacity_kwh = nil + hpxml_bldg.batteries[0].nominal_capacity_ah = nil + hpxml_bldg.batteries[0].usable_capacity_kwh = 12.0 + hpxml_bldg.batteries[0].usable_capacity_ah = nil + hpxml_bldg.batteries[0].rated_power_output = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_battery_values(default_hpxml_bldg.batteries[0], 13.33, nil, 12.0, nil, 6665.0, HPXML::LocationOutside, nil, 0.925) # Test defaults w/ nominal Ah - hpxml.batteries[0].nominal_capacity_kwh = nil - hpxml.batteries[0].nominal_capacity_ah = 280.0 - hpxml.batteries[0].usable_capacity_kwh = nil - hpxml.batteries[0].usable_capacity_ah = nil - hpxml.batteries[0].rated_power_output = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_battery_values(hpxml_default.batteries[0], nil, 280.0, nil, 252.0, 7000.0, HPXML::LocationOutside, nil, 0.925) + hpxml_bldg.batteries[0].nominal_capacity_kwh = nil + hpxml_bldg.batteries[0].nominal_capacity_ah = 280.0 + hpxml_bldg.batteries[0].usable_capacity_kwh = nil + hpxml_bldg.batteries[0].usable_capacity_ah = nil + hpxml_bldg.batteries[0].rated_power_output = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_battery_values(default_hpxml_bldg.batteries[0], nil, 280.0, nil, 252.0, 7000.0, HPXML::LocationOutside, nil, 0.925) # Test defaults w/ usable Ah - hpxml.batteries[0].nominal_capacity_kwh = nil - hpxml.batteries[0].nominal_capacity_ah = nil - hpxml.batteries[0].usable_capacity_kwh = nil - hpxml.batteries[0].usable_capacity_ah = 240.0 - hpxml.batteries[0].rated_power_output = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_battery_values(hpxml_default.batteries[0], nil, 266.67, nil, 240.0, 6667.0, HPXML::LocationOutside, nil, 0.925) + hpxml_bldg.batteries[0].nominal_capacity_kwh = nil + hpxml_bldg.batteries[0].nominal_capacity_ah = nil + hpxml_bldg.batteries[0].usable_capacity_kwh = nil + hpxml_bldg.batteries[0].usable_capacity_ah = 240.0 + hpxml_bldg.batteries[0].rated_power_output = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_battery_values(default_hpxml_bldg.batteries[0], nil, 266.67, nil, 240.0, 6667.0, HPXML::LocationOutside, nil, 0.925) # Test defaults w/ rated power output - hpxml.batteries[0].nominal_capacity_kwh = nil - hpxml.batteries[0].nominal_capacity_ah = nil - hpxml.batteries[0].usable_capacity_kwh = nil - hpxml.batteries[0].usable_capacity_ah = nil - hpxml.batteries[0].rated_power_output = 10000.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_battery_values(hpxml_default.batteries[0], 20.0, nil, 18.0, nil, 10000.0, HPXML::LocationOutside, nil, 0.925) + hpxml_bldg.batteries[0].nominal_capacity_kwh = nil + hpxml_bldg.batteries[0].nominal_capacity_ah = nil + hpxml_bldg.batteries[0].usable_capacity_kwh = nil + hpxml_bldg.batteries[0].usable_capacity_ah = nil + hpxml_bldg.batteries[0].rated_power_output = 10000.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_battery_values(default_hpxml_bldg.batteries[0], 20.0, nil, 18.0, nil, 10000.0, HPXML::LocationOutside, nil, 0.925) # Test defaults w/ garage - hpxml = _create_hpxml('base-pv-battery-garage.xml') - hpxml.batteries[0].nominal_capacity_kwh = nil - hpxml.batteries[0].nominal_capacity_ah = nil - hpxml.batteries[0].usable_capacity_kwh = nil - hpxml.batteries[0].usable_capacity_ah = nil - hpxml.batteries[0].rated_power_output = nil - hpxml.batteries[0].location = nil - hpxml.batteries[0].lifetime_model = nil - hpxml.batteries[0].round_trip_efficiency = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_battery_values(hpxml_default.batteries[0], 10.0, nil, 9.0, nil, 5000.0, HPXML::LocationGarage, nil, 0.925) + hpxml, hpxml_bldg = _create_hpxml('base-pv-battery-garage.xml') + hpxml_bldg.batteries[0].nominal_capacity_kwh = nil + hpxml_bldg.batteries[0].nominal_capacity_ah = nil + hpxml_bldg.batteries[0].usable_capacity_kwh = nil + hpxml_bldg.batteries[0].usable_capacity_ah = nil + hpxml_bldg.batteries[0].rated_power_output = nil + hpxml_bldg.batteries[0].location = nil + hpxml_bldg.batteries[0].lifetime_model = nil + hpxml_bldg.batteries[0].round_trip_efficiency = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_battery_values(default_hpxml_bldg.batteries[0], 10.0, nil, 9.0, nil, 5000.0, HPXML::LocationGarage, nil, 0.925) end def test_generators # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-bldgtype-attached.xml') - hpxml.generators.add(id: 'Generator', - is_shared_system: true, - number_of_bedrooms_served: 20, - fuel_type: HPXML::FuelTypeNaturalGas, - annual_consumption_kbtu: 8500, - annual_output_kwh: 500) - generator = hpxml.generators[0] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_generator_values(hpxml_default, true) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') + hpxml_bldg.generators.add(id: 'Generator', + is_shared_system: true, + number_of_bedrooms_served: 20, + fuel_type: HPXML::FuelTypeNaturalGas, + annual_consumption_kbtu: 8500, + annual_output_kwh: 500) + generator = hpxml_bldg.generators[0] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_generator_values(default_hpxml_bldg, true) # Test defaults generator.is_shared_system = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_generator_values(hpxml_default, false) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_generator_values(default_hpxml_bldg, false) end def test_clothes_washers # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-bldgtype-attached.xml') - hpxml.water_heating_systems[0].is_shared_system = true - hpxml.water_heating_systems[0].number_of_units_served = 6 - hpxml.clothes_washers[0].location = HPXML::LocationBasementConditioned - hpxml.clothes_washers[0].is_shared_appliance = true - hpxml.clothes_washers[0].usage_multiplier = 1.5 - hpxml.clothes_washers[0].water_heating_system_idref = hpxml.water_heating_systems[0].id - hpxml.clothes_washers[0].weekday_fractions = ConstantDaySchedule - hpxml.clothes_washers[0].weekend_fractions = ConstantDaySchedule - hpxml.clothes_washers[0].monthly_multipliers = ConstantMonthSchedule - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_clothes_washer_values(hpxml_default.clothes_washers[0], true, HPXML::LocationBasementConditioned, 1.21, 380.0, 0.12, 1.09, 27.0, 3.2, 6.0, 1.5, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') + hpxml_bldg.water_heating_systems[0].is_shared_system = true + hpxml_bldg.water_heating_systems[0].number_of_units_served = 6 + hpxml_bldg.clothes_washers[0].location = HPXML::LocationBasementConditioned + hpxml_bldg.clothes_washers[0].is_shared_appliance = true + hpxml_bldg.clothes_washers[0].usage_multiplier = 1.5 + hpxml_bldg.clothes_washers[0].water_heating_system_idref = hpxml_bldg.water_heating_systems[0].id + hpxml_bldg.clothes_washers[0].weekday_fractions = ConstantDaySchedule + hpxml_bldg.clothes_washers[0].weekend_fractions = ConstantDaySchedule + hpxml_bldg.clothes_washers[0].monthly_multipliers = ConstantMonthSchedule + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_clothes_washer_values(default_hpxml_bldg.clothes_washers[0], true, HPXML::LocationBasementConditioned, 1.21, 380.0, 0.12, 1.09, 27.0, 3.2, 6.0, 1.5, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults - hpxml.clothes_washers[0].is_shared_appliance = nil - hpxml.clothes_washers[0].location = nil - hpxml.clothes_washers[0].integrated_modified_energy_factor = nil - hpxml.clothes_washers[0].rated_annual_kwh = nil - hpxml.clothes_washers[0].label_electric_rate = nil - hpxml.clothes_washers[0].label_gas_rate = nil - hpxml.clothes_washers[0].label_annual_gas_cost = nil - hpxml.clothes_washers[0].capacity = nil - hpxml.clothes_washers[0].label_usage = nil - hpxml.clothes_washers[0].usage_multiplier = nil - hpxml.clothes_washers[0].weekday_fractions = nil - hpxml.clothes_washers[0].weekend_fractions = nil - hpxml.clothes_washers[0].monthly_multipliers = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_clothes_washer_values(hpxml_default.clothes_washers[0], false, HPXML::LocationLivingSpace, 1.0, 400.0, 0.12, 1.09, 27.0, 3.0, 6.0, 1.0, Schedule.ClothesWasherWeekdayFractions, Schedule.ClothesWasherWeekendFractions, Schedule.ClothesWasherMonthlyMultipliers) + hpxml_bldg.clothes_washers[0].is_shared_appliance = nil + hpxml_bldg.clothes_washers[0].location = nil + hpxml_bldg.clothes_washers[0].integrated_modified_energy_factor = nil + hpxml_bldg.clothes_washers[0].rated_annual_kwh = nil + hpxml_bldg.clothes_washers[0].label_electric_rate = nil + hpxml_bldg.clothes_washers[0].label_gas_rate = nil + hpxml_bldg.clothes_washers[0].label_annual_gas_cost = nil + hpxml_bldg.clothes_washers[0].capacity = nil + hpxml_bldg.clothes_washers[0].label_usage = nil + hpxml_bldg.clothes_washers[0].usage_multiplier = nil + hpxml_bldg.clothes_washers[0].weekday_fractions = nil + hpxml_bldg.clothes_washers[0].weekend_fractions = nil + hpxml_bldg.clothes_washers[0].monthly_multipliers = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_clothes_washer_values(default_hpxml_bldg.clothes_washers[0], false, HPXML::LocationConditionedSpace, 1.0, 400.0, 0.12, 1.09, 27.0, 3.0, 6.0, 1.0, Schedule.ClothesWasherWeekdayFractions, Schedule.ClothesWasherWeekendFractions, Schedule.ClothesWasherMonthlyMultipliers) # Test defaults before 301-2019 Addendum A - hpxml = _create_hpxml('base.xml') + hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml.header.eri_calculation_version = '2019' - hpxml.clothes_washers[0].is_shared_appliance = nil - hpxml.clothes_washers[0].location = nil - hpxml.clothes_washers[0].integrated_modified_energy_factor = nil - hpxml.clothes_washers[0].rated_annual_kwh = nil - hpxml.clothes_washers[0].label_electric_rate = nil - hpxml.clothes_washers[0].label_gas_rate = nil - hpxml.clothes_washers[0].label_annual_gas_cost = nil - hpxml.clothes_washers[0].capacity = nil - hpxml.clothes_washers[0].label_usage = nil - hpxml.clothes_washers[0].usage_multiplier = nil - hpxml.clothes_washers[0].weekday_fractions = nil - hpxml.clothes_washers[0].weekend_fractions = nil - hpxml.clothes_washers[0].monthly_multipliers = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_clothes_washer_values(hpxml_default.clothes_washers[0], false, HPXML::LocationLivingSpace, 0.331, 704.0, 0.08, 0.58, 23.0, 2.874, 999, 1.0, Schedule.ClothesWasherWeekdayFractions, Schedule.ClothesWasherWeekendFractions, Schedule.ClothesWasherMonthlyMultipliers) + hpxml_bldg.clothes_washers[0].is_shared_appliance = nil + hpxml_bldg.clothes_washers[0].location = nil + hpxml_bldg.clothes_washers[0].integrated_modified_energy_factor = nil + hpxml_bldg.clothes_washers[0].rated_annual_kwh = nil + hpxml_bldg.clothes_washers[0].label_electric_rate = nil + hpxml_bldg.clothes_washers[0].label_gas_rate = nil + hpxml_bldg.clothes_washers[0].label_annual_gas_cost = nil + hpxml_bldg.clothes_washers[0].capacity = nil + hpxml_bldg.clothes_washers[0].label_usage = nil + hpxml_bldg.clothes_washers[0].usage_multiplier = nil + hpxml_bldg.clothes_washers[0].weekday_fractions = nil + hpxml_bldg.clothes_washers[0].weekend_fractions = nil + hpxml_bldg.clothes_washers[0].monthly_multipliers = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_clothes_washer_values(default_hpxml_bldg.clothes_washers[0], false, HPXML::LocationConditionedSpace, 0.331, 704.0, 0.08, 0.58, 23.0, 2.874, 999, 1.0, Schedule.ClothesWasherWeekdayFractions, Schedule.ClothesWasherWeekendFractions, Schedule.ClothesWasherMonthlyMultipliers) end def test_clothes_dryers # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-bldgtype-attached.xml') - hpxml.water_heating_systems[0].is_shared_system = true - hpxml.water_heating_systems[0].number_of_units_served = 6 - hpxml.clothes_dryers[0].location = HPXML::LocationBasementConditioned - hpxml.clothes_dryers[0].is_shared_appliance = true - hpxml.clothes_dryers[0].combined_energy_factor = 3.33 - hpxml.clothes_dryers[0].usage_multiplier = 1.1 - hpxml.clothes_dryers[0].weekday_fractions = ConstantDaySchedule - hpxml.clothes_dryers[0].weekend_fractions = ConstantDaySchedule - hpxml.clothes_dryers[0].monthly_multipliers = ConstantMonthSchedule - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_clothes_dryer_values(hpxml_default.clothes_dryers[0], true, HPXML::LocationBasementConditioned, 3.33, 1.1, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') + hpxml_bldg.water_heating_systems[0].is_shared_system = true + hpxml_bldg.water_heating_systems[0].number_of_units_served = 6 + hpxml_bldg.clothes_dryers[0].location = HPXML::LocationBasementConditioned + hpxml_bldg.clothes_dryers[0].is_shared_appliance = true + hpxml_bldg.clothes_dryers[0].combined_energy_factor = 3.33 + hpxml_bldg.clothes_dryers[0].usage_multiplier = 1.1 + hpxml_bldg.clothes_dryers[0].weekday_fractions = ConstantDaySchedule + hpxml_bldg.clothes_dryers[0].weekend_fractions = ConstantDaySchedule + hpxml_bldg.clothes_dryers[0].monthly_multipliers = ConstantMonthSchedule + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_clothes_dryer_values(default_hpxml_bldg.clothes_dryers[0], true, HPXML::LocationBasementConditioned, 3.33, 1.1, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults w/ electric clothes dryer - hpxml.clothes_dryers[0].location = nil - hpxml.clothes_dryers[0].is_shared_appliance = nil - hpxml.clothes_dryers[0].combined_energy_factor = nil - hpxml.clothes_dryers[0].usage_multiplier = nil - hpxml.clothes_dryers[0].weekday_fractions = nil - hpxml.clothes_dryers[0].weekend_fractions = nil - hpxml.clothes_dryers[0].monthly_multipliers = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_clothes_dryer_values(hpxml_default.clothes_dryers[0], false, HPXML::LocationLivingSpace, 3.01, 1.0, Schedule.ClothesDryerWeekdayFractions, Schedule.ClothesDryerWeekendFractions, Schedule.ClothesDryerMonthlyMultipliers) + hpxml_bldg.clothes_dryers[0].location = nil + hpxml_bldg.clothes_dryers[0].is_shared_appliance = nil + hpxml_bldg.clothes_dryers[0].combined_energy_factor = nil + hpxml_bldg.clothes_dryers[0].usage_multiplier = nil + hpxml_bldg.clothes_dryers[0].weekday_fractions = nil + hpxml_bldg.clothes_dryers[0].weekend_fractions = nil + hpxml_bldg.clothes_dryers[0].monthly_multipliers = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_clothes_dryer_values(default_hpxml_bldg.clothes_dryers[0], false, HPXML::LocationConditionedSpace, 3.01, 1.0, Schedule.ClothesDryerWeekdayFractions, Schedule.ClothesDryerWeekendFractions, Schedule.ClothesDryerMonthlyMultipliers) # Test defaults w/ gas clothes dryer - hpxml.clothes_dryers[0].fuel_type = HPXML::FuelTypeNaturalGas - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_clothes_dryer_values(hpxml_default.clothes_dryers[0], false, HPXML::LocationLivingSpace, 3.01, 1.0, Schedule.ClothesDryerWeekdayFractions, Schedule.ClothesDryerWeekendFractions, Schedule.ClothesDryerMonthlyMultipliers) + hpxml_bldg.clothes_dryers[0].fuel_type = HPXML::FuelTypeNaturalGas + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_clothes_dryer_values(default_hpxml_bldg.clothes_dryers[0], false, HPXML::LocationConditionedSpace, 3.01, 1.0, Schedule.ClothesDryerWeekdayFractions, Schedule.ClothesDryerWeekendFractions, Schedule.ClothesDryerMonthlyMultipliers) # Test defaults w/ electric clothes dryer before 301-2019 Addendum A hpxml.header.eri_calculation_version = '2019' - hpxml.clothes_dryers[0].fuel_type = HPXML::FuelTypeElectricity - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_clothes_dryer_values(hpxml_default.clothes_dryers[0], false, HPXML::LocationLivingSpace, 2.62, 1.0, Schedule.ClothesDryerWeekdayFractions, Schedule.ClothesDryerWeekendFractions, Schedule.ClothesDryerMonthlyMultipliers) + hpxml_bldg.clothes_dryers[0].fuel_type = HPXML::FuelTypeElectricity + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_clothes_dryer_values(default_hpxml_bldg.clothes_dryers[0], false, HPXML::LocationConditionedSpace, 2.62, 1.0, Schedule.ClothesDryerWeekdayFractions, Schedule.ClothesDryerWeekendFractions, Schedule.ClothesDryerMonthlyMultipliers) # Test defaults w/ gas clothes dryer before 301-2019 Addendum A - hpxml.clothes_dryers[0].fuel_type = HPXML::FuelTypeNaturalGas - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_clothes_dryer_values(hpxml_default.clothes_dryers[0], false, HPXML::LocationLivingSpace, 2.32, 1.0, Schedule.ClothesDryerWeekdayFractions, Schedule.ClothesDryerWeekendFractions, Schedule.ClothesDryerMonthlyMultipliers) + hpxml_bldg.clothes_dryers[0].fuel_type = HPXML::FuelTypeNaturalGas + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_clothes_dryer_values(default_hpxml_bldg.clothes_dryers[0], false, HPXML::LocationConditionedSpace, 2.32, 1.0, Schedule.ClothesDryerWeekdayFractions, Schedule.ClothesDryerWeekendFractions, Schedule.ClothesDryerMonthlyMultipliers) end def test_clothes_dryer_exhaust # Test inputs not overridden by defaults w/ vented dryer - hpxml_name = 'base.xml' - hpxml = HPXML.new(hpxml_path: File.join(@root_path, 'workflow', 'sample_files', hpxml_name)) - clothes_dryer = hpxml.clothes_dryers[0] + hpxml, hpxml_bldg = _create_hpxml('base.xml') + clothes_dryer = hpxml_bldg.clothes_dryers[0] clothes_dryer.is_vented = true clothes_dryer.vented_flow_rate = 200 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_clothes_dryer_exhaust_values(hpxml_default.clothes_dryers[0], true, 200) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_clothes_dryer_exhaust_values(default_hpxml_bldg.clothes_dryers[0], true, 200) # Test inputs not overridden by defaults w/ unvented dryer clothes_dryer.is_vented = false clothes_dryer.vented_flow_rate = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_clothes_dryer_exhaust_values(hpxml_default.clothes_dryers[0], false, nil) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_clothes_dryer_exhaust_values(default_hpxml_bldg.clothes_dryers[0], false, nil) # Test defaults clothes_dryer.is_vented = nil clothes_dryer.vented_flow_rate = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_clothes_dryer_exhaust_values(hpxml_default.clothes_dryers[0], true, 100) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_clothes_dryer_exhaust_values(default_hpxml_bldg.clothes_dryers[0], true, 100) end def test_dishwashers # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-bldgtype-attached.xml') - hpxml.water_heating_systems[0].is_shared_system = true - hpxml.water_heating_systems[0].number_of_units_served = 6 - hpxml.dishwashers[0].location = HPXML::LocationBasementConditioned - hpxml.dishwashers[0].is_shared_appliance = true - hpxml.dishwashers[0].usage_multiplier = 1.3 - hpxml.dishwashers[0].water_heating_system_idref = hpxml.water_heating_systems[0].id - hpxml.dishwashers[0].weekday_fractions = ConstantDaySchedule - hpxml.dishwashers[0].weekend_fractions = ConstantDaySchedule - hpxml.dishwashers[0].monthly_multipliers = ConstantMonthSchedule - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_dishwasher_values(hpxml_default.dishwashers[0], true, HPXML::LocationBasementConditioned, 307.0, 0.12, 1.09, 22.32, 4.0, 12, 1.3, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') + hpxml_bldg.water_heating_systems[0].is_shared_system = true + hpxml_bldg.water_heating_systems[0].number_of_units_served = 6 + hpxml_bldg.dishwashers[0].location = HPXML::LocationBasementConditioned + hpxml_bldg.dishwashers[0].is_shared_appliance = true + hpxml_bldg.dishwashers[0].usage_multiplier = 1.3 + hpxml_bldg.dishwashers[0].water_heating_system_idref = hpxml_bldg.water_heating_systems[0].id + hpxml_bldg.dishwashers[0].weekday_fractions = ConstantDaySchedule + hpxml_bldg.dishwashers[0].weekend_fractions = ConstantDaySchedule + hpxml_bldg.dishwashers[0].monthly_multipliers = ConstantMonthSchedule + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_dishwasher_values(default_hpxml_bldg.dishwashers[0], true, HPXML::LocationBasementConditioned, 307.0, 0.12, 1.09, 22.32, 4.0, 12, 1.3, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults - hpxml.dishwashers[0].is_shared_appliance = nil - hpxml.dishwashers[0].location = nil - hpxml.dishwashers[0].rated_annual_kwh = nil - hpxml.dishwashers[0].label_electric_rate = nil - hpxml.dishwashers[0].label_gas_rate = nil - hpxml.dishwashers[0].label_annual_gas_cost = nil - hpxml.dishwashers[0].label_usage = nil - hpxml.dishwashers[0].place_setting_capacity = nil - hpxml.dishwashers[0].usage_multiplier = nil - hpxml.dishwashers[0].weekday_fractions = nil - hpxml.dishwashers[0].weekend_fractions = nil - hpxml.dishwashers[0].monthly_multipliers = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_dishwasher_values(hpxml_default.dishwashers[0], false, HPXML::LocationLivingSpace, 467.0, 0.12, 1.09, 33.12, 4.0, 12, 1.0, Schedule.DishwasherWeekdayFractions, Schedule.DishwasherWeekendFractions, Schedule.DishwasherMonthlyMultipliers) + hpxml_bldg.dishwashers[0].is_shared_appliance = nil + hpxml_bldg.dishwashers[0].location = nil + hpxml_bldg.dishwashers[0].rated_annual_kwh = nil + hpxml_bldg.dishwashers[0].label_electric_rate = nil + hpxml_bldg.dishwashers[0].label_gas_rate = nil + hpxml_bldg.dishwashers[0].label_annual_gas_cost = nil + hpxml_bldg.dishwashers[0].label_usage = nil + hpxml_bldg.dishwashers[0].place_setting_capacity = nil + hpxml_bldg.dishwashers[0].usage_multiplier = nil + hpxml_bldg.dishwashers[0].weekday_fractions = nil + hpxml_bldg.dishwashers[0].weekend_fractions = nil + hpxml_bldg.dishwashers[0].monthly_multipliers = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_dishwasher_values(default_hpxml_bldg.dishwashers[0], false, HPXML::LocationConditionedSpace, 467.0, 0.12, 1.09, 33.12, 4.0, 12, 1.0, Schedule.DishwasherWeekdayFractions, Schedule.DishwasherWeekendFractions, Schedule.DishwasherMonthlyMultipliers) # Test defaults before 301-2019 Addendum A hpxml.header.eri_calculation_version = '2019' - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_dishwasher_values(hpxml_default.dishwashers[0], false, HPXML::LocationLivingSpace, 467.0, 999, 999, 999, 999, 12, 1.0, Schedule.DishwasherWeekdayFractions, Schedule.DishwasherWeekendFractions, Schedule.DishwasherMonthlyMultipliers) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_dishwasher_values(default_hpxml_bldg.dishwashers[0], false, HPXML::LocationConditionedSpace, 467.0, 999, 999, 999, 999, 12, 1.0, Schedule.DishwasherWeekdayFractions, Schedule.DishwasherWeekendFractions, Schedule.DishwasherMonthlyMultipliers) end def test_refrigerators # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.refrigerators[0].location = HPXML::LocationBasementConditioned - hpxml.refrigerators[0].usage_multiplier = 1.2 - hpxml.refrigerators[0].weekday_fractions = ConstantDaySchedule - hpxml.refrigerators[0].weekend_fractions = ConstantDaySchedule - hpxml.refrigerators[0].monthly_multipliers = ConstantMonthSchedule - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_refrigerator_values(hpxml_default, HPXML::LocationBasementConditioned, 650.0, 1.2, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.refrigerators[0].location = HPXML::LocationBasementConditioned + hpxml_bldg.refrigerators[0].usage_multiplier = 1.2 + hpxml_bldg.refrigerators[0].weekday_fractions = ConstantDaySchedule + hpxml_bldg.refrigerators[0].weekend_fractions = ConstantDaySchedule + hpxml_bldg.refrigerators[0].monthly_multipliers = ConstantMonthSchedule + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_refrigerator_values(default_hpxml_bldg, HPXML::LocationBasementConditioned, 650.0, 1.2, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults - hpxml.refrigerators[0].location = nil - hpxml.refrigerators[0].rated_annual_kwh = nil - hpxml.refrigerators[0].usage_multiplier = nil - hpxml.refrigerators[0].weekday_fractions = nil - hpxml.refrigerators[0].weekend_fractions = nil - hpxml.refrigerators[0].monthly_multipliers = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_refrigerator_values(hpxml_default, HPXML::LocationLivingSpace, 691.0, 1.0, Schedule.RefrigeratorWeekdayFractions, Schedule.RefrigeratorWeekendFractions, Schedule.RefrigeratorMonthlyMultipliers) + hpxml_bldg.refrigerators[0].location = nil + hpxml_bldg.refrigerators[0].rated_annual_kwh = nil + hpxml_bldg.refrigerators[0].usage_multiplier = nil + hpxml_bldg.refrigerators[0].weekday_fractions = nil + hpxml_bldg.refrigerators[0].weekend_fractions = nil + hpxml_bldg.refrigerators[0].monthly_multipliers = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_refrigerator_values(default_hpxml_bldg, HPXML::LocationConditionedSpace, 691.0, 1.0, Schedule.RefrigeratorWeekdayFractions, Schedule.RefrigeratorWeekendFractions, Schedule.RefrigeratorMonthlyMultipliers) # Test defaults w/ refrigerator in 5-bedroom house - hpxml.building_construction.number_of_bedrooms = 5 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_refrigerator_values(hpxml_default, HPXML::LocationLivingSpace, 727.0, 1.0, Schedule.RefrigeratorWeekdayFractions, Schedule.RefrigeratorWeekendFractions, Schedule.RefrigeratorMonthlyMultipliers) + hpxml_bldg.building_construction.number_of_bedrooms = 5 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_refrigerator_values(default_hpxml_bldg, HPXML::LocationConditionedSpace, 727.0, 1.0, Schedule.RefrigeratorWeekdayFractions, Schedule.RefrigeratorWeekendFractions, Schedule.RefrigeratorMonthlyMultipliers) # Test defaults before 301-2019 Addendum A hpxml.header.eri_calculation_version = '2019' - hpxml.building_construction.number_of_bedrooms = 3 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_refrigerator_values(hpxml_default, HPXML::LocationLivingSpace, 691.0, 1.0, Schedule.RefrigeratorWeekdayFractions, Schedule.RefrigeratorWeekendFractions, Schedule.RefrigeratorMonthlyMultipliers) + hpxml_bldg.building_construction.number_of_bedrooms = 3 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_refrigerator_values(default_hpxml_bldg, HPXML::LocationConditionedSpace, 691.0, 1.0, Schedule.RefrigeratorWeekdayFractions, Schedule.RefrigeratorWeekendFractions, Schedule.RefrigeratorMonthlyMultipliers) end def test_extra_refrigerators # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-misc-loads-large-uncommon.xml') - hpxml.refrigerators.each do |refrigerator| - refrigerator.location = HPXML::LocationLivingSpace + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon.xml') + hpxml_bldg.refrigerators.each do |refrigerator| + refrigerator.location = HPXML::LocationConditionedSpace refrigerator.rated_annual_kwh = 333.0 refrigerator.usage_multiplier = 1.5 refrigerator.weekday_fractions = ConstantDaySchedule refrigerator.weekend_fractions = ConstantDaySchedule refrigerator.monthly_multipliers = ConstantMonthSchedule end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_extra_refrigerators_values(hpxml_default, HPXML::LocationLivingSpace, 333.0, 1.5, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_extra_refrigerators_values(default_hpxml_bldg, HPXML::LocationConditionedSpace, 333.0, 1.5, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults - hpxml.refrigerators.each do |refrigerator| + hpxml_bldg.refrigerators.each do |refrigerator| refrigerator.location = nil refrigerator.rated_annual_kwh = nil refrigerator.usage_multiplier = nil @@ -3006,28 +3038,28 @@ def test_extra_refrigerators refrigerator.weekend_fractions = nil refrigerator.monthly_multipliers = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_extra_refrigerators_values(hpxml_default, HPXML::LocationBasementConditioned, 244.0, 1.0, Schedule.ExtraRefrigeratorWeekdayFractions, Schedule.ExtraRefrigeratorWeekendFractions, Schedule.ExtraRefrigeratorMonthlyMultipliers) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_extra_refrigerators_values(default_hpxml_bldg, HPXML::LocationBasementConditioned, 244.0, 1.0, Schedule.ExtraRefrigeratorWeekdayFractions, Schedule.ExtraRefrigeratorWeekendFractions, Schedule.ExtraRefrigeratorMonthlyMultipliers) end def test_freezers # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-misc-loads-large-uncommon.xml') - hpxml.freezers.each do |freezer| - freezer.location = HPXML::LocationLivingSpace + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon.xml') + hpxml_bldg.freezers.each do |freezer| + freezer.location = HPXML::LocationConditionedSpace freezer.rated_annual_kwh = 333.0 freezer.usage_multiplier = 1.5 freezer.weekday_fractions = ConstantDaySchedule freezer.weekend_fractions = ConstantDaySchedule freezer.monthly_multipliers = ConstantMonthSchedule end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_freezers_values(hpxml_default, HPXML::LocationLivingSpace, 333.0, 1.5, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_freezers_values(default_hpxml_bldg, HPXML::LocationConditionedSpace, 333.0, 1.5, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults - hpxml.freezers.each do |freezer| + hpxml_bldg.freezers.each do |freezer| freezer.location = nil freezer.rated_annual_kwh = nil freezer.usage_multiplier = nil @@ -3035,89 +3067,89 @@ def test_freezers freezer.weekend_fractions = nil freezer.monthly_multipliers = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_freezers_values(hpxml_default, HPXML::LocationBasementConditioned, 320.0, 1.0, Schedule.FreezerWeekdayFractions, Schedule.FreezerWeekendFractions, Schedule.FreezerMonthlyMultipliers) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_freezers_values(default_hpxml_bldg, HPXML::LocationBasementConditioned, 320.0, 1.0, Schedule.FreezerWeekdayFractions, Schedule.FreezerWeekendFractions, Schedule.FreezerMonthlyMultipliers) end def test_cooking_ranges # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.cooking_ranges[0].location = HPXML::LocationBasementConditioned - hpxml.cooking_ranges[0].is_induction = true - hpxml.cooking_ranges[0].usage_multiplier = 1.1 - hpxml.cooking_ranges[0].weekday_fractions = ConstantDaySchedule - hpxml.cooking_ranges[0].weekend_fractions = ConstantDaySchedule - hpxml.cooking_ranges[0].monthly_multipliers = ConstantMonthSchedule - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_cooking_range_values(hpxml_default.cooking_ranges[0], HPXML::LocationBasementConditioned, true, 1.1, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.cooking_ranges[0].location = HPXML::LocationBasementConditioned + hpxml_bldg.cooking_ranges[0].is_induction = true + hpxml_bldg.cooking_ranges[0].usage_multiplier = 1.1 + hpxml_bldg.cooking_ranges[0].weekday_fractions = ConstantDaySchedule + hpxml_bldg.cooking_ranges[0].weekend_fractions = ConstantDaySchedule + hpxml_bldg.cooking_ranges[0].monthly_multipliers = ConstantMonthSchedule + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_cooking_range_values(default_hpxml_bldg.cooking_ranges[0], HPXML::LocationBasementConditioned, true, 1.1, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults - hpxml.cooking_ranges[0].location = nil - hpxml.cooking_ranges[0].is_induction = nil - hpxml.cooking_ranges[0].usage_multiplier = nil - hpxml.cooking_ranges[0].weekday_fractions = nil - hpxml.cooking_ranges[0].weekend_fractions = nil - hpxml.cooking_ranges[0].monthly_multipliers = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_cooking_range_values(hpxml_default.cooking_ranges[0], HPXML::LocationLivingSpace, false, 1.0, Schedule.CookingRangeWeekdayFractions, Schedule.CookingRangeWeekendFractions, Schedule.CookingRangeMonthlyMultipliers) + hpxml_bldg.cooking_ranges[0].location = nil + hpxml_bldg.cooking_ranges[0].is_induction = nil + hpxml_bldg.cooking_ranges[0].usage_multiplier = nil + hpxml_bldg.cooking_ranges[0].weekday_fractions = nil + hpxml_bldg.cooking_ranges[0].weekend_fractions = nil + hpxml_bldg.cooking_ranges[0].monthly_multipliers = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_cooking_range_values(default_hpxml_bldg.cooking_ranges[0], HPXML::LocationConditionedSpace, false, 1.0, Schedule.CookingRangeWeekdayFractions, Schedule.CookingRangeWeekendFractions, Schedule.CookingRangeMonthlyMultipliers) # Test defaults before 301-2019 Addendum A hpxml.header.eri_calculation_version = '2019' - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_cooking_range_values(hpxml_default.cooking_ranges[0], HPXML::LocationLivingSpace, false, 1.0, Schedule.CookingRangeWeekdayFractions, Schedule.CookingRangeWeekendFractions, Schedule.CookingRangeMonthlyMultipliers) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_cooking_range_values(default_hpxml_bldg.cooking_ranges[0], HPXML::LocationConditionedSpace, false, 1.0, Schedule.CookingRangeWeekdayFractions, Schedule.CookingRangeWeekendFractions, Schedule.CookingRangeMonthlyMultipliers) end def test_ovens # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.ovens[0].is_convection = true - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_oven_values(hpxml_default.ovens[0], true) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.ovens[0].is_convection = true + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_oven_values(default_hpxml_bldg.ovens[0], true) # Test defaults - hpxml.ovens[0].is_convection = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_oven_values(hpxml_default.ovens[0], false) + hpxml_bldg.ovens[0].is_convection = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_oven_values(default_hpxml_bldg.ovens[0], false) # Test defaults before 301-2019 Addendum A hpxml.header.eri_calculation_version = '2019' - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_oven_values(hpxml_default.ovens[0], false) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_oven_values(default_hpxml_bldg.ovens[0], false) end def test_lighting # Test inputs not overridden by defaults - hpxml = _create_hpxml('base.xml') - hpxml.lighting.interior_usage_multiplier = 2.0 - hpxml.lighting.garage_usage_multiplier = 2.0 - hpxml.lighting.exterior_usage_multiplier = 2.0 - hpxml.lighting.interior_weekday_fractions = ConstantDaySchedule - hpxml.lighting.interior_weekend_fractions = ConstantDaySchedule - hpxml.lighting.interior_monthly_multipliers = ConstantMonthSchedule - hpxml.lighting.exterior_weekday_fractions = ConstantDaySchedule - hpxml.lighting.exterior_weekend_fractions = ConstantDaySchedule - hpxml.lighting.exterior_monthly_multipliers = ConstantMonthSchedule - hpxml.lighting.garage_weekday_fractions = ConstantDaySchedule - hpxml.lighting.garage_weekend_fractions = ConstantDaySchedule - hpxml.lighting.garage_monthly_multipliers = ConstantMonthSchedule - hpxml.lighting.holiday_exists = true - hpxml.lighting.holiday_kwh_per_day = 0.7 - hpxml.lighting.holiday_period_begin_month = 10 - hpxml.lighting.holiday_period_begin_day = 19 - hpxml.lighting.holiday_period_end_month = 12 - hpxml.lighting.holiday_period_end_day = 31 - hpxml.lighting.holiday_weekday_fractions = ConstantDaySchedule - hpxml.lighting.holiday_weekend_fractions = ConstantDaySchedule - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_lighting_values(hpxml_default, 2.0, 2.0, 2.0, + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.lighting.interior_usage_multiplier = 2.0 + hpxml_bldg.lighting.garage_usage_multiplier = 2.0 + hpxml_bldg.lighting.exterior_usage_multiplier = 2.0 + hpxml_bldg.lighting.interior_weekday_fractions = ConstantDaySchedule + hpxml_bldg.lighting.interior_weekend_fractions = ConstantDaySchedule + hpxml_bldg.lighting.interior_monthly_multipliers = ConstantMonthSchedule + hpxml_bldg.lighting.exterior_weekday_fractions = ConstantDaySchedule + hpxml_bldg.lighting.exterior_weekend_fractions = ConstantDaySchedule + hpxml_bldg.lighting.exterior_monthly_multipliers = ConstantMonthSchedule + hpxml_bldg.lighting.garage_weekday_fractions = ConstantDaySchedule + hpxml_bldg.lighting.garage_weekend_fractions = ConstantDaySchedule + hpxml_bldg.lighting.garage_monthly_multipliers = ConstantMonthSchedule + hpxml_bldg.lighting.holiday_exists = true + hpxml_bldg.lighting.holiday_kwh_per_day = 0.7 + hpxml_bldg.lighting.holiday_period_begin_month = 10 + hpxml_bldg.lighting.holiday_period_begin_day = 19 + hpxml_bldg.lighting.holiday_period_end_month = 12 + hpxml_bldg.lighting.holiday_period_end_day = 31 + hpxml_bldg.lighting.holiday_weekday_fractions = ConstantDaySchedule + hpxml_bldg.lighting.holiday_weekend_fractions = ConstantDaySchedule + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_lighting_values(default_hpxml_bldg, 2.0, 2.0, 2.0, { int_wk_sch: ConstantDaySchedule, int_wknd_sch: ConstantDaySchedule, int_month_mult: ConstantMonthSchedule, @@ -3136,38 +3168,38 @@ def test_lighting hol_wknd_sch: ConstantDaySchedule }) # Test defaults - hpxml.lighting.interior_usage_multiplier = nil - hpxml.lighting.garage_usage_multiplier = nil - hpxml.lighting.exterior_usage_multiplier = nil - hpxml.lighting.interior_weekday_fractions = nil - hpxml.lighting.interior_weekend_fractions = nil - hpxml.lighting.interior_monthly_multipliers = nil - hpxml.lighting.exterior_weekday_fractions = nil - hpxml.lighting.exterior_weekend_fractions = nil - hpxml.lighting.exterior_monthly_multipliers = nil - hpxml.lighting.garage_weekday_fractions = nil - hpxml.lighting.garage_weekend_fractions = nil - hpxml.lighting.garage_monthly_multipliers = nil - hpxml.lighting.holiday_exists = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_lighting_values(hpxml_default, 1.0, 1.0, 1.0, + hpxml_bldg.lighting.interior_usage_multiplier = nil + hpxml_bldg.lighting.garage_usage_multiplier = nil + hpxml_bldg.lighting.exterior_usage_multiplier = nil + hpxml_bldg.lighting.interior_weekday_fractions = nil + hpxml_bldg.lighting.interior_weekend_fractions = nil + hpxml_bldg.lighting.interior_monthly_multipliers = nil + hpxml_bldg.lighting.exterior_weekday_fractions = nil + hpxml_bldg.lighting.exterior_weekend_fractions = nil + hpxml_bldg.lighting.exterior_monthly_multipliers = nil + hpxml_bldg.lighting.garage_weekday_fractions = nil + hpxml_bldg.lighting.garage_weekend_fractions = nil + hpxml_bldg.lighting.garage_monthly_multipliers = nil + hpxml_bldg.lighting.holiday_exists = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_lighting_values(default_hpxml_bldg, 1.0, 1.0, 1.0, { ext_wk_sch: Schedule.LightingExteriorWeekdayFractions, ext_wknd_sch: Schedule.LightingExteriorWeekendFractions, ext_month_mult: Schedule.LightingExteriorMonthlyMultipliers }) # Test defaults w/ holiday lighting - hpxml.lighting.holiday_exists = true - hpxml.lighting.holiday_kwh_per_day = nil - hpxml.lighting.holiday_period_begin_month = nil - hpxml.lighting.holiday_period_begin_day = nil - hpxml.lighting.holiday_period_end_month = nil - hpxml.lighting.holiday_period_end_day = nil - hpxml.lighting.holiday_weekday_fractions = nil - hpxml.lighting.holiday_weekend_fractions = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_lighting_values(hpxml_default, 1.0, 1.0, 1.0, + hpxml_bldg.lighting.holiday_exists = true + hpxml_bldg.lighting.holiday_kwh_per_day = nil + hpxml_bldg.lighting.holiday_period_begin_month = nil + hpxml_bldg.lighting.holiday_period_begin_day = nil + hpxml_bldg.lighting.holiday_period_end_month = nil + hpxml_bldg.lighting.holiday_period_end_day = nil + hpxml_bldg.lighting.holiday_weekday_fractions = nil + hpxml_bldg.lighting.holiday_weekend_fractions = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_lighting_values(default_hpxml_bldg, 1.0, 1.0, 1.0, { ext_wk_sch: Schedule.LightingExteriorWeekdayFractions, ext_wknd_sch: Schedule.LightingExteriorWeekendFractions, ext_month_mult: Schedule.LightingExteriorMonthlyMultipliers, @@ -3179,13 +3211,13 @@ def test_lighting hol_wk_sch: Schedule.LightingExteriorHolidayWeekdayFractions, hol_wknd_sch: Schedule.LightingExteriorHolidayWeekendFractions }) # Test defaults w/ garage - hpxml = _create_hpxml('base-enclosure-garage.xml') - hpxml.lighting.interior_usage_multiplier = nil - hpxml.lighting.garage_usage_multiplier = nil - hpxml.lighting.exterior_usage_multiplier = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_lighting_values(hpxml_default, 1.0, 1.0, 1.0, + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-garage.xml') + hpxml_bldg.lighting.interior_usage_multiplier = nil + hpxml_bldg.lighting.garage_usage_multiplier = nil + hpxml_bldg.lighting.exterior_usage_multiplier = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_lighting_values(default_hpxml_bldg, 1.0, 1.0, 1.0, { ext_wk_sch: Schedule.LightingExteriorWeekdayFractions, ext_wknd_sch: Schedule.LightingExteriorWeekendFractions, ext_month_mult: Schedule.LightingExteriorMonthlyMultipliers, @@ -3196,33 +3228,33 @@ def test_lighting def test_ceiling_fans # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-lighting-ceiling-fans.xml') - hpxml.ceiling_fans[0].count = 2 - hpxml.ceiling_fans[0].efficiency = 100 - hpxml.ceiling_fans[0].weekday_fractions = ConstantDaySchedule - hpxml.ceiling_fans[0].weekend_fractions = ConstantDaySchedule - hpxml.ceiling_fans[0].monthly_multipliers = ConstantMonthSchedule - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_ceiling_fan_values(hpxml_default.ceiling_fans[0], 2, 100, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + hpxml, hpxml_bldg = _create_hpxml('base-lighting-ceiling-fans.xml') + hpxml_bldg.ceiling_fans[0].count = 2 + hpxml_bldg.ceiling_fans[0].efficiency = 100 + hpxml_bldg.ceiling_fans[0].weekday_fractions = ConstantDaySchedule + hpxml_bldg.ceiling_fans[0].weekend_fractions = ConstantDaySchedule + hpxml_bldg.ceiling_fans[0].monthly_multipliers = ConstantMonthSchedule + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_ceiling_fan_values(default_hpxml_bldg.ceiling_fans[0], 2, 100, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults - hpxml.ceiling_fans.each do |ceiling_fan| + hpxml_bldg.ceiling_fans.each do |ceiling_fan| ceiling_fan.count = nil ceiling_fan.efficiency = nil ceiling_fan.weekday_fractions = nil ceiling_fan.weekend_fractions = nil ceiling_fan.monthly_multipliers = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_ceiling_fan_values(hpxml_default.ceiling_fans[0], 4, 70.4, Schedule.CeilingFanWeekdayFractions, Schedule.CeilingFanWeekendFractions, '0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0') + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_ceiling_fan_values(default_hpxml_bldg.ceiling_fans[0], 4, 70.4, Schedule.CeilingFanWeekdayFractions, Schedule.CeilingFanWeekendFractions, '0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0') end def test_pools # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-misc-loads-large-uncommon.xml') - pool = hpxml.pools[0] + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon.xml') + pool = hpxml_bldg.pools[0] pool.heater_load_units = HPXML::UnitsKwhPerYear pool.heater_load_value = 1000 pool.heater_usage_multiplier = 1.4 @@ -3234,13 +3266,13 @@ def test_pools pool.pump_weekday_fractions = ConstantDaySchedule pool.pump_weekend_fractions = ConstantDaySchedule pool.pump_monthly_multipliers = ConstantMonthSchedule - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_pool_heater_values(hpxml_default.pools[0], HPXML::UnitsKwhPerYear, 1000, 1.4, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) - _test_default_pool_pump_values(hpxml_default.pools[0], 3000, 1.3, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_pool_heater_values(default_hpxml_bldg.pools[0], HPXML::UnitsKwhPerYear, 1000, 1.4, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_pool_pump_values(default_hpxml_bldg.pools[0], 3000, 1.3, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults - pool = hpxml.pools[0] + pool = hpxml_bldg.pools[0] pool.heater_load_units = nil pool.heater_load_value = nil pool.heater_usage_multiplier = nil @@ -3252,14 +3284,14 @@ def test_pools pool.pump_weekday_fractions = nil pool.pump_weekend_fractions = nil pool.pump_monthly_multipliers = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_pool_heater_values(hpxml_default.pools[0], HPXML::UnitsThermPerYear, 236, 1.0, Schedule.PoolHeaterWeekdayFractions, Schedule.PoolHeaterWeekendFractions, Schedule.PoolHeaterMonthlyMultipliers) - _test_default_pool_pump_values(hpxml_default.pools[0], 2496, 1.0, Schedule.PoolPumpWeekdayFractions, Schedule.PoolPumpWeekendFractions, Schedule.PoolPumpMonthlyMultipliers) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_pool_heater_values(default_hpxml_bldg.pools[0], HPXML::UnitsThermPerYear, 236, 1.0, Schedule.PoolHeaterWeekdayFractions, Schedule.PoolHeaterWeekendFractions, Schedule.PoolHeaterMonthlyMultipliers) + _test_default_pool_pump_values(default_hpxml_bldg.pools[0], 2496, 1.0, Schedule.PoolPumpWeekdayFractions, Schedule.PoolPumpWeekendFractions, Schedule.PoolPumpMonthlyMultipliers) # Test defaults 2 - hpxml = _create_hpxml('base-misc-loads-large-uncommon2.xml') - pool = hpxml.pools[0] + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon2.xml') + pool = hpxml_bldg.pools[0] pool.heater_load_units = nil pool.heater_load_value = nil pool.heater_usage_multiplier = nil @@ -3271,74 +3303,74 @@ def test_pools pool.pump_weekday_fractions = nil pool.pump_weekend_fractions = nil pool.pump_monthly_multipliers = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_pool_heater_values(hpxml_default.pools[0], nil, nil, nil, nil, nil, nil) - _test_default_pool_pump_values(hpxml_default.pools[0], 2496, 1.0, Schedule.PoolPumpWeekdayFractions, Schedule.PoolPumpWeekendFractions, Schedule.PoolPumpMonthlyMultipliers) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_pool_heater_values(default_hpxml_bldg.pools[0], nil, nil, nil, nil, nil, nil) + _test_default_pool_pump_values(default_hpxml_bldg.pools[0], 2496, 1.0, Schedule.PoolPumpWeekdayFractions, Schedule.PoolPumpWeekendFractions, Schedule.PoolPumpMonthlyMultipliers) end - def test_hot_tubs + def test_permanent_spas # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-misc-loads-large-uncommon.xml') - hot_tub = hpxml.hot_tubs[0] - hot_tub.heater_load_units = HPXML::UnitsThermPerYear - hot_tub.heater_load_value = 1000 - hot_tub.heater_usage_multiplier = 0.8 - hot_tub.heater_weekday_fractions = ConstantDaySchedule - hot_tub.heater_weekend_fractions = ConstantDaySchedule - hot_tub.heater_monthly_multipliers = ConstantMonthSchedule - hot_tub.pump_kwh_per_year = 3000 - hot_tub.pump_usage_multiplier = 0.7 - hot_tub.pump_weekday_fractions = ConstantDaySchedule - hot_tub.pump_weekend_fractions = ConstantDaySchedule - hot_tub.pump_monthly_multipliers = ConstantMonthSchedule - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_hot_tub_heater_values(hpxml_default.hot_tubs[0], HPXML::UnitsThermPerYear, 1000, 0.8, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) - _test_default_hot_tub_pump_values(hpxml_default.hot_tubs[0], 3000, 0.7, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon.xml') + spa = hpxml_bldg.permanent_spas[0] + spa.heater_load_units = HPXML::UnitsThermPerYear + spa.heater_load_value = 1000 + spa.heater_usage_multiplier = 0.8 + spa.heater_weekday_fractions = ConstantDaySchedule + spa.heater_weekend_fractions = ConstantDaySchedule + spa.heater_monthly_multipliers = ConstantMonthSchedule + spa.pump_kwh_per_year = 3000 + spa.pump_usage_multiplier = 0.7 + spa.pump_weekday_fractions = ConstantDaySchedule + spa.pump_weekend_fractions = ConstantDaySchedule + spa.pump_monthly_multipliers = ConstantMonthSchedule + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_permanent_spa_heater_values(default_hpxml_bldg.permanent_spas[0], HPXML::UnitsThermPerYear, 1000, 0.8, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_permanent_spa_pump_values(default_hpxml_bldg.permanent_spas[0], 3000, 0.7, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults - hot_tub = hpxml.hot_tubs[0] - hot_tub.heater_load_units = nil - hot_tub.heater_load_value = nil - hot_tub.heater_usage_multiplier = nil - hot_tub.heater_weekday_fractions = nil - hot_tub.heater_weekend_fractions = nil - hot_tub.heater_monthly_multipliers = nil - hot_tub.pump_kwh_per_year = nil - hot_tub.pump_usage_multiplier = nil - hot_tub.pump_weekday_fractions = nil - hot_tub.pump_weekend_fractions = nil - hot_tub.pump_monthly_multipliers = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_hot_tub_heater_values(hpxml_default.hot_tubs[0], HPXML::UnitsKwhPerYear, 1125, 1.0, Schedule.HotTubHeaterWeekdayFractions, Schedule.HotTubHeaterWeekendFractions, Schedule.HotTubHeaterMonthlyMultipliers) - _test_default_hot_tub_pump_values(hpxml_default.hot_tubs[0], 1111, 1.0, Schedule.HotTubPumpWeekdayFractions, Schedule.HotTubPumpWeekendFractions, Schedule.HotTubPumpMonthlyMultipliers) + spa = hpxml_bldg.permanent_spas[0] + spa.heater_load_units = nil + spa.heater_load_value = nil + spa.heater_usage_multiplier = nil + spa.heater_weekday_fractions = nil + spa.heater_weekend_fractions = nil + spa.heater_monthly_multipliers = nil + spa.pump_kwh_per_year = nil + spa.pump_usage_multiplier = nil + spa.pump_weekday_fractions = nil + spa.pump_weekend_fractions = nil + spa.pump_monthly_multipliers = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_permanent_spa_heater_values(default_hpxml_bldg.permanent_spas[0], HPXML::UnitsKwhPerYear, 1125, 1.0, Schedule.PermanentSpaHeaterWeekdayFractions, Schedule.PermanentSpaHeaterWeekendFractions, Schedule.PermanentSpaHeaterMonthlyMultipliers) + _test_default_permanent_spa_pump_values(default_hpxml_bldg.permanent_spas[0], 1111, 1.0, Schedule.PermanentSpaPumpWeekdayFractions, Schedule.PermanentSpaPumpWeekendFractions, Schedule.PermanentSpaPumpMonthlyMultipliers) # Test defaults 2 - hpxml = _create_hpxml('base-misc-loads-large-uncommon2.xml') - hot_tub = hpxml.hot_tubs[0] - hot_tub.heater_load_units = nil - hot_tub.heater_load_value = nil - hot_tub.heater_usage_multiplier = nil - hot_tub.heater_weekday_fractions = nil - hot_tub.heater_weekend_fractions = nil - hot_tub.heater_monthly_multipliers = nil - hot_tub.pump_kwh_per_year = nil - hot_tub.pump_usage_multiplier = nil - hot_tub.pump_weekday_fractions = nil - hot_tub.pump_weekend_fractions = nil - hot_tub.pump_monthly_multipliers = nil - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_hot_tub_heater_values(hpxml_default.hot_tubs[0], HPXML::UnitsKwhPerYear, 225, 1.0, Schedule.HotTubHeaterWeekdayFractions, Schedule.HotTubHeaterWeekendFractions, Schedule.HotTubHeaterMonthlyMultipliers) - _test_default_hot_tub_pump_values(hpxml_default.hot_tubs[0], 1111, 1.0, Schedule.HotTubPumpWeekdayFractions, Schedule.HotTubPumpWeekendFractions, Schedule.HotTubPumpMonthlyMultipliers) + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon2.xml') + spa = hpxml_bldg.permanent_spas[0] + spa.heater_load_units = nil + spa.heater_load_value = nil + spa.heater_usage_multiplier = nil + spa.heater_weekday_fractions = nil + spa.heater_weekend_fractions = nil + spa.heater_monthly_multipliers = nil + spa.pump_kwh_per_year = nil + spa.pump_usage_multiplier = nil + spa.pump_weekday_fractions = nil + spa.pump_weekend_fractions = nil + spa.pump_monthly_multipliers = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_permanent_spa_heater_values(default_hpxml_bldg.permanent_spas[0], HPXML::UnitsKwhPerYear, 225, 1.0, Schedule.PermanentSpaHeaterWeekdayFractions, Schedule.PermanentSpaHeaterWeekendFractions, Schedule.PermanentSpaHeaterMonthlyMultipliers) + _test_default_permanent_spa_pump_values(default_hpxml_bldg.permanent_spas[0], 1111, 1.0, Schedule.PermanentSpaPumpWeekdayFractions, Schedule.PermanentSpaPumpWeekendFractions, Schedule.PermanentSpaPumpMonthlyMultipliers) end def test_plug_loads # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-misc-loads-large-uncommon.xml') - tv_pl = hpxml.plug_loads.find { |pl| pl.plug_load_type == HPXML::PlugLoadTypeTelevision } + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon.xml') + tv_pl = hpxml_bldg.plug_loads.find { |pl| pl.plug_load_type == HPXML::PlugLoadTypeTelevision } tv_pl.kwh_per_year = 1000 tv_pl.usage_multiplier = 1.1 tv_pl.frac_sensible = 0.6 @@ -3346,7 +3378,7 @@ def test_plug_loads tv_pl.weekday_fractions = ConstantDaySchedule tv_pl.weekend_fractions = ConstantDaySchedule tv_pl.monthly_multipliers = ConstantMonthSchedule - other_pl = hpxml.plug_loads.find { |pl| pl.plug_load_type == HPXML::PlugLoadTypeOther } + other_pl = hpxml_bldg.plug_loads.find { |pl| pl.plug_load_type == HPXML::PlugLoadTypeOther } other_pl.kwh_per_year = 2000 other_pl.usage_multiplier = 1.2 other_pl.frac_sensible = 0.5 @@ -3354,7 +3386,7 @@ def test_plug_loads other_pl.weekday_fractions = ConstantDaySchedule other_pl.weekend_fractions = ConstantDaySchedule other_pl.monthly_multipliers = ConstantMonthSchedule - veh_pl = hpxml.plug_loads.find { |pl| pl.plug_load_type == HPXML::PlugLoadTypeElectricVehicleCharging } + veh_pl = hpxml_bldg.plug_loads.find { |pl| pl.plug_load_type == HPXML::PlugLoadTypeElectricVehicleCharging } veh_pl.kwh_per_year = 4000 veh_pl.usage_multiplier = 1.3 veh_pl.frac_sensible = 0.4 @@ -3362,7 +3394,7 @@ def test_plug_loads veh_pl.weekday_fractions = ConstantDaySchedule veh_pl.weekend_fractions = ConstantDaySchedule veh_pl.monthly_multipliers = ConstantMonthSchedule - wellpump_pl = hpxml.plug_loads.find { |pl| pl.plug_load_type == HPXML::PlugLoadTypeWellPump } + wellpump_pl = hpxml_bldg.plug_loads.find { |pl| pl.plug_load_type == HPXML::PlugLoadTypeWellPump } wellpump_pl.kwh_per_year = 3000 wellpump_pl.usage_multiplier = 1.4 wellpump_pl.frac_sensible = 0.3 @@ -3370,15 +3402,15 @@ def test_plug_loads wellpump_pl.weekday_fractions = ConstantDaySchedule wellpump_pl.weekend_fractions = ConstantDaySchedule wellpump_pl.monthly_multipliers = ConstantMonthSchedule - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeTelevision, 1000, 0.6, 0.3, 1.1, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) - _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeOther, 2000, 0.5, 0.4, 1.2, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) - _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeElectricVehicleCharging, 4000, 0.4, 0.5, 1.3, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) - _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeWellPump, 3000, 0.3, 0.6, 1.4, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeTelevision, 1000, 0.6, 0.3, 1.1, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeOther, 2000, 0.5, 0.4, 1.2, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeElectricVehicleCharging, 4000, 0.4, 0.5, 1.3, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeWellPump, 3000, 0.3, 0.6, 1.4, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults - hpxml.plug_loads.each do |plug_load| + hpxml_bldg.plug_loads.each do |plug_load| plug_load.kwh_per_year = nil plug_load.usage_multiplier = nil plug_load.frac_sensible = nil @@ -3387,18 +3419,18 @@ def test_plug_loads plug_load.weekend_fractions = nil plug_load.monthly_multipliers = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeTelevision, 620, 1.0, 0.0, 1.0, Schedule.PlugLoadsTVWeekdayFractions, Schedule.PlugLoadsTVWeekendFractions, Schedule.PlugLoadsTVMonthlyMultipliers) - _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeOther, 2457, 0.855, 0.045, 1.0, Schedule.PlugLoadsOtherWeekdayFractions, Schedule.PlugLoadsOtherWeekendFractions, Schedule.PlugLoadsOtherMonthlyMultipliers) - _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeElectricVehicleCharging, 1667, 0.0, 0.0, 1.0, Schedule.PlugLoadsVehicleWeekdayFractions, Schedule.PlugLoadsVehicleWeekendFractions, Schedule.PlugLoadsVehicleMonthlyMultipliers) - _test_default_plug_load_values(hpxml_default, HPXML::PlugLoadTypeWellPump, 441, 0.0, 0.0, 1.0, Schedule.PlugLoadsWellPumpWeekdayFractions, Schedule.PlugLoadsWellPumpWeekendFractions, Schedule.PlugLoadsWellPumpMonthlyMultipliers) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeTelevision, 620, 1.0, 0.0, 1.0, Schedule.PlugLoadsTVWeekdayFractions, Schedule.PlugLoadsTVWeekendFractions, Schedule.PlugLoadsTVMonthlyMultipliers) + _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeOther, 2457, 0.855, 0.045, 1.0, Schedule.PlugLoadsOtherWeekdayFractions, Schedule.PlugLoadsOtherWeekendFractions, Schedule.PlugLoadsOtherMonthlyMultipliers) + _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeElectricVehicleCharging, 1667, 0.0, 0.0, 1.0, Schedule.PlugLoadsVehicleWeekdayFractions, Schedule.PlugLoadsVehicleWeekendFractions, Schedule.PlugLoadsVehicleMonthlyMultipliers) + _test_default_plug_load_values(default_hpxml_bldg, HPXML::PlugLoadTypeWellPump, 441, 0.0, 0.0, 1.0, Schedule.PlugLoadsWellPumpWeekdayFractions, Schedule.PlugLoadsWellPumpWeekendFractions, Schedule.PlugLoadsWellPumpMonthlyMultipliers) end def test_fuel_loads # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-misc-loads-large-uncommon.xml') - gg_fl = hpxml.fuel_loads.find { |fl| fl.fuel_load_type == HPXML::FuelLoadTypeGrill } + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon.xml') + gg_fl = hpxml_bldg.fuel_loads.find { |fl| fl.fuel_load_type == HPXML::FuelLoadTypeGrill } gg_fl.therm_per_year = 1000 gg_fl.usage_multiplier = 0.9 gg_fl.frac_sensible = 0.6 @@ -3406,7 +3438,7 @@ def test_fuel_loads gg_fl.weekday_fractions = ConstantDaySchedule gg_fl.weekend_fractions = ConstantDaySchedule gg_fl.monthly_multipliers = ConstantMonthSchedule - gl_fl = hpxml.fuel_loads.find { |fl| fl.fuel_load_type == HPXML::FuelLoadTypeLighting } + gl_fl = hpxml_bldg.fuel_loads.find { |fl| fl.fuel_load_type == HPXML::FuelLoadTypeLighting } gl_fl.therm_per_year = 2000 gl_fl.usage_multiplier = 0.8 gl_fl.frac_sensible = 0.5 @@ -3414,7 +3446,7 @@ def test_fuel_loads gl_fl.weekday_fractions = ConstantDaySchedule gl_fl.weekend_fractions = ConstantDaySchedule gl_fl.monthly_multipliers = ConstantMonthSchedule - gf_fl = hpxml.fuel_loads.find { |fl| fl.fuel_load_type == HPXML::FuelLoadTypeFireplace } + gf_fl = hpxml_bldg.fuel_loads.find { |fl| fl.fuel_load_type == HPXML::FuelLoadTypeFireplace } gf_fl.therm_per_year = 3000 gf_fl.usage_multiplier = 0.7 gf_fl.frac_sensible = 0.4 @@ -3422,14 +3454,14 @@ def test_fuel_loads gf_fl.weekday_fractions = ConstantDaySchedule gf_fl.weekend_fractions = ConstantDaySchedule gf_fl.monthly_multipliers = ConstantMonthSchedule - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_fuel_load_values(hpxml_default, HPXML::FuelLoadTypeGrill, 1000, 0.6, 0.3, 0.9, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) - _test_default_fuel_load_values(hpxml_default, HPXML::FuelLoadTypeLighting, 2000, 0.5, 0.4, 0.8, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) - _test_default_fuel_load_values(hpxml_default, HPXML::FuelLoadTypeFireplace, 3000, 0.4, 0.5, 0.7, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_fuel_load_values(default_hpxml_bldg, HPXML::FuelLoadTypeGrill, 1000, 0.6, 0.3, 0.9, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_fuel_load_values(default_hpxml_bldg, HPXML::FuelLoadTypeLighting, 2000, 0.5, 0.4, 0.8, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) + _test_default_fuel_load_values(default_hpxml_bldg, HPXML::FuelLoadTypeFireplace, 3000, 0.4, 0.5, 0.7, ConstantDaySchedule, ConstantDaySchedule, ConstantMonthSchedule) # Test defaults - hpxml.fuel_loads.each do |fuel_load| + hpxml_bldg.fuel_loads.each do |fuel_load| fuel_load.therm_per_year = nil fuel_load.usage_multiplier = nil fuel_load.frac_sensible = nil @@ -3438,11 +3470,11 @@ def test_fuel_loads fuel_load.weekend_fractions = nil fuel_load.monthly_multipliers = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_fuel_load_values(hpxml_default, HPXML::FuelLoadTypeGrill, 33, 0.0, 0.0, 1.0, Schedule.FuelLoadsGrillWeekdayFractions, Schedule.FuelLoadsGrillWeekendFractions, Schedule.FuelLoadsGrillMonthlyMultipliers) - _test_default_fuel_load_values(hpxml_default, HPXML::FuelLoadTypeLighting, 20, 0.0, 0.0, 1.0, Schedule.FuelLoadsLightingWeekdayFractions, Schedule.FuelLoadsLightingWeekendFractions, Schedule.FuelLoadsLightingMonthlyMultipliers) - _test_default_fuel_load_values(hpxml_default, HPXML::FuelLoadTypeFireplace, 67, 0.5, 0.1, 1.0, Schedule.FuelLoadsFireplaceWeekdayFractions, Schedule.FuelLoadsFireplaceWeekendFractions, Schedule.FuelLoadsFireplaceMonthlyMultipliers) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_fuel_load_values(default_hpxml_bldg, HPXML::FuelLoadTypeGrill, 33, 0.0, 0.0, 1.0, Schedule.FuelLoadsGrillWeekdayFractions, Schedule.FuelLoadsGrillWeekendFractions, Schedule.FuelLoadsGrillMonthlyMultipliers) + _test_default_fuel_load_values(default_hpxml_bldg, HPXML::FuelLoadTypeLighting, 20, 0.0, 0.0, 1.0, Schedule.FuelLoadsLightingWeekdayFractions, Schedule.FuelLoadsLightingWeekendFractions, Schedule.FuelLoadsLightingMonthlyMultipliers) + _test_default_fuel_load_values(default_hpxml_bldg, HPXML::FuelLoadTypeFireplace, 67, 0.5, 0.1, 1.0, Schedule.FuelLoadsFireplaceWeekdayFractions, Schedule.FuelLoadsFireplaceWeekendFractions, Schedule.FuelLoadsFireplaceMonthlyMultipliers) end def _test_measure() @@ -3475,43 +3507,20 @@ def _test_measure() # assert that it ran correctly assert_equal('Success', result.value.valueName) - hpxml_default = HPXML.new(hpxml_path: File.join(@tmp_output_path, 'in.xml')) + default_hpxml = HPXML.new(hpxml_path: File.join(@tmp_output_path, 'in.xml')) - return hpxml_default + return default_hpxml, default_hpxml.buildings[0] end - def _test_default_header_values(hpxml, tstep, sim_begin_month, sim_begin_day, sim_end_month, sim_end_day, sim_calendar_year, - dst_enabled, dst_begin_month, dst_begin_day, dst_end_month, dst_end_day, heat_pump_sizing_methodology, - allow_increased_fixed_capacities, state_code, time_zone_utc_offset, temperature_capacitance_multiplier, - natvent_days_per_week, unavailable_period_begin_hour, unavailable_period_end_hour, unavailable_period_natvent_availability, - shading_summer_begin_month, shading_summer_begin_day, shading_summer_end_month, shading_summer_end_day, - manualj_heating_design_temp, manualj_cooling_design_temp, manualj_heating_setpoint, manualj_cooling_setpoint, - manualj_humidity_setpoint, manualj_internal_loads_sensible, manualj_internal_loads_latent, manualj_num_occupants) + def _test_default_header_values(hpxml, tstep, sim_begin_month, sim_begin_day, sim_end_month, sim_end_day, sim_calendar_year, temperature_capacitance_multiplier, + unavailable_period_begin_hour, unavailable_period_end_hour, unavailable_period_natvent_availability) assert_equal(tstep, hpxml.header.timestep) assert_equal(sim_begin_month, hpxml.header.sim_begin_month) assert_equal(sim_begin_day, hpxml.header.sim_begin_day) assert_equal(sim_end_month, hpxml.header.sim_end_month) assert_equal(sim_end_day, hpxml.header.sim_end_day) assert_equal(sim_calendar_year, hpxml.header.sim_calendar_year) - assert_equal(dst_enabled, hpxml.header.dst_enabled) - assert_equal(dst_begin_month, hpxml.header.dst_begin_month) - assert_equal(dst_begin_day, hpxml.header.dst_begin_day) - assert_equal(dst_end_month, hpxml.header.dst_end_month) - assert_equal(dst_end_day, hpxml.header.dst_end_day) - if heat_pump_sizing_methodology.nil? - assert_nil(hpxml.header.heat_pump_sizing_methodology) - else - assert_equal(heat_pump_sizing_methodology, hpxml.header.heat_pump_sizing_methodology) - end - assert_equal(allow_increased_fixed_capacities, hpxml.header.allow_increased_fixed_capacities) - if state_code.nil? - assert_nil(hpxml.header.state_code) - else - assert_equal(state_code, hpxml.header.state_code) - end - assert_equal(time_zone_utc_offset, hpxml.header.time_zone_utc_offset) assert_equal(temperature_capacitance_multiplier, hpxml.header.temperature_capacitance_multiplier) - assert_equal(natvent_days_per_week, hpxml.header.natvent_days_per_week) if unavailable_period_begin_hour.nil? && unavailable_period_end_hour.nil? && unavailable_period_natvent_availability.nil? assert_equal(0, hpxml.header.unavailable_periods.size) else @@ -3519,18 +3528,6 @@ def _test_default_header_values(hpxml, tstep, sim_begin_month, sim_begin_day, si assert_equal(unavailable_period_end_hour, hpxml.header.unavailable_periods[-1].end_hour) assert_equal(unavailable_period_natvent_availability, hpxml.header.unavailable_periods[-1].natvent_availability) end - assert_equal(shading_summer_begin_month, hpxml.header.shading_summer_begin_month) - assert_equal(shading_summer_begin_day, hpxml.header.shading_summer_begin_day) - assert_equal(shading_summer_end_month, hpxml.header.shading_summer_end_month) - assert_equal(shading_summer_end_day, hpxml.header.shading_summer_end_day) - assert_in_epsilon(manualj_heating_design_temp, hpxml.header.manualj_heating_design_temp, 0.01) - assert_in_epsilon(manualj_cooling_design_temp, hpxml.header.manualj_cooling_design_temp, 0.01) - assert_equal(manualj_heating_setpoint, hpxml.header.manualj_heating_setpoint) - assert_equal(manualj_cooling_setpoint, hpxml.header.manualj_cooling_setpoint) - assert_equal(manualj_humidity_setpoint, hpxml.header.manualj_humidity_setpoint) - assert_equal(manualj_internal_loads_sensible, hpxml.header.manualj_internal_loads_sensible) - assert_equal(manualj_internal_loads_latent, hpxml.header.manualj_internal_loads_latent) - assert_equal(manualj_num_occupants, hpxml.header.manualj_num_occupants) end def _test_default_emissions_values(scenario, elec_schedule_number_of_header_rows, elec_schedule_column_number, @@ -3690,59 +3687,97 @@ def _test_default_bills_values(scenario, end end - def _test_default_site_values(hpxml, site_type, shielding_of_home, ground_conductivity) - assert_equal(site_type, hpxml.site.site_type) - assert_equal(shielding_of_home, hpxml.site.shielding_of_home) - assert_equal(ground_conductivity, hpxml.site.ground_conductivity) - end - - def _test_default_neighbor_building_values(hpxml, azimuths) - assert_equal(azimuths.size, hpxml.neighbor_buildings.size) - hpxml.neighbor_buildings.each_with_index do |neighbor_building, idx| + def _test_default_building_values(hpxml_bldg, dst_enabled, dst_begin_month, dst_begin_day, dst_end_month, dst_end_day, + state_code, time_zone_utc_offset, natvent_days_per_week, heat_pump_sizing_methodology, allow_increased_fixed_capacities, + shading_summer_begin_month, shading_summer_begin_day, shading_summer_end_month, shading_summer_end_day, + manualj_heating_design_temp, manualj_cooling_design_temp, manualj_heating_setpoint, manualj_cooling_setpoint, + manualj_humidity_setpoint, manualj_internal_loads_sensible, manualj_internal_loads_latent, manualj_num_occupants) + assert_equal(dst_enabled, hpxml_bldg.dst_enabled) + assert_equal(dst_begin_month, hpxml_bldg.dst_begin_month) + assert_equal(dst_begin_day, hpxml_bldg.dst_begin_day) + assert_equal(dst_end_month, hpxml_bldg.dst_end_month) + assert_equal(dst_end_day, hpxml_bldg.dst_end_day) + if state_code.nil? + assert_nil(hpxml_bldg.state_code) + else + assert_equal(state_code, hpxml_bldg.state_code) + end + assert_equal(time_zone_utc_offset, hpxml_bldg.time_zone_utc_offset) + assert_equal(natvent_days_per_week, hpxml_bldg.header.natvent_days_per_week) + if heat_pump_sizing_methodology.nil? + assert_nil(hpxml_bldg.header.heat_pump_sizing_methodology) + else + assert_equal(heat_pump_sizing_methodology, hpxml_bldg.header.heat_pump_sizing_methodology) + end + assert_equal(allow_increased_fixed_capacities, hpxml_bldg.header.allow_increased_fixed_capacities) + assert_equal(shading_summer_begin_month, hpxml_bldg.header.shading_summer_begin_month) + assert_equal(shading_summer_begin_day, hpxml_bldg.header.shading_summer_begin_day) + assert_equal(shading_summer_end_month, hpxml_bldg.header.shading_summer_end_month) + assert_equal(shading_summer_end_day, hpxml_bldg.header.shading_summer_end_day) + assert_in_epsilon(manualj_heating_design_temp, hpxml_bldg.header.manualj_heating_design_temp, 0.01) + assert_in_epsilon(manualj_cooling_design_temp, hpxml_bldg.header.manualj_cooling_design_temp, 0.01) + assert_equal(manualj_heating_setpoint, hpxml_bldg.header.manualj_heating_setpoint) + assert_equal(manualj_cooling_setpoint, hpxml_bldg.header.manualj_cooling_setpoint) + assert_equal(manualj_humidity_setpoint, hpxml_bldg.header.manualj_humidity_setpoint) + assert_equal(manualj_internal_loads_sensible, hpxml_bldg.header.manualj_internal_loads_sensible) + assert_equal(manualj_internal_loads_latent, hpxml_bldg.header.manualj_internal_loads_latent) + assert_equal(manualj_num_occupants, hpxml_bldg.header.manualj_num_occupants) + end + + def _test_default_site_values(hpxml_bldg, site_type, shielding_of_home, ground_conductivity) + assert_equal(site_type, hpxml_bldg.site.site_type) + assert_equal(shielding_of_home, hpxml_bldg.site.shielding_of_home) + assert_equal(ground_conductivity, hpxml_bldg.site.ground_conductivity) + end + + def _test_default_neighbor_building_values(hpxml_bldg, azimuths) + assert_equal(azimuths.size, hpxml_bldg.neighbor_buildings.size) + hpxml_bldg.neighbor_buildings.each_with_index do |neighbor_building, idx| assert_equal(azimuths[idx], neighbor_building.azimuth) end end - def _test_default_occupancy_values(hpxml, weekday_sch, weekend_sch, monthly_mults) + def _test_default_occupancy_values(hpxml_bldg, weekday_sch, weekend_sch, monthly_mults) if weekday_sch.nil? - assert_nil(hpxml.building_occupancy.weekday_fractions) + assert_nil(hpxml_bldg.building_occupancy.weekday_fractions) else - assert_equal(weekday_sch, hpxml.building_occupancy.weekday_fractions) + assert_equal(weekday_sch, hpxml_bldg.building_occupancy.weekday_fractions) end if weekend_sch.nil? - assert_nil(hpxml.building_occupancy.weekend_fractions) + assert_nil(hpxml_bldg.building_occupancy.weekend_fractions) else - assert_equal(weekend_sch, hpxml.building_occupancy.weekend_fractions) + assert_equal(weekend_sch, hpxml_bldg.building_occupancy.weekend_fractions) end if monthly_mults.nil? - assert_nil(hpxml.building_occupancy.monthly_multipliers) + assert_nil(hpxml_bldg.building_occupancy.monthly_multipliers) else - assert_equal(monthly_mults, hpxml.building_occupancy.monthly_multipliers) + assert_equal(monthly_mults, hpxml_bldg.building_occupancy.monthly_multipliers) end end - def _test_default_climate_and_risk_zones_values(hpxml, iecc_year, iecc_zone) + def _test_default_climate_and_risk_zones_values(hpxml_bldg, iecc_year, iecc_zone) if iecc_year.nil? - assert_equal(0, hpxml.climate_and_risk_zones.climate_zone_ieccs.size) + assert_equal(0, hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs.size) else - assert_equal(iecc_year, hpxml.climate_and_risk_zones.climate_zone_ieccs[0].year) + assert_equal(iecc_year, hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs[0].year) end if iecc_zone.nil? - assert_equal(0, hpxml.climate_and_risk_zones.climate_zone_ieccs.size) + assert_equal(0, hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs.size) else - assert_equal(iecc_zone, hpxml.climate_and_risk_zones.climate_zone_ieccs[0].zone) + assert_equal(iecc_zone, hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs[0].zone) end end - def _test_default_building_construction_values(hpxml, building_volume, average_ceiling_height, n_bathrooms) - assert_equal(building_volume, hpxml.building_construction.conditioned_building_volume) - assert_in_epsilon(average_ceiling_height, hpxml.building_construction.average_ceiling_height, 0.01) - assert_equal(n_bathrooms, hpxml.building_construction.number_of_bathrooms) + def _test_default_building_construction_values(hpxml_bldg, building_volume, average_ceiling_height, n_bathrooms, n_units) + assert_equal(building_volume, hpxml_bldg.building_construction.conditioned_building_volume) + assert_in_epsilon(average_ceiling_height, hpxml_bldg.building_construction.average_ceiling_height, 0.01) + assert_equal(n_bathrooms, hpxml_bldg.building_construction.number_of_bathrooms) + assert_equal(n_units, hpxml_bldg.building_construction.number_of_units) end - def _test_default_infiltration_values(hpxml, volume, has_flue_or_chimney_in_conditioned_space) - assert_equal(volume, hpxml.air_infiltration_measurements[0].infiltration_volume) - assert_equal(has_flue_or_chimney_in_conditioned_space, hpxml.air_infiltration.has_flue_or_chimney_in_conditioned_space) + def _test_default_infiltration_values(hpxml_bldg, volume, has_flue_or_chimney_in_conditioned_space) + assert_equal(volume, hpxml_bldg.air_infiltration_measurements[0].infiltration_volume) + assert_equal(has_flue_or_chimney_in_conditioned_space, hpxml_bldg.air_infiltration.has_flue_or_chimney_in_conditioned_space) end def _test_default_infiltration_compartmentalization_test_values(air_infiltration_measurement, a_ext) @@ -3835,15 +3870,20 @@ def _test_default_floor_values(floor, int_finish_type, int_finish_thickness) end end - def _test_default_slab_values(slab, thickness, carpet_r_value, carpet_fraction) + def _test_default_slab_values(slab, thickness, carpet_r_value, carpet_fraction, depth_below_grade) assert_equal(thickness, slab.thickness) assert_equal(carpet_r_value, slab.carpet_r_value) assert_equal(carpet_fraction, slab.carpet_fraction) + if depth_below_grade.nil? + assert_nil(slab.depth_below_grade) + else + assert_equal(depth_below_grade, slab.depth_below_grade) + end end - def _test_default_window_values(hpxml, ext_summer_sfs, ext_winter_sfs, int_summer_sfs, int_winter_sfs, fraction_operable, azimuths) - assert_equal(ext_summer_sfs.size, hpxml.windows.size) - hpxml.windows.each_with_index do |window, idx| + def _test_default_window_values(hpxml_bldg, ext_summer_sfs, ext_winter_sfs, int_summer_sfs, int_winter_sfs, fraction_operable, azimuths) + assert_equal(ext_summer_sfs.size, hpxml_bldg.windows.size) + hpxml_bldg.windows.each_with_index do |window, idx| assert_equal(ext_summer_sfs[idx], window.exterior_shading_factor_summer) assert_equal(ext_winter_sfs[idx], window.exterior_shading_factor_winter) assert_equal(int_summer_sfs[idx], window.interior_shading_factor_summer) @@ -3853,9 +3893,9 @@ def _test_default_window_values(hpxml, ext_summer_sfs, ext_winter_sfs, int_summe end end - def _test_default_skylight_values(hpxml, ext_summer_sfs, ext_winter_sfs, int_summer_sfs, int_winter_sfs, azimuths) - assert_equal(ext_summer_sfs.size, hpxml.skylights.size) - hpxml.skylights.each_with_index do |skylight, idx| + def _test_default_skylight_values(hpxml_bldg, ext_summer_sfs, ext_winter_sfs, int_summer_sfs, int_winter_sfs, azimuths) + assert_equal(ext_summer_sfs.size, hpxml_bldg.skylights.size) + hpxml_bldg.skylights.each_with_index do |skylight, idx| assert_equal(ext_summer_sfs[idx], skylight.exterior_shading_factor_summer) assert_equal(ext_winter_sfs[idx], skylight.exterior_shading_factor_winter) assert_equal(int_summer_sfs[idx], skylight.interior_shading_factor_summer) @@ -3864,8 +3904,8 @@ def _test_default_skylight_values(hpxml, ext_summer_sfs, ext_winter_sfs, int_sum end end - def _test_default_door_values(hpxml, azimuths) - hpxml.doors.each_with_index do |door, idx| + def _test_default_door_values(hpxml_bldg, azimuths) + hpxml_bldg.doors.each_with_index do |door, idx| assert_equal(azimuths[idx], door.azimuth) end end @@ -3919,8 +3959,8 @@ def _test_default_evap_cooler_values(cooling_system, cooling_capacity) end end - def _test_default_mini_split_air_conditioner_values(cooling_system, shr, fan_watts_per_cfm, charge_defect_ratio, - airflow_defect_ratio, cooling_capacity, cooling_efficiency_seer, crankcase_heater_watts) + def _test_default_mini_split_air_conditioner_values(cooling_system, shr, fan_watts_per_cfm, charge_defect_ratio, airflow_defect_ratio, + cooling_capacity, cooling_efficiency_seer, crankcase_heater_watts, compressor_type) assert_equal(shr, cooling_system.cooling_shr) assert_equal(fan_watts_per_cfm, cooling_system.fan_watts_per_cfm) assert_equal(charge_defect_ratio, cooling_system.charge_defect_ratio) @@ -3936,7 +3976,7 @@ def _test_default_mini_split_air_conditioner_values(cooling_system, shr, fan_wat else assert_equal(cooling_efficiency_seer, cooling_system.cooling_efficiency_seer) end - assert_equal(HPXML::HVACCompressorTypeVariableSpeed, cooling_system.compressor_type) + assert_equal(compressor_type, cooling_system.compressor_type) end def _test_default_furnace_values(heating_system, fan_watts_per_cfm, airflow_defect_ratio, heating_capacity, @@ -4134,7 +4174,7 @@ def _test_default_mini_split_heat_pump_values(heat_pump, shr, fan_watts_per_cfm, heating_capacity_17F, backup_heating_capacity, cooling_efficiency_seer, heating_efficiency_hspf, heating_capacity_retention_fraction, heating_capacity_retention_temp, - crankcase_heater_watts) + crankcase_heater_watts, compressor_type) assert_equal(shr, heat_pump.cooling_shr) assert_equal(fan_watts_per_cfm, heat_pump.fan_watts_per_cfm) assert_equal(charge_defect_ratio, heat_pump.charge_defect_ratio) @@ -4170,7 +4210,7 @@ def _test_default_mini_split_heat_pump_values(heat_pump, shr, fan_watts_per_cfm, else assert_equal(heating_efficiency_hspf, heat_pump.heating_efficiency_hspf) end - assert_equal(HPXML::HVACCompressorTypeVariableSpeed, heat_pump.compressor_type) + assert_equal(compressor_type, heat_pump.compressor_type) if heating_capacity_retention_fraction.nil? assert_nil(heat_pump.heating_capacity_retention_fraction) else @@ -4250,12 +4290,12 @@ def _test_default_hvac_control_season_values(hvac_control, htg_season_begin_mont assert_equal(clg_season_end_day, hvac_control.seasons_cooling_end_day) end - def _test_default_duct_values(hpxml, supply_locations, return_locations, supply_areas, return_areas, + def _test_default_duct_values(hpxml_bldg, supply_locations, return_locations, supply_areas, return_areas, supply_fracs, return_fracs, n_return_registers, supply_area_mults, return_area_mults, supply_buried_levels, return_buried_levels, supply_effective_rvalues, return_effective_rvalues) supply_duct_idx = 0 return_duct_idx = 0 - hpxml.hvac_distributions.each do |hvac_distribution| + hpxml_bldg.hvac_distributions.each do |hvac_distribution| next unless [HPXML::HVACDistributionTypeAir].include? hvac_distribution.distribution_system_type assert_equal(n_return_registers, hvac_distribution.number_of_return_registers) @@ -4281,9 +4321,9 @@ def _test_default_duct_values(hpxml, supply_locations, return_locations, supply_ end end - def _test_default_mech_vent_values(hpxml, is_shared_system, hours_in_operation, fan_power, flow_rate, + def _test_default_mech_vent_values(hpxml_bldg, is_shared_system, hours_in_operation, fan_power, flow_rate, cfis_vent_mode_airflow_fraction = nil, cfis_addtl_runtime_operating_mode = nil) - vent_fan = hpxml.ventilation_fans.find { |f| f.used_for_whole_building_ventilation && !f.is_cfis_supplemental_fan? } + vent_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_whole_building_ventilation && !f.is_cfis_supplemental_fan? } assert_equal(is_shared_system, vent_fan.is_shared_system) assert_equal(hours_in_operation, vent_fan.hours_in_operation) @@ -4301,8 +4341,8 @@ def _test_default_mech_vent_values(hpxml, is_shared_system, hours_in_operation, end end - def _test_default_mech_vent_suppl_values(hpxml, is_shared_system, hours_in_operation, fan_power, flow_rate) - vent_fan = hpxml.ventilation_fans.find { |f| f.used_for_whole_building_ventilation && f.is_cfis_supplemental_fan? } + def _test_default_mech_vent_suppl_values(hpxml_bldg, is_shared_system, hours_in_operation, fan_power, flow_rate) + vent_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_whole_building_ventilation && f.is_cfis_supplemental_fan? } assert_equal(is_shared_system, vent_fan.is_shared_system) if hours_in_operation.nil? @@ -4314,8 +4354,8 @@ def _test_default_mech_vent_suppl_values(hpxml, is_shared_system, hours_in_opera assert_in_epsilon(flow_rate, vent_fan.rated_flow_rate.to_f + vent_fan.calculated_flow_rate.to_f + vent_fan.tested_flow_rate.to_f + vent_fan.delivered_ventilation.to_f, 0.01) end - def _test_default_kitchen_fan_values(hpxml, count, flow_rate, hours_in_operation, fan_power, start_hour) - kitchen_fan = hpxml.ventilation_fans.find { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationKitchen } + def _test_default_kitchen_fan_values(hpxml_bldg, count, flow_rate, hours_in_operation, fan_power, start_hour) + kitchen_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationKitchen } assert_equal(count, kitchen_fan.count) assert_equal(flow_rate, kitchen_fan.rated_flow_rate.to_f + kitchen_fan.calculated_flow_rate.to_f + kitchen_fan.tested_flow_rate.to_f + kitchen_fan.delivered_ventilation.to_f) @@ -4324,8 +4364,8 @@ def _test_default_kitchen_fan_values(hpxml, count, flow_rate, hours_in_operation assert_equal(start_hour, kitchen_fan.start_hour) end - def _test_default_bath_fan_values(hpxml, count, flow_rate, hours_in_operation, fan_power, start_hour) - bath_fan = hpxml.ventilation_fans.find { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationBath } + def _test_default_bath_fan_values(hpxml_bldg, count, flow_rate, hours_in_operation, fan_power, start_hour) + bath_fan = hpxml_bldg.ventilation_fans.find { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationBath } assert_equal(count, bath_fan.count) assert_equal(flow_rate, bath_fan.rated_flow_rate.to_f + bath_fan.calculated_flow_rate.to_f + bath_fan.tested_flow_rate.to_f + bath_fan.delivered_ventilation.to_f) @@ -4334,15 +4374,15 @@ def _test_default_bath_fan_values(hpxml, count, flow_rate, hours_in_operation, f assert_equal(start_hour, bath_fan.start_hour) end - def _test_default_whole_house_fan_values(hpxml, flow_rate, fan_power) - whf = hpxml.ventilation_fans.find { |f| f.used_for_seasonal_cooling_load_reduction } + def _test_default_whole_house_fan_values(hpxml_bldg, flow_rate, fan_power) + whf = hpxml_bldg.ventilation_fans.find { |f| f.used_for_seasonal_cooling_load_reduction } assert_equal(flow_rate, whf.rated_flow_rate.to_f + whf.calculated_flow_rate.to_f + whf.tested_flow_rate.to_f + whf.delivered_ventilation.to_f) assert_equal(fan_power, whf.fan_power) end - def _test_default_storage_water_heater_values(hpxml, *expected_wh_values) - storage_water_heaters = hpxml.water_heating_systems.select { |w| w.water_heater_type == HPXML::WaterHeaterTypeStorage } + def _test_default_storage_water_heater_values(hpxml_bldg, *expected_wh_values) + storage_water_heaters = hpxml_bldg.water_heating_systems.select { |w| w.water_heater_type == HPXML::WaterHeaterTypeStorage } assert_equal(expected_wh_values.size, storage_water_heaters.size) storage_water_heaters.each_with_index do |wh_system, idx| is_shared, heating_capacity, tank_volume, recovery_efficiency, location, temperature, energy_factor, tank_model_type = expected_wh_values[idx] @@ -4362,8 +4402,8 @@ def _test_default_storage_water_heater_values(hpxml, *expected_wh_values) end end - def _test_default_tankless_water_heater_values(hpxml, *expected_wh_values) - tankless_water_heaters = hpxml.water_heating_systems.select { |w| w.water_heater_type == HPXML::WaterHeaterTypeTankless } + def _test_default_tankless_water_heater_values(hpxml_bldg, *expected_wh_values) + tankless_water_heaters = hpxml_bldg.water_heating_systems.select { |w| w.water_heater_type == HPXML::WaterHeaterTypeTankless } assert_equal(expected_wh_values.size, tankless_water_heaters.size) tankless_water_heaters.each_with_index do |wh_system, idx| performance_adjustment, = expected_wh_values[idx] @@ -4372,8 +4412,8 @@ def _test_default_tankless_water_heater_values(hpxml, *expected_wh_values) end end - def _test_default_heat_pump_water_heater_values(hpxml, *expected_wh_values) - heat_pump_water_heaters = hpxml.water_heating_systems.select { |w| w.water_heater_type == HPXML::WaterHeaterTypeHeatPump } + def _test_default_heat_pump_water_heater_values(hpxml_bldg, *expected_wh_values) + heat_pump_water_heaters = hpxml_bldg.water_heating_systems.select { |w| w.water_heater_type == HPXML::WaterHeaterTypeHeatPump } assert_equal(expected_wh_values.size, heat_pump_water_heaters.size) heat_pump_water_heaters.each_with_index do |wh_system, idx| operating_mode, = expected_wh_values[idx] @@ -4382,8 +4422,8 @@ def _test_default_heat_pump_water_heater_values(hpxml, *expected_wh_values) end end - def _test_default_indirect_water_heater_values(hpxml, *expected_wh_values) - indirect_water_heaters = hpxml.water_heating_systems.select { |w| w.water_heater_type == HPXML::WaterHeaterTypeCombiStorage } + def _test_default_indirect_water_heater_values(hpxml_bldg, *expected_wh_values) + indirect_water_heaters = hpxml_bldg.water_heating_systems.select { |w| w.water_heater_type == HPXML::WaterHeaterTypeCombiStorage } assert_equal(expected_wh_values.size, indirect_water_heaters.size) indirect_water_heaters.each_with_index do |wh_system, idx| standby_loss_units, standby_loss_value, = expected_wh_values[idx] @@ -4409,23 +4449,25 @@ def _test_default_shared_recirc_distribution_values(hot_water_distribution, pump assert_in_epsilon(pump_power, hot_water_distribution.shared_recirculation_pump_power, 0.01) end - def _test_default_water_fixture_values(hpxml, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) - assert_equal(usage_multiplier, hpxml.water_heating.water_fixtures_usage_multiplier) + def _test_default_water_fixture_values(hpxml_bldg, usage_multiplier, weekday_sch, weekend_sch, monthly_mults, low_flow1, low_flow2) + assert_equal(usage_multiplier, hpxml_bldg.water_heating.water_fixtures_usage_multiplier) if weekday_sch.nil? - assert_nil(hpxml.water_heating.water_fixtures_weekday_fractions) + assert_nil(hpxml_bldg.water_heating.water_fixtures_weekday_fractions) else - assert_equal(weekday_sch, hpxml.water_heating.water_fixtures_weekday_fractions) + assert_equal(weekday_sch, hpxml_bldg.water_heating.water_fixtures_weekday_fractions) end if weekend_sch.nil? - assert_nil(hpxml.water_heating.water_fixtures_weekend_fractions) + assert_nil(hpxml_bldg.water_heating.water_fixtures_weekend_fractions) else - assert_equal(weekend_sch, hpxml.water_heating.water_fixtures_weekend_fractions) + assert_equal(weekend_sch, hpxml_bldg.water_heating.water_fixtures_weekend_fractions) end if monthly_mults.nil? - assert_nil(hpxml.water_heating.water_fixtures_monthly_multipliers) + assert_nil(hpxml_bldg.water_heating.water_fixtures_monthly_multipliers) else - assert_equal(monthly_mults, hpxml.water_heating.water_fixtures_monthly_multipliers) + assert_equal(monthly_mults, hpxml_bldg.water_heating.water_fixtures_monthly_multipliers) end + assert_equal(low_flow1, hpxml_bldg.water_fixtures[0].low_flow) + assert_equal(low_flow2, hpxml_bldg.water_fixtures[1].low_flow) end def _test_default_solar_thermal_values(solar_thermal_system, storage_volume, azimuth) @@ -4433,8 +4475,8 @@ def _test_default_solar_thermal_values(solar_thermal_system, storage_volume, azi assert_equal(azimuth, solar_thermal_system.collector_azimuth) end - def _test_default_pv_system_values(hpxml, interver_efficiency, system_loss_frac, is_shared_system, location, tracking, module_type, azimuth) - hpxml.pv_systems.each do |pv| + def _test_default_pv_system_values(hpxml_bldg, interver_efficiency, system_loss_frac, is_shared_system, location, tracking, module_type, azimuth) + hpxml_bldg.pv_systems.each do |pv| assert_equal(is_shared_system, pv.is_shared_system) assert_in_epsilon(system_loss_frac, pv.system_losses_fraction, 0.01) assert_equal(location, pv.location) @@ -4442,7 +4484,7 @@ def _test_default_pv_system_values(hpxml, interver_efficiency, system_loss_frac, assert_equal(module_type, pv.module_type) assert_equal(azimuth, pv.array_azimuth) end - hpxml.inverters.each do |inv| + hpxml_bldg.inverters.each do |inv| assert_equal(interver_efficiency, inv.inverter_efficiency) end end @@ -4479,8 +4521,8 @@ def _test_default_battery_values(battery, nominal_capacity_kwh, nominal_capacity assert_equal(round_trip_efficiency, battery.round_trip_efficiency) end - def _test_default_generator_values(hpxml, is_shared_system) - hpxml.generators.each do |generator| + def _test_default_generator_values(hpxml_bldg, is_shared_system) + hpxml_bldg.generators.each do |generator| assert_equal(is_shared_system, generator.is_shared_system) end end @@ -4574,8 +4616,8 @@ def _test_default_dishwasher_values(dishwasher, is_shared, location, rated_annua end end - def _test_default_refrigerator_values(hpxml, location, rated_annual_kwh, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) - hpxml.refrigerators.each do |refrigerator| + def _test_default_refrigerator_values(hpxml_bldg, location, rated_annual_kwh, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + hpxml_bldg.refrigerators.each do |refrigerator| next unless refrigerator.primary_indicator assert_equal(location, refrigerator.location) @@ -4599,8 +4641,8 @@ def _test_default_refrigerator_values(hpxml, location, rated_annual_kwh, usage_m end end - def _test_default_extra_refrigerators_values(hpxml, location, rated_annual_kwh, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) - hpxml.refrigerators.each do |refrigerator| + def _test_default_extra_refrigerators_values(hpxml_bldg, location, rated_annual_kwh, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + hpxml_bldg.refrigerators.each do |refrigerator| next if refrigerator.primary_indicator assert_equal(location, refrigerator.location) @@ -4624,8 +4666,8 @@ def _test_default_extra_refrigerators_values(hpxml, location, rated_annual_kwh, end end - def _test_default_freezers_values(hpxml, location, rated_annual_kwh, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) - hpxml.freezers.each do |freezer| + def _test_default_freezers_values(hpxml_bldg, location, rated_annual_kwh, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + hpxml_bldg.freezers.each do |freezer| assert_equal(location, freezer.location) assert_in_epsilon(rated_annual_kwh, freezer.rated_annual_kwh, 0.01) assert_equal(usage_multiplier, freezer.usage_multiplier) @@ -4672,74 +4714,74 @@ def _test_default_oven_values(oven, is_convection) assert_equal(is_convection, oven.is_convection) end - def _test_default_lighting_values(hpxml, interior_usage_multiplier, garage_usage_multiplier, exterior_usage_multiplier, schedules = {}) - assert_equal(interior_usage_multiplier, hpxml.lighting.interior_usage_multiplier) - assert_equal(garage_usage_multiplier, hpxml.lighting.garage_usage_multiplier) - assert_equal(exterior_usage_multiplier, hpxml.lighting.exterior_usage_multiplier) + def _test_default_lighting_values(hpxml_bldg, interior_usage_multiplier, garage_usage_multiplier, exterior_usage_multiplier, schedules = {}) + assert_equal(interior_usage_multiplier, hpxml_bldg.lighting.interior_usage_multiplier) + assert_equal(garage_usage_multiplier, hpxml_bldg.lighting.garage_usage_multiplier) + assert_equal(exterior_usage_multiplier, hpxml_bldg.lighting.exterior_usage_multiplier) if not schedules[:grg_wk_sch].nil? - assert_equal(schedules[:grg_wk_sch], hpxml.lighting.garage_weekday_fractions) + assert_equal(schedules[:grg_wk_sch], hpxml_bldg.lighting.garage_weekday_fractions) else - assert_nil(hpxml.lighting.garage_weekday_fractions) + assert_nil(hpxml_bldg.lighting.garage_weekday_fractions) end if not schedules[:grg_wknd_sch].nil? - assert_equal(schedules[:grg_wknd_sch], hpxml.lighting.garage_weekend_fractions) + assert_equal(schedules[:grg_wknd_sch], hpxml_bldg.lighting.garage_weekend_fractions) else - assert_nil(hpxml.lighting.garage_weekend_fractions) + assert_nil(hpxml_bldg.lighting.garage_weekend_fractions) end if not schedules[:grg_month_mult].nil? - assert_equal(schedules[:grg_month_mult], hpxml.lighting.garage_monthly_multipliers) + assert_equal(schedules[:grg_month_mult], hpxml_bldg.lighting.garage_monthly_multipliers) else - assert_nil(hpxml.lighting.garage_monthly_multipliers) + assert_nil(hpxml_bldg.lighting.garage_monthly_multipliers) end if not schedules[:ext_wk_sch].nil? - assert_equal(schedules[:ext_wk_sch], hpxml.lighting.exterior_weekday_fractions) + assert_equal(schedules[:ext_wk_sch], hpxml_bldg.lighting.exterior_weekday_fractions) else - assert_nil(hpxml.lighting.exterior_weekday_fractions) + assert_nil(hpxml_bldg.lighting.exterior_weekday_fractions) end if not schedules[:ext_wknd_sch].nil? - assert_equal(schedules[:ext_wknd_sch], hpxml.lighting.exterior_weekend_fractions) + assert_equal(schedules[:ext_wknd_sch], hpxml_bldg.lighting.exterior_weekend_fractions) else - assert_nil(hpxml.lighting.exterior_weekday_fractions) + assert_nil(hpxml_bldg.lighting.exterior_weekday_fractions) end if not schedules[:ext_month_mult].nil? - assert_equal(schedules[:ext_month_mult], hpxml.lighting.exterior_monthly_multipliers) + assert_equal(schedules[:ext_month_mult], hpxml_bldg.lighting.exterior_monthly_multipliers) else - assert_nil(hpxml.lighting.exterior_monthly_multipliers) + assert_nil(hpxml_bldg.lighting.exterior_monthly_multipliers) end if not schedules[:hol_kwh_per_day].nil? - assert_equal(schedules[:hol_kwh_per_day], hpxml.lighting.holiday_kwh_per_day) + assert_equal(schedules[:hol_kwh_per_day], hpxml_bldg.lighting.holiday_kwh_per_day) else - assert_nil(hpxml.lighting.holiday_kwh_per_day) + assert_nil(hpxml_bldg.lighting.holiday_kwh_per_day) end if not schedules[:hol_begin_month].nil? - assert_equal(schedules[:hol_begin_month], hpxml.lighting.holiday_period_begin_month) + assert_equal(schedules[:hol_begin_month], hpxml_bldg.lighting.holiday_period_begin_month) else - assert_nil(hpxml.lighting.holiday_period_begin_month) + assert_nil(hpxml_bldg.lighting.holiday_period_begin_month) end if not schedules[:hol_begin_day].nil? - assert_equal(schedules[:hol_begin_day], hpxml.lighting.holiday_period_begin_day) + assert_equal(schedules[:hol_begin_day], hpxml_bldg.lighting.holiday_period_begin_day) else - assert_nil(hpxml.lighting.holiday_period_begin_day) + assert_nil(hpxml_bldg.lighting.holiday_period_begin_day) end if not schedules[:hol_end_month].nil? - assert_equal(schedules[:hol_end_month], hpxml.lighting.holiday_period_end_month) + assert_equal(schedules[:hol_end_month], hpxml_bldg.lighting.holiday_period_end_month) else - assert_nil(hpxml.lighting.holiday_period_end_month) + assert_nil(hpxml_bldg.lighting.holiday_period_end_month) end if not schedules[:hol_end_day].nil? - assert_equal(schedules[:hol_end_day], hpxml.lighting.holiday_period_end_day) + assert_equal(schedules[:hol_end_day], hpxml_bldg.lighting.holiday_period_end_day) else - assert_nil(hpxml.lighting.holiday_period_end_day) + assert_nil(hpxml_bldg.lighting.holiday_period_end_day) end if not schedules[:hol_wk_sch].nil? - assert_equal(schedules[:hol_wk_sch], hpxml.lighting.holiday_weekday_fractions) + assert_equal(schedules[:hol_wk_sch], hpxml_bldg.lighting.holiday_weekday_fractions) else - assert_nil(hpxml.lighting.holiday_weekday_fractions) + assert_nil(hpxml_bldg.lighting.holiday_weekday_fractions) end if not schedules[:hol_wknd_sch].nil? - assert_equal(schedules[:hol_wknd_sch], hpxml.lighting.holiday_weekend_fractions) + assert_equal(schedules[:hol_wknd_sch], hpxml_bldg.lighting.holiday_weekend_fractions) else - assert_nil(hpxml.lighting.holiday_weekend_fractions) + assert_nil(hpxml_bldg.lighting.holiday_weekend_fractions) end end @@ -4804,49 +4846,49 @@ def _test_default_pool_pump_values(pool, kwh_per_year, usage_multiplier, weekday assert_equal(monthly_mults, pool.pump_monthly_multipliers) end - def _test_default_hot_tub_heater_values(hot_tub, load_units, load_value, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + def _test_default_permanent_spa_heater_values(spa, load_units, load_value, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) if load_units.nil? - assert_nil(hot_tub.heater_load_units) + assert_nil(spa.heater_load_units) else - assert_equal(load_units, hot_tub.heater_load_units) + assert_equal(load_units, spa.heater_load_units) end if load_value.nil? - assert_nil(hot_tub.heater_load_value) + assert_nil(spa.heater_load_value) else - assert_in_epsilon(load_value, hot_tub.heater_load_value, 0.01) + assert_in_epsilon(load_value, spa.heater_load_value, 0.01) end if usage_multiplier.nil? - assert_nil(hot_tub.heater_usage_multiplier) + assert_nil(spa.heater_usage_multiplier) else - assert_equal(usage_multiplier, hot_tub.heater_usage_multiplier) + assert_equal(usage_multiplier, spa.heater_usage_multiplier) end if weekday_sch.nil? - assert_nil(hot_tub.heater_weekday_fractions) + assert_nil(spa.heater_weekday_fractions) else - assert_equal(weekday_sch, hot_tub.heater_weekday_fractions) + assert_equal(weekday_sch, spa.heater_weekday_fractions) end if weekend_sch.nil? - assert_nil(hot_tub.heater_weekend_fractions) + assert_nil(spa.heater_weekend_fractions) else - assert_equal(weekend_sch, hot_tub.heater_weekend_fractions) + assert_equal(weekend_sch, spa.heater_weekend_fractions) end if monthly_mults.nil? - assert_nil(hot_tub.heater_monthly_multipliers) + assert_nil(spa.heater_monthly_multipliers) else - assert_equal(monthly_mults, hot_tub.heater_monthly_multipliers) + assert_equal(monthly_mults, spa.heater_monthly_multipliers) end end - def _test_default_hot_tub_pump_values(hot_tub, kwh_per_year, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) - assert_in_epsilon(kwh_per_year, hot_tub.pump_kwh_per_year, 0.01) - assert_equal(usage_multiplier, hot_tub.pump_usage_multiplier) - assert_equal(weekday_sch, hot_tub.pump_weekday_fractions) - assert_equal(weekend_sch, hot_tub.pump_weekend_fractions) - assert_equal(monthly_mults, hot_tub.pump_monthly_multipliers) + def _test_default_permanent_spa_pump_values(spa, kwh_per_year, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + assert_in_epsilon(kwh_per_year, spa.pump_kwh_per_year, 0.01) + assert_equal(usage_multiplier, spa.pump_usage_multiplier) + assert_equal(weekday_sch, spa.pump_weekday_fractions) + assert_equal(weekend_sch, spa.pump_weekend_fractions) + assert_equal(monthly_mults, spa.pump_monthly_multipliers) end - def _test_default_plug_load_values(hpxml, load_type, kwh_per_year, frac_sensible, frac_latent, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) - pl = hpxml.plug_loads.find { |pl| pl.plug_load_type == load_type } + def _test_default_plug_load_values(hpxml_bldg, load_type, kwh_per_year, frac_sensible, frac_latent, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + pl = hpxml_bldg.plug_loads.find { |pl| pl.plug_load_type == load_type } assert_in_epsilon(kwh_per_year, pl.kwh_per_year, 0.01) assert_equal(usage_multiplier, pl.usage_multiplier) @@ -4857,8 +4899,8 @@ def _test_default_plug_load_values(hpxml, load_type, kwh_per_year, frac_sensible assert_equal(monthly_mults, pl.monthly_multipliers) end - def _test_default_fuel_load_values(hpxml, load_type, therm_per_year, frac_sensible, frac_latent, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) - fl = hpxml.fuel_loads.find { |fl| fl.fuel_load_type == load_type } + def _test_default_fuel_load_values(hpxml_bldg, load_type, therm_per_year, frac_sensible, frac_latent, usage_multiplier, weekday_sch, weekend_sch, monthly_mults) + fl = hpxml_bldg.fuel_loads.find { |fl| fl.fuel_load_type == load_type } assert_in_epsilon(therm_per_year, fl.therm_per_year, 0.01) assert_equal(usage_multiplier, fl.usage_multiplier) @@ -4870,6 +4912,7 @@ def _test_default_fuel_load_values(hpxml, load_type, therm_per_year, frac_sensib end def _create_hpxml(hpxml_name) - return HPXML.new(hpxml_path: File.join(@sample_files_path, hpxml_name)) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, hpxml_name)) + return hpxml, hpxml.buildings[0] end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb index b157474c..7b5ba440 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -8,7 +13,7 @@ require_relative '../resources/util.rb' require_relative 'util.rb' -class HPXMLtoOpenStudioEnclosureTest < MiniTest::Test +class HPXMLtoOpenStudioEnclosureTest < Minitest::Test def setup @root_path = File.absolute_path(File.join(File.dirname(__FILE__), '..', '..')) @sample_files_path = File.join(@root_path, 'workflow', 'sample_files') @@ -28,15 +33,15 @@ def test_roofs { assembly_r: 5.0, layer_names: ['asphalt or fiberglass shingles', 'roof rigid ins', 'osb sheathing'] }, { assembly_r: 20.0, layer_names: ['asphalt or fiberglass shingles', 'roof rigid ins', 'osb sheathing'] }] - hpxml = _create_hpxml('base.xml') + hpxml, hpxml_bldg = _create_hpxml('base.xml') roofs_values.each do |roof_values| - hpxml.roofs[0].insulation_assembly_r_value = roof_values[:assembly_r] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.roofs[0].insulation_assembly_r_value = roof_values[:assembly_r] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml.roofs[0].id}:" } - _check_surface(hpxml.roofs[0], os_surface, roof_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_bldg.roofs[0].id}:" } + _check_surface(hpxml_bldg.roofs[0], os_surface, roof_values[:layer_names]) end # Closed cavity, asphalt shingles roof @@ -44,15 +49,15 @@ def test_roofs { assembly_r: 5.0, layer_names: ['asphalt or fiberglass shingles', 'osb sheathing', 'roof stud and cavity', 'gypsum board'] }, { assembly_r: 20.0, layer_names: ['asphalt or fiberglass shingles', 'roof rigid ins', 'osb sheathing', 'roof stud and cavity', 'gypsum board'] }] - hpxml = _create_hpxml('base-atticroof-cathedral.xml') + hpxml, hpxml_bldg = _create_hpxml('base-atticroof-cathedral.xml') roofs_values.each do |roof_values| - hpxml.roofs[0].insulation_assembly_r_value = roof_values[:assembly_r] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.roofs[0].insulation_assembly_r_value = roof_values[:assembly_r] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml.roofs[0].id}:" } - _check_surface(hpxml.roofs[0], os_surface, roof_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_bldg.roofs[0].id}:" } + _check_surface(hpxml_bldg.roofs[0], os_surface, roof_values[:layer_names]) end # Closed cavity, Miscellaneous @@ -92,16 +97,16 @@ def test_roofs ] - hpxml = _create_hpxml('base-enclosure-rooftypes.xml') - for i in 0..hpxml.roofs.size - 1 + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-rooftypes.xml') + for i in 0..hpxml_bldg.roofs.size - 1 roofs_values[i].each do |roof_values| - hpxml.roofs[i].insulation_assembly_r_value = roof_values[:assembly_r] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.roofs[i].insulation_assembly_r_value = roof_values[:assembly_r] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml.roofs[i].id}:" } - _check_surface(hpxml.roofs[i], os_surface, roof_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_bldg.roofs[i].id}:" } + _check_surface(hpxml_bldg.roofs[i], os_surface, roof_values[:layer_names]) end end @@ -114,15 +119,15 @@ def test_roofs { assembly_r: 5.0, layer_names: ['asphalt or fiberglass shingles', 'roof rigid ins', 'osb sheathing', 'radiant barrier'] }, { assembly_r: 20.0, layer_names: ['asphalt or fiberglass shingles', 'roof rigid ins', 'osb sheathing', 'radiant barrier'] }] - hpxml = _create_hpxml('base-atticroof-radiant-barrier.xml') + hpxml, hpxml_bldg = _create_hpxml('base-atticroof-radiant-barrier.xml') roofs_values.each do |roof_values| - hpxml.roofs[0].insulation_assembly_r_value = roof_values[:assembly_r] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.roofs[0].insulation_assembly_r_value = roof_values[:assembly_r] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml.roofs[0].id}:" } - _check_surface(hpxml.roofs[0], os_surface, roof_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_bldg.roofs[0].id}:" } + _check_surface(hpxml_bldg.roofs[0], os_surface, roof_values[:layer_names]) end end @@ -135,15 +140,15 @@ def test_rim_joists { assembly_r: 5.0, layer_names: ['wood siding', 'rim joist stud and cavity'] }, { assembly_r: 20.0, layer_names: ['wood siding', 'rim joist rigid ins', 'osb sheathing', 'rim joist stud and cavity'] }] - hpxml = _create_hpxml('base.xml') + hpxml, hpxml_bldg = _create_hpxml('base.xml') rimjs_values.each do |rimj_values| - hpxml.rim_joists[0].insulation_assembly_r_value = rimj_values[:assembly_r] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.rim_joists[0].insulation_assembly_r_value = rimj_values[:assembly_r] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml.rim_joists[0].id}:" } - _check_surface(hpxml.rim_joists[0], os_surface, rimj_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_bldg.rim_joists[0].id}:" } + _check_surface(hpxml_bldg.rim_joists[0], os_surface, rimj_values[:layer_names]) end # Miscellaneous @@ -190,16 +195,16 @@ def test_rim_joists { assembly_r: 20.0, layer_names: ['rim joist rigid ins', 'osb sheathing', 'rim joist stud and cavity'] }], ] - hpxml = _create_hpxml('base-enclosure-walltypes.xml') - for i in 0..hpxml.rim_joists.size - 1 + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-walltypes.xml') + for i in 0..hpxml_bldg.rim_joists.size - 1 rimjs_values[i].each do |rimj_values| - hpxml.rim_joists[i].insulation_assembly_r_value = rimj_values[:assembly_r] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.rim_joists[i].insulation_assembly_r_value = rimj_values[:assembly_r] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml.rim_joists[i].id}:" } - _check_surface(hpxml.rim_joists[i], os_surface, rimj_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_bldg.rim_joists[i].id}:" } + _check_surface(hpxml_bldg.rim_joists[i], os_surface, rimj_values[:layer_names]) end end end @@ -213,15 +218,15 @@ def test_walls { assembly_r: 5.0, layer_names: ['wood siding', 'osb sheathing', 'wall stud and cavity', 'gypsum board'] }, { assembly_r: 20.0, layer_names: ['wood siding', 'wall rigid ins', 'osb sheathing', 'wall stud and cavity', 'gypsum board'] }] - hpxml = _create_hpxml('base.xml') + hpxml, hpxml_bldg = _create_hpxml('base.xml') walls_values.each do |wall_values| - hpxml.walls[0].insulation_assembly_r_value = wall_values[:assembly_r] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.walls[0].insulation_assembly_r_value = wall_values[:assembly_r] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml.walls[0].id}:" } - _check_surface(hpxml.walls[0], os_surface, wall_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_bldg.walls[0].id}:" } + _check_surface(hpxml_bldg.walls[0], os_surface, wall_values[:layer_names]) end # Miscellaneous @@ -272,16 +277,16 @@ def test_walls { assembly_r: 20.0, layer_names: ['aluminum siding', 'wall rigid ins', 'osb sheathing', 'wall layer', 'wood'] }], ] - hpxml = _create_hpxml('base-enclosure-walltypes.xml') - for i in 0..hpxml.walls.size - 2 + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-walltypes.xml') + for i in 0..hpxml_bldg.walls.size - 2 walls_values[i].each do |wall_values| - hpxml.walls[i].insulation_assembly_r_value = wall_values[:assembly_r] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.walls[i].insulation_assembly_r_value = wall_values[:assembly_r] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml.walls[i].id}:" } - _check_surface(hpxml.walls[i], os_surface, wall_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_bldg.walls[i].id}:" } + _check_surface(hpxml_bldg.walls[i], os_surface, wall_values[:layer_names]) end end end @@ -295,15 +300,15 @@ def test_foundation_walls { assembly_r: 5.0, layer_names: ['concrete', 'exterior vertical ins'] }, { assembly_r: 20.0, layer_names: ['concrete', 'exterior vertical ins'] }] - hpxml = _create_hpxml('base-foundation-unconditioned-basement-assembly-r.xml') + hpxml, hpxml_bldg = _create_hpxml('base-foundation-unconditioned-basement-assembly-r.xml') walls_values.each do |wall_values| - hpxml.foundation_walls[0].insulation_assembly_r_value = wall_values[:assembly_r] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.foundation_walls[0].insulation_assembly_r_value = wall_values[:assembly_r] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s == hpxml.foundation_walls[0].id } - _check_surface(hpxml.foundation_walls[0], os_surface, wall_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s == hpxml_bldg.foundation_walls[0].id } + _check_surface(hpxml_bldg.foundation_walls[0], os_surface, wall_values[:layer_names]) end # Foundation wall w/ different material types @@ -316,16 +321,16 @@ def test_foundation_walls { type: HPXML::FoundationWallTypeDoubleBrick, layer_names: ['double brick'] }, { type: HPXML::FoundationWallTypeWood, layer_names: ['wood'] }] - hpxml = _create_hpxml('base-foundation-unconditioned-basement-assembly-r.xml') + hpxml, hpxml_bldg = _create_hpxml('base-foundation-unconditioned-basement-assembly-r.xml') walls_values.each do |wall_values| - hpxml.foundation_walls[0].insulation_assembly_r_value = 0.1 # Ensure just a single layer - hpxml.foundation_walls[0].type = wall_values[:type] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.foundation_walls[0].insulation_assembly_r_value = 0.1 # Ensure just a single layer + hpxml_bldg.foundation_walls[0].type = wall_values[:type] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s == hpxml.foundation_walls[0].id } - _check_surface(hpxml.foundation_walls[0], os_surface, wall_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s == hpxml_bldg.foundation_walls[0].id } + _check_surface(hpxml_bldg.foundation_walls[0], os_surface, wall_values[:layer_names]) end # Foundation wall w/ Insulation Layers @@ -337,20 +342,20 @@ def test_foundation_walls { interior_r: 5.0, exterior_r: 5.0, layer_names: ['concrete', 'interior vertical ins', 'exterior vertical ins'] }, { interior_r: 20.0, exterior_r: 20.0, layer_names: ['concrete', 'interior vertical ins', 'exterior vertical ins'] }] - hpxml = _create_hpxml('base-foundation-unconditioned-basement-wall-insulation.xml') + hpxml, hpxml_bldg = _create_hpxml('base-foundation-unconditioned-basement-wall-insulation.xml') walls_values.each do |wall_values| - hpxml.foundation_walls[0].insulation_interior_r_value = wall_values[:interior_r] - hpxml.foundation_walls[0].insulation_interior_distance_to_top = 0.0 - hpxml.foundation_walls[0].insulation_interior_distance_to_bottom = 8.0 - hpxml.foundation_walls[0].insulation_exterior_r_value = wall_values[:exterior_r] - hpxml.foundation_walls[0].insulation_exterior_distance_to_top = 0.0 - hpxml.foundation_walls[0].insulation_exterior_distance_to_bottom = 8.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.foundation_walls[0].insulation_interior_r_value = wall_values[:interior_r] + hpxml_bldg.foundation_walls[0].insulation_interior_distance_to_top = 0.0 + hpxml_bldg.foundation_walls[0].insulation_interior_distance_to_bottom = 8.0 + hpxml_bldg.foundation_walls[0].insulation_exterior_r_value = wall_values[:exterior_r] + hpxml_bldg.foundation_walls[0].insulation_exterior_distance_to_top = 0.0 + hpxml_bldg.foundation_walls[0].insulation_exterior_distance_to_bottom = 8.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s == hpxml.foundation_walls[0].id } - _check_surface(hpxml.foundation_walls[0], os_surface, wall_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s == hpxml_bldg.foundation_walls[0].id } + _check_surface(hpxml_bldg.foundation_walls[0], os_surface, wall_values[:layer_names]) end end @@ -363,15 +368,15 @@ def test_ceilings { assembly_r: 5.0, layer_names: ['ceiling stud and cavity', 'gypsum board'] }, { assembly_r: 20.0, layer_names: ['ceiling loosefill ins', 'ceiling stud and cavity', 'gypsum board'] }] - hpxml = _create_hpxml('base-foundation-vented-crawlspace.xml') + hpxml, hpxml_bldg = _create_hpxml('base-foundation-vented-crawlspace.xml') ceilings_values.each do |ceiling_values| - hpxml.floors[1].insulation_assembly_r_value = ceiling_values[:assembly_r] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.floors[1].insulation_assembly_r_value = ceiling_values[:assembly_r] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s == hpxml.floors[1].id } - _check_surface(hpxml.floors[1], os_surface, ceiling_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s == hpxml_bldg.floors[1].id } + _check_surface(hpxml_bldg.floors[1], os_surface, ceiling_values[:layer_names]) end # Miscellaneous @@ -390,16 +395,16 @@ def test_ceilings { assembly_r: 20.0, layer_names: ['ceiling loosefill ins', 'ceiling stud and cavity', 'gypsum board'] }], ] - hpxml = _create_hpxml('base-enclosure-ceilingtypes.xml') - for i in 0..hpxml.floors.size - 1 + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-ceilingtypes.xml') + for i in 0..hpxml_bldg.floors.size - 1 ceilings_values[i].each do |ceiling_values| - hpxml.floors[i].insulation_assembly_r_value = ceiling_values[:assembly_r] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.floors[i].insulation_assembly_r_value = ceiling_values[:assembly_r] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml.floors[i].id}" } - _check_surface(hpxml.floors[i], os_surface, ceiling_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_bldg.floors[i].id}" } + _check_surface(hpxml_bldg.floors[i], os_surface, ceiling_values[:layer_names]) end end end @@ -413,15 +418,15 @@ def test_floors { assembly_r: 5.0, layer_names: ['floor stud and cavity', 'osb sheathing', 'floor covering'] }, { assembly_r: 20.0, layer_names: ['floor stud and cavity', 'floor rigid ins', 'osb sheathing', 'floor covering'] }] - hpxml = _create_hpxml('base-foundation-vented-crawlspace.xml') + hpxml, hpxml_bldg = _create_hpxml('base-foundation-vented-crawlspace.xml') floors_values.each do |floor_values| - hpxml.floors[0].insulation_assembly_r_value = floor_values[:assembly_r] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.floors[0].insulation_assembly_r_value = floor_values[:assembly_r] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s == hpxml.floors[0].id } - _check_surface(hpxml.floors[0], os_surface, floor_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s == hpxml_bldg.floors[0].id } + _check_surface(hpxml_bldg.floors[0], os_surface, floor_values[:layer_names]) end # Miscellaneous @@ -440,20 +445,46 @@ def test_floors { assembly_r: 20.0, layer_names: ['floor stud and cavity', 'floor rigid ins', 'osb sheathing', 'floor covering'] }], ] - hpxml = _create_hpxml('base-enclosure-floortypes.xml') - for i in 0..hpxml.floors.size - 2 + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-floortypes.xml') + for i in 0..hpxml_bldg.floors.size - 2 floors_values[i].each do |floor_values| - hpxml.floors[i].insulation_assembly_r_value = floor_values[:assembly_r] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.floors[i].insulation_assembly_r_value = floor_values[:assembly_r] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml.floors[i].id}" } - _check_surface(hpxml.floors[i], os_surface, floor_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_bldg.floors[i].id}" } + _check_surface(hpxml_bldg.floors[i], os_surface, floor_values[:layer_names]) end end end + def test_manufactured_home_foundation + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + + hpxml, _hpxml_bldg = _create_hpxml('base-foundation-belly-wing-skirt.xml') + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) + hpxml_floor = hpxml_bldg.floors.find { |x| x.exterior_adjacent_to == HPXML::LocationManufacturedHomeUnderBelly } + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_floor.id}" } + assert_equal('NoWind', os_surface.windExposure) + + hpxml_bldg.foundations.clear + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) + hpxml_floor = hpxml_bldg.floors.find { |x| x.exterior_adjacent_to == HPXML::LocationManufacturedHomeUnderBelly } + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_floor.id}" } + assert_equal('NoWind', os_surface.windExposure) + + hpxml, _hpxml_bldg = _create_hpxml('base-foundation-belly-wing-no-skirt.xml') + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) + hpxml_floor = hpxml_bldg.floors.find { |x| x.exterior_adjacent_to == HPXML::LocationManufacturedHomeUnderBelly } + os_surface = model.getSurfaces.find { |s| s.name.to_s.start_with? "#{hpxml_floor.id}" } + assert_equal('WindExposed', os_surface.windExposure) + end + def test_slabs args_hash = {} args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) @@ -469,35 +500,35 @@ def test_slabs { perimeter_r: 5.0, under_r: 5.0, under_span: false, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins', 'exterior vertical ins'] }, { perimeter_r: 20.0, under_r: 20.0, under_span: false, layer_names: ['concrete', 'floor covering', 'interior horizontal ins', 'interior vertical ins', 'exterior vertical ins'] }] - hpxml = _create_hpxml('base-foundation-slab.xml') + hpxml, hpxml_bldg = _create_hpxml('base-foundation-slab.xml') slabs_values.each do |slab_values| - hpxml.slabs[0].perimeter_insulation_r_value = slab_values[:perimeter_r] - hpxml.slabs[0].perimeter_insulation_depth = 2.0 - hpxml.slabs[0].under_slab_insulation_r_value = slab_values[:under_r] + hpxml_bldg.slabs[0].perimeter_insulation_r_value = slab_values[:perimeter_r] + hpxml_bldg.slabs[0].perimeter_insulation_depth = 2.0 + hpxml_bldg.slabs[0].under_slab_insulation_r_value = slab_values[:under_r] if slab_values[:under_span] - hpxml.slabs[0].under_slab_insulation_spans_entire_slab = true - hpxml.slabs[0].under_slab_insulation_width = nil + hpxml_bldg.slabs[0].under_slab_insulation_spans_entire_slab = true + hpxml_bldg.slabs[0].under_slab_insulation_width = nil else - hpxml.slabs[0].under_slab_insulation_width = 2.0 - hpxml.slabs[0].under_slab_insulation_spans_entire_slab = nil + hpxml_bldg.slabs[0].under_slab_insulation_width = 2.0 + hpxml_bldg.slabs[0].under_slab_insulation_spans_entire_slab = nil end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSurfaces.find { |s| s.name.to_s == hpxml.slabs[0].id } - _check_surface(hpxml.slabs[0], os_surface, slab_values[:layer_names]) + os_surface = model.getSurfaces.find { |s| s.name.to_s == hpxml_bldg.slabs[0].id } + _check_surface(hpxml_bldg.slabs[0], os_surface, slab_values[:layer_names]) end end def test_windows args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base.xml')) - model, hpxml = _test_measure(args_hash) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check window properties - hpxml.windows.each do |window| + hpxml_bldg.windows.each do |window| os_window = model.getSubSurfaces.find { |w| w.name.to_s == window.id } os_simple_glazing = os_window.construction.get.to_LayeredConstruction.get.getLayer(0).to_SimpleGlazing.get @@ -508,16 +539,16 @@ def test_windows # Storm windows args_hash = {} args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = _create_hpxml('base.xml') - hpxml.windows.each do |window| + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.windows.each do |window| window.ufactor = 0.6 window.storm_type = HPXML::WindowGlassTypeLowE end - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check window properties - hpxml.windows.each do |window| + hpxml_bldg.windows.each do |window| os_window = model.getSubSurfaces.find { |w| w.name.to_s == window.id } os_simple_glazing = os_window.construction.get.to_LayeredConstruction.get.getLayer(0).to_SimpleGlazing.get @@ -530,10 +561,10 @@ def test_windows 'ZAF_Cape.Town.688160_IWEC.epw'].each do |epw_path| # Test both northern & southern hemisphere args_hash = {} args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = _create_hpxml('base-enclosure-windows-shading.xml') - hpxml.climate_and_risk_zones.weather_station_epw_filepath = epw_path - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-windows-shading.xml') + hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath = epw_path + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) if epw_path == 'USA_CO_Denver.Intl.AP.725650_TMY3.epw' summer_date = OpenStudio::Date.new(OpenStudio::MonthOfYear.new('June'), 1, model.yearDescription.get.assumedYear) @@ -543,34 +574,34 @@ def test_windows summer_date = OpenStudio::Date.new(OpenStudio::MonthOfYear.new('January'), 1, model.yearDescription.get.assumedYear) end - hpxml.windows.each do |window| + hpxml_bldg.windows.each do |window| sf_summer = window.interior_shading_factor_summer sf_winter = window.interior_shading_factor_winter sf_summer *= window.exterior_shading_factor_summer unless window.exterior_shading_factor_summer.nil? sf_winter *= window.exterior_shading_factor_winter unless window.exterior_shading_factor_winter.nil? # Check shading transmittance for sky beam and sky diffuse - os_shading_surface = model.getShadingSurfaces.find { |ss| ss.name.to_s.start_with? window.id } + os_subsurface = model.getSubSurfaces.select { |ss| ss.name.to_s.start_with? window.id }[0] + os_ism = nil + model.getSurfacePropertyIncidentSolarMultipliers.each do |ism| + next unless os_subsurface == ism.subSurface + + os_ism = ism + end if (sf_summer == 1) && (sf_winter == 1) - assert_nil(os_shading_surface) # No shading + assert_nil(os_ism) # No shading else - refute_nil(os_shading_surface) # Shading + refute_nil(os_ism) # Shading if sf_summer == sf_winter - summer_transmittance = os_shading_surface.transmittanceSchedule.get.to_ScheduleConstant.get.value + summer_transmittance = os_ism.incidentSolarMultiplierSchedule.get.to_ScheduleConstant.get.value winter_transmittance = summer_transmittance else - summer_transmittance = os_shading_surface.transmittanceSchedule.get.to_ScheduleRuleset.get.getDaySchedules(summer_date, summer_date).map { |ds| ds.values.sum }.sum - winter_transmittance = os_shading_surface.transmittanceSchedule.get.to_ScheduleRuleset.get.getDaySchedules(winter_date, winter_date).map { |ds| ds.values.sum }.sum + summer_transmittance = os_ism.incidentSolarMultiplierSchedule.get.to_ScheduleRuleset.get.getDaySchedules(summer_date, summer_date).map { |ds| ds.values.sum }.sum + winter_transmittance = os_ism.incidentSolarMultiplierSchedule.get.to_ScheduleRuleset.get.getDaySchedules(winter_date, winter_date).map { |ds| ds.values.sum }.sum end assert_equal(sf_summer, summer_transmittance) assert_equal(sf_winter, winter_transmittance) end - - # Check subsurface view factor to ground - subsurface_view_factor = 0.5 - window_actuator = model.getEnergyManagementSystemActuators.find { |w| w.actuatedComponent.get.name.to_s == window.id } - program_values = get_ems_values(model.getEnergyManagementSystemPrograms, 'fixedwindow view factor to ground program') - assert_equal(subsurface_view_factor, program_values["#{window_actuator.name}"][0]) end end end @@ -578,10 +609,10 @@ def test_windows def test_skylights args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-enclosure-skylights.xml')) - model, hpxml = _test_measure(args_hash) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check skylight properties - hpxml.skylights.each do |skylight| + hpxml_bldg.skylights.each do |skylight| os_skylight = model.getSubSurfaces.find { |w| w.name.to_s == skylight.id } os_simple_glazing = os_skylight.construction.get.to_LayeredConstruction.get.getLayer(0).to_SimpleGlazing.get @@ -594,10 +625,10 @@ def test_skylights 'ZAF_Cape.Town.688160_IWEC.epw'].each do |epw_path| # Test both northern & southern hemisphere args_hash = {} args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = _create_hpxml('base-enclosure-skylights-shading.xml') - hpxml.climate_and_risk_zones.weather_station_epw_filepath = epw_path - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-skylights-shading.xml') + hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath = epw_path + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) if epw_path == 'USA_CO_Denver.Intl.AP.725650_TMY3.epw' summer_date = OpenStudio::Date.new(OpenStudio::MonthOfYear.new('June'), 1, model.yearDescription.get.assumedYear) @@ -607,34 +638,34 @@ def test_skylights summer_date = OpenStudio::Date.new(OpenStudio::MonthOfYear.new('January'), 1, model.yearDescription.get.assumedYear) end - hpxml.skylights.each do |skylight| + hpxml_bldg.skylights.each do |skylight| sf_summer = skylight.interior_shading_factor_summer sf_winter = skylight.interior_shading_factor_winter sf_summer *= skylight.exterior_shading_factor_summer unless skylight.exterior_shading_factor_summer.nil? sf_winter *= skylight.exterior_shading_factor_winter unless skylight.exterior_shading_factor_winter.nil? # Check shading transmittance for sky beam and sky diffuse - os_shading_surface = model.getShadingSurfaces.find { |ss| ss.name.to_s.start_with? skylight.id } + os_subsurface = model.getSubSurfaces.select { |ss| ss.name.to_s.start_with? skylight.id }[0] + os_ism = nil + model.getSurfacePropertyIncidentSolarMultipliers.each do |ism| + next unless os_subsurface == ism.subSurface + + os_ism = ism + end if (sf_summer == 1) && (sf_winter == 1) - assert_nil(os_shading_surface) # No shading + assert_nil(os_ism) # No shading else - refute_nil(os_shading_surface) # Shading + refute_nil(os_ism) # Shading if sf_summer == sf_winter - summer_transmittance = os_shading_surface.transmittanceSchedule.get.to_ScheduleConstant.get.value + summer_transmittance = os_ism.incidentSolarMultiplierSchedule.get.to_ScheduleConstant.get.value winter_transmittance = summer_transmittance else - summer_transmittance = os_shading_surface.transmittanceSchedule.get.to_ScheduleRuleset.get.getDaySchedules(summer_date, summer_date).map { |ds| ds.values.sum }.sum - winter_transmittance = os_shading_surface.transmittanceSchedule.get.to_ScheduleRuleset.get.getDaySchedules(winter_date, winter_date).map { |ds| ds.values.sum }.sum + summer_transmittance = os_ism.incidentSolarMultiplierSchedule.get.to_ScheduleRuleset.get.getDaySchedules(summer_date, summer_date).map { |ds| ds.values.sum }.sum + winter_transmittance = os_ism.incidentSolarMultiplierSchedule.get.to_ScheduleRuleset.get.getDaySchedules(winter_date, winter_date).map { |ds| ds.values.sum }.sum end assert_equal(sf_summer, summer_transmittance) assert_equal(sf_winter, winter_transmittance) end - - # Check subsurface view factor to ground - subsurface_view_factor = 0.05 # 6:12 pitch - skylight_actuator = model.getEnergyManagementSystemActuators.find { |w| w.actuatedComponent.get.name.to_s == skylight.id } - program_values = get_ems_values(model.getEnergyManagementSystemPrograms, 'skylight view factor to ground program') - assert_equal(subsurface_view_factor, program_values["#{skylight_actuator.name}"][0]) end end end @@ -648,15 +679,15 @@ def test_doors { assembly_r: 5.0, layer_names: ['door material'] }, { assembly_r: 20.0, layer_names: ['door material'] }] - hpxml = _create_hpxml('base.xml') + hpxml, hpxml_bldg = _create_hpxml('base.xml') doors_values.each do |door_values| - hpxml.doors[0].r_value = door_values[:assembly_r] - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - model, hpxml = _test_measure(args_hash) + hpxml_bldg.doors[0].r_value = door_values[:assembly_r] + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getSubSurfaces.find { |s| s.name.to_s == hpxml.doors[0].id } - _check_surface(hpxml.doors[0], os_surface, door_values[:layer_names]) + os_surface = model.getSubSurfaces.find { |s| s.name.to_s == hpxml_bldg.doors[0].id } + _check_surface(hpxml_bldg.doors[0], os_surface, door_values[:layer_names]) end end @@ -667,11 +698,11 @@ def test_partition_wall_mass # Thermal masses partition_wall_mass_layer_names = ['gypsum board', 'wall stud and cavity', 'gypsum board'] - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties os_surface = model.getInternalMassDefinitions.find { |s| s.name.to_s == 'partition wall mass' } - _check_surface(hpxml.partition_wall_mass, os_surface, partition_wall_mass_layer_names) + _check_surface(hpxml_bldg.partition_wall_mass, os_surface, partition_wall_mass_layer_names) end def test_furniture_mass @@ -679,13 +710,147 @@ def test_furniture_mass args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-enclosure-thermal-mass.xml')) # Thermal masses - furniture_mass_layer_names = ['furniture material living space'] + furniture_mass_layer_names = ['furniture material conditioned space'] - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Check properties - os_surface = model.getInternalMassDefinitions.find { |s| s.name.to_s.start_with?('furniture mass living space') } - _check_surface(hpxml.furniture_mass, os_surface, furniture_mass_layer_names) + os_surface = model.getInternalMassDefinitions.find { |s| s.name.to_s.start_with?('furniture mass conditioned space') } + _check_surface(hpxml_bldg.furniture_mass, os_surface, furniture_mass_layer_names) + end + + def test_foundation_properties + tests = { + '../tests/ASHRAE_Standard_140/L322XC.xml' => 1, # 1 basement foundation + 'base.xml' => 1, # 1 basement foundation + 'base-foundation-slab.xml' => 1, # 1 slab-on-grade foundation + 'base-foundation-basement-garage.xml' => 2, # 1 basement foundation + 1 garage slab + 'base-foundation-unconditioned-basement-above-grade.xml' => 1, # 1 basement foundation + 'base-foundation-conditioned-crawlspace.xml' => 1, # 1 crawlspace foundation + 'base-foundation-ambient.xml' => 0, # 0 foundations + 'base-foundation-walkout-basement.xml' => 2, # 1 basement foundation with 1 effective below-grade depth + additional no-wall exposed perimeter + 'base-foundation-multiple.xml' => 2, # 1 basement foundation + 1 crawlspace foundation + 'base-foundation-complex.xml' => 6, # 2 basement foundations, each with 1 effective below-grade depth + additional no-wall exposed perimeter + 'base-bldgtype-sfa-unit-2stories.xml' => 1, # 1 basement foundation + 'base-enclosure-2stories-garage.xml' => 2, # 1 basement foundation + 1 garage slab + } + + tests.each do |hpxml_name, num_kiva_objects| + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, hpxml_name)) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) + + # Gather HPXML info + slab_int_adj_tos = {} + ext_fwall_int_adj_tos = {} + int_fwall_int_adj_tos = {} + hpxml_bldg.slabs.each do |slab| + int_adj_to = slab.interior_adjacent_to + int_adj_to = HPXML::LocationConditionedSpace if HPXML::conditioned_locations.include?(int_adj_to) + + slab_int_adj_tos[int_adj_to] = [] if slab_int_adj_tos[int_adj_to].nil? + slab_int_adj_tos[int_adj_to] << slab + end + hpxml_bldg.foundation_walls.each do |fwall| + int_adj_to = fwall.interior_adjacent_to + int_adj_to = HPXML::LocationConditionedSpace if HPXML::conditioned_locations.include?(int_adj_to) + + if fwall.is_exterior + ext_fwall_int_adj_tos[int_adj_to] = [] if ext_fwall_int_adj_tos[int_adj_to].nil? + ext_fwall_int_adj_tos[int_adj_to] << fwall + else + int_fwall_int_adj_tos[int_adj_to] = [] if int_fwall_int_adj_tos[int_adj_to].nil? + int_fwall_int_adj_tos[int_adj_to] << fwall + end + end + + # Check number of Kiva:Foundation objects + # We want the lowest possible number that is sufficient, in order to keep runtime performance fast + assert_equal(num_kiva_objects, model.getFoundationKivas.size) + + # Check slab exposed perimeters + slab_int_adj_tos.each do |int_adj_to, slabs| + osm_props = [] + model.getSurfacePropertyExposedFoundationPerimeters.each do |osm_prop| + next unless osm_prop.surface.space.get.name.to_s.start_with? int_adj_to + + osm_props << osm_prop + end + + osm_exposed_perimeter = osm_props.map { |p| p.totalExposedPerimeter.get }.sum + hpxml_exposed_perimeter = slabs.map { |s| s.exposed_perimeter }.sum + assert_in_epsilon(hpxml_exposed_perimeter, UnitConversions.convert(osm_exposed_perimeter, 'm', 'ft'), 0.01) + end + + # Check each Kiva:Foundation has identical slab exposed perimeter and total exterior foundation wall length + # This is required by Kiva, otherwise you get simulation errors. + model.getFoundationKivas.each do |foundation| + osm_exposed_perimeter = 0.0 + model.getSurfacePropertyExposedFoundationPerimeters.each do |osm_prop| + next unless osm_prop.surface.outsideBoundaryCondition == 'Foundation' && osm_prop.surface.adjacentFoundation.get == foundation + + osm_exposed_perimeter += UnitConversions.convert(osm_prop.totalExposedPerimeter.get, 'm', 'ft') + end + + osm_fwalls = model.getSurfaces.select { |s| s.outsideBoundaryCondition == 'Foundation' && s.adjacentFoundation.get == foundation && s.surfaceType == 'Wall' } + if not osm_fwalls.empty? + osm_fwalls_length = osm_fwalls.map { |s| Geometry.get_surface_length(s) }.sum + assert_in_epsilon(osm_exposed_perimeter, osm_fwalls_length, 0.01) + end + end + + # Check slab areas + slab_int_adj_tos.each do |int_adj_to, slabs| + osm_slabs = model.getSurfaces.select { |s| s.surfaceType == 'Floor' && s.outsideBoundaryCondition == 'Foundation' && s.space.get.name.to_s.start_with?(int_adj_to) } + + osm_area = osm_slabs.map { |s| s.grossArea }.sum + hpxml_area = slabs.map { |s| s.area }.sum + assert_in_epsilon(hpxml_area, UnitConversions.convert(osm_area, 'm^2', 'ft^2'), 0.01) + end + + # Check exterior foundation wall exposed areas + ext_fwall_int_adj_tos.each do |int_adj_to, fwalls| + osm_fwalls = model.getSurfaces.select { |s| s.surfaceType == 'Wall' && s.outsideBoundaryCondition == 'Foundation' && s.space.get.name.to_s.start_with?(int_adj_to) } + + osm_area = osm_fwalls.map { |s| s.grossArea }.sum + hpxml_area = fwalls.map { |fw| fw.net_area * fw.exposed_fraction }.sum + assert_in_epsilon(hpxml_area, UnitConversions.convert(osm_area, 'm^2', 'ft^2'), 0.01) + end + + # Check exterior foundation wall heights & below-grade depths + ext_fwall_int_adj_tos.each do |int_adj_to, fwalls| + osm_fwalls = model.getSurfaces.select { |s| s.surfaceType == 'Wall' && s.outsideBoundaryCondition == 'Foundation' && s.space.get.name.to_s.start_with?(int_adj_to) } + + osm_heights = osm_fwalls.map { |s| Geometry.get_surface_height(s) }.uniq.sort + hpxml_heights = fwalls.map { |fw| fw.height }.uniq.sort + assert_equal(hpxml_heights, osm_heights) + + osm_bgdepths = osm_fwalls.map { |s| -1 * Geometry.get_surface_z_values([s]).min }.uniq.sort + if hpxml_name == 'base-foundation-walkout-basement.xml' + # All foundation walls similar: single foundation wall w/ effective below-grade depth + hpxml_bgdepths = [4.5] + elsif hpxml_name == 'base-foundation-complex.xml' + # Pairs of foundation walls similar: pairs of foundation walls w/ effective below-grade depths + hpxml_bgdepths = [4.33333, 4.5] + else + hpxml_bgdepths = fwalls.map { |fw| fw.depth_below_grade }.uniq.sort + end + assert_equal(hpxml_bgdepths, osm_bgdepths) + end + + # Check interior foundation wall heights & below-grade depths + int_fwall_int_adj_tos.each do |int_adj_to, fwalls| + osm_fwalls = model.getSurfaces.select { |s| s.surfaceType == 'Wall' && s.outsideBoundaryCondition != 'Foundation' && Geometry.get_surface_z_values([s]).min < 0 && s.space.get.name.to_s.start_with?(int_adj_to) } + + osm_heights = osm_fwalls.map { |s| Geometry.get_surface_z_values([s]).max - Geometry.get_surface_z_values([s]).min }.uniq.sort + hpxml_heights = fwalls.map { |fw| fw.height - fw.depth_below_grade }.uniq.sort + assert_equal(hpxml_heights, osm_heights) + + osm_bgdepths = osm_fwalls.map { |s| -1 * Geometry.get_surface_z_values([s]).min }.uniq.sort + hpxml_bgdepths = fwalls.map { |fw| fw.height - fw.depth_below_grade }.uniq.sort + assert_equal(hpxml_bgdepths, osm_bgdepths) + end + end end def test_kiva_initial_temperatures @@ -701,7 +866,7 @@ def test_kiva_initial_temperatures initial_temps.each do |hpxml_name, expected_temp| args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, hpxml_name)) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) actual_temp = UnitConversions.convert(model.getFoundationKivas[0].initialIndoorAirTemperature.get, 'C', 'F') assert_in_delta(expected_temp, actual_temp, 0.1) @@ -709,6 +874,8 @@ def test_kiva_initial_temperatures end def test_collapse_surfaces + # Check that multiple similar surfaces are correctly collapsed + # to reduce EnergyPlus runtime. def split_surfaces(surfaces, should_collapse_surfaces) surf_class = surfaces[0].class for n in 1..surfaces.size @@ -755,36 +922,36 @@ def split_surfaces(surfaces, should_collapse_surfaces) surfaces[-1].exposed_perimeter = 0.05 if surf_class == HPXML::Slab end - def get_num_surfaces_by_type(hpxml) - return { roofs: hpxml.roofs.size, - walls: hpxml.walls.size, - rim_joists: hpxml.rim_joists.size, - foundation_walls: hpxml.foundation_walls.size, - floors: hpxml.floors.size, - slabs: hpxml.slabs.size, - windows: hpxml.windows.size, - skylights: hpxml.skylights.size, - doors: hpxml.doors.size } + def get_num_surfaces_by_type(hpxml_bldg) + return { roofs: hpxml_bldg.roofs.size, + walls: hpxml_bldg.walls.size, + rim_joists: hpxml_bldg.rim_joists.size, + foundation_walls: hpxml_bldg.foundation_walls.size, + floors: hpxml_bldg.floors.size, + slabs: hpxml_bldg.slabs.size, + windows: hpxml_bldg.windows.size, + skylights: hpxml_bldg.skylights.size, + doors: hpxml_bldg.doors.size } end [true, false].each do |should_collapse_surfaces| - hpxml = _create_hpxml('base-enclosure-skylights.xml') + _hpxml, hpxml_bldg = _create_hpxml('base-enclosure-skylights.xml') - orig_num_surfaces_by_type = get_num_surfaces_by_type(hpxml) + orig_num_surfaces_by_type = get_num_surfaces_by_type(hpxml_bldg) - split_surfaces(hpxml.roofs, should_collapse_surfaces) - split_surfaces(hpxml.rim_joists, should_collapse_surfaces) - split_surfaces(hpxml.walls, should_collapse_surfaces) - split_surfaces(hpxml.foundation_walls, should_collapse_surfaces) - split_surfaces(hpxml.floors, should_collapse_surfaces) - split_surfaces(hpxml.slabs, should_collapse_surfaces) - split_surfaces(hpxml.windows, should_collapse_surfaces) - split_surfaces(hpxml.skylights, should_collapse_surfaces) - split_surfaces(hpxml.doors, should_collapse_surfaces) + split_surfaces(hpxml_bldg.roofs, should_collapse_surfaces) + split_surfaces(hpxml_bldg.rim_joists, should_collapse_surfaces) + split_surfaces(hpxml_bldg.walls, should_collapse_surfaces) + split_surfaces(hpxml_bldg.foundation_walls, should_collapse_surfaces) + split_surfaces(hpxml_bldg.floors, should_collapse_surfaces) + split_surfaces(hpxml_bldg.slabs, should_collapse_surfaces) + split_surfaces(hpxml_bldg.windows, should_collapse_surfaces) + split_surfaces(hpxml_bldg.skylights, should_collapse_surfaces) + split_surfaces(hpxml_bldg.doors, should_collapse_surfaces) - split_num_surfaces_by_type = get_num_surfaces_by_type(hpxml) - hpxml.collapse_enclosure_surfaces() - final_num_surfaces_by_type = get_num_surfaces_by_type(hpxml) + split_num_surfaces_by_type = get_num_surfaces_by_type(hpxml_bldg) + hpxml_bldg.collapse_enclosure_surfaces() + final_num_surfaces_by_type = get_num_surfaces_by_type(hpxml_bldg) for surf_type in orig_num_surfaces_by_type.keys if should_collapse_surfaces @@ -794,25 +961,48 @@ def get_num_surfaces_by_type(hpxml) end end end + + # Check that Slab/DepthBelowGrade is ignored for below-grade spaces when + # collapsing surfaces. + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-foundation-walkout-basement.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) + num_kiva_fnd_objects = model.getFoundationKivas.size + + hpxml, hpxml_bldg = _create_hpxml('base-foundation-walkout-basement.xml') + hpxml_bldg.slabs[0].depth_below_grade = hpxml_bldg.foundation_walls[0].depth_below_grade + hpxml_bldg.slabs[0].area /= 3.0 + hpxml_bldg.slabs[0].exposed_perimeter /= 3.0 + for i in 1..2 + hpxml_bldg.slabs << hpxml_bldg.slabs[0].dup + hpxml_bldg.slabs[i].id = "Slab#{i + 1}" + hpxml_bldg.slabs[i].perimeter_insulation_id = "Slab#{i + 1}PerimeterInsulation" + hpxml_bldg.slabs[i].under_slab_insulation_id = "Slab#{i + 1}UnderSlabInsulation" + hpxml_bldg.slabs[i].depth_below_grade = hpxml_bldg.foundation_walls[i].depth_below_grade * i / 3.0 + end + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) + assert_equal(num_kiva_fnd_objects, model.getFoundationKivas.size) end def test_aspect_ratios # Test single-family attached - hpxml = _create_hpxml('base-bldgtype-attached.xml') - wall_outside = hpxml.walls.find { |w| w.exterior_adjacent_to == HPXML::LocationOutside && w.interior_adjacent_to == HPXML::LocationLivingSpace } - wall_other_housing_unit = hpxml.walls.find { |w| w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit && w.interior_adjacent_to == HPXML::LocationLivingSpace } + _hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-sfa-unit.xml') + wall_outside = hpxml_bldg.walls.find { |w| w.exterior_adjacent_to == HPXML::LocationOutside && w.interior_adjacent_to == HPXML::LocationConditionedSpace } + wall_other_housing_unit = hpxml_bldg.walls.find { |w| w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit && w.interior_adjacent_to == HPXML::LocationConditionedSpace } - wall_height = hpxml.building_construction.average_ceiling_height + wall_height = hpxml_bldg.building_construction.average_ceiling_height left_right_wall_length = wall_other_housing_unit.area / wall_height front_back_wall_length = ((wall_outside.area / wall_height) - left_right_wall_length) / 2.0 assert_in_delta(0.6667, front_back_wall_length / left_right_wall_length, 0.01) # Test multifamily - hpxml = _create_hpxml('base-bldgtype-multifamily.xml') - wall_outside = hpxml.walls.find { |w| w.exterior_adjacent_to == HPXML::LocationOutside && w.interior_adjacent_to == HPXML::LocationLivingSpace } - wall_other_housing_unit = hpxml.walls.find { |w| w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit && w.interior_adjacent_to == HPXML::LocationLivingSpace } + _hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit.xml') + wall_outside = hpxml_bldg.walls.find { |w| w.exterior_adjacent_to == HPXML::LocationOutside && w.interior_adjacent_to == HPXML::LocationConditionedSpace } + wall_other_housing_unit = hpxml_bldg.walls.find { |w| w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit && w.interior_adjacent_to == HPXML::LocationConditionedSpace } - wall_height = hpxml.building_construction.average_ceiling_height + wall_height = hpxml_bldg.building_construction.average_ceiling_height left_right_wall_length = wall_other_housing_unit.area / wall_height front_back_wall_length = ((wall_outside.area / wall_height) - left_right_wall_length) / 2.0 assert_in_delta(0.6667, front_back_wall_length / left_right_wall_length, 0.01) @@ -969,10 +1159,11 @@ def _test_measure(args_hash) File.delete(File.join(File.dirname(__FILE__), 'in.xml')) - return model, hpxml + return model, hpxml, hpxml.buildings[0] end def _create_hpxml(hpxml_name) - return HPXML.new(hpxml_path: File.join(@sample_files_path, hpxml_name)) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, hpxml_name)) + return hpxml, hpxml.buildings[0] end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb index 195ed10e..f176b5ed 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -7,7 +12,7 @@ require_relative '../measure.rb' require_relative '../resources/util.rb' -class HPXMLtoOpenStudioGeneratorTest < MiniTest::Test +class HPXMLtoOpenStudioGeneratorTest < Minitest::Test def sample_files_dir return File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'sample_files') end @@ -23,9 +28,9 @@ def get_generator(model, name) def test_generator args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-misc-generators.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) - hpxml.generators.each do |hpxml_generator| + hpxml_bldg.generators.each do |hpxml_generator| generator = get_generator(model, hpxml_generator.id) # Check object @@ -42,10 +47,10 @@ def test_generator def test_generator_shared args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-generator.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-mf-unit-shared-generator.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) - hpxml.generators.each do |hpxml_generator| + hpxml_bldg.generators.each do |hpxml_generator| generator = get_generator(model, hpxml_generator.id) # Check object @@ -95,6 +100,6 @@ def _test_measure(args_hash) File.delete(File.join(File.dirname(__FILE__), 'in.xml')) - return model, hpxml + return model, hpxml, hpxml.buildings[0] end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb index 6aa44233..7787a90b 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -7,7 +12,7 @@ require_relative '../measure.rb' require_relative '../resources/util.rb' -class HPXMLtoOpenStudioHotWaterApplianceTest < MiniTest::Test +class HPXMLtoOpenStudioHotWaterApplianceTest < Minitest::Test def sample_files_dir return File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'sample_files') end @@ -15,7 +20,7 @@ def sample_files_dir def get_ee_kwh_per_year(model, name) kwh_yr = 0.0 model.getElectricEquipments.each do |ee| - next unless ee.endUseSubcategory == name + next unless ee.endUseSubcategory.start_with? name hrs = Schedule.annual_equivalent_full_load_hrs(model.yearDescription.get.assumedYear, ee.schedule.get) kwh_yr += UnitConversions.convert(hrs * ee.designLevel.get * ee.multiplier * ee.space.get.multiplier, 'Wh', 'kWh') @@ -27,7 +32,7 @@ def get_ee_fractions(model, name) sens_frac = [] lat_frac = [] model.getElectricEquipments.each do |ee| - next unless ee.endUseSubcategory == name + next unless ee.endUseSubcategory.start_with? name sens_frac << 1.0 - ee.electricEquipmentDefinition.fractionLost - ee.electricEquipmentDefinition.fractionLatent lat_frac << ee.electricEquipmentDefinition.fractionLatent @@ -42,7 +47,7 @@ def get_ee_fractions(model, name) def get_oe_kwh(model, name) kwh_yr = [] model.getOtherEquipments.each do |oe| - next unless oe.endUseSubcategory == name + next unless oe.endUseSubcategory.start_with? name hrs = Schedule.annual_equivalent_full_load_hrs(model.yearDescription.get.assumedYear, oe.schedule.get) kwh_yr << UnitConversions.convert(hrs * oe.otherEquipmentDefinition.designLevel.get * oe.multiplier * oe.space.get.multiplier, 'Wh', 'kWh') @@ -57,7 +62,7 @@ def get_oe_kwh(model, name) def get_oe_fuel(model, name) fuel = [] model.getOtherEquipments.each do |oe| - next unless oe.endUseSubcategory == name + next unless oe.endUseSubcategory.start_with? name fuel << oe.fuelType end @@ -74,7 +79,7 @@ def get_oe_fractions(model, name) sens_frac = [] lat_frac = [] model.getOtherEquipments.each do |oe| - next unless oe.endUseSubcategory == name + next unless oe.endUseSubcategory.start_with? name sens_frac << 1.0 - oe.otherEquipmentDefinition.fractionLost - oe.otherEquipmentDefinition.fractionLatent lat_frac << oe.otherEquipmentDefinition.fractionLatent @@ -89,7 +94,7 @@ def get_oe_fractions(model, name) def get_wu_gpd(model, name) gpd = [] model.getWaterUseEquipments.each do |wue| - next unless wue.waterUseEquipmentDefinition.endUseSubcategory == name + next unless wue.waterUseEquipmentDefinition.endUseSubcategory.start_with? name full_load_hrs = Schedule.annual_equivalent_full_load_hrs(model.yearDescription.get.assumedYear, wue.flowRateFractionSchedule.get) gpd << UnitConversions.convert(full_load_hrs * wue.waterUseEquipmentDefinition.peakFlowRate * wue.multiplier, 'm^3/s', 'gal/min') * 60.0 / 365.0 @@ -104,11 +109,11 @@ def get_wu_gpd(model, name) def test_base args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # water use equipment peak flows - fixture_gpd = 44.60 - dist_gpd = 10.2343 + fixture_gpd = 43.71 + dist_gpd = 10.030 cw_gpd = 3.7116 dw_gpd = 2.7342 assert_in_epsilon(cw_gpd, get_wu_gpd(model, Constants.ObjectNameClothesWasher), 0.001) @@ -171,11 +176,11 @@ def test_base def test_dhw_multiple args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-multiple.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # water use equipment peak flows - fixture_gpd = 15.62 - dist_gpd = 3.5833 + fixture_gpd = 15.30 + dist_gpd = 3.510 cw_gpd = 1.2991 dw_gpd = 0.9570 assert_in_epsilon(fixture_gpd, get_wu_gpd(model, Constants.ObjectNameFixtures), 0.001) @@ -233,12 +238,12 @@ def test_dhw_multiple def test_dhw_shared_water_heater_recirc args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-water-heater-recirc.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-mf-unit-shared-water-heater-recirc.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # water use equipment peak flows - fixture_gpd = 44.60 - dist_gpd = 12.354 + fixture_gpd = 43.71 + dist_gpd = 12.103 cw_gpd = 3.7116 dw_gpd = 2.7342 assert_in_epsilon(cw_gpd, get_wu_gpd(model, Constants.ObjectNameClothesWasher), 0.001) @@ -294,19 +299,19 @@ def test_dhw_shared_water_heater_recirc assert_in_epsilon(1.0, get_oe_fractions(model, Constants.ObjectNameWaterLatent)[1], 0.001) # recirc - hot_water_distribution = hpxml.hot_water_distributions[0] + hot_water_distribution = hpxml_bldg.hot_water_distributions[0] pump_kwh_yr = 8.76 * hot_water_distribution.shared_recirculation_pump_power / hot_water_distribution.shared_recirculation_number_of_units_served assert_in_epsilon(pump_kwh_yr, get_ee_kwh_per_year(model, Constants.ObjectNameHotWaterRecircPump), 0.001) end def test_dhw_shared_laundry args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-laundry-room.xml')) - model, _hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-mf-unit-shared-laundry-room.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # water use equipment peak flows - fixture_gpd = 44.60 - dist_gpd = 12.354 + fixture_gpd = 43.71 + dist_gpd = 12.103 cw_gpd = 3.7116 dw_gpd = 2.7342 assert_in_epsilon(cw_gpd, get_wu_gpd(model, Constants.ObjectNameClothesWasher), 0.001) @@ -365,7 +370,7 @@ def test_dhw_shared_laundry def test_dhw_low_flow_fixtures args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-low-flow-fixtures.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # water use equipment peak flows fixture_gpd = 42.39 @@ -377,26 +382,26 @@ def test_dhw_low_flow_fixtures def test_dhw_dwhr args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-dwhr.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # water use equipment peak flows - fixture_gpd = 44.60 - dist_gpd = 10.2343 + fixture_gpd = 43.71 + dist_gpd = 10.030 assert_in_epsilon(fixture_gpd, get_wu_gpd(model, Constants.ObjectNameFixtures), 0.001) assert_in_epsilon(dist_gpd, get_wu_gpd(model, Constants.ObjectNameDistributionWaste), 0.001) # mains temperature - avg_tmains = 70.49 + avg_tmains = 70.91 assert_in_epsilon(avg_tmains, UnitConversions.convert(model.getSiteWaterMainsTemperature.temperatureSchedule.get.to_ScheduleInterval.get.timeSeries.averageValue, 'C', 'F'), 0.001) end def test_dhw_recirc_demand args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-recirc-demand.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - hot_water_distribution = hpxml.hot_water_distributions[0] + hot_water_distribution = hpxml_bldg.hot_water_distributions[0] pump_kwh_yr = 0.15 * hot_water_distribution.recirculation_pump_power assert_in_epsilon(pump_kwh_yr, get_ee_kwh_per_year(model, Constants.ObjectNameHotWaterRecircPump), 0.001) end @@ -404,10 +409,10 @@ def test_dhw_recirc_demand def test_dhw_recirc_manual args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-recirc-manual.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - hot_water_distribution = hpxml.hot_water_distributions[0] + hot_water_distribution = hpxml_bldg.hot_water_distributions[0] pump_kwh_yr = 0.10 * hot_water_distribution.recirculation_pump_power assert_in_epsilon(pump_kwh_yr, get_ee_kwh_per_year(model, Constants.ObjectNameHotWaterRecircPump), 0.001) end @@ -415,10 +420,10 @@ def test_dhw_recirc_manual def test_dhw_recirc_no_control args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-recirc-nocontrol.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - hot_water_distribution = hpxml.hot_water_distributions[0] + hot_water_distribution = hpxml_bldg.hot_water_distributions[0] pump_kwh_yr = 8.76 * hot_water_distribution.recirculation_pump_power assert_in_epsilon(pump_kwh_yr, get_ee_kwh_per_year(model, Constants.ObjectNameHotWaterRecircPump), 0.001) end @@ -426,10 +431,10 @@ def test_dhw_recirc_no_control def test_dhw_recirc_timer args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-recirc-timer.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - hot_water_distribution = hpxml.hot_water_distributions[0] + hot_water_distribution = hpxml_bldg.hot_water_distributions[0] pump_kwh_yr = 8.76 * hot_water_distribution.recirculation_pump_power assert_in_epsilon(pump_kwh_yr, get_ee_kwh_per_year(model, Constants.ObjectNameHotWaterRecircPump), 0.001) end @@ -437,10 +442,10 @@ def test_dhw_recirc_timer def test_dhw_recirc_temp args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-recirc-temperature.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - hot_water_distribution = hpxml.hot_water_distributions[0] + hot_water_distribution = hpxml_bldg.hot_water_distributions[0] pump_kwh_yr = 1.46 * hot_water_distribution.recirculation_pump_power assert_in_epsilon(pump_kwh_yr, get_ee_kwh_per_year(model, Constants.ObjectNameHotWaterRecircPump), 0.001) end @@ -448,7 +453,7 @@ def test_dhw_recirc_temp def test_appliances_none args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-appliances-none.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # water use equipment peak flows assert_nil(get_wu_gpd(model, Constants.ObjectNameClothesWasher)) @@ -485,7 +490,7 @@ def test_appliances_none def test_appliances_modified args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-appliances-modified.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # water use equipment peak flows cw_gpd = 3.7116 @@ -544,7 +549,7 @@ def test_appliances_modified def test_appliances_oil args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-appliances-oil.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # water use equipment peak flows cw_gpd = 3.7116 @@ -615,7 +620,7 @@ def test_appliances_oil def test_appliances_gas args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-appliances-gas.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # water use equipment peak flows cw_gpd = 3.7116 @@ -686,7 +691,7 @@ def test_appliances_gas def test_appliances_propane args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-appliances-propane.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # water use equipment peak flows cw_gpd = 3.7116 @@ -757,7 +762,7 @@ def test_appliances_propane def test_appliances_wood args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-appliances-wood.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # water use equipment peak flows cw_gpd = 3.7116 @@ -828,7 +833,7 @@ def test_appliances_wood def test_appliances_coal args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-appliances-coal.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # water use equipment peak flows cw_gpd = 3.7116 @@ -899,11 +904,11 @@ def test_appliances_coal def test_usage_multiplier args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-misc-usage-multiplier.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # water use equipment peak flows - fixture_gpd = 44.60 * 0.9 - dist_gpd = 10.2343 * 0.9 + fixture_gpd = 43.71 * 0.9 + dist_gpd = 10.030 * 0.9 cw_gpd = 3.7116 * 0.9 dw_gpd = 2.7342 * 0.9 assert_in_epsilon(cw_gpd, get_wu_gpd(model, Constants.ObjectNameClothesWasher), 0.001) @@ -962,11 +967,11 @@ def test_usage_multiplier def test_operational args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-residents-1.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # water use equipment peak flows - fixture_gpd = 16.80 - dist_gpd = 3.3277 + fixture_gpd = 16.46 + dist_gpd = 3.261 cw_gpd = 2.131 dw_gpd = 1.3599 assert_in_epsilon(cw_gpd, get_wu_gpd(model, Constants.ObjectNameClothesWasher), 0.001) @@ -1057,6 +1062,6 @@ def _test_measure(args_hash) File.delete(File.join(File.dirname(__FILE__), 'in.xml')) - return model, hpxml + return model, hpxml, hpxml.buildings[0] end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb index 95302693..2017a560 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -8,28 +13,29 @@ require_relative '../resources/util.rb' require_relative 'util.rb' -class HPXMLtoOpenStudioHVACTest < MiniTest::Test - def sample_files_dir - return File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'sample_files') +class HPXMLtoOpenStudioHVACTest < Minitest::Test + def setup + @root_path = File.absolute_path(File.join(File.dirname(__FILE__), '..', '..')) + @sample_files_path = File.join(@root_path, 'workflow', 'sample_files') + @tmp_hpxml_path = File.join(@sample_files_path, 'tmp.xml') + end + + def teardown + File.delete(@tmp_hpxml_path) if File.exist? @tmp_hpxml_path end def test_central_air_conditioner_1_speed ['base-hvac-central-ac-only-1-speed.xml', 'base-hvac-central-ac-only-1-speed-seer2.xml'].each do |hpxml_path| args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, hpxml_path)) - model, hpxml = _test_measure(args_hash) - - # Get HPXML values - cooling_system = hpxml.cooling_systems[0] - capacity = UnitConversions.convert(cooling_system.cooling_capacity, 'Btu/hr', 'W') + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, hpxml_path)) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check cooling coil assert_equal(1, model.getCoilCoolingDXSingleSpeeds.size) clg_coil = model.getCoilCoolingDXSingleSpeeds[0] - cop = 3.73 # Expected value - assert_in_epsilon(cop, clg_coil.ratedCOP, 0.01) - assert_in_epsilon(capacity, clg_coil.ratedTotalCoolingCapacity.get, 0.01) + assert_in_epsilon(3.77, clg_coil.ratedCOP, 0.01) + assert_in_epsilon(7230, clg_coil.ratedTotalCoolingCapacity.get, 0.01) # Check EMS assert_equal(1, model.getAirLoopHVACUnitarySystems.size) @@ -41,21 +47,19 @@ def test_central_air_conditioner_1_speed def test_central_air_conditioner_2_speed args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-central-ac-only-2-speed.xml')) - model, hpxml = _test_measure(args_hash) - - # Get HPXML values - cooling_system = hpxml.cooling_systems[0] - capacity = UnitConversions.convert(cooling_system.cooling_capacity, 'Btu/hr', 'W') + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-central-ac-only-2-speed.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check cooling coil assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) clg_coil = model.getCoilCoolingDXMultiSpeeds[0] - cops = [4.95, 4.59] # Expected values - cops.each_with_index do |cop, i| + assert_equal(2, clg_coil.stages.size) + [4.95, 4.53].each_with_index do |cop, i| assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) end - assert_in_epsilon(capacity, clg_coil.stages[-1].grossRatedTotalCoolingCapacity.get, 0.01) + [5143, 7158].each_with_index do |capacity, i| + assert_in_epsilon(capacity, clg_coil.stages[i].grossRatedTotalCoolingCapacity.get, 0.01) + end # Check EMS assert_equal(1, model.getAirLoopHVACUnitarySystems.size) @@ -66,21 +70,19 @@ def test_central_air_conditioner_2_speed def test_central_air_conditioner_var_speed args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-central-ac-only-var-speed.xml')) - model, hpxml = _test_measure(args_hash) - - # Get HPXML values - cooling_system = hpxml.cooling_systems[0] - capacity = UnitConversions.convert(cooling_system.cooling_capacity, 'Btu/hr', 'W') + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-central-ac-only-var-speed.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check cooling coil assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) clg_coil = model.getCoilCoolingDXMultiSpeeds[0] - cops = [6.57, 6.81, 6.63, 6.14] # Expected values - cops.each_with_index do |cop, i| + assert_equal(2, clg_coil.stages.size) + [5.89, 5.25].each_with_index do |cop, i| assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) end - assert_in_epsilon(capacity, clg_coil.stages[-1].grossRatedTotalCoolingCapacity.get, 0.01) + [2780, 7169].each_with_index do |capacity, i| + assert_in_epsilon(capacity, clg_coil.stages[i].grossRatedTotalCoolingCapacity.get, 0.01) + end # Check EMS assert_equal(1, model.getAirLoopHVACUnitarySystems.size) @@ -91,11 +93,11 @@ def test_central_air_conditioner_var_speed def test_room_air_conditioner args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-room-ac-only.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-room-ac-only.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - cooling_system = hpxml.cooling_systems[0] + cooling_system = hpxml_bldg.cooling_systems[0] eer = cooling_system.cooling_efficiency_eer ceer = eer / 1.01 # convert to ceer cop = UnitConversions.convert(ceer, 'Btu/hr', 'W') # Expected value @@ -110,11 +112,11 @@ def test_room_air_conditioner def test_room_air_conditioner_ceer args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-room-ac-only-ceer.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-room-ac-only-ceer.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - cooling_system = hpxml.cooling_systems[0] + cooling_system = hpxml_bldg.cooling_systems[0] ceer = cooling_system.cooling_efficiency_ceer cop = UnitConversions.convert(ceer, 'Btu/hr', 'W') # Expected value capacity = UnitConversions.convert(cooling_system.cooling_capacity, 'Btu/hr', 'W') @@ -128,11 +130,11 @@ def test_room_air_conditioner_ceer def test_room_ac_with_heating args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-room-ac-with-heating.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-room-ac-with-heating.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - cooling_system = hpxml.cooling_systems[0] + cooling_system = hpxml_bldg.cooling_systems[0] eer = cooling_system.cooling_efficiency_eer ceer = eer / 1.01 # convert to ceer cop = UnitConversions.convert(ceer, 'Btu/hr', 'W') # Expected value @@ -158,11 +160,11 @@ def test_room_ac_with_heating def test_ptac args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-ptac.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-ptac.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - cooling_system = hpxml.cooling_systems[0] + cooling_system = hpxml_bldg.cooling_systems[0] eer = cooling_system.cooling_efficiency_eer ceer = eer / 1.01 # convert to ceer cop = UnitConversions.convert(ceer, 'Btu/hr', 'W') # Expected value @@ -178,11 +180,11 @@ def test_ptac def test_ptac_with_heating_electricity args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-ptac-with-heating-electricity.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-ptac-with-heating-electricity.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - cooling_system = hpxml.cooling_systems[0] + cooling_system = hpxml_bldg.cooling_systems[0] eer = cooling_system.cooling_efficiency_eer ceer = eer / 1.01 # convert to ceer cop = UnitConversions.convert(ceer, 'Btu/hr', 'W') # Expected value @@ -208,11 +210,11 @@ def test_ptac_with_heating_electricity def test_ptac_with_heating_gas args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-ptac-with-heating-electricity.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-ptac-with-heating-electricity.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - cooling_system = hpxml.cooling_systems[0] + cooling_system = hpxml_bldg.cooling_systems[0] eer = cooling_system.cooling_efficiency_eer ceer = eer / 1.01 # convert to ceer cop = UnitConversions.convert(ceer, 'Btu/hr', 'W') # Expected value @@ -238,11 +240,11 @@ def test_ptac_with_heating_gas def test_pthp args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-pthp.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-pthp.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heat_pump = hpxml.heat_pumps[0] + heat_pump = hpxml_bldg.heat_pumps[0] backup_efficiency = heat_pump.backup_heating_efficiency_percent clg_capacity = UnitConversions.convert(heat_pump.cooling_capacity, 'Btu/hr', 'W') htg_capacity = UnitConversions.convert(heat_pump.heating_capacity, 'Btu/hr', 'W') @@ -273,11 +275,11 @@ def test_pthp def test_room_heat_pump args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-room-ac-with-reverse-cycle.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-room-ac-with-reverse-cycle.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heat_pump = hpxml.heat_pumps[0] + heat_pump = hpxml_bldg.heat_pumps[0] clg_capacity = UnitConversions.convert(heat_pump.cooling_capacity, 'Btu/hr', 'W') htg_capacity = UnitConversions.convert(heat_pump.heating_capacity, 'Btu/hr', 'W') supp_htg_capacity = UnitConversions.convert(heat_pump.backup_heating_capacity, 'Btu/hr', 'W') @@ -310,11 +312,11 @@ def test_evap_cooler def test_furnace_gas args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-furnace-gas-only.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-furnace-gas-only.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heating_system = hpxml.heating_systems[0] + heating_system = hpxml_bldg.heating_systems[0] afue = heating_system.heating_efficiency_afue capacity = UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W') fuel = heating_system.heating_system_fuel @@ -329,11 +331,11 @@ def test_furnace_gas def test_furnace_electric args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-furnace-elec-only.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-furnace-elec-only.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heating_system = hpxml.heating_systems[0] + heating_system = hpxml_bldg.heating_systems[0] afue = heating_system.heating_efficiency_afue capacity = UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W') @@ -346,11 +348,11 @@ def test_furnace_electric def test_boiler_gas args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-boiler-gas-only.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-boiler-gas-only.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heating_system = hpxml.heating_systems[0] + heating_system = hpxml_bldg.heating_systems[0] afue = heating_system.heating_efficiency_afue capacity = UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W') fuel = heating_system.heating_system_fuel @@ -365,11 +367,11 @@ def test_boiler_gas def test_boiler_coal args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-boiler-coal-only.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-boiler-coal-only.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heating_system = hpxml.heating_systems[0] + heating_system = hpxml_bldg.heating_systems[0] afue = heating_system.heating_efficiency_afue capacity = UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W') fuel = heating_system.heating_system_fuel @@ -384,11 +386,11 @@ def test_boiler_coal def test_boiler_electric args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-boiler-elec-only.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-boiler-elec-only.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heating_system = hpxml.heating_systems[0] + heating_system = hpxml_bldg.heating_systems[0] afue = heating_system.heating_efficiency_afue capacity = UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W') fuel = heating_system.heating_system_fuel @@ -403,11 +405,11 @@ def test_boiler_electric def test_electric_resistance args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-elec-resistance-only.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-elec-resistance-only.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heating_system = hpxml.heating_systems[0] + heating_system = hpxml_bldg.heating_systems[0] efficiency = heating_system.heating_efficiency_percent capacity = UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W') @@ -420,11 +422,11 @@ def test_electric_resistance def test_stove_oil args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-stove-oil-only.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-stove-oil-only.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heating_system = hpxml.heating_systems[0] + heating_system = hpxml_bldg.heating_systems[0] efficiency = heating_system.heating_efficiency_percent capacity = UnitConversions.convert(heating_system.heating_capacity, 'Btu/hr', 'W') fuel = heating_system.heating_system_fuel @@ -441,29 +443,25 @@ def test_air_to_air_heat_pump_1_speed ['base-hvac-air-to-air-heat-pump-1-speed.xml', 'base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml'].each do |hpxml_path| args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, hpxml_path)) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, hpxml_path)) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heat_pump = hpxml.heat_pumps[0] + heat_pump = hpxml_bldg.heat_pumps[0] backup_efficiency = heat_pump.backup_heating_efficiency_percent - clg_capacity = UnitConversions.convert(heat_pump.cooling_capacity, 'Btu/hr', 'W') - htg_capacity = UnitConversions.convert(heat_pump.heating_capacity, 'Btu/hr', 'W') supp_htg_capacity = UnitConversions.convert(heat_pump.backup_heating_capacity, 'Btu/hr', 'W') # Check cooling coil assert_equal(1, model.getCoilCoolingDXSingleSpeeds.size) clg_coil = model.getCoilCoolingDXSingleSpeeds[0] - cop = 3.73 # Expected value - assert_in_epsilon(cop, clg_coil.ratedCOP, 0.01) - assert_in_epsilon(clg_capacity, clg_coil.ratedTotalCoolingCapacity.get, 0.01) + assert_in_epsilon(3.77, clg_coil.ratedCOP, 0.01) + assert_in_epsilon(10846, clg_coil.ratedTotalCoolingCapacity.get, 0.01) # Check heating coil assert_equal(1, model.getCoilHeatingDXSingleSpeeds.size) htg_coil = model.getCoilHeatingDXSingleSpeeds[0] - cop = 3.28 # Expected value - assert_in_epsilon(cop, htg_coil.ratedCOP, 0.01) - assert_in_epsilon(htg_capacity, htg_coil.ratedTotalHeatingCapacity.get, 0.01) + assert_in_epsilon(3.29, htg_coil.ratedCOP, 0.01) + assert_in_epsilon(10262, htg_coil.ratedTotalHeatingCapacity.get, 0.01) # Check supp heating coil assert_equal(1, model.getCoilHeatingElectrics.size) @@ -487,11 +485,11 @@ def test_heat_pump_temperatures 'base-hvac-mini-split-heat-pump-ductless.xml', 'base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml'].each do |hpxml_name| args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, hpxml_name)) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, hpxml_name)) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heat_pump = hpxml.heat_pumps[0] + heat_pump = hpxml_bldg.heat_pumps[0] if not heat_pump.backup_heating_switchover_temp.nil? backup_lockout_temp = UnitConversions.convert(heat_pump.backup_heating_switchover_temp, 'F', 'C') compressor_lockout_temp = UnitConversions.convert(heat_pump.backup_heating_switchover_temp, 'F', 'C') @@ -522,33 +520,35 @@ def test_heat_pump_temperatures def test_air_to_air_heat_pump_2_speed args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-air-to-air-heat-pump-2-speed.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-2-speed.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heat_pump = hpxml.heat_pumps[0] + heat_pump = hpxml_bldg.heat_pumps[0] backup_efficiency = heat_pump.backup_heating_efficiency_percent - clg_capacity = UnitConversions.convert(heat_pump.cooling_capacity, 'Btu/hr', 'W') - htg_capacity = UnitConversions.convert(heat_pump.heating_capacity, 'Btu/hr', 'W') supp_htg_capacity = UnitConversions.convert(heat_pump.backup_heating_capacity, 'Btu/hr', 'W') # Check cooling coil assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) clg_coil = model.getCoilCoolingDXMultiSpeeds[0] - cops = [4.95, 4.59] # Expected values - cops.each_with_index do |cop, i| + assert_equal(2, clg_coil.stages.size) + [4.95, 4.53].each_with_index do |cop, i| assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) end - assert_in_epsilon(clg_capacity, clg_coil.stages[-1].grossRatedTotalCoolingCapacity.get, 0.01) + [7715, 10736].each_with_index do |clg_capacity, i| + assert_in_epsilon(clg_capacity, clg_coil.stages[i].grossRatedTotalCoolingCapacity.get, 0.01) + end # Check heating coil assert_equal(1, model.getCoilHeatingDXMultiSpeeds.size) htg_coil = model.getCoilHeatingDXMultiSpeeds[0] - cops = [4.52, 4.08] # Expected values - cops.each_with_index do |cop, i| + assert_equal(2, htg_coil.stages.size) + [4.52, 3.93].each_with_index do |cop, i| assert_in_epsilon(cop, htg_coil.stages[i].grossRatedHeatingCOP, 0.01) end - assert_in_epsilon(htg_capacity, htg_coil.stages[-1].grossRatedHeatingCapacity.get, 0.01) + [7499, 10360].each_with_index do |htg_capacity, i| + assert_in_epsilon(htg_capacity, htg_coil.stages[i].grossRatedHeatingCapacity.get, 0.01) + end # Check supp heating coil assert_equal(1, model.getCoilHeatingElectrics.size) @@ -565,33 +565,35 @@ def test_air_to_air_heat_pump_2_speed def test_air_to_air_heat_pump_var_speed args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-air-to-air-heat-pump-var-speed.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-var-speed.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heat_pump = hpxml.heat_pumps[0] + heat_pump = hpxml_bldg.heat_pumps[0] backup_efficiency = heat_pump.backup_heating_efficiency_percent - clg_capacity = UnitConversions.convert(heat_pump.cooling_capacity, 'Btu/hr', 'W') - htg_capacity = UnitConversions.convert(heat_pump.heating_capacity, 'Btu/hr', 'W') supp_htg_capacity = UnitConversions.convert(heat_pump.backup_heating_capacity, 'Btu/hr', 'W') # Check cooling coil assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) clg_coil = model.getCoilCoolingDXMultiSpeeds[0] - cops = [5.93, 6.15, 5.98, 5.54] # Expected values - cops.each_with_index do |cop, i| + assert_equal(2, clg_coil.stages.size) + [5.39, 4.77].each_with_index do |cop, i| assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) end - assert_in_epsilon(clg_capacity, clg_coil.stages[-1].grossRatedTotalCoolingCapacity.get, 0.01) + [4169, 10753].each_with_index do |clg_capacity, i| + assert_in_epsilon(clg_capacity, clg_coil.stages[i].grossRatedTotalCoolingCapacity.get, 0.01) + end # Check heating coil assert_equal(1, model.getCoilHeatingDXMultiSpeeds.size) htg_coil = model.getCoilHeatingDXMultiSpeeds[0] - cops = [5.67, 4.84, 4.09, 3.91] # Expected values - cops.each_with_index do |cop, i| + assert_equal(2, htg_coil.stages.size) + [4.56, 3.89].each_with_index do |cop, i| assert_in_epsilon(cop, htg_coil.stages[i].grossRatedHeatingCOP, 0.01) end - assert_in_epsilon(htg_capacity, htg_coil.stages[-2].grossRatedHeatingCapacity.get, 0.01) + [3876, 10634].each_with_index do |htg_capacity, i| + assert_in_epsilon(htg_capacity, htg_coil.stages[i].grossRatedHeatingCapacity.get, 0.01) + end # Check supp heating coil assert_equal(1, model.getCoilHeatingElectrics.size) @@ -606,33 +608,77 @@ def test_air_to_air_heat_pump_var_speed assert(program_values.empty?) # Check no EMS program end - def test_mini_split_heat_pump + def test_air_to_air_heat_pump_var_speed_detailed_performance args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-mini-split-heat-pump-ductless.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heat_pump = hpxml.heat_pumps[0] - clg_capacity = UnitConversions.convert(heat_pump.cooling_capacity, 'Btu/hr', 'W') - htg_capacity = UnitConversions.convert(heat_pump.heating_capacity, 'Btu/hr', 'W') + heat_pump = hpxml_bldg.heat_pumps[0] # Check cooling coil assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) clg_coil = model.getCoilCoolingDXMultiSpeeds[0] - cops = [5.76, 4.99, 4.19, 3.10] # Expected values - cops.each_with_index do |cop, i| + assert_equal(2, clg_coil.stages.size) + [4.51, 2.88].each_with_index do |cop, i| assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) end - assert_in_epsilon(clg_capacity * 1.2, clg_coil.stages[-1].grossRatedTotalCoolingCapacity.get, 0.01) + [3435, 10726].each_with_index do |clg_capacity, i| + assert_in_epsilon(clg_capacity, clg_coil.stages[i].grossRatedTotalCoolingCapacity.get, 0.01) + end # Check heating coil assert_equal(1, model.getCoilHeatingDXMultiSpeeds.size) htg_coil = model.getCoilHeatingDXMultiSpeeds[0] - cops = [5.42, 4.34, 3.98, 3.60] # Expected values - cops.each_with_index do |cop, i| + assert_equal(2, htg_coil.stages.size) + [4.75, 3.59].each_with_index do |cop, i| assert_in_epsilon(cop, htg_coil.stages[i].grossRatedHeatingCOP, 0.01) end - assert_in_epsilon(htg_capacity * 1.2, htg_coil.stages[-1].grossRatedHeatingCapacity.get, 0.01) + [2927, 10376].each_with_index do |htg_capacity, i| + assert_in_epsilon(htg_capacity, htg_coil.stages[i].grossRatedHeatingCapacity.get, 0.01) + end + + # Check supp heating coil + backup_efficiency = heat_pump.backup_heating_efficiency_percent + supp_htg_capacity = UnitConversions.convert(heat_pump.backup_heating_capacity, 'Btu/hr', 'W') + assert_equal(1, model.getCoilHeatingElectrics.size) + supp_htg_coil = model.getCoilHeatingElectrics[0] + assert_in_epsilon(backup_efficiency, supp_htg_coil.efficiency, 0.01) + assert_in_epsilon(supp_htg_capacity, supp_htg_coil.nominalCapacity.get, 0.01) + + # Check EMS + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[0] + program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} IQ") + assert(program_values.empty?) # Check no EMS program + end + + def test_mini_split_heat_pump + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-mini-split-heat-pump-ductless.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) + + # Check cooling coil + assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) + clg_coil = model.getCoilCoolingDXMultiSpeeds[0] + assert_equal(2, clg_coil.stages.size) + [4.40, 3.20].each_with_index do |cop, i| + assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) + end + [2691, 10606].each_with_index do |clg_capacity, i| + assert_in_epsilon(clg_capacity, clg_coil.stages[i].grossRatedTotalCoolingCapacity.get, 0.01) + end + + # Check heating coil + assert_equal(1, model.getCoilHeatingDXMultiSpeeds.size) + htg_coil = model.getCoilHeatingDXMultiSpeeds[0] + assert_equal(2, htg_coil.stages.size) + [4.63, 3.31].each_with_index do |cop, i| + assert_in_epsilon(cop, htg_coil.stages[i].grossRatedHeatingCOP, 0.01) + end + [3273, 12890].each_with_index do |htg_capacity, i| + assert_in_epsilon(htg_capacity, htg_coil.stages[i].grossRatedHeatingCapacity.get, 0.01) + end # Check supp heating coil assert_equal(0, model.getCoilHeatingElectrics.size) @@ -644,23 +690,58 @@ def test_mini_split_heat_pump assert(program_values.empty?) # Check no EMS program end - def test_mini_split_air_conditioner + def test_mini_split_heat_pump_detailed_performance args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-mini-split-air-conditioner-only-ductless.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml')) + model, _hpxml = _test_measure(args_hash) - # Get HPXML values - cooling_system = hpxml.cooling_systems[0] - clg_capacity = UnitConversions.convert(cooling_system.cooling_capacity, 'Btu/hr', 'W') + # Check cooling coil + assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) + clg_coil = model.getCoilCoolingDXMultiSpeeds[0] + assert_equal(2, clg_coil.stages.size) + [4.06, 3.33].each_with_index do |cop, i| + assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) + end + [3041, 12557].each_with_index do |clg_capacity, i| + assert_in_epsilon(clg_capacity, clg_coil.stages[i].grossRatedTotalCoolingCapacity.get, 0.01) + end + + # Check heating coil + assert_equal(1, model.getCoilHeatingDXMultiSpeeds.size) + htg_coil = model.getCoilHeatingDXMultiSpeeds[0] + assert_equal(2, htg_coil.stages.size) + [4.82, 3.23].each_with_index do |cop, i| + assert_in_epsilon(cop, htg_coil.stages[i].grossRatedHeatingCOP, 0.01) + end + [3557, 16426].each_with_index do |htg_capacity, i| + assert_in_epsilon(htg_capacity, htg_coil.stages[i].grossRatedHeatingCapacity.get, 0.01) + end + + # Check supp heating coil + assert_equal(0, model.getCoilHeatingElectrics.size) + + # Check EMS + assert_equal(1, model.getAirLoopHVACUnitarySystems.size) + unitary_system = model.getAirLoopHVACUnitarySystems[0] + program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} IQ") + assert(program_values.empty?) # Check no EMS program + end + + def test_mini_split_air_conditioner + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-mini-split-air-conditioner-only-ductless.xml')) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check cooling coil assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) clg_coil = model.getCoilCoolingDXMultiSpeeds[0] - cops = [5.76, 4.99, 4.19, 3.10] # Expected values - cops.each_with_index do |cop, i| + assert_equal(2, clg_coil.stages.size) + [4.40, 3.23].each_with_index do |cop, i| assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) end - assert_in_epsilon(clg_capacity * 1.2, clg_coil.stages[-1].grossRatedTotalCoolingCapacity.get, 0.01) + [1794, 7086].each_with_index do |clg_capacity, i| + assert_in_epsilon(clg_capacity, clg_coil.stages[i].grossRatedTotalCoolingCapacity.get, 0.01) + end # Check EMS assert_equal(1, model.getAirLoopHVACUnitarySystems.size) @@ -671,11 +752,11 @@ def test_mini_split_air_conditioner def test_ground_to_air_heat_pump args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-ground-to-air-heat-pump.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-ground-to-air-heat-pump.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heat_pump = hpxml.heat_pumps[0] + heat_pump = hpxml_bldg.heat_pumps[0] backup_efficiency = heat_pump.backup_heating_efficiency_percent clg_capacity = UnitConversions.convert(heat_pump.cooling_capacity, 'Btu/hr', 'W') htg_capacity = UnitConversions.convert(heat_pump.heating_capacity, 'Btu/hr', 'W') @@ -684,15 +765,13 @@ def test_ground_to_air_heat_pump # Check cooling coil assert_equal(1, model.getCoilCoolingWaterToAirHeatPumpEquationFits.size) clg_coil = model.getCoilCoolingWaterToAirHeatPumpEquationFits[0] - cop = 5.36 # Expected values - assert_in_epsilon(cop, clg_coil.ratedCoolingCoefficientofPerformance, 0.01) + assert_in_epsilon(4.87, clg_coil.ratedCoolingCoefficientofPerformance, 0.01) assert_in_epsilon(clg_capacity, clg_coil.ratedTotalCoolingCapacity.get, 0.01) # Check heating coil assert_equal(1, model.getCoilHeatingWaterToAirHeatPumpEquationFits.size) htg_coil = model.getCoilHeatingWaterToAirHeatPumpEquationFits[0] - cop = 3.65 # Expected values - assert_in_epsilon(cop, htg_coil.ratedHeatingCoefficientofPerformance, 0.01) + assert_in_epsilon(3.6, htg_coil.ratedHeatingCoefficientofPerformance, 0.01) assert_in_epsilon(htg_capacity, htg_coil.ratedHeatingCapacity.get, 0.01) # Check supp heating coil @@ -706,83 +785,95 @@ def test_ground_to_air_heat_pump unitary_system = model.getAirLoopHVACUnitarySystems[0] program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{unitary_system.name} IQ") assert(program_values.empty?) # Check no EMS program + + # Check ghx + assert(1, model.getGroundHeatExchangerVerticals.size) + ghx = model.getGroundHeatExchangerVerticals[0] + + # Check xing + assert(1, model.getSiteGroundTemperatureUndisturbedXings.size) + xing = model.getSiteGroundTemperatureUndisturbedXings[0] + assert_in_epsilon(ghx.groundThermalConductivity.get, xing.soilThermalConductivity, 0.01) + assert_in_epsilon(962, xing.soilDensity, 0.01) + assert_in_epsilon(ghx.groundThermalHeatCapacity.get / xing.soilDensity, xing.soilSpecificHeat, 0.01) + assert_in_epsilon(ghx.groundTemperature.get, xing.averageSoilSurfaceTemperature, 0.01) + assert_in_epsilon(12.5, xing.soilSurfaceTemperatureAmplitude1, 0.01) + assert_in_epsilon(-1.3, xing.soilSurfaceTemperatureAmplitude2, 0.01) + assert_in_epsilon(20, xing.phaseShiftofTemperatureAmplitude1, 0.01) + assert_in_epsilon(31, xing.phaseShiftofTemperatureAmplitude2, 0.01) end def test_shared_chiller_baseboard args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-chiller-only-baseboard.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - cooling_system = hpxml.cooling_systems[0] + cooling_system = hpxml_bldg.cooling_systems[0] capacity = UnitConversions.convert(cooling_system.cooling_capacity, 'Btu/hr', 'W') # Check cooling coil assert_equal(1, model.getCoilCoolingDXSingleSpeeds.size) clg_coil = model.getCoilCoolingDXSingleSpeeds[0] - cop = 3.85 # Expected value - assert_in_epsilon(cop, clg_coil.ratedCOP, 0.01) + assert_in_epsilon(3.62, clg_coil.ratedCOP, 0.01) refute_in_epsilon(capacity, clg_coil.ratedTotalCoolingCapacity.get, 0.01) # Uses autosized capacity end def test_shared_chiller_fan_coil args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - cooling_system = hpxml.cooling_systems[0] + cooling_system = hpxml_bldg.cooling_systems[0] capacity = UnitConversions.convert(cooling_system.cooling_capacity, 'Btu/hr', 'W') # Check cooling coil assert_equal(1, model.getCoilCoolingDXSingleSpeeds.size) clg_coil = model.getCoilCoolingDXSingleSpeeds[0] - cop = 3.45 # Expected value - assert_in_epsilon(cop, clg_coil.ratedCOP, 0.01) + assert_in_epsilon(3.31, clg_coil.ratedCOP, 0.01) refute_in_epsilon(capacity, clg_coil.ratedTotalCoolingCapacity.get, 0.01) # Uses autosized capacity end def test_shared_chiller_water_loop_heat_pump args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - cooling_system = hpxml.cooling_systems[0] + cooling_system = hpxml_bldg.cooling_systems[0] capacity = UnitConversions.convert(cooling_system.cooling_capacity, 'Btu/hr', 'W') # Check cooling coil assert_equal(1, model.getCoilCoolingDXSingleSpeeds.size) clg_coil = model.getCoilCoolingDXSingleSpeeds[0] - cop = 1.30 # Expected value - assert_in_epsilon(cop, clg_coil.ratedCOP, 0.01) + assert_in_epsilon(1.50, clg_coil.ratedCOP, 0.01) refute_in_epsilon(capacity, clg_coil.ratedTotalCoolingCapacity.get, 0.01) # Uses autosized capacity end def test_shared_cooling_tower_water_loop_heat_pump args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - cooling_system = hpxml.cooling_systems[0] + cooling_system = hpxml_bldg.cooling_systems[0] capacity = UnitConversions.convert(cooling_system.cooling_capacity.to_f, 'Btu/hr', 'W') # Check cooling coil assert_equal(1, model.getCoilCoolingDXSingleSpeeds.size) clg_coil = model.getCoilCoolingDXSingleSpeeds[0] - cop = 3.68 # Expected value - assert_in_epsilon(cop, clg_coil.ratedCOP, 0.01) + assert_in_epsilon(3.50, clg_coil.ratedCOP, 0.01) refute_in_epsilon(capacity, clg_coil.ratedTotalCoolingCapacity.get, 0.01) # Uses autosized capacity end def test_shared_boiler_baseboard args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-boiler-only-baseboard.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heating_system = hpxml.heating_systems[0] + heating_system = hpxml_bldg.heating_systems[0] afue = heating_system.heating_efficiency_afue capacity = UnitConversions.convert(heating_system.heating_capacity.to_f, 'Btu/hr', 'W') fuel = heating_system.heating_system_fuel @@ -797,11 +888,11 @@ def test_shared_boiler_baseboard def test_shared_boiler_fan_coil args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heating_system = hpxml.heating_systems[0] + heating_system = hpxml_bldg.heating_systems[0] afue = heating_system.heating_efficiency_afue capacity = UnitConversions.convert(heating_system.heating_capacity.to_f, 'Btu/hr', 'W') fuel = heating_system.heating_system_fuel @@ -816,15 +907,15 @@ def test_shared_boiler_fan_coil def test_shared_boiler_water_loop_heat_pump args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heating_system = hpxml.heating_systems[0] + heating_system = hpxml_bldg.heating_systems[0] afue = heating_system.heating_efficiency_afue capacity = UnitConversions.convert(heating_system.heating_capacity.to_f, 'Btu/hr', 'W') fuel = heating_system.heating_system_fuel - heat_pump = hpxml.heat_pumps[0] + heat_pump = hpxml_bldg.heat_pumps[0] wlhp_cop = heat_pump.heating_efficiency_cop # Check boiler @@ -849,11 +940,11 @@ def test_shared_boiler_water_loop_heat_pump def test_shared_ground_loop_ground_to_air_heat_pump args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heat_pump = hpxml.heat_pumps[0] + heat_pump = hpxml_bldg.heat_pumps[0] backup_efficiency = heat_pump.backup_heating_efficiency_percent clg_capacity = UnitConversions.convert(heat_pump.cooling_capacity, 'Btu/hr', 'W') htg_capacity = UnitConversions.convert(heat_pump.heating_capacity, 'Btu/hr', 'W') @@ -862,15 +953,13 @@ def test_shared_ground_loop_ground_to_air_heat_pump # Check cooling coil assert_equal(1, model.getCoilCoolingWaterToAirHeatPumpEquationFits.size) clg_coil = model.getCoilCoolingWaterToAirHeatPumpEquationFits[0] - cop = 5.36 # Expected values - assert_in_epsilon(cop, clg_coil.ratedCoolingCoefficientofPerformance, 0.01) + assert_in_epsilon(4.87, clg_coil.ratedCoolingCoefficientofPerformance, 0.01) assert_in_epsilon(clg_capacity, clg_coil.ratedTotalCoolingCapacity.get, 0.01) # Check heating coil assert_equal(1, model.getCoilHeatingWaterToAirHeatPumpEquationFits.size) htg_coil = model.getCoilHeatingWaterToAirHeatPumpEquationFits[0] - cop = 3.65 # Expected values - assert_in_epsilon(cop, htg_coil.ratedHeatingCoefficientofPerformance, 0.01) + assert_in_epsilon(3.6, htg_coil.ratedHeatingCoefficientofPerformance, 0.01) assert_in_epsilon(htg_capacity, htg_coil.ratedHeatingCapacity.get, 0.01) # Check supp heating coil @@ -880,13 +969,13 @@ def test_shared_ground_loop_ground_to_air_heat_pump assert_in_epsilon(supp_htg_capacity, supp_htg_coil.nominalCapacity.get, 0.01) end - def test_install_quality_air_to_air_heat_pump_1_speed_ratio + def test_install_quality_air_to_air_heat_pump_1_speed args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heat_pump = hpxml.heat_pumps[0] + heat_pump = hpxml_bldg.heat_pumps[0] charge_defect = heat_pump.charge_defect_ratio fan_watts_cfm = heat_pump.fan_watts_per_cfm @@ -920,34 +1009,59 @@ def test_install_quality_air_to_air_heat_pump_1_speed_ratio assert_in_epsilon(program_values['FF_AF_htg'].sum, heating_cfm / rated_airflow_cfm_htg, 0.01) end - def test_install_quality_air_to_air_heat_pump_2_speed_ratio + def test_install_quality_air_to_air_heat_pump_2_speed args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heat_pump = hpxml.heat_pumps[0] - _check_install_quality_multispeed_ratio(heat_pump, model, heat_pump) + heat_pump = hpxml_bldg.heat_pumps[0] + program_values = _check_install_quality_multispeed_ratio(heat_pump, model, heat_pump) + [1.088, 1.088].each_with_index do |rated_airflow_ratio, i| + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i], 0.01) + end + [0.806, 0.806].each_with_index do |rated_airflow_ratio, i| + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_htg'][i], 0.01) + end end - def test_install_quality_air_to_air_heat_pump_var_speed_ratio + def test_install_quality_air_to_air_heat_pump_var_speed args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) + + # Get HPXML values + heat_pump = hpxml_bldg.heat_pumps[0] + program_values = _check_install_quality_multispeed_ratio(heat_pump, model, heat_pump) + [0.936, 0.936].each_with_index do |rated_airflow_ratio, i| + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i], 0.01) + end + [0.71, 0.71].each_with_index do |rated_airflow_ratio, i| + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_htg'][i], 0.01) + end + + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heat_pump = hpxml.heat_pumps[0] - _check_install_quality_multispeed_ratio(heat_pump, model, heat_pump) + heat_pump = hpxml_bldg.heat_pumps[0] + program_values = _check_install_quality_multispeed_ratio(heat_pump, model, heat_pump) + [0.936, 0.936].each_with_index do |rated_airflow_ratio, i| + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i], 0.01) + end + [0.71, 0.71].each_with_index do |rated_airflow_ratio, i| + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_htg'][i], 0.01) + end end - def test_install_quality_furnace_central_air_conditioner_1_speed_ratio + def test_install_quality_furnace_central_air_conditioner_1_speed args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - cooling_system = hpxml.cooling_systems[0] - heating_system = hpxml.heating_systems[0] + cooling_system = hpxml_bldg.cooling_systems[0] + heating_system = hpxml_bldg.heating_systems[0] charge_defect = cooling_system.charge_defect_ratio fan_watts_cfm = cooling_system.fan_watts_per_cfm fan_watts_cfm2 = heating_system.fan_watts_per_cfm @@ -978,33 +1092,39 @@ def test_install_quality_furnace_central_air_conditioner_1_speed_ratio assert_in_epsilon(program_values['FF_AF_clg'].sum, cooling_cfm / rated_airflow_cfm, 0.01) end - def test_install_quality_furnace_central_air_conditioner_2_speed_ratio + def test_install_quality_furnace_central_air_conditioner_2_speed args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - cooling_system = hpxml.cooling_systems[0] - _check_install_quality_multispeed_ratio(cooling_system, model) + cooling_system = hpxml_bldg.cooling_systems[0] + program_values = _check_install_quality_multispeed_ratio(cooling_system, model) + [1.088, 1.088].each_with_index do |rated_airflow_ratio, i| + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i]) + end end - def test_install_quality_furnace_central_air_conditioner_var_speed_ratio + def test_install_quality_furnace_central_air_conditioner_var_speed args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - cooling_system = hpxml.cooling_systems[0] - _check_install_quality_multispeed_ratio(cooling_system, model) + cooling_system = hpxml_bldg.cooling_systems[0] + program_values = _check_install_quality_multispeed_ratio(cooling_system, model) + [0.936, 0.936].each_with_index do |rated_airflow_ratio, i| + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i]) + end end - def test_install_quality_furnace_gas_ratio + def test_install_quality_furnace_gas args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-furnace-gas-only.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-install-quality-furnace-gas-only.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heating_system = hpxml.heating_systems[0] + heating_system = hpxml_bldg.heating_systems[0] fan_watts_cfm = heating_system.fan_watts_per_cfm assert_equal(1, model.getAirLoopHVACUnitarySystems.size) @@ -1015,13 +1135,13 @@ def test_install_quality_furnace_gas_ratio assert_in_epsilon(fan_watts_cfm, fan.designPressureRise / fan.fanTotalEfficiency * UnitConversions.convert(1.0, 'cfm', 'm^3/s'), 0.01) end - def test_install_quality_ground_to_air_heat_pump_ratio + def test_install_quality_ground_to_air_heat_pump args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-ground-to-air-heat-pump.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-install-quality-ground-to-air-heat-pump.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heat_pump = hpxml.heat_pumps[0] + heat_pump = hpxml_bldg.heat_pumps[0] charge_defect = heat_pump.charge_defect_ratio fan_watts_cfm = heat_pump.fan_watts_per_cfm @@ -1055,33 +1175,42 @@ def test_install_quality_ground_to_air_heat_pump_ratio assert_in_epsilon(program_values['FF_AF_htg'].sum, heating_cfm / rated_airflow_cfm_htg, 0.01) end - def test_install_quality_mini_split_air_conditioner_ratio + def test_install_quality_mini_split_air_conditioner args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - cooling_system = hpxml.cooling_systems[0] - _check_install_quality_multispeed_ratio(cooling_system, model) + cooling_system = hpxml_bldg.cooling_systems[0] + program_values = _check_install_quality_multispeed_ratio(cooling_system, model) + [0.936, 0.936].each_with_index do |rated_airflow_ratio, i| + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i]) + end end - def test_install_quality_mini_split_heat_pump_ratio + def test_install_quality_mini_split_heat_pump args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-install-quality-mini-split-heat-pump-ducted.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-install-quality-mini-split-heat-pump-ducted.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - heat_pump = hpxml.heat_pumps[0] - _check_install_quality_multispeed_ratio(heat_pump, model, heat_pump) + heat_pump = hpxml_bldg.heat_pumps[0] + program_values = _check_install_quality_multispeed_ratio(heat_pump, model, heat_pump) + [0.936, 0.936].each_with_index do |rated_airflow_ratio, i| + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_clg'][i], 0.01) + end + [0.71, 0.71].each_with_index do |rated_airflow_ratio, i| + assert_in_epsilon(rated_airflow_ratio, program_values['FF_AF_htg'][i], 0.01) + end end def test_custom_seasons args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-seasons.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-seasons.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - hvac_control = hpxml.hvac_controls[0] + hvac_control = hpxml_bldg.hvac_controls[0] seasons_heating_begin_month = hvac_control.seasons_heating_begin_month seasons_heating_begin_day = hvac_control.seasons_heating_begin_day seasons_heating_end_month = hvac_control.seasons_heating_end_month @@ -1133,11 +1262,14 @@ def test_custom_seasons def test_crankcase_heater_watts args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-crankcase-heater-40w.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = @tmp_hpxml_path + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.cooling_systems[0].crankcase_heater_watts = 40.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - cooling_system = hpxml.cooling_systems[0] + cooling_system = hpxml_bldg.cooling_systems[0] crankcase_heater_watts = cooling_system.crankcase_heater_watts # Check cooling coil @@ -1180,7 +1312,7 @@ def _test_measure(args_hash) File.delete(File.join(File.dirname(__FILE__), 'in.xml')) - return model, hpxml + return model, hpxml, hpxml.buildings[0] end def _check_install_quality_multispeed_ratio(hpxml_clg_sys, model, hpxml_htg_sys = nil) @@ -1227,5 +1359,12 @@ def _check_install_quality_multispeed_ratio(hpxml_clg_sys, model, hpxml_htg_sys htg_speed_cfms = htg_ratios.map { |ratio| heating_cfm * ratio } assert_in_epsilon(program_values['FF_AF_htg'].sum, htg_speed_cfms.zip(rated_airflow_cfm_htg).map { |cfm, rated_cfm| cfm / rated_cfm }.sum, 0.01) end + + return program_values + end + + def _create_hpxml(hpxml_name) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, hpxml_name)) + return hpxml, hpxml.buildings[0] end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb index 3566c8cb..7ba5648e 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -7,18 +12,137 @@ require_relative '../measure.rb' require_relative '../resources/util.rb' -class HPXMLtoOpenStudioHVACSizingTest < MiniTest::Test +class HPXMLtoOpenStudioHVACSizingTest < Minitest::Test def setup @root_path = File.absolute_path(File.join(File.dirname(__FILE__), '..', '..')) @sample_files_path = File.join(@root_path, 'workflow', 'sample_files') @test_files_path = File.join(@root_path, 'workflow', 'tests') @tmp_hpxml_path = File.join(@sample_files_path, 'tmp.xml') + @results_dir = File.join(@test_files_path, 'results') + FileUtils.mkdir_p @results_dir end def teardown File.delete(@tmp_hpxml_path) if File.exist? @tmp_hpxml_path end + def test_hvac_configurations + # Test autosizing calculations for all base-hvac-foo.xml sample files. + results_out = File.join(@results_dir, 'results_sizing.csv') + File.delete(results_out) if File.exist? results_out + + sizing_results = {} + args_hash = { 'hpxml_path' => File.absolute_path(@tmp_hpxml_path), + 'skip_validation' => true } + Dir["#{@sample_files_path}/base-hvac*.xml"].each do |hvac_hpxml| + next if hvac_hpxml.include? 'autosize' + next if hvac_hpxml.include? 'detailed-performance' # Autosizing not allowed + + { 'USA_CO_Denver.Intl.AP.725650_TMY3.epw' => 'denver', + 'USA_TX_Houston-Bush.Intercontinental.AP.722430_TMY3.epw' => 'houston' }.each do |epw_path, location| + hvac_hpxml = File.basename(hvac_hpxml) + + hpxml, hpxml_bldg = _create_hpxml(hvac_hpxml) + hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath = epw_path + _remove_hardsized_capacities(hpxml_bldg) + + if hpxml_bldg.heat_pumps.size > 0 + hp_sizing_methodologies = [HPXML::HeatPumpSizingACCA, + HPXML::HeatPumpSizingHERS, + HPXML::HeatPumpSizingMaxLoad] + else + hp_sizing_methodologies = [nil] + end + + hp_capacity_acca, hp_capacity_maxload = nil, nil + hp_sizing_methodologies.each do |hp_sizing_methodology| + test_name = hvac_hpxml.gsub('base-hvac-', "#{location}-hvac-autosize-") + if not hp_sizing_methodology.nil? + test_name = test_name.gsub('.xml', "-sizing-methodology-#{hp_sizing_methodology}.xml") + end + + puts "Testing #{test_name}..." + + hpxml_bldg.header.heat_pump_sizing_methodology = hp_sizing_methodology + + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _autosized_model, _autosized_hpxml, autosized_bldg = _test_measure(args_hash) + + htg_cap, clg_cap, hp_backup_cap = Outputs.get_total_hvac_capacities(autosized_bldg) + htg_cfm, clg_cfm = Outputs.get_total_hvac_airflows(autosized_bldg) + sizing_results[test_name] = { 'HVAC Capacity: Heating (Btu/h)' => htg_cap.round(1), + 'HVAC Capacity: Cooling (Btu/h)' => clg_cap.round(1), + 'HVAC Capacity: Heat Pump Backup (Btu/h)' => hp_backup_cap.round(1), + 'HVAC Airflow: Heating (cfm)' => htg_cfm.round(1), + 'HVAC Airflow: Cooling (cfm)' => clg_cfm.round(1) } + + next unless hpxml_bldg.heat_pumps.size == 1 + + htg_load = autosized_bldg.hvac_plant.hdl_total + clg_load = autosized_bldg.hvac_plant.cdl_sens_total + autosized_bldg.hvac_plant.cdl_lat_total + hp = autosized_bldg.heat_pumps[0] + htg_cap = hp.heating_capacity + clg_cap = hp.cooling_capacity + charge_defect_ratio = hp.charge_defect_ratio.to_f + airflow_defect_ratio = hp.airflow_defect_ratio.to_f + + if hp_sizing_methodology == HPXML::HeatPumpSizingACCA + hp_capacity_acca = htg_cap + elsif hp_sizing_methodology == HPXML::HeatPumpSizingHERS + next if hp.is_dual_fuel + + if (charge_defect_ratio != 0) || (airflow_defect_ratio != 0) + # Check HP capacity is greater than max(htg_load, clg_load) + if hp.fraction_heat_load_served == 0 + assert_operator(clg_cap, :>, clg_load) + elsif hp.fraction_cool_load_served == 0 + assert_operator(htg_cap, :>, htg_load) + else + assert_operator(htg_cap, :>, [htg_load, clg_load].max) + assert_operator(clg_cap, :>, [htg_load, clg_load].max) + end + else + # Check HP capacity equals max(htg_load, clg_load) + if hp.fraction_heat_load_served == 0 + assert_in_delta(clg_cap, clg_load, 1.0) + elsif hp.fraction_cool_load_served == 0 + assert_in_delta(htg_cap, htg_load, 1.0) + else + assert_in_delta(htg_cap, [htg_load, clg_load].max, 1.0) + assert_in_delta(clg_cap, [htg_load, clg_load].max, 1.0) + end + end + elsif hp_sizing_methodology == HPXML::HeatPumpSizingMaxLoad + hp_capacity_maxload = htg_cap + end + end + + next unless hpxml_bldg.heat_pumps.size == 1 + + # Check that MaxLoad >= >= ACCA for heat pump heating capacity + assert_operator(hp_capacity_maxload, :>=, hp_capacity_acca) + end + end + + # Write results to a file + require 'csv' + output_keys = sizing_results.values[0].keys + CSV.open(results_out, 'w') do |csv| + csv << ['HPXML'] + output_keys + sizing_results.sort.each do |xml, xml_results| + csv_row = [xml] + output_keys.each do |key| + if xml_results[key].nil? + csv_row << 0 + else + csv_row << xml_results[key] + end + end + csv << csv_row + end + end + end + def test_acca_block_load_residences default_tol_btuh = 500 @@ -26,251 +150,288 @@ def test_acca_block_load_residences # Expected values from Figure 7-4 args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(@test_files_path, 'ACCA_Examples', 'Vatilo_Residence.xml')) - _model, hpxml = _test_measure(args_hash) - assert_in_delta(9147, hpxml.hvac_plant.hdl_ducts, 2000) - assert_in_delta(4234, hpxml.hvac_plant.hdl_windows, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.hdl_skylights, default_tol_btuh) - assert_in_delta(574, hpxml.hvac_plant.hdl_doors, default_tol_btuh) - assert_in_delta(2874, hpxml.hvac_plant.hdl_walls, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.hdl_roofs, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.hdl_floors, default_tol_btuh) - assert_in_delta(7415, hpxml.hvac_plant.hdl_slabs, default_tol_btuh) - assert_in_delta(1498, hpxml.hvac_plant.hdl_ceilings, default_tol_btuh) - assert_in_delta(3089, hpxml.hvac_plant.hdl_infilvent, default_tol_btuh) - assert_in_delta(9973, hpxml.hvac_plant.cdl_sens_ducts, 1500) - assert_in_delta(5295, hpxml.hvac_plant.cdl_sens_windows, 1500) - assert_in_delta(0, hpxml.hvac_plant.cdl_sens_skylights, default_tol_btuh) - assert_in_delta(456, hpxml.hvac_plant.cdl_sens_doors, default_tol_btuh) - assert_in_delta(1715, hpxml.hvac_plant.cdl_sens_walls, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.cdl_sens_roofs, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.cdl_sens_floors, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.cdl_sens_slabs, default_tol_btuh) - assert_in_delta(2112, hpxml.hvac_plant.cdl_sens_ceilings, default_tol_btuh) - assert_in_delta(769, hpxml.hvac_plant.cdl_sens_infilvent, default_tol_btuh) - assert_in_delta(3090, hpxml.hvac_plant.cdl_sens_intgains, default_tol_btuh) - assert_in_delta(2488, hpxml.hvac_plant.cdl_lat_ducts, 1500) - assert_in_delta(1276, hpxml.hvac_plant.cdl_lat_infilvent, default_tol_btuh) - assert_in_delta(600, hpxml.hvac_plant.cdl_lat_intgains, default_tol_btuh) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + assert_in_delta(9147, hpxml_bldg.hvac_plant.hdl_ducts, 2000) + assert_in_delta(4234, hpxml_bldg.hvac_plant.hdl_windows, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.hdl_skylights, default_tol_btuh) + assert_in_delta(574, hpxml_bldg.hvac_plant.hdl_doors, default_tol_btuh) + assert_in_delta(2874, hpxml_bldg.hvac_plant.hdl_walls, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.hdl_roofs, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.hdl_floors, default_tol_btuh) + assert_in_delta(7415, hpxml_bldg.hvac_plant.hdl_slabs, default_tol_btuh) + assert_in_delta(1498, hpxml_bldg.hvac_plant.hdl_ceilings, default_tol_btuh) + assert_in_delta(3089, hpxml_bldg.hvac_plant.hdl_infilvent, default_tol_btuh) + assert_in_delta(9973, hpxml_bldg.hvac_plant.cdl_sens_ducts, 1500) + assert_in_delta(5295, hpxml_bldg.hvac_plant.cdl_sens_windows, 1500) + assert_in_delta(0, hpxml_bldg.hvac_plant.cdl_sens_skylights, default_tol_btuh) + assert_in_delta(456, hpxml_bldg.hvac_plant.cdl_sens_doors, default_tol_btuh) + assert_in_delta(1715, hpxml_bldg.hvac_plant.cdl_sens_walls, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.cdl_sens_roofs, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.cdl_sens_floors, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.cdl_sens_slabs, default_tol_btuh) + assert_in_delta(2112, hpxml_bldg.hvac_plant.cdl_sens_ceilings, default_tol_btuh) + assert_in_delta(769, hpxml_bldg.hvac_plant.cdl_sens_infilvent, default_tol_btuh) + assert_in_delta(3090, hpxml_bldg.hvac_plant.cdl_sens_intgains, default_tol_btuh) + assert_in_delta(2488, hpxml_bldg.hvac_plant.cdl_lat_ducts, 1500) + assert_in_delta(1276, hpxml_bldg.hvac_plant.cdl_lat_infilvent, default_tol_btuh) + assert_in_delta(600, hpxml_bldg.hvac_plant.cdl_lat_intgains, default_tol_btuh) # Section 8: Victor Residence # Expected values from Figure 8-3 args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(@test_files_path, 'ACCA_Examples', 'Victor_Residence.xml')) - _model, hpxml = _test_measure(args_hash) - assert_in_delta(29137, hpxml.hvac_plant.hdl_ducts, 12000) - assert_in_delta(9978, hpxml.hvac_plant.hdl_windows, default_tol_btuh) - assert_in_delta(471, hpxml.hvac_plant.hdl_skylights, default_tol_btuh) - assert_in_delta(984, hpxml.hvac_plant.hdl_doors, default_tol_btuh) - assert_in_delta(6305, hpxml.hvac_plant.hdl_walls, default_tol_btuh) - assert_in_delta(7069, hpxml.hvac_plant.hdl_roofs, default_tol_btuh) - assert_in_delta(6044, hpxml.hvac_plant.hdl_floors, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.hdl_slabs, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.hdl_ceilings, default_tol_btuh) - assert_in_delta(21426, hpxml.hvac_plant.hdl_infilvent, default_tol_btuh) - assert_in_delta(5602, hpxml.hvac_plant.cdl_sens_ducts, 3000) - assert_in_delta(4706, hpxml.hvac_plant.cdl_sens_windows, default_tol_btuh) - assert_in_delta(1409, hpxml.hvac_plant.cdl_sens_skylights, default_tol_btuh) - assert_in_delta(382, hpxml.hvac_plant.cdl_sens_doors, default_tol_btuh) - assert_in_delta(1130, hpxml.hvac_plant.cdl_sens_walls, default_tol_btuh) - assert_in_delta(2743, hpxml.hvac_plant.cdl_sens_roofs, default_tol_btuh) - assert_in_delta(1393, hpxml.hvac_plant.cdl_sens_floors, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.cdl_sens_slabs, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.cdl_sens_ceilings, default_tol_btuh) - assert_in_delta(2504, hpxml.hvac_plant.cdl_sens_infilvent, default_tol_btuh) - assert_in_delta(4520, hpxml.hvac_plant.cdl_sens_intgains, default_tol_btuh) - assert_in_delta(6282, hpxml.hvac_plant.cdl_lat_ducts, 5000) - assert_in_delta(4644, hpxml.hvac_plant.cdl_lat_infilvent, default_tol_btuh) - assert_in_delta(800, hpxml.hvac_plant.cdl_lat_intgains, default_tol_btuh) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + assert_in_delta(29137, hpxml_bldg.hvac_plant.hdl_ducts, 12000) + assert_in_delta(9978, hpxml_bldg.hvac_plant.hdl_windows, default_tol_btuh) + assert_in_delta(471, hpxml_bldg.hvac_plant.hdl_skylights, default_tol_btuh) + assert_in_delta(984, hpxml_bldg.hvac_plant.hdl_doors, default_tol_btuh) + assert_in_delta(6305, hpxml_bldg.hvac_plant.hdl_walls, default_tol_btuh) + assert_in_delta(7069, hpxml_bldg.hvac_plant.hdl_roofs, default_tol_btuh) + assert_in_delta(6044, hpxml_bldg.hvac_plant.hdl_floors, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.hdl_slabs, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.hdl_ceilings, default_tol_btuh) + assert_in_delta(21426, hpxml_bldg.hvac_plant.hdl_infilvent, default_tol_btuh) + assert_in_delta(5602, hpxml_bldg.hvac_plant.cdl_sens_ducts, 3000) + assert_in_delta(4706, hpxml_bldg.hvac_plant.cdl_sens_windows, default_tol_btuh) + assert_in_delta(1409, hpxml_bldg.hvac_plant.cdl_sens_skylights, default_tol_btuh) + assert_in_delta(382, hpxml_bldg.hvac_plant.cdl_sens_doors, default_tol_btuh) + assert_in_delta(1130, hpxml_bldg.hvac_plant.cdl_sens_walls, default_tol_btuh) + assert_in_delta(2743, hpxml_bldg.hvac_plant.cdl_sens_roofs, default_tol_btuh) + assert_in_delta(1393, hpxml_bldg.hvac_plant.cdl_sens_floors, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.cdl_sens_slabs, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.cdl_sens_ceilings, default_tol_btuh) + assert_in_delta(2504, hpxml_bldg.hvac_plant.cdl_sens_infilvent, default_tol_btuh) + assert_in_delta(4520, hpxml_bldg.hvac_plant.cdl_sens_intgains, default_tol_btuh) + assert_in_delta(6282, hpxml_bldg.hvac_plant.cdl_lat_ducts, 5000) + assert_in_delta(4644, hpxml_bldg.hvac_plant.cdl_lat_infilvent, default_tol_btuh) + assert_in_delta(800, hpxml_bldg.hvac_plant.cdl_lat_intgains, default_tol_btuh) # Section 9: Long Residence # Modeled as a fully conditioned basement (e.g., no duct losses) for block load calculation # Expected values from Figure 9-3 args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(@test_files_path, 'ACCA_Examples', 'Long_Residence.xml')) - _model, hpxml = _test_measure(args_hash) - assert_in_delta(0, hpxml.hvac_plant.hdl_ducts, default_tol_btuh) - assert_in_delta(8315, hpxml.hvac_plant.hdl_windows, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.hdl_skylights, default_tol_btuh) - assert_in_delta(1006, hpxml.hvac_plant.hdl_doors, default_tol_btuh) - assert_in_delta(16608, hpxml.hvac_plant.hdl_walls, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.hdl_roofs, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.hdl_floors, default_tol_btuh) - assert_in_delta(2440, hpxml.hvac_plant.hdl_slabs, default_tol_btuh) - assert_in_delta(5435, hpxml.hvac_plant.hdl_ceilings, default_tol_btuh) - assert_in_delta(6944, hpxml.hvac_plant.hdl_infilvent, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.cdl_sens_ducts, default_tol_btuh) - assert_in_delta(5962, hpxml.hvac_plant.cdl_sens_windows, 1000) - assert_in_delta(0, hpxml.hvac_plant.cdl_sens_skylights, default_tol_btuh) - assert_in_delta(349, hpxml.hvac_plant.cdl_sens_doors, default_tol_btuh) - assert_in_delta(1730, hpxml.hvac_plant.cdl_sens_walls, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.cdl_sens_roofs, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.cdl_sens_floors, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.cdl_sens_slabs, default_tol_btuh) - assert_in_delta(3624, hpxml.hvac_plant.cdl_sens_ceilings, default_tol_btuh) - assert_in_delta(565, hpxml.hvac_plant.cdl_sens_infilvent, default_tol_btuh) - assert_in_delta(3320, hpxml.hvac_plant.cdl_sens_intgains, default_tol_btuh) - assert_in_delta(0, hpxml.hvac_plant.cdl_lat_ducts, default_tol_btuh) - assert_in_delta(998, hpxml.hvac_plant.cdl_lat_infilvent, default_tol_btuh) - assert_in_delta(1200, hpxml.hvac_plant.cdl_lat_intgains, default_tol_btuh) - end - - def test_heat_pumps - ['base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology', - 'base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology', - 'base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology', - 'base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology', - 'base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology', - 'base-hvac-autosize-pthp-sizing-methodology', - 'base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology', - 'base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology'].each do |hpxml_file| - # Run w/ ACCA sizing - args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, "#{hpxml_file}-acca.xml")) - _model_acca, hpxml_acca = _test_measure(args_hash) - - # Run w/ HERS sizing - args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, "#{hpxml_file}-hers.xml")) - _model_hers, hpxml_hers = _test_measure(args_hash) - - # Run w/ MaxLoad sizing - args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, "#{hpxml_file}-maxload.xml")) - _model_maxload, hpxml_maxload = _test_measure(args_hash) - - # Check that MaxLoad >= HERS > ACCA for heat pump heating capacity - hp_capacity_acca = hpxml_acca.heat_pumps[0].heating_capacity - hp_capacity_hers = hpxml_hers.heat_pumps[0].heating_capacity - hp_capacity_maxload = hpxml_maxload.heat_pumps[0].heating_capacity - assert_operator(hp_capacity_maxload, :>=, hp_capacity_hers) - assert_operator(hp_capacity_hers, :>, hp_capacity_acca) - end + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + assert_in_delta(0, hpxml_bldg.hvac_plant.hdl_ducts, default_tol_btuh) + assert_in_delta(8315, hpxml_bldg.hvac_plant.hdl_windows, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.hdl_skylights, default_tol_btuh) + assert_in_delta(1006, hpxml_bldg.hvac_plant.hdl_doors, default_tol_btuh) + assert_in_delta(16608, hpxml_bldg.hvac_plant.hdl_walls, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.hdl_roofs, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.hdl_floors, default_tol_btuh) + assert_in_delta(2440, hpxml_bldg.hvac_plant.hdl_slabs, default_tol_btuh) + assert_in_delta(5435, hpxml_bldg.hvac_plant.hdl_ceilings, default_tol_btuh) + assert_in_delta(6944, hpxml_bldg.hvac_plant.hdl_infilvent, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.cdl_sens_ducts, default_tol_btuh) + assert_in_delta(5962, hpxml_bldg.hvac_plant.cdl_sens_windows, 1000) + assert_in_delta(0, hpxml_bldg.hvac_plant.cdl_sens_skylights, default_tol_btuh) + assert_in_delta(349, hpxml_bldg.hvac_plant.cdl_sens_doors, default_tol_btuh) + assert_in_delta(1730, hpxml_bldg.hvac_plant.cdl_sens_walls, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.cdl_sens_roofs, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.cdl_sens_floors, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.cdl_sens_slabs, default_tol_btuh) + assert_in_delta(3624, hpxml_bldg.hvac_plant.cdl_sens_ceilings, default_tol_btuh) + assert_in_delta(565, hpxml_bldg.hvac_plant.cdl_sens_infilvent, default_tol_btuh) + assert_in_delta(3320, hpxml_bldg.hvac_plant.cdl_sens_intgains, default_tol_btuh) + assert_in_delta(0, hpxml_bldg.hvac_plant.cdl_lat_ducts, default_tol_btuh) + assert_in_delta(998, hpxml_bldg.hvac_plant.cdl_lat_infilvent, default_tol_btuh) + assert_in_delta(1200, hpxml_bldg.hvac_plant.cdl_lat_intgains, default_tol_btuh) end def test_heat_pump_separate_backup_systems + args_hash = { 'hpxml_path' => File.absolute_path(@tmp_hpxml_path) } + # Run w/ ducted heat pump and ductless backup - args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml')) - _model, hpxml = _test_measure(args_hash) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml') + _remove_hardsized_capacities(hpxml_bldg) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Check that boiler capacity equals building heating design load w/o duct load. - htg_design_load_without_ducts = hpxml.hvac_plant.hdl_total - hpxml.hvac_plant.hdl_ducts - htg_capacity = hpxml.heating_systems[0].heating_capacity + htg_design_load_without_ducts = hpxml_bldg.hvac_plant.hdl_total - hpxml_bldg.hvac_plant.hdl_ducts + htg_capacity = hpxml_bldg.heating_systems[0].heating_capacity assert_in_epsilon(htg_design_load_without_ducts, htg_capacity, 0.001) # 0.001 to handle rounding # Run w/ ducted heat pump and ducted backup - args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml')) - _model, hpxml = _test_measure(args_hash) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml') + _remove_hardsized_capacities(hpxml_bldg) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Check that furnace capacity is between the building heating design load w/o duct load # and the building heating design load w/ duct load. This is because the building duct # load is the sum of the furnace duct load AND the heat pump duct load. - htg_design_load_with_ducts = hpxml.hvac_plant.hdl_total - htg_design_load_without_ducts = htg_design_load_with_ducts - hpxml.hvac_plant.hdl_ducts - htg_capacity = hpxml.heating_systems[0].heating_capacity + htg_design_load_with_ducts = hpxml_bldg.hvac_plant.hdl_total + htg_design_load_without_ducts = htg_design_load_with_ducts - hpxml_bldg.hvac_plant.hdl_ducts + htg_capacity = hpxml_bldg.heating_systems[0].heating_capacity assert_operator(htg_capacity, :>, htg_design_load_without_ducts * 1.001) # 1.001 to handle rounding assert_operator(htg_capacity, :<, htg_design_load_with_ducts * 0.999) # 0.999 to handle rounding # Run w/ ductless heat pump and ductless backup - args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml')) - _model, hpxml = _test_measure(args_hash) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-mini-split-heat-pump-ductless-backup-stove.xml') + _remove_hardsized_capacities(hpxml_bldg) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Check that stove capacity equals building heating design load - htg_design_load = hpxml.hvac_plant.hdl_total - htg_capacity = hpxml.heating_systems[0].heating_capacity + htg_design_load = hpxml_bldg.hvac_plant.hdl_total + htg_capacity = hpxml_bldg.heating_systems[0].heating_capacity assert_in_epsilon(htg_design_load, htg_capacity, 0.001) # 0.001 to handle rounding end def test_heat_pump_integrated_backup_systems - # Check that HP backup heating capacity matches heating design load even when using MaxLoad in a hot climate (GitHub issue #1140) - args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml')) - _model, hpxml = _test_measure(args_hash) + args_hash = { 'hpxml_path' => File.absolute_path(@tmp_hpxml_path) } - assert_equal(hpxml.heat_pumps[0].backup_heating_capacity, hpxml.hvac_plant.hdl_total) + # Check that HP backup heating capacity matches heating design load even when using MaxLoad in a hot climate (GitHub issue #1140) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + _remove_hardsized_capacities(hpxml_bldg) + hpxml_bldg.header.heat_pump_sizing_methodology = HPXML::HeatPumpSizingMaxLoad + hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath = 'USA_FL_Miami.Intl.AP.722020_TMY3.epw' + hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs[0].zone = '1A' + hpxml_bldg.state_code = 'FL' + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + + assert_equal(hpxml_bldg.heat_pumps[0].backup_heating_capacity, hpxml_bldg.hvac_plant.hdl_total) end def test_allow_increased_fixed_capacities - # Test hard-sized capacities are increased for various equipment types - args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + for allow_increased_fixed_capacities in [true, false] + # Test hard-sized capacities are increased (or not) for various equipment types + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + + # Test air conditioner + furnace + hpxml, hpxml_bldg = _create_hpxml('base-hvac-undersized.xml') + hpxml_bldg.header.allow_increased_fixed_capacities = allow_increased_fixed_capacities + htg_cap = hpxml_bldg.heating_systems[0].heating_capacity + clg_cap = hpxml_bldg.cooling_systems[0].cooling_capacity + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + if allow_increased_fixed_capacities + assert_operator(hpxml_bldg.heating_systems[0].heating_capacity, :>, htg_cap) + assert_operator(hpxml_bldg.cooling_systems[0].cooling_capacity, :>, clg_cap) + else + assert_equal(hpxml_bldg.heating_systems[0].heating_capacity, htg_cap) + assert_equal(hpxml_bldg.cooling_systems[0].cooling_capacity, clg_cap) + end + + # Test heat pump + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml') + hpxml_bldg.header.allow_increased_fixed_capacities = allow_increased_fixed_capacities + hpxml_bldg.heat_pumps[0].heating_capacity /= 10.0 + hpxml_bldg.heat_pumps[0].heating_capacity_17F /= 10.0 + hpxml_bldg.heat_pumps[0].backup_heating_capacity /= 10.0 + hpxml_bldg.heat_pumps[0].cooling_capacity /= 10.0 + htg_cap = hpxml_bldg.heat_pumps[0].heating_capacity + htg_17f_cap = hpxml_bldg.heat_pumps[0].heating_capacity_17F + htg_bak_cap = hpxml_bldg.heat_pumps[0].backup_heating_capacity + clg_cap = hpxml_bldg.heat_pumps[0].cooling_capacity + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + if allow_increased_fixed_capacities + assert_operator(hpxml_bldg.heat_pumps[0].heating_capacity, :>, htg_cap) + assert_operator(hpxml_bldg.heat_pumps[0].heating_capacity_17F, :>, htg_17f_cap) + assert_operator(hpxml_bldg.heat_pumps[0].backup_heating_capacity, :>, htg_bak_cap) + assert_operator(hpxml_bldg.heat_pumps[0].cooling_capacity, :>, clg_cap) + else + assert_equal(hpxml_bldg.heat_pumps[0].heating_capacity, htg_cap) + assert_equal(hpxml_bldg.heat_pumps[0].heating_capacity_17F, htg_17f_cap) + assert_equal(hpxml_bldg.heat_pumps[0].backup_heating_capacity, htg_bak_cap) + assert_equal(hpxml_bldg.heat_pumps[0].cooling_capacity, clg_cap) + end - # Test air conditioner + furnace - hpxml = _create_hpxml('base-hvac-undersized-allow-increased-fixed-capacities.xml') - htg_cap = hpxml.heating_systems[0].heating_capacity - clg_cap = hpxml.cooling_systems[0].cooling_capacity - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - _model, hpxml = _test_measure(args_hash) - assert(hpxml.heating_systems[0].heating_capacity > htg_cap) - assert(hpxml.cooling_systems[0].cooling_capacity > clg_cap) - - # Test heat pump - hpxml = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml') - hpxml.header.allow_increased_fixed_capacities = true - hpxml.heat_pumps[0].heating_capacity /= 10.0 - hpxml.heat_pumps[0].heating_capacity_17F /= 10.0 - hpxml.heat_pumps[0].backup_heating_capacity /= 10.0 - hpxml.heat_pumps[0].cooling_capacity /= 10.0 - htg_cap = hpxml.heat_pumps[0].heating_capacity - htg_17f_cap = hpxml.heat_pumps[0].heating_capacity_17F - htg_bak_cap = hpxml.heat_pumps[0].backup_heating_capacity - clg_cap = hpxml.heat_pumps[0].cooling_capacity - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - _model, hpxml = _test_measure(args_hash) - assert(hpxml.heat_pumps[0].heating_capacity > htg_cap) - assert(hpxml.heat_pumps[0].heating_capacity_17F > htg_17f_cap) - assert(hpxml.heat_pumps[0].backup_heating_capacity > htg_bak_cap) - assert(hpxml.heat_pumps[0].cooling_capacity > clg_cap) + # Test heat pump w/ detailed performance + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml') + hpxml_bldg.header.allow_increased_fixed_capacities = allow_increased_fixed_capacities + htg_capacities_detailed = [] + clg_capacities_detailed = [] + hpxml_bldg.heat_pumps[0].heating_capacity /= 10.0 + hpxml_bldg.heat_pumps[0].heating_detailed_performance_data.each do |dp| + dp.capacity /= 10.0 + htg_capacities_detailed << dp.capacity + end + hpxml_bldg.heat_pumps[0].backup_heating_capacity /= 10.0 + hpxml_bldg.heat_pumps[0].cooling_capacity /= 10.0 + hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data.each do |dp| + dp.capacity /= 10.0 + clg_capacities_detailed << dp.capacity + end + htg_cap = hpxml_bldg.heat_pumps[0].heating_capacity + htg_bak_cap = hpxml_bldg.heat_pumps[0].backup_heating_capacity + clg_cap = hpxml_bldg.heat_pumps[0].cooling_capacity + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + if allow_increased_fixed_capacities + assert_operator(hpxml_bldg.heat_pumps[0].heating_capacity, :>, htg_cap) + assert_operator(hpxml_bldg.heat_pumps[0].backup_heating_capacity, :>, htg_bak_cap) + assert_operator(hpxml_bldg.heat_pumps[0].cooling_capacity, :>, clg_cap) + hpxml_bldg.heat_pumps[0].heating_detailed_performance_data.each_with_index do |dp, i| + assert_operator(dp.capacity, :>, htg_capacities_detailed[i]) + end + hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data.each_with_index do |dp, i| + assert_operator(dp.capacity, :>, clg_capacities_detailed[i]) + end + else + assert_equal(hpxml_bldg.heat_pumps[0].heating_capacity, htg_cap) + assert_equal(hpxml_bldg.heat_pumps[0].backup_heating_capacity, htg_bak_cap) + assert_equal(hpxml_bldg.heat_pumps[0].cooling_capacity, clg_cap) + hpxml_bldg.heat_pumps[0].heating_detailed_performance_data.each_with_index do |dp, i| + assert_equal(dp.capacity, htg_capacities_detailed[i]) + end + hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data.each_with_index do |dp, i| + assert_equal(dp.capacity, clg_capacities_detailed[i]) + end + end + end end def test_manual_j_sizing_inputs # Run base args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base.xml')) - _model, base_hpxml = _test_measure(args_hash) + _model, _base_hpxml, base_hpxml_bldg = _test_measure(args_hash) # Test heating/cooling design temps args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = _create_hpxml('base.xml') - hpxml.header.manualj_heating_design_temp = 0.0 - hpxml.header.manualj_cooling_design_temp = 100.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - _model, test_hpxml = _test_measure(args_hash) - assert_operator(test_hpxml.hvac_plant.hdl_total, :>, base_hpxml.hvac_plant.hdl_total) - assert_operator(test_hpxml.hvac_plant.cdl_sens_total, :>, base_hpxml.hvac_plant.cdl_sens_total) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.header.manualj_heating_design_temp = 0.0 + hpxml_bldg.header.manualj_cooling_design_temp = 100.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) + assert_operator(test_hpxml_bldg.hvac_plant.hdl_total, :>, base_hpxml_bldg.hvac_plant.hdl_total) + assert_operator(test_hpxml_bldg.hvac_plant.cdl_sens_total, :>, base_hpxml_bldg.hvac_plant.cdl_sens_total) # Test heating/cooling setpoints args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = _create_hpxml('base.xml') - hpxml.header.manualj_heating_setpoint = 72.5 - hpxml.header.manualj_cooling_setpoint = 72.5 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - _model, test_hpxml = _test_measure(args_hash) - assert_operator(test_hpxml.hvac_plant.hdl_total, :>, base_hpxml.hvac_plant.hdl_total) - assert_operator(test_hpxml.hvac_plant.cdl_sens_total, :>, base_hpxml.hvac_plant.cdl_sens_total) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.header.manualj_heating_setpoint = 72.5 + hpxml_bldg.header.manualj_cooling_setpoint = 72.5 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) + assert_operator(test_hpxml_bldg.hvac_plant.hdl_total, :>, base_hpxml_bldg.hvac_plant.hdl_total) + assert_operator(test_hpxml_bldg.hvac_plant.cdl_sens_total, :>, base_hpxml_bldg.hvac_plant.cdl_sens_total) # Test internal loads args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = _create_hpxml('base.xml') - hpxml.header.manualj_internal_loads_sensible = 1000.0 - hpxml.header.manualj_internal_loads_latent = 500.0 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - _model, test_hpxml = _test_measure(args_hash) - assert_equal(test_hpxml.hvac_plant.hdl_total, base_hpxml.hvac_plant.hdl_total) - assert_operator(test_hpxml.hvac_plant.cdl_sens_intgains, :<, base_hpxml.hvac_plant.cdl_sens_intgains) - assert_operator(test_hpxml.hvac_plant.cdl_lat_intgains, :>, base_hpxml.hvac_plant.cdl_lat_intgains) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.header.manualj_internal_loads_sensible = 1000.0 + hpxml_bldg.header.manualj_internal_loads_latent = 500.0 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) + assert_equal(test_hpxml_bldg.hvac_plant.hdl_total, base_hpxml_bldg.hvac_plant.hdl_total) + assert_operator(test_hpxml_bldg.hvac_plant.cdl_sens_intgains, :<, base_hpxml_bldg.hvac_plant.cdl_sens_intgains) + assert_operator(test_hpxml_bldg.hvac_plant.cdl_lat_intgains, :>, base_hpxml_bldg.hvac_plant.cdl_lat_intgains) # Test number of occupants args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = _create_hpxml('base.xml') - hpxml.header.manualj_num_occupants = 10 - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - _model, test_hpxml = _test_measure(args_hash) - assert_equal(test_hpxml.hvac_plant.hdl_total, base_hpxml.hvac_plant.hdl_total) - assert_operator(test_hpxml.hvac_plant.cdl_sens_intgains, :>, base_hpxml.hvac_plant.cdl_sens_intgains) - assert_operator(test_hpxml.hvac_plant.cdl_lat_intgains, :>, base_hpxml.hvac_plant.cdl_lat_intgains) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.header.manualj_num_occupants = 10 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) + assert_equal(test_hpxml_bldg.hvac_plant.hdl_total, base_hpxml_bldg.hvac_plant.hdl_total) + assert_operator(test_hpxml_bldg.hvac_plant.cdl_sens_intgains, :>, base_hpxml_bldg.hvac_plant.cdl_sens_intgains) + assert_operator(test_hpxml_bldg.hvac_plant.cdl_lat_intgains, :>, base_hpxml_bldg.hvac_plant.cdl_lat_intgains) end def test_slab_f_factor @@ -347,10 +508,29 @@ def _test_measure(args_hash) File.delete(File.join(File.dirname(__FILE__), 'in.xml')) - return model, hpxml + return model, hpxml, hpxml.buildings[0] end def _create_hpxml(hpxml_name) - return HPXML.new(hpxml_path: File.join(@sample_files_path, hpxml_name)) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, hpxml_name)) + return hpxml, hpxml.buildings[0] + end + + def _remove_hardsized_capacities(hpxml_bldg) + hpxml_bldg.heating_systems.each do |htgsys| + htgsys.heating_capacity = nil + end + hpxml_bldg.cooling_systems.each do |clgsys| + clgsys.cooling_capacity = nil + clgsys.integrated_heating_system_capacity = nil + end + hpxml_bldg.heat_pumps.each do |hpsys| + hpsys.heating_capacity = nil + hpsys.heating_capacity_17F = nil + hpsys.heating_capacity_retention_fraction = nil + hpsys.heating_capacity_retention_temp = nil + hpsys.backup_heating_capacity = nil + hpsys.cooling_capacity = nil + end end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb index 3c8340b8..8b4fd645 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -7,7 +12,7 @@ require_relative '../measure.rb' require_relative '../resources/util.rb' -class HPXMLtoOpenStudioLightingTest < MiniTest::Test +class HPXMLtoOpenStudioLightingTest < Minitest::Test def sample_files_dir return File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'sample_files') end @@ -33,28 +38,28 @@ def get_kwh_per_year(model, name) def test_lighting args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check interior lighting - assert_in_delta(1322, get_kwh_per_year(model, Constants.ObjectNameInteriorLighting), 1.0) + assert_in_delta(1322, get_kwh_per_year(model, Constants.ObjectNameLightingInterior), 1.0) # Check exterior lighting - assert_in_delta(98, get_kwh_per_year(model, Constants.ObjectNameExteriorLighting), 1.0) + assert_in_delta(98, get_kwh_per_year(model, Constants.ObjectNameLightingExterior), 1.0) end def test_lighting_garage args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-enclosure-2stories-garage.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check interior lighting - assert_in_delta(1544, get_kwh_per_year(model, Constants.ObjectNameInteriorLighting), 1.0) + assert_in_delta(1544, get_kwh_per_year(model, Constants.ObjectNameLightingInterior), 1.0) # Check garage lighting - assert_in_delta(42, get_kwh_per_year(model, Constants.ObjectNameGarageLighting), 1.0) + assert_in_delta(42, get_kwh_per_year(model, Constants.ObjectNameLightingGarage), 1.0) # Check exterior lighting - assert_in_delta(109, get_kwh_per_year(model, Constants.ObjectNameExteriorLighting), 1.0) + assert_in_delta(109, get_kwh_per_year(model, Constants.ObjectNameLightingExterior), 1.0) end def test_exterior_holiday_lighting @@ -63,13 +68,13 @@ def test_exterior_holiday_lighting 'base-lighting-holiday.xml'].each do |hpxml_name| args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, hpxml_name)) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) if hpxml_name == 'base-lighting-holiday.xml' # Check exterior holiday lighting assert_in_delta(58.3, get_kwh_per_year(model, Constants.ObjectNameLightingExteriorHoliday), 1.0) else - assert_equal(false, hpxml.lighting.holiday_exists) + assert_equal(false, hpxml_bldg.lighting.holiday_exists) end end end @@ -77,30 +82,32 @@ def test_exterior_holiday_lighting def test_lighting_kwh_per_year args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-lighting-kwh-per-year.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Check interior lighting - int_kwh_yr = hpxml.lighting_groups.find { |lg| lg.location == HPXML::LocationInterior }.kwh_per_year - assert_in_delta(int_kwh_yr, get_kwh_per_year(model, Constants.ObjectNameInteriorLighting), 1.0) + int_kwh_yr = hpxml_bldg.lighting_groups.find { |lg| lg.location == HPXML::LocationInterior }.kwh_per_year + int_kwh_yr *= hpxml_bldg.lighting.interior_usage_multiplier unless hpxml_bldg.lighting.interior_usage_multiplier.nil? + assert_in_delta(int_kwh_yr, get_kwh_per_year(model, Constants.ObjectNameLightingInterior), 1.0) # Check exterior lighting - ext_kwh_yr = hpxml.lighting_groups.find { |lg| lg.location == HPXML::LocationExterior }.kwh_per_year - assert_in_delta(ext_kwh_yr, get_kwh_per_year(model, Constants.ObjectNameExteriorLighting), 1.0) + ext_kwh_yr = hpxml_bldg.lighting_groups.find { |lg| lg.location == HPXML::LocationExterior }.kwh_per_year + ext_kwh_yr *= hpxml_bldg.lighting.exterior_usage_multiplier unless hpxml_bldg.lighting.exterior_usage_multiplier.nil? + assert_in_delta(ext_kwh_yr, get_kwh_per_year(model, Constants.ObjectNameLightingExterior), 1.0) end def test_lighting_none args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-lighting-none.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check interior lighting - assert_equal(0.0, get_kwh_per_year(model, Constants.ObjectNameInteriorLighting)) + assert_equal(0.0, get_kwh_per_year(model, Constants.ObjectNameLightingInterior)) # Check garage lighting - assert_equal(0.0, get_kwh_per_year(model, Constants.ObjectNameGarageLighting)) + assert_equal(0.0, get_kwh_per_year(model, Constants.ObjectNameLightingGarage)) # Check exterior lighting - assert_equal(0.0, get_kwh_per_year(model, Constants.ObjectNameExteriorLighting)) + assert_equal(0.0, get_kwh_per_year(model, Constants.ObjectNameLightingExterior)) end def _test_measure(args_hash) @@ -138,6 +145,6 @@ def _test_measure(args_hash) File.delete(File.join(File.dirname(__FILE__), 'in.xml')) - return model, hpxml + return model, hpxml, hpxml.buildings[0] end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb index 56f9c7a0..b851236d 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -7,7 +12,7 @@ require_relative '../measure.rb' require_relative '../resources/util.rb' -class HPXMLtoOpenStudioLocationTest < MiniTest::Test +class HPXMLtoOpenStudioLocationTest < Minitest::Test def sample_files_dir return File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'sample_files') end @@ -26,7 +31,7 @@ def get_daylight_saving_month_and_days(model) def test_dst_default args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) assert_equal(1, model.getObjectsByType('OS:RunPeriodControl:DaylightSavingTime'.to_IddObjectType).size) begin_month, begin_day, end_month, end_day = get_daylight_saving_month_and_days(model) @@ -39,7 +44,7 @@ def test_dst_default def test_dst_custom args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-simcontrol-daylight-saving-custom.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) assert_equal(1, model.getObjectsByType('OS:RunPeriodControl:DaylightSavingTime'.to_IddObjectType).size) begin_month, begin_day, end_month, end_day = get_daylight_saving_month_and_days(model) @@ -52,11 +57,56 @@ def test_dst_custom def test_dst_disabled args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-simcontrol-daylight-saving-disabled.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) assert_equal(0, model.getObjectsByType('OS:RunPeriodControl:DaylightSavingTime'.to_IddObjectType).size) end + def test_deep_ground_temperatures + weather_dir = File.join(File.dirname(__FILE__), '..', '..', 'weather') + + # denver + runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) + weather = WeatherProcess.new(epw_path: File.join(weather_dir, 'USA_CO_Denver.Intl.AP.725650_TMY3.epw'), runner: runner) + + assert_equal(UnitConversions.convert(12.5, 'deltac', 'deltaf'), weather.data.DeepGroundSurfTempAmp1) + assert_equal(UnitConversions.convert(-1.3, 'deltac', 'deltaf'), weather.data.DeepGroundSurfTempAmp2) + assert_equal(20, weather.data.DeepGroundPhaseShiftTempAmp1) + assert_equal(31, weather.data.DeepGroundPhaseShiftTempAmp2) + assert_equal(0, runner.result.stepWarnings.size) + + # honolulu + runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) + weather = WeatherProcess.new(epw_path: File.join(weather_dir, 'USA_HI_Honolulu.Intl.AP.911820_TMY3.epw'), runner: runner) + + assert_equal(UnitConversions.convert(2.6, 'deltac', 'deltaf'), weather.data.DeepGroundSurfTempAmp1) + assert_equal(UnitConversions.convert(0.1, 'deltac', 'deltaf'), weather.data.DeepGroundSurfTempAmp2) + assert_equal(37, weather.data.DeepGroundPhaseShiftTempAmp1) + assert_equal(-13, weather.data.DeepGroundPhaseShiftTempAmp2) + assert_equal(0, runner.result.stepWarnings.size) + + # cape town + runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) + weather = WeatherProcess.new(epw_path: File.join(weather_dir, 'ZAF_Cape.Town.688160_IWEC.epw'), runner: runner) + + assert_equal(UnitConversions.convert(-5.2, 'deltac', 'deltaf'), weather.data.DeepGroundSurfTempAmp1) + assert_equal(UnitConversions.convert(0.1, 'deltac', 'deltaf'), weather.data.DeepGroundSurfTempAmp2) + assert_equal(17, weather.data.DeepGroundPhaseShiftTempAmp1) + assert_equal(15, weather.data.DeepGroundPhaseShiftTempAmp2) + assert_equal(0, runner.result.stepWarnings.size) + + # boulder + runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) + weather = WeatherProcess.new(epw_path: File.join(weather_dir, 'US_CO_Boulder_AMY_2012.epw'), runner: runner) + + assert_equal(UnitConversions.convert(12.3, 'deltac', 'deltaf'), weather.data.DeepGroundSurfTempAmp1) + assert_equal(UnitConversions.convert(1.1, 'deltac', 'deltaf'), weather.data.DeepGroundSurfTempAmp2) + assert_equal(19, weather.data.DeepGroundPhaseShiftTempAmp1) + assert_equal(-34, weather.data.DeepGroundPhaseShiftTempAmp2) + assert_equal(1, runner.result.stepWarnings.size) + assert_equal(1, runner.result.stepWarnings.select { |w| w == 'No design condition info found; calculating design conditions from EPW weather data.' }.size) + end + def _test_measure(args_hash) # create an instance of the measure measure = HPXMLtoOpenStudio.new @@ -92,6 +142,6 @@ def _test_measure(args_hash) File.delete(File.join(File.dirname(__FILE__), 'in.xml')) - return model, hpxml + return model, hpxml, hpxml.buildings[0] end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb index e3ed0fb5..a1c02130 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -7,7 +12,7 @@ require_relative '../measure.rb' require_relative '../resources/util.rb' -class HPXMLtoOpenStudioMiscLoadsTest < MiniTest::Test +class HPXMLtoOpenStudioMiscLoadsTest < Minitest::Test def sample_files_dir return File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'sample_files') end @@ -39,7 +44,7 @@ def get_kwh_therm_per_year(model, name) def test_misc_loads args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check misc plug loads kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPlugLoads) @@ -56,8 +61,8 @@ def test_misc_loads Constants.ObjectNameMiscWellPump, Constants.ObjectNameMiscPoolPump, Constants.ObjectNameMiscPoolHeater, - Constants.ObjectNameMiscHotTubPump, - Constants.ObjectNameMiscHotTubHeater, + Constants.ObjectNameMiscPermanentSpaPump, + Constants.ObjectNameMiscPermanentSpaHeater, Constants.ObjectNameMiscGrill, Constants.ObjectNameMiscLighting, Constants.ObjectNameMiscFireplace] @@ -71,7 +76,7 @@ def test_misc_loads def test_large_uncommon_loads args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-misc-loads-large-uncommon.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check misc plug loads kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPlugLoads) @@ -103,13 +108,13 @@ def test_large_uncommon_loads assert_equal(0, kwh_yr) assert_in_epsilon(500, therm_yr, 0.1) - # Check hot tub pump - kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscHotTubPump) + # Check permanent spa pump + kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPermanentSpaPump) assert_in_epsilon(1000, kwh_yr, 0.1) assert_equal(0, therm_yr) - # Check hot tub heater - kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscHotTubHeater) + # Check permanent spa heater + kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPermanentSpaHeater) assert_in_epsilon(1300, kwh_yr, 0.1) assert_equal(0, therm_yr) @@ -132,7 +137,7 @@ def test_large_uncommon_loads def test_large_uncommon_loads2 args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-misc-loads-large-uncommon2.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check misc plug loads kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPlugLoads) @@ -164,13 +169,13 @@ def test_large_uncommon_loads2 assert_equal(0, kwh_yr) assert_equal(0, therm_yr) - # Check hot tub pump - kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscHotTubPump) + # Check permanent spa pump + kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPermanentSpaPump) assert_in_epsilon(1000, kwh_yr, 0.1) assert_equal(0, therm_yr) - # Check hot tub heater - kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscHotTubHeater) + # Check permanent spa heater + kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPermanentSpaHeater) assert_in_epsilon(260, kwh_yr, 0.1) assert_equal(0, therm_yr) @@ -193,7 +198,7 @@ def test_large_uncommon_loads2 def test_operational_defaults args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-residents-5.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check misc plug loads kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPlugLoads) @@ -225,13 +230,13 @@ def test_operational_defaults assert_equal(0, kwh_yr) assert_in_epsilon(0, therm_yr, 0.1) - # Check hot tub pump - kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscHotTubPump) + # Check permanent spa pump + kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPermanentSpaPump) assert_in_epsilon(0, kwh_yr, 0.1) assert_equal(0, therm_yr) - # Check hot tub heater - kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscHotTubHeater) + # Check permanent spa heater + kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPermanentSpaHeater) assert_in_epsilon(0, kwh_yr, 0.1) assert_equal(0, therm_yr) @@ -254,7 +259,7 @@ def test_operational_defaults def test_operational_large_uncommon_loads args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-residents-1-misc-loads-large-uncommon.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check misc plug loads kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPlugLoads) @@ -286,13 +291,13 @@ def test_operational_large_uncommon_loads assert_equal(0, kwh_yr) assert_in_epsilon(186, therm_yr, 0.1) - # Check hot tub pump - kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscHotTubPump) + # Check permanent spa pump + kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPermanentSpaPump) assert_in_epsilon(877, kwh_yr, 0.1) assert_equal(0, therm_yr) - # Check hot tub heater - kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscHotTubHeater) + # Check permanent spa heater + kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPermanentSpaHeater) assert_in_epsilon(889, kwh_yr, 0.1) assert_equal(0, therm_yr) @@ -315,7 +320,7 @@ def test_operational_large_uncommon_loads def test_operational_large_uncommon_loads2 args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-residents-1-misc-loads-large-uncommon2.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) # Check misc plug loads kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPlugLoads) @@ -347,13 +352,13 @@ def test_operational_large_uncommon_loads2 assert_equal(0, kwh_yr) assert_equal(0, therm_yr) - # Check hot tub pump - kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscHotTubPump) + # Check permanent spa pump + kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPermanentSpaPump) assert_in_epsilon(877, kwh_yr, 0.1) assert_equal(0, therm_yr) - # Check hot tub heater - kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscHotTubHeater) + # Check permanent spa heater + kwh_yr, therm_yr = get_kwh_therm_per_year(model, Constants.ObjectNameMiscPermanentSpaHeater) assert_in_epsilon(178, kwh_yr, 0.1) assert_equal(0, therm_yr) @@ -408,6 +413,6 @@ def _test_measure(args_hash) File.delete(File.join(File.dirname(__FILE__), 'in.xml')) - return model, hpxml + return model, hpxml, hpxml.buildings[0] end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb index 908e3474..c013d848 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -7,7 +12,7 @@ require_relative '../measure.rb' require_relative '../resources/util.rb' -class HPXMLtoOpenStudioPVTest < MiniTest::Test +class HPXMLtoOpenStudioPVTest < Minitest::Test def sample_files_dir return File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'sample_files') end @@ -29,9 +34,9 @@ def get_generator_inverter(model, name) def test_pv args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-pv.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) - hpxml.pv_systems.each do |pv_system| + hpxml_bldg.pv_systems.each do |pv_system| generator, inverter = get_generator_inverter(model, pv_system.id) # Check PV @@ -49,14 +54,14 @@ def test_pv def test_pv_shared args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-pv.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-mf-unit-shared-pv.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) - hpxml.pv_systems.each do |pv_system| + hpxml_bldg.pv_systems.each do |pv_system| generator, inverter = get_generator_inverter(model, pv_system.id) # Check PV - max_power = pv_system.max_power_output * hpxml.building_construction.number_of_bedrooms.to_f / pv_system.number_of_bedrooms_served.to_f + max_power = pv_system.max_power_output * hpxml_bldg.building_construction.number_of_bedrooms.to_f / pv_system.number_of_bedrooms_served.to_f assert_equal(pv_system.array_tilt, generator.tiltAngle) assert_equal(pv_system.array_azimuth, generator.azimuthAngle) assert_equal(max_power, generator.dcSystemCapacity) @@ -104,6 +109,6 @@ def _test_measure(args_hash) File.delete(File.join(File.dirname(__FILE__), 'in.xml')) - return model, hpxml + return model, hpxml, hpxml.buildings[0] end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb index b8e716dc..711099c9 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -7,7 +12,7 @@ require_relative '../measure.rb' require_relative '../resources/util.rb' -class HPXMLtoOpenStudioSchedulesTest < MiniTest::Test +class HPXMLtoOpenStudioSchedulesTest < Minitest::Test def setup @root_path = File.absolute_path(File.join(File.dirname(__FILE__), '..', '..')) @sample_files_path = File.join(@root_path, 'workflow', 'sample_files') @@ -36,7 +41,7 @@ def get_annual_equivalent_full_load_hrs(model, name) def test_default_schedules args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) schedule_constants = 11 schedule_rulesets = 17 @@ -51,21 +56,21 @@ def test_default_schedules assert_in_epsilon(6020, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameOccupants + ' schedule'), 0.1) assert_in_epsilon(3321, get_annual_equivalent_full_load_hrs(model, 'lighting schedule'), 0.1) - assert_in_epsilon(2763, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameExteriorLighting + ' schedule'), 0.1) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator), 0.1) - assert_in_epsilon(2224, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange), 0.1) - assert_in_epsilon(2994, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher), 0.1) - assert_in_epsilon(4158, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher), 0.1) - assert_in_epsilon(4502, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer), 0.1) + assert_in_epsilon(2763, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) + assert_in_epsilon(2224, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange + ' schedule'), 0.1) + assert_in_epsilon(2994, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher + ' schedule'), 0.1) + assert_in_epsilon(4158, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher + ' schedule'), 0.1) + assert_in_epsilon(4502, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer + ' schedule'), 0.1) assert_in_epsilon(5468, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscPlugLoads + ' schedule'), 0.1) assert_in_epsilon(2256, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscTelevision + ' schedule'), 0.1) - assert_in_epsilon(4204, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures), 0.1) + assert_in_epsilon(4204, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures + ' schedule'), 0.1) end def test_simple_schedules args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-simple.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) schedule_constants = 11 schedule_rulesets = 17 @@ -79,86 +84,93 @@ def test_simple_schedules assert_equal(model.getSchedules.size, schedule_constants + schedule_rulesets + schedule_fixed_intervals + schedule_files) assert_in_epsilon(6020, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameOccupants + ' schedule'), 0.1) - assert_in_epsilon(3321, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameInteriorLighting + ' schedule'), 0.1) - assert_in_epsilon(2763, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameExteriorLighting + ' schedule'), 0.1) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator), 0.1) - assert_in_epsilon(2224, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange), 0.1) - assert_in_epsilon(2994, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher), 0.1) - assert_in_epsilon(4158, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher), 0.1) - assert_in_epsilon(4502, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer), 0.1) + assert_in_epsilon(3321, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingInterior + ' schedule'), 0.1) + assert_in_epsilon(2763, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) + assert_in_epsilon(2224, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange + ' schedule'), 0.1) + assert_in_epsilon(2994, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher + ' schedule'), 0.1) + assert_in_epsilon(4158, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher + ' schedule'), 0.1) + assert_in_epsilon(4502, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer + ' schedule'), 0.1) assert_in_epsilon(5468, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscPlugLoads + ' schedule'), 0.1) assert_in_epsilon(2956, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscTelevision + ' schedule'), 0.1) - assert_in_epsilon(4204, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures), 0.1) + assert_in_epsilon(4204, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures + ' schedule'), 0.1) end def test_simple_vacancy_schedules args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-simple-vacancy.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) vacancy_hrs = 31.0 * 2.0 * 24.0 occupied_ratio = (1.0 - vacancy_hrs / 8760.0) assert_in_epsilon(6020 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameOccupants + ' schedule'), 0.1) - assert_in_epsilon(3321 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameInteriorLighting + ' schedule'), 0.1) - assert_in_epsilon(2763 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameExteriorLighting + ' schedule'), 0.1) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator), 0.1) - assert_in_epsilon(2224 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange), 0.1) - assert_in_epsilon(2994 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher), 0.1) - assert_in_epsilon(4158 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher), 0.1) - assert_in_epsilon(4502 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer), 0.1) + assert_in_epsilon(3321 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingInterior + ' schedule'), 0.1) + assert_in_epsilon(2763 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) + assert_in_epsilon(2224 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange + ' schedule'), 0.1) + assert_in_epsilon(2994 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher + ' schedule'), 0.1) + assert_in_epsilon(4158 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher + ' schedule'), 0.1) + assert_in_epsilon(4502 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer + ' schedule'), 0.1) assert_in_epsilon(5468 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscPlugLoads + ' schedule'), 0.1) assert_in_epsilon(2956 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscTelevision + ' schedule'), 0.1) - assert_in_epsilon(4204 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures), 0.1) + assert_in_epsilon(4204 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures + ' schedule'), 0.1) end def test_simple_vacancy_year_round_schedules args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-simple-vacancy-year-round.xml')) - model, _hpxml = _test_measure(args_hash) + hpxml_path = File.absolute_path(File.join(sample_files_dir, 'base-schedules-simple-vacancy.xml')) + hpxml = HPXML.new(hpxml_path: hpxml_path) + hpxml.header.unavailable_periods[0].begin_month = 1 + hpxml.header.unavailable_periods[0].begin_day = 1 + hpxml.header.unavailable_periods[0].end_month = 12 + hpxml.header.unavailable_periods[0].end_day = 31 + XMLHelper.write_file(hpxml.to_doc(), @tmp_hpxml_path) + args_hash['hpxml_path'] = @tmp_hpxml_path + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) vacancy_hrs = 8760.0 occupied_ratio = (1.0 - vacancy_hrs / 8760.0) assert_in_epsilon(6020 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameOccupants + ' schedule'), 0.1) - assert_in_epsilon(3321 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameInteriorLighting + ' schedule'), 0.1) - assert_in_epsilon(2763 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameExteriorLighting + ' schedule'), 0.1) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator), 0.1) - assert_in_epsilon(2224 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange), 0.1) - assert_in_epsilon(2994 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher), 0.1) - assert_in_epsilon(4158 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher), 0.1) - assert_in_epsilon(4502 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer), 0.1) + assert_in_epsilon(3321 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingInterior + ' schedule'), 0.1) + assert_in_epsilon(2763 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) + assert_in_epsilon(2224 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange + ' schedule'), 0.1) + assert_in_epsilon(2994 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher + ' schedule'), 0.1) + assert_in_epsilon(4158 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher + ' schedule'), 0.1) + assert_in_epsilon(4502 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer + ' schedule'), 0.1) assert_in_epsilon(5468 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscPlugLoads + ' schedule'), 0.1) assert_in_epsilon(2956 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscTelevision + ' schedule'), 0.1) - assert_in_epsilon(4204 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures), 0.1) + assert_in_epsilon(4204 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures + ' schedule'), 0.1) end def test_simple_power_outage_schedules args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-simple-power-outage.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) outage_hrs = 31.0 * 1.0 * 24.0 - 15.0 powered_ratio = (1.0 - outage_hrs / 8760.0) assert_in_epsilon(6020, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameOccupants + ' schedule'), 0.1) - assert_in_epsilon(3321 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameInteriorLighting + ' schedule'), 0.1) - assert_in_epsilon(2763 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameExteriorLighting + ' schedule'), 0.1) - assert_in_epsilon(6673 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator), 0.1) - assert_in_epsilon(2224 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange), 0.1) - assert_in_epsilon(2994 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher), 0.1) - assert_in_epsilon(4158 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher), 0.1) - assert_in_epsilon(4502 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer), 0.1) + assert_in_epsilon(3321 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingInterior + ' schedule'), 0.1) + assert_in_epsilon(2763 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) + assert_in_epsilon(6673 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) + assert_in_epsilon(2224 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameCookingRange + ' schedule'), 0.1) + assert_in_epsilon(2994 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameDishwasher + ' schedule'), 0.1) + assert_in_epsilon(4158 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesWasher + ' schedule'), 0.1) + assert_in_epsilon(4502 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameClothesDryer + ' schedule'), 0.1) assert_in_epsilon(5468 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscPlugLoads + ' schedule'), 0.1) assert_in_epsilon(2956 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMiscTelevision + ' schedule'), 0.1) - assert_in_epsilon(4204 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures), 0.1) + assert_in_epsilon(4204 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameFixtures + ' schedule'), 0.1) assert_in_epsilon(8760 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameMechanicalVentilationHouseFan + ' schedule'), 0.1) end def test_stochastic_schedules args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-detailed-occupancy-stochastic.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) assert_equal(11, model.getScheduleFiles.size) @@ -169,11 +181,11 @@ def test_stochastic_schedules assert(schedule_file_names.include?(SchedulesFile::ColumnOccupants)) assert(schedule_file_names.include?(SchedulesFile::ColumnLightingInterior)) assert(!schedule_file_names.include?(SchedulesFile::ColumnLightingExterior)) - assert_in_epsilon(2763, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameExteriorLighting + ' schedule'), 0.1) + assert_in_epsilon(2763, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) assert(!schedule_file_names.include?(SchedulesFile::ColumnLightingGarage)) assert(!schedule_file_names.include?(SchedulesFile::ColumnLightingExteriorHoliday)) assert(!schedule_file_names.include?(SchedulesFile::ColumnRefrigerator)) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator), 0.1) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) assert(schedule_file_names.include?(SchedulesFile::ColumnCookingRange)) assert(schedule_file_names.include?(SchedulesFile::ColumnDishwasher)) assert(schedule_file_names.include?(SchedulesFile::ColumnClothesWasher)) @@ -189,9 +201,9 @@ def test_stochastic_schedules def test_stochastic_vacancy_schedules args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-detailed-occupancy-stochastic-vacancy.xml')) - model, hpxml = _test_measure(args_hash) + model, hpxml, hpxml_bldg = _test_measure(args_hash) - schedules_paths = hpxml.header.schedules_filepaths.collect { |sfp| + schedules_paths = hpxml_bldg.header.schedules_filepaths.collect { |sfp| FilePath.check_path(sfp, File.dirname(args_hash['hpxml_path']), 'Schedules') @@ -199,8 +211,7 @@ def test_stochastic_vacancy_schedules column_name = hpxml.header.unavailable_periods[0].column_name - sf = SchedulesFile.new(model: model, - schedules_paths: schedules_paths, + sf = SchedulesFile.new(schedules_paths: schedules_paths, year: 2007, unavailable_periods: hpxml.header.unavailable_periods, output_path: @tmp_schedule_file_path) @@ -211,8 +222,8 @@ def test_stochastic_vacancy_schedules assert_in_epsilon(6689 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(2086 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(2086 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2763 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameExteriorLighting + ' schedule'), 0.1) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator), 0.1) + assert_in_epsilon(2763 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) assert_in_epsilon(534 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(213 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(134 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) @@ -230,7 +241,7 @@ def test_stochastic_vacancy_schedules def test_stochastic_vacancy_schedules2 args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-detailed-occupancy-stochastic-vacancy.xml')) - model, hpxml = _test_measure(args_hash) + model, hpxml, hpxml_bldg = _test_measure(args_hash) column_name = hpxml.header.unavailable_periods[0].column_name @@ -242,14 +253,13 @@ def test_stochastic_vacancy_schedules2 end_day: 28, natvent_availability: HPXML::ScheduleUnavailable) - schedules_paths = hpxml.header.schedules_filepaths.collect { |sfp| + schedules_paths = hpxml_bldg.header.schedules_filepaths.collect { |sfp| FilePath.check_path(sfp, File.dirname(args_hash['hpxml_path']), 'Schedules') } - sf = SchedulesFile.new(model: model, - schedules_paths: schedules_paths, + sf = SchedulesFile.new(schedules_paths: schedules_paths, year: 2007, unavailable_periods: hpxml.header.unavailable_periods, output_path: @tmp_schedule_file_path) @@ -260,8 +270,8 @@ def test_stochastic_vacancy_schedules2 assert_in_epsilon(6689 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(2086 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(2086 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2763 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameExteriorLighting + ' schedule'), 0.1) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator), 0.1) + assert_in_epsilon(2763 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) assert_in_epsilon(534 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(213 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(134 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) @@ -278,10 +288,17 @@ def test_stochastic_vacancy_schedules2 def test_stochastic_vacancy_year_round_schedules args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml')) - model, hpxml = _test_measure(args_hash) - - schedules_paths = hpxml.header.schedules_filepaths.collect { |sfp| + hpxml_path = File.absolute_path(File.join(sample_files_dir, 'base-schedules-detailed-occupancy-stochastic-vacancy.xml')) + hpxml = HPXML.new(hpxml_path: hpxml_path) + hpxml.header.unavailable_periods[0].begin_month = 1 + hpxml.header.unavailable_periods[0].begin_day = 1 + hpxml.header.unavailable_periods[0].end_month = 12 + hpxml.header.unavailable_periods[0].end_day = 31 + XMLHelper.write_file(hpxml.to_doc(), @tmp_hpxml_path) + args_hash['hpxml_path'] = @tmp_hpxml_path + model, hpxml, hpxml_bldg = _test_measure(args_hash) + + schedules_paths = hpxml_bldg.header.schedules_filepaths.collect { |sfp| FilePath.check_path(sfp, File.dirname(args_hash['hpxml_path']), 'Schedules') @@ -289,8 +306,7 @@ def test_stochastic_vacancy_year_round_schedules column_name = hpxml.header.unavailable_periods[0].column_name - sf = SchedulesFile.new(model: model, - schedules_paths: schedules_paths, + sf = SchedulesFile.new(schedules_paths: schedules_paths, year: 2007, unavailable_periods: hpxml.header.unavailable_periods, output_path: @tmp_schedule_file_path) @@ -301,8 +317,8 @@ def test_stochastic_vacancy_year_round_schedules assert_in_epsilon(6689 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(2086 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(2086 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2763 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameExteriorLighting + ' schedule'), 0.1) - assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator), 0.1) + assert_in_epsilon(2763 * occupied_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) + assert_in_epsilon(6673, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) assert_in_epsilon(534 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(213 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(134 * occupied_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) @@ -320,9 +336,9 @@ def test_stochastic_vacancy_year_round_schedules def test_stochastic_power_outage_schedules args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-detailed-occupancy-stochastic-power-outage.xml')) - model, hpxml = _test_measure(args_hash) + model, hpxml, hpxml_bldg = _test_measure(args_hash) - schedules_paths = hpxml.header.schedules_filepaths.collect { |sfp| + schedules_paths = hpxml_bldg.header.schedules_filepaths.collect { |sfp| FilePath.check_path(sfp, File.dirname(args_hash['hpxml_path']), 'Schedules') @@ -330,8 +346,7 @@ def test_stochastic_power_outage_schedules column_name = hpxml.header.unavailable_periods[0].column_name - sf = SchedulesFile.new(model: model, - schedules_paths: schedules_paths, + sf = SchedulesFile.new(schedules_paths: schedules_paths, year: 2007, unavailable_periods: hpxml.header.unavailable_periods, output_path: @tmp_schedule_file_path) @@ -342,8 +357,8 @@ def test_stochastic_power_outage_schedules assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(2086 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(2086 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2763 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameExteriorLighting + ' schedule'), 0.1) - assert_in_epsilon(6673 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator), 0.1) + assert_in_epsilon(2763 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) + assert_in_epsilon(6673 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) assert_in_epsilon(534 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(213 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(134 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) @@ -362,7 +377,7 @@ def test_stochastic_power_outage_schedules def test_stochastic_power_outage_schedules2 args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-schedules-detailed-occupancy-stochastic-power-outage.xml')) - model, hpxml = _test_measure(args_hash) + model, hpxml, hpxml_bldg = _test_measure(args_hash) column_name = hpxml.header.unavailable_periods[0].column_name @@ -375,14 +390,13 @@ def test_stochastic_power_outage_schedules2 end_day: 27, end_hour: 24) - schedules_paths = hpxml.header.schedules_filepaths.collect { |sfp| + schedules_paths = hpxml_bldg.header.schedules_filepaths.collect { |sfp| FilePath.check_path(sfp, File.dirname(args_hash['hpxml_path']), 'Schedules') } - sf = SchedulesFile.new(model: model, - schedules_paths: schedules_paths, + sf = SchedulesFile.new(schedules_paths: schedules_paths, year: 2007, unavailable_periods: hpxml.header.unavailable_periods, output_path: @tmp_schedule_file_path) @@ -393,8 +407,8 @@ def test_stochastic_power_outage_schedules2 assert_in_epsilon(6689, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnOccupants, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(2086 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingInterior, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(2086 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnLightingGarage, schedules: sf.tmp_schedules), 0.1) - assert_in_epsilon(2763 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameExteriorLighting + ' schedule'), 0.1) - assert_in_epsilon(5743, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator), 0.1) # this reflects only the first outage period because we aren't applying the measure again + assert_in_epsilon(2763 * powered_ratio, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameLightingExterior + ' schedule'), 0.1) + assert_in_epsilon(5743, get_annual_equivalent_full_load_hrs(model, Constants.ObjectNameRefrigerator + ' schedule'), 0.1) # this reflects only the first outage period because we aren't applying the measure again assert_in_epsilon(534 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnCookingRange, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(213 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnDishwasher, schedules: sf.tmp_schedules), 0.1) assert_in_epsilon(134 * powered_ratio, sf.annual_equivalent_full_load_hrs(col_name: SchedulesFile::ColumnClothesWasher, schedules: sf.tmp_schedules), 0.1) @@ -421,10 +435,10 @@ def test_set_unavailable_periods_refrigerator end_day = 31 end_hour = 24 - sch_name = Constants.ObjectNameRefrigerator + sch_name = Constants.ObjectNameRefrigerator + ' schedule' # hours not specified - model, hpxml = _test_measure(args_hash) + model, hpxml, _hpxml_bldg = _test_measure(args_hash) year = model.getYearDescription.assumedYear schedule = model.getScheduleRulesets.find { |schedule| schedule.name.to_s == sch_name } @@ -445,7 +459,7 @@ def test_set_unavailable_periods_refrigerator end_day = 1 end_hour = 5 - model, hpxml = _test_measure(args_hash) + model, hpxml, _hpxml_bldg = _test_measure(args_hash) year = model.getYearDescription.assumedYear schedule = model.getScheduleRulesets.find { |schedule| schedule.name.to_s == sch_name } @@ -465,7 +479,7 @@ def test_set_unavailable_periods_refrigerator end_day = 2 end_hour = 24 - model, hpxml = _test_measure(args_hash) + model, hpxml, _hpxml_bldg = _test_measure(args_hash) year = model.getYearDescription.assumedYear schedule = model.getScheduleRulesets.find { |schedule| schedule.name.to_s == sch_name } @@ -486,7 +500,7 @@ def test_set_unavailable_periods_refrigerator end_day = 2 end_hour = 11 - model, hpxml = _test_measure(args_hash) + model, hpxml, _hpxml_bldg = _test_measure(args_hash) year = model.getYearDescription.assumedYear schedule = model.getScheduleRulesets.find { |schedule| schedule.name.to_s == sch_name } @@ -510,7 +524,7 @@ def test_set_unavailable_periods_refrigerator end_day = 31 end_hour = 12 - model, hpxml = _test_measure(args_hash) + model, hpxml, _hpxml_bldg = _test_measure(args_hash) year = model.getYearDescription.assumedYear schedule = model.getScheduleRulesets.find { |schedule| schedule.name.to_s == sch_name } @@ -542,7 +556,7 @@ def test_set_unavailable_periods_natvent sch_name = "#{Constants.ObjectNameNaturalVentilation} schedule" - model, hpxml = _test_measure(args_hash) + model, hpxml, _hpxml_bldg = _test_measure(args_hash) year = model.getYearDescription.assumedYear schedule = model.getScheduleRulesets.find { |schedule| schedule.name.to_s == sch_name } @@ -560,7 +574,7 @@ def test_set_unavailable_periods_natvent # not available natvent_availability = HPXML::ScheduleUnavailable - model, hpxml = _test_measure(args_hash) + model, hpxml, _hpxml_bldg = _test_measure(args_hash) year = model.getYearDescription.assumedYear schedule = model.getScheduleRulesets.find { |schedule| schedule.name.to_s == sch_name } @@ -578,7 +592,7 @@ def test_set_unavailable_periods_natvent # available natvent_availability = HPXML::ScheduleAvailable - model, hpxml = _test_measure(args_hash) + model, hpxml, _hpxml_bldg = _test_measure(args_hash) year = model.getYearDescription.assumedYear schedule = model.getScheduleRulesets.find { |schedule| schedule.name.to_s == sch_name } @@ -605,9 +619,9 @@ def test_set_unavailable_periods_leap_year end_day = 30 end_hour = 24 - sch_name = Constants.ObjectNameRefrigerator + sch_name = Constants.ObjectNameRefrigerator + ' schedule' - model, hpxml = _test_measure(args_hash) + model, hpxml, _hpxml_bldg = _test_measure(args_hash) year = model.getYearDescription.assumedYear assert_equal(2012, year) @@ -688,6 +702,6 @@ def _test_measure(args_hash) File.delete(File.join(File.dirname(__FILE__), 'in.xml')) - return model, hpxml + return model, hpxml, hpxml.buildings[0] end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb index 25ae2dc9..0c486041 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -7,7 +12,7 @@ require_relative '../measure.rb' require_relative '../resources/util.rb' -class HPXMLtoOpenStudioSimControlsTest < MiniTest::Test +class HPXMLtoOpenStudioSimControlsTest < Minitest::Test def sample_files_dir return File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'sample_files') end @@ -24,7 +29,7 @@ def get_run_period_month_and_days(model) def test_run_period_year args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) begin_month, begin_day, end_month, end_day = get_run_period_month_and_days(model) assert_equal(1, begin_month) @@ -36,7 +41,7 @@ def test_run_period_year def test_run_period_1month args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-simcontrol-runperiod-1-month.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) begin_month, begin_day, end_month, end_day = get_run_period_month_and_days(model) assert_equal(2, begin_month) @@ -48,7 +53,7 @@ def test_run_period_1month def test_timestep_1hour args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) assert_equal(1, model.getTimestep.numberOfTimestepsPerHour) end @@ -56,7 +61,7 @@ def test_timestep_1hour def test_timestep_10min args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-simcontrol-timestep-10-mins.xml')) - model, _hpxml = _test_measure(args_hash) + model, _hpxml, _hpxml_bldg = _test_measure(args_hash) assert_equal(6, model.getTimestep.numberOfTimestepsPerHour) end @@ -96,6 +101,6 @@ def _test_measure(args_hash) File.delete(File.join(File.dirname(__FILE__), 'in.xml')) - return model, hpxml + return model, hpxml, hpxml.buildings[0] end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb index c2b15560..ad3dab74 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -9,7 +14,7 @@ require_relative '../resources/xmlhelper.rb' require_relative '../resources/xmlvalidator.rb' -class HPXMLtoOpenStudioValidationTest < MiniTest::Test +class HPXMLtoOpenStudioValidationTest < Minitest::Test def setup OpenStudio::Logger.instance.standardOutLogger.setLogLevel(OpenStudio::Fatal) @@ -76,8 +81,8 @@ def test_schema_schematron_error_messages 'clothes-dryer-location' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], 'clothes-washer-location' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], 'cooking-range-location' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], - 'dehumidifier-fraction-served' => ['Expected sum(FractionDehumidificationLoadServed) to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails]'], - 'dhw-frac-load-served' => ['Expected sum(FractionDHWLoadServed) to be 1 [context: /HPXML/Building/BuildingDetails]'], + 'dehumidifier-fraction-served' => ['Expected sum(FractionDehumidificationLoadServed) to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]'], + 'dhw-frac-load-served' => ['Expected sum(FractionDHWLoadServed) to be 1 [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]'], 'dhw-invalid-ef-tank' => ['Expected EnergyFactor to be less than 1 [context: /HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem[WaterHeaterType="storage water heater"], id: "WaterHeatingSystem1"]'], 'dhw-invalid-uef-tank-heat-pump' => ['Expected UniformEnergyFactor to be greater than 1 [context: /HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem[WaterHeaterType="heat pump water heater"], id: "WaterHeatingSystem1"]'], 'dishwasher-location' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], @@ -85,22 +90,22 @@ def test_schema_schematron_error_messages 'duct-leakage-cfm50' => ['Expected Value to be greater than or equal to 0 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/DuctLeakageMeasurement/DuctLeakage[Units="CFM25" or Units="CFM50"], id: "HVACDistribution1"]'], 'duct-leakage-percent' => ['Expected Value to be less than 1 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/DuctLeakageMeasurement/DuctLeakage[Units="Percent"], id: "HVACDistribution1"]'], 'duct-location' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], - 'duct-location-unconditioned-space' => ["Expected DuctLocation to be 'living space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'attic - vented' or 'attic - unvented' or 'garage' or 'exterior wall' or 'under slab' or 'roof deck' or 'outside' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts, id: \"Ducts1\"]", - "Expected DuctLocation to be 'living space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'attic - vented' or 'attic - unvented' or 'garage' or 'exterior wall' or 'under slab' or 'roof deck' or 'outside' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts, id: \"Ducts2\"]"], + 'duct-location-unconditioned-space' => ["Expected DuctLocation to be 'conditioned space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'attic - vented' or 'attic - unvented' or 'garage' or 'exterior wall' or 'under slab' or 'roof deck' or 'outside' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'manufactured home belly' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts, id: \"Ducts1\"]", + "Expected DuctLocation to be 'conditioned space' or 'basement - conditioned' or 'basement - unconditioned' or 'crawlspace - vented' or 'crawlspace - unvented' or 'crawlspace - conditioned' or 'attic - vented' or 'attic - unvented' or 'garage' or 'exterior wall' or 'under slab' or 'roof deck' or 'outside' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' or 'manufactured home belly' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts, id: \"Ducts2\"]"], 'emissions-electricity-schedule' => ['Expected NumberofHeaderRows to be greater than or equal to 0', 'Expected ColumnNumber to be greater than or equal to 1'], - 'enclosure-attic-missing-roof' => ['There must be at least one roof adjacent to "attic - unvented". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="attic - unvented" or ExteriorAdjacentTo="attic - unvented"]]]'], - 'enclosure-basement-missing-exterior-foundation-wall' => ['There must be at least one exterior foundation wall adjacent to "basement - unconditioned". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="basement - unconditioned" or ExteriorAdjacentTo="basement - unconditioned"]]]'], - 'enclosure-basement-missing-slab' => ['There must be at least one slab adjacent to "basement - unconditioned". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="basement - unconditioned" or ExteriorAdjacentTo="basement - unconditioned"]]]'], - 'enclosure-floor-area-exceeds-cfa' => ['Expected ConditionedFloorArea to be greater than or equal to the sum of conditioned slab/floor areas. [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction]'], - 'enclosure-floor-area-exceeds-cfa2' => ['Expected ConditionedFloorArea to be greater than or equal to the sum of conditioned slab/floor areas. [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction]'], - 'enclosure-garage-missing-exterior-wall' => ['There must be at least one exterior wall/foundation wall adjacent to "garage". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="garage" or ExteriorAdjacentTo="garage"]]]'], - 'enclosure-garage-missing-roof-ceiling' => ['There must be at least one roof/ceiling adjacent to "garage". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="garage" or ExteriorAdjacentTo="garage"]]]'], - 'enclosure-garage-missing-slab' => ['There must be at least one slab adjacent to "garage". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="garage" or ExteriorAdjacentTo="garage"]]]'], - 'enclosure-living-missing-ceiling-roof' => ['There must be at least one ceiling/roof adjacent to conditioned space. [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="living space"]]]', - 'There must be at least one floor adjacent to "attic - unvented". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="attic - unvented" or ExteriorAdjacentTo="attic - unvented"]]]'], - 'enclosure-living-missing-exterior-wall' => ['There must be at least one exterior wall adjacent to conditioned space. [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="living space"]]]'], - 'enclosure-living-missing-floor-slab' => ['There must be at least one floor/slab adjacent to conditioned space. [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="living space"]]]'], + 'enclosure-attic-missing-roof' => ['There must be at least one roof adjacent to "attic - unvented". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="attic - unvented" or ExteriorAdjacentTo="attic - unvented"]], id: "MyBuilding"]'], + 'enclosure-basement-missing-exterior-foundation-wall' => ['There must be at least one exterior wall or foundation wall adjacent to "basement - unconditioned". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="basement - unconditioned" or ExteriorAdjacentTo="basement - unconditioned"]], id: "MyBuilding"]'], + 'enclosure-basement-missing-slab' => ['There must be at least one slab adjacent to "basement - unconditioned". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="basement - unconditioned" or ExteriorAdjacentTo="basement - unconditioned"]], id: "MyBuilding"]'], + 'enclosure-floor-area-exceeds-cfa' => ['Expected ConditionedFloorArea to be greater than or equal to the sum of conditioned slab/floor areas. [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction, id: "MyBuilding"]'], + 'enclosure-floor-area-exceeds-cfa2' => ['Expected ConditionedFloorArea to be greater than or equal to the sum of conditioned slab/floor areas. [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction, id: "MyBuilding"]'], + 'enclosure-garage-missing-exterior-wall' => ['There must be at least one exterior wall or foundation wall adjacent to "garage". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="garage" or ExteriorAdjacentTo="garage"]], id: "MyBuilding"]'], + 'enclosure-garage-missing-roof-ceiling' => ['There must be at least one roof or ceiling adjacent to "garage". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="garage" or ExteriorAdjacentTo="garage"]], id: "MyBuilding"]'], + 'enclosure-garage-missing-slab' => ['There must be at least one slab adjacent to "garage". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="garage" or ExteriorAdjacentTo="garage"]], id: "MyBuilding"]'], + 'enclosure-conditioned-missing-ceiling-roof' => ['There must be at least one ceiling or roof adjacent to conditioned space. [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="conditioned space"]], id: "MyBuilding"]', + 'There must be at least one floor adjacent to "attic - unvented". [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="attic - unvented" or ExteriorAdjacentTo="attic - unvented"]], id: "MyBuilding"]'], + 'enclosure-conditioned-missing-exterior-wall' => ['There must be at least one exterior wall adjacent to conditioned space. [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="conditioned space"]], id: "MyBuilding"]'], + 'enclosure-conditioned-missing-floor-slab' => ['There must be at least one floor or slab adjacent to conditioned space. [context: /HPXML/Building/BuildingDetails/Enclosure[*/*[InteriorAdjacentTo="conditioned space"]], id: "MyBuilding"]'], 'frac-sensible-fuel-load' => ['Expected extension/FracSensible to be greater than or equal to 0 [context: /HPXML/Building/BuildingDetails/MiscLoads/FuelLoad[FuelLoadType="grill" or FuelLoadType="lighting" or FuelLoadType="fireplace"], id: "FuelLoad1"]'], 'frac-sensible-plug-load' => ['Expected extension/FracSensible to be greater than or equal to 0 [context: /HPXML/Building/BuildingDetails/MiscLoads/PlugLoad[PlugLoadType="other" or PlugLoadType="TV other" or PlugLoadType="electric vehicle charging" or PlugLoadType="well pump"], id: "PlugLoad1"]'], 'frac-total-fuel-load' => ['Expected sum of extension/FracSensible and extension/FracLatent to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails/MiscLoads/FuelLoad[FuelLoadType="grill" or FuelLoadType="lighting" or FuelLoadType="fireplace"], id: "FuelLoad1"]'], @@ -109,14 +114,18 @@ def test_schema_schematron_error_messages 'generator-number-of-bedrooms-served' => ['Expected NumberofBedroomsServed to be greater than ../../../../BuildingSummary/BuildingConstruction/NumberofBedrooms [context: /HPXML/Building/BuildingDetails/Systems/extension/Generators/Generator[IsSharedSystem="true"], id: "Generator1"]'], 'generator-output-greater-than-consumption' => ['Expected AnnualConsumptionkBtu to be greater than AnnualOutputkWh*3412 [context: /HPXML/Building/BuildingDetails/Systems/extension/Generators/Generator, id: "Generator1"]'], 'heat-pump-capacity-17f' => ['Expected HeatingCapacity17F to be less than or equal to HeatingCapacity'], - 'heat-pump-lockout-temperatures' => ['Expected CompressorLockoutTemperature to be less than BackupHeatingLockoutTemperature'], - 'heat-pump-multiple-backup-systems' => ['Expected 0 or 1 element(s) for xpath: HeatPump/BackupSystem [context: /HPXML/Building/BuildingDetails]'], + 'heat-pump-lockout-temperatures' => ['Expected CompressorLockoutTemperature to be less than or equal to BackupHeatingLockoutTemperature'], + 'heat-pump-multiple-backup-systems' => ['Expected 0 or 1 element(s) for xpath: HeatPump/BackupSystem [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]'], + 'hvac-detailed-performance-not-variable-speed' => ['Expected 1 element(s) for xpath: ../CompressorType[text()="variable speed"]', + 'Expected 1 element(s) for xpath: ../CompressorType[text()="variable speed"]'], 'hvac-distribution-return-duct-leakage-missing' => ['Expected 1 element(s) for xpath: DuctLeakageMeasurement[DuctType="return"]/DuctLeakage[(Units="CFM25" or Units="CFM50" or Units="Percent") and TotalOrToOutside="to outside"] [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution[AirDistributionType[text()="regular velocity" or text()="gravity"]], id: "HVACDistribution1"]'], - 'hvac-frac-load-served' => ['Expected sum(FractionHeatLoadServed) to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails]', - 'Expected sum(FractionCoolLoadServed) to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails]'], + 'hvac-frac-load-served' => ['Expected sum(FractionHeatLoadServed) to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]', + 'Expected sum(FractionCoolLoadServed) to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails, id: "MyBuilding"]'], 'hvac-location-heating-system' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], 'hvac-location-cooling-system' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], 'hvac-location-heat-pump' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], + 'hvac-msac-not-var-speed' => ["Expected CompressorType to be 'variable speed'"], + 'hvac-mshp-not-var-speed' => ["Expected CompressorType to be 'variable speed'"], 'hvac-sizing-humidity-setpoint' => ['Expected ManualJInputs/HumiditySetpoint to be less than 1'], 'hvac-negative-crankcase-heater-watts' => ['Expected extension/CrankcaseHeaterPowerWatts to be greater than or equal to 0.0.'], 'incomplete-integrated-heating' => ['Expected 1 element(s) for xpath: IntegratedHeatingSystemFractionHeatLoadServed'], @@ -175,7 +184,7 @@ def test_schema_schematron_error_messages 'invalid-natvent-availability' => ['Expected extension/NaturalVentilationAvailabilityDaysperWeek to be less than or equal to 7'], 'invalid-natvent-availability2' => ['Expected extension/NaturalVentilationAvailabilityDaysperWeek to be greater than or equal to 0'], 'invalid-number-of-bedrooms-served' => ['Expected extension/NumberofBedroomsServed to be greater than ../../../BuildingSummary/BuildingConstruction/NumberofBedrooms [context: /HPXML/Building/BuildingDetails/Systems/Photovoltaics/PVSystem[IsSharedSystem="true"], id: "PVSystem1"]'], - 'invalid-number-of-conditioned-floors' => ['Expected NumberofConditionedFloors to be greater than or equal to NumberofConditionedFloorsAboveGrade [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction]'], + 'invalid-number-of-conditioned-floors' => ['Expected NumberofConditionedFloors to be greater than or equal to NumberofConditionedFloorsAboveGrade [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction, id: "MyBuilding"]'], 'invalid-number-of-units-served' => ['Expected NumberofUnitsServed to be greater than 1 [context: /HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem[IsSharedSystem="true"], id: "WaterHeatingSystem1"]'], 'invalid-pilot-light-heating-system' => ['Expected 1 element(s) for xpath: ../../HeatingSystemFuel[text()!="electricity"]'], 'invalid-shared-vent-in-unit-flowrate' => ['Expected RatedFlowRate to be greater than extension/InUnitFlowRate [context: /HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan[UsedForWholeBuildingVentilation="true" and IsSharedSystem="true"], id: "VentilationFan1"]'], @@ -186,13 +195,22 @@ def test_schema_schematron_error_messages 'invalid-ventilation-recovery' => ['Expected 0 element(s) for xpath: TotalRecoveryEfficiency | AdjustedTotalRecoveryEfficiency', 'Expected 0 element(s) for xpath: SensibleRecoveryEfficiency | AdjustedSensibleRecoveryEfficiency'], 'invalid-window-height' => ['Expected DistanceToBottomOfWindow to be greater than DistanceToTopOfWindow [context: /HPXML/Building/BuildingDetails/Enclosure/Windows/Window/Overhangs[number(Depth) > 0], id: "Window2"]'], - 'lighting-fractions' => ['Expected sum(LightingGroup/FractionofUnitsInLocation) for Location="interior" to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails/Lighting]'], + 'lighting-fractions' => ['Expected sum(LightingGroup/FractionofUnitsInLocation) for Location="interior" to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails/Lighting, id: "MyBuilding"]'], + 'manufactured-home-reference-duct' => ['There are references to "manufactured home belly" or "manufactured home underbelly" but ResidentialFacilityType is not "manufactured home".', + 'A location is specified as "manufactured home belly" but no surfaces were found adjacent to the "manufactured home underbelly" space type.'], + 'manufactured-home-reference-water-heater' => ['There are references to "manufactured home belly" or "manufactured home underbelly" but ResidentialFacilityType is not "manufactured home".', + 'A location is specified as "manufactured home belly" but no surfaces were found adjacent to the "manufactured home underbelly" space type.', + "Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space'"], + 'manufactured-home-reference-floor' => ['There are references to "manufactured home belly" or "manufactured home underbelly" but ResidentialFacilityType is not "manufactured home".', + 'There must be at least one ceiling adjacent to "crawlspace - vented".'], + 'missing-capacity-detailed-performance' => ['Expected 1 element(s) for xpath: ../CoolingCapacity', + 'Expected 1 element(s) for xpath: ../HeatingCapacity'], 'missing-cfis-supplemental-fan' => ['Expected 1 element(s) for xpath: SupplementalFan'], 'missing-distribution-cfa-served' => ['Expected 1 element(s) for xpath: ../../../ConditionedFloorAreaServed [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts[not(DuctSurfaceArea)], id: "Ducts2"]'], 'missing-duct-area' => ['Expected 1 or more element(s) for xpath: FractionDuctArea | DuctSurfaceArea [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts[DuctLocation], id: "Ducts2"]'], 'missing-duct-location' => ['Expected 0 element(s) for xpath: FractionDuctArea | DuctSurfaceArea [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts[not(DuctLocation)], id: "Ducts2"]'], - 'missing-elements' => ['Expected 1 element(s) for xpath: NumberofConditionedFloors [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction]', - 'Expected 1 element(s) for xpath: ConditionedFloorArea [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction]'], + 'missing-elements' => ['Expected 1 element(s) for xpath: NumberofConditionedFloors [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction, id: "MyBuilding"]', + 'Expected 1 element(s) for xpath: ConditionedFloorArea [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction, id: "MyBuilding"]'], 'multifamily-reference-appliance' => ['There are references to "other housing unit" but ResidentialFacilityType is not "single-family attached" or "apartment unit".'], 'multifamily-reference-duct' => ['There are references to "other multifamily buffer space" but ResidentialFacilityType is not "single-family attached" or "apartment unit".'], 'multifamily-reference-surface' => ['There are references to "other heated space" but ResidentialFacilityType is not "single-family attached" or "apartment unit".'], @@ -200,271 +218,280 @@ def test_schema_schematron_error_messages 'refrigerator-location' => ['A location is specified as "garage" but no surfaces were found adjacent to this space type.'], 'solar-fraction-one' => ['Expected SolarFraction to be less than 1 [context: /HPXML/Building/BuildingDetails/Systems/SolarThermal/SolarThermalSystem, id: "SolarThermalSystem1"]'], 'water-heater-location' => ['A location is specified as "crawlspace - vented" but no surfaces were found adjacent to this space type.'], - 'water-heater-location-other' => ["Expected Location to be 'living space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space' [context: /HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem, id: \"WaterHeatingSystem1\"]"], + 'water-heater-location-other' => ["Expected Location to be 'conditioned space' or 'basement - unconditioned' or 'basement - conditioned' or 'attic - unvented' or 'attic - vented' or 'garage' or 'crawlspace - unvented' or 'crawlspace - vented' or 'crawlspace - conditioned' or 'other exterior' or 'other housing unit' or 'other heated space' or 'other multifamily buffer space' or 'other non-freezing space'"], 'water-heater-recovery-efficiency' => ['Expected RecoveryEfficiency to be greater than EnergyFactor'] } all_expected_errors.each_with_index do |(error_case, expected_errors), i| puts "[#{i + 1}/#{all_expected_errors.size}] Testing #{error_case}..." # Create HPXML object if ['boiler-invalid-afue'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-boiler-oil-only.xml')) - hpxml.heating_systems[0].heating_efficiency_afue *= 100.0 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-boiler-oil-only.xml') + hpxml_bldg.heating_systems[0].heating_efficiency_afue *= 100.0 elsif ['clothes-dryer-location'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.clothes_dryers[0].location = HPXML::LocationGarage + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.clothes_dryers[0].location = HPXML::LocationGarage elsif ['clothes-washer-location'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.clothes_washers[0].location = HPXML::LocationGarage + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.clothes_washers[0].location = HPXML::LocationGarage elsif ['cooking-range-location'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.cooking_ranges[0].location = HPXML::LocationGarage + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.cooking_ranges[0].location = HPXML::LocationGarage elsif ['dehumidifier-fraction-served'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-appliances-dehumidifier-multiple.xml')) - hpxml.dehumidifiers[-1].fraction_served = 0.6 + hpxml, hpxml_bldg = _create_hpxml('base-appliances-dehumidifier-multiple.xml') + hpxml_bldg.dehumidifiers[-1].fraction_served = 0.6 elsif ['dhw-frac-load-served'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-dhw-multiple.xml')) - hpxml.water_heating_systems[0].fraction_dhw_load_served = 0.35 + hpxml, hpxml_bldg = _create_hpxml('base-dhw-multiple.xml') + hpxml_bldg.water_heating_systems[0].fraction_dhw_load_served = 0.35 elsif ['dhw-invalid-ef-tank'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.water_heating_systems[0].energy_factor = 1.0 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.water_heating_systems[0].energy_factor = 1.0 elsif ['dhw-invalid-uef-tank-heat-pump'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-dhw-tank-heat-pump-uef.xml')) - hpxml.water_heating_systems[0].uniform_energy_factor = 1.0 + hpxml, hpxml_bldg = _create_hpxml('base-dhw-tank-heat-pump-uef.xml') + hpxml_bldg.water_heating_systems[0].uniform_energy_factor = 1.0 elsif ['dishwasher-location'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.dishwashers[0].location = HPXML::LocationGarage + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.dishwashers[0].location = HPXML::LocationGarage elsif ['duct-leakage-cfm25'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.hvac_distributions[0].duct_leakage_measurements[0].duct_leakage_value = -2 - hpxml.hvac_distributions[0].duct_leakage_measurements[1].duct_leakage_value = -2 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].duct_leakage_value = -2 + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].duct_leakage_value = -2 elsif ['duct-leakage-cfm50'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-ducts-leakage-cfm50.xml')) - hpxml.hvac_distributions[0].duct_leakage_measurements[0].duct_leakage_value = -2 - hpxml.hvac_distributions[0].duct_leakage_measurements[1].duct_leakage_value = -2 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ducts-leakage-cfm50.xml') + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].duct_leakage_value = -2 + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].duct_leakage_value = -2 elsif ['duct-leakage-percent'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.hvac_distributions[0].duct_leakage_measurements[0].duct_leakage_units = HPXML::UnitsPercent - hpxml.hvac_distributions[0].duct_leakage_measurements[1].duct_leakage_units = HPXML::UnitsPercent + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].duct_leakage_units = HPXML::UnitsPercent + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].duct_leakage_units = HPXML::UnitsPercent elsif ['duct-location'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.hvac_distributions[0].ducts[0].duct_location = HPXML::LocationGarage - hpxml.hvac_distributions[0].ducts[1].duct_location = HPXML::LocationGarage + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_distributions[0].ducts[0].duct_location = HPXML::LocationGarage + hpxml_bldg.hvac_distributions[0].ducts[1].duct_location = HPXML::LocationGarage elsif ['duct-location-unconditioned-space'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.hvac_distributions[0].ducts[0].duct_location = HPXML::LocationUnconditionedSpace - hpxml.hvac_distributions[0].ducts[1].duct_location = HPXML::LocationUnconditionedSpace + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_distributions[0].ducts[0].duct_location = HPXML::LocationUnconditionedSpace + hpxml_bldg.hvac_distributions[0].ducts[1].duct_location = HPXML::LocationUnconditionedSpace elsif ['emissions-electricity-schedule'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-emissions.xml')) + hpxml, hpxml_bldg = _create_hpxml('base-misc-emissions.xml') hpxml.header.emissions_scenarios[0].elec_schedule_number_of_header_rows = -1 hpxml.header.emissions_scenarios[0].elec_schedule_column_number = 0 elsif ['enclosure-attic-missing-roof'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.roofs.reverse_each do |roof| + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.roofs.reverse_each do |roof| roof.delete end elsif ['enclosure-basement-missing-exterior-foundation-wall'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-foundation-unconditioned-basement.xml')) - hpxml.foundation_walls.reverse_each do |foundation_wall| + hpxml, hpxml_bldg = _create_hpxml('base-foundation-unconditioned-basement.xml') + hpxml_bldg.foundation_walls.reverse_each do |foundation_wall| foundation_wall.delete end elsif ['enclosure-basement-missing-slab'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-foundation-unconditioned-basement.xml')) - hpxml.slabs.reverse_each do |slab| + hpxml, hpxml_bldg = _create_hpxml('base-foundation-unconditioned-basement.xml') + hpxml_bldg.slabs.reverse_each do |slab| slab.delete end elsif ['enclosure-floor-area-exceeds-cfa'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.building_construction.conditioned_floor_area = 1348.8 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.building_construction.conditioned_floor_area = 1348.8 elsif ['enclosure-floor-area-exceeds-cfa2'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-multifamily.xml')) - hpxml.building_construction.conditioned_floor_area = 898.8 + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit.xml') + hpxml_bldg.building_construction.conditioned_floor_area = 898.8 elsif ['enclosure-garage-missing-exterior-wall'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-enclosure-garage.xml')) - hpxml.walls.select { |w| + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-garage.xml') + hpxml_bldg.walls.select { |w| w.interior_adjacent_to == HPXML::LocationGarage && w.exterior_adjacent_to == HPXML::LocationOutside }.reverse_each do |wall| wall.delete end elsif ['enclosure-garage-missing-roof-ceiling'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-enclosure-garage.xml')) - hpxml.floors.select { |w| + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-garage.xml') + hpxml_bldg.floors.select { |w| w.interior_adjacent_to == HPXML::LocationGarage && w.exterior_adjacent_to == HPXML::LocationAtticUnvented }.reverse_each do |floor| floor.delete end elsif ['enclosure-garage-missing-slab'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-enclosure-garage.xml')) - hpxml.slabs.select { |w| w.interior_adjacent_to == HPXML::LocationGarage }.reverse_each do |slab| + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-garage.xml') + hpxml_bldg.slabs.select { |w| w.interior_adjacent_to == HPXML::LocationGarage }.reverse_each do |slab| slab.delete end - elsif ['enclosure-living-missing-ceiling-roof'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.floors.reverse_each do |floor| + elsif ['enclosure-conditioned-missing-ceiling-roof'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.floors.reverse_each do |floor| floor.delete end - elsif ['enclosure-living-missing-exterior-wall'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.walls.reverse_each do |wall| - next unless wall.interior_adjacent_to == HPXML::LocationLivingSpace + elsif ['enclosure-conditioned-missing-exterior-wall'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.walls.reverse_each do |wall| + next unless wall.interior_adjacent_to == HPXML::LocationConditionedSpace wall.delete end - elsif ['enclosure-living-missing-floor-slab'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-foundation-slab.xml')) - hpxml.slabs[0].delete + elsif ['enclosure-conditioned-missing-floor-slab'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-foundation-slab.xml') + hpxml_bldg.slabs[0].delete elsif ['frac-sensible-fuel-load'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-loads-large-uncommon.xml')) - hpxml.fuel_loads[0].frac_sensible = -0.1 + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon.xml') + hpxml_bldg.fuel_loads[0].frac_sensible = -0.1 elsif ['frac-sensible-plug-load'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-loads-large-uncommon.xml')) - hpxml.plug_loads[0].frac_sensible = -0.1 + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon.xml') + hpxml_bldg.plug_loads[0].frac_sensible = -0.1 elsif ['frac-total-fuel-load'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-loads-large-uncommon.xml')) - hpxml.fuel_loads[0].frac_sensible = 0.8 - hpxml.fuel_loads[0].frac_latent = 0.3 + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon.xml') + hpxml_bldg.fuel_loads[0].frac_sensible = 0.8 + hpxml_bldg.fuel_loads[0].frac_latent = 0.3 elsif ['frac-total-plug-load'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-loads-large-uncommon.xml')) - hpxml.plug_loads[1].frac_latent = 0.245 + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon.xml') + hpxml_bldg.plug_loads[1].frac_latent = 0.245 elsif ['furnace-invalid-afue'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.heating_systems[0].heating_efficiency_afue *= 100.0 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.heating_systems[0].heating_efficiency_afue *= 100.0 elsif ['generator-number-of-bedrooms-served'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-multifamily-shared-generator.xml')) - hpxml.generators[0].number_of_bedrooms_served = 3 + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-generator.xml') + hpxml_bldg.generators[0].number_of_bedrooms_served = 3 elsif ['generator-output-greater-than-consumption'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-generators.xml')) - hpxml.generators[0].annual_consumption_kbtu = 1500 + hpxml, hpxml_bldg = _create_hpxml('base-misc-generators.xml') + hpxml_bldg.generators[0].annual_consumption_kbtu = 1500 elsif ['heat-pump-capacity-17f'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-1-speed.xml')) - hpxml.heat_pumps[0].heating_capacity_17F = hpxml.heat_pumps[0].heating_capacity + 1000.0 - hpxml.heat_pumps[0].heating_capacity_retention_fraction = nil - hpxml.heat_pumps[0].heating_capacity_retention_temp = nil + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.heat_pumps[0].heating_capacity_17F = hpxml_bldg.heat_pumps[0].heating_capacity + 1000.0 + hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = nil + hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil elsif ['heat-pump-lockout-temperatures'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml')) - hpxml.heat_pumps[0].compressor_lockout_temp = hpxml.heat_pumps[0].backup_heating_lockout_temp + 1 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml') + hpxml_bldg.heat_pumps[0].compressor_lockout_temp = hpxml_bldg.heat_pumps[0].backup_heating_lockout_temp + 1 elsif ['heat-pump-multiple-backup-systems'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml')) - hpxml.heating_systems << hpxml.heating_systems[0].dup - hpxml.heating_systems[-1].id = 'HeatingSystem2' - hpxml.heat_pumps[0].fraction_heat_load_served = 0.5 - hpxml.heat_pumps[0].fraction_cool_load_served = 0.5 - hpxml.heat_pumps << hpxml.heat_pumps[0].dup - hpxml.heat_pumps[-1].id = 'HeatPump2' - hpxml.heat_pumps[-1].primary_heating_system = false - hpxml.heat_pumps[-1].primary_cooling_system = false + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml') + hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup + hpxml_bldg.heating_systems[-1].id = 'HeatingSystem2' + hpxml_bldg.heat_pumps[0].fraction_heat_load_served = 0.5 + hpxml_bldg.heat_pumps[0].fraction_cool_load_served = 0.5 + hpxml_bldg.heat_pumps << hpxml_bldg.heat_pumps[0].dup + hpxml_bldg.heat_pumps[-1].id = 'HeatPump2' + hpxml_bldg.heat_pumps[-1].primary_heating_system = false + hpxml_bldg.heat_pumps[-1].primary_cooling_system = false + elsif ['hvac-detailed-performance-not-variable-speed'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml') + hpxml_bldg.heat_pumps[0].compressor_type = HPXML::HVACCompressorTypeTwoStage elsif ['hvac-distribution-return-duct-leakage-missing'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-evap-cooler-only-ducted.xml')) - hpxml.hvac_distributions[0].duct_leakage_measurements[-1].delete + hpxml, hpxml_bldg = _create_hpxml('base-hvac-evap-cooler-only-ducted.xml') + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[-1].delete elsif ['hvac-frac-load-served'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-multiple.xml')) - hpxml.heating_systems[0].fraction_heat_load_served += 0.1 - hpxml.cooling_systems[0].fraction_cool_load_served += 0.2 - hpxml.heating_systems[0].primary_system = true - hpxml.cooling_systems[0].primary_system = true - hpxml.heat_pumps[-1].primary_heating_system = false - hpxml.heat_pumps[-1].primary_cooling_system = false + hpxml, hpxml_bldg = _create_hpxml('base-hvac-multiple.xml') + hpxml_bldg.heating_systems[0].fraction_heat_load_served += 0.1 + hpxml_bldg.cooling_systems[0].fraction_cool_load_served += 0.2 + hpxml_bldg.heating_systems[0].primary_system = true + hpxml_bldg.cooling_systems[0].primary_system = true + hpxml_bldg.heat_pumps[-1].primary_heating_system = false + hpxml_bldg.heat_pumps[-1].primary_cooling_system = false elsif ['hvac-location-heating-system'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-boiler-oil-only.xml')) - hpxml.heating_systems[0].location = HPXML::LocationBasementUnconditioned + hpxml, hpxml_bldg = _create_hpxml('base-hvac-boiler-oil-only.xml') + hpxml_bldg.heating_systems[0].location = HPXML::LocationBasementUnconditioned elsif ['hvac-location-cooling-system'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-central-ac-only-1-speed.xml')) - hpxml.cooling_systems[0].location = HPXML::LocationBasementUnconditioned + hpxml, hpxml_bldg = _create_hpxml('base-hvac-central-ac-only-1-speed.xml') + hpxml_bldg.cooling_systems[0].location = HPXML::LocationBasementUnconditioned elsif ['hvac-location-heat-pump'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-1-speed.xml')) - hpxml.heat_pumps[0].location = HPXML::LocationBasementUnconditioned + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.heat_pumps[0].location = HPXML::LocationBasementUnconditioned + elsif ['hvac-msac-not-var-speed'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-mini-split-air-conditioner-only-ductless.xml') + hpxml_bldg.cooling_systems[0].compressor_type = HPXML::HVACCompressorTypeTwoStage + elsif ['hvac-mshp-not-var-speed'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-mini-split-heat-pump-ductless.xml') + hpxml_bldg.heat_pumps[0].compressor_type = HPXML::HVACCompressorTypeSingleStage elsif ['hvac-sizing-humidity-setpoint'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.header.manualj_humidity_setpoint = 50 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.header.manualj_humidity_setpoint = 50 elsif ['hvac-negative-crankcase-heater-watts'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.cooling_systems[0].crankcase_heater_watts = -10 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.cooling_systems[0].crankcase_heater_watts = -10 elsif ['incomplete-integrated-heating'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-ptac-with-heating-electricity.xml')) - hpxml.cooling_systems[0].integrated_heating_system_fraction_heat_load_served = nil + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ptac-with-heating-electricity.xml') + hpxml_bldg.cooling_systems[0].integrated_heating_system_fraction_heat_load_served = nil elsif ['invalid-airflow-defect-ratio'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-mini-split-heat-pump-ductless.xml')) - hpxml.heat_pumps[0].airflow_defect_ratio = -0.25 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-mini-split-heat-pump-ductless.xml') + hpxml_bldg.heat_pumps[0].airflow_defect_ratio = -0.25 elsif ['invalid-assembly-effective-rvalue'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.walls[0].insulation_assembly_r_value = 0.0 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.walls[0].insulation_assembly_r_value = 0.0 elsif ['invalid-battery-capacities-ah'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-pv-battery-ah.xml')) - hpxml.batteries[0].usable_capacity_ah = hpxml.batteries[0].nominal_capacity_ah + hpxml, hpxml_bldg = _create_hpxml('base-pv-battery-ah.xml') + hpxml_bldg.batteries[0].usable_capacity_ah = hpxml_bldg.batteries[0].nominal_capacity_ah elsif ['invalid-battery-capacities-kwh'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-pv-battery.xml')) - hpxml.batteries[0].usable_capacity_kwh = hpxml.batteries[0].nominal_capacity_kwh + hpxml, hpxml_bldg = _create_hpxml('base-pv-battery.xml') + hpxml_bldg.batteries[0].usable_capacity_kwh = hpxml_bldg.batteries[0].nominal_capacity_kwh elsif ['invalid-calendar-year-low'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml.header.sim_calendar_year = 1575 elsif ['invalid-calendar-year-high'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml.header.sim_calendar_year = 20000 elsif ['invalid-duct-area-fractions'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-ducts-area-fractions.xml')) - hpxml.hvac_distributions[0].ducts[0].duct_surface_area = nil - hpxml.hvac_distributions[0].ducts[1].duct_surface_area = nil - hpxml.hvac_distributions[0].ducts[2].duct_surface_area = nil - hpxml.hvac_distributions[0].ducts[3].duct_surface_area = nil - hpxml.hvac_distributions[0].ducts[0].duct_fraction_area = 0.65 - hpxml.hvac_distributions[0].ducts[1].duct_fraction_area = 0.65 - hpxml.hvac_distributions[0].ducts[2].duct_fraction_area = 0.15 - hpxml.hvac_distributions[0].ducts[3].duct_fraction_area = 0.15 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ducts-area-fractions.xml') + hpxml_bldg.hvac_distributions[0].ducts[0].duct_surface_area = nil + hpxml_bldg.hvac_distributions[0].ducts[1].duct_surface_area = nil + hpxml_bldg.hvac_distributions[0].ducts[2].duct_surface_area = nil + hpxml_bldg.hvac_distributions[0].ducts[3].duct_surface_area = nil + hpxml_bldg.hvac_distributions[0].ducts[0].duct_fraction_area = 0.65 + hpxml_bldg.hvac_distributions[0].ducts[1].duct_fraction_area = 0.65 + hpxml_bldg.hvac_distributions[0].ducts[2].duct_fraction_area = 0.15 + hpxml_bldg.hvac_distributions[0].ducts[3].duct_fraction_area = 0.15 elsif ['invalid-facility-type'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-multifamily-shared-laundry-room.xml')) - hpxml.building_construction.residential_facility_type = HPXML::ResidentialTypeSFD + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-laundry-room.xml') + hpxml_bldg.building_construction.residential_facility_type = HPXML::ResidentialTypeSFD elsif ['invalid-foundation-wall-properties'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-foundation-unconditioned-basement-wall-insulation.xml')) - hpxml.foundation_walls[0].depth_below_grade = 9.0 - hpxml.foundation_walls[0].insulation_interior_distance_to_top = 12.0 - hpxml.foundation_walls[0].insulation_interior_distance_to_bottom = 10.0 + hpxml, hpxml_bldg = _create_hpxml('base-foundation-unconditioned-basement-wall-insulation.xml') + hpxml_bldg.foundation_walls[0].depth_below_grade = 9.0 + hpxml_bldg.foundation_walls[0].insulation_interior_distance_to_top = 12.0 + hpxml_bldg.foundation_walls[0].insulation_interior_distance_to_bottom = 10.0 elsif ['invalid-ground-conductivity'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.site.ground_conductivity = 0.0 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.site.ground_conductivity = 0.0 elsif ['invalid-heat-pump-capacity-retention'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-1-speed.xml')) - hpxml.heat_pumps[0].heating_capacity_17F = nil - hpxml.heat_pumps[0].heating_capacity_retention_fraction = 1.5 - hpxml.heat_pumps[0].heating_capacity_retention_temp = 30 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.heat_pumps[0].heating_capacity_17F = nil + hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = 1.5 + hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = 30 elsif ['invalid-heat-pump-capacity-retention2'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-1-speed.xml')) - hpxml.heat_pumps[0].heating_capacity_17F = nil - hpxml.heat_pumps[0].heating_capacity_retention_fraction = -1 - hpxml.heat_pumps[0].heating_capacity_retention_temp = 5 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.heat_pumps[0].heating_capacity_17F = nil + hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = -1 + hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = 5 elsif ['invalid-hvac-installation-quality'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-1-speed.xml')) - hpxml.heat_pumps[0].airflow_defect_ratio = -99 - hpxml.heat_pumps[0].charge_defect_ratio = -99 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.heat_pumps[0].airflow_defect_ratio = -99 + hpxml_bldg.heat_pumps[0].charge_defect_ratio = -99 elsif ['invalid-hvac-installation-quality2'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-1-speed.xml')) - hpxml.heat_pumps[0].airflow_defect_ratio = 99 - hpxml.heat_pumps[0].charge_defect_ratio = 99 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.heat_pumps[0].airflow_defect_ratio = 99 + hpxml_bldg.heat_pumps[0].charge_defect_ratio = 99 elsif ['invalid-id2'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-enclosure-skylights.xml')) + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-skylights.xml') elsif ['invalid-input-parameters'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml.header.transaction = 'modify' - hpxml.site.site_type = 'mountain' - hpxml.climate_and_risk_zones.climate_zone_ieccs[0].year = 2020 - hpxml.roofs.each do |roof| + hpxml_bldg.site.site_type = 'mountain' + hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs[0].year = 2020 + hpxml_bldg.roofs.each do |roof| roof.radiant_barrier_grade = 4 end - hpxml.roofs[0].azimuth = 365 - hpxml.dishwashers[0].rated_annual_kwh = nil - hpxml.dishwashers[0].energy_factor = 5.1 + hpxml_bldg.roofs[0].azimuth = 365 + hpxml_bldg.dishwashers[0].rated_annual_kwh = nil + hpxml_bldg.dishwashers[0].energy_factor = 5.1 elsif ['invalid-insulation-top'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.foundation_walls[0].insulation_interior_distance_to_top = -0.5 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.foundation_walls[0].insulation_interior_distance_to_top = -0.5 elsif ['invalid-integrated-heating'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-central-ac-only-1-speed.xml')) - hpxml.cooling_systems[0].integrated_heating_system_fuel = HPXML::FuelTypeElectricity - hpxml.cooling_systems[0].integrated_heating_system_efficiency_percent = 0.98 - hpxml.cooling_systems[0].integrated_heating_system_fraction_heat_load_served = 1.0 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-central-ac-only-1-speed.xml') + hpxml_bldg.cooling_systems[0].integrated_heating_system_fuel = HPXML::FuelTypeElectricity + hpxml_bldg.cooling_systems[0].integrated_heating_system_efficiency_percent = 0.98 + hpxml_bldg.cooling_systems[0].integrated_heating_system_fraction_heat_load_served = 1.0 elsif ['invalid-lighting-groups'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-enclosure-garage.xml')) + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-garage.xml') [HPXML::LocationInterior, HPXML::LocationExterior, HPXML::LocationGarage].each do |ltg_loc| - hpxml.lighting_groups.each do |lg| + hpxml_bldg.lighting_groups.each do |lg| next unless lg.location == ltg_loc lg.delete @@ -472,115 +499,133 @@ def test_schema_schematron_error_messages end end elsif ['invalid-lighting-groups2'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-enclosure-garage.xml')) + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-garage.xml') [HPXML::LocationInterior, HPXML::LocationExterior, HPXML::LocationGarage].each do |ltg_loc| - hpxml.lighting_groups.each do |lg| + hpxml_bldg.lighting_groups.each do |lg| next unless lg.location == ltg_loc - hpxml.lighting_groups << lg.dup - hpxml.lighting_groups[-1].id = "LightingGroup#{hpxml.lighting_groups.size}" - hpxml.lighting_groups[-1].fraction_of_units_in_location = 0.0 + hpxml_bldg.lighting_groups << lg.dup + hpxml_bldg.lighting_groups[-1].id = "LightingGroup#{hpxml_bldg.lighting_groups.size}" + hpxml_bldg.lighting_groups[-1].fraction_of_units_in_location = 0.0 break end end elsif ['invalid-natvent-availability'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.header.natvent_days_per_week = 8 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.header.natvent_days_per_week = 8 elsif ['invalid-natvent-availability2'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.header.natvent_days_per_week = -1 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.header.natvent_days_per_week = -1 elsif ['invalid-number-of-bedrooms-served'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-multifamily-shared-pv.xml')) - hpxml.pv_systems[0].number_of_bedrooms_served = 3 + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-pv.xml') + hpxml_bldg.pv_systems[0].number_of_bedrooms_served = 3 elsif ['invalid-number-of-conditioned-floors'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.building_construction.number_of_conditioned_floors_above_grade = 3 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 3 elsif ['invalid-number-of-units-served'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-multifamily-shared-water-heater.xml')) - hpxml.water_heating_systems[0].number_of_units_served = 1 + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-water-heater.xml') + hpxml_bldg.water_heating_systems[0].number_of_units_served = 1 elsif ['invalid-pilot-light-heating-system'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-floor-furnace-propane-only-pilot-light.xml')) - hpxml.heating_systems[0].heating_system_fuel = HPXML::FuelTypeElectricity + hpxml, hpxml_bldg = _create_hpxml('base-hvac-floor-furnace-propane-only.xml') + hpxml_bldg.heating_systems[0].heating_system_fuel = HPXML::FuelTypeElectricity elsif ['invalid-shared-vent-in-unit-flowrate'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-multifamily-shared-mechvent.xml')) - hpxml.ventilation_fans[0].rated_flow_rate = 80 + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-mechvent.xml') + hpxml_bldg.ventilation_fans[0].rated_flow_rate = 80 elsif ['invalid-timestep'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml.header.timestep = 45 elsif ['invalid-timezone-utcoffset-low'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.header.time_zone_utc_offset = -13 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.time_zone_utc_offset = -13 elsif ['invalid-timezone-utcoffset-high'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.header.time_zone_utc_offset = 15 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.time_zone_utc_offset = 15 elsif ['invalid-ventilation-fan'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-exhaust.xml')) - hpxml.ventilation_fans[0].used_for_garage_ventilation = true + hpxml, hpxml_bldg = _create_hpxml('base-mechvent-exhaust.xml') + hpxml_bldg.ventilation_fans[0].used_for_garage_ventilation = true elsif ['invalid-ventilation-recovery'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-exhaust.xml')) - hpxml.ventilation_fans[0].sensible_recovery_efficiency = 0.72 - hpxml.ventilation_fans[0].total_recovery_efficiency = 0.48 + hpxml, hpxml_bldg = _create_hpxml('base-mechvent-exhaust.xml') + hpxml_bldg.ventilation_fans[0].sensible_recovery_efficiency = 0.72 + hpxml_bldg.ventilation_fans[0].total_recovery_efficiency = 0.48 elsif ['invalid-window-height'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-enclosure-overhangs.xml')) - hpxml.windows[1].overhangs_distance_to_bottom_of_window = 1.0 + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-overhangs.xml') + hpxml_bldg.windows[1].overhangs_distance_to_bottom_of_window = 1.0 elsif ['lighting-fractions'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - int_cfl = hpxml.lighting_groups.find { |lg| lg.location == HPXML::LocationInterior && lg.lighting_type == HPXML::LightingTypeCFL } + hpxml, hpxml_bldg = _create_hpxml('base.xml') + int_cfl = hpxml_bldg.lighting_groups.find { |lg| lg.location == HPXML::LocationInterior && lg.lighting_type == HPXML::LightingTypeCFL } int_cfl.fraction_of_units_in_location = 0.8 + elsif ['manufactured-home-reference-duct'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_distributions[0].ducts[1].duct_location = HPXML::LocationManufacturedHomeBelly + elsif ['manufactured-home-reference-water-heater'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.water_heating_systems[0].location = HPXML::LocationManufacturedHomeBelly + elsif ['manufactured-home-reference-floor'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-foundation-vented-crawlspace.xml') + hpxml_bldg.floors.each do |floor| + if floor.exterior_adjacent_to == HPXML::LocationCrawlspaceVented + floor.exterior_adjacent_to = HPXML::LocationManufacturedHomeUnderBelly + break + end + end + elsif ['missing-capacity-detailed-performance'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml') + hpxml_bldg.heat_pumps[0].cooling_capacity = nil + hpxml_bldg.heat_pumps[0].heating_capacity = nil elsif ['missing-cfis-supplemental-fan'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-cfis.xml')) - hpxml.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplementalFan + hpxml, hpxml_bldg = _create_hpxml('base-mechvent-cfis.xml') + hpxml_bldg.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplementalFan elsif ['missing-distribution-cfa-served'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.hvac_distributions[0].ducts[1].duct_surface_area = nil - hpxml.hvac_distributions[0].ducts[1].duct_location = nil + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_distributions[0].ducts[1].duct_surface_area = nil + hpxml_bldg.hvac_distributions[0].ducts[1].duct_location = nil elsif ['missing-duct-area'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.hvac_distributions[0].conditioned_floor_area_served = hpxml.building_construction.conditioned_floor_area - hpxml.hvac_distributions[0].ducts[1].duct_surface_area = nil + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_distributions[0].conditioned_floor_area_served = hpxml_bldg.building_construction.conditioned_floor_area + hpxml_bldg.hvac_distributions[0].ducts[1].duct_surface_area = nil elsif ['missing-duct-location'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.hvac_distributions[0].ducts[1].duct_location = nil + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_distributions[0].ducts[1].duct_location = nil elsif ['missing-elements'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.building_construction.number_of_conditioned_floors = nil - hpxml.building_construction.conditioned_floor_area = nil + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.building_construction.number_of_conditioned_floors = nil + hpxml_bldg.building_construction.conditioned_floor_area = nil elsif ['multifamily-reference-appliance'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.clothes_washers[0].location = HPXML::LocationOtherHousingUnit + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.clothes_washers[0].location = HPXML::LocationOtherHousingUnit elsif ['multifamily-reference-duct'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.hvac_distributions[0].ducts[0].duct_location = HPXML::LocationOtherMultifamilyBufferSpace + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_distributions[0].ducts[0].duct_location = HPXML::LocationOtherMultifamilyBufferSpace elsif ['multifamily-reference-surface'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.floors << hpxml.floors[0].dup - hpxml.floors[1].id = "Floor#{hpxml.floors.size}" - hpxml.floors[1].insulation_id = "FloorInsulation#{hpxml.floors.size}" - hpxml.floors[1].exterior_adjacent_to = HPXML::LocationOtherHeatedSpace - hpxml.floors[1].floor_or_ceiling = HPXML::FloorOrCeilingCeiling + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.floors << hpxml_bldg.floors[0].dup + hpxml_bldg.floors[1].id = "Floor#{hpxml_bldg.floors.size}" + hpxml_bldg.floors[1].insulation_id = "FloorInsulation#{hpxml_bldg.floors.size}" + hpxml_bldg.floors[1].exterior_adjacent_to = HPXML::LocationOtherHeatedSpace + hpxml_bldg.floors[1].floor_or_ceiling = HPXML::FloorOrCeilingCeiling elsif ['multifamily-reference-water-heater'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.water_heating_systems[0].location = HPXML::LocationOtherNonFreezingSpace + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.water_heating_systems[0].location = HPXML::LocationOtherNonFreezingSpace elsif ['refrigerator-location'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.refrigerators[0].location = HPXML::LocationGarage + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.refrigerators[0].location = HPXML::LocationGarage elsif ['solar-fraction-one'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-dhw-solar-fraction.xml')) - hpxml.solar_thermal_systems[0].solar_fraction = 1.0 + hpxml, hpxml_bldg = _create_hpxml('base-dhw-solar-fraction.xml') + hpxml_bldg.solar_thermal_systems[0].solar_fraction = 1.0 elsif ['water-heater-location'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.water_heating_systems[0].location = HPXML::LocationCrawlspaceVented + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.water_heating_systems[0].location = HPXML::LocationCrawlspaceVented elsif ['water-heater-location-other'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.water_heating_systems[0].location = HPXML::LocationUnconditionedSpace + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.water_heating_systems[0].location = HPXML::LocationUnconditionedSpace elsif ['water-heater-recovery-efficiency'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-dhw-tank-gas.xml')) - hpxml.water_heating_systems[0].recovery_efficiency = hpxml.water_heating_systems[0].energy_factor + hpxml, hpxml_bldg = _create_hpxml('base-dhw-tank-gas.xml') + hpxml_bldg.water_heating_systems[0].recovery_efficiency = hpxml_bldg.water_heating_systems[0].energy_factor else fail "Unhandled case: #{error_case}." end - hpxml_doc = hpxml.to_oga() + hpxml_doc = hpxml.to_doc() # Perform additional raw XML manipulation if ['invalid-id2'].include? error_case @@ -611,6 +656,7 @@ def test_schema_schematron_warning_messages 'dhw-setpoint-low' => ['Hot water setpoint should typically be greater than or equal to 110 deg-F.'], 'erv-atre-low' => ['Adjusted total recovery efficiency should typically be at least half of the adjusted sensible recovery efficiency.'], 'erv-tre-low' => ['Total recovery efficiency should typically be at least half of the sensible recovery efficiency.'], + 'fuel-load-type-other' => ["Fuel load type 'other' is not currently handled, the fuel load will not be modeled."], 'garage-ventilation' => ['Ventilation fans for the garage are not currently modeled.'], 'heat-pump-low-backup-switchover-temp' => ['BackupHeatingSwitchoverTemperature is below 30 deg-F; this may result in significant unmet hours if the heat pump does not have sufficient capacity.'], 'heat-pump-low-backup-lockout-temp' => ['BackupHeatingLockoutTemperature is below 30 deg-F; this may result in significant unmet hours if the heat pump does not have sufficient capacity.'], @@ -659,7 +705,16 @@ def test_schema_schematron_warning_messages 'No exterior lighting specified, the model will not include exterior lighting energy use.', 'No garage lighting specified, the model will not include garage lighting energy use.'], 'missing-attached-surfaces' => ['ResidentialFacilityType is single-family attached or apartment unit, but no attached surfaces were found. This may result in erroneous results (e.g., for infiltration).'], + 'plug-load-type-sauna' => ["Plug load type 'sauna' is not currently handled, the plug load will not be modeled."], + 'plug-load-type-aquarium' => ["Plug load type 'aquarium' is not currently handled, the plug load will not be modeled."], + 'plug-load-type-water-bed' => ["Plug load type 'water bed' is not currently handled, the plug load will not be modeled."], + 'plug-load-type-space-heater' => ["Plug load type 'space heater' is not currently handled, the plug load will not be modeled."], + 'plug-load-type-computer' => ["Plug load type 'computer' is not currently handled, the plug load will not be modeled."], + 'plug-load-type-tv-crt' => ["Plug load type 'TV CRT' is not currently handled, the plug load will not be modeled."], + 'plug-load-type-tv-plasma' => ["Plug load type 'TV plasma' is not currently handled, the plug load will not be modeled."], + 'portable-spa' => ['Portable spa is not currently handled, the portable spa will not be modeled.'], 'slab-zero-exposed-perimeter' => ['Slab has zero exposed perimeter, this may indicate an input error.'], + 'unit-multiplier' => ['NumberofUnits is greater than 1, indicating that the HPXML Building represents multiple dwelling units; simulation outputs will reflect this unit multiplier.'], 'wrong-units' => ['Thickness is greater than 12 inches; this may indicate incorrect units.', 'Thickness is less than 1 inch; this may indicate incorrect units.', 'Depth is greater than 72 feet; this may indicate incorrect units.', @@ -669,51 +724,54 @@ def test_schema_schematron_warning_messages puts "[#{i + 1}/#{all_expected_warnings.size}] Testing #{warning_case}..." # Create HPXML object if ['battery-pv-output-power-low'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-pv-battery.xml')) - hpxml.batteries[0].rated_power_output = 0.1 - hpxml.pv_systems[0].max_power_output = 0.1 - hpxml.pv_systems[1].max_power_output = 0.1 + hpxml, hpxml_bldg = _create_hpxml('base-pv-battery.xml') + hpxml_bldg.batteries[0].rated_power_output = 0.1 + hpxml_bldg.pv_systems[0].max_power_output = 0.1 + hpxml_bldg.pv_systems[1].max_power_output = 0.1 elsif ['dhw-capacities-low'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-dhw-multiple.xml')) - hpxml.water_heating_systems.each do |water_heating_system| + hpxml, hpxml_bldg = _create_hpxml('base-dhw-multiple.xml') + hpxml_bldg.water_heating_systems.each do |water_heating_system| if [HPXML::WaterHeaterTypeStorage].include? water_heating_system.water_heater_type water_heating_system.heating_capacity = 0.1 end end elsif ['dhw-efficiencies-low'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-dhw-multiple.xml')) - hpxml.water_heating_systems.each do |water_heating_system| + hpxml, hpxml_bldg = _create_hpxml('base-dhw-multiple.xml') + hpxml_bldg.water_heating_systems.each do |water_heating_system| if [HPXML::WaterHeaterTypeStorage, HPXML::WaterHeaterTypeTankless].include? water_heating_system.water_heater_type water_heating_system.energy_factor = 0.1 end end elsif ['dhw-setpoint-low'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.water_heating_systems[0].temperature = 100 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.water_heating_systems[0].temperature = 100 elsif ['erv-atre-low'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-erv-atre-asre.xml')) - hpxml.ventilation_fans[0].total_recovery_efficiency_adjusted = 0.1 + hpxml, hpxml_bldg = _create_hpxml('base-mechvent-erv-atre-asre.xml') + hpxml_bldg.ventilation_fans[0].total_recovery_efficiency_adjusted = 0.1 + elsif ['fuel-load-type-other'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon.xml') + hpxml_bldg.fuel_loads[0].fuel_load_type = HPXML::FuelLoadTypeOther elsif ['erv-tre-low'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-erv.xml')) - hpxml.ventilation_fans[0].total_recovery_efficiency = 0.1 + hpxml, hpxml_bldg = _create_hpxml('base-mechvent-erv.xml') + hpxml_bldg.ventilation_fans[0].total_recovery_efficiency = 0.1 elsif ['garage-ventilation'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.ventilation_fans.add(id: 'VentilationFan1', - used_for_garage_ventilation: true) + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.ventilation_fans.add(id: 'VentilationFan1', + used_for_garage_ventilation: true) elsif ['heat-pump-low-backup-switchover-temp'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml')) - hpxml.heat_pumps[0].backup_heating_switchover_temp = 25.0 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp = 25.0 elsif ['heat-pump-low-backup-lockout-temp'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml')) - hpxml.heat_pumps[0].backup_heating_lockout_temp = 25.0 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml') + hpxml_bldg.heat_pumps[0].backup_heating_lockout_temp = 25.0 elsif ['hvac-dse-low'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-dse.xml')) - hpxml.hvac_distributions[0].annual_heating_dse = 0.1 - hpxml.hvac_distributions[0].annual_cooling_dse = 0.1 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-dse.xml') + hpxml_bldg.hvac_distributions[0].annual_heating_dse = 0.1 + hpxml_bldg.hvac_distributions[0].annual_cooling_dse = 0.1 elsif ['hvac-capacities-low'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-multiple.xml')) - hpxml.hvac_systems.each do |hvac_system| + hpxml, hpxml_bldg = _create_hpxml('base-hvac-multiple.xml') + hpxml_bldg.hvac_systems.each do |hvac_system| if hvac_system.is_a? HPXML::HeatingSystem hvac_system.heating_capacity = 0.1 elsif hvac_system.is_a? HPXML::CoolingSystem @@ -725,8 +783,8 @@ def test_schema_schematron_warning_messages end end elsif ['hvac-efficiencies-low'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-multiple.xml')) - hpxml.hvac_systems.each do |hvac_system| + hpxml, hpxml_bldg = _create_hpxml('base-hvac-multiple.xml') + hpxml_bldg.hvac_systems.each do |hvac_system| if hvac_system.is_a? HPXML::HeatingSystem if [HPXML::HVACTypeElectricResistance, HPXML::HVACTypeStove].include? hvac_system.heating_system_type @@ -754,40 +812,67 @@ def test_schema_schematron_warning_messages end end elsif ['hvac-setpoints-high'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.hvac_controls[0].heating_setpoint_temp = 100 - hpxml.hvac_controls[0].cooling_setpoint_temp = 100 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_controls[0].heating_setpoint_temp = 100 + hpxml_bldg.hvac_controls[0].cooling_setpoint_temp = 100 elsif ['hvac-setpoints-low'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.hvac_controls[0].heating_setpoint_temp = 0 - hpxml.hvac_controls[0].cooling_setpoint_temp = 0 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_controls[0].heating_setpoint_temp = 0 + hpxml_bldg.hvac_controls[0].cooling_setpoint_temp = 0 elsif ['integrated-heating-efficiency-low'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-ptac-with-heating-electricity.xml')) - hpxml.cooling_systems[0].integrated_heating_system_efficiency_percent = 0.4 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ptac-with-heating-electricity.xml') + hpxml_bldg.cooling_systems[0].integrated_heating_system_efficiency_percent = 0.4 elsif ['lighting-groups-missing'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-enclosure-garage.xml')) - hpxml.lighting_groups.reverse_each do |lg| + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-garage.xml') + hpxml_bldg.lighting_groups.reverse_each do |lg| lg.delete end elsif ['missing-attached-surfaces'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.building_construction.residential_facility_type = HPXML::ResidentialTypeSFA - hpxml.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.building_construction.residential_facility_type = HPXML::ResidentialTypeSFA + hpxml_bldg.air_infiltration_measurements[0].infiltration_type = HPXML::InfiltrationTypeUnitExterior + elsif ['plug-load-type-sauna'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.plug_loads[0].plug_load_type = HPXML::PlugLoadTypeSauna + elsif ['plug-load-type-aquarium'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.plug_loads[0].plug_load_type = HPXML::PlugLoadTypeAquarium + elsif ['plug-load-type-water-bed'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.plug_loads[0].plug_load_type = HPXML::PlugLoadTypeWaterBed + elsif ['plug-load-type-space-heater'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.plug_loads[0].plug_load_type = HPXML::PlugLoadTypeSpaceHeater + elsif ['plug-load-type-computer'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.plug_loads[0].plug_load_type = HPXML::PlugLoadTypeComputer + elsif ['plug-load-type-tv-crt'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.plug_loads[0].plug_load_type = HPXML::PlugLoadTypeTelevisionCRT + elsif ['plug-load-type-tv-plasma'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.plug_loads[0].plug_load_type = HPXML::PlugLoadTypeTelevisionPlasma + elsif ['portable-spa'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.portable_spas.add(id: 'PorableSpa') elsif ['slab-zero-exposed-perimeter'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.slabs[0].exposed_perimeter = 0 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.slabs[0].exposed_perimeter = 0 + elsif ['unit-multiplier'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.building_construction.number_of_units = 5 elsif ['wrong-units'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-enclosure-overhangs.xml')) - hpxml.slabs[0].thickness = 0.5 - hpxml.foundation_walls[0].thickness = 72.0 - hpxml.windows[0].overhangs_depth = 120.0 - hpxml.windows[0].overhangs_distance_to_top_of_window = 24.0 - hpxml.windows[0].overhangs_distance_to_bottom_of_window = 48.0 + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-overhangs.xml') + hpxml_bldg.slabs[0].thickness = 0.5 + hpxml_bldg.foundation_walls[0].thickness = 72.0 + hpxml_bldg.windows[0].overhangs_depth = 120.0 + hpxml_bldg.windows[0].overhangs_distance_to_top_of_window = 24.0 + hpxml_bldg.windows[0].overhangs_distance_to_bottom_of_window = 48.0 else fail "Unhandled case: #{warning_case}." end - hpxml_doc = hpxml.to_oga() + hpxml_doc = hpxml.to_doc() # Test against schematron XMLHelper.write_file(hpxml_doc, @tmp_hpxml_path) @@ -812,7 +897,12 @@ def test_ruby_error_messages 'emissions-wrong-filename' => ["Emissions File file path 'invalid-wrong-filename.csv' does not exist."], 'emissions-wrong-rows' => ['Emissions File has invalid number of rows'], 'heat-pump-backup-system-load-fraction' => ['Heat pump backup system cannot have a fraction heat load served specified.'], - 'heat-pump-switchover-temp-elec-backup' => ['Switchover temperature should not be used for a heat pump with electric backup; use compressor lockout temperature instead.'], + 'hvac-cooling-detailed-performance-incomplete-pair' => ['Cooling detailed performance data for outdoor temperature = 82.0 is incomplete; there must be exactly one minimum and one maximum capacity datapoint.', + 'Cooling detailed performance data for outdoor temperature = 81.0 is incomplete; there must be exactly one minimum and one maximum capacity datapoint.'], + 'hvac-heating-detailed-performance-incomplete-pair' => ['Heating detailed performance data for outdoor temperature = 5.0 is incomplete; there must be exactly one minimum and one maximum capacity datapoint.', + 'Heating detailed performance data for outdoor temperature = 4.0 is incomplete; there must be exactly one minimum and one maximum capacity datapoint.'], + 'heat-pump-switchover-temp-elec-backup' => ['Switchover temperature should only be used for a heat pump with fossil fuel backup; use compressor lockout temperature instead.'], + 'heat-pump-lockout-temps-elec-backup' => ['Similar compressor/backup lockout temperatures should only be used for a heat pump with fossil fuel backup.'], 'hvac-distribution-multiple-attached-cooling' => ["Multiple cooling systems found attached to distribution system 'HVACDistribution2'."], 'hvac-distribution-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-cooling' => ["Multiple cooling systems found attached to distribution system 'HVACDistribution1'."], @@ -872,362 +962,407 @@ def test_ruby_error_messages 'unattached-shared-dishwasher-dhw-distribution' => ["Attached hot water distribution 'foobar' not found for dishwasher"], 'unattached-shared-dishwasher-water-heater' => ["Attached water heating system 'foobar' not found for dishwasher"], 'unattached-window' => ["Attached wall 'foobar' not found for window 'Window1'."], - 'unavailable-period-missing-column' => ["Could not find column='foobar' in unavailable_periods.csv."] } + 'unavailable-period-missing-column' => ["Could not find column='foobar' in unavailable_periods.csv."], + 'unique-objects-vary-across-units-epw' => ['Weather station EPW filepath has different values across dwelling units.'], + 'unique-objects-vary-across-units-dst' => ['Unique object (OS:RunPeriodControl:DaylightSavingTime) has different values across dwelling units.'], + 'unique-objects-vary-across-units-tmains' => ['Unique object (OS:Site:WaterMainsTemperature) has different values across dwelling units.'], + 'whole-mf-building-batteries' => ['Modeling batteries for whole SFA/MF buildings is not currently supported.'], + 'whole-mf-building-dehumidifiers-unit-multiplier' => ['NumberofUnits greater than 1 is not supported for dehumidifiers.'], + 'whole-mf-building-gshps-unit-multiplier' => ['NumberofUnits greater than 1 is not supported for ground-to-air heat pumps.'] } all_expected_errors.each_with_index do |(error_case, expected_errors), i| puts "[#{i + 1}/#{all_expected_errors.size}] Testing #{error_case}..." + building_id = nil # Create HPXML object if ['battery-bad-values-max-not-one'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-battery-scheduled.xml')) - csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml.header.schedules_filepaths[0])) + hpxml, hpxml_bldg = _create_hpxml('base-battery-scheduled.xml') + csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[0])) csv_data[1][0] = 1.1 File.write(@tmp_csv_path, csv_data.map(&:to_csv).join) - hpxml.header.schedules_filepaths = [@tmp_csv_path] + hpxml_bldg.header.schedules_filepaths = [@tmp_csv_path] elsif ['battery-bad-values-min-not-neg-one'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-battery-scheduled.xml')) - csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml.header.schedules_filepaths[0])) + hpxml, hpxml_bldg = _create_hpxml('base-battery-scheduled.xml') + csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[0])) csv_data[1][0] = -1.1 File.write(@tmp_csv_path, csv_data.map(&:to_csv).join) - hpxml.header.schedules_filepaths = [@tmp_csv_path] + hpxml_bldg.header.schedules_filepaths = [@tmp_csv_path] elsif ['cfis-with-hydronic-distribution'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-boiler-gas-only.xml')) - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeCFIS, - used_for_whole_building_ventilation: true, - distribution_system_idref: hpxml.hvac_distributions[0].id) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-boiler-gas-only.xml') + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeCFIS, + used_for_whole_building_ventilation: true, + distribution_system_idref: hpxml_bldg.hvac_distributions[0].id) elsif ['cfis-invalid-supplemental-fan'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-cfis-supplemental-fan-exhaust.xml')) - suppl_fan = hpxml.ventilation_fans.find { |f| f.is_cfis_supplemental_fan? } + hpxml, hpxml_bldg = _create_hpxml('base-mechvent-cfis-supplemental-fan-exhaust.xml') + suppl_fan = hpxml_bldg.ventilation_fans.find { |f| f.is_cfis_supplemental_fan? } suppl_fan.fan_type = HPXML::MechVentTypeBalanced elsif ['cfis-invalid-supplemental-fan2'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-cfis-supplemental-fan-exhaust.xml')) - suppl_fan = hpxml.ventilation_fans.find { |f| f.is_cfis_supplemental_fan? } + hpxml, hpxml_bldg = _create_hpxml('base-mechvent-cfis-supplemental-fan-exhaust.xml') + suppl_fan = hpxml_bldg.ventilation_fans.find { |f| f.is_cfis_supplemental_fan? } suppl_fan.used_for_whole_building_ventilation = false suppl_fan.used_for_garage_ventilation = true elsif ['cfis-invalid-supplemental-fan3'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-cfis-supplemental-fan-exhaust.xml')) - suppl_fan = hpxml.ventilation_fans.find { |f| f.is_cfis_supplemental_fan? } + hpxml, hpxml_bldg = _create_hpxml('base-mechvent-cfis-supplemental-fan-exhaust.xml') + suppl_fan = hpxml_bldg.ventilation_fans.find { |f| f.is_cfis_supplemental_fan? } suppl_fan.is_shared_system = true suppl_fan.fraction_recirculation = 0.0 suppl_fan.in_unit_flow_rate = suppl_fan.tested_flow_rate / 2.0 elsif ['cfis-invalid-supplemental-fan4'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-cfis-supplemental-fan-exhaust.xml')) - suppl_fan = hpxml.ventilation_fans.find { |f| f.is_cfis_supplemental_fan? } + hpxml, hpxml_bldg = _create_hpxml('base-mechvent-cfis-supplemental-fan-exhaust.xml') + suppl_fan = hpxml_bldg.ventilation_fans.find { |f| f.is_cfis_supplemental_fan? } suppl_fan.hours_in_operation = 12.0 elsif ['dehumidifier-setpoints'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-appliances-dehumidifier-multiple.xml')) - hpxml.dehumidifiers[-1].rh_setpoint = 0.55 + hpxml, hpxml_bldg = _create_hpxml('base-appliances-dehumidifier-multiple.xml') + hpxml_bldg.dehumidifiers[-1].rh_setpoint = 0.55 elsif ['desuperheater-with-detailed-setpoints'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-dhw-tank-detailed-setpoints.xml')) - hpxml.water_heating_systems[0].uses_desuperheater = true - hpxml.water_heating_systems[0].related_hvac_idref = hpxml.cooling_systems[0].id + hpxml, hpxml_bldg = _create_hpxml('base-dhw-tank-detailed-setpoints.xml') + hpxml_bldg.water_heating_systems[0].uses_desuperheater = true + hpxml_bldg.water_heating_systems[0].related_hvac_idref = hpxml_bldg.cooling_systems[0].id elsif ['duplicate-id'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.plug_loads[-1].id = hpxml.plug_loads[0].id + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.plug_loads[-1].id = hpxml_bldg.plug_loads[0].id elsif ['emissions-duplicate-names'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-emissions.xml')) + hpxml, _hpxml_bldg = _create_hpxml('base-misc-emissions.xml') hpxml.header.emissions_scenarios << hpxml.header.emissions_scenarios[0].dup elsif ['emissions-wrong-columns'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-emissions.xml')) + hpxml, _hpxml_bldg = _create_hpxml('base-misc-emissions.xml') scenario = hpxml.header.emissions_scenarios[1] csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), scenario.elec_schedule_filepath)) csv_data[10] = [431.0] * (scenario.elec_schedule_column_number - 1) File.write(@tmp_csv_path, csv_data.map(&:to_csv).join) hpxml.header.emissions_scenarios[1].elec_schedule_filepath = @tmp_csv_path elsif ['emissions-wrong-filename'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-emissions.xml')) + hpxml, _hpxml_bldg = _create_hpxml('base-misc-emissions.xml') hpxml.header.emissions_scenarios[1].elec_schedule_filepath = 'invalid-wrong-filename.csv' elsif ['emissions-wrong-rows'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-emissions.xml')) + hpxml, _hpxml_bldg = _create_hpxml('base-misc-emissions.xml') scenario = hpxml.header.emissions_scenarios[1] csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), scenario.elec_schedule_filepath)) File.write(@tmp_csv_path, csv_data[0..-2].map(&:to_csv).join) hpxml.header.emissions_scenarios[1].elec_schedule_filepath = @tmp_csv_path elsif ['heat-pump-backup-system-load-fraction'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml')) - hpxml.heating_systems[0].fraction_heat_load_served = 0.5 - hpxml.heat_pumps[0].fraction_heat_load_served = 0.5 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml') + hpxml_bldg.heating_systems[0].fraction_heat_load_served = 0.5 + hpxml_bldg.heat_pumps[0].fraction_heat_load_served = 0.5 elsif ['heat-pump-switchover-temp-elec-backup'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-1-speed.xml')) - hpxml.heat_pumps[0].backup_heating_switchover_temp = 35.0 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.heat_pumps[0].backup_heating_switchover_temp = 35.0 + elsif ['hvac-cooling-detailed-performance-incomplete-pair'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml') + hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data[-1].outdoor_temperature -= 1.0 + elsif ['hvac-heating-detailed-performance-incomplete-pair'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml') + hpxml_bldg.heat_pumps[0].heating_detailed_performance_data[-1].outdoor_temperature -= 1.0 + elsif ['heat-pump-lockout-temps-elec-backup'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.heat_pumps[0].compressor_lockout_temp = 35.0 + hpxml_bldg.heat_pumps[0].backup_heating_lockout_temp = 35.0 elsif ['hvac-invalid-distribution-system-type'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.hvac_distributions.add(id: "HVACDistribution#{hpxml.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeHydronic, - hydronic_type: HPXML::HydronicTypeBaseboard) - hpxml.heating_systems[-1].distribution_system_idref = hpxml.hvac_distributions[-1].id + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeHydronic, + hydronic_type: HPXML::HydronicTypeBaseboard) + hpxml_bldg.heating_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id elsif ['hvac-distribution-multiple-attached-cooling'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-multiple.xml')) - hpxml.heat_pumps[0].distribution_system_idref = 'HVACDistribution2' + hpxml, hpxml_bldg = _create_hpxml('base-hvac-multiple.xml') + hpxml_bldg.heat_pumps[0].distribution_system_idref = 'HVACDistribution2' elsif ['hvac-distribution-multiple-attached-heating'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-multiple.xml')) - hpxml.heat_pumps[0].distribution_system_idref = 'HVACDistribution1' + hpxml, hpxml_bldg = _create_hpxml('base-hvac-multiple.xml') + hpxml_bldg.heat_pumps[0].distribution_system_idref = 'HVACDistribution1' elsif ['hvac-dse-multiple-attached-cooling'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-dse.xml')) - hpxml.cooling_systems[0].fraction_cool_load_served = 0.5 - hpxml.cooling_systems << hpxml.cooling_systems[0].dup - hpxml.cooling_systems[1].id = "CoolingSystem#{hpxml.cooling_systems.size}" - hpxml.cooling_systems[0].primary_system = false + hpxml, hpxml_bldg = _create_hpxml('base-hvac-dse.xml') + hpxml_bldg.cooling_systems[0].fraction_cool_load_served = 0.5 + hpxml_bldg.cooling_systems << hpxml_bldg.cooling_systems[0].dup + hpxml_bldg.cooling_systems[1].id = "CoolingSystem#{hpxml_bldg.cooling_systems.size}" + hpxml_bldg.cooling_systems[0].primary_system = false elsif ['hvac-dse-multiple-attached-heating'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-dse.xml')) - hpxml.heating_systems[0].fraction_heat_load_served = 0.5 - hpxml.heating_systems << hpxml.heating_systems[0].dup - hpxml.heating_systems[1].id = "HeatingSystem#{hpxml.heating_systems.size}" - hpxml.heating_systems[0].primary_system = false + hpxml, hpxml_bldg = _create_hpxml('base-hvac-dse.xml') + hpxml_bldg.heating_systems[0].fraction_heat_load_served = 0.5 + hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup + hpxml_bldg.heating_systems[1].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}" + hpxml_bldg.heating_systems[0].primary_system = false elsif ['hvac-inconsistent-fan-powers'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.cooling_systems[0].fan_watts_per_cfm = 0.55 - hpxml.heating_systems[0].fan_watts_per_cfm = 0.45 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.cooling_systems[0].fan_watts_per_cfm = 0.55 + hpxml_bldg.heating_systems[0].fan_watts_per_cfm = 0.45 elsif ['hvac-shared-boiler-multiple'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-multifamily-shared-boiler-only-baseboard.xml')) - hpxml.hvac_distributions << hpxml.hvac_distributions[0].dup - hpxml.hvac_distributions[-1].id = "HVACDistribution#{hpxml.hvac_distributions.size}" - hpxml.heating_systems[0].fraction_heat_load_served = 0.5 - hpxml.heating_systems[0].primary_system = false - hpxml.heating_systems << hpxml.heating_systems[0].dup - hpxml.heating_systems[1].id = "HeatingSystem#{hpxml.heating_systems.size}" - hpxml.heating_systems[1].distribution_system_idref = hpxml.hvac_distributions[-1].id - hpxml.heating_systems[1].primary_system = true + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml') + hpxml_bldg.hvac_distributions << hpxml_bldg.hvac_distributions[0].dup + hpxml_bldg.hvac_distributions[-1].id = "HVACDistribution#{hpxml_bldg.hvac_distributions.size}" + hpxml_bldg.heating_systems[0].fraction_heat_load_served = 0.5 + hpxml_bldg.heating_systems[0].primary_system = false + hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup + hpxml_bldg.heating_systems[1].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}" + hpxml_bldg.heating_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + hpxml_bldg.heating_systems[1].primary_system = true elsif ['hvac-shared-chiller-multiple'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-multifamily-shared-chiller-only-baseboard.xml')) - hpxml.hvac_distributions << hpxml.hvac_distributions[0].dup - hpxml.hvac_distributions[-1].id = "HVACDistribution#{hpxml.hvac_distributions.size}" - hpxml.cooling_systems[0].fraction_cool_load_served = 0.5 - hpxml.cooling_systems[0].primary_system = false - hpxml.cooling_systems << hpxml.cooling_systems[0].dup - hpxml.cooling_systems[1].id = "CoolingSystem#{hpxml.cooling_systems.size}" - hpxml.cooling_systems[1].distribution_system_idref = hpxml.hvac_distributions[-1].id - hpxml.cooling_systems[1].primary_system = true + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml') + hpxml_bldg.hvac_distributions << hpxml_bldg.hvac_distributions[0].dup + hpxml_bldg.hvac_distributions[-1].id = "HVACDistribution#{hpxml_bldg.hvac_distributions.size}" + hpxml_bldg.cooling_systems[0].fraction_cool_load_served = 0.5 + hpxml_bldg.cooling_systems[0].primary_system = false + hpxml_bldg.cooling_systems << hpxml_bldg.cooling_systems[0].dup + hpxml_bldg.cooling_systems[1].id = "CoolingSystem#{hpxml_bldg.cooling_systems.size}" + hpxml_bldg.cooling_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + hpxml_bldg.cooling_systems[1].primary_system = true elsif ['hvac-shared-chiller-negative-seer-eq'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-multifamily-shared-chiller-only-baseboard.xml')) - hpxml.cooling_systems[0].shared_loop_watts *= 100.0 + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml') + hpxml_bldg.cooling_systems[0].shared_loop_watts *= 100.0 elsif ['invalid-battery-capacity-units'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-pv-battery.xml')) - hpxml.batteries[0].usable_capacity_kwh = nil - hpxml.batteries[0].usable_capacity_ah = 200.0 + hpxml, hpxml_bldg = _create_hpxml('base-pv-battery.xml') + hpxml_bldg.batteries[0].usable_capacity_kwh = nil + hpxml_bldg.batteries[0].usable_capacity_ah = 200.0 elsif ['invalid-battery-capacity-units2'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-pv-battery-ah.xml')) - hpxml.batteries[0].usable_capacity_kwh = 10.0 - hpxml.batteries[0].usable_capacity_ah = nil + hpxml, hpxml_bldg = _create_hpxml('base-pv-battery-ah.xml') + hpxml_bldg.batteries[0].usable_capacity_kwh = 10.0 + hpxml_bldg.batteries[0].usable_capacity_ah = nil elsif ['invalid-datatype-boolean'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml, _hpxml_bldg = _create_hpxml('base.xml') elsif ['invalid-datatype-integer'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml, _hpxml_bldg = _create_hpxml('base.xml') elsif ['invalid-datatype-float'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml, _hpxml_bldg = _create_hpxml('base.xml') elsif ['invalid-daylight-saving'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-simcontrol-daylight-saving-custom.xml')) - hpxml.header.dst_begin_month = 3 - hpxml.header.dst_begin_day = 10 - hpxml.header.dst_end_month = 4 - hpxml.header.dst_end_day = 31 + hpxml, hpxml_bldg = _create_hpxml('base-simcontrol-daylight-saving-custom.xml') + hpxml_bldg.dst_begin_month = 3 + hpxml_bldg.dst_begin_day = 10 + hpxml_bldg.dst_end_month = 4 + hpxml_bldg.dst_end_day = 31 elsif ['invalid-distribution-cfa-served'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.hvac_distributions[-1].conditioned_floor_area_served = 2701.1 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_distributions[-1].conditioned_floor_area_served = 2701.1 elsif ['invalid-epw-filepath'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.climate_and_risk_zones.weather_station_epw_filepath = 'foo.epw' + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath = 'foo.epw' elsif ['invalid-id'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-enclosure-skylights.xml')) - hpxml.skylights[0].id = '' + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-skylights.xml') + hpxml_bldg.skylights[0].id = '' elsif ['invalid-neighbor-shading-azimuth'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-neighbor-shading.xml')) - hpxml.neighbor_buildings[0].azimuth = 145 + hpxml, hpxml_bldg = _create_hpxml('base-misc-neighbor-shading.xml') + hpxml_bldg.neighbor_buildings[0].azimuth = 145 elsif ['invalid-relatedhvac-dhw-indirect'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-dhw-indirect.xml')) - hpxml.water_heating_systems[0].related_hvac_idref = 'HeatingSystem_bad' + hpxml, hpxml_bldg = _create_hpxml('base-dhw-indirect.xml') + hpxml_bldg.water_heating_systems[0].related_hvac_idref = 'HeatingSystem_bad' elsif ['invalid-relatedhvac-desuperheater'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-central-ac-only-1-speed.xml')) - hpxml.water_heating_systems[0].uses_desuperheater = true - hpxml.water_heating_systems[0].related_hvac_idref = 'CoolingSystem_bad' + hpxml, hpxml_bldg = _create_hpxml('base-hvac-central-ac-only-1-speed.xml') + hpxml_bldg.water_heating_systems[0].uses_desuperheater = true + hpxml_bldg.water_heating_systems[0].related_hvac_idref = 'CoolingSystem_bad' elsif ['invalid-runperiod'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml, _hpxml_bldg = _create_hpxml('base.xml') hpxml.header.sim_begin_month = 3 hpxml.header.sim_begin_day = 10 hpxml.header.sim_end_month = 4 hpxml.header.sim_end_day = 31 elsif ['invalid-shading-season'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.header.shading_summer_begin_month = 3 - hpxml.header.shading_summer_begin_day = 10 - hpxml.header.shading_summer_end_month = 4 - hpxml.header.shading_summer_end_day = 31 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.header.shading_summer_begin_month = 3 + hpxml_bldg.header.shading_summer_begin_day = 10 + hpxml_bldg.header.shading_summer_end_month = 4 + hpxml_bldg.header.shading_summer_end_day = 31 elsif ['invalid-unavailable-period'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml, _hpxml_bldg = _create_hpxml('base.xml') hpxml.header.unavailable_periods.add(column_name: 'Power Outage', begin_month: 3, begin_day: 10, end_month: 4, end_day: 31) elsif ['invalid-schema-version'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml, _hpxml_bldg = _create_hpxml('base.xml') elsif ['invalid-skylights-physical-properties'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-enclosure-skylights-physical-properties.xml')) - hpxml.skylights[1].thermal_break = false + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-skylights-physical-properties.xml') + hpxml_bldg.skylights[1].thermal_break = false elsif ['invalid-windows-physical-properties'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-enclosure-windows-physical-properties.xml')) - hpxml.windows[2].thermal_break = false + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-windows-physical-properties.xml') + hpxml_bldg.windows[2].thermal_break = false elsif ['inverter-unequal-efficiencies'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-pv.xml')) - hpxml.inverters.add(id: 'Inverter2', - inverter_efficiency: 0.5) - hpxml.pv_systems[1].inverter_idref = hpxml.inverters[-1].id + hpxml, hpxml_bldg = _create_hpxml('base-pv.xml') + hpxml_bldg.inverters.add(id: 'Inverter2', + inverter_efficiency: 0.5) + hpxml_bldg.pv_systems[1].inverter_idref = hpxml_bldg.inverters[-1].id elsif ['leap-year-TMY'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-simcontrol-calendar-year-custom.xml')) + hpxml, _hpxml_bldg = _create_hpxml('base-simcontrol-calendar-year-custom.xml') hpxml.header.sim_calendar_year = 2008 elsif ['net-area-negative-roof'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-enclosure-skylights.xml')) - hpxml.skylights[0].area = 4000 + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-skylights.xml') + hpxml_bldg.skylights[0].area = 4000 elsif ['net-area-negative-wall'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.windows[0].area = 1000 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.windows[0].area = 1000 elsif ['orphaned-hvac-distribution'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-furnace-gas-room-ac.xml')) - hpxml.heating_systems[0].delete - hpxml.hvac_controls[0].heating_setpoint_temp = nil + hpxml, hpxml_bldg = _create_hpxml('base-hvac-furnace-gas-room-ac.xml') + hpxml_bldg.heating_systems[0].delete + hpxml_bldg.hvac_controls[0].heating_setpoint_temp = nil elsif ['refrigerators-multiple-primary'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-loads-large-uncommon.xml')) - hpxml.refrigerators[1].primary_indicator = true + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon.xml') + hpxml_bldg.refrigerators[1].primary_indicator = true elsif ['refrigerators-no-primary'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-loads-large-uncommon.xml')) - hpxml.refrigerators[0].primary_indicator = false + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon.xml') + hpxml_bldg.refrigerators[0].primary_indicator = false elsif ['repeated-relatedhvac-dhw-indirect'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-dhw-indirect.xml')) - hpxml.water_heating_systems[0].fraction_dhw_load_served = 0.5 - hpxml.water_heating_systems << hpxml.water_heating_systems[0].dup - hpxml.water_heating_systems[1].id = "WaterHeatingSystem#{hpxml.water_heating_systems.size}" + hpxml, hpxml_bldg = _create_hpxml('base-dhw-indirect.xml') + hpxml_bldg.water_heating_systems[0].fraction_dhw_load_served = 0.5 + hpxml_bldg.water_heating_systems << hpxml_bldg.water_heating_systems[0].dup + hpxml_bldg.water_heating_systems[1].id = "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size}" elsif ['repeated-relatedhvac-desuperheater'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-central-ac-only-1-speed.xml')) - hpxml.water_heating_systems[0].fraction_dhw_load_served = 0.5 - hpxml.water_heating_systems[0].uses_desuperheater = true - hpxml.water_heating_systems[0].related_hvac_idref = 'CoolingSystem1' - hpxml.water_heating_systems << hpxml.water_heating_systems[0].dup - hpxml.water_heating_systems[1].id = "WaterHeatingSystem#{hpxml.water_heating_systems.size}" + hpxml, hpxml_bldg = _create_hpxml('base-hvac-central-ac-only-1-speed.xml') + hpxml_bldg.water_heating_systems[0].fraction_dhw_load_served = 0.5 + hpxml_bldg.water_heating_systems[0].uses_desuperheater = true + hpxml_bldg.water_heating_systems[0].related_hvac_idref = 'CoolingSystem1' + hpxml_bldg.water_heating_systems << hpxml_bldg.water_heating_systems[0].dup + hpxml_bldg.water_heating_systems[1].id = "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size}" elsif ['schedule-detailed-bad-values-max-not-one'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-schedules-detailed-occupancy-stochastic.xml')) - csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml.header.schedules_filepaths[0])) + hpxml, hpxml_bldg = _create_hpxml('base-schedules-detailed-occupancy-stochastic.xml') + csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[0])) csv_data[1][1] = 1.1 File.write(@tmp_csv_path, csv_data.map(&:to_csv).join) - hpxml.header.schedules_filepaths = [@tmp_csv_path] + hpxml_bldg.header.schedules_filepaths = [@tmp_csv_path] elsif ['schedule-detailed-bad-values-negative'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-schedules-detailed-occupancy-stochastic.xml')) - csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml.header.schedules_filepaths[0])) + hpxml, hpxml_bldg = _create_hpxml('base-schedules-detailed-occupancy-stochastic.xml') + csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[0])) csv_data[1][1] = -0.5 File.write(@tmp_csv_path, csv_data.map(&:to_csv).join) - hpxml.header.schedules_filepaths = [@tmp_csv_path] + hpxml_bldg.header.schedules_filepaths = [@tmp_csv_path] elsif ['schedule-detailed-bad-values-non-numeric'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-schedules-detailed-occupancy-stochastic.xml')) - csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml.header.schedules_filepaths[0])) + hpxml, hpxml_bldg = _create_hpxml('base-schedules-detailed-occupancy-stochastic.xml') + csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[0])) csv_data[1][1] = 'NA' File.write(@tmp_csv_path, csv_data.map(&:to_csv).join) - hpxml.header.schedules_filepaths = [@tmp_csv_path] + hpxml_bldg.header.schedules_filepaths = [@tmp_csv_path] elsif ['schedule-detailed-bad-values-mode-negative'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-dhw-tank-heat-pump-detailed-schedules.xml')) - csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml.header.schedules_filepaths[1])) + hpxml, hpxml_bldg = _create_hpxml('base-dhw-tank-heat-pump-detailed-schedules.xml') + csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[1])) csv_data[1][0] = -0.5 File.write(@tmp_csv_path, csv_data.map(&:to_csv).join) - hpxml.header.schedules_filepaths = [@tmp_csv_path] + hpxml_bldg.header.schedules_filepaths = [@tmp_csv_path] elsif ['schedule-detailed-duplicate-columns'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-schedules-detailed-occupancy-stochastic.xml')) - csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml.header.schedules_filepaths[0])) + hpxml, hpxml_bldg = _create_hpxml('base-schedules-detailed-occupancy-stochastic.xml') + csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[0])) File.write(@tmp_csv_path, csv_data.map(&:to_csv).join) - hpxml.header.schedules_filepaths = [] - hpxml.header.schedules_filepaths << @tmp_csv_path - hpxml.header.schedules_filepaths << @tmp_csv_path + hpxml_bldg.header.schedules_filepaths = [] + hpxml_bldg.header.schedules_filepaths << @tmp_csv_path + hpxml_bldg.header.schedules_filepaths << @tmp_csv_path elsif ['schedule-detailed-wrong-filename'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.header.schedules_filepaths << 'invalid-wrong-filename.csv' + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.header.schedules_filepaths << 'invalid-wrong-filename.csv' elsif ['schedule-detailed-wrong-rows'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-schedules-detailed-occupancy-stochastic.xml')) - csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml.header.schedules_filepaths[0])) + hpxml, hpxml_bldg = _create_hpxml('base-schedules-detailed-occupancy-stochastic.xml') + csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), hpxml_bldg.header.schedules_filepaths[0])) File.write(@tmp_csv_path, csv_data[0..-2].map(&:to_csv).join) - hpxml.header.schedules_filepaths = [@tmp_csv_path] + hpxml_bldg.header.schedules_filepaths = [@tmp_csv_path] elsif ['solar-thermal-system-with-combi-tankless'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-dhw-combi-tankless.xml')) - hpxml.solar_thermal_systems.add(id: "SolarThermalSystem#{hpxml.solar_thermal_systems.size + 1}", - system_type: HPXML::SolarThermalSystemType, - collector_area: 40, - collector_type: HPXML::SolarThermalTypeSingleGlazing, - collector_loop_type: HPXML::SolarThermalLoopTypeIndirect, - collector_azimuth: 180, - collector_tilt: 20, - collector_frta: 0.77, - collector_frul: 0.793, - water_heating_system_idref: 'WaterHeatingSystem1') + hpxml, hpxml_bldg = _create_hpxml('base-dhw-combi-tankless.xml') + hpxml_bldg.solar_thermal_systems.add(id: "SolarThermalSystem#{hpxml_bldg.solar_thermal_systems.size + 1}", + system_type: HPXML::SolarThermalSystemType, + collector_area: 40, + collector_type: HPXML::SolarThermalTypeSingleGlazing, + collector_loop_type: HPXML::SolarThermalLoopTypeIndirect, + collector_azimuth: 180, + collector_tilt: 20, + collector_frta: 0.77, + collector_frul: 0.793, + water_heating_system_idref: 'WaterHeatingSystem1') elsif ['solar-thermal-system-with-desuperheater'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-dhw-desuperheater.xml')) - hpxml.solar_thermal_systems.add(id: "SolarThermalSystem#{hpxml.solar_thermal_systems.size + 1}", - system_type: HPXML::SolarThermalSystemType, - collector_area: 40, - collector_type: HPXML::SolarThermalTypeSingleGlazing, - collector_loop_type: HPXML::SolarThermalLoopTypeIndirect, - collector_azimuth: 180, - collector_tilt: 20, - collector_frta: 0.77, - collector_frul: 0.793, - water_heating_system_idref: 'WaterHeatingSystem1') + hpxml, hpxml_bldg = _create_hpxml('base-dhw-desuperheater.xml') + hpxml_bldg.solar_thermal_systems.add(id: "SolarThermalSystem#{hpxml_bldg.solar_thermal_systems.size + 1}", + system_type: HPXML::SolarThermalSystemType, + collector_area: 40, + collector_type: HPXML::SolarThermalTypeSingleGlazing, + collector_loop_type: HPXML::SolarThermalLoopTypeIndirect, + collector_azimuth: 180, + collector_tilt: 20, + collector_frta: 0.77, + collector_frul: 0.793, + water_heating_system_idref: 'WaterHeatingSystem1') elsif ['solar-thermal-system-with-dhw-indirect'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-dhw-combi-tankless.xml')) - hpxml.solar_thermal_systems.add(id: "SolarThermalSystem#{hpxml.solar_thermal_systems.size + 1}", - system_type: HPXML::SolarThermalSystemType, - collector_area: 40, - collector_type: HPXML::SolarThermalTypeSingleGlazing, - collector_loop_type: HPXML::SolarThermalLoopTypeIndirect, - collector_azimuth: 180, - collector_tilt: 20, - collector_frta: 0.77, - collector_frul: 0.793, - water_heating_system_idref: 'WaterHeatingSystem1') + hpxml, hpxml_bldg = _create_hpxml('base-dhw-combi-tankless.xml') + hpxml_bldg.solar_thermal_systems.add(id: "SolarThermalSystem#{hpxml_bldg.solar_thermal_systems.size + 1}", + system_type: HPXML::SolarThermalSystemType, + collector_area: 40, + collector_type: HPXML::SolarThermalTypeSingleGlazing, + collector_loop_type: HPXML::SolarThermalLoopTypeIndirect, + collector_azimuth: 180, + collector_tilt: 20, + collector_frta: 0.77, + collector_frul: 0.793, + water_heating_system_idref: 'WaterHeatingSystem1') elsif ['storm-windows-unexpected-window-ufactor'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.windows[0].storm_type = 'clear' + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.windows[0].storm_type = 'clear' elsif ['unattached-cfis'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeCFIS, - used_for_whole_building_ventilation: true, - distribution_system_idref: hpxml.hvac_distributions[0].id) - hpxml.ventilation_fans[0].distribution_system_idref = 'foobar' + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeCFIS, + used_for_whole_building_ventilation: true, + distribution_system_idref: hpxml_bldg.hvac_distributions[0].id) + hpxml_bldg.ventilation_fans[0].distribution_system_idref = 'foobar' elsif ['unattached-door'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.doors[0].wall_idref = 'foobar' + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.doors[0].wall_idref = 'foobar' elsif ['unattached-hvac-distribution'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.heating_systems[0].distribution_system_idref = 'foobar' + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.heating_systems[0].distribution_system_idref = 'foobar' elsif ['unattached-pv-system'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-pv.xml')) - hpxml.pv_systems[0].inverter_idref = 'foobar' + hpxml, hpxml_bldg = _create_hpxml('base-pv.xml') + hpxml_bldg.pv_systems[0].inverter_idref = 'foobar' elsif ['unattached-skylight'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-enclosure-skylights.xml')) - hpxml.skylights[0].roof_idref = 'foobar' + hpxml, hpxml_bldg = _create_hpxml('base-enclosure-skylights.xml') + hpxml_bldg.skylights[0].roof_idref = 'foobar' elsif ['unattached-solar-thermal-system'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-dhw-solar-indirect-flat-plate.xml')) - hpxml.solar_thermal_systems[0].water_heating_system_idref = 'foobar' + hpxml, hpxml_bldg = _create_hpxml('base-dhw-solar-indirect-flat-plate.xml') + hpxml_bldg.solar_thermal_systems[0].water_heating_system_idref = 'foobar' elsif ['unattached-shared-clothes-washer-dhw-distribution'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-multifamily-shared-laundry-room.xml')) - hpxml.clothes_washers[0].water_heating_system_idref = nil - hpxml.clothes_washers[0].hot_water_distribution_idref = 'foobar' + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-laundry-room.xml') + hpxml_bldg.clothes_washers[0].water_heating_system_idref = nil + hpxml_bldg.clothes_washers[0].hot_water_distribution_idref = 'foobar' elsif ['unattached-shared-clothes-washer-water-heater'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-multifamily-shared-laundry-room.xml')) - hpxml.clothes_washers[0].water_heating_system_idref = 'foobar' + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-laundry-room.xml') + hpxml_bldg.clothes_washers[0].water_heating_system_idref = 'foobar' elsif ['unattached-shared-dishwasher-dhw-distribution'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-multifamily-shared-laundry-room.xml')) - hpxml.dishwashers[0].water_heating_system_idref = nil - hpxml.dishwashers[0].hot_water_distribution_idref = 'foobar' + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-laundry-room.xml') + hpxml_bldg.dishwashers[0].water_heating_system_idref = nil + hpxml_bldg.dishwashers[0].hot_water_distribution_idref = 'foobar' elsif ['unattached-shared-dishwasher-water-heater'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-multifamily-shared-laundry-room.xml')) - hpxml.dishwashers[0].water_heating_system_idref = 'foobar' + hpxml, hpxml_bldg = _create_hpxml('base-bldgtype-mf-unit-shared-laundry-room.xml') + hpxml_bldg.dishwashers[0].water_heating_system_idref = 'foobar' elsif ['unattached-window'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.windows[0].wall_idref = 'foobar' + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.windows[0].wall_idref = 'foobar' elsif ['unavailable-period-missing-column'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-schedules-simple-vacancy.xml')) + hpxml, _hpxml_bldg = _create_hpxml('base-schedules-simple-vacancy.xml') hpxml.header.unavailable_periods[0].column_name = 'foobar' + elsif ['unique-objects-vary-across-units-epw'].include? error_case + building_id = 'ALL' + hpxml, hpxml_bldg = _create_hpxml('base-multiple-sfd-buildings.xml', building_id: building_id) + hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath = 'USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw' + elsif ['unique-objects-vary-across-units-dst'].include? error_case + building_id = 'ALL' + hpxml, hpxml_bldg = _create_hpxml('base-multiple-sfd-buildings.xml', building_id: building_id) + hpxml_bldg.dst_begin_month = 3 + hpxml_bldg.dst_begin_day = 15 + hpxml_bldg.dst_end_month = 10 + hpxml_bldg.dst_end_day = 15 + elsif ['unique-objects-vary-across-units-tmains'].include? error_case + building_id = 'ALL' + hpxml, hpxml_bldg = _create_hpxml('base-multiple-sfd-buildings.xml', building_id: building_id) + hpxml_bldg.hot_water_distributions[0].dwhr_facilities_connected = HPXML::DWHRFacilitiesConnectedOne + hpxml_bldg.hot_water_distributions[0].dwhr_equal_flow = true + hpxml_bldg.hot_water_distributions[0].dwhr_efficiency = 0.55 + elsif ['whole-mf-building-batteries'].include? error_case + building_id = 'ALL' + hpxml, hpxml_bldg = _create_hpxml('base-multiple-sfd-buildings.xml', building_id: building_id) + hpxml_bldg.batteries.add(id: 'Battery1', + type: HPXML::BatteryTypeLithiumIon) + elsif ['whole-mf-building-dehumidifiers-unit-multiplier'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-appliances-dehumidifier.xml') + hpxml_bldg.building_construction.number_of_units = 2 + elsif ['whole-mf-building-gshps-unit-multiplier'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml_bldg.building_construction.number_of_units = 2 else fail "Unhandled case: #{error_case}." end - hpxml_doc = hpxml.to_oga() + hpxml_doc = hpxml.to_doc() # Perform additional raw XML manipulation if ['invalid-datatype-boolean'].include? error_case @@ -1242,13 +1377,16 @@ def test_ruby_error_messages end XMLHelper.write_file(hpxml_doc, @tmp_hpxml_path) - _test_measure('error', expected_errors) + _test_measure('error', expected_errors, building_id: building_id) end end def test_ruby_warning_messages # Test case => Error message all_expected_warnings = { 'cfis-undersized-supplemental-fan' => ["CFIS supplemental fan 'VentilationFan2' is undersized (90.0 cfm) compared to the target hourly ventilation rate (110.0 cfm)."], + 'duct-lto-cfm25' => ['Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment.'], + 'duct-lto-cfm50' => ['Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment.'], + 'duct-lto-percent' => ['Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment.'], 'hvac-setpoint-adjustments' => ['HVAC setpoints have been automatically adjusted to prevent periods where the heating setpoint is greater than the cooling setpoint.'], 'hvac-setpoint-adjustments-daily-setbacks' => ['HVAC setpoints have been automatically adjusted to prevent periods where the heating setpoint is greater than the cooling setpoint.'], 'hvac-setpoint-adjustments-daily-schedules' => ['HVAC setpoints have been automatically adjusted to prevent periods where the heating setpoint is greater than the cooling setpoint.'], @@ -1314,12 +1452,12 @@ def test_ruby_warning_messages "Both 'pool_heater' schedule file and weekday fractions provided; the latter will be ignored.", "Both 'pool_heater' schedule file and weekend fractions provided; the latter will be ignored.", "Both 'pool_heater' schedule file and monthly multipliers provided; the latter will be ignored.", - "Both 'hot_tub_pump' schedule file and weekday fractions provided; the latter will be ignored.", - "Both 'hot_tub_pump' schedule file and weekend fractions provided; the latter will be ignored.", - "Both 'hot_tub_pump' schedule file and monthly multipliers provided; the latter will be ignored.", - "Both 'hot_tub_heater' schedule file and weekday fractions provided; the latter will be ignored.", - "Both 'hot_tub_heater' schedule file and weekend fractions provided; the latter will be ignored.", - "Both 'hot_tub_heater' schedule file and monthly multipliers provided; the latter will be ignored."], + "Both 'permanent_spa_pump' schedule file and weekday fractions provided; the latter will be ignored.", + "Both 'permanent_spa_pump' schedule file and weekend fractions provided; the latter will be ignored.", + "Both 'permanent_spa_pump' schedule file and monthly multipliers provided; the latter will be ignored.", + "Both 'permanent_spa_heater' schedule file and weekday fractions provided; the latter will be ignored.", + "Both 'permanent_spa_heater' schedule file and weekend fractions provided; the latter will be ignored.", + "Both 'permanent_spa_heater' schedule file and monthly multipliers provided; the latter will be ignored."], 'schedule-file-and-setpoints' => ["Both 'heating_setpoint' schedule file and heating setpoint temperature provided; the latter will be ignored.", "Both 'cooling_setpoint' schedule file and cooling setpoint temperature provided; the latter will be ignored.", "Both 'water_heater_setpoint' schedule file and setpoint temperature provided; the latter will be ignored."], @@ -1327,44 +1465,78 @@ def test_ruby_warning_messages all_expected_warnings.each_with_index do |(warning_case, expected_warnings), i| puts "[#{i + 1}/#{all_expected_warnings.size}] Testing #{warning_case}..." + building_id = nil # Create HPXML object if ['cfis-undersized-supplemental-fan'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-cfis-supplemental-fan-exhaust.xml')) - suppl_fan = hpxml.ventilation_fans.find { |f| f.is_cfis_supplemental_fan? } + hpxml, hpxml_bldg = _create_hpxml('base-mechvent-cfis-supplemental-fan-exhaust.xml') + suppl_fan = hpxml_bldg.ventilation_fans.find { |f| f.is_cfis_supplemental_fan? } suppl_fan.tested_flow_rate = 90.0 + elsif ['duct-lto-cfm25'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base-atticroof-conditioned.xml') + hpxml_bldg.hvac_distributions[0].conditioned_floor_area_served = hpxml_bldg.building_construction.conditioned_floor_area + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.each do |dlm| + dlm.duct_leakage_units = HPXML::UnitsCFM25 + dlm.duct_leakage_value = 100.0 + end + hpxml_bldg.hvac_distributions[0].ducts.each do |duct| + duct.duct_surface_area = nil + duct.duct_location = nil + end + elsif ['duct-lto-cfm50'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base-atticroof-conditioned.xml') + hpxml_bldg.hvac_distributions[0].conditioned_floor_area_served = hpxml_bldg.building_construction.conditioned_floor_area + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.each do |dlm| + dlm.duct_leakage_units = HPXML::UnitsCFM50 + dlm.duct_leakage_value = 200.0 + end + hpxml_bldg.hvac_distributions[0].ducts.each do |duct| + duct.duct_surface_area = nil + duct.duct_location = nil + end + elsif ['duct-lto-percent'].include? warning_case + hpxml, hpxml_bldg = _create_hpxml('base-atticroof-conditioned.xml') + hpxml_bldg.hvac_distributions[0].conditioned_floor_area_served = hpxml_bldg.building_construction.conditioned_floor_area + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.each do |dlm| + dlm.duct_leakage_units = HPXML::UnitsPercent + dlm.duct_leakage_value = 0.2 + end + hpxml_bldg.hvac_distributions[0].ducts.each do |duct| + duct.duct_surface_area = nil + duct.duct_location = nil + end elsif ['hvac-setpoint-adjustments'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.hvac_controls[0].heating_setpoint_temp = 76.0 - hpxml.hvac_controls[0].cooling_setpoint_temp = 75.0 + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.hvac_controls[0].heating_setpoint_temp = 76.0 + hpxml_bldg.hvac_controls[0].cooling_setpoint_temp = 75.0 elsif ['hvac-setpoint-adjustments-daily-setbacks'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-setpoints-daily-setbacks.xml')) - hpxml.hvac_controls[0].heating_setback_temp = 76.0 - hpxml.hvac_controls[0].cooling_setpoint_temp = 75.0 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-setpoints-daily-setbacks.xml') + hpxml_bldg.hvac_controls[0].heating_setback_temp = 76.0 + hpxml_bldg.hvac_controls[0].cooling_setpoint_temp = 75.0 elsif ['hvac-setpoint-adjustments-daily-schedules'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-setpoints-daily-schedules.xml')) - hpxml.hvac_controls[0].weekday_heating_setpoints = '64, 64, 64, 64, 64, 64, 64, 76, 70, 66, 66, 66, 66, 66, 66, 66, 66, 68, 68, 68, 68, 68, 64, 64' + hpxml, hpxml_bldg = _create_hpxml('base-hvac-setpoints-daily-schedules.xml') + hpxml_bldg.hvac_controls[0].weekday_heating_setpoints = '64, 64, 64, 64, 64, 64, 64, 76, 70, 66, 66, 66, 66, 66, 66, 66, 66, 68, 68, 68, 68, 68, 64, 64' elsif ['power-outage'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-schedules-simple-power-outage.xml')) + hpxml, _hpxml_bldg = _create_hpxml('base-schedules-simple-power-outage.xml') elsif ['schedule-file-and-weekday-weekend-multipliers'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-loads-large-uncommon.xml')) + hpxml, hpxml_bldg = _create_hpxml('base-misc-loads-large-uncommon.xml') hpxml.header.utility_bill_scenarios.clear # we don't want the propane warning - hpxml.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/occupancy-stochastic.csv') - hpxml.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/occupancy-non-stochastic.csv') + hpxml_bldg.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/occupancy-stochastic.csv') + hpxml_bldg.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/occupancy-non-stochastic.csv') elsif ['schedule-file-and-setpoints'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/setpoints.csv') - hpxml.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/water-heater-setpoints.csv') + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/setpoints.csv') + hpxml_bldg.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/water-heater-setpoints.csv') elsif ['schedule-file-and-operating-mode'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml')) - hpxml.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/water-heater-operating-modes.csv') + hpxml, hpxml_bldg = _create_hpxml('base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml') + hpxml_bldg.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/water-heater-operating-modes.csv') else fail "Unhandled case: #{warning_case}." end - hpxml_doc = hpxml.to_oga() + hpxml_doc = hpxml.to_doc() XMLHelper.write_file(hpxml_doc, @tmp_hpxml_path) - _test_measure('warning', expected_warnings) + _test_measure('warning', expected_warnings, building_id: building_id) end end @@ -1388,7 +1560,7 @@ def _test_schema_and_schematron_validation(hpxml_path, hpxml_doc, expected_error end end - def _test_measure(error_or_warning, expected_errors_or_warnings) + def _test_measure(error_or_warning, expected_errors_or_warnings, building_id: nil) # create an instance of the measure measure = HPXMLtoOpenStudio.new @@ -1400,6 +1572,7 @@ def _test_measure(error_or_warning, expected_errors_or_warnings) args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) args_hash['debug'] = true args_hash['output_dir'] = File.absolute_path(@tmp_output_path) + args_hash['building_id'] = building_id unless building_id.nil? arguments = measure.arguments(model) argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) @@ -1462,4 +1635,15 @@ def _compare_errors_or_warnings(type, actual_msgs, expected_msgs) end end end + + def _create_hpxml(hpxml_name, building_id: nil) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, hpxml_name), building_id: building_id) + if not hpxml.errors.empty? + hpxml.errors.each do |error| + puts error + end + flunk "Did not successfully create HPXML file: #{hpxml_name}" + end + return hpxml, hpxml.buildings[0] + end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb index b3d14e56..5756fd28 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -6,7 +11,7 @@ require 'fileutils' require_relative '../measure.rb' -class HPXMLtoOpenStudioWaterHeaterTest < MiniTest::Test +class HPXMLtoOpenStudioWaterHeaterTest < Minitest::Test def sample_files_dir return File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'sample_files') end @@ -14,10 +19,10 @@ def sample_files_dir def test_tank_gas args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-tank-gas.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.95, 'gal', 'm^3') # convert to actual volume @@ -46,10 +51,10 @@ def test_tank_gas_uef ['base-dhw-tank-gas-uef.xml', 'base-dhw-tank-gas-uef-fhr.xml'].each do |hpxml_name| args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, hpxml_name)) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.95, 'gal', 'm^3') # convert to actual volume @@ -78,10 +83,10 @@ def test_tank_gas_uef def test_tank_oil args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-tank-oil.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.95, 'gal', 'm^3') # convert to actual volume @@ -109,10 +114,10 @@ def test_tank_oil def test_tank_wood args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-tank-wood.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.95, 'gal', 'm^3') # convert to actual volume @@ -140,10 +145,10 @@ def test_tank_wood def test_tank_coal args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-tank-coal.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.95, 'gal', 'm^3') # convert to actual volume @@ -171,10 +176,10 @@ def test_tank_coal def test_tank_electric args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -202,10 +207,10 @@ def test_tank_electric def test_tank_electric_uef args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-tank-elec-uef.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -233,10 +238,10 @@ def test_tank_electric_uef def test_tankless_electric args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-tankless-electric.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(1.0, 'gal', 'm^3') # convert to actual volume @@ -264,10 +269,10 @@ def test_tankless_electric def test_tankless_electric_uef args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-tankless-electric-uef.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(1.0, 'gal', 'm^3') # convert to actual volume @@ -295,10 +300,10 @@ def test_tankless_electric_uef def test_tankless_gas_uef args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-tankless-gas-uef.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(1.0, 'gal', 'm^3') # convert to actual volume @@ -326,10 +331,10 @@ def test_tankless_gas_uef def test_tank_outside args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-tank-gas-outside.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.95, 'gal', 'm^3') # convert to actual volume @@ -355,10 +360,10 @@ def test_tank_outside def test_dsh_1_speed args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-desuperheater.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -393,10 +398,10 @@ def test_dsh_1_speed def test_dsh_var_speed args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-desuperheater-var-speed.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -431,10 +436,10 @@ def test_dsh_var_speed def test_dsh_gshp args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-desuperheater-gshp.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -469,11 +474,11 @@ def test_dsh_gshp def test_solar_direct_evacuated_tube args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-solar-direct-evacuated-tube.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] - solar_thermal_system = hpxml.solar_thermal_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] + solar_thermal_system = hpxml_bldg.solar_thermal_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -490,7 +495,7 @@ def test_solar_direct_evacuated_tube iam_coeff3 = -0.3057 collector_coeff_2 = -UnitConversions.convert(solar_thermal_system.collector_frul, 'Btu/(hr*ft^2*F)', 'W/(m^2*K)') storage_tank_volume = 0.2271 - storage_tank_height = 1.3755 + storage_tank_height = UnitConversions.convert(4.5, 'ft', 'm') storage_tank_u = 0.0 pump_power = 0.8 * solar_thermal_system.collector_area @@ -542,11 +547,11 @@ def test_solar_direct_evacuated_tube def test_solar_direct_flat_plate args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-solar-direct-flat-plate.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] - solar_thermal_system = hpxml.solar_thermal_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] + solar_thermal_system = hpxml_bldg.solar_thermal_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -563,7 +568,7 @@ def test_solar_direct_flat_plate iam_coeff3 = 0 collector_coeff_2 = -UnitConversions.convert(solar_thermal_system.collector_frul, 'Btu/(hr*ft^2*F)', 'W/(m^2*K)') storage_tank_volume = 0.2271 - storage_tank_height = 1.3755 + storage_tank_height = UnitConversions.convert(4.5, 'ft', 'm') storage_tank_u = 0.0 pump_power = 0.8 * solar_thermal_system.collector_area @@ -615,11 +620,11 @@ def test_solar_direct_flat_plate def test_solar_indirect_flat_plate args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-solar-indirect-flat-plate.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] - solar_thermal_system = hpxml.solar_thermal_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] + solar_thermal_system = hpxml_bldg.solar_thermal_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -636,7 +641,7 @@ def test_solar_indirect_flat_plate iam_coeff3 = 0 collector_coeff_2 = -UnitConversions.convert(solar_thermal_system.collector_frul, 'Btu/(hr*ft^2*F)', 'W/(m^2*K)') storage_tank_volume = UnitConversions.convert(solar_thermal_system.storage_volume, 'gal', 'm^3') - storage_tank_height = UnitConversions.convert(4.513, 'ft', 'm') + storage_tank_height = UnitConversions.convert(4.5, 'ft', 'm') storage_tank_u = UnitConversions.convert(0.1, 'Btu/(hr*ft^2*F)', 'W/(m^2*K)') pump_power = 0.8 * solar_thermal_system.collector_area @@ -688,11 +693,11 @@ def test_solar_indirect_flat_plate def test_solar_thermosyphon_flat_plate args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-solar-thermosyphon-flat-plate.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] - solar_thermal_system = hpxml.solar_thermal_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] + solar_thermal_system = hpxml_bldg.solar_thermal_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -709,7 +714,7 @@ def test_solar_thermosyphon_flat_plate iam_coeff3 = 0 collector_coeff_2 = -UnitConversions.convert(solar_thermal_system.collector_frul, 'Btu/(hr*ft^2*F)', 'W/(m^2*K)') storage_tank_volume = 0.2271 - storage_tank_height = 1.3755 + storage_tank_height = UnitConversions.convert(4.5, 'ft', 'm') storage_tank_u = 0.0 pump_power = 0.0 @@ -761,11 +766,11 @@ def test_solar_thermosyphon_flat_plate def test_solar_direct_ics args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-solar-direct-ics.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] - solar_thermal_system = hpxml.solar_thermal_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] + solar_thermal_system = hpxml_bldg.solar_thermal_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -780,7 +785,7 @@ def test_solar_direct_ics collector_storage_volume = UnitConversions.convert(solar_thermal_system.storage_volume, 'gal', 'm^3') ther_eff = 1.0 storage_tank_volume = 0.2271 - storage_tank_height = 1.3755 + storage_tank_height = UnitConversions.convert(4.5, 'ft', 'm') storage_tank_u = 0.0 pump_power = 0.8 * solar_thermal_system.collector_area @@ -829,10 +834,10 @@ def test_solar_direct_ics def test_solar_fraction args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-solar-fraction.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -860,10 +865,10 @@ def test_solar_fraction def test_tank_indirect args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-indirect.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.95, 'gal', 'm^3') # convert to actual volume @@ -896,10 +901,10 @@ def test_tank_indirect def test_tank_combi_tankless args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-combi-tankless.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(1, 'gal', 'm^3') # convert to actual volume @@ -933,10 +938,10 @@ def test_tank_combi_tankless def test_tank_heat_pump args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-tank-heat-pump.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -968,10 +973,10 @@ def test_tank_heat_pump def test_tank_heat_pump_uef args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-tank-heat-pump-uef.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -1003,10 +1008,10 @@ def test_tank_heat_pump_uef def test_tank_jacket args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-jacket-electric.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -1033,11 +1038,11 @@ def test_tank_jacket def test_shared_water_heater args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-water-heater.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-mf-unit-shared-water-heater.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.95, 'gal', 'm^3') # convert to actual volume @@ -1063,11 +1068,11 @@ def test_shared_water_heater def test_shared_laundry_room args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-laundry-room.xml')) - model, hpxml = _test_measure(args_hash) + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-mf-unit-shared-laundry-room.xml')) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.95, 'gal', 'm^3') # convert to actual volume @@ -1094,10 +1099,10 @@ def test_shared_laundry_room def test_tank_heat_pump_operating_mode_heat_pump_only args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -1129,10 +1134,10 @@ def test_tank_heat_pump_operating_mode_heat_pump_only def test_tank_stratified args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-dhw-tank-model-type-stratified.xml')) - model, hpxml = _test_measure(args_hash) + model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values - water_heating_system = hpxml.water_heating_systems[0] + water_heating_system = hpxml_bldg.water_heating_systems[0] # Expected value tank_volume = UnitConversions.convert(water_heating_system.tank_volume * 0.9, 'gal', 'm^3') # convert to actual volume @@ -1194,6 +1199,6 @@ def _test_measure(args_hash) File.delete(File.join(File.dirname(__FILE__), 'in.xml')) - return model, hpxml + return model, hpxml, hpxml.buildings[0] end end diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_weather.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_weather.rb index f2293727..744647c9 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_weather.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_weather.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../resources/minitest_helper' @@ -10,8 +15,9 @@ require_relative '../resources/materials.rb' require_relative '../resources/constants.rb' require_relative '../resources/util.rb' +require_relative '../resources/location.rb' -class HPXMLtoOpenStudioWeatherTest < MiniTest::Test +class HPXMLtoOpenStudioWeatherTest < Minitest::Test def weather_dir return File.join(File.dirname(__FILE__), '..', '..', 'weather') end @@ -35,6 +41,9 @@ def test_denver # Check data assert_equal(1, weather.header.RecordsPerHour) assert_in_delta(51.6, weather.data.AnnualAvgDrybulb, 0.1) + assert_in_delta(51.6, weather.data.ShallowGroundAnnualTemp, 0.1) + assert_in_delta(56.3, weather.data.DeepGroundAnnualTemp, 0.1) + assert_in_delta(57.6, weather.data.MainsAnnualTemp, 0.1) assert_in_delta(3072.3, weather.data.CDD50F, 0.1) assert_in_delta(883.6, weather.data.CDD65F, 0.1) assert_in_delta(2497.2, weather.data.HDD50F, 0.1) @@ -50,7 +59,10 @@ def test_denver assert_in_delta(monthly_temp, weather.data.MonthlyAvgDailyLowDrybulbs[i], 0.1) end [44.1, 40.9, 40.6, 42.2, 48.2, 54.3, 59.5, 62.8, 63.1, 60.4, 55.3, 49.4].each_with_index do |monthly_temp, i| - assert_in_delta(monthly_temp, weather.data.GroundMonthlyTemps[i], 0.1) + assert_in_delta(monthly_temp, weather.data.ShallowGroundMonthlyTemps[i], 0.1) + end + [48.7, 47.7, 49.2, 52.9, 57.8, 62.7, 66.2, 67.5, 66.2, 62.7, 57.8, 52.9].each_with_index do |monthly_temp, i| + assert_in_delta(monthly_temp, weather.data.MainsMonthlyTemps[i], 0.1) end # Check design @@ -84,6 +96,9 @@ def test_honolulu # Check data assert_equal(1, weather.header.RecordsPerHour) assert_in_delta(76.8, weather.data.AnnualAvgDrybulb, 0.1) + assert_in_delta(76.8, weather.data.ShallowGroundAnnualTemp, 0.1) + assert_in_delta(81.0, weather.data.DeepGroundAnnualTemp, 0.1) + assert_in_delta(82.8, weather.data.MainsAnnualTemp, 0.1) assert_in_delta(9798.7, weather.data.CDD50F, 0.1) assert_in_delta(4323.7, weather.data.CDD65F, 0.1) assert_in_delta(0.0, weather.data.HDD50F, 0.1) @@ -99,7 +114,10 @@ def test_honolulu assert_in_delta(monthly_temp, weather.data.MonthlyAvgDailyLowDrybulbs[i], 0.1) end [75.6, 75.0, 74.9, 75.2, 76.4, 77.6, 78.7, 79.3, 79.4, 78.9, 77.8, 76.7].each_with_index do |monthly_temp, i| - assert_in_delta(monthly_temp, weather.data.GroundMonthlyTemps[i], 0.1) + assert_in_delta(monthly_temp, weather.data.ShallowGroundMonthlyTemps[i], 0.1) + end + [79.8, 80.2, 81.2, 82.7, 84.2, 85.3, 85.8, 85.6, 84.6, 83.2, 81.6, 80.4].each_with_index do |monthly_temp, i| + assert_in_delta(monthly_temp, weather.data.MainsMonthlyTemps[i], 0.1) end # Check design @@ -133,6 +151,9 @@ def test_cape_town # Check data assert_equal(1, weather.header.RecordsPerHour) assert_in_delta(61.7, weather.data.AnnualAvgDrybulb, 0.1) + assert_in_delta(61.7, weather.data.ShallowGroundAnnualTemp, 0.1) + assert_in_delta(65.8, weather.data.DeepGroundAnnualTemp, 0.1) + assert_in_delta(67.7, weather.data.MainsAnnualTemp, 0.1) assert_in_delta(4297.8, weather.data.CDD50F, 0.1) assert_in_delta(503.0, weather.data.CDD65F, 0.1) assert_in_delta(17.5, weather.data.HDD50F, 0.1) @@ -147,8 +168,11 @@ def test_cape_town [61.0, 61.9, 59.7, 54.5, 50.8, 46.7, 45.3, 47.7, 50.1, 50.6, 57.9, 59.6].each_with_index do |monthly_temp, i| assert_in_delta(monthly_temp, weather.data.MonthlyAvgDailyLowDrybulbs[i], 0.1) end - [59.2, 58.0, 57.9, 58.5, 60.7, 62.9, 64.9, 66.1, 66.2, 65.2, 63.3, 61.1].each_with_index do |monthly_temp, i| - assert_in_delta(monthly_temp, weather.data.GroundMonthlyTemps[i], 0.1) + [64.9, 66.1, 66.2, 65.2, 63.3, 61.1, 59.2, 58.0, 57.9, 58.5, 60.7, 62.9].each_with_index do |monthly_temp, i| + assert_in_delta(monthly_temp, weather.data.ShallowGroundMonthlyTemps[i], 0.1) + end + [72.0, 72.1, 71.0, 69.1, 66.9, 64.8, 63.5, 63.4, 64.3, 66.1, 68.4, 70.5].each_with_index do |monthly_temp, i| + assert_in_delta(monthly_temp, weather.data.MainsMonthlyTemps[i], 0.1) end # Check design @@ -182,6 +206,9 @@ def test_boulder_amy_with_leap_day # Check data assert_equal(1, weather.header.RecordsPerHour) assert_in_delta(49.4, weather.data.AnnualAvgDrybulb, 0.1) + assert_in_delta(49.4, weather.data.ShallowGroundAnnualTemp, 0.1) + assert_in_delta(55.2, weather.data.DeepGroundAnnualTemp, 0.1) + assert_in_delta(55.4, weather.data.MainsAnnualTemp, 0.1) assert_in_delta(2633.8, weather.data.CDD50F, 0.1) assert_in_delta(609.1, weather.data.CDD65F, 0.1) assert_in_delta(2863.0, weather.data.HDD50F, 0.1) @@ -197,7 +224,10 @@ def test_boulder_amy_with_leap_day assert_in_delta(monthly_temp, weather.data.MonthlyAvgDailyLowDrybulbs[i], 0.1) end [41.3, 37.9, 37.6, 39.2, 45.7, 52.2, 57.9, 61.4, 61.8, 58.8, 53.4, 47.1].each_with_index do |monthly_temp, i| - assert_in_delta(monthly_temp, weather.data.GroundMonthlyTemps[i], 0.1) + assert_in_delta(monthly_temp, weather.data.ShallowGroundMonthlyTemps[i], 0.1) + end + [46.5, 45.2, 46.6, 50.2, 55.2, 60.3, 64.0, 65.5, 64.4, 60.9, 56.0, 50.9].each_with_index do |monthly_temp, i| + assert_in_delta(monthly_temp, weather.data.MainsMonthlyTemps[i], 0.1) end # Check design diff --git a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/util.rb b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/util.rb index b0e34aa9..e4c97186 100644 --- a/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/util.rb +++ b/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/util.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true def get_ems_values(ems_objects, name) diff --git a/example_files/resources/hpxml-measures/README.md b/example_files/resources/hpxml-measures/README.md index 2b1b81ee..a908df52 100644 --- a/example_files/resources/hpxml-measures/README.md +++ b/example_files/resources/hpxml-measures/README.md @@ -38,6 +38,8 @@ The OpenStudio-HPXML workflow is used by a number of other residential projects, - [URBANopt](https://www.nrel.gov/buildings/urbanopt.html) - [Weatherization Assistant](https://weatherization.ornl.gov/softwaredescription/) (pending) +It is also used by several private-sector software tools. + ## License This project is available under a BSD-3-like license, which is a free, open-source, and permissive license. For more information, check out the [license file](https://github.com/NREL/OpenStudio-HPXML/blob/master/LICENSE.md). diff --git a/example_files/resources/hpxml-measures/Rakefile b/example_files/resources/hpxml-measures/Rakefile index a93e17a9..2cc4be74 100644 --- a/example_files/resources/hpxml-measures/Rakefile +++ b/example_files/resources/hpxml-measures/Rakefile @@ -20,9 +20,16 @@ Rake::TestTask.new('test_measures') do |t| t.verbose = true end -desc 'Run workflow tests' -Rake::TestTask.new('test_workflow') do |t| - t.test_files = Dir['workflow/tests/*.rb'] +desc 'Run workflow1 tests' +Rake::TestTask.new('test_workflow1') do |t| + t.test_files = Dir['workflow/tests/test_simulations1.rb'] + t.warning = false + t.verbose = true +end + +desc 'Run workflow2 tests' +Rake::TestTask.new('test_workflow2') do |t| + t.test_files = Dir['workflow/tests/*.rb'] - Dir['workflow/tests/test_simulations1.rb'] t.warning = false t.verbose = true end diff --git a/example_files/resources/hpxml-measures/ReportSimulationOutput/README.md b/example_files/resources/hpxml-measures/ReportSimulationOutput/README.md new file mode 100644 index 00000000..1b9c8bb2 --- /dev/null +++ b/example_files/resources/hpxml-measures/ReportSimulationOutput/README.md @@ -0,0 +1,787 @@ + +###### (Automatically generated documentation) + +# HPXML Simulation Output Report + +## Description +Reports simulation outputs for residential HPXML-based models. + +Processes EnergyPlus simulation outputs in order to generate an annual output file and an optional timeseries output file. + +## Arguments + + +**Output Format** + +The file format of the annual (and timeseries, if requested) outputs. If 'csv_dview' is selected, the timeseries CSV file will include header rows that facilitate opening the file in the DView application. + +- **Name:** ``output_format`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `csv`, `json`, `msgpack`, `csv_dview` + +
+ +**Generate Annual Output: Total Consumptions** + +Generates annual energy consumptions for the total building. + +- **Name:** ``include_annual_total_consumptions`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Annual Output: Fuel Consumptions** + +Generates annual energy consumptions for each fuel type. + +- **Name:** ``include_annual_fuel_consumptions`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Annual Output: End Use Consumptions** + +Generates annual energy consumptions for each end use. + +- **Name:** ``include_annual_end_use_consumptions`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Annual Output: System Use Consumptions** + +Generates annual energy consumptions for each end use of each HVAC and water heating system. + +- **Name:** ``include_annual_system_use_consumptions`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Annual Output: Emissions** + +Generates annual emissions. Requires the appropriate HPXML inputs to be specified. + +- **Name:** ``include_annual_emissions`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Annual Output: Emission Fuel Uses** + +Generates annual emissions for each fuel type. Requires the appropriate HPXML inputs to be specified. + +- **Name:** ``include_annual_emission_fuels`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Annual Output: Emission End Uses** + +Generates annual emissions for each end use. Requires the appropriate HPXML inputs to be specified. + +- **Name:** ``include_annual_emission_end_uses`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Annual Output: Total Loads** + +Generates annual heating, cooling, and hot water loads. + +- **Name:** ``include_annual_total_loads`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Annual Output: Unmet Hours** + +Generates annual unmet hours for heating and cooling. + +- **Name:** ``include_annual_unmet_hours`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Annual Output: Peak Fuels** + +Generates annual electricity peaks for summer/winter. + +- **Name:** ``include_annual_peak_fuels`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Annual Output: Peak Loads** + +Generates annual peak loads for heating/cooling. + +- **Name:** ``include_annual_peak_loads`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Annual Output: Component Loads** + +Generates annual heating and cooling loads disaggregated by component type. + +- **Name:** ``include_annual_component_loads`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Annual Output: Hot Water Uses** + +Generates annual hot water usages for each end use. + +- **Name:** ``include_annual_hot_water_uses`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Annual Output: HVAC Summary** + +Generates HVAC capacities, design temperatures, and design loads. + +- **Name:** ``include_annual_hvac_summary`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Annual Output: Resilience** + +Generates annual resilience outputs. + +- **Name:** ``include_annual_resilience`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Timeseries Reporting Frequency** + +The frequency at which to report timeseries output data. Using 'none' will disable timeseries outputs. + +- **Name:** ``timeseries_frequency`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `none`, `timestep`, `hourly`, `daily`, `monthly` + +
+ +**Generate Timeseries Output: Total Consumptions** + +Generates timeseries energy consumptions for the total building. + +- **Name:** ``include_timeseries_total_consumptions`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: Fuel Consumptions** + +Generates timeseries energy consumptions for each fuel type. + +- **Name:** ``include_timeseries_fuel_consumptions`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: End Use Consumptions** + +Generates timeseries energy consumptions for each end use. + +- **Name:** ``include_timeseries_end_use_consumptions`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: System Use Consumptions** + +Generates timeseries energy consumptions for each end use of each HVAC and water heating system. + +- **Name:** ``include_timeseries_system_use_consumptions`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: Emissions** + +Generates timeseries emissions. Requires the appropriate HPXML inputs to be specified. + +- **Name:** ``include_timeseries_emissions`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: Emission Fuel Uses** + +Generates timeseries emissions for each fuel type. Requires the appropriate HPXML inputs to be specified. + +- **Name:** ``include_timeseries_emission_fuels`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: Emission End Uses** + +Generates timeseries emissions for each end use. Requires the appropriate HPXML inputs to be specified. + +- **Name:** ``include_timeseries_emission_end_uses`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: Hot Water Uses** + +Generates timeseries hot water usages for each end use. + +- **Name:** ``include_timeseries_hot_water_uses`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: Total Loads** + +Generates timeseries heating, cooling, and hot water loads. + +- **Name:** ``include_timeseries_total_loads`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: Component Loads** + +Generates timeseries heating and cooling loads disaggregated by component type. + +- **Name:** ``include_timeseries_component_loads`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: Unmet Hours** + +Generates timeseries unmet hours for heating and cooling. + +- **Name:** ``include_timeseries_unmet_hours`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: Zone Temperatures** + +Generates timeseries temperatures for each thermal zone. + +- **Name:** ``include_timeseries_zone_temperatures`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: Airflows** + +Generates timeseries airflows. + +- **Name:** ``include_timeseries_airflows`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: Weather** + +Generates timeseries weather data. + +- **Name:** ``include_timeseries_weather`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: Resilience** + +Generates timeseries resilience outputs. + +- **Name:** ``include_timeseries_resilience`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: Timestamp Convention** + +Determines whether timeseries timestamps use the start-of-period or end-of-period convention. Doesn't apply if the output format is 'csv_dview'. + +- **Name:** ``timeseries_timestamp_convention`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `start`, `end` + +
+ +**Generate Timeseries Output: Number of Decimal Places** + +Allows overriding the default number of decimal places for timeseries output. Does not apply if output format is msgpack, where no rounding is performed because there is no file size penalty to storing full precision. + +- **Name:** ``timeseries_num_decimal_places`` +- **Type:** ``Integer`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: Add TimeDST Column** + +Optionally add, in addition to the default local standard Time column, a local clock TimeDST column. Requires that daylight saving time is enabled. + +- **Name:** ``add_timeseries_dst_column`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: Add TimeUTC Column** + +Optionally add, in addition to the default local standard Time column, a local clock TimeUTC column. If the time zone UTC offset is not provided in the HPXML file, the time zone in the EPW header will be used. + +- **Name:** ``add_timeseries_utc_column`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Timeseries Output: EnergyPlus Output Variables** + +Optionally generates timeseries EnergyPlus output variables. If multiple output variables are desired, use a comma-separated list. Do not include key values; by default all key values will be requested. Example: "Zone People Occupant Count, Zone People Total Heating Energy" + +- **Name:** ``user_output_variables`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Annual Output File Name** + +If not provided, defaults to 'results_annual.csv' (or 'results_annual.json' or 'results_annual.msgpack'). + +- **Name:** ``annual_output_file_name`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Timeseries Output File Name** + +If not provided, defaults to 'results_timeseries.csv' (or 'results_timeseries.json' or 'results_timeseries.msgpack'). + +- **Name:** ``timeseries_output_file_name`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ + + + + +## Outputs +All possible measure outputs are listed below. Actual outputs depend on measure argument values provided. + + +- ``energy_use_total_m_btu`` + +- ``energy_use_net_m_btu`` + +- ``fuel_use_electricity_total_m_btu`` + +- ``fuel_use_natural_gas_total_m_btu`` + +- ``fuel_use_fuel_oil_total_m_btu`` + +- ``fuel_use_propane_total_m_btu`` + +- ``fuel_use_wood_cord_total_m_btu`` + +- ``fuel_use_wood_pellets_total_m_btu`` + +- ``fuel_use_coal_total_m_btu`` + +- ``end_use_electricity_heating_m_btu`` + +- ``end_use_electricity_heating_fans_pumps_m_btu`` + +- ``end_use_electricity_heating_heat_pump_backup_m_btu`` + +- ``end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu`` + +- ``end_use_electricity_cooling_m_btu`` + +- ``end_use_electricity_cooling_fans_pumps_m_btu`` + +- ``end_use_electricity_hot_water_m_btu`` + +- ``end_use_electricity_hot_water_recirc_pump_m_btu`` + +- ``end_use_electricity_hot_water_solar_thermal_pump_m_btu`` + +- ``end_use_electricity_lighting_interior_m_btu`` + +- ``end_use_electricity_lighting_garage_m_btu`` + +- ``end_use_electricity_lighting_exterior_m_btu`` + +- ``end_use_electricity_mech_vent_m_btu`` + +- ``end_use_electricity_mech_vent_preheating_m_btu`` + +- ``end_use_electricity_mech_vent_precooling_m_btu`` + +- ``end_use_electricity_whole_house_fan_m_btu`` + +- ``end_use_electricity_refrigerator_m_btu`` + +- ``end_use_electricity_freezer_m_btu`` + +- ``end_use_electricity_dehumidifier_m_btu`` + +- ``end_use_electricity_dishwasher_m_btu`` + +- ``end_use_electricity_clothes_washer_m_btu`` + +- ``end_use_electricity_clothes_dryer_m_btu`` + +- ``end_use_electricity_range_oven_m_btu`` + +- ``end_use_electricity_ceiling_fan_m_btu`` + +- ``end_use_electricity_television_m_btu`` + +- ``end_use_electricity_plug_loads_m_btu`` + +- ``end_use_electricity_electric_vehicle_charging_m_btu`` + +- ``end_use_electricity_well_pump_m_btu`` + +- ``end_use_electricity_pool_heater_m_btu`` + +- ``end_use_electricity_pool_pump_m_btu`` + +- ``end_use_electricity_permanent_spa_heater_m_btu`` + +- ``end_use_electricity_permanent_spa_pump_m_btu`` + +- ``end_use_electricity_pv_m_btu`` + +- ``end_use_electricity_generator_m_btu`` + +- ``end_use_electricity_battery_m_btu`` + +- ``end_use_natural_gas_heating_m_btu`` + +- ``end_use_natural_gas_heating_heat_pump_backup_m_btu`` + +- ``end_use_natural_gas_hot_water_m_btu`` + +- ``end_use_natural_gas_clothes_dryer_m_btu`` + +- ``end_use_natural_gas_range_oven_m_btu`` + +- ``end_use_natural_gas_mech_vent_preheating_m_btu`` + +- ``end_use_natural_gas_pool_heater_m_btu`` + +- ``end_use_natural_gas_permanent_spa_heater_m_btu`` + +- ``end_use_natural_gas_grill_m_btu`` + +- ``end_use_natural_gas_lighting_m_btu`` + +- ``end_use_natural_gas_fireplace_m_btu`` + +- ``end_use_natural_gas_generator_m_btu`` + +- ``end_use_fuel_oil_heating_m_btu`` + +- ``end_use_fuel_oil_heating_heat_pump_backup_m_btu`` + +- ``end_use_fuel_oil_hot_water_m_btu`` + +- ``end_use_fuel_oil_clothes_dryer_m_btu`` + +- ``end_use_fuel_oil_range_oven_m_btu`` + +- ``end_use_fuel_oil_mech_vent_preheating_m_btu`` + +- ``end_use_fuel_oil_grill_m_btu`` + +- ``end_use_fuel_oil_lighting_m_btu`` + +- ``end_use_fuel_oil_fireplace_m_btu`` + +- ``end_use_fuel_oil_generator_m_btu`` + +- ``end_use_propane_heating_m_btu`` + +- ``end_use_propane_heating_heat_pump_backup_m_btu`` + +- ``end_use_propane_hot_water_m_btu`` + +- ``end_use_propane_clothes_dryer_m_btu`` + +- ``end_use_propane_range_oven_m_btu`` + +- ``end_use_propane_mech_vent_preheating_m_btu`` + +- ``end_use_propane_grill_m_btu`` + +- ``end_use_propane_lighting_m_btu`` + +- ``end_use_propane_fireplace_m_btu`` + +- ``end_use_propane_generator_m_btu`` + +- ``end_use_wood_cord_heating_m_btu`` + +- ``end_use_wood_cord_heating_heat_pump_backup_m_btu`` + +- ``end_use_wood_cord_hot_water_m_btu`` + +- ``end_use_wood_cord_clothes_dryer_m_btu`` + +- ``end_use_wood_cord_range_oven_m_btu`` + +- ``end_use_wood_cord_mech_vent_preheating_m_btu`` + +- ``end_use_wood_cord_grill_m_btu`` + +- ``end_use_wood_cord_lighting_m_btu`` + +- ``end_use_wood_cord_fireplace_m_btu`` + +- ``end_use_wood_cord_generator_m_btu`` + +- ``end_use_wood_pellets_heating_m_btu`` + +- ``end_use_wood_pellets_heating_heat_pump_backup_m_btu`` + +- ``end_use_wood_pellets_hot_water_m_btu`` + +- ``end_use_wood_pellets_clothes_dryer_m_btu`` + +- ``end_use_wood_pellets_range_oven_m_btu`` + +- ``end_use_wood_pellets_mech_vent_preheating_m_btu`` + +- ``end_use_wood_pellets_grill_m_btu`` + +- ``end_use_wood_pellets_lighting_m_btu`` + +- ``end_use_wood_pellets_fireplace_m_btu`` + +- ``end_use_wood_pellets_generator_m_btu`` + +- ``end_use_coal_heating_m_btu`` + +- ``end_use_coal_heating_heat_pump_backup_m_btu`` + +- ``end_use_coal_hot_water_m_btu`` + +- ``end_use_coal_clothes_dryer_m_btu`` + +- ``end_use_coal_range_oven_m_btu`` + +- ``end_use_coal_mech_vent_preheating_m_btu`` + +- ``end_use_coal_grill_m_btu`` + +- ``end_use_coal_lighting_m_btu`` + +- ``end_use_coal_fireplace_m_btu`` + +- ``end_use_coal_generator_m_btu`` + +- ``load_heating_delivered_m_btu`` + +- ``load_heating_heat_pump_backup_m_btu`` + +- ``load_cooling_delivered_m_btu`` + +- ``load_hot_water_delivered_m_btu`` + +- ``load_hot_water_tank_losses_m_btu`` + +- ``load_hot_water_desuperheater_m_btu`` + +- ``load_hot_water_solar_thermal_m_btu`` + +- ``unmet_hours_heating_hr`` + +- ``unmet_hours_cooling_hr`` + +- ``peak_electricity_winter_total_w`` + +- ``peak_electricity_summer_total_w`` + +- ``peak_electricity_annual_total_w`` + +- ``peak_load_heating_delivered_k_btu_hr`` + +- ``peak_load_cooling_delivered_k_btu_hr`` + +- ``component_load_heating_roofs_m_btu`` + +- ``component_load_heating_ceilings_m_btu`` + +- ``component_load_heating_walls_m_btu`` + +- ``component_load_heating_rim_joists_m_btu`` + +- ``component_load_heating_foundation_walls_m_btu`` + +- ``component_load_heating_doors_m_btu`` + +- ``component_load_heating_windows_conduction_m_btu`` + +- ``component_load_heating_windows_solar_m_btu`` + +- ``component_load_heating_skylights_conduction_m_btu`` + +- ``component_load_heating_skylights_solar_m_btu`` + +- ``component_load_heating_floors_m_btu`` + +- ``component_load_heating_slabs_m_btu`` + +- ``component_load_heating_internal_mass_m_btu`` + +- ``component_load_heating_infiltration_m_btu`` + +- ``component_load_heating_natural_ventilation_m_btu`` + +- ``component_load_heating_mechanical_ventilation_m_btu`` + +- ``component_load_heating_whole_house_fan_m_btu`` + +- ``component_load_heating_ducts_m_btu`` + +- ``component_load_heating_internal_gains_m_btu`` + +- ``component_load_heating_lighting_m_btu`` + +- ``component_load_cooling_roofs_m_btu`` + +- ``component_load_cooling_ceilings_m_btu`` + +- ``component_load_cooling_walls_m_btu`` + +- ``component_load_cooling_rim_joists_m_btu`` + +- ``component_load_cooling_foundation_walls_m_btu`` + +- ``component_load_cooling_doors_m_btu`` + +- ``component_load_cooling_windows_conduction_m_btu`` + +- ``component_load_cooling_windows_solar_m_btu`` + +- ``component_load_cooling_skylights_conduction_m_btu`` + +- ``component_load_cooling_skylights_solar_m_btu`` + +- ``component_load_cooling_floors_m_btu`` + +- ``component_load_cooling_slabs_m_btu`` + +- ``component_load_cooling_internal_mass_m_btu`` + +- ``component_load_cooling_infiltration_m_btu`` + +- ``component_load_cooling_natural_ventilation_m_btu`` + +- ``component_load_cooling_mechanical_ventilation_m_btu`` + +- ``component_load_cooling_whole_house_fan_m_btu`` + +- ``component_load_cooling_ducts_m_btu`` + +- ``component_load_cooling_internal_gains_m_btu`` + +- ``component_load_cooling_lighting_m_btu`` + +- ``hot_water_clothes_washer_gal`` + +- ``hot_water_dishwasher_gal`` + +- ``hot_water_fixtures_gal`` + +- ``hot_water_distribution_waste_gal`` + +- ``resilience_battery_hr`` + + diff --git a/example_files/resources/hpxml-measures/ReportSimulationOutput/README.md.erb b/example_files/resources/hpxml-measures/ReportSimulationOutput/README.md.erb new file mode 100644 index 00000000..0e9bc87d --- /dev/null +++ b/example_files/resources/hpxml-measures/ReportSimulationOutput/README.md.erb @@ -0,0 +1,41 @@ +<%#= README.md.erb is used to auto-generate README.md. %> +###### (Automatically generated documentation) + +# <%= name %> + +## Description +<%= description %> + +<%= modelerDescription %> + +## Arguments + +<% arguments.each do |argument| %> +**<%= argument[:display_name] %>** + +<%= argument[:description] %> + +- **Name:** ``<%= argument[:name] %>`` +- **Type:** ``<%= argument[:type] %>`` +<% if argument[:units] %> +- **Units:** ``<%= argument[:units] %>`` +<% end %> +- **Required:** ``<%= argument[:required] %>`` +<% if argument[:type] == "Choice" %> +- **Choices:** `<%= argument[:choice_values].join("`, `") %>` +<% end %> +
+<% end %> + +<% if arguments.size == 0 %> +<%= "This measure does not have any user arguments" %> +<% end %> + +<% if outputs.size > 0 %> +## Outputs +All possible measure outputs are listed below. Actual outputs depend on measure argument values provided. + +<% outputs.each do |output| %> +- ``<%= output[:display_name] %>`` +<% end %> +<% end %> diff --git a/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.rb b/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.rb index 3370c7a0..3d7088fd 100644 --- a/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.rb +++ b/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true # see the URL below for information on how to write OpenStudio measures @@ -127,6 +132,12 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDefaultValue(true) args << arg + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('include_annual_resilience', false) + arg.setDisplayName('Generate Annual Output: Resilience') + arg.setDescription('Generates annual resilience outputs.') + arg.setDefaultValue(true) + args << arg + timeseries_frequency_chs = OpenStudio::StringVector.new timeseries_frequency_chs << 'none' timeseries_frequency_chs << 'timestep' @@ -223,6 +234,12 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDefaultValue(false) args << arg + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('include_timeseries_resilience', false) + arg.setDisplayName('Generate Timeseries Output: Resilience') + arg.setDescription('Generates timeseries resilience outputs.') + arg.setDefaultValue(false) + args << arg + timestamp_chs = OpenStudio::StringVector.new timestamp_chs << 'start' timestamp_chs << 'end' @@ -267,6 +284,31 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument return args end + # define the outputs that the measure will create + def outputs + result = OpenStudio::Measure::OSOutputVector.new + + setup_outputs(true) + + [@totals, + @fuels, + @end_uses, + @loads, + @unmet_hours, + @peak_fuels, + @peak_loads, + @component_loads, + @hot_water_uses, + @resilience].each do |outputs| + outputs.values.each do |obj| + output_name = OpenStudio::toUnderscoreCase("#{obj.name} #{obj.annual_units}") + result << OpenStudio::Measure::OSOutput.makeDoubleOutput(output_name.chomp('_')) + end + end + + return result + end + def get_arguments(runner, arguments, user_arguments) args = get_argument_values(runner, arguments, user_arguments) args.each do |k, val| @@ -310,16 +352,11 @@ def energyPlusOutputRequests(runner, user_arguments) return result end - unmet_hours_program = @model.getModelObjectByName(Constants.ObjectNameUnmetHoursProgram.gsub(' ', '_')).get.to_EnergyManagementSystemProgram.get - total_loads_program = @model.getModelObjectByName(Constants.ObjectNameTotalLoadsProgram.gsub(' ', '_')).get.to_EnergyManagementSystemProgram.get - comp_loads_program = @model.getModelObjectByName(Constants.ObjectNameComponentLoadsProgram.gsub(' ', '_')) - if comp_loads_program.is_initialized - comp_loads_program = comp_loads_program.get.to_EnergyManagementSystemProgram.get - else - comp_loads_program = nil - end - has_heating = @model.getBuilding.additionalProperties.getFeatureAsBoolean('has_heating').get - has_cooling = @model.getBuilding.additionalProperties.getFeatureAsBoolean('has_cooling').get + unmet_hours_program = @model.getEnergyManagementSystemPrograms.find { |p| p.additionalProperties.getFeatureAsString('ObjectType').to_s == Constants.ObjectNameUnmetHoursProgram } + total_loads_program = @model.getEnergyManagementSystemPrograms.find { |p| p.additionalProperties.getFeatureAsString('ObjectType').to_s == Constants.ObjectNameTotalLoadsProgram } + comp_loads_program = @model.getEnergyManagementSystemPrograms.find { |p| p.additionalProperties.getFeatureAsString('ObjectType').to_s == Constants.ObjectNameComponentLoadsProgram } + heated_zones = eval(@model.getBuilding.additionalProperties.getFeatureAsString('heated_zones').get) + cooled_zones = eval(@model.getBuilding.additionalProperties.getFeatureAsString('cooled_zones').get) args = get_arguments(runner, arguments(model), user_arguments) @@ -353,6 +390,22 @@ def energyPlusOutputRequests(runner, user_arguments) if args[:include_timeseries_fuel_consumptions] result << OpenStudio::IdfObject.load("Output:Meter,ElectricStorage:ElectricityProduced,#{args[:timeseries_frequency]};").get end + + # Resilience + if args[:include_annual_resilience] || args[:include_timeseries_resilience] + resilience_frequency = 'timestep' + if args[:timeseries_frequency] != 'timestep' + resilience_frequency = 'hourly' + end + result << OpenStudio::IdfObject.load("Output:Meter,Electricity:Facility,#{resilience_frequency};").get + result << OpenStudio::IdfObject.load("Output:Meter,ElectricityProduced:Facility,#{resilience_frequency};").get + result << OpenStudio::IdfObject.load("Output:Meter,ElectricStorage:ElectricityProduced,#{resilience_frequency};").get + @resilience.values.each do |resilience| + resilience.variables.each do |_sys_id, varkey, var| + result << OpenStudio::IdfObject.load("Output:Variable,#{varkey},#{var},#{resilience_frequency};").get + end + end + end end # End Use/Hot Water Use/Ideal Load outputs @@ -371,6 +424,18 @@ def energyPlusOutputRequests(runner, user_arguments) result << OpenStudio::IdfObject.load("Output:Variable,#{varkey},#{var},hourly;").get end end + use.meters.each do |_sys_id, _varkey, var| + result << OpenStudio::IdfObject.load("Output:Meter,#{var},runperiod;").get + if include_ts + result << OpenStudio::IdfObject.load("Output:Meter,#{var},#{args[:timeseries_frequency]};").get + end + next unless use.is_a?(EndUse) + + fuel_type, _end_use = key + if fuel_type == FT::Elec && args[:include_hourly_electric_end_use_consumptions] + result << OpenStudio::IdfObject.load("Output:Meter,#{var},hourly;").get + end + end end end @@ -436,26 +501,27 @@ def energyPlusOutputRequests(runner, user_arguments) HPXML::LocationExteriorWall, HPXML::LocationUnderSlab] keys.each do |key| - next if @model.getScheduleConstants.select { |o| o.name.to_s == key }.size == 0 + schedules = @model.getScheduleConstants.select { |sch| sch.additionalProperties.getFeatureAsString('ObjectType').to_s == key } + next if schedules.empty? - result << OpenStudio::IdfObject.load("Output:Variable,#{key},Schedule Value,#{args[:timeseries_frequency]};").get + result << OpenStudio::IdfObject.load("Output:Variable,#{schedules[0].name.to_s.upcase},Schedule Value,#{args[:timeseries_frequency]};").get end # Also report thermostat setpoints - if has_heating - result << OpenStudio::IdfObject.load("Output:Variable,#{HPXML::LocationLivingSpace.upcase},Zone Thermostat Heating Setpoint Temperature,#{args[:timeseries_frequency]};").get + heated_zones.each do |heated_zone| + result << OpenStudio::IdfObject.load("Output:Variable,#{heated_zone.upcase},Zone Thermostat Heating Setpoint Temperature,#{args[:timeseries_frequency]};").get end - if has_cooling - result << OpenStudio::IdfObject.load("Output:Variable,#{HPXML::LocationLivingSpace.upcase},Zone Thermostat Cooling Setpoint Temperature,#{args[:timeseries_frequency]};").get + cooled_zones.each do |cooled_zone| + result << OpenStudio::IdfObject.load("Output:Variable,#{cooled_zone.upcase},Zone Thermostat Cooling Setpoint Temperature,#{args[:timeseries_frequency]};").get end end # Airflow outputs (timeseries only) if args[:include_timeseries_airflows] - @airflows.values.each do |airflow| - ems_program = @model.getModelObjectByName(airflow.ems_program.gsub(' ', '_')).get.to_EnergyManagementSystemProgram.get - airflow.ems_variables.each do |ems_variable| - result << OpenStudio::IdfObject.load("EnergyManagementSystem:OutputVariable,#{ems_variable}_timeseries_outvar,#{ems_variable},Averaged,ZoneTimestep,#{ems_program.name},m^3/s;").get - result << OpenStudio::IdfObject.load("Output:Variable,*,#{ems_variable}_timeseries_outvar,#{args[:timeseries_frequency]};").get + @airflows.each do |_airflow_type, airflow| + ems_programs = @model.getEnergyManagementSystemPrograms.select { |p| p.additionalProperties.getFeatureAsString('ObjectType').to_s == airflow.ems_program } + ems_programs.each_with_index do |_ems_program, i| + unit_prefix = ems_programs.size > 1 ? "unit#{i + 1}_" : '' + result << OpenStudio::IdfObject.load("Output:Variable,*,#{unit_prefix}#{airflow.ems_variable}_timeseries_outvar,#{args[:timeseries_frequency]};").get end end end @@ -500,11 +566,13 @@ def run(runner, user_arguments) args[:use_dview_format] = false end - output_dir = File.dirname(runner.lastEpwFilePath.get.to_s) - hpxml_defaults_path = @model.getBuilding.additionalProperties.getFeatureAsString('hpxml_defaults_path').get + output_dir = File.dirname(hpxml_defaults_path) building_id = @model.getBuilding.additionalProperties.getFeatureAsString('building_id').get - @hpxml = HPXML.new(hpxml_path: hpxml_defaults_path, building_id: building_id) + hpxml = HPXML.new(hpxml_path: hpxml_defaults_path, building_id: building_id) + + @hpxml_header = hpxml.header + @hpxml_bldgs = hpxml.buildings setup_outputs(false, args[:user_output_variables]) @@ -518,8 +586,11 @@ def run(runner, user_arguments) if File.exist? msgpack_timeseries_path @msgpackDataTimeseries = MessagePack.unpack(File.read(msgpack_timeseries_path, mode: 'rb')) end - if not @emissions.empty? - @msgpackDataHourly = MessagePack.unpack(File.read(File.join(output_dir, 'eplusout_hourly.msgpack'), mode: 'rb')) + if args[:timeseries_frequency] != 'hourly' + msgpack_hourly_path = File.join(output_dir, 'eplusout_hourly.msgpack') + if File.exist? msgpack_hourly_path + @msgpackDataHourly = MessagePack.unpack(File.read(msgpack_hourly_path, mode: 'rb')) + end end # Set paths @@ -535,11 +606,11 @@ def run(runner, user_arguments) end if args[:timeseries_frequency] != 'none' - @timestamps, timestamps_dst, timestamps_utc = get_timestamps(@msgpackDataTimeseries, @hpxml, args) + @timestamps, timestamps_dst, timestamps_utc = get_timestamps(@msgpackDataTimeseries, @hpxml_header, @hpxml_bldgs, args) end # Retrieve outputs - outputs = get_outputs(runner, args) + outputs = get_outputs(runner, args, building_id) if not check_for_errors(runner, outputs) return false @@ -552,24 +623,24 @@ def run(runner, user_arguments) return true end - def get_timestamps(msgpackData, hpxml, args) + def get_timestamps(msgpackData, hpxml_header, hpxml_bldgs, args) return if msgpackData.nil? ep_timestamps = msgpackData['Rows'].map { |r| r.keys[0] } if args[:add_timeseries_dst_column] || args[:use_dview_format] - dst_start_ts = Time.utc(hpxml.header.sim_calendar_year, hpxml.header.dst_begin_month, hpxml.header.dst_begin_day, 2) - dst_end_ts = Time.utc(hpxml.header.sim_calendar_year, hpxml.header.dst_end_month, hpxml.header.dst_end_day, 1) + dst_start_ts = Time.utc(hpxml_header.sim_calendar_year, hpxml_bldgs[0].dst_begin_month, hpxml_bldgs[0].dst_begin_day, 2) + dst_end_ts = Time.utc(hpxml_header.sim_calendar_year, hpxml_bldgs[0].dst_end_month, hpxml_bldgs[0].dst_end_day, 1) end if args[:add_timeseries_utc_column] - utc_offset = hpxml.header.time_zone_utc_offset + utc_offset = hpxml_bldgs[0].time_zone_utc_offset utc_offset *= 3600 # seconds end timestamps = [] timestamps_dst = [] if args[:add_timeseries_dst_column] || args[:use_dview_format] timestamps_utc = [] if args[:add_timeseries_utc_column] - year = hpxml.header.sim_calendar_year + year = hpxml_header.sim_calendar_year ep_timestamps.each do |ep_timestamp| month_day, hour_minute = ep_timestamp.split(' ') month, day = month_day.split('/').map(&:to_i) @@ -578,7 +649,7 @@ def get_timestamps(msgpackData, hpxml, args) # Convert from EnergyPlus default (end-of-timestep) to start-of-timestep convention if args[:timeseries_timestamp_convention] == 'start' if args[:timeseries_frequency] == 'timestep' - ts_offset = hpxml.header.timestep * 60 # seconds + ts_offset = hpxml_header.timestep * 60 # seconds elsif args[:timeseries_frequency] == 'hourly' ts_offset = 60 * 60 # seconds elsif args[:timeseries_frequency] == 'daily' @@ -613,7 +684,37 @@ def get_timestamps(msgpackData, hpxml, args) return timestamps, timestamps_dst, timestamps_utc end - def get_outputs(runner, args) + def get_n_hours_per_period(timeseries_frequency, sim_start_day_of_year, sim_end_day_of_year, year) + if timeseries_frequency == 'daily' + n_hours_per_period = [24] * (sim_end_day_of_year - sim_start_day_of_year + 1) + elsif timeseries_frequency == 'monthly' + n_days_per_month = Constants.NumDaysInMonths(year) + n_days_per_period = n_days_per_month[@hpxml_header.sim_begin_month - 1..@hpxml_header.sim_end_month - 1] + n_days_per_period[0] -= @hpxml_header.sim_begin_day - 1 + n_days_per_period[-1] = @hpxml_header.sim_end_day + n_hours_per_period = n_days_per_period.map { |x| x * 24 } + end + return n_hours_per_period + end + + def rollup_timeseries_output_to_daily_or_monthly(timeseries_output, timeseries_frequency, average = false) + year = @hpxml_header.sim_calendar_year + sim_start_day_of_year, sim_end_day_of_year, _sim_start_hour, _sim_end_hour = get_sim_times_of_year(year) + n_hours_per_period = get_n_hours_per_period(timeseries_frequency, sim_start_day_of_year, sim_end_day_of_year, year) + fail 'Unexpected failure for n_hours_per_period calculations.' if n_hours_per_period.sum != timeseries_output.size + + ts_output = [] + start_hour = 0 + n_hours_per_period.each do |n_hours| + timeseries = timeseries_output[start_hour..start_hour + n_hours - 1].sum() + timeseries /= timeseries_output[start_hour..start_hour + n_hours - 1].size if average + ts_output << timeseries + start_hour += n_hours + end + return ts_output + end + + def get_outputs(runner, args, building_id) outputs = {} args = setup_timeseries_includes(@emissions, args) @@ -643,6 +744,8 @@ def get_outputs(runner, args) months = ['June', 'July', 'August'] elsif (season == PFT::Winter && is_northern_hemisphere) || (season == PFT::Summer && is_southern_hemisphere) months = ['December', 'January', 'February'] + elsif season == PFT::Annual + months = ['Maximum of Months'] end for month in months val = get_tabular_data_value(peak_fuel.report.upcase, 'Meter', 'Custom Monthly Report', [month], 'ELECTRICITY:FACILITY {Maximum}', peak_fuel.annual_units) @@ -710,6 +813,29 @@ def get_outputs(runner, args) end_use.hourly_output_by_system[sys_id] = get_report_variable_data_timeseries(keys, vars, UnitConversions.convert(1.0, 'J', end_use.timeseries_units), 0, 'hourly', is_negative: (end_use.is_negative || end_use.is_storage)) end end + end_use.meters.map { |v| v[0] }.uniq.each do |sys_id| + vars = end_use.meters.select { |v| v[0] == sys_id }.map { |v| v[2] } + + end_use.annual_output_by_system[sys_id] = 0.0 if end_use.annual_output_by_system[sys_id].nil? + end_use.annual_output_by_system[sys_id] += get_report_meter_data_annual(vars, UnitConversions.convert(1.0, 'J', end_use.annual_units)) + + if args[:include_timeseries_end_use_consumptions] + values = get_report_meter_data_timeseries(vars, UnitConversions.convert(1.0, 'J', end_use.timeseries_units), 0, args[:timeseries_frequency]) + if end_use.timeseries_output_by_system[sys_id].nil? + end_use.timeseries_output_by_system[sys_id] = values + else + end_use.timeseries_output_by_system[sys_id] = end_use.timeseries_output_by_system[sys_id].zip(values).map { |x, y| x + y } + end + end + next unless args[:include_hourly_electric_end_use_consumptions] && fuel_type == FT::Elec + + values = get_report_meter_data_timeseries(vars, UnitConversions.convert(1.0, 'J', end_use.timeseries_units), 0, 'hourly') + if end_use.hourly_output_by_system[sys_id].nil? + end_use.hourly_output_by_system[sys_id] = values + else + end_use.hourly_output_by_system[sys_id] = end_use.hourly_output_by_system[sys_id].zip(values).map { |x, y| x + y } + end + end end # Disaggregate 8760 GSHP shared pump energy into heating vs cooling by @@ -746,57 +872,58 @@ def get_outputs(runner, args) end end - # Apply Heating/Cooling DSEs - (@hpxml.heating_systems + @hpxml.heat_pumps).each do |htg_system| - next unless (htg_system.is_a?(HPXML::HeatingSystem) && htg_system.is_heat_pump_backup_system) || htg_system.fraction_heat_load_served > 0 - next if htg_system.distribution_system_idref.nil? - next unless htg_system.distribution_system.distribution_system_type == HPXML::HVACDistributionTypeDSE - next if htg_system.distribution_system.annual_heating_dse.nil? + @hpxml_bldgs.each do |hpxml_bldg| + # Apply Heating/Cooling DSEs + (hpxml_bldg.heating_systems + hpxml_bldg.heat_pumps).each do |htg_system| + next unless (htg_system.is_a?(HPXML::HeatingSystem) && htg_system.is_heat_pump_backup_system) || htg_system.fraction_heat_load_served > 0 + next if htg_system.distribution_system_idref.nil? + next unless htg_system.distribution_system.distribution_system_type == HPXML::HVACDistributionTypeDSE + next if htg_system.distribution_system.annual_heating_dse.nil? - dse = htg_system.distribution_system.annual_heating_dse - @fuels.each do |fuel_type, fuel| - [EUT::Heating, EUT::HeatingHeatPumpBackup, EUT::HeatingFanPump, EUT::HeatingHeatPumpBackupFanPump].each do |end_use_type| - end_use = @end_uses[[fuel_type, end_use_type]] - next if end_use.nil? + dse = htg_system.distribution_system.annual_heating_dse + @fuels.each do |fuel_type, fuel| + [EUT::Heating, EUT::HeatingHeatPumpBackup, EUT::HeatingFanPump, EUT::HeatingHeatPumpBackupFanPump].each do |end_use_type| + end_use = @end_uses[[fuel_type, end_use_type]] + next if end_use.nil? + next if end_use.annual_output_by_system[htg_system.id].nil? - if not end_use.annual_output_by_system[htg_system.id].nil? apply_multiplier_to_output(end_use, fuel, htg_system.id, 1.0 / dse) end end end - end - (@hpxml.cooling_systems + @hpxml.heat_pumps).each do |clg_system| - next unless clg_system.fraction_cool_load_served > 0 - next if clg_system.distribution_system_idref.nil? - next unless clg_system.distribution_system.distribution_system_type == HPXML::HVACDistributionTypeDSE - next if clg_system.distribution_system.annual_cooling_dse.nil? + (hpxml_bldg.cooling_systems + hpxml_bldg.heat_pumps).each do |clg_system| + next unless clg_system.fraction_cool_load_served > 0 + next if clg_system.distribution_system_idref.nil? + next unless clg_system.distribution_system.distribution_system_type == HPXML::HVACDistributionTypeDSE + next if clg_system.distribution_system.annual_cooling_dse.nil? - dse = clg_system.distribution_system.annual_cooling_dse - @fuels.each do |fuel_type, fuel| - [EUT::Cooling, EUT::CoolingFanPump].each do |end_use_type| - end_use = @end_uses[[fuel_type, end_use_type]] - next if end_use.nil? - next if end_use.annual_output_by_system[clg_system.id].nil? + dse = clg_system.distribution_system.annual_cooling_dse + @fuels.each do |fuel_type, fuel| + [EUT::Cooling, EUT::CoolingFanPump].each do |end_use_type| + end_use = @end_uses[[fuel_type, end_use_type]] + next if end_use.nil? + next if end_use.annual_output_by_system[clg_system.id].nil? - apply_multiplier_to_output(end_use, fuel, clg_system.id, 1.0 / dse) + apply_multiplier_to_output(end_use, fuel, clg_system.id, 1.0 / dse) + end end end - end - # Apply solar fraction to load for simple solar water heating systems - @hpxml.solar_thermal_systems.each do |solar_system| - next if solar_system.solar_fraction.nil? + # Apply solar fraction to load for simple solar water heating systems + hpxml_bldg.solar_thermal_systems.each do |solar_system| + next if solar_system.solar_fraction.nil? - @loads[LT::HotWaterSolarThermal].annual_output = 0.0 if @loads[LT::HotWaterSolarThermal].annual_output.nil? - @loads[LT::HotWaterSolarThermal].timeseries_output = [0.0] * @timestamps.size if @loads[LT::HotWaterSolarThermal].timeseries_output.nil? + @loads[LT::HotWaterSolarThermal].annual_output = 0.0 if @loads[LT::HotWaterSolarThermal].annual_output.nil? + @loads[LT::HotWaterSolarThermal].timeseries_output = [0.0] * @timestamps.size if @loads[LT::HotWaterSolarThermal].timeseries_output.nil? - if not solar_system.water_heating_system.nil? - dhw_ids = [solar_system.water_heating_system.id] - else # Apply to all water heating systems - dhw_ids = @hpxml.water_heating_systems.map { |dhw| dhw.id } - end - dhw_ids.each do |dhw_id| - apply_multiplier_to_output(@loads[LT::HotWaterDelivered], @loads[LT::HotWaterSolarThermal], dhw_id, 1.0 / (1.0 - solar_system.solar_fraction)) + if not solar_system.water_heating_system.nil? + dhw_ids = [solar_system.water_heating_system.id] + else # Apply to all water heating systems + dhw_ids = hpxml_bldg.water_heating_systems.map { |dhw| dhw.id } + end + dhw_ids.each do |dhw_id| + apply_multiplier_to_output(@loads[LT::HotWaterDelivered], @loads[LT::HotWaterSolarThermal], dhw_id, 1.0 / (1.0 - solar_system.solar_fraction)) + end end end @@ -872,46 +999,158 @@ def get_outputs(runner, args) @totals[TE::Net].timeseries_output = @totals[TE::Total].timeseries_output.zip(outputs[:elec_prod_timeseries]).map { |x, y| x + y * unit_conv } end + # Resilience + @resilience.each do |key, resilience| + next unless key == RT::Battery + next unless (args[:include_annual_resilience] || args[:include_timeseries_resilience]) + next if resilience.variables.empty? + + batteries = [] + @hpxml_bldgs.each do |hpxml_bldg| + hpxml_bldg.batteries.each do |battery| + batteries << battery + end + end + next if batteries.empty? + + if batteries.size > 1 + # When modeling individual dwelling units, OS-HPXML only allows a single battery + # When modeling whole SFA/MF buildings, OS-HPXML does not currently allow batteries + fail 'Unexpected error.' + end + + battery = batteries[0] + + elcd = @model.getElectricLoadCenterDistributions.find { |elcd| elcd.additionalProperties.getFeatureAsString('HPXML_ID').to_s == battery.id } + next if elcd.nil? + + resilience_frequency = 'timestep' + ts_per_hr = @model.getTimestep.numberOfTimestepsPerHour + if args[:timeseries_frequency] != 'timestep' + resilience_frequency = 'hourly' + ts_per_hr = 1 + end + + vars = ['Electric Storage Charge Fraction'] + keys = resilience.variables.select { |v| v[2] == vars[0] }.map { |v| v[1] } + batt_soc = get_report_variable_data_timeseries(keys, vars, 1, 0, resilience_frequency) + + vars = ['Other Equipment Electricity Energy'] + keys = resilience.variables.select { |v| v[2] == vars[0] }.map { |v| v[1] } + batt_loss = get_report_variable_data_timeseries(keys, vars, UnitConversions.convert(1.0, 'J', 'kWh'), 0, resilience_frequency) + + min_soc = elcd.minimumStorageStateofChargeFraction + batt_kw = battery.rated_power_output / 1000.0 + batt_roundtrip_eff = battery.round_trip_efficiency + batt_kwh = Battery.get_usable_capacity_kWh(battery) + + batt_soc_kwh = batt_soc.map { |soc| soc - min_soc }.map { |soc| soc * batt_kwh } + elec_prod = get_report_meter_data_timeseries(['ElectricityProduced:Facility'], UnitConversions.convert(1.0, 'J', 'kWh'), 0, resilience_frequency) + elec_stor = get_report_meter_data_timeseries(['ElectricStorage:ElectricityProduced'], UnitConversions.convert(1.0, 'J', 'kWh'), 0, resilience_frequency) + elec_prod = elec_prod.zip(elec_stor).map { |x, y| -1 * (x - y) } + elec = get_report_meter_data_timeseries(['Electricity:Facility'], UnitConversions.convert(1.0, 'J', 'kWh'), 0, resilience_frequency) + crit_load = elec.zip(elec_prod, batt_loss).map { |x, y, z| x + y + z } + + resilience_timeseries = [] + n_timesteps = crit_load.size + (0...n_timesteps).each do |init_time_step| + resilience_timeseries << get_resilience_timeseries(init_time_step, batt_kwh, batt_kw, batt_soc_kwh[init_time_step], crit_load, batt_roundtrip_eff, n_timesteps, ts_per_hr) + end + + resilience.annual_output = resilience_timeseries.sum(0.0) / resilience_timeseries.size + + next unless args[:include_timeseries_resilience] + + resilience.timeseries_output = resilience_timeseries + + # Aggregate up from hourly to the desired timeseries frequency + if ['daily', 'monthly'].include? args[:timeseries_frequency] + resilience.timeseries_output = rollup_timeseries_output_to_daily_or_monthly(resilience.timeseries_output, args[:timeseries_frequency], true) + end + end + # Zone temperatures if args[:include_timeseries_zone_temperatures] + def sanitize_name(name) + return name.gsub('_', ' ').split.map(&:capitalize).join(' ') + end + + # Zone temperatures zone_names = [] - scheduled_temperature_names = [] @model.getThermalZones.each do |zone| - if zone.floorArea > 1 - zone_names << zone.name.to_s.upcase - end - end - @model.getScheduleConstants.each do |schedule| - next unless [HPXML::LocationOtherHeatedSpace, HPXML::LocationOtherMultifamilyBufferSpace, HPXML::LocationOtherNonFreezingSpace, - HPXML::LocationOtherHousingUnit, HPXML::LocationExteriorWall, HPXML::LocationUnderSlab].include? schedule.name.to_s + next if zone.floorArea <= 1 - scheduled_temperature_names << schedule.name.to_s.upcase + zone_names << zone.name.to_s.upcase end zone_names.sort.each do |zone_name| @zone_temps[zone_name] = ZoneTemp.new - @zone_temps[zone_name].name = "Temperature: #{zone_name.split.map(&:capitalize).join(' ')}" + @zone_temps[zone_name].name = "Temperature: #{sanitize_name(zone_name)}" @zone_temps[zone_name].timeseries_units = 'F' @zone_temps[zone_name].timeseries_output = get_report_variable_data_timeseries([zone_name], ['Zone Mean Air Temperature'], 9.0 / 5.0, 32.0, args[:timeseries_frequency]) end - scheduled_temperature_names.sort.each do |scheduled_temperature_name| - @zone_temps[scheduled_temperature_name] = ZoneTemp.new - @zone_temps[scheduled_temperature_name].name = "Temperature: #{scheduled_temperature_name.split.map(&:capitalize).join(' ')}" - @zone_temps[scheduled_temperature_name].timeseries_units = 'F' - @zone_temps[scheduled_temperature_name].timeseries_output = get_report_variable_data_timeseries([scheduled_temperature_name], ['Schedule Value'], 9.0 / 5.0, 32.0, args[:timeseries_frequency]) + + # Scheduled temperatures + [HPXML::LocationOtherHeatedSpace, HPXML::LocationOtherMultifamilyBufferSpace, + HPXML::LocationOtherNonFreezingSpace, HPXML::LocationOtherHousingUnit, + HPXML::LocationExteriorWall, HPXML::LocationUnderSlab].each do |sch_location| + @model.getScheduleConstants.each do |schedule| + next unless schedule.additionalProperties.getFeatureAsString('ObjectType').to_s == sch_location + + sch_name = schedule.name.to_s.upcase + @zone_temps[sch_name] = ZoneTemp.new + @zone_temps[sch_name].name = "Temperature: #{sanitize_name(sch_name)}" + @zone_temps[sch_name].timeseries_units = 'F' + @zone_temps[sch_name].timeseries_output = get_report_variable_data_timeseries([sch_name], ['Schedule Value'], 9.0 / 5.0, 32.0, args[:timeseries_frequency]) + + break + end end - { 'Heating Setpoint' => 'Zone Thermostat Heating Setpoint Temperature', - 'Cooling Setpoint' => 'Zone Thermostat Cooling Setpoint Temperature' }.each do |sp_name, sp_var| - @zone_temps[sp_name] = ZoneTemp.new - @zone_temps[sp_name].name = "Temperature: #{sp_name}" - @zone_temps[sp_name].timeseries_units = 'F' - @zone_temps[sp_name].timeseries_output = get_report_variable_data_timeseries([HPXML::LocationLivingSpace.upcase], [sp_var], 9.0 / 5.0, 32.0, args[:timeseries_frequency]) + + # Heating Setpoints + heated_zones = eval(@model.getBuilding.additionalProperties.getFeatureAsString('heated_zones').get) + heated_zones.each do |heated_zone| + var_name = 'Temperature: Heating Setpoint' + if building_id == 'ALL' + unit_num = @model.getThermalZones.find { |z| z.name.to_s == heated_zone }.spaces[0].buildingUnit.get.additionalProperties.getFeatureAsInteger('unit_num').get + var_name = "Temperature: Unit#{unit_num} Heating Setpoint" + end + @zone_temps["#{heated_zone} Heating Setpoint"] = ZoneTemp.new + @zone_temps["#{heated_zone} Heating Setpoint"].name = var_name + @zone_temps["#{heated_zone} Heating Setpoint"].timeseries_units = 'F' + @zone_temps["#{heated_zone} Heating Setpoint"].timeseries_output = get_report_variable_data_timeseries([heated_zone.upcase], ['Zone Thermostat Heating Setpoint Temperature'], 9.0 / 5.0, 32.0, args[:timeseries_frequency]) + end + + # Cooling Setpoints + cooled_zones = eval(@model.getBuilding.additionalProperties.getFeatureAsString('cooled_zones').get) + cooled_zones.each do |cooled_zone| + var_name = 'Temperature: Cooling Setpoint' + if building_id == 'ALL' + unit_num = @model.getThermalZones.find { |z| z.name.to_s == cooled_zone }.spaces[0].buildingUnit.get.additionalProperties.getFeatureAsInteger('unit_num').get + var_name = "Temperature: Unit#{unit_num} Cooling Setpoint" + end + @zone_temps["#{cooled_zone} Cooling Setpoint"] = ZoneTemp.new + @zone_temps["#{cooled_zone} Cooling Setpoint"].name = var_name + @zone_temps["#{cooled_zone} Cooling Setpoint"].timeseries_units = 'F' + @zone_temps["#{cooled_zone} Cooling Setpoint"].timeseries_output = get_report_variable_data_timeseries([cooled_zone.upcase], ['Zone Thermostat Cooling Setpoint Temperature'], 9.0 / 5.0, 32.0, args[:timeseries_frequency]) end end # Airflows if args[:include_timeseries_airflows] @airflows.each do |_airflow_type, airflow| - airflow.timeseries_output = get_report_variable_data_timeseries(['EMS'], airflow.ems_variables.map { |var| "#{var}_timeseries_outvar" }, UnitConversions.convert(1.0, 'm^3/s', 'cfm'), 0, args[:timeseries_frequency]) + # FUTURE: This works but may incur a performance penalty. + # Switch to creating a single EMS program that sums the airflows from + # the individual dwelling units and then just grab those outputs here. + for i in 0..@hpxml_bldgs.size - 1 + unit_prefix = @hpxml_bldgs.size > 1 ? "unit#{i + 1}_" : '' + unit_multiplier = @hpxml_bldgs[i].building_construction.number_of_units + values = get_report_variable_data_timeseries(['EMS'], ["#{unit_prefix}#{airflow.ems_variable}_timeseries_outvar"], UnitConversions.convert(unit_multiplier, 'm^3/s', 'cfm'), 0, args[:timeseries_frequency]) + if airflow.timeseries_output.empty? + airflow.timeseries_output = values + else + airflow.timeseries_output = airflow.timeseries_output.zip(values).map { |x, y| x + y } + end + end end end @@ -946,7 +1185,7 @@ def get_outputs(runner, args) kwh_to_mwh = UnitConversions.convert(1.0, 'kWh', 'MWh') # Calculate for each scenario - @hpxml.header.emissions_scenarios.each do |scenario| + @hpxml_header.emissions_scenarios.each do |scenario| key = [scenario.emissions_type, scenario.name] # Get hourly electricity factors @@ -1000,7 +1239,7 @@ def get_outputs(runner, args) # Calculate timeseries emissions for end use - if args[:timeseries_frequency] == 'timestep' && @hpxml.header.timestep != 60 + if args[:timeseries_frequency] == 'timestep' && @hpxml_header.timestep != 60 timeseries_elec = end_use.timeseries_output_by_system.values.transpose.map(&:sum).map { |x| x * kwh_to_mwh } else # Need to perform calculations hourly at a minimum @@ -1008,7 +1247,7 @@ def get_outputs(runner, args) end if args[:timeseries_frequency] == 'timestep' - n_timesteps_per_hour = Integer(60.0 / @hpxml.header.timestep) + n_timesteps_per_hour = Integer(60.0 / @hpxml_header.timestep) timeseries_elec_factors = hourly_elec_factors.flat_map { |y| [y] * n_timesteps_per_hour } else timeseries_elec_factors = hourly_elec_factors.dup @@ -1018,26 +1257,9 @@ def get_outputs(runner, args) @emissions[key].timeseries_output_by_end_use[eu_key] = timeseries_elec.zip(timeseries_elec_factors).map { |n, f| n * f * elec_units_mult } # Aggregate up from hourly to the desired timeseries frequency - next unless ['daily', 'monthly'].include? args[:timeseries_frequency] - - if args[:timeseries_frequency] == 'daily' - n_hours_per_period = [24] * (sim_end_day_of_year - sim_start_day_of_year + 1) - elsif args[:timeseries_frequency] == 'monthly' - n_days_per_month = Constants.NumDaysInMonths(year) - n_days_per_period = n_days_per_month[@hpxml.header.sim_begin_month - 1..@hpxml.header.sim_end_month - 1] - n_days_per_period[0] -= @hpxml.header.sim_begin_day - 1 - n_days_per_period[-1] = @hpxml.header.sim_end_day - n_hours_per_period = n_days_per_period.map { |x| x * 24 } - end - fail 'Unexpected failure for emissions calculations.' if n_hours_per_period.sum != @emissions[key].timeseries_output_by_end_use[eu_key].size - - timeseries_output = [] - start_hour = 0 - n_hours_per_period.each do |n_hours| - timeseries_output << @emissions[key].timeseries_output_by_end_use[eu_key][start_hour..start_hour + n_hours - 1].sum() - start_hour += n_hours + if ['daily', 'monthly'].include? args[:timeseries_frequency] + @emissions[key].timeseries_output_by_end_use[eu_key] = rollup_timeseries_output_to_daily_or_monthly(@emissions[key].timeseries_output_by_end_use[eu_key], args[:timeseries_frequency]) end - @emissions[key].timeseries_output_by_end_use[eu_key] = timeseries_output end # Calculate emissions for fossil fuels @@ -1112,8 +1334,8 @@ def get_outputs(runner, args) end def get_sim_times_of_year(year) - sim_start_day_of_year = Schedule.get_day_num_from_month_day(year, @hpxml.header.sim_begin_month, @hpxml.header.sim_begin_day) - sim_end_day_of_year = Schedule.get_day_num_from_month_day(year, @hpxml.header.sim_end_month, @hpxml.header.sim_end_day) + sim_start_day_of_year = Schedule.get_day_num_from_month_day(year, @hpxml_header.sim_begin_month, @hpxml_header.sim_begin_day) + sim_end_day_of_year = Schedule.get_day_num_from_month_day(year, @hpxml_header.sim_end_month, @hpxml_header.sim_end_day) sim_start_hour = (sim_start_day_of_year - 1) * 24 sim_end_hour = sim_end_day_of_year * 24 - 1 return sim_start_day_of_year, sim_end_day_of_year, sim_start_hour, sim_end_hour @@ -1137,7 +1359,9 @@ def check_for_errors(runner, outputs) # Check if simulation successful all_total = @fuels.values.map { |x| x.annual_output.to_f }.sum(0.0) - if (all_total == 0) && (@hpxml.total_fraction_cool_load_served + @hpxml.total_fraction_heat_load_served > 0) + total_fraction_cool_load_served = @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.total_fraction_cool_load_served }.sum(0.0) + total_fraction_heat_load_served = @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.total_fraction_heat_load_served }.sum(0.0) + if (all_total == 0) && (total_fraction_cool_load_served + total_fraction_heat_load_served > 0) runner.registerError('Simulation unsuccessful.') return false elsif all_total.infinite? @@ -1159,10 +1383,25 @@ def check_for_errors(runner, outputs) meter_fuel_total += meter_elec_produced end - if (sum_categories - meter_fuel_total).abs > tol - runner.registerError("#{fuel_type} category end uses (#{sum_categories.round(3)}) do not sum to total (#{meter_fuel_total.round(3)}).") - return false - end + next unless (sum_categories - meter_fuel_total).abs > tol + + runner.registerError("#{fuel_type} category end uses (#{sum_categories.round(3)}) do not sum to total (#{meter_fuel_total.round(3)}).") + return false + end + + # Check sum of system use outputs match end use outputs + system_use_sums = {} + @system_uses.each do |key, system_use| + _sys_id, eu_key = key + system_use_sums[eu_key] = 0 if system_use_sums[eu_key].nil? + system_use_sums[eu_key] += system_use.annual_output + end + system_use_sums.each do |eu_key, systems_sum| + end_use_total = @end_uses[eu_key].annual_output.to_f + next unless (systems_sum - end_use_total).abs > tol + + runner.registerError("System uses (#{systems_sum.round(3)}) do not sum to total (#{end_use_total.round(3)}) for End Use: #{eu_key.join(': ')}.") + return false end # Check sum of timeseries outputs match annual outputs @@ -1196,8 +1435,8 @@ def report_runperiod_output_results(runner, outputs, args, annual_output_path) else # Note: Make sure to round outputs with sufficient resolution for the worst case -- i.e., 1 day instead of a full year. n_digits = 3 # Default for annual (or near-annual) data - sim_n_days = (Schedule.get_day_num_from_month_day(2000, @hpxml.header.sim_end_month, @hpxml.header.sim_end_day) - - Schedule.get_day_num_from_month_day(2000, @hpxml.header.sim_begin_month, @hpxml.header.sim_begin_day)) + sim_n_days = (Schedule.get_day_num_from_month_day(2000, @hpxml_header.sim_end_month, @hpxml_header.sim_end_day) - + Schedule.get_day_num_from_month_day(2000, @hpxml_header.sim_begin_month, @hpxml_header.sim_begin_day)) if sim_n_days <= 10 # 10 days or less; add two decimal places n_digits += 2 elsif sim_n_days <= 100 # 100 days or less; add one decimal place @@ -1335,6 +1574,14 @@ def report_runperiod_output_results(runner, outputs, args, annual_output_path) results_out << [line_break] end + # Resilience + if args[:include_annual_resilience] + @resilience.each do |_type, resilience| + results_out << ["#{resilience.name} (#{resilience.annual_units})", resilience.annual_output.to_f.round(n_digits)] + end + results_out << [line_break] + end + # Sizing data if args[:include_annual_hvac_summary] results_out = append_sizing_results(results_out, line_break) @@ -1374,25 +1621,11 @@ def report_runperiod_output_results(runner, outputs, args, annual_output_path) def append_sizing_results(results_out, line_break) # Summary HVAC capacities htg_cap, clg_cap, hp_backup_cap = 0.0, 0.0, 0.0 - @hpxml.hvac_systems.each do |hvac_system| - if hvac_system.is_a? HPXML::HeatingSystem - next if hvac_system.is_heat_pump_backup_system - - htg_cap += hvac_system.heating_capacity.to_f - elsif hvac_system.is_a? HPXML::CoolingSystem - clg_cap += hvac_system.cooling_capacity.to_f - if hvac_system.has_integrated_heating - htg_cap += hvac_system.integrated_heating_system_capacity.to_f - end - elsif hvac_system.is_a? HPXML::HeatPump - htg_cap += hvac_system.heating_capacity.to_f - clg_cap += hvac_system.cooling_capacity.to_f - if hvac_system.backup_type == HPXML::HeatPumpBackupTypeIntegrated - hp_backup_cap += hvac_system.backup_heating_capacity.to_f - elsif hvac_system.backup_type == HPXML::HeatPumpBackupTypeSeparate - hp_backup_cap += hvac_system.backup_system.heating_capacity.to_f - end - end + @hpxml_bldgs.each do |hpxml_bldg| + capacities = Outputs.get_total_hvac_capacities(hpxml_bldg) + htg_cap += capacities[0] + clg_cap += capacities[1] + hp_backup_cap += capacities[2] end results_out << ['HVAC Capacity: Heating (Btu/h)', htg_cap.round(1)] results_out << ['HVAC Capacity: Cooling (Btu/h)', clg_cap.round(1)] @@ -1400,38 +1633,38 @@ def append_sizing_results(results_out, line_break) # HVAC design temperatures results_out << [line_break] - results_out << ['HVAC Design Temperature: Heating (F)', @hpxml.header.manualj_heating_design_temp.round(2)] - results_out << ['HVAC Design Temperature: Cooling (F)', @hpxml.header.manualj_cooling_design_temp.round(2)] + results_out << ['HVAC Design Temperature: Heating (F)', (@hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.header.manualj_heating_design_temp }.sum(0.0) / @hpxml_bldgs.size).round(2)] + results_out << ['HVAC Design Temperature: Cooling (F)', (@hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.header.manualj_cooling_design_temp }.sum(0.0) / @hpxml_bldgs.size).round(2)] # HVAC design loads results_out << [line_break] - results_out << ['HVAC Design Load: Heating: Total (Btu/h)', @hpxml.hvac_plant.hdl_total.round(1)] - results_out << ['HVAC Design Load: Heating: Ducts (Btu/h)', @hpxml.hvac_plant.hdl_ducts.round(1)] - results_out << ['HVAC Design Load: Heating: Windows (Btu/h)', @hpxml.hvac_plant.hdl_windows.round(1)] - results_out << ['HVAC Design Load: Heating: Skylights (Btu/h)', @hpxml.hvac_plant.hdl_skylights.round(1)] - results_out << ['HVAC Design Load: Heating: Doors (Btu/h)', @hpxml.hvac_plant.hdl_doors.round(1)] - results_out << ['HVAC Design Load: Heating: Walls (Btu/h)', @hpxml.hvac_plant.hdl_walls.round(1)] - results_out << ['HVAC Design Load: Heating: Roofs (Btu/h)', @hpxml.hvac_plant.hdl_roofs.round(1)] - results_out << ['HVAC Design Load: Heating: Floors (Btu/h)', @hpxml.hvac_plant.hdl_floors.round(1)] - results_out << ['HVAC Design Load: Heating: Slabs (Btu/h)', @hpxml.hvac_plant.hdl_slabs.round(1)] - results_out << ['HVAC Design Load: Heating: Ceilings (Btu/h)', @hpxml.hvac_plant.hdl_ceilings.round(1)] - results_out << ['HVAC Design Load: Heating: Infiltration/Ventilation (Btu/h)', @hpxml.hvac_plant.hdl_infilvent.round(1)] - results_out << ['HVAC Design Load: Cooling Sensible: Total (Btu/h)', @hpxml.hvac_plant.cdl_sens_total.round(1)] - results_out << ['HVAC Design Load: Cooling Sensible: Ducts (Btu/h)', @hpxml.hvac_plant.cdl_sens_ducts.round(1)] - results_out << ['HVAC Design Load: Cooling Sensible: Windows (Btu/h)', @hpxml.hvac_plant.cdl_sens_windows.round(1)] - results_out << ['HVAC Design Load: Cooling Sensible: Skylights (Btu/h)', @hpxml.hvac_plant.cdl_sens_skylights.round(1)] - results_out << ['HVAC Design Load: Cooling Sensible: Doors (Btu/h)', @hpxml.hvac_plant.cdl_sens_doors.round(1)] - results_out << ['HVAC Design Load: Cooling Sensible: Walls (Btu/h)', @hpxml.hvac_plant.cdl_sens_walls.round(1)] - results_out << ['HVAC Design Load: Cooling Sensible: Roofs (Btu/h)', @hpxml.hvac_plant.cdl_sens_roofs.round(1)] - results_out << ['HVAC Design Load: Cooling Sensible: Floors (Btu/h)', @hpxml.hvac_plant.cdl_sens_floors.round(1)] - results_out << ['HVAC Design Load: Cooling Sensible: Slabs (Btu/h)', @hpxml.hvac_plant.cdl_sens_slabs.round(1)] - results_out << ['HVAC Design Load: Cooling Sensible: Ceilings (Btu/h)', @hpxml.hvac_plant.cdl_sens_ceilings.round(1)] - results_out << ['HVAC Design Load: Cooling Sensible: Infiltration/Ventilation (Btu/h)', @hpxml.hvac_plant.cdl_sens_infilvent.round(1)] - results_out << ['HVAC Design Load: Cooling Sensible: Internal Gains (Btu/h)', @hpxml.hvac_plant.cdl_sens_intgains.round(1)] - results_out << ['HVAC Design Load: Cooling Latent: Total (Btu/h)', @hpxml.hvac_plant.cdl_lat_total.round(1)] - results_out << ['HVAC Design Load: Cooling Latent: Ducts (Btu/h)', @hpxml.hvac_plant.cdl_lat_ducts.round(1)] - results_out << ['HVAC Design Load: Cooling Latent: Infiltration/Ventilation (Btu/h)', @hpxml.hvac_plant.cdl_lat_infilvent.round(1)] - results_out << ['HVAC Design Load: Cooling Latent: Internal Gains (Btu/h)', @hpxml.hvac_plant.cdl_lat_intgains.round(1)] + results_out << ['HVAC Design Load: Heating: Total (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.hdl_total * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Heating: Ducts (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.hdl_ducts * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Heating: Windows (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.hdl_windows * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Heating: Skylights (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.hdl_skylights * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Heating: Doors (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.hdl_doors * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Heating: Walls (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.hdl_walls * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Heating: Roofs (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.hdl_roofs * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Heating: Floors (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.hdl_floors * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Heating: Slabs (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.hdl_slabs * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Heating: Ceilings (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.hdl_ceilings * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Heating: Infiltration/Ventilation (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.hdl_infilvent * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Sensible: Total (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_sens_total * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Sensible: Ducts (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_sens_ducts * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Sensible: Windows (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_sens_windows * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Sensible: Skylights (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_sens_skylights * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Sensible: Doors (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_sens_doors * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Sensible: Walls (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_sens_walls * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Sensible: Roofs (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_sens_roofs * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Sensible: Floors (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_sens_floors * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Sensible: Slabs (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_sens_slabs * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Sensible: Ceilings (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_sens_ceilings * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Sensible: Infiltration/Ventilation (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_sens_infilvent * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Sensible: Internal Gains (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_sens_intgains * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Latent: Total (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_lat_total * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Latent: Ducts (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_lat_ducts * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Latent: Infiltration/Ventilation (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_lat_infilvent * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] + results_out << ['HVAC Design Load: Cooling Latent: Internal Gains (Btu/h)', @hpxml_bldgs.map { |hpxml_bldg| hpxml_bldg.hvac_plant.cdl_lat_intgains * hpxml_bldg.building_construction.number_of_units }.sum(0.0).round(1)] return results_out end @@ -1453,9 +1686,9 @@ def report_timeseries_output_results(runner, outputs, timeseries_output_path, ar # Note: Make sure to round outputs with sufficient resolution for the worst case -- i.e., 1 minute date instead of hourly data. n_digits = 3 # Default for hourly (or longer) data if args[:timeseries_frequency] == 'timestep' - if @hpxml.header.timestep <= 2 # 2-minute timesteps or shorter; add two decimal places + if @hpxml_header.timestep <= 2 # 2-minute timesteps or shorter; add two decimal places n_digits += 2 - elsif @hpxml.header.timestep <= 15 # 15-minute timesteps or shorter; add one decimal place + elsif @hpxml_header.timestep <= 15 # 15-minute timesteps or shorter; add one decimal place n_digits += 1 end end @@ -1577,6 +1810,11 @@ def report_timeseries_output_results(runner, outputs, timeseries_output_path, ar else weather_data = [] end + if args[:include_timeseries_resilience] + resilience_data = @resilience.values.select { |x| x.timeseries_output.sum(0.0) != 0 }.map { |x| [x.name, x.timeseries_units] + x.timeseries_output.map { |v| v.round(n_digits) } } + else + resilience_data = [] + end # EnergyPlus output variables if not @output_variables.empty? @@ -1587,7 +1825,7 @@ def report_timeseries_output_results(runner, outputs, timeseries_output_path, ar return if (total_energy_data.size + fuel_data.size + end_use_data.size + system_use_data.size + emissions_data.size + emission_fuel_data.size + emission_end_use_data.size + hot_water_use_data.size + total_loads_data.size + comp_loads_data.size + unmet_hours_data.size + - zone_temps_data.size + airflows_data.size + weather_data.size + output_variables_data.size) == 0 + zone_temps_data.size + airflows_data.size + weather_data.size + resilience_data.size + output_variables_data.size) == 0 fail 'Unable to obtain timestamps.' if @timestamps.empty? @@ -1595,7 +1833,7 @@ def report_timeseries_output_results(runner, outputs, timeseries_output_path, ar # Assemble data data = data.zip(*timestamps2, *timestamps3, *total_energy_data, *fuel_data, *end_use_data, *system_use_data, *emissions_data, *emission_fuel_data, *emission_end_use_data, *hot_water_use_data, *total_loads_data, *comp_loads_data, - *unmet_hours_data, *zone_temps_data, *airflows_data, *weather_data, *output_variables_data) + *unmet_hours_data, *zone_temps_data, *airflows_data, *weather_data, *resilience_data, *output_variables_data) # Error-check n_elements = [] @@ -1613,11 +1851,11 @@ def report_timeseries_output_results(runner, outputs, timeseries_output_path, ar end # Add header per DataFileTemplate.pdf; see https://github.com/NREL/wex/wiki/DView - year = @hpxml.header.sim_calendar_year - start_day = Schedule.get_day_num_from_month_day(year, @hpxml.header.sim_begin_month, @hpxml.header.sim_begin_day) + year = @hpxml_header.sim_calendar_year + start_day = Schedule.get_day_num_from_month_day(year, @hpxml_header.sim_begin_month, @hpxml_header.sim_begin_day) start_hr = (start_day - 1) * 24 if args[:timeseries_frequency] == 'timestep' - interval_hrs = @hpxml.header.timestep / 60.0 + interval_hrs = @hpxml_header.timestep / 60.0 elsif args[:timeseries_frequency] == 'hourly' interval_hrs = 1.0 elsif args[:timeseries_frequency] == 'daily' @@ -1635,10 +1873,12 @@ def report_timeseries_output_results(runner, outputs, timeseries_output_path, ar # Apply daylight savings if args[:timeseries_frequency] == 'timestep' || args[:timeseries_frequency] == 'hourly' - if @hpxml.header.dst_enabled + if @hpxml_bldgs[0].dst_enabled dst_start_ix, dst_end_ix = get_dst_start_end_indexes(@timestamps, timestamps_dst) - dst_end_ix.downto(dst_start_ix + 1) do |i| - data[i + 1] = data[i] + if !dst_start_ix.nil? && !dst_end_ix.nil? + dst_end_ix.downto(dst_start_ix + 1) do |i| + data[i + 1] = data[i] + end end end end @@ -1657,7 +1897,7 @@ def report_timeseries_output_results(runner, outputs, timeseries_output_path, ar [total_energy_data, fuel_data, end_use_data, system_use_data, emissions_data, emission_fuel_data, emission_end_use_data, hot_water_use_data, total_loads_data, comp_loads_data, unmet_hours_data, - zone_temps_data, airflows_data, weather_data, output_variables_data].each do |d| + zone_temps_data, airflows_data, weather_data, resilience_data, output_variables_data].each do |d| d.each do |o| grp, name = o[0].split(':', 2) h[grp] = {} if h[grp].nil? @@ -1684,7 +1924,7 @@ def get_dst_start_end_indexes(timestamps, timestamps_dst) dst_end_ix = i if ts[0] == ts[1] && dst_end_ix.nil? && !dst_start_ix.nil? end - dst_end_ix = timestamps.size - 1 if dst_end_ix.nil? # run period ends before DST ends + dst_end_ix = timestamps.size - 1 if dst_end_ix.nil? && !dst_start_ix.nil? # run period ends before DST ends return dst_start_ix, dst_end_ix end @@ -1715,6 +1955,39 @@ def get_report_variable_data_annual(key_values, variables, unit_conv = UnitConve return val end + def get_resilience_timeseries(init_time_step, batt_kwh, batt_kw, batt_soc_kwh, crit_load, batt_roundtrip_eff, n_timesteps, ts_per_hr) + for i in 0...n_timesteps + t = (init_time_step + i) % n_timesteps # for wrapping around end of year + load_kw = crit_load[t] + + # even if load_kw is negative, we return if batt_soc_kwh isn't charged at all + return i / Float(ts_per_hr) if batt_soc_kwh <= 0 + + if load_kw < 0 # load is met with PV + if batt_soc_kwh < batt_kwh # charge battery if there's room in the battery + batt_soc_kwh += [ + batt_kwh - batt_soc_kwh, # room available + batt_kw / batt_roundtrip_eff, # inverter capacity + -load_kw * batt_roundtrip_eff, # excess energy + ].min + end + + else # check if we can meet load with generator then storage + if [batt_kw, batt_soc_kwh].min >= load_kw # battery can carry balance + # prevent battery charge from going negative + batt_soc_kwh = [0, batt_soc_kwh - load_kw / batt_roundtrip_eff].max + load_kw = 0 + end + end + + if load_kw > 0 # failed to meet load in this time step + return i / Float(ts_per_hr) + end + end + + return n_timesteps / Float(ts_per_hr) + end + def get_report_meter_data_timeseries(meter_names, unit_conv, unit_adder, timeseries_frequency) return [0.0] * @timestamps.size if meter_names.empty? @@ -1846,18 +2119,19 @@ def apply_multiplier_to_output(obj, sync_obj, sys_id, mult) end end - def create_all_object_variables_by_key + def create_all_object_outputs_by_key @object_variables_by_key = {} return if @model.nil? @model.getModelObjects.sort.each do |object| next if object.to_AdditionalProperties.is_initialized - [EUT, HWT, LT].each do |class_name| + [EUT, HWT, LT, RT].each do |class_name| + vars_by_key = get_object_outputs_by_key(@model, object, class_name) + next if vars_by_key.size == 0 + sys_id = object.additionalProperties.getFeatureAsString('HPXML_ID') sys_id = sys_id.is_initialized ? sys_id.get : nil - vars_by_key = get_object_output_variables_by_key(@model, object, sys_id, class_name) - next if vars_by_key.size == 0 vars_by_key.each do |key, output_vars| output_vars.each do |output_var| @@ -1877,7 +2151,7 @@ def create_all_object_variables_by_key end end - def get_object_variables(class_name, key) + def get_object_outputs(class_name, key) hash_key = [class_name, key] vars = @object_variables_by_key[hash_key] vars = [] if vars.nil? @@ -1908,9 +2182,10 @@ def initialize(meters: []) end class EndUse < BaseOutput - def initialize(variables: [], is_negative: false, is_storage: false) + def initialize(outputs: [], is_negative: false, is_storage: false) super() - @variables = variables + @variables = outputs.select { |o| !o[2].include?(':') } + @meters = outputs.select { |o| o[2].include?(':') } @is_negative = is_negative @is_storage = is_storage @timeseries_output_by_system = {} @@ -1919,7 +2194,7 @@ def initialize(variables: [], is_negative: false, is_storage: false) @hourly_output = [] @hourly_output_by_system = {} end - attr_accessor(:variables, :is_negative, :is_storage, :annual_output_by_system, :timeseries_output_by_system, + attr_accessor(:variables, :meters, :is_negative, :is_storage, :annual_output_by_system, :timeseries_output_by_system, :hourly_output, :hourly_output_by_system) end @@ -1938,13 +2213,22 @@ def initialize() end class HotWater < BaseOutput - def initialize(variables: []) + def initialize(outputs: []) super() - @variables = variables + @variables = outputs.select { |o| !o[2].include?(':') } + @meters = outputs.select { |o| o[2].include?(':') } @timeseries_output_by_system = {} @annual_output_by_system = {} end - attr_accessor(:variables, :annual_output_by_system, :timeseries_output_by_system) + attr_accessor(:variables, :meters, :annual_output_by_system, :timeseries_output_by_system) + end + + class Resilience < BaseOutput + def initialize(variables: []) + super() + @variables = variables + end + attr_accessor(:variables) end class PeakFuel < BaseOutput @@ -2008,12 +2292,12 @@ def initialize end class Airflow < BaseOutput - def initialize(ems_program:, ems_variables:) + def initialize(ems_program:, ems_variable:) super() @ems_program = ems_program - @ems_variables = ems_variables + @ems_variable = ems_variable end - attr_accessor(:ems_program, :ems_variables) + attr_accessor(:ems_program, :ems_variable) end class Weather < BaseOutput @@ -2044,116 +2328,113 @@ def get_timeseries_units_from_fuel_type(fuel_type) # End Uses - # NOTE: Some end uses are obtained from meters, others are rolled up from - # output variables so that we can have more control. - - create_all_object_variables_by_key() + create_all_object_outputs_by_key() @end_uses = {} - @end_uses[[FT::Elec, EUT::Heating]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::Heating])) - @end_uses[[FT::Elec, EUT::HeatingFanPump]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::HeatingFanPump])) - @end_uses[[FT::Elec, EUT::HeatingHeatPumpBackup]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::HeatingHeatPumpBackup])) - @end_uses[[FT::Elec, EUT::HeatingHeatPumpBackupFanPump]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::HeatingHeatPumpBackupFanPump])) - @end_uses[[FT::Elec, EUT::Cooling]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::Cooling])) - @end_uses[[FT::Elec, EUT::CoolingFanPump]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::CoolingFanPump])) - @end_uses[[FT::Elec, EUT::HotWater]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::HotWater])) - @end_uses[[FT::Elec, EUT::HotWaterRecircPump]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::HotWaterRecircPump])) - @end_uses[[FT::Elec, EUT::HotWaterSolarThermalPump]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::HotWaterSolarThermalPump])) - @end_uses[[FT::Elec, EUT::LightsInterior]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::LightsInterior])) - @end_uses[[FT::Elec, EUT::LightsGarage]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::LightsGarage])) - @end_uses[[FT::Elec, EUT::LightsExterior]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::LightsExterior])) - @end_uses[[FT::Elec, EUT::MechVent]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::MechVent])) - @end_uses[[FT::Elec, EUT::MechVentPreheat]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::MechVentPreheat])) - @end_uses[[FT::Elec, EUT::MechVentPrecool]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::MechVentPrecool])) - @end_uses[[FT::Elec, EUT::WholeHouseFan]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::WholeHouseFan])) - @end_uses[[FT::Elec, EUT::Refrigerator]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::Refrigerator])) - @end_uses[[FT::Elec, EUT::Freezer]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::Freezer])) - @end_uses[[FT::Elec, EUT::Dehumidifier]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::Dehumidifier])) - @end_uses[[FT::Elec, EUT::Dishwasher]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::Dishwasher])) - @end_uses[[FT::Elec, EUT::ClothesWasher]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::ClothesWasher])) - @end_uses[[FT::Elec, EUT::ClothesDryer]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::ClothesDryer])) - @end_uses[[FT::Elec, EUT::RangeOven]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::RangeOven])) - @end_uses[[FT::Elec, EUT::CeilingFan]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::CeilingFan])) - @end_uses[[FT::Elec, EUT::Television]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::Television])) - @end_uses[[FT::Elec, EUT::PlugLoads]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::PlugLoads])) - @end_uses[[FT::Elec, EUT::Vehicle]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::Vehicle])) - @end_uses[[FT::Elec, EUT::WellPump]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::WellPump])) - @end_uses[[FT::Elec, EUT::PoolHeater]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::PoolHeater])) - @end_uses[[FT::Elec, EUT::PoolPump]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::PoolPump])) - @end_uses[[FT::Elec, EUT::HotTubHeater]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::HotTubHeater])) - @end_uses[[FT::Elec, EUT::HotTubPump]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::HotTubPump])) - @end_uses[[FT::Elec, EUT::PV]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::PV]), + @end_uses[[FT::Elec, EUT::Heating]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::Heating])) + @end_uses[[FT::Elec, EUT::HeatingFanPump]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::HeatingFanPump])) + @end_uses[[FT::Elec, EUT::HeatingHeatPumpBackup]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::HeatingHeatPumpBackup])) + @end_uses[[FT::Elec, EUT::HeatingHeatPumpBackupFanPump]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::HeatingHeatPumpBackupFanPump])) + @end_uses[[FT::Elec, EUT::Cooling]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::Cooling])) + @end_uses[[FT::Elec, EUT::CoolingFanPump]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::CoolingFanPump])) + @end_uses[[FT::Elec, EUT::HotWater]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::HotWater])) + @end_uses[[FT::Elec, EUT::HotWaterRecircPump]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::HotWaterRecircPump])) + @end_uses[[FT::Elec, EUT::HotWaterSolarThermalPump]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::HotWaterSolarThermalPump])) + @end_uses[[FT::Elec, EUT::LightsInterior]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::LightsInterior])) + @end_uses[[FT::Elec, EUT::LightsGarage]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::LightsGarage])) + @end_uses[[FT::Elec, EUT::LightsExterior]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::LightsExterior])) + @end_uses[[FT::Elec, EUT::MechVent]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::MechVent])) + @end_uses[[FT::Elec, EUT::MechVentPreheat]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::MechVentPreheat])) + @end_uses[[FT::Elec, EUT::MechVentPrecool]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::MechVentPrecool])) + @end_uses[[FT::Elec, EUT::WholeHouseFan]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::WholeHouseFan])) + @end_uses[[FT::Elec, EUT::Refrigerator]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::Refrigerator])) + @end_uses[[FT::Elec, EUT::Freezer]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::Freezer])) + @end_uses[[FT::Elec, EUT::Dehumidifier]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::Dehumidifier])) + @end_uses[[FT::Elec, EUT::Dishwasher]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::Dishwasher])) + @end_uses[[FT::Elec, EUT::ClothesWasher]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::ClothesWasher])) + @end_uses[[FT::Elec, EUT::ClothesDryer]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::ClothesDryer])) + @end_uses[[FT::Elec, EUT::RangeOven]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::RangeOven])) + @end_uses[[FT::Elec, EUT::CeilingFan]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::CeilingFan])) + @end_uses[[FT::Elec, EUT::Television]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::Television])) + @end_uses[[FT::Elec, EUT::PlugLoads]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::PlugLoads])) + @end_uses[[FT::Elec, EUT::Vehicle]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::Vehicle])) + @end_uses[[FT::Elec, EUT::WellPump]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::WellPump])) + @end_uses[[FT::Elec, EUT::PoolHeater]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::PoolHeater])) + @end_uses[[FT::Elec, EUT::PoolPump]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::PoolPump])) + @end_uses[[FT::Elec, EUT::PermanentSpaHeater]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::PermanentSpaHeater])) + @end_uses[[FT::Elec, EUT::PermanentSpaPump]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::PermanentSpaPump])) + @end_uses[[FT::Elec, EUT::PV]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::PV]), is_negative: true) - @end_uses[[FT::Elec, EUT::Generator]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::Generator]), + @end_uses[[FT::Elec, EUT::Generator]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::Generator]), is_negative: true) - @end_uses[[FT::Elec, EUT::Battery]] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, EUT::Battery]), + @end_uses[[FT::Elec, EUT::Battery]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, EUT::Battery]), is_storage: true) - @end_uses[[FT::Gas, EUT::Heating]] = EndUse.new(variables: get_object_variables(EUT, [FT::Gas, EUT::Heating])) - @end_uses[[FT::Gas, EUT::HeatingHeatPumpBackup]] = EndUse.new(variables: get_object_variables(EUT, [FT::Gas, EUT::HeatingHeatPumpBackup])) - @end_uses[[FT::Gas, EUT::HotWater]] = EndUse.new(variables: get_object_variables(EUT, [FT::Gas, EUT::HotWater])) - @end_uses[[FT::Gas, EUT::ClothesDryer]] = EndUse.new(variables: get_object_variables(EUT, [FT::Gas, EUT::ClothesDryer])) - @end_uses[[FT::Gas, EUT::RangeOven]] = EndUse.new(variables: get_object_variables(EUT, [FT::Gas, EUT::RangeOven])) - @end_uses[[FT::Gas, EUT::MechVentPreheat]] = EndUse.new(variables: get_object_variables(EUT, [FT::Gas, EUT::MechVentPreheat])) - @end_uses[[FT::Gas, EUT::PoolHeater]] = EndUse.new(variables: get_object_variables(EUT, [FT::Gas, EUT::PoolHeater])) - @end_uses[[FT::Gas, EUT::HotTubHeater]] = EndUse.new(variables: get_object_variables(EUT, [FT::Gas, EUT::HotTubHeater])) - @end_uses[[FT::Gas, EUT::Grill]] = EndUse.new(variables: get_object_variables(EUT, [FT::Gas, EUT::Grill])) - @end_uses[[FT::Gas, EUT::Lighting]] = EndUse.new(variables: get_object_variables(EUT, [FT::Gas, EUT::Lighting])) - @end_uses[[FT::Gas, EUT::Fireplace]] = EndUse.new(variables: get_object_variables(EUT, [FT::Gas, EUT::Fireplace])) - @end_uses[[FT::Gas, EUT::Generator]] = EndUse.new(variables: get_object_variables(EUT, [FT::Gas, EUT::Generator])) - @end_uses[[FT::Oil, EUT::Heating]] = EndUse.new(variables: get_object_variables(EUT, [FT::Oil, EUT::Heating])) - @end_uses[[FT::Oil, EUT::HeatingHeatPumpBackup]] = EndUse.new(variables: get_object_variables(EUT, [FT::Oil, EUT::HeatingHeatPumpBackup])) - @end_uses[[FT::Oil, EUT::HotWater]] = EndUse.new(variables: get_object_variables(EUT, [FT::Oil, EUT::HotWater])) - @end_uses[[FT::Oil, EUT::ClothesDryer]] = EndUse.new(variables: get_object_variables(EUT, [FT::Oil, EUT::ClothesDryer])) - @end_uses[[FT::Oil, EUT::RangeOven]] = EndUse.new(variables: get_object_variables(EUT, [FT::Oil, EUT::RangeOven])) - @end_uses[[FT::Oil, EUT::MechVentPreheat]] = EndUse.new(variables: get_object_variables(EUT, [FT::Oil, EUT::MechVentPreheat])) - @end_uses[[FT::Oil, EUT::Grill]] = EndUse.new(variables: get_object_variables(EUT, [FT::Oil, EUT::Grill])) - @end_uses[[FT::Oil, EUT::Lighting]] = EndUse.new(variables: get_object_variables(EUT, [FT::Oil, EUT::Lighting])) - @end_uses[[FT::Oil, EUT::Fireplace]] = EndUse.new(variables: get_object_variables(EUT, [FT::Oil, EUT::Fireplace])) - @end_uses[[FT::Oil, EUT::Generator]] = EndUse.new(variables: get_object_variables(EUT, [FT::Oil, EUT::Generator])) - @end_uses[[FT::Propane, EUT::Heating]] = EndUse.new(variables: get_object_variables(EUT, [FT::Propane, EUT::Heating])) - @end_uses[[FT::Propane, EUT::HeatingHeatPumpBackup]] = EndUse.new(variables: get_object_variables(EUT, [FT::Propane, EUT::HeatingHeatPumpBackup])) - @end_uses[[FT::Propane, EUT::HotWater]] = EndUse.new(variables: get_object_variables(EUT, [FT::Propane, EUT::HotWater])) - @end_uses[[FT::Propane, EUT::ClothesDryer]] = EndUse.new(variables: get_object_variables(EUT, [FT::Propane, EUT::ClothesDryer])) - @end_uses[[FT::Propane, EUT::RangeOven]] = EndUse.new(variables: get_object_variables(EUT, [FT::Propane, EUT::RangeOven])) - @end_uses[[FT::Propane, EUT::MechVentPreheat]] = EndUse.new(variables: get_object_variables(EUT, [FT::Propane, EUT::MechVentPreheat])) - @end_uses[[FT::Propane, EUT::Grill]] = EndUse.new(variables: get_object_variables(EUT, [FT::Propane, EUT::Grill])) - @end_uses[[FT::Propane, EUT::Lighting]] = EndUse.new(variables: get_object_variables(EUT, [FT::Propane, EUT::Lighting])) - @end_uses[[FT::Propane, EUT::Fireplace]] = EndUse.new(variables: get_object_variables(EUT, [FT::Propane, EUT::Fireplace])) - @end_uses[[FT::Propane, EUT::Generator]] = EndUse.new(variables: get_object_variables(EUT, [FT::Propane, EUT::Generator])) - @end_uses[[FT::WoodCord, EUT::Heating]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodCord, EUT::Heating])) - @end_uses[[FT::WoodCord, EUT::HeatingHeatPumpBackup]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodCord, EUT::HeatingHeatPumpBackup])) - @end_uses[[FT::WoodCord, EUT::HotWater]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodCord, EUT::HotWater])) - @end_uses[[FT::WoodCord, EUT::ClothesDryer]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodCord, EUT::ClothesDryer])) - @end_uses[[FT::WoodCord, EUT::RangeOven]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodCord, EUT::RangeOven])) - @end_uses[[FT::WoodCord, EUT::MechVentPreheat]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodCord, EUT::MechVentPreheat])) - @end_uses[[FT::WoodCord, EUT::Grill]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodCord, EUT::Grill])) - @end_uses[[FT::WoodCord, EUT::Lighting]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodCord, EUT::Lighting])) - @end_uses[[FT::WoodCord, EUT::Fireplace]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodCord, EUT::Fireplace])) - @end_uses[[FT::WoodCord, EUT::Generator]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodCord, EUT::Generator])) - @end_uses[[FT::WoodPellets, EUT::Heating]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodPellets, EUT::Heating])) - @end_uses[[FT::WoodPellets, EUT::HeatingHeatPumpBackup]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodPellets, EUT::HeatingHeatPumpBackup])) - @end_uses[[FT::WoodPellets, EUT::HotWater]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodPellets, EUT::HotWater])) - @end_uses[[FT::WoodPellets, EUT::ClothesDryer]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodPellets, EUT::ClothesDryer])) - @end_uses[[FT::WoodPellets, EUT::RangeOven]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodPellets, EUT::RangeOven])) - @end_uses[[FT::WoodPellets, EUT::MechVentPreheat]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodPellets, EUT::MechVentPreheat])) - @end_uses[[FT::WoodPellets, EUT::Grill]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodPellets, EUT::Grill])) - @end_uses[[FT::WoodPellets, EUT::Lighting]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodPellets, EUT::Lighting])) - @end_uses[[FT::WoodPellets, EUT::Fireplace]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodPellets, EUT::Fireplace])) - @end_uses[[FT::WoodPellets, EUT::Generator]] = EndUse.new(variables: get_object_variables(EUT, [FT::WoodPellets, EUT::Generator])) - @end_uses[[FT::Coal, EUT::Heating]] = EndUse.new(variables: get_object_variables(EUT, [FT::Coal, EUT::Heating])) - @end_uses[[FT::Coal, EUT::HeatingHeatPumpBackup]] = EndUse.new(variables: get_object_variables(EUT, [FT::Coal, EUT::HeatingHeatPumpBackup])) - @end_uses[[FT::Coal, EUT::HotWater]] = EndUse.new(variables: get_object_variables(EUT, [FT::Coal, EUT::HotWater])) - @end_uses[[FT::Coal, EUT::ClothesDryer]] = EndUse.new(variables: get_object_variables(EUT, [FT::Coal, EUT::ClothesDryer])) - @end_uses[[FT::Coal, EUT::RangeOven]] = EndUse.new(variables: get_object_variables(EUT, [FT::Coal, EUT::RangeOven])) - @end_uses[[FT::Coal, EUT::MechVentPreheat]] = EndUse.new(variables: get_object_variables(EUT, [FT::Coal, EUT::MechVentPreheat])) - @end_uses[[FT::Coal, EUT::Grill]] = EndUse.new(variables: get_object_variables(EUT, [FT::Coal, EUT::Grill])) - @end_uses[[FT::Coal, EUT::Lighting]] = EndUse.new(variables: get_object_variables(EUT, [FT::Coal, EUT::Lighting])) - @end_uses[[FT::Coal, EUT::Fireplace]] = EndUse.new(variables: get_object_variables(EUT, [FT::Coal, EUT::Fireplace])) - @end_uses[[FT::Coal, EUT::Generator]] = EndUse.new(variables: get_object_variables(EUT, [FT::Coal, EUT::Generator])) + @end_uses[[FT::Gas, EUT::Heating]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Gas, EUT::Heating])) + @end_uses[[FT::Gas, EUT::HeatingHeatPumpBackup]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Gas, EUT::HeatingHeatPumpBackup])) + @end_uses[[FT::Gas, EUT::HotWater]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Gas, EUT::HotWater])) + @end_uses[[FT::Gas, EUT::ClothesDryer]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Gas, EUT::ClothesDryer])) + @end_uses[[FT::Gas, EUT::RangeOven]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Gas, EUT::RangeOven])) + @end_uses[[FT::Gas, EUT::MechVentPreheat]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Gas, EUT::MechVentPreheat])) + @end_uses[[FT::Gas, EUT::PoolHeater]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Gas, EUT::PoolHeater])) + @end_uses[[FT::Gas, EUT::PermanentSpaHeater]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Gas, EUT::PermanentSpaHeater])) + @end_uses[[FT::Gas, EUT::Grill]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Gas, EUT::Grill])) + @end_uses[[FT::Gas, EUT::Lighting]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Gas, EUT::Lighting])) + @end_uses[[FT::Gas, EUT::Fireplace]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Gas, EUT::Fireplace])) + @end_uses[[FT::Gas, EUT::Generator]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Gas, EUT::Generator])) + @end_uses[[FT::Oil, EUT::Heating]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Oil, EUT::Heating])) + @end_uses[[FT::Oil, EUT::HeatingHeatPumpBackup]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Oil, EUT::HeatingHeatPumpBackup])) + @end_uses[[FT::Oil, EUT::HotWater]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Oil, EUT::HotWater])) + @end_uses[[FT::Oil, EUT::ClothesDryer]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Oil, EUT::ClothesDryer])) + @end_uses[[FT::Oil, EUT::RangeOven]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Oil, EUT::RangeOven])) + @end_uses[[FT::Oil, EUT::MechVentPreheat]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Oil, EUT::MechVentPreheat])) + @end_uses[[FT::Oil, EUT::Grill]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Oil, EUT::Grill])) + @end_uses[[FT::Oil, EUT::Lighting]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Oil, EUT::Lighting])) + @end_uses[[FT::Oil, EUT::Fireplace]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Oil, EUT::Fireplace])) + @end_uses[[FT::Oil, EUT::Generator]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Oil, EUT::Generator])) + @end_uses[[FT::Propane, EUT::Heating]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Propane, EUT::Heating])) + @end_uses[[FT::Propane, EUT::HeatingHeatPumpBackup]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Propane, EUT::HeatingHeatPumpBackup])) + @end_uses[[FT::Propane, EUT::HotWater]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Propane, EUT::HotWater])) + @end_uses[[FT::Propane, EUT::ClothesDryer]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Propane, EUT::ClothesDryer])) + @end_uses[[FT::Propane, EUT::RangeOven]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Propane, EUT::RangeOven])) + @end_uses[[FT::Propane, EUT::MechVentPreheat]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Propane, EUT::MechVentPreheat])) + @end_uses[[FT::Propane, EUT::Grill]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Propane, EUT::Grill])) + @end_uses[[FT::Propane, EUT::Lighting]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Propane, EUT::Lighting])) + @end_uses[[FT::Propane, EUT::Fireplace]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Propane, EUT::Fireplace])) + @end_uses[[FT::Propane, EUT::Generator]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Propane, EUT::Generator])) + @end_uses[[FT::WoodCord, EUT::Heating]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodCord, EUT::Heating])) + @end_uses[[FT::WoodCord, EUT::HeatingHeatPumpBackup]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodCord, EUT::HeatingHeatPumpBackup])) + @end_uses[[FT::WoodCord, EUT::HotWater]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodCord, EUT::HotWater])) + @end_uses[[FT::WoodCord, EUT::ClothesDryer]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodCord, EUT::ClothesDryer])) + @end_uses[[FT::WoodCord, EUT::RangeOven]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodCord, EUT::RangeOven])) + @end_uses[[FT::WoodCord, EUT::MechVentPreheat]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodCord, EUT::MechVentPreheat])) + @end_uses[[FT::WoodCord, EUT::Grill]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodCord, EUT::Grill])) + @end_uses[[FT::WoodCord, EUT::Lighting]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodCord, EUT::Lighting])) + @end_uses[[FT::WoodCord, EUT::Fireplace]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodCord, EUT::Fireplace])) + @end_uses[[FT::WoodCord, EUT::Generator]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodCord, EUT::Generator])) + @end_uses[[FT::WoodPellets, EUT::Heating]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodPellets, EUT::Heating])) + @end_uses[[FT::WoodPellets, EUT::HeatingHeatPumpBackup]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodPellets, EUT::HeatingHeatPumpBackup])) + @end_uses[[FT::WoodPellets, EUT::HotWater]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodPellets, EUT::HotWater])) + @end_uses[[FT::WoodPellets, EUT::ClothesDryer]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodPellets, EUT::ClothesDryer])) + @end_uses[[FT::WoodPellets, EUT::RangeOven]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodPellets, EUT::RangeOven])) + @end_uses[[FT::WoodPellets, EUT::MechVentPreheat]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodPellets, EUT::MechVentPreheat])) + @end_uses[[FT::WoodPellets, EUT::Grill]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodPellets, EUT::Grill])) + @end_uses[[FT::WoodPellets, EUT::Lighting]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodPellets, EUT::Lighting])) + @end_uses[[FT::WoodPellets, EUT::Fireplace]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodPellets, EUT::Fireplace])) + @end_uses[[FT::WoodPellets, EUT::Generator]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::WoodPellets, EUT::Generator])) + @end_uses[[FT::Coal, EUT::Heating]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Coal, EUT::Heating])) + @end_uses[[FT::Coal, EUT::HeatingHeatPumpBackup]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Coal, EUT::HeatingHeatPumpBackup])) + @end_uses[[FT::Coal, EUT::HotWater]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Coal, EUT::HotWater])) + @end_uses[[FT::Coal, EUT::ClothesDryer]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Coal, EUT::ClothesDryer])) + @end_uses[[FT::Coal, EUT::RangeOven]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Coal, EUT::RangeOven])) + @end_uses[[FT::Coal, EUT::MechVentPreheat]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Coal, EUT::MechVentPreheat])) + @end_uses[[FT::Coal, EUT::Grill]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Coal, EUT::Grill])) + @end_uses[[FT::Coal, EUT::Lighting]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Coal, EUT::Lighting])) + @end_uses[[FT::Coal, EUT::Fireplace]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Coal, EUT::Fireplace])) + @end_uses[[FT::Coal, EUT::Generator]] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Coal, EUT::Generator])) if not called_from_outputs_method # Temporary end use to disaggregate 8760 GSHP shared loop pump energy into heating vs cooling. # This end use will not appear in output data/files. - @end_uses[[FT::Elec, 'TempGSHPSharedPump']] = EndUse.new(variables: get_object_variables(EUT, [FT::Elec, 'TempGSHPSharedPump'])) + @end_uses[[FT::Elec, 'TempGSHPSharedPump']] = EndUse.new(outputs: get_object_outputs(EUT, [FT::Elec, 'TempGSHPSharedPump'])) end @end_uses.each do |key, end_use| fuel_type, end_use_type = key @@ -2177,7 +2458,7 @@ def get_timeseries_units_from_fuel_type(fuel_type) fuel.name = "Fuel Use: #{fuel_type}: Total" fuel.annual_units = 'MBtu' fuel.timeseries_units = get_timeseries_units_from_fuel_type(fuel_type) - if @end_uses.select { |key, end_use| key[0] == fuel_type && end_use.variables.size > 0 }.size == 0 + if @end_uses.select { |key, end_use| key[0] == fuel_type && end_use.variables.size + end_use.meters.size > 0 }.size == 0 fuel.meters = [] end end @@ -2207,10 +2488,10 @@ def get_timeseries_units_from_fuel_type(fuel_type) # Hot Water Uses @hot_water_uses = {} - @hot_water_uses[HWT::ClothesWasher] = HotWater.new(variables: get_object_variables(HWT, HWT::ClothesWasher)) - @hot_water_uses[HWT::Dishwasher] = HotWater.new(variables: get_object_variables(HWT, HWT::Dishwasher)) - @hot_water_uses[HWT::Fixtures] = HotWater.new(variables: get_object_variables(HWT, HWT::Fixtures)) - @hot_water_uses[HWT::DistributionWaste] = HotWater.new(variables: get_object_variables(HWT, HWT::DistributionWaste)) + @hot_water_uses[HWT::ClothesWasher] = HotWater.new(outputs: get_object_outputs(HWT, HWT::ClothesWasher)) + @hot_water_uses[HWT::Dishwasher] = HotWater.new(outputs: get_object_outputs(HWT, HWT::Dishwasher)) + @hot_water_uses[HWT::Fixtures] = HotWater.new(outputs: get_object_outputs(HWT, HWT::Fixtures)) + @hot_water_uses[HWT::DistributionWaste] = HotWater.new(outputs: get_object_outputs(HWT, HWT::DistributionWaste)) @hot_water_uses.each do |hot_water_type, hot_water| hot_water.name = "Hot Water: #{hot_water_type}" @@ -2218,10 +2499,23 @@ def get_timeseries_units_from_fuel_type(fuel_type) hot_water.timeseries_units = 'gal' end + # Resilience + @resilience = {} + @resilience[RT::Battery] = Resilience.new(variables: get_object_outputs(RT, RT::Battery)) + + @resilience.each do |resilience_type, resilience| + next unless resilience_type == RT::Battery + + resilience.name = "Resilience: #{resilience_type}" + resilience.annual_units = 'hr' + resilience.timeseries_units = 'hr' + end + # Peak Fuels @peak_fuels = {} - @peak_fuels[[FT::Elec, PFT::Winter]] = PeakFuel.new(report: 'Peak Electricity Winter Total') - @peak_fuels[[FT::Elec, PFT::Summer]] = PeakFuel.new(report: 'Peak Electricity Summer Total') + @peak_fuels[[FT::Elec, PFT::Winter]] = PeakFuel.new(report: 'Peak Electricity Total') + @peak_fuels[[FT::Elec, PFT::Summer]] = PeakFuel.new(report: 'Peak Electricity Total') + @peak_fuels[[FT::Elec, PFT::Annual]] = PeakFuel.new(report: 'Peak Electricity Total') @peak_fuels.each do |key, peak_fuel| fuel_type, peak_fuel_type = key @@ -2233,13 +2527,13 @@ def get_timeseries_units_from_fuel_type(fuel_type) @loads = {} @loads[LT::Heating] = Load.new(ems_variable: 'loads_htg_tot') - @loads[LT::HeatingHeatPumpBackup] = Load.new(variables: get_object_variables(LT, LT::HeatingHeatPumpBackup)) + @loads[LT::HeatingHeatPumpBackup] = Load.new(variables: get_object_outputs(LT, LT::HeatingHeatPumpBackup)) @loads[LT::Cooling] = Load.new(ems_variable: 'loads_clg_tot') - @loads[LT::HotWaterDelivered] = Load.new(variables: get_object_variables(LT, LT::HotWaterDelivered)) - @loads[LT::HotWaterTankLosses] = Load.new(variables: get_object_variables(LT, LT::HotWaterTankLosses), + @loads[LT::HotWaterDelivered] = Load.new(variables: get_object_outputs(LT, LT::HotWaterDelivered)) + @loads[LT::HotWaterTankLosses] = Load.new(variables: get_object_outputs(LT, LT::HotWaterTankLosses), is_negative: true) - @loads[LT::HotWaterDesuperheater] = Load.new(variables: get_object_variables(LT, LT::HotWaterDesuperheater)) - @loads[LT::HotWaterSolarThermal] = Load.new(variables: get_object_variables(LT, LT::HotWaterSolarThermal), + @loads[LT::HotWaterDesuperheater] = Load.new(variables: get_object_outputs(LT, LT::HotWaterDesuperheater)) + @loads[LT::HotWaterSolarThermal] = Load.new(variables: get_object_outputs(LT, LT::HotWaterSolarThermal), is_negative: true) @loads.each do |load_type, load| @@ -2325,10 +2619,10 @@ def get_timeseries_units_from_fuel_type(fuel_type) # Airflows @airflows = {} - @airflows[AFT::Infiltration] = Airflow.new(ems_program: Constants.ObjectNameInfiltration + ' program', ems_variables: [(Constants.ObjectNameInfiltration + ' flow act').gsub(' ', '_')]) - @airflows[AFT::MechanicalVentilation] = Airflow.new(ems_program: Constants.ObjectNameInfiltration + ' program', ems_variables: ['Qfan']) - @airflows[AFT::NaturalVentilation] = Airflow.new(ems_program: Constants.ObjectNameNaturalVentilation + ' program', ems_variables: [(Constants.ObjectNameNaturalVentilation + ' flow act').gsub(' ', '_')]) - @airflows[AFT::WholeHouseFan] = Airflow.new(ems_program: Constants.ObjectNameNaturalVentilation + ' program', ems_variables: [(Constants.ObjectNameWholeHouseFan + ' flow act').gsub(' ', '_')]) + @airflows[AFT::Infiltration] = Airflow.new(ems_program: Constants.ObjectNameInfiltration, ems_variable: (Constants.ObjectNameInfiltration + ' flow act').gsub(' ', '_')) + @airflows[AFT::MechanicalVentilation] = Airflow.new(ems_program: Constants.ObjectNameInfiltration, ems_variable: 'Qfan') + @airflows[AFT::NaturalVentilation] = Airflow.new(ems_program: Constants.ObjectNameNaturalVentilation, ems_variable: (Constants.ObjectNameNaturalVentilation + ' flow act').gsub(' ', '_')) + @airflows[AFT::WholeHouseFan] = Airflow.new(ems_program: Constants.ObjectNameNaturalVentilation, ems_variable: (Constants.ObjectNameWholeHouseFan + ' flow act').gsub(' ', '_')) @airflows.each do |airflow_type, airflow| airflow.name = "Airflow: #{airflow_type}" @@ -2370,7 +2664,7 @@ def setup_timeseries_includes(emissions, args) args[:include_timeseries_fuel_consumptions] = true end end - if args[:include_timeseries_total_consumptions] + if args[:include_timeseries_total_consumptions] || args[:include_timeseries_resilience] args[:include_timeseries_fuel_consumptions] = true end if args[:include_timeseries_fuel_consumptions] @@ -2382,41 +2676,25 @@ def setup_timeseries_includes(emissions, args) return args end - def is_heat_pump_backup(sys_id) - return false if @hpxml.nil? - - # Integrated backup? - @hpxml.heat_pumps.each do |heat_pump| - next if sys_id != heat_pump.id - - return true - end - - # Separate backup system? - @hpxml.heating_systems.each do |heating_system| - next if sys_id != heating_system.id - next unless heating_system.is_heat_pump_backup_system - - return true - end - - return false - end - def get_hpxml_system_ids # Returns a list of HPXML IDs corresponds to HVAC or water heating systems - return [] if @hpxml.nil? + return [] if @hpxml_bldgs.empty? system_ids = [] - (@hpxml.hvac_systems + @hpxml.water_heating_systems + @hpxml.ventilation_fans).each do |system| - system_ids << system.id + @hpxml_bldgs.each do |hpxml_bldg| + (hpxml_bldg.hvac_systems + hpxml_bldg.water_heating_systems + hpxml_bldg.ventilation_fans).each do |system| + system_ids << system.id + end end return system_ids end - def get_object_output_variables_by_key(model, object, sys_id, class_name) - # For a given object, returns the output variables to be requested and associates - # them with the appropriate keys (e.g., [FT::Elec, EUT::Heating]). + def get_object_outputs_by_key(model, object, class_name) + # For a given object, returns the Output:Variables or Output:Meters to be requested, + # and associates them with the appropriate keys (e.g., [FT::Elec, EUT::Heating]). + + object_type = object.additionalProperties.getFeatureAsString('ObjectType') + object_type = object_type.get if object_type.is_initialized to_ft = { EPlus::FuelTypeElectricity => FT::Elec, EPlus::FuelTypeNaturalGas => FT::Gas, @@ -2434,28 +2712,28 @@ def get_object_output_variables_by_key(model, object, sys_id, class_name) return { [FT::Elec, EUT::Heating] => ["Heating Coil #{EPlus::FuelTypeElectricity} Energy", "Heating Coil Crankcase Heater #{EPlus::FuelTypeElectricity} Energy", "Heating Coil Defrost #{EPlus::FuelTypeElectricity} Energy"] } elsif object.to_CoilHeatingElectric.is_initialized - if not is_heat_pump_backup(sys_id) - return { [FT::Elec, EUT::Heating] => ["Heating Coil #{EPlus::FuelTypeElectricity} Energy"] } - else + if object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').is_initialized && object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').get return { [FT::Elec, EUT::HeatingHeatPumpBackup] => ["Heating Coil #{EPlus::FuelTypeElectricity} Energy"] } + else + return { [FT::Elec, EUT::Heating] => ["Heating Coil #{EPlus::FuelTypeElectricity} Energy"] } end elsif object.to_CoilHeatingGas.is_initialized fuel = object.to_CoilHeatingGas.get.fuelType - if not is_heat_pump_backup(sys_id) - return { [to_ft[fuel], EUT::Heating] => ["Heating Coil #{fuel} Energy", "Heating Coil Ancillary #{fuel} Energy"] } - else + if object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').is_initialized && object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').get return { [to_ft[fuel], EUT::HeatingHeatPumpBackup] => ["Heating Coil #{fuel} Energy", "Heating Coil Ancillary #{fuel} Energy"] } + else + return { [to_ft[fuel], EUT::Heating] => ["Heating Coil #{fuel} Energy", "Heating Coil Ancillary #{fuel} Energy"] } end elsif object.to_CoilHeatingWaterToAirHeatPumpEquationFit.is_initialized return { [FT::Elec, EUT::Heating] => ["Heating Coil #{EPlus::FuelTypeElectricity} Energy"] } elsif object.to_ZoneHVACBaseboardConvectiveElectric.is_initialized - if not is_heat_pump_backup(sys_id) - return { [FT::Elec, EUT::Heating] => ["Baseboard #{EPlus::FuelTypeElectricity} Energy"] } - else + if object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').is_initialized && object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').get return { [FT::Elec, EUT::HeatingHeatPumpBackup] => ["Baseboard #{EPlus::FuelTypeElectricity} Energy"] } + else + return { [FT::Elec, EUT::Heating] => ["Baseboard #{EPlus::FuelTypeElectricity} Energy"] } end elsif object.to_BoilerHotWater.is_initialized @@ -2465,14 +2743,14 @@ def get_object_output_variables_by_key(model, object, sys_id, class_name) end if not is_combi_boiler # Exclude combi boiler, whose heating & dhw energy is handled separately via EMS fuel = object.to_BoilerHotWater.get.fuelType - if not is_heat_pump_backup(sys_id) - return { [to_ft[fuel], EUT::Heating] => ["Boiler #{fuel} Energy"] } + if object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').is_initialized && object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').get + return { [to_ft[fuel], EUT::HeatingHeatPumpBackup] => ["Boiler #{fuel} Energy", "Boiler Ancillary #{fuel} Energy"] } else - return { [to_ft[fuel], EUT::HeatingHeatPumpBackup] => ["Boiler #{fuel} Energy"] } + return { [to_ft[fuel], EUT::Heating] => ["Boiler #{fuel} Energy", "Boiler Ancillary #{fuel} Energy"] } end else fuel = object.to_BoilerHotWater.get.fuelType - return { [to_ft[fuel], EUT::HotWater] => ["Boiler #{fuel} Energy"] } + return { [to_ft[fuel], EUT::HotWater] => ["Boiler #{fuel} Energy", "Boiler Ancillary #{fuel} Energy"] } end elsif object.to_CoilCoolingDXSingleSpeed.is_initialized || object.to_CoilCoolingDXMultiSpeed.is_initialized @@ -2507,12 +2785,12 @@ def get_object_output_variables_by_key(model, object, sys_id, class_name) return { [FT::Elec, EUT::HotWater] => ["Cooling Coil Water Heating #{EPlus::FuelTypeElectricity} Energy"] } elsif object.to_FanSystemModel.is_initialized - if object.name.to_s.start_with? Constants.ObjectNameWaterHeater + if object_type == Constants.ObjectNameWaterHeater return { [FT::Elec, EUT::HotWater] => ["Fan #{EPlus::FuelTypeElectricity} Energy"] } end elsif object.to_PumpConstantSpeed.is_initialized - if object.name.to_s.start_with? Constants.ObjectNameSolarHotWater + if object_type == Constants.ObjectNameSolarHotWater return { [FT::Elec, EUT::HotWaterSolarThermalPump] => ["Pump #{EPlus::FuelTypeElectricity} Energy"] } end @@ -2525,12 +2803,14 @@ def get_object_output_variables_by_key(model, object, sys_id, class_name) return { [to_ft[fuel], EUT::HotWater] => ["Water Heater #{fuel} Energy", "Water Heater Off Cycle Parasitic #{EPlus::FuelTypeElectricity} Energy", "Water Heater On Cycle Parasitic #{EPlus::FuelTypeElectricity} Energy"] } elsif object.to_ExteriorLights.is_initialized - return { [FT::Elec, EUT::LightsExterior] => ["Exterior Lights #{EPlus::FuelTypeElectricity} Energy"] } + subcategory = object.to_ExteriorLights.get.endUseSubcategory + return { [FT::Elec, EUT::LightsExterior] => ["#{subcategory}:ExteriorLights:#{EPlus::FuelTypeElectricity}"] } elsif object.to_Lights.is_initialized - end_use = { Constants.ObjectNameInteriorLighting => EUT::LightsInterior, - Constants.ObjectNameGarageLighting => EUT::LightsGarage }[object.to_Lights.get.endUseSubcategory] - return { [FT::Elec, end_use] => ["Lights #{EPlus::FuelTypeElectricity} Energy"] } + subcategory = object.to_Lights.get.endUseSubcategory + end_use = { Constants.ObjectNameLightingInterior => EUT::LightsInterior, + Constants.ObjectNameLightingGarage => EUT::LightsGarage }[subcategory] + return { [FT::Elec, end_use] => ["#{subcategory}:InteriorLights:#{EPlus::FuelTypeElectricity}"] } elsif object.to_ElectricLoadCenterInverterPVWatts.is_initialized return { [FT::Elec, EUT::PV] => ['Inverter Conversion Loss Decrement Energy'] } @@ -2544,66 +2824,89 @@ def get_object_output_variables_by_key(model, object, sys_id, class_name) [to_ft[fuel], EUT::Generator] => ["Generator #{fuel} HHV Basis Energy"] } elsif object.to_ElectricLoadCenterStorageLiIonNMCBattery.is_initialized - # return { [FT::Elec, EUT::Battery] => ['Electric Storage Production Decrement Energy', 'Electric Storage Discharge Energy', 'Electric Storage Thermal Loss Energy'] } return { [FT::Elec, EUT::Battery] => ['Electric Storage Production Decrement Energy', 'Electric Storage Discharge Energy'] } elsif object.to_ElectricEquipment.is_initialized - end_use = { Constants.ObjectNameHotWaterRecircPump => EUT::HotWaterRecircPump, - Constants.ObjectNameGSHPSharedPump => 'TempGSHPSharedPump', - Constants.ObjectNameClothesWasher => EUT::ClothesWasher, - Constants.ObjectNameClothesDryer => EUT::ClothesDryer, - Constants.ObjectNameDishwasher => EUT::Dishwasher, - Constants.ObjectNameRefrigerator => EUT::Refrigerator, - Constants.ObjectNameFreezer => EUT::Freezer, - Constants.ObjectNameCookingRange => EUT::RangeOven, - Constants.ObjectNameCeilingFan => EUT::CeilingFan, - Constants.ObjectNameWholeHouseFan => EUT::WholeHouseFan, - Constants.ObjectNameMechanicalVentilation => EUT::MechVent, - Constants.ObjectNameMiscPlugLoads => EUT::PlugLoads, - Constants.ObjectNameMiscTelevision => EUT::Television, - Constants.ObjectNameMiscPoolHeater => EUT::PoolHeater, - Constants.ObjectNameMiscPoolPump => EUT::PoolPump, - Constants.ObjectNameMiscHotTubHeater => EUT::HotTubHeater, - Constants.ObjectNameMiscHotTubPump => EUT::HotTubPump, - Constants.ObjectNameMiscElectricVehicleCharging => EUT::Vehicle, - Constants.ObjectNameMiscWellPump => EUT::WellPump }[object.to_ElectricEquipment.get.endUseSubcategory] + object = object.to_ElectricEquipment.get + subcategory = object.endUseSubcategory + end_use = nil + { Constants.ObjectNameHotWaterRecircPump => EUT::HotWaterRecircPump, + Constants.ObjectNameGSHPSharedPump => 'TempGSHPSharedPump', + Constants.ObjectNameClothesWasher => EUT::ClothesWasher, + Constants.ObjectNameClothesDryer => EUT::ClothesDryer, + Constants.ObjectNameDishwasher => EUT::Dishwasher, + Constants.ObjectNameRefrigerator => EUT::Refrigerator, + Constants.ObjectNameFreezer => EUT::Freezer, + Constants.ObjectNameCookingRange => EUT::RangeOven, + Constants.ObjectNameCeilingFan => EUT::CeilingFan, + Constants.ObjectNameWholeHouseFan => EUT::WholeHouseFan, + Constants.ObjectNameMechanicalVentilation => EUT::MechVent, + Constants.ObjectNameMiscPlugLoads => EUT::PlugLoads, + Constants.ObjectNameMiscTelevision => EUT::Television, + Constants.ObjectNameMiscPoolHeater => EUT::PoolHeater, + Constants.ObjectNameMiscPoolPump => EUT::PoolPump, + Constants.ObjectNameMiscPermanentSpaHeater => EUT::PermanentSpaHeater, + Constants.ObjectNameMiscPermanentSpaPump => EUT::PermanentSpaPump, + Constants.ObjectNameMiscElectricVehicleCharging => EUT::Vehicle, + Constants.ObjectNameMiscWellPump => EUT::WellPump }.each do |obj_name, eut| + next unless subcategory.start_with? obj_name + fail 'Unepected error: multiple matches.' unless end_use.nil? + + end_use = eut + end + if not end_use.nil? - return { [FT::Elec, end_use] => ["Electric Equipment #{EPlus::FuelTypeElectricity} Energy"] } + # Use Output:Meter instead of Output:Variable because they incorporate thermal zone multipliers + if object.space.is_initialized + zone_name = object.space.get.thermalZone.get.name.to_s.upcase + return { [FT::Elec, end_use] => ["#{subcategory}:InteriorEquipment:#{EPlus::FuelTypeElectricity}:Zone:#{zone_name}"] } + else + return { [FT::Elec, end_use] => ["#{subcategory}:InteriorEquipment:#{EPlus::FuelTypeElectricity}"] } + end end elsif object.to_OtherEquipment.is_initialized - fuel = object.to_OtherEquipment.get.fuelType - end_use = { Constants.ObjectNameClothesDryer => EUT::ClothesDryer, - Constants.ObjectNameCookingRange => EUT::RangeOven, - Constants.ObjectNameMiscGrill => EUT::Grill, - Constants.ObjectNameMiscLighting => EUT::Lighting, - Constants.ObjectNameMiscFireplace => EUT::Fireplace, - Constants.ObjectNameMiscPoolHeater => EUT::PoolHeater, - Constants.ObjectNameMiscHotTubHeater => EUT::HotTubHeater, - Constants.ObjectNameMechanicalVentilationPreheating => EUT::MechVentPreheat, - Constants.ObjectNameMechanicalVentilationPrecooling => EUT::MechVentPrecool }[object.to_OtherEquipment.get.endUseSubcategory] + object = object.to_OtherEquipment.get + subcategory = object.endUseSubcategory + fuel = object.fuelType + end_use = nil + { Constants.ObjectNameClothesDryer => EUT::ClothesDryer, + Constants.ObjectNameCookingRange => EUT::RangeOven, + Constants.ObjectNameMiscGrill => EUT::Grill, + Constants.ObjectNameMiscLighting => EUT::Lighting, + Constants.ObjectNameMiscFireplace => EUT::Fireplace, + Constants.ObjectNameMiscPoolHeater => EUT::PoolHeater, + Constants.ObjectNameMiscPermanentSpaHeater => EUT::PermanentSpaHeater, + Constants.ObjectNameMechanicalVentilationPreheating => EUT::MechVentPreheat, + Constants.ObjectNameMechanicalVentilationPrecooling => EUT::MechVentPrecool, + Constants.ObjectNameWaterHeaterAdjustment => EUT::HotWater, + Constants.ObjectNameBatteryLossesAdjustment => EUT::Battery }.each do |obj_name, eut| + next unless subcategory.start_with? obj_name + fail 'Unepected error: multiple matches.' unless end_use.nil? + + end_use = eut + end + if not end_use.nil? - return { [to_ft[fuel], end_use] => ["Other Equipment #{fuel} Energy"] } + # Use Output:Meter instead of Output:Variable because they incorporate thermal zone multipliers + if object.space.is_initialized + zone_name = object.space.get.thermalZone.get.name.to_s.upcase + return { [to_ft[fuel], end_use] => ["#{subcategory}:InteriorEquipment:#{fuel}:Zone:#{zone_name}"] } + else + return { [to_ft[fuel], end_use] => ["#{subcategory}:InteriorEquipment:#{fuel}"] } + end end elsif object.to_ZoneHVACDehumidifierDX.is_initialized return { [FT::Elec, EUT::Dehumidifier] => ["Zone Dehumidifier #{EPlus::FuelTypeElectricity} Energy"] } elsif object.to_EnergyManagementSystemOutputVariable.is_initialized - if object.name.to_s.end_with? Constants.ObjectNameFanPumpDisaggregatePrimaryHeat + if object_type == Constants.ObjectNameFanPumpDisaggregatePrimaryHeat return { [FT::Elec, EUT::HeatingFanPump] => [object.name.to_s] } - elsif object.name.to_s.end_with? Constants.ObjectNameFanPumpDisaggregateBackupHeat + elsif object_type == Constants.ObjectNameFanPumpDisaggregateBackupHeat return { [FT::Elec, EUT::HeatingHeatPumpBackupFanPump] => [object.name.to_s] } - elsif object.name.to_s.end_with? Constants.ObjectNameFanPumpDisaggregateCool + elsif object_type == Constants.ObjectNameFanPumpDisaggregateCool return { [FT::Elec, EUT::CoolingFanPump] => [object.name.to_s] } - elsif object.name.to_s.include? Constants.ObjectNameWaterHeaterAdjustment(nil) - fuel = object.additionalProperties.getFeatureAsString('FuelType').get - return { [to_ft[fuel], EUT::HotWater] => [object.name.to_s] } - elsif object.name.to_s.include? Constants.ObjectNameBatteryLossesAdjustment(nil) - return { [FT::Elec, EUT::Battery] => [object.name.to_s] } - elsif object.name.to_s.include? Constants.ObjectNameBoilerPilotLight(nil) - fuel = object.additionalProperties.getFeatureAsString('FuelType').get - return { [to_ft[fuel], EUT::Heating] => [object.name.to_s] } else return { ems: [object.name.to_s] } end @@ -2637,7 +2940,7 @@ def get_object_output_variables_by_key(model, object, sys_id, class_name) if object.additionalProperties.getFeatureAsBoolean('IsCombiBoiler').is_initialized is_combi_boiler = object.additionalProperties.getFeatureAsBoolean('IsCombiBoiler').get end - if capacity == 0 && object.name.to_s.include?(Constants.ObjectNameSolarHotWater) + if capacity == 0 && object_type == Constants.ObjectNameSolarHotWater return { LT::HotWaterSolarThermal => ['Water Heater Use Side Heat Transfer Energy'] } elsif capacity > 0 || is_combi_boiler # Active water heater only (e.g., exclude desuperheater and solar thermal storage tanks) return { LT::HotWaterTankLosses => ['Water Heater Heat Loss Energy'] } @@ -2650,27 +2953,36 @@ def get_object_output_variables_by_key(model, object, sys_id, class_name) return { LT::HotWaterDesuperheater => ['Water Heater Heating Energy'] } elsif object.to_CoilHeatingGas.is_initialized || object.to_CoilHeatingElectric.is_initialized - if object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').is_initialized - if object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').get - return { LT::HeatingHeatPumpBackup => ['Heating Coil Heating Energy'] } - end + if object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').is_initialized && object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').get + return { LT::HeatingHeatPumpBackup => ['Heating Coil Heating Energy'] } end elsif object.to_ZoneHVACBaseboardConvectiveElectric.is_initialized || object.to_ZoneHVACBaseboardConvectiveWater.is_initialized - if object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').is_initialized - if object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').get - return { LT::HeatingHeatPumpBackup => ['Baseboard Total Heating Energy'] } - end + if object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').is_initialized && object.additionalProperties.getFeatureAsBoolean('IsHeatPumpBackup').get + return { LT::HeatingHeatPumpBackup => ['Baseboard Total Heating Energy'] } end elsif object.to_EnergyManagementSystemOutputVariable.is_initialized - if object.name.to_s.end_with? Constants.ObjectNameFanPumpDisaggregateBackupHeat + if object_type == Constants.ObjectNameFanPumpDisaggregateBackupHeat # Fan/pump energy is contributing to the load return { LT::HeatingHeatPumpBackup => [object.name.to_s] } end end + elsif class_name == RT + + # Resilience + + if object.to_ElectricLoadCenterStorageLiIonNMCBattery.is_initialized + return { RT::Battery => ['Electric Storage Charge Fraction'] } + + elsif object.to_OtherEquipment.is_initialized + if object_type == Constants.ObjectNameBatteryLossesAdjustment + return { RT::Battery => ["Other Equipment #{EPlus::FuelTypeElectricity} Energy"] } + end + + end end return {} diff --git a/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.xml b/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.xml index b4cde8ac..9154fd44 100644 --- a/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.xml +++ b/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.xml @@ -1,10 +1,10 @@ - 3.0 + 3.1 report_simulation_output df9d170c-c21a-4130-866d-0d46b06073fd - 5362758c-ff55-4684-b0aa-16341d1ada75 - 20230502T172559Z + be0a8583-ee3d-4ba1-b96a-5670a43777ae + 2023-11-17T15:16:05Z 9BF1E6AC ReportSimulationOutput HPXML Simulation Output Report @@ -304,6 +304,25 @@
+ + include_annual_resilience + Generate Annual Output: Resilience + Generates annual resilience outputs. + Boolean + false + false + true + + + true + true + + + false + false + + + timeseries_frequency Timeseries Reporting Frequency @@ -601,6 +620,25 @@
+ + include_timeseries_resilience + Generate Timeseries Output: Resilience + Generates timeseries resilience outputs. + Boolean + false + false + false + + + true + true + + + false + false + + + timeseries_timestamp_convention Generate Timeseries Output: Timestamp Convention @@ -691,7 +729,1163 @@ false - + + + energy_use_total_m_btu + energy_use_total_m_btu + energy_use_total_m_btu + Double + false + + + energy_use_net_m_btu + energy_use_net_m_btu + energy_use_net_m_btu + Double + false + + + fuel_use_electricity_total_m_btu + fuel_use_electricity_total_m_btu + fuel_use_electricity_total_m_btu + Double + false + + + fuel_use_natural_gas_total_m_btu + fuel_use_natural_gas_total_m_btu + fuel_use_natural_gas_total_m_btu + Double + false + + + fuel_use_fuel_oil_total_m_btu + fuel_use_fuel_oil_total_m_btu + fuel_use_fuel_oil_total_m_btu + Double + false + + + fuel_use_propane_total_m_btu + fuel_use_propane_total_m_btu + fuel_use_propane_total_m_btu + Double + false + + + fuel_use_wood_cord_total_m_btu + fuel_use_wood_cord_total_m_btu + fuel_use_wood_cord_total_m_btu + Double + false + + + fuel_use_wood_pellets_total_m_btu + fuel_use_wood_pellets_total_m_btu + fuel_use_wood_pellets_total_m_btu + Double + false + + + fuel_use_coal_total_m_btu + fuel_use_coal_total_m_btu + fuel_use_coal_total_m_btu + Double + false + + + end_use_electricity_heating_m_btu + end_use_electricity_heating_m_btu + end_use_electricity_heating_m_btu + Double + false + + + end_use_electricity_heating_fans_pumps_m_btu + end_use_electricity_heating_fans_pumps_m_btu + end_use_electricity_heating_fans_pumps_m_btu + Double + false + + + end_use_electricity_heating_heat_pump_backup_m_btu + end_use_electricity_heating_heat_pump_backup_m_btu + end_use_electricity_heating_heat_pump_backup_m_btu + Double + false + + + end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu + end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu + end_use_electricity_heating_heat_pump_backup_fans_pumps_m_btu + Double + false + + + end_use_electricity_cooling_m_btu + end_use_electricity_cooling_m_btu + end_use_electricity_cooling_m_btu + Double + false + + + end_use_electricity_cooling_fans_pumps_m_btu + end_use_electricity_cooling_fans_pumps_m_btu + end_use_electricity_cooling_fans_pumps_m_btu + Double + false + + + end_use_electricity_hot_water_m_btu + end_use_electricity_hot_water_m_btu + end_use_electricity_hot_water_m_btu + Double + false + + + end_use_electricity_hot_water_recirc_pump_m_btu + end_use_electricity_hot_water_recirc_pump_m_btu + end_use_electricity_hot_water_recirc_pump_m_btu + Double + false + + + end_use_electricity_hot_water_solar_thermal_pump_m_btu + end_use_electricity_hot_water_solar_thermal_pump_m_btu + end_use_electricity_hot_water_solar_thermal_pump_m_btu + Double + false + + + end_use_electricity_lighting_interior_m_btu + end_use_electricity_lighting_interior_m_btu + end_use_electricity_lighting_interior_m_btu + Double + false + + + end_use_electricity_lighting_garage_m_btu + end_use_electricity_lighting_garage_m_btu + end_use_electricity_lighting_garage_m_btu + Double + false + + + end_use_electricity_lighting_exterior_m_btu + end_use_electricity_lighting_exterior_m_btu + end_use_electricity_lighting_exterior_m_btu + Double + false + + + end_use_electricity_mech_vent_m_btu + end_use_electricity_mech_vent_m_btu + end_use_electricity_mech_vent_m_btu + Double + false + + + end_use_electricity_mech_vent_preheating_m_btu + end_use_electricity_mech_vent_preheating_m_btu + end_use_electricity_mech_vent_preheating_m_btu + Double + false + + + end_use_electricity_mech_vent_precooling_m_btu + end_use_electricity_mech_vent_precooling_m_btu + end_use_electricity_mech_vent_precooling_m_btu + Double + false + + + end_use_electricity_whole_house_fan_m_btu + end_use_electricity_whole_house_fan_m_btu + end_use_electricity_whole_house_fan_m_btu + Double + false + + + end_use_electricity_refrigerator_m_btu + end_use_electricity_refrigerator_m_btu + end_use_electricity_refrigerator_m_btu + Double + false + + + end_use_electricity_freezer_m_btu + end_use_electricity_freezer_m_btu + end_use_electricity_freezer_m_btu + Double + false + + + end_use_electricity_dehumidifier_m_btu + end_use_electricity_dehumidifier_m_btu + end_use_electricity_dehumidifier_m_btu + Double + false + + + end_use_electricity_dishwasher_m_btu + end_use_electricity_dishwasher_m_btu + end_use_electricity_dishwasher_m_btu + Double + false + + + end_use_electricity_clothes_washer_m_btu + end_use_electricity_clothes_washer_m_btu + end_use_electricity_clothes_washer_m_btu + Double + false + + + end_use_electricity_clothes_dryer_m_btu + end_use_electricity_clothes_dryer_m_btu + end_use_electricity_clothes_dryer_m_btu + Double + false + + + end_use_electricity_range_oven_m_btu + end_use_electricity_range_oven_m_btu + end_use_electricity_range_oven_m_btu + Double + false + + + end_use_electricity_ceiling_fan_m_btu + end_use_electricity_ceiling_fan_m_btu + end_use_electricity_ceiling_fan_m_btu + Double + false + + + end_use_electricity_television_m_btu + end_use_electricity_television_m_btu + end_use_electricity_television_m_btu + Double + false + + + end_use_electricity_plug_loads_m_btu + end_use_electricity_plug_loads_m_btu + end_use_electricity_plug_loads_m_btu + Double + false + + + end_use_electricity_electric_vehicle_charging_m_btu + end_use_electricity_electric_vehicle_charging_m_btu + end_use_electricity_electric_vehicle_charging_m_btu + Double + false + + + end_use_electricity_well_pump_m_btu + end_use_electricity_well_pump_m_btu + end_use_electricity_well_pump_m_btu + Double + false + + + end_use_electricity_pool_heater_m_btu + end_use_electricity_pool_heater_m_btu + end_use_electricity_pool_heater_m_btu + Double + false + + + end_use_electricity_pool_pump_m_btu + end_use_electricity_pool_pump_m_btu + end_use_electricity_pool_pump_m_btu + Double + false + + + end_use_electricity_permanent_spa_heater_m_btu + end_use_electricity_permanent_spa_heater_m_btu + end_use_electricity_permanent_spa_heater_m_btu + Double + false + + + end_use_electricity_permanent_spa_pump_m_btu + end_use_electricity_permanent_spa_pump_m_btu + end_use_electricity_permanent_spa_pump_m_btu + Double + false + + + end_use_electricity_pv_m_btu + end_use_electricity_pv_m_btu + end_use_electricity_pv_m_btu + Double + false + + + end_use_electricity_generator_m_btu + end_use_electricity_generator_m_btu + end_use_electricity_generator_m_btu + Double + false + + + end_use_electricity_battery_m_btu + end_use_electricity_battery_m_btu + end_use_electricity_battery_m_btu + Double + false + + + end_use_natural_gas_heating_m_btu + end_use_natural_gas_heating_m_btu + end_use_natural_gas_heating_m_btu + Double + false + + + end_use_natural_gas_heating_heat_pump_backup_m_btu + end_use_natural_gas_heating_heat_pump_backup_m_btu + end_use_natural_gas_heating_heat_pump_backup_m_btu + Double + false + + + end_use_natural_gas_hot_water_m_btu + end_use_natural_gas_hot_water_m_btu + end_use_natural_gas_hot_water_m_btu + Double + false + + + end_use_natural_gas_clothes_dryer_m_btu + end_use_natural_gas_clothes_dryer_m_btu + end_use_natural_gas_clothes_dryer_m_btu + Double + false + + + end_use_natural_gas_range_oven_m_btu + end_use_natural_gas_range_oven_m_btu + end_use_natural_gas_range_oven_m_btu + Double + false + + + end_use_natural_gas_mech_vent_preheating_m_btu + end_use_natural_gas_mech_vent_preheating_m_btu + end_use_natural_gas_mech_vent_preheating_m_btu + Double + false + + + end_use_natural_gas_pool_heater_m_btu + end_use_natural_gas_pool_heater_m_btu + end_use_natural_gas_pool_heater_m_btu + Double + false + + + end_use_natural_gas_permanent_spa_heater_m_btu + end_use_natural_gas_permanent_spa_heater_m_btu + end_use_natural_gas_permanent_spa_heater_m_btu + Double + false + + + end_use_natural_gas_grill_m_btu + end_use_natural_gas_grill_m_btu + end_use_natural_gas_grill_m_btu + Double + false + + + end_use_natural_gas_lighting_m_btu + end_use_natural_gas_lighting_m_btu + end_use_natural_gas_lighting_m_btu + Double + false + + + end_use_natural_gas_fireplace_m_btu + end_use_natural_gas_fireplace_m_btu + end_use_natural_gas_fireplace_m_btu + Double + false + + + end_use_natural_gas_generator_m_btu + end_use_natural_gas_generator_m_btu + end_use_natural_gas_generator_m_btu + Double + false + + + end_use_fuel_oil_heating_m_btu + end_use_fuel_oil_heating_m_btu + end_use_fuel_oil_heating_m_btu + Double + false + + + end_use_fuel_oil_heating_heat_pump_backup_m_btu + end_use_fuel_oil_heating_heat_pump_backup_m_btu + end_use_fuel_oil_heating_heat_pump_backup_m_btu + Double + false + + + end_use_fuel_oil_hot_water_m_btu + end_use_fuel_oil_hot_water_m_btu + end_use_fuel_oil_hot_water_m_btu + Double + false + + + end_use_fuel_oil_clothes_dryer_m_btu + end_use_fuel_oil_clothes_dryer_m_btu + end_use_fuel_oil_clothes_dryer_m_btu + Double + false + + + end_use_fuel_oil_range_oven_m_btu + end_use_fuel_oil_range_oven_m_btu + end_use_fuel_oil_range_oven_m_btu + Double + false + + + end_use_fuel_oil_mech_vent_preheating_m_btu + end_use_fuel_oil_mech_vent_preheating_m_btu + end_use_fuel_oil_mech_vent_preheating_m_btu + Double + false + + + end_use_fuel_oil_grill_m_btu + end_use_fuel_oil_grill_m_btu + end_use_fuel_oil_grill_m_btu + Double + false + + + end_use_fuel_oil_lighting_m_btu + end_use_fuel_oil_lighting_m_btu + end_use_fuel_oil_lighting_m_btu + Double + false + + + end_use_fuel_oil_fireplace_m_btu + end_use_fuel_oil_fireplace_m_btu + end_use_fuel_oil_fireplace_m_btu + Double + false + + + end_use_fuel_oil_generator_m_btu + end_use_fuel_oil_generator_m_btu + end_use_fuel_oil_generator_m_btu + Double + false + + + end_use_propane_heating_m_btu + end_use_propane_heating_m_btu + end_use_propane_heating_m_btu + Double + false + + + end_use_propane_heating_heat_pump_backup_m_btu + end_use_propane_heating_heat_pump_backup_m_btu + end_use_propane_heating_heat_pump_backup_m_btu + Double + false + + + end_use_propane_hot_water_m_btu + end_use_propane_hot_water_m_btu + end_use_propane_hot_water_m_btu + Double + false + + + end_use_propane_clothes_dryer_m_btu + end_use_propane_clothes_dryer_m_btu + end_use_propane_clothes_dryer_m_btu + Double + false + + + end_use_propane_range_oven_m_btu + end_use_propane_range_oven_m_btu + end_use_propane_range_oven_m_btu + Double + false + + + end_use_propane_mech_vent_preheating_m_btu + end_use_propane_mech_vent_preheating_m_btu + end_use_propane_mech_vent_preheating_m_btu + Double + false + + + end_use_propane_grill_m_btu + end_use_propane_grill_m_btu + end_use_propane_grill_m_btu + Double + false + + + end_use_propane_lighting_m_btu + end_use_propane_lighting_m_btu + end_use_propane_lighting_m_btu + Double + false + + + end_use_propane_fireplace_m_btu + end_use_propane_fireplace_m_btu + end_use_propane_fireplace_m_btu + Double + false + + + end_use_propane_generator_m_btu + end_use_propane_generator_m_btu + end_use_propane_generator_m_btu + Double + false + + + end_use_wood_cord_heating_m_btu + end_use_wood_cord_heating_m_btu + end_use_wood_cord_heating_m_btu + Double + false + + + end_use_wood_cord_heating_heat_pump_backup_m_btu + end_use_wood_cord_heating_heat_pump_backup_m_btu + end_use_wood_cord_heating_heat_pump_backup_m_btu + Double + false + + + end_use_wood_cord_hot_water_m_btu + end_use_wood_cord_hot_water_m_btu + end_use_wood_cord_hot_water_m_btu + Double + false + + + end_use_wood_cord_clothes_dryer_m_btu + end_use_wood_cord_clothes_dryer_m_btu + end_use_wood_cord_clothes_dryer_m_btu + Double + false + + + end_use_wood_cord_range_oven_m_btu + end_use_wood_cord_range_oven_m_btu + end_use_wood_cord_range_oven_m_btu + Double + false + + + end_use_wood_cord_mech_vent_preheating_m_btu + end_use_wood_cord_mech_vent_preheating_m_btu + end_use_wood_cord_mech_vent_preheating_m_btu + Double + false + + + end_use_wood_cord_grill_m_btu + end_use_wood_cord_grill_m_btu + end_use_wood_cord_grill_m_btu + Double + false + + + end_use_wood_cord_lighting_m_btu + end_use_wood_cord_lighting_m_btu + end_use_wood_cord_lighting_m_btu + Double + false + + + end_use_wood_cord_fireplace_m_btu + end_use_wood_cord_fireplace_m_btu + end_use_wood_cord_fireplace_m_btu + Double + false + + + end_use_wood_cord_generator_m_btu + end_use_wood_cord_generator_m_btu + end_use_wood_cord_generator_m_btu + Double + false + + + end_use_wood_pellets_heating_m_btu + end_use_wood_pellets_heating_m_btu + end_use_wood_pellets_heating_m_btu + Double + false + + + end_use_wood_pellets_heating_heat_pump_backup_m_btu + end_use_wood_pellets_heating_heat_pump_backup_m_btu + end_use_wood_pellets_heating_heat_pump_backup_m_btu + Double + false + + + end_use_wood_pellets_hot_water_m_btu + end_use_wood_pellets_hot_water_m_btu + end_use_wood_pellets_hot_water_m_btu + Double + false + + + end_use_wood_pellets_clothes_dryer_m_btu + end_use_wood_pellets_clothes_dryer_m_btu + end_use_wood_pellets_clothes_dryer_m_btu + Double + false + + + end_use_wood_pellets_range_oven_m_btu + end_use_wood_pellets_range_oven_m_btu + end_use_wood_pellets_range_oven_m_btu + Double + false + + + end_use_wood_pellets_mech_vent_preheating_m_btu + end_use_wood_pellets_mech_vent_preheating_m_btu + end_use_wood_pellets_mech_vent_preheating_m_btu + Double + false + + + end_use_wood_pellets_grill_m_btu + end_use_wood_pellets_grill_m_btu + end_use_wood_pellets_grill_m_btu + Double + false + + + end_use_wood_pellets_lighting_m_btu + end_use_wood_pellets_lighting_m_btu + end_use_wood_pellets_lighting_m_btu + Double + false + + + end_use_wood_pellets_fireplace_m_btu + end_use_wood_pellets_fireplace_m_btu + end_use_wood_pellets_fireplace_m_btu + Double + false + + + end_use_wood_pellets_generator_m_btu + end_use_wood_pellets_generator_m_btu + end_use_wood_pellets_generator_m_btu + Double + false + + + end_use_coal_heating_m_btu + end_use_coal_heating_m_btu + end_use_coal_heating_m_btu + Double + false + + + end_use_coal_heating_heat_pump_backup_m_btu + end_use_coal_heating_heat_pump_backup_m_btu + end_use_coal_heating_heat_pump_backup_m_btu + Double + false + + + end_use_coal_hot_water_m_btu + end_use_coal_hot_water_m_btu + end_use_coal_hot_water_m_btu + Double + false + + + end_use_coal_clothes_dryer_m_btu + end_use_coal_clothes_dryer_m_btu + end_use_coal_clothes_dryer_m_btu + Double + false + + + end_use_coal_range_oven_m_btu + end_use_coal_range_oven_m_btu + end_use_coal_range_oven_m_btu + Double + false + + + end_use_coal_mech_vent_preheating_m_btu + end_use_coal_mech_vent_preheating_m_btu + end_use_coal_mech_vent_preheating_m_btu + Double + false + + + end_use_coal_grill_m_btu + end_use_coal_grill_m_btu + end_use_coal_grill_m_btu + Double + false + + + end_use_coal_lighting_m_btu + end_use_coal_lighting_m_btu + end_use_coal_lighting_m_btu + Double + false + + + end_use_coal_fireplace_m_btu + end_use_coal_fireplace_m_btu + end_use_coal_fireplace_m_btu + Double + false + + + end_use_coal_generator_m_btu + end_use_coal_generator_m_btu + end_use_coal_generator_m_btu + Double + false + + + load_heating_delivered_m_btu + load_heating_delivered_m_btu + load_heating_delivered_m_btu + Double + false + + + load_heating_heat_pump_backup_m_btu + load_heating_heat_pump_backup_m_btu + load_heating_heat_pump_backup_m_btu + Double + false + + + load_cooling_delivered_m_btu + load_cooling_delivered_m_btu + load_cooling_delivered_m_btu + Double + false + + + load_hot_water_delivered_m_btu + load_hot_water_delivered_m_btu + load_hot_water_delivered_m_btu + Double + false + + + load_hot_water_tank_losses_m_btu + load_hot_water_tank_losses_m_btu + load_hot_water_tank_losses_m_btu + Double + false + + + load_hot_water_desuperheater_m_btu + load_hot_water_desuperheater_m_btu + load_hot_water_desuperheater_m_btu + Double + false + + + load_hot_water_solar_thermal_m_btu + load_hot_water_solar_thermal_m_btu + load_hot_water_solar_thermal_m_btu + Double + false + + + unmet_hours_heating_hr + unmet_hours_heating_hr + unmet_hours_heating_hr + Double + false + + + unmet_hours_cooling_hr + unmet_hours_cooling_hr + unmet_hours_cooling_hr + Double + false + + + peak_electricity_winter_total_w + peak_electricity_winter_total_w + peak_electricity_winter_total_w + Double + false + + + peak_electricity_summer_total_w + peak_electricity_summer_total_w + peak_electricity_summer_total_w + Double + false + + + peak_electricity_annual_total_w + peak_electricity_annual_total_w + peak_electricity_annual_total_w + Double + false + + + peak_load_heating_delivered_k_btu_hr + peak_load_heating_delivered_k_btu_hr + peak_load_heating_delivered_k_btu_hr + Double + false + + + peak_load_cooling_delivered_k_btu_hr + peak_load_cooling_delivered_k_btu_hr + peak_load_cooling_delivered_k_btu_hr + Double + false + + + component_load_heating_roofs_m_btu + component_load_heating_roofs_m_btu + component_load_heating_roofs_m_btu + Double + false + + + component_load_heating_ceilings_m_btu + component_load_heating_ceilings_m_btu + component_load_heating_ceilings_m_btu + Double + false + + + component_load_heating_walls_m_btu + component_load_heating_walls_m_btu + component_load_heating_walls_m_btu + Double + false + + + component_load_heating_rim_joists_m_btu + component_load_heating_rim_joists_m_btu + component_load_heating_rim_joists_m_btu + Double + false + + + component_load_heating_foundation_walls_m_btu + component_load_heating_foundation_walls_m_btu + component_load_heating_foundation_walls_m_btu + Double + false + + + component_load_heating_doors_m_btu + component_load_heating_doors_m_btu + component_load_heating_doors_m_btu + Double + false + + + component_load_heating_windows_conduction_m_btu + component_load_heating_windows_conduction_m_btu + component_load_heating_windows_conduction_m_btu + Double + false + + + component_load_heating_windows_solar_m_btu + component_load_heating_windows_solar_m_btu + component_load_heating_windows_solar_m_btu + Double + false + + + component_load_heating_skylights_conduction_m_btu + component_load_heating_skylights_conduction_m_btu + component_load_heating_skylights_conduction_m_btu + Double + false + + + component_load_heating_skylights_solar_m_btu + component_load_heating_skylights_solar_m_btu + component_load_heating_skylights_solar_m_btu + Double + false + + + component_load_heating_floors_m_btu + component_load_heating_floors_m_btu + component_load_heating_floors_m_btu + Double + false + + + component_load_heating_slabs_m_btu + component_load_heating_slabs_m_btu + component_load_heating_slabs_m_btu + Double + false + + + component_load_heating_internal_mass_m_btu + component_load_heating_internal_mass_m_btu + component_load_heating_internal_mass_m_btu + Double + false + + + component_load_heating_infiltration_m_btu + component_load_heating_infiltration_m_btu + component_load_heating_infiltration_m_btu + Double + false + + + component_load_heating_natural_ventilation_m_btu + component_load_heating_natural_ventilation_m_btu + component_load_heating_natural_ventilation_m_btu + Double + false + + + component_load_heating_mechanical_ventilation_m_btu + component_load_heating_mechanical_ventilation_m_btu + component_load_heating_mechanical_ventilation_m_btu + Double + false + + + component_load_heating_whole_house_fan_m_btu + component_load_heating_whole_house_fan_m_btu + component_load_heating_whole_house_fan_m_btu + Double + false + + + component_load_heating_ducts_m_btu + component_load_heating_ducts_m_btu + component_load_heating_ducts_m_btu + Double + false + + + component_load_heating_internal_gains_m_btu + component_load_heating_internal_gains_m_btu + component_load_heating_internal_gains_m_btu + Double + false + + + component_load_heating_lighting_m_btu + component_load_heating_lighting_m_btu + component_load_heating_lighting_m_btu + Double + false + + + component_load_cooling_roofs_m_btu + component_load_cooling_roofs_m_btu + component_load_cooling_roofs_m_btu + Double + false + + + component_load_cooling_ceilings_m_btu + component_load_cooling_ceilings_m_btu + component_load_cooling_ceilings_m_btu + Double + false + + + component_load_cooling_walls_m_btu + component_load_cooling_walls_m_btu + component_load_cooling_walls_m_btu + Double + false + + + component_load_cooling_rim_joists_m_btu + component_load_cooling_rim_joists_m_btu + component_load_cooling_rim_joists_m_btu + Double + false + + + component_load_cooling_foundation_walls_m_btu + component_load_cooling_foundation_walls_m_btu + component_load_cooling_foundation_walls_m_btu + Double + false + + + component_load_cooling_doors_m_btu + component_load_cooling_doors_m_btu + component_load_cooling_doors_m_btu + Double + false + + + component_load_cooling_windows_conduction_m_btu + component_load_cooling_windows_conduction_m_btu + component_load_cooling_windows_conduction_m_btu + Double + false + + + component_load_cooling_windows_solar_m_btu + component_load_cooling_windows_solar_m_btu + component_load_cooling_windows_solar_m_btu + Double + false + + + component_load_cooling_skylights_conduction_m_btu + component_load_cooling_skylights_conduction_m_btu + component_load_cooling_skylights_conduction_m_btu + Double + false + + + component_load_cooling_skylights_solar_m_btu + component_load_cooling_skylights_solar_m_btu + component_load_cooling_skylights_solar_m_btu + Double + false + + + component_load_cooling_floors_m_btu + component_load_cooling_floors_m_btu + component_load_cooling_floors_m_btu + Double + false + + + component_load_cooling_slabs_m_btu + component_load_cooling_slabs_m_btu + component_load_cooling_slabs_m_btu + Double + false + + + component_load_cooling_internal_mass_m_btu + component_load_cooling_internal_mass_m_btu + component_load_cooling_internal_mass_m_btu + Double + false + + + component_load_cooling_infiltration_m_btu + component_load_cooling_infiltration_m_btu + component_load_cooling_infiltration_m_btu + Double + false + + + component_load_cooling_natural_ventilation_m_btu + component_load_cooling_natural_ventilation_m_btu + component_load_cooling_natural_ventilation_m_btu + Double + false + + + component_load_cooling_mechanical_ventilation_m_btu + component_load_cooling_mechanical_ventilation_m_btu + component_load_cooling_mechanical_ventilation_m_btu + Double + false + + + component_load_cooling_whole_house_fan_m_btu + component_load_cooling_whole_house_fan_m_btu + component_load_cooling_whole_house_fan_m_btu + Double + false + + + component_load_cooling_ducts_m_btu + component_load_cooling_ducts_m_btu + component_load_cooling_ducts_m_btu + Double + false + + + component_load_cooling_internal_gains_m_btu + component_load_cooling_internal_gains_m_btu + component_load_cooling_internal_gains_m_btu + Double + false + + + component_load_cooling_lighting_m_btu + component_load_cooling_lighting_m_btu + component_load_cooling_lighting_m_btu + Double + false + + + hot_water_clothes_washer_gal + hot_water_clothes_washer_gal + hot_water_clothes_washer_gal + Double + false + + + hot_water_dishwasher_gal + hot_water_dishwasher_gal + hot_water_dishwasher_gal + Double + false + + + hot_water_fixtures_gal + hot_water_fixtures_gal + hot_water_fixtures_gal + Double + false + + + hot_water_distribution_waste_gal + hot_water_distribution_waste_gal + hot_water_distribution_waste_gal + Double + false + + + resilience_battery_hr + resilience_battery_hr + resilience_battery_hr + Double + false + + Reporting.QAQC @@ -715,10 +1909,16 @@ - output_report_test.rb - rb - test - 5CECB67A + README.md + md + readme + 86FD2C61 + + + README.md.erb + erb + readmeerb + 513F28E9 @@ -729,7 +1929,13 @@ measure.rb rb script - E24243D5 + 86EC8E47 + + + test_report_sim_output.rb + rb + test + 637B509E diff --git a/example_files/resources/hpxml-measures/ReportSimulationOutput/tests/output_report_test.rb b/example_files/resources/hpxml-measures/ReportSimulationOutput/tests/test_report_sim_output.rb similarity index 81% rename from example_files/resources/hpxml-measures/ReportSimulationOutput/tests/output_report_test.rb rename to example_files/resources/hpxml-measures/ReportSimulationOutput/tests/test_report_sim_output.rb index 47f562d7..cf96e8f2 100644 --- a/example_files/resources/hpxml-measures/ReportSimulationOutput/tests/output_report_test.rb +++ b/example_files/resources/hpxml-measures/ReportSimulationOutput/tests/test_report_sim_output.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true require_relative '../../HPXMLtoOpenStudio/resources/minitest_helper' @@ -10,10 +15,19 @@ require_relative '../../HPXMLtoOpenStudio/resources/constants.rb' require_relative '../../HPXMLtoOpenStudio/resources/version.rb' require 'oga' +require 'json' -class ReportSimulationOutputTest < MiniTest::Test +class ReportSimulationOutputTest < Minitest::Test def setup @tmp_hpxml_path = File.join(File.dirname(__FILE__), 'tmp.xml') + + # Obtain measure.xml outputs once + measure_xml_path = File.join(File.dirname(__FILE__), '..', 'measure.xml') + doc = XMLHelper.parse_file(measure_xml_path) + @measure_xml_outputs = [] + XMLHelper.get_elements(doc, '//measure/outputs/output').each do |el| + @measure_xml_outputs << XMLHelper.get_value(el, 'display_name', :string) + end end def teardown @@ -61,8 +75,8 @@ def teardown "End Use: #{FT::Elec}: #{EUT::WellPump} (MBtu)", "End Use: #{FT::Elec}: #{EUT::PoolHeater} (MBtu)", "End Use: #{FT::Elec}: #{EUT::PoolPump} (MBtu)", - "End Use: #{FT::Elec}: #{EUT::HotTubHeater} (MBtu)", - "End Use: #{FT::Elec}: #{EUT::HotTubPump} (MBtu)", + "End Use: #{FT::Elec}: #{EUT::PermanentSpaHeater} (MBtu)", + "End Use: #{FT::Elec}: #{EUT::PermanentSpaPump} (MBtu)", "End Use: #{FT::Elec}: #{EUT::PV} (MBtu)", "End Use: #{FT::Elec}: #{EUT::Generator} (MBtu)", "End Use: #{FT::Elec}: #{EUT::Battery} (MBtu)", @@ -73,7 +87,7 @@ def teardown "End Use: #{FT::Gas}: #{EUT::ClothesDryer} (MBtu)", "End Use: #{FT::Gas}: #{EUT::RangeOven} (MBtu)", "End Use: #{FT::Gas}: #{EUT::PoolHeater} (MBtu)", - "End Use: #{FT::Gas}: #{EUT::HotTubHeater} (MBtu)", + "End Use: #{FT::Gas}: #{EUT::PermanentSpaHeater} (MBtu)", "End Use: #{FT::Gas}: #{EUT::Grill} (MBtu)", "End Use: #{FT::Gas}: #{EUT::Lighting} (MBtu)", "End Use: #{FT::Gas}: #{EUT::Fireplace} (MBtu)", @@ -144,6 +158,7 @@ def teardown "Unmet Hours: #{UHT::Cooling} (hr)", "Peak Electricity: #{PFT::Winter} #{TE::Total} (W)", "Peak Electricity: #{PFT::Summer} #{TE::Total} (W)", + "Peak Electricity: #{PFT::Annual} #{TE::Total} (W)", "Peak Load: #{PLT::Heating} (kBtu/hr)", "Peak Load: #{PLT::Cooling} (kBtu/hr)", "Component Load: Heating: #{CLT::Roofs} (MBtu)", @@ -190,6 +205,7 @@ def teardown "Hot Water: #{HWT::Dishwasher} (gal)", "Hot Water: #{HWT::Fixtures} (gal)", "Hot Water: #{HWT::DistributionWaste} (gal)", + 'Resilience: Battery (hr)', 'HVAC Capacity: Cooling (Btu/h)', 'HVAC Capacity: Heating (Btu/h)', 'HVAC Capacity: Heat Pump Backup (Btu/h)', @@ -265,6 +281,10 @@ def teardown "Hot Water: #{HWT::DistributionWaste}", ] + BaseHPXMLTimeseriesColsResilience = [ + 'Resilience: Battery' + ] + BaseHPXMLTimeseriesColsTotalLoads = [ "Load: #{LT::Heating}", "Load: #{LT::Cooling}", @@ -311,7 +331,7 @@ def teardown BaseHPXMLTimeseriesColsZoneTemps = [ 'Temperature: Attic - Unvented', - 'Temperature: Living Space', + 'Temperature: Conditioned Space', 'Temperature: Heating Setpoint', 'Temperature: Cooling Setpoint', ] @@ -331,16 +351,13 @@ def teardown "Weather: #{WT::DirectSolar}", ] - BaseHPXMLTimeseriesColsStandardOutputVariables = [ - 'Zone People Occupant Count: Living Space', - 'Zone People Total Heating Energy: Living Space' - ] - - BaseHPXMLTimeseriesColsAdvancedOutputVariables = [ + BaseHPXMLTimeseriesColsEnergyPlusOutputVariables = [ + 'Zone People Occupant Count: Conditioned Space', + 'Zone People Total Heating Energy: Conditioned Space', 'Surface Construction Index: Door1', 'Surface Construction Index: Foundationwall1', 'Surface Construction Index: Floor1', - 'Surface Construction Index: Furniture Mass Living Space 1', + 'Surface Construction Index: Furniture Mass Conditioned Space 1', 'Surface Construction Index: Inferred Conditioned Ceiling', 'Surface Construction Index: Inferred Conditioned Floor', 'Surface Construction Index: Partition Wall Mass', @@ -443,8 +460,8 @@ def emission_annual_cols "Emissions: #{scenario}: #{FT::Elec}: #{EUT::WellPump} (lb)", "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PoolHeater} (lb)", "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PoolPump} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HotTubHeater} (lb)", - "Emissions: #{scenario}: #{FT::Elec}: #{EUT::HotTubPump} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PermanentSpaHeater} (lb)", + "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PermanentSpaPump} (lb)", "Emissions: #{scenario}: #{FT::Elec}: #{EUT::PV} (lb)", "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Generator} (lb)", "Emissions: #{scenario}: #{FT::Elec}: #{EUT::Battery} (lb)", @@ -454,7 +471,7 @@ def emission_annual_cols "Emissions: #{scenario}: #{FT::Gas}: #{EUT::ClothesDryer} (lb)", "Emissions: #{scenario}: #{FT::Gas}: #{EUT::RangeOven} (lb)", "Emissions: #{scenario}: #{FT::Gas}: #{EUT::PoolHeater} (lb)", - "Emissions: #{scenario}: #{FT::Gas}: #{EUT::HotTubHeater} (lb)", + "Emissions: #{scenario}: #{FT::Gas}: #{EUT::PermanentSpaHeater} (lb)", "Emissions: #{scenario}: #{FT::Gas}: #{EUT::Grill} (lb)", "Emissions: #{scenario}: #{FT::Gas}: #{EUT::Lighting} (lb)", "Emissions: #{scenario}: #{FT::Gas}: #{EUT::Fireplace} (lb)", @@ -581,14 +598,15 @@ def test_annual_only 'include_timeseries_component_loads' => false, 'include_timeseries_zone_temperatures' => false, 'include_timeseries_airflows' => false, - 'include_timeseries_weather' => false } + 'include_timeseries_weather' => false, + 'include_timeseries_resilience' => false } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(!File.exist?(timeseries_csv)) expected_annual_rows = AnnualRows actual_annual_rows = _get_actual_annual_rows(annual_csv) assert_equal(expected_annual_rows.sort, actual_annual_rows.keys.sort) - _check_for_runner_registered_values(File.join(File.dirname(annual_csv), 'results.json'), actual_annual_rows) + _check_runner_registered_values_and_measure_xml_outputs(actual_annual_rows) end def test_annual_only2 @@ -609,14 +627,15 @@ def test_annual_only2 'include_timeseries_component_loads' => true, 'include_timeseries_zone_temperatures' => true, 'include_timeseries_airflows' => true, - 'include_timeseries_weather' => true } + 'include_timeseries_weather' => true, + 'include_timeseries_resilience' => true } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(!File.exist?(timeseries_csv)) expected_annual_rows = AnnualRows + emission_annual_cols actual_annual_rows = _get_actual_annual_rows(annual_csv) assert_equal(expected_annual_rows.sort, actual_annual_rows.keys.sort) - _check_for_runner_registered_values(File.join(File.dirname(annual_csv), 'results.json'), actual_annual_rows) + _check_runner_registered_values_and_measure_xml_outputs(actual_annual_rows) end def test_annual_disabled_outputs @@ -635,7 +654,8 @@ def test_annual_disabled_outputs 'include_annual_peak_loads' => false, 'include_annual_component_loads' => false, 'include_annual_hot_water_uses' => false, - 'include_annual_hvac_summary' => false } + 'include_annual_hvac_summary' => false, + 'include_annual_resilience' => false } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(!File.exist?(timeseries_csv)) @@ -644,24 +664,6 @@ def test_annual_disabled_outputs end def test_timeseries_hourly_total_energy - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml'), - 'skip_validation' => true, - 'timeseries_frequency' => 'hourly', - 'include_timeseries_total_consumptions' => true } - annual_csv, timeseries_csv = _test_measure(args_hash) - assert(File.exist?(annual_csv)) - assert(File.exist?(timeseries_csv)) - expected_timeseries_cols = ['Time'] + BaseHPXMLTimeseriesColsEnergy - actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') - assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) - timeseries_rows = CSV.read(timeseries_csv) - assert_equal(8760, timeseries_rows.size - 2) - timeseries_cols = timeseries_rows.transpose - assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - _check_for_nonzero_avg_timeseries_value(timeseries_csv, ["Energy Use: #{TE::Total}"]) - end - - def test_timeseries_hourly_total_energy_pv args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-pv.xml'), 'skip_validation' => true, 'timeseries_frequency' => 'hourly', @@ -681,24 +683,6 @@ def test_timeseries_hourly_total_energy_pv end def test_timeseries_hourly_fuels - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml'), - 'skip_validation' => true, - 'timeseries_frequency' => 'hourly', - 'include_timeseries_fuel_consumptions' => true } - annual_csv, timeseries_csv = _test_measure(args_hash) - assert(File.exist?(annual_csv)) - assert(File.exist?(timeseries_csv)) - expected_timeseries_cols = ['Time'] + BaseHPXMLTimeseriesColsFuels - actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') - assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) - timeseries_rows = CSV.read(timeseries_csv) - assert_equal(8760, timeseries_rows.size - 2) - timeseries_cols = timeseries_rows.transpose - assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - _check_for_nonzero_avg_timeseries_value(timeseries_csv, ["Fuel Use: #{FT::Elec}: #{TE::Total}"]) - end - - def test_timeseries_hourly_fuels_pv args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-pv.xml'), 'skip_validation' => true, 'timeseries_frequency' => 'hourly', @@ -809,70 +793,6 @@ def test_timeseries_hourly_enduses_vacancy _check_for_nonzero_timeseries_values(timeseries_csv, ["End Use: #{FT::Elec}: #{EUT::Refrigerator}"]) end - def test_timeseries_hourly_enduses_power_outage - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-schedules-simple-power-outage.xml'), - 'skip_validation' => true, - 'timeseries_frequency' => 'hourly', - 'include_timeseries_end_use_consumptions' => true } - annual_csv, timeseries_csv = _test_measure(args_hash) - assert(File.exist?(annual_csv)) - assert(File.exist?(timeseries_csv)) - expected_timeseries_cols = ['Time'] + BaseHPXMLTimeseriesColsEndUses - actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') - assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) - timeseries_rows = CSV.read(timeseries_csv) - assert_equal(8760, timeseries_rows.size - 2) - timeseries_cols = timeseries_rows.transpose - assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - _check_for_zero_timeseries_values(timeseries_csv, ["End Use: #{FT::Elec}: #{EUT::PlugLoads}"], (31 + 28 + 31 + 30 + 31 + 30) * 24 + 4, (31 + 28 + 31 + 30 + 31 + 30 + 31) * 24 - 12) # Jul - end - - def test_timeseries_hourly_enduses_power_outage_natvent_availability - energy_use_total_col = "Energy Use: #{TE::Total}" - temperature_living_space_col = 'Temperature: Living Space' - - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-schedules-simple-power-outage.xml'), - 'skip_validation' => true, - 'timeseries_frequency' => 'hourly', - 'include_timeseries_total_consumptions' => true, - 'include_timeseries_zone_temperatures' => true } - _annual_csv, timeseries_csv = _test_measure(args_hash) - assert(File.exist?(timeseries_csv)) - values = _get_values(timeseries_csv, [energy_use_total_col, temperature_living_space_col]) - schedule_regular_total = values[energy_use_total_col].sum(0.0) - schedule_regular_temp = values[temperature_living_space_col].sum(0.0) / values[temperature_living_space_col].size - - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-schedules-simple-power-outage-natvent-available.xml'), - 'skip_validation' => true, - 'timeseries_frequency' => 'hourly', - 'include_timeseries_total_consumptions' => true, - 'include_timeseries_zone_temperatures' => true } - _annual_csv, timeseries_csv = _test_measure(args_hash) - assert(File.exist?(timeseries_csv)) - values = _get_values(timeseries_csv, [energy_use_total_col, temperature_living_space_col]) - schedule_available_total = values[energy_use_total_col].sum(0.0) - schedule_available_temp = values[temperature_living_space_col].sum(0.0) / values[temperature_living_space_col].size - - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-schedules-simple-power-outage-natvent-unavailable.xml'), - 'skip_validation' => true, - 'timeseries_frequency' => 'hourly', - 'include_timeseries_total_consumptions' => true, - 'include_timeseries_zone_temperatures' => true } - _annual_csv, timeseries_csv = _test_measure(args_hash) - assert(File.exist?(timeseries_csv)) - values = _get_values(timeseries_csv, [energy_use_total_col, temperature_living_space_col]) - schedule_unavailable_total = values[energy_use_total_col].sum(0.0) - schedule_unavailable_temp = values[temperature_living_space_col].sum(0.0) / values[temperature_living_space_col].size - - assert_operator(schedule_regular_total, :>, schedule_available_total) - assert_operator(schedule_available_total, :<, schedule_unavailable_total) - assert_operator(schedule_unavailable_total, :<, schedule_regular_total) - - assert_operator(schedule_regular_temp, :>, schedule_available_temp) - assert_operator(schedule_available_temp, :<, schedule_unavailable_temp) - assert_operator(schedule_unavailable_temp, :>, schedule_regular_temp) - end - def test_timeseries_hourly_system_uses args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml'), 'skip_validation' => true, @@ -891,7 +811,7 @@ def test_timeseries_hourly_system_uses _check_for_nonzero_avg_timeseries_value(timeseries_csv, ["System Use: HeatingSystem1: #{FT::Gas}: #{EUT::Heating}"]) end - def test_timeseries_hourly_hotwateruses + def test_timeseries_hourly_hotwater_uses args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml'), 'skip_validation' => true, 'timeseries_frequency' => 'hourly', @@ -968,24 +888,6 @@ def test_timeseries_hourly_unmet_hours end def test_timeseries_hourly_zone_temperatures - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml'), - 'skip_validation' => true, - 'timeseries_frequency' => 'hourly', - 'include_timeseries_zone_temperatures' => true } - annual_csv, timeseries_csv = _test_measure(args_hash) - assert(File.exist?(annual_csv)) - assert(File.exist?(timeseries_csv)) - expected_timeseries_cols = ['Time'] + BaseHPXMLTimeseriesColsZoneTemps - actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') - assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) - timeseries_rows = CSV.read(timeseries_csv) - assert_equal(8760, timeseries_rows.size - 2) - timeseries_cols = timeseries_rows.transpose - assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - _check_for_nonzero_avg_timeseries_value(timeseries_csv, BaseHPXMLTimeseriesColsZoneTemps) - end - - def test_timeseries_hourly_zone_temperatures_without_cooling args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-hvac-furnace-gas-only.xml'), 'skip_validation' => true, 'timeseries_frequency' => 'hourly', @@ -1003,67 +905,71 @@ def test_timeseries_hourly_zone_temperatures_without_cooling _check_for_nonzero_avg_timeseries_value(timeseries_csv, BaseHPXMLTimeseriesColsZoneTemps - ['Temperature: Cooling Setpoint']) end - def test_timeseries_hourly_zone_temperatures_mf_space - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml'), + def test_timeseries_hourly_zone_temperatures_mf_spaces + args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml'), 'skip_validation' => true, 'timeseries_frequency' => 'hourly', 'include_timeseries_zone_temperatures' => true } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(File.exist?(timeseries_csv)) + cols_temps = BaseHPXMLTimeseriesColsZoneTemps - ['Temperature: Attic - Unvented'] + cols_temps_other_side = ['Temperature: Other Multifamily Buffer Space', + 'Temperature: Other Non-freezing Space', + 'Temperature: Other Housing Unit', + 'Temperature: Other Heated Space'] + expected_timeseries_cols = ['Time'] + cols_temps + cols_temps_other_side actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') - cols_temps_other_side = [ - 'Temperature: Other Multifamily Buffer Space', - 'Temperature: Other Non-freezing Space', - 'Temperature: Other Housing Unit', - 'Temperature: Other Heated Space' - ] - cols_temps_other_side.each do |expected_col| - assert(actual_timeseries_cols.include? expected_col) - end + assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) timeseries_rows = CSV.read(timeseries_csv) assert_equal(8760, timeseries_rows.size - 2) timeseries_cols = timeseries_rows.transpose assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - _check_for_nonzero_avg_timeseries_value(timeseries_csv, cols_temps_other_side) + _check_for_nonzero_avg_timeseries_value(timeseries_csv, cols_temps + cols_temps_other_side) end - def test_timeseries_hourly_airflows_with_exhaust_mechvent - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-mechvent-exhaust.xml'), + def test_timeseries_hourly_zone_temperatures_whole_mf_building + args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-multiple-mf-units.xml'), + 'building_id' => 'ALL', 'skip_validation' => true, 'timeseries_frequency' => 'hourly', - 'include_timeseries_airflows' => true } + 'include_timeseries_zone_temperatures' => true } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(File.exist?(timeseries_csv)) - expected_timeseries_cols = ['Time'] + BaseHPXMLTimeseriesColsAirflows actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') + expected_timeseries_cols = ['Time'] + for i in 1..6 + expected_timeseries_cols << "Temperature: Unit#{i} Conditioned Space" + if i <= 2 + expected_timeseries_cols << "Temperature: Unit#{i} Basement Unconditioned" + elsif i >= 5 + expected_timeseries_cols << "Temperature: Unit#{i} Attic Vented" + end + expected_timeseries_cols << "Temperature: Unit#{i} Heating Setpoint" + expected_timeseries_cols << "Temperature: Unit#{i} Cooling Setpoint" + end assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) timeseries_rows = CSV.read(timeseries_csv) assert_equal(8760, timeseries_rows.size - 2) - timeseries_cols = timeseries_rows.transpose - assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - _check_for_nonzero_avg_timeseries_value(timeseries_csv, BaseHPXMLTimeseriesColsAirflows.select { |t| t != 'Airflow: Whole House Fan' }) end - def test_timeseries_hourly_airflows_with_whf - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-mechvent-whole-house-fan.xml'), + def test_timeseries_hourly_airflows_with_mechvent + args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-mechvent-multiple.xml'), 'skip_validation' => true, 'timeseries_frequency' => 'hourly', 'include_timeseries_airflows' => true } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(File.exist?(timeseries_csv)) - add_cols = ['Airflow: Whole House Fan'] - remove_cols = ['Airflow: Natural Ventilation'] - expected_timeseries_cols = ['Time'] + BaseHPXMLTimeseriesColsAirflows + add_cols - remove_cols + expected_timeseries_cols = ['Time'] + BaseHPXMLTimeseriesColsAirflows - ['Airflow: Natural Ventilation'] + ['Airflow: Whole House Fan'] actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) timeseries_rows = CSV.read(timeseries_csv) assert_equal(8760, timeseries_rows.size - 2) timeseries_cols = timeseries_rows.transpose assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - _check_for_nonzero_avg_timeseries_value(timeseries_csv, add_cols) + _check_for_nonzero_avg_timeseries_value(timeseries_csv, BaseHPXMLTimeseriesColsAirflows - ['Airflow: Natural Ventilation'] + ['Airflow: Whole House Fan']) end def test_timeseries_hourly_airflows_with_clothes_dryer_exhaust @@ -1084,42 +990,6 @@ def test_timeseries_hourly_airflows_with_clothes_dryer_exhaust _check_for_nonzero_avg_timeseries_value(timeseries_csv, ["Airflow: #{AFT::MechanicalVentilation}"]) end - def test_timeseries_hourly_airflows_with_balanced_mechvent - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-mechvent-balanced.xml'), - 'skip_validation' => true, - 'timeseries_frequency' => 'hourly', - 'include_timeseries_airflows' => true } - annual_csv, timeseries_csv = _test_measure(args_hash) - assert(File.exist?(annual_csv)) - assert(File.exist?(timeseries_csv)) - expected_timeseries_cols = ['Time'] + BaseHPXMLTimeseriesColsAirflows - actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') - assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) - timeseries_rows = CSV.read(timeseries_csv) - assert_equal(8760, timeseries_rows.size - 2) - timeseries_cols = timeseries_rows.transpose - assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - _check_for_nonzero_avg_timeseries_value(timeseries_csv, ["Airflow: #{AFT::MechanicalVentilation}"]) - end - - def test_timeseries_hourly_airflows_with_cfis - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-mechvent-cfis.xml'), - 'skip_validation' => true, - 'timeseries_frequency' => 'hourly', - 'include_timeseries_airflows' => true } - annual_csv, timeseries_csv = _test_measure(args_hash) - assert(File.exist?(annual_csv)) - assert(File.exist?(timeseries_csv)) - expected_timeseries_cols = ['Time'] + BaseHPXMLTimeseriesColsAirflows - actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') - assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) - timeseries_rows = CSV.read(timeseries_csv) - assert_equal(8760, timeseries_rows.size - 2) - timeseries_cols = timeseries_rows.transpose - assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - _check_for_nonzero_avg_timeseries_value(timeseries_csv, ["Airflow: #{AFT::MechanicalVentilation}"]) - end - def test_timeseries_hourly_weather args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml'), 'skip_validation' => true, @@ -1155,7 +1025,8 @@ def test_timeseries_hourly_ALL 'include_timeseries_component_loads' => true, 'include_timeseries_zone_temperatures' => true, 'include_timeseries_airflows' => true, - 'include_timeseries_weather' => true } + 'include_timeseries_weather' => true, + 'include_timeseries_resilience' => true } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(File.exist?(timeseries_csv)) @@ -1164,7 +1035,8 @@ def test_timeseries_hourly_ALL emissions_timeseries_cols + emission_fuels_timeseries_cols + emission_end_uses_timeseries_cols + - pv_battery_timeseries_cols + pv_battery_timeseries_cols + + BaseHPXMLTimeseriesColsResilience actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) timeseries_rows = CSV.read(timeseries_csv) @@ -1192,7 +1064,8 @@ def test_timeseries_daily_ALL 'include_timeseries_component_loads' => true, 'include_timeseries_zone_temperatures' => true, 'include_timeseries_airflows' => true, - 'include_timeseries_weather' => true } + 'include_timeseries_weather' => true, + 'include_timeseries_resilience' => true } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(File.exist?(timeseries_csv)) @@ -1201,7 +1074,8 @@ def test_timeseries_daily_ALL emissions_timeseries_cols + emission_fuels_timeseries_cols + emission_end_uses_timeseries_cols + - pv_battery_timeseries_cols + pv_battery_timeseries_cols + + BaseHPXMLTimeseriesColsResilience actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) timeseries_rows = CSV.read(timeseries_csv) @@ -1229,7 +1103,8 @@ def test_timeseries_monthly_ALL 'include_timeseries_component_loads' => true, 'include_timeseries_zone_temperatures' => true, 'include_timeseries_airflows' => true, - 'include_timeseries_weather' => true } + 'include_timeseries_weather' => true, + 'include_timeseries_resilience' => true } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(File.exist?(timeseries_csv)) @@ -1238,7 +1113,8 @@ def test_timeseries_monthly_ALL emissions_timeseries_cols + emission_fuels_timeseries_cols + emission_end_uses_timeseries_cols + - pv_battery_timeseries_cols + pv_battery_timeseries_cols + + BaseHPXMLTimeseriesColsResilience actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) timeseries_rows = CSV.read(timeseries_csv) @@ -1247,10 +1123,28 @@ def test_timeseries_monthly_ALL _check_for_nonzero_timeseries_values(timeseries_csv, ["End Use: #{FT::Elec}: #{EUT::Refrigerator}"]) end + def test_timeseries_monthly_resilience + args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-pv-battery-scheduled.xml'), + 'skip_validation' => true, + 'timeseries_frequency' => 'monthly', + 'include_timeseries_resilience' => true } + annual_csv, timeseries_csv = _test_measure(args_hash) + assert(File.exist?(annual_csv)) + assert(File.exist?(timeseries_csv)) + expected_timeseries_cols = ['Time'] + + BaseHPXMLTimeseriesColsResilience + actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') + assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) + timeseries_rows = CSV.read(timeseries_csv) + assert_equal(12, timeseries_rows.size - 2) + end + def test_timeseries_timestep args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml'), 'timeseries_frequency' => 'timestep', - 'include_timeseries_fuel_consumptions' => true } + 'include_timeseries_fuel_consumptions' => true, + 'add_timeseries_dst_column' => true, + 'add_timeseries_utc_column' => true } annual_csv, timeseries_csv = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(File.exist?(timeseries_csv)) @@ -1258,7 +1152,12 @@ def test_timeseries_timestep assert_equal(8760, timeseries_rows.size - 2) timeseries_cols = timeseries_rows.transpose assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - end + assert_equal(1, timeseries_rows[0].select { |r| r == 'Time' }.size) + assert_equal(1, timeseries_rows[0].select { |r| r == 'TimeDST' }.size) + assert_equal(1, timeseries_rows[0].select { |r| r == 'TimeUTC' }.size) + assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) + assert_equal(3, _check_for_constant_timeseries_step(timeseries_cols[1])) + assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[2])) end def test_timeseries_timestep_emissions args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-misc-emissions.xml'), @@ -1298,9 +1197,7 @@ def test_timeseries_timestep_10min end def test_timeseries_hourly_runperiod_1month - expected_values = { 'timestep' => 28 * 24, - 'hourly' => 28 * 24, - 'daily' => 28, + expected_values = { 'hourly' => 28 * 24, 'monthly' => 1 } expected_values.each do |timeseries_frequency, expected_value| @@ -1337,8 +1234,6 @@ def test_timeseries_hourly_AMY_2012 def test_timeseries_timestamp_convention # Expected values are arrays of time offsets (in seconds) for each reported row of output expected_values_array = { 'timestep' => [30 * 60] * 17520, - 'hourly' => [60 * 60] * 8760, - 'daily' => [60 * 60 * 24] * 365, 'monthly' => Constants.NumDaysInMonths(1999).map { |n_days| n_days * 60 * 60 * 24 } } expected_values_array.each do |timeseries_frequency, expected_values| @@ -1390,107 +1285,32 @@ def test_timeseries_for_dview assert_equal(Float(timeseries_csv[5000 + 1][col_ix].strip), Float(timeseries_csv2[5000][col_ix].strip)) # in dst period, values are shifted forward end - def test_timeseries_local_time_dst - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml'), - 'skip_validation' => true, - 'timeseries_frequency' => 'timestep', - 'include_timeseries_fuel_consumptions' => true, - 'add_timeseries_dst_column' => true } - annual_csv, timeseries_csv = _test_measure(args_hash) - assert(File.exist?(annual_csv)) - assert(File.exist?(timeseries_csv)) - timeseries_rows = CSV.read(timeseries_csv) - assert_equal(8760, timeseries_rows.size - 2) - timeseries_cols = timeseries_rows.transpose - assert_equal(1, timeseries_rows[0].select { |r| r == 'Time' }.size) - assert_equal(1, timeseries_rows[0].select { |r| r == 'TimeDST' }.size) - assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - assert_equal(3, _check_for_constant_timeseries_step(timeseries_cols[1])) - end - - def test_timeseries_local_time_utc - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml'), - 'skip_validation' => true, - 'timeseries_frequency' => 'timestep', - 'include_timeseries_fuel_consumptions' => true, - 'add_timeseries_utc_column' => true } - annual_csv, timeseries_csv = _test_measure(args_hash) - assert(File.exist?(annual_csv)) - assert(File.exist?(timeseries_csv)) - timeseries_rows = CSV.read(timeseries_csv) - assert_equal(8760, timeseries_rows.size - 2) - timeseries_cols = timeseries_rows.transpose - assert_equal(1, timeseries_rows[0].select { |r| r == 'Time' }.size) - assert_equal(1, timeseries_rows[0].select { |r| r == 'TimeUTC' }.size) - assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[1])) - end - - def test_timeseries_local_time_dst_and_utc - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml'), - 'skip_validation' => true, - 'timeseries_frequency' => 'timestep', - 'include_timeseries_fuel_consumptions' => true, - 'add_timeseries_dst_column' => true, - 'add_timeseries_utc_column' => true } - annual_csv, timeseries_csv = _test_measure(args_hash) - assert(File.exist?(annual_csv)) - assert(File.exist?(timeseries_csv)) - timeseries_rows = CSV.read(timeseries_csv) - assert_equal(8760, timeseries_rows.size - 2) - timeseries_cols = timeseries_rows.transpose - assert_equal(1, timeseries_rows[0].select { |r| r == 'Time' }.size) - assert_equal(1, timeseries_rows[0].select { |r| r == 'TimeDST' }.size) - assert_equal(1, timeseries_rows[0].select { |r| r == 'TimeUTC' }.size) - assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - assert_equal(3, _check_for_constant_timeseries_step(timeseries_cols[1])) - assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[2])) - end - - def test_timeseries_user_defined_standard_output_variables + def test_timeseries_energyplus_output_variables args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml'), 'skip_validation' => true, + 'add_component_loads' => true, 'timeseries_frequency' => 'hourly', - 'user_output_variables' => 'Zone People Occupant Count, Zone People Total Heating Energy, Foo' } + 'user_output_variables' => 'Zone People Occupant Count, Zone People Total Heating Energy, Foo, Surface Construction Index' } annual_csv, timeseries_csv, run_log = _test_measure(args_hash) assert(File.exist?(annual_csv)) assert(File.exist?(timeseries_csv)) - expected_timeseries_cols = ['Time'] + BaseHPXMLTimeseriesColsStandardOutputVariables + expected_timeseries_cols = ['Time'] + BaseHPXMLTimeseriesColsEnergyPlusOutputVariables actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) timeseries_rows = CSV.read(timeseries_csv) assert_equal(8760, timeseries_rows.size - 2) timeseries_cols = timeseries_rows.transpose assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - _check_for_nonzero_avg_timeseries_value(timeseries_csv, BaseHPXMLTimeseriesColsStandardOutputVariables) + _check_for_nonzero_avg_timeseries_value(timeseries_csv, BaseHPXMLTimeseriesColsEnergyPlusOutputVariables) assert(File.readlines(run_log).any? { |line| line.include?("Request for output variable 'Foo'") }) end - def test_timeseries_user_defined_advanced_output_variables - args_hash = { 'hpxml_path' => File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml'), - 'skip_validation' => true, - 'add_component_loads' => true, - 'timeseries_frequency' => 'hourly', - 'user_output_variables' => 'Surface Construction Index' } - annual_csv, timeseries_csv = _test_measure(args_hash) - assert(File.exist?(annual_csv)) - assert(File.exist?(timeseries_csv)) - expected_timeseries_cols = ['Time'] + BaseHPXMLTimeseriesColsAdvancedOutputVariables - actual_timeseries_cols = File.readlines(timeseries_csv)[0].strip.split(',') - assert_equal(expected_timeseries_cols.sort, actual_timeseries_cols.sort) - timeseries_rows = CSV.read(timeseries_csv) - assert_equal(8760, timeseries_rows.size - 2) - timeseries_cols = timeseries_rows.transpose - assert_equal(1, _check_for_constant_timeseries_step(timeseries_cols[0])) - _check_for_nonzero_avg_timeseries_value(timeseries_csv, BaseHPXMLTimeseriesColsAdvancedOutputVariables) - end - def test_for_unsuccessful_simulation_infinity # Create HPXML w/ AFUE=0 to generate Infinity result hpxml_path = File.join(File.dirname(__FILE__), '../../workflow/sample_files/base.xml') hpxml = HPXML.new(hpxml_path: hpxml_path) - hpxml.heating_systems[0].heating_efficiency_afue = 10.0**-315 - XMLHelper.write_file(hpxml.to_oga(), @tmp_hpxml_path) + hpxml.buildings[0].heating_systems[0].heating_efficiency_afue = 10.0**-315 + XMLHelper.write_file(hpxml.to_doc(), @tmp_hpxml_path) args_hash = { 'hpxml_path' => @tmp_hpxml_path, 'skip_validation' => true, } @@ -1527,6 +1347,9 @@ def _test_measure(args_hash, expect_success: true) workflow.setWorkflowSteps(steps) osw_path = File.join(File.dirname(template_osw), 'test.osw') workflow.saveAs(osw_path) + if args_hash.size != found_args.size + puts "ERROR: Did not find an argument (#{(args_hash.keys - found_args)[0]}) in #{File.basename(template_osw)}." + end assert_equal(args_hash.size, found_args.size) # Run OSW @@ -1618,10 +1441,10 @@ def _get_actual_annual_rows(annual_csv) return actual_annual_rows end - def _check_for_runner_registered_values(results_json, actual_annual_rows) - require 'json' - runner_annual_rows = JSON.parse(File.read(results_json)) - runner_annual_rows = runner_annual_rows['ReportSimulationOutput'] + def _check_runner_registered_values_and_measure_xml_outputs(actual_annual_rows) + # Check for runner registered values + results_json_path = File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'run', 'results.json') + runner_annual_rows = JSON.parse(File.read(results_json_path))['ReportSimulationOutput'] actual_annual_rows.each do |name, value| name = OpenStudio::toUnderscoreCase(name).chomp('_') @@ -1629,5 +1452,13 @@ def _check_for_runner_registered_values(results_json, actual_annual_rows) assert_includes(runner_annual_rows.keys, name) assert_equal(value, runner_annual_rows[name]) end + + # Check that all the "outputs" in the measure.xml, which are used by PAT, + # are found in the results.json file. + refute(@measure_xml_outputs.empty?) + + @measure_xml_outputs.each do |measure_xml_output| + assert_includes(runner_annual_rows.keys, measure_xml_output) + end end end diff --git a/example_files/resources/hpxml-measures/ReportUtilityBills/README.md b/example_files/resources/hpxml-measures/ReportUtilityBills/README.md new file mode 100644 index 00000000..a0d880bb --- /dev/null +++ b/example_files/resources/hpxml-measures/ReportUtilityBills/README.md @@ -0,0 +1,87 @@ + +###### (Automatically generated documentation) + +# Utility Bills Report + +## Description +Calculates and reports utility bills for residential HPXML-based models. + +Calculate electric/gas utility bills based on monthly fixed charges and marginal rates. Calculate other utility bills based on marginal rates for oil, propane, wood cord, wood pellets, and coal. User can specify PV compensation types of 'Net-Metering' or 'Feed-In Tariff', along with corresponding rates and connection fees. + +## Arguments + + +**Output Format** + +The file format of the annual (and timeseries, if requested) outputs. + +- **Name:** ``output_format`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `csv`, `json`, `msgpack` + +
+ +**Generate Annual Utility Bills** + +Generates annual utility bills. + +- **Name:** ``include_annual_bills`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Monthly Utility Bills** + +Generates monthly utility bills. + +- **Name:** ``include_monthly_bills`` +- **Type:** ``Boolean`` + +- **Required:** ``false`` + +
+ +**Generate Monthly Output: Timestamp Convention** + +Determines whether monthly timestamps use the start-of-period or end-of-period convention. + +- **Name:** ``monthly_timestamp_convention`` +- **Type:** ``Choice`` + +- **Required:** ``false`` + +- **Choices:** `start`, `end` + +
+ +**Annual Output File Name** + +If not provided, defaults to 'results_bills.csv' (or 'results_bills.json' or 'results_bills.msgpack'). + +- **Name:** ``annual_output_file_name`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ +**Monthly Output File Name** + +If not provided, defaults to 'results_bills_monthly.csv' (or 'results_bills_monthly.json' or 'results_bills_monthly.msgpack'). + +- **Name:** ``monthly_output_file_name`` +- **Type:** ``String`` + +- **Required:** ``false`` + +
+ + + + + diff --git a/example_files/resources/hpxml-measures/ReportUtilityBills/README.md.erb b/example_files/resources/hpxml-measures/ReportUtilityBills/README.md.erb new file mode 100644 index 00000000..0e9bc87d --- /dev/null +++ b/example_files/resources/hpxml-measures/ReportUtilityBills/README.md.erb @@ -0,0 +1,41 @@ +<%#= README.md.erb is used to auto-generate README.md. %> +###### (Automatically generated documentation) + +# <%= name %> + +## Description +<%= description %> + +<%= modelerDescription %> + +## Arguments + +<% arguments.each do |argument| %> +**<%= argument[:display_name] %>** + +<%= argument[:description] %> + +- **Name:** ``<%= argument[:name] %>`` +- **Type:** ``<%= argument[:type] %>`` +<% if argument[:units] %> +- **Units:** ``<%= argument[:units] %>`` +<% end %> +- **Required:** ``<%= argument[:required] %>`` +<% if argument[:type] == "Choice" %> +- **Choices:** `<%= argument[:choice_values].join("`, `") %>` +<% end %> +
+<% end %> + +<% if arguments.size == 0 %> +<%= "This measure does not have any user arguments" %> +<% end %> + +<% if outputs.size > 0 %> +## Outputs +All possible measure outputs are listed below. Actual outputs depend on measure argument values provided. + +<% outputs.each do |output| %> +- ``<%= output[:display_name] %>`` +<% end %> +<% end %> diff --git a/example_files/resources/hpxml-measures/ReportUtilityBills/measure.rb b/example_files/resources/hpxml-measures/ReportUtilityBills/measure.rb index 2d14be64..b2e6c11d 100644 --- a/example_files/resources/hpxml-measures/ReportUtilityBills/measure.rb +++ b/example_files/resources/hpxml-measures/ReportUtilityBills/measure.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true # see the URL below for information on how to write OpenStudio measures @@ -37,12 +42,44 @@ def arguments(model = nil) # rubocop:disable Lint/UnusedMethodArgument format_chs << 'csv' format_chs << 'json' format_chs << 'msgpack' + # format_chs << 'csv_dview': # TODO: support this arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('output_format', format_chs, false) arg.setDisplayName('Output Format') arg.setDescription('The file format of the annual (and timeseries, if requested) outputs.') arg.setDefaultValue('csv') args << arg + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('include_annual_bills', false) + arg.setDisplayName('Generate Annual Utility Bills') + arg.setDescription('Generates annual utility bills.') + arg.setDefaultValue(true) + args << arg + + arg = OpenStudio::Measure::OSArgument::makeBoolArgument('include_monthly_bills', false) + arg.setDisplayName('Generate Monthly Utility Bills') + arg.setDescription('Generates monthly utility bills.') + arg.setDefaultValue(true) + args << arg + + timestamp_chs = OpenStudio::StringVector.new + timestamp_chs << 'start' + timestamp_chs << 'end' + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('monthly_timestamp_convention', timestamp_chs, false) + arg.setDisplayName('Generate Monthly Output: Timestamp Convention') + arg.setDescription('Determines whether monthly timestamps use the start-of-period or end-of-period convention.') + arg.setDefaultValue('start') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeStringArgument('annual_output_file_name', false) + arg.setDisplayName('Annual Output File Name') + arg.setDescription("If not provided, defaults to 'results_bills.csv' (or 'results_bills.json' or 'results_bills.msgpack').") + args << arg + + arg = OpenStudio::Measure::OSArgument::makeStringArgument('monthly_output_file_name', false) + arg.setDisplayName('Monthly Output File Name') + arg.setDescription("If not provided, defaults to 'results_bills_monthly.csv' (or 'results_bills_monthly.json' or 'results_bills_monthly.msgpack').") + args << arg + return args end @@ -50,30 +87,32 @@ def check_for_return_type_warnings() warnings = [] # Require full annual simulation if PV - if !(@hpxml.header.sim_begin_month == 1 && @hpxml.header.sim_begin_day == 1 && @hpxml.header.sim_end_month == 12 && @hpxml.header.sim_end_day == 31) - if @hpxml.pv_systems.size > 0 + if !(@hpxml_header.sim_begin_month == 1 && @hpxml_header.sim_begin_day == 1 && @hpxml_header.sim_end_month == 12 && @hpxml_header.sim_end_day == 31) + if @hpxml_buildings.select { |hpxml_bldg| !hpxml_bldg.pv_systems.empty? }.size > 0 warnings << 'A full annual simulation is required for calculating utility bills for homes with PV.' end end # Require not DSE - (@hpxml.heating_systems + @hpxml.heat_pumps).each do |htg_system| - next unless (htg_system.is_a?(HPXML::HeatingSystem) && htg_system.is_heat_pump_backup_system) || htg_system.fraction_heat_load_served > 0 - next if htg_system.distribution_system_idref.nil? - next unless htg_system.distribution_system.distribution_system_type == HPXML::HVACDistributionTypeDSE - next if htg_system.distribution_system.annual_heating_dse.nil? - next if htg_system.distribution_system.annual_heating_dse == 1 - - warnings << 'DSE is not currently supported when calculating utility bills.' - end - (@hpxml.cooling_systems + @hpxml.heat_pumps).each do |clg_system| - next unless clg_system.fraction_cool_load_served > 0 - next if clg_system.distribution_system_idref.nil? - next unless clg_system.distribution_system.distribution_system_type == HPXML::HVACDistributionTypeDSE - next if clg_system.distribution_system.annual_cooling_dse.nil? - next if clg_system.distribution_system.annual_cooling_dse == 1 - - warnings << 'DSE is not currently supported when calculating utility bills.' + @hpxml_buildings.each do |hpxml_bldg| + (hpxml_bldg.heating_systems + hpxml_bldg.heat_pumps).each do |htg_system| + next unless (htg_system.is_a?(HPXML::HeatingSystem) && htg_system.is_heat_pump_backup_system) || htg_system.fraction_heat_load_served > 0 + next if htg_system.distribution_system_idref.nil? + next unless htg_system.distribution_system.distribution_system_type == HPXML::HVACDistributionTypeDSE + next if htg_system.distribution_system.annual_heating_dse.nil? + next if htg_system.distribution_system.annual_heating_dse == 1 + + warnings << 'DSE is not currently supported when calculating utility bills.' + end + (hpxml_bldg.cooling_systems + hpxml_bldg.heat_pumps).each do |clg_system| + next unless clg_system.fraction_cool_load_served > 0 + next if clg_system.distribution_system_idref.nil? + next unless clg_system.distribution_system.distribution_system_type == HPXML::HVACDistributionTypeDSE + next if clg_system.distribution_system.annual_cooling_dse.nil? + next if clg_system.distribution_system.annual_cooling_dse == 1 + + warnings << 'DSE is not currently supported when calculating utility bills.' + end end return warnings.uniq @@ -83,7 +122,7 @@ def check_for_next_type_warnings(utility_bill_scenario) warnings = [] # Require full annual simulation if 'Detailed' - if !(@hpxml.header.sim_begin_month == 1 && @hpxml.header.sim_begin_day == 1 && @hpxml.header.sim_end_month == 12 && @hpxml.header.sim_end_day == 31) + if !(@hpxml_header.sim_begin_month == 1 && @hpxml_header.sim_begin_day == 1 && @hpxml_header.sim_end_month == 12 && @hpxml_header.sim_end_day == 31) if !utility_bill_scenario.elec_tariff_filepath.nil? warnings << 'A full annual simulation is required for calculating detailed utility bills.' end @@ -92,6 +131,22 @@ def check_for_next_type_warnings(utility_bill_scenario) return warnings.uniq end + def get_arguments(runner, arguments, user_arguments) + args = get_argument_values(runner, arguments, user_arguments) + args.each do |k, val| + if val.respond_to?(:is_initialized) && val.is_initialized + args[k] = val.get + elsif k.start_with?('include_annual') + args[k] = true # default if not provided + elsif k.start_with?('include_monthly') + args[k] = true # default if not provided + else + args[k] = nil # default if not provided + end + end + return args + end + # return a vector of IdfObject's to request EnergyPlus objects needed by the run method def energyPlusOutputRequests(runner, user_arguments) super(runner, user_arguments) @@ -113,7 +168,16 @@ def energyPlusOutputRequests(runner, user_arguments) hpxml_defaults_path = @model.getBuilding.additionalProperties.getFeatureAsString('hpxml_defaults_path').get building_id = @model.getBuilding.additionalProperties.getFeatureAsString('building_id').get - @hpxml = HPXML.new(hpxml_path: hpxml_defaults_path, building_id: building_id) + hpxml = HPXML.new(hpxml_path: hpxml_defaults_path, building_id: building_id) + + @hpxml_header = hpxml.header + @hpxml_buildings = hpxml.buildings + if @hpxml_header.utility_bill_scenarios.has_detailed_electric_rates + uses_unit_multipliers = @hpxml_buildings.select { |hpxml_bldg| hpxml_bldg.building_construction.number_of_units > 1 }.size > 0 + if uses_unit_multipliers || (@hpxml_buildings.size > 1 && building_id == 'ALL') + return result + end + end warnings = check_for_return_type_warnings() return result if !warnings.empty? @@ -129,21 +193,19 @@ def energyPlusOutputRequests(runner, user_arguments) FT::Coal => HPXML::FuelTypeCoal } # Check for presence of fuels once - has_fuel = { HPXML::FuelTypeElectricity => true } - hpxml_doc = @hpxml.to_oga - Constants.FossilFuels.each do |fuel| - has_fuel[fuel] = @hpxml.has_fuel(fuel, hpxml_doc) - end + has_fuel = hpxml.has_fuels(Constants.FossilFuels, hpxml.to_doc) + has_fuel[HPXML::FuelTypeElectricity] = true # Fuel outputs + has_pv = @hpxml_buildings.select { |hpxml_bldg| !hpxml_bldg.pv_systems.empty? }.size > 0 fuels.each do |(fuel_type, is_production), fuel| fuel.meters.each do |meter| next unless has_fuel[hpxml_fuel_map[fuel_type]] - next if is_production && @hpxml.pv_systems.empty? + next if is_production && !has_pv - if fuel_type == FT::Elec - result << OpenStudio::IdfObject.load("Output:Meter,#{meter},monthly;").get if @hpxml.header.utility_bill_scenarios.has_simple_electric_rates - result << OpenStudio::IdfObject.load("Output:Meter,#{meter},hourly;").get if @hpxml.header.utility_bill_scenarios.has_detailed_electric_rates + result << OpenStudio::IdfObject.load("Output:Meter,#{meter},monthly;").get + if fuel_type == FT::Elec && @hpxml_header.utility_bill_scenarios.has_detailed_electric_rates + result << OpenStudio::IdfObject.load("Output:Meter,#{meter},hourly;").get else result << OpenStudio::IdfObject.load("Output:Meter,#{meter},monthly;").get end @@ -178,11 +240,25 @@ def run(runner, user_arguments) return false end - # assign the user inputs to variables - args = get_argument_values(runner, arguments(model), user_arguments) - output_format = args[:output_format].get + args = get_arguments(runner, arguments(model), user_arguments) + + hpxml_path = @model.getBuilding.additionalProperties.getFeatureAsString('hpxml_path').get + hpxml_defaults_path = @model.getBuilding.additionalProperties.getFeatureAsString('hpxml_defaults_path').get + output_dir = File.dirname(hpxml_defaults_path) + building_id = @model.getBuilding.additionalProperties.getFeatureAsString('building_id').get + hpxml = HPXML.new(hpxml_path: hpxml_defaults_path, building_id: building_id) + + @hpxml_header = hpxml.header + @hpxml_buildings = hpxml.buildings + if @hpxml_header.utility_bill_scenarios.has_detailed_electric_rates + uses_unit_multipliers = @hpxml_buildings.select { |hpxml_bldg| hpxml_bldg.building_construction.number_of_units > 1 }.size > 0 + if uses_unit_multipliers || @hpxml_buildings.size > 1 + runner.registerWarning('Cannot currently calculate utility bills based on detailed electric rates for an HPXML with unit multipliers or multiple Building elements.') + return false + end + end - output_dir = File.dirname(runner.lastEpwFilePath.get.to_s) + return true if @hpxml_header.utility_bill_scenarios.empty? if not File.exist? File.join(output_dir, 'eplusout.msgpack') runner.registerError('Cannot find eplusout.msgpack.') @@ -190,23 +266,31 @@ def run(runner, user_arguments) end @msgpackData = MessagePack.unpack(File.read(File.join(output_dir, 'eplusout.msgpack'), mode: 'rb')) - hpxml_path = @model.getBuilding.additionalProperties.getFeatureAsString('hpxml_path').get - hpxml_defaults_path = @model.getBuilding.additionalProperties.getFeatureAsString('hpxml_defaults_path').get - building_id = @model.getBuilding.additionalProperties.getFeatureAsString('building_id').get - @hpxml = HPXML.new(hpxml_path: hpxml_defaults_path, building_id: building_id) - - return true if @hpxml.header.utility_bill_scenarios.empty? - warnings = check_for_return_type_warnings() if register_warnings(runner, warnings) return true end # Set paths - output_path = File.join(output_dir, "results_bills.#{output_format}") - FileUtils.rm(output_path) if File.exist?(output_path) + if not args[:annual_output_file_name].nil? + annual_output_path = File.join(output_dir, args[:annual_output_file_name]) + else + annual_output_path = File.join(output_dir, "results_bills.#{args[:output_format]}") + end + if not args[:monthly_output_file_name].nil? + monthly_output_path = File.join(output_dir, args[:monthly_output_file_name]) + else + monthly_output_path = File.join(output_dir, "results_bills_monthly.#{args[:output_format]}") + end + + if args[:include_monthly_bills] + @timestamps = get_timestamps(args) + end + + num_units = @hpxml_buildings.collect { |hpxml_bldg| hpxml_bldg.building_construction.number_of_units }.sum - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| + monthly_data = [] + @hpxml_header.utility_bill_scenarios.each do |utility_bill_scenario| warnings = check_for_next_type_warnings(utility_bill_scenario) if register_warnings(runner, warnings) next @@ -221,47 +305,95 @@ def run(runner, user_arguments) # Setup utility outputs utility_rates, utility_bills = setup_utility_outputs() + # Get PV monthly fee + monthly_fee = get_monthly_fee(utility_bill_scenario, @hpxml_buildings) + # Get utility rates - warnings = get_utility_rates(hpxml_path, fuels, utility_rates, utility_bill_scenario, @hpxml.pv_systems) + warnings = get_utility_rates(hpxml_path, fuels, utility_rates, utility_bill_scenario, monthly_fee, num_units) if register_warnings(runner, warnings) next end # Calculate utility bills - get_utility_bills(fuels, utility_rates, utility_bills, utility_bill_scenario, @hpxml.header) + get_utility_bills(fuels, utility_rates, utility_bills, utility_bill_scenario, @hpxml_header) - # Write/report results - report_runperiod_output_results(runner, utility_bills, output_format, output_path, utility_bill_scenario.name) + # Write/report runperiod results + report_runperiod_output_results(runner, args, utility_bills, annual_output_path, utility_bill_scenario.name) + + # Get monthly results + get_monthly_output_results(args, utility_bills, utility_bill_scenario.name, monthly_data, @hpxml_header) end + # Write/report monthly results + report_monthly_output_results(runner, args, @timestamps, monthly_data, monthly_output_path) + return true end - def report_runperiod_output_results(runner, utility_bills, output_format, output_path, bill_scenario_name) - segment = utility_bills.keys[0].split(':', 2)[0] - segment = segment.strip + def get_monthly_fee(bill_scenario, hpxml_buildings) + monthly_fee = 0.0 + if not bill_scenario.pv_monthly_grid_connection_fee_dollars_per_kw.nil? + hpxml_buildings.each do |hpxml_bldg| + hpxml_bldg.pv_systems.each do |pv_system| + max_power_output_kW = UnitConversions.convert(pv_system.max_power_output, 'W', 'kW') + monthly_fee += bill_scenario.pv_monthly_grid_connection_fee_dollars_per_kw * max_power_output_kW + monthly_fee *= hpxml_bldg.building_construction.number_of_units if !hpxml_bldg.building_construction.number_of_units.nil? + end + end + elsif not bill_scenario.pv_monthly_grid_connection_fee_dollars.nil? + monthly_fee = bill_scenario.pv_monthly_grid_connection_fee_dollars + end + + return monthly_fee + end + + def get_timestamps(args) + ep_timestamps = @msgpackData['MeterData']['Monthly']['Rows'].map { |r| r.keys[0] } + + timestamps = [] + year = @hpxml_header.sim_calendar_year + ep_timestamps.each do |ep_timestamp| + month_day, hour_minute = ep_timestamp.split(' ') + month, day = month_day.split('/').map(&:to_i) + hour, minute, _ = hour_minute.split(':').map(&:to_i) + + # Convert from EnergyPlus default (end-of-timestep) to start-of-timestep convention + if args[:monthly_timestamp_convention] == 'start' + ts_offset = Constants.NumDaysInMonths(year)[month - 1] * 60 * 60 * 24 # seconds + end + + ts = Time.utc(year, month, day, hour, minute) + ts -= ts_offset unless ts_offset.nil? + + timestamps << ts.iso8601.delete('Z') + end + + return timestamps + end + + def report_runperiod_output_results(runner, args, utility_bills, annual_output_path, bill_scenario_name) + return unless args[:include_annual_bills] results_out = [] results_out << ["#{bill_scenario_name}: Total (USD)", utility_bills.values.sum { |bill| bill.annual_total.round(2) }.round(2)] utility_bills.each do |fuel_type, bill| - new_segment = fuel_type.split(':', 2)[0] - new_segment = new_segment.strip - if new_segment != segment - segment = new_segment - end - results_out << ["#{bill_scenario_name}: #{fuel_type}: Fixed (USD)", bill.annual_fixed_charge.round(2)] results_out << ["#{bill_scenario_name}: #{fuel_type}: Energy (USD)", bill.annual_energy_charge.round(2)] results_out << ["#{bill_scenario_name}: #{fuel_type}: PV Credit (USD)", bill.annual_production_credit.round(2)] if [FT::Elec].include?(fuel_type) results_out << ["#{bill_scenario_name}: #{fuel_type}: Total (USD)", bill.annual_total.round(2)] end - if ['csv'].include? output_format - CSV.open(output_path, 'a') { |csv| results_out.to_a.each { |elem| csv << elem } } - elsif ['json', 'msgpack'].include? output_format + line_break = nil + results_out << [line_break] + + if ['csv'].include? args[:output_format] + CSV.open(annual_output_path, 'a') { |csv| results_out.to_a.each { |elem| csv << elem } } + elsif ['json', 'msgpack'].include? args[:output_format] h = {} results_out.each do |out| + next if out == [line_break] + if out[0].include? ':' grp, name = out[0].split(':', 2) h[grp] = {} if h[grp].nil? @@ -271,14 +403,14 @@ def report_runperiod_output_results(runner, utility_bills, output_format, output end end - if output_format == 'json' + if args[:output_format] == 'json' require 'json' - File.open(output_path, 'a') { |json| json.write(JSON.pretty_generate(h)) } - elsif output_format == 'msgpack' - File.open(output_path, 'a') { |json| h.to_msgpack(json) } + File.open(annual_output_path, 'a') { |json| json.write(JSON.pretty_generate(h)) } + elsif args[:output_format] == 'msgpack' + File.open(annual_output_path, 'a') { |json| h.to_msgpack(json) } end end - runner.registerInfo("Wrote bills output to #{output_path}.") + runner.registerInfo("Wrote annual bills output to #{annual_output_path}.") results_out.each do |name, value| next if name.nil? || value.nil? @@ -290,7 +422,61 @@ def report_runperiod_output_results(runner, utility_bills, output_format, output end end - def get_utility_rates(hpxml_path, fuels, utility_rates, bill_scenario, pv_systems) + def get_monthly_output_results(args, utility_bills, bill_scenario_name, monthly_data, header) + run_period = (header.sim_begin_month - 1)..(header.sim_end_month - 1) + monthly_data << ["#{bill_scenario_name}: Total", 'USD'] + ([0.0] * run_period.size) + total_ix = monthly_data.size - 1 + + if args[:include_monthly_bills] + utility_bills.each do |fuel_type, bill| + monthly_data[total_ix][2..-1] = monthly_data[total_ix][2..-1].zip(bill.monthly_total[run_period].map { |v| v.round(2) }).map { |x, y| x + y } + monthly_data << ["#{bill_scenario_name}: #{fuel_type}: Fixed", 'USD'] + bill.monthly_fixed_charge[run_period].map { |v| v.round(2) } + monthly_data << ["#{bill_scenario_name}: #{fuel_type}: Energy", 'USD'] + bill.monthly_energy_charge[run_period].map { |v| v.round(2) } + monthly_data << ["#{bill_scenario_name}: #{fuel_type}: PV Credit", 'USD'] + bill.monthly_production_credit[run_period].map { |v| v.round(2) } if [FT::Elec].include?(fuel_type) + monthly_data << ["#{bill_scenario_name}: #{fuel_type}: Total", 'USD'] + bill.monthly_total[run_period].map { |v| v.round(2) } + end + end + end + + def report_monthly_output_results(runner, args, timestamps, monthly_data, monthly_output_path) + return if timestamps.nil? + + # Initial output data w/ Time column(s) + data = ['Time', nil] + timestamps + + return if (monthly_data.size) == 0 + + fail 'Unable to obtain timestamps.' if timestamps.empty? + + if ['csv'].include? args[:output_format] + # Assemble data + data = data.zip(*monthly_data) + + # Write file + CSV.open(monthly_output_path, 'wb') { |csv| data.to_a.each { |elem| csv << elem } } + elsif ['json', 'msgpack'].include? args[:output_format] + h = {} + h['Time'] = data[2..-1] + + [monthly_data].each do |d| + d.each do |o| + grp, name = o[0].split(':', 2) + h[grp] = {} if h[grp].nil? + h[grp]["#{name.strip} (#{o[1]})"] = o[2..-1] + end + end + + if args[:output_format] == 'json' + require 'json' + File.open(monthly_output_path, 'w') { |json| json.write(JSON.pretty_generate(h)) } + elsif args[:output_format] == 'msgpack' + File.open(monthly_output_path, 'w') { |json| h.to_msgpack(json) } + end + end + runner.registerInfo("Wrote monthly bills output to #{monthly_output_path}.") + end + + def get_utility_rates(hpxml_path, fuels, utility_rates, bill_scenario, monthly_fee, num_units = 1) warnings = [] utility_rates.each do |fuel_type, rate| next if fuels[[fuel_type, false]].timeseries.sum == 0 @@ -389,23 +575,13 @@ def get_utility_rates(hpxml_path, fuels, utility_rates, bill_scenario, pv_system rate.fixedmonthlycharge = bill_scenario.coal_fixed_charge rate.flatratebuy = bill_scenario.coal_marginal_rate end + rate.fixedmonthlycharge *= num_units if !rate.fixedmonthlycharge.nil? warnings << "Could not find a marginal #{fuel_type} rate." if rate.flatratebuy.nil? # Grid connection fee next unless fuel_type == FT::Elec - next unless pv_systems.size > 0 - - monthly_fee = 0.0 - if not bill_scenario.pv_monthly_grid_connection_fee_dollars_per_kw.nil? - pv_systems.each do |pv_system| - max_power_output_kW = UnitConversions.convert(pv_system.max_power_output, 'W', 'kW') - monthly_fee += bill_scenario.pv_monthly_grid_connection_fee_dollars_per_kw * max_power_output_kW - end - elsif not bill_scenario.pv_monthly_grid_connection_fee_dollars.nil? - monthly_fee = bill_scenario.pv_monthly_grid_connection_fee_dollars - end rate.fixedmonthlycharge += monthly_fee end return warnings @@ -440,9 +616,16 @@ def get_utility_bills(fuels, utility_rates, utility_bills, utility_bill_scenario utility_bills.values.each do |bill| if bill.annual_production_credit != 0 bill.annual_production_credit *= -1 + + # Report the PV credit at the end of the year for all scenarios. + for month in 0..10 + bill.monthly_production_credit[month] = 0.0 + end + bill.monthly_production_credit[11] = bill.annual_production_credit end bill.annual_total = bill.annual_fixed_charge + bill.annual_energy_charge + bill.annual_production_credit + bill.monthly_total = [bill.monthly_fixed_charge, bill.monthly_energy_charge, bill.monthly_production_credit].transpose.map { |x| x.reduce(:+) } end end @@ -508,19 +691,8 @@ def get_outputs(fuels, utility_bill_scenario) end end - def reporting_frequency_map - return { - 'timestep' => 'Zone Timestep', - 'hourly' => 'Hourly', - 'daily' => 'Daily', - 'monthly' => 'Monthly', - } - end - def get_report_meter_data_timeseries(meter_names, unit_conv, unit_adder, timeseries_freq) - msgpack_timeseries_name = { 'timestep' => 'TimeStep', - 'hourly' => 'Hourly', - 'daily' => 'Daily', + msgpack_timeseries_name = { 'hourly' => 'Hourly', 'monthly' => 'Monthly' }[timeseries_freq] begin data = @msgpackData['MeterData'][msgpack_timeseries_name] diff --git a/example_files/resources/hpxml-measures/ReportUtilityBills/measure.xml b/example_files/resources/hpxml-measures/ReportUtilityBills/measure.xml index 3d207816..2f5cff8e 100644 --- a/example_files/resources/hpxml-measures/ReportUtilityBills/measure.xml +++ b/example_files/resources/hpxml-measures/ReportUtilityBills/measure.xml @@ -1,10 +1,10 @@ - 3.0 + 3.1 report_utility_bills ca88a425-e59a-4bc4-af51-c7e7d1e960fe - 10456a16-b1fc-449f-b7f8-71fbcdabb1c9 - 20230401T012721Z + 00195856-fc00-4476-b601-ab53286b33cf + 2023-11-17T15:16:06Z 15BF4E57 ReportUtilityBills Utility Bills Report @@ -34,6 +34,79 @@
+ + include_annual_bills + Generate Annual Utility Bills + Generates annual utility bills. + Boolean + false + false + true + + + true + true + + + false + false + + + + + include_monthly_bills + Generate Monthly Utility Bills + Generates monthly utility bills. + Boolean + false + false + true + + + true + true + + + false + false + + + + + monthly_timestamp_convention + Generate Monthly Output: Timestamp Convention + Determines whether monthly timestamps use the start-of-period or end-of-period convention. + Choice + false + false + start + + + start + start + + + end + end + + + + + annual_output_file_name + Annual Output File Name + If not provided, defaults to 'results_bills.csv' (or 'results_bills.json' or 'results_bills.msgpack'). + String + false + false + + + monthly_output_file_name + Monthly Output File Name + If not provided, defaults to 'results_bills_monthly.csv' (or 'results_bills_monthly.json' or 'results_bills_monthly.msgpack'). + String + false + false + @@ -49,52 +122,57 @@ - Contains Demand Charges.json - json - test - 31A7BE3B + README.md + md + readme + E137125B - Invalid Fixed Charge Units.json - json - test - 6CDC3F13 + README.md.erb + erb + readmeerb + 513F28E9 - Invalid Min Charge Units.json - json - test - 32FB5BA8 + + OpenStudio + 3.3.0 + 3.3.0 + + measure.rb + rb + script + 4A038500 - Missing Required Fields.json + detailed_rates/Sample Flat Rate Min Annual Charge.json json - test - 3DCED656 + resource + 453ED6BD - JacksonElectricMemberCorp-ResidentialSeniorCitizenLowIncomeAssistance.json + detailed_rates/Sample Flat Rate Min Monthly Charge.json json - test - 953EE2AC + resource + A39362E3 - data.csv - csv - test - F96CB80F + detailed_rates/Sample Flat Rate.json + json + resource + C0FCBE3B - detailed_rates/openei_rates.zip - zip + detailed_rates/Sample Real-Time Pricing Rate Min Annual Charge.json + json resource - 56DDA6EC + 12C12981 - detailed_rates/Sample Flat Rate.json + detailed_rates/Sample Real-Time Pricing Rate Min Monthly Charge.json json resource - C0FCBE3B + DE28BDA1 detailed_rates/Sample Real-Time Pricing Rate.json @@ -102,29 +180,71 @@ resource 40D684ED + + detailed_rates/Sample Tiered Rate Min Annual Charge.json + json + resource + 05C5F7BD + + + detailed_rates/Sample Tiered Rate Min Monthly Charge.json + json + resource + 9177D651 + detailed_rates/Sample Tiered Rate.json json resource 27936FC1 + + detailed_rates/Sample Tiered Time-of-Use Rate Min Annual Charge.json + json + resource + E59E9AEE + + + detailed_rates/Sample Tiered Time-of-Use Rate Min Monthly Charge.json + json + resource + 75AD92DF + detailed_rates/Sample Tiered Time-of-Use Rate.json json resource 4508028D + + detailed_rates/Sample Time-of-Use Rate Min Annual Charge.json + json + resource + 2CC2386E + + + detailed_rates/Sample Time-of-Use Rate Min Monthly Charge.json + json + resource + 387337AD + detailed_rates/Sample Time-of-Use Rate.json json resource AD93D08A + + detailed_rates/openei_rates.zip + zip + resource + 56DDA6EC + simple_rates/Average_retail_price_of_electricity.csv csv resource - 37E30685 + 02EEEF39 simple_rates/HouseholdConsumption.csv @@ -136,108 +256,73 @@ simple_rates/NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv csv resource - 2CE8192C + C5FFF659 simple_rates/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv csv resource - 6FEB427A + 8C00508D simple_rates/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv csv resource - 22112EBB + 614B155F simple_rates/README.md md resource - D9D25D07 - - - detailed_rates/Sample Flat Rate Min Annual Charge.json - json - resource - 453ED6BD - - - detailed_rates/Sample Flat Rate Min Monthly Charge.json - json - resource - A39362E3 - - - detailed_rates/Sample Real-Time Pricing Rate Min Annual Charge.json - json - resource - 12C12981 - - - detailed_rates/Sample Real-Time Pricing Rate Min Monthly Charge.json - json - resource - DE28BDA1 + 7832E08F - detailed_rates/Sample Tiered Rate Min Annual Charge.json - json + util.rb + rb resource - 05C5F7BD + 70347ABF - detailed_rates/Sample Tiered Rate Min Monthly Charge.json + Contains Demand Charges.json json - resource - 9177D651 + test + 31A7BE3B - detailed_rates/Sample Tiered Time-of-Use Rate Min Annual Charge.json + Detailed Rate.json json - resource - E59E9AEE + test + 953EE2AC - detailed_rates/Sample Tiered Time-of-Use Rate Min Monthly Charge.json + Invalid Fixed Charge Units.json json - resource - 75AD92DF + test + 6CDC3F13 - detailed_rates/Sample Time-of-Use Rate Min Annual Charge.json + Invalid Min Charge Units.json json - resource - 2CC2386E + test + 32FB5BA8 - detailed_rates/Sample Time-of-Use Rate Min Monthly Charge.json + Missing Required Fields.json json - resource - 387337AD - - - util.rb - rb - resource - 041AE7DE + test + 3DCED656 - utility_bills_test.rb - rb + data.csv + csv test - 08FABF5F + F96CB80F - - OpenStudio - 3.3.0 - 3.3.0 - - measure.rb + test_report_utility_bills.rb rb - script - 13808DAA + test + 07F2D0DB diff --git a/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/Average_retail_price_of_electricity.csv b/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/Average_retail_price_of_electricity.csv index 7ceeaca0..ae8bb28b 100644 --- a/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/Average_retail_price_of_electricity.csv +++ b/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/Average_retail_price_of_electricity.csv @@ -1,70 +1,70 @@ "Average retail price of electricity" -"https://www.eia.gov/electricity/data/browser/#/topic/7?agg=1,0&geo=g0fvvvvvvvvvo&endsec=8&linechart=ELEC.PRICE.US-RES.A&columnchart=ELEC.PRICE.US-RES.A&map=ELEC.PRICE.US-RES.A&freq=A&start=2020&end=2021&ctype=linechart<ype=pin&rtype=s&pin=&rse=0&maptype=0" -"Thu Mar 03 2022 10:58:09 GMT-0700 (Mountain Standard Time)" +"https://www.eia.gov/electricity/data/browser/#/topic/7?agg=1,0&geo=g0fvvvvvvvvvo&endsec=8&linechart=ELEC.PRICE.US-RES.A&columnchart=ELEC.PRICE.US-RES.A&map=ELEC.PRICE.US-RES.A&freq=A&start=2001&end=2022&ctype=linechart<ype=pin&rtype=s&maptype=0&rse=0&pin=" +"Tue Jul 25 2023 10:35:16 GMT-0700 (Mountain Standard Time)" "Source: U.S. Energy Information Administration" -"description","units","source key","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020","2021" -"Average retail price of electricity","cents per kilowatthour",,,,,,,,,,,,,,,,,,,,,, -"All sectors",,"ELEC.PRICE.US-ALL.A",,,,,,,,,,,,,,,,,,,,, -"Residential","cents per kilowatthour","ELEC.PRICE.US-RES.A",,,,,,,,,,,,,,,,,,,,, -"Residential : United States","cents per kilowatthour","ELEC.PRICE.US-RES.A",8.58,8.44,8.72,8.95,9.45,10.40,10.65,11.26,11.51,11.54,11.72,11.88,12.13,12.52,12.65,12.55,12.89,12.87,13.01,13.15,13.72 -"Residential : New England",,"ELEC.PRICE.NEW-RES.A",,,,,,,,,,,,,,,,,,,,, -"Residential : Connecticut","cents per kilowatthour","ELEC.PRICE.CT-RES.A",10.90,10.96,11.31,11.63,13.64,16.86,19.11,19.54,20.33,19.25,18.11,17.34,17.55,19.75,20.94,20.01,20.29,21.20,21.87,22.71,21.86 -"Residential : Maine","cents per kilowatthour","ELEC.PRICE.ME-RES.A",13.13,12.74,12.37,12.16,13.23,13.80,16.52,16.24,15.64,15.72,15.38,14.66,14.35,15.27,15.61,15.83,15.97,16.84,17.89,16.81,17.03 -"Residential : Massachusetts","cents per kilowatthour","ELEC.PRICE.MA-RES.A",12.47,10.93,11.60,11.75,13.44,16.60,16.23,17.56,16.87,14.59,14.67,14.91,15.83,17.39,19.83,19.00,20.06,21.61,21.92,21.97,22.91 -"Residential : New Hampshire","cents per kilowatthour","ELEC.PRICE.NH-RES.A",12.49,11.89,11.98,12.49,13.51,14.68,14.88,15.68,16.39,16.32,16.52,16.07,16.33,17.53,18.50,18.38,19.20,19.69,20.05,19.04,19.86 -"Residential : Rhode Island","cents per kilowatthour","ELEC.PRICE.RI-RES.A",12.13,10.20,11.61,12.19,13.04,15.12,14.05,17.45,15.60,15.92,14.33,14.40,15.20,17.17,19.29,18.62,18.32,20.55,21.73,22.01,22.30 -"Residential : Vermont","cents per kilowatthour","ELEC.PRICE.VT-RES.A",12.67,12.78,12.82,12.94,12.96,13.39,14.15,14.48,14.90,15.57,16.26,17.01,17.14,17.47,17.09,17.37,17.68,18.02,17.71,19.54,19.27 -"Residential : Middle Atlantic",,"ELEC.PRICE.MAT-RES.A",,,,,,,,,,,,,,,,,,,,, -"Residential : New Jersey","cents per kilowatthour","ELEC.PRICE.NJ-RES.A",10.21,10.38,10.67,11.23,11.74,12.84,14.14,15.66,16.31,16.57,16.23,15.78,15.73,15.78,15.81,15.72,15.65,15.41,15.85,16.03,16.37 -"Residential : New York","cents per kilowatthour","ELEC.PRICE.NY-RES.A",14.04,13.55,14.31,14.54,15.72,16.89,17.10,18.31,17.50,18.74,18.26,17.62,18.79,20.07,18.54,17.58,18.03,18.52,17.94,18.36,19.44 -"Residential : Pennsylvania","cents per kilowatthour","ELEC.PRICE.PA-RES.A",9.68,9.74,9.59,9.58,9.86,10.35,10.95,11.35,11.65,12.70,13.26,12.75,12.79,13.32,13.64,13.86,14.23,13.89,13.80,13.58,13.79 -"Residential : East North Central",,"ELEC.PRICE.ENC-RES.A",,,,,,,,,,,,,,,,,,,,, -"Residential : Illinois","cents per kilowatthour","ELEC.PRICE.IL-RES.A",8.71,8.39,8.38,8.37,8.34,8.42,10.12,11.07,11.27,11.52,11.78,11.37,10.63,11.91,12.50,12.54,12.95,12.77,13.03,13.04,13.24 -"Residential : Indiana","cents per kilowatthour","ELEC.PRICE.IN-RES.A",6.92,6.91,7.04,7.30,7.50,8.22,8.26,8.87,9.50,9.56,10.06,10.53,10.99,11.46,11.57,11.79,12.29,12.26,12.58,12.83,13.46 -"Residential : Michigan","cents per kilowatthour","ELEC.PRICE.MI-RES.A",8.26,8.28,8.35,8.33,8.40,9.77,10.21,10.75,11.60,12.46,13.27,14.13,14.59,14.46,14.42,15.22,15.40,15.45,15.74,16.26,17.53 -"Residential : Ohio","cents per kilowatthour","ELEC.PRICE.OH-RES.A",8.37,8.24,8.26,8.45,8.51,9.34,9.57,10.06,10.67,11.31,11.42,11.76,12.01,12.50,12.80,12.47,12.63,12.56,12.38,12.29,12.78 -"Residential : Wisconsin","cents per kilowatthour","ELEC.PRICE.WI-RES.A",7.90,8.18,8.67,9.07,9.66,10.51,10.87,11.51,11.94,12.65,13.02,13.19,13.55,13.67,14.11,14.07,14.35,14.02,14.18,14.32,14.55 -"Residential : West North Central",,"ELEC.PRICE.WNC-RES.A",,,,,,,,,,,,,,,,,,,,, -"Residential : Iowa","cents per kilowatthour","ELEC.PRICE.IA-RES.A",8.41,8.35,8.57,8.96,9.27,9.63,9.45,9.49,9.99,10.42,10.46,10.82,11.04,11.16,11.63,11.94,12.34,12.24,12.46,12.46,12.75 -"Residential : Kansas","cents per kilowatthour","ELEC.PRICE.KS-RES.A",7.66,7.67,7.71,7.74,7.90,8.25,8.19,8.89,9.53,10.03,10.65,11.24,11.64,12.17,12.34,13.06,13.31,13.35,12.71,12.85,12.93 -"Residential : Minnesota","cents per kilowatthour","ELEC.PRICE.MN-RES.A",7.61,7.49,7.65,7.92,8.28,8.70,9.18,9.74,10.04,10.59,10.96,11.35,11.81,12.01,12.12,12.67,13.04,13.14,13.04,13.17,13.42 -"Residential : Missouri","cents per kilowatthour","ELEC.PRICE.MO-RES.A",7.00,7.06,6.96,6.97,7.08,7.44,7.69,8.00,8.54,9.08,9.75,10.17,10.60,10.64,11.21,11.21,11.63,11.34,11.14,11.22,11.49 -"Residential : Nebraska","cents per kilowatthour","ELEC.PRICE.NE-RES.A",6.50,6.73,6.87,6.96,7.14,7.41,7.59,7.87,8.52,8.94,9.32,10.04,10.31,10.40,10.60,10.84,10.97,10.70,10.77,10.80,10.85 -"Residential : North Dakota","cents per kilowatthour","ELEC.PRICE.ND-RES.A",6.47,6.39,6.49,6.79,6.99,7.14,7.30,7.51,7.58,8.13,8.58,9.06,9.12,9.15,9.62,10.16,10.29,10.25,10.30,10.44,10.83 -"Residential : South Dakota","cents per kilowatthour","ELEC.PRICE.SD-RES.A",7.42,7.40,7.47,7.65,7.77,7.83,8.07,8.27,8.49,8.97,9.35,10.07,10.26,10.47,11.08,11.47,11.77,11.59,11.55,11.75,12.25 -"Residential : South Atlantic",,"ELEC.PRICE.SAT-RES.A",,,,,,,,,,,,,,,,,,,,, -"Residential : Delaware","cents per kilowatthour","ELEC.PRICE.DE-RES.A",8.61,8.70,8.59,8.78,9.01,11.85,13.16,13.93,14.07,13.80,13.70,13.58,12.95,13.29,13.42,13.42,13.35,12.53,12.55,12.56,12.56 -"Residential : District Of Columbia","cents per kilowatthour","ELEC.PRICE.DC-RES.A",7.79,7.98,7.84,8.00,9.10,9.88,11.18,12.78,13.73,14.01,13.40,12.28,12.57,12.74,12.99,12.29,12.94,12.84,12.98,12.63,13.13 -"Residential : Florida","cents per kilowatthour","ELEC.PRICE.FL-RES.A",8.59,8.16,8.55,8.99,9.62,11.33,11.22,11.65,12.39,11.44,11.51,11.42,11.27,11.89,11.58,10.98,11.61,11.54,11.70,11.27,12.01 -"Residential : Georgia","cents per kilowatthour","ELEC.PRICE.GA-RES.A",7.72,7.63,7.70,7.86,8.64,8.91,9.10,9.93,10.13,10.07,11.05,11.17,11.46,11.65,11.54,11.50,11.90,11.47,11.76,12.02,12.60 -"Residential : Maryland","cents per kilowatthour","ELEC.PRICE.MD-RES.A",7.67,7.74,7.73,7.80,8.46,9.71,11.89,13.84,14.98,14.32,13.31,12.84,13.25,13.63,13.82,14.23,13.96,13.30,13.12,13.01,13.14 -"Residential : North Carolina","cents per kilowatthour","ELEC.PRICE.NC-RES.A",8.12,8.19,8.32,8.45,8.65,9.12,9.40,9.52,9.99,10.12,10.26,10.91,10.97,11.10,11.28,11.03,10.94,11.09,11.42,11.38,11.50 -"Residential : South Carolina","cents per kilowatthour","ELEC.PRICE.SC-RES.A",7.69,7.72,8.01,8.12,8.67,9.03,9.19,9.89,10.44,10.50,11.05,11.77,11.99,12.45,12.57,12.65,13.02,12.44,12.99,12.78,13.18 -"Residential : Virginia","cents per kilowatthour","ELEC.PRICE.VA-RES.A",7.79,7.79,7.76,7.99,8.16,8.49,8.74,9.62,10.61,10.45,10.64,11.08,10.84,11.10,11.37,11.36,11.55,11.73,12.07,12.03,12.14 -"Residential : West Virginia","cents per kilowatthour","ELEC.PRICE.WV-RES.A",6.26,6.23,6.24,6.23,6.21,6.35,6.73,7.06,7.90,8.79,9.39,9.85,9.52,9.34,10.08,11.44,11.63,11.18,11.25,11.80,12.16 -"Residential : East South Central",,"ELEC.PRICE.ESC-RES.A",,,,,,,,,,,,,,,,,,,,, -"Residential : Alabama","cents per kilowatthour","ELEC.PRICE.AL-RES.A",7.01,7.12,7.39,7.62,8.00,8.75,9.32,10.40,10.66,10.67,11.09,11.40,11.26,11.48,11.70,11.99,12.55,12.18,12.53,12.57,13.08 -"Residential : Kentucky","cents per kilowatthour","ELEC.PRICE.KY-RES.A",5.58,5.65,5.81,6.11,6.57,7.02,7.34,7.94,8.37,8.57,9.20,9.43,9.79,10.16,10.24,10.49,10.85,10.60,10.80,10.87,11.51 -"Residential : Mississippi","cents per kilowatthour","ELEC.PRICE.MS-RES.A",7.37,7.28,7.60,8.21,8.71,9.66,9.36,10.39,10.22,9.87,10.17,10.26,10.78,11.32,11.27,10.47,11.08,11.12,11.27,11.17,11.73 -"Residential : Tennessee","cents per kilowatthour","ELEC.PRICE.TN-RES.A",6.32,6.41,6.55,6.90,6.98,7.75,7.84,8.91,9.32,9.23,9.98,10.10,9.98,10.32,10.30,10.41,10.72,10.71,10.87,10.76,11.15 -"Residential : West South Central",,"ELEC.PRICE.WSC-RES.A",,,,,,,,,,,,,,,,,,,,, -"Residential : Arkansas","cents per kilowatthour","ELEC.PRICE.AR-RES.A",7.72,7.25,7.24,7.36,8.00,8.85,8.73,9.27,9.14,8.86,9.02,9.30,9.59,9.51,9.82,9.92,10.28,9.81,9.80,10.41,11.32 -"Residential : Louisiana","cents per kilowatthour","ELEC.PRICE.LA-RES.A",7.92,7.10,7.84,8.05,8.87,9.14,9.37,10.28,8.10,8.98,8.96,8.37,9.43,9.57,9.33,9.34,9.74,9.59,9.80,9.67,11.04 -"Residential : Oklahoma","cents per kilowatthour","ELEC.PRICE.OK-RES.A",7.27,6.73,7.47,7.72,7.95,8.55,8.58,9.09,8.49,9.14,9.47,9.51,9.67,10.03,10.14,10.20,10.61,10.30,10.21,10.12,12.27 -"Residential : Texas","cents per kilowatthour","ELEC.PRICE.TX-RES.A",8.86,8.05,9.16,9.73,10.93,12.86,12.34,13.03,12.38,11.60,11.08,10.98,11.35,11.86,11.56,10.99,11.01,11.20,11.76,11.71,12.06 -"Residential : Mountain",,"ELEC.PRICE.MTN-RES.A",,,,,,,,,,,,,,,,,,,,, -"Residential : Arizona","cents per kilowatthour","ELEC.PRICE.AZ-RES.A",8.30,8.27,8.35,8.46,8.86,9.40,9.66,10.27,10.73,10.97,11.08,11.29,11.71,11.90,12.13,12.15,12.44,12.77,12.43,12.27,12.55 -"Residential : Colorado","cents per kilowatthour","ELEC.PRICE.CO-RES.A",7.47,7.37,8.14,8.42,9.06,9.02,9.25,10.13,10.00,11.04,11.27,11.46,11.93,12.18,12.12,12.07,12.17,12.15,12.18,12.36,13.13 -"Residential : Idaho","cents per kilowatthour","ELEC.PRICE.ID-RES.A",6.01,6.59,6.24,6.10,6.29,6.21,6.36,6.99,7.80,7.99,7.87,8.67,9.32,9.72,9.93,9.95,10.04,10.15,9.89,9.95,10.18 -"Residential : Montana","cents per kilowatthour","ELEC.PRICE.MT-RES.A",6.88,7.23,7.56,7.86,8.10,8.28,8.77,9.13,8.94,9.16,9.75,10.08,10.33,10.18,10.88,10.94,10.95,10.96,11.13,11.24,11.25 -"Residential : Nevada","cents per kilowatthour","ELEC.PRICE.NV-RES.A",9.08,9.43,9.02,9.69,10.20,11.08,11.82,11.93,12.86,12.36,11.61,11.83,11.89,12.93,12.76,11.41,11.99,11.85,12.00,11.34,11.50 -"Residential : New Mexico","cents per kilowatthour","ELEC.PRICE.NM-RES.A",8.74,8.50,8.69,8.67,9.13,9.06,9.12,10.01,10.02,10.52,11.00,11.37,11.68,12.28,12.47,12.03,12.88,12.68,12.51,12.94,13.62 -"Residential : Utah","cents per kilowatthour","ELEC.PRICE.UT-RES.A",6.72,6.79,6.90,7.21,7.52,7.59,8.15,8.26,8.48,8.71,8.96,9.93,10.37,10.65,10.88,11.02,10.95,10.41,10.40,10.44,10.50 -"Residential : Wyoming","cents per kilowatthour","ELEC.PRICE.WY-RES.A",6.77,6.97,7.04,7.21,7.48,7.75,7.75,8.21,8.58,8.77,9.11,9.85,10.16,10.50,10.97,11.13,11.37,11.29,11.18,11.11,11.20 -"Residential : Pacific Contiguous",,"ELEC.PRICE.PCC-RES.A",,,,,,,,,,,,,,,,,,,,, -"Residential : California","cents per kilowatthour","ELEC.PRICE.CA-RES.A",12.09,12.64,12.23,12.20,12.51,14.33,14.42,13.81,14.74,14.75,14.78,15.34,16.23,16.25,16.99,17.39,18.31,18.84,19.15,20.45,22.85 -"Residential : Oregon","cents per kilowatthour","ELEC.PRICE.OR-RES.A",6.29,7.12,7.06,7.18,7.25,7.48,8.19,8.49,8.68,8.87,9.54,9.80,9.90,10.47,10.66,10.66,10.66,10.98,11.01,11.17,11.33 -"Residential : Washington","cents per kilowatthour","ELEC.PRICE.WA-RES.A",5.70,6.29,6.31,6.37,6.54,6.82,7.26,7.54,7.67,8.04,8.28,8.53,8.70,8.67,9.09,9.48,9.66,9.75,9.71,9.87,10.09 -"Residential : Pacific Noncontiguous",,"ELEC.PRICE.PCN-RES.A",,,,,,,,,,,,,,,,,,,,, -"Residential : Alaska","cents per kilowatthour","ELEC.PRICE.AK-RES.A",12.12,12.05,11.98,12.44,13.30,14.83,15.18,16.56,17.14,16.26,17.62,17.88,18.12,19.14,19.83,20.30,21.27,21.94,22.92,22.57,22.58 -"Residential : Hawaii","cents per kilowatthour","ELEC.PRICE.HI-RES.A",16.34,15.63,16.73,18.06,20.70,23.35,24.12,32.50,24.20,28.10,34.68,37.34,36.98,37.04,29.60,27.47,29.50,32.47,32.06,30.28,33.30 \ No newline at end of file +"description","units","source key","2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012","2013","2014","2015","2016","2017","2018","2019","2020","2021","2022" +"Average retail price of electricity","cents per kilowatthour",,,,,,,,,,,,,,,,,,,,,,, +"All sectors",,"ELEC.PRICE.US-ALL.A",,,,,,,,,,,,,,,,,,,,,, +"Residential","cents per kilowatthour","ELEC.PRICE.US-RES.A",,,,,,,,,,,,,,,,,,,,,, +"Residential : United States","cents per kilowatthour","ELEC.PRICE.US-RES.A",8.58,8.44,8.72,8.95,9.45,10.40,10.65,11.26,11.51,11.54,11.72,11.88,12.13,12.52,12.65,12.55,12.89,12.87,13.01,13.15,13.66,15.12 +"Residential : New England",,"ELEC.PRICE.NEW-RES.A",,,,,,,,,,,,,,,,,,,,,, +"Residential : Connecticut","cents per kilowatthour","ELEC.PRICE.CT-RES.A",10.90,10.96,11.31,11.63,13.64,16.86,19.11,19.54,20.33,19.25,18.11,17.34,17.55,19.75,20.94,20.01,20.29,21.20,21.87,22.71,21.91,24.65 +"Residential : Maine","cents per kilowatthour","ELEC.PRICE.ME-RES.A",13.13,12.74,12.37,12.16,13.23,13.80,16.52,16.24,15.64,15.72,15.38,14.66,14.35,15.27,15.61,15.83,15.97,16.84,17.89,16.81,17.02,22.52 +"Residential : Massachusetts","cents per kilowatthour","ELEC.PRICE.MA-RES.A",12.47,10.93,11.60,11.75,13.44,16.60,16.23,17.56,16.87,14.59,14.67,14.91,15.83,17.39,19.83,19.00,20.06,21.61,21.92,21.97,22.89,26.10 +"Residential : New Hampshire","cents per kilowatthour","ELEC.PRICE.NH-RES.A",12.49,11.89,11.98,12.49,13.51,14.68,14.88,15.68,16.39,16.32,16.52,16.07,16.33,17.53,18.50,18.38,19.20,19.69,20.05,19.04,19.85,25.50 +"Residential : Rhode Island","cents per kilowatthour","ELEC.PRICE.RI-RES.A",12.13,10.20,11.61,12.19,13.04,15.12,14.05,17.45,15.60,15.92,14.33,14.40,15.20,17.17,19.29,18.62,18.32,20.55,21.73,22.01,22.30,23.20 +"Residential : Vermont","cents per kilowatthour","ELEC.PRICE.VT-RES.A",12.67,12.78,12.82,12.94,12.96,13.39,14.15,14.48,14.90,15.57,16.26,17.01,17.14,17.47,17.09,17.37,17.68,18.02,17.71,19.54,19.26,20.18 +"Residential : Middle Atlantic",,"ELEC.PRICE.MAT-RES.A",,,,,,,,,,,,,,,,,,,,,, +"Residential : New Jersey","cents per kilowatthour","ELEC.PRICE.NJ-RES.A",10.21,10.38,10.67,11.23,11.74,12.84,14.14,15.66,16.31,16.57,16.23,15.78,15.73,15.78,15.81,15.72,15.65,15.41,15.85,16.03,16.35,16.79 +"Residential : New York","cents per kilowatthour","ELEC.PRICE.NY-RES.A",14.04,13.55,14.31,14.54,15.72,16.89,17.10,18.31,17.50,18.74,18.26,17.62,18.79,20.07,18.54,17.58,18.03,18.52,17.94,18.36,19.48,22.04 +"Residential : Pennsylvania","cents per kilowatthour","ELEC.PRICE.PA-RES.A",9.68,9.74,9.59,9.58,9.86,10.35,10.95,11.35,11.65,12.70,13.26,12.75,12.79,13.32,13.64,13.86,14.23,13.89,13.80,13.58,13.76,16.06 +"Residential : East North Central",,"ELEC.PRICE.ENC-RES.A",,,,,,,,,,,,,,,,,,,,,, +"Residential : Illinois","cents per kilowatthour","ELEC.PRICE.IL-RES.A",8.71,8.39,8.38,8.37,8.34,8.42,10.12,11.07,11.27,11.52,11.78,11.37,10.63,11.91,12.50,12.54,12.95,12.77,13.03,13.04,13.18,15.87 +"Residential : Indiana","cents per kilowatthour","ELEC.PRICE.IN-RES.A",6.92,6.91,7.04,7.30,7.50,8.22,8.26,8.87,9.50,9.56,10.06,10.53,10.99,11.46,11.57,11.79,12.29,12.26,12.58,12.83,13.37,14.98 +"Residential : Michigan","cents per kilowatthour","ELEC.PRICE.MI-RES.A",8.26,8.28,8.35,8.33,8.40,9.77,10.21,10.75,11.60,12.46,13.27,14.13,14.59,14.46,14.42,15.22,15.40,15.45,15.74,16.26,17.54,17.75 +"Residential : Ohio","cents per kilowatthour","ELEC.PRICE.OH-RES.A",8.37,8.24,8.26,8.45,8.51,9.34,9.57,10.06,10.67,11.31,11.42,11.76,12.01,12.50,12.80,12.47,12.63,12.56,12.38,12.29,12.77,14.01 +"Residential : Wisconsin","cents per kilowatthour","ELEC.PRICE.WI-RES.A",7.90,8.18,8.67,9.07,9.66,10.51,10.87,11.51,11.94,12.65,13.02,13.19,13.55,13.67,14.11,14.07,14.35,14.02,14.18,14.32,14.52,15.50 +"Residential : West North Central",,"ELEC.PRICE.WNC-RES.A",,,,,,,,,,,,,,,,,,,,,, +"Residential : Iowa","cents per kilowatthour","ELEC.PRICE.IA-RES.A",8.41,8.35,8.57,8.96,9.27,9.63,9.45,9.49,9.99,10.42,10.46,10.82,11.04,11.16,11.63,11.94,12.34,12.24,12.46,12.46,12.73,13.07 +"Residential : Kansas","cents per kilowatthour","ELEC.PRICE.KS-RES.A",7.66,7.67,7.71,7.74,7.90,8.25,8.19,8.89,9.53,10.03,10.65,11.24,11.64,12.17,12.34,13.06,13.31,13.35,12.71,12.85,12.98,14.13 +"Residential : Minnesota","cents per kilowatthour","ELEC.PRICE.MN-RES.A",7.61,7.49,7.65,7.92,8.28,8.70,9.18,9.74,10.04,10.59,10.96,11.35,11.81,12.01,12.12,12.67,13.04,13.14,13.04,13.17,13.50,14.16 +"Residential : Missouri","cents per kilowatthour","ELEC.PRICE.MO-RES.A",7.00,7.06,6.96,6.97,7.08,7.44,7.69,8.00,8.54,9.08,9.75,10.17,10.60,10.64,11.21,11.21,11.63,11.34,11.14,11.22,11.41,12.29 +"Residential : Nebraska","cents per kilowatthour","ELEC.PRICE.NE-RES.A",6.50,6.73,6.87,6.96,7.14,7.41,7.59,7.87,8.52,8.94,9.32,10.04,10.31,10.40,10.60,10.84,10.97,10.70,10.77,10.80,10.75,10.93 +"Residential : North Dakota","cents per kilowatthour","ELEC.PRICE.ND-RES.A",6.47,6.39,6.49,6.79,6.99,7.14,7.30,7.51,7.58,8.13,8.58,9.06,9.12,9.15,9.62,10.16,10.29,10.25,10.30,10.44,10.85,10.90 +"Residential : South Dakota","cents per kilowatthour","ELEC.PRICE.SD-RES.A",7.42,7.40,7.47,7.65,7.77,7.83,8.07,8.27,8.49,8.97,9.35,10.07,10.26,10.47,11.08,11.47,11.77,11.59,11.55,11.75,12.22,12.17 +"Residential : South Atlantic",,"ELEC.PRICE.SAT-RES.A",,,,,,,,,,,,,,,,,,,,,, +"Residential : Delaware","cents per kilowatthour","ELEC.PRICE.DE-RES.A",8.61,8.70,8.59,8.78,9.01,11.85,13.16,13.93,14.07,13.80,13.70,13.58,12.95,13.29,13.42,13.42,13.35,12.53,12.55,12.56,12.52,13.73 +"Residential : District Of Columbia","cents per kilowatthour","ELEC.PRICE.DC-RES.A",7.79,7.98,7.84,8.00,9.10,9.88,11.18,12.78,13.73,14.01,13.40,12.28,12.57,12.74,12.99,12.29,12.94,12.84,12.98,12.63,13.09,14.20 +"Residential : Florida","cents per kilowatthour","ELEC.PRICE.FL-RES.A",8.59,8.16,8.55,8.99,9.62,11.33,11.22,11.65,12.39,11.44,11.51,11.42,11.27,11.89,11.58,10.98,11.61,11.54,11.70,11.27,11.90,13.92 +"Residential : Georgia","cents per kilowatthour","ELEC.PRICE.GA-RES.A",7.72,7.63,7.70,7.86,8.64,8.91,9.10,9.93,10.13,10.07,11.05,11.17,11.46,11.65,11.54,11.50,11.90,11.47,11.76,12.02,12.51,14.02 +"Residential : Maryland","cents per kilowatthour","ELEC.PRICE.MD-RES.A",7.67,7.74,7.73,7.80,8.46,9.71,11.89,13.84,14.98,14.32,13.31,12.84,13.25,13.63,13.82,14.23,13.96,13.30,13.12,13.01,13.12,14.51 +"Residential : North Carolina","cents per kilowatthour","ELEC.PRICE.NC-RES.A",8.12,8.19,8.32,8.45,8.65,9.12,9.40,9.52,9.99,10.12,10.26,10.91,10.97,11.10,11.28,11.03,10.94,11.09,11.42,11.38,11.32,12.08 +"Residential : South Carolina","cents per kilowatthour","ELEC.PRICE.SC-RES.A",7.69,7.72,8.01,8.12,8.67,9.03,9.19,9.89,10.44,10.50,11.05,11.77,11.99,12.45,12.57,12.65,13.02,12.44,12.99,12.78,12.86,14.11 +"Residential : Virginia","cents per kilowatthour","ELEC.PRICE.VA-RES.A",7.79,7.79,7.76,7.99,8.16,8.49,8.74,9.62,10.61,10.45,10.64,11.08,10.84,11.10,11.37,11.36,11.55,11.73,12.07,12.03,11.96,13.52 +"Residential : West Virginia","cents per kilowatthour","ELEC.PRICE.WV-RES.A",6.26,6.23,6.24,6.23,6.21,6.35,6.73,7.06,7.90,8.79,9.39,9.85,9.52,9.34,10.08,11.44,11.63,11.18,11.25,11.80,12.15,13.25 +"Residential : East South Central",,"ELEC.PRICE.ESC-RES.A",,,,,,,,,,,,,,,,,,,,,, +"Residential : Alabama","cents per kilowatthour","ELEC.PRICE.AL-RES.A",7.01,7.12,7.39,7.62,8.00,8.75,9.32,10.40,10.66,10.67,11.09,11.40,11.26,11.48,11.70,11.99,12.55,12.18,12.53,12.57,12.96,14.39 +"Residential : Kentucky","cents per kilowatthour","ELEC.PRICE.KY-RES.A",5.58,5.65,5.81,6.11,6.57,7.02,7.34,7.94,8.37,8.57,9.20,9.43,9.79,10.16,10.24,10.49,10.85,10.60,10.80,10.87,11.50,12.85 +"Residential : Mississippi","cents per kilowatthour","ELEC.PRICE.MS-RES.A",7.37,7.28,7.60,8.21,8.71,9.66,9.36,10.39,10.22,9.87,10.17,10.26,10.78,11.32,11.27,10.47,11.08,11.12,11.27,11.17,11.56,12.65 +"Residential : Tennessee","cents per kilowatthour","ELEC.PRICE.TN-RES.A",6.32,6.41,6.55,6.90,6.98,7.75,7.84,8.91,9.32,9.23,9.98,10.10,9.98,10.32,10.30,10.41,10.72,10.71,10.87,10.76,11.07,12.37 +"Residential : West South Central",,"ELEC.PRICE.WSC-RES.A",,,,,,,,,,,,,,,,,,,,,, +"Residential : Arkansas","cents per kilowatthour","ELEC.PRICE.AR-RES.A",7.72,7.25,7.24,7.36,8.00,8.85,8.73,9.27,9.14,8.86,9.02,9.30,9.59,9.51,9.82,9.92,10.28,9.81,9.80,10.41,11.27,11.86 +"Residential : Louisiana","cents per kilowatthour","ELEC.PRICE.LA-RES.A",7.92,7.10,7.84,8.05,8.87,9.14,9.37,10.28,8.10,8.98,8.96,8.37,9.43,9.57,9.33,9.34,9.74,9.59,9.80,9.67,11.02,12.69 +"Residential : Oklahoma","cents per kilowatthour","ELEC.PRICE.OK-RES.A",7.27,6.73,7.47,7.72,7.95,8.55,8.58,9.09,8.49,9.14,9.47,9.51,9.67,10.03,10.14,10.20,10.61,10.30,10.21,10.12,11.00,12.57 +"Residential : Texas","cents per kilowatthour","ELEC.PRICE.TX-RES.A",8.86,8.05,9.16,9.73,10.93,12.86,12.34,13.03,12.38,11.60,11.08,10.98,11.35,11.86,11.56,10.99,11.01,11.20,11.76,11.71,12.11,13.55 +"Residential : Mountain",,"ELEC.PRICE.MTN-RES.A",,,,,,,,,,,,,,,,,,,,,, +"Residential : Arizona","cents per kilowatthour","ELEC.PRICE.AZ-RES.A",8.30,8.27,8.35,8.46,8.86,9.40,9.66,10.27,10.73,10.97,11.08,11.29,11.71,11.90,12.13,12.15,12.44,12.77,12.43,12.27,12.54,13.02 +"Residential : Colorado","cents per kilowatthour","ELEC.PRICE.CO-RES.A",7.47,7.37,8.14,8.42,9.06,9.02,9.25,10.13,10.00,11.04,11.27,11.46,11.93,12.18,12.12,12.07,12.17,12.15,12.18,12.36,13.07,14.29 +"Residential : Idaho","cents per kilowatthour","ELEC.PRICE.ID-RES.A",6.01,6.59,6.24,6.10,6.29,6.21,6.36,6.99,7.80,7.99,7.87,8.67,9.32,9.72,9.93,9.95,10.04,10.15,9.89,9.95,10.16,10.42 +"Residential : Montana","cents per kilowatthour","ELEC.PRICE.MT-RES.A",6.88,7.23,7.56,7.86,8.10,8.28,8.77,9.13,8.94,9.16,9.75,10.08,10.33,10.18,10.88,10.94,10.95,10.96,11.13,11.24,11.22,11.37 +"Residential : Nevada","cents per kilowatthour","ELEC.PRICE.NV-RES.A",9.08,9.43,9.02,9.69,10.20,11.08,11.82,11.93,12.86,12.36,11.61,11.83,11.89,12.93,12.76,11.41,11.99,11.85,12.00,11.34,11.49,13.79 +"Residential : New Mexico","cents per kilowatthour","ELEC.PRICE.NM-RES.A",8.74,8.50,8.69,8.67,9.13,9.06,9.12,10.01,10.02,10.52,11.00,11.37,11.68,12.28,12.47,12.03,12.88,12.68,12.51,12.94,13.52,14.11 +"Residential : Utah","cents per kilowatthour","ELEC.PRICE.UT-RES.A",6.72,6.79,6.90,7.21,7.52,7.59,8.15,8.26,8.48,8.71,8.96,9.93,10.37,10.65,10.88,11.02,10.95,10.41,10.40,10.44,10.43,10.94 +"Residential : Wyoming","cents per kilowatthour","ELEC.PRICE.WY-RES.A",6.77,6.97,7.04,7.21,7.48,7.75,7.75,8.21,8.58,8.77,9.11,9.85,10.16,10.50,10.97,11.13,11.37,11.29,11.18,11.11,11.17,11.10 +"Residential : Pacific Contiguous",,"ELEC.PRICE.PCC-RES.A",,,,,,,,,,,,,,,,,,,,,, +"Residential : California","cents per kilowatthour","ELEC.PRICE.CA-RES.A",12.09,12.64,12.23,12.20,12.51,14.33,14.42,13.81,14.74,14.75,14.78,15.34,16.23,16.25,16.99,17.39,18.31,18.84,19.15,20.45,22.82,26.17 +"Residential : Oregon","cents per kilowatthour","ELEC.PRICE.OR-RES.A",6.29,7.12,7.06,7.18,7.25,7.48,8.19,8.49,8.68,8.87,9.54,9.80,9.90,10.47,10.66,10.66,10.66,10.98,11.01,11.17,11.37,11.35 +"Residential : Washington","cents per kilowatthour","ELEC.PRICE.WA-RES.A",5.70,6.29,6.31,6.37,6.54,6.82,7.26,7.54,7.67,8.04,8.28,8.53,8.70,8.67,9.09,9.48,9.66,9.75,9.71,9.87,10.11,10.23 +"Residential : Pacific Noncontiguous",,"ELEC.PRICE.PCN-RES.A",,,,,,,,,,,,,,,,,,,,,, +"Residential : Alaska","cents per kilowatthour","ELEC.PRICE.AK-RES.A",12.12,12.05,11.98,12.44,13.30,14.83,15.18,16.56,17.14,16.26,17.62,17.88,18.12,19.14,19.83,20.30,21.27,21.94,22.92,22.57,22.55,23.02 +"Residential : Hawaii","cents per kilowatthour","ELEC.PRICE.HI-RES.A",16.34,15.63,16.73,18.06,20.70,23.35,24.12,32.50,24.20,28.10,34.68,37.34,36.98,37.04,29.60,27.47,29.50,32.47,32.06,30.28,33.49,43.02 \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv b/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv index e3d4e71c..acb4faa3 100644 --- a/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv +++ b/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv @@ -54,5 +54,6 @@ Date,U.S. Price of Natural Gas Delivered to Residential Consumers (Dollars per T 2017,10.91,16.12,10.52,15.78,12.97,12.49,8.08,13.95,12.84,12.53,21.15,16.93,38.88,7.65,8.83,8.94,9.3,10.95,11.62,13.04,14.61,12.97,13.32,8.38,8.47,11.83,11.78,7.62,9.01,8.82,14.55,9.14,9.22,12.04,13.29,7.64,9.72,11.4,10.59,11.4,14.02,14.47,8.18,10.31,13.61,9.05,14.12,12.34,10.62,9.43,8.4,9.01 2018,10.5,15.22,10.99,15.35,11.77,12.3,7.74,13.92,12.6,11.78,21.34,13.98,43.48,7.11,8.15,8.72,8.94,10.18,10.56,11.65,16.32,11.79,15.47,8.19,8.69,10.44,10.37,7.32,8.54,9.24,15.35,9.09,7.89,12.37,12.11,7.2,9.1,9.25,10.65,11.25,15.65,13.46,7.66,9.46,11.42,9.04,13.65,11.71,10.28,9.84,8.04,8.6 2019,10.51,15.63,11.11,13.46,11.05,12.95,7.77,14.61,12.1,12.81,21.66,14.88,44.14,6.5,8.04,8.68,8.19,9.24,10.85,11.49,16.05,12.55,14.72,8.08,8.06,10.58,10.41,7.09,7.9,9.5,15.75,9.73,6.4,12.61,12.88,7,9.58,9.4,9.97,11.7,15.36,13.07,7.29,9.46,10.61,7.82,13.14,12.62,9.82,9.9,7.68,8.06 -2020,10.78,16.01,11.14,13.1,12.28,14.14,7.22,14.68,12.95,11.92,21.38,15.45,37.75,6.73,7.94,8.59,7.78,9.37,11.14,12.15,14.88,13.07,14.71,8.25,8.04,11.51,10.39,7.22,8.04,10.36,14.66,9.92,7.04,12.8,13.23,6.82,9.53,9.11,10.91,11.48,15.06,13.49,7.11,8.97,11.64,8.15,13.21,12.72,10.97,10.11,7.52,8.84 -2021,12.24,15.64,10.93,15.52,,,9.19,16.06,13.14,14.43,,17.05,46.99,7.01,,,10.19,10.91,,,,,15.97,9.15,,,10.89,8.86,,9.72,16.31,10.32,,,14.18,,,10.35,,11.88,16.18,,9.84,,,8.99,14.01,,,,,10.04 +2020,10.78,16.01,11.14,13.1,12.28,14.14,7.22,14.68,12.95,11.92,21.38,15.45,37.75,6.73,7.94,8.59,7.78,9.37,11.14,12.16,14.88,13.07,14.71,8.25,8.04,11.51,10.39,7.22,8.04,10.36,14.66,9.92,7.04,12.8,13.23,6.82,9.53,9.11,10.91,11.48,15.06,13.49,7.11,8.97,11.64,8.15,13.21,12.72,10.97,10.11,7.52,8.84 +2021,12.18,15.72,10.94,15.52,12.56,16.34,9.1,16.06,13.14,14.29,22.9,15.91,46.99,7,10.51,10.05,10.2,11.11,12.22,12.83,16.54,14.7,16.02,9.21,9.4,12.65,10.81,8.86,9.59,9.72,16.31,10.26,9.77,13.78,14.12,9.11,11.08,10.29,11.76,12.01,16.18,14.29,9.75,10.29,13.77,8.99,14.01,13.68,11.63,10.46,9.74,10.04 +2022,14.8,17.4,11.07,17.82,16.32,,12.74,18.38,15,16.58,26.04,19.4,57.46,7.96,,,13.21,,15.05,15.59,,16.71,20.72,11.26,,14.39,14.23,10.43,12.74,,20.51,12.6,12.47,16.36,17.28,10.92,,,12.82,,18.17,,11.06,,,10.48,15.51,,12.79,12.15,11.32,13.43 diff --git a/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv b/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv index 0e112bef..f2951f5d 100644 --- a/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv +++ b/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv @@ -1,685 +1,713 @@ -Back to Contents,Data 1: Residential Heating Oil Weekly Heating Oil and Propane Prices (October - March),,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Sourcekey,W_EPD2F_PRS_NUS_DPG,W_EPD2F_PRS_R10_DPG,W_EPD2F_PRS_R1X_DPG,W_EPD2F_PRS_SCT_DPG,W_EPD2F_PRS_SME_DPG,W_EPD2F_PRS_SMA_DPG,W_EPD2F_PRS_SNH_DPG,W_EPD2F_PRS_SRI_DPG,W_EPD2F_PRS_SVT_DPG,W_EPD2F_PRS_R1Y_DPG,W_EPD2F_PRS_SDE_DPG,W_EPD2F_PRS_SDC_DPG,W_EPD2F_PRS_SMD_DPG,W_EPD2F_PRS_SNJ_DPG,W_EPD2F_PRS_SNY_DPG,W_EPD2F_PRS_SPA_DPG,W_EPD2F_PRS_R1Z_DPG,W_EPD2F_PRS_SNC_DPG,W_EPD2F_PRS_SVA_DPG,W_EPD2F_PRS_R20_DPG,W_EPD2F_PRS_SIL_DPG,W_EPD2F_PRS_SIN_DPG,W_EPD2F_PRS_SIA_DPG,W_EPD2F_PRS_SKY_DPG,W_EPD2F_PRS_SMI_DPG,W_EPD2F_PRS_SMN_DPG,W_EPD2F_PRS_SNE_DPG,W_EPD2F_PRS_SOH_DPG,W_EPD2F_PRS_SWI_DPG, -Date,Weekly U.S. Weekly No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly East Coast (PADD 1) No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly New England (PADD 1A) No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Connecticut No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Maine No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Massachusetts No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly New Hampshire No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Rhode Island No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Vermont No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Central Atlantic (PADD 1B) No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Delaware No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly District of Columbia No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Maryland No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly New Jersey No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly New York No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Pennsylvania No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Lower Atlantic (PADD 1C) No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly North Carolina No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Virginia No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly PADD 2 No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Illinois No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Indiana No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Iowa No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Kentucky No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Michigan No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Minnesota No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Nebraska No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Ohio No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Wisconsin No. 2 Heating Oil Residential Price (Dollars per Gallon), -"Oct 01, 1990",1.279,1.296,1.306,1.285,1.277,1.334,1.292,1.313,1.255,1.295,1.23,1.231,1.269,1.317,1.342,1.214,1.265,1.257,1.275,1.198,1.205,1.23,1.163,,1.251,1.169,,1.223,1.157, -"Oct 15, 1990",1.332,1.348,1.346,1.347,1.314,1.362,1.324,1.34,1.327,1.351,1.303,1.35,1.319,1.377,1.4,1.266,1.325,1.307,1.346,1.259,1.265,1.295,1.192,,1.296,1.243,,1.29,1.22, -"Nov 05, 1990",1.304,1.319,1.283,1.355,1.186,1.264,1.274,1.301,1.311,1.339,1.264,1.356,1.309,1.36,1.392,1.251,1.296,1.279,1.316,1.232,1.208,1.23,1.186,,1.278,1.245,,1.248,1.201, -"Nov 19, 1990",1.289,1.303,1.257,1.327,1.126,1.243,1.246,1.295,1.305,1.329,1.242,1.351,1.294,1.341,1.385,1.241,1.273,1.26,1.287,1.219,1.189,1.23,1.172,,1.261,1.242,,1.207,1.198, -"Dec 03, 1990",1.285,1.303,1.268,1.331,1.161,1.254,1.26,1.306,1.286,1.324,1.246,1.361,1.3,1.346,1.366,1.252,1.266,1.243,1.291,1.197,1.169,1.202,1.132,,1.224,1.225,,1.202,1.177, -"Dec 17, 1990",1.239,1.266,1.214,1.28,1.069,1.212,1.166,1.249,1.26,1.297,1.187,1.324,1.257,1.288,1.366,1.203,1.214,1.201,1.227,1.113,1.077,1.102,1.07,,1.152,1.128,,1.132,1.095, -"Jan 07, 1991",1.205,1.232,1.182,1.254,1.086,1.16,1.148,1.232,1.224,1.262,1.169,1.288,1.232,1.272,1.32,1.174,1.183,1.178,1.189,1.073,1.033,1.072,0.968,,1.106,1.089,,1.076,1.076, -"Jan 21, 1991",1.226,1.254,1.211,1.266,1.119,1.208,1.176,1.236,1.21,1.282,1.186,1.282,1.244,1.296,1.339,1.196,1.181,1.184,1.178,1.096,1.053,1.112,1.001,,1.13,1.118,,1.084,1.093, -"Feb 04, 1991",1.18,1.212,1.173,1.24,1.056,1.166,1.124,1.212,1.198,1.239,1.149,1.254,1.188,1.25,1.294,1.159,1.131,1.122,1.141,1.03,0.99,1.026,0.934,,1.079,1.036,,1.022,1.035, -"Feb 18, 1991",1.145,1.181,1.149,1.216,1.043,1.137,1.1,1.208,1.168,1.206,1.128,1.22,1.164,1.229,1.265,1.111,1.093,1.094,1.092,0.976,0.925,0.981,0.876,,1.023,0.98,,0.97,0.985, -"Mar 04, 1991",1.097,1.135,1.092,1.155,0.975,1.089,1.017,1.148,1.125,1.166,1.075,1.182,1.12,1.176,1.237,1.06,1.039,1.042,1.035,0.92,0.88,0.916,0.82,,0.97,0.909,,0.918,0.934, -"Mar 18, 1991",1.054,1.088,1.05,1.105,0.93,1.047,0.976,1.113,1.097,1.117,1.02,1.154,1.072,1.122,1.186,1.016,0.997,1.005,0.989,0.893,0.852,0.895,0.789,,0.93,0.891,,0.896,0.908, -"Oct 07, 1991",0.955,0.969,0.946,0.965,0.858,0.965,0.905,0.971,0.933,0.986,0.932,1.049,0.981,0.997,1.044,0.887,0.914,0.917,0.912,0.881,,0.894,0.813,,0.893,0.885,,0.858,0.891, -"Oct 21, 1991",0.987,1.001,0.982,1.007,0.892,0.992,0.952,1.015,0.981,1.019,0.986,1.059,1.018,1.041,1.081,0.906,0.93,0.936,0.923,0.907,,0.93,,,0.906,0.916,,0.905,0.891, -"Nov 04, 1991",1.007,1.023,1,1.023,0.928,1.008,0.977,1.022,0.993,1.041,1.006,1.077,1.025,1.065,1.099,0.94,0.956,0.964,0.947,0.926,,0.941,0.869,,0.936,0.929,,0.937,0.913, -"Nov 18, 1991",1.027,1.043,1.018,1.037,0.964,1.025,0.987,1.038,1.01,1.061,1.024,1.1,1.043,1.083,1.122,0.956,0.981,0.988,0.973,0.942,,0.945,,,0.965,0.945,,0.941,0.924, -"Dec 02, 1991",1.021,1.038,1.006,1.033,0.915,1.014,0.985,1.039,1.002,1.061,1.015,1.1,1.045,1.079,1.118,0.964,0.973,0.982,0.964,0.929,,0.933,0.846,,0.958,0.937,,0.925,0.92, -"Dec 16, 1991",1.007,1.025,0.987,1.019,0.893,0.994,0.98,1.01,0.98,1.052,1.011,1.103,1.03,1.067,1.11,0.956,0.95,0.957,0.941,0.906,,0.887,,,0.932,0.913,,0.891,0.902, -"Jan 06, 1992",0.98,1.002,0.958,0.987,0.875,0.958,0.965,0.985,0.969,1.032,0.982,1.092,1.012,1.04,1.091,0.938,0.922,0.925,0.918,0.866,,0.858,0.738,,0.9,0.874,,0.85,0.876, -"Jan 20, 1992",0.973,0.995,0.952,0.976,0.865,0.955,0.961,0.985,0.958,1.025,0.969,1.086,1.016,1.026,1.088,0.926,0.918,0.926,0.91,0.852,,0.84,,,0.881,0.85,,0.834,0.853, -"Feb 03, 1992",0.972,0.997,0.953,0.987,0.866,0.951,0.948,0.987,0.963,1.027,0.965,1.087,1.011,1.041,1.088,0.927,0.921,0.928,0.913,0.839,,0.838,0.718,,0.866,0.841,,0.836,0.847, -"Feb 17, 1992",0.976,0.998,0.957,0.985,0.867,0.964,0.938,0.983,0.962,1.027,0.961,1.087,1.015,1.044,1.086,0.926,0.922,0.929,0.915,0.854,,0.846,,,0.875,0.846,,0.858,0.848, -"Mar 02, 1992",0.968,0.992,0.949,0.984,0.847,0.954,0.93,0.975,0.959,1.021,0.957,1.08,1.005,1.039,1.081,0.918,0.921,0.93,0.912,0.844,,0.84,0.73,,0.876,0.84,,0.85,0.848, -"Mar 16, 1992",0.963,0.983,0.936,0.971,0.831,0.942,0.903,0.976,0.954,1.014,0.946,1.08,1.002,1.027,1.076,0.91,0.916,0.928,0.902,0.853,,0.839,,,0.877,0.845,,0.85,0.85, -"Oct 05, 1992",0.964,0.978,0.956,0.975,0.868,0.975,0.903,0.979,0.946,0.994,0.961,1.034,0.991,1.033,1.033,0.902,0.921,0.945,0.894,0.891,,0.893,0.816,,0.912,0.911,,0.879,0.886, -"Oct 19, 1992",0.98,0.993,0.97,0.983,0.898,0.989,0.921,1.003,0.954,1.011,0.974,1.065,1.005,1.039,1.058,0.92,0.94,0.954,0.924,0.905,,0.914,,,0.918,0.918,,0.891,0.89, -"Nov 02, 1992",0.984,0.999,0.968,0.99,0.864,0.988,0.928,0.999,0.96,1.019,0.981,1.083,1.013,1.045,1.069,0.925,0.948,0.953,0.942,0.901,,0.909,0.829,,0.923,0.922,,0.888,0.889, -"Nov 16, 1992",0.983,0.997,0.963,0.99,0.851,0.981,0.929,0.995,0.959,1.019,0.958,1.062,1.011,1.046,1.071,0.922,0.943,0.944,0.941,0.899,,0.897,,,0.918,0.918,,0.878,0.885, -"Dec 07, 1992",0.973,0.991,0.956,0.989,0.826,0.973,0.927,0.986,0.954,1.013,0.95,1.057,1.001,1.021,1.07,0.922,0.94,0.941,0.938,0.879,,0.883,0.769,,0.912,0.9,,0.862,0.874, -"Dec 21, 1992",0.974,0.991,0.957,0.988,0.84,0.973,0.926,0.986,0.952,1.013,0.948,1.062,1.001,1.019,1.071,0.922,0.935,0.937,0.934,0.874,,0.872,,,0.9,0.876,,0.849,0.87, -"Jan 04, 1993",0.974,0.994,0.961,0.992,0.845,0.978,0.929,0.987,0.947,1.016,0.949,1.062,1.005,1.022,1.073,0.926,0.936,0.937,0.936,0.868,,0.875,0.761,,0.898,0.876,,0.853,0.87, -"Jan 18, 1993",0.975,0.993,0.964,1.002,0.848,0.975,0.929,0.982,0.951,1.014,0.943,1.073,1.004,1.011,1.073,0.924,0.933,0.933,0.932,0.873,,0.872,,,0.897,0.879,,0.849,0.865, -"Feb 01, 1993",0.974,0.994,0.965,1.006,0.843,0.974,0.934,0.99,0.948,1.016,0.951,1.083,1.008,1.022,1.074,0.922,0.933,0.934,0.933,0.865,,0.865,0.746,,0.899,0.877,,0.857,0.866, -"Feb 15, 1993",0.978,0.996,0.966,1.009,0.849,0.973,0.924,0.991,0.949,1.018,0.954,1.091,1.01,1.028,1.074,0.924,0.933,0.932,0.933,0.875,,0.87,,,0.9,0.881,,0.859,0.866, -"Mar 01, 1993",0.977,0.997,0.962,1.009,0.817,0.973,0.921,0.991,0.948,1.021,0.961,1.098,1.018,1.032,1.077,0.926,0.933,0.933,0.934,0.87,,0.874,0.759,,0.902,0.886,,0.868,0.864, -"Mar 15, 1993",0.985,1.001,0.973,1.013,0.858,0.983,0.924,0.996,0.956,1.022,0.961,1.105,1.023,1.033,1.077,0.928,0.936,0.935,0.938,0.89,,0.885,,,0.916,0.894,,0.883,0.874, -"Apr 05, 1993",,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -"Oct 04, 1993",0.936,0.95,0.914,0.949,0.832,0.916,0.865,0.955,0.913,0.974,0.916,1.054,0.979,0.981,1.034,0.864,0.89,0.895,0.884,0.858,,0.854,0.791,,0.866,0.889,,0.842,0.854, -"Oct 18, 1993",0.947,0.956,0.917,0.958,0.827,0.916,0.874,0.952,0.92,0.981,0.924,1.055,0.981,0.996,1.038,0.873,0.896,0.898,0.894,0.893,,0.883,,,0.896,0.925,,0.865,0.888, -"Nov 01, 1993",0.946,0.958,0.916,0.96,0.81,0.916,0.88,0.942,0.919,0.985,0.926,1.055,0.984,0.998,1.044,0.876,0.893,0.891,0.895,0.882,,0.87,0.827,,0.9,0.919,,0.862,0.871, -"Nov 15, 1993",0.947,0.959,0.916,0.96,0.796,0.92,0.88,0.942,0.918,0.987,0.926,1.054,0.985,0.993,1.047,0.88,0.896,0.895,0.897,0.875,,0.86,,,0.893,0.905,,0.853,0.859, -"Dec 06, 1993",0.938,0.953,0.905,0.947,0.789,0.903,0.874,0.945,0.921,0.985,0.924,1.052,0.968,0.986,1.047,0.879,0.89,0.889,0.891,0.85,,0.828,0.761,,0.872,0.889,,0.824,0.852, -"Dec 20, 1993",0.926,0.943,0.892,0.946,0.765,0.887,0.864,0.925,0.906,0.975,0.924,1.053,0.954,0.978,1.039,0.867,0.875,0.87,0.88,0.83,,0.811,,,0.846,0.856,,0.795,0.827, -"Jan 03, 1994",0.921,0.941,0.891,0.933,0.791,0.886,0.862,0.919,0.907,0.974,0.924,1.043,0.953,0.976,1.038,0.865,0.875,0.871,0.88,0.809,,0.798,0.667,,0.836,0.843,,0.785,0.818, -"Jan 17, 1994",0.947,0.967,0.929,0.961,0.854,0.935,0.887,0.936,0.915,0.993,0.956,1.053,0.989,1.001,1.053,0.884,0.898,0.894,0.903,0.835,,0.821,,,0.845,0.852,,0.822,0.828, -"Jan 31, 1994",0.966,0.988,0.95,0.978,0.865,0.959,0.926,0.956,0.93,1.014,0.975,1.071,1.014,1.021,1.065,0.922,0.927,0.918,0.939,0.84,,0.84,0.699,,0.875,0.859,,0.839,0.836, -"Feb 07, 1994",0.987,1.01,0.971,0.99,0.909,0.979,0.953,0.975,0.963,1.038,0.984,1.084,1.036,1.046,1.088,0.947,0.937,0.932,0.942,0.856,,0.864,0.709,,0.895,0.863,,0.86,0.852, -"Feb 14, 1994",0.994,1.019,0.984,1.008,0.918,0.991,0.968,0.98,0.972,1.045,0.977,1.091,1.039,1.055,1.093,0.959,0.936,0.93,0.942,0.859,,0.855,0.713,,0.894,0.87,,0.863,0.86, -"Feb 21, 1994",0.988,1.013,0.973,1.006,0.898,0.971,0.968,0.971,0.973,1.042,0.97,1.082,1.022,1.059,1.094,0.949,0.929,0.928,0.931,0.848,,0.844,0.71,,0.886,0.86,,0.842,0.852, -"Feb 28, 1994",0.987,1.009,0.969,1.006,0.893,0.963,0.96,0.97,0.973,1.039,0.963,1.072,1.02,1.055,1.09,0.945,0.927,0.926,0.929,0.854,,0.842,,,0.883,0.854,,0.839,0.848, -"Mar 07, 1994",0.979,1.004,0.959,0.999,0.892,0.948,0.95,0.967,0.972,1.035,0.958,1.072,1.012,1.046,1.09,0.941,0.923,0.92,0.925,0.844,,0.843,0.706,,0.881,0.854,,0.841,0.844, -"Mar 21, 1994",0.97,0.99,0.938,0.977,0.843,0.933,0.929,0.956,0.966,1.024,0.948,1.055,0.985,1.041,1.081,0.925,0.912,0.908,0.916,0.851,,0.839,,,0.873,0.858,,0.837,0.844, -"Oct 03, 1994",0.902,0.912,0.849,0.878,0.732,0.872,0.796,0.866,0.879,0.96,0.825,0.994,0.946,0.919,1.049,0.797,0.885,0.891,0.879,0.826,,0.822,0.756,0.789,0.851,0.828,,0.816,0.828, -"Oct 17, 1994",0.904,0.914,0.849,0.877,0.727,0.874,0.798,0.865,0.891,0.962,0.845,0.994,0.943,0.928,1.051,0.802,0.889,0.895,0.884,0.829,,0.825,,0.788,0.846,0.835,,0.817,0.829, -"Nov 07, 1994",0.91,0.919,0.856,0.883,0.727,0.884,0.802,0.872,0.889,0.966,0.864,1.006,0.948,0.932,1.054,0.808,0.895,0.899,0.892,0.84,,0.831,0.777,0.821,0.854,0.864,,0.831,0.832, -"Nov 21, 1994",0.913,0.923,0.862,0.89,0.748,0.885,0.814,0.876,0.887,0.97,0.871,1.018,0.953,0.933,1.055,0.817,0.895,0.899,0.891,0.839,,0.832,,0.817,0.852,0.86,,0.825,0.831, -"Dec 05, 1994",0.915,0.926,0.864,0.894,0.747,0.885,0.82,0.876,0.888,0.975,0.875,1.034,0.971,0.934,1.068,0.816,0.895,0.899,0.891,0.834,,0.832,0.755,0.815,0.854,0.856,,0.819,0.83, -"Dec 19, 1994",0.919,0.931,0.868,0.901,0.754,0.888,0.815,0.892,0.889,0.98,0.878,1.042,0.973,0.941,1.071,0.825,0.899,0.898,0.899,0.832,,0.829,,0.808,0.852,0.84,,0.819,0.827, -"Jan 02, 1995",0.925,0.938,0.876,0.904,0.779,0.895,0.827,0.901,0.893,0.987,0.922,1.035,0.976,0.949,1.079,0.831,0.9,0.899,0.901,0.827,,0.829,0.758,0.808,0.852,0.838,,0.814,0.827, -"Jan 16, 1995",0.928,0.941,0.88,0.912,0.774,0.897,0.838,0.9,0.894,0.991,0.916,1.04,0.984,0.947,1.083,0.838,0.899,0.892,0.905,0.831,,0.829,,0.804,0.853,0.839,,0.815,0.828, -"Feb 06, 1995",0.928,0.941,0.879,0.915,0.765,0.897,0.839,0.899,0.89,0.992,0.912,1.043,0.986,0.952,1.086,0.834,0.9,0.892,0.907,0.825,,0.821,0.741,0.801,0.852,0.844,,0.81,0.824, -"Feb 20, 1995",0.931,0.944,0.881,0.918,0.773,0.896,0.843,0.902,0.893,0.995,0.906,1.042,0.988,0.958,1.089,0.835,0.901,0.893,0.908,0.829,,0.821,,0.8,0.853,0.842,,0.811,0.826, -"Mar 06, 1995",0.928,0.942,0.878,0.916,0.767,0.892,0.84,0.899,0.892,0.993,0.908,1.045,0.988,0.959,1.086,0.834,0.9,0.893,0.905,0.825,,0.827,0.745,0.798,0.852,0.837,,0.811,0.826, -"Mar 20, 1995",0.923,0.936,0.871,0.919,0.751,0.884,0.833,0.893,0.886,0.987,0.908,1.046,0.986,0.951,1.082,0.825,0.897,0.893,0.902,0.826,,0.82,,0.797,0.852,0.844,,0.802,0.825, -"Oct 02, 1995",0.899,0.909,0.85,0.867,0.758,0.869,0.8,0.882,0.866,0.955,0.838,1.016,0.963,0.921,1.051,0.785,0.884,0.886,0.882,0.825,,0.819,0.775,0.772,0.854,0.847,,0.793,0.829, -"Oct 16, 1995",0.902,0.912,0.852,0.867,0.748,0.881,0.799,0.877,0.864,0.959,0.841,1.022,0.965,0.919,1.057,0.789,0.881,0.885,0.877,0.825,,0.818,0.772,0.774,0.86,0.845,,0.791,0.831, -"Nov 06, 1995",0.908,0.919,0.856,0.871,0.751,0.884,0.801,0.885,0.877,0.968,0.844,1.024,0.966,0.927,1.068,0.798,0.885,0.89,0.881,0.83,,0.83,0.769,0.783,0.861,0.844,,0.808,0.832, -"Nov 20, 1995",0.919,0.929,0.874,0.891,0.788,0.897,0.822,0.896,0.876,0.975,0.853,1.025,0.974,0.934,1.072,0.808,0.885,0.89,0.88,0.838,,0.84,0.768,0.802,0.864,0.849,,0.823,0.836, -"Dec 04, 1995",0.931,0.943,0.889,0.909,0.827,0.903,0.849,0.906,0.89,0.99,0.876,1.048,0.978,0.951,1.086,0.823,0.889,0.891,0.888,0.843,,0.847,0.771,0.811,0.876,0.852,,0.825,0.843, -"Dec 18, 1995",0.964,0.978,0.936,0.948,0.874,0.952,0.91,0.95,0.933,1.02,0.925,1.078,1.003,0.984,1.113,0.864,0.901,0.911,0.892,0.855,,0.861,0.781,0.832,0.879,0.855,,0.85,0.854, -"Jan 01, 1996",0.999,1.018,0.977,0.987,0.922,0.997,0.949,0.97,0.971,1.058,0.997,1.116,1.037,1.023,1.155,0.895,0.935,0.931,0.939,0.861,,0.87,0.789,0.841,0.881,0.867,,0.851,0.86, -"Jan 15, 1996",1.022,1.043,0.997,1.017,0.937,1.011,0.985,0.986,0.976,1.089,1.033,1.136,1.068,1.061,1.18,0.93,0.95,0.933,0.965,0.866,,0.88,0.792,0.851,0.893,0.872,,0.863,0.853, -"Feb 05, 1996",1.012,1.031,0.983,1.009,0.914,0.993,0.977,0.972,0.972,1.077,1,1.137,1.056,1.057,1.165,0.92,0.951,0.936,0.964,0.868,,0.877,0.788,0.851,0.893,0.877,,0.862,0.859, -"Feb 19, 1996",1.037,1.058,1.014,1.032,0.944,1.031,0.993,1.021,0.998,1.103,1.014,1.176,1.078,1.084,1.191,0.948,0.96,0.946,0.973,0.882,,0.898,0.789,0.872,0.912,0.876,,0.882,0.87, -"Mar 04, 1996",1.049,1.068,1.024,1.056,0.954,1.033,0.998,1.033,1.017,1.114,1.041,1.178,1.085,1.098,1.203,0.956,0.964,0.947,0.98,0.903,,0.914,0.818,0.895,0.934,0.892,,0.919,0.88, -"Mar 18, 1996",1.052,1.072,1.038,1.054,0.945,1.069,0.999,1.031,1.017,1.111,1.042,1.174,1.105,1.094,1.2,0.948,0.966,0.947,0.983,0.902,,0.919,0.813,0.886,0.932,0.892,,0.911,0.885, -"Oct 07, 1996",1.105,1.12,1.089,1.073,1.015,1.129,1.061,1.067,1.088,1.155,1.1,1.209,1.119,1.125,1.255,0.983,1.031,1.027,1.034,0.993,,1.014,0.957,0.983,1.011,0.988,,1,0.975, -"Oct 21, 1996",1.131,1.145,1.103,1.107,1.037,1.128,1.081,1.087,1.095,1.187,1.127,1.267,1.137,1.154,1.291,1.015,1.058,1.043,1.071,1.021,,1.031,0.991,1.006,1.036,1.038,,1.026,0.996, -"Oct 28, 1996",1.133,1.147,1.104,1.107,1.037,1.13,1.083,1.089,1.095,1.19,1.129,1.269,1.137,1.156,1.289,1.027,1.059,1.044,1.072,1.024,,1.032,0.982,1,1.031,1.049,,1.029,1.006, -"Nov 04, 1996",1.126,1.14,1.097,1.107,1.028,1.118,1.075,1.089,1.096,1.181,1.119,1.272,1.141,1.143,1.276,1.028,1.055,1.04,1.068,1.026,,1.033,0.984,1.001,1.039,1.049,,1.029,1.007, -"Nov 11, 1996",1.124,1.137,1.096,1.11,1.023,1.116,1.074,1.084,1.092,1.178,1.126,1.271,1.142,1.143,1.272,1.021,1.056,1.041,1.069,1.025,,1.04,0.986,0.999,1.03,1.055,,1.022,1.007, -"Nov 18, 1996",1.135,1.147,1.109,1.118,1.037,1.133,1.081,1.106,1.102,1.186,1.13,1.29,1.153,1.163,1.275,1.029,1.063,1.048,1.074,1.042,,1.061,1.003,1.005,1.058,1.06,,1.026,1.037, -"Nov 25, 1996",1.143,1.155,1.119,1.135,1.046,1.144,1.085,1.111,1.101,1.193,1.146,1.297,1.171,1.166,1.282,1.038,1.065,1.05,1.078,1.054,,1.072,1.004,1.011,1.069,1.071,,1.053,1.04, -"Dec 02, 1996",1.145,1.157,1.123,1.139,1.043,1.149,1.093,1.111,1.111,1.192,1.145,1.297,1.177,1.158,1.282,1.038,1.071,1.062,1.079,1.06,,1.069,0.993,1.01,1.084,1.068,,1.055,1.053, -"Dec 09, 1996",1.156,1.169,1.13,1.162,1.049,1.144,1.103,1.127,1.115,1.21,1.152,1.303,1.183,1.177,1.302,1.052,1.078,1.069,1.086,1.059,,1.065,0.991,1.014,1.081,1.067,,1.054,1.055, -"Dec 16, 1996",1.155,1.17,1.138,1.163,1.055,1.163,1.104,1.122,1.117,1.205,1.149,1.299,1.187,1.167,1.295,1.054,1.083,1.072,1.092,1.045,,1.049,0.976,0.992,1.073,1.063,,1.039,1.029, -"Dec 23, 1996",1.162,1.178,1.142,1.169,1.062,1.16,1.111,1.135,1.134,1.216,1.156,1.323,1.191,1.179,1.306,1.068,1.083,1.072,1.092,1.04,,1.052,0.963,1,1.073,1.056,,1.034,1.02, -"Dec 30, 1996",1.159,1.175,1.142,1.169,1.062,1.16,1.11,1.132,1.135,1.212,1.154,1.319,1.192,1.176,1.299,1.066,1.084,1.073,1.094,1.036,,1.048,0.96,0.991,1.068,1.049,,1.029,1.02, -"Jan 06, 1997",1.159,1.176,1.143,1.169,1.066,1.161,1.11,1.136,1.139,1.212,1.156,1.324,1.206,1.18,1.296,1.066,1.086,1.074,1.095,1.031,,1.048,0.95,0.993,1.069,1.045,,1.023,1.011, -"Jan 13, 1997",1.163,1.18,1.146,1.183,1.066,1.159,1.116,1.142,1.14,1.218,1.156,1.337,1.216,1.182,1.303,1.072,1.08,1.078,1.082,1.035,,1.05,0.961,0.996,1.067,1.047,,1.027,1.021, -"Jan 20, 1997",1.16,1.177,1.144,1.183,1.064,1.156,1.114,1.133,1.139,1.214,1.152,1.335,1.215,1.181,1.297,1.07,1.08,1.076,1.083,1.031,,1.042,0.957,0.994,1.067,1.043,,1.022,1.016, -"Jan 27, 1997",1.156,1.173,1.135,1.182,1.057,1.143,1.108,1.113,1.137,1.213,1.152,1.33,1.213,1.178,1.298,1.065,1.076,1.074,1.077,1.029,,1.042,0.935,0.989,1.067,1.038,,1.023,1.014, -"Feb 03, 1997",1.154,1.171,1.136,1.182,1.056,1.144,1.112,1.116,1.135,1.209,1.152,1.332,1.213,1.173,1.291,1.064,1.078,1.078,1.078,1.029,,1.041,0.93,0.991,1.066,1.043,,1.019,1.015, -"Feb 17, 1997",1.14,1.156,1.113,1.162,1.032,1.114,1.098,1.098,1.127,1.198,1.142,1.326,1.205,1.167,1.274,1.061,1.07,1.071,1.07,1.023,,1.038,0.927,0.985,1.064,1.028,,1.012,1.012, -"Mar 03, 1997",1.114,1.129,1.074,1.129,0.993,1.069,1.07,1.057,1.11,1.179,1.123,1.286,1.178,1.13,1.268,1.028,1.044,1.051,1.038,1.007,,1.017,0.895,0.953,1.048,1.014,,1.007,0.992, -"Mar 17, 1997",1.093,1.107,1.054,1.109,0.949,1.053,1.057,1.044,1.075,1.156,1.114,1.252,1.173,1.108,1.238,1.011,1.032,1.043,1.022,0.984,,0.989,0.849,0.93,1.034,0.991,,0.976,0.972, -"Oct 06, 1997",0.983,0.994,0.951,0.952,0.9,0.968,0.93,0.956,0.969,1.031,0.97,1.133,1.034,0.976,1.133,0.873,0.946,0.968,0.927,0.9,,0.918,0.826,0.87,0.915,0.916,,0.886,0.897, -"Oct 20, 1997",0.987,0.997,0.955,0.965,0.91,0.965,0.937,0.959,0.974,1.036,0.976,1.133,1.039,0.976,1.141,0.875,0.947,0.967,0.93,0.907,,0.923,0.839,0.874,0.919,0.931,,0.892,0.906, -"Nov 03, 1997",0.992,1.002,0.958,0.966,0.917,0.966,0.94,0.96,0.984,1.043,0.977,1.133,1.041,0.988,1.145,0.884,0.951,0.967,0.937,0.913,,0.923,0.839,0.879,0.932,0.936,,0.897,0.91, -"Nov 17, 1997",1.001,1.011,0.969,0.984,0.926,0.976,0.942,0.977,0.984,1.051,0.986,1.149,1.048,0.987,1.152,0.902,0.956,0.969,0.945,0.918,,0.933,0.839,0.882,0.934,0.937,,0.909,0.911, -"Dec 01, 1997",1.005,1.015,0.973,0.992,0.931,0.979,0.947,0.979,0.986,1.056,0.986,1.156,1.052,0.99,1.155,0.911,0.954,0.965,0.944,0.918,,0.927,0.833,0.873,0.946,0.933,,0.907,0.911, -"Dec 15, 1997",1.001,1.014,0.97,0.999,0.928,0.969,0.951,0.979,0.985,1.055,0.984,1.159,1.049,0.991,1.154,0.911,0.949,0.952,0.946,0.904,,0.91,0.82,0.863,0.94,0.917,,0.889,0.893, -"Jan 05, 1998",0.998,1.011,0.965,1.002,0.91,0.965,0.943,0.981,0.969,1.055,0.988,1.164,1.052,0.994,1.155,0.905,0.945,0.948,0.942,0.892,,0.899,0.794,0.853,0.93,0.904,,0.879,0.88, -"Jan 19, 1998",0.989,1.004,0.956,0.998,0.9,0.951,0.936,0.972,0.958,1.049,0.983,1.146,1.051,0.986,1.153,0.893,0.941,0.944,0.938,0.869,,0.869,0.767,0.834,0.912,0.883,,0.859,0.852, -"Feb 02, 1998",0.984,1,0.95,0.997,0.894,0.948,0.925,0.957,0.942,1.045,0.976,1.134,1.046,0.983,1.15,0.887,0.935,0.939,0.933,0.858,,0.859,0.754,0.821,0.905,0.86,,0.846,0.848, -"Feb 16, 1998",0.977,0.993,0.942,0.989,0.889,0.94,0.919,0.947,0.929,1.038,0.972,1.133,1.044,0.977,1.143,0.878,0.93,0.934,0.926,0.855,,0.847,0.737,0.819,0.91,0.852,,0.843,0.845, -"Mar 02, 1998",0.969,0.984,0.935,0.982,0.878,0.933,0.913,0.939,0.92,1.028,0.972,1.125,1.038,0.967,1.129,0.874,0.927,0.934,0.922,0.849,,0.839,0.732,0.815,0.906,0.848,,0.837,0.837, -"Mar 16, 1998",0.957,0.972,0.92,0.967,0.87,0.916,0.895,0.934,0.906,1.017,0.968,1.113,1.027,0.955,1.118,0.864,0.922,0.931,0.915,0.84,,0.826,0.718,0.79,0.902,0.833,,0.827,0.833, -"Oct 05, 1998",0.862,0.872,0.821,0.866,0.784,0.822,0.751,0.825,0.855,0.911,0.822,0.989,0.891,0.868,1.021,0.737,0.858,0.867,0.851,0.78,,0.792,0.682,0.751,0.822,0.774,,0.754,0.783, -"Oct 19, 1998",0.869,0.88,0.823,0.865,0.785,0.823,0.76,0.823,0.857,0.925,0.88,0.98,0.895,0.87,1.029,0.765,0.86,0.868,0.854,0.784,,0.795,0.686,0.748,0.836,0.777,,0.752,0.785, -"Nov 02, 1998",0.869,0.88,0.822,0.864,0.786,0.821,0.761,0.832,0.857,0.925,0.88,0.983,0.894,0.873,1.029,0.763,0.86,0.869,0.854,0.781,,0.793,0.684,0.75,0.836,0.777,,0.743,0.784, -"Nov 16, 1998",0.866,0.876,0.819,0.865,0.785,0.813,0.765,0.826,0.857,0.922,0.89,0.982,0.888,0.873,1.028,0.751,0.861,0.871,0.854,0.785,,0.79,0.675,0.754,0.838,0.773,,0.763,0.783, -"Dec 07, 1998",0.857,0.869,0.809,0.856,0.76,0.804,0.764,0.814,0.853,0.915,0.859,0.977,0.881,0.864,1.023,0.748,0.858,0.864,0.854,0.76,,0.75,0.648,0.716,0.824,0.749,,0.739,0.754, -"Dec 21, 1998",0.855,0.867,0.807,0.855,0.753,0.803,0.756,0.819,0.848,0.914,0.861,0.977,0.881,0.864,1.022,0.745,0.854,0.86,0.849,0.756,,0.754,0.63,0.695,0.825,0.747,,0.736,0.746, -"Jan 04, 1999",0.857,0.87,0.809,0.856,0.751,0.808,0.754,0.822,0.851,0.917,0.891,0.977,0.892,0.871,1.021,0.748,0.852,0.856,0.85,0.753,,0.756,0.629,0.701,0.814,0.739,,0.739,0.746, -"Jan 18, 1999",0.863,0.877,0.813,0.856,0.766,0.811,0.756,0.823,0.858,0.928,0.895,0.98,0.911,0.877,1.029,0.766,0.853,0.853,0.852,0.754,,0.758,0.63,0.717,0.819,0.729,,0.74,0.746, -"Feb 01, 1999",0.863,0.876,0.811,0.853,0.767,0.81,0.75,0.822,0.851,0.928,0.905,0.977,0.911,0.876,1.031,0.763,0.852,0.854,0.85,0.758,,0.754,0.632,0.725,0.819,0.737,,0.746,0.751, -"Feb 15, 1999",0.857,0.871,0.803,0.85,0.758,0.797,0.744,0.826,0.842,0.924,0.889,0.975,0.911,0.871,1.025,0.762,0.851,0.854,0.85,0.749,,0.739,0.621,0.707,0.813,0.735,,0.73,0.747, -"Mar 01, 1999",0.854,0.867,0.799,0.85,0.756,0.791,0.735,0.827,0.838,0.921,0.889,0.978,0.909,0.872,1.02,0.76,0.846,0.849,0.845,0.745,,0.741,0.618,0.699,0.808,0.728,,0.731,0.74, -"Mar 15, 1999",0.858,0.87,0.805,0.855,0.765,0.8,0.735,0.828,0.832,0.922,0.889,0.986,0.911,0.877,1.017,0.767,0.846,0.851,0.843,0.76,,0.778,0.635,0.74,0.817,0.736,,0.75,0.749, -"Oct 04, 1999",0.998,1.005,0.967,0.955,0.945,0.98,0.942,0.985,0.974,1.041,0.996,1.129,1.02,0.997,1.137,0.885,0.937,0.958,0.925,0.943,,0.972,0.885,0.912,0.958,0.947,,0.927,0.946, -"Oct 18, 1999",1.006,1.013,0.978,0.988,0.955,0.979,0.962,0.997,0.98,1.049,1.003,1.144,1.025,1.001,1.143,0.901,0.943,0.964,0.93,0.946,,0.958,0.873,0.922,0.957,0.962,,0.926,0.954, -"Nov 01, 1999",1.018,1.026,0.989,0.979,0.966,0.998,0.985,1.007,0.992,1.061,1.005,1.158,1.03,1.008,1.157,0.915,0.954,0.967,0.946,0.959,,0.977,0.894,0.928,0.967,0.992,,0.929,0.966, -"Nov 15, 1999",1.054,1.061,1.024,1.008,0.99,1.037,1.017,1.042,1.039,1.098,1.054,1.203,1.057,1.048,1.197,0.947,0.981,0.986,0.978,0.998,,1.036,0.913,0.967,1.006,1.002,,0.996,0.994, -"Dec 06, 1999",1.109,1.119,1.086,1.081,1.043,1.093,1.084,1.116,1.095,1.154,1.105,1.241,1.127,1.106,1.249,1.005,1.034,1.038,1.032,1.031,,1.049,0.944,0.999,1.04,1.048,,1.027,1.031, -"Dec 20, 1999",1.121,1.132,1.096,1.093,1.066,1.102,1.092,1.121,1.105,1.169,1.124,1.237,1.145,1.12,1.26,1.029,1.043,1.039,1.045,1.034,,1.051,0.944,1.003,1.047,1.059,,1.025,1.03, -"Jan 03, 2000",1.145,1.157,1.12,1.11,1.075,1.13,1.119,1.153,1.134,1.196,1.163,1.273,1.165,1.148,1.282,1.064,1.067,1.054,1.076,1.039,,1.074,0.947,1.027,1.038,1.061,,1.036,1.038, -"Jan 17, 2000",1.193,1.21,1.182,1.179,1.134,1.191,1.192,1.193,1.191,1.244,1.216,1.317,1.211,1.21,1.331,1.104,1.104,1.074,1.123,1.046,,1.069,0.944,1.045,1.051,1.059,,1.051,1.039, -"Jan 24, 2000",1.615,1.679,1.718,1.692,1.742,1.742,1.662,1.765,1.638,1.703,1.702,1.647,1.536,1.716,1.775,1.589,1.278,1.203,1.323,1.104,,1.128,0.987,1.156,1.117,1.088,,1.133,1.083, -"Jan 31, 2000",1.667,1.735,1.785,1.816,1.749,1.786,1.796,1.776,1.729,1.758,1.716,1.647,1.641,1.77,1.852,1.599,1.291,1.216,1.337,1.111,,1.133,1.009,1.159,1.124,1.103,,1.141,1.084, -"Feb 07, 2000",1.861,1.947,1.966,1.949,1.817,2.037,1.893,2.04,1.83,2.006,1.91,1.844,1.858,2.013,2.123,1.819,1.365,1.26,1.432,1.149,,1.19,1.055,1.188,1.14,1.134,,1.193,1.129, -"Feb 14, 2000",1.574,1.623,1.617,1.679,1.599,1.585,1.699,1.536,1.628,1.657,1.536,1.796,1.61,1.635,1.777,1.451,1.383,1.25,1.465,1.169,,1.179,1.066,1.192,1.171,1.151,,1.221,1.146, -"Feb 21, 2000",1.431,1.462,1.399,1.427,1.342,1.363,1.473,1.412,1.534,1.519,1.352,1.634,1.489,1.463,1.636,1.344,1.369,1.244,1.446,1.178,,1.201,1.073,1.206,1.185,1.153,,1.234,1.147, -"Feb 28, 2000",1.399,1.424,1.368,1.398,1.319,1.349,1.383,1.374,1.469,1.472,1.334,1.57,1.438,1.431,1.579,1.305,1.361,1.242,1.434,1.19,,1.222,1.082,1.213,1.196,1.159,,1.253,1.155, -"Mar 06, 2000",1.394,1.417,1.368,1.405,1.319,1.355,1.35,1.38,1.468,1.462,1.336,1.533,1.426,1.422,1.558,1.314,1.346,1.248,1.406,1.205,,1.244,1.104,1.223,1.208,1.186,,1.246,1.182, -"Mar 13, 2000",1.382,1.404,1.352,1.398,1.322,1.325,1.345,1.371,1.449,1.45,1.326,1.54,1.396,1.399,1.555,1.298,1.344,1.248,1.403,1.203,,1.227,1.098,1.222,1.213,1.19,,1.236,1.182, -"Mar 20, 2000",1.353,1.372,1.319,1.37,1.302,1.292,1.291,1.342,1.402,1.418,1.322,1.54,1.383,1.354,1.53,1.255,1.318,1.232,1.371,1.19,,1.201,1.076,1.191,1.197,1.184,,1.228,1.17, -"Oct 02, 2000",1.456,1.47,1.448,1.465,1.461,1.435,1.449,1.425,1.465,1.501,1.4,1.587,1.49,1.455,1.608,1.367,1.368,1.364,1.371,1.342,,1.329,1.25,1.328,1.361,1.353,,1.343,1.333, -"Oct 09, 2000",1.46,1.475,1.456,1.473,1.46,1.449,1.455,1.419,1.46,1.504,1.401,1.582,1.483,1.463,1.614,1.367,1.365,1.358,1.37,1.339,,1.344,1.245,1.332,1.361,1.35,,1.333,1.326, -"Oct 16, 2000",1.526,1.544,1.53,1.54,1.534,1.526,1.527,1.505,1.518,1.572,1.414,1.677,1.56,1.541,1.674,1.434,1.417,1.386,1.44,1.385,,1.44,1.283,1.399,1.394,1.388,,1.384,1.371, -"Oct 23, 2000",1.506,1.522,1.502,1.511,1.517,1.492,1.509,1.49,1.504,1.551,1.382,1.668,1.556,1.522,1.652,1.406,1.416,1.381,1.443,1.384,,1.421,1.272,1.378,1.409,1.394,,1.375,1.364, -"Oct 30, 2000",1.505,1.521,1.504,1.522,1.518,1.488,1.511,1.489,1.517,1.549,1.383,1.663,1.552,1.513,1.65,1.405,1.41,1.388,1.426,1.379,,1.421,1.27,1.357,1.406,1.38,,1.371,1.365, -"Nov 06, 2000",1.498,1.515,1.492,1.499,1.515,1.479,1.512,1.465,1.508,1.544,1.386,1.663,1.549,1.508,1.648,1.396,1.422,1.387,1.448,1.372,,1.412,1.242,1.348,1.405,1.373,,1.368,1.353, -"Nov 13, 2000",1.506,1.525,1.507,1.51,1.51,1.5,1.526,1.489,1.515,1.551,1.382,1.665,1.55,1.527,1.65,1.406,1.428,1.385,1.461,1.36,,1.374,1.244,1.344,1.394,1.373,,1.349,1.345, -"Nov 20, 2000",1.545,1.567,1.55,1.559,1.538,1.551,1.55,1.522,1.557,1.596,1.46,1.711,1.585,1.573,1.69,1.46,1.447,1.424,1.465,1.371,,1.412,1.269,1.366,1.401,1.373,,1.359,1.353, -"Nov 27, 2000",1.564,1.588,1.574,1.6,1.557,1.57,1.565,1.541,1.566,1.616,1.506,1.721,1.605,1.586,1.715,1.471,1.454,1.428,1.474,1.381,,1.42,1.273,1.393,1.41,1.378,,1.369,1.368, -"Dec 04, 2000",1.56,1.585,1.564,1.586,1.551,1.556,1.576,1.53,1.562,1.618,1.491,1.72,1.602,1.579,1.727,1.466,1.452,1.424,1.473,1.372,,1.406,1.243,1.365,1.401,1.376,,1.358,1.363, -"Dec 11, 2000",1.561,1.588,1.565,1.593,1.551,1.554,1.576,1.537,1.563,1.622,1.484,1.726,1.605,1.59,1.733,1.463,1.458,1.426,1.482,1.357,,1.366,1.237,1.318,1.394,1.363,,1.352,1.342, -"Dec 18, 2000",1.545,1.571,1.546,1.582,1.517,1.531,1.572,1.512,1.56,1.606,1.452,1.724,1.605,1.572,1.715,1.45,1.451,1.416,1.478,1.341,,1.358,1.206,1.301,1.369,1.357,,1.338,1.325, -"Dec 25, 2000",1.54,1.567,1.535,1.577,1.486,1.516,1.568,1.518,1.562,1.605,1.459,1.722,1.599,1.563,1.711,1.459,1.459,1.433,1.478,1.336,,1.342,1.187,1.308,1.37,1.336,,1.335,1.329, -"Jan 01, 2001",1.55,1.577,1.544,1.587,1.482,1.53,1.572,1.526,1.564,1.616,1.497,1.724,1.602,1.588,1.71,1.481,1.47,1.435,1.497,1.343,,1.362,1.211,1.322,1.368,1.344,,1.349,1.329, -"Jan 08, 2001",1.542,1.568,1.535,1.58,1.473,1.517,1.572,1.526,1.556,1.606,1.485,1.724,1.604,1.561,1.702,1.474,1.468,1.432,1.496,1.343,,1.363,1.199,1.326,1.373,1.339,,1.356,1.326, -"Jan 15, 2001",1.535,1.559,1.524,1.566,1.454,1.512,1.553,1.514,1.544,1.597,1.5,1.724,1.604,1.561,1.686,1.46,1.486,1.454,1.51,1.348,,1.351,1.192,1.338,1.376,1.342,,1.366,1.337, -"Jan 22, 2001",1.531,1.554,1.516,1.554,1.446,1.505,1.553,1.485,1.542,1.592,1.488,1.694,1.601,1.561,1.682,1.449,1.493,1.463,1.516,1.357,,1.386,1.202,1.355,1.384,1.345,,1.372,1.344, -"Jan 29, 2001",1.525,1.546,1.507,1.555,1.443,1.488,1.551,1.464,1.538,1.584,1.487,1.7,1.597,1.55,1.674,1.443,1.494,1.445,1.532,1.36,,1.385,1.196,1.352,1.394,1.346,,1.371,1.349, -"Feb 05, 2001",1.506,1.526,1.489,1.524,1.43,1.473,1.542,1.439,1.527,1.56,1.464,1.698,1.595,1.525,1.644,1.422,1.49,1.443,1.526,1.351,,1.358,1.19,1.324,1.385,1.343,,1.365,1.34, -"Feb 12, 2001",1.499,1.519,1.483,1.517,1.424,1.466,1.532,1.451,1.523,1.552,1.454,1.691,1.592,1.516,1.64,1.408,1.484,1.441,1.516,1.345,,1.35,1.2,1.324,1.377,1.339,,1.353,1.336, -"Feb 19, 2001",1.477,1.498,1.464,1.505,1.41,1.447,1.496,1.424,1.51,1.529,1.43,1.682,1.58,1.481,1.625,1.372,1.461,1.433,1.483,1.322,,1.321,1.181,1.264,1.365,1.328,,1.322,1.305, -"Feb 26, 2001",1.462,1.482,1.451,1.496,1.395,1.433,1.486,1.408,1.496,1.512,1.414,1.661,1.564,1.459,1.611,1.354,1.442,1.407,1.469,1.306,,1.304,1.158,1.249,1.354,1.296,,1.318,1.286, -"Mar 05, 2001",1.443,1.464,1.428,1.469,1.359,1.418,1.45,1.4,1.473,1.499,1.412,1.627,1.546,1.45,1.601,1.336,1.409,1.383,1.43,1.278,,1.258,1.123,1.221,1.328,1.269,,1.299,1.254, -"Mar 12, 2001",1.428,1.45,1.415,1.463,1.353,1.396,1.442,1.378,1.46,1.487,1.409,1.621,1.532,1.438,1.586,1.327,1.379,1.36,1.394,1.26,,1.248,1.108,1.218,1.32,1.238,,1.266,1.245, -"Mar 19, 2001",1.407,1.428,1.392,1.423,1.339,1.388,1.384,1.367,1.44,1.464,1.389,1.589,1.509,1.427,1.565,1.293,1.368,1.353,1.379,1.244,,1.232,1.066,1.207,1.312,1.202,,1.248,1.243, -"Oct 01, 2001",1.256,1.26,1.236,1.288,1.205,1.204,1.237,1.184,1.318,1.29,1.238,1.493,1.348,1.273,1.366,1.213,1.181,1.163,1.193,1.212,,1.198,1.1,1.146,1.308,1.209,1.076,1.174,1.231, -"Oct 08, 2001",1.246,1.251,1.227,1.279,1.197,1.191,1.239,1.181,1.3,1.283,1.246,1.445,1.344,1.267,1.352,1.212,1.165,1.15,1.175,1.188,,1.166,1.078,1.158,1.285,1.196,1.038,1.133,1.217, -"Oct 15, 2001",1.24,1.247,1.22,1.277,1.191,1.183,1.23,1.163,1.297,1.28,1.236,1.457,1.345,1.256,1.348,1.211,1.169,1.145,1.186,1.164,,1.128,1.059,1.126,1.251,1.167,1.026,1.119,1.195, -"Oct 22, 2001",1.227,1.236,1.208,1.271,1.174,1.163,1.227,1.145,1.303,1.27,1.209,1.434,1.338,1.238,1.34,1.204,1.161,1.143,1.174,1.131,,1.113,1.033,1.104,1.223,1.121,0.971,1.087,1.168, -"Oct 29, 2001",1.226,1.235,1.206,1.268,1.172,1.162,1.223,1.147,1.301,1.27,1.208,1.386,1.338,1.239,1.343,1.202,1.148,1.121,1.167,1.129,,1.105,1.004,1.084,1.242,1.101,0.94,1.092,1.165, -"Nov 05, 2001",1.211,1.22,1.199,1.261,1.162,1.156,1.221,1.129,1.295,1.248,1.191,1.37,1.325,1.219,1.313,1.185,1.141,1.115,1.159,1.114,,1.082,0.976,1.065,1.22,1.079,0.916,1.088,1.15, -"Nov 12, 2001",1.201,1.211,1.189,1.251,1.147,1.145,1.217,1.134,1.284,1.241,1.189,1.34,1.313,1.21,1.303,1.183,1.115,1.086,1.136,1.092,,1.066,0.976,1.058,1.194,1.069,0.916,1.062,1.12, -"Nov 19, 2001",1.18,1.19,1.169,1.229,1.128,1.12,1.207,1.122,1.275,1.221,1.151,1.309,1.27,1.176,1.283,1.173,1.097,1.066,1.119,1.065,,1.03,0.936,1.005,1.151,1.033,0.874,1.042,1.106, -"Nov 26, 2001",1.167,1.178,1.153,1.206,1.121,1.107,1.2,1.09,1.263,1.211,1.14,1.309,1.262,1.155,1.28,1.163,1.085,1.056,1.106,1.044,,1.021,0.92,0.99,1.13,1.015,0.878,1.013,1.088, -"Dec 03, 2001",1.159,1.171,1.146,1.201,1.116,1.104,1.164,1.088,1.254,1.205,1.131,1.309,1.254,1.152,1.276,1.152,1.078,1.052,1.097,1.018,,1.01,0.916,0.969,1.107,0.983,0.857,0.985,1.058, -"Dec 10, 2001",1.155,1.169,1.147,1.202,1.113,1.104,1.174,1.085,1.25,1.201,1.136,1.308,1.254,1.144,1.274,1.147,1.066,1.029,1.092,1.002,,0.984,0.898,0.931,1.083,0.963,0.824,0.97,1.05, -"Dec 17, 2001",1.149,1.164,1.143,1.203,1.104,1.099,1.173,1.083,1.25,1.196,1.133,1.278,1.231,1.134,1.272,1.144,1.059,1.026,1.081,0.978,,0.966,0.879,0.91,1.073,0.925,0.805,0.938,1.035, -"Dec 24, 2001",1.152,1.168,1.145,1.202,1.101,1.102,1.172,1.101,1.25,1.202,1.147,1.313,1.235,1.152,1.277,1.146,1.061,1.029,1.084,0.968,,0.962,0.869,0.911,1.045,0.923,0.799,0.931,1.025, -"Dec 31, 2001",1.159,1.176,1.153,1.204,1.11,1.118,1.175,1.1,1.252,1.21,1.156,1.313,1.237,1.151,1.289,1.154,1.065,1.024,1.093,0.97,,0.967,0.869,0.935,1.051,0.924,0.812,0.928,1.026, -"Jan 07, 2002",1.168,1.186,1.166,1.207,1.111,1.149,1.171,1.107,1.254,1.218,1.194,1.314,1.241,1.166,1.296,1.158,1.067,1.027,1.096,0.972,,0.964,0.869,0.934,1.051,0.939,0.825,0.93,1.022, -"Jan 14, 2002",1.166,1.185,1.165,1.204,1.11,1.149,1.171,1.097,1.254,1.217,1.19,1.314,1.249,1.185,1.282,1.16,1.067,1.024,1.096,0.965,,0.956,0.848,0.917,1.042,0.936,0.824,0.924,1.015, -"Jan 21, 2002",1.162,1.181,1.162,1.204,1.109,1.145,1.169,1.089,1.256,1.212,1.181,1.329,1.25,1.193,1.264,1.16,1.067,1.022,1.099,0.948,,0.95,0.842,0.908,1.027,0.93,0.798,0.916,0.978, -"Jan 28, 2002",1.161,1.181,1.161,1.203,1.107,1.143,1.164,1.086,1.256,1.213,1.176,1.343,1.258,1.197,1.264,1.161,1.065,1.018,1.098,0.949,,0.954,0.846,0.899,1.029,0.924,0.79,0.919,0.981, -"Feb 04, 2002",1.163,1.182,1.16,1.203,1.099,1.144,1.164,1.09,1.257,1.216,1.169,1.343,1.258,1.197,1.27,1.163,1.063,1.017,1.095,0.951,,0.964,0.845,0.906,1.029,0.93,0.8,0.919,0.979, -"Feb 11, 2002",1.16,1.179,1.16,1.202,1.098,1.144,1.164,1.089,1.257,1.211,1.166,1.343,1.255,1.198,1.262,1.158,1.061,1.018,1.09,0.955,,0.967,0.841,0.902,1.037,0.932,0.802,0.927,0.983, -"Feb 18, 2002",1.16,1.178,1.16,1.202,1.096,1.144,1.164,1.092,1.257,1.21,1.167,1.328,1.246,1.194,1.263,1.158,1.058,1.018,1.086,0.955,,0.967,0.838,0.91,1.033,0.931,0.809,0.928,0.983, -"Feb 25, 2002",1.159,1.178,1.159,1.202,1.094,1.143,1.163,1.087,1.257,1.21,1.165,1.328,1.246,1.191,1.264,1.158,1.058,1.016,1.086,0.955,,0.965,0.84,0.908,1.034,0.931,0.808,0.927,0.983, -"Mar 04, 2002",1.161,1.179,1.158,1.202,1.092,1.144,1.154,1.092,1.257,1.212,1.168,1.328,1.248,1.19,1.267,1.16,1.059,1.019,1.087,0.962,,0.969,0.849,0.933,1.038,0.933,0.819,0.938,0.991, -"Mar 11, 2002",1.173,1.19,1.162,1.2,1.096,1.156,1.139,1.107,1.25,1.232,1.168,1.329,1.252,1.201,1.318,1.164,1.066,1.037,1.086,0.984,,0.99,0.872,0.951,1.056,0.96,0.844,0.965,1.006, -"Mar 18, 2002",1.187,1.202,1.175,1.215,1.106,1.17,1.143,1.129,1.253,1.244,1.178,1.36,1.259,1.216,1.335,1.169,1.075,1.045,1.095,1.016,,1.024,0.901,0.98,1.089,1.003,0.865,0.99,1.04, -"Oct 07, 2002",1.256,1.262,1.231,1.241,1.185,1.246,1.176,1.24,1.267,1.3,1.222,1.449,1.32,1.298,1.388,1.209,1.162,1.185,1.147,1.188,,1.206,1.12,1.185,1.217,1.206,1.073,1.152,1.206, -"Oct 14, 2002",1.264,1.27,1.232,1.252,1.192,1.239,1.173,1.24,1.269,1.312,1.212,1.472,1.322,1.305,1.403,1.223,1.179,1.191,1.171,1.202,,1.223,1.143,1.187,1.237,1.216,1.086,1.167,1.217, -"Oct 21, 2002",1.271,1.277,1.237,1.255,1.199,1.244,1.191,1.243,1.274,1.319,1.226,1.476,1.341,1.315,1.405,1.23,1.199,1.203,1.196,1.211,,1.236,1.147,1.189,1.251,1.221,1.09,1.176,1.229, -"Oct 28, 2002",1.272,1.278,1.238,1.257,1.209,1.242,1.198,1.232,1.273,1.32,1.227,1.481,1.344,1.322,1.407,1.228,1.192,1.192,1.192,1.211,,1.236,1.125,1.167,1.253,1.219,1.077,1.175,1.233, -"Nov 04, 2002",1.277,1.283,1.242,1.261,1.214,1.244,1.197,1.248,1.274,1.327,1.237,1.512,1.348,1.333,1.413,1.234,1.198,1.198,1.198,1.214,,1.233,1.092,1.171,1.269,1.219,1.048,1.178,1.239, -"Nov 11, 2002",1.275,1.283,1.24,1.259,1.211,1.242,1.195,1.245,1.287,1.328,1.232,1.512,1.351,1.328,1.407,1.245,1.197,1.191,1.201,1.198,,1.219,1.068,1.158,1.253,1.201,1.025,1.163,1.225, -"Nov 18, 2002",1.272,1.28,1.235,1.26,1.214,1.229,1.193,1.241,1.285,1.326,1.222,1.527,1.358,1.326,1.403,1.243,1.198,1.185,1.207,1.192,,1.21,1.055,1.139,1.245,1.187,1.008,1.161,1.225, -"Nov 25, 2002",1.279,1.286,1.243,1.262,1.218,1.238,1.21,1.257,1.29,1.333,1.219,1.527,1.359,1.341,1.413,1.245,1.195,1.178,1.206,1.2,,1.214,1.071,1.141,1.256,1.19,1.039,1.163,1.239, -"Dec 02, 2002",1.284,1.292,1.252,1.271,1.222,1.251,1.223,1.263,1.292,1.337,1.223,1.527,1.368,1.341,1.418,1.248,1.196,1.175,1.21,1.197,,1.216,1.072,1.148,1.251,1.193,1.036,1.158,1.235, -"Dec 09, 2002",1.299,1.309,1.273,1.294,1.224,1.279,1.237,1.285,1.294,1.352,1.26,1.527,1.377,1.374,1.43,1.259,1.205,1.183,1.22,1.193,,1.202,1.067,1.151,1.251,1.193,1.022,1.157,1.225, -"Dec 16, 2002",1.323,1.335,1.297,1.32,1.231,1.307,1.266,1.309,1.317,1.381,1.277,1.527,1.385,1.397,1.464,1.289,1.216,1.185,1.238,1.197,,1.206,1.071,1.151,1.279,1.192,1.017,1.157,1.224, -"Dec 23, 2002",1.363,1.376,1.343,1.363,1.284,1.357,1.309,1.34,1.346,1.42,1.312,1.544,1.436,1.451,1.498,1.326,1.247,1.223,1.263,1.219,,1.241,1.093,1.168,1.295,1.198,1.047,1.189,1.248, -"Dec 30, 2002",1.408,1.421,1.384,1.418,1.322,1.393,1.339,1.384,1.376,1.464,1.337,1.636,1.49,1.475,1.539,1.382,1.314,1.28,1.338,1.269,,1.276,1.129,1.219,1.335,1.22,1.078,1.268,1.297, -"Jan 06, 2003",1.428,1.442,1.409,1.445,1.35,1.417,1.366,1.41,1.407,1.484,1.352,1.667,1.503,1.512,1.557,1.394,1.327,1.281,1.359,1.276,,1.28,1.134,1.226,1.334,1.227,1.094,1.277,1.304, -"Jan 13, 2003",1.431,1.448,1.412,1.442,1.368,1.416,1.373,1.408,1.419,1.491,1.388,1.682,1.515,1.512,1.571,1.399,1.331,1.29,1.359,1.258,,1.268,1.136,1.216,1.321,1.213,1.084,1.252,1.283, -"Jan 20, 2003",1.453,1.471,1.436,1.458,1.386,1.447,1.395,1.45,1.429,1.515,1.422,1.714,1.545,1.534,1.589,1.425,1.353,1.296,1.392,1.262,,1.268,1.129,1.221,1.334,1.221,1.098,1.267,1.275, -"Jan 27, 2003",1.497,1.517,1.49,1.53,1.412,1.502,1.435,1.511,1.464,1.557,1.487,1.729,1.571,1.583,1.623,1.474,1.383,1.331,1.42,1.279,,1.28,1.146,1.269,1.341,1.228,1.113,1.299,1.286, -"Feb 03, 2003",1.535,1.554,1.527,1.564,1.459,1.54,1.465,1.54,1.504,1.594,1.527,1.782,1.605,1.613,1.65,1.525,1.427,1.365,1.469,1.326,,1.332,1.201,1.295,1.406,1.29,1.162,1.336,1.326, -"Feb 10, 2003",1.716,1.742,1.731,1.773,1.635,1.759,1.645,1.743,1.696,1.774,1.688,1.945,1.775,1.808,1.811,1.721,1.568,1.516,1.603,1.438,,1.435,1.29,1.452,1.499,1.382,1.269,1.466,1.44, -"Feb 17, 2003",1.731,1.756,1.738,1.775,1.672,1.748,1.684,1.738,1.744,1.792,1.724,1.982,1.8,1.82,1.833,1.735,1.589,1.528,1.632,1.47,,1.458,1.309,1.477,1.529,1.429,1.277,1.498,1.471, -"Feb 24, 2003",1.752,1.777,1.757,1.801,1.679,1.76,1.723,1.771,1.765,1.817,1.732,2.013,1.819,1.848,1.871,1.748,1.6,1.523,1.653,1.483,,1.486,1.326,1.473,1.557,1.433,1.302,1.51,1.48, -"Mar 03, 2003",1.838,1.867,1.854,1.918,1.717,1.88,1.78,1.87,1.796,1.909,1.835,2.083,1.907,1.915,1.966,1.849,1.631,1.546,1.689,1.529,,1.529,1.363,1.503,1.611,1.48,1.336,1.557,1.526, -"Mar 10, 2003",1.854,1.885,1.862,1.923,1.777,1.863,1.809,1.882,1.839,1.936,1.833,2.114,1.919,1.961,1.991,1.872,1.636,1.55,1.695,1.527,,1.536,1.368,1.532,1.611,1.482,1.339,1.551,1.518, -"Mar 17, 2003",1.803,1.831,1.793,1.862,1.746,1.761,1.788,1.808,1.811,1.889,1.811,2.084,1.907,1.894,1.933,1.841,1.623,1.531,1.687,1.497,,1.483,1.328,1.474,1.587,1.463,1.313,1.527,1.479, -"Oct 06, 2003",1.344,1.358,1.295,1.354,1.274,1.265,1.26,1.296,1.367,1.42,1.295,1.512,1.437,1.414,1.493,1.338,1.254,1.23,1.271,1.215,,1.191,1.135,1.15,1.236,1.23,1.109,1.18,1.253, -"Oct 13, 2003",1.379,1.392,1.335,1.398,1.29,1.312,1.291,1.349,1.383,1.452,1.323,1.558,1.463,1.457,1.519,1.372,1.268,1.245,1.283,1.261,,1.232,1.197,1.176,1.266,1.319,1.168,1.231,1.275, -"Oct 20, 2003",1.383,1.395,1.34,1.402,1.305,1.321,1.269,1.334,1.4,1.451,1.333,1.564,1.457,1.453,1.504,1.386,1.275,1.26,1.285,1.277,,1.24,1.209,1.207,1.281,1.328,1.161,1.237,1.31, -"Oct 27, 2003",1.386,1.399,1.343,1.398,1.314,1.322,1.292,1.329,1.402,1.456,1.321,1.504,1.46,1.458,1.509,1.394,1.283,1.265,1.296,1.271,,1.233,1.191,1.197,1.283,1.299,1.148,1.24,1.308, -"Nov 03, 2003",1.383,1.398,1.347,1.395,1.317,1.333,1.301,1.325,1.402,1.45,1.315,1.504,1.461,1.459,1.495,1.393,1.281,1.261,1.295,1.258,,1.223,1.152,1.187,1.28,1.28,1.109,1.23,1.293, -"Nov 10, 2003",1.386,1.401,1.348,1.392,1.315,1.337,1.302,1.325,1.407,1.456,1.314,1.504,1.461,1.464,1.504,1.396,1.281,1.261,1.294,1.252,,1.222,1.138,1.19,1.28,1.27,1.105,1.22,1.285, -"Nov 17, 2003",1.4,1.417,1.368,1.407,1.323,1.363,1.313,1.36,1.421,1.471,1.332,1.58,1.489,1.48,1.524,1.403,1.285,1.264,1.3,1.25,,1.22,1.141,1.197,1.282,1.269,1.122,1.21,1.284, -"Nov 24, 2003",1.411,1.43,1.383,1.421,1.342,1.376,1.328,1.403,1.433,1.482,1.332,1.611,1.501,1.496,1.535,1.411,1.294,1.27,1.311,1.245,,1.234,1.148,1.211,1.252,1.267,1.114,1.213,1.278, -"Dec 01, 2003",1.413,1.434,1.387,1.418,1.345,1.386,1.33,1.397,1.434,1.486,1.369,1.61,1.501,1.493,1.535,1.422,1.293,1.267,1.311,1.237,,1.235,1.141,1.192,1.242,1.261,1.088,1.206,1.268, -"Dec 08, 2003",1.426,1.447,1.399,1.426,1.355,1.397,1.346,1.419,1.45,1.501,1.407,1.656,1.518,1.514,1.552,1.431,1.305,1.272,1.327,1.241,,1.24,1.138,1.197,1.249,1.258,1.088,1.215,1.269, -"Dec 15, 2003",1.459,1.481,1.447,1.491,1.386,1.446,1.369,1.494,1.471,1.527,1.429,1.72,1.532,1.548,1.58,1.45,1.324,1.279,1.354,1.263,,1.261,1.15,1.204,1.299,1.269,1.101,1.237,1.279, -"Dec 22, 2003",1.489,1.514,1.478,1.514,1.412,1.484,1.403,1.513,1.494,1.561,1.466,1.763,1.571,1.587,1.619,1.475,1.356,1.321,1.38,1.276,,1.273,1.16,1.223,1.306,1.284,1.108,1.259,1.288, -"Dec 29, 2003",1.491,1.517,1.477,1.513,1.42,1.477,1.423,1.51,1.494,1.566,1.456,1.763,1.572,1.594,1.626,1.478,1.361,1.324,1.386,1.274,,1.273,1.154,1.227,1.298,1.281,1.106,1.259,1.289, -"Jan 05, 2004",1.498,1.523,1.488,1.522,1.428,1.495,1.435,1.5,1.498,1.569,1.463,1.763,1.577,1.594,1.628,1.484,1.366,1.332,1.39,1.279,,1.282,1.163,1.229,1.303,1.279,1.108,1.27,1.293, -"Jan 12, 2004",1.562,1.59,1.549,1.59,1.487,1.541,1.506,1.591,1.587,1.64,1.53,1.835,1.635,1.667,1.703,1.552,1.435,1.401,1.458,1.317,,1.328,1.2,1.292,1.35,1.294,1.126,1.31,1.329, -"Jan 19, 2004",1.584,1.614,1.581,1.607,1.518,1.582,1.55,1.625,1.61,1.659,1.555,1.885,1.673,1.706,1.723,1.557,1.456,1.414,1.484,1.324,,1.333,1.21,1.299,1.366,1.303,1.143,1.318,1.328, -"Jan 26, 2004",1.622,1.652,1.623,1.668,1.547,1.613,1.601,1.652,1.663,1.697,1.611,1.931,1.71,1.737,1.746,1.614,1.479,1.421,1.518,1.354,,1.375,1.234,1.342,1.395,1.326,1.168,1.349,1.357, -"Feb 02, 2004",1.625,1.657,1.626,1.677,1.565,1.607,1.614,1.648,1.667,1.703,1.595,1.934,1.716,1.743,1.746,1.629,1.488,1.43,1.527,1.345,,1.364,1.225,1.322,1.387,1.319,1.171,1.34,1.349, -"Feb 09, 2004",1.615,1.647,1.607,1.668,1.572,1.571,1.604,1.613,1.661,1.699,1.565,1.937,1.724,1.736,1.737,1.631,1.48,1.418,1.523,1.339,,1.361,1.212,1.304,1.377,1.315,1.153,1.336,1.341, -"Feb 16, 2004",1.611,1.642,1.602,1.663,1.562,1.57,1.608,1.585,1.657,1.693,1.573,1.874,1.715,1.717,1.73,1.634,1.476,1.413,1.519,1.345,,1.351,1.212,1.311,1.384,1.319,1.154,1.349,1.349, -"Feb 23, 2004",1.609,1.64,1.602,1.664,1.559,1.567,1.605,1.614,1.654,1.688,1.573,1.934,1.722,1.721,1.72,1.63,1.477,1.414,1.52,1.347,,1.352,1.21,1.315,1.384,1.32,1.157,1.359,1.346, -"Mar 01, 2004",1.603,1.63,1.586,1.647,1.557,1.557,1.582,1.53,1.65,1.682,1.567,1.77,1.708,1.697,1.719,1.627,1.478,1.416,1.52,1.365,,1.363,1.247,1.33,1.386,1.331,1.177,1.398,1.365, -"Mar 08, 2004",1.601,1.627,1.584,1.645,1.554,1.555,1.556,1.552,1.656,1.678,1.557,1.813,1.709,1.691,1.715,1.623,1.476,1.416,1.518,1.381,,1.413,1.258,1.345,1.404,1.335,1.193,1.404,1.381, -"Mar 15, 2004",1.591,1.617,1.574,1.641,1.553,1.54,1.544,1.528,1.652,1.667,1.54,1.843,1.696,1.671,1.706,1.615,1.471,1.41,1.513,1.372,,1.388,1.244,1.337,1.4,1.335,1.197,1.391,1.373, -"Oct 04, 2004",1.828,1.836,1.812,1.852,1.76,1.784,1.828,1.862,1.829,1.865,1.852,2.072,1.852,1.899,1.944,1.755,1.761,1.765,1.758,1.738,,1.796,1.659,1.736,1.751,1.734,1.621,1.707,1.762, -"Oct 11, 2004",1.908,1.92,1.891,1.909,1.837,1.899,1.883,1.938,1.857,1.954,1.904,2.148,1.886,1.969,2.049,1.836,1.815,1.798,1.824,1.783,,1.829,1.703,1.782,1.797,1.807,1.661,1.749,1.796, -"Oct 18, 2004",1.992,2.004,1.971,2.011,1.921,1.956,1.94,2.023,1.991,2.041,2.032,2.235,1.957,2.063,2.129,1.931,1.894,1.879,1.904,1.858,,1.914,1.776,1.875,1.854,1.914,1.736,1.819,1.859, -"Oct 25, 2004",2.06,2.074,2.04,2.085,1.978,2.02,2.036,2.095,2.048,2.113,2.075,2.346,2.044,2.123,2.199,2.011,1.951,1.94,1.957,1.913,,1.95,1.82,1.911,1.957,1.938,1.788,1.873,1.922, -"Nov 01, 2004",2.06,2.075,2.034,2.065,1.995,1.993,2.098,2.069,2.061,2.117,2.051,2.358,2.07,2.132,2.205,2.002,1.967,1.938,1.984,1.895,,1.928,1.796,1.889,1.97,1.927,1.768,1.838,1.902, -"Nov 08, 2004",2.028,2.044,2.001,2.02,1.962,1.961,2.089,2.035,2.033,2.087,2.012,2.357,2.06,2.086,2.181,1.969,1.945,1.918,1.962,1.859,,1.885,1.754,1.803,1.934,1.905,1.71,1.79,1.874, -"Nov 15, 2004",2.017,2.036,1.982,1.99,1.961,1.945,2.061,2.027,2.009,2.088,2.007,2.357,2.055,2.068,2.207,1.949,1.92,1.882,1.943,1.816,,1.842,1.718,1.777,1.903,1.839,1.678,1.742,1.842, -"Nov 22, 2004",2.025,2.044,1.995,2.018,1.966,1.947,2.064,2.048,2.03,2.094,2.061,2.32,2.047,2.091,2.206,1.953,1.923,1.88,1.949,1.828,,1.851,1.729,1.801,1.884,1.859,1.672,1.768,1.853, -"Nov 29, 2004",2.03,2.049,1.997,2.018,1.966,1.956,2.061,2.046,2.036,2.101,2.041,2.308,2.038,2.096,2.214,1.968,1.919,1.883,1.941,1.829,,1.858,1.727,1.809,1.882,1.854,1.688,1.762,1.86, -"Dec 06, 2004",1.97,1.991,1.932,1.966,1.918,1.859,2.039,1.964,1.968,2.046,1.966,2.272,2.021,2.023,2.144,1.935,1.887,1.86,1.902,1.752,,1.796,1.643,1.696,1.849,1.762,1.629,1.678,1.78, -"Dec 13, 2004",1.947,1.97,1.907,1.935,1.881,1.849,2.005,1.932,1.957,2.031,1.942,2.259,2.003,1.995,2.157,1.889,1.849,1.815,1.87,1.685,,1.713,1.612,1.639,1.783,1.684,1.548,1.63,1.705, -"Dec 20, 2004",1.993,2.019,1.973,2.002,1.907,1.95,2.028,1.999,2.027,2.068,2.044,2.271,2.032,2.062,2.177,1.933,1.871,1.824,1.899,1.719,,1.726,1.605,1.733,1.786,1.691,1.546,1.702,1.743, -"Dec 27, 2004",1.978,2.002,1.953,1.973,1.906,1.913,2.044,1.982,2.009,2.052,2.027,2.272,2.034,2.052,2.16,1.908,1.875,1.835,1.899,1.717,,1.743,1.565,1.711,1.818,1.703,1.531,1.669,1.747, -"Jan 03, 2005",1.951,1.976,1.922,1.95,1.89,1.861,2.028,1.944,1.982,2.028,1.985,2.259,2.018,2.016,2.145,1.88,1.865,1.825,1.889,1.684,,1.7,1.547,1.652,1.807,1.667,1.495,1.641,1.704, -"Jan 10, 2005",1.946,1.97,1.919,1.961,1.868,1.866,2.01,1.925,1.984,2.02,1.971,2.247,1.998,1.998,2.149,1.866,1.863,1.831,1.882,1.677,,1.698,1.54,1.653,1.797,1.664,1.496,1.641,1.685, -"Jan 17, 2005",1.964,1.987,1.939,1.99,1.879,1.893,2.014,1.924,1.991,2.035,2.017,2.247,1.998,2.024,2.147,1.898,1.874,1.834,1.898,1.716,,1.728,1.563,1.697,1.797,1.714,1.519,1.692,1.733, -"Jan 24, 2005",1.99,2.014,1.969,2.012,1.913,1.938,2.032,1.96,1.992,2.062,2.049,2.26,2.014,2.059,2.167,1.93,1.88,1.835,1.907,1.731,,1.751,1.588,1.701,1.811,1.723,1.549,1.721,1.736, -"Jan 31, 2005",2.018,2.043,1.992,2.026,1.931,1.965,2.066,1.98,2.029,2.096,2.034,2.297,2.024,2.097,2.211,1.959,1.899,1.857,1.924,1.749,,1.758,1.604,1.731,1.835,1.735,1.566,1.735,1.761, -"Feb 07, 2005",1.99,2.013,1.968,1.992,1.92,1.936,2.063,1.942,2.025,2.062,2.004,2.26,2.019,2.068,2.173,1.918,1.884,1.85,1.905,1.739,,1.734,1.593,1.702,1.832,1.737,1.557,1.725,1.745, -"Feb 14, 2005",1.981,2.003,1.961,2.001,1.913,1.919,2.058,1.917,2.027,2.048,2.016,2.223,2.015,2.056,2.147,1.917,1.875,1.84,1.896,1.743,,1.742,1.601,1.694,1.83,1.732,1.554,1.736,1.752, -"Feb 21, 2005",1.984,2.005,1.967,2.019,1.91,1.926,2.037,1.93,2.03,2.046,2.021,2.223,2.015,2.06,2.137,1.923,1.878,1.843,1.899,1.758,,1.762,1.6,1.712,1.83,1.749,1.571,1.75,1.773, -"Feb 28, 2005",2.043,2.061,2.031,2.07,1.969,2.002,2.089,2.015,2.091,2.1,2.074,2.272,2.045,2.115,2.195,1.975,1.905,1.864,1.929,1.847,,1.864,1.733,1.811,1.902,1.837,1.649,1.837,1.859, -"Mar 07, 2005",2.089,2.108,2.079,2.125,2.038,2.041,2.124,2.068,2.113,2.145,2.11,2.322,2.08,2.172,2.222,2.042,1.961,1.915,1.988,1.878,,1.894,1.758,1.878,1.925,1.866,1.727,1.858,1.901, -"Mar 14, 2005",2.119,2.139,2.113,2.173,2.061,2.065,2.15,2.127,2.161,2.175,2.126,2.371,2.116,2.217,2.25,2.063,1.983,1.932,2.014,1.897,,1.927,1.775,1.904,1.946,1.901,1.773,1.867,1.914, -"Oct 03, 2005",2.692,2.685,2.632,2.724,2.564,2.569,2.628,2.68,2.658,2.716,2.66,2.925,2.642,2.745,2.809,2.585,2.766,2.716,2.792,2.756,,2.796,2.686,2.835,2.749,2.737,2.608,2.754,2.771, -"Oct 10, 2005",2.648,2.636,2.571,2.614,2.54,2.514,2.626,2.602,2.621,2.666,2.609,2.825,2.632,2.685,2.75,2.543,2.797,2.795,2.797,2.777,,2.827,2.753,2.897,2.813,2.83,2.661,2.672,2.787, -"Oct 17, 2005",2.65,2.634,2.561,2.622,2.517,2.505,2.602,2.581,2.594,2.667,2.595,2.887,2.623,2.691,2.767,2.523,2.806,2.822,2.797,2.82,,2.824,2.806,2.877,2.859,2.889,2.686,2.671,2.87, -"Oct 24, 2005",2.623,2.595,2.522,2.579,2.477,2.467,2.579,2.533,2.554,2.633,2.569,2.849,2.566,2.655,2.728,2.5,2.737,2.747,2.731,2.911,,3.02,2.936,2.865,3.045,2.956,2.804,2.674,2.966, -"Oct 31, 2005",2.577,2.566,2.489,2.542,2.406,2.458,2.52,2.514,2.552,2.614,2.545,2.849,2.573,2.615,2.712,2.483,2.642,2.585,2.673,2.7,,2.785,2.567,2.694,2.799,2.755,2.515,2.501,2.744, -"Nov 07, 2005",2.508,2.508,2.435,2.498,2.365,2.392,2.468,2.439,2.497,2.557,2.48,2.812,2.528,2.557,2.649,2.435,2.55,2.541,2.555,2.508,,2.565,2.321,2.518,2.638,2.526,2.269,2.355,2.545, -"Nov 14, 2005",2.466,2.469,2.397,2.449,2.322,2.361,2.434,2.415,2.473,2.521,2.437,2.762,2.501,2.507,2.615,2.401,2.48,2.473,2.483,2.426,,2.437,2.217,2.377,2.507,2.438,2.181,2.298,2.497, -"Nov 21, 2005",2.431,2.441,2.37,2.418,2.306,2.33,2.415,2.376,2.443,2.497,2.409,2.762,2.457,2.472,2.604,2.371,2.404,2.396,2.409,2.328,,2.323,2.159,2.29,2.406,2.334,2.106,2.197,2.402, -"Nov 28, 2005",2.417,2.429,2.361,2.413,2.309,2.314,2.403,2.373,2.416,2.483,2.405,2.749,2.441,2.464,2.58,2.366,2.389,2.372,2.398,2.293,,2.283,2.104,2.227,2.372,2.274,2.07,2.201,2.366, -"Dec 05, 2005",2.41,2.426,2.357,2.411,2.267,2.332,2.37,2.39,2.412,2.484,2.394,2.737,2.416,2.448,2.585,2.377,2.36,2.35,2.366,2.247,,2.242,2.086,2.208,2.308,2.243,2.014,2.161,2.308, -"Dec 12, 2005",2.414,2.429,2.357,2.405,2.257,2.344,2.365,2.389,2.426,2.489,2.41,2.737,2.407,2.467,2.591,2.376,2.361,2.353,2.365,2.257,,2.244,2.107,2.217,2.312,2.268,2.05,2.187,2.301, -"Dec 19, 2005",2.438,2.454,2.379,2.415,2.303,2.369,2.382,2.402,2.455,2.518,2.45,2.712,2.432,2.511,2.603,2.421,2.372,2.348,2.386,2.27,,2.264,2.135,2.222,2.326,2.28,2.048,2.193,2.316, -"Dec 26, 2005",2.433,2.45,2.384,2.431,2.302,2.364,2.398,2.399,2.453,2.508,2.463,2.712,2.43,2.505,2.601,2.397,2.371,2.346,2.384,2.247,,2.233,2.109,2.182,2.308,2.245,2.012,2.214,2.275, -"Jan 02, 2006",2.433,2.451,2.396,2.45,2.321,2.369,2.406,2.403,2.463,2.5,2.445,2.787,2.435,2.484,2.6,2.382,2.377,2.355,2.39,2.238,,2.223,2.107,2.193,2.294,2.231,2.001,2.198,2.271, -"Jan 09, 2006",2.444,2.462,2.409,2.465,2.351,2.38,2.398,2.423,2.474,2.509,2.46,2.786,2.433,2.504,2.598,2.403,2.385,2.352,2.404,2.248,,2.259,2.13,2.201,2.309,2.246,2.034,2.202,2.271, -"Jan 16, 2006",2.431,2.452,2.401,2.472,2.34,2.363,2.396,2.4,2.465,2.498,2.45,2.798,2.445,2.512,2.581,2.385,2.368,2.328,2.389,2.202,,2.188,2.126,2.126,2.268,2.22,2.003,2.146,2.216, -"Jan 23, 2006",2.463,2.485,2.44,2.521,2.357,2.402,2.439,2.443,2.496,2.529,2.502,2.811,2.449,2.551,2.597,2.438,2.383,2.342,2.405,2.223,,2.201,2.131,2.144,2.273,2.218,2.03,2.193,2.25, -"Jan 30, 2006",2.461,2.482,2.432,2.483,2.375,2.405,2.437,2.429,2.494,2.531,2.484,2.811,2.469,2.541,2.6,2.439,2.385,2.362,2.396,2.229,,2.217,2.132,2.162,2.282,2.218,2.044,2.199,2.255, -"Feb 06, 2006",2.447,2.466,2.417,2.467,2.36,2.386,2.435,2.417,2.475,2.512,2.468,2.811,2.453,2.525,2.586,2.412,2.373,2.35,2.386,2.237,,2.234,2.149,2.177,2.283,2.223,2.067,2.201,2.269, -"Feb 13, 2006",2.417,2.436,2.379,2.425,2.333,2.338,2.396,2.389,2.463,2.486,2.424,2.811,2.455,2.491,2.582,2.354,2.363,2.336,2.377,2.218,,2.203,2.143,2.132,2.276,2.205,2.044,2.174,2.247, -"Feb 20, 2006",2.397,2.414,2.366,2.414,2.295,2.334,2.391,2.376,2.453,2.459,2.427,2.761,2.432,2.457,2.55,2.337,2.331,2.302,2.346,2.214,,2.192,2.119,2.13,2.267,2.211,2.033,2.166,2.249, -"Feb 27, 2006",2.412,2.43,2.389,2.457,2.298,2.366,2.373,2.397,2.469,2.471,2.439,2.761,2.407,2.479,2.56,2.352,2.332,2.298,2.35,2.223,,2.223,2.133,2.154,2.274,2.216,2.061,2.183,2.249, -"Mar 06, 2006",2.443,2.458,2.42,2.496,2.323,2.405,2.379,2.432,2.483,2.498,2.458,2.761,2.428,2.519,2.581,2.384,2.347,2.318,2.363,2.282,,2.298,2.168,2.236,2.335,2.257,2.108,2.244,2.316, -"Mar 13, 2006",2.419,2.432,2.385,2.441,2.312,2.363,2.366,2.386,2.486,2.477,2.429,2.749,2.409,2.503,2.554,2.37,2.342,2.302,2.363,2.272,,2.284,2.167,2.21,2.343,2.254,2.092,2.217,2.304, -"Oct 02, 2006",2.396,2.411,2.368,2.455,2.253,2.319,2.394,2.344,2.548,2.452,2.452,2.667,2.418,2.435,2.541,2.34,2.336,2.347,2.33,2.245,,2.257,2.272,2.177,2.274,2.24,2.128,2.158,2.316, -"Oct 09, 2006",2.387,2.402,2.356,2.45,2.218,2.316,2.376,2.332,2.532,2.444,2.438,2.667,2.41,2.439,2.534,2.324,2.319,2.328,2.315,2.241,,2.241,2.241,2.172,2.262,2.246,2.11,2.157,2.316, -"Oct 16, 2006",2.385,2.398,2.357,2.455,2.213,2.326,2.354,2.336,2.522,2.437,2.382,2.667,2.402,2.437,2.516,2.334,2.316,2.325,2.311,2.259,,2.276,2.226,2.195,2.297,2.269,2.118,2.195,2.305, -"Oct 23, 2006",2.387,2.397,2.357,2.456,2.222,2.317,2.355,2.337,2.511,2.435,2.38,2.673,2.414,2.432,2.509,2.335,2.319,2.332,2.312,2.294,,2.317,2.25,2.206,2.347,2.293,2.138,2.228,2.342, -"Oct 30, 2006",2.382,2.39,2.35,2.453,2.218,2.314,2.34,2.321,2.5,2.427,2.387,2.66,2.415,2.435,2.497,2.325,2.316,2.327,2.31,2.304,,2.328,2.253,2.257,2.349,2.316,2.138,2.25,2.336, -"Nov 06, 2006",2.37,2.377,2.338,2.449,2.205,2.287,2.345,2.311,2.483,2.414,2.353,2.66,2.4,2.417,2.478,2.325,2.299,2.301,2.298,2.305,,2.348,2.256,2.246,2.37,2.309,2.128,2.228,2.346, -"Nov 13, 2006",2.38,2.382,2.346,2.47,2.22,2.283,2.342,2.324,2.5,2.418,2.359,2.697,2.41,2.423,2.489,2.317,2.296,2.289,2.3,2.353,,2.38,2.301,2.272,2.403,2.379,2.209,2.247,2.422, -"Nov 20, 2006",2.374,2.377,2.337,2.46,2.204,2.27,2.339,2.327,2.507,2.415,2.382,2.697,2.397,2.421,2.482,2.319,2.296,2.287,2.301,2.344,,2.361,2.308,2.262,2.4,2.375,2.215,2.236,2.41, -"Nov 27, 2006",2.379,2.382,2.345,2.455,2.205,2.287,2.356,2.331,2.529,2.419,2.402,2.698,2.407,2.427,2.49,2.313,2.299,2.285,2.307,2.344,,2.364,2.316,2.258,2.402,2.371,2.23,2.235,2.41, -"Dec 04, 2006",2.442,2.449,2.411,2.527,2.292,2.352,2.364,2.429,2.59,2.492,2.487,2.81,2.428,2.522,2.566,2.382,2.321,2.307,2.329,2.363,,2.378,2.329,2.297,2.41,2.377,2.221,2.286,2.414, -"Dec 11, 2006",2.444,2.454,2.412,2.511,2.313,2.357,2.387,2.421,2.568,2.497,2.485,2.81,2.448,2.526,2.572,2.383,2.343,2.315,2.357,2.348,,2.334,2.319,2.264,2.398,2.36,2.189,2.283,2.393, -"Dec 18, 2006",2.444,2.455,2.419,2.524,2.316,2.363,2.394,2.422,2.566,2.494,2.502,2.781,2.458,2.53,2.558,2.388,2.34,2.307,2.357,2.34,,2.342,2.321,2.257,2.399,2.372,2.204,2.251,2.386, -"Dec 25, 2006",2.434,2.446,2.405,2.516,2.297,2.342,2.392,2.399,2.561,2.488,2.483,2.792,2.447,2.525,2.56,2.371,2.334,2.31,2.346,2.317,,2.321,2.304,2.202,2.38,2.346,2.19,2.207,2.386, -"Jan 01, 2007",2.415,2.427,2.389,2.498,2.293,2.315,2.392,2.382,2.555,2.466,2.442,2.771,2.429,2.496,2.534,2.359,2.322,2.299,2.334,2.295,,2.298,2.293,2.158,2.368,2.339,2.169,2.171,2.361, -"Jan 08, 2007",2.388,2.402,2.36,2.478,2.248,2.276,2.391,2.353,2.533,2.444,2.381,2.771,2.424,2.446,2.517,2.342,2.294,2.275,2.304,2.25,,2.252,2.271,2.093,2.337,2.308,2.117,2.083,2.338, -"Jan 15, 2007",2.351,2.369,2.341,2.435,2.23,2.271,2.372,2.32,2.558,2.403,2.358,2.77,2.431,2.394,2.484,2.283,2.253,2.219,2.271,2.171,,2.165,2.218,2.03,2.275,2.238,2.045,2.03,2.213, -"Jan 22, 2007",2.333,2.354,2.334,2.425,2.221,2.266,2.37,2.315,2.55,2.381,2.357,2.728,2.415,2.385,2.46,2.254,2.24,2.202,2.261,2.128,,2.129,2.197,2.015,2.188,2.197,2.015,2.004,2.172, -"Jan 29, 2007",2.36,2.382,2.357,2.456,2.242,2.301,2.345,2.343,2.576,2.416,2.42,2.716,2.397,2.43,2.5,2.289,2.232,2.2,2.248,2.147,,2.136,2.136,2.033,2.189,2.205,2.009,2.069,2.181, -"Feb 05, 2007",2.413,2.433,2.397,2.494,2.28,2.356,2.35,2.396,2.598,2.476,2.479,2.739,2.448,2.521,2.53,2.377,2.272,2.224,2.298,2.216,,2.207,2.156,2.123,2.237,2.249,2.079,2.171,2.252, -"Feb 12, 2007",2.449,2.469,2.438,2.54,2.338,2.394,2.371,2.442,2.619,2.511,2.535,2.769,2.475,2.555,2.576,2.396,2.293,2.241,2.32,2.258,,2.259,2.19,2.163,2.305,2.284,2.097,2.208,2.286, -"Feb 19, 2007",2.453,2.469,2.44,2.531,2.346,2.391,2.404,2.433,2.633,2.51,2.52,2.769,2.476,2.562,2.568,2.401,2.299,2.259,2.321,2.291,,2.28,2.181,2.195,2.35,2.313,2.108,2.265,2.302, -"Feb 26, 2007",2.473,2.485,2.463,2.551,2.388,2.416,2.423,2.438,2.631,2.522,2.518,2.737,2.486,2.575,2.579,2.414,2.309,2.269,2.331,2.354,,2.365,2.283,2.277,2.41,2.381,2.181,2.294,2.383, -"Mar 05, 2007",2.496,2.505,2.486,2.57,2.398,2.442,2.454,2.49,2.647,2.539,2.554,2.771,2.489,2.593,2.594,2.437,2.331,2.293,2.352,2.404,,2.42,2.299,2.319,2.48,2.442,2.246,2.324,2.439, -"Mar 12, 2007",2.495,2.501,2.486,2.558,2.41,2.443,2.46,2.496,2.65,2.531,2.544,2.771,2.486,2.581,2.586,2.429,2.33,2.289,2.351,2.432,,2.468,2.344,2.335,2.507,2.494,2.293,2.328,2.472, -"Oct 08, 2007",2.774,2.772,2.735,2.802,2.707,2.693,2.693,2.773,2.757,2.811,2.816,3.025,2.731,2.854,2.869,2.718,2.686,2.674,2.693,2.793,,2.815,2.732,2.685,2.846,2.906,2.694,2.667,2.842, -"Oct 15, 2007",2.794,2.793,2.756,2.832,2.724,2.719,2.714,2.802,2.708,2.829,2.834,3.06,2.741,2.886,2.889,2.729,2.72,2.728,2.715,2.805,,2.823,2.751,2.692,2.839,2.918,2.698,2.703,2.841, -"Oct 22, 2007",2.869,2.87,2.837,2.905,2.81,2.793,2.815,2.87,2.825,2.904,2.888,3.136,2.805,2.957,2.968,2.806,2.791,2.792,2.79,2.856,,2.876,2.76,2.786,2.883,2.951,2.72,2.771,2.89, -"Oct 29, 2007",2.953,2.956,2.921,2.994,2.859,2.888,2.902,2.945,2.926,2.993,2.966,3.147,2.885,3.03,3.051,2.914,2.859,2.861,2.857,2.926,,2.964,2.787,2.892,2.94,2.977,2.78,2.877,2.959, -"Nov 05, 2007",3.11,3.112,3.08,3.18,3.04,3.029,3.027,3.115,3.048,3.149,3.102,3.409,3.009,3.209,3.224,3.04,2.99,2.994,2.988,3.091,,3.122,2.969,3.019,3.13,3.12,2.932,3.055,3.111, -"Nov 12, 2007",3.206,3.208,3.17,3.264,3.142,3.134,3.091,3.185,3.141,3.25,3.185,3.501,3.132,3.29,3.322,3.154,3.09,3.104,3.082,3.185,,3.197,3.059,3.105,3.269,3.204,3.006,3.141,3.201, -"Nov 19, 2007",3.215,3.218,3.183,3.259,3.135,3.148,3.161,3.191,3.177,3.257,3.199,3.521,3.17,3.296,3.328,3.155,3.099,3.098,3.099,3.185,,3.188,3.092,3.088,3.261,3.22,3.011,3.144,3.192, -"Nov 26, 2007",3.287,3.296,3.271,3.353,3.199,3.249,3.23,3.29,3.266,3.331,3.302,3.621,3.248,3.353,3.407,3.229,3.148,3.15,3.147,3.203,,3.223,3.118,3.124,3.251,3.257,3.076,3.145,3.222, -"Dec 03, 2007",3.274,3.287,3.255,3.337,3.196,3.199,3.275,3.261,3.285,3.326,3.275,3.595,3.264,3.355,3.402,3.216,3.153,3.148,3.155,3.149,,3.142,3.155,3.058,3.222,3.2,3.036,3.081,3.157, -"Dec 10, 2007",3.259,3.278,3.244,3.318,3.206,3.174,3.276,3.244,3.305,3.319,3.264,3.594,3.251,3.349,3.398,3.204,3.135,3.117,3.145,3.074,,3.061,3.059,2.974,3.136,3.137,3.008,2.999,3.095, -"Dec 17, 2007",3.298,3.32,3.302,3.389,3.251,3.245,3.307,3.304,3.322,3.355,3.347,3.641,3.279,3.438,3.416,3.239,3.139,3.125,3.146,3.079,,3.065,3.066,2.984,3.117,3.166,2.964,3.016,3.085, -"Dec 24, 2007",3.301,3.325,3.306,3.396,3.243,3.253,3.318,3.311,3.298,3.361,3.337,3.657,3.303,3.454,3.418,3.243,3.132,3.099,3.15,3.069,,3.065,3.033,3.001,3.089,3.152,2.954,3.019,3.073, -"Dec 31, 2007",3.341,3.367,3.358,3.457,3.318,3.299,3.335,3.353,3.374,3.399,3.376,3.681,3.342,3.471,3.465,3.279,3.139,3.108,3.157,3.091,,3.12,3.001,3.034,3.128,3.151,2.982,3.045,3.098, -"Jan 07, 2008",3.395,3.423,3.407,3.501,3.364,3.341,3.385,3.422,3.458,3.46,3.415,3.768,3.381,3.549,3.524,3.34,3.198,3.166,3.215,3.127,,3.147,3.035,3.082,3.179,3.149,3.005,3.094,3.136, -"Jan 14, 2008",3.361,3.389,3.367,3.436,3.343,3.297,3.384,3.373,3.45,3.429,3.361,3.756,3.375,3.522,3.495,3.298,3.191,3.149,3.214,3.087,,3.102,3.021,3.012,3.155,3.123,2.942,3.037,3.095, -"Jan 21, 2008",3.33,3.361,3.338,3.402,3.298,3.272,3.368,3.344,3.434,3.401,3.35,3.746,3.35,3.473,3.476,3.266,3.161,3.133,3.177,3.033,,3.051,2.943,2.964,3.088,3.073,2.904,3.003,3.03, -"Jan 28, 2008",3.316,3.347,3.319,3.394,3.253,3.254,3.356,3.33,3.407,3.39,3.348,3.719,3.315,3.453,3.476,3.251,3.155,3.128,3.169,3.015,,3.003,2.965,2.929,3.031,3.065,2.874,2.987,3.027, -"Feb 04, 2008",3.306,3.334,3.301,3.375,3.242,3.235,3.317,3.317,3.42,3.381,3.307,3.731,3.312,3.45,3.461,3.247,3.148,3.12,3.162,3.035,,3.045,2.962,2.957,3.06,3.071,2.875,3.011,3.044, -"Feb 11, 2008",3.305,3.331,3.289,3.339,3.229,3.247,3.316,3.289,3.402,3.383,3.354,3.72,3.293,3.423,3.461,3.271,3.149,3.114,3.168,3.055,,3.074,2.989,2.998,3.097,3.094,2.957,3.019,3.06, -"Feb 18, 2008",3.395,3.418,3.383,3.479,3.294,3.345,3.35,3.395,3.445,3.468,3.402,3.832,3.344,3.52,3.54,3.365,3.216,3.17,3.242,3.176,,3.217,3.077,3.127,3.263,3.178,3.03,3.153,3.168, -"Feb 25, 2008",3.461,3.476,3.45,3.551,3.393,3.389,3.403,3.472,3.538,3.514,3.514,3.894,3.412,3.594,3.563,3.422,3.317,3.243,3.357,3.313,,3.37,3.159,3.282,3.403,3.29,3.177,3.308,3.303, -"Mar 03, 2008",3.55,3.564,3.538,3.651,3.467,3.491,3.482,3.547,3.559,3.603,3.562,3.956,3.478,3.687,3.655,3.51,3.401,3.377,3.413,3.41,,3.46,3.313,3.347,3.511,3.399,3.242,3.415,3.369, -"Mar 10, 2008",3.677,3.689,3.684,3.78,3.619,3.642,3.618,3.715,3.73,3.711,3.673,4.057,3.678,3.807,3.753,3.603,3.538,3.499,3.559,3.557,,3.64,3.488,3.519,3.647,3.534,3.424,3.583,3.492, -"Mar 17, 2008",3.852,3.865,3.867,3.961,3.791,3.816,3.851,3.911,3.891,3.884,3.819,4.16,3.78,3.971,3.942,3.78,3.675,3.642,3.693,3.727,,3.786,3.64,3.651,3.807,3.679,3.552,3.754,3.695, -"Oct 06, 2008",3.663,3.671,3.629,3.757,3.527,3.532,3.684,3.578,3.791,3.694,3.709,4.044,3.831,3.671,3.797,3.52,3.757,3.792,3.737,3.585,,3.611,3.571,3.486,3.597,3.686,3.497,3.495,3.619, -"Oct 13, 2008",3.39,3.402,3.358,3.421,3.231,3.277,3.531,3.268,3.609,3.416,3.306,3.732,3.558,3.337,3.503,3.302,3.562,3.622,3.527,3.279,,3.206,3.397,3.197,3.267,3.398,3.238,3.148,3.358, -"Oct 20, 2008",3.227,3.243,3.188,3.283,3.071,3.09,3.324,3.121,3.403,3.273,3.228,3.61,3.388,3.196,3.347,3.178,3.344,3.362,3.334,3.072,,2.983,3.032,2.928,3.069,3.245,3.036,2.904,3.185, -"Oct 27, 2008",3.059,3.079,2.993,3.05,2.894,2.9,3.1,2.968,3.332,3.138,3.077,3.482,3.189,3.051,3.242,3.023,3.133,3.188,3.101,2.866,,2.766,2.81,2.696,2.86,3.078,2.772,2.696,2.964, -"Nov 03, 2008",2.987,3.015,2.942,3.036,2.8,2.871,2.969,2.94,3.248,3.07,2.96,3.409,3.05,2.972,3.168,2.987,3.027,3.064,3.006,2.714,,2.624,2.599,2.601,2.7,2.906,2.526,2.632,2.741, -"Nov 10, 2008",2.941,2.967,2.885,2.992,2.758,2.79,2.893,2.932,3.197,3.027,2.934,3.333,3.023,2.942,3.101,2.962,2.985,3.054,2.955,2.656,,2.573,2.514,2.565,2.646,2.836,2.515,2.554,2.67, -"Nov 17, 2008",2.83,2.86,2.781,2.889,2.674,2.688,2.797,2.757,3.09,2.924,2.803,3.194,2.909,2.807,3.025,2.847,2.826,2.868,2.801,2.543,,2.466,2.445,2.419,2.562,2.741,2.398,2.426,2.58, -"Nov 24, 2008",2.713,2.745,2.667,2.747,2.609,2.576,2.671,2.63,3.007,2.805,2.711,3.094,2.781,2.765,2.908,2.686,2.746,2.758,2.739,2.394,,2.33,2.3,2.268,2.399,2.576,2.265,2.289,2.431, -"Dec 01, 2008",2.68,2.715,2.654,2.739,2.59,2.558,2.657,2.617,3.017,2.767,2.708,3.019,2.755,2.684,2.899,2.625,2.672,2.7,2.655,2.331,,2.283,2.262,2.233,2.359,2.42,2.225,2.253,2.38, -"Dec 08, 2008",2.512,2.547,2.479,2.553,2.426,2.372,2.522,2.452,2.83,2.602,2.495,2.917,2.688,2.497,2.716,2.476,2.508,2.589,2.461,2.169,,2.139,2.093,2.002,2.218,2.267,2.092,2.059,2.238, -"Dec 15, 2008",2.47,2.509,2.448,2.519,2.406,2.345,2.491,2.396,2.792,2.569,2.472,2.818,2.611,2.466,2.712,2.412,2.394,2.436,2.369,2.089,,2.027,1.973,1.911,2.124,2.155,1.993,2.019,2.158, -"Dec 22, 2008",2.409,2.446,2.393,2.449,2.35,2.297,2.44,2.343,2.756,2.497,2.411,2.78,2.538,2.417,2.597,2.389,2.353,2.381,2.337,2.049,,1.998,1.969,1.897,2.065,2.131,1.943,1.966,2.122, -"Dec 29, 2008",2.33,2.365,2.316,2.388,2.265,2.194,2.403,2.265,2.677,2.411,2.363,2.693,2.526,2.34,2.484,2.316,2.296,2.311,2.287,1.98,,1.911,1.925,1.852,2.024,2.025,1.878,1.897,2.055, -"Jan 05, 2009",2.365,2.402,2.37,2.452,2.285,2.299,2.394,2.351,2.592,2.443,2.43,2.694,2.463,2.41,2.532,2.326,2.253,2.282,2.236,2.008,,1.96,1.945,1.88,2.014,2.058,1.864,1.956,2.068, -"Jan 12, 2009",2.439,2.478,2.435,2.511,2.371,2.371,2.42,2.454,2.625,2.533,2.511,2.857,2.467,2.535,2.624,2.414,2.285,2.289,2.283,2.054,,2.046,1.946,2.007,2.088,2.106,1.917,2.01,2.079, -"Jan 19, 2009",2.421,2.461,2.421,2.496,2.385,2.333,2.427,2.443,2.619,2.513,2.497,2.771,2.508,2.507,2.587,2.411,2.272,2.257,2.28,2.031,,2.033,1.923,1.971,2.059,2.059,1.879,1.995,2.065, -"Jan 26, 2009",2.4,2.442,2.4,2.48,2.361,2.312,2.417,2.39,2.596,2.496,2.498,2.694,2.484,2.486,2.58,2.383,2.244,2.237,2.248,1.987,,1.979,1.87,1.904,2.026,2.037,1.85,1.929,2.029, -"Feb 02, 2009",2.389,2.432,2.386,2.467,2.339,2.297,2.419,2.372,2.566,2.49,2.48,2.696,2.462,2.488,2.576,2.372,2.245,2.231,2.253,1.964,,1.961,1.827,1.906,2.029,2.016,1.827,1.92,1.979, -"Feb 09, 2009",2.359,2.402,2.352,2.422,2.314,2.263,2.415,2.29,2.573,2.461,2.428,2.696,2.463,2.423,2.554,2.346,2.227,2.221,2.231,1.936,,1.922,1.798,1.859,2.004,1.975,1.784,1.907,1.944, -"Feb 16, 2009",2.308,2.351,2.307,2.389,2.265,2.203,2.359,2.267,2.547,2.404,2.361,2.646,2.413,2.363,2.525,2.25,2.186,2.169,2.195,1.889,,1.876,1.771,1.819,1.944,1.931,1.702,1.858,1.899, -"Feb 23, 2009",2.233,2.276,2.218,2.308,2.17,2.117,2.261,2.187,2.438,2.336,2.356,2.596,2.377,2.283,2.449,2.187,2.135,2.124,2.142,1.808,,1.767,1.686,1.729,1.899,1.856,1.644,1.766,1.815, -"Mar 02, 2009",2.22,2.262,2.208,2.335,2.121,2.104,2.229,2.188,2.406,2.319,2.332,2.518,2.347,2.253,2.447,2.161,2.128,2.109,2.14,1.807,,1.813,1.679,1.717,1.867,1.849,1.622,1.785,1.804, -"Mar 09, 2009",2.182,2.224,2.171,2.277,2.11,2.082,2.165,2.13,2.396,2.28,2.32,2.431,2.292,2.19,2.425,2.116,2.08,2.056,2.093,1.775,,1.792,1.635,1.661,1.835,1.82,1.577,1.751,1.776, -"Mar 16, 2009",2.16,2.202,2.152,2.253,2.065,2.081,2.148,2.117,2.359,2.257,2.289,2.494,2.281,2.176,2.393,2.096,2.067,2.038,2.084,1.745,,1.761,1.616,1.64,1.818,1.785,1.571,1.712,1.747, -"Oct 05, 2009",2.5,2.512,2.482,2.546,2.415,2.563,2.347,2.442,2.388,2.548,2.418,2.814,2.446,2.599,2.709,2.339,2.357,2.395,2.334,2.242,,2.366,2.191,2.19,2.278,2.252,2.151,2.242,2.289, -"Oct 12, 2009",2.539,2.55,2.509,2.578,2.466,2.562,2.376,2.476,2.418,2.597,2.433,2.828,2.487,2.643,2.742,2.416,2.368,2.39,2.355,2.293,,2.396,2.227,2.236,2.251,2.329,2.19,2.318,2.334, -"Oct 19, 2009",2.642,2.652,2.625,2.709,2.554,2.677,2.456,2.653,2.517,2.69,2.589,2.928,2.553,2.747,2.839,2.499,2.449,2.502,2.416,2.421,,2.524,2.301,2.344,2.444,2.406,2.288,2.453,2.438, -"Oct 26, 2009",2.73,2.74,2.726,2.793,2.673,2.782,2.567,2.732,2.629,2.771,2.656,3.011,2.682,2.836,2.885,2.61,2.523,2.565,2.497,2.487,,2.636,2.45,2.441,2.596,2.492,2.359,2.465,2.503, -"Nov 02, 2009",2.741,2.751,2.734,2.783,2.692,2.809,2.581,2.726,2.604,2.783,2.634,3.04,2.698,2.835,2.913,2.609,2.547,2.571,2.532,2.519,,2.619,2.463,2.436,2.575,2.498,2.382,2.55,2.506, -"Nov 09, 2009",2.757,2.769,2.738,2.788,2.698,2.795,2.622,2.713,2.648,2.81,2.644,3.134,2.712,2.876,2.926,2.649,2.564,2.585,2.551,2.501,,2.581,2.425,2.434,2.554,2.511,2.407,2.523,2.473, -"Nov 16, 2009",2.753,2.765,2.744,2.801,2.706,2.798,2.628,2.713,2.657,2.798,2.661,3.142,2.721,2.861,2.91,2.637,2.563,2.585,2.55,2.496,,2.552,2.437,2.443,2.533,2.498,2.404,2.519,2.466, -"Nov 23, 2009",2.757,2.768,2.743,2.793,2.712,2.798,2.633,2.706,2.644,2.804,2.667,3.143,2.731,2.865,2.917,2.642,2.588,2.591,2.586,2.501,,2.564,2.434,2.449,2.545,2.517,2.404,2.519,2.484, -"Nov 30, 2009",2.757,2.769,2.747,2.794,2.724,2.797,2.648,2.706,2.645,2.801,2.658,3.146,2.729,2.868,2.916,2.634,2.588,2.592,2.586,2.487,,2.564,2.42,2.427,2.537,2.505,2.399,2.504,2.474, -"Dec 07, 2009",2.773,2.786,2.768,2.826,2.734,2.814,2.653,2.764,2.629,2.818,2.685,3.187,2.74,2.893,2.947,2.628,2.587,2.599,2.58,2.483,,2.554,2.425,2.428,2.491,2.511,2.4,2.505,2.471, -"Dec 14, 2009",2.761,2.775,2.749,2.79,2.737,2.793,2.645,2.732,2.629,2.811,2.656,3.181,2.712,2.872,2.931,2.648,2.584,2.587,2.582,2.451,,2.498,2.359,2.384,2.454,2.494,2.366,2.489,2.43, -"Dec 21, 2009",2.767,2.782,2.753,2.813,2.73,2.795,2.664,2.713,2.628,2.821,2.689,3.187,2.717,2.9,2.938,2.649,2.579,2.588,2.573,2.441,,2.488,2.35,2.368,2.442,2.45,2.356,2.486,2.426, -"Dec 28, 2009",2.81,2.825,2.798,2.896,2.737,2.844,2.669,2.773,2.66,2.866,2.744,3.19,2.742,2.947,2.973,2.709,2.599,2.606,2.595,2.477,,2.518,2.376,2.407,2.47,2.459,2.372,2.53,2.437, -"Jan 04, 2010",2.895,2.911,2.894,2.958,2.815,2.946,2.818,2.898,2.774,2.945,2.848,3.248,2.814,3.053,3.046,2.78,2.67,2.676,2.667,2.534,,2.623,2.424,2.488,2.531,2.537,2.416,2.555,2.535, -"Jan 11, 2010",3,3.016,2.983,3.063,2.916,3.036,2.883,2.947,2.869,3.063,2.946,3.426,2.959,3.152,3.154,2.917,2.774,2.776,2.772,2.627,,2.675,2.54,2.551,2.611,2.607,2.479,2.684,2.617, -"Jan 18, 2010",2.967,2.983,2.946,3.015,2.909,2.988,2.888,2.876,2.83,3.031,2.89,3.428,2.944,3.103,3.109,2.909,2.76,2.761,2.759,2.603,,2.614,2.492,2.505,2.591,2.572,2.455,2.684,2.584, -"Jan 25, 2010",2.912,2.929,2.884,2.917,2.87,2.942,2.849,2.771,2.807,2.978,2.817,3.383,2.934,3.034,3.068,2.841,2.76,2.749,2.767,2.536,,2.544,2.421,2.428,2.538,2.544,2.402,2.615,2.514, -"Feb 01, 2010",2.878,2.894,2.847,2.896,2.804,2.915,2.796,2.734,2.78,2.944,2.786,3.39,2.882,3.036,3.051,2.768,2.723,2.703,2.735,2.517,,2.505,2.354,2.416,2.497,2.489,2.359,2.608,2.483, -"Feb 08, 2010",2.862,2.877,2.845,2.894,2.808,2.909,2.799,2.741,2.76,2.915,2.822,3.439,2.874,3,3.018,2.742,2.718,2.7,2.73,2.525,,2.526,2.333,2.425,2.502,2.47,2.331,2.62,2.479, -"Feb 15, 2010",2.865,2.88,2.845,2.88,2.808,2.923,2.786,2.743,2.758,2.921,2.835,3.357,2.878,2.983,3.037,2.745,2.716,2.703,2.724,2.545,,2.518,2.317,2.423,2.47,2.44,2.304,2.684,2.475, -"Feb 22, 2010",2.915,2.931,2.888,2.963,2.821,2.955,2.801,2.815,2.783,2.981,2.885,3.403,2.927,3.061,3.099,2.794,2.733,2.706,2.75,2.56,,2.59,2.371,2.468,2.552,2.509,2.366,2.64,2.524, -"Mar 01, 2010",2.91,2.925,2.885,2.965,2.808,2.954,2.808,2.806,2.78,2.971,2.885,3.404,2.937,3.061,3.066,2.804,2.741,2.711,2.76,2.581,,2.61,2.423,2.518,2.583,2.533,2.397,2.636,2.562, -"Mar 08, 2010",2.928,2.943,2.913,3.005,2.829,2.971,2.824,2.861,2.803,2.983,2.88,3.445,2.949,3.075,3.08,2.81,2.75,2.723,2.766,2.596,,2.645,2.499,2.535,2.6,2.583,2.426,2.637,2.614, -"Mar 15, 2010",2.937,2.951,2.923,3.024,2.832,2.983,2.827,2.861,2.818,2.99,2.875,3.452,2.947,3.081,3.086,2.822,2.76,2.722,2.783,2.608,,2.656,2.506,2.559,2.612,2.632,2.458,2.635,2.635, -"Oct 04, 2010",2.908,2.925,2.882,3.008,2.696,2.944,2.754,2.926,2.768,2.965,2.829,3.245,2.85,3.054,3.099,2.765,2.745,2.782,2.723,2.589,,2.798,2.65,2.274,2.762,2.772,2.627,2.726,2.717, -"Oct 11, 2010",2.954,2.964,2.925,3.043,2.737,2.999,2.779,2.966,2.846,3.001,2.849,3.318,2.886,3.044,3.13,2.835,2.8,2.836,2.779,2.762,,2.836,2.725,2.7,2.846,2.822,2.651,2.772,2.793, -"Oct 18, 2010",2.976,2.988,2.942,3.04,2.788,3.018,2.81,2.95,2.873,3.03,2.88,3.357,2.939,3.074,3.149,2.872,2.82,2.844,2.806,2.755,,2.832,2.682,2.7,2.829,2.824,2.668,2.76,2.779, -"Oct 25, 2010",2.99,3.003,2.964,3.049,2.81,3.052,2.855,2.967,2.873,3.04,2.887,3.34,2.967,3.087,3.159,2.877,2.824,2.835,2.817,2.745,,2.797,2.687,2.672,2.82,2.825,2.64,2.768,2.77, -"Nov 01, 2010",2.995,3.007,2.968,3.068,2.814,3.052,2.85,2.971,2.844,3.045,2.88,3.344,2.96,3.101,3.164,2.88,2.821,2.84,2.809,2.747,,2.807,2.684,2.671,2.823,2.824,2.625,2.772,2.771, -"Nov 08, 2010",3.082,3.096,3.051,3.165,2.873,3.126,2.946,3.054,2.959,3.14,2.956,3.48,3.003,3.185,3.281,2.962,2.864,2.881,2.854,2.819,,2.914,2.755,2.725,2.895,2.881,2.72,2.847,2.87, -"Nov 15, 2010",3.13,3.144,3.102,3.2,2.929,3.182,3.013,3.109,2.996,3.186,3.011,3.603,3.053,3.247,3.318,3.01,2.909,2.925,2.899,2.873,,2.946,2.832,2.784,2.982,2.961,2.786,2.896,2.902, -"Nov 22, 2010",3.116,3.131,3.085,3.174,2.935,3.163,3.008,3.061,2.998,3.175,3.001,3.619,3.082,3.256,3.302,2.985,2.906,2.932,2.89,2.84,,2.906,2.796,2.763,2.923,2.926,2.773,2.862,2.857, -"Nov 29, 2010",3.121,3.136,3.089,3.188,2.939,3.15,3.017,3.08,2.985,3.181,3.029,3.615,3.097,3.254,3.309,2.992,2.911,2.933,2.898,2.833,,2.921,2.758,2.765,2.899,2.909,2.773,2.848,2.836, -"Dec 06, 2010",3.211,3.228,3.183,3.287,2.992,3.27,3.094,3.179,3.094,3.274,3.094,3.636,3.166,3.341,3.392,3.108,2.973,2.979,2.969,2.887,,2.958,2.812,2.817,2.927,2.953,2.771,2.912,2.914, -"Dec 13, 2010",3.25,3.266,3.225,3.323,3.042,3.304,3.155,3.232,3.115,3.309,3.153,3.646,3.227,3.368,3.429,3.14,3.013,3.025,3.006,2.933,,3.003,2.845,2.849,2.981,2.967,2.831,2.968,2.933, -"Dec 20, 2010",3.266,3.282,3.241,3.356,3.054,3.312,3.164,3.251,3.103,3.325,3.203,3.651,3.27,3.376,3.441,3.158,3.045,3.037,3.05,2.96,,3.045,2.857,2.892,2.994,2.983,2.829,2.983,2.972, -"Dec 27, 2010",3.321,3.338,3.293,3.409,3.095,3.376,3.206,3.311,3.136,3.382,3.251,3.774,3.307,3.438,3.489,3.227,3.114,3.098,3.123,2.997,,3.074,2.917,2.927,3.042,3.026,2.862,3.021,3.001, -"Jan 03, 2011",3.345,3.363,3.322,3.438,3.107,3.414,3.225,3.336,3.213,3.404,3.3,3.792,3.341,3.479,3.51,3.236,3.137,3.113,3.151,3.011,,3.077,2.922,2.953,3.052,3.047,2.865,3.03,3.005, -"Jan 10, 2011",3.37,3.389,3.337,3.462,3.134,3.401,3.27,3.341,3.23,3.439,3.283,3.84,3.361,3.488,3.562,3.271,3.166,3.136,3.184,3.002,,3.051,2.931,2.952,3.036,3.043,2.892,3.021,3.009, -"Jan 17, 2011",3.455,3.475,3.433,3.572,3.219,3.501,3.389,3.405,3.305,3.518,3.392,3.905,3.443,3.556,3.638,3.358,3.244,3.221,3.258,3.073,,3.154,2.987,2.976,3.106,3.091,2.951,3.119,3.086, -"Jan 24, 2011",3.486,3.506,3.471,3.592,3.284,3.534,3.433,3.446,3.344,3.544,3.39,3.948,3.465,3.59,3.667,3.378,3.257,3.245,3.264,3.106,,3.176,3.012,3.037,3.128,3.117,2.99,3.137,3.102, -"Jan 31, 2011",3.53,3.551,3.532,3.67,3.338,3.59,3.498,3.502,3.385,3.579,3.439,3.958,3.498,3.623,3.702,3.414,3.274,3.241,3.293,3.126,,3.197,3.034,3.04,3.165,3.127,3.003,3.165,3.126, -"Feb 07, 2011",3.583,3.604,3.595,3.717,3.399,3.657,3.548,3.587,3.489,3.624,3.482,4.043,3.552,3.659,3.748,3.46,3.331,3.297,3.351,3.184,,3.254,3.076,3.092,3.243,3.166,3.04,3.225,3.185, -"Feb 14, 2011",3.594,3.614,3.595,3.708,3.42,3.663,3.551,3.56,3.472,3.641,3.494,4.061,3.57,3.656,3.764,3.491,3.344,3.311,3.363,3.213,,3.268,3.092,3.132,3.24,3.187,3.058,3.257,3.199, -"Feb 21, 2011",3.622,3.641,3.629,3.772,3.417,3.696,3.611,3.571,3.502,3.664,3.518,4.05,3.568,3.712,3.791,3.493,3.364,3.321,3.389,3.25,,3.294,3.119,3.144,3.296,3.249,3.099,3.31,3.222, -"Feb 28, 2011",3.762,3.78,3.759,3.86,3.564,3.834,3.749,3.734,3.642,3.81,3.636,4.114,3.685,3.837,3.951,3.641,3.49,3.444,3.517,3.425,,3.427,3.306,3.345,3.445,3.41,3.304,3.482,3.374, -"Mar 07, 2011",3.877,3.893,3.894,4.021,3.689,3.962,3.87,3.852,3.787,3.907,3.708,4.209,3.81,3.922,4.021,3.776,3.608,3.587,3.62,3.576,,3.597,3.433,3.494,3.54,3.576,3.435,3.642,3.526, -"Mar 14, 2011",3.88,3.893,3.892,3.989,3.718,3.962,3.901,3.837,3.763,3.907,3.719,4.229,3.831,3.912,4.025,3.773,3.621,3.605,3.631,3.602,,3.63,3.506,3.521,,3.601,3.457,3.657,3.575, -"Oct 03, 2011",3.694,3.709,3.679,3.759,3.578,3.733,3.653,3.617,3.541,3.736,3.671,4.045,3.718,3.803,3.876,3.518,3.568,3.606,3.548,3.32,,3.394,3.297,3.273,3.458,3.487,3.353,3.301,3.405, -"Oct 10, 2011",3.689,3.705,3.654,3.738,3.533,3.699,3.606,3.634,3.563,3.746,3.674,4.104,3.668,3.802,3.895,3.534,3.562,3.594,3.544,3.305,,3.379,3.308,3.272,3.429,3.468,3.353,3.274,3.396, -"Oct 17, 2011",3.777,3.793,3.738,3.868,3.581,3.782,3.635,3.746,3.602,3.84,3.674,4.24,3.706,3.831,4.015,3.644,3.584,3.616,3.567,3.379,,3.464,3.402,3.346,3.518,3.586,3.41,3.344,3.396, -"Oct 24, 2011",3.803,3.818,3.773,3.912,3.599,3.817,3.695,3.757,3.644,3.858,3.686,4.216,3.748,3.908,4.014,3.648,3.61,3.64,3.594,3.439,,3.505,3.464,3.39,3.615,3.642,3.444,3.41,3.538, -"Oct 31, 2011",3.854,3.869,3.825,3.955,3.636,3.885,3.729,3.822,3.718,3.909,3.715,4.254,3.816,3.968,4.063,3.694,3.65,3.67,3.639,3.484,,3.574,3.535,3.427,3.662,3.706,3.508,3.452,3.626, -"Nov 07, 2011",3.877,3.892,3.853,3.989,3.674,3.918,3.754,3.824,3.735,3.927,3.737,4.346,3.878,3.962,4.079,3.72,3.679,3.683,3.677,3.527,,3.619,3.542,3.471,3.709,3.73,3.613,3.492,3.701, -"Nov 14, 2011",3.943,3.956,3.92,4.073,3.738,3.985,3.797,3.891,3.778,3.991,3.821,4.347,3.913,4.028,4.133,3.801,3.703,3.722,3.692,3.644,,3.761,3.669,3.584,3.838,3.831,3.693,3.604,3.781, -"Nov 21, 2011",3.941,3.954,3.909,4.025,3.754,3.977,3.823,3.856,3.812,3.996,3.802,4.441,3.94,4.053,4.14,3.79,3.69,3.724,3.672,3.626,,3.707,3.646,3.597,3.756,3.817,3.648,3.586,3.725, -"Nov 28, 2011",3.902,3.916,3.875,3.987,3.727,3.941,3.805,3.815,3.778,3.953,3.765,4.449,3.921,4.013,4.096,3.74,3.7,3.727,3.685,3.556,,3.624,3.533,3.542,3.67,3.717,3.595,3.516,3.598, -"Dec 05, 2011",3.899,3.915,3.886,3.994,3.744,3.948,3.815,3.827,3.805,3.944,3.783,4.442,3.918,4.005,4.102,3.709,3.706,3.714,3.701,3.51,,3.511,3.447,3.505,3.576,3.639,3.532,3.497,3.528, -"Dec 12, 2011",3.874,3.892,3.86,3.978,3.722,3.916,3.811,3.789,3.728,3.922,3.776,4.44,3.907,3.989,4.076,3.687,3.681,3.697,3.673,3.445,,3.453,3.41,3.458,3.468,3.582,3.49,3.422,3.429, -"Dec 19, 2011",3.832,3.853,3.813,3.912,3.693,3.859,3.785,3.743,3.722,3.888,3.723,4.317,3.875,3.972,4.059,3.622,3.644,3.663,3.634,3.344,,3.332,3.296,3.346,3.397,3.512,3.441,3.326,3.358, -"Dec 26, 2011",3.843,3.863,3.823,3.934,3.677,3.88,3.761,3.774,3.719,3.9,3.804,4.353,3.859,3.942,4.067,3.664,3.627,3.659,3.61,3.361,,3.328,3.313,3.323,3.355,3.487,3.442,3.405,3.367, -"Jan 02, 2012",3.854,3.874,3.835,3.95,3.675,3.892,3.759,3.796,3.758,3.912,3.82,4.355,3.864,3.958,4.083,3.669,3.639,3.656,3.63,3.355,,3.308,3.265,3.32,3.346,3.476,3.442,3.401,3.363, -"Jan 09, 2012",3.946,3.967,3.949,4.079,3.785,3.998,3.861,3.92,3.859,3.991,3.886,4.453,3.94,4.067,4.144,3.756,3.692,3.687,3.695,3.428,,3.407,3.35,3.379,3.479,3.508,3.402,3.469,3.47, -"Jan 16, 2012",3.964,3.986,3.975,4.113,3.799,4.031,3.91,3.921,3.867,4.004,3.888,4.508,3.969,4.089,4.152,3.768,3.717,3.723,3.713,3.441,,3.453,3.335,3.391,3.484,3.506,3.4,3.478,3.473, -"Jan 23, 2012",3.955,3.978,3.964,4.083,3.795,4.015,3.901,3.93,3.886,3.998,3.895,4.514,3.971,4.077,4.153,3.756,3.694,3.69,3.696,3.405,,3.433,3.324,3.363,3.412,3.495,3.409,3.437,3.416, -"Jan 30, 2012",3.969,3.99,3.972,4.099,3.784,4.039,3.898,3.939,3.861,4.013,3.91,4.488,3.971,4.084,4.169,3.776,3.703,3.728,3.689,3.461,,3.498,3.36,3.391,3.482,3.503,3.44,3.518,3.435, -"Feb 06, 2012",3.988,4.009,3.997,4.121,3.801,4.075,3.929,3.965,3.853,4.029,3.917,4.5,3.988,4.103,4.18,3.796,3.705,3.735,3.689,3.498,,3.554,3.443,3.436,3.51,3.524,3.452,3.541,3.506, -"Feb 13, 2012",4.049,4.07,4.06,4.192,3.868,4.124,4.013,4.021,3.918,4.088,3.985,4.515,4.058,4.155,4.232,3.868,3.757,3.765,3.753,3.553,,3.595,3.453,3.503,3.557,3.592,3.488,3.595,3.528, -"Feb 20, 2012",4.062,4.083,4.072,4.203,3.871,4.142,4.009,4.026,3.979,4.102,3.988,4.523,4.087,4.184,4.238,3.88,3.778,3.777,3.779,3.556,,3.601,3.472,3.512,3.513,3.59,3.515,3.603,3.499, -"Feb 27, 2012",4.125,4.144,4.145,4.268,3.91,4.249,4.06,4.127,4.017,4.155,4.084,4.582,4.132,4.256,4.273,3.946,3.835,3.825,3.841,3.671,,3.73,3.553,3.644,3.591,3.659,3.592,3.715,3.539, -"Mar 05, 2012",4.114,4.128,4.128,4.252,3.923,4.215,4.063,4.095,3.977,4.139,4.045,4.577,4.128,4.227,4.255,3.939,3.851,3.844,3.855,3.761,,3.812,3.526,3.681,3.734,3.668,3.602,3.857,3.606, -"Mar 12, 2012",4.118,4.132,4.129,4.249,3.92,4.207,4.067,4.102,4.024,4.145,4.052,4.576,4.137,4.246,4.266,3.931,3.852,3.845,3.856,3.778,,3.863,3.607,3.692,3.764,3.696,3.638,3.86,3.666, -"Mar 19, 2012",4.123,4.137,4.127,4.248,3.918,4.202,4.048,4.111,4.044,4.154,4.059,4.594,4.154,4.248,4.276,3.941,3.869,3.854,3.877,3.795,,3.896,3.65,3.709,3.823,3.735,3.652,3.857,3.728, -"Oct 01, 2012",3.969,3.98,3.915,4.072,3.732,3.956,3.783,3.922,3.824,4.033,3.807,4.389,3.878,4.047,4.237,3.771,3.729,3.779,3.708,3.475,,3.837,3.638,2.988,3.775,3.794,3.651,3.724,3.65, -"Oct 08, 2012",3.994,3.999,3.94,4.081,3.784,3.988,3.818,3.931,3.838,4.048,3.866,4.383,3.932,4.039,4.264,3.774,3.728,3.767,3.711,3.76,,3.812,3.836,3.714,3.805,3.913,3.67,3.773,3.675, -"Oct 15, 2012",4.052,4.057,3.993,4.132,3.809,4.04,3.879,4.012,3.898,4.11,3.926,4.524,3.952,4.109,4.308,3.864,3.772,3.832,3.747,3.828,,3.892,3.861,3.755,3.914,4.031,3.828,3.832,3.844, -"Oct 22, 2012",4.048,4.054,3.998,4.159,3.812,4.034,3.884,4.01,3.888,4.1,3.882,4.55,4.037,4.123,4.281,3.849,3.768,3.833,3.741,3.791,,3.832,3.796,3.753,3.83,3.96,3.835,3.785,3.804, -"Oct 29, 2012",4.009,4.016,3.955,4.103,3.779,4.007,3.838,3.966,3.796,4.066,3.891,4.55,4.035,4.123,4.266,3.76,3.758,3.822,3.731,3.718,,3.783,3.595,3.658,3.83,3.782,3.705,3.733,3.706, -"Nov 05, 2012",4.008,4.015,3.93,4.077,3.747,3.984,3.83,3.936,3.77,4.081,3.876,4.53,3.991,4.137,4.276,3.797,3.769,3.787,3.761,3.691,,3.751,3.525,3.651,3.763,3.702,3.664,3.72,3.632, -"Nov 12, 2012",4.008,4.015,3.918,4.07,3.727,3.959,3.819,3.946,3.758,4.09,3.894,4.544,3.96,4.147,4.299,3.792,3.771,3.814,3.753,3.717,,3.765,3.474,3.684,3.767,3.636,3.581,3.786,3.631, -"Nov 19, 2012",4,4.006,3.904,4.051,3.697,3.953,3.81,3.937,3.764,4.085,3.854,4.537,3.986,4.102,4.308,3.785,3.757,3.823,3.73,3.746,,3.824,3.468,3.719,3.792,3.622,3.514,3.808,3.657, -"Nov 26, 2012",4.03,4.034,3.942,4.085,3.727,3.97,3.838,4.05,3.798,4.106,3.878,4.542,3.975,4.1,4.338,3.811,3.784,3.841,3.76,3.837,,3.891,3.567,3.851,3.852,3.709,3.548,3.885,3.682, -"Dec 03, 2012",4.027,4.032,3.936,4.088,3.721,3.974,3.831,3.999,3.807,4.107,3.869,4.537,3.979,4.122,4.326,3.818,3.78,3.853,3.75,3.821,,3.872,3.553,3.838,3.82,3.688,3.524,3.872,3.684, -"Dec 10, 2012",3.982,3.988,3.9,4.049,3.68,3.951,3.814,3.932,3.765,4.057,3.836,4.537,3.968,4.08,4.28,3.752,3.766,3.845,3.733,3.718,,3.795,3.461,3.735,3.735,3.616,3.506,3.726,3.611, -"Dec 17, 2012",3.96,3.968,3.891,4.052,3.68,3.937,3.777,3.91,3.783,4.028,3.859,4.544,3.939,4.051,4.231,3.748,3.758,3.813,3.735,3.639,,3.675,3.442,3.667,3.66,3.565,3.452,3.632,3.589, -"Dec 24, 2012",3.976,3.985,3.914,4.078,3.698,3.958,3.797,3.951,3.793,4.041,3.863,4.539,3.926,4.078,4.237,3.768,3.753,3.814,3.727,3.592,,3.686,3.476,3.563,3.601,3.566,3.464,3.613,3.564, -"Dec 31, 2012",3.987,3.996,3.935,4.087,3.715,3.991,3.815,3.98,3.804,4.046,3.903,4.535,3.941,4.107,4.232,3.77,3.752,3.804,3.73,3.592,,3.674,3.438,3.576,3.612,3.546,3.441,3.606,3.568, -"Jan 07, 2013",4.003,4.013,3.956,4.112,3.741,4.013,3.844,3.986,3.817,4.061,3.917,4.535,3.941,4.105,4.259,3.78,3.744,3.801,3.72,3.556,,3.61,3.415,3.562,3.564,3.54,3.456,3.549,3.533, -"Jan 14, 2013",4.004,4.014,3.962,4.119,3.754,4.02,3.84,3.981,3.826,4.058,3.936,4.544,3.969,4.104,4.25,3.78,3.744,3.796,3.722,3.543,,3.577,3.427,3.585,3.514,3.518,3.386,3.514,3.522, -"Jan 21, 2013",4.014,4.025,3.972,4.137,3.759,4.022,3.869,3.985,3.828,4.069,3.943,4.537,3.975,4.113,4.274,3.774,3.749,3.788,3.732,3.544,,3.586,3.44,3.553,3.556,3.545,3.419,3.532,3.526, -"Jan 28, 2013",4.045,4.056,4.002,4.154,3.798,4.058,3.896,4.007,3.894,4.101,3.967,4.594,4.001,4.146,4.302,3.813,3.753,3.792,3.737,3.567,,3.615,3.454,3.541,3.572,3.577,3.445,3.606,3.562, -"Feb 04, 2013",4.092,4.101,4.038,4.198,3.817,4.094,3.917,4.068,3.913,4.154,4.024,4.593,4.048,4.212,4.342,3.879,3.781,3.813,3.767,3.685,,3.739,3.545,3.63,3.71,3.628,3.505,3.762,3.7, -"Feb 11, 2013",4.161,4.17,4.123,4.304,3.885,4.174,3.987,4.168,3.981,4.211,4.073,4.638,4.108,4.256,4.392,3.953,3.824,3.854,3.812,3.777,,3.799,3.651,3.706,3.868,3.726,3.606,3.863,3.791, -"Feb 18, 2013",4.175,4.183,4.136,4.33,3.888,4.193,3.995,4.152,4.002,4.223,4.09,4.646,4.136,4.286,4.402,3.954,3.874,3.88,3.872,3.827,,3.868,3.719,3.775,3.892,3.771,3.69,3.885,3.819, -"Feb 25, 2013",4.153,4.16,4.118,4.297,3.893,4.159,4.025,4.124,3.988,4.197,4.079,4.664,4.136,4.273,4.38,3.909,3.875,3.885,3.871,3.816,,3.864,3.667,3.782,3.902,3.757,3.673,3.843,3.788, -"Mar 04, 2013",4.077,4.085,4.043,4.199,3.843,4.102,3.945,4.036,3.895,4.12,4.04,4.672,4.11,4.199,4.312,3.807,3.85,3.86,3.846,3.734,,3.766,3.597,3.715,3.793,3.684,3.634,3.758,3.698, -"Mar 11, 2013",4.059,4.067,4.027,4.197,3.81,4.075,3.93,4.04,3.878,4.102,4.009,4.562,4.09,4.172,4.314,3.765,3.829,3.854,3.818,3.683,,3.71,3.579,3.666,3.763,3.665,3.61,3.679,3.69, -"Mar 18, 2013",4.029,4.037,3.98,4.143,3.759,4.038,3.862,4,3.845,4.084,4.024,4.564,4.081,4.163,4.289,3.749,3.828,3.836,3.825,3.645,,3.679,3.528,3.621,3.708,3.635,3.537,3.656,3.668, -"Oct 07, 2013",3.813,3.815,3.744,3.913,3.565,3.791,3.571,3.791,3.59,3.873,3.743,4.279,3.799,3.858,4.103,3.545,3.637,3.652,3.635,3.531,,3.577,3.452,3.542,3.564,3.586,3.451,3.543,3.527, -"Oct 14, 2013",3.842,3.845,3.767,3.952,3.569,3.807,3.593,3.84,3.582,3.908,3.677,4.278,3.799,3.88,4.121,3.623,3.643,3.652,3.642,3.539,,3.6,3.439,3.54,3.588,3.592,3.45,3.568,3.518, -"Oct 21, 2013",3.855,3.857,3.785,3.967,3.575,3.829,3.613,3.869,3.615,3.916,3.662,4.437,3.863,3.918,4.119,3.621,3.632,3.647,3.63,3.533,,3.59,3.423,3.536,3.577,3.579,3.445,3.58,3.537, -"Oct 28, 2013",3.819,3.821,3.757,3.925,3.559,3.802,3.6,3.835,3.588,3.873,3.665,4.437,3.867,3.876,4.089,3.547,3.634,3.639,3.633,3.501,,3.584,3.344,3.515,3.582,3.514,3.354,3.576,3.5, -"Nov 04, 2013",3.824,3.827,3.768,3.945,3.561,3.813,3.623,3.839,3.58,3.875,3.675,4.408,3.828,3.912,4.077,3.56,3.623,3.636,3.622,3.517,,3.622,3.356,3.532,3.572,3.491,3.331,3.616,3.549, -"Nov 11, 2013",3.815,3.817,3.766,3.943,3.559,3.813,3.619,3.835,3.575,3.859,3.668,4.402,3.825,3.887,4.05,3.563,3.633,3.612,3.635,3.489,,3.576,3.332,3.545,3.532,3.481,3.291,3.558,3.508, -"Nov 18, 2013",3.822,3.825,3.773,3.943,3.558,3.822,3.621,3.875,3.575,3.867,3.667,4.426,3.8,3.9,4.06,3.571,3.627,3.614,3.629,3.465,,3.55,3.351,3.481,3.51,3.479,3.281,3.55,3.501, -"Nov 25, 2013",3.888,3.891,3.84,4.038,3.584,3.896,3.671,3.925,3.682,3.933,3.728,4.461,3.853,3.966,4.113,3.661,3.641,3.616,3.644,3.522,,3.574,3.496,3.482,3.62,3.55,3.358,3.568,3.588, -"Dec 02, 2013",3.917,3.92,3.865,4.064,3.626,3.897,3.718,3.949,3.71,3.965,3.774,4.58,3.885,4.026,4.141,3.683,3.677,3.637,3.682,3.533,,3.581,3.48,3.522,3.611,3.578,3.373,3.588,3.581, -"Dec 09, 2013",3.956,3.96,3.918,4.119,3.658,3.963,3.787,4,3.734,3.996,3.786,4.581,3.926,4.06,4.171,3.712,3.683,3.637,3.689,3.501,,3.532,3.431,3.487,3.596,3.566,3.383,3.544,3.535, -"Dec 16, 2013",3.953,3.957,3.921,4.104,3.688,3.971,3.793,3.992,3.716,3.989,3.802,4.573,3.942,4.064,4.165,3.692,3.663,3.636,3.666,3.452,,3.472,3.384,3.458,3.508,3.544,3.377,3.5,3.451, -"Dec 23, 2013",3.982,3.986,3.962,4.134,3.741,4.001,3.841,4.031,3.811,4.009,3.847,4.592,3.943,4.089,4.181,3.72,3.667,3.636,3.671,3.481,,3.506,3.447,3.476,3.498,3.554,3.384,3.575,3.514, -"Dec 30, 2013",4.037,4.041,4.02,4.216,3.78,4.061,3.891,4.081,3.848,4.063,3.919,4.681,3.992,4.141,4.228,3.785,3.674,3.649,3.677,3.508,,3.541,3.478,3.492,3.524,3.583,3.406,3.593,3.555, -"Jan 06, 2014",4.02,4.024,4.014,4.183,3.835,4.046,3.896,4.077,3.788,4.037,3.909,4.681,4.02,4.134,4.197,3.747,3.677,3.648,3.68,3.494,,3.535,3.421,3.479,3.503,3.583,3.416,3.619,3.511, -"Jan 13, 2014",4.011,4.015,4.008,4.175,3.841,4.043,3.894,4.062,3.758,4.026,3.898,4.653,3.99,4.118,4.192,3.731,3.678,3.655,3.681,3.483,,3.533,3.389,3.468,3.512,3.566,3.409,3.602,3.479, -"Jan 20, 2014",4.055,4.06,4.033,4.218,3.829,4.077,3.906,4.103,3.771,4.085,3.975,4.653,4,4.138,4.27,3.792,3.677,3.646,3.681,3.499,,3.531,3.429,3.503,3.546,3.545,3.411,3.675,3.456, -"Jan 27, 2014",4.176,4.18,4.131,4.317,3.892,4.202,3.986,4.197,3.894,4.225,4.113,4.695,4.074,4.278,4.438,3.902,3.705,3.696,3.706,3.565,,3.642,3.425,3.535,3.654,3.535,3.431,3.852,3.536, -"Feb 03, 2014",4.241,4.246,4.172,4.352,3.934,4.219,4.044,4.268,3.971,4.31,4.193,4.72,4.126,4.365,4.482,4.055,3.741,3.728,3.743,3.646,,3.761,3.396,3.65,3.807,3.517,3.428,4.045,3.572, -"Feb 10, 2014",4.245,4.249,4.159,4.344,3.918,4.21,4.027,4.242,3.95,4.325,4.192,4.721,4.154,4.334,4.525,4.051,3.76,3.768,3.759,3.701,,3.811,3.467,3.747,3.889,3.531,3.416,4.103,3.607, -"Feb 17, 2014",4.226,4.229,4.151,4.349,3.906,4.204,4.013,4.226,3.917,4.296,4.167,4.721,4.188,4.351,4.46,4.04,3.792,3.784,3.793,3.744,,3.882,3.495,3.786,3.916,3.557,3.447,4.122,3.652, -"Feb 24, 2014",4.242,4.245,4.157,4.337,3.909,4.225,4.029,4.236,3.929,4.319,4.162,4.773,4.203,4.37,4.491,4.053,3.835,3.806,3.839,3.785,,3.93,3.526,3.842,3.932,3.613,3.476,4.132,3.713, -"Mar 03, 2014",4.226,4.23,4.151,4.338,3.912,4.214,3.987,4.243,3.922,4.296,4.118,4.774,4.205,4.367,4.469,4.015,3.846,3.804,3.851,3.777,,3.928,3.527,3.844,3.868,3.625,3.49,4.086,3.706, -"Mar 10, 2014",4.195,4.199,4.137,4.347,3.897,4.179,4.017,4.178,3.923,4.251,4.06,4.763,4.195,4.332,4.417,3.971,3.853,3.8,3.859,3.742,,3.864,3.51,3.796,3.836,3.644,3.496,4.024,3.695, -"Mar 17, 2014",4.123,4.127,4.074,4.273,3.847,4.127,3.933,4.114,3.869,4.171,3.971,4.755,4.143,4.255,4.338,3.881,3.876,3.805,3.884,3.688,,3.807,3.465,3.734,3.765,3.618,3.473,3.911,3.644, -"Oct 13, 2014",3.522,3.523,3.482,3.692,3.279,3.537,3.346,3.461,3.297,3.559,3.482,4.149,3.686,3.639,3.736,3.245,3.493,3.496,3.492,3.288,,3.27,3.098,3.311,3.293,3.275,3.145,3.279,3.304, -"Oct 20, 2014",3.482,3.483,3.437,3.608,3.274,3.483,3.307,3.424,3.31,3.522,3.457,4.148,3.614,3.607,3.714,3.19,3.454,3.465,3.452,3.303,,3.294,3.147,3.301,3.27,3.263,3.165,3.326,3.368, -"Oct 27, 2014",3.453,3.454,3.407,3.595,3.212,3.457,3.29,3.419,3.219,3.495,3.451,3.964,3.56,3.561,3.701,3.156,3.418,3.395,3.422,3.302,,3.324,3.233,3.264,3.265,3.386,3.266,3.315,3.331, -"Nov 03, 2014",3.436,3.436,3.381,3.562,3.182,3.426,3.248,3.431,3.222,3.483,3.455,3.963,3.531,3.566,3.69,3.138,3.393,3.42,3.388,3.461,,3.487,3.21,3.408,3.656,3.402,3.211,3.528,3.493, -"Nov 10, 2014",3.416,3.415,3.362,3.542,3.152,3.396,3.224,3.445,3.239,3.461,3.449,3.928,3.498,3.549,3.674,3.107,3.384,3.396,3.382,3.54,,3.583,3.553,3.448,3.787,3.646,3.461,3.497,3.644, -"Nov 17, 2014",3.383,3.383,3.327,3.496,3.128,3.383,3.183,3.383,3.187,3.43,3.466,3.95,3.487,3.531,3.647,3.058,3.38,3.377,3.381,3.496,,3.525,3.234,3.457,3.669,3.546,3.387,3.448,3.522, -"Nov 24, 2014",3.364,3.363,3.314,3.489,3.1,3.362,3.194,3.371,3.178,3.406,3.428,3.899,3.46,3.513,3.62,3.035,3.358,3.345,3.36,3.445,,3.454,3.211,3.427,3.552,3.476,3.313,3.407,3.493, -"Dec 01, 2014",3.325,3.325,3.277,3.427,3.074,3.337,3.177,3.328,3.121,3.366,3.41,3.892,3.446,3.475,3.573,2.999,3.33,3.34,3.328,3.374,,3.393,3.065,3.356,3.505,3.381,3.164,3.32,3.391, -"Dec 08, 2014",3.22,3.22,3.187,3.346,3.006,3.224,3.124,3.187,3.05,3.248,3.316,3.726,3.377,3.368,3.453,2.868,3.273,3.274,3.273,3.17,,3.15,2.725,3.242,3.27,3.158,2.98,3.091,3.068, -"Dec 15, 2014",3.142,3.142,3.114,3.245,2.918,3.177,3.065,3.104,3.006,3.166,3.266,3.601,3.327,3.298,3.373,2.772,3.224,3.224,3.224,2.924,,2.888,2.626,2.999,2.942,2.937,2.725,2.849,2.877, -"Dec 22, 2014",3.079,3.08,3.046,3.186,2.843,3.11,2.982,3.061,2.912,3.109,3.227,3.549,3.242,3.233,3.323,2.711,3.135,3.183,3.126,2.771,,2.745,2.396,2.835,2.697,2.69,2.513,2.795,2.697, -"Dec 29, 2014",3.043,3.044,3.01,3.17,2.809,3.075,2.926,2.996,2.863,3.074,3.17,3.455,3.15,3.2,3.298,2.673,3.059,3.122,3.047,2.663,,2.651,2.32,2.705,2.563,2.626,2.426,2.661,2.629, -"Jan 05, 2015",2.97,2.972,2.946,3.105,2.775,2.973,2.934,2.886,2.832,2.993,3.132,3.455,3.123,3.135,3.203,2.594,2.977,2.986,2.975,2.533,,2.553,2.216,2.556,2.41,2.479,2.318,2.512,2.455, -"Jan 12, 2015",2.91,2.912,2.878,3.003,2.692,2.923,2.916,2.819,2.76,2.94,3.086,3.444,3.04,3.063,3.134,2.577,2.946,2.927,2.949,2.426,,2.416,2.129,2.493,2.275,2.326,2.248,2.383,2.352, -"Jan 19, 2015",2.835,2.837,2.803,2.93,2.64,2.84,2.809,2.729,2.74,2.865,3.018,3.32,2.99,2.991,3.054,2.504,2.872,2.853,2.876,2.359,,2.327,2.029,2.433,2.219,2.254,2.101,2.412,2.276, -"Jan 26, 2015",2.817,2.819,2.788,2.919,2.608,2.83,2.816,2.726,2.671,2.844,3.002,3.304,2.935,2.967,3.036,2.487,2.858,2.778,2.873,2.337,,2.303,2.052,2.38,2.282,2.232,2.087,2.451,2.306, -"Feb 02, 2015",2.8,2.802,2.776,2.912,2.593,2.823,2.737,2.796,2.612,2.824,2.932,3.304,2.905,2.97,3.014,2.461,2.85,2.743,2.87,2.361,,2.341,2.094,2.388,2.362,2.241,2.098,2.464,2.325, -"Feb 09, 2015",2.911,2.913,2.87,3.017,2.607,2.952,2.793,2.984,2.67,2.949,2.986,3.488,2.97,3.041,3.123,2.65,2.861,2.778,2.876,2.442,,2.433,2.233,2.454,2.426,2.313,2.264,2.535,2.423, -"Feb 16, 2015",3.038,3.04,2.994,3.176,2.716,3.121,2.771,3.111,2.771,3.081,3.054,3.595,3.021,3.159,3.296,2.748,2.885,2.829,2.895,2.558,,2.545,2.327,2.595,2.553,2.371,2.294,2.615,2.517, -"Feb 23, 2015",3.186,3.188,3.154,3.33,2.827,3.299,2.903,3.338,2.962,3.222,3.2,3.727,3.1,3.321,3.423,2.909,2.889,2.845,2.897,2.58,,2.548,2.335,2.623,2.612,2.434,2.317,2.649,2.566, -"Mar 02, 2015",3.288,3.291,3.257,3.483,2.92,3.397,3.012,3.368,3.028,3.324,3.298,3.758,3.192,3.396,3.507,3.054,2.888,2.879,2.89,2.619,,2.582,2.386,2.677,2.651,2.462,2.408,2.672,2.584, -"Mar 09, 2015",3.207,3.21,3.176,3.388,2.88,3.298,2.986,3.223,2.966,3.242,3.243,3.755,3.217,3.38,3.43,2.913,2.885,2.888,2.885,2.598,,2.56,2.299,2.666,2.598,2.471,2.384,2.632,2.546, -"Mar 16, 2015",3.033,3.035,3,3.18,2.776,3.078,2.937,2.929,2.857,3.066,3.122,3.424,3.13,3.18,3.273,2.702,2.876,2.851,2.881,2.54,,2.483,2.203,2.625,2.56,2.38,2.267,2.586,2.503, -"Mar 23, 2015",2.928,2.93,2.897,3.079,2.669,2.965,2.839,2.84,2.757,2.959,3.064,3.33,3.028,3.09,3.152,2.604,2.847,2.826,2.851,2.488,,2.432,2.175,2.575,2.492,2.321,2.247,2.542,2.435, -"Mar 30, 2015",2.887,2.889,2.843,3,2.629,2.903,2.814,2.802,2.713,2.929,3.003,3.326,2.954,3.028,3.131,2.583,2.834,2.793,2.842,2.419,,2.402,2.153,2.443,2.428,2.296,2.223,2.481,2.416, -"Oct 05, 2015",2.422,2.423,2.359,2.534,2.062,2.416,2.278,2.518,2.221,2.486,2.533,3.203,2.564,2.506,2.707,2.146,2.389,2.379,2.389,2.347,,2.352,2.053,2.214,2.452,2.096,2.085,2.365,2.31, -"Oct 12, 2015",2.44,2.441,2.374,2.547,2.091,2.433,2.268,2.537,2.245,2.506,2.537,3.138,2.537,2.523,2.718,2.193,2.393,2.36,2.394,2.422,,2.544,2.096,2.334,2.584,2.169,2.126,2.385,2.49, -"Oct 19, 2015",2.429,2.43,2.368,2.536,2.089,2.426,2.291,2.51,2.226,2.491,2.541,3.127,2.527,2.519,2.704,2.169,2.378,2.35,2.379,2.37,,2.478,2.027,2.268,2.537,2.222,2.114,2.34,2.428, -"Oct 26, 2015",2.422,2.424,2.367,2.531,2.115,2.425,2.275,2.508,2.188,2.482,2.522,3.143,2.527,2.483,2.713,2.145,2.363,2.363,2.363,2.273,,2.365,1.992,2.16,2.523,2.187,2.074,2.249,2.292, -"Nov 02, 2015",2.425,2.427,2.368,2.534,2.091,2.439,2.275,2.512,2.189,2.489,2.532,3.234,2.549,2.479,2.709,2.167,2.356,2.358,2.356,2.284,,2.334,1.994,2.174,2.63,2.164,2.04,2.276,2.334, -"Nov 09, 2015",2.429,2.432,2.374,2.557,2.103,2.435,2.279,2.507,2.172,2.493,2.523,3.242,2.547,2.492,2.718,2.164,2.35,2.344,2.35,2.246,,2.318,2.004,2.165,2.545,2.172,2.045,2.225,2.288, -"Nov 16, 2015",2.398,2.402,2.347,2.511,2.097,2.411,2.245,2.458,2.2,2.458,2.518,3.145,2.497,2.5,2.668,2.134,2.337,2.338,2.337,2.155,,2.213,2.025,2.04,2.2,2.151,2.06,2.142,2.24, -"Nov 23, 2015",2.375,2.381,2.316,2.473,2.073,2.369,2.245,2.428,2.158,2.447,2.499,3.154,2.515,2.517,2.663,2.096,2.309,2.325,2.309,2.045,,2.104,1.937,1.998,2.109,2.111,2.064,2.023,2.159, -"Nov 30, 2015",2.361,2.366,2.314,2.475,2.051,2.38,2.24,2.419,2.151,2.422,2.475,3.071,2.522,2.507,2.625,2.077,2.289,2.319,2.288,2.02,,2.076,1.853,1.983,1.933,2.068,1.978,2,2.107, -"Dec 07, 2015",2.332,2.338,2.279,2.425,2.032,2.345,2.201,2.386,2.136,2.398,2.456,3.045,2.508,2.49,2.6,2.05,2.273,2.289,2.273,1.962,,2.007,1.781,1.884,1.857,2.022,1.978,1.952,2.012, -"Dec 14, 2015",2.255,2.262,2.19,2.3,1.975,2.248,2.162,2.311,2.003,2.329,2.401,3.022,2.469,2.401,2.543,1.965,2.253,2.274,2.252,1.889,,1.936,1.702,1.806,1.819,1.912,1.956,1.879,1.948, -"Dec 21, 2015",2.21,2.216,2.154,2.28,1.922,2.205,2.146,2.246,1.996,2.274,2.392,2.961,2.443,2.346,2.492,1.895,2.222,2.242,2.221,1.834,,1.857,1.652,1.781,1.798,1.845,1.86,1.834,1.79, -"Dec 28, 2015",2.175,2.182,2.132,2.279,1.902,2.184,2.123,2.163,1.977,2.225,2.361,2.943,2.394,2.338,2.405,1.88,2.215,2.264,2.214,1.804,,1.844,1.559,1.787,1.786,1.776,1.748,1.794,1.756, -"Jan 04, 2016",2.182,2.188,2.133,2.282,1.898,2.184,2.112,2.202,1.96,2.242,2.361,2.893,2.37,2.303,2.454,1.884,2.156,2.191,2.155,1.816,,1.851,1.554,1.773,1.768,1.738,1.667,1.81,1.798, -"Jan 11, 2016",2.164,2.17,2.103,2.249,1.883,2.16,2.069,2.176,1.887,2.236,2.343,2.894,2.349,2.311,2.455,1.867,2.133,2.154,2.132,1.777,,1.797,1.525,1.757,1.757,1.698,1.602,1.775,1.74, -"Jan 18, 2016",2.114,2.121,2.052,2.185,1.848,2.099,2.047,2.114,1.844,2.185,2.3,2.893,2.323,2.247,2.424,1.789,2.119,2.085,2.12,1.685,,1.724,1.414,1.72,1.678,1.659,1.546,1.669,1.671, -"Jan 25, 2016",2.066,2.072,2.012,2.132,1.795,2.079,2.011,2.065,1.804,2.126,2.252,2.713,2.225,2.176,2.352,1.76,2.1,2.055,2.101,1.68,,1.705,1.433,1.713,1.632,1.626,1.492,1.67,1.664, -"Feb 01, 2016",2.082,2.088,2.014,2.134,1.79,2.083,2.011,2.071,1.82,2.158,2.288,2.726,2.259,2.153,2.394,1.8,2.076,2.075,2.076,1.723,,1.754,1.471,1.633,1.704,1.62,1.513,1.725,1.706, -"Feb 08, 2016",2.092,2.099,2.021,2.168,1.784,2.081,2.01,2.079,1.811,2.173,2.253,2.723,2.255,2.169,2.416,1.811,2.073,2.085,2.073,1.716,,1.755,1.458,1.637,1.716,1.591,1.514,1.712,1.711, -"Feb 15, 2016",2.103,2.109,2.044,2.19,1.783,2.116,2.032,2.137,1.799,2.176,2.291,2.733,2.239,2.211,2.399,1.827,2.047,2.051,2.047,1.708,,1.754,1.482,1.642,1.69,1.591,1.499,1.7,1.699, -"Feb 22, 2016",2.094,2.1,2.043,2.192,1.779,2.133,2.013,2.111,1.795,2.158,2.281,2.74,2.235,2.216,2.378,1.803,2.035,2.044,2.035,1.723,,1.759,1.48,1.641,1.687,1.623,1.495,1.722,1.709, -"Feb 29, 2016",2.089,2.095,2.034,2.209,1.75,2.115,2.01,2.093,1.789,2.157,2.282,2.734,2.248,2.218,2.365,1.813,2.036,2.023,2.036,1.74,,1.777,1.508,1.65,1.732,1.64,1.528,1.738,1.728, -"Mar 07, 2016",2.096,2.101,2.039,2.199,1.747,2.126,1.993,2.123,1.851,2.163,2.288,2.735,2.227,2.226,2.369,1.826,2.061,2.036,2.062,1.772,,1.797,1.61,1.768,1.823,1.647,1.607,1.765,1.778, -"Mar 14, 2016",2.122,2.127,2.061,2.237,1.774,2.14,1.995,2.157,1.851,2.195,2.314,2.752,2.216,2.261,2.405,1.861,2.048,2.044,2.048,1.821,,1.862,1.66,1.833,1.891,1.743,1.674,1.805,1.84, -"Mar 21, 2016",2.132,2.137,2.07,2.238,1.788,2.157,1.995,2.178,1.85,2.206,2.322,2.724,2.256,2.273,2.411,1.873,2.053,2.047,2.053,1.845,,1.881,1.677,1.87,1.896,1.752,1.675,1.828,1.876, -"Mar 28, 2016",2.131,2.136,2.068,2.233,1.792,2.155,1.993,2.169,1.849,2.206,2.305,2.834,2.249,2.294,2.407,1.873,2.046,2.039,2.046,1.849,,1.881,1.655,1.868,1.876,1.749,1.669,1.836,1.863, -"Oct 03, 2016",2.301,2.306,2.236,2.39,1.967,2.337,2.079,2.392,2.077,2.373,2.331,3.021,2.333,2.358,2.604,2.071,2.201,2.225,2.196,2.069,,2.165,1.99,2.078,2.167,2.06,1.944,2.025,2.154, -"Oct 10, 2016",2.366,2.37,2.286,2.449,2.01,2.394,2.103,2.462,2.104,2.453,2.377,3.133,2.402,2.421,2.688,2.156,2.245,2.254,2.243,2.155,,2.276,2.055,2.127,2.214,2.128,1.995,2.106,2.21, -"Oct 17, 2016",2.38,2.385,2.317,2.503,2.04,2.407,2.156,2.457,2.151,2.451,2.382,3.117,2.37,2.452,2.684,2.147,2.256,2.254,2.256,2.137,,2.251,2.043,2.087,2.174,2.14,1.998,2.094,2.193, -"Oct 24, 2016",2.394,2.399,2.328,2.511,2.061,2.423,2.175,2.435,2.153,2.468,2.384,3.182,2.439,2.457,2.707,2.15,2.267,2.249,2.271,2.114,,2.208,2.01,2.083,2.107,2.127,1.988,2.079,2.16, -"Oct 31, 2016",2.399,2.404,2.334,2.514,2.086,2.413,2.188,2.451,2.15,2.473,2.369,3.228,2.458,2.473,2.706,2.157,2.249,2.262,2.247,2.107,,2.2,1.964,2.073,2.134,2.114,1.986,2.074,2.121, -"Nov 07, 2016",2.386,2.393,2.336,2.53,2.071,2.421,2.2,2.431,2.127,2.449,2.366,3.266,2.472,2.452,2.678,2.125,2.267,2.259,2.268,2.05,,2.126,1.859,2.055,2.075,2.032,1.911,2.024,2.062, -"Nov 14, 2016",2.378,2.384,2.334,2.526,2.06,2.426,2.201,2.443,2.113,2.434,2.35,3.267,2.469,2.435,2.667,2.103,2.26,2.246,2.263,2.017,,2.061,1.804,1.976,2.056,1.95,1.863,2.014,1.991, -"Nov 21, 2016",2.384,2.39,2.336,2.517,2.064,2.418,2.225,2.454,2.137,2.444,2.365,3.261,2.486,2.437,2.678,2.114,2.263,2.247,2.266,2.014,,2.042,1.823,1.98,2.008,1.93,1.846,2.016,2.002, -"Nov 28, 2016",2.401,2.407,2.355,2.512,2.084,2.448,2.242,2.515,2.144,2.457,2.386,3.018,2.451,2.482,2.689,2.126,2.261,2.227,2.268,2.073,,2.09,1.837,1.99,2.097,1.943,1.974,2.089,2.025, -"Dec 05, 2016",2.491,2.497,2.443,2.608,2.142,2.533,2.356,2.614,2.236,2.551,2.457,3.111,2.523,2.526,2.792,2.24,2.291,2.263,2.296,2.147,,2.159,1.95,2.027,2.17,1.986,2.003,2.169,2.081, -"Dec 12, 2016",2.531,2.537,2.471,2.634,2.177,2.571,2.359,2.639,2.262,2.603,2.501,3.281,2.578,2.674,2.82,2.271,2.339,2.286,2.349,2.19,,2.222,1.948,2.105,2.199,2.006,2.034,2.2,2.145, -"Dec 19, 2016",2.57,2.576,2.518,2.713,2.219,2.608,2.384,2.668,2.302,2.635,2.509,3.324,2.617,2.707,2.842,2.318,2.356,2.302,2.367,2.256,,2.28,1.989,2.175,2.235,2.049,2.048,2.271,2.201, -"Dec 26, 2016",2.587,2.593,2.543,2.746,2.238,2.646,2.378,2.678,2.339,2.644,2.55,3.34,2.64,2.708,2.835,2.349,2.382,2.314,2.395,2.279,,2.292,2.03,2.196,2.257,2.076,2.002,2.3,2.205, -"Jan 02, 2017",2.632,2.638,2.584,2.804,2.278,2.673,2.403,2.735,2.405,2.693,2.584,3.35,2.663,2.758,2.896,2.387,2.402,2.354,2.411,2.289,,2.328,2.078,2.207,2.297,2.133,2.034,2.297,2.181, -"Jan 09, 2017",2.642,2.649,2.596,2.805,2.305,2.678,2.437,2.736,2.409,2.703,2.622,3.35,2.678,2.769,2.903,2.396,2.423,2.378,2.432,2.282,,2.336,2.065,2.207,2.29,2.205,2.026,2.281,2.216, -"Jan 16, 2017",2.636,2.643,2.598,2.784,2.319,2.677,2.478,2.729,2.41,2.69,2.606,3.346,2.69,2.767,2.887,2.377,2.432,2.386,2.441,2.251,,2.32,2.064,2.188,2.268,2.197,2.022,2.238,2.212, -"Jan 23, 2017",2.631,2.639,2.594,2.772,2.324,2.672,2.489,2.716,2.4,2.684,2.595,3.346,2.695,2.767,2.88,2.367,2.431,2.385,2.44,2.222,,2.28,2.055,2.172,2.237,2.183,2.039,2.211,2.211, -"Jan 30, 2017",2.631,2.639,2.592,2.768,2.329,2.678,2.484,2.696,2.38,2.687,2.586,3.351,2.702,2.754,2.892,2.366,2.429,2.381,2.438,2.173,,2.257,2.03,2.163,2.198,2.18,2.016,2.143,2.172, -"Feb 06, 2017",2.642,2.651,2.594,2.774,2.337,2.675,2.476,2.717,2.362,2.709,2.607,3.356,2.701,2.769,2.929,2.376,2.428,2.391,2.435,2.173,,2.244,2.027,2.051,2.171,2.166,1.994,2.163,2.167, -"Feb 13, 2017",2.642,2.651,2.593,2.775,2.354,2.663,2.475,2.698,2.375,2.709,2.63,3.354,2.708,2.765,2.924,2.383,2.424,2.386,2.432,2.191,,2.252,2.037,2.114,2.188,2.145,1.999,2.182,2.18, -"Feb 20, 2017",2.645,2.653,2.602,2.786,2.356,2.676,2.496,2.698,2.374,2.706,2.629,3.352,2.708,2.76,2.924,2.374,2.426,2.389,2.433,2.214,,2.268,2.003,2.115,2.2,2.138,2.009,2.213,2.182, -"Feb 27, 2017",2.648,2.656,2.606,2.786,2.36,2.681,2.486,2.723,2.375,2.707,2.621,3.35,2.705,2.759,2.922,2.383,2.431,2.388,2.439,2.226,,2.284,2.013,2.128,2.242,2.143,2.004,2.225,2.187, -"Mar 06, 2017",2.629,2.637,2.595,2.785,2.339,2.669,2.476,2.711,2.369,2.679,2.61,3.348,2.666,2.754,2.891,2.349,2.429,2.386,2.438,2.238,,2.303,2.01,2.129,2.274,2.136,2.012,2.235,2.196, -"Mar 13, 2017",2.615,2.623,2.584,2.769,2.315,2.676,2.454,2.699,2.362,2.662,2.606,3.241,2.668,2.736,2.883,2.314,2.425,2.361,2.438,2.22,,2.294,1.979,2.118,2.22,2.132,1.988,2.212,2.176, -"Mar 20, 2017",2.6,2.608,2.57,2.76,2.307,2.653,2.455,2.681,2.328,2.646,2.624,3.251,2.651,2.712,2.863,2.307,2.417,2.368,2.427,2.19,,2.266,1.958,2.097,2.194,2.117,1.97,2.179,2.158, -"Mar 27, 2017",2.586,2.594,2.556,2.724,2.284,2.659,2.451,2.679,2.291,2.633,2.601,3.128,2.643,2.661,2.863,2.296,2.416,2.368,2.426,2.176,,2.238,1.931,2.099,2.192,2.098,1.935,2.172,2.134, -"Oct 02, 2017",2.67,2.674,2.577,2.752,2.301,2.663,2.443,2.761,2.355,2.768,2.631,3.296,2.698,2.825,2.976,2.427,2.543,2.505,2.554,2.431,,2.486,2.26,2.344,2.437,2.339,2.273,2.425,2.433, -"Oct 09, 2017",2.65,2.654,2.568,2.743,2.284,2.669,2.445,2.726,2.317,2.738,2.576,3.278,2.647,2.779,2.951,2.407,2.528,2.484,2.541,2.436,,2.535,2.253,2.329,2.45,2.345,2.268,2.41,2.426, -"Oct 16, 2017",2.658,2.662,2.57,2.753,2.281,2.665,2.451,2.726,2.33,2.751,2.592,3.293,2.708,2.773,2.973,2.409,2.52,2.496,2.527,2.46,,2.556,2.258,2.342,2.5,2.355,2.268,2.438,2.43, -"Oct 23, 2017",2.669,2.672,2.581,2.774,2.294,2.673,2.45,2.727,2.34,2.76,2.604,3.291,2.712,2.773,2.982,2.428,2.522,2.497,2.529,2.516,,2.623,2.272,2.398,2.509,2.38,2.287,2.492,2.449, -"Oct 30, 2017",2.696,2.699,2.605,2.801,2.323,2.684,2.463,2.789,2.371,2.79,2.645,3.337,2.724,2.8,3.013,2.461,2.535,2.516,2.541,2.532,,2.63,2.305,2.415,2.542,2.405,2.386,2.511,2.471, -"Nov 06, 2017",2.739,2.742,2.66,2.853,2.377,2.746,2.514,2.843,2.419,2.822,2.68,3.42,2.795,2.858,3.022,2.5,2.555,2.547,2.557,2.586,,2.67,2.385,2.433,2.657,2.441,2.38,2.577,2.523, -"Nov 13, 2017",2.803,2.806,2.728,2.936,2.435,2.814,2.566,2.908,2.496,2.884,2.716,3.569,2.865,2.945,3.076,2.551,2.594,2.58,2.598,2.607,,2.673,2.411,2.493,2.637,2.486,2.403,2.603,2.533, -"Nov 20, 2017",2.823,2.828,2.757,2.952,2.481,2.852,2.575,2.936,2.519,2.898,2.725,3.581,2.89,2.96,3.083,2.574,2.606,2.588,2.611,2.603,,2.653,2.378,2.488,2.594,2.478,2.382,2.61,2.537, -"Nov 27, 2017",2.846,2.85,2.779,2.98,2.493,2.877,2.616,2.945,2.514,2.921,2.729,3.624,2.904,2.974,3.105,2.61,2.617,2.609,2.62,2.623,,2.676,2.348,2.497,2.627,2.47,2.41,2.632,2.54, -"Dec 04, 2017",2.869,2.875,2.811,3.013,2.538,2.889,2.659,2.979,2.568,2.938,2.749,3.626,2.925,3.022,3.113,2.616,2.636,2.627,2.639,2.582,,2.654,2.32,2.494,2.587,2.461,2.402,2.573,2.532, -"Dec 11, 2017",2.88,2.886,2.817,3.029,2.536,2.905,2.649,2.979,2.563,2.955,2.763,3.624,2.916,3.042,3.142,2.617,2.643,2.632,2.647,2.573,,2.628,2.323,2.47,2.584,2.47,2.385,2.575,2.505, -"Dec 18, 2017",2.887,2.893,2.825,2.991,2.592,2.885,2.71,3.019,2.562,2.961,2.765,3.633,2.933,3.019,3.163,2.619,2.656,2.638,2.662,2.572,,2.621,2.316,2.452,2.574,2.462,2.327,2.581,2.514, -"Dec 25, 2017",2.92,2.926,2.869,3.038,2.643,2.928,2.749,3.053,2.599,2.984,2.785,3.725,2.879,3.026,3.21,2.636,2.653,2.638,2.657,2.616,,2.659,2.382,2.484,2.64,2.466,2.344,2.629,2.555, -"Jan 01, 2018",3.083,3.09,3.037,3.272,2.754,3.089,2.913,3.212,2.744,3.147,2.946,3.696,3.059,3.183,3.39,2.774,2.715,2.68,2.726,2.684,,2.734,2.405,2.512,2.712,2.503,2.386,2.703,2.602, -"Jan 08, 2018",3.174,3.183,3.159,3.32,2.889,3.25,3.05,3.374,2.843,3.212,3.027,3.835,3.08,3.291,3.432,2.852,2.757,2.708,2.772,2.724,,2.776,2.419,2.517,2.715,2.527,2.404,2.749,2.618, -"Jan 15, 2018",3.214,3.223,3.195,3.363,2.963,3.275,3.051,3.385,2.9,3.256,3.092,3.843,3.183,3.298,3.477,2.909,2.791,2.727,2.81,2.744,,2.785,2.476,2.575,2.727,2.547,2.443,2.767,2.652, -"Jan 22, 2018",3.212,3.221,3.201,3.371,2.987,3.272,3.068,3.367,2.901,3.245,3.076,3.844,3.177,3.298,3.464,2.892,2.815,2.745,2.836,2.74,,2.78,2.481,2.577,2.74,2.558,2.447,2.763,2.655, -"Jan 29, 2018",3.221,3.23,3.2,3.356,2.998,3.279,3.058,3.368,2.883,3.265,3.073,3.845,3.202,3.317,3.492,2.898,2.844,2.804,2.856,2.772,,2.81,2.529,2.648,2.761,2.58,2.475,2.789,2.693, -"Feb 05, 2018",3.201,3.209,3.172,3.348,2.958,3.25,3.033,3.31,2.873,3.25,3.064,3.836,3.191,3.304,3.48,2.877,2.845,2.803,2.858,2.764,,2.807,2.504,2.604,2.744,2.629,2.468,2.783,2.675, -"Feb 12, 2018",3.133,3.141,3.104,3.241,2.905,3.186,3.02,3.221,2.807,3.181,3.022,3.836,3.159,3.262,3.405,2.786,2.836,2.811,2.844,2.7,,2.728,2.467,2.565,2.674,2.567,2.443,2.723,2.632, -"Feb 19, 2018",3.102,3.111,3.071,3.238,2.854,3.141,2.999,3.17,2.771,3.153,3.007,3.659,3.125,3.242,3.384,2.741,2.831,2.8,2.841,2.644,,2.671,2.451,2.506,2.619,2.533,2.427,2.663,2.597, -"Feb 26, 2018",3.095,3.104,3.066,3.244,2.82,3.134,2.999,3.176,2.789,3.144,3.018,3.667,3.111,3.195,3.385,2.748,2.807,2.779,2.816,2.632,,2.675,2.446,2.52,2.627,2.536,2.409,2.638,2.589, -"Mar 05, 2018",3.078,3.088,3.046,3.23,2.775,3.117,2.988,3.166,2.784,3.131,2.995,3.666,3.107,3.189,3.379,2.717,2.788,2.772,2.793,2.605,,2.645,2.402,2.508,2.586,2.532,2.409,2.611,2.577, -"Mar 12, 2018",3.064,3.074,3.026,3.206,2.755,3.116,2.924,3.166,2.743,3.125,3.016,3.666,3.083,3.191,3.378,2.699,2.762,2.751,2.765,2.555,,2.607,2.372,2.484,2.522,2.509,2.397,2.548,2.549, -"Mar 19, 2018",3.059,3.069,3.027,3.212,2.744,3.114,2.947,3.17,2.73,3.114,3.022,3.654,3.064,3.176,3.37,2.688,2.754,2.754,2.754,2.531,,2.602,2.367,2.428,2.525,2.507,2.404,2.516,2.537, -"Mar 26, 2018",3.095,3.105,3.065,3.263,2.759,3.158,2.967,3.224,2.782,3.147,3.011,3.754,3.085,3.192,3.409,2.729,2.763,2.76,2.764,2.581,,2.603,2.472,2.46,2.603,2.539,2.424,2.594,2.585, -"Oct 01, 2018",3.288,3.29,3.207,3.42,2.939,3.27,3.04,3.42,2.926,3.371,3.08,3.918,3.291,3.315,3.67,2.968,2.929,2.935,2.926,2.896,,3.031,2.756,2.798,3.009,2.944,2.771,2.874,2.956, -"Oct 08, 2018",3.352,3.355,3.276,3.476,3.027,3.336,3.105,3.496,2.986,3.432,3.206,4.14,3.317,3.394,3.715,3.042,2.984,2.985,2.983,2.97,,3.11,2.82,2.879,3.061,3.035,2.812,2.942,3.029, -"Oct 15, 2018",3.364,3.366,3.289,3.484,3.065,3.356,3.089,3.493,2.993,3.442,3.196,4.247,3.369,3.406,3.725,3.039,3.014,3.03,3.006,2.969,,3.091,2.846,2.874,3.059,3.047,2.862,2.95,3.011, -"Oct 22, 2018",3.372,3.374,3.311,3.493,3.088,3.38,3.151,3.502,2.993,3.438,3.211,4.22,3.347,3.408,3.715,3.042,3.025,3.055,3.01,2.948,,3.076,2.812,2.853,3.031,3.027,2.833,2.946,2.98, -"Oct 29, 2018",3.372,3.374,3.309,3.48,3.102,3.378,3.135,3.507,2.997,3.439,3.221,4.227,3.341,3.411,3.72,3.037,3.015,3.053,2.995,2.934,,3.048,2.77,2.868,3.018,2.99,2.853,2.925,2.962, -"Nov 05, 2018",3.356,3.358,3.291,3.455,3.095,3.342,3.155,3.484,2.991,3.425,3.206,4.332,3.384,3.404,3.695,3.019,3.01,3.048,2.99,2.902,,3.009,2.716,2.847,2.995,2.915,2.826,2.933,2.945, -"Nov 12, 2018",3.35,3.353,3.291,3.447,3.101,3.356,3.149,3.472,2.973,3.414,3.205,4.341,3.367,3.404,3.676,3.012,2.995,3.029,2.977,2.87,,2.974,2.675,2.827,2.957,2.897,2.757,2.89,2.901, -"Nov 19, 2018",3.316,3.319,3.263,3.386,3.089,3.332,3.125,3.462,2.95,3.376,3.19,4.207,3.346,3.372,3.637,2.965,2.965,2.979,2.957,2.816,,2.932,2.632,2.777,2.892,2.804,2.685,2.848,2.831, -"Nov 26, 2018",3.274,3.277,3.225,3.315,3.076,3.292,3.133,3.407,2.903,3.33,3.167,4.127,3.3,3.342,3.564,2.945,2.93,2.94,2.925,2.754,,2.86,2.544,2.74,2.771,2.775,2.658,2.806,2.765, -"Dec 03, 2018",3.203,3.206,3.187,3.257,3.041,3.238,3.138,3.399,2.879,3.228,3.119,4.032,3.262,3.26,3.444,2.835,2.915,2.922,2.912,2.644,,2.701,2.432,2.688,2.607,2.682,2.557,2.691,2.648, -"Dec 10, 2018",3.199,3.203,3.174,3.247,3.036,3.239,3.14,3.31,2.859,3.234,3.115,3.899,3.215,3.262,3.458,2.846,2.875,2.898,2.863,2.582,,2.636,2.315,2.666,2.54,2.612,2.428,2.606,2.599, -"Dec 17, 2018",3.187,3.191,3.165,3.228,3.03,3.235,3.124,3.305,2.852,3.22,3.102,3.814,3.217,3.248,3.444,2.828,2.863,2.887,2.85,2.54,,2.589,2.268,2.654,2.477,2.545,2.392,2.535,2.554, -"Dec 24, 2018",3.13,3.134,3.12,3.174,2.973,3.204,3.107,3.245,2.781,3.152,3.063,3.806,3.161,3.22,3.359,2.745,2.844,2.845,2.844,2.474,,2.524,2.218,2.599,2.376,2.472,2.324,2.481,2.465, -"Dec 31, 2018",3.101,3.105,3.094,3.133,2.959,3.176,3.107,3.221,2.74,3.119,3.033,3.721,3.136,3.171,3.357,2.675,2.812,2.826,2.805,2.389,,2.448,2.13,2.49,2.273,2.434,2.299,2.403,2.409, -"Jan 07, 2019",3.092,3.096,3.089,3.127,2.943,3.177,3.107,3.211,2.731,3.107,3.025,3.718,3.093,3.162,3.358,2.645,2.806,2.817,2.8,2.369,,2.423,2.152,2.482,2.236,2.384,2.287,2.352,2.383, -"Jan 14, 2019",3.139,3.143,3.12,3.205,2.967,3.188,3.108,3.24,2.767,3.17,3.077,3.888,3.116,3.216,3.43,2.712,2.801,2.808,2.797,2.378,,2.414,2.185,2.499,2.251,2.388,2.268,2.351,2.391, -"Jan 21, 2019",3.167,3.171,3.142,3.247,2.972,3.214,3.105,3.271,2.779,3.203,3.09,3.928,3.136,3.239,3.467,2.754,2.798,2.802,2.796,2.423,,2.476,2.211,2.496,2.39,2.424,2.279,2.416,2.45, -"Jan 28, 2019",3.171,3.175,3.148,3.248,2.978,3.229,3.105,3.268,2.795,3.205,3.076,3.927,3.142,3.258,3.456,2.761,2.797,2.792,2.8,2.479,,2.583,2.234,2.522,2.459,2.426,2.308,2.547,2.51, -"Feb 04, 2019",3.182,3.186,3.153,3.256,2.987,3.225,3.108,3.29,2.796,3.222,3.094,4.01,3.149,3.276,3.469,2.785,2.8,2.793,2.803,2.525,,2.637,2.248,2.542,2.587,2.44,2.329,2.63,2.559, -"Feb 11, 2019",3.181,3.184,3.151,3.251,2.982,3.229,3.102,3.293,2.792,3.22,3.102,4.011,3.15,3.276,3.456,2.799,2.799,2.792,2.803,2.533,,2.652,2.259,2.546,2.59,2.443,2.339,2.641,2.567, -"Feb 18, 2019",3.225,3.229,3.176,3.298,2.978,3.264,3.113,3.318,2.804,3.283,3.117,4.1,3.201,3.321,3.535,2.857,2.806,2.791,2.814,2.598,,2.708,2.384,2.591,2.671,2.5,2.391,2.68,2.656, -"Feb 25, 2019",3.23,3.233,3.181,3.302,2.982,3.27,3.118,3.327,2.798,3.288,3.124,4.113,3.207,3.326,3.528,2.881,2.823,2.801,2.835,2.629,,2.733,2.403,2.614,2.713,2.579,2.442,2.703,2.675, -"Mar 04, 2019",3.23,3.234,3.183,3.309,2.992,3.268,3.106,3.328,2.807,3.286,3.132,4.114,3.208,3.304,3.536,2.883,2.827,2.805,2.838,2.64,,2.742,2.433,2.613,2.727,2.603,2.487,2.704,2.686, -"Mar 11, 2019",3.229,3.233,3.185,3.311,2.989,3.268,3.113,3.338,2.806,3.283,3.118,4.111,3.226,3.28,3.539,2.883,2.836,2.812,2.848,2.639,,2.745,2.416,2.613,2.718,2.613,2.506,2.703,2.691, -"Mar 18, 2019",3.219,3.223,3.179,3.31,2.979,3.263,3.105,3.33,2.802,3.268,3.122,4.114,3.197,3.275,3.521,2.867,2.835,2.809,2.848,2.638,,2.738,2.451,2.612,2.694,2.619,2.51,2.696,2.688, -"Mar 25, 2019",3.219,3.222,3.177,3.308,2.973,3.265,3.097,3.326,2.815,3.269,3.116,4.032,3.182,3.27,3.536,2.854,2.839,2.811,2.854,2.631,,2.72,2.46,2.611,2.674,2.622,2.53,2.667,2.687, -"Oct 07, 2019",2.951,2.964,2.876,2.956,2.659,2.967,2.739,3.032,2.737,3.056,3.15,4.04,3.434,3.101,3.137,2.767,2.788,2.738,2.828,2.686,,2.734,2.386,2.697,2.676,2.922,2.33,2.652,2.526, -"Oct 14, 2019",2.955,2.968,2.87,2.955,2.652,2.929,2.739,3.044,2.733,3.079,3.111,,3.413,3.127,3.148,2.816,2.768,2.709,2.815,2.662,,2.803,2.359,2.717,2.633,2.903,2.352,2.584,2.52, -"Oct 21, 2019",2.966,2.982,2.877,2.966,2.674,2.921,2.732,3.067,2.805,3.098,3.12,,3.389,3.134,3.15,2.866,2.798,2.777,2.813,2.642,,2.804,2.368,2.697,2.617,2.904,2.364,2.567,2.485, -"Oct 28, 2019",2.969,2.983,2.879,2.955,2.659,2.943,2.743,3.068,2.748,3.103,3.159,,3.441,3.138,3.141,2.886,2.786,2.772,2.798,2.663,,2.798,2.372,2.586,2.615,2.946,2.342,2.597,2.503, -"Nov 04, 2019",2.973,2.987,2.882,2.968,2.651,2.946,2.741,3.06,2.743,3.104,3.154,,3.419,3.137,3.144,2.89,2.773,2.756,2.788,2.678,,2.808,2.344,2.57,2.627,2.938,2.345,2.631,2.523, -"Nov 11, 2019",2.972,2.985,2.876,2.978,2.649,2.919,2.749,3.067,2.728,3.102,3.232,,3.444,3.198,3.156,2.86,2.782,2.771,2.791,2.696,,2.836,2.394,2.585,2.652,2.945,2.388,2.661,2.534, -"Nov 18, 2019",2.985,2.999,2.887,2.991,2.649,2.936,2.754,3.065,2.745,3.122,3.233,,3.417,3.194,3.17,2.892,2.777,2.762,2.79,2.694,,2.79,2.403,2.713,2.662,2.954,2.402,2.635,2.529, -"Nov 25, 2019",2.994,3.008,2.893,2.998,2.66,2.942,2.753,3.081,2.756,3.136,3.225,,3.523,3.209,3.172,2.906,2.779,2.748,2.805,2.71,,2.799,2.41,2.622,2.666,2.953,2.39,2.696,2.535, -"Dec 02, 2019",3.003,3.016,2.906,3.029,2.658,2.947,2.762,3.106,2.75,3.137,3.225,,3.554,3.198,3.173,2.916,2.775,2.721,2.819,2.723,,2.874,2.4,2.625,2.68,2.949,2.395,2.715,2.547, -"Dec 09, 2019",3.013,3.027,2.92,3.042,2.672,2.959,2.77,3.177,2.764,3.143,3.246,,3.565,3.203,3.194,2.903,2.8,2.771,2.827,2.711,,2.806,2.379,2.631,2.674,2.942,2.385,2.698,2.546, -"Dec 16, 2019",3.026,3.041,2.928,3.077,2.668,2.957,2.773,3.126,2.771,3.163,3.25,,3.573,3.21,3.213,2.929,2.804,2.773,2.828,2.705,,2.777,2.401,2.62,2.679,2.935,2.373,2.676,2.558, -"Dec 23, 2019",3.055,3.073,2.967,3.129,2.692,3,2.79,3.161,2.81,3.188,3.278,,3.575,3.265,3.237,2.953,2.817,2.774,2.853,2.682,,2.726,2.401,2.632,2.64,2.945,2.39,2.629,2.534, -"Dec 30, 2019",3.077,3.096,2.984,3.145,2.712,3.023,2.798,3.174,2.823,3.222,3.312,,3.572,3.29,3.246,3.034,2.813,2.749,2.866,2.669,,2.726,2.405,2.636,2.614,2.939,2.39,2.615,2.52, -"Jan 06, 2020",3.119,3.14,3.033,3.203,2.766,3.074,2.844,3.211,2.874,3.257,3.368,,3.601,3.318,3.289,3.055,2.838,2.783,2.881,2.672,,2.72,2.403,2.634,2.612,2.979,2.39,2.613,2.495, -"Jan 13, 2020",3.097,3.118,3.015,3.176,2.753,3.056,2.846,3.191,2.848,3.232,3.365,,3.649,3.317,3.274,2.978,2.835,2.779,2.881,2.657,,2.707,2.351,2.617,2.602,2.976,2.375,2.593,2.477, -"Jan 20, 2020",3.075,3.096,2.989,3.123,2.729,3.02,2.883,3.187,2.792,3.211,3.34,,3.552,3.27,3.236,3.024,2.82,2.769,2.863,2.631,,2.669,2.272,2.584,2.568,2.914,2.312,2.584,2.484, -"Jan 27, 2020",2.996,3.013,2.908,3,2.705,2.906,2.886,3.081,2.788,3.121,3.19,,3.394,3.177,3.175,2.928,2.808,2.759,2.849,2.615,,2.614,2.208,2.537,2.495,2.966,2.277,2.554,2.463, -"Feb 03, 2020",2.934,2.951,2.855,2.89,2.676,2.869,2.87,3.018,2.714,3.049,3.12,,3.368,3.137,3.126,2.815,2.769,2.688,2.84,2.544,,2.546,2.142,2.5,2.43,2.92,2.172,2.468,2.39, -"Feb 10, 2020",2.909,2.928,2.833,2.859,2.642,2.856,2.862,2.996,2.674,3.024,3.114,,3.36,3.078,3.095,2.803,2.749,2.69,2.802,2.501,,2.508,2.069,2.456,2.39,2.88,2.128,2.405,2.351, -"Feb 17, 2020",2.899,2.917,2.822,2.86,2.628,2.83,2.855,2.99,2.686,3.013,3.115,,3.322,3.073,3.104,2.769,2.741,2.665,2.807,2.505,,2.533,2.127,2.462,2.411,2.879,2.145,2.418,2.341, -"Feb 24, 2020",2.892,2.909,2.808,2.848,2.631,2.82,2.809,2.982,2.688,3.013,3.107,,3.337,3.084,3.087,2.779,2.728,2.645,2.795,2.511,,2.551,2.108,2.454,2.416,2.89,2.164,2.411,2.345, -"Mar 02, 2020",2.821,2.839,2.738,2.745,2.585,2.755,2.782,2.87,2.639,2.937,3.063,,3.291,3.008,3.007,2.718,2.712,2.633,2.777,2.413,,2.462,2.061,2.353,2.311,2.748,2.129,2.318,2.284, -"Mar 09, 2020",2.751,2.769,2.665,2.637,2.542,2.677,2.741,2.85,2.58,2.875,2.947,,3.246,2.892,2.943,2.635,2.663,2.579,2.731,2.363,,2.434,1.955,2.317,2.259,2.722,2.047,2.297,2.205, -"Mar 16, 2020",2.595,2.614,2.503,2.411,2.42,2.544,2.561,2.774,2.452,2.724,2.866,,3.056,2.732,2.806,2.446,2.533,2.487,2.572,2.198,,2.323,1.833,1.933,2.073,2.558,1.892,2.149,2.003, -"Mar 23, 2020",2.447,2.463,2.383,2.279,2.301,2.418,2.499,2.572,2.303,2.536,2.581,,2.675,2.545,2.606,2.36,2.44,2.343,2.516,2.07,,2.162,1.586,1.929,1.833,2.5,1.711,2.042,1.827, -"Mar 30, 2020",2.421,2.44,2.355,2.256,2.285,2.405,2.428,2.516,2.273,2.524,2.571,,2.632,2.525,2.583,2.351,2.368,2.29,2.434,2.01,,2.148,1.578,1.888,1.854,2.438,1.669,1.969,1.744, -"Oct 05, 2020",2.129,2.138,2.046,2.052,1.83,2.062,2.074,2.483,2.013,2.227,2.306,,2.256,2.261,2.315,2.064,2.123,2.039,2.194,1.976,,2.048,1.624,2.015,1.858,2.351,1.615,1.927,1.775, -"Oct 12, 2020",2.136,2.144,2.046,2.05,1.84,2.08,2.054,2.307,2.015,2.243,2.346,,2.351,2.277,2.307,2.083,2.134,2.063,2.191,1.99,,2.054,1.643,1.95,1.924,2.363,1.636,1.937,1.78, -"Oct 19, 2020",2.147,2.154,2.048,2.05,1.852,2.082,2.077,2.214,2.024,2.261,2.352,,2.362,2.299,2.34,2.086,2.143,2.065,2.216,2.005,,2.052,1.652,1.968,1.94,2.362,1.638,1.973,1.785, -"Oct 26, 2020",2.142,2.149,2.048,2.037,1.862,2.084,2.086,2.213,2.039,2.251,2.355,,2.356,2.272,2.334,2.062,2.151,2.066,2.223,2.006,,2.097,1.618,1.955,1.948,2.366,1.631,1.971,1.79, -"Nov 02, 2020",2.131,2.138,2.04,2.023,1.856,2.077,2.082,2.205,2.04,2.234,2.356,,2.368,2.271,2.335,2.031,2.145,2.056,2.219,1.993,,2.078,1.579,1.949,1.919,2.356,1.613,1.964,1.786, -"Nov 09, 2020",2.142,2.149,2.061,2.065,1.871,2.095,2.087,2.207,2.039,2.233,2.348,,2.347,2.281,2.347,2.019,2.147,2.062,2.219,2.027,,2.095,1.765,1.961,1.982,2.363,1.645,1.979,1.846, -"Nov 16, 2020",2.177,2.184,2.099,2.123,1.902,2.134,2.105,2.212,2.053,2.267,2.451,,2.411,2.361,2.369,2.052,2.153,2.068,2.224,2.064,,2.122,1.737,2.045,2.015,2.406,1.708,2,1.907, -"Nov 23, 2020",2.202,2.209,2.123,2.16,1.902,2.153,2.131,2.249,2.076,2.295,2.461,,2.449,2.376,2.398,2.078,2.156,2.068,2.23,2.073,,2.162,1.815,2.045,2.023,2.415,1.745,2.003,1.911, -"Nov 30, 2020",2.264,2.272,2.192,2.232,1.977,2.23,2.186,2.309,2.135,2.355,2.475,,2.524,2.425,2.452,2.152,2.199,2.115,2.27,2.112,,2.195,1.84,2.055,2.039,2.439,1.779,2.069,1.94, -"Dec 07, 2020",2.294,2.303,2.226,2.26,2.005,2.259,2.251,2.299,2.179,2.383,2.511,,2.534,2.464,2.482,2.173,2.23,2.159,2.289,2.131,,2.221,1.866,2.096,2.077,2.457,1.797,2.086,1.948, -"Dec 14, 2020",2.339,2.346,2.277,2.324,2.051,2.307,2.289,2.348,2.215,2.417,2.585,,2.596,2.531,2.503,2.211,2.257,2.172,2.329,2.227,,2.244,1.951,2.106,2.122,2.594,1.896,2.15,1.998, -"Dec 21, 2020",2.423,2.43,2.356,2.434,2.128,2.39,2.322,2.393,2.272,2.513,2.74,,2.634,2.642,2.581,2.307,2.306,2.228,2.371,2.295,,2.336,2.013,2.132,2.211,2.671,1.968,2.197,2.081, -"Dec 28, 2020",2.439,2.445,2.382,2.444,2.158,2.413,2.384,2.423,2.282,2.514,2.755,,2.641,2.651,2.591,2.304,2.318,2.238,2.385,2.335,,2.365,2,2.179,2.224,2.683,1.983,2.28,2.097, -"Jan 04, 2021",2.458,2.465,2.402,2.452,2.172,2.434,2.396,2.545,2.296,2.537,2.78,,2.666,2.667,2.611,2.318,2.333,2.243,2.409,2.342,,2.371,2.01,2.182,2.218,2.688,1.969,2.286,2.129, -"Jan 11, 2021",2.504,2.513,2.463,2.502,2.226,2.493,2.491,2.575,2.385,2.572,2.848,,2.718,2.757,2.649,2.341,2.364,2.294,2.423,2.353,,2.37,2.032,2.195,2.247,2.742,2.001,2.273,2.122, -"Jan 18, 2021",2.558,2.568,2.512,2.536,2.287,2.541,2.55,2.659,2.418,2.634,2.916,,2.742,2.783,2.705,2.427,2.411,2.334,2.477,2.396,,2.433,2.064,2.286,2.281,2.786,2.029,2.323,2.145, -"Jan 25, 2021",2.569,2.579,2.521,2.546,2.289,2.55,2.566,2.671,2.435,2.646,2.945,,2.756,2.802,2.714,2.442,2.427,2.342,2.497,2.391,,2.446,2.079,2.286,2.285,2.794,2.029,2.299,2.148, -"Feb 01, 2021",2.602,2.613,2.552,2.587,2.304,2.583,2.59,2.691,2.444,2.685,2.98,,2.82,2.868,2.742,2.479,2.441,2.356,2.512,2.413,,2.454,2.106,2.296,2.312,2.795,2.037,2.342,2.152, -"Feb 08, 2021",2.667,2.678,2.627,2.669,2.366,2.663,2.665,2.724,2.523,2.739,2.954,,2.877,2.879,2.817,2.518,2.515,2.443,2.576,2.483,,2.536,2.197,2.386,2.403,2.839,2.12,2.395,2.266, -"Feb 15, 2021",2.744,2.753,2.715,2.771,2.44,2.759,2.747,2.743,2.612,2.802,3.025,,2.983,2.933,2.888,2.563,2.579,2.491,2.655,2.576,,2.65,2.286,2.477,2.484,2.914,2.216,2.496,2.371, -"Feb 22, 2021",2.808,2.817,2.772,2.82,2.501,2.82,2.805,2.797,2.68,2.873,3.135,,3.04,3.075,2.96,2.613,2.643,2.582,2.696,2.654,,2.718,2.323,2.535,2.562,2.964,2.298,2.591,2.471, -"Mar 01, 2021",2.852,2.859,2.809,2.86,2.543,2.848,2.842,2.843,2.744,2.921,3.156,,3.067,3.113,3,2.661,2.689,2.629,2.74,2.727,,2.721,2.431,2.584,2.636,3.127,2.378,2.627,2.504, -"Mar 08, 2021",2.884,2.89,2.838,2.895,2.584,2.882,2.843,2.866,2.768,2.956,3.152,,3.116,3.146,3.032,2.698,2.712,2.646,2.769,2.777,,2.753,2.633,2.602,2.683,3.207,2.602,2.65,2.537, -"Mar 15, 2021",2.903,2.907,2.849,2.912,2.601,2.896,2.815,2.935,2.776,2.976,3.237,,3.145,3.184,3.038,2.729,2.741,2.701,2.775,2.83,,2.864,2.595,2.653,2.659,3.221,2.618,2.744,2.615, -"Mar 22, 2021",2.88,2.884,2.829,2.868,2.591,2.883,2.821,2.895,2.761,2.949,3.219,,3.122,3.157,3.011,2.698,2.772,2.727,2.811,2.801,,2.791,2.438,2.717,2.624,3.198,2.558,2.715,2.596, -"Mar 29, 2021",2.863,2.868,2.811,2.838,2.572,2.857,2.837,2.892,2.768,2.933,3.19,,3.085,3.167,3.004,2.666,2.764,2.718,2.803,2.781,,2.784,2.379,2.705,2.637,3.176,2.483,2.685,2.573, -"Oct 04, 2021",3.175,3.178,3.081,3.17,2.852,3.101,3.038,3.248,3.002,3.284,3.334,,3.275,3.331,3.408,3,3.037,3.016,3.061,3.098,,3.057,2.868,2.921,3.114,3.437,2.832,3.026,2.94, -"Oct 11, 2021",3.284,3.288,3.198,3.281,2.999,3.231,3.143,3.302,3.073,3.38,3.431,,3.379,3.443,3.517,3.117,3.146,3.121,3.176,3.18,,3.324,2.978,2.994,3.148,3.531,2.88,3.095,3.03, -"Oct 18, 2021",3.366,3.374,3.28,3.355,3.088,3.31,3.221,3.435,3.175,3.47,3.55,,3.49,3.561,3.612,3.181,3.233,3.236,3.231,3.184,,3.337,3.003,3.091,3.173,3.538,2.943,3.105,3, -"Oct 25, 2021",3.397,3.405,3.316,3.408,3.128,3.33,3.266,3.411,3.231,3.501,3.602,,3.538,3.597,3.641,3.198,3.293,3.281,3.304,3.213,,3.348,3.054,3.164,3.186,3.561,2.939,3.093,3.053, -"Nov 01, 2021",3.395,3.403,3.319,3.38,3.139,3.348,3.277,3.437,3.261,3.492,3.6,,3.465,3.579,3.622,3.221,3.306,3.292,3.319,3.189,,3.287,3.078,3.205,3.179,3.559,2.912,3.013,3.059, -"Nov 08, 2021",3.405,3.413,3.318,3.372,3.141,3.35,3.28,3.417,3.28,3.513,3.612,,3.552,3.58,3.614,3.267,3.322,3.303,3.337,3.245,,3.303,3.071,3.204,3.149,3.55,2.899,3.245,3.053, -"Nov 15, 2021",3.408,3.415,3.323,3.372,3.151,3.351,3.298,3.443,3.286,3.507,3.612,,3.579,3.581,3.619,3.257,3.331,3.315,3.346,3.253,,3.309,3.062,3.198,3.162,3.547,2.859,3.285,3.022, -"Nov 22, 2021",3.384,3.391,3.304,3.335,3.139,3.335,3.297,3.419,3.276,3.478,3.609,,3.551,3.558,3.582,3.235,3.32,3.304,3.334,3.238,,3.296,2.986,3.172,3.158,3.524,2.834,3.306,2.962, -"Nov 29, 2021",3.363,3.371,3.291,3.301,3.14,3.35,3.296,3.305,3.25,3.446,3.62,,3.541,3.538,3.549,3.208,3.345,3.3,3.386,3.204,,3.325,2.893,3.167,3.126,3.42,2.784,3.29,2.953, -"Dec 06, 2021",3.321,3.328,3.254,3.259,3.128,3.293,3.282,3.251,3.226,3.399,3.565,,3.521,3.49,3.491,3.17,3.325,3.263,3.379,3.166,,3.258,2.832,3.102,3.071,3.349,2.67,3.279,2.917, -"Dec 13, 2021",3.35,3.361,3.274,3.278,3.126,3.317,3.31,3.306,3.213,3.446,3.63,,3.554,3.541,3.55,3.196,3.304,3.243,3.355,3.136,,3.258,2.872,3.11,3.098,3.35,2.687,3.198,2.891, -"Dec 20, 2021",3.344,3.355,3.265,3.263,3.103,3.318,3.309,3.299,3.199,3.445,3.638,,3.586,3.539,3.546,3.175,3.294,3.223,3.356,3.127,,3.227,2.792,3.108,3.077,3.439,2.672,3.16,2.864, -"Dec 27, 2021",3.366,3.379,3.287,3.299,3.115,3.334,3.316,3.353,3.205,3.472,3.632,,3.542,3.576,3.587,3.2,3.286,3.207,3.348,3.106,,3.207,2.835,3.101,3.084,3.384,2.695,3.137,2.857, -"Jan 03, 2022",3.39,3.404,3.315,3.336,3.139,3.367,3.32,3.388,3.241,3.496,3.639,,3.579,3.59,3.62,3.206,3.302,3.231,3.371,3.116,,3.216,2.89,3.106,3.095,3.373,2.749,3.148,2.876, -"Jan 10, 2022",3.46,3.476,3.4,3.44,3.223,3.456,3.383,3.44,3.265,3.559,3.673,,3.6,3.684,3.676,3.267,3.327,3.251,3.393,3.149,,3.292,2.972,3.132,3.123,3.383,2.847,3.19,2.908, -"Jan 17, 2022",3.6,3.619,3.55,3.6,3.336,3.627,3.539,3.502,3.37,3.696,3.843,,3.736,3.86,3.814,3.413,3.418,3.338,3.478,3.215,,3.351,3.051,3.186,3.176,3.458,2.894,3.242,2.998, -"Jan 24, 2022",3.671,3.692,3.631,3.675,3.441,3.677,3.641,3.704,3.456,3.763,3.963,,3.832,3.932,3.876,3.479,3.453,3.381,3.51,3.24,,3.372,3.075,3.22,3.218,3.506,2.955,3.245,3.025, -"Jan 31, 2022",3.776,3.8,3.75,3.79,3.537,3.805,3.762,3.805,3.603,3.864,4.032,,3.899,4.044,3.982,3.581,3.529,3.484,3.569,3.291,,3.443,3.215,3.295,3.285,3.56,3.02,3.284,3.074, -"Feb 07, 2022",3.891,3.915,3.869,3.931,3.654,3.919,3.883,3.857,3.688,3.976,4.1,,4.065,4.149,4.076,3.691,3.623,3.6,3.645,3.411,,3.589,3.239,3.38,3.449,3.666,3.108,3.348,3.273, -"Feb 14, 2022",3.956,3.981,3.932,3.969,3.715,3.984,3.935,4.077,3.8,4.043,4.219,,4.15,4.236,4.154,3.753,3.687,3.673,3.699,3.453,,3.631,3.309,3.456,3.459,3.71,3.151,3.393,3.318, -"Feb 21, 2022",3.956,3.977,3.918,3.929,3.733,3.966,3.951,3.993,3.853,4.047,4.231,,4.182,4.229,4.141,3.768,3.725,3.697,3.748,3.545,,3.634,3.31,3.542,3.461,3.729,3.154,3.627,3.317, -"Feb 28, 2022",4.054,4.076,4.011,4.026,3.83,4.064,4.024,4.105,3.947,4.156,4.403,,4.218,4.344,4.256,3.874,3.758,3.751,3.765,3.619,,3.727,3.431,3.635,3.541,3.849,3.25,3.695,3.35, -"Mar 07, 2022",4.921,4.951,4.964,5.078,4.721,5.067,4.718,5.281,4.696,4.966,5.333,,4.936,5.192,5.008,4.778,4.454,4.454,4.455,4.328,,4.495,4.084,4.465,4.329,4.372,3.83,4.521,3.988, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Back to Contents,Data 1: Residential Heating Oil Weekly Heating Oil and Propane Prices (October - March),,,,,,,,,,,,,,,,,,,,,,,,,,,, +Sourcekey,W_EPD2F_PRS_NUS_DPG,W_EPD2F_PRS_R10_DPG,W_EPD2F_PRS_R1X_DPG,W_EPD2F_PRS_SCT_DPG,W_EPD2F_PRS_SME_DPG,W_EPD2F_PRS_SMA_DPG,W_EPD2F_PRS_SNH_DPG,W_EPD2F_PRS_SRI_DPG,W_EPD2F_PRS_SVT_DPG,W_EPD2F_PRS_R1Y_DPG,W_EPD2F_PRS_SDE_DPG,W_EPD2F_PRS_SDC_DPG,W_EPD2F_PRS_SMD_DPG,W_EPD2F_PRS_SNJ_DPG,W_EPD2F_PRS_SNY_DPG,W_EPD2F_PRS_SPA_DPG,W_EPD2F_PRS_R1Z_DPG,W_EPD2F_PRS_SNC_DPG,W_EPD2F_PRS_SVA_DPG,W_EPD2F_PRS_R20_DPG,W_EPD2F_PRS_SIL_DPG,W_EPD2F_PRS_SIN_DPG,W_EPD2F_PRS_SIA_DPG,W_EPD2F_PRS_SKY_DPG,W_EPD2F_PRS_SMI_DPG,W_EPD2F_PRS_SMN_DPG,W_EPD2F_PRS_SNE_DPG,W_EPD2F_PRS_SOH_DPG,W_EPD2F_PRS_SWI_DPG +Date,Weekly U.S. Weekly No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly East Coast (PADD 1) No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly New England (PADD 1A) No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Connecticut No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Maine No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Massachusetts No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly New Hampshire No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Rhode Island No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Vermont No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Central Atlantic (PADD 1B) No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Delaware No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly District of Columbia No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Maryland No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly New Jersey No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly New York No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Pennsylvania No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Lower Atlantic (PADD 1C) No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly North Carolina No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Virginia No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly PADD 2 No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Illinois No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Indiana No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Iowa No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Kentucky No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Michigan No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Minnesota No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Nebraska No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Ohio No. 2 Heating Oil Residential Price (Dollars per Gallon),Weekly Wisconsin No. 2 Heating Oil Residential Price (Dollars per Gallon) +"Oct 01, 1990",1.279,1.296,1.306,1.285,1.277,1.334,1.292,1.313,1.255,1.295,1.23,1.231,1.269,1.317,1.342,1.214,1.265,1.257,1.275,1.198,1.205,1.23,1.163,,1.251,1.169,,1.223,1.157 +"Oct 15, 1990",1.332,1.348,1.346,1.347,1.314,1.362,1.324,1.34,1.327,1.351,1.303,1.35,1.319,1.377,1.4,1.266,1.325,1.307,1.346,1.259,1.265,1.295,1.192,,1.296,1.243,,1.29,1.22 +"Nov 05, 1990",1.304,1.319,1.283,1.355,1.186,1.264,1.274,1.301,1.311,1.339,1.264,1.356,1.309,1.36,1.392,1.251,1.296,1.279,1.316,1.232,1.208,1.23,1.186,,1.278,1.245,,1.248,1.201 +"Nov 19, 1990",1.289,1.303,1.257,1.327,1.126,1.243,1.246,1.295,1.305,1.329,1.242,1.351,1.294,1.341,1.385,1.241,1.273,1.26,1.287,1.219,1.189,1.23,1.172,,1.261,1.242,,1.207,1.198 +"Dec 03, 1990",1.285,1.303,1.268,1.331,1.161,1.254,1.26,1.306,1.286,1.324,1.246,1.361,1.3,1.346,1.366,1.252,1.266,1.243,1.291,1.197,1.169,1.202,1.132,,1.224,1.225,,1.202,1.177 +"Dec 17, 1990",1.239,1.266,1.214,1.28,1.069,1.212,1.166,1.249,1.26,1.297,1.187,1.324,1.257,1.288,1.366,1.203,1.214,1.201,1.227,1.113,1.077,1.102,1.07,,1.152,1.128,,1.132,1.095 +"Jan 07, 1991",1.205,1.232,1.182,1.254,1.086,1.16,1.148,1.232,1.224,1.262,1.169,1.288,1.232,1.272,1.32,1.174,1.183,1.178,1.189,1.073,1.033,1.072,0.968,,1.106,1.089,,1.076,1.076 +"Jan 21, 1991",1.226,1.254,1.211,1.266,1.119,1.208,1.176,1.236,1.21,1.282,1.186,1.282,1.244,1.296,1.339,1.196,1.181,1.184,1.178,1.096,1.053,1.112,1.001,,1.13,1.118,,1.084,1.093 +"Feb 04, 1991",1.18,1.212,1.173,1.24,1.056,1.166,1.124,1.212,1.198,1.239,1.149,1.254,1.188,1.25,1.294,1.159,1.131,1.122,1.141,1.03,0.99,1.026,0.934,,1.079,1.036,,1.022,1.035 +"Feb 18, 1991",1.145,1.181,1.149,1.216,1.043,1.137,1.1,1.208,1.168,1.206,1.128,1.22,1.164,1.229,1.265,1.111,1.093,1.094,1.092,0.976,0.925,0.981,0.876,,1.023,0.98,,0.97,0.985 +"Mar 04, 1991",1.097,1.135,1.092,1.155,0.975,1.089,1.017,1.148,1.125,1.166,1.075,1.182,1.12,1.176,1.237,1.06,1.039,1.042,1.035,0.92,0.88,0.916,0.82,,0.97,0.909,,0.918,0.934 +"Mar 18, 1991",1.054,1.088,1.05,1.105,0.93,1.047,0.976,1.113,1.097,1.117,1.02,1.154,1.072,1.122,1.186,1.016,0.997,1.005,0.989,0.893,0.852,0.895,0.789,,0.93,0.891,,0.896,0.908 +"Oct 07, 1991",0.955,0.969,0.946,0.965,0.858,0.965,0.905,0.971,0.933,0.986,0.932,1.049,0.981,0.997,1.044,0.887,0.914,0.917,0.912,0.881,,0.894,0.813,,0.893,0.885,,0.858,0.891 +"Oct 21, 1991",0.987,1.001,0.982,1.007,0.892,0.992,0.952,1.015,0.981,1.019,0.986,1.059,1.018,1.041,1.081,0.906,0.93,0.936,0.923,0.907,,0.93,,,0.906,0.916,,0.905,0.891 +"Nov 04, 1991",1.007,1.023,1,1.023,0.928,1.008,0.977,1.022,0.993,1.041,1.006,1.077,1.025,1.065,1.099,0.94,0.956,0.964,0.947,0.926,,0.941,0.869,,0.936,0.929,,0.937,0.913 +"Nov 18, 1991",1.027,1.043,1.018,1.037,0.964,1.025,0.987,1.038,1.01,1.061,1.024,1.1,1.043,1.083,1.122,0.956,0.981,0.988,0.973,0.942,,0.945,,,0.965,0.945,,0.941,0.924 +"Dec 02, 1991",1.021,1.038,1.006,1.033,0.915,1.014,0.985,1.039,1.002,1.061,1.015,1.1,1.045,1.079,1.118,0.964,0.973,0.982,0.964,0.929,,0.933,0.846,,0.958,0.937,,0.925,0.92 +"Dec 16, 1991",1.007,1.025,0.987,1.019,0.893,0.994,0.98,1.01,0.98,1.052,1.011,1.103,1.03,1.067,1.11,0.956,0.95,0.957,0.941,0.906,,0.887,,,0.932,0.913,,0.891,0.902 +"Jan 06, 1992",0.98,1.002,0.958,0.987,0.875,0.958,0.965,0.985,0.969,1.032,0.982,1.092,1.012,1.04,1.091,0.938,0.922,0.925,0.918,0.866,,0.858,0.738,,0.9,0.874,,0.85,0.876 +"Jan 20, 1992",0.973,0.995,0.952,0.976,0.865,0.955,0.961,0.985,0.958,1.025,0.969,1.086,1.016,1.026,1.088,0.926,0.918,0.926,0.91,0.852,,0.84,,,0.881,0.85,,0.834,0.853 +"Feb 03, 1992",0.972,0.997,0.953,0.987,0.866,0.951,0.948,0.987,0.963,1.027,0.965,1.087,1.011,1.041,1.088,0.927,0.921,0.928,0.913,0.839,,0.838,0.718,,0.866,0.841,,0.836,0.847 +"Feb 17, 1992",0.976,0.998,0.957,0.985,0.867,0.964,0.938,0.983,0.962,1.027,0.961,1.087,1.015,1.044,1.086,0.926,0.922,0.929,0.915,0.854,,0.846,,,0.875,0.846,,0.858,0.848 +"Mar 02, 1992",0.968,0.992,0.949,0.984,0.847,0.954,0.93,0.975,0.959,1.021,0.957,1.08,1.005,1.039,1.081,0.918,0.921,0.93,0.912,0.844,,0.84,0.73,,0.876,0.84,,0.85,0.848 +"Mar 16, 1992",0.963,0.983,0.936,0.971,0.831,0.942,0.903,0.976,0.954,1.014,0.946,1.08,1.002,1.027,1.076,0.91,0.916,0.928,0.902,0.853,,0.839,,,0.877,0.845,,0.85,0.85 +"Oct 05, 1992",0.964,0.978,0.956,0.975,0.868,0.975,0.903,0.979,0.946,0.994,0.961,1.034,0.991,1.033,1.033,0.902,0.921,0.945,0.894,0.891,,0.893,0.816,,0.912,0.911,,0.879,0.886 +"Oct 19, 1992",0.98,0.993,0.97,0.983,0.898,0.989,0.921,1.003,0.954,1.011,0.974,1.065,1.005,1.039,1.058,0.92,0.94,0.954,0.924,0.905,,0.914,,,0.918,0.918,,0.891,0.89 +"Nov 02, 1992",0.984,0.999,0.968,0.99,0.864,0.988,0.928,0.999,0.96,1.019,0.981,1.083,1.013,1.045,1.069,0.925,0.948,0.953,0.942,0.901,,0.909,0.829,,0.923,0.922,,0.888,0.889 +"Nov 16, 1992",0.983,0.997,0.963,0.99,0.851,0.981,0.929,0.995,0.959,1.019,0.958,1.062,1.011,1.046,1.071,0.922,0.943,0.944,0.941,0.899,,0.897,,,0.918,0.918,,0.878,0.885 +"Dec 07, 1992",0.973,0.991,0.956,0.989,0.826,0.973,0.927,0.986,0.954,1.013,0.95,1.057,1.001,1.021,1.07,0.922,0.94,0.941,0.938,0.879,,0.883,0.769,,0.912,0.9,,0.862,0.874 +"Dec 21, 1992",0.974,0.991,0.957,0.988,0.84,0.973,0.926,0.986,0.952,1.013,0.948,1.062,1.001,1.019,1.071,0.922,0.935,0.937,0.934,0.874,,0.872,,,0.9,0.876,,0.849,0.87 +"Jan 04, 1993",0.974,0.994,0.961,0.992,0.845,0.978,0.929,0.987,0.947,1.016,0.949,1.062,1.005,1.022,1.073,0.926,0.936,0.937,0.936,0.868,,0.875,0.761,,0.898,0.876,,0.853,0.87 +"Jan 18, 1993",0.975,0.993,0.964,1.002,0.848,0.975,0.929,0.982,0.951,1.014,0.943,1.073,1.004,1.011,1.073,0.924,0.933,0.933,0.932,0.873,,0.872,,,0.897,0.879,,0.849,0.865 +"Feb 01, 1993",0.974,0.994,0.965,1.006,0.843,0.974,0.934,0.99,0.948,1.016,0.951,1.083,1.008,1.022,1.074,0.922,0.933,0.934,0.933,0.865,,0.865,0.746,,0.899,0.877,,0.857,0.866 +"Feb 15, 1993",0.978,0.996,0.966,1.009,0.849,0.973,0.924,0.991,0.949,1.018,0.954,1.091,1.01,1.028,1.074,0.924,0.933,0.932,0.933,0.875,,0.87,,,0.9,0.881,,0.859,0.866 +"Mar 01, 1993",0.977,0.997,0.962,1.009,0.817,0.973,0.921,0.991,0.948,1.021,0.961,1.098,1.018,1.032,1.077,0.926,0.933,0.933,0.934,0.87,,0.874,0.759,,0.902,0.886,,0.868,0.864 +"Mar 15, 1993",0.985,1.001,0.973,1.013,0.858,0.983,0.924,0.996,0.956,1.022,0.961,1.105,1.023,1.033,1.077,0.928,0.936,0.935,0.938,0.89,,0.885,,,0.916,0.894,,0.883,0.874 +"Apr 05, 1993",,,,,,,,,,,,,,,,,,,,,,,,,,,,, +"Oct 04, 1993",0.936,0.95,0.914,0.949,0.832,0.916,0.865,0.955,0.913,0.974,0.916,1.054,0.979,0.981,1.034,0.864,0.89,0.895,0.884,0.858,,0.854,0.791,,0.866,0.889,,0.842,0.854 +"Oct 18, 1993",0.947,0.956,0.917,0.958,0.827,0.916,0.874,0.952,0.92,0.981,0.924,1.055,0.981,0.996,1.038,0.873,0.896,0.898,0.894,0.893,,0.883,,,0.896,0.925,,0.865,0.888 +"Nov 01, 1993",0.946,0.958,0.916,0.96,0.81,0.916,0.88,0.942,0.919,0.985,0.926,1.055,0.984,0.998,1.044,0.876,0.893,0.891,0.895,0.882,,0.87,0.827,,0.9,0.919,,0.862,0.871 +"Nov 15, 1993",0.947,0.959,0.916,0.96,0.796,0.92,0.88,0.942,0.918,0.987,0.926,1.054,0.985,0.993,1.047,0.88,0.896,0.895,0.897,0.875,,0.86,,,0.893,0.905,,0.853,0.859 +"Dec 06, 1993",0.938,0.953,0.905,0.947,0.789,0.903,0.874,0.945,0.921,0.985,0.924,1.052,0.968,0.986,1.047,0.879,0.89,0.889,0.891,0.85,,0.828,0.761,,0.872,0.889,,0.824,0.852 +"Dec 20, 1993",0.926,0.943,0.892,0.946,0.765,0.887,0.864,0.925,0.906,0.975,0.924,1.053,0.954,0.978,1.039,0.867,0.875,0.87,0.88,0.83,,0.811,,,0.846,0.856,,0.795,0.827 +"Jan 03, 1994",0.921,0.941,0.891,0.933,0.791,0.886,0.862,0.919,0.907,0.974,0.924,1.043,0.953,0.976,1.038,0.865,0.875,0.871,0.88,0.809,,0.798,0.667,,0.836,0.843,,0.785,0.818 +"Jan 17, 1994",0.947,0.967,0.929,0.961,0.854,0.935,0.887,0.936,0.915,0.993,0.956,1.053,0.989,1.001,1.053,0.884,0.898,0.894,0.903,0.835,,0.821,,,0.845,0.852,,0.822,0.828 +"Jan 31, 1994",0.966,0.988,0.95,0.978,0.865,0.959,0.926,0.956,0.93,1.014,0.975,1.071,1.014,1.021,1.065,0.922,0.927,0.918,0.939,0.84,,0.84,0.699,,0.875,0.859,,0.839,0.836 +"Feb 07, 1994",0.987,1.01,0.971,0.99,0.909,0.979,0.953,0.975,0.963,1.038,0.984,1.084,1.036,1.046,1.088,0.947,0.937,0.932,0.942,0.856,,0.864,0.709,,0.895,0.863,,0.86,0.852 +"Feb 14, 1994",0.994,1.019,0.984,1.008,0.918,0.991,0.968,0.98,0.972,1.045,0.977,1.091,1.039,1.055,1.093,0.959,0.936,0.93,0.942,0.859,,0.855,0.713,,0.894,0.87,,0.863,0.86 +"Feb 21, 1994",0.988,1.013,0.973,1.006,0.898,0.971,0.968,0.971,0.973,1.042,0.97,1.082,1.022,1.059,1.094,0.949,0.929,0.928,0.931,0.848,,0.844,0.71,,0.886,0.86,,0.842,0.852 +"Feb 28, 1994",0.987,1.009,0.969,1.006,0.893,0.963,0.96,0.97,0.973,1.039,0.963,1.072,1.02,1.055,1.09,0.945,0.927,0.926,0.929,0.854,,0.842,,,0.883,0.854,,0.839,0.848 +"Mar 07, 1994",0.979,1.004,0.959,0.999,0.892,0.948,0.95,0.967,0.972,1.035,0.958,1.072,1.012,1.046,1.09,0.941,0.923,0.92,0.925,0.844,,0.843,0.706,,0.881,0.854,,0.841,0.844 +"Mar 21, 1994",0.97,0.99,0.938,0.977,0.843,0.933,0.929,0.956,0.966,1.024,0.948,1.055,0.985,1.041,1.081,0.925,0.912,0.908,0.916,0.851,,0.839,,,0.873,0.858,,0.837,0.844 +"Oct 03, 1994",0.902,0.912,0.849,0.878,0.732,0.872,0.796,0.866,0.879,0.96,0.825,0.994,0.946,0.919,1.049,0.797,0.885,0.891,0.879,0.826,,0.822,0.756,0.789,0.851,0.828,,0.816,0.828 +"Oct 17, 1994",0.904,0.914,0.849,0.877,0.727,0.874,0.798,0.865,0.891,0.962,0.845,0.994,0.943,0.928,1.051,0.802,0.889,0.895,0.884,0.829,,0.825,,0.788,0.846,0.835,,0.817,0.829 +"Nov 07, 1994",0.91,0.919,0.856,0.883,0.727,0.884,0.802,0.872,0.889,0.966,0.864,1.006,0.948,0.932,1.054,0.808,0.895,0.899,0.892,0.84,,0.831,0.777,0.821,0.854,0.864,,0.831,0.832 +"Nov 21, 1994",0.913,0.923,0.862,0.89,0.748,0.885,0.814,0.876,0.887,0.97,0.871,1.018,0.953,0.933,1.055,0.817,0.895,0.899,0.891,0.839,,0.832,,0.817,0.852,0.86,,0.825,0.831 +"Dec 05, 1994",0.915,0.926,0.864,0.894,0.747,0.885,0.82,0.876,0.888,0.975,0.875,1.034,0.971,0.934,1.068,0.816,0.895,0.899,0.891,0.834,,0.832,0.755,0.815,0.854,0.856,,0.819,0.83 +"Dec 19, 1994",0.919,0.931,0.868,0.901,0.754,0.888,0.815,0.892,0.889,0.98,0.878,1.042,0.973,0.941,1.071,0.825,0.899,0.898,0.899,0.832,,0.829,,0.808,0.852,0.84,,0.819,0.827 +"Jan 02, 1995",0.925,0.938,0.876,0.904,0.779,0.895,0.827,0.901,0.893,0.987,0.922,1.035,0.976,0.949,1.079,0.831,0.9,0.899,0.901,0.827,,0.829,0.758,0.808,0.852,0.838,,0.814,0.827 +"Jan 16, 1995",0.928,0.941,0.88,0.912,0.774,0.897,0.838,0.9,0.894,0.991,0.916,1.04,0.984,0.947,1.083,0.838,0.899,0.892,0.905,0.831,,0.829,,0.804,0.853,0.839,,0.815,0.828 +"Feb 06, 1995",0.928,0.941,0.879,0.915,0.765,0.897,0.839,0.899,0.89,0.992,0.912,1.043,0.986,0.952,1.086,0.834,0.9,0.892,0.907,0.825,,0.821,0.741,0.801,0.852,0.844,,0.81,0.824 +"Feb 20, 1995",0.931,0.944,0.881,0.918,0.773,0.896,0.843,0.902,0.893,0.995,0.906,1.042,0.988,0.958,1.089,0.835,0.901,0.893,0.908,0.829,,0.821,,0.8,0.853,0.842,,0.811,0.826 +"Mar 06, 1995",0.928,0.942,0.878,0.916,0.767,0.892,0.84,0.899,0.892,0.993,0.908,1.045,0.988,0.959,1.086,0.834,0.9,0.893,0.905,0.825,,0.827,0.745,0.798,0.852,0.837,,0.811,0.826 +"Mar 20, 1995",0.923,0.936,0.871,0.919,0.751,0.884,0.833,0.893,0.886,0.987,0.908,1.046,0.986,0.951,1.082,0.825,0.897,0.893,0.902,0.826,,0.82,,0.797,0.852,0.844,,0.802,0.825 +"Oct 02, 1995",0.899,0.909,0.85,0.867,0.758,0.869,0.8,0.882,0.866,0.955,0.838,1.016,0.963,0.921,1.051,0.785,0.884,0.886,0.882,0.825,,0.819,0.775,0.772,0.854,0.847,,0.793,0.829 +"Oct 16, 1995",0.902,0.912,0.852,0.867,0.748,0.881,0.799,0.877,0.864,0.959,0.841,1.022,0.965,0.919,1.057,0.789,0.881,0.885,0.877,0.825,,0.818,0.772,0.774,0.86,0.845,,0.791,0.831 +"Nov 06, 1995",0.908,0.919,0.856,0.871,0.751,0.884,0.801,0.885,0.877,0.968,0.844,1.024,0.966,0.927,1.068,0.798,0.885,0.89,0.881,0.83,,0.83,0.769,0.783,0.861,0.844,,0.808,0.832 +"Nov 20, 1995",0.919,0.929,0.874,0.891,0.788,0.897,0.822,0.896,0.876,0.975,0.853,1.025,0.974,0.934,1.072,0.808,0.885,0.89,0.88,0.838,,0.84,0.768,0.802,0.864,0.849,,0.823,0.836 +"Dec 04, 1995",0.931,0.943,0.889,0.909,0.827,0.903,0.849,0.906,0.89,0.99,0.876,1.048,0.978,0.951,1.086,0.823,0.889,0.891,0.888,0.843,,0.847,0.771,0.811,0.876,0.852,,0.825,0.843 +"Dec 18, 1995",0.964,0.978,0.936,0.948,0.874,0.952,0.91,0.95,0.933,1.02,0.925,1.078,1.003,0.984,1.113,0.864,0.901,0.911,0.892,0.855,,0.861,0.781,0.832,0.879,0.855,,0.85,0.854 +"Jan 01, 1996",0.999,1.018,0.977,0.987,0.922,0.997,0.949,0.97,0.971,1.058,0.997,1.116,1.037,1.023,1.155,0.895,0.935,0.931,0.939,0.861,,0.87,0.789,0.841,0.881,0.867,,0.851,0.86 +"Jan 15, 1996",1.022,1.043,0.997,1.017,0.937,1.011,0.985,0.986,0.976,1.089,1.033,1.136,1.068,1.061,1.18,0.93,0.95,0.933,0.965,0.866,,0.88,0.792,0.851,0.893,0.872,,0.863,0.853 +"Feb 05, 1996",1.012,1.031,0.983,1.009,0.914,0.993,0.977,0.972,0.972,1.077,1,1.137,1.056,1.057,1.165,0.92,0.951,0.936,0.964,0.868,,0.877,0.788,0.851,0.893,0.877,,0.862,0.859 +"Feb 19, 1996",1.037,1.058,1.014,1.032,0.944,1.031,0.993,1.021,0.998,1.103,1.014,1.176,1.078,1.084,1.191,0.948,0.96,0.946,0.973,0.882,,0.898,0.789,0.872,0.912,0.876,,0.882,0.87 +"Mar 04, 1996",1.049,1.068,1.024,1.056,0.954,1.033,0.998,1.033,1.017,1.114,1.041,1.178,1.085,1.098,1.203,0.956,0.964,0.947,0.98,0.903,,0.914,0.818,0.895,0.934,0.892,,0.919,0.88 +"Mar 18, 1996",1.052,1.072,1.038,1.054,0.945,1.069,0.999,1.031,1.017,1.111,1.042,1.174,1.105,1.094,1.2,0.948,0.966,0.947,0.983,0.902,,0.919,0.813,0.886,0.932,0.892,,0.911,0.885 +"Oct 07, 1996",1.105,1.12,1.089,1.073,1.015,1.129,1.061,1.067,1.088,1.155,1.1,1.209,1.119,1.125,1.255,0.983,1.031,1.027,1.034,0.993,,1.014,0.957,0.983,1.011,0.988,,1,0.975 +"Oct 21, 1996",1.131,1.145,1.103,1.107,1.037,1.128,1.081,1.087,1.095,1.187,1.127,1.267,1.137,1.154,1.291,1.015,1.058,1.043,1.071,1.021,,1.031,0.991,1.006,1.036,1.038,,1.026,0.996 +"Oct 28, 1996",1.133,1.147,1.104,1.107,1.037,1.13,1.083,1.089,1.095,1.19,1.129,1.269,1.137,1.156,1.289,1.027,1.059,1.044,1.072,1.024,,1.032,0.982,1,1.031,1.049,,1.029,1.006 +"Nov 04, 1996",1.126,1.14,1.097,1.107,1.028,1.118,1.075,1.089,1.096,1.181,1.119,1.272,1.141,1.143,1.276,1.028,1.055,1.04,1.068,1.026,,1.033,0.984,1.001,1.039,1.049,,1.029,1.007 +"Nov 11, 1996",1.124,1.137,1.096,1.11,1.023,1.116,1.074,1.084,1.092,1.178,1.126,1.271,1.142,1.143,1.272,1.021,1.056,1.041,1.069,1.025,,1.04,0.986,0.999,1.03,1.055,,1.022,1.007 +"Nov 18, 1996",1.135,1.147,1.109,1.118,1.037,1.133,1.081,1.106,1.102,1.186,1.13,1.29,1.153,1.163,1.275,1.029,1.063,1.048,1.074,1.042,,1.061,1.003,1.005,1.058,1.06,,1.026,1.037 +"Nov 25, 1996",1.143,1.155,1.119,1.135,1.046,1.144,1.085,1.111,1.101,1.193,1.146,1.297,1.171,1.166,1.282,1.038,1.065,1.05,1.078,1.054,,1.072,1.004,1.011,1.069,1.071,,1.053,1.04 +"Dec 02, 1996",1.145,1.157,1.123,1.139,1.043,1.149,1.093,1.111,1.111,1.192,1.145,1.297,1.177,1.158,1.282,1.038,1.071,1.062,1.079,1.06,,1.069,0.993,1.01,1.084,1.068,,1.055,1.053 +"Dec 09, 1996",1.156,1.169,1.13,1.162,1.049,1.144,1.103,1.127,1.115,1.21,1.152,1.303,1.183,1.177,1.302,1.052,1.078,1.069,1.086,1.059,,1.065,0.991,1.014,1.081,1.067,,1.054,1.055 +"Dec 16, 1996",1.155,1.17,1.138,1.163,1.055,1.163,1.104,1.122,1.117,1.205,1.149,1.299,1.187,1.167,1.295,1.054,1.083,1.072,1.092,1.045,,1.049,0.976,0.992,1.073,1.063,,1.039,1.029 +"Dec 23, 1996",1.162,1.178,1.142,1.169,1.062,1.16,1.111,1.135,1.134,1.216,1.156,1.323,1.191,1.179,1.306,1.068,1.083,1.072,1.092,1.04,,1.052,0.963,1,1.073,1.056,,1.034,1.02 +"Dec 30, 1996",1.159,1.175,1.142,1.169,1.062,1.16,1.11,1.132,1.135,1.212,1.154,1.319,1.192,1.176,1.299,1.066,1.084,1.073,1.094,1.036,,1.048,0.96,0.991,1.068,1.049,,1.029,1.02 +"Jan 06, 1997",1.159,1.176,1.143,1.169,1.066,1.161,1.11,1.136,1.139,1.212,1.156,1.324,1.206,1.18,1.296,1.066,1.086,1.074,1.095,1.031,,1.048,0.95,0.993,1.069,1.045,,1.023,1.011 +"Jan 13, 1997",1.163,1.18,1.146,1.183,1.066,1.159,1.116,1.142,1.14,1.218,1.156,1.337,1.216,1.182,1.303,1.072,1.08,1.078,1.082,1.035,,1.05,0.961,0.996,1.067,1.047,,1.027,1.021 +"Jan 20, 1997",1.16,1.177,1.144,1.183,1.064,1.156,1.114,1.133,1.139,1.214,1.152,1.335,1.215,1.181,1.297,1.07,1.08,1.076,1.083,1.031,,1.042,0.957,0.994,1.067,1.043,,1.022,1.016 +"Jan 27, 1997",1.156,1.173,1.135,1.182,1.057,1.143,1.108,1.113,1.137,1.213,1.152,1.33,1.213,1.178,1.298,1.065,1.076,1.074,1.077,1.029,,1.042,0.935,0.989,1.067,1.038,,1.023,1.014 +"Feb 03, 1997",1.154,1.171,1.136,1.182,1.056,1.144,1.112,1.116,1.135,1.209,1.152,1.332,1.213,1.173,1.291,1.064,1.078,1.078,1.078,1.029,,1.041,0.93,0.991,1.066,1.043,,1.019,1.015 +"Feb 17, 1997",1.14,1.156,1.113,1.162,1.032,1.114,1.098,1.098,1.127,1.198,1.142,1.326,1.205,1.167,1.274,1.061,1.07,1.071,1.07,1.023,,1.038,0.927,0.985,1.064,1.028,,1.012,1.012 +"Mar 03, 1997",1.114,1.129,1.074,1.129,0.993,1.069,1.07,1.057,1.11,1.179,1.123,1.286,1.178,1.13,1.268,1.028,1.044,1.051,1.038,1.007,,1.017,0.895,0.953,1.048,1.014,,1.007,0.992 +"Mar 17, 1997",1.093,1.107,1.054,1.109,0.949,1.053,1.057,1.044,1.075,1.156,1.114,1.252,1.173,1.108,1.238,1.011,1.032,1.043,1.022,0.984,,0.989,0.849,0.93,1.034,0.991,,0.976,0.972 +"Oct 06, 1997",0.983,0.994,0.951,0.952,0.9,0.968,0.93,0.956,0.969,1.031,0.97,1.133,1.034,0.976,1.133,0.873,0.946,0.968,0.927,0.9,,0.918,0.826,0.87,0.915,0.916,,0.886,0.897 +"Oct 20, 1997",0.987,0.997,0.955,0.965,0.91,0.965,0.937,0.959,0.974,1.036,0.976,1.133,1.039,0.976,1.141,0.875,0.947,0.967,0.93,0.907,,0.923,0.839,0.874,0.919,0.931,,0.892,0.906 +"Nov 03, 1997",0.992,1.002,0.958,0.966,0.917,0.966,0.94,0.96,0.984,1.043,0.977,1.133,1.041,0.988,1.145,0.884,0.951,0.967,0.937,0.913,,0.923,0.839,0.879,0.932,0.936,,0.897,0.91 +"Nov 17, 1997",1.001,1.011,0.969,0.984,0.926,0.976,0.942,0.977,0.984,1.051,0.986,1.149,1.048,0.987,1.152,0.902,0.956,0.969,0.945,0.918,,0.933,0.839,0.882,0.934,0.937,,0.909,0.911 +"Dec 01, 1997",1.005,1.015,0.973,0.992,0.931,0.979,0.947,0.979,0.986,1.056,0.986,1.156,1.052,0.99,1.155,0.911,0.954,0.965,0.944,0.918,,0.927,0.833,0.873,0.946,0.933,,0.907,0.911 +"Dec 15, 1997",1.001,1.014,0.97,0.999,0.928,0.969,0.951,0.979,0.985,1.055,0.984,1.159,1.049,0.991,1.154,0.911,0.949,0.952,0.946,0.904,,0.91,0.82,0.863,0.94,0.917,,0.889,0.893 +"Jan 05, 1998",0.998,1.011,0.965,1.002,0.91,0.965,0.943,0.981,0.969,1.055,0.988,1.164,1.052,0.994,1.155,0.905,0.945,0.948,0.942,0.892,,0.899,0.794,0.853,0.93,0.904,,0.879,0.88 +"Jan 19, 1998",0.989,1.004,0.956,0.998,0.9,0.951,0.936,0.972,0.958,1.049,0.983,1.146,1.051,0.986,1.153,0.893,0.941,0.944,0.938,0.869,,0.869,0.767,0.834,0.912,0.883,,0.859,0.852 +"Feb 02, 1998",0.984,1,0.95,0.997,0.894,0.948,0.925,0.957,0.942,1.045,0.976,1.134,1.046,0.983,1.15,0.887,0.935,0.939,0.933,0.858,,0.859,0.754,0.821,0.905,0.86,,0.846,0.848 +"Feb 16, 1998",0.977,0.993,0.942,0.989,0.889,0.94,0.919,0.947,0.929,1.038,0.972,1.133,1.044,0.977,1.143,0.878,0.93,0.934,0.926,0.855,,0.847,0.737,0.819,0.91,0.852,,0.843,0.845 +"Mar 02, 1998",0.969,0.984,0.935,0.982,0.878,0.933,0.913,0.939,0.92,1.028,0.972,1.125,1.038,0.967,1.129,0.874,0.927,0.934,0.922,0.849,,0.839,0.732,0.815,0.906,0.848,,0.837,0.837 +"Mar 16, 1998",0.957,0.972,0.92,0.967,0.87,0.916,0.895,0.934,0.906,1.017,0.968,1.113,1.027,0.955,1.118,0.864,0.922,0.931,0.915,0.84,,0.826,0.718,0.79,0.902,0.833,,0.827,0.833 +"Oct 05, 1998",0.862,0.872,0.821,0.866,0.784,0.822,0.751,0.825,0.855,0.911,0.822,0.989,0.891,0.868,1.021,0.737,0.858,0.867,0.851,0.78,,0.792,0.682,0.751,0.822,0.774,,0.754,0.783 +"Oct 19, 1998",0.869,0.88,0.823,0.865,0.785,0.823,0.76,0.823,0.857,0.925,0.88,0.98,0.895,0.87,1.029,0.765,0.86,0.868,0.854,0.784,,0.795,0.686,0.748,0.836,0.777,,0.752,0.785 +"Nov 02, 1998",0.869,0.88,0.822,0.864,0.786,0.821,0.761,0.832,0.857,0.925,0.88,0.983,0.894,0.873,1.029,0.763,0.86,0.869,0.854,0.781,,0.793,0.684,0.75,0.836,0.777,,0.743,0.784 +"Nov 16, 1998",0.866,0.876,0.819,0.865,0.785,0.813,0.765,0.826,0.857,0.922,0.89,0.982,0.888,0.873,1.028,0.751,0.861,0.871,0.854,0.785,,0.79,0.675,0.754,0.838,0.773,,0.763,0.783 +"Dec 07, 1998",0.857,0.869,0.809,0.856,0.76,0.804,0.764,0.814,0.853,0.915,0.859,0.977,0.881,0.864,1.023,0.748,0.858,0.864,0.854,0.76,,0.75,0.648,0.716,0.824,0.749,,0.739,0.754 +"Dec 21, 1998",0.855,0.867,0.807,0.855,0.753,0.803,0.756,0.819,0.848,0.914,0.861,0.977,0.881,0.864,1.022,0.745,0.854,0.86,0.849,0.756,,0.754,0.63,0.695,0.825,0.747,,0.736,0.746 +"Jan 04, 1999",0.857,0.87,0.809,0.856,0.751,0.808,0.754,0.822,0.851,0.917,0.891,0.977,0.892,0.871,1.021,0.748,0.852,0.856,0.85,0.753,,0.756,0.629,0.701,0.814,0.739,,0.739,0.746 +"Jan 18, 1999",0.863,0.877,0.813,0.856,0.766,0.811,0.756,0.823,0.858,0.928,0.895,0.98,0.911,0.877,1.029,0.766,0.853,0.853,0.852,0.754,,0.758,0.63,0.717,0.819,0.729,,0.74,0.746 +"Feb 01, 1999",0.863,0.876,0.811,0.853,0.767,0.81,0.75,0.822,0.851,0.928,0.905,0.977,0.911,0.876,1.031,0.763,0.852,0.854,0.85,0.758,,0.754,0.632,0.725,0.819,0.737,,0.746,0.751 +"Feb 15, 1999",0.857,0.871,0.803,0.85,0.758,0.797,0.744,0.826,0.842,0.924,0.889,0.975,0.911,0.871,1.025,0.762,0.851,0.854,0.85,0.749,,0.739,0.621,0.707,0.813,0.735,,0.73,0.747 +"Mar 01, 1999",0.854,0.867,0.799,0.85,0.756,0.791,0.735,0.827,0.838,0.921,0.889,0.978,0.909,0.872,1.02,0.76,0.846,0.849,0.845,0.745,,0.741,0.618,0.699,0.808,0.728,,0.731,0.74 +"Mar 15, 1999",0.858,0.87,0.805,0.855,0.765,0.8,0.735,0.828,0.832,0.922,0.889,0.986,0.911,0.877,1.017,0.767,0.846,0.851,0.843,0.76,,0.778,0.635,0.74,0.817,0.736,,0.75,0.749 +"Oct 04, 1999",0.998,1.005,0.967,0.955,0.945,0.98,0.942,0.985,0.974,1.041,0.996,1.129,1.02,0.997,1.137,0.885,0.937,0.958,0.925,0.943,,0.972,0.885,0.912,0.958,0.947,,0.927,0.946 +"Oct 18, 1999",1.006,1.013,0.978,0.988,0.955,0.979,0.962,0.997,0.98,1.049,1.003,1.144,1.025,1.001,1.143,0.901,0.943,0.964,0.93,0.946,,0.958,0.873,0.922,0.957,0.962,,0.926,0.954 +"Nov 01, 1999",1.018,1.026,0.989,0.979,0.966,0.998,0.985,1.007,0.992,1.061,1.005,1.158,1.03,1.008,1.157,0.915,0.954,0.967,0.946,0.959,,0.977,0.894,0.928,0.967,0.992,,0.929,0.966 +"Nov 15, 1999",1.054,1.061,1.024,1.008,0.99,1.037,1.017,1.042,1.039,1.098,1.054,1.203,1.057,1.048,1.197,0.947,0.981,0.986,0.978,0.998,,1.036,0.913,0.967,1.006,1.002,,0.996,0.994 +"Dec 06, 1999",1.109,1.119,1.086,1.081,1.043,1.093,1.084,1.116,1.095,1.154,1.105,1.241,1.127,1.106,1.249,1.005,1.034,1.038,1.032,1.031,,1.049,0.944,0.999,1.04,1.048,,1.027,1.031 +"Dec 20, 1999",1.121,1.132,1.096,1.093,1.066,1.102,1.092,1.121,1.105,1.169,1.124,1.237,1.145,1.12,1.26,1.029,1.043,1.039,1.045,1.034,,1.051,0.944,1.003,1.047,1.059,,1.025,1.03 +"Jan 03, 2000",1.145,1.157,1.12,1.11,1.075,1.13,1.119,1.153,1.134,1.196,1.163,1.273,1.165,1.148,1.282,1.064,1.067,1.054,1.076,1.039,,1.074,0.947,1.027,1.038,1.061,,1.036,1.038 +"Jan 17, 2000",1.193,1.21,1.182,1.179,1.134,1.191,1.192,1.193,1.191,1.244,1.216,1.317,1.211,1.21,1.331,1.104,1.104,1.074,1.123,1.046,,1.069,0.944,1.045,1.051,1.059,,1.051,1.039 +"Jan 24, 2000",1.615,1.679,1.718,1.692,1.742,1.742,1.662,1.765,1.638,1.703,1.702,1.647,1.536,1.716,1.775,1.589,1.278,1.203,1.323,1.104,,1.128,0.987,1.156,1.117,1.088,,1.133,1.083 +"Jan 31, 2000",1.667,1.735,1.785,1.816,1.749,1.786,1.796,1.776,1.729,1.758,1.716,1.647,1.641,1.77,1.852,1.599,1.291,1.216,1.337,1.111,,1.133,1.009,1.159,1.124,1.103,,1.141,1.084 +"Feb 07, 2000",1.861,1.947,1.966,1.949,1.817,2.037,1.893,2.04,1.83,2.006,1.91,1.844,1.858,2.013,2.123,1.819,1.365,1.26,1.432,1.149,,1.19,1.055,1.188,1.14,1.134,,1.193,1.129 +"Feb 14, 2000",1.574,1.623,1.617,1.679,1.599,1.585,1.699,1.536,1.628,1.657,1.536,1.796,1.61,1.635,1.777,1.451,1.383,1.25,1.465,1.169,,1.179,1.066,1.192,1.171,1.151,,1.221,1.146 +"Feb 21, 2000",1.431,1.462,1.399,1.427,1.342,1.363,1.473,1.412,1.534,1.519,1.352,1.634,1.489,1.463,1.636,1.344,1.369,1.244,1.446,1.178,,1.201,1.073,1.206,1.185,1.153,,1.234,1.147 +"Feb 28, 2000",1.399,1.424,1.368,1.398,1.319,1.349,1.383,1.374,1.469,1.472,1.334,1.57,1.438,1.431,1.579,1.305,1.361,1.242,1.434,1.19,,1.222,1.082,1.213,1.196,1.159,,1.253,1.155 +"Mar 06, 2000",1.394,1.417,1.368,1.405,1.319,1.355,1.35,1.38,1.468,1.462,1.336,1.533,1.426,1.422,1.558,1.314,1.346,1.248,1.406,1.205,,1.244,1.104,1.223,1.208,1.186,,1.246,1.182 +"Mar 13, 2000",1.382,1.404,1.352,1.398,1.322,1.325,1.345,1.371,1.449,1.45,1.326,1.54,1.396,1.399,1.555,1.298,1.344,1.248,1.403,1.203,,1.227,1.098,1.222,1.213,1.19,,1.236,1.182 +"Mar 20, 2000",1.353,1.372,1.319,1.37,1.302,1.292,1.291,1.342,1.402,1.418,1.322,1.54,1.383,1.354,1.53,1.255,1.318,1.232,1.371,1.19,,1.201,1.076,1.191,1.197,1.184,,1.228,1.17 +"Oct 02, 2000",1.456,1.47,1.448,1.465,1.461,1.435,1.449,1.425,1.465,1.501,1.4,1.587,1.49,1.455,1.608,1.367,1.368,1.364,1.371,1.342,,1.329,1.25,1.328,1.361,1.353,,1.343,1.333 +"Oct 09, 2000",1.46,1.475,1.456,1.473,1.46,1.449,1.455,1.419,1.46,1.504,1.401,1.582,1.483,1.463,1.614,1.367,1.365,1.358,1.37,1.339,,1.344,1.245,1.332,1.361,1.35,,1.333,1.326 +"Oct 16, 2000",1.526,1.544,1.53,1.54,1.534,1.526,1.527,1.505,1.518,1.572,1.414,1.677,1.56,1.541,1.674,1.434,1.417,1.386,1.44,1.385,,1.44,1.283,1.399,1.394,1.388,,1.384,1.371 +"Oct 23, 2000",1.506,1.522,1.502,1.511,1.517,1.492,1.509,1.49,1.504,1.551,1.382,1.668,1.556,1.522,1.652,1.406,1.416,1.381,1.443,1.384,,1.421,1.272,1.378,1.409,1.394,,1.375,1.364 +"Oct 30, 2000",1.505,1.521,1.504,1.522,1.518,1.488,1.511,1.489,1.517,1.549,1.383,1.663,1.552,1.513,1.65,1.405,1.41,1.388,1.426,1.379,,1.421,1.27,1.357,1.406,1.38,,1.371,1.365 +"Nov 06, 2000",1.498,1.515,1.492,1.499,1.515,1.479,1.512,1.465,1.508,1.544,1.386,1.663,1.549,1.508,1.648,1.396,1.422,1.387,1.448,1.372,,1.412,1.242,1.348,1.405,1.373,,1.368,1.353 +"Nov 13, 2000",1.506,1.525,1.507,1.51,1.51,1.5,1.526,1.489,1.515,1.551,1.382,1.665,1.55,1.527,1.65,1.406,1.428,1.385,1.461,1.36,,1.374,1.244,1.344,1.394,1.373,,1.349,1.345 +"Nov 20, 2000",1.545,1.567,1.55,1.559,1.538,1.551,1.55,1.522,1.557,1.596,1.46,1.711,1.585,1.573,1.69,1.46,1.447,1.424,1.465,1.371,,1.412,1.269,1.366,1.401,1.373,,1.359,1.353 +"Nov 27, 2000",1.564,1.588,1.574,1.6,1.557,1.57,1.565,1.541,1.566,1.616,1.506,1.721,1.605,1.586,1.715,1.471,1.454,1.428,1.474,1.381,,1.42,1.273,1.393,1.41,1.378,,1.369,1.368 +"Dec 04, 2000",1.56,1.585,1.564,1.586,1.551,1.556,1.576,1.53,1.562,1.618,1.491,1.72,1.602,1.579,1.727,1.466,1.452,1.424,1.473,1.372,,1.406,1.243,1.365,1.401,1.376,,1.358,1.363 +"Dec 11, 2000",1.561,1.588,1.565,1.593,1.551,1.554,1.576,1.537,1.563,1.622,1.484,1.726,1.605,1.59,1.733,1.463,1.458,1.426,1.482,1.357,,1.366,1.237,1.318,1.394,1.363,,1.352,1.342 +"Dec 18, 2000",1.545,1.571,1.546,1.582,1.517,1.531,1.572,1.512,1.56,1.606,1.452,1.724,1.605,1.572,1.715,1.45,1.451,1.416,1.478,1.341,,1.358,1.206,1.301,1.369,1.357,,1.338,1.325 +"Dec 25, 2000",1.54,1.567,1.535,1.577,1.486,1.516,1.568,1.518,1.562,1.605,1.459,1.722,1.599,1.563,1.711,1.459,1.459,1.433,1.478,1.336,,1.342,1.187,1.308,1.37,1.336,,1.335,1.329 +"Jan 01, 2001",1.55,1.577,1.544,1.587,1.482,1.53,1.572,1.526,1.564,1.616,1.497,1.724,1.602,1.588,1.71,1.481,1.47,1.435,1.497,1.343,,1.362,1.211,1.322,1.368,1.344,,1.349,1.329 +"Jan 08, 2001",1.542,1.568,1.535,1.58,1.473,1.517,1.572,1.526,1.556,1.606,1.485,1.724,1.604,1.561,1.702,1.474,1.468,1.432,1.496,1.343,,1.363,1.199,1.326,1.373,1.339,,1.356,1.326 +"Jan 15, 2001",1.535,1.559,1.524,1.566,1.454,1.512,1.553,1.514,1.544,1.597,1.5,1.724,1.604,1.561,1.686,1.46,1.486,1.454,1.51,1.348,,1.351,1.192,1.338,1.376,1.342,,1.366,1.337 +"Jan 22, 2001",1.531,1.554,1.516,1.554,1.446,1.505,1.553,1.485,1.542,1.592,1.488,1.694,1.601,1.561,1.682,1.449,1.493,1.463,1.516,1.357,,1.386,1.202,1.355,1.384,1.345,,1.372,1.344 +"Jan 29, 2001",1.525,1.546,1.507,1.555,1.443,1.488,1.551,1.464,1.538,1.584,1.487,1.7,1.597,1.55,1.674,1.443,1.494,1.445,1.532,1.36,,1.385,1.196,1.352,1.394,1.346,,1.371,1.349 +"Feb 05, 2001",1.506,1.526,1.489,1.524,1.43,1.473,1.542,1.439,1.527,1.56,1.464,1.698,1.595,1.525,1.644,1.422,1.49,1.443,1.526,1.351,,1.358,1.19,1.324,1.385,1.343,,1.365,1.34 +"Feb 12, 2001",1.499,1.519,1.483,1.517,1.424,1.466,1.532,1.451,1.523,1.552,1.454,1.691,1.592,1.516,1.64,1.408,1.484,1.441,1.516,1.345,,1.35,1.2,1.324,1.377,1.339,,1.353,1.336 +"Feb 19, 2001",1.477,1.498,1.464,1.505,1.41,1.447,1.496,1.424,1.51,1.529,1.43,1.682,1.58,1.481,1.625,1.372,1.461,1.433,1.483,1.322,,1.321,1.181,1.264,1.365,1.328,,1.322,1.305 +"Feb 26, 2001",1.462,1.482,1.451,1.496,1.395,1.433,1.486,1.408,1.496,1.512,1.414,1.661,1.564,1.459,1.611,1.354,1.442,1.407,1.469,1.306,,1.304,1.158,1.249,1.354,1.296,,1.318,1.286 +"Mar 05, 2001",1.443,1.464,1.428,1.469,1.359,1.418,1.45,1.4,1.473,1.499,1.412,1.627,1.546,1.45,1.601,1.336,1.409,1.383,1.43,1.278,,1.258,1.123,1.221,1.328,1.269,,1.299,1.254 +"Mar 12, 2001",1.428,1.45,1.415,1.463,1.353,1.396,1.442,1.378,1.46,1.487,1.409,1.621,1.532,1.438,1.586,1.327,1.379,1.36,1.394,1.26,,1.248,1.108,1.218,1.32,1.238,,1.266,1.245 +"Mar 19, 2001",1.407,1.428,1.392,1.423,1.339,1.388,1.384,1.367,1.44,1.464,1.389,1.589,1.509,1.427,1.565,1.293,1.368,1.353,1.379,1.244,,1.232,1.066,1.207,1.312,1.202,,1.248,1.243 +"Oct 01, 2001",1.256,1.26,1.236,1.288,1.205,1.204,1.237,1.184,1.318,1.29,1.238,1.493,1.348,1.273,1.366,1.213,1.181,1.163,1.193,1.212,,1.198,1.1,1.146,1.308,1.209,1.076,1.174,1.231 +"Oct 08, 2001",1.246,1.251,1.227,1.279,1.197,1.191,1.239,1.181,1.3,1.283,1.246,1.445,1.344,1.267,1.352,1.212,1.165,1.15,1.175,1.188,,1.166,1.078,1.158,1.285,1.196,1.038,1.133,1.217 +"Oct 15, 2001",1.24,1.247,1.22,1.277,1.191,1.183,1.23,1.163,1.297,1.28,1.236,1.457,1.345,1.256,1.348,1.211,1.169,1.145,1.186,1.164,,1.128,1.059,1.126,1.251,1.167,1.026,1.119,1.195 +"Oct 22, 2001",1.227,1.236,1.208,1.271,1.174,1.163,1.227,1.145,1.303,1.27,1.209,1.434,1.338,1.238,1.34,1.204,1.161,1.143,1.174,1.131,,1.113,1.033,1.104,1.223,1.121,0.971,1.087,1.168 +"Oct 29, 2001",1.226,1.235,1.206,1.268,1.172,1.162,1.223,1.147,1.301,1.27,1.208,1.386,1.338,1.239,1.343,1.202,1.148,1.121,1.167,1.129,,1.105,1.004,1.084,1.242,1.101,0.94,1.092,1.165 +"Nov 05, 2001",1.211,1.22,1.199,1.261,1.162,1.156,1.221,1.129,1.295,1.248,1.191,1.37,1.325,1.219,1.313,1.185,1.141,1.115,1.159,1.114,,1.082,0.976,1.065,1.22,1.079,0.916,1.088,1.15 +"Nov 12, 2001",1.201,1.211,1.189,1.251,1.147,1.145,1.217,1.134,1.284,1.241,1.189,1.34,1.313,1.21,1.303,1.183,1.115,1.086,1.136,1.092,,1.066,0.976,1.058,1.194,1.069,0.916,1.062,1.12 +"Nov 19, 2001",1.18,1.19,1.169,1.229,1.128,1.12,1.207,1.122,1.275,1.221,1.151,1.309,1.27,1.176,1.283,1.173,1.097,1.066,1.119,1.065,,1.03,0.936,1.005,1.151,1.033,0.874,1.042,1.106 +"Nov 26, 2001",1.167,1.178,1.153,1.206,1.121,1.107,1.2,1.09,1.263,1.211,1.14,1.309,1.262,1.155,1.28,1.163,1.085,1.056,1.106,1.044,,1.021,0.92,0.99,1.13,1.015,0.878,1.013,1.088 +"Dec 03, 2001",1.159,1.171,1.146,1.201,1.116,1.104,1.164,1.088,1.254,1.205,1.131,1.309,1.254,1.152,1.276,1.152,1.078,1.052,1.097,1.018,,1.01,0.916,0.969,1.107,0.983,0.857,0.985,1.058 +"Dec 10, 2001",1.155,1.169,1.147,1.202,1.113,1.104,1.174,1.085,1.25,1.201,1.136,1.308,1.254,1.144,1.274,1.147,1.066,1.029,1.092,1.002,,0.984,0.898,0.931,1.083,0.963,0.824,0.97,1.05 +"Dec 17, 2001",1.149,1.164,1.143,1.203,1.104,1.099,1.173,1.083,1.25,1.196,1.133,1.278,1.231,1.134,1.272,1.144,1.059,1.026,1.081,0.978,,0.966,0.879,0.91,1.073,0.925,0.805,0.938,1.035 +"Dec 24, 2001",1.152,1.168,1.145,1.202,1.101,1.102,1.172,1.101,1.25,1.202,1.147,1.313,1.235,1.152,1.277,1.146,1.061,1.029,1.084,0.968,,0.962,0.869,0.911,1.045,0.923,0.799,0.931,1.025 +"Dec 31, 2001",1.159,1.176,1.153,1.204,1.11,1.118,1.175,1.1,1.252,1.21,1.156,1.313,1.237,1.151,1.289,1.154,1.065,1.024,1.093,0.97,,0.967,0.869,0.935,1.051,0.924,0.812,0.928,1.026 +"Jan 07, 2002",1.168,1.186,1.166,1.207,1.111,1.149,1.171,1.107,1.254,1.218,1.194,1.314,1.241,1.166,1.296,1.158,1.067,1.027,1.096,0.972,,0.964,0.869,0.934,1.051,0.939,0.825,0.93,1.022 +"Jan 14, 2002",1.166,1.185,1.165,1.204,1.11,1.149,1.171,1.097,1.254,1.217,1.19,1.314,1.249,1.185,1.282,1.16,1.067,1.024,1.096,0.965,,0.956,0.848,0.917,1.042,0.936,0.824,0.924,1.015 +"Jan 21, 2002",1.162,1.181,1.162,1.204,1.109,1.145,1.169,1.089,1.256,1.212,1.181,1.329,1.25,1.193,1.264,1.16,1.067,1.022,1.099,0.948,,0.95,0.842,0.908,1.027,0.93,0.798,0.916,0.978 +"Jan 28, 2002",1.161,1.181,1.161,1.203,1.107,1.143,1.164,1.086,1.256,1.213,1.176,1.343,1.258,1.197,1.264,1.161,1.065,1.018,1.098,0.949,,0.954,0.846,0.899,1.029,0.924,0.79,0.919,0.981 +"Feb 04, 2002",1.163,1.182,1.16,1.203,1.099,1.144,1.164,1.09,1.257,1.216,1.169,1.343,1.258,1.197,1.27,1.163,1.063,1.017,1.095,0.951,,0.964,0.845,0.906,1.029,0.93,0.8,0.919,0.979 +"Feb 11, 2002",1.16,1.179,1.16,1.202,1.098,1.144,1.164,1.089,1.257,1.211,1.166,1.343,1.255,1.198,1.262,1.158,1.061,1.018,1.09,0.955,,0.967,0.841,0.902,1.037,0.932,0.802,0.927,0.983 +"Feb 18, 2002",1.16,1.178,1.16,1.202,1.096,1.144,1.164,1.092,1.257,1.21,1.167,1.328,1.246,1.194,1.263,1.158,1.058,1.018,1.086,0.955,,0.967,0.838,0.91,1.033,0.931,0.809,0.928,0.983 +"Feb 25, 2002",1.159,1.178,1.159,1.202,1.094,1.143,1.163,1.087,1.257,1.21,1.165,1.328,1.246,1.191,1.264,1.158,1.058,1.016,1.086,0.955,,0.965,0.84,0.908,1.034,0.931,0.808,0.927,0.983 +"Mar 04, 2002",1.161,1.179,1.158,1.202,1.092,1.144,1.154,1.092,1.257,1.212,1.168,1.328,1.248,1.19,1.267,1.16,1.059,1.019,1.087,0.962,,0.969,0.849,0.933,1.038,0.933,0.819,0.938,0.991 +"Mar 11, 2002",1.173,1.19,1.162,1.2,1.096,1.156,1.139,1.107,1.25,1.232,1.168,1.329,1.252,1.201,1.318,1.164,1.066,1.037,1.086,0.984,,0.99,0.872,0.951,1.056,0.96,0.844,0.965,1.006 +"Mar 18, 2002",1.187,1.202,1.175,1.215,1.106,1.17,1.143,1.129,1.253,1.244,1.178,1.36,1.259,1.216,1.335,1.169,1.075,1.045,1.095,1.016,,1.024,0.901,0.98,1.089,1.003,0.865,0.99,1.04 +"Oct 07, 2002",1.256,1.262,1.231,1.241,1.185,1.246,1.176,1.24,1.267,1.3,1.222,1.449,1.32,1.298,1.388,1.209,1.162,1.185,1.147,1.188,,1.206,1.12,1.185,1.217,1.206,1.073,1.152,1.206 +"Oct 14, 2002",1.264,1.27,1.232,1.252,1.192,1.239,1.173,1.24,1.269,1.312,1.212,1.472,1.322,1.305,1.403,1.223,1.179,1.191,1.171,1.202,,1.223,1.143,1.187,1.237,1.216,1.086,1.167,1.217 +"Oct 21, 2002",1.271,1.277,1.237,1.255,1.199,1.244,1.191,1.243,1.274,1.319,1.226,1.476,1.341,1.315,1.405,1.23,1.199,1.203,1.196,1.211,,1.236,1.147,1.189,1.251,1.221,1.09,1.176,1.229 +"Oct 28, 2002",1.272,1.278,1.238,1.257,1.209,1.242,1.198,1.232,1.273,1.32,1.227,1.481,1.344,1.322,1.407,1.228,1.192,1.192,1.192,1.211,,1.236,1.125,1.167,1.253,1.219,1.077,1.175,1.233 +"Nov 04, 2002",1.277,1.283,1.242,1.261,1.214,1.244,1.197,1.248,1.274,1.327,1.237,1.512,1.348,1.333,1.413,1.234,1.198,1.198,1.198,1.214,,1.233,1.092,1.171,1.269,1.219,1.048,1.178,1.239 +"Nov 11, 2002",1.275,1.283,1.24,1.259,1.211,1.242,1.195,1.245,1.287,1.328,1.232,1.512,1.351,1.328,1.407,1.245,1.197,1.191,1.201,1.198,,1.219,1.068,1.158,1.253,1.201,1.025,1.163,1.225 +"Nov 18, 2002",1.272,1.28,1.235,1.26,1.214,1.229,1.193,1.241,1.285,1.326,1.222,1.527,1.358,1.326,1.403,1.243,1.198,1.185,1.207,1.192,,1.21,1.055,1.139,1.245,1.187,1.008,1.161,1.225 +"Nov 25, 2002",1.279,1.286,1.243,1.262,1.218,1.238,1.21,1.257,1.29,1.333,1.219,1.527,1.359,1.341,1.413,1.245,1.195,1.178,1.206,1.2,,1.214,1.071,1.141,1.256,1.19,1.039,1.163,1.239 +"Dec 02, 2002",1.284,1.292,1.252,1.271,1.222,1.251,1.223,1.263,1.292,1.337,1.223,1.527,1.368,1.341,1.418,1.248,1.196,1.175,1.21,1.197,,1.216,1.072,1.148,1.251,1.193,1.036,1.158,1.235 +"Dec 09, 2002",1.299,1.309,1.273,1.294,1.224,1.279,1.237,1.285,1.294,1.352,1.26,1.527,1.377,1.374,1.43,1.259,1.205,1.183,1.22,1.193,,1.202,1.067,1.151,1.251,1.193,1.022,1.157,1.225 +"Dec 16, 2002",1.323,1.335,1.297,1.32,1.231,1.307,1.266,1.309,1.317,1.381,1.277,1.527,1.385,1.397,1.464,1.289,1.216,1.185,1.238,1.197,,1.206,1.071,1.151,1.279,1.192,1.017,1.157,1.224 +"Dec 23, 2002",1.363,1.376,1.343,1.363,1.284,1.357,1.309,1.34,1.346,1.42,1.312,1.544,1.436,1.451,1.498,1.326,1.247,1.223,1.263,1.219,,1.241,1.093,1.168,1.295,1.198,1.047,1.189,1.248 +"Dec 30, 2002",1.408,1.421,1.384,1.418,1.322,1.393,1.339,1.384,1.376,1.464,1.337,1.636,1.49,1.475,1.539,1.382,1.314,1.28,1.338,1.269,,1.276,1.129,1.219,1.335,1.22,1.078,1.268,1.297 +"Jan 06, 2003",1.428,1.442,1.409,1.445,1.35,1.417,1.366,1.41,1.407,1.484,1.352,1.667,1.503,1.512,1.557,1.394,1.327,1.281,1.359,1.276,,1.28,1.134,1.226,1.334,1.227,1.094,1.277,1.304 +"Jan 13, 2003",1.431,1.448,1.412,1.442,1.368,1.416,1.373,1.408,1.419,1.491,1.388,1.682,1.515,1.512,1.571,1.399,1.331,1.29,1.359,1.258,,1.268,1.136,1.216,1.321,1.213,1.084,1.252,1.283 +"Jan 20, 2003",1.453,1.471,1.436,1.458,1.386,1.447,1.395,1.45,1.429,1.515,1.422,1.714,1.545,1.534,1.589,1.425,1.353,1.296,1.392,1.262,,1.268,1.129,1.221,1.334,1.221,1.098,1.267,1.275 +"Jan 27, 2003",1.497,1.517,1.49,1.53,1.412,1.502,1.435,1.511,1.464,1.557,1.487,1.729,1.571,1.583,1.623,1.474,1.383,1.331,1.42,1.279,,1.28,1.146,1.269,1.341,1.228,1.113,1.299,1.286 +"Feb 03, 2003",1.535,1.554,1.527,1.564,1.459,1.54,1.465,1.54,1.504,1.594,1.527,1.782,1.605,1.613,1.65,1.525,1.427,1.365,1.469,1.326,,1.332,1.201,1.295,1.406,1.29,1.162,1.336,1.326 +"Feb 10, 2003",1.716,1.742,1.731,1.773,1.635,1.759,1.645,1.743,1.696,1.774,1.688,1.945,1.775,1.808,1.811,1.721,1.568,1.516,1.603,1.438,,1.435,1.29,1.452,1.499,1.382,1.269,1.466,1.44 +"Feb 17, 2003",1.731,1.756,1.738,1.775,1.672,1.748,1.684,1.738,1.744,1.792,1.724,1.982,1.8,1.82,1.833,1.735,1.589,1.528,1.632,1.47,,1.458,1.309,1.477,1.529,1.429,1.277,1.498,1.471 +"Feb 24, 2003",1.752,1.777,1.757,1.801,1.679,1.76,1.723,1.771,1.765,1.817,1.732,2.013,1.819,1.848,1.871,1.748,1.6,1.523,1.653,1.483,,1.486,1.326,1.473,1.557,1.433,1.302,1.51,1.48 +"Mar 03, 2003",1.838,1.867,1.854,1.918,1.717,1.88,1.78,1.87,1.796,1.909,1.835,2.083,1.907,1.915,1.966,1.849,1.631,1.546,1.689,1.529,,1.529,1.363,1.503,1.611,1.48,1.336,1.557,1.526 +"Mar 10, 2003",1.854,1.885,1.862,1.923,1.777,1.863,1.809,1.882,1.839,1.936,1.833,2.114,1.919,1.961,1.991,1.872,1.636,1.55,1.695,1.527,,1.536,1.368,1.532,1.611,1.482,1.339,1.551,1.518 +"Mar 17, 2003",1.803,1.831,1.793,1.862,1.746,1.761,1.788,1.808,1.811,1.889,1.811,2.084,1.907,1.894,1.933,1.841,1.623,1.531,1.687,1.497,,1.483,1.328,1.474,1.587,1.463,1.313,1.527,1.479 +"Oct 06, 2003",1.344,1.358,1.295,1.354,1.274,1.265,1.26,1.296,1.367,1.42,1.295,1.512,1.437,1.414,1.493,1.338,1.254,1.23,1.271,1.215,,1.191,1.135,1.15,1.236,1.23,1.109,1.18,1.253 +"Oct 13, 2003",1.379,1.392,1.335,1.398,1.29,1.312,1.291,1.349,1.383,1.452,1.323,1.558,1.463,1.457,1.519,1.372,1.268,1.245,1.283,1.261,,1.232,1.197,1.176,1.266,1.319,1.168,1.231,1.275 +"Oct 20, 2003",1.383,1.395,1.34,1.402,1.305,1.321,1.269,1.334,1.4,1.451,1.333,1.564,1.457,1.453,1.504,1.386,1.275,1.26,1.285,1.277,,1.24,1.209,1.207,1.281,1.328,1.161,1.237,1.31 +"Oct 27, 2003",1.386,1.399,1.343,1.398,1.314,1.322,1.292,1.329,1.402,1.456,1.321,1.504,1.46,1.458,1.509,1.394,1.283,1.265,1.296,1.271,,1.233,1.191,1.197,1.283,1.299,1.148,1.24,1.308 +"Nov 03, 2003",1.383,1.398,1.347,1.395,1.317,1.333,1.301,1.325,1.402,1.45,1.315,1.504,1.461,1.459,1.495,1.393,1.281,1.261,1.295,1.258,,1.223,1.152,1.187,1.28,1.28,1.109,1.23,1.293 +"Nov 10, 2003",1.386,1.401,1.348,1.392,1.315,1.337,1.302,1.325,1.407,1.456,1.314,1.504,1.461,1.464,1.504,1.396,1.281,1.261,1.294,1.252,,1.222,1.138,1.19,1.28,1.27,1.105,1.22,1.285 +"Nov 17, 2003",1.4,1.417,1.368,1.407,1.323,1.363,1.313,1.36,1.421,1.471,1.332,1.58,1.489,1.48,1.524,1.403,1.285,1.264,1.3,1.25,,1.22,1.141,1.197,1.282,1.269,1.122,1.21,1.284 +"Nov 24, 2003",1.411,1.43,1.383,1.421,1.342,1.376,1.328,1.403,1.433,1.482,1.332,1.611,1.501,1.496,1.535,1.411,1.294,1.27,1.311,1.245,,1.234,1.148,1.211,1.252,1.267,1.114,1.213,1.278 +"Dec 01, 2003",1.413,1.434,1.387,1.418,1.345,1.386,1.33,1.397,1.434,1.486,1.369,1.61,1.501,1.493,1.535,1.422,1.293,1.267,1.311,1.237,,1.235,1.141,1.192,1.242,1.261,1.088,1.206,1.268 +"Dec 08, 2003",1.426,1.447,1.399,1.426,1.355,1.397,1.346,1.419,1.45,1.501,1.407,1.656,1.518,1.514,1.552,1.431,1.305,1.272,1.327,1.241,,1.24,1.138,1.197,1.249,1.258,1.088,1.215,1.269 +"Dec 15, 2003",1.459,1.481,1.447,1.491,1.386,1.446,1.369,1.494,1.471,1.527,1.429,1.72,1.532,1.548,1.58,1.45,1.324,1.279,1.354,1.263,,1.261,1.15,1.204,1.299,1.269,1.101,1.237,1.279 +"Dec 22, 2003",1.489,1.514,1.478,1.514,1.412,1.484,1.403,1.513,1.494,1.561,1.466,1.763,1.571,1.587,1.619,1.475,1.356,1.321,1.38,1.276,,1.273,1.16,1.223,1.306,1.284,1.108,1.259,1.288 +"Dec 29, 2003",1.491,1.517,1.477,1.513,1.42,1.477,1.423,1.51,1.494,1.566,1.456,1.763,1.572,1.594,1.626,1.478,1.361,1.324,1.386,1.274,,1.273,1.154,1.227,1.298,1.281,1.106,1.259,1.289 +"Jan 05, 2004",1.498,1.523,1.488,1.522,1.428,1.495,1.435,1.5,1.498,1.569,1.463,1.763,1.577,1.594,1.628,1.484,1.366,1.332,1.39,1.279,,1.282,1.163,1.229,1.303,1.279,1.108,1.27,1.293 +"Jan 12, 2004",1.562,1.59,1.549,1.59,1.487,1.541,1.506,1.591,1.587,1.64,1.53,1.835,1.635,1.667,1.703,1.552,1.435,1.401,1.458,1.317,,1.328,1.2,1.292,1.35,1.294,1.126,1.31,1.329 +"Jan 19, 2004",1.584,1.614,1.581,1.607,1.518,1.582,1.55,1.625,1.61,1.659,1.555,1.885,1.673,1.706,1.723,1.557,1.456,1.414,1.484,1.324,,1.333,1.21,1.299,1.366,1.303,1.143,1.318,1.328 +"Jan 26, 2004",1.622,1.652,1.623,1.668,1.547,1.613,1.601,1.652,1.663,1.697,1.611,1.931,1.71,1.737,1.746,1.614,1.479,1.421,1.518,1.354,,1.375,1.234,1.342,1.395,1.326,1.168,1.349,1.357 +"Feb 02, 2004",1.625,1.657,1.626,1.677,1.565,1.607,1.614,1.648,1.667,1.703,1.595,1.934,1.716,1.743,1.746,1.629,1.488,1.43,1.527,1.345,,1.364,1.225,1.322,1.387,1.319,1.171,1.34,1.349 +"Feb 09, 2004",1.615,1.647,1.607,1.668,1.572,1.571,1.604,1.613,1.661,1.699,1.565,1.937,1.724,1.736,1.737,1.631,1.48,1.418,1.523,1.339,,1.361,1.212,1.304,1.377,1.315,1.153,1.336,1.341 +"Feb 16, 2004",1.611,1.642,1.602,1.663,1.562,1.57,1.608,1.585,1.657,1.693,1.573,1.874,1.715,1.717,1.73,1.634,1.476,1.413,1.519,1.345,,1.351,1.212,1.311,1.384,1.319,1.154,1.349,1.349 +"Feb 23, 2004",1.609,1.64,1.602,1.664,1.559,1.567,1.605,1.614,1.654,1.688,1.573,1.934,1.722,1.721,1.72,1.63,1.477,1.414,1.52,1.347,,1.352,1.21,1.315,1.384,1.32,1.157,1.359,1.346 +"Mar 01, 2004",1.603,1.63,1.586,1.647,1.557,1.557,1.582,1.53,1.65,1.682,1.567,1.77,1.708,1.697,1.719,1.627,1.478,1.416,1.52,1.365,,1.363,1.247,1.33,1.386,1.331,1.177,1.398,1.365 +"Mar 08, 2004",1.601,1.627,1.584,1.645,1.554,1.555,1.556,1.552,1.656,1.678,1.557,1.813,1.709,1.691,1.715,1.623,1.476,1.416,1.518,1.381,,1.413,1.258,1.345,1.404,1.335,1.193,1.404,1.381 +"Mar 15, 2004",1.591,1.617,1.574,1.641,1.553,1.54,1.544,1.528,1.652,1.667,1.54,1.843,1.696,1.671,1.706,1.615,1.471,1.41,1.513,1.372,,1.388,1.244,1.337,1.4,1.335,1.197,1.391,1.373 +"Oct 04, 2004",1.828,1.836,1.812,1.852,1.76,1.784,1.828,1.862,1.829,1.865,1.852,2.072,1.852,1.899,1.944,1.755,1.761,1.765,1.758,1.738,,1.796,1.659,1.736,1.751,1.734,1.621,1.707,1.762 +"Oct 11, 2004",1.908,1.92,1.891,1.909,1.837,1.899,1.883,1.938,1.857,1.954,1.904,2.148,1.886,1.969,2.049,1.836,1.815,1.798,1.824,1.783,,1.829,1.703,1.782,1.797,1.807,1.661,1.749,1.796 +"Oct 18, 2004",1.992,2.004,1.971,2.011,1.921,1.956,1.94,2.023,1.991,2.041,2.032,2.235,1.957,2.063,2.129,1.931,1.894,1.879,1.904,1.858,,1.914,1.776,1.875,1.854,1.914,1.736,1.819,1.859 +"Oct 25, 2004",2.06,2.074,2.04,2.085,1.978,2.02,2.036,2.095,2.048,2.113,2.075,2.346,2.044,2.123,2.199,2.011,1.951,1.94,1.957,1.913,,1.95,1.82,1.911,1.957,1.938,1.788,1.873,1.922 +"Nov 01, 2004",2.06,2.075,2.034,2.065,1.995,1.993,2.098,2.069,2.061,2.117,2.051,2.358,2.07,2.132,2.205,2.002,1.967,1.938,1.984,1.895,,1.928,1.796,1.889,1.97,1.927,1.768,1.838,1.902 +"Nov 08, 2004",2.028,2.044,2.001,2.02,1.962,1.961,2.089,2.035,2.033,2.087,2.012,2.357,2.06,2.086,2.181,1.969,1.945,1.918,1.962,1.859,,1.885,1.754,1.803,1.934,1.905,1.71,1.79,1.874 +"Nov 15, 2004",2.017,2.036,1.982,1.99,1.961,1.945,2.061,2.027,2.009,2.088,2.007,2.357,2.055,2.068,2.207,1.949,1.92,1.882,1.943,1.816,,1.842,1.718,1.777,1.903,1.839,1.678,1.742,1.842 +"Nov 22, 2004",2.025,2.044,1.995,2.018,1.966,1.947,2.064,2.048,2.03,2.094,2.061,2.32,2.047,2.091,2.206,1.953,1.923,1.88,1.949,1.828,,1.851,1.729,1.801,1.884,1.859,1.672,1.768,1.853 +"Nov 29, 2004",2.03,2.049,1.997,2.018,1.966,1.956,2.061,2.046,2.036,2.101,2.041,2.308,2.038,2.096,2.214,1.968,1.919,1.883,1.941,1.829,,1.858,1.727,1.809,1.882,1.854,1.688,1.762,1.86 +"Dec 06, 2004",1.97,1.991,1.932,1.966,1.918,1.859,2.039,1.964,1.968,2.046,1.966,2.272,2.021,2.023,2.144,1.935,1.887,1.86,1.902,1.752,,1.796,1.643,1.696,1.849,1.762,1.629,1.678,1.78 +"Dec 13, 2004",1.947,1.97,1.907,1.935,1.881,1.849,2.005,1.932,1.957,2.031,1.942,2.259,2.003,1.995,2.157,1.889,1.849,1.815,1.87,1.685,,1.713,1.612,1.639,1.783,1.684,1.548,1.63,1.705 +"Dec 20, 2004",1.993,2.019,1.973,2.002,1.907,1.95,2.028,1.999,2.027,2.068,2.044,2.271,2.032,2.062,2.177,1.933,1.871,1.824,1.899,1.719,,1.726,1.605,1.733,1.786,1.691,1.546,1.702,1.743 +"Dec 27, 2004",1.978,2.002,1.953,1.973,1.906,1.913,2.044,1.982,2.009,2.052,2.027,2.272,2.034,2.052,2.16,1.908,1.875,1.835,1.899,1.717,,1.743,1.565,1.711,1.818,1.703,1.531,1.669,1.747 +"Jan 03, 2005",1.951,1.976,1.922,1.95,1.89,1.861,2.028,1.944,1.982,2.028,1.985,2.259,2.018,2.016,2.145,1.88,1.865,1.825,1.889,1.684,,1.7,1.547,1.652,1.807,1.667,1.495,1.641,1.704 +"Jan 10, 2005",1.946,1.97,1.919,1.961,1.868,1.866,2.01,1.925,1.984,2.02,1.971,2.247,1.998,1.998,2.149,1.866,1.863,1.831,1.882,1.677,,1.698,1.54,1.653,1.797,1.664,1.496,1.641,1.685 +"Jan 17, 2005",1.964,1.987,1.939,1.99,1.879,1.893,2.014,1.924,1.991,2.035,2.017,2.247,1.998,2.024,2.147,1.898,1.874,1.834,1.898,1.716,,1.728,1.563,1.697,1.797,1.714,1.519,1.692,1.733 +"Jan 24, 2005",1.99,2.014,1.969,2.012,1.913,1.938,2.032,1.96,1.992,2.062,2.049,2.26,2.014,2.059,2.167,1.93,1.88,1.835,1.907,1.731,,1.751,1.588,1.701,1.811,1.723,1.549,1.721,1.736 +"Jan 31, 2005",2.018,2.043,1.992,2.026,1.931,1.965,2.066,1.98,2.029,2.096,2.034,2.297,2.024,2.097,2.211,1.959,1.899,1.857,1.924,1.749,,1.758,1.604,1.731,1.835,1.735,1.566,1.735,1.761 +"Feb 07, 2005",1.99,2.013,1.968,1.992,1.92,1.936,2.063,1.942,2.025,2.062,2.004,2.26,2.019,2.068,2.173,1.918,1.884,1.85,1.905,1.739,,1.734,1.593,1.702,1.832,1.737,1.557,1.725,1.745 +"Feb 14, 2005",1.981,2.003,1.961,2.001,1.913,1.919,2.058,1.917,2.027,2.048,2.016,2.223,2.015,2.056,2.147,1.917,1.875,1.84,1.896,1.743,,1.742,1.601,1.694,1.83,1.732,1.554,1.736,1.752 +"Feb 21, 2005",1.984,2.005,1.967,2.019,1.91,1.926,2.037,1.93,2.03,2.046,2.021,2.223,2.015,2.06,2.137,1.923,1.878,1.843,1.899,1.758,,1.762,1.6,1.712,1.83,1.749,1.571,1.75,1.773 +"Feb 28, 2005",2.043,2.061,2.031,2.07,1.969,2.002,2.089,2.015,2.091,2.1,2.074,2.272,2.045,2.115,2.195,1.975,1.905,1.864,1.929,1.847,,1.864,1.733,1.811,1.902,1.837,1.649,1.837,1.859 +"Mar 07, 2005",2.089,2.108,2.079,2.125,2.038,2.041,2.124,2.068,2.113,2.145,2.11,2.322,2.08,2.172,2.222,2.042,1.961,1.915,1.988,1.878,,1.894,1.758,1.878,1.925,1.866,1.727,1.858,1.901 +"Mar 14, 2005",2.119,2.139,2.113,2.173,2.061,2.065,2.15,2.127,2.161,2.175,2.126,2.371,2.116,2.217,2.25,2.063,1.983,1.932,2.014,1.897,,1.927,1.775,1.904,1.946,1.901,1.773,1.867,1.914 +"Oct 03, 2005",2.692,2.685,2.632,2.724,2.564,2.569,2.628,2.68,2.658,2.716,2.66,2.925,2.642,2.745,2.809,2.585,2.766,2.716,2.792,2.756,,2.796,2.686,2.835,2.749,2.737,2.608,2.754,2.771 +"Oct 10, 2005",2.648,2.636,2.571,2.614,2.54,2.514,2.626,2.602,2.621,2.666,2.609,2.825,2.632,2.685,2.75,2.543,2.797,2.795,2.797,2.777,,2.827,2.753,2.897,2.813,2.83,2.661,2.672,2.787 +"Oct 17, 2005",2.65,2.634,2.561,2.622,2.517,2.505,2.602,2.581,2.594,2.667,2.595,2.887,2.623,2.691,2.767,2.523,2.806,2.822,2.797,2.82,,2.824,2.806,2.877,2.859,2.889,2.686,2.671,2.87 +"Oct 24, 2005",2.623,2.595,2.522,2.579,2.477,2.467,2.579,2.533,2.554,2.633,2.569,2.849,2.566,2.655,2.728,2.5,2.737,2.747,2.731,2.911,,3.02,2.936,2.865,3.045,2.956,2.804,2.674,2.966 +"Oct 31, 2005",2.577,2.566,2.489,2.542,2.406,2.458,2.52,2.514,2.552,2.614,2.545,2.849,2.573,2.615,2.712,2.483,2.642,2.585,2.673,2.7,,2.785,2.567,2.694,2.799,2.755,2.515,2.501,2.744 +"Nov 07, 2005",2.508,2.508,2.435,2.498,2.365,2.392,2.468,2.439,2.497,2.557,2.48,2.812,2.528,2.557,2.649,2.435,2.55,2.541,2.555,2.508,,2.565,2.321,2.518,2.638,2.526,2.269,2.355,2.545 +"Nov 14, 2005",2.466,2.469,2.397,2.449,2.322,2.361,2.434,2.415,2.473,2.521,2.437,2.762,2.501,2.507,2.615,2.401,2.48,2.473,2.483,2.426,,2.437,2.217,2.377,2.507,2.438,2.181,2.298,2.497 +"Nov 21, 2005",2.431,2.441,2.37,2.418,2.306,2.33,2.415,2.376,2.443,2.497,2.409,2.762,2.457,2.472,2.604,2.371,2.404,2.396,2.409,2.328,,2.323,2.159,2.29,2.406,2.334,2.106,2.197,2.402 +"Nov 28, 2005",2.417,2.429,2.361,2.413,2.309,2.314,2.403,2.373,2.416,2.483,2.405,2.749,2.441,2.464,2.58,2.366,2.389,2.372,2.398,2.293,,2.283,2.104,2.227,2.372,2.274,2.07,2.201,2.366 +"Dec 05, 2005",2.41,2.426,2.357,2.411,2.267,2.332,2.37,2.39,2.412,2.484,2.394,2.737,2.416,2.448,2.585,2.377,2.36,2.35,2.366,2.247,,2.242,2.086,2.208,2.308,2.243,2.014,2.161,2.308 +"Dec 12, 2005",2.414,2.429,2.357,2.405,2.257,2.344,2.365,2.389,2.426,2.489,2.41,2.737,2.407,2.467,2.591,2.376,2.361,2.353,2.365,2.257,,2.244,2.107,2.217,2.312,2.268,2.05,2.187,2.301 +"Dec 19, 2005",2.438,2.454,2.379,2.415,2.303,2.369,2.382,2.402,2.455,2.518,2.45,2.712,2.432,2.511,2.603,2.421,2.372,2.348,2.386,2.27,,2.264,2.135,2.222,2.326,2.28,2.048,2.193,2.316 +"Dec 26, 2005",2.433,2.45,2.384,2.431,2.302,2.364,2.398,2.399,2.453,2.508,2.463,2.712,2.43,2.505,2.601,2.397,2.371,2.346,2.384,2.247,,2.233,2.109,2.182,2.308,2.245,2.012,2.214,2.275 +"Jan 02, 2006",2.433,2.451,2.396,2.45,2.321,2.369,2.406,2.403,2.463,2.5,2.445,2.787,2.435,2.484,2.6,2.382,2.377,2.355,2.39,2.238,,2.223,2.107,2.193,2.294,2.231,2.001,2.198,2.271 +"Jan 09, 2006",2.444,2.462,2.409,2.465,2.351,2.38,2.398,2.423,2.474,2.509,2.46,2.786,2.433,2.504,2.598,2.403,2.385,2.352,2.404,2.248,,2.259,2.13,2.201,2.309,2.246,2.034,2.202,2.271 +"Jan 16, 2006",2.431,2.452,2.401,2.472,2.34,2.363,2.396,2.4,2.465,2.498,2.45,2.798,2.445,2.512,2.581,2.385,2.368,2.328,2.389,2.202,,2.188,2.126,2.126,2.268,2.22,2.003,2.146,2.216 +"Jan 23, 2006",2.463,2.485,2.44,2.521,2.357,2.402,2.439,2.443,2.496,2.529,2.502,2.811,2.449,2.551,2.597,2.438,2.383,2.342,2.405,2.223,,2.201,2.131,2.144,2.273,2.218,2.03,2.193,2.25 +"Jan 30, 2006",2.461,2.482,2.432,2.483,2.375,2.405,2.437,2.429,2.494,2.531,2.484,2.811,2.469,2.541,2.6,2.439,2.385,2.362,2.396,2.229,,2.217,2.132,2.162,2.282,2.218,2.044,2.199,2.255 +"Feb 06, 2006",2.447,2.466,2.417,2.467,2.36,2.386,2.435,2.417,2.475,2.512,2.468,2.811,2.453,2.525,2.586,2.412,2.373,2.35,2.386,2.237,,2.234,2.149,2.177,2.283,2.223,2.067,2.201,2.269 +"Feb 13, 2006",2.417,2.436,2.379,2.425,2.333,2.338,2.396,2.389,2.463,2.486,2.424,2.811,2.455,2.491,2.582,2.354,2.363,2.336,2.377,2.218,,2.203,2.143,2.132,2.276,2.205,2.044,2.174,2.247 +"Feb 20, 2006",2.397,2.414,2.366,2.414,2.295,2.334,2.391,2.376,2.453,2.459,2.427,2.761,2.432,2.457,2.55,2.337,2.331,2.302,2.346,2.214,,2.192,2.119,2.13,2.267,2.211,2.033,2.166,2.249 +"Feb 27, 2006",2.412,2.43,2.389,2.457,2.298,2.366,2.373,2.397,2.469,2.471,2.439,2.761,2.407,2.479,2.56,2.352,2.332,2.298,2.35,2.223,,2.223,2.133,2.154,2.274,2.216,2.061,2.183,2.249 +"Mar 06, 2006",2.443,2.458,2.42,2.496,2.323,2.405,2.379,2.432,2.483,2.498,2.458,2.761,2.428,2.519,2.581,2.384,2.347,2.318,2.363,2.282,,2.298,2.168,2.236,2.335,2.257,2.108,2.244,2.316 +"Mar 13, 2006",2.419,2.432,2.385,2.441,2.312,2.363,2.366,2.386,2.486,2.477,2.429,2.749,2.409,2.503,2.554,2.37,2.342,2.302,2.363,2.272,,2.284,2.167,2.21,2.343,2.254,2.092,2.217,2.304 +"Oct 02, 2006",2.396,2.411,2.368,2.455,2.253,2.319,2.394,2.344,2.548,2.452,2.452,2.667,2.418,2.435,2.541,2.34,2.336,2.347,2.33,2.245,,2.257,2.272,2.177,2.274,2.24,2.128,2.158,2.316 +"Oct 09, 2006",2.387,2.402,2.356,2.45,2.218,2.316,2.376,2.332,2.532,2.444,2.438,2.667,2.41,2.439,2.534,2.324,2.319,2.328,2.315,2.241,,2.241,2.241,2.172,2.262,2.246,2.11,2.157,2.316 +"Oct 16, 2006",2.385,2.398,2.357,2.455,2.213,2.326,2.354,2.336,2.522,2.437,2.382,2.667,2.402,2.437,2.516,2.334,2.316,2.325,2.311,2.259,,2.276,2.226,2.195,2.297,2.269,2.118,2.195,2.305 +"Oct 23, 2006",2.387,2.397,2.357,2.456,2.222,2.317,2.355,2.337,2.511,2.435,2.38,2.673,2.414,2.432,2.509,2.335,2.319,2.332,2.312,2.294,,2.317,2.25,2.206,2.347,2.293,2.138,2.228,2.342 +"Oct 30, 2006",2.382,2.39,2.35,2.453,2.218,2.314,2.34,2.321,2.5,2.427,2.387,2.66,2.415,2.435,2.497,2.325,2.316,2.327,2.31,2.304,,2.328,2.253,2.257,2.349,2.316,2.138,2.25,2.336 +"Nov 06, 2006",2.37,2.377,2.338,2.449,2.205,2.287,2.345,2.311,2.483,2.414,2.353,2.66,2.4,2.417,2.478,2.325,2.299,2.301,2.298,2.305,,2.348,2.256,2.246,2.37,2.309,2.128,2.228,2.346 +"Nov 13, 2006",2.38,2.382,2.346,2.47,2.22,2.283,2.342,2.324,2.5,2.418,2.359,2.697,2.41,2.423,2.489,2.317,2.296,2.289,2.3,2.353,,2.38,2.301,2.272,2.403,2.379,2.209,2.247,2.422 +"Nov 20, 2006",2.374,2.377,2.337,2.46,2.204,2.27,2.339,2.327,2.507,2.415,2.382,2.697,2.397,2.421,2.482,2.319,2.296,2.287,2.301,2.344,,2.361,2.308,2.262,2.4,2.375,2.215,2.236,2.41 +"Nov 27, 2006",2.379,2.382,2.345,2.455,2.205,2.287,2.356,2.331,2.529,2.419,2.402,2.698,2.407,2.427,2.49,2.313,2.299,2.285,2.307,2.344,,2.364,2.316,2.258,2.402,2.371,2.23,2.235,2.41 +"Dec 04, 2006",2.442,2.449,2.411,2.527,2.292,2.352,2.364,2.429,2.59,2.492,2.487,2.81,2.428,2.522,2.566,2.382,2.321,2.307,2.329,2.363,,2.378,2.329,2.297,2.41,2.377,2.221,2.286,2.414 +"Dec 11, 2006",2.444,2.454,2.412,2.511,2.313,2.357,2.387,2.421,2.568,2.497,2.485,2.81,2.448,2.526,2.572,2.383,2.343,2.315,2.357,2.348,,2.334,2.319,2.264,2.398,2.36,2.189,2.283,2.393 +"Dec 18, 2006",2.444,2.455,2.419,2.524,2.316,2.363,2.394,2.422,2.566,2.494,2.502,2.781,2.458,2.53,2.558,2.388,2.34,2.307,2.357,2.34,,2.342,2.321,2.257,2.399,2.372,2.204,2.251,2.386 +"Dec 25, 2006",2.434,2.446,2.405,2.516,2.297,2.342,2.392,2.399,2.561,2.488,2.483,2.792,2.447,2.525,2.56,2.371,2.334,2.31,2.346,2.317,,2.321,2.304,2.202,2.38,2.346,2.19,2.207,2.386 +"Jan 01, 2007",2.415,2.427,2.389,2.498,2.293,2.315,2.392,2.382,2.555,2.466,2.442,2.771,2.429,2.496,2.534,2.359,2.322,2.299,2.334,2.295,,2.298,2.293,2.158,2.368,2.339,2.169,2.171,2.361 +"Jan 08, 2007",2.388,2.402,2.36,2.478,2.248,2.276,2.391,2.353,2.533,2.444,2.381,2.771,2.424,2.446,2.517,2.342,2.294,2.275,2.304,2.25,,2.252,2.271,2.093,2.337,2.308,2.117,2.083,2.338 +"Jan 15, 2007",2.351,2.369,2.341,2.435,2.23,2.271,2.372,2.32,2.558,2.403,2.358,2.77,2.431,2.394,2.484,2.283,2.253,2.219,2.271,2.171,,2.165,2.218,2.03,2.275,2.238,2.045,2.03,2.213 +"Jan 22, 2007",2.333,2.354,2.334,2.425,2.221,2.266,2.37,2.315,2.55,2.381,2.357,2.728,2.415,2.385,2.46,2.254,2.24,2.202,2.261,2.128,,2.129,2.197,2.015,2.188,2.197,2.015,2.004,2.172 +"Jan 29, 2007",2.36,2.382,2.357,2.456,2.242,2.301,2.345,2.343,2.576,2.416,2.42,2.716,2.397,2.43,2.5,2.289,2.232,2.2,2.248,2.147,,2.136,2.136,2.033,2.189,2.205,2.009,2.069,2.181 +"Feb 05, 2007",2.413,2.433,2.397,2.494,2.28,2.356,2.35,2.396,2.598,2.476,2.479,2.739,2.448,2.521,2.53,2.377,2.272,2.224,2.298,2.216,,2.207,2.156,2.123,2.237,2.249,2.079,2.171,2.252 +"Feb 12, 2007",2.449,2.469,2.438,2.54,2.338,2.394,2.371,2.442,2.619,2.511,2.535,2.769,2.475,2.555,2.576,2.396,2.293,2.241,2.32,2.258,,2.259,2.19,2.163,2.305,2.284,2.097,2.208,2.286 +"Feb 19, 2007",2.453,2.469,2.44,2.531,2.346,2.391,2.404,2.433,2.633,2.51,2.52,2.769,2.476,2.562,2.568,2.401,2.299,2.259,2.321,2.291,,2.28,2.181,2.195,2.35,2.313,2.108,2.265,2.302 +"Feb 26, 2007",2.473,2.485,2.463,2.551,2.388,2.416,2.423,2.438,2.631,2.522,2.518,2.737,2.486,2.575,2.579,2.414,2.309,2.269,2.331,2.354,,2.365,2.283,2.277,2.41,2.381,2.181,2.294,2.383 +"Mar 05, 2007",2.496,2.505,2.486,2.57,2.398,2.442,2.454,2.49,2.647,2.539,2.554,2.771,2.489,2.593,2.594,2.437,2.331,2.293,2.352,2.404,,2.42,2.299,2.319,2.48,2.442,2.246,2.324,2.439 +"Mar 12, 2007",2.495,2.501,2.486,2.558,2.41,2.443,2.46,2.496,2.65,2.531,2.544,2.771,2.486,2.581,2.586,2.429,2.33,2.289,2.351,2.432,,2.468,2.344,2.335,2.507,2.494,2.293,2.328,2.472 +"Oct 08, 2007",2.774,2.772,2.735,2.802,2.707,2.693,2.693,2.773,2.757,2.811,2.816,3.025,2.731,2.854,2.869,2.718,2.686,2.674,2.693,2.793,,2.815,2.732,2.685,2.846,2.906,2.694,2.667,2.842 +"Oct 15, 2007",2.794,2.793,2.756,2.832,2.724,2.719,2.714,2.802,2.708,2.829,2.834,3.06,2.741,2.886,2.889,2.729,2.72,2.728,2.715,2.805,,2.823,2.751,2.692,2.839,2.918,2.698,2.703,2.841 +"Oct 22, 2007",2.869,2.87,2.837,2.905,2.81,2.793,2.815,2.87,2.825,2.904,2.888,3.136,2.805,2.957,2.968,2.806,2.791,2.792,2.79,2.856,,2.876,2.76,2.786,2.883,2.951,2.72,2.771,2.89 +"Oct 29, 2007",2.953,2.956,2.921,2.994,2.859,2.888,2.902,2.945,2.926,2.993,2.966,3.147,2.885,3.03,3.051,2.914,2.859,2.861,2.857,2.926,,2.964,2.787,2.892,2.94,2.977,2.78,2.877,2.959 +"Nov 05, 2007",3.11,3.112,3.08,3.18,3.04,3.029,3.027,3.115,3.048,3.149,3.102,3.409,3.009,3.209,3.224,3.04,2.99,2.994,2.988,3.091,,3.122,2.969,3.019,3.13,3.12,2.932,3.055,3.111 +"Nov 12, 2007",3.206,3.208,3.17,3.264,3.142,3.134,3.091,3.185,3.141,3.25,3.185,3.501,3.132,3.29,3.322,3.154,3.09,3.104,3.082,3.185,,3.197,3.059,3.105,3.269,3.204,3.006,3.141,3.201 +"Nov 19, 2007",3.215,3.218,3.183,3.259,3.135,3.148,3.161,3.191,3.177,3.257,3.199,3.521,3.17,3.296,3.328,3.155,3.099,3.098,3.099,3.185,,3.188,3.092,3.088,3.261,3.22,3.011,3.144,3.192 +"Nov 26, 2007",3.287,3.296,3.271,3.353,3.199,3.249,3.23,3.29,3.266,3.331,3.302,3.621,3.248,3.353,3.407,3.229,3.148,3.15,3.147,3.203,,3.223,3.118,3.124,3.251,3.257,3.076,3.145,3.222 +"Dec 03, 2007",3.274,3.287,3.255,3.337,3.196,3.199,3.275,3.261,3.285,3.326,3.275,3.595,3.264,3.355,3.402,3.216,3.153,3.148,3.155,3.149,,3.142,3.155,3.058,3.222,3.2,3.036,3.081,3.157 +"Dec 10, 2007",3.259,3.278,3.244,3.318,3.206,3.174,3.276,3.244,3.305,3.319,3.264,3.594,3.251,3.349,3.398,3.204,3.135,3.117,3.145,3.074,,3.061,3.059,2.974,3.136,3.137,3.008,2.999,3.095 +"Dec 17, 2007",3.298,3.32,3.302,3.389,3.251,3.245,3.307,3.304,3.322,3.355,3.347,3.641,3.279,3.438,3.416,3.239,3.139,3.125,3.146,3.079,,3.065,3.066,2.984,3.117,3.166,2.964,3.016,3.085 +"Dec 24, 2007",3.301,3.325,3.306,3.396,3.243,3.253,3.318,3.311,3.298,3.361,3.337,3.657,3.303,3.454,3.418,3.243,3.132,3.099,3.15,3.069,,3.065,3.033,3.001,3.089,3.152,2.954,3.019,3.073 +"Dec 31, 2007",3.341,3.367,3.358,3.457,3.318,3.299,3.335,3.353,3.374,3.399,3.376,3.681,3.342,3.471,3.465,3.279,3.139,3.108,3.157,3.091,,3.12,3.001,3.034,3.128,3.151,2.982,3.045,3.098 +"Jan 07, 2008",3.395,3.423,3.407,3.501,3.364,3.341,3.385,3.422,3.458,3.46,3.415,3.768,3.381,3.549,3.524,3.34,3.198,3.166,3.215,3.127,,3.147,3.035,3.082,3.179,3.149,3.005,3.094,3.136 +"Jan 14, 2008",3.361,3.389,3.367,3.436,3.343,3.297,3.384,3.373,3.45,3.429,3.361,3.756,3.375,3.522,3.495,3.298,3.191,3.149,3.214,3.087,,3.102,3.021,3.012,3.155,3.123,2.942,3.037,3.095 +"Jan 21, 2008",3.33,3.361,3.338,3.402,3.298,3.272,3.368,3.344,3.434,3.401,3.35,3.746,3.35,3.473,3.476,3.266,3.161,3.133,3.177,3.033,,3.051,2.943,2.964,3.088,3.073,2.904,3.003,3.03 +"Jan 28, 2008",3.316,3.347,3.319,3.394,3.253,3.254,3.356,3.33,3.407,3.39,3.348,3.719,3.315,3.453,3.476,3.251,3.155,3.128,3.169,3.015,,3.003,2.965,2.929,3.031,3.065,2.874,2.987,3.027 +"Feb 04, 2008",3.306,3.334,3.301,3.375,3.242,3.235,3.317,3.317,3.42,3.381,3.307,3.731,3.312,3.45,3.461,3.247,3.148,3.12,3.162,3.035,,3.045,2.962,2.957,3.06,3.071,2.875,3.011,3.044 +"Feb 11, 2008",3.305,3.331,3.289,3.339,3.229,3.247,3.316,3.289,3.402,3.383,3.354,3.72,3.293,3.423,3.461,3.271,3.149,3.114,3.168,3.055,,3.074,2.989,2.998,3.097,3.094,2.957,3.019,3.06 +"Feb 18, 2008",3.395,3.418,3.383,3.479,3.294,3.345,3.35,3.395,3.445,3.468,3.402,3.832,3.344,3.52,3.54,3.365,3.216,3.17,3.242,3.176,,3.217,3.077,3.127,3.263,3.178,3.03,3.153,3.168 +"Feb 25, 2008",3.461,3.476,3.45,3.551,3.393,3.389,3.403,3.472,3.538,3.514,3.514,3.894,3.412,3.594,3.563,3.422,3.317,3.243,3.357,3.313,,3.37,3.159,3.282,3.403,3.29,3.177,3.308,3.303 +"Mar 03, 2008",3.55,3.564,3.538,3.651,3.467,3.491,3.482,3.547,3.559,3.603,3.562,3.956,3.478,3.687,3.655,3.51,3.401,3.377,3.413,3.41,,3.46,3.313,3.347,3.511,3.399,3.242,3.415,3.369 +"Mar 10, 2008",3.677,3.689,3.684,3.78,3.619,3.642,3.618,3.715,3.73,3.711,3.673,4.057,3.678,3.807,3.753,3.603,3.538,3.499,3.559,3.557,,3.64,3.488,3.519,3.647,3.534,3.424,3.583,3.492 +"Mar 17, 2008",3.852,3.865,3.867,3.961,3.791,3.816,3.851,3.911,3.891,3.884,3.819,4.16,3.78,3.971,3.942,3.78,3.675,3.642,3.693,3.727,,3.786,3.64,3.651,3.807,3.679,3.552,3.754,3.695 +"Oct 06, 2008",3.663,3.671,3.629,3.757,3.527,3.532,3.684,3.578,3.791,3.694,3.709,4.044,3.831,3.671,3.797,3.52,3.757,3.792,3.737,3.585,,3.611,3.571,3.486,3.597,3.686,3.497,3.495,3.619 +"Oct 13, 2008",3.39,3.402,3.358,3.421,3.231,3.277,3.531,3.268,3.609,3.416,3.306,3.732,3.558,3.337,3.503,3.302,3.562,3.622,3.527,3.279,,3.206,3.397,3.197,3.267,3.398,3.238,3.148,3.358 +"Oct 20, 2008",3.227,3.243,3.188,3.283,3.071,3.09,3.324,3.121,3.403,3.273,3.228,3.61,3.388,3.196,3.347,3.178,3.344,3.362,3.334,3.072,,2.983,3.032,2.928,3.069,3.245,3.036,2.904,3.185 +"Oct 27, 2008",3.059,3.079,2.993,3.05,2.894,2.9,3.1,2.968,3.332,3.138,3.077,3.482,3.189,3.051,3.242,3.023,3.133,3.188,3.101,2.866,,2.766,2.81,2.696,2.86,3.078,2.772,2.696,2.964 +"Nov 03, 2008",2.987,3.015,2.942,3.036,2.8,2.871,2.969,2.94,3.248,3.07,2.96,3.409,3.05,2.972,3.168,2.987,3.027,3.064,3.006,2.714,,2.624,2.599,2.601,2.7,2.906,2.526,2.632,2.741 +"Nov 10, 2008",2.941,2.967,2.885,2.992,2.758,2.79,2.893,2.932,3.197,3.027,2.934,3.333,3.023,2.942,3.101,2.962,2.985,3.054,2.955,2.656,,2.573,2.514,2.565,2.646,2.836,2.515,2.554,2.67 +"Nov 17, 2008",2.83,2.86,2.781,2.889,2.674,2.688,2.797,2.757,3.09,2.924,2.803,3.194,2.909,2.807,3.025,2.847,2.826,2.868,2.801,2.543,,2.466,2.445,2.419,2.562,2.741,2.398,2.426,2.58 +"Nov 24, 2008",2.713,2.745,2.667,2.747,2.609,2.576,2.671,2.63,3.007,2.805,2.711,3.094,2.781,2.765,2.908,2.686,2.746,2.758,2.739,2.394,,2.33,2.3,2.268,2.399,2.576,2.265,2.289,2.431 +"Dec 01, 2008",2.68,2.715,2.654,2.739,2.59,2.558,2.657,2.617,3.017,2.767,2.708,3.019,2.755,2.684,2.899,2.625,2.672,2.7,2.655,2.331,,2.283,2.262,2.233,2.359,2.42,2.225,2.253,2.38 +"Dec 08, 2008",2.512,2.547,2.479,2.553,2.426,2.372,2.522,2.452,2.83,2.602,2.495,2.917,2.688,2.497,2.716,2.476,2.508,2.589,2.461,2.169,,2.139,2.093,2.002,2.218,2.267,2.092,2.059,2.238 +"Dec 15, 2008",2.47,2.509,2.448,2.519,2.406,2.345,2.491,2.396,2.792,2.569,2.472,2.818,2.611,2.466,2.712,2.412,2.394,2.436,2.369,2.089,,2.027,1.973,1.911,2.124,2.155,1.993,2.019,2.158 +"Dec 22, 2008",2.409,2.446,2.393,2.449,2.35,2.297,2.44,2.343,2.756,2.497,2.411,2.78,2.538,2.417,2.597,2.389,2.353,2.381,2.337,2.049,,1.998,1.969,1.897,2.065,2.131,1.943,1.966,2.122 +"Dec 29, 2008",2.33,2.365,2.316,2.388,2.265,2.194,2.403,2.265,2.677,2.411,2.363,2.693,2.526,2.34,2.484,2.316,2.296,2.311,2.287,1.98,,1.911,1.925,1.852,2.024,2.025,1.878,1.897,2.055 +"Jan 05, 2009",2.365,2.402,2.37,2.452,2.285,2.299,2.394,2.351,2.592,2.443,2.43,2.694,2.463,2.41,2.532,2.326,2.253,2.282,2.236,2.008,,1.96,1.945,1.88,2.014,2.058,1.864,1.956,2.068 +"Jan 12, 2009",2.439,2.478,2.435,2.511,2.371,2.371,2.42,2.454,2.625,2.533,2.511,2.857,2.467,2.535,2.624,2.414,2.285,2.289,2.283,2.054,,2.046,1.946,2.007,2.088,2.106,1.917,2.01,2.079 +"Jan 19, 2009",2.421,2.461,2.421,2.496,2.385,2.333,2.427,2.443,2.619,2.513,2.497,2.771,2.508,2.507,2.587,2.411,2.272,2.257,2.28,2.031,,2.033,1.923,1.971,2.059,2.059,1.879,1.995,2.065 +"Jan 26, 2009",2.4,2.442,2.4,2.48,2.361,2.312,2.417,2.39,2.596,2.496,2.498,2.694,2.484,2.486,2.58,2.383,2.244,2.237,2.248,1.987,,1.979,1.87,1.904,2.026,2.037,1.85,1.929,2.029 +"Feb 02, 2009",2.389,2.432,2.386,2.467,2.339,2.297,2.419,2.372,2.566,2.49,2.48,2.696,2.462,2.488,2.576,2.372,2.245,2.231,2.253,1.964,,1.961,1.827,1.906,2.029,2.016,1.827,1.92,1.979 +"Feb 09, 2009",2.359,2.402,2.352,2.422,2.314,2.263,2.415,2.29,2.573,2.461,2.428,2.696,2.463,2.423,2.554,2.346,2.227,2.221,2.231,1.936,,1.922,1.798,1.859,2.004,1.975,1.784,1.907,1.944 +"Feb 16, 2009",2.308,2.351,2.307,2.389,2.265,2.203,2.359,2.267,2.547,2.404,2.361,2.646,2.413,2.363,2.525,2.25,2.186,2.169,2.195,1.889,,1.876,1.771,1.819,1.944,1.931,1.702,1.858,1.899 +"Feb 23, 2009",2.233,2.276,2.218,2.308,2.17,2.117,2.261,2.187,2.438,2.336,2.356,2.596,2.377,2.283,2.449,2.187,2.135,2.124,2.142,1.808,,1.767,1.686,1.729,1.899,1.856,1.644,1.766,1.815 +"Mar 02, 2009",2.22,2.262,2.208,2.335,2.121,2.104,2.229,2.188,2.406,2.319,2.332,2.518,2.347,2.253,2.447,2.161,2.128,2.109,2.14,1.807,,1.813,1.679,1.717,1.867,1.849,1.622,1.785,1.804 +"Mar 09, 2009",2.182,2.224,2.171,2.277,2.11,2.082,2.165,2.13,2.396,2.28,2.32,2.431,2.292,2.19,2.425,2.116,2.08,2.056,2.093,1.775,,1.792,1.635,1.661,1.835,1.82,1.577,1.751,1.776 +"Mar 16, 2009",2.16,2.202,2.152,2.253,2.065,2.081,2.148,2.117,2.359,2.257,2.289,2.494,2.281,2.176,2.393,2.096,2.067,2.038,2.084,1.745,,1.761,1.616,1.64,1.818,1.785,1.571,1.712,1.747 +"Oct 05, 2009",2.5,2.512,2.482,2.546,2.415,2.563,2.347,2.442,2.388,2.548,2.418,2.814,2.446,2.599,2.709,2.339,2.357,2.395,2.334,2.242,,2.366,2.191,2.19,2.278,2.252,2.151,2.242,2.289 +"Oct 12, 2009",2.539,2.55,2.509,2.578,2.466,2.562,2.376,2.476,2.418,2.597,2.433,2.828,2.487,2.643,2.742,2.416,2.368,2.39,2.355,2.293,,2.396,2.227,2.236,2.251,2.329,2.19,2.318,2.334 +"Oct 19, 2009",2.642,2.652,2.625,2.709,2.554,2.677,2.456,2.653,2.517,2.69,2.589,2.928,2.553,2.747,2.839,2.499,2.449,2.502,2.416,2.421,,2.524,2.301,2.344,2.444,2.406,2.288,2.453,2.438 +"Oct 26, 2009",2.73,2.74,2.726,2.793,2.673,2.782,2.567,2.732,2.629,2.771,2.656,3.011,2.682,2.836,2.885,2.61,2.523,2.565,2.497,2.487,,2.636,2.45,2.441,2.596,2.492,2.359,2.465,2.503 +"Nov 02, 2009",2.741,2.751,2.734,2.783,2.692,2.809,2.581,2.726,2.604,2.783,2.634,3.04,2.698,2.835,2.913,2.609,2.547,2.571,2.532,2.519,,2.619,2.463,2.436,2.575,2.498,2.382,2.55,2.506 +"Nov 09, 2009",2.757,2.769,2.738,2.788,2.698,2.795,2.622,2.713,2.648,2.81,2.644,3.134,2.712,2.876,2.926,2.649,2.564,2.585,2.551,2.501,,2.581,2.425,2.434,2.554,2.511,2.407,2.523,2.473 +"Nov 16, 2009",2.753,2.765,2.744,2.801,2.706,2.798,2.628,2.713,2.657,2.798,2.661,3.142,2.721,2.861,2.91,2.637,2.563,2.585,2.55,2.496,,2.552,2.437,2.443,2.533,2.498,2.404,2.519,2.466 +"Nov 23, 2009",2.757,2.768,2.743,2.793,2.712,2.798,2.633,2.706,2.644,2.804,2.667,3.143,2.731,2.865,2.917,2.642,2.588,2.591,2.586,2.501,,2.564,2.434,2.449,2.545,2.517,2.404,2.519,2.484 +"Nov 30, 2009",2.757,2.769,2.747,2.794,2.724,2.797,2.648,2.706,2.645,2.801,2.658,3.146,2.729,2.868,2.916,2.634,2.588,2.592,2.586,2.487,,2.564,2.42,2.427,2.537,2.505,2.399,2.504,2.474 +"Dec 07, 2009",2.773,2.786,2.768,2.826,2.734,2.814,2.653,2.764,2.629,2.818,2.685,3.187,2.74,2.893,2.947,2.628,2.587,2.599,2.58,2.483,,2.554,2.425,2.428,2.491,2.511,2.4,2.505,2.471 +"Dec 14, 2009",2.761,2.775,2.749,2.79,2.737,2.793,2.645,2.732,2.629,2.811,2.656,3.181,2.712,2.872,2.931,2.648,2.584,2.587,2.582,2.451,,2.498,2.359,2.384,2.454,2.494,2.366,2.489,2.43 +"Dec 21, 2009",2.767,2.782,2.753,2.813,2.73,2.795,2.664,2.713,2.628,2.821,2.689,3.187,2.717,2.9,2.938,2.649,2.579,2.588,2.573,2.441,,2.488,2.35,2.368,2.442,2.45,2.356,2.486,2.426 +"Dec 28, 2009",2.81,2.825,2.798,2.896,2.737,2.844,2.669,2.773,2.66,2.866,2.744,3.19,2.742,2.947,2.973,2.709,2.599,2.606,2.595,2.477,,2.518,2.376,2.407,2.47,2.459,2.372,2.53,2.437 +"Jan 04, 2010",2.895,2.911,2.894,2.958,2.815,2.946,2.818,2.898,2.774,2.945,2.848,3.248,2.814,3.053,3.046,2.78,2.67,2.676,2.667,2.534,,2.623,2.424,2.488,2.531,2.537,2.416,2.555,2.535 +"Jan 11, 2010",3,3.016,2.983,3.063,2.916,3.036,2.883,2.947,2.869,3.063,2.946,3.426,2.959,3.152,3.154,2.917,2.774,2.776,2.772,2.627,,2.675,2.54,2.551,2.611,2.607,2.479,2.684,2.617 +"Jan 18, 2010",2.967,2.983,2.946,3.015,2.909,2.988,2.888,2.876,2.83,3.031,2.89,3.428,2.944,3.103,3.109,2.909,2.76,2.761,2.759,2.603,,2.614,2.492,2.505,2.591,2.572,2.455,2.684,2.584 +"Jan 25, 2010",2.912,2.929,2.884,2.917,2.87,2.942,2.849,2.771,2.807,2.978,2.817,3.383,2.934,3.034,3.068,2.841,2.76,2.749,2.767,2.536,,2.544,2.421,2.428,2.538,2.544,2.402,2.615,2.514 +"Feb 01, 2010",2.878,2.894,2.847,2.896,2.804,2.915,2.796,2.734,2.78,2.944,2.786,3.39,2.882,3.036,3.051,2.768,2.723,2.703,2.735,2.517,,2.505,2.354,2.416,2.497,2.489,2.359,2.608,2.483 +"Feb 08, 2010",2.862,2.877,2.845,2.894,2.808,2.909,2.799,2.741,2.76,2.915,2.822,3.439,2.874,3,3.018,2.742,2.718,2.7,2.73,2.525,,2.526,2.333,2.425,2.502,2.47,2.331,2.62,2.479 +"Feb 15, 2010",2.865,2.88,2.845,2.88,2.808,2.923,2.786,2.743,2.758,2.921,2.835,3.357,2.878,2.983,3.037,2.745,2.716,2.703,2.724,2.545,,2.518,2.317,2.423,2.47,2.44,2.304,2.684,2.475 +"Feb 22, 2010",2.915,2.931,2.888,2.963,2.821,2.955,2.801,2.815,2.783,2.981,2.885,3.403,2.927,3.061,3.099,2.794,2.733,2.706,2.75,2.56,,2.59,2.371,2.468,2.552,2.509,2.366,2.64,2.524 +"Mar 01, 2010",2.91,2.925,2.885,2.965,2.808,2.954,2.808,2.806,2.78,2.971,2.885,3.404,2.937,3.061,3.066,2.804,2.741,2.711,2.76,2.581,,2.61,2.423,2.518,2.583,2.533,2.397,2.636,2.562 +"Mar 08, 2010",2.928,2.943,2.913,3.005,2.829,2.971,2.824,2.861,2.803,2.983,2.88,3.445,2.949,3.075,3.08,2.81,2.75,2.723,2.766,2.596,,2.645,2.499,2.535,2.6,2.583,2.426,2.637,2.614 +"Mar 15, 2010",2.937,2.951,2.923,3.024,2.832,2.983,2.827,2.861,2.818,2.99,2.875,3.452,2.947,3.081,3.086,2.822,2.76,2.722,2.783,2.608,,2.656,2.506,2.559,2.612,2.632,2.458,2.635,2.635 +"Oct 04, 2010",2.908,2.925,2.882,3.008,2.696,2.944,2.754,2.926,2.768,2.965,2.829,3.245,2.85,3.054,3.099,2.765,2.745,2.782,2.723,2.589,,2.798,2.65,2.274,2.762,2.772,2.627,2.726,2.717 +"Oct 11, 2010",2.954,2.964,2.925,3.043,2.737,2.999,2.779,2.966,2.846,3.001,2.849,3.318,2.886,3.044,3.13,2.835,2.8,2.836,2.779,2.762,,2.836,2.725,2.7,2.846,2.822,2.651,2.772,2.793 +"Oct 18, 2010",2.976,2.988,2.942,3.04,2.788,3.018,2.81,2.95,2.873,3.03,2.88,3.357,2.939,3.074,3.149,2.872,2.82,2.844,2.806,2.755,,2.832,2.682,2.7,2.829,2.824,2.668,2.76,2.779 +"Oct 25, 2010",2.99,3.003,2.964,3.049,2.81,3.052,2.855,2.967,2.873,3.04,2.887,3.34,2.967,3.087,3.159,2.877,2.824,2.835,2.817,2.745,,2.797,2.687,2.672,2.82,2.825,2.64,2.768,2.77 +"Nov 01, 2010",2.995,3.007,2.968,3.068,2.814,3.052,2.85,2.971,2.844,3.045,2.88,3.344,2.96,3.101,3.164,2.88,2.821,2.84,2.809,2.747,,2.807,2.684,2.671,2.823,2.824,2.625,2.772,2.771 +"Nov 08, 2010",3.082,3.096,3.051,3.165,2.873,3.126,2.946,3.054,2.959,3.14,2.956,3.48,3.003,3.185,3.281,2.962,2.864,2.881,2.854,2.819,,2.914,2.755,2.725,2.895,2.881,2.72,2.847,2.87 +"Nov 15, 2010",3.13,3.144,3.102,3.2,2.929,3.182,3.013,3.109,2.996,3.186,3.011,3.603,3.053,3.247,3.318,3.01,2.909,2.925,2.899,2.873,,2.946,2.832,2.784,2.982,2.961,2.786,2.896,2.902 +"Nov 22, 2010",3.116,3.131,3.085,3.174,2.935,3.163,3.008,3.061,2.998,3.175,3.001,3.619,3.082,3.256,3.302,2.985,2.906,2.932,2.89,2.84,,2.906,2.796,2.763,2.923,2.926,2.773,2.862,2.857 +"Nov 29, 2010",3.121,3.136,3.089,3.188,2.939,3.15,3.017,3.08,2.985,3.181,3.029,3.615,3.097,3.254,3.309,2.992,2.911,2.933,2.898,2.833,,2.921,2.758,2.765,2.899,2.909,2.773,2.848,2.836 +"Dec 06, 2010",3.211,3.228,3.183,3.287,2.992,3.27,3.094,3.179,3.094,3.274,3.094,3.636,3.166,3.341,3.392,3.108,2.973,2.979,2.969,2.887,,2.958,2.812,2.817,2.927,2.953,2.771,2.912,2.914 +"Dec 13, 2010",3.25,3.266,3.225,3.323,3.042,3.304,3.155,3.232,3.115,3.309,3.153,3.646,3.227,3.368,3.429,3.14,3.013,3.025,3.006,2.933,,3.003,2.845,2.849,2.981,2.967,2.831,2.968,2.933 +"Dec 20, 2010",3.266,3.282,3.241,3.356,3.054,3.312,3.164,3.251,3.103,3.325,3.203,3.651,3.27,3.376,3.441,3.158,3.045,3.037,3.05,2.96,,3.045,2.857,2.892,2.994,2.983,2.829,2.983,2.972 +"Dec 27, 2010",3.321,3.338,3.293,3.409,3.095,3.376,3.206,3.311,3.136,3.382,3.251,3.774,3.307,3.438,3.489,3.227,3.114,3.098,3.123,2.997,,3.074,2.917,2.927,3.042,3.026,2.862,3.021,3.001 +"Jan 03, 2011",3.345,3.363,3.322,3.438,3.107,3.414,3.225,3.336,3.213,3.404,3.3,3.792,3.341,3.479,3.51,3.236,3.137,3.113,3.151,3.011,,3.077,2.922,2.953,3.052,3.047,2.865,3.03,3.005 +"Jan 10, 2011",3.37,3.389,3.337,3.462,3.134,3.401,3.27,3.341,3.23,3.439,3.283,3.84,3.361,3.488,3.562,3.271,3.166,3.136,3.184,3.002,,3.051,2.931,2.952,3.036,3.043,2.892,3.021,3.009 +"Jan 17, 2011",3.455,3.475,3.433,3.572,3.219,3.501,3.389,3.405,3.305,3.518,3.392,3.905,3.443,3.556,3.638,3.358,3.244,3.221,3.258,3.073,,3.154,2.987,2.976,3.106,3.091,2.951,3.119,3.086 +"Jan 24, 2011",3.486,3.506,3.471,3.592,3.284,3.534,3.433,3.446,3.344,3.544,3.39,3.948,3.465,3.59,3.667,3.378,3.257,3.245,3.264,3.106,,3.176,3.012,3.037,3.128,3.117,2.99,3.137,3.102 +"Jan 31, 2011",3.53,3.551,3.532,3.67,3.338,3.59,3.498,3.502,3.385,3.579,3.439,3.958,3.498,3.623,3.702,3.414,3.274,3.241,3.293,3.126,,3.197,3.034,3.04,3.165,3.127,3.003,3.165,3.126 +"Feb 07, 2011",3.583,3.604,3.595,3.717,3.399,3.657,3.548,3.587,3.489,3.624,3.482,4.043,3.552,3.659,3.748,3.46,3.331,3.297,3.351,3.184,,3.254,3.076,3.092,3.243,3.166,3.04,3.225,3.185 +"Feb 14, 2011",3.594,3.614,3.595,3.708,3.42,3.663,3.551,3.56,3.472,3.641,3.494,4.061,3.57,3.656,3.764,3.491,3.344,3.311,3.363,3.213,,3.268,3.092,3.132,3.24,3.187,3.058,3.257,3.199 +"Feb 21, 2011",3.622,3.641,3.629,3.772,3.417,3.696,3.611,3.571,3.502,3.664,3.518,4.05,3.568,3.712,3.791,3.493,3.364,3.321,3.389,3.25,,3.294,3.119,3.144,3.296,3.249,3.099,3.31,3.222 +"Feb 28, 2011",3.762,3.78,3.759,3.86,3.564,3.834,3.749,3.734,3.642,3.81,3.636,4.114,3.685,3.837,3.951,3.641,3.49,3.444,3.517,3.425,,3.427,3.306,3.345,3.445,3.41,3.304,3.482,3.374 +"Mar 07, 2011",3.877,3.893,3.894,4.021,3.689,3.962,3.87,3.852,3.787,3.907,3.708,4.209,3.81,3.922,4.021,3.776,3.608,3.587,3.62,3.576,,3.597,3.433,3.494,3.54,3.576,3.435,3.642,3.526 +"Mar 14, 2011",3.88,3.893,3.892,3.989,3.718,3.962,3.901,3.837,3.763,3.907,3.719,4.229,3.831,3.912,4.025,3.773,3.621,3.605,3.631,3.602,,3.63,3.506,3.521,,3.601,3.457,3.657,3.575 +"Oct 03, 2011",3.694,3.709,3.679,3.759,3.578,3.733,3.653,3.617,3.541,3.736,3.671,4.045,3.718,3.803,3.876,3.518,3.568,3.606,3.548,3.32,,3.394,3.297,3.273,3.458,3.487,3.353,3.301,3.405 +"Oct 10, 2011",3.689,3.705,3.654,3.738,3.533,3.699,3.606,3.634,3.563,3.746,3.674,4.104,3.668,3.802,3.895,3.534,3.562,3.594,3.544,3.305,,3.379,3.308,3.272,3.429,3.468,3.353,3.274,3.396 +"Oct 17, 2011",3.777,3.793,3.738,3.868,3.581,3.782,3.635,3.746,3.602,3.84,3.674,4.24,3.706,3.831,4.015,3.644,3.584,3.616,3.567,3.379,,3.464,3.402,3.346,3.518,3.586,3.41,3.344,3.396 +"Oct 24, 2011",3.803,3.818,3.773,3.912,3.599,3.817,3.695,3.757,3.644,3.858,3.686,4.216,3.748,3.908,4.014,3.648,3.61,3.64,3.594,3.439,,3.505,3.464,3.39,3.615,3.642,3.444,3.41,3.538 +"Oct 31, 2011",3.854,3.869,3.825,3.955,3.636,3.885,3.729,3.822,3.718,3.909,3.715,4.254,3.816,3.968,4.063,3.694,3.65,3.67,3.639,3.484,,3.574,3.535,3.427,3.662,3.706,3.508,3.452,3.626 +"Nov 07, 2011",3.877,3.892,3.853,3.989,3.674,3.918,3.754,3.824,3.735,3.927,3.737,4.346,3.878,3.962,4.079,3.72,3.679,3.683,3.677,3.527,,3.619,3.542,3.471,3.709,3.73,3.613,3.492,3.701 +"Nov 14, 2011",3.943,3.956,3.92,4.073,3.738,3.985,3.797,3.891,3.778,3.991,3.821,4.347,3.913,4.028,4.133,3.801,3.703,3.722,3.692,3.644,,3.761,3.669,3.584,3.838,3.831,3.693,3.604,3.781 +"Nov 21, 2011",3.941,3.954,3.909,4.025,3.754,3.977,3.823,3.856,3.812,3.996,3.802,4.441,3.94,4.053,4.14,3.79,3.69,3.724,3.672,3.626,,3.707,3.646,3.597,3.756,3.817,3.648,3.586,3.725 +"Nov 28, 2011",3.902,3.916,3.875,3.987,3.727,3.941,3.805,3.815,3.778,3.953,3.765,4.449,3.921,4.013,4.096,3.74,3.7,3.727,3.685,3.556,,3.624,3.533,3.542,3.67,3.717,3.595,3.516,3.598 +"Dec 05, 2011",3.899,3.915,3.886,3.994,3.744,3.948,3.815,3.827,3.805,3.944,3.783,4.442,3.918,4.005,4.102,3.709,3.706,3.714,3.701,3.51,,3.511,3.447,3.505,3.576,3.639,3.532,3.497,3.528 +"Dec 12, 2011",3.874,3.892,3.86,3.978,3.722,3.916,3.811,3.789,3.728,3.922,3.776,4.44,3.907,3.989,4.076,3.687,3.681,3.697,3.673,3.445,,3.453,3.41,3.458,3.468,3.582,3.49,3.422,3.429 +"Dec 19, 2011",3.832,3.853,3.813,3.912,3.693,3.859,3.785,3.743,3.722,3.888,3.723,4.317,3.875,3.972,4.059,3.622,3.644,3.663,3.634,3.344,,3.332,3.296,3.346,3.397,3.512,3.441,3.326,3.358 +"Dec 26, 2011",3.843,3.863,3.823,3.934,3.677,3.88,3.761,3.774,3.719,3.9,3.804,4.353,3.859,3.942,4.067,3.664,3.627,3.659,3.61,3.361,,3.328,3.313,3.323,3.355,3.487,3.442,3.405,3.367 +"Jan 02, 2012",3.854,3.874,3.835,3.95,3.675,3.892,3.759,3.796,3.758,3.912,3.82,4.355,3.864,3.958,4.083,3.669,3.639,3.656,3.63,3.355,,3.308,3.265,3.32,3.346,3.476,3.442,3.401,3.363 +"Jan 09, 2012",3.946,3.967,3.949,4.079,3.785,3.998,3.861,3.92,3.859,3.991,3.886,4.453,3.94,4.067,4.144,3.756,3.692,3.687,3.695,3.428,,3.407,3.35,3.379,3.479,3.508,3.402,3.469,3.47 +"Jan 16, 2012",3.964,3.986,3.975,4.113,3.799,4.031,3.91,3.921,3.867,4.004,3.888,4.508,3.969,4.089,4.152,3.768,3.717,3.723,3.713,3.441,,3.453,3.335,3.391,3.484,3.506,3.4,3.478,3.473 +"Jan 23, 2012",3.955,3.978,3.964,4.083,3.795,4.015,3.901,3.93,3.886,3.998,3.895,4.514,3.971,4.077,4.153,3.756,3.694,3.69,3.696,3.405,,3.433,3.324,3.363,3.412,3.495,3.409,3.437,3.416 +"Jan 30, 2012",3.969,3.99,3.972,4.099,3.784,4.039,3.898,3.939,3.861,4.013,3.91,4.488,3.971,4.084,4.169,3.776,3.703,3.728,3.689,3.461,,3.498,3.36,3.391,3.482,3.503,3.44,3.518,3.435 +"Feb 06, 2012",3.988,4.009,3.997,4.121,3.801,4.075,3.929,3.965,3.853,4.029,3.917,4.5,3.988,4.103,4.18,3.796,3.705,3.735,3.689,3.498,,3.554,3.443,3.436,3.51,3.524,3.452,3.541,3.506 +"Feb 13, 2012",4.049,4.07,4.06,4.192,3.868,4.124,4.013,4.021,3.918,4.088,3.985,4.515,4.058,4.155,4.232,3.868,3.757,3.765,3.753,3.553,,3.595,3.453,3.503,3.557,3.592,3.488,3.595,3.528 +"Feb 20, 2012",4.062,4.083,4.072,4.203,3.871,4.142,4.009,4.026,3.979,4.102,3.988,4.523,4.087,4.184,4.238,3.88,3.778,3.777,3.779,3.556,,3.601,3.472,3.512,3.513,3.59,3.515,3.603,3.499 +"Feb 27, 2012",4.125,4.144,4.145,4.268,3.91,4.249,4.06,4.127,4.017,4.155,4.084,4.582,4.132,4.256,4.273,3.946,3.835,3.825,3.841,3.671,,3.73,3.553,3.644,3.591,3.659,3.592,3.715,3.539 +"Mar 05, 2012",4.114,4.128,4.128,4.252,3.923,4.215,4.063,4.095,3.977,4.139,4.045,4.577,4.128,4.227,4.255,3.939,3.851,3.844,3.855,3.761,,3.812,3.526,3.681,3.734,3.668,3.602,3.857,3.606 +"Mar 12, 2012",4.118,4.132,4.129,4.249,3.92,4.207,4.067,4.102,4.024,4.145,4.052,4.576,4.137,4.246,4.266,3.931,3.852,3.845,3.856,3.778,,3.863,3.607,3.692,3.764,3.696,3.638,3.86,3.666 +"Mar 19, 2012",4.123,4.137,4.127,4.248,3.918,4.202,4.048,4.111,4.044,4.154,4.059,4.594,4.154,4.248,4.276,3.941,3.869,3.854,3.877,3.795,,3.896,3.65,3.709,3.823,3.735,3.652,3.857,3.728 +"Oct 01, 2012",3.969,3.98,3.915,4.072,3.732,3.956,3.783,3.922,3.824,4.033,3.807,4.389,3.878,4.047,4.237,3.771,3.729,3.779,3.708,3.475,,3.837,3.638,2.988,3.775,3.794,3.651,3.724,3.65 +"Oct 08, 2012",3.994,3.999,3.94,4.081,3.784,3.988,3.818,3.931,3.838,4.048,3.866,4.383,3.932,4.039,4.264,3.774,3.728,3.767,3.711,3.76,,3.812,3.836,3.714,3.805,3.913,3.67,3.773,3.675 +"Oct 15, 2012",4.052,4.057,3.993,4.132,3.809,4.04,3.879,4.012,3.898,4.11,3.926,4.524,3.952,4.109,4.308,3.864,3.772,3.832,3.747,3.828,,3.892,3.861,3.755,3.914,4.031,3.828,3.832,3.844 +"Oct 22, 2012",4.048,4.054,3.998,4.159,3.812,4.034,3.884,4.01,3.888,4.1,3.882,4.55,4.037,4.123,4.281,3.849,3.768,3.833,3.741,3.791,,3.832,3.796,3.753,3.83,3.96,3.835,3.785,3.804 +"Oct 29, 2012",4.009,4.016,3.955,4.103,3.779,4.007,3.838,3.966,3.796,4.066,3.891,4.55,4.035,4.123,4.266,3.76,3.758,3.822,3.731,3.718,,3.783,3.595,3.658,3.83,3.782,3.705,3.733,3.706 +"Nov 05, 2012",4.008,4.015,3.93,4.077,3.747,3.984,3.83,3.936,3.77,4.081,3.876,4.53,3.991,4.137,4.276,3.797,3.769,3.787,3.761,3.691,,3.751,3.525,3.651,3.763,3.702,3.664,3.72,3.632 +"Nov 12, 2012",4.008,4.015,3.918,4.07,3.727,3.959,3.819,3.946,3.758,4.09,3.894,4.544,3.96,4.147,4.299,3.792,3.771,3.814,3.753,3.717,,3.765,3.474,3.684,3.767,3.636,3.581,3.786,3.631 +"Nov 19, 2012",4,4.006,3.904,4.051,3.697,3.953,3.81,3.937,3.764,4.085,3.854,4.537,3.986,4.102,4.308,3.785,3.757,3.823,3.73,3.746,,3.824,3.468,3.719,3.792,3.622,3.514,3.808,3.657 +"Nov 26, 2012",4.03,4.034,3.942,4.085,3.727,3.97,3.838,4.05,3.798,4.106,3.878,4.542,3.975,4.1,4.338,3.811,3.784,3.841,3.76,3.837,,3.891,3.567,3.851,3.852,3.709,3.548,3.885,3.682 +"Dec 03, 2012",4.027,4.032,3.936,4.088,3.721,3.974,3.831,3.999,3.807,4.107,3.869,4.537,3.979,4.122,4.326,3.818,3.78,3.853,3.75,3.821,,3.872,3.553,3.838,3.82,3.688,3.524,3.872,3.684 +"Dec 10, 2012",3.982,3.988,3.9,4.049,3.68,3.951,3.814,3.932,3.765,4.057,3.836,4.537,3.968,4.08,4.28,3.752,3.766,3.845,3.733,3.718,,3.795,3.461,3.735,3.735,3.616,3.506,3.726,3.611 +"Dec 17, 2012",3.96,3.968,3.891,4.052,3.68,3.937,3.777,3.91,3.783,4.028,3.859,4.544,3.939,4.051,4.231,3.748,3.758,3.813,3.735,3.639,,3.675,3.442,3.667,3.66,3.565,3.452,3.632,3.589 +"Dec 24, 2012",3.976,3.985,3.914,4.078,3.698,3.958,3.797,3.951,3.793,4.041,3.863,4.539,3.926,4.078,4.237,3.768,3.753,3.814,3.727,3.592,,3.686,3.476,3.563,3.601,3.566,3.464,3.613,3.564 +"Dec 31, 2012",3.987,3.996,3.935,4.087,3.715,3.991,3.815,3.98,3.804,4.046,3.903,4.535,3.941,4.107,4.232,3.77,3.752,3.804,3.73,3.592,,3.674,3.438,3.576,3.612,3.546,3.441,3.606,3.568 +"Jan 07, 2013",4.003,4.013,3.956,4.112,3.741,4.013,3.844,3.986,3.817,4.061,3.917,4.535,3.941,4.105,4.259,3.78,3.744,3.801,3.72,3.556,,3.61,3.415,3.562,3.564,3.54,3.456,3.549,3.533 +"Jan 14, 2013",4.004,4.014,3.962,4.119,3.754,4.02,3.84,3.981,3.826,4.058,3.936,4.544,3.969,4.104,4.25,3.78,3.744,3.796,3.722,3.543,,3.577,3.427,3.585,3.514,3.518,3.386,3.514,3.522 +"Jan 21, 2013",4.014,4.025,3.972,4.137,3.759,4.022,3.869,3.985,3.828,4.069,3.943,4.537,3.975,4.113,4.274,3.774,3.749,3.788,3.732,3.544,,3.586,3.44,3.553,3.556,3.545,3.419,3.532,3.526 +"Jan 28, 2013",4.045,4.056,4.002,4.154,3.798,4.058,3.896,4.007,3.894,4.101,3.967,4.594,4.001,4.146,4.302,3.813,3.753,3.792,3.737,3.567,,3.615,3.454,3.541,3.572,3.577,3.445,3.606,3.562 +"Feb 04, 2013",4.092,4.101,4.038,4.198,3.817,4.094,3.917,4.068,3.913,4.154,4.024,4.593,4.048,4.212,4.342,3.879,3.781,3.813,3.767,3.685,,3.739,3.545,3.63,3.71,3.628,3.505,3.762,3.7 +"Feb 11, 2013",4.161,4.17,4.123,4.304,3.885,4.174,3.987,4.168,3.981,4.211,4.073,4.638,4.108,4.256,4.392,3.953,3.824,3.854,3.812,3.777,,3.799,3.651,3.706,3.868,3.726,3.606,3.863,3.791 +"Feb 18, 2013",4.175,4.183,4.136,4.33,3.888,4.193,3.995,4.152,4.002,4.223,4.09,4.646,4.136,4.286,4.402,3.954,3.874,3.88,3.872,3.827,,3.868,3.719,3.775,3.892,3.771,3.69,3.885,3.819 +"Feb 25, 2013",4.153,4.16,4.118,4.297,3.893,4.159,4.025,4.124,3.988,4.197,4.079,4.664,4.136,4.273,4.38,3.909,3.875,3.885,3.871,3.816,,3.864,3.667,3.782,3.902,3.757,3.673,3.843,3.788 +"Mar 04, 2013",4.077,4.085,4.043,4.199,3.843,4.102,3.945,4.036,3.895,4.12,4.04,4.672,4.11,4.199,4.312,3.807,3.85,3.86,3.846,3.734,,3.766,3.597,3.715,3.793,3.684,3.634,3.758,3.698 +"Mar 11, 2013",4.059,4.067,4.027,4.197,3.81,4.075,3.93,4.04,3.878,4.102,4.009,4.562,4.09,4.172,4.314,3.765,3.829,3.854,3.818,3.683,,3.71,3.579,3.666,3.763,3.665,3.61,3.679,3.69 +"Mar 18, 2013",4.029,4.037,3.98,4.143,3.759,4.038,3.862,4,3.845,4.084,4.024,4.564,4.081,4.163,4.289,3.749,3.828,3.836,3.825,3.645,,3.679,3.528,3.621,3.708,3.635,3.537,3.656,3.668 +"Oct 07, 2013",3.813,3.815,3.744,3.913,3.565,3.791,3.571,3.791,3.59,3.873,3.743,4.279,3.799,3.858,4.103,3.545,3.637,3.652,3.635,3.531,,3.577,3.452,3.542,3.564,3.586,3.451,3.543,3.527 +"Oct 14, 2013",3.842,3.845,3.767,3.952,3.569,3.807,3.593,3.84,3.582,3.908,3.677,4.278,3.799,3.88,4.121,3.623,3.643,3.652,3.642,3.539,,3.6,3.439,3.54,3.588,3.592,3.45,3.568,3.518 +"Oct 21, 2013",3.855,3.857,3.785,3.967,3.575,3.829,3.613,3.869,3.615,3.916,3.662,4.437,3.863,3.918,4.119,3.621,3.632,3.647,3.63,3.533,,3.59,3.423,3.536,3.577,3.579,3.445,3.58,3.537 +"Oct 28, 2013",3.819,3.821,3.757,3.925,3.559,3.802,3.6,3.835,3.588,3.873,3.665,4.437,3.867,3.876,4.089,3.547,3.634,3.639,3.633,3.501,,3.584,3.344,3.515,3.582,3.514,3.354,3.576,3.5 +"Nov 04, 2013",3.824,3.827,3.768,3.945,3.561,3.813,3.623,3.839,3.58,3.875,3.675,4.408,3.828,3.912,4.077,3.56,3.623,3.636,3.622,3.517,,3.622,3.356,3.532,3.572,3.491,3.331,3.616,3.549 +"Nov 11, 2013",3.815,3.817,3.766,3.943,3.559,3.813,3.619,3.835,3.575,3.859,3.668,4.402,3.825,3.887,4.05,3.563,3.633,3.612,3.635,3.489,,3.576,3.332,3.545,3.532,3.481,3.291,3.558,3.508 +"Nov 18, 2013",3.822,3.825,3.773,3.943,3.558,3.822,3.621,3.875,3.575,3.867,3.667,4.426,3.8,3.9,4.06,3.571,3.627,3.614,3.629,3.465,,3.55,3.351,3.481,3.51,3.479,3.281,3.55,3.501 +"Nov 25, 2013",3.888,3.891,3.84,4.038,3.584,3.896,3.671,3.925,3.682,3.933,3.728,4.461,3.853,3.966,4.113,3.661,3.641,3.616,3.644,3.522,,3.574,3.496,3.482,3.62,3.55,3.358,3.568,3.588 +"Dec 02, 2013",3.917,3.92,3.865,4.064,3.626,3.897,3.718,3.949,3.71,3.965,3.774,4.58,3.885,4.026,4.141,3.683,3.677,3.637,3.682,3.533,,3.581,3.48,3.522,3.611,3.578,3.373,3.588,3.581 +"Dec 09, 2013",3.956,3.96,3.918,4.119,3.658,3.963,3.787,4,3.734,3.996,3.786,4.581,3.926,4.06,4.171,3.712,3.683,3.637,3.689,3.501,,3.532,3.431,3.487,3.596,3.566,3.383,3.544,3.535 +"Dec 16, 2013",3.953,3.957,3.921,4.104,3.688,3.971,3.793,3.992,3.716,3.989,3.802,4.573,3.942,4.064,4.165,3.692,3.663,3.636,3.666,3.452,,3.472,3.384,3.458,3.508,3.544,3.377,3.5,3.451 +"Dec 23, 2013",3.982,3.986,3.962,4.134,3.741,4.001,3.841,4.031,3.811,4.009,3.847,4.592,3.943,4.089,4.181,3.72,3.667,3.636,3.671,3.481,,3.506,3.447,3.476,3.498,3.554,3.384,3.575,3.514 +"Dec 30, 2013",4.037,4.041,4.02,4.216,3.78,4.061,3.891,4.081,3.848,4.063,3.919,4.681,3.992,4.141,4.228,3.785,3.674,3.649,3.677,3.508,,3.541,3.478,3.492,3.524,3.583,3.406,3.593,3.555 +"Jan 06, 2014",4.02,4.024,4.014,4.183,3.835,4.046,3.896,4.077,3.788,4.037,3.909,4.681,4.02,4.134,4.197,3.747,3.677,3.648,3.68,3.494,,3.535,3.421,3.479,3.503,3.583,3.416,3.619,3.511 +"Jan 13, 2014",4.011,4.015,4.008,4.175,3.841,4.043,3.894,4.062,3.758,4.026,3.898,4.653,3.99,4.118,4.192,3.731,3.678,3.655,3.681,3.483,,3.533,3.389,3.468,3.512,3.566,3.409,3.602,3.479 +"Jan 20, 2014",4.055,4.06,4.033,4.218,3.829,4.077,3.906,4.103,3.771,4.085,3.975,4.653,4,4.138,4.27,3.792,3.677,3.646,3.681,3.499,,3.531,3.429,3.503,3.546,3.545,3.411,3.675,3.456 +"Jan 27, 2014",4.176,4.18,4.131,4.317,3.892,4.202,3.986,4.197,3.894,4.225,4.113,4.695,4.074,4.278,4.438,3.902,3.705,3.696,3.706,3.565,,3.642,3.425,3.535,3.654,3.535,3.431,3.852,3.536 +"Feb 03, 2014",4.241,4.246,4.172,4.352,3.934,4.219,4.044,4.268,3.971,4.31,4.193,4.72,4.126,4.365,4.482,4.055,3.741,3.728,3.743,3.646,,3.761,3.396,3.65,3.807,3.517,3.428,4.045,3.572 +"Feb 10, 2014",4.245,4.249,4.159,4.344,3.918,4.21,4.027,4.242,3.95,4.325,4.192,4.721,4.154,4.334,4.525,4.051,3.76,3.768,3.759,3.701,,3.811,3.467,3.747,3.889,3.531,3.416,4.103,3.607 +"Feb 17, 2014",4.226,4.229,4.151,4.349,3.906,4.204,4.013,4.226,3.917,4.296,4.167,4.721,4.188,4.351,4.46,4.04,3.792,3.784,3.793,3.744,,3.882,3.495,3.786,3.916,3.557,3.447,4.122,3.652 +"Feb 24, 2014",4.242,4.245,4.157,4.337,3.909,4.225,4.029,4.236,3.929,4.319,4.162,4.773,4.203,4.37,4.491,4.053,3.835,3.806,3.839,3.785,,3.93,3.526,3.842,3.932,3.613,3.476,4.132,3.713 +"Mar 03, 2014",4.226,4.23,4.151,4.338,3.912,4.214,3.987,4.243,3.922,4.296,4.118,4.774,4.205,4.367,4.469,4.015,3.846,3.804,3.851,3.777,,3.928,3.527,3.844,3.868,3.625,3.49,4.086,3.706 +"Mar 10, 2014",4.195,4.199,4.137,4.347,3.897,4.179,4.017,4.178,3.923,4.251,4.06,4.763,4.195,4.332,4.417,3.971,3.853,3.8,3.859,3.742,,3.864,3.51,3.796,3.836,3.644,3.496,4.024,3.695 +"Mar 17, 2014",4.123,4.127,4.074,4.273,3.847,4.127,3.933,4.114,3.869,4.171,3.971,4.755,4.143,4.255,4.338,3.881,3.876,3.805,3.884,3.688,,3.807,3.465,3.734,3.765,3.618,3.473,3.911,3.644 +"Oct 13, 2014",3.522,3.523,3.482,3.692,3.279,3.537,3.346,3.461,3.297,3.559,3.482,4.149,3.686,3.639,3.736,3.245,3.493,3.496,3.492,3.288,,3.27,3.098,3.311,3.293,3.275,3.145,3.279,3.304 +"Oct 20, 2014",3.482,3.483,3.437,3.608,3.274,3.483,3.307,3.424,3.31,3.522,3.457,4.148,3.614,3.607,3.714,3.19,3.454,3.465,3.452,3.303,,3.294,3.147,3.301,3.27,3.263,3.165,3.326,3.368 +"Oct 27, 2014",3.453,3.454,3.407,3.595,3.212,3.457,3.29,3.419,3.219,3.495,3.451,3.964,3.56,3.561,3.701,3.156,3.418,3.395,3.422,3.302,,3.324,3.233,3.264,3.265,3.386,3.266,3.315,3.331 +"Nov 03, 2014",3.436,3.436,3.381,3.562,3.182,3.426,3.248,3.431,3.222,3.483,3.455,3.963,3.531,3.566,3.69,3.138,3.393,3.42,3.388,3.461,,3.487,3.21,3.408,3.656,3.402,3.211,3.528,3.493 +"Nov 10, 2014",3.416,3.415,3.362,3.542,3.152,3.396,3.224,3.445,3.239,3.461,3.449,3.928,3.498,3.549,3.674,3.107,3.384,3.396,3.382,3.54,,3.583,3.553,3.448,3.787,3.646,3.461,3.497,3.644 +"Nov 17, 2014",3.383,3.383,3.327,3.496,3.128,3.383,3.183,3.383,3.187,3.43,3.466,3.95,3.487,3.531,3.647,3.058,3.38,3.377,3.381,3.496,,3.525,3.234,3.457,3.669,3.546,3.387,3.448,3.522 +"Nov 24, 2014",3.364,3.363,3.314,3.489,3.1,3.362,3.194,3.371,3.178,3.406,3.428,3.899,3.46,3.513,3.62,3.035,3.358,3.345,3.36,3.445,,3.454,3.211,3.427,3.552,3.476,3.313,3.407,3.493 +"Dec 01, 2014",3.325,3.325,3.277,3.427,3.074,3.337,3.177,3.328,3.121,3.366,3.41,3.892,3.446,3.475,3.573,2.999,3.33,3.34,3.328,3.374,,3.393,3.065,3.356,3.505,3.381,3.164,3.32,3.391 +"Dec 08, 2014",3.22,3.22,3.187,3.346,3.006,3.224,3.124,3.187,3.05,3.248,3.316,3.726,3.377,3.368,3.453,2.868,3.273,3.274,3.273,3.17,,3.15,2.725,3.242,3.27,3.158,2.98,3.091,3.068 +"Dec 15, 2014",3.142,3.142,3.114,3.245,2.918,3.177,3.065,3.104,3.006,3.166,3.266,3.601,3.327,3.298,3.373,2.772,3.224,3.224,3.224,2.924,,2.888,2.626,2.999,2.942,2.937,2.725,2.849,2.877 +"Dec 22, 2014",3.079,3.08,3.046,3.186,2.843,3.11,2.982,3.061,2.912,3.109,3.227,3.549,3.242,3.233,3.323,2.711,3.135,3.183,3.126,2.771,,2.745,2.396,2.835,2.697,2.69,2.513,2.795,2.697 +"Dec 29, 2014",3.043,3.044,3.01,3.17,2.809,3.075,2.926,2.996,2.863,3.074,3.17,3.455,3.15,3.2,3.298,2.673,3.059,3.122,3.047,2.663,,2.651,2.32,2.705,2.563,2.626,2.426,2.661,2.629 +"Jan 05, 2015",2.97,2.972,2.946,3.105,2.775,2.973,2.934,2.886,2.832,2.993,3.132,3.455,3.123,3.135,3.203,2.594,2.977,2.986,2.975,2.533,,2.553,2.216,2.556,2.41,2.479,2.318,2.512,2.455 +"Jan 12, 2015",2.91,2.912,2.878,3.003,2.692,2.923,2.916,2.819,2.76,2.94,3.086,3.444,3.04,3.063,3.134,2.577,2.946,2.927,2.949,2.426,,2.416,2.129,2.493,2.275,2.326,2.248,2.383,2.352 +"Jan 19, 2015",2.835,2.837,2.803,2.93,2.64,2.84,2.809,2.729,2.74,2.865,3.018,3.32,2.99,2.991,3.054,2.504,2.872,2.853,2.876,2.359,,2.327,2.029,2.433,2.219,2.254,2.101,2.412,2.276 +"Jan 26, 2015",2.817,2.819,2.788,2.919,2.608,2.83,2.816,2.726,2.671,2.844,3.002,3.304,2.935,2.967,3.036,2.487,2.858,2.778,2.873,2.337,,2.303,2.052,2.38,2.282,2.232,2.087,2.451,2.306 +"Feb 02, 2015",2.8,2.802,2.776,2.912,2.593,2.823,2.737,2.796,2.612,2.824,2.932,3.304,2.905,2.97,3.014,2.461,2.85,2.743,2.87,2.361,,2.341,2.094,2.388,2.362,2.241,2.098,2.464,2.325 +"Feb 09, 2015",2.911,2.913,2.87,3.017,2.607,2.952,2.793,2.984,2.67,2.949,2.986,3.488,2.97,3.041,3.123,2.65,2.861,2.778,2.876,2.442,,2.433,2.233,2.454,2.426,2.313,2.264,2.535,2.423 +"Feb 16, 2015",3.038,3.04,2.994,3.176,2.716,3.121,2.771,3.111,2.771,3.081,3.054,3.595,3.021,3.159,3.296,2.748,2.885,2.829,2.895,2.558,,2.545,2.327,2.595,2.553,2.371,2.294,2.615,2.517 +"Feb 23, 2015",3.186,3.188,3.154,3.33,2.827,3.299,2.903,3.338,2.962,3.222,3.2,3.727,3.1,3.321,3.423,2.909,2.889,2.845,2.897,2.58,,2.548,2.335,2.623,2.612,2.434,2.317,2.649,2.566 +"Mar 02, 2015",3.288,3.291,3.257,3.483,2.92,3.397,3.012,3.368,3.028,3.324,3.298,3.758,3.192,3.396,3.507,3.054,2.888,2.879,2.89,2.619,,2.582,2.386,2.677,2.651,2.462,2.408,2.672,2.584 +"Mar 09, 2015",3.207,3.21,3.176,3.388,2.88,3.298,2.986,3.223,2.966,3.242,3.243,3.755,3.217,3.38,3.43,2.913,2.885,2.888,2.885,2.598,,2.56,2.299,2.666,2.598,2.471,2.384,2.632,2.546 +"Mar 16, 2015",3.033,3.035,3,3.18,2.776,3.078,2.937,2.929,2.857,3.066,3.122,3.424,3.13,3.18,3.273,2.702,2.876,2.851,2.881,2.54,,2.483,2.203,2.625,2.56,2.38,2.267,2.586,2.503 +"Mar 23, 2015",2.928,2.93,2.897,3.079,2.669,2.965,2.839,2.84,2.757,2.959,3.064,3.33,3.028,3.09,3.152,2.604,2.847,2.826,2.851,2.488,,2.432,2.175,2.575,2.492,2.321,2.247,2.542,2.435 +"Mar 30, 2015",2.887,2.889,2.843,3,2.629,2.903,2.814,2.802,2.713,2.929,3.003,3.326,2.954,3.028,3.131,2.583,2.834,2.793,2.842,2.419,,2.402,2.153,2.443,2.428,2.296,2.223,2.481,2.416 +"Oct 05, 2015",2.422,2.423,2.359,2.534,2.062,2.416,2.278,2.518,2.221,2.486,2.533,3.203,2.564,2.506,2.707,2.146,2.389,2.379,2.389,2.347,,2.352,2.053,2.214,2.452,2.096,2.085,2.365,2.31 +"Oct 12, 2015",2.44,2.441,2.374,2.547,2.091,2.433,2.268,2.537,2.245,2.506,2.537,3.138,2.537,2.523,2.718,2.193,2.393,2.36,2.394,2.422,,2.544,2.096,2.334,2.584,2.169,2.126,2.385,2.49 +"Oct 19, 2015",2.429,2.43,2.368,2.536,2.089,2.426,2.291,2.51,2.226,2.491,2.541,3.127,2.527,2.519,2.704,2.169,2.378,2.35,2.379,2.37,,2.478,2.027,2.268,2.537,2.222,2.114,2.34,2.428 +"Oct 26, 2015",2.422,2.424,2.367,2.531,2.115,2.425,2.275,2.508,2.188,2.482,2.522,3.143,2.527,2.483,2.713,2.145,2.363,2.363,2.363,2.273,,2.365,1.992,2.16,2.523,2.187,2.074,2.249,2.292 +"Nov 02, 2015",2.425,2.427,2.368,2.534,2.091,2.439,2.275,2.512,2.189,2.489,2.532,3.234,2.549,2.479,2.709,2.167,2.356,2.358,2.356,2.284,,2.334,1.994,2.174,2.63,2.164,2.04,2.276,2.334 +"Nov 09, 2015",2.429,2.432,2.374,2.557,2.103,2.435,2.279,2.507,2.172,2.493,2.523,3.242,2.547,2.492,2.718,2.164,2.35,2.344,2.35,2.246,,2.318,2.004,2.165,2.545,2.172,2.045,2.225,2.288 +"Nov 16, 2015",2.398,2.402,2.347,2.511,2.097,2.411,2.245,2.458,2.2,2.458,2.518,3.145,2.497,2.5,2.668,2.134,2.337,2.338,2.337,2.155,,2.213,2.025,2.04,2.2,2.151,2.06,2.142,2.24 +"Nov 23, 2015",2.375,2.381,2.316,2.473,2.073,2.369,2.245,2.428,2.158,2.447,2.499,3.154,2.515,2.517,2.663,2.096,2.309,2.325,2.309,2.045,,2.104,1.937,1.998,2.109,2.111,2.064,2.023,2.159 +"Nov 30, 2015",2.361,2.366,2.314,2.475,2.051,2.38,2.24,2.419,2.151,2.422,2.475,3.071,2.522,2.507,2.625,2.077,2.289,2.319,2.288,2.02,,2.076,1.853,1.983,1.933,2.068,1.978,2,2.107 +"Dec 07, 2015",2.332,2.338,2.279,2.425,2.032,2.345,2.201,2.386,2.136,2.398,2.456,3.045,2.508,2.49,2.6,2.05,2.273,2.289,2.273,1.962,,2.007,1.781,1.884,1.857,2.022,1.978,1.952,2.012 +"Dec 14, 2015",2.255,2.262,2.19,2.3,1.975,2.248,2.162,2.311,2.003,2.329,2.401,3.022,2.469,2.401,2.543,1.965,2.253,2.274,2.252,1.889,,1.936,1.702,1.806,1.819,1.912,1.956,1.879,1.948 +"Dec 21, 2015",2.21,2.216,2.154,2.28,1.922,2.205,2.146,2.246,1.996,2.274,2.392,2.961,2.443,2.346,2.492,1.895,2.222,2.242,2.221,1.834,,1.857,1.652,1.781,1.798,1.845,1.86,1.834,1.79 +"Dec 28, 2015",2.175,2.182,2.132,2.279,1.902,2.184,2.123,2.163,1.977,2.225,2.361,2.943,2.394,2.338,2.405,1.88,2.215,2.264,2.214,1.804,,1.844,1.559,1.787,1.786,1.776,1.748,1.794,1.756 +"Jan 04, 2016",2.182,2.188,2.133,2.282,1.898,2.184,2.112,2.202,1.96,2.242,2.361,2.893,2.37,2.303,2.454,1.884,2.156,2.191,2.155,1.816,,1.851,1.554,1.773,1.768,1.738,1.667,1.81,1.798 +"Jan 11, 2016",2.164,2.17,2.103,2.249,1.883,2.16,2.069,2.176,1.887,2.236,2.343,2.894,2.349,2.311,2.455,1.867,2.133,2.154,2.132,1.777,,1.797,1.525,1.757,1.757,1.698,1.602,1.775,1.74 +"Jan 18, 2016",2.114,2.121,2.052,2.185,1.848,2.099,2.047,2.114,1.844,2.185,2.3,2.893,2.323,2.247,2.424,1.789,2.119,2.085,2.12,1.685,,1.724,1.414,1.72,1.678,1.659,1.546,1.669,1.671 +"Jan 25, 2016",2.066,2.072,2.012,2.132,1.795,2.079,2.011,2.065,1.804,2.126,2.252,2.713,2.225,2.176,2.352,1.76,2.1,2.055,2.101,1.68,,1.705,1.433,1.713,1.632,1.626,1.492,1.67,1.664 +"Feb 01, 2016",2.082,2.088,2.014,2.134,1.79,2.083,2.011,2.071,1.82,2.158,2.288,2.726,2.259,2.153,2.394,1.8,2.076,2.075,2.076,1.723,,1.754,1.471,1.633,1.704,1.62,1.513,1.725,1.706 +"Feb 08, 2016",2.092,2.099,2.021,2.168,1.784,2.081,2.01,2.079,1.811,2.173,2.253,2.723,2.255,2.169,2.416,1.811,2.073,2.085,2.073,1.716,,1.755,1.458,1.637,1.716,1.591,1.514,1.712,1.711 +"Feb 15, 2016",2.103,2.109,2.044,2.19,1.783,2.116,2.032,2.137,1.799,2.176,2.291,2.733,2.239,2.211,2.399,1.827,2.047,2.051,2.047,1.708,,1.754,1.482,1.642,1.69,1.591,1.499,1.7,1.699 +"Feb 22, 2016",2.094,2.1,2.043,2.192,1.779,2.133,2.013,2.111,1.795,2.158,2.281,2.74,2.235,2.216,2.378,1.803,2.035,2.044,2.035,1.723,,1.759,1.48,1.641,1.687,1.623,1.495,1.722,1.709 +"Feb 29, 2016",2.089,2.095,2.034,2.209,1.75,2.115,2.01,2.093,1.789,2.157,2.282,2.734,2.248,2.218,2.365,1.813,2.036,2.023,2.036,1.74,,1.777,1.508,1.65,1.732,1.64,1.528,1.738,1.728 +"Mar 07, 2016",2.096,2.101,2.039,2.199,1.747,2.126,1.993,2.123,1.851,2.163,2.288,2.735,2.227,2.226,2.369,1.826,2.061,2.036,2.062,1.772,,1.797,1.61,1.768,1.823,1.647,1.607,1.765,1.778 +"Mar 14, 2016",2.122,2.127,2.061,2.237,1.774,2.14,1.995,2.157,1.851,2.195,2.314,2.752,2.216,2.261,2.405,1.861,2.048,2.044,2.048,1.821,,1.862,1.66,1.833,1.891,1.743,1.674,1.805,1.84 +"Mar 21, 2016",2.132,2.137,2.07,2.238,1.788,2.157,1.995,2.178,1.85,2.206,2.322,2.724,2.256,2.273,2.411,1.873,2.053,2.047,2.053,1.845,,1.881,1.677,1.87,1.896,1.752,1.675,1.828,1.876 +"Mar 28, 2016",2.131,2.136,2.068,2.233,1.792,2.155,1.993,2.169,1.849,2.206,2.305,2.834,2.249,2.294,2.407,1.873,2.046,2.039,2.046,1.849,,1.881,1.655,1.868,1.876,1.749,1.669,1.836,1.863 +"Oct 03, 2016",2.301,2.306,2.236,2.39,1.967,2.337,2.079,2.392,2.077,2.373,2.331,3.021,2.333,2.358,2.604,2.071,2.201,2.225,2.196,2.069,,2.165,1.99,2.078,2.167,2.06,1.944,2.025,2.154 +"Oct 10, 2016",2.366,2.37,2.286,2.449,2.01,2.394,2.103,2.462,2.104,2.453,2.377,3.133,2.402,2.421,2.688,2.156,2.245,2.254,2.243,2.155,,2.276,2.055,2.127,2.214,2.128,1.995,2.106,2.21 +"Oct 17, 2016",2.38,2.385,2.317,2.503,2.04,2.407,2.156,2.457,2.151,2.451,2.382,3.117,2.37,2.452,2.684,2.147,2.256,2.254,2.256,2.137,,2.251,2.043,2.087,2.174,2.14,1.998,2.094,2.193 +"Oct 24, 2016",2.394,2.399,2.328,2.511,2.061,2.423,2.175,2.435,2.153,2.468,2.384,3.182,2.439,2.457,2.707,2.15,2.267,2.249,2.271,2.114,,2.208,2.01,2.083,2.107,2.127,1.988,2.079,2.16 +"Oct 31, 2016",2.399,2.404,2.334,2.514,2.086,2.413,2.188,2.451,2.15,2.473,2.369,3.228,2.458,2.473,2.706,2.157,2.249,2.262,2.247,2.107,,2.2,1.964,2.073,2.134,2.114,1.986,2.074,2.121 +"Nov 07, 2016",2.386,2.393,2.336,2.53,2.071,2.421,2.2,2.431,2.127,2.449,2.366,3.266,2.472,2.452,2.678,2.125,2.267,2.259,2.268,2.05,,2.126,1.859,2.055,2.075,2.032,1.911,2.024,2.062 +"Nov 14, 2016",2.378,2.384,2.334,2.526,2.06,2.426,2.201,2.443,2.113,2.434,2.35,3.267,2.469,2.435,2.667,2.103,2.26,2.246,2.263,2.017,,2.061,1.804,1.976,2.056,1.95,1.863,2.014,1.991 +"Nov 21, 2016",2.384,2.39,2.336,2.517,2.064,2.418,2.225,2.454,2.137,2.444,2.365,3.261,2.486,2.437,2.678,2.114,2.263,2.247,2.266,2.014,,2.042,1.823,1.98,2.008,1.93,1.846,2.016,2.002 +"Nov 28, 2016",2.401,2.407,2.355,2.512,2.084,2.448,2.242,2.515,2.144,2.457,2.386,3.018,2.451,2.482,2.689,2.126,2.261,2.227,2.268,2.073,,2.09,1.837,1.99,2.097,1.943,1.974,2.089,2.025 +"Dec 05, 2016",2.491,2.497,2.443,2.608,2.142,2.533,2.356,2.614,2.236,2.551,2.457,3.111,2.523,2.526,2.792,2.24,2.291,2.263,2.296,2.147,,2.159,1.95,2.027,2.17,1.986,2.003,2.169,2.081 +"Dec 12, 2016",2.531,2.537,2.471,2.634,2.177,2.571,2.359,2.639,2.262,2.603,2.501,3.281,2.578,2.674,2.82,2.271,2.339,2.286,2.349,2.19,,2.222,1.948,2.105,2.199,2.006,2.034,2.2,2.145 +"Dec 19, 2016",2.57,2.576,2.518,2.713,2.219,2.608,2.384,2.668,2.302,2.635,2.509,3.324,2.617,2.707,2.842,2.318,2.356,2.302,2.367,2.256,,2.28,1.989,2.175,2.235,2.049,2.048,2.271,2.201 +"Dec 26, 2016",2.587,2.593,2.543,2.746,2.238,2.646,2.378,2.678,2.339,2.644,2.55,3.34,2.64,2.708,2.835,2.349,2.382,2.314,2.395,2.279,,2.292,2.03,2.196,2.257,2.076,2.002,2.3,2.205 +"Jan 02, 2017",2.632,2.638,2.584,2.804,2.278,2.673,2.403,2.735,2.405,2.693,2.584,3.35,2.663,2.758,2.896,2.387,2.402,2.354,2.411,2.289,,2.328,2.078,2.207,2.297,2.133,2.034,2.297,2.181 +"Jan 09, 2017",2.642,2.649,2.596,2.805,2.305,2.678,2.437,2.736,2.409,2.703,2.622,3.35,2.678,2.769,2.903,2.396,2.423,2.378,2.432,2.282,,2.336,2.065,2.207,2.29,2.205,2.026,2.281,2.216 +"Jan 16, 2017",2.636,2.643,2.598,2.784,2.319,2.677,2.478,2.729,2.41,2.69,2.606,3.346,2.69,2.767,2.887,2.377,2.432,2.386,2.441,2.251,,2.32,2.064,2.188,2.268,2.197,2.022,2.238,2.212 +"Jan 23, 2017",2.631,2.639,2.594,2.772,2.324,2.672,2.489,2.716,2.4,2.684,2.595,3.346,2.695,2.767,2.88,2.367,2.431,2.385,2.44,2.222,,2.28,2.055,2.172,2.237,2.183,2.039,2.211,2.211 +"Jan 30, 2017",2.631,2.639,2.592,2.768,2.329,2.678,2.484,2.696,2.38,2.687,2.586,3.351,2.702,2.754,2.892,2.366,2.429,2.381,2.438,2.173,,2.257,2.03,2.163,2.198,2.18,2.016,2.143,2.172 +"Feb 06, 2017",2.642,2.651,2.594,2.774,2.337,2.675,2.476,2.717,2.362,2.709,2.607,3.356,2.701,2.769,2.929,2.376,2.428,2.391,2.435,2.173,,2.244,2.027,2.051,2.171,2.166,1.994,2.163,2.167 +"Feb 13, 2017",2.642,2.651,2.593,2.775,2.354,2.663,2.475,2.698,2.375,2.709,2.63,3.354,2.708,2.765,2.924,2.383,2.424,2.386,2.432,2.191,,2.252,2.037,2.114,2.188,2.145,1.999,2.182,2.18 +"Feb 20, 2017",2.645,2.653,2.602,2.786,2.356,2.676,2.496,2.698,2.374,2.706,2.629,3.352,2.708,2.76,2.924,2.374,2.426,2.389,2.433,2.214,,2.268,2.003,2.115,2.2,2.138,2.009,2.213,2.182 +"Feb 27, 2017",2.648,2.656,2.606,2.786,2.36,2.681,2.486,2.723,2.375,2.707,2.621,3.35,2.705,2.759,2.922,2.383,2.431,2.388,2.439,2.226,,2.284,2.013,2.128,2.242,2.143,2.004,2.225,2.187 +"Mar 06, 2017",2.629,2.637,2.595,2.785,2.339,2.669,2.476,2.711,2.369,2.679,2.61,3.348,2.666,2.754,2.891,2.349,2.429,2.386,2.438,2.238,,2.303,2.01,2.129,2.274,2.136,2.012,2.235,2.196 +"Mar 13, 2017",2.615,2.623,2.584,2.769,2.315,2.676,2.454,2.699,2.362,2.662,2.606,3.241,2.668,2.736,2.883,2.314,2.425,2.361,2.438,2.22,,2.294,1.979,2.118,2.22,2.132,1.988,2.212,2.176 +"Mar 20, 2017",2.6,2.608,2.57,2.76,2.307,2.653,2.455,2.681,2.328,2.646,2.624,3.251,2.651,2.712,2.863,2.307,2.417,2.368,2.427,2.19,,2.266,1.958,2.097,2.194,2.117,1.97,2.179,2.158 +"Mar 27, 2017",2.586,2.594,2.556,2.724,2.284,2.659,2.451,2.679,2.291,2.633,2.601,3.128,2.643,2.661,2.863,2.296,2.416,2.368,2.426,2.176,,2.238,1.931,2.099,2.192,2.098,1.935,2.172,2.134 +"Oct 02, 2017",2.67,2.674,2.577,2.752,2.301,2.663,2.443,2.761,2.355,2.768,2.631,3.296,2.698,2.825,2.976,2.427,2.543,2.505,2.554,2.431,,2.486,2.26,2.344,2.437,2.339,2.273,2.425,2.433 +"Oct 09, 2017",2.65,2.654,2.568,2.743,2.284,2.669,2.445,2.726,2.317,2.738,2.576,3.278,2.647,2.779,2.951,2.407,2.528,2.484,2.541,2.436,,2.535,2.253,2.329,2.45,2.345,2.268,2.41,2.426 +"Oct 16, 2017",2.658,2.662,2.57,2.753,2.281,2.665,2.451,2.726,2.33,2.751,2.592,3.293,2.708,2.773,2.973,2.409,2.52,2.496,2.527,2.46,,2.556,2.258,2.342,2.5,2.355,2.268,2.438,2.43 +"Oct 23, 2017",2.669,2.672,2.581,2.774,2.294,2.673,2.45,2.727,2.34,2.76,2.604,3.291,2.712,2.773,2.982,2.428,2.522,2.497,2.529,2.516,,2.623,2.272,2.398,2.509,2.38,2.287,2.492,2.449 +"Oct 30, 2017",2.696,2.699,2.605,2.801,2.323,2.684,2.463,2.789,2.371,2.79,2.645,3.337,2.724,2.8,3.013,2.461,2.535,2.516,2.541,2.532,,2.63,2.305,2.415,2.542,2.405,2.386,2.511,2.471 +"Nov 06, 2017",2.739,2.742,2.66,2.853,2.377,2.746,2.514,2.843,2.419,2.822,2.68,3.42,2.795,2.858,3.022,2.5,2.555,2.547,2.557,2.586,,2.67,2.385,2.433,2.657,2.441,2.38,2.577,2.523 +"Nov 13, 2017",2.803,2.806,2.728,2.936,2.435,2.814,2.566,2.908,2.496,2.884,2.716,3.569,2.865,2.945,3.076,2.551,2.594,2.58,2.598,2.607,,2.673,2.411,2.493,2.637,2.486,2.403,2.603,2.533 +"Nov 20, 2017",2.823,2.828,2.757,2.952,2.481,2.852,2.575,2.936,2.519,2.898,2.725,3.581,2.89,2.96,3.083,2.574,2.606,2.588,2.611,2.603,,2.653,2.378,2.488,2.594,2.478,2.382,2.61,2.537 +"Nov 27, 2017",2.846,2.85,2.779,2.98,2.493,2.877,2.616,2.945,2.514,2.921,2.729,3.624,2.904,2.974,3.105,2.61,2.617,2.609,2.62,2.623,,2.676,2.348,2.497,2.627,2.47,2.41,2.632,2.54 +"Dec 04, 2017",2.869,2.875,2.811,3.013,2.538,2.889,2.659,2.979,2.568,2.938,2.749,3.626,2.925,3.022,3.113,2.616,2.636,2.627,2.639,2.582,,2.654,2.32,2.494,2.587,2.461,2.402,2.573,2.532 +"Dec 11, 2017",2.88,2.886,2.817,3.029,2.536,2.905,2.649,2.979,2.563,2.955,2.763,3.624,2.916,3.042,3.142,2.617,2.643,2.632,2.647,2.573,,2.628,2.323,2.47,2.584,2.47,2.385,2.575,2.505 +"Dec 18, 2017",2.887,2.893,2.825,2.991,2.592,2.885,2.71,3.019,2.562,2.961,2.765,3.633,2.933,3.019,3.163,2.619,2.656,2.638,2.662,2.572,,2.621,2.316,2.452,2.574,2.462,2.327,2.581,2.514 +"Dec 25, 2017",2.92,2.926,2.869,3.038,2.643,2.928,2.749,3.053,2.599,2.984,2.785,3.725,2.879,3.026,3.21,2.636,2.653,2.638,2.657,2.616,,2.659,2.382,2.484,2.64,2.466,2.344,2.629,2.555 +"Jan 01, 2018",3.083,3.09,3.037,3.272,2.754,3.089,2.913,3.212,2.744,3.147,2.946,3.696,3.059,3.183,3.39,2.774,2.715,2.68,2.726,2.684,,2.734,2.405,2.512,2.712,2.503,2.386,2.703,2.602 +"Jan 08, 2018",3.174,3.183,3.159,3.32,2.889,3.25,3.05,3.374,2.843,3.212,3.027,3.835,3.08,3.291,3.432,2.852,2.757,2.708,2.772,2.724,,2.776,2.419,2.517,2.715,2.527,2.404,2.749,2.618 +"Jan 15, 2018",3.214,3.223,3.195,3.363,2.963,3.275,3.051,3.385,2.9,3.256,3.092,3.843,3.183,3.298,3.477,2.909,2.791,2.727,2.81,2.744,,2.785,2.476,2.575,2.727,2.547,2.443,2.767,2.652 +"Jan 22, 2018",3.212,3.221,3.201,3.371,2.987,3.272,3.068,3.367,2.901,3.245,3.076,3.844,3.177,3.298,3.464,2.892,2.815,2.745,2.836,2.74,,2.78,2.481,2.577,2.74,2.558,2.447,2.763,2.655 +"Jan 29, 2018",3.221,3.23,3.2,3.356,2.998,3.279,3.058,3.368,2.883,3.265,3.073,3.845,3.202,3.317,3.492,2.898,2.844,2.804,2.856,2.772,,2.81,2.529,2.648,2.761,2.58,2.475,2.789,2.693 +"Feb 05, 2018",3.201,3.209,3.172,3.348,2.958,3.25,3.033,3.31,2.873,3.25,3.064,3.836,3.191,3.304,3.48,2.877,2.845,2.803,2.858,2.764,,2.807,2.504,2.604,2.744,2.629,2.468,2.783,2.675 +"Feb 12, 2018",3.133,3.141,3.104,3.241,2.905,3.186,3.02,3.221,2.807,3.181,3.022,3.836,3.159,3.262,3.405,2.786,2.836,2.811,2.844,2.7,,2.728,2.467,2.565,2.674,2.567,2.443,2.723,2.632 +"Feb 19, 2018",3.102,3.111,3.071,3.238,2.854,3.141,2.999,3.17,2.771,3.153,3.007,3.659,3.125,3.242,3.384,2.741,2.831,2.8,2.841,2.644,,2.671,2.451,2.506,2.619,2.533,2.427,2.663,2.597 +"Feb 26, 2018",3.095,3.104,3.066,3.244,2.82,3.134,2.999,3.176,2.789,3.144,3.018,3.667,3.111,3.195,3.385,2.748,2.807,2.779,2.816,2.632,,2.675,2.446,2.52,2.627,2.536,2.409,2.638,2.589 +"Mar 05, 2018",3.078,3.088,3.046,3.23,2.775,3.117,2.988,3.166,2.784,3.131,2.995,3.666,3.107,3.189,3.379,2.717,2.788,2.772,2.793,2.605,,2.645,2.402,2.508,2.586,2.532,2.409,2.611,2.577 +"Mar 12, 2018",3.064,3.074,3.026,3.206,2.755,3.116,2.924,3.166,2.743,3.125,3.016,3.666,3.083,3.191,3.378,2.699,2.762,2.751,2.765,2.555,,2.607,2.372,2.484,2.522,2.509,2.397,2.548,2.549 +"Mar 19, 2018",3.059,3.069,3.027,3.212,2.744,3.114,2.947,3.17,2.73,3.114,3.022,3.654,3.064,3.176,3.37,2.688,2.754,2.754,2.754,2.531,,2.602,2.367,2.428,2.525,2.507,2.404,2.516,2.537 +"Mar 26, 2018",3.095,3.105,3.065,3.263,2.759,3.158,2.967,3.224,2.782,3.147,3.011,3.754,3.085,3.192,3.409,2.729,2.763,2.76,2.764,2.581,,2.603,2.472,2.46,2.603,2.539,2.424,2.594,2.585 +"Oct 01, 2018",3.288,3.29,3.207,3.42,2.939,3.27,3.04,3.42,2.926,3.371,3.08,3.918,3.291,3.315,3.67,2.968,2.929,2.935,2.926,2.896,,3.031,2.756,2.798,3.009,2.944,2.771,2.874,2.956 +"Oct 08, 2018",3.352,3.355,3.276,3.476,3.027,3.336,3.105,3.496,2.986,3.432,3.206,4.14,3.317,3.394,3.715,3.042,2.984,2.985,2.983,2.97,,3.11,2.82,2.879,3.061,3.035,2.812,2.942,3.029 +"Oct 15, 2018",3.364,3.366,3.289,3.484,3.065,3.356,3.089,3.493,2.993,3.442,3.196,4.247,3.369,3.406,3.725,3.039,3.014,3.03,3.006,2.969,,3.091,2.846,2.874,3.059,3.047,2.862,2.95,3.011 +"Oct 22, 2018",3.372,3.374,3.311,3.493,3.088,3.38,3.151,3.502,2.993,3.438,3.211,4.22,3.347,3.408,3.715,3.042,3.025,3.055,3.01,2.948,,3.076,2.812,2.853,3.031,3.027,2.833,2.946,2.98 +"Oct 29, 2018",3.372,3.374,3.309,3.48,3.102,3.378,3.135,3.507,2.997,3.439,3.221,4.227,3.341,3.411,3.72,3.037,3.015,3.053,2.995,2.934,,3.048,2.77,2.868,3.018,2.99,2.853,2.925,2.962 +"Nov 05, 2018",3.356,3.358,3.291,3.455,3.095,3.342,3.155,3.484,2.991,3.425,3.206,4.332,3.384,3.404,3.695,3.019,3.01,3.048,2.99,2.902,,3.009,2.716,2.847,2.995,2.915,2.826,2.933,2.945 +"Nov 12, 2018",3.35,3.353,3.291,3.447,3.101,3.356,3.149,3.472,2.973,3.414,3.205,4.341,3.367,3.404,3.676,3.012,2.995,3.029,2.977,2.87,,2.974,2.675,2.827,2.957,2.897,2.757,2.89,2.901 +"Nov 19, 2018",3.316,3.319,3.263,3.386,3.089,3.332,3.125,3.462,2.95,3.376,3.19,4.207,3.346,3.372,3.637,2.965,2.965,2.979,2.957,2.816,,2.932,2.632,2.777,2.892,2.804,2.685,2.848,2.831 +"Nov 26, 2018",3.274,3.277,3.225,3.315,3.076,3.292,3.133,3.407,2.903,3.33,3.167,4.127,3.3,3.342,3.564,2.945,2.93,2.94,2.925,2.754,,2.86,2.544,2.74,2.771,2.775,2.658,2.806,2.765 +"Dec 03, 2018",3.203,3.206,3.187,3.257,3.041,3.238,3.138,3.399,2.879,3.228,3.119,4.032,3.262,3.26,3.444,2.835,2.915,2.922,2.912,2.644,,2.701,2.432,2.688,2.607,2.682,2.557,2.691,2.648 +"Dec 10, 2018",3.199,3.203,3.174,3.247,3.036,3.239,3.14,3.31,2.859,3.234,3.115,3.899,3.215,3.262,3.458,2.846,2.875,2.898,2.863,2.582,,2.636,2.315,2.666,2.54,2.612,2.428,2.606,2.599 +"Dec 17, 2018",3.187,3.191,3.165,3.228,3.03,3.235,3.124,3.305,2.852,3.22,3.102,3.814,3.217,3.248,3.444,2.828,2.863,2.887,2.85,2.54,,2.589,2.268,2.654,2.477,2.545,2.392,2.535,2.554 +"Dec 24, 2018",3.13,3.134,3.12,3.174,2.973,3.204,3.107,3.245,2.781,3.152,3.063,3.806,3.161,3.22,3.359,2.745,2.844,2.845,2.844,2.474,,2.524,2.218,2.599,2.376,2.472,2.324,2.481,2.465 +"Dec 31, 2018",3.101,3.105,3.094,3.133,2.959,3.176,3.107,3.221,2.74,3.119,3.033,3.721,3.136,3.171,3.357,2.675,2.812,2.826,2.805,2.389,,2.448,2.13,2.49,2.273,2.434,2.299,2.403,2.409 +"Jan 07, 2019",3.092,3.096,3.089,3.127,2.943,3.177,3.107,3.211,2.731,3.107,3.025,3.718,3.093,3.162,3.358,2.645,2.806,2.817,2.8,2.369,,2.423,2.152,2.482,2.236,2.384,2.287,2.352,2.383 +"Jan 14, 2019",3.139,3.143,3.12,3.205,2.967,3.188,3.108,3.24,2.767,3.17,3.077,3.888,3.116,3.216,3.43,2.712,2.801,2.808,2.797,2.378,,2.414,2.185,2.499,2.251,2.388,2.268,2.351,2.391 +"Jan 21, 2019",3.167,3.171,3.142,3.247,2.972,3.214,3.105,3.271,2.779,3.203,3.09,3.928,3.136,3.239,3.467,2.754,2.798,2.802,2.796,2.423,,2.476,2.211,2.496,2.39,2.424,2.279,2.416,2.45 +"Jan 28, 2019",3.171,3.175,3.148,3.248,2.978,3.229,3.105,3.268,2.795,3.205,3.076,3.927,3.142,3.258,3.456,2.761,2.797,2.792,2.8,2.479,,2.583,2.234,2.522,2.459,2.426,2.308,2.547,2.51 +"Feb 04, 2019",3.182,3.186,3.153,3.256,2.987,3.225,3.108,3.29,2.796,3.222,3.094,4.01,3.149,3.276,3.469,2.785,2.8,2.793,2.803,2.525,,2.637,2.248,2.542,2.587,2.44,2.329,2.63,2.559 +"Feb 11, 2019",3.181,3.184,3.151,3.251,2.982,3.229,3.102,3.293,2.792,3.22,3.102,4.011,3.15,3.276,3.456,2.799,2.799,2.792,2.803,2.533,,2.652,2.259,2.546,2.59,2.443,2.339,2.641,2.567 +"Feb 18, 2019",3.225,3.229,3.176,3.298,2.978,3.264,3.113,3.318,2.804,3.283,3.117,4.1,3.201,3.321,3.535,2.857,2.806,2.791,2.814,2.598,,2.708,2.384,2.591,2.671,2.5,2.391,2.68,2.656 +"Feb 25, 2019",3.23,3.233,3.181,3.302,2.982,3.27,3.118,3.327,2.798,3.288,3.124,4.113,3.207,3.326,3.528,2.881,2.823,2.801,2.835,2.629,,2.733,2.403,2.614,2.713,2.579,2.442,2.703,2.675 +"Mar 04, 2019",3.23,3.234,3.183,3.309,2.992,3.268,3.106,3.328,2.807,3.286,3.132,4.114,3.208,3.304,3.536,2.883,2.827,2.805,2.838,2.64,,2.742,2.433,2.613,2.727,2.603,2.487,2.704,2.686 +"Mar 11, 2019",3.229,3.233,3.185,3.311,2.989,3.268,3.113,3.338,2.806,3.283,3.118,4.111,3.226,3.28,3.539,2.883,2.836,2.812,2.848,2.639,,2.745,2.416,2.613,2.718,2.613,2.506,2.703,2.691 +"Mar 18, 2019",3.219,3.223,3.179,3.31,2.979,3.263,3.105,3.33,2.802,3.268,3.122,4.114,3.197,3.275,3.521,2.867,2.835,2.809,2.848,2.638,,2.738,2.451,2.612,2.694,2.619,2.51,2.696,2.688 +"Mar 25, 2019",3.219,3.222,3.177,3.308,2.973,3.265,3.097,3.326,2.815,3.269,3.116,4.032,3.182,3.27,3.536,2.854,2.839,2.811,2.854,2.631,,2.72,2.46,2.611,2.674,2.622,2.53,2.667,2.687 +"Oct 07, 2019",2.951,2.964,2.876,2.956,2.659,2.967,2.739,3.032,2.737,3.056,3.15,4.04,3.434,3.101,3.137,2.767,2.788,2.738,2.828,2.686,,2.734,2.386,2.697,2.676,2.922,2.33,2.652,2.526 +"Oct 14, 2019",2.955,2.968,2.87,2.955,2.652,2.929,2.739,3.044,2.733,3.079,3.111,,3.413,3.127,3.148,2.816,2.768,2.709,2.815,2.662,,2.803,2.359,2.717,2.633,2.903,2.352,2.584,2.52 +"Oct 21, 2019",2.966,2.982,2.877,2.966,2.674,2.921,2.732,3.067,2.805,3.098,3.12,,3.389,3.134,3.15,2.866,2.798,2.777,2.813,2.642,,2.804,2.368,2.697,2.617,2.904,2.364,2.567,2.485 +"Oct 28, 2019",2.969,2.983,2.879,2.955,2.659,2.943,2.743,3.068,2.748,3.103,3.159,,3.441,3.138,3.141,2.886,2.786,2.772,2.798,2.663,,2.798,2.372,2.586,2.615,2.946,2.342,2.597,2.503 +"Nov 04, 2019",2.973,2.987,2.882,2.968,2.651,2.946,2.741,3.06,2.743,3.104,3.154,,3.419,3.137,3.144,2.89,2.773,2.756,2.788,2.678,,2.808,2.344,2.57,2.627,2.938,2.345,2.631,2.523 +"Nov 11, 2019",2.972,2.985,2.876,2.978,2.649,2.919,2.749,3.067,2.728,3.102,3.232,,3.444,3.198,3.156,2.86,2.782,2.771,2.791,2.696,,2.836,2.394,2.585,2.652,2.945,2.388,2.661,2.534 +"Nov 18, 2019",2.985,2.999,2.887,2.991,2.649,2.936,2.754,3.065,2.745,3.122,3.233,,3.417,3.194,3.17,2.892,2.777,2.762,2.79,2.694,,2.79,2.403,2.713,2.662,2.954,2.402,2.635,2.529 +"Nov 25, 2019",2.994,3.008,2.893,2.998,2.66,2.942,2.753,3.081,2.756,3.136,3.225,,3.523,3.209,3.172,2.906,2.779,2.748,2.805,2.71,,2.799,2.41,2.622,2.666,2.953,2.39,2.696,2.535 +"Dec 02, 2019",3.003,3.016,2.906,3.029,2.658,2.947,2.762,3.106,2.75,3.137,3.225,,3.554,3.198,3.173,2.916,2.775,2.721,2.819,2.723,,2.874,2.4,2.625,2.68,2.949,2.395,2.715,2.547 +"Dec 09, 2019",3.013,3.027,2.92,3.042,2.672,2.959,2.77,3.177,2.764,3.143,3.246,,3.565,3.203,3.194,2.903,2.8,2.771,2.827,2.711,,2.806,2.379,2.631,2.674,2.942,2.385,2.698,2.546 +"Dec 16, 2019",3.026,3.041,2.928,3.077,2.668,2.957,2.773,3.126,2.771,3.163,3.25,,3.573,3.21,3.213,2.929,2.804,2.773,2.828,2.705,,2.777,2.401,2.62,2.679,2.935,2.373,2.676,2.558 +"Dec 23, 2019",3.055,3.073,2.967,3.129,2.692,3,2.79,3.161,2.81,3.188,3.278,,3.575,3.265,3.237,2.953,2.817,2.774,2.853,2.682,,2.726,2.401,2.632,2.64,2.945,2.39,2.629,2.534 +"Dec 30, 2019",3.077,3.096,2.984,3.145,2.712,3.023,2.798,3.174,2.823,3.222,3.312,,3.572,3.29,3.246,3.034,2.813,2.749,2.866,2.669,,2.726,2.405,2.636,2.614,2.939,2.39,2.615,2.52 +"Jan 06, 2020",3.119,3.14,3.033,3.203,2.766,3.074,2.844,3.211,2.874,3.257,3.368,,3.601,3.318,3.289,3.055,2.838,2.783,2.881,2.672,,2.72,2.403,2.634,2.612,2.979,2.39,2.613,2.495 +"Jan 13, 2020",3.097,3.118,3.015,3.176,2.753,3.056,2.846,3.191,2.848,3.232,3.365,,3.649,3.317,3.274,2.978,2.835,2.779,2.881,2.657,,2.707,2.351,2.617,2.602,2.976,2.375,2.593,2.477 +"Jan 20, 2020",3.075,3.096,2.989,3.123,2.729,3.02,2.883,3.187,2.792,3.211,3.34,,3.552,3.27,3.236,3.024,2.82,2.769,2.863,2.631,,2.669,2.272,2.584,2.568,2.914,2.312,2.584,2.484 +"Jan 27, 2020",2.996,3.013,2.908,3,2.705,2.906,2.886,3.081,2.788,3.121,3.19,,3.394,3.177,3.175,2.928,2.808,2.759,2.849,2.615,,2.614,2.208,2.537,2.495,2.966,2.277,2.554,2.463 +"Feb 03, 2020",2.934,2.951,2.855,2.89,2.676,2.869,2.87,3.018,2.714,3.049,3.12,,3.368,3.137,3.126,2.815,2.769,2.688,2.84,2.544,,2.546,2.142,2.5,2.43,2.92,2.172,2.468,2.39 +"Feb 10, 2020",2.909,2.928,2.833,2.859,2.642,2.856,2.862,2.996,2.674,3.024,3.114,,3.36,3.078,3.095,2.803,2.749,2.69,2.802,2.501,,2.508,2.069,2.456,2.39,2.88,2.128,2.405,2.351 +"Feb 17, 2020",2.899,2.917,2.822,2.86,2.628,2.83,2.855,2.99,2.686,3.013,3.115,,3.322,3.073,3.104,2.769,2.741,2.665,2.807,2.505,,2.533,2.127,2.462,2.411,2.879,2.145,2.418,2.341 +"Feb 24, 2020",2.892,2.909,2.808,2.848,2.631,2.82,2.809,2.982,2.688,3.013,3.107,,3.337,3.084,3.087,2.779,2.728,2.645,2.795,2.511,,2.551,2.108,2.454,2.416,2.89,2.164,2.411,2.345 +"Mar 02, 2020",2.821,2.839,2.738,2.745,2.585,2.755,2.782,2.87,2.639,2.937,3.063,,3.291,3.008,3.007,2.718,2.712,2.633,2.777,2.413,,2.462,2.061,2.353,2.311,2.748,2.129,2.318,2.284 +"Mar 09, 2020",2.751,2.769,2.665,2.637,2.542,2.677,2.741,2.85,2.58,2.875,2.947,,3.246,2.892,2.943,2.635,2.663,2.579,2.731,2.363,,2.434,1.955,2.317,2.259,2.722,2.047,2.297,2.205 +"Mar 16, 2020",2.595,2.614,2.503,2.411,2.42,2.544,2.561,2.774,2.452,2.724,2.866,,3.056,2.732,2.806,2.446,2.533,2.487,2.572,2.198,,2.323,1.833,1.933,2.073,2.558,1.892,2.149,2.003 +"Mar 23, 2020",2.447,2.463,2.383,2.279,2.301,2.418,2.499,2.572,2.303,2.536,2.581,,2.675,2.545,2.606,2.36,2.44,2.343,2.516,2.07,,2.162,1.586,1.929,1.833,2.5,1.711,2.042,1.827 +"Mar 30, 2020",2.421,2.44,2.355,2.256,2.285,2.405,2.428,2.516,2.273,2.524,2.571,,2.632,2.525,2.583,2.351,2.368,2.29,2.434,2.01,,2.148,1.578,1.888,1.854,2.438,1.669,1.969,1.744 +"Oct 05, 2020",2.129,2.138,2.046,2.052,1.83,2.062,2.074,2.483,2.013,2.227,2.306,,2.256,2.261,2.315,2.064,2.123,2.039,2.194,1.976,,2.048,1.624,2.015,1.858,2.351,1.615,1.927,1.775 +"Oct 12, 2020",2.136,2.144,2.046,2.05,1.84,2.08,2.054,2.307,2.015,2.243,2.346,,2.351,2.277,2.307,2.083,2.134,2.063,2.191,1.99,,2.054,1.643,1.95,1.924,2.363,1.636,1.937,1.78 +"Oct 19, 2020",2.147,2.154,2.048,2.05,1.852,2.082,2.077,2.214,2.024,2.261,2.352,,2.362,2.299,2.34,2.086,2.143,2.065,2.216,2.005,,2.052,1.652,1.968,1.94,2.362,1.638,1.973,1.785 +"Oct 26, 2020",2.142,2.149,2.048,2.037,1.862,2.084,2.086,2.213,2.039,2.251,2.355,,2.356,2.272,2.334,2.062,2.151,2.066,2.223,2.006,,2.097,1.618,1.955,1.948,2.366,1.631,1.971,1.79 +"Nov 02, 2020",2.131,2.138,2.04,2.023,1.856,2.077,2.082,2.205,2.04,2.234,2.356,,2.368,2.271,2.335,2.031,2.145,2.056,2.219,1.993,,2.078,1.579,1.949,1.919,2.356,1.613,1.964,1.786 +"Nov 09, 2020",2.142,2.149,2.061,2.065,1.871,2.095,2.087,2.207,2.039,2.233,2.348,,2.347,2.281,2.347,2.019,2.147,2.062,2.219,2.027,,2.095,1.765,1.961,1.982,2.363,1.645,1.979,1.846 +"Nov 16, 2020",2.177,2.184,2.099,2.123,1.902,2.134,2.105,2.212,2.053,2.267,2.451,,2.411,2.361,2.369,2.052,2.153,2.068,2.224,2.064,,2.122,1.737,2.045,2.015,2.406,1.708,2,1.907 +"Nov 23, 2020",2.202,2.209,2.123,2.16,1.902,2.153,2.131,2.249,2.076,2.295,2.461,,2.449,2.376,2.398,2.078,2.156,2.068,2.23,2.073,,2.162,1.815,2.045,2.023,2.415,1.745,2.003,1.911 +"Nov 30, 2020",2.264,2.272,2.192,2.232,1.977,2.23,2.186,2.309,2.135,2.355,2.475,,2.524,2.425,2.452,2.152,2.199,2.115,2.27,2.112,,2.195,1.84,2.055,2.039,2.439,1.779,2.069,1.94 +"Dec 07, 2020",2.294,2.303,2.226,2.26,2.005,2.259,2.251,2.299,2.179,2.383,2.511,,2.534,2.464,2.482,2.173,2.23,2.159,2.289,2.131,,2.221,1.866,2.096,2.077,2.457,1.797,2.086,1.948 +"Dec 14, 2020",2.339,2.346,2.277,2.324,2.051,2.307,2.289,2.348,2.215,2.417,2.585,,2.596,2.531,2.503,2.211,2.257,2.172,2.329,2.227,,2.244,1.951,2.106,2.122,2.594,1.896,2.15,1.998 +"Dec 21, 2020",2.423,2.43,2.356,2.434,2.128,2.39,2.322,2.393,2.272,2.513,2.74,,2.634,2.642,2.581,2.307,2.306,2.228,2.371,2.295,,2.336,2.013,2.132,2.211,2.671,1.968,2.197,2.081 +"Dec 28, 2020",2.439,2.445,2.382,2.444,2.158,2.413,2.384,2.423,2.282,2.514,2.755,,2.641,2.651,2.591,2.304,2.318,2.238,2.385,2.335,,2.365,2,2.179,2.224,2.683,1.983,2.28,2.097 +"Jan 04, 2021",2.458,2.465,2.402,2.452,2.172,2.434,2.396,2.545,2.296,2.537,2.78,,2.666,2.667,2.611,2.318,2.333,2.243,2.409,2.342,,2.371,2.01,2.182,2.218,2.688,1.969,2.286,2.129 +"Jan 11, 2021",2.504,2.513,2.463,2.502,2.226,2.493,2.491,2.575,2.385,2.572,2.848,,2.718,2.757,2.649,2.341,2.364,2.294,2.423,2.353,,2.37,2.032,2.195,2.247,2.742,2.001,2.273,2.122 +"Jan 18, 2021",2.558,2.568,2.512,2.536,2.287,2.541,2.55,2.659,2.418,2.634,2.916,,2.742,2.783,2.705,2.427,2.411,2.334,2.477,2.396,,2.433,2.064,2.286,2.281,2.786,2.029,2.323,2.145 +"Jan 25, 2021",2.569,2.579,2.521,2.546,2.289,2.55,2.566,2.671,2.435,2.646,2.945,,2.756,2.802,2.714,2.442,2.427,2.342,2.497,2.391,,2.446,2.079,2.286,2.285,2.794,2.029,2.299,2.148 +"Feb 01, 2021",2.602,2.613,2.552,2.587,2.304,2.583,2.59,2.691,2.444,2.685,2.98,,2.82,2.868,2.742,2.479,2.441,2.356,2.512,2.413,,2.454,2.106,2.296,2.312,2.795,2.037,2.342,2.152 +"Feb 08, 2021",2.667,2.678,2.627,2.669,2.366,2.663,2.665,2.724,2.523,2.739,2.954,,2.877,2.879,2.817,2.518,2.515,2.443,2.576,2.483,,2.536,2.197,2.386,2.403,2.839,2.12,2.395,2.266 +"Feb 15, 2021",2.744,2.753,2.715,2.771,2.44,2.759,2.747,2.743,2.612,2.802,3.025,,2.983,2.933,2.888,2.563,2.579,2.491,2.655,2.576,,2.65,2.286,2.477,2.484,2.914,2.216,2.496,2.371 +"Feb 22, 2021",2.808,2.817,2.772,2.82,2.501,2.82,2.805,2.797,2.68,2.873,3.135,,3.04,3.075,2.96,2.613,2.643,2.582,2.696,2.654,,2.718,2.323,2.535,2.562,2.964,2.298,2.591,2.471 +"Mar 01, 2021",2.852,2.859,2.809,2.86,2.543,2.848,2.842,2.843,2.744,2.921,3.156,,3.067,3.113,3,2.661,2.689,2.629,2.74,2.727,,2.721,2.431,2.584,2.636,3.127,2.378,2.627,2.504 +"Mar 08, 2021",2.884,2.89,2.838,2.895,2.584,2.882,2.843,2.866,2.768,2.956,3.152,,3.116,3.146,3.032,2.698,2.712,2.646,2.769,2.777,,2.753,2.633,2.602,2.683,3.207,2.602,2.65,2.537 +"Mar 15, 2021",2.903,2.907,2.849,2.912,2.601,2.896,2.815,2.935,2.776,2.976,3.237,,3.145,3.184,3.038,2.729,2.741,2.701,2.775,2.83,,2.864,2.595,2.653,2.659,3.221,2.618,2.744,2.615 +"Mar 22, 2021",2.88,2.884,2.829,2.868,2.591,2.883,2.821,2.895,2.761,2.949,3.219,,3.122,3.157,3.011,2.698,2.772,2.727,2.811,2.801,,2.791,2.438,2.717,2.624,3.198,2.558,2.715,2.596 +"Mar 29, 2021",2.863,2.868,2.811,2.838,2.572,2.857,2.837,2.892,2.768,2.933,3.19,,3.085,3.167,3.004,2.666,2.764,2.718,2.803,2.781,,2.784,2.379,2.705,2.637,3.176,2.483,2.685,2.573 +"Oct 04, 2021",3.175,3.178,3.081,3.17,2.852,3.101,3.038,3.248,3.002,3.284,3.334,,3.275,3.331,3.408,3,3.037,3.016,3.061,3.098,,3.057,2.868,2.921,3.114,3.437,2.832,3.026,2.94 +"Oct 11, 2021",3.284,3.288,3.198,3.281,2.999,3.231,3.143,3.302,3.073,3.38,3.431,,3.379,3.443,3.517,3.117,3.146,3.121,3.176,3.18,,3.324,2.978,2.994,3.148,3.531,2.88,3.095,3.03 +"Oct 18, 2021",3.366,3.374,3.28,3.355,3.088,3.31,3.221,3.435,3.175,3.47,3.55,,3.49,3.561,3.612,3.181,3.233,3.236,3.231,3.184,,3.337,3.003,3.091,3.173,3.538,2.943,3.105,3 +"Oct 25, 2021",3.397,3.405,3.316,3.408,3.128,3.33,3.266,3.411,3.231,3.501,3.602,,3.538,3.597,3.641,3.198,3.293,3.281,3.304,3.213,,3.348,3.054,3.164,3.186,3.561,2.939,3.093,3.053 +"Nov 01, 2021",3.395,3.403,3.319,3.38,3.139,3.348,3.277,3.437,3.261,3.492,3.6,,3.465,3.579,3.622,3.221,3.306,3.292,3.319,3.189,,3.287,3.078,3.205,3.179,3.559,2.912,3.013,3.059 +"Nov 08, 2021",3.405,3.413,3.318,3.372,3.141,3.35,3.28,3.417,3.28,3.513,3.612,,3.552,3.58,3.614,3.267,3.322,3.303,3.337,3.245,,3.303,3.071,3.204,3.149,3.55,2.899,3.245,3.053 +"Nov 15, 2021",3.408,3.415,3.323,3.372,3.151,3.351,3.298,3.443,3.286,3.507,3.612,,3.579,3.581,3.619,3.257,3.331,3.315,3.346,3.253,,3.309,3.062,3.198,3.162,3.547,2.859,3.285,3.022 +"Nov 22, 2021",3.384,3.391,3.304,3.335,3.139,3.335,3.297,3.419,3.276,3.478,3.609,,3.551,3.558,3.582,3.235,3.32,3.304,3.334,3.238,,3.296,2.986,3.172,3.158,3.524,2.834,3.306,2.962 +"Nov 29, 2021",3.363,3.371,3.291,3.301,3.14,3.35,3.296,3.305,3.25,3.446,3.62,,3.541,3.538,3.549,3.208,3.345,3.3,3.386,3.204,,3.325,2.893,3.167,3.126,3.42,2.784,3.29,2.953 +"Dec 06, 2021",3.321,3.328,3.254,3.259,3.128,3.293,3.282,3.251,3.226,3.399,3.565,,3.521,3.49,3.491,3.17,3.325,3.263,3.379,3.166,,3.258,2.832,3.102,3.071,3.349,2.67,3.279,2.917 +"Dec 13, 2021",3.35,3.361,3.274,3.278,3.126,3.317,3.31,3.306,3.213,3.446,3.63,,3.554,3.541,3.55,3.196,3.304,3.243,3.355,3.136,,3.258,2.872,3.11,3.098,3.35,2.687,3.198,2.891 +"Dec 20, 2021",3.344,3.355,3.265,3.263,3.103,3.318,3.309,3.299,3.199,3.445,3.638,,3.586,3.539,3.546,3.175,3.294,3.223,3.356,3.127,,3.227,2.792,3.108,3.077,3.439,2.672,3.16,2.864 +"Dec 27, 2021",3.366,3.379,3.287,3.299,3.115,3.334,3.316,3.353,3.205,3.472,3.632,,3.542,3.576,3.587,3.2,3.286,3.207,3.348,3.106,,3.207,2.835,3.101,3.084,3.384,2.695,3.137,2.857 +"Jan 03, 2022",3.39,3.404,3.315,3.336,3.139,3.367,3.32,3.388,3.241,3.496,3.639,,3.579,3.59,3.62,3.206,3.302,3.231,3.371,3.116,,3.216,2.89,3.106,3.095,3.373,2.749,3.148,2.876 +"Jan 10, 2022",3.46,3.476,3.4,3.44,3.223,3.456,3.383,3.44,3.265,3.559,3.673,,3.6,3.684,3.676,3.267,3.327,3.251,3.393,3.149,,3.292,2.972,3.132,3.123,3.383,2.847,3.19,2.908 +"Jan 17, 2022",3.6,3.619,3.55,3.6,3.336,3.627,3.539,3.502,3.37,3.696,3.843,,3.736,3.86,3.814,3.413,3.418,3.338,3.478,3.215,,3.351,3.051,3.186,3.176,3.458,2.894,3.242,2.998 +"Jan 24, 2022",3.671,3.692,3.631,3.675,3.441,3.677,3.641,3.704,3.456,3.763,3.963,,3.832,3.932,3.876,3.479,3.453,3.381,3.51,3.24,,3.372,3.075,3.22,3.218,3.506,2.955,3.245,3.025 +"Jan 31, 2022",3.776,3.8,3.75,3.79,3.537,3.805,3.762,3.805,3.603,3.864,4.032,,3.899,4.044,3.982,3.581,3.529,3.484,3.569,3.291,,3.443,3.215,3.295,3.285,3.56,3.02,3.284,3.074 +"Feb 07, 2022",3.891,3.915,3.869,3.931,3.654,3.919,3.883,3.857,3.688,3.976,4.1,,4.065,4.149,4.076,3.691,3.623,3.6,3.645,3.411,,3.589,3.239,3.38,3.449,3.666,3.108,3.348,3.273 +"Feb 14, 2022",3.956,3.981,3.932,3.969,3.715,3.984,3.935,4.077,3.8,4.043,4.219,,4.15,4.236,4.154,3.753,3.687,3.673,3.699,3.453,,3.631,3.309,3.456,3.459,3.71,3.151,3.393,3.318 +"Feb 21, 2022",3.956,3.977,3.918,3.929,3.733,3.966,3.951,3.993,3.853,4.047,4.231,,4.182,4.229,4.141,3.768,3.725,3.697,3.748,3.545,,3.634,3.31,3.542,3.461,3.729,3.154,3.627,3.317 +"Feb 28, 2022",4.054,4.076,4.011,4.026,3.83,4.064,4.024,4.105,3.947,4.156,4.403,,4.218,4.344,4.256,3.874,3.758,3.751,3.765,3.619,,3.727,3.431,3.635,3.541,3.849,3.25,3.695,3.35 +"Mar 07, 2022",4.922,4.951,4.961,5.065,4.721,5.067,4.718,5.281,4.696,4.969,5.333,,4.968,5.192,5.017,4.793,4.449,4.441,4.455,4.328,,4.496,4.084,4.465,4.329,4.372,3.83,4.521,3.988 +"Mar 14, 2022",4.935,4.956,4.957,4.823,4.907,5.013,5.216,4.83,4.804,4.973,5.208,,5.003,5.181,5.001,4.836,4.628,4.584,4.666,4.511,,4.58,4.133,4.647,4.374,4.8,4.003,4.621,4.178 +"Mar 21, 2022",4.886,4.907,4.908,4.829,4.815,4.934,5.097,4.987,4.784,4.924,5.134,,4.875,5.126,5.004,4.713,4.603,4.523,4.673,4.446,,4.545,4.123,4.589,4.236,4.594,4.003,4.673,4.095 +"Mar 28, 2022",5.127,5.152,5.126,5.071,4.997,5.217,5.2,5.012,5.052,5.206,5.314,,5.081,5.343,5.315,4.95,4.626,4.588,4.659,4.644,,4.733,4.389,4.842,4.45,4.875,4.257,4.835,4.243 +"Oct 03, 2022",4.705,4.718,4.568,4.636,4.349,4.559,4.608,4.765,4.535,4.882,4.928,,5.058,4.884,4.915,4.764,4.441,4.382,4.488,4.45,,4.422,4.123,4.378,4.401,4.599,3.892,4.681,4.066 +"Oct 10, 2022",5.345,5.359,5.279,5.481,4.971,5.336,5.048,5.408,5.148,5.466,5.59,,5.436,5.499,5.529,5.335,4.798,4.753,4.83,5.052,,5.192,4.517,4.827,4.758,5.083,4.441,5.476,4.639 +"Oct 17, 2022",5.722,5.748,5.706,5.786,5.42,5.756,5.724,5.846,5.456,5.827,5.908,,5.754,5.864,5.865,5.756,5.044,4.963,5.105,5.208,,5.335,4.579,5.063,4.977,5.221,4.591,5.641,4.752 +"Oct 24, 2022",5.699,5.726,5.702,5.79,5.481,5.731,5.728,5.611,5.546,5.786,5.87,,5.704,5.93,5.799,5.738,5.118,5.036,5.184,5.167,,5.304,4.79,5.028,4.745,5.318,4.662,5.543,4.702 +"Oct 31, 2022",5.836,5.868,5.806,5.922,5.542,5.843,5.749,5.884,5.68,5.962,6.104,,5.986,6.141,5.989,5.848,5.217,5.17,5.254,5.197,,5.256,4.734,5.116,4.76,5.217,4.516,5.693,4.697 +"Nov 07, 2022",5.902,5.931,5.882,5.966,5.69,5.927,5.814,5.871,5.872,6.009,6.158,,6.043,6.157,6.06,5.863,5.405,5.265,5.516,5.326,,5.451,4.589,5.326,5.113,5.131,4.438,5.945,4.758 +"Nov 14, 2022",5.783,5.805,5.744,5.667,5.69,5.815,5.814,5.615,5.781,5.884,6.093,,5.932,6.055,5.91,5.767,5.427,5.272,5.547,5.306,,5.437,4.542,5.161,5.106,4.76,4.276,6.001,4.732 +"Nov 21, 2022",5.431,5.451,5.35,5.227,5.349,5.333,5.649,5.19,5.371,5.558,5.759,,5.67,5.72,5.584,5.414,5.321,5.207,5.411,5.037,,5.232,4.37,5.041,4.76,4.972,4.187,5.647,4.424 +"Nov 28, 2022",5.142,5.152,5.083,4.929,5.084,5.083,5.43,4.771,5.17,5.217,5.584,,5.415,5.385,5.289,4.996,5.197,5.109,5.267,4.923,,5.017,4.198,4.859,4.7,4.881,3.995,5.491,4.334 +"Dec 05, 2022",4.855,4.872,4.804,4.616,4.739,4.862,5.156,4.561,4.834,4.937,5.28,,5.044,5.053,5.073,4.635,4.85,4.869,4.834,4.498,,4.82,3.957,4.274,4.172,4.649,3.745,4.815,4.155 +"Dec 12, 2022",4.545,4.568,4.503,4.295,4.467,4.517,4.923,4.323,4.604,4.622,5.007,,4.72,4.771,4.765,4.293,4.675,4.595,4.737,4.08,,4.226,3.657,4.176,3.843,4.279,3.443,4.157,3.941 +"Dec 19, 2022",4.597,4.625,4.576,4.461,4.482,4.62,4.821,4.41,4.629,4.672,5.087,,4.818,4.865,4.815,4.327,4.627,4.474,4.745,4.009,,4.103,3.524,4.117,3.831,4.237,3.471,4.191,3.668 +"Dec 26, 2022",4.638,4.67,4.602,4.56,4.449,4.664,4.741,4.464,4.536,4.739,5.091,,4.852,4.915,4.895,4.384,4.569,4.428,4.68,3.978,,3.926,3.607,4.089,3.805,4.219,3.443,4.177,3.613 +"Jan 02, 2023",4.663,4.694,4.621,4.604,4.417,4.687,4.715,4.565,4.598,4.77,5.169,,4.972,4.974,4.884,4.449,4.554,4.402,4.673,4.015,,3.968,3.684,4.194,3.786,4.301,3.481,4.219,3.621 +"Jan 09, 2023",4.546,4.573,4.501,4.459,4.328,4.583,4.586,4.47,4.432,4.644,5.15,,4.896,4.852,4.733,4.355,4.504,4.35,4.626,3.981,,3.883,3.581,4.06,3.73,4.285,3.456,4.199,3.599 +"Jan 16, 2023",4.598,4.621,4.529,4.532,4.301,4.602,4.577,4.542,4.505,4.714,5.12,,4.841,4.937,4.825,4.407,4.502,4.355,4.618,4.115,,4.043,3.637,4.093,3.871,4.306,3.512,4.448,3.667 +"Jan 23, 2023",4.701,4.721,4.622,4.657,4.392,4.705,4.598,4.651,4.53,4.825,5.242,,4.919,5.068,4.941,4.498,4.513,4.371,4.625,4.292,,4.227,3.792,4.172,4.044,4.39,3.659,4.677,3.86 +"Jan 30, 2023",4.657,4.673,4.599,4.567,4.42,4.701,4.612,4.614,4.567,4.752,5.158,,4.888,5.035,4.825,4.481,4.534,4.359,4.672,4.321,,4.24,3.707,4.131,4.044,4.488,3.604,4.712,3.855 +"Feb 06, 2023",4.463,4.478,4.43,4.304,4.339,4.509,4.601,4.416,4.368,4.527,4.925,,4.609,4.733,4.636,4.233,4.413,4.253,4.539,4.164,,4.036,3.655,3.995,3.862,4.401,3.408,4.485,3.759 +"Feb 13, 2023",4.388,4.403,4.336,4.192,4.195,4.452,4.508,4.315,4.3,4.469,4.843,,4.538,4.636,4.6,4.15,4.349,4.178,4.484,4.086,,3.99,3.639,3.913,3.825,4.317,3.394,4.378,3.694 +"Feb 20, 2023",4.263,4.277,4.2,4.073,4.006,4.292,4.429,4.172,4.229,4.351,4.714,,4.43,4.493,4.501,4.009,4.233,4.102,4.336,3.975,,3.907,3.496,3.822,3.739,4.296,3.379,4.19,3.6 +"Feb 27, 2023",4.23,4.245,4.171,4.061,3.96,4.264,4.375,4.187,4.161,4.316,4.688,,4.392,4.464,4.477,3.959,4.207,4.069,4.315,3.929,,3.855,3.526,3.815,3.687,4.29,3.364,4.12,3.551 +"Mar 06, 2023",4.245,4.261,4.19,4.111,3.953,4.271,4.374,4.259,4.146,4.334,4.705,,4.48,4.428,4.488,3.99,4.157,3.993,4.286,3.929,,3.808,3.585,3.816,3.728,4.25,3.424,4.119,3.564 +"Mar 13, 2023",4.184,4.198,4.122,4.037,3.898,4.201,4.315,4.174,4.071,4.274,4.633,,4.315,4.405,4.421,3.942,4.135,3.958,4.275,3.885,,3.735,3.517,3.704,3.647,4.218,3.368,4.094,3.516 +"Mar 20, 2023",4.133,4.148,4.06,3.96,3.827,4.147,4.287,4.048,4.027,4.233,4.579,,4.275,4.334,4.405,3.867,4.103,3.924,4.243,3.829,,3.689,3.454,3.66,3.571,4.194,3.271,4.026,3.462 +"Mar 27, 2023",4.073,4.087,4,3.919,3.785,4.088,4.148,4.018,4.004,4.173,4.481,,4.212,4.316,4.34,3.807,4.037,3.882,4.159,3.781,,3.728,3.445,3.637,3.575,4.158,3.258,3.92,3.44 diff --git a/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv b/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv index 56f65ce2..c30c17cc 100644 --- a/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv +++ b/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv @@ -1,688 +1,716 @@ -Back to Contents,Data 1: Residential Propane Weekly Heating Oil and Propane Prices (October - March),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -Sourcekey,W_EPLLPA_PRS_NUS_DPG,W_EPLLPA_PRS_R10_DPG,W_EPLLPA_PRS_R1X_DPG,W_EPLLPA_PRS_SCT_DPG,W_EPLLPA_PRS_SME_DPG,W_EPLLPA_PRS_SMA_DPG,W_EPLLPA_PRS_SNH_DPG,W_EPLLPA_PRS_SRI_DPG,W_EPLLPA_PRS_SVT_DPG,W_EPLLPA_PRS_R1Y_DPG,W_EPLLPA_PRS_SDE_DPG,W_EPLLPA_PRS_SMD_DPG,W_EPLLPA_PRS_SNJ_DPG,W_EPLLPA_PRS_SNY_DPG,W_EPLLPA_PRS_SPA_DPG,W_EPLLPA_PRS_R1Z_DPG,W_EPLLPA_PRS_SFL_DPG,W_EPLLPA_PRS_SGA_DPG,W_EPLLPA_PRS_SNC_DPG,W_EPLLPA_PRS_SVA_DPG,W_EPLLPA_PRS_R20_DPG,W_EPLLPA_PRS_SIL_DPG,W_EPLLPA_PRS_SIN_DPG,W_EPLLPA_PRS_SIA_DPG,W_EPLLPA_PRS_SKS_DPG,W_EPLLPA_PRS_SKY_DPG,W_EPLLPA_PRS_SMI_DPG,W_EPLLPA_PRS_SMN_DPG,W_EPLLPA_PRS_SMO_DPG,W_EPLLPA_PRS_SNE_DPG,W_EPLLPA_PRS_SND_DPG,W_EPLLPA_PRS_SOH_DPG,W_EPLLPA_PRS_SOK_DPG,W_EPLLPA_PRS_SSD_DPG,W_EPLLPA_PRS_STN_DPG,W_EPLLPA_PRS_SWI_DPG,W_EPLLPA_PRS_R30_DPG,W_EPLLPA_PRS_SAL_DPG,W_EPLLPA_PRS_SAR_DPG,W_EPLLPA_PRS_SMS_DPG,W_EPLLPA_PRS_STX_DPG,W_EPLLPA_PRS_R40_DPG,W_EPLLPA_PRS_SCO_DPG,W_EPLLPA_PRS_SID_DPG,W_EPLLPA_PRS_SMT_DPG,W_EPLLPA_PRS_SUT_DPG, -Date,Weekly U.S. Propane Residential Price (Dollars per Gallon),Weekly East Coast (PADD 1) Propane Residential Price (Dollars per Gallon),Weekly New England (PADD 1A) Propane Residential Price (Dollars per Gallon),Weekly Connecticut Propane Residential Price (Dollars per Gallon),Weekly Maine Propane Residential Price (Dollars per Gallon),Weekly Massachusetts Propane Residential Price (Dollars per Gallon),Weekly New Hampshire Propane Residential Price (Dollars per Gallon),Weekly Rhode Island Propane Residential Price (Dollars per Gallon),Weekly Vermont Propane Residential Price (Dollars per Gallon),Weekly Central Atlantic (PADD 1B) Propane Residential Price (Dollars per Gallon),Weekly Delaware Propane Residential Price (Dollars per Gallon),Weekly Maryland Propane Residential Price (Dollars per Gallon),Weekly New Jersey Propane Residential Price (Dollars per Gallon),Weekly New York Propane Residential Price (Dollars per Gallon),Weekly Pennsylvania Propane Residential Price (Dollars per Gallon),Weekly Lower Atlantic (PADD 1C) Propane Residential Price (Dollars per Gallon),Weekly Florida Propane Residential Price (Dollars per Gallon),Weekly Georgia Propane Residential Price (Dollars per Gallon),Weekly North Carolina Propane Residential Price (Dollars per Gallon),Weekly Virginia Propane Residential Price (Dollars per Gallon),Weekly Midwest (PADD 2) Propane Residential Price (Dollars per Gallon),Weekly Illinois Propane Residential Price (Dollars per Gallon),Weekly Indiana Propane Residential Price (Dollars per Gallon),Weekly Iowa Propane Residential Price (Dollars per Gallon),Weekly Kansas Propane Residential Price (Dollars per Gallon),Weekly Kentucky Propane Residential Price (Dollars per Gallon),Weekly Michigan Propane Residential Price (Dollars per Gallon),Weekly Minnesota Propane Residential Price (Dollars per Gallon),Weekly Missouri Propane Residential Price (Dollars per Gallon),Weekly Nebraska Propane Residential Price (Dollars per Gallon),Weekly North Dakota Propane Residential Price (Dollars per Gallon),Weekly Ohio Propane Residential Price (Dollars per Gallon),Weekly Oklahoma Propane Residential Price (Dollars per Gallon),Weekly South Dakota Propane Residential Price (Dollars per Gallon),Weekly Tennessee Propane Residential Price (Dollars per Gallon),Weekly Wisconsin Propane Residential Price (Dollars per Gallon),Weekly Weekly Gulf Coast (PADD 3) Propane Residential Price (Dollars per Gallon),Weekly Alabama Propane Residential Price (Dollars per Gallon),Weekly Arkansas Propane Residential Price (Dollars per Gallon),Weekly Mississippi Propane Residential Price (Dollars per Gallon),Weekly Texas Propane Residential Price (Dollars per Gallon),Weekly Weekly Rocky Mountain (PADD 4) Propane Residential Price (Dollars per Gallon),Weekly Colorado Propane Residential Price (Dollars per Gallon),Weekly Idaho Propane Residential Price (Dollars per Gallon),Weekly Montana Propane Residential Price (Dollars per Gallon),Weekly Utah Propane Residential Price (Dollars per Gallon), -"Oct 01, 1990",1.042,1.263,1.229,1.292,1.199,1.248,1.235,1.32,1.172,1.342,1.234,1.28,1.356,1.443,1.199,1.226,,,1.227,1.224,0.925,0.938,0.928,0.795,0.801,,0.985,0.992,0.901,0.751,0.772,1.135,,0.743,,0.977,,,,,,,,,,, -"Oct 15, 1990",1.083,1.296,1.272,1.299,1.216,1.304,1.281,1.348,1.263,1.377,1.32,1.352,1.377,1.448,1.259,1.247,,,1.258,1.22,0.971,0.967,0.995,0.838,0.857,,1.046,1.019,0.958,0.808,0.822,1.194,,0.775,,1.016,,,,,,,,,,, -"Nov 05, 1990",1.06,1.292,1.305,1.348,1.274,1.328,1.325,1.399,1.25,1.367,1.298,1.355,1.377,1.433,1.248,1.212,,,1.204,1.229,0.938,0.924,0.994,0.773,0.809,,1.029,0.968,0.924,0.757,0.795,1.184,,0.768,,1.004,,,,,,,,,,, -"Nov 19, 1990",1.046,1.283,1.275,1.308,1.237,1.332,1.233,1.41,1.265,1.361,1.297,1.356,1.378,1.425,1.234,1.222,,,1.204,1.265,0.921,0.916,0.995,0.766,0.795,,1.035,0.936,0.888,0.749,0.789,1.183,,0.759,,0.972,,,,,,,,,,, -"Dec 03, 1990",1.038,1.283,1.291,1.302,1.282,1.333,1.246,1.385,1.287,1.36,1.291,1.334,1.378,1.433,1.235,1.206,,,1.186,1.25,0.908,0.883,0.992,0.728,0.753,,1.028,0.944,0.875,0.72,0.785,1.161,,0.752,,0.983,,,,,,,,,,, -"Dec 17, 1990",1.001,1.273,1.29,1.281,1.281,1.317,1.283,1.477,1.28,1.364,1.272,1.361,1.354,1.437,1.24,1.172,,,1.148,1.226,0.857,0.822,0.958,0.681,0.67,,1.014,0.871,0.835,0.666,0.728,1.136,,0.717,,0.911,,,,,,,,,,, -"Jan 07, 1991",1.001,1.275,1.307,1.275,1.383,1.306,1.268,1.415,1.284,1.356,1.273,1.357,1.349,1.423,1.234,1.169,,,1.157,1.195,0.856,0.835,0.967,0.646,0.676,,1,0.865,0.824,0.669,0.758,1.166,,0.715,,0.919,,,,,,,,,,, -"Jan 21, 1991",1.003,1.272,1.293,1.259,1.336,1.296,1.264,1.453,1.297,1.359,1.27,1.358,1.369,1.431,1.22,1.173,,,1.158,1.207,0.86,0.838,0.958,0.67,0.679,,1.003,0.889,0.814,0.661,0.77,1.189,,0.706,,0.906,,,,,,,,,,, -"Feb 04, 1991",0.957,1.246,1.267,1.228,1.315,1.275,1.233,1.388,1.267,1.335,1.265,1.35,1.332,1.401,1.201,1.144,,,1.121,1.196,0.805,0.772,0.932,0.583,0.616,,0.951,0.822,0.765,0.603,0.714,1.156,,0.647,,0.862,,,,,,,,,,, -"Feb 18, 1991",0.92,1.212,1.238,1.193,1.306,1.251,1.193,1.375,1.224,1.309,1.221,1.331,1.291,1.396,1.132,1.097,,,1.074,1.15,0.766,0.751,0.906,0.569,0.535,,0.922,0.795,0.722,0.544,0.637,1.117,,0.584,,0.811,,,,,,,,,,, -"Mar 04, 1991",0.887,1.183,1.193,1.179,1.216,1.225,1.177,1.316,1.153,1.288,1.167,1.259,1.258,1.391,1.139,1.077,,,1.05,1.14,0.731,0.728,0.892,0.527,0.525,,0.897,0.753,0.69,0.51,0.574,1.041,,0.568,,0.777,,,,,,,,,,, -"Mar 18, 1991",0.881,1.176,1.185,1.176,1.214,1.197,1.137,1.285,1.192,1.284,1.165,1.253,1.251,1.391,1.129,1.07,,,1.021,1.182,0.725,0.724,0.878,0.528,0.535,,0.886,0.757,0.681,0.516,0.548,1.018,,0.56,,0.771,,,,,,,,,,, -"Oct 07, 1991",0.867,1.147,1.177,1.192,1.294,1.153,1.064,1.35,1.17,1.243,1.172,1.22,1.246,1.313,1.127,1.012,,,0.987,1.097,0.707,,0.785,0.578,0.564,,0.856,0.715,0.681,0.552,0.579,0.956,,0.588,,0.7,,,,,,,,,,, -"Oct 21, 1991",0.887,1.168,1.191,1.207,1.296,1.153,1.092,1.332,1.199,1.266,1.192,1.224,1.274,1.345,1.147,1.039,,,1.019,1.107,0.726,,0.799,,0.593,,0.877,0.716,0.711,0.588,0.618,0.947,,0.615,,0.721,,,,,,,,,,, -"Nov 04, 1991",0.899,1.178,1.21,1.207,1.318,1.202,1.121,1.371,1.183,1.266,1.199,1.203,1.284,1.351,1.145,1.05,,,1.029,1.12,0.741,,0.806,0.606,0.604,,0.888,0.732,0.737,0.597,0.618,0.971,,0.626,,0.739,,,,,,,,,,, -"Nov 18, 1991",0.917,1.189,1.213,1.199,1.34,1.206,1.11,1.372,1.191,1.274,1.222,1.214,1.285,1.357,1.153,1.072,,,1.056,1.127,0.763,,0.851,,0.623,,0.903,0.775,0.741,0.617,0.65,0.973,,0.65,,0.774,,,,,,,,,,, -"Dec 02, 1991",0.923,1.197,1.216,1.198,1.335,1.207,1.12,1.377,1.203,1.293,1.223,1.215,1.29,1.395,1.159,1.075,,,1.053,1.147,0.768,,0.855,0.634,0.621,,0.9,0.785,0.746,0.615,0.655,0.974,,0.65,,0.786,,,,,,,,,,, -"Dec 16, 1991",0.916,1.197,1.215,1.189,1.336,1.209,1.12,1.379,1.208,1.295,1.227,1.244,1.278,1.393,1.154,1.073,,,1.051,1.146,0.757,,0.85,,0.598,,0.902,0.776,0.736,0.603,0.66,0.966,,0.641,,0.784,,,,,,,,,,, -"Jan 06, 1992",0.896,1.18,1.205,1.162,1.336,1.189,1.121,1.384,1.203,1.291,1.217,1.254,1.269,1.378,1.162,1.035,,,1.013,1.112,0.735,,0.838,0.577,0.549,,0.884,0.752,0.715,0.567,0.639,0.967,,0.615,,0.759,,,,,,,,,,, -"Jan 20, 1992",0.888,1.173,1.199,1.147,1.336,1.179,1.121,1.364,1.197,1.283,1.2,1.25,1.276,1.372,1.146,1.029,,,1.005,1.11,0.727,,0.836,,0.533,,0.852,0.753,0.712,0.548,0.612,0.982,,0.599,,0.758,,,,,,,,,,, -"Feb 03, 1992",0.883,1.173,1.197,1.145,1.335,1.179,1.118,1.365,1.197,1.282,1.192,1.226,1.28,1.381,1.139,1.033,,,1.01,1.109,0.719,,0.841,0.53,0.525,,0.848,0.738,0.718,0.536,0.594,0.974,,0.581,,0.751,,,,,,,,,,, -"Feb 17, 1992",0.877,1.169,1.192,1.126,1.335,1.173,1.118,1.349,1.194,1.274,1.19,1.224,1.28,1.379,1.106,1.034,,,1.011,1.112,0.712,,0.837,,0.522,,0.844,0.734,0.714,0.53,0.581,0.936,,0.585,,0.747,,,,,,,,,,, -"Mar 02, 1992",0.871,1.166,1.187,1.124,1.336,1.166,1.105,1.337,1.191,1.273,1.179,1.222,1.277,1.379,1.107,1.032,,,1.009,1.112,0.705,,0.832,0.519,0.518,,0.841,0.729,0.707,0.528,0.575,0.927,,0.579,,0.732,,,,,,,,,,, -"Mar 16, 1992",0.863,1.161,1.183,1.12,1.333,1.154,1.105,1.337,1.19,1.262,1.177,1.202,1.275,1.367,1.102,1.031,,,1.007,1.11,0.694,,0.833,,0.514,,0.833,0.712,0.68,0.528,0.562,0.922,,0.57,,0.73,,,,,,,,,,, -"Oct 05, 1992",0.85,1.143,1.161,1.183,1.259,1.147,1.096,1.305,1.134,1.248,1.133,1.233,1.228,1.381,1.101,0.997,,,0.974,1.095,0.695,,0.795,0.514,0.564,,0.819,0.718,0.679,,0.566,0.865,,0.575,,0.699,,,,,,,,,,, -"Oct 19, 1992",0.865,1.158,1.177,1.18,1.293,1.15,1.11,1.307,1.152,1.256,1.144,1.238,1.219,1.373,1.152,1.006,,,0.983,1.099,0.708,,0.801,,0.562,,0.839,0.731,0.689,,0.576,0.849,,0.584,,0.707,,,,,,,,,,, -"Nov 02, 1992",0.868,1.153,1.167,1.174,1.252,1.153,1.11,1.31,1.156,1.255,1.15,1.241,1.221,1.374,1.148,1.003,,,0.98,1.099,0.714,,0.814,0.542,0.576,,0.848,0.731,0.699,,0.586,0.864,,0.594,,0.705,,,,,,,,,,, -"Nov 16, 1992",0.876,1.154,1.164,1.177,1.25,1.154,1.11,1.316,1.139,1.257,1.15,1.24,1.209,1.374,1.155,1.007,,,0.985,1.1,0.727,,0.836,,0.587,,0.845,0.748,0.709,,0.602,0.873,,0.601,,0.73,,,,,,,,,,, -"Dec 07, 1992",0.89,1.157,1.165,1.182,1.246,1.156,1.104,1.316,1.143,1.264,1.132,1.243,1.21,1.376,1.175,1.008,,,0.987,1.098,0.745,,0.853,0.588,0.605,,0.85,0.77,0.727,,0.628,0.887,,0.635,,0.744,,,,,,,,,,, -"Dec 21, 1992",0.899,1.157,1.163,1.176,1.243,1.157,1.103,1.323,1.139,1.264,1.134,1.243,1.21,1.376,1.176,1.008,,,0.987,1.099,0.761,,0.856,,0.62,,0.867,0.789,0.739,,0.637,0.892,,0.646,,0.769,,,,,,,,,,, -"Jan 04, 1993",0.924,1.161,1.167,1.182,1.246,1.156,1.104,1.338,1.15,1.267,1.143,1.252,1.211,1.378,1.178,1.014,,,0.993,1.106,0.797,,0.873,0.641,0.68,,0.885,0.834,0.777,,0.667,0.903,,0.688,,0.819,,,,,,,,,,, -"Jan 11, 1993",1.02,1.169,1.173,1.186,1.243,1.159,1.114,1.345,1.167,1.276,1.154,1.265,1.229,1.382,1.186,1.025,,,1.003,1.116,0.94,,0.911,0.828,0.888,,0.938,1.024,0.913,,0.886,0.936,,0.898,,1.021,,,,,,,,,,, -"Jan 18, 1993",1.002,1.167,1.178,1.187,1.244,1.158,1.115,1.355,1.185,1.267,1.159,1.266,1.177,1.384,1.185,1.024,,,1.004,1.109,0.913,,0.934,0.764,0.83,,0.948,1.007,0.902,,0.901,0.948,,0.825,,0.934,,,,,,,,,,, -"Jan 25, 1993",0.968,1.172,1.179,1.183,1.257,1.173,1.125,1.352,1.169,1.28,1.155,1.267,1.233,1.386,1.191,1.023,,,1.001,1.116,0.857,,0.935,0.688,0.717,,0.941,0.918,0.835,,0.783,0.954,,0.741,,0.88,,,,,,,,,,, -"Feb 01, 1993",0.954,1.168,1.183,1.185,1.255,1.161,1.127,1.357,1.193,1.268,1.155,1.266,1.182,1.387,1.183,1.02,,,1,1.109,0.837,,0.926,0.661,0.696,,0.944,0.884,0.822,,0.747,0.95,,0.718,,0.858,,,,,,,,,,, -"Feb 15, 1993",0.937,1.169,1.183,1.186,1.255,1.162,1.137,1.351,1.185,1.271,1.166,1.273,1.182,1.391,1.183,1.019,,,0.998,1.111,0.81,,0.926,,0.653,,0.941,0.838,0.758,,0.696,0.934,,0.688,,0.834,,,,,,,,,,, -"Mar 01, 1993",0.968,1.181,1.192,1.205,1.258,1.165,1.14,1.352,1.198,1.293,1.186,1.302,1.183,1.435,1.185,1.021,,,1.001,1.113,0.851,,0.927,0.704,0.768,,0.946,0.886,0.843,,0.668,0.934,,0.71,,0.878,,,,,,,,,,, -"Mar 15, 1993",0.944,1.18,1.193,1.205,1.258,1.167,1.142,1.362,1.197,1.302,1.188,1.313,1.183,1.45,1.192,1.004,,,0.978,1.12,0.814,,0.928,,0.676,,0.945,0.854,0.782,,0.66,0.937,,0.697,,0.839,,,,,,,,,,, -"Apr 05, 1993",0.935,1.185,1.194,1.208,1.261,1.178,1.147,1.353,1.184,1.314,1.203,1.309,1.239,1.451,1.192,1.006,,,0.975,1.139,0.801,,0.916,0.624,0.668,,0.927,0.83,0.755,,0.642,0.934,,0.688,,0.816,,,,,,,,,,, -"Apr 19, 1993",0.924,1.169,1.195,1.207,1.254,1.163,1.143,1.34,1.21,1.277,1.175,1.297,1.186,1.413,1.185,1.005,,,0.977,1.128,0.791,,0.919,,0.657,,0.924,0.821,0.741,,0.618,0.927,,0.678,,0.813,,,,,,,,,,, -"Oct 04, 1993",0.87,1.101,1.155,1.122,1.258,1.138,1.102,1.293,1.147,1.181,1.103,1.187,1.186,1.233,1.138,0.952,,,0.927,1.048,0.74,,0.798,0.605,0.62,,0.84,0.758,0.707,,0.614,0.874,,0.621,,0.773,,,,,,,,,,, -"Oct 18, 1993",0.872,1.102,1.156,1.129,1.255,1.144,1.089,1.308,1.145,1.183,1.113,1.191,1.186,1.234,1.138,0.953,,,0.927,1.049,0.743,,0.815,0.6,0.621,,0.844,0.77,0.706,,0.622,0.877,,0.639,,0.768,,,,,,,,,,, -"Nov 01, 1993",0.876,1.103,1.155,1.119,1.256,1.148,1.09,1.308,1.146,1.182,1.113,1.191,1.191,1.225,1.138,0.956,,,0.931,1.049,0.747,,0.825,0.604,0.622,,0.845,0.771,0.725,,0.624,0.878,,0.639,,0.765,,,,,,,,,,, -"Nov 15, 1993",0.88,1.107,1.158,1.127,1.254,1.152,1.09,1.305,1.147,1.184,1.112,1.192,1.193,1.231,1.14,0.963,,,0.94,1.048,0.749,,0.833,0.611,0.628,,0.849,0.772,0.728,,0.625,0.873,,0.644,,0.763,,,,,,,,,,, -"Dec 06, 1993",0.882,1.109,1.159,1.125,1.254,1.155,1.098,1.304,1.145,1.187,1.112,1.199,1.193,1.232,1.143,0.965,,,0.943,1.048,0.752,,0.835,0.613,0.628,,0.85,0.776,0.736,,0.63,0.87,,0.644,,0.768,,,,,,,,,,, -"Dec 20, 1993",0.88,1.11,1.161,1.138,1.253,1.154,1.098,1.303,1.144,1.187,1.113,1.199,1.193,1.235,1.142,0.968,,,0.947,1.047,0.748,,0.842,0.599,0.613,,0.85,0.766,0.735,,0.627,0.872,,0.637,,0.767,,,,,,,,,,, -"Jan 03, 1994",0.88,1.111,1.161,1.144,1.253,1.154,1.098,1.295,1.141,1.187,1.114,1.196,1.196,1.237,1.142,0.969,,,0.947,1.048,0.747,,0.838,0.593,0.612,,0.85,0.773,0.734,,0.624,0.876,,0.631,,0.762,,,,,,,,,,, -"Jan 17, 1994",0.884,1.118,1.161,1.143,1.253,1.151,1.099,1.295,1.144,1.199,1.138,1.203,1.198,1.244,1.161,0.979,,,0.959,1.054,0.751,,0.847,0.593,0.612,,0.854,0.779,0.738,,0.628,0.882,,0.638,,0.767,,,,,,,,,,, -"Jan 31, 1994",0.896,1.135,1.168,1.155,1.254,1.155,1.106,1.296,1.156,1.21,1.181,1.256,1.2,1.251,1.155,1.009,,,0.992,1.073,0.759,,0.873,0.591,0.612,,0.87,0.789,0.739,,0.634,0.893,,0.634,,0.779,,,,,,,,,,, -"Feb 07, 1994",0.905,1.146,1.177,1.153,1.26,1.158,1.133,1.3,1.171,1.227,1.2,1.279,1.226,1.264,1.169,1.015,,,0.999,1.074,0.767,,0.876,0.598,0.616,,0.878,0.793,0.745,,0.641,0.899,,0.64,,0.795,,,,,,,,,,, -"Feb 14, 1994",0.909,1.151,1.183,1.166,1.261,1.166,1.135,1.306,1.174,1.234,1.228,1.28,1.247,1.269,1.168,1.017,,,1,1.079,0.768,,0.872,0.603,0.619,,0.883,0.792,0.74,,0.642,0.9,,0.64,,0.796,,,,,,,,,,, -"Feb 21, 1994",0.908,1.154,1.182,1.155,1.264,1.166,1.143,1.313,1.174,1.234,1.225,1.28,1.246,1.268,1.172,1.027,,,1.013,1.079,0.767,,0.872,0.598,0.617,,0.887,0.784,0.746,,0.642,0.899,,0.64,,0.795,,,,,,,,,,, -"Feb 28, 1994",0.908,1.154,1.184,1.156,1.273,1.166,1.143,1.314,1.172,1.233,1.223,1.281,1.245,1.264,1.172,1.026,,,1.013,1.074,0.767,,0.873,0.597,0.616,,0.888,0.782,0.745,,0.639,0.898,,0.642,,0.795,,,,,,,,,,, -"Mar 07, 1994",0.905,1.152,1.183,1.152,1.273,1.168,1.144,1.312,1.169,1.234,1.201,1.291,1.246,1.264,1.173,1.02,,,1.006,1.073,0.763,,0.873,0.59,0.614,,0.888,0.77,0.744,,0.639,0.896,,0.64,,0.789,,,,,,,,,,, -"Mar 21, 1994",0.898,1.148,1.182,1.148,1.273,1.164,1.147,1.315,1.169,1.233,1.193,1.297,1.244,1.262,1.172,1.011,,,0.995,1.071,0.752,,0.864,0.579,0.603,,0.886,0.756,0.737,,0.63,0.891,,0.643,,0.763,,,,,,,,,,, -"Oct 03, 1994",0.853,1.127,1.14,1.135,1.266,1.106,1.127,1.29,1.125,1.163,1.141,1.15,1.239,1.163,1.116,1.039,,,1,1.094,0.718,,0.782,0.558,,0.923,0.792,0.703,0.636,,0.584,0.848,,0.624,,0.743,,,,,,,,,,, -"Oct 17, 1994",0.838,1.141,1.133,1.136,1.276,1.112,1.13,1.249,1.083,1.205,1.148,1.151,1.229,1.246,1.128,1.044,,,1.007,1.093,0.711,,0.789,0.545,,0.923,0.797,0.71,0.636,,0.586,0.841,,0.621,,0.745,,,,,,,,,,, -"Nov 07, 1994",0.849,1.147,1.135,1.141,1.276,1.129,1.132,1.278,1.077,1.213,1.149,1.169,1.229,1.256,1.132,1.05,,,1.018,1.095,0.722,,0.797,0.554,,0.942,0.811,0.73,0.651,,0.598,0.856,,0.62,,0.746,,,,,,,,,,, -"Nov 21, 1994",0.863,1.155,1.137,1.142,1.282,1.135,1.134,1.312,1.07,1.214,1.157,1.185,1.246,1.257,1.167,1.056,,,1.025,1.097,0.726,,0.801,0.56,,0.95,0.812,0.734,0.652,,0.61,0.86,,0.629,,0.759,,,,,,,,,,, -"Dec 05, 1994",0.867,1.149,1.145,1.143,1.294,1.151,1.152,1.319,1.072,1.197,1.159,1.19,1.242,1.259,1.11,1.059,,,1.03,1.097,0.733,,0.804,0.554,,0.961,0.821,0.743,0.668,,0.619,0.869,,0.634,,0.762,,,,,,,,,,, -"Dec 19, 1994",0.867,1.154,1.148,1.141,1.304,1.157,1.154,1.339,1.08,1.205,1.162,1.196,1.245,1.272,1.116,1.059,,,1.03,1.098,0.742,,0.813,0.602,,0.916,0.829,0.757,0.676,,0.637,0.863,,0.641,,0.762,,,,,,,,,,, -"Jan 02, 1995",0.874,1.159,1.152,1.141,1.254,1.157,1.172,1.34,1.086,1.213,1.19,1.209,1.244,1.284,1.119,1.061,,,1.032,1.099,0.748,,0.821,0.616,,0.926,0.827,0.758,0.686,,0.647,0.867,,0.64,,0.764,,,,,,,,,,, -"Jan 16, 1995",0.885,1.166,1.158,1.146,1.275,1.165,1.175,1.346,1.09,1.218,1.181,1.227,1.253,1.292,1.118,1.069,,,1.046,1.101,0.759,,0.832,0.624,,0.942,0.828,0.77,0.697,,0.65,0.871,,0.639,,0.765,,,,,,,,,,, -"Feb 06, 1995",0.891,1.169,1.159,1.147,1.273,1.164,1.178,1.335,1.092,1.221,1.181,1.228,1.252,1.302,1.117,1.073,,,1.053,1.1,0.761,,0.834,0.586,,0.946,0.833,0.772,0.699,,0.647,0.866,,0.618,,0.765,,,,,,,,,,, -"Feb 20, 1995",0.892,1.169,1.159,1.148,1.279,1.166,1.177,1.332,1.092,1.222,1.188,1.228,1.25,1.303,1.117,1.075,,,1.055,1.102,0.762,,0.835,0.589,,0.946,0.836,0.771,0.698,,0.653,0.87,,0.62,,0.767,,,,,,,,,,, -"Mar 06, 1995",0.892,1.169,1.161,1.149,1.285,1.168,1.178,1.333,1.092,1.222,1.188,1.229,1.253,1.302,1.117,1.071,,,1.048,1.102,0.762,,0.835,0.592,,0.946,0.834,0.771,0.699,,0.649,0.871,,0.619,,0.768,,,,,,,,,,, -"Mar 20, 1995",0.903,1.158,1.17,1.15,1.306,1.168,1.187,1.339,1.094,1.187,1.188,1.229,1.243,1.209,1.117,1.071,,,1.049,1.105,0.769,,0.832,0.607,,0.946,0.831,0.768,0.699,,0.652,0.877,,0.619,,0.768,,,,,,,,,,, -"Oct 02, 1995",0.885,1.128,1.152,1.169,1.241,1.151,1.143,1.346,1.084,1.149,1.172,1.209,1.223,1.167,1.095,1.042,,,1.018,1.093,0.735,,0.819,0.58,,0.926,0.796,0.741,0.666,,0.593,0.869,,0.611,,0.748,,,,,,,,,,, -"Oct 16, 1995",0.886,1.13,1.161,1.176,1.263,1.151,1.138,1.363,1.096,1.148,1.175,1.21,1.22,1.164,1.095,1.045,,,1.022,1.093,0.742,,0.822,0.583,,0.939,0.804,0.755,0.692,,0.599,0.866,,0.618,,0.758,,,,,,,,,,, -"Nov 06, 1995",0.886,1.126,1.159,1.147,1.263,1.155,1.144,1.349,1.099,1.14,1.175,1.187,1.178,1.158,1.094,1.049,,,1.027,1.096,0.746,,0.835,0.586,,0.935,0.803,0.753,0.7,,0.616,0.865,,0.619,,0.767,,,,,,,,,,, -"Nov 20, 1995",0.898,1.138,1.16,1.149,1.264,1.154,1.145,1.352,1.111,1.156,1.183,1.191,1.186,1.184,1.097,1.056,,,1.036,1.098,0.751,,0.848,0.594,,0.939,0.812,0.757,0.7,,0.632,0.871,,0.623,,0.77,,,,,,,,,,, -"Dec 04, 1995",0.904,1.14,1.164,1.144,1.28,1.159,1.145,1.36,1.114,1.158,1.194,1.202,1.195,1.184,1.096,1.056,,,1.035,1.099,0.759,,0.864,0.6,,0.941,0.817,0.766,0.707,,0.663,0.88,,0.627,,0.778,,,,,,,,,,, -"Dec 18, 1995",0.924,1.152,1.173,1.151,1.286,1.166,1.154,1.367,1.128,1.17,1.247,1.217,1.212,1.195,1.105,1.07,,,1.057,1.099,0.781,,0.88,0.638,,0.963,0.823,0.803,0.723,,0.698,0.892,,0.645,,0.808,,,,,,,,,,, -"Jan 01, 1996",0.964,1.191,1.216,1.185,1.299,1.199,1.217,1.384,1.184,1.202,1.289,1.256,1.239,1.219,1.147,1.125,,,1.106,1.166,0.823,,0.922,0.665,,1.01,0.85,0.848,0.78,,0.744,0.917,,0.669,,0.863,,,,,,,,,,, -"Jan 15, 1996",0.982,1.218,1.249,1.221,1.34,1.221,1.253,1.437,1.216,1.228,1.349,1.328,1.294,1.235,1.166,1.147,,,1.128,1.187,0.836,,0.937,0.668,,1.028,0.873,0.857,0.798,,0.758,0.958,,0.672,,0.856,,,,,,,,,,, -"Feb 05, 1996",0.996,1.233,1.264,1.237,1.341,1.249,1.269,1.462,1.23,1.239,1.332,1.341,1.287,1.249,1.179,1.172,,,1.162,1.192,0.849,,0.95,0.675,,1.048,0.888,0.885,0.81,,0.77,0.971,,0.674,,0.864,,,,,,,,,,, -"Feb 19, 1996",1.029,1.263,1.289,1.262,1.351,1.291,1.284,1.529,1.257,1.27,1.341,1.364,1.328,1.292,1.196,1.205,,,1.203,1.209,0.884,,1.001,0.691,,1.118,0.934,0.902,0.841,,0.778,1.026,,0.687,,0.894,,,,,,,,,,, -"Mar 04, 1996",1.025,1.264,1.295,1.258,1.367,1.287,1.3,1.546,1.261,1.271,1.332,1.357,1.34,1.292,1.197,1.201,,,1.198,1.209,0.876,,0.984,0.701,,1.099,0.937,0.893,0.829,,0.766,1.009,,0.689,,0.87,,,,,,,,,,, -"Mar 18, 1996",1.011,1.253,1.288,1.245,1.364,1.261,1.303,1.594,1.255,1.261,1.299,1.341,1.341,1.28,1.193,1.186,,,1.183,1.192,0.859,,0.954,0.687,,1.076,0.928,0.887,0.808,,0.743,0.985,,0.684,,0.864,,,,,,,,,,, -"Oct 07, 1996",1.028,1.216,1.274,1.259,1.386,1.272,1.242,1.464,1.237,1.234,1.296,1.303,1.308,1.252,1.132,1.124,,,1.101,1.184,0.888,,0.954,0.763,,1.018,0.944,0.882,0.865,,0.763,0.976,,0.708,,0.876,,,,,,,,,,, -"Oct 21, 1996",1.05,1.239,1.291,1.277,1.41,1.289,1.252,1.481,1.258,1.255,1.318,1.314,1.311,1.285,1.137,1.159,,,1.143,1.2,0.909,,0.969,0.783,,1.056,0.967,0.901,0.88,,0.809,0.999,,0.727,,0.892,,,,,,,,,,, -"Oct 28, 1996",1.062,1.248,1.307,1.314,1.417,1.305,1.266,1.49,1.265,1.262,1.319,1.321,1.306,1.29,1.154,1.166,,,1.153,1.2,0.923,,0.974,0.796,,1.058,0.98,0.903,0.899,,0.816,1.004,,0.755,,0.92,,,,,,,,,,, -"Nov 04, 1996",1.079,1.259,1.319,1.338,1.418,1.324,1.278,1.513,1.267,1.271,1.329,1.323,1.315,1.297,1.169,1.18,,,1.168,1.21,0.946,,0.996,0.82,,1.088,1.003,0.918,0.935,,0.841,1.03,,0.774,,0.932,,,,,,,,,,, -"Nov 11, 1996",1.089,1.268,1.332,1.345,1.418,1.325,1.317,1.56,1.268,1.28,1.327,1.331,1.315,1.306,1.183,1.184,,,1.174,1.21,0.956,,1.015,0.821,,1.097,1.023,0.933,0.935,,0.847,1.034,,0.8,,0.948,,,,,,,,,,, -"Nov 18, 1996",1.113,1.28,1.347,1.351,1.424,1.357,1.329,1.574,1.285,1.288,1.329,1.332,1.329,1.316,1.189,1.205,,,1.193,1.235,0.988,,1.081,0.855,,1.126,1.044,0.972,0.96,,0.869,1.055,,0.825,,0.98,,,,,,,,,,, -"Nov 25, 1996",1.196,1.314,1.369,1.417,1.437,1.362,1.336,1.59,1.312,1.324,1.415,1.358,1.356,1.348,1.231,1.245,,,1.23,1.285,1.108,,1.214,1.028,,1.179,1.116,1.132,1.101,,1.016,1.121,,0.944,,1.1,,,,,,,,,,, -"Dec 02, 1996",1.24,1.349,1.408,1.444,1.466,1.415,1.369,1.616,1.362,1.364,1.436,1.398,1.389,1.391,1.271,1.265,,,1.247,1.309,1.159,,1.269,1.06,,1.212,1.172,1.169,1.161,,1.09,1.16,,0.976,,1.183,,,,,,,,,,, -"Dec 09, 1996",1.306,1.397,1.46,1.463,1.553,1.468,1.44,1.665,1.394,1.405,1.501,1.408,1.416,1.432,1.329,1.323,,,1.31,1.356,1.239,,1.322,1.142,,1.263,1.22,1.289,1.265,,1.189,1.214,,1.058,,1.286,,,,,,,,,,, -"Dec 16, 1996",1.315,1.402,1.454,1.477,1.562,1.467,1.418,1.708,1.375,1.413,1.49,1.411,1.438,1.445,1.328,1.332,,,1.316,1.372,1.251,,1.339,1.146,,1.27,1.219,1.301,1.3,,1.181,1.25,,1.099,,1.272,,,,,,,,,,, -"Dec 23, 1996",1.352,1.411,1.46,1.488,1.575,1.467,1.427,1.721,1.371,1.417,1.494,1.414,1.475,1.441,1.336,1.356,,,1.347,1.38,1.307,,1.372,1.249,,1.308,1.259,1.338,1.347,,1.28,1.259,,1.178,,1.373,,,,,,,,,,, -"Dec 30, 1996",1.333,1.41,1.461,1.481,1.573,1.462,1.433,1.726,1.382,1.415,1.492,1.413,1.473,1.438,1.334,1.357,,,1.348,1.379,1.276,,1.365,1.171,,1.312,1.283,1.299,1.272,,1.275,1.25,,1.187,,1.316,,,,,,,,,,, -"Jan 06, 1997",1.299,1.403,1.446,1.451,1.571,1.433,1.42,1.719,1.379,1.409,1.472,1.403,1.468,1.432,1.333,1.355,,,1.347,1.376,1.221,,1.278,1.069,,1.299,1.252,1.247,1.23,,1.197,1.219,,1.112,,1.26,,,,,,,,,,, -"Jan 13, 1997",1.305,1.399,1.433,1.444,1.554,1.426,1.407,1.722,1.36,1.409,1.466,1.39,1.474,1.435,1.329,1.349,,,1.342,1.368,1.235,,1.275,1.119,,1.285,1.238,1.29,1.252,,1.194,1.212,,1.12,,1.28,,,,,,,,,,, -"Jan 20, 1997",1.29,1.396,1.424,1.425,1.548,1.423,1.392,1.738,1.354,1.405,1.457,1.39,1.46,1.434,1.323,1.349,,,1.344,1.365,1.212,,1.266,1.087,,1.258,1.242,1.248,1.218,,1.193,1.182,,1.109,,1.257,,,,,,,,,,, -"Jan 27, 1997",1.255,1.386,1.413,1.409,1.546,1.389,1.395,1.729,1.345,1.395,1.454,1.38,1.443,1.426,1.308,1.344,,,1.34,1.353,1.157,,1.21,0.978,,1.253,1.222,1.152,1.16,,1.129,1.154,,1.047,,1.22,,,,,,,,,,, -"Feb 03, 1997",1.209,1.361,1.4,1.376,1.543,1.377,1.385,1.7,1.34,1.368,1.449,1.378,1.412,1.392,1.287,1.309,,,1.3,1.333,1.096,,1.143,0.876,,1.219,1.177,1.122,1.106,,1.035,1.112,,0.975,,1.133,,,,,,,,,,, -"Feb 17, 1997",1.139,1.327,1.375,1.338,1.502,1.362,1.363,1.668,1.324,1.347,1.418,1.364,1.383,1.366,1.274,1.241,,,1.209,1.324,0.999,,1.042,0.798,,1.176,1.105,1.015,0.958,,0.892,1.043,,0.863,,1.024,,,,,,,,,,, -"Mar 03, 1997",1.103,1.299,1.343,1.323,1.476,1.311,1.328,1.662,1.292,1.324,1.411,1.362,1.34,1.351,1.232,1.204,,,1.182,1.26,0.957,,0.988,0.745,,1.105,1.071,0.986,0.912,,0.827,1.017,,0.832,,0.975,,,,,,,,,,, -"Mar 17, 1997",1.079,1.282,1.331,1.303,1.468,1.31,1.322,1.658,1.262,1.306,1.402,1.36,1.301,1.329,1.221,1.187,,,1.168,1.238,0.927,,0.963,0.732,,1.086,1.029,0.941,0.879,,0.784,0.991,,0.801,,0.943,,,,,,,,,,, -"Oct 06, 1997",0.952,1.145,1.196,1.221,1.262,1.23,1.134,1.343,1.155,1.162,1.183,1.217,1.215,1.177,1.083,1.061,,,1.049,1.092,0.805,,0.845,0.657,,0.939,0.859,0.767,,,,0.921,,,,0.805,,,,,,,,,,, -"Oct 20, 1997",0.959,1.151,1.202,1.221,1.283,1.23,1.138,1.344,1.163,1.167,1.185,1.221,1.215,1.186,1.082,1.067,,,1.056,1.094,0.814,,0.858,0.665,,0.956,0.866,0.764,,,,0.934,,,,0.817,,,,,,,,,,, -"Nov 03, 1997",0.969,1.158,1.211,1.227,1.284,1.254,1.149,1.344,1.165,1.171,1.199,1.226,1.224,1.188,1.09,1.08,,,1.07,1.106,0.825,,0.883,0.677,,0.968,0.88,0.772,,,,0.952,,,,0.819,,,,,,,,,,, -"Nov 17, 1997",0.973,1.162,1.212,1.22,1.285,1.261,1.15,1.331,1.165,1.176,1.222,1.227,1.235,1.188,1.104,1.083,,,1.072,1.11,0.83,,0.885,0.68,,0.991,0.887,0.779,,,,0.954,,,,0.82,,,,,,,,,,, -"Dec 01, 1997",0.977,1.163,1.211,1.226,1.284,1.259,1.155,1.323,1.157,1.178,1.23,1.229,1.227,1.188,1.11,1.087,,,1.077,1.113,0.835,,0.897,0.679,,0.997,0.887,0.785,,,,0.954,,,,0.835,,,,,,,,,,, -"Dec 15, 1997",0.979,1.17,1.215,1.229,1.29,1.267,1.158,1.315,1.156,1.187,1.249,1.229,1.242,1.195,1.125,1.091,,,1.082,1.115,0.834,,0.899,0.679,,0.992,0.886,0.783,,,,0.959,,,,0.826,,,,,,,,,,, -"Jan 05, 1998",0.982,1.172,1.217,1.228,1.295,1.266,1.158,1.325,1.162,1.19,1.252,1.24,1.231,1.199,1.128,1.092,,,1.083,1.114,0.838,,0.903,0.677,,0.998,0.894,0.787,0.805,,0.701,0.965,,0.71,,0.823,,,,,,,,,,, -"Jan 19, 1998",0.98,1.169,1.211,1.218,1.301,1.257,1.158,1.326,1.149,1.187,1.259,1.23,1.222,1.199,1.122,1.089,,,1.083,1.106,0.836,,0.907,0.673,,1,0.895,0.788,0.798,,0.701,0.958,,0.705,,0.825,,,,,,,,,,, -"Feb 02, 1998",0.977,1.166,1.206,1.216,1.301,1.248,1.158,1.335,1.135,1.187,1.258,1.229,1.229,1.2,1.118,1.083,,,1.076,1.103,0.833,,0.902,0.673,,0.996,0.895,0.775,0.798,,0.699,0.954,,0.707,,0.82,,,,,,,,,,, -"Feb 16, 1998",0.971,1.162,1.2,1.211,1.294,1.231,1.158,1.333,1.133,1.184,1.252,1.228,1.214,1.199,1.113,1.078,,,1.076,1.082,0.825,,0.898,0.664,,0.995,0.881,0.773,0.782,,0.701,0.951,,0.707,,0.809,,,,,,,,,,, -"Mar 02, 1998",0.964,1.157,1.191,1.207,1.286,1.213,1.153,1.323,1.127,1.178,1.234,1.228,1.212,1.191,1.11,1.076,,,1.074,1.081,0.818,,0.892,0.656,,0.987,0.879,0.769,0.774,,0.695,0.934,,0.697,,0.805,,,,,,,,,,, -"Mar 16, 1998",0.957,1.15,1.185,1.206,1.286,1.204,1.146,1.314,1.116,1.174,1.234,1.223,1.206,1.186,1.107,1.064,,,1.061,1.072,0.81,,0.886,0.649,,0.971,0.873,0.77,0.765,,0.684,0.918,,0.688,,0.797,,,,,,,,,,, -"Oct 05, 1998",0.871,1.072,1.127,1.107,1.193,1.177,1.096,1.243,1.065,1.08,1.157,1.156,1.184,1.083,0.994,0.999,,,0.991,1.017,0.719,,0.777,0.555,,0.89,0.797,0.668,0.679,,0.544,0.851,,0.571,,0.715,,,,,,,,,,, -"Oct 19, 1998",0.873,1.073,1.127,1.107,1.184,1.177,1.096,1.243,1.074,1.083,1.154,1.159,1.185,1.086,0.998,0.996,,,0.986,1.019,0.721,,0.783,0.562,,0.896,0.797,0.67,0.685,,0.545,0.847,,0.576,,0.713,,,,,,,,,,, -"Nov 02, 1998",0.874,1.069,1.123,1.104,1.195,1.164,1.087,1.219,1.072,1.087,1.159,1.168,1.184,1.09,1.001,0.974,,,0.953,1.026,0.726,,0.79,0.565,,0.911,0.796,0.672,0.693,,0.56,0.854,,0.576,,0.715,,,,,,,,,,, -"Nov 16, 1998",0.877,1.07,1.119,1.112,1.162,1.169,1.087,1.268,1.069,1.089,1.165,1.166,1.185,1.091,1.007,0.979,,,0.963,1.019,0.732,,0.798,0.562,,0.919,0.802,0.676,0.695,,0.581,0.871,,0.577,,0.717,,,,,,,,,,, -"Dec 07, 1998",0.879,1.072,1.12,1.11,1.156,1.171,1.091,1.196,1.076,1.091,1.165,1.164,1.175,1.097,1.008,0.98,,,0.965,1.017,0.732,,0.807,0.561,,0.914,0.799,0.686,0.696,,0.582,0.869,,0.573,,0.717,,,,,,,,,,, -"Dec 21, 1998",0.88,1.068,1.119,1.101,1.153,1.181,1.091,1.233,1.066,1.086,1.162,1.132,1.159,1.096,1.007,0.979,,,0.963,1.018,0.738,,0.811,0.567,,0.921,0.805,0.692,0.706,,0.594,0.865,,0.587,,0.72,,,,,,,,,,, -"Jan 04, 1999",0.883,1.067,1.118,1.102,1.148,1.181,1.092,1.206,1.067,1.084,1.175,1.132,1.183,1.088,1.009,0.978,,,0.962,1.019,0.743,,0.819,0.57,,0.926,0.814,0.691,0.707,,0.595,0.878,,0.596,,0.723,,,,,,,,,,, -"Jan 18, 1999",0.891,1.072,1.114,1.097,1.142,1.179,1.091,1.175,1.064,1.09,1.19,1.17,1.168,1.09,1.016,0.988,,,0.974,1.02,0.754,,0.847,0.582,,0.925,0.824,0.703,0.718,,0.617,0.888,,0.59,,0.729,,,,,,,,,,, -"Feb 01, 1999",0.892,1.075,1.116,1.099,1.142,1.178,1.094,1.178,1.066,1.095,1.193,1.17,1.184,1.097,1.014,0.989,,,0.976,1.021,0.753,,0.849,0.578,,0.924,0.824,0.702,0.714,,0.616,0.886,,0.59,,0.735,,,,,,,,,,, -"Feb 15, 1999",0.89,1.074,1.119,1.102,1.142,1.179,1.101,1.178,1.067,1.091,1.19,1.17,1.173,1.092,1.011,0.991,,,0.979,1.021,0.752,,0.851,0.577,,0.919,0.824,0.698,0.707,,0.62,0.884,,0.59,,0.736,,,,,,,,,,, -"Mar 01, 1999",0.891,1.075,1.118,1.098,1.142,1.179,1.101,1.178,1.07,1.092,1.193,1.172,1.16,1.096,1.011,0.992,,,0.981,1.021,0.751,,0.848,0.574,,0.922,0.824,0.702,0.709,,0.62,0.884,,0.588,,0.733,,,,,,,,,,, -"Mar 15, 1999",0.889,1.075,1.119,1.102,1.142,1.178,1.099,1.184,1.07,1.091,1.194,1.172,1.165,1.093,1.01,0.994,,,0.983,1.021,0.749,,0.843,0.573,,0.927,0.823,0.701,0.703,,0.615,0.877,,0.588,,0.734,,,,,,,,,,, -"Oct 04, 1999",0.953,1.128,1.155,1.195,1.191,1.169,1.124,1.319,1.112,1.144,1.253,1.222,1.28,1.145,1.047,1.066,,,1.054,1.095,0.82,,0.861,0.672,,1.005,0.88,0.808,0.764,,0.724,0.926,,0.696,,0.809,,,,,,,,,,, -"Oct 18, 1999",0.967,1.146,1.174,1.197,1.224,1.178,1.151,1.356,1.124,1.164,1.268,1.246,1.292,1.17,1.056,1.076,,,1.065,1.102,0.834,,0.883,0.682,,1.018,0.901,0.822,0.793,,0.742,0.92,,0.713,,0.807,,,,,,,,,,, -"Nov 01, 1999",0.978,1.159,1.189,1.202,1.225,1.192,1.164,1.384,1.164,1.177,1.279,1.25,1.328,1.177,1.078,1.087,,,1.078,1.109,0.843,,0.886,0.677,,1.04,0.907,0.827,0.803,,0.759,0.945,,0.714,,0.817,,,,,,,,,,, -"Nov 15, 1999",0.984,1.166,1.2,1.212,1.221,1.207,1.186,1.41,1.172,1.178,1.283,1.249,1.337,1.18,1.071,1.106,,,1.104,1.113,0.847,,0.886,0.681,,1.04,0.913,0.829,0.804,,0.758,0.957,,0.721,,0.823,,,,,,,,,,, -"Dec 06, 1999",0.996,1.181,1.213,1.219,1.217,1.217,1.219,1.404,1.179,1.196,1.286,1.267,1.367,1.206,1.074,1.114,,,1.108,1.13,0.857,,0.898,0.688,,1.059,0.929,0.832,0.82,,0.76,0.963,,0.732,,0.833,,,,,,,,,,, -"Dec 20, 1999",1.007,1.189,1.221,1.217,1.216,1.239,1.226,1.47,1.184,1.204,1.287,1.273,1.376,1.216,1.077,1.125,,,1.111,1.161,0.87,,0.913,0.707,,1.082,0.935,0.832,0.845,,0.772,0.972,,0.735,,0.84,,,,,,,,,,, -"Jan 03, 2000",1.014,1.201,1.228,1.225,1.214,1.238,1.234,1.522,1.2,1.219,1.296,1.286,1.387,1.229,1.097,1.133,,,1.122,1.159,0.874,,0.923,0.702,,1.097,0.946,0.833,0.852,,0.774,0.977,,0.731,,0.835,,,,,,,,,,, -"Jan 17, 2000",1.03,1.225,1.246,1.249,1.227,1.243,1.251,1.573,1.232,1.246,1.35,1.35,1.411,1.247,1.128,1.156,,,1.144,1.186,0.883,,0.923,0.706,,1.119,0.963,0.839,0.842,,0.775,1.012,,0.734,,0.849,,,,,,,,,,, -"Jan 24, 2000",1.11,1.318,1.326,1.347,1.34,1.306,1.315,1.777,1.299,1.328,1.456,1.416,1.499,1.325,1.223,1.28,,,1.26,1.317,0.961,,1.015,0.753,,1.218,1.057,0.902,0.92,,0.795,1.123,,0.778,,0.913,,,,,,,,,,, -"Jan 31, 2000",1.165,1.386,1.393,1.411,1.377,1.376,1.4,1.775,1.369,1.399,1.464,1.467,1.635,1.396,1.289,1.35,,,1.346,1.361,0.999,,1.084,0.778,,1.302,1.136,0.918,0.959,,0.825,1.126,,0.803,,0.931,,,,,,,,,,, -"Feb 07, 2000",1.2,1.429,1.447,1.469,1.435,1.453,1.474,1.83,1.365,1.434,1.491,1.5,1.676,1.439,1.303,1.4,,,1.392,1.42,1.029,,1.104,0.814,,1.334,1.16,0.938,0.984,,0.827,1.209,,0.812,,0.954,,,,,,,,,,, -"Feb 14, 2000",1.222,1.444,1.455,1.468,1.45,1.471,1.478,1.888,1.37,1.451,1.549,1.513,1.707,1.453,1.32,1.418,,,1.399,1.467,1.054,,1.151,0.825,,1.341,1.191,0.964,1.017,,0.841,1.243,,0.82,,0.972,,,,,,,,,,, -"Feb 21, 2000",1.23,1.445,1.451,1.458,1.446,1.481,1.444,1.869,1.402,1.457,1.56,1.505,1.694,1.458,1.336,1.41,,,1.389,1.463,1.069,,1.159,0.833,,1.346,1.214,0.994,1.025,,0.855,1.244,,0.856,,0.995,,,,,,,,,,, -"Feb 28, 2000",1.227,1.435,1.457,1.453,1.445,1.479,1.46,1.893,1.412,1.457,1.544,1.5,1.709,1.466,1.321,1.361,,,1.345,1.402,1.071,,1.156,0.841,,1.337,1.219,0.996,1.029,,0.859,1.247,,0.858,,0.994,,,,,,,,,,, -"Mar 06, 2000",1.214,1.412,1.453,1.456,1.427,1.486,1.466,1.855,1.396,1.424,1.53,1.497,1.707,1.408,1.315,1.346,,,1.324,1.403,1.066,,1.137,0.846,,1.312,1.209,1.006,1.024,,0.86,1.236,,0.862,,0.992,,,,,,,,,,, -"Mar 13, 2000",1.214,1.409,1.448,1.449,1.421,1.48,1.453,1.842,1.404,1.427,1.491,1.48,1.69,1.422,1.315,1.329,,,1.303,1.393,1.067,,1.132,0.853,,1.315,1.208,1.006,1.027,,0.874,1.24,,0.869,,0.987,,,,,,,,,,, -"Mar 20, 2000",1.199,1.392,1.432,1.431,1.421,1.455,1.429,1.84,1.395,1.412,1.484,1.471,1.683,1.414,1.281,1.306,,,1.284,1.363,1.054,,1.09,0.852,,1.301,1.192,0.997,1.015,,0.873,1.226,,0.858,,0.982,,,,,,,,,,, -"Oct 02, 2000",1.272,1.438,1.468,1.508,1.478,1.451,1.427,1.695,1.49,1.457,1.501,1.524,1.633,1.468,1.337,1.365,,,1.336,1.433,1.144,,1.127,0.984,,1.289,1.216,1.134,1.132,,1.028,1.254,,1.027,,1.159,,,,,,,,,,, -"Oct 09, 2000",1.274,1.439,1.465,1.506,1.48,1.438,1.427,1.697,1.486,1.46,1.503,1.529,1.643,1.471,1.335,1.366,,,1.335,1.44,1.148,,1.135,0.989,,1.299,1.217,1.138,1.133,,1.027,1.257,,1.025,,1.156,,,,,,,,,,, -"Oct 16, 2000",1.284,1.453,1.472,1.517,1.482,1.446,1.421,1.713,1.515,1.474,1.52,1.551,1.643,1.483,1.354,1.385,,,1.356,1.455,1.157,,1.142,0.99,,1.334,1.221,1.148,1.138,,1.025,1.286,,1.021,,1.163,,,,,,,,,,, -"Oct 23, 2000",1.288,1.457,1.478,1.538,1.477,1.446,1.43,1.735,1.518,1.479,1.517,1.56,1.639,1.491,1.357,1.386,,,1.36,1.446,1.16,,1.157,0.987,,1.337,1.226,1.14,1.153,,1.023,1.291,,1.003,,1.16,,,,,,,,,,, -"Oct 30, 2000",1.288,1.459,1.475,1.534,1.459,1.444,1.432,1.76,1.521,1.483,1.517,1.572,1.633,1.498,1.358,1.387,,,1.359,1.453,1.16,,1.165,0.981,,1.344,1.228,1.135,1.144,,1.021,1.299,,1.021,,1.156,,,,,,,,,,, -"Nov 06, 2000",1.285,1.46,1.48,1.54,1.459,1.454,1.434,1.752,1.527,1.486,1.515,1.561,1.641,1.503,1.359,1.38,,,1.348,1.455,1.154,,1.157,0.983,,1.341,1.219,1.129,1.128,,1.019,1.294,,1.02,,1.158,,,,,,,,,,, -"Nov 13, 2000",1.285,1.459,1.488,1.532,1.462,1.443,1.463,1.78,1.538,1.48,1.514,1.558,1.625,1.497,1.36,1.382,,,1.349,1.459,1.154,,1.166,0.983,,1.346,1.22,1.122,1.13,,1.017,1.286,,1.015,,1.154,,,,,,,,,,, -"Nov 20, 2000",1.292,1.467,1.494,1.525,1.473,1.451,1.466,1.78,1.552,1.486,1.518,1.57,1.649,1.498,1.367,1.396,,,1.367,1.464,1.161,,1.172,0.979,,1.357,1.227,1.147,1.132,,1.02,1.293,,1.018,,1.165,,,,,,,,,,, -"Nov 27, 2000",1.296,1.469,1.496,1.532,1.47,1.458,1.465,1.78,1.559,1.488,1.532,1.568,1.657,1.499,1.369,1.401,,,1.372,1.468,1.165,,1.196,0.98,,1.362,1.237,1.147,1.126,,1.034,1.297,,1.016,,1.166,,,,,,,,,,, -"Dec 04, 2000",1.299,1.473,1.496,1.531,1.47,1.45,1.47,1.762,1.558,1.495,1.547,1.572,1.665,1.507,1.373,1.4,,,1.369,1.473,1.168,,1.203,0.976,,1.379,1.242,1.146,1.127,,1.024,1.299,,1.018,,1.167,,,,,,,,,,, -"Dec 11, 2000",1.356,1.522,1.527,1.561,1.492,1.493,1.494,1.837,1.592,1.543,1.592,1.612,1.712,1.561,1.416,1.467,,,1.445,1.52,1.231,,1.29,1.012,,1.436,1.287,1.221,1.199,,1.068,1.368,,1.052,,1.251,,,,,,,,,,, -"Dec 18, 2000",1.403,1.567,1.562,1.611,1.548,1.542,1.5,1.84,1.63,1.581,1.62,1.63,1.747,1.603,1.451,1.542,,,1.527,1.579,1.279,,1.352,1.062,,1.479,1.34,1.275,1.23,,1.136,1.399,,1.118,,1.299,,,,,,,,,,, -"Dec 25, 2000",1.538,1.659,1.628,1.655,1.589,1.593,1.586,1.872,1.723,1.642,1.763,1.748,1.777,1.648,1.525,1.727,,,1.743,1.688,1.446,,1.528,1.244,,1.607,1.495,1.414,1.457,,1.31,1.578,,1.228,,1.437,,,,,,,,,,, -"Jan 01, 2001",1.616,1.754,1.689,1.732,1.645,1.664,1.654,1.931,1.757,1.723,1.836,1.864,1.862,1.726,1.595,1.89,,,1.905,1.854,1.511,,1.62,1.266,,1.76,1.575,1.458,1.493,,1.386,1.673,,1.288,,1.484,,,,,,,,,,, -"Jan 08, 2001",1.644,1.8,1.725,1.74,1.692,1.7,1.714,1.905,1.775,1.75,1.912,1.879,1.917,1.723,1.678,1.988,,,2.025,1.899,1.526,,1.613,1.254,,1.722,1.621,1.451,1.555,,1.392,1.703,,1.269,,1.5,,,,,,,,,,, -"Jan 15, 2001",1.702,1.862,1.747,1.764,1.735,1.725,1.734,1.952,1.772,1.781,1.939,1.905,1.959,1.76,1.695,2.159,,,2.221,2.012,1.581,,1.637,1.284,,1.752,1.782,1.517,1.576,,1.412,1.772,,1.318,,1.539,,,,,,,,,,, -"Jan 22, 2001",1.693,1.858,1.752,1.765,1.727,1.73,1.733,2.005,1.794,1.79,1.939,1.921,1.982,1.768,1.701,2.115,,,2.163,2.001,1.568,,1.637,1.264,,1.728,1.803,1.485,1.533,,1.411,1.782,,1.331,,1.513,,,,,,,,,,, -"Jan 29, 2001",1.663,1.824,1.739,1.761,1.704,1.7,1.733,2.007,1.783,1.78,1.927,1.919,1.985,1.757,1.685,2.007,,,2.033,1.948,1.542,,1.584,1.225,,1.752,1.781,1.476,1.475,,1.386,1.774,,1.291,,1.503,,,,,,,,,,, -"Feb 05, 2001",1.611,1.753,1.724,1.734,1.682,1.7,1.717,2.007,1.77,1.734,1.85,1.912,1.88,1.709,1.649,1.825,,,1.805,1.874,1.505,,1.546,1.182,,1.757,1.726,1.437,1.428,,1.36,1.717,,1.27,,1.487,,,,,,,,,,, -"Feb 12, 2001",1.568,1.715,1.7,1.717,1.661,1.652,1.698,1.979,1.755,1.712,1.793,1.866,1.851,1.69,1.637,1.735,,,1.703,1.812,1.458,,1.466,1.159,,1.702,1.659,1.428,1.377,,1.308,1.651,,1.264,,1.447,,,,,,,,,,, -"Feb 19, 2001",1.538,1.685,1.687,1.704,1.643,1.648,1.688,1.951,1.733,1.697,1.736,1.849,1.846,1.681,1.614,1.656,,,1.613,1.759,1.428,,1.425,1.14,,1.644,1.618,1.419,1.342,,1.282,1.606,,1.265,,1.431,,,,,,,,,,, -"Feb 26, 2001",1.507,1.661,1.676,1.682,1.624,1.651,1.68,1.944,1.716,1.67,1.717,1.847,1.841,1.65,1.575,1.625,,,1.58,1.73,1.391,,1.361,1.101,,1.599,1.583,1.388,1.317,,1.271,1.556,,1.204,,1.42,,,,,,,,,,, -"Mar 05, 2001",1.465,1.633,1.659,1.672,1.603,1.63,1.664,1.88,1.704,1.646,1.707,1.836,1.788,1.627,1.553,1.58,,,1.531,1.696,1.338,,1.284,1.085,,1.565,1.5,1.332,1.284,,1.22,1.476,,1.166,,1.367,,,,,,,,,,, -"Mar 12, 2001",1.434,1.602,1.64,1.642,1.594,1.617,1.64,1.86,1.689,1.615,1.705,1.809,1.731,1.606,1.502,1.535,,,1.47,1.688,1.307,,1.253,1.061,,1.443,1.464,1.317,1.257,,1.151,1.455,,1.16,,1.361,,,,,,,,,,, -"Mar 19, 2001",1.397,1.563,1.622,1.594,1.572,1.607,1.632,1.808,1.676,1.566,1.692,1.664,1.698,1.564,1.469,1.499,,,1.439,1.641,1.272,,1.243,1.046,,1.416,1.395,1.285,1.226,,1.123,1.404,,1.124,,1.322,,,,,,,,,,, -"Oct 01, 2001",1.146,1.337,1.442,1.355,1.493,1.445,1.423,1.411,1.489,1.337,1.368,1.458,1.347,1.354,1.265,1.247,,,1.205,1.318,1.023,,1.008,0.887,,1.133,1.145,0.984,0.949,0.815,0.86,1.153,,0.887,,1.045,,,,,,,,,,, -"Oct 08, 2001",1.14,1.33,1.438,1.351,1.487,1.437,1.433,1.409,1.476,1.331,1.355,1.442,1.337,1.341,1.276,1.237,,,1.184,1.328,1.019,,0.987,0.878,,1.145,1.144,0.974,0.947,0.797,0.85,1.155,,0.885,,1.036,,,,,,,,,,, -"Oct 15, 2001",1.135,1.33,1.436,1.364,1.482,1.434,1.418,1.412,1.478,1.333,1.38,1.439,1.334,1.338,1.283,1.236,,,1.181,1.328,1.011,,0.984,0.872,,1.122,1.137,0.984,0.94,0.798,0.852,1.136,,0.89,,1.036,,,,,,,,,,, -"Oct 22, 2001",1.137,1.329,1.435,1.357,1.486,1.435,1.426,1.413,1.472,1.336,1.38,1.448,1.333,1.346,1.28,1.225,,,1.161,1.332,1.013,,0.985,0.869,,1.121,1.138,0.985,0.957,0.786,0.846,1.131,,0.891,,1.04,,,,,,,,,,, -"Oct 29, 2001",1.135,1.328,1.427,1.359,1.486,1.424,1.41,1.411,1.463,1.339,1.414,1.45,1.35,1.348,1.276,1.224,,,1.16,1.333,1.01,,0.984,0.872,,1.121,1.141,0.979,0.948,0.774,0.846,1.133,,0.893,,1.037,,,,,,,,,,, -"Nov 05, 2001",1.138,1.331,1.423,1.368,1.455,1.41,1.405,1.457,1.47,1.337,1.413,1.447,1.345,1.345,1.277,1.241,,,1.182,1.34,1.012,,0.999,0.867,,1.129,1.134,0.979,0.956,0.771,0.849,1.128,,0.887,,1.039,,,,,,,,,,, -"Nov 12, 2001",1.134,1.323,1.417,1.36,1.448,1.413,1.402,1.462,1.452,1.323,1.409,1.425,1.322,1.33,1.266,1.24,,,1.181,1.34,1.011,,1.003,0.865,,1.126,1.132,0.977,0.954,0.772,0.849,1.133,,0.88,,1.034,,,,,,,,,,, -"Nov 19, 2001",1.132,1.321,1.411,1.353,1.433,1.407,1.397,1.455,1.454,1.321,1.408,1.424,1.323,1.333,1.257,1.24,,,1.18,1.341,1.008,,0.995,0.864,,1.124,1.137,0.97,0.956,0.779,0.849,1.124,,0.876,,1.031,,,,,,,,,,, -"Nov 26, 2001",1.126,1.313,1.41,1.355,1.436,1.403,1.392,1.45,1.453,1.316,1.397,1.412,1.32,1.326,1.257,1.223,,,1.161,1.327,1.004,,0.997,0.85,,1.123,1.139,0.958,0.955,0.77,0.837,1.128,,0.878,,1.016,,,,,,,,,,, -"Dec 03, 2001",1.12,1.302,1.396,1.336,1.43,1.379,1.393,1.441,1.427,1.305,1.392,1.398,1.315,1.326,1.234,1.214,,,1.15,1.322,1.002,,0.992,0.847,,1.122,1.151,0.952,0.936,0.768,0.835,1.129,,0.884,,1.014,,,,,,,,,,, -"Dec 10, 2001",1.116,1.298,1.391,1.334,1.416,1.359,1.398,1.441,1.426,1.297,1.385,1.389,1.308,1.312,1.231,1.218,,,1.162,1.313,0.997,,0.984,0.846,,1.122,1.136,0.95,0.936,0.777,0.835,1.123,,0.88,,1.005,,,,,,,,,,, -"Dec 17, 2001",1.117,1.297,1.392,1.333,1.405,1.366,1.4,1.436,1.43,1.295,1.36,1.379,1.307,1.315,1.231,1.215,,,1.162,1.305,1.001,,0.983,0.842,,1.123,1.155,0.956,0.935,0.773,0.832,1.137,,0.876,,1.004,,,,,,,,,,, -"Dec 24, 2001",1.121,1.3,1.391,1.328,1.405,1.368,1.399,1.437,1.43,1.3,1.367,1.38,1.31,1.322,1.236,1.218,,,1.166,1.305,1.004,,0.993,0.845,,1.125,1.16,0.949,0.937,0.773,0.829,1.151,,0.876,,1.007,,,,,,,,,,, -"Dec 31, 2001",1.127,1.303,1.395,1.344,1.407,1.361,1.409,1.437,1.429,1.304,1.369,1.384,1.317,1.323,1.241,1.222,,,1.171,1.308,1.012,,1.005,0.845,,1.144,1.162,0.949,0.958,0.769,0.829,1.156,,0.873,,1.013,,,,,,,,,,, -"Jan 07, 2002",1.133,1.309,1.402,1.342,1.421,1.373,1.412,1.436,1.439,1.308,1.372,1.389,1.324,1.33,1.242,1.229,,,1.173,1.323,1.02,,1.034,0.848,,1.152,1.174,0.952,0.963,0.769,0.84,1.163,,0.873,,1.013,,,,,,,,,,, -"Jan 14, 2002",1.134,1.312,1.405,1.341,1.423,1.369,1.421,1.482,1.441,1.31,1.372,1.384,1.326,1.336,1.242,1.235,,,1.178,1.332,1.018,,1.034,0.847,,1.15,1.159,0.952,0.959,0.77,0.838,1.17,,0.861,,1.018,,,,,,,,,,, -"Jan 21, 2002",1.134,1.316,1.405,1.337,1.43,1.359,1.424,1.482,1.449,1.316,1.372,1.392,1.33,1.342,1.249,1.238,,,1.181,1.335,1.016,,1.032,0.841,,1.153,1.163,0.939,0.962,0.77,0.84,1.166,,0.861,,1.016,,,,,,,,,,, -"Jan 28, 2002",1.135,1.316,1.403,1.333,1.426,1.357,1.419,1.482,1.449,1.315,1.372,1.392,1.33,1.337,1.251,1.243,,,1.188,1.337,1.017,,1.031,0.841,,1.149,1.166,0.951,0.962,0.773,0.839,1.159,,0.861,,1.016,,,,,,,,,,, -"Feb 04, 2002",1.133,1.315,1.404,1.333,1.428,1.355,1.423,1.482,1.453,1.314,1.371,1.392,1.338,1.334,1.249,1.24,,,1.182,1.336,1.016,,1.015,0.844,,1.152,1.161,0.954,0.959,0.773,0.839,1.16,,0.861,,1.021,,,,,,,,,,, -"Feb 11, 2002",1.13,1.315,1.405,1.333,1.426,1.359,1.423,1.471,1.452,1.314,1.366,1.391,1.335,1.334,1.252,1.24,,,1.183,1.336,1.01,,1.012,0.842,,1.14,1.157,0.952,0.958,0.735,0.827,1.147,,0.854,,1.022,,,,,,,,,,, -"Feb 18, 2002",1.128,1.316,1.405,1.334,1.433,1.357,1.422,1.471,1.452,1.315,1.374,1.389,1.329,1.334,1.255,1.242,,,1.184,1.34,1.006,,1.011,0.842,,1.139,1.156,0.95,0.942,0.735,0.824,1.143,,0.856,,1.017,,,,,,,,,,, -"Feb 25, 2002",1.125,1.315,1.406,1.339,1.431,1.363,1.422,1.471,1.449,1.316,1.374,1.395,1.334,1.334,1.256,1.235,,,1.175,1.336,1.003,,1.001,0.842,,1.131,1.156,0.95,0.934,0.734,0.824,1.14,,0.851,,1.017,,,,,,,,,,, -"Mar 04, 2002",1.125,1.315,1.402,1.339,1.433,1.352,1.422,1.474,1.441,1.318,1.376,1.397,1.342,1.334,1.257,1.234,,,1.18,1.326,1.003,,1.006,0.842,,1.127,1.152,0.95,0.945,0.736,0.824,1.135,,0.843,,1.016,,,,,,,,,,, -"Mar 11, 2002",1.122,1.316,1.4,1.337,1.433,1.355,1.414,1.475,1.441,1.321,1.381,1.395,1.342,1.337,1.262,1.237,,,1.181,1.329,0.996,,1,0.845,,1.126,1.129,0.95,0.933,0.739,0.814,1.116,,0.838,,1.016,,,,,,,,,,, -"Mar 18, 2002",1.123,1.318,1.404,1.337,1.433,1.355,1.418,1.475,1.453,1.324,1.388,1.39,1.347,1.341,1.262,1.235,,,1.182,1.323,0.996,,0.986,0.844,,1.121,1.128,0.972,0.933,0.734,0.809,1.112,,0.839,,1.017,,,,,,,,,,, -"Oct 07, 2002",1.122,1.317,1.398,1.325,1.521,1.363,1.411,1.389,1.395,1.332,1.366,1.406,1.377,1.337,1.293,1.219,,,1.172,1.314,0.989,,0.995,0.79,,1.096,1.107,0.92,0.918,0.721,0.812,1.105,,0.841,,0.961,,,,,,,,,,, -"Oct 14, 2002",1.131,1.326,1.403,1.336,1.512,1.388,1.414,1.385,1.395,1.337,1.381,1.418,1.382,1.333,1.304,1.236,,,1.187,1.336,0.998,,1.008,0.793,,1.104,1.117,0.926,0.929,0.734,0.814,1.114,,0.85,,0.976,,,,,,,,,,, -"Oct 21, 2002",1.137,1.333,1.41,1.338,1.516,1.393,1.434,1.388,1.398,1.347,1.39,1.423,1.4,1.337,1.319,1.243,,,1.194,1.342,1.003,,1.013,0.797,,1.121,1.117,0.928,0.931,0.736,0.827,1.111,,0.859,,0.976,,,,,,,,,,, -"Oct 28, 2002",1.141,1.334,1.41,1.339,1.51,1.392,1.434,1.397,1.398,1.35,1.399,1.424,1.407,1.339,1.324,1.24,,,1.19,1.343,1.01,,1.019,0.811,,1.13,1.119,0.937,0.943,0.739,0.842,1.109,,0.87,,0.982,,,,,,,,,,, -"Nov 04, 2002",1.151,1.336,1.413,1.341,1.515,1.403,1.44,1.399,1.398,1.354,1.395,1.431,1.408,1.344,1.326,1.237,,,1.189,1.333,1.026,,1.028,0.834,,1.145,1.133,0.965,0.961,0.743,0.862,1.124,,0.877,,0.996,,,,,,,,,,, -"Nov 11, 2002",1.158,1.344,1.416,1.343,1.519,1.411,1.441,1.399,1.398,1.358,1.399,1.433,1.425,1.349,1.327,1.257,,,1.213,1.345,1.033,,1.038,0.83,,1.152,1.137,0.981,0.964,0.743,0.867,1.138,,0.886,,1.001,,,,,,,,,,, -"Nov 18, 2002",1.161,1.348,1.417,1.337,1.521,1.406,1.443,1.41,1.402,1.359,1.394,1.435,1.434,1.35,1.328,1.267,,,1.221,1.36,1.035,,1.041,0.831,,1.147,1.142,0.981,0.964,0.743,0.868,1.151,,0.884,,1.005,,,,,,,,,,, -"Nov 25, 2002",1.168,1.351,1.417,1.339,1.52,1.403,1.447,1.41,1.402,1.364,1.392,1.439,1.441,1.353,1.334,1.271,,,1.221,1.371,1.044,,1.047,0.836,,1.163,1.15,0.986,0.982,0.743,0.876,1.157,,0.888,,1.018,,,,,,,,,,, -"Dec 02, 2002",1.175,1.354,1.423,1.351,1.517,1.409,1.455,1.463,1.405,1.367,1.399,1.44,1.431,1.358,1.337,1.273,,,1.221,1.377,1.053,,1.051,0.853,,1.191,1.157,0.99,0.986,0.744,0.88,1.161,,0.894,,1.022,,,,,,,,,,, -"Dec 09, 2002",1.188,1.368,1.427,1.359,1.526,1.419,1.458,1.459,1.406,1.379,1.407,1.465,1.45,1.362,1.355,1.298,,,1.243,1.41,1.065,,1.085,0.86,,1.202,1.163,0.996,1.002,0.747,0.884,1.182,,0.899,,1.032,,,,,,,,,,, -"Dec 16, 2002",1.208,1.388,1.451,1.373,1.534,1.422,1.478,1.467,1.446,1.396,1.43,1.495,1.484,1.365,1.381,1.319,,,1.264,1.431,1.085,,1.107,0.882,,1.229,1.175,1.01,1.021,0.784,0.903,1.199,,0.911,,1.061,,,,,,,,,,, -"Dec 23, 2002",1.231,1.411,1.46,1.393,1.563,1.412,1.486,1.486,1.455,1.424,1.477,1.52,1.518,1.39,1.408,1.347,,,1.29,1.465,1.109,,1.116,0.892,,1.247,1.219,1.032,1.049,0.793,0.913,1.233,,0.935,,1.073,,,,,,,,,,, -"Dec 30, 2002",1.252,1.435,1.487,1.424,1.577,1.428,1.495,1.51,1.498,1.447,1.493,1.533,1.535,1.419,1.429,1.368,,,1.311,1.484,1.128,,1.149,0.89,,1.288,1.231,1.046,1.062,0.799,0.938,1.259,,0.944,,1.087,,,,,,,,,,, -"Jan 06, 2003",1.268,1.46,1.511,1.445,1.581,1.471,1.55,1.511,1.505,1.471,1.515,1.547,1.565,1.456,1.44,1.398,,,1.342,1.513,1.138,,1.153,0.909,,1.3,1.246,1.051,1.064,0.806,0.949,1.274,,0.948,,1.101,,,,,,,,,,, -"Jan 13, 2003",1.276,1.466,1.515,1.448,1.581,1.471,1.556,1.514,1.511,1.483,1.529,1.575,1.581,1.464,1.451,1.397,,,1.334,1.525,1.146,,1.156,0.919,,1.302,1.245,1.06,1.085,0.806,0.954,1.295,,0.948,,1.112,,,,,,,,,,, -"Jan 20, 2003",1.326,1.513,1.534,1.49,1.607,1.486,1.57,1.58,1.524,1.53,1.595,1.62,1.625,1.504,1.505,1.469,,,1.416,1.577,1.198,,1.207,0.946,,1.357,1.321,1.11,1.129,0.843,0.978,1.355,,0.983,,1.149,,,,,,,,,,, -"Jan 27, 2003",1.359,1.557,1.583,1.542,1.614,1.521,1.585,1.581,1.608,1.578,1.674,1.687,1.713,1.537,1.552,1.503,,,1.44,1.632,1.225,,1.229,0.967,,1.387,1.371,1.125,1.153,0.855,1.013,1.373,,0.99,,1.163,,,,,,,,,,, -"Feb 03, 2003",1.437,1.644,1.641,1.586,1.651,1.567,1.653,1.653,1.673,1.678,1.866,1.794,1.815,1.621,1.653,1.598,,,1.556,1.686,1.298,,1.312,1.021,,1.485,1.465,1.178,1.192,0.901,1.06,1.472,,1.038,,1.214,,,,,,,,,,, -"Feb 10, 2003",1.483,1.687,1.711,1.621,1.692,1.608,1.693,1.666,1.787,1.722,1.948,1.861,1.922,1.645,1.697,1.613,,,1.558,1.721,1.346,,1.357,1.087,,1.516,1.498,1.247,1.263,0.973,1.127,1.495,,1.096,,1.268,,,,,,,,,,, -"Feb 17, 2003",1.497,1.701,1.727,1.64,1.73,1.633,1.707,1.692,1.796,1.745,1.918,1.885,1.945,1.681,1.711,1.612,,,1.546,1.747,1.36,,1.38,1.082,,1.51,1.506,1.271,1.277,0.943,1.146,1.524,,1.108,,1.313,,,,,,,,,,, -"Feb 24, 2003",1.504,1.711,1.735,1.66,1.741,1.648,1.71,1.703,1.801,1.753,1.927,1.895,1.959,1.69,1.716,1.626,,,1.552,1.776,1.365,,1.377,1.09,,1.523,1.52,1.271,1.277,0.948,1.121,1.539,,1.092,,1.311,,,,,,,,,,, -"Mar 03, 2003",1.722,1.896,1.916,1.867,1.824,1.745,1.86,1.764,2.052,1.927,2.01,2.028,2.133,1.902,1.871,1.832,,,1.786,1.926,1.606,,1.609,1.256,,1.809,1.793,1.507,1.484,1.181,1.317,1.817,,1.226,,1.533,,,,,,,,,,, -"Mar 10, 2003",1.654,1.848,1.894,1.838,1.911,1.838,1.892,1.806,1.931,1.887,2.039,2.046,2.098,1.88,1.779,1.749,,,1.663,1.924,1.522,,1.54,1.122,,1.68,1.759,1.403,1.389,0.975,1.258,1.748,,1.192,,1.464,,,,,,,,,,, -"Mar 17, 2003",1.581,1.786,1.83,1.796,1.873,1.837,1.905,1.812,1.772,1.835,2.008,2.021,2.069,1.832,1.708,1.672,,,1.587,1.843,1.44,,1.448,1.107,,1.621,1.619,1.335,1.304,0.966,1.207,1.628,,1.168,,1.42,,,,,,,,,,, -"Oct 06, 2003",1.282,1.459,1.541,1.482,1.579,1.496,1.534,1.737,1.56,1.474,1.495,1.595,1.524,1.456,1.456,1.346,,,1.301,1.435,1.148,,1.123,0.992,,1.252,1.264,1.097,1.121,0.925,0.983,1.254,,1.029,,1.145,,,,,,,,,,, -"Oct 13, 2003",1.305,1.478,1.546,1.471,1.559,1.503,1.551,1.754,1.567,1.503,1.534,1.606,1.545,1.491,1.481,1.361,,,1.324,1.437,1.172,,1.133,1.05,,1.269,1.259,1.132,1.155,0.96,1,1.272,,1.062,,1.184,,,,,,,,,,, -"Oct 20, 2003",1.322,1.489,1.57,1.481,1.559,1.498,1.564,1.793,1.623,1.504,1.542,1.588,1.551,1.494,1.484,1.377,,,1.344,1.442,1.193,,1.14,1.052,,1.277,1.304,1.165,1.178,0.966,1.038,1.288,,1.071,,1.2,,,,,,,,,,, -"Oct 27, 2003",1.325,1.495,1.583,1.484,1.583,1.501,1.549,1.799,1.658,1.506,1.537,1.598,1.576,1.497,1.479,1.382,,,1.349,1.45,1.194,,1.141,1.053,,1.283,1.305,1.155,1.178,0.968,1.05,1.305,,1.073,,1.189,,,,,,,,,,, -"Nov 03, 2003",1.325,1.498,1.589,1.502,1.585,1.505,1.56,1.783,1.661,1.507,1.525,1.608,1.588,1.496,1.48,1.384,,,1.351,1.45,1.192,,1.116,1.046,,1.297,1.312,1.155,1.175,0.964,1.052,1.308,,1.066,,1.185,,,,,,,,,,, -"Nov 10, 2003",1.327,1.501,1.596,1.508,1.567,1.526,1.578,1.772,1.662,1.511,1.527,1.605,1.613,1.496,1.486,1.385,,,1.352,1.451,1.193,,1.119,1.045,,1.296,1.314,1.14,1.184,0.955,1.051,1.312,,1.071,,1.188,,,,,,,,,,, -"Nov 17, 2003",1.33,1.509,1.618,1.517,1.568,1.52,1.58,1.773,1.72,1.513,1.531,1.61,1.618,1.498,1.49,1.388,,,1.353,1.457,1.192,,1.116,1.026,,1.309,1.313,1.137,1.19,0.952,1.045,1.319,,1.07,,1.188,,,,,,,,,,, -"Nov 24, 2003",1.336,1.516,1.619,1.517,1.565,1.521,1.585,1.798,1.72,1.522,1.532,1.613,1.615,1.503,1.506,1.396,,,1.36,1.47,1.198,,1.113,1.026,,1.324,1.331,1.144,1.198,0.952,1.043,1.325,,1.063,,1.189,,,,,,,,,,, -"Dec 01, 2003",1.341,1.519,1.623,1.52,1.579,1.526,1.59,1.792,1.72,1.524,1.541,1.62,1.621,1.505,1.507,1.401,,,1.359,1.486,1.203,,1.124,1.026,,1.333,1.334,1.159,1.198,0.945,1.038,1.333,,1.065,,1.191,,,,,,,,,,, -"Dec 08, 2003",1.354,1.534,1.63,1.528,1.594,1.532,1.594,1.805,1.727,1.541,1.549,1.652,1.637,1.52,1.524,1.421,,,1.372,1.521,1.215,,1.135,1.03,,1.355,1.339,1.187,1.196,0.942,1.043,1.364,,1.077,,1.198,,,,,,,,,,, -"Dec 15, 2003",1.392,1.58,1.654,1.581,1.622,1.543,1.62,1.851,1.745,1.59,1.621,1.713,1.687,1.565,1.572,1.483,,,1.441,1.57,1.248,,1.189,1.047,,1.405,1.376,1.2,1.225,0.957,1.064,1.402,,1.099,,1.236,,,,,,,,,,, -"Dec 22, 2003",1.414,1.608,1.703,1.609,1.631,1.592,1.652,1.88,1.824,1.613,1.636,1.738,1.727,1.581,1.603,1.497,,,1.454,1.584,1.264,,1.222,1.05,,1.423,1.398,1.203,1.242,0.956,1.081,1.428,,1.105,,1.246,,,,,,,,,,, -"Dec 29, 2003",1.418,1.61,1.702,1.615,1.629,1.596,1.636,1.893,1.829,1.618,1.635,1.734,1.716,1.593,1.604,1.499,,,1.453,1.592,1.27,,1.247,1.054,,1.423,1.407,1.2,1.242,0.959,1.077,1.432,,1.112,,1.245,,,,,,,,,,, -"Jan 05, 2004",1.428,1.624,1.71,1.629,1.633,1.6,1.652,1.9,1.832,1.627,1.644,1.742,1.739,1.598,1.615,1.528,,,1.48,1.627,1.277,,1.267,1.049,,1.439,1.418,1.211,1.242,0.959,1.086,1.437,,1.115,,1.249,,,,,,,,,,, -"Jan 12, 2004",1.497,1.702,1.76,1.721,1.68,1.645,1.702,1.97,1.873,1.698,1.754,1.793,1.807,1.66,1.699,1.647,,,1.598,1.747,1.339,,1.335,1.103,,1.541,1.496,1.254,1.279,1.027,1.12,1.514,,1.135,,1.296,,,,,,,,,,, -"Jan 19, 2004",1.523,1.741,1.8,1.749,1.714,1.684,1.749,1.977,1.914,1.753,1.767,1.833,1.844,1.733,1.741,1.659,,,1.601,1.777,1.356,,1.362,1.105,,1.55,1.521,1.281,1.283,1.008,1.126,1.545,,1.131,,1.311,,,,,,,,,,, -"Jan 26, 2004",1.536,1.758,1.827,1.776,1.736,1.716,1.784,2.006,1.937,1.77,1.788,1.869,1.873,1.749,1.753,1.664,,,1.606,1.782,1.365,,1.363,1.105,,1.572,1.531,1.288,1.295,1.006,1.137,1.57,,1.134,,1.314,,,,,,,,,,, -"Feb 02, 2004",1.537,1.77,1.85,1.813,1.757,1.729,1.803,2.023,1.963,1.78,1.796,1.881,1.925,1.766,1.747,1.667,,,1.605,1.794,1.358,,1.369,1.108,,1.567,1.5,1.275,1.29,0.99,1.129,1.581,,1.126,,1.311,,,,,,,,,,, -"Feb 09, 2004",1.536,1.773,1.87,1.792,1.766,1.71,1.806,2.018,2.024,1.783,1.793,1.881,1.92,1.768,1.756,1.651,,,1.587,1.78,1.354,,1.36,1.108,,1.547,1.495,1.283,1.301,1.011,1.13,1.559,,1.126,,1.311,,,,,,,,,,, -"Feb 16, 2004",1.535,1.772,1.877,1.792,1.77,1.703,1.834,2.013,2.027,1.778,1.793,1.88,1.921,1.765,1.742,1.648,,,1.585,1.777,1.353,,1.356,1.095,,1.548,1.497,1.287,1.308,0.993,1.132,1.556,,1.124,,1.309,,,,,,,,,,, -"Feb 23, 2004",1.535,1.773,1.88,1.802,1.769,1.706,1.838,2.009,2.027,1.781,1.793,1.881,1.907,1.765,1.754,1.646,,,1.588,1.764,1.352,,1.356,1.094,,1.547,1.503,1.281,1.307,0.992,1.136,1.556,,1.127,,1.299,,,,,,,,,,, -"Mar 01, 2004",1.53,1.775,1.875,1.826,1.778,1.707,1.808,2.024,2.026,1.791,1.799,1.889,1.907,1.766,1.779,1.64,,,1.572,1.78,1.342,,1.354,1.091,,1.525,1.497,1.281,1.288,0.984,1.13,1.525,,1.121,,1.294,,,,,,,,,,, -"Mar 08, 2004",1.513,1.752,1.873,1.805,1.786,1.719,1.804,1.998,2.022,1.77,1.79,1.888,1.864,1.761,1.733,1.59,,,1.549,1.676,1.33,,1.348,1.089,,1.511,1.49,1.271,1.266,0.983,1.131,1.482,,1.109,,1.285,,,,,,,,,,, -"Mar 15, 2004",1.483,1.715,1.861,1.799,1.781,1.707,1.803,1.999,1.998,1.714,1.782,1.87,1.85,1.689,1.676,1.562,,,1.523,1.643,1.305,,1.301,1.065,,1.484,1.456,1.247,1.245,0.984,1.119,1.458,,1.102,,1.286,,,,,,,,,,, -"Oct 04, 2004",1.573,1.796,1.908,1.866,1.919,1.854,1.914,1.966,1.958,1.834,1.957,1.919,1.946,1.797,1.792,1.719,,,1.618,1.96,1.385,,1.434,1.185,,1.548,1.44,1.365,1.399,1.158,1.213,1.511,,1.205,,1.357,,,,,,,,,,, -"Oct 11, 2004",1.604,1.826,1.937,1.884,1.96,1.869,1.932,1.99,2.008,1.862,1.986,1.922,1.997,1.824,1.822,1.752,,,1.647,2.003,1.418,,1.476,1.211,,1.592,1.484,1.376,1.439,1.195,1.241,1.554,,1.226,,1.37,,,,,,,,,,, -"Oct 18, 2004",1.626,1.845,1.962,1.921,1.959,1.874,1.94,2.109,2.081,1.885,2.011,1.95,2.002,1.828,1.902,1.761,,,1.666,2.014,1.453,,1.488,1.234,,1.616,1.525,1.403,1.459,1.227,1.262,1.597,,1.255,,1.424,,,,,,,,,,, -"Oct 25, 2004",1.657,1.871,2.007,1.941,2.047,1.912,1.962,2.196,2.139,1.934,2.065,2.006,2.009,1.895,1.93,1.737,,,1.71,1.862,1.496,,1.528,1.318,,1.653,1.559,1.474,1.491,1.312,1.306,1.598,,1.319,,1.482,,,,,,,,,,, -"Nov 01, 2004",1.682,1.894,2.015,1.954,2.067,1.916,1.965,2.228,2.143,1.973,2.073,2.054,2.054,1.937,1.953,1.749,,,1.723,1.868,1.525,,1.568,1.314,,1.677,1.594,1.475,1.55,1.29,1.337,1.648,,1.329,,1.48,,,,,,,,,,, -"Nov 08, 2004",1.69,1.904,2.042,1.948,2.094,1.967,2.038,2.226,2.107,1.982,2.057,2.061,2.056,1.957,1.946,1.752,,,1.725,1.88,1.531,,1.585,1.303,,1.68,1.591,1.472,1.547,1.297,1.35,1.672,,1.324,,1.519,,,,,,,,,,, -"Nov 15, 2004",1.689,1.901,2.03,1.932,2.06,1.957,2.034,2.222,2.104,1.974,2.01,2.069,2.053,1.942,1.951,1.758,,,1.729,1.895,1.533,,1.593,1.312,,1.684,1.588,1.482,1.559,1.29,1.351,1.668,,1.313,,1.5,,,,,,,,,,, -"Nov 22, 2004",1.688,1.899,2.037,1.933,2.082,1.969,2.029,2.22,2.111,1.986,2.01,2.07,2.059,1.957,1.964,1.737,,,1.704,1.889,1.532,,1.582,1.311,,1.694,1.6,1.479,1.542,1.278,1.347,1.675,,1.315,,1.509,,,,,,,,,,, -"Nov 29, 2004",1.704,1.915,2.057,1.958,2.134,1.969,2.051,2.234,2.118,1.986,1.995,2.048,2.067,1.959,1.974,1.772,,,1.746,1.892,1.548,,1.6,1.312,,1.709,1.624,1.495,1.554,1.288,1.356,1.682,,1.331,,1.544,,,,,,,,,,, -"Dec 06, 2004",1.71,1.918,2.047,1.941,2.131,1.946,2.034,2.219,2.125,1.987,2.009,2.05,2.067,1.959,1.975,1.783,,,1.76,1.891,1.555,,1.61,1.305,,1.721,1.616,1.511,1.558,1.265,1.348,1.705,,1.318,,1.576,,,,,,,,,,, -"Dec 13, 2004",1.713,1.939,2.044,1.932,2.135,1.932,2.043,2.233,2.114,1.98,1.983,2.049,2.046,1.962,1.948,1.849,,,1.836,1.908,1.545,,1.619,1.285,,1.714,1.618,1.494,1.542,1.248,1.337,1.712,,1.304,,1.555,,,,,,,,,,, -"Dec 20, 2004",1.718,1.949,2.052,1.938,2.152,1.925,2.051,2.238,2.13,1.999,2.005,2.052,2.04,1.988,1.972,1.848,,,1.834,1.909,1.545,,1.635,1.288,,1.763,1.625,1.516,1.532,1.251,1.331,1.718,,1.306,,1.518,,,,,,,,,,, -"Dec 27, 2004",1.729,1.955,2.057,1.907,2.198,1.937,2.045,2.238,2.127,2.007,2.005,2.054,2.051,1.996,1.986,1.849,,,1.835,1.918,1.561,,1.634,1.287,,1.764,1.662,1.512,1.552,1.251,1.341,1.747,,1.309,,1.528,,,,,,,,,,, -"Jan 03, 2005",1.73,1.953,2.058,1.897,2.175,1.931,2.067,2.248,2.135,2.005,2.001,2.044,2.039,1.995,1.986,1.849,,,1.837,1.903,1.564,,1.655,1.272,,1.78,1.668,1.529,1.538,1.237,1.348,1.745,,1.295,,1.557,,,,,,,,,,, -"Jan 10, 2005",1.728,1.947,2.049,1.897,2.182,1.915,2.044,2.257,2.128,1.997,1.996,2.041,2.041,1.987,1.97,1.845,,,1.833,1.901,1.565,,1.667,1.275,,1.772,1.675,1.52,1.533,1.236,1.342,1.729,,1.289,,1.578,,,,,,,,,,, -"Jan 17, 2005",1.725,1.939,2.048,1.911,2.197,1.909,2.042,2.253,2.114,1.994,2.01,2.054,2.04,1.977,1.973,1.829,,,1.812,1.907,1.566,,1.666,1.268,,1.772,1.682,1.519,1.523,1.228,1.346,1.739,,1.289,,1.594,,,,,,,,,,, -"Jan 24, 2005",1.731,1.945,2.06,1.904,2.223,1.917,2.052,2.242,2.128,2.002,2.01,2.056,2.066,1.985,1.979,1.83,,,1.812,1.912,1.571,,1.665,1.277,,1.766,1.69,1.517,1.53,1.228,1.35,1.742,,1.281,,1.608,,,,,,,,,,, -"Jan 31, 2005",1.728,1.946,2.052,1.909,2.193,1.913,2.046,2.276,2.126,2.002,2.013,2.066,2.069,1.981,1.982,1.834,,,1.813,1.933,1.566,,1.668,1.274,,1.765,1.692,1.516,1.518,1.224,1.34,1.75,,1.26,,1.584,,,,,,,,,,, -"Feb 07, 2005",1.723,1.945,2.058,1.907,2.228,1.907,2.041,2.285,2.134,2.006,2.024,2.065,2.063,1.986,1.986,1.825,,,1.803,1.926,1.559,,1.649,1.259,,1.763,1.691,1.513,1.508,1.22,1.306,1.745,,1.255,,1.581,,,,,,,,,,, -"Feb 14, 2005",1.721,1.945,2.053,1.894,2.181,1.914,2.046,2.292,2.148,2.008,2.04,2.068,2.068,1.987,1.988,1.824,,,1.802,1.926,1.555,,1.647,1.254,,1.755,1.69,1.505,1.508,1.196,1.29,1.758,,1.253,,1.564,,,,,,,,,,, -"Feb 21, 2005",1.717,1.94,2.053,1.916,2.191,1.904,2.041,2.272,2.141,2,2.042,2.065,2.07,1.986,1.951,1.822,,,1.8,1.924,1.551,,1.645,1.243,,1.759,1.668,1.512,1.514,1.19,1.28,1.77,,1.25,,1.549,,,,,,,,,,, -"Feb 28, 2005",1.717,1.945,2.056,1.918,2.195,1.915,2.041,2.29,2.143,2.006,2.06,2.067,2.084,1.989,1.963,1.826,,,1.805,1.923,1.547,,1.659,1.223,,1.772,1.669,1.496,1.51,1.194,1.281,1.769,,1.243,,1.542,,,,,,,,,,, -"Mar 07, 2005",1.714,1.948,2.066,1.932,2.181,1.922,2.065,2.278,2.155,2.013,2.017,2.05,2.094,1.997,1.989,1.822,,,1.796,1.942,1.54,,1.663,1.227,,1.769,1.666,1.485,1.48,1.194,1.28,1.775,,1.249,,1.545,,,,,,,,,,, -"Mar 14, 2005",1.721,1.963,2.074,1.94,2.189,1.936,2.071,2.299,2.158,2.032,2.032,2.072,2.106,2.02,2.002,1.834,,,1.81,1.947,1.54,,1.676,1.235,,1.76,1.676,1.489,1.483,1.218,1.286,1.78,,1.256,,1.51,,,,,,,,,,, -"Oct 03, 2005",1.916,2.197,2.255,2.236,2.178,2.239,2.253,2.673,2.293,2.235,2.298,2.358,2.399,2.2,2.156,2.084,,,1.976,2.245,1.743,,1.852,1.54,,1.953,1.813,1.69,1.661,1.475,1.499,1.938,,1.53,,1.769,,,,,,,,,,, -"Oct 10, 2005",1.935,2.222,2.306,2.246,2.246,2.301,2.309,2.807,2.329,2.247,2.316,2.282,2.406,2.223,2.195,2.106,,,1.996,2.27,1.757,,1.885,1.545,,1.979,1.818,1.705,1.682,1.469,1.511,1.95,,1.527,,1.79,,,,,,,,,,, -"Oct 17, 2005",1.949,2.241,2.31,2.217,2.298,2.302,2.312,2.752,2.334,2.261,2.323,2.325,2.439,2.209,2.225,2.146,,,2.013,2.344,1.769,,1.908,1.561,,1.965,1.842,1.701,1.674,1.474,1.517,2.007,,1.53,,1.766,,,,,,,,,,, -"Oct 24, 2005",1.95,2.244,2.31,2.247,2.235,2.312,2.321,2.834,2.322,2.273,2.294,2.337,2.462,2.228,2.234,2.138,,,2.005,2.335,1.77,,1.863,1.544,,1.987,1.849,1.719,1.68,1.479,1.52,2.02,,1.538,,1.764,,,,,,,,,,, -"Oct 31, 2005",1.962,2.258,2.338,2.278,2.309,2.327,2.342,2.873,2.339,2.282,2.31,2.336,2.472,2.239,2.244,2.146,,,2.013,2.339,1.78,,1.876,1.549,,2.011,1.86,1.72,1.68,1.493,1.532,2.032,,1.541,,1.785,,,,,,,,,,, -"Nov 07, 2005",1.955,2.248,2.328,2.231,2.326,2.324,2.341,2.788,2.32,2.275,2.318,2.342,2.464,2.227,2.231,2.135,,,2.017,2.316,1.773,,1.863,1.538,,2.014,1.864,1.717,1.67,1.49,1.529,2.012,,1.525,,1.784,,,,,,,,,,, -"Nov 14, 2005",1.945,2.241,2.326,2.187,2.328,2.328,2.344,2.796,2.33,2.27,2.32,2.338,2.423,2.236,2.222,2.12,,,2.001,2.301,1.762,,1.862,1.525,,1.997,1.851,1.707,1.65,1.468,1.505,2.009,,1.513,,1.779,,,,,,,,,,, -"Nov 21, 2005",1.94,2.232,2.319,2.204,2.306,2.317,2.336,2.774,2.326,2.267,2.292,2.348,2.385,2.238,2.221,2.101,,,1.982,2.282,1.759,,1.874,1.49,,1.999,1.853,1.7,1.651,1.46,1.483,2.026,,1.514,,1.769,,,,,,,,,,, -"Nov 28, 2005",1.938,2.226,2.312,2.178,2.305,2.319,2.331,2.766,2.315,2.26,2.306,2.356,2.371,2.24,2.197,2.096,,,1.975,2.28,1.76,,1.873,1.486,,2.039,1.849,1.693,1.65,1.458,1.481,2.025,,1.512,,1.776,,,,,,,,,,, -"Dec 05, 2005",1.939,2.217,2.286,2.189,2.298,2.239,2.296,2.785,2.312,2.264,2.311,2.361,2.38,2.238,2.207,2.086,,,1.974,2.256,1.767,,1.876,1.496,,2.04,1.864,1.7,1.649,1.44,1.486,2.045,,1.511,,1.786,,,,,,,,,,, -"Dec 12, 2005",1.956,2.23,2.286,2.199,2.291,2.244,2.293,2.763,2.313,2.279,2.352,2.393,2.415,2.243,2.217,2.105,,,1.99,2.278,1.787,,1.908,1.509,,2.033,1.884,1.725,1.68,1.455,1.516,2.057,,1.527,,1.803,,,,,,,,,,, -"Dec 19, 2005",1.997,2.264,2.312,2.232,2.321,2.264,2.319,2.807,2.335,2.32,2.419,2.43,2.468,2.277,2.256,2.138,,,2.018,2.32,1.832,,1.961,1.537,,2.05,1.941,1.779,1.706,1.508,1.578,2.125,,1.555,,1.826,,,,,,,,,,, -"Dec 26, 2005",2.006,2.279,2.315,2.226,2.331,2.269,2.322,2.783,2.34,2.341,2.474,2.455,2.51,2.302,2.258,2.153,,,2.022,2.352,1.839,,1.967,1.544,,2.071,1.94,1.779,1.715,1.527,1.589,2.136,,1.564,,1.838,,,,,,,,,,, -"Jan 02, 2006",2.013,2.291,2.329,2.221,2.328,2.284,2.344,2.807,2.363,2.352,2.463,2.476,2.561,2.309,2.259,2.164,,,2.029,2.369,1.842,,1.985,1.545,,2.063,1.957,1.776,1.705,1.524,1.582,2.14,,1.562,,1.846,,,,,,,,,,, -"Jan 09, 2006",2.009,2.292,2.319,2.227,2.273,2.282,2.35,2.843,2.338,2.358,2.456,2.478,2.566,2.317,2.266,2.17,,,2.028,2.385,1.834,,1.968,1.532,,2.063,1.948,1.762,1.693,1.498,1.591,2.136,,1.536,,1.853,,,,,,,,,,, -"Jan 16, 2006",2.014,2.295,2.332,2.229,2.296,2.278,2.371,2.841,2.353,2.363,2.461,2.503,2.587,2.314,2.268,2.161,,,2.024,2.369,1.84,,2.023,1.534,,2.058,1.959,1.759,1.699,1.461,1.57,2.138,,1.532,,1.86,,,,,,,,,,, -"Jan 23, 2006",2.012,2.297,2.337,2.217,2.313,2.29,2.376,2.842,2.358,2.366,2.468,2.524,2.567,2.305,2.285,2.156,,,2.02,2.363,1.837,,2.017,1.521,,2.058,1.956,1.764,1.694,1.46,1.552,2.14,,1.526,,1.859,,,,,,,,,,, -"Jan 30, 2006",2.003,2.289,2.343,2.192,2.343,2.281,2.391,2.866,2.364,2.356,2.454,2.519,2.566,2.294,2.273,2.14,,,2.016,2.329,1.827,,2.015,1.511,,2.052,1.94,1.747,1.687,1.443,1.551,2.134,,1.523,,1.846,,,,,,,,,,, -"Feb 06, 2006",2,2.287,2.345,2.183,2.348,2.285,2.397,2.871,2.363,2.359,2.46,2.514,2.584,2.298,2.274,2.127,,,1.993,2.332,1.823,,2.017,1.496,,2.043,1.945,1.732,1.68,1.437,1.543,2.14,,1.519,,1.844,,,,,,,,,,, -"Feb 13, 2006",2.008,2.286,2.343,2.178,2.321,2.288,2.398,2.907,2.366,2.361,2.455,2.512,2.593,2.295,2.281,2.122,,,1.99,2.323,1.837,,2.049,1.509,,2.073,1.967,1.73,1.682,1.438,1.523,2.181,,1.512,,1.847,,,,,,,,,,, -"Feb 20, 2006",2,2.28,2.347,2.169,2.323,2.291,2.401,2.891,2.385,2.35,2.453,2.509,2.571,2.282,2.27,2.117,,,1.976,2.331,1.828,,2.025,1.494,,2.067,1.947,1.739,1.672,1.422,1.514,2.177,,1.509,,1.847,,,,,,,,,,, -"Feb 27, 2006",1.997,2.275,2.333,2.177,2.298,2.285,2.386,2.877,2.358,2.345,2.455,2.505,2.567,2.274,2.269,2.116,,,1.978,2.326,1.825,,2.016,1.485,,2.065,1.953,1.736,1.668,1.421,1.505,2.17,,1.511,,1.846,,,,,,,,,,, -"Mar 06, 2006",1.991,2.273,2.341,2.176,2.308,2.285,2.398,2.886,2.372,2.34,2.453,2.505,2.551,2.269,2.265,2.112,,,1.964,2.339,1.816,,1.996,1.485,,2.054,1.947,1.734,1.659,1.414,1.503,2.143,,1.496,,1.849,,,,,,,,,,, -"Mar 13, 2006",1.984,2.269,2.334,2.184,2.313,2.268,2.383,2.9,2.364,2.335,2.443,2.501,2.547,2.27,2.252,2.111,,,1.964,2.335,1.809,,1.972,1.484,,2.048,1.937,1.728,1.665,1.417,1.501,2.127,,1.495,,1.84,,,,,,,,,,, -"Oct 02, 2006",1.941,2.291,2.372,2.239,2.395,2.297,2.374,2.993,2.447,2.346,2.46,2.537,2.517,2.315,2.222,2.132,,,2.023,2.295,1.724,,1.825,1.484,,1.908,1.834,1.664,1.62,1.418,1.471,1.965,,1.5,,1.744,,,,,,,,,,, -"Oct 09, 2006",1.942,2.284,2.37,2.223,2.382,2.285,2.371,3.001,2.469,2.336,2.46,2.52,2.529,2.297,2.217,2.128,,,2.019,2.292,1.729,,1.827,1.48,,1.912,1.843,1.669,1.616,1.418,1.471,1.991,,1.474,,1.753,,,,,,,,,,, -"Oct 16, 2006",1.934,2.272,2.366,2.209,2.347,2.288,2.378,2.989,2.472,2.323,2.46,2.497,2.543,2.254,2.234,2.109,,,2.005,2.264,1.725,,1.806,1.478,,1.926,1.857,1.663,1.623,1.406,1.452,1.947,,1.471,,1.76,,,,,,,,,,, -"Oct 23, 2006",1.933,2.266,2.358,2.185,2.349,2.269,2.374,2.986,2.471,2.316,2.452,2.482,2.537,2.255,2.219,2.106,,,2.003,2.262,1.727,,1.806,1.482,,1.923,1.864,1.682,1.618,1.401,1.449,1.95,,1.466,,1.754,,,,,,,,,,, -"Oct 30, 2006",1.934,2.265,2.35,2.193,2.356,2.267,2.356,2.977,2.453,2.313,2.453,2.478,2.547,2.241,2.225,2.115,,,2.021,2.256,1.729,,1.807,1.486,,1.935,1.858,1.686,1.622,1.398,1.455,1.953,,1.466,,1.763,,,,,,,,,,, -"Nov 06, 2006",1.94,2.266,2.345,2.19,2.343,2.258,2.349,2.965,2.46,2.32,2.461,2.478,2.546,2.243,2.248,2.11,,,2.017,2.248,1.738,,1.82,1.487,,1.946,1.871,1.691,1.62,1.399,1.455,1.983,,1.467,,1.763,,,,,,,,,,, -"Nov 13, 2006",1.946,2.269,2.356,2.184,2.38,2.265,2.36,2.971,2.47,2.32,2.454,2.487,2.557,2.25,2.234,2.111,,,2.014,2.255,1.746,,1.834,1.497,,1.954,1.892,1.686,1.627,1.397,1.447,1.99,,1.478,,1.76,,,,,,,,,,, -"Nov 20, 2006",1.945,2.268,2.35,2.17,2.346,2.266,2.362,2.97,2.467,2.318,2.457,2.488,2.554,2.23,2.25,2.116,,,2.016,2.267,1.744,,1.838,1.488,,1.956,1.895,1.682,1.632,1.403,1.45,1.983,,1.472,,1.749,,,,,,,,,,, -"Nov 27, 2006",1.95,2.267,2.346,2.175,2.348,2.263,2.358,2.966,2.449,2.319,2.457,2.487,2.55,2.23,2.255,2.117,,,2.018,2.264,1.754,,1.847,1.489,,1.995,1.901,1.696,1.63,1.424,1.456,1.996,,1.472,,1.756,,,,,,,,,,, -"Dec 04, 2006",1.974,2.288,2.352,2.193,2.359,2.268,2.345,3.018,2.47,2.347,2.462,2.509,2.589,2.237,2.313,2.138,,,2.045,2.279,1.779,,1.874,1.512,,2.034,1.928,1.705,1.666,1.454,1.477,2.018,,1.482,,1.787,,,,,,,,,,, -"Dec 11, 2006",1.978,2.295,2.363,2.199,2.376,2.274,2.368,3.006,2.468,2.35,2.466,2.516,2.593,2.233,2.322,2.148,,,2.057,2.285,1.782,,1.881,1.509,,2.05,1.935,1.709,1.665,1.453,1.488,2.021,,1.495,,1.771,,,,,,,,,,, -"Dec 18, 2006",1.982,2.293,2.365,2.192,2.422,2.275,2.367,2.988,2.457,2.344,2.471,2.51,2.594,2.231,2.308,2.147,,,2.053,2.288,1.789,,1.894,1.499,,2.064,1.94,1.722,1.667,1.461,1.501,2.043,,1.492,,1.774,,,,,,,,,,, -"Dec 25, 2006",1.984,2.296,2.361,2.195,2.397,2.272,2.367,3.003,2.45,2.352,2.461,2.533,2.609,2.235,2.313,2.151,,,2.047,2.31,1.792,,1.897,1.504,,2.052,1.952,1.715,1.669,1.468,1.506,2.042,,1.491,,1.777,,,,,,,,,,, -"Jan 01, 2007",1.986,2.298,2.368,2.203,2.406,2.271,2.369,3.02,2.47,2.351,2.466,2.523,2.613,2.235,2.312,2.152,,,2.046,2.313,1.793,,1.887,1.504,,2.061,1.956,1.718,1.673,1.461,1.498,2.051,,1.491,,1.776,,,,,,,,,,, -"Jan 08, 2007",1.993,2.301,2.369,2.185,2.4,2.287,2.374,2.973,2.474,2.349,2.468,2.521,2.605,2.259,2.28,2.164,,,2.059,2.324,1.804,,1.921,1.498,,2.058,1.961,1.743,1.675,1.454,1.499,2.067,,1.485,,1.794,,,,,,,,,,, -"Jan 15, 2007",1.992,2.3,2.362,2.183,2.395,2.28,2.367,2.848,2.478,2.354,2.461,2.534,2.581,2.258,2.302,2.159,,,2.059,2.311,1.803,,1.931,1.482,,2.067,1.96,1.734,1.674,1.452,1.496,2.064,,1.484,,1.8,,,,,,,,,,, -"Jan 22, 2007",1.992,2.302,2.366,2.174,2.416,2.275,2.374,2.774,2.49,2.356,2.455,2.529,2.575,2.263,2.306,2.161,,,2.061,2.313,1.802,,1.931,1.485,,2.065,1.957,1.731,1.682,1.448,1.491,2.064,,1.476,,1.796,,,,,,,,,,, -"Jan 29, 2007",1.996,2.307,2.368,2.183,2.439,2.277,2.368,2.771,2.488,2.367,2.456,2.507,2.618,2.27,2.329,2.158,,,2.062,2.305,1.802,,1.945,1.485,,2.073,1.968,1.731,1.676,1.442,1.461,2.048,,1.477,,1.795,,,,,,,,,,, -"Feb 05, 2007",2.005,2.319,2.389,2.212,2.478,2.288,2.392,2.768,2.499,2.375,2.453,2.516,2.609,2.29,2.33,2.169,,,2.075,2.311,1.811,,1.953,1.489,,2.077,1.972,1.739,1.686,1.452,1.476,2.066,,1.488,,1.804,,,,,,,,,,, -"Feb 12, 2007",2.02,2.334,2.395,2.233,2.478,2.289,2.392,2.787,2.51,2.402,2.464,2.532,2.656,2.318,2.358,2.171,,,2.074,2.317,1.825,,1.96,1.505,,2.086,1.999,1.742,1.7,1.477,1.486,2.075,,1.501,,1.82,,,,,,,,,,, -"Feb 19, 2007",2.025,2.342,2.419,2.235,2.527,2.295,2.426,2.793,2.54,2.406,2.471,2.539,2.648,2.327,2.359,2.17,,,2.069,2.322,1.828,,1.976,1.504,,2.095,2.005,1.73,1.697,1.489,1.502,2.081,,1.516,,1.819,,,,,,,,,,, -"Feb 26, 2007",2.029,2.35,2.463,2.287,2.68,2.317,2.453,2.807,2.555,2.405,2.483,2.548,2.631,2.326,2.357,2.159,,,2.053,2.32,1.83,,1.983,1.507,,2.083,2.006,1.73,1.704,1.496,1.497,2.086,,1.516,,1.821,,,,,,,,,,, -"Mar 05, 2007",2.029,2.356,2.459,2.274,2.605,2.33,2.456,2.804,2.578,2.411,2.493,2.556,2.638,2.333,2.359,2.176,,,2.066,2.343,1.827,,1.99,1.514,,2.085,2,1.74,1.684,1.5,1.496,2.063,,1.523,,1.819,,,,,,,,,,, -"Mar 12, 2007",2.046,2.372,2.476,2.313,2.608,2.36,2.465,2.874,2.584,2.427,2.509,2.56,2.64,2.342,2.393,2.192,,,2.071,2.377,1.843,,1.999,1.522,,2.093,2.039,1.757,1.678,1.501,1.505,2.094,,1.526,,1.843,,,,,,,,,,, -"Oct 08, 2007",2.125,2.506,2.565,2.425,2.682,2.523,2.598,2.876,2.521,2.535,2.634,2.679,2.73,2.433,2.518,2.406,,,2.309,2.553,1.89,,1.968,1.707,,2.069,1.972,1.837,1.805,1.657,1.66,2.11,,1.663,,1.873,,,,,,,,,,, -"Oct 15, 2007",2.153,2.527,2.578,2.433,2.679,2.542,2.595,2.929,2.57,2.564,2.655,2.719,2.72,2.477,2.539,2.422,,,2.321,2.575,1.921,,1.998,1.749,,2.118,2.023,1.861,1.828,1.679,1.669,2.142,,1.683,,1.885,,,,,,,,,,, -"Oct 22, 2007",2.208,2.58,2.632,2.503,2.767,2.58,2.639,2.968,2.624,2.62,2.749,2.774,2.776,2.536,2.585,2.468,,,2.379,2.603,1.979,,2.081,1.794,,2.182,2.071,1.899,1.889,1.742,1.742,2.215,,1.727,,1.936,,,,,,,,,,, -"Oct 29, 2007",2.248,2.62,2.682,2.536,2.825,2.645,2.693,3.023,2.653,2.652,2.76,2.803,2.837,2.563,2.619,2.512,,,2.394,2.692,2.018,,2.148,1.815,,2.236,2.1,1.931,1.922,1.779,1.779,2.279,,1.768,,1.968,,,,,,,,,,, -"Nov 05, 2007",2.333,2.706,2.763,2.585,2.914,2.773,2.78,3.093,2.697,2.723,2.817,2.849,2.959,2.649,2.669,2.628,,,2.524,2.786,2.103,,2.259,1.876,,2.338,2.162,2.014,1.987,1.841,1.868,2.419,,1.841,,2.052,,,,,,,,,,, -"Nov 12, 2007",2.412,2.796,2.859,2.673,3.003,2.792,2.897,3.157,2.846,2.803,2.878,2.948,3.039,2.712,2.764,2.729,,,2.621,2.895,2.175,,2.332,1.904,,2.433,2.231,2.047,2.091,1.874,1.92,2.566,,1.892,,2.098,,,,,,,,,,, -"Nov 19, 2007",2.435,2.814,2.844,2.656,2.935,2.778,2.869,3.406,2.861,2.833,2.894,3.037,3.142,2.711,2.787,2.757,,,2.659,2.906,2.2,,2.383,1.909,,2.456,2.251,2.086,2.112,1.881,1.92,2.617,,1.895,,2.107,,,,,,,,,,, -"Nov 26, 2007",2.449,2.834,2.871,2.684,2.95,2.798,2.896,3.432,2.9,2.854,2.893,3.07,3.168,2.734,2.802,2.77,,,2.677,2.912,2.212,,2.413,1.92,,2.465,2.264,2.088,2.136,1.888,1.95,2.612,,1.898,,2.111,,,,,,,,,,, -"Dec 03, 2007",2.461,2.849,2.904,2.71,2.985,2.82,2.929,3.38,2.965,2.872,2.905,3.057,3.19,2.747,2.838,2.762,,,2.671,2.904,2.22,,2.43,1.919,,2.472,2.311,2.094,2.139,1.883,1.954,2.588,,1.899,,2.116,,,,,,,,,,, -"Dec 10, 2007",2.471,2.868,2.918,2.722,3.001,2.831,2.938,3.383,2.994,2.898,2.913,3.073,3.186,2.788,2.864,2.775,,,2.679,2.925,2.224,,2.438,1.918,,2.484,2.309,2.101,2.122,1.873,1.981,2.606,,1.923,,2.124,,,,,,,,,,, -"Dec 17, 2007",2.487,2.883,2.933,2.747,2.962,2.837,2.975,3.392,3.016,2.916,2.924,3.08,3.203,2.817,2.874,2.785,,,2.694,2.924,2.241,,2.457,1.925,,2.494,2.315,2.118,2.152,1.881,1.983,2.649,,1.943,,2.128,,,,,,,,,,, -"Dec 24, 2007",2.502,2.903,2.951,2.739,3.005,2.88,2.981,3.361,3.03,2.938,2.933,3.088,3.227,2.848,2.893,2.805,,,2.705,2.958,2.253,,2.466,1.954,,2.499,2.342,2.127,2.159,1.887,1.992,2.648,,1.944,,2.139,,,,,,,,,,, -"Dec 31, 2007",2.524,2.922,2.979,2.773,3.006,2.887,3.012,3.397,3.09,2.967,2.956,3.114,3.263,2.871,2.93,2.798,,,2.697,2.952,2.277,,2.486,1.96,,2.517,2.373,2.15,2.195,1.907,1.996,2.683,,1.96,,2.157,,,,,,,,,,, -"Jan 07, 2008",2.563,2.972,3.023,2.799,3.052,2.911,3.054,3.46,3.167,3.017,3.019,3.154,3.28,2.936,2.977,2.853,,,2.745,3.017,2.308,,2.51,1.985,,2.541,2.418,2.173,2.228,1.953,2.03,2.697,,2.01,,2.195,,,,,,,,,,, -"Jan 14, 2008",2.565,2.979,3.048,2.82,3.081,2.917,3.092,3.478,3.191,3.018,3.017,3.151,3.264,2.93,2.991,2.857,,,2.747,3.024,2.306,,2.491,1.981,,2.55,2.418,2.16,2.228,1.951,2.019,2.704,,2.012,,2.2,,,,,,,,,,, -"Jan 21, 2008",2.563,2.981,3.052,2.807,3.095,2.912,3.1,3.493,3.203,3.029,3.043,3.16,3.297,2.944,2.99,2.843,,,2.737,3.003,2.301,,2.492,1.966,,2.555,2.414,2.161,2.219,1.903,2.006,2.708,,1.993,,2.199,,,,,,,,,,, -"Jan 28, 2008",2.562,2.979,3.046,2.842,3.075,2.91,3.084,3.494,3.19,3.025,3.034,3.165,3.337,2.931,2.982,2.845,,,2.744,2.998,2.302,,2.497,1.968,,2.549,2.421,2.166,2.221,1.899,1.987,2.703,,1.987,,2.196,,,,,,,,,,, -"Feb 04, 2008",2.563,2.979,3.047,2.825,3.065,2.905,3.087,3.467,3.216,3.028,3.034,3.186,3.346,2.93,2.98,2.84,,,2.737,2.995,2.303,,2.501,1.974,,2.548,2.419,2.174,2.228,1.884,2.007,2.687,,1.993,,2.198,,,,,,,,,,, -"Feb 11, 2008",2.552,2.969,3.05,2.811,3.07,2.92,3.089,3.473,3.216,3.016,3.023,3.173,3.35,2.935,2.944,2.824,,,2.719,2.983,2.291,,2.485,1.951,,2.545,2.412,2.172,2.216,1.862,2.008,2.663,,1.984,,2.186,,,,,,,,,,, -"Feb 18, 2008",2.55,2.974,3.069,2.796,3.081,2.931,3.13,3.481,3.238,3.019,3.024,3.178,3.35,2.95,2.936,2.817,,,2.707,2.986,2.285,,2.479,1.966,,2.549,2.398,2.165,2.199,1.862,2,2.646,,1.978,,2.197,,,,,,,,,,, -"Feb 25, 2008",2.58,2.983,3.079,2.842,3.095,2.947,3.131,3.477,3.235,3.03,3.033,3.194,3.331,2.957,2.958,2.823,,,2.716,2.985,2.328,,2.487,2.09,,2.542,2.415,2.24,2.23,1.948,2.005,2.651,,2.111,,2.27,,,,,,,,,,, -"Mar 03, 2008",2.604,2.999,3.092,2.836,3.112,2.951,3.149,3.51,3.255,3.053,3.044,3.19,3.38,2.97,2.996,2.83,,,2.725,2.99,2.357,,2.488,2.195,,2.542,2.433,2.279,2.289,2.051,2.11,2.571,,2.107,,2.329,,,,,,,,,,, -"Mar 10, 2008",2.603,3,3.082,2.854,3.085,2.938,3.115,3.552,3.275,3.057,3.059,3.201,3.379,2.971,3.001,2.837,,,2.731,2.997,2.354,,2.482,2.141,,2.537,2.431,2.285,2.308,2.007,2.092,2.58,,2.064,,2.35,,,,,,,,,,, -"Mar 17, 2008",2.598,3.014,3.102,2.907,3.11,2.961,3.12,3.551,3.295,3.066,3.064,3.2,3.402,2.985,3.004,2.852,,,2.754,3,2.338,,2.469,2.115,,2.528,2.397,2.27,2.298,1.999,2.111,2.571,,2.062,,2.328,,,,,,,,,,, -"Oct 06, 2008",2.66,3.136,3.182,3.057,3.281,3.14,3.143,3.589,3.252,3.241,3.143,3.254,3.516,3.088,3.341,2.935,,,2.831,3.092,2.361,,2.45,2.129,,2.644,2.489,2.281,2.25,2.028,2.061,2.629,,2.081,,2.342,,,,,,,,,,, -"Oct 13, 2008",2.603,3.069,3.15,2.982,3.3,3.095,3.126,3.512,3.208,3.14,3.142,3.164,3.456,3.057,3.127,2.886,,,2.786,3.038,2.31,,2.424,2.107,,2.61,2.441,2.237,2.197,1.893,2.004,2.542,,1.998,,2.309,,,,,,,,,,, -"Oct 20, 2008",2.557,3.015,3.117,2.924,3.218,3.075,3.118,3.511,3.169,3.092,3.1,3.078,3.431,3.042,3.048,2.804,,,2.7,2.961,2.27,,2.387,1.993,,2.571,2.419,2.2,2.172,1.758,1.933,2.538,,1.949,,2.276,,,,,,,,,,, -"Oct 27, 2008",2.527,2.982,3.094,2.876,3.234,3.037,3.083,3.471,3.175,3.038,3.057,3.091,3.333,2.978,2.99,2.793,,,2.702,2.933,2.241,,2.363,1.925,,2.543,2.393,2.138,2.167,1.728,1.878,2.522,,1.905,,2.271,,,,,,,,,,, -"Nov 03, 2008",2.5,2.94,3.076,2.876,3.166,2.991,3.104,3.446,3.15,3.008,3.029,3.087,3.248,2.953,2.96,2.713,,,2.586,2.907,2.224,,2.374,1.91,,2.51,2.388,2.128,2.152,1.692,1.823,2.494,,1.859,,2.243,,,,,,,,,,, -"Nov 10, 2008",2.463,2.882,2.992,2.825,3.106,2.869,2.987,3.394,3.098,2.967,2.973,3.043,3.312,2.919,2.873,2.654,,,2.494,2.898,2.198,,2.357,1.881,,2.469,2.384,2.086,2.134,1.662,1.815,2.464,,1.792,,2.22,,,,,,,,,,, -"Nov 17, 2008",2.443,2.855,2.965,2.801,3.076,2.839,2.97,3.364,3.077,2.942,2.933,3.013,3.285,2.868,2.894,2.621,,,2.47,2.851,2.186,,2.352,1.862,,2.493,2.384,2.059,2.103,1.614,1.762,2.458,,1.748,,2.21,,,,,,,,,,, -"Nov 24, 2008",2.415,2.811,2.921,2.733,3.032,2.789,2.92,3.344,3.062,2.906,2.888,2.983,3.242,2.828,2.864,2.564,,,2.441,2.749,2.168,,2.343,1.827,,2.47,2.374,2.034,2.095,1.595,1.726,2.441,,1.701,,2.195,,,,,,,,,,, -"Dec 01, 2008",2.401,2.785,2.906,2.704,3.017,2.758,2.904,3.362,3.071,2.888,2.878,2.958,3.2,2.81,2.854,2.516,,,2.415,2.669,2.163,,2.325,1.857,,2.467,2.382,2.019,2.072,1.584,1.684,2.453,,1.671,,2.184,,,,,,,,,,, -"Dec 08, 2008",2.369,2.738,2.8,2.63,2.952,2.615,2.782,3.283,2.98,2.857,2.852,2.904,3.156,2.78,2.833,2.499,,,2.402,2.646,2.139,,2.302,1.825,,2.455,2.375,1.987,2.04,1.543,1.656,2.433,,1.614,,2.167,,,,,,,,,,, -"Dec 15, 2008",2.341,2.707,2.775,2.641,2.939,2.596,2.739,3.296,2.942,2.825,2.821,2.898,3.091,2.754,2.795,2.464,,,2.364,2.615,2.113,,2.281,1.777,,2.444,2.358,1.942,2.031,1.55,1.624,2.389,,1.585,,2.141,,,,,,,,,,, -"Dec 22, 2008",2.33,2.694,2.775,2.663,2.892,2.593,2.743,3.243,2.963,2.804,2.776,2.898,3.043,2.738,2.773,2.449,,,2.351,2.599,2.104,,2.277,1.796,,2.445,2.35,1.921,2.004,1.569,1.609,2.377,,1.57,,2.135,,,,,,,,,,, -"Dec 29, 2008",2.317,2.675,2.752,2.601,2.877,2.595,2.705,3.298,2.946,2.786,2.75,2.873,3.039,2.723,2.751,2.432,,,2.352,2.553,2.095,,2.28,1.782,,2.437,2.331,1.923,1.989,1.552,1.613,2.371,,1.568,,2.123,,,,,,,,,,, -"Jan 05, 2009",2.31,2.668,2.744,2.578,2.874,2.573,2.719,3.291,2.923,2.78,2.731,2.847,3.011,2.73,2.748,2.428,,,2.348,2.548,2.087,,2.279,1.769,,2.42,2.314,1.916,1.976,1.558,1.6,2.366,,1.569,,2.121,,,,,,,,,,, -"Jan 12, 2009",2.306,2.667,2.727,2.568,2.884,2.55,2.688,3.288,2.911,2.786,2.743,2.845,3.022,2.733,2.758,2.429,,,2.35,2.548,2.081,,2.268,1.739,,2.401,2.329,1.915,1.97,1.559,1.602,2.351,,1.578,,2.105,,,,,,,,,,, -"Jan 19, 2009",2.312,2.684,2.74,2.602,2.891,2.546,2.691,3.345,2.943,2.805,2.756,2.891,3.028,2.727,2.799,2.447,,,2.36,2.58,2.081,,2.253,1.738,,2.388,2.323,1.922,1.969,1.563,1.612,2.372,,1.585,,2.109,,,,,,,,,,, -"Jan 26, 2009",2.324,2.707,2.756,2.608,2.959,2.562,2.694,3.381,2.946,2.828,2.763,2.914,3.096,2.731,2.834,2.476,,,2.375,2.63,2.086,,2.266,1.75,,2.414,2.327,1.903,1.989,1.57,1.602,2.374,,1.589,,2.101,,,,,,,,,,, -"Feb 02, 2009",2.324,2.72,2.779,2.675,2.952,2.588,2.715,3.394,2.963,2.847,2.768,2.903,3.09,2.773,2.846,2.472,,,2.374,2.621,2.077,,2.261,1.717,,2.407,2.328,1.908,1.965,1.554,1.612,2.366,,1.596,,2.09,,,,,,,,,,, -"Feb 09, 2009",2.32,2.729,2.815,2.702,2.977,2.582,2.782,3.381,3.014,2.847,2.752,2.898,3.089,2.783,2.842,2.468,,,2.376,2.608,2.066,,2.236,1.712,,2.395,2.316,1.892,1.953,1.559,1.612,2.37,,1.592,,2.073,,,,,,,,,,, -"Feb 16, 2009",2.31,2.72,2.816,2.705,2.985,2.59,2.786,3.448,2.994,2.841,2.744,2.902,3.08,2.78,2.83,2.445,,,2.356,2.579,2.055,,2.25,1.683,,2.385,2.314,1.869,1.931,1.537,1.601,2.36,,1.57,,2.063,,,,,,,,,,, -"Feb 23, 2009",2.292,2.71,2.817,2.68,3.016,2.617,2.79,3.413,2.957,2.829,2.712,2.882,3.06,2.77,2.823,2.431,,,2.35,2.555,2.032,,2.187,1.671,,2.373,2.305,1.853,1.896,1.501,1.596,2.346,,1.542,,2.04,,,,,,,,,,, -"Mar 02, 2009",2.274,2.696,2.795,2.634,2.964,2.623,2.754,3.339,2.969,2.826,2.748,2.861,3.05,2.768,2.821,2.407,,,2.321,2.538,2.012,,2.152,1.652,,2.341,2.295,1.849,1.866,1.494,1.56,2.336,,1.515,,2.015,,,,,,,,,,, -"Mar 09, 2009",2.246,2.663,2.756,2.625,2.912,2.565,2.741,2.948,2.947,2.794,2.734,2.797,3.016,2.744,2.791,2.378,,,2.294,2.505,1.987,,2.084,1.64,,2.303,2.278,1.837,1.846,1.476,1.529,2.31,,1.491,,1.987,,,,,,,,,,, -"Mar 16, 2009",2.223,2.639,2.738,2.613,2.902,2.545,2.733,3,2.895,2.771,2.699,2.759,3.013,2.734,2.755,2.344,,,2.264,2.465,1.965,,2.061,1.621,,2.26,2.271,1.805,1.829,1.458,1.508,2.278,,1.491,,1.96,,,,,,,,,,, -"Oct 05, 2009",1.94,2.469,2.546,2.33,2.546,2.44,2.542,2.798,2.552,2.575,2.535,2.484,2.86,2.47,2.594,2.206,,,2.177,2.272,1.529,,1.64,1.297,,1.738,1.719,1.484,1.456,1.289,1.242,1.796,,1.374,,1.399,,,,,,,,,,, -"Oct 12, 2009",1.962,2.48,2.56,2.398,2.552,2.478,2.568,2.776,2.532,2.585,2.536,2.508,2.843,2.458,2.629,2.215,,,2.186,2.281,1.559,,1.652,1.313,,1.763,1.755,1.518,1.477,1.341,1.259,1.84,,1.385,,1.453,,,,,,,,,,, -"Oct 19, 2009",2.002,2.516,2.58,2.383,2.625,2.514,2.557,2.829,2.55,2.627,2.569,2.522,2.936,2.491,2.669,2.255,,,2.24,2.29,1.601,,1.699,1.376,,1.783,1.785,1.569,1.518,1.376,1.336,1.854,,1.415,,1.507,,,,,,,,,,, -"Oct 26, 2009",2.06,2.569,2.621,2.438,2.657,2.543,2.632,2.854,2.541,2.681,2.616,2.546,3.01,2.537,2.733,2.314,,,2.317,2.308,1.664,,1.787,1.441,,1.848,1.817,1.645,1.609,1.449,1.414,1.879,,1.511,,1.563,,,,,,,,,,, -"Nov 02, 2009",2.089,2.593,2.63,2.448,2.693,2.557,2.622,2.878,2.549,2.705,2.641,2.58,3.009,2.563,2.763,2.352,,,2.343,2.373,1.695,,1.825,1.472,,1.883,1.844,1.633,1.649,1.459,1.449,1.954,,1.549,,1.6,,,,,,,,,,, -"Nov 09, 2009",2.124,2.613,2.635,2.445,2.744,2.59,2.61,2.822,2.575,2.731,2.649,2.592,3.069,2.585,2.786,2.374,,,2.36,2.407,1.742,,1.891,1.522,,1.915,1.887,1.697,1.692,1.485,1.522,1.988,,1.579,,1.643,,,,,,,,,,, -"Nov 16, 2009",2.153,2.635,2.654,2.478,2.736,2.583,2.616,2.902,2.616,2.757,2.646,2.625,3.113,2.615,2.805,2.388,,,2.375,2.419,1.777,,1.92,1.562,,1.949,1.94,1.739,1.719,1.502,1.571,2.01,,1.614,,1.668,,,,,,,,,,, -"Nov 23, 2009",2.186,2.668,2.686,2.496,2.766,2.582,2.627,3.029,2.651,2.796,2.652,2.65,3.123,2.683,2.837,2.412,,,2.403,2.432,1.812,,1.943,1.618,,2.005,1.948,1.823,1.738,1.505,1.604,2.007,,1.657,,1.714,,,,,,,,,,, -"Nov 30, 2009",2.209,2.687,2.693,2.487,2.765,2.618,2.651,2.978,2.663,2.82,2.668,2.646,3.162,2.701,2.87,2.433,,,2.414,2.476,1.836,,2.042,1.63,,2.028,1.98,1.816,1.75,1.516,1.642,2.043,,1.701,,1.716,,,,,,,,,,, -"Dec 07, 2009",2.254,2.745,2.736,2.554,2.782,2.67,2.696,2.988,2.732,2.891,2.697,2.689,3.27,2.758,2.956,2.478,,,2.462,2.514,1.872,,2.094,1.647,,2.093,2.009,1.858,1.791,1.559,1.695,2.061,,1.714,,1.758,,,,,,,,,,, -"Dec 14, 2009",2.274,2.773,2.748,2.572,2.8,2.678,2.706,2.968,2.763,2.923,2.703,2.711,3.309,2.78,3,2.512,,,2.491,2.559,1.886,,2.106,1.638,,2.122,2.045,1.874,1.769,1.588,1.713,2.075,,1.732,,1.777,,,,,,,,,,, -"Dec 21, 2009",2.314,2.833,2.799,2.582,2.813,2.73,2.727,3.223,2.799,2.995,2.765,2.764,3.487,2.805,3.08,2.558,,,2.534,2.613,1.91,,2.121,1.654,,2.173,2.074,1.89,1.796,1.621,1.736,2.107,,1.749,,1.795,,,,,,,,,,, -"Dec 28, 2009",2.381,2.883,2.84,2.607,2.851,2.8,2.77,3.261,2.834,3.045,2.8,2.885,3.528,2.835,3.132,2.617,,,2.608,2.636,1.991,,2.188,1.719,,2.193,2.168,1.945,1.895,1.703,1.783,2.296,,1.776,,1.853,,,,,,,,,,, -"Jan 04, 2010",2.46,2.969,2.901,2.622,2.893,2.855,2.852,3.282,2.919,3.129,2.861,2.938,3.618,2.944,3.205,2.729,,,2.724,2.741,2.063,,2.325,1.778,,2.269,2.263,1.994,1.947,1.738,1.87,2.36,,1.867,,1.913,,,,,,,,,,, -"Jan 11, 2010",2.589,3.126,3.019,2.717,3.036,2.893,2.95,3.488,3.051,3.267,3.007,3.086,3.77,3.092,3.325,2.954,,,2.939,2.988,2.17,,2.449,1.846,,2.422,2.346,2.121,2.068,1.825,1.967,2.527,,1.906,,1.99,,,,,,,,,,, -"Jan 18, 2010",2.598,3.159,3.046,2.703,3.036,2.954,2.991,3.432,3.138,3.303,3.012,3.114,3.805,3.12,3.374,2.987,,,2.943,3.087,2.161,,2.477,1.82,,2.451,2.351,2.061,2.083,1.768,1.941,2.542,,1.888,,1.965,,,,,,,,,,, -"Jan 25, 2010",2.601,3.168,3.06,2.767,3.061,2.967,2.996,3.426,3.147,3.299,3.019,3.096,3.798,3.122,3.37,3.014,,,2.983,3.085,2.16,,2.486,1.817,,2.419,2.344,2.068,2.072,1.78,1.928,2.559,,1.886,,1.965,,,,,,,,,,, -"Feb 01, 2010",2.601,3.161,3.078,2.802,3.043,2.998,2.991,3.495,3.2,3.303,3.071,3.124,3.757,3.124,3.377,2.968,,,2.942,3.026,2.165,,2.496,1.814,,2.448,2.341,2.065,2.072,1.795,1.924,2.566,,1.888,,1.984,,,,,,,,,,, -"Feb 08, 2010",2.604,3.155,3.087,2.78,3.023,3.02,3.012,3.526,3.205,3.298,3.086,3.108,3.793,3.123,3.354,2.947,,,2.941,2.96,2.174,,2.508,1.844,,2.471,2.32,2.08,2.095,1.844,1.922,2.523,,1.926,,2.01,,,,,,,,,,, -"Feb 15, 2010",2.604,3.164,3.08,2.786,2.978,3.027,3.01,3.5,3.223,3.315,3.063,3.123,3.924,3.123,3.351,2.951,,,2.937,2.984,2.169,,2.517,1.85,,2.469,2.302,2.083,2.089,1.852,1.935,2.492,,1.92,,2.003,,,,,,,,,,, -"Feb 22, 2010",2.6,3.156,3.082,2.817,3.009,3.005,3.001,3.512,3.209,3.312,3.095,3.118,3.833,3.117,3.379,2.925,,,2.894,2.996,2.168,,2.508,1.848,,2.458,2.301,2.072,2.079,1.806,1.933,2.547,,1.912,,2.001,,,,,,,,,,, -"Mar 01, 2010",2.589,3.15,3.085,2.812,3.008,3.012,2.998,3.521,3.226,3.305,3.089,3.139,3.831,3.112,3.359,2.915,,,2.897,2.956,2.153,,2.487,1.827,,2.426,2.271,2.059,2.063,1.79,1.915,2.576,,1.888,,1.983,,,,,,,,,,, -"Mar 08, 2010",2.556,3.108,3.071,2.805,2.997,2.998,2.992,3.502,3.193,3.249,3.103,3.142,3.763,3.067,3.271,2.875,,,2.853,2.924,2.126,,2.468,1.786,,2.422,2.273,2.04,2.051,1.746,1.883,2.482,,1.873,,1.963,,,,,,,,,,, -"Mar 15, 2010",2.523,3.08,3.062,2.785,2.939,3.012,2.993,3.627,3.116,3.211,3.089,3.132,3.729,3.059,3.192,2.849,,,2.836,2.878,2.09,,2.433,1.752,,2.395,2.226,2.015,2.014,1.71,1.838,2.438,,1.848,,1.931,,,,,,,,,,, -"Oct 04, 2010",2.224,2.747,2.819,2.608,2.668,2.766,2.82,3.269,2.79,2.806,2.95,2.92,3.384,2.691,2.649,2.572,,,2.554,2.622,1.839,,2.015,1.607,,2.068,2.061,1.741,1.768,1.579,1.586,2.159,,1.618,,1.744,,,,,,,,,,, -"Oct 11, 2010",2.264,2.782,2.84,2.626,2.65,2.79,2.845,3.295,2.839,2.85,2.952,2.951,3.378,2.741,2.716,2.603,,,2.593,2.629,1.883,,2.077,1.628,,2.111,2.104,1.78,1.828,1.625,1.601,2.225,,1.662,,1.788,,,,,,,,,,, -"Oct 18, 2010",2.29,2.82,2.852,2.655,2.675,2.82,2.867,3.262,2.826,2.887,2.975,2.957,3.31,2.765,2.815,2.666,,,2.665,2.67,1.9,,2.12,1.645,,2.137,2.115,1.794,1.845,1.626,1.62,2.24,,1.693,,1.794,,,,,,,,,,, -"Oct 25, 2010",2.302,2.831,2.879,2.635,2.701,2.827,2.876,3.309,2.916,2.891,2.977,2.946,3.323,2.772,2.818,2.677,,,2.678,2.673,1.913,,2.129,1.648,,2.18,2.132,1.796,1.856,1.617,1.619,2.271,,1.701,,1.809,,,,,,,,,,, -"Nov 01, 2010",2.327,2.85,2.911,2.683,2.695,2.876,2.877,3.503,2.924,2.922,2.985,2.97,3.333,2.825,2.839,2.664,,,2.658,2.679,1.942,,2.273,1.648,,2.229,2.143,1.802,1.856,1.621,1.636,2.353,,1.697,,1.82,,,,,,,,,,, -"Nov 08, 2010",2.371,2.917,2.96,2.721,2.724,2.927,2.912,3.557,3.03,3.003,2.997,3.107,3.377,2.903,2.93,2.718,,,2.692,2.786,1.969,,2.291,1.675,,2.317,2.177,1.814,1.873,1.641,1.65,2.41,,1.711,,1.83,,,,,,,,,,, -"Nov 15, 2010",2.39,2.943,2.993,2.743,2.728,2.949,2.971,3.541,3.08,3.028,3.031,3.135,3.427,2.943,2.929,2.74,,,2.729,2.77,1.984,,2.325,1.681,,2.325,2.207,1.84,1.876,1.656,1.679,2.418,,1.718,,1.821,,,,,,,,,,, -"Nov 22, 2010",2.419,2.987,3.053,2.751,2.79,2.986,3.032,3.606,3.167,3.065,3.063,3.155,3.517,2.964,2.968,2.781,,,2.767,2.82,2.002,,2.388,1.682,,2.364,2.21,1.843,1.873,1.652,1.682,2.486,,1.735,,1.836,,,,,,,,,,, -"Nov 29, 2010",2.438,3.014,3.068,2.78,2.825,3.017,3.025,3.64,3.181,3.109,3.132,3.21,3.591,3.008,2.993,2.791,,,2.753,2.893,2.014,,2.405,1.688,,2.384,2.218,1.849,1.881,1.666,1.684,2.531,,1.735,,1.842,,,,,,,,,,, -"Dec 06, 2010",2.461,3.046,3.093,2.826,2.805,3.063,3.069,3.635,3.209,3.136,3.069,3.178,3.624,3.039,3.046,2.836,,,2.809,2.91,2.031,,2.467,1.695,,2.401,2.227,1.882,1.9,1.666,1.705,2.505,,1.756,,1.864,,,,,,,,,,, -"Dec 13, 2010",2.49,3.081,3.145,2.849,2.861,3.07,3.161,3.646,3.239,3.172,3.112,3.191,3.656,3.073,3.09,2.855,,,2.823,2.94,2.054,,2.468,1.713,,2.425,2.252,1.9,1.917,1.683,1.728,2.572,,1.772,,1.89,,,,,,,,,,, -"Dec 20, 2010",2.539,3.153,3.21,2.908,2.935,3.119,3.255,3.682,3.259,3.236,3.138,3.216,3.863,3.131,3.123,2.95,,,2.921,3.029,2.086,,2.506,1.729,,2.464,2.293,1.932,1.956,1.704,1.763,2.608,,1.796,,1.915,,,,,,,,,,, -"Dec 27, 2010",2.572,3.2,3.266,2.992,2.97,3.147,3.334,3.695,3.315,3.283,3.144,3.264,3.883,3.208,3.159,2.985,,,2.955,3.065,2.11,,2.535,1.755,,2.466,2.322,1.964,1.981,1.72,1.779,2.637,,1.809,,1.928,,,,,,,,,,, -"Jan 03, 2011",2.603,3.241,3.32,2.953,2.994,3.2,3.427,3.74,3.367,3.326,3.199,3.282,3.966,3.253,3.19,3.013,,,2.995,3.06,2.133,,2.561,1.782,,2.487,2.348,1.983,2.009,1.733,1.788,2.662,,1.83,,1.949,,,,,,,,,,, -"Jan 10, 2011",2.622,3.261,3.346,3.003,3.023,3.223,3.453,3.756,3.389,3.347,3.217,3.321,4,3.262,3.212,3.024,,,3.005,3.076,2.152,,2.571,1.792,,2.525,2.355,2,2.045,1.757,1.828,2.687,,1.845,,1.968,,,,,,,,,,, -"Jan 17, 2011",2.647,3.292,3.4,3.008,3.049,3.267,3.504,3.83,3.491,3.364,3.234,3.332,3.971,3.277,3.251,3.062,,,3.062,3.061,2.173,,2.583,1.813,,2.542,2.365,2.026,2.045,1.773,1.862,2.741,,1.874,,1.988,,,,,,,,,,, -"Jan 24, 2011",2.658,3.309,3.433,3.057,3.082,3.295,3.533,3.85,3.543,3.371,3.247,3.359,3.952,3.286,3.257,3.083,,,3.077,3.098,2.178,,2.604,1.815,,2.562,2.381,2.031,2.048,1.779,1.859,2.72,,1.886,,1.993,,,,,,,,,,, -"Jan 31, 2011",2.666,3.324,3.464,3.108,3.094,3.353,3.567,3.901,3.545,3.388,3.248,3.39,3.966,3.308,3.269,3.08,,,3.074,3.095,2.181,,2.605,1.815,,2.564,2.392,2.034,2.047,1.78,1.884,2.719,,1.891,,1.993,,,,,,,,,,, -"Feb 07, 2011",2.673,3.339,3.488,3.12,3.133,3.376,3.593,3.909,3.564,3.409,3.271,3.395,3.959,3.328,3.306,3.076,,,3.066,3.103,2.183,,2.62,1.815,,2.574,2.384,2.036,2.048,1.774,1.872,2.723,,1.888,,1.998,,,,,,,,,,, -"Feb 14, 2011",2.673,3.338,3.449,3.131,3.124,3.357,3.553,3.611,3.647,3.43,3.276,3.411,4.021,3.341,3.324,3.069,,,3.066,3.076,2.184,,2.623,1.815,,2.571,2.385,2.041,2.043,1.776,1.865,2.736,,1.891,,1.992,,,,,,,,,,, -"Feb 21, 2011",2.672,3.334,3.437,3.147,3.133,3.367,3.536,3.603,3.595,3.422,3.279,3.417,3.897,3.357,3.331,3.079,,,3.079,3.08,2.185,,2.619,1.818,,2.57,2.394,2.029,2.042,1.773,1.865,2.744,,1.898,,1.994,,,,,,,,,,, -"Feb 28, 2011",2.718,3.377,3.467,3.175,3.156,3.372,3.552,3.701,3.63,3.464,3.32,3.439,3.923,3.411,3.372,3.135,,,3.127,3.158,2.234,,2.636,1.88,,2.586,2.452,2.092,2.08,1.872,1.885,2.774,,1.942,,2.061,,,,,,,,,,, -"Mar 07, 2011",2.731,3.405,3.491,3.218,3.222,3.431,3.553,3.776,3.596,3.514,3.36,3.486,4.02,3.443,3.425,3.124,,,3.106,3.174,2.236,,2.654,1.873,,2.598,2.411,2.128,2.095,1.878,1.912,2.747,,1.959,,2.068,,,,,,,,,,, -"Mar 14, 2011",2.701,3.365,3.471,3.214,3.22,3.429,3.528,3.758,3.552,3.459,3.355,3.497,3.893,3.427,3.332,3.097,,,3.076,3.152,2.212,,2.523,1.868,,2.574,2.393,2.117,2.077,1.856,1.9,2.745,,1.943,,2.054,,,,,,,,,,, -"Oct 03, 2011",2.61,3.207,3.326,3.17,3.141,3.354,3.243,3.949,3.351,3.247,3.362,3.352,3.662,3.138,3.155,3.015,,,3,3.06,2.167,,2.345,1.911,,2.426,2.413,2.1,2.042,1.877,1.911,2.577,,1.976,,2.029,,,,,,,,,,, -"Oct 10, 2011",2.618,3.211,3.296,3.142,3.145,3.381,3.188,3.896,3.319,3.257,3.339,3.391,3.706,3.138,3.157,3.042,,,3.018,3.116,2.176,,2.364,1.909,,2.501,2.413,2.102,2.039,1.879,1.922,2.608,,1.979,,2.032,,,,,,,,,,, -"Oct 17, 2011",2.643,3.232,3.3,3.148,3.157,3.391,3.19,3.887,3.325,3.28,3.329,3.404,3.695,3.159,3.202,3.075,,,3.039,3.187,2.205,,2.486,1.923,,2.533,2.427,2.102,2.082,1.877,1.925,2.663,,1.968,,2.048,,,,,,,,,,, -"Oct 24, 2011",2.639,3.219,3.259,3.1,3.13,3.335,3.171,3.701,3.331,3.283,3.34,3.422,3.701,3.164,3.197,3.058,,,3.003,3.227,2.207,,2.504,1.927,,2.593,2.414,2.093,2.062,1.876,1.928,2.696,,1.977,,2.029,,,,,,,,,,, -"Oct 31, 2011",2.665,3.256,3.298,3.104,3.134,3.404,3.231,3.739,3.362,3.316,3.356,3.448,3.787,3.17,3.24,3.1,,,3.062,3.218,2.226,,2.555,1.932,,2.548,2.456,2.084,2.084,1.877,1.928,2.769,,1.974,,2.041,,,,,,,,,,, -"Nov 07, 2011",2.669,3.27,3.303,3.098,3.155,3.38,3.233,3.757,3.365,3.331,3.374,3.43,3.774,3.176,3.283,3.123,,,3.079,3.258,2.221,,2.57,1.932,,2.561,2.429,2.085,2.075,1.87,1.939,2.755,,1.957,,2.037,,,,,,,,,,, -"Nov 14, 2011",2.677,3.272,3.305,3.1,3.152,3.389,3.225,3.797,3.369,3.34,3.372,3.437,3.755,3.192,3.297,3.111,,,3.067,3.246,2.234,,2.618,1.926,,2.557,2.447,2.098,2.079,1.855,1.954,2.801,,1.963,,2.036,,,,,,,,,,, -"Nov 21, 2011",2.694,3.293,3.336,3.097,3.162,3.389,3.291,3.799,3.392,3.346,3.365,3.445,3.761,3.212,3.291,3.15,,,3.113,3.264,2.248,,2.639,1.924,,2.602,2.467,2.106,2.096,1.855,1.95,2.828,,1.994,,2.043,,,,,,,,,,, -"Nov 28, 2011",2.701,3.303,3.341,3.094,3.156,3.385,3.296,3.804,3.419,3.356,3.359,3.46,3.779,3.228,3.293,3.167,,,3.124,3.299,2.252,,2.661,1.915,,2.604,2.478,2.104,2.102,1.857,1.954,2.831,,1.992,,2.055,,,,,,,,,,, -"Dec 05, 2011",2.702,3.309,3.336,3.095,3.175,3.392,3.296,3.662,3.466,3.359,3.363,3.464,3.791,3.233,3.29,3.186,,,3.153,3.288,2.25,,2.651,1.917,,2.569,2.481,2.11,2.109,1.846,1.954,2.836,,1.982,,2.046,,,,,,,,,,, -"Dec 12, 2011",2.705,3.314,3.361,3.094,3.193,3.407,3.326,3.744,3.464,3.357,3.385,3.464,3.8,3.23,3.282,3.185,,,3.148,3.299,2.252,,2.655,1.917,,2.571,2.489,2.104,2.1,1.839,1.95,2.857,,1.986,,2.05,,,,,,,,,,, -"Dec 19, 2011",2.711,3.328,3.369,3.101,3.204,3.4,3.349,3.712,3.469,3.369,3.403,3.446,3.829,3.247,3.29,3.209,,,3.177,3.307,2.253,,2.664,1.911,,2.585,2.491,2.102,2.1,1.813,1.947,2.868,,1.981,,2.05,,,,,,,,,,, -"Dec 26, 2011",2.712,3.337,3.373,3.081,3.193,3.421,3.372,3.651,3.494,3.383,3.392,3.474,3.868,3.246,3.308,3.216,,,3.173,3.348,2.247,,2.663,1.9,,2.582,2.504,2.097,2.091,1.803,1.933,2.861,,1.972,,2.038,,,,,,,,,,, -"Jan 02, 2012",2.715,3.344,3.394,3.106,3.234,3.426,3.376,3.74,3.496,3.399,3.404,3.494,3.89,3.238,3.345,3.19,,,3.142,3.34,2.248,,2.668,1.893,,2.588,2.507,2.091,2.103,1.796,1.93,2.858,,1.979,,2.041,,,,,,,,,,, -"Jan 09, 2012",2.71,3.339,3.415,3.112,3.229,3.443,3.404,3.764,3.533,3.397,3.405,3.471,3.939,3.239,3.326,3.157,,,3.103,3.325,2.242,,2.667,1.898,,2.605,2.497,2.079,2.091,1.78,1.915,2.863,,1.969,,2.022,,,,,,,,,,, -"Jan 16, 2012",2.708,3.344,3.425,3.111,3.23,3.442,3.43,3.758,3.537,3.403,3.414,3.469,3.928,3.244,3.343,3.152,,,3.088,3.349,2.234,,2.655,1.884,,2.62,2.506,2.063,2.094,1.74,1.893,2.872,,1.96,,2.002,,,,,,,,,,, -"Jan 23, 2012",2.707,3.34,3.427,3.108,3.238,3.445,3.426,3.756,3.556,3.4,3.412,3.489,3.93,3.246,3.325,3.142,,,3.078,3.338,2.237,,2.668,1.886,,2.622,2.505,2.062,2.096,1.727,1.896,2.879,,1.956,,2.007,,,,,,,,,,, -"Jan 30, 2012",2.708,3.351,3.432,3.112,3.236,3.443,3.431,3.777,3.564,3.409,3.417,3.501,3.941,3.26,3.329,3.159,,,3.103,3.332,2.229,,2.659,1.872,,2.623,2.5,2.064,2.099,1.712,1.898,2.856,,1.957,,1.996,,,,,,,,,,, -"Feb 06, 2012",2.706,3.352,3.441,3.099,3.234,3.488,3.455,3.742,3.564,3.406,3.42,3.507,3.942,3.259,3.318,3.162,,,3.104,3.34,2.226,,2.659,1.873,,2.583,2.501,2.066,2.096,1.714,1.89,2.849,,1.942,,1.994,,,,,,,,,,, -"Feb 13, 2012",2.704,3.35,3.455,3.1,3.251,3.482,3.462,3.781,3.592,3.4,3.423,3.509,3.95,3.263,3.294,3.152,,,3.09,3.343,2.224,,2.66,1.862,,2.603,2.494,2.07,2.097,1.69,1.891,2.848,,1.957,,1.987,,,,,,,,,,, -"Feb 20, 2012",2.703,3.351,3.472,3.093,3.256,3.487,3.487,3.812,3.616,3.39,3.426,3.501,3.948,3.254,3.277,3.16,,,3.089,3.378,2.221,,2.653,1.854,,2.597,2.515,2.073,2.09,1.673,1.886,2.845,,1.939,,1.978,,,,,,,,,,, -"Feb 27, 2012",2.709,3.365,3.473,3.096,3.25,3.5,3.506,3.767,3.604,3.407,3.437,3.529,3.961,3.258,3.306,3.179,,,3.1,3.424,2.221,,2.65,1.855,,2.579,2.521,2.067,2.093,1.678,1.879,2.86,,1.94,,1.97,,,,,,,,,,, -"Mar 05, 2012",2.71,3.368,3.468,3.11,3.244,3.497,3.5,3.783,3.578,3.418,3.438,3.529,3.969,3.271,3.322,3.174,,,3.098,3.41,2.22,,2.645,1.838,,2.584,2.532,2.054,2.101,1.681,1.875,2.886,,1.935,,1.965,,,,,,,,,,, -"Mar 12, 2012",2.708,3.37,3.469,3.11,3.245,3.493,3.498,3.783,3.592,3.427,3.419,3.529,3.972,3.279,3.341,3.165,,,3.065,3.473,2.216,,2.643,1.828,,2.521,2.531,2.063,2.093,1.696,1.883,2.877,,1.933,,1.965,,,,,,,,,,, -"Mar 19, 2012",2.705,3.368,3.483,3.111,3.243,3.502,3.516,3.803,3.615,3.431,3.417,3.549,4,3.262,3.351,3.137,,,3.031,3.465,2.211,,2.635,1.819,,2.557,2.533,2.061,2.088,1.667,1.88,2.87,,1.929,,1.955,,,,,,,,,,, -"Oct 01, 2012",2.195,2.897,3.027,2.83,2.655,3.041,3.108,3.377,3.162,2.922,3.091,3.043,3.377,2.828,2.794,2.72,,,2.66,2.911,1.654,,1.826,1.356,,2.045,2.022,1.5,1.594,1.316,1.37,2.099,,1.397,,1.463,,,,,,,,,,, -"Oct 08, 2012",2.2,2.914,3.045,2.836,2.709,3.111,3.124,3.358,3.139,2.967,3.028,3.144,3.468,2.841,2.851,2.684,,,2.632,2.85,1.648,,1.833,1.359,,2.034,1.944,1.505,1.605,1.328,1.374,2.092,,1.395,,1.479,,,,,,,,,,, -"Oct 15, 2012",2.204,2.907,3.031,2.849,2.703,3.096,3.109,3.354,3.096,2.956,3.054,3.078,3.485,2.811,2.859,2.691,,,2.635,2.867,1.661,,1.857,1.364,,2.014,1.956,1.533,1.622,1.347,1.439,2.098,,1.414,,1.473,,,,,,,,,,, -"Oct 22, 2012",2.21,2.914,3.04,2.83,2.723,3.097,3.119,3.312,3.14,2.967,3.056,3.081,3.508,2.818,2.873,2.686,,,2.623,2.885,1.667,,1.834,1.387,,1.996,1.953,1.532,1.625,1.354,1.447,2.117,,1.424,,1.491,,,,,,,,,,, -"Oct 29, 2012",2.216,2.912,3.042,2.808,2.729,3.118,3.113,3.28,3.176,2.952,3.067,3.117,3.439,2.825,2.839,2.708,,,2.654,2.879,1.679,,1.86,1.395,,2.03,1.952,1.547,1.63,1.355,1.445,2.131,,1.43,,1.518,,,,,,,,,,, -"Nov 05, 2012",2.243,2.941,3.048,2.819,2.73,3.085,3.119,3.358,3.171,3.006,3.063,3.136,3.451,2.829,2.973,2.707,,,2.651,2.886,1.704,,1.957,1.404,,2.04,1.997,1.556,1.65,1.358,1.459,2.17,,1.432,,1.526,,,,,,,,,,, -"Nov 12, 2012",2.236,2.934,3.054,2.82,2.717,3.101,3.12,3.405,3.18,2.972,3.105,3.133,3.32,2.833,2.917,2.742,,,2.694,2.892,1.698,,1.829,1.401,,2.062,2,1.556,1.658,1.361,1.462,2.197,,1.43,,1.523,,,,,,,,,,, -"Nov 19, 2012",2.239,2.932,3.051,2.814,2.731,3.092,3.105,3.365,3.211,2.967,3.118,3.163,3.331,2.841,2.882,2.747,,,2.698,2.902,1.704,,1.836,1.412,,2.077,2.011,1.562,1.665,1.348,1.452,2.218,,1.438,,1.51,,,,,,,,,,, -"Nov 26, 2012",2.244,2.935,3.067,2.809,2.737,3.14,3.106,3.399,3.25,2.965,3.123,3.136,3.305,2.843,2.892,2.75,,,2.706,2.888,1.711,,1.853,1.409,,2.073,2.01,1.568,1.666,1.365,1.461,2.238,,1.449,,1.527,,,,,,,,,,, -"Dec 03, 2012",2.243,2.936,3.063,2.801,2.726,3.138,3.109,3.336,3.273,2.967,3.11,3.144,3.294,2.853,2.891,2.752,,,2.708,2.892,1.708,,1.888,1.413,,2.081,1.976,1.569,1.671,1.33,1.465,2.228,,1.436,,1.524,,,,,,,,,,, -"Dec 10, 2012",2.247,2.936,3.064,2.803,2.73,3.135,3.118,3.345,3.251,2.966,3.109,3.157,3.294,2.855,2.882,2.754,,,2.708,2.9,1.715,,1.903,1.405,,2.078,2.004,1.572,1.667,1.33,1.458,2.255,,1.429,,1.531,,,,,,,,,,, -"Dec 17, 2012",2.243,2.93,3.063,2.799,2.703,3.128,3.125,3.368,3.254,2.958,3.065,3.145,3.296,2.852,2.872,2.747,,,2.708,2.869,1.713,,1.899,1.405,,2.095,2.015,1.573,1.654,1.324,1.472,2.245,,1.427,,1.517,,,,,,,,,,, -"Dec 24, 2012",2.248,2.933,3.092,2.812,2.653,3.139,3.166,3.515,3.299,2.95,3.005,3.142,3.254,2.853,2.873,2.749,,,2.706,2.883,1.72,,1.92,1.421,,2.07,2.009,1.581,1.66,1.332,1.456,2.261,,1.44,,1.527,,,,,,,,,,, -"Dec 31, 2012",2.262,2.951,3.114,2.831,2.687,3.179,3.146,3.595,3.358,2.954,3.024,3.144,3.287,2.853,2.869,2.788,,,2.756,2.89,1.73,,1.913,1.421,,2.109,2.028,1.585,1.674,1.335,1.461,2.29,,1.442,,1.529,,,,,,,,,,, -"Jan 07, 2013",2.267,2.95,3.113,2.834,2.699,3.183,3.16,3.474,3.372,2.975,3.009,3.123,3.377,2.87,2.887,2.744,,,2.7,2.885,1.74,,1.925,1.423,,2.138,2.052,1.592,1.699,1.332,1.474,2.29,,1.452,,1.533,,,,,,,,,,, -"Jan 14, 2013",2.268,2.955,3.116,2.844,2.723,3.175,3.165,3.445,3.37,2.978,3.016,3.15,3.324,2.872,2.903,2.755,,,2.706,2.909,1.738,,1.958,1.386,,2.113,2.064,1.592,1.705,1.338,1.472,2.292,,1.454,,1.528,,,,,,,,,,, -"Jan 21, 2013",2.283,2.968,3.131,2.903,2.726,3.187,3.174,3.484,3.379,2.983,3.003,3.144,3.325,2.882,2.911,2.78,,,2.744,2.894,1.754,,1.956,1.39,,2.131,2.084,1.607,1.715,1.334,1.482,2.355,,1.471,,1.541,,,,,,,,,,, -"Jan 28, 2013",2.297,2.98,3.167,2.898,2.725,3.193,3.196,3.56,3.506,2.995,3.017,3.155,3.364,2.891,2.916,2.77,,,2.73,2.898,1.769,,1.954,1.404,,2.21,2.099,1.622,1.717,1.336,1.509,2.352,,1.484,,1.565,,,,,,,,,,, -"Feb 04, 2013",2.306,2.994,3.169,2.904,2.744,3.207,3.22,3.503,3.464,3.002,3.016,3.146,3.323,2.91,2.933,2.809,,,2.778,2.906,1.776,,1.945,1.41,,2.189,2.112,1.624,1.728,1.352,1.544,2.381,,1.482,,1.561,,,,,,,,,,, -"Feb 11, 2013",2.309,2.996,3.18,2.902,2.748,3.195,3.235,3.54,3.48,3.002,3.035,3.161,3.336,2.902,2.931,2.806,,,2.777,2.898,1.779,,1.938,1.408,,2.197,2.119,1.63,1.721,1.346,1.556,2.403,,1.488,,1.561,,,,,,,,,,, -"Feb 18, 2013",2.314,3.005,3.198,2.872,2.767,3.21,3.244,3.534,3.559,3.02,3.018,3.164,3.37,2.92,2.951,2.79,,,2.753,2.909,1.781,,1.946,1.406,,2.198,2.131,1.634,1.727,1.357,1.549,2.397,,1.481,,1.556,,,,,,,,,,, -"Feb 25, 2013",2.319,3.01,3.206,2.871,2.771,3.211,3.249,3.54,3.589,3.021,3.017,3.162,3.377,2.931,2.942,2.798,,,2.763,2.909,1.785,,1.951,1.406,,2.194,2.139,1.636,1.719,1.358,1.556,2.415,,1.481,,1.567,,,,,,,,,,, -"Mar 04, 2013",2.317,3.003,3.194,2.866,2.761,3.208,3.24,3.515,3.57,3.013,3.024,3.161,3.355,2.928,2.929,2.799,,,2.768,2.899,1.788,,1.964,1.405,,2.177,2.144,1.635,1.729,1.353,1.556,2.43,,1.48,,1.566,,,,,,,,,,, -"Mar 11, 2013",2.317,3.007,3.191,2.877,2.766,3.206,3.239,3.511,3.546,3.02,3.035,3.163,3.359,2.933,2.94,2.804,,,2.769,2.913,1.785,,1.955,1.397,,2.186,2.143,1.625,1.722,1.365,1.556,2.428,,1.465,,1.57,,,,,,,,,,, -"Mar 18, 2013",2.311,2.997,3.169,2.864,2.748,3.205,3.203,3.514,3.515,3.013,3.039,3.161,3.337,2.935,2.927,2.799,,,2.768,2.898,1.782,,1.954,1.398,,2.186,2.131,1.628,1.719,1.36,1.559,2.433,,1.458,,1.556,,,,,,,,,,, -"Oct 07, 2013",2.358,2.999,3.032,2.961,2.678,3.137,3.027,3.547,3.227,2.997,2.985,3.164,3.474,2.864,2.931,2.971,,,2.937,3.068,1.835,,2.057,1.527,,2.119,2.062,1.675,1.796,1.54,1.563,2.344,,1.582,,1.675,,,,,,,,,,, -"Oct 14, 2013",2.337,2.965,3.028,2.878,2.675,3.088,3.016,3.493,3.331,2.981,3.048,3.215,3.467,2.84,2.893,2.871,,,2.897,2.796,1.826,,2.063,1.525,,2.056,2.024,1.671,1.743,1.543,1.583,2.364,,1.577,,1.687,,,,,,,,,,, -"Oct 21, 2013",2.377,3.003,3.024,2.937,2.694,3.138,3.005,3.57,3.204,3.038,3.02,3.277,3.586,2.855,2.98,2.908,,,2.869,3.018,1.867,,2.136,1.556,,2.119,2.101,1.692,1.829,1.537,1.593,2.391,,1.606,,1.697,,,,,,,,,,, -"Oct 28, 2013",2.406,3.013,3.012,2.96,2.693,3.114,2.979,3.577,3.185,3.059,3.043,3.25,3.606,2.912,2.979,2.92,,,2.882,3.029,1.911,,2.176,1.586,,2.147,2.127,1.774,1.842,1.567,1.71,2.441,,1.677,,1.738,,,,,,,,,,, -"Nov 04, 2013",2.45,3.044,3.033,2.994,2.729,3.129,2.987,3.574,3.218,3.095,3.086,3.293,3.616,2.933,3.035,2.948,,,2.912,3.051,1.966,,2.256,1.621,,2.207,2.15,1.846,1.901,1.596,1.843,2.512,,1.72,,1.761,,,,,,,,,,, -"Nov 11, 2013",2.482,3.073,3.047,3.038,2.752,3.163,2.983,3.565,3.235,3.122,3.069,3.327,3.603,3.008,3.033,2.999,,,2.967,3.088,2,,2.305,1.651,,2.207,2.163,1.894,1.901,1.646,1.947,2.549,,1.792,,1.797,,,,,,,,,,, -"Nov 18, 2013",2.506,3.09,3.064,3.034,2.786,3.137,2.984,3.6,3.299,3.145,3.088,3.306,3.591,3.049,3.061,3.001,,,2.955,3.129,2.03,,2.341,1.658,,2.272,2.196,1.945,1.915,1.662,1.957,2.581,,1.796,,1.835,,,,,,,,,,, -"Nov 25, 2013",2.542,3.141,3.121,3.083,2.804,3.219,3.054,3.678,3.357,3.204,3.114,3.337,3.642,3.121,3.124,3.031,,,2.975,3.188,2.053,,2.42,1.683,,2.237,2.213,1.973,1.932,1.67,1.961,2.628,,1.803,,1.845,,,,,,,,,,, -"Dec 02, 2013",2.566,3.165,3.172,3.11,2.837,3.233,3.136,3.709,3.418,3.213,3.158,3.363,3.653,3.154,3.101,3.059,,,2.998,3.233,2.077,,2.455,1.689,,2.256,2.216,1.98,1.948,1.682,1.955,2.762,,1.801,,1.857,,,,,,,,,,, -"Dec 09, 2013",2.621,3.246,3.257,3.189,2.922,3.331,3.212,3.773,3.523,3.307,3.21,3.455,3.783,3.237,3.199,3.109,,,3.051,3.273,2.111,,2.518,1.749,,2.3,2.263,2.001,2.014,1.727,1.974,2.705,,1.857,,1.894,,,,,,,,,,, -"Dec 16, 2013",2.712,3.315,3.312,3.26,2.997,3.368,3.256,3.831,3.58,3.383,3.209,3.505,3.853,3.335,3.274,3.177,,,3.116,3.351,2.221,,2.662,1.877,,2.376,2.359,2.13,2.126,1.844,2.084,2.754,,1.958,,2.024,,,,,,,,,,, -"Dec 23, 2013",2.76,3.342,3.37,3.324,3.107,3.393,3.277,3.898,3.661,3.402,3.263,3.512,3.845,3.366,3.289,3.192,,,3.137,3.346,2.285,,2.761,1.903,,2.425,2.46,2.191,2.151,1.876,2.192,2.807,,2.014,,2.112,,,,,,,,,,, -"Dec 30, 2013",2.802,3.387,3.461,3.352,3.121,3.467,3.454,3.935,3.757,3.447,3.374,3.539,3.932,3.394,3.332,3.195,,,3.136,3.362,2.324,,2.797,1.929,,2.455,2.516,2.228,2.21,1.89,2.205,2.858,,2.027,,2.159,,,,,,,,,,, -"Jan 06, 2014",2.829,3.399,3.483,3.354,3.181,3.477,3.467,3.99,3.753,3.46,3.382,3.557,3.967,3.412,3.333,3.193,,,3.142,3.337,2.364,,2.806,1.96,,2.517,2.532,2.322,2.251,1.911,2.263,2.89,,2.065,,2.193,,,,,,,,,,, -"Jan 13, 2014",2.861,3.432,3.531,3.397,3.273,3.536,3.501,4.016,3.776,3.486,3.395,3.596,3.931,3.47,3.347,3.229,,,3.18,3.366,2.396,,2.849,1.997,,2.54,2.575,2.33,2.265,1.92,2.273,2.95,,2.081,,2.24,,,,,,,,,,, -"Jan 20, 2014",2.96,3.477,3.569,3.528,3.302,3.552,3.539,4.037,3.798,3.54,3.422,3.603,3.984,3.525,3.415,3.262,,,3.221,3.378,2.539,,2.939,2.584,,2.577,2.638,2.439,2.433,2.005,2.322,2.999,,2.088,,2.276,,,,,,,,,,, -"Jan 27, 2014",4.01,3.783,3.73,3.653,3.469,3.695,3.672,4.207,4.037,3.836,3.734,3.865,4.235,3.797,3.755,3.722,,,3.711,3.753,4.195,,4.215,4.709,,3.785,3.611,4.61,3.997,4.073,4.569,3.731,,4.107,,4.49,,,,,,,,,,, -"Feb 03, 2014",3.891,3.97,3.832,3.792,3.558,3.816,3.706,4.399,4.21,3.99,3.823,3.956,4.451,3.961,3.904,4.06,,,4.067,4.039,3.827,,4.265,3.59,,3.852,3.766,3.967,3.672,3.357,3.839,3.908,,3.664,,3.945,,,,,,,,,,, -"Feb 10, 2014",3.764,4.02,3.849,3.918,3.607,3.794,3.728,4.456,4.134,4.044,3.79,4.055,4.433,4.004,3.991,4.131,,,4.153,4.069,3.555,,4.043,3.22,,3.677,3.667,3.48,3.484,2.995,3.283,3.808,,3.408,,3.686,,,,,,,,,,, -"Feb 17, 2014",3.637,4.039,3.955,3.87,3.669,3.925,3.835,4.538,4.362,4.091,3.927,4.134,4.46,4.042,4.032,4.014,,,3.995,4.066,3.31,,3.753,2.811,,3.584,3.692,3.264,3.131,2.601,2.905,3.733,,3.019,,3.344,,,,,,,,,,, -"Feb 24, 2014",3.477,3.988,3.96,3.902,3.637,3.974,3.827,4.615,4.361,4.086,3.911,4.144,4.436,4.06,4.01,3.815,,,3.779,3.915,3.06,,3.472,2.591,,3.417,3.359,2.985,2.96,2.393,2.618,3.615,,2.797,,2.967,,,,,,,,,,, -"Mar 03, 2014",3.301,3.94,3.964,3.902,3.624,3.992,3.835,4.66,4.351,4.063,3.91,4.125,4.431,4.053,3.962,3.664,,,3.614,3.806,2.781,,3.248,2.149,,2.942,3.247,2.658,2.657,2.048,2.333,3.489,,2.751,,2.65,,,,,,,,,,, -"Mar 10, 2014",3.165,3.875,3.946,3.776,3.591,3.99,3.84,4.66,4.344,4.016,3.874,4.098,4.362,4.014,3.908,3.519,,,3.431,3.767,2.586,,3.011,1.974,,2.937,3.006,2.416,2.424,1.891,2.2,3.365,,2.582,,2.384,,,,,,,,,,, -"Mar 17, 2014",3.079,3.816,3.91,3.715,3.572,3.992,3.788,4.563,4.325,3.965,3.821,4.054,4.294,3.968,3.857,3.421,,,3.321,3.705,2.479,,2.922,1.889,,2.872,2.872,2.284,2.311,1.875,2.087,3.233,,2.536,,2.254,,,,,,,,,,, -"Oct 13, 2014",2.376,3.077,3.106,3.062,2.78,3.326,3.205,3.632,3.031,3.112,3.19,3.333,3.754,3.097,2.887,3.021,4.228,2.391,2.728,2.963,1.894,1.76,1.959,1.621,1.74,2.198,2.071,1.842,1.847,1.596,1.751,2.246,1.963,1.666,2.63,1.823,2.468,2.662,2.207,2.412,2.489,1.938,2.068,2.158,1.72,1.866, -"Oct 20, 2014",2.387,3.062,3.123,3.069,2.77,3.325,3.166,3.776,3.163,3.046,3.173,3.19,3.706,2.934,2.924,3.045,4.325,2.331,2.817,2.83,1.908,1.743,2.008,1.614,1.734,2.215,2.103,1.85,1.865,1.571,1.749,2.263,2.001,1.659,2.843,1.822,2.487,2.687,2.218,2.451,2.494,2.088,2.09,2.281,2.022,2.068, -"Oct 27, 2014",2.413,3.079,3.109,2.941,2.771,3.294,3.187,3.753,3.161,3.02,3.174,3.152,3.603,2.905,2.92,3.132,4.519,2.348,2.865,2.961,1.939,1.802,2.041,1.618,1.767,2.202,2.127,1.853,1.901,1.561,1.749,2.392,2.001,1.672,2.879,1.855,2.51,2.72,2.297,2.455,2.5,2.137,2.17,2.362,2.034,2.083, -"Nov 03, 2014",2.401,3.029,3.098,2.952,2.771,3.239,3.244,3.687,3.076,2.93,3.124,3.09,3.559,2.759,2.86,3.106,4.454,2.375,2.859,2.866,1.947,1.819,2.068,1.617,1.745,2.222,2.113,1.853,1.885,1.565,1.753,2.428,1.98,1.673,2.946,1.87,2.517,2.724,2.278,2.488,2.503,2.169,2.154,2.319,2.082,2.288, -"Nov 10, 2014",2.411,3.055,3.106,2.961,2.766,3.191,3.284,3.643,3.128,2.989,3.103,3.051,3.516,2.853,2.947,3.105,4.463,2.368,2.846,2.891,1.95,1.816,2.065,1.617,1.747,2.214,2.137,1.865,1.88,1.566,1.76,2.435,1.977,1.67,2.931,1.874,2.509,2.761,2.281,2.492,2.453,2.146,2.189,2.301,2.026,2.166, -"Nov 17, 2014",2.404,3.04,3.093,2.964,2.766,3.195,3.298,3.544,3.049,2.992,3.13,3.05,3.512,2.862,2.945,3.066,4.406,2.335,2.824,2.822,1.944,1.804,2.077,1.614,1.746,2.214,2.147,1.853,1.881,1.571,1.758,2.364,1.992,1.679,2.925,1.881,2.516,2.762,2.298,2.503,2.458,2.172,2.199,2.361,2.05,2.215, -"Nov 24, 2014",2.401,3.023,3.089,2.966,2.764,3.172,3.258,3.497,3.127,2.953,3.079,3.071,3.518,2.849,2.853,3.068,4.507,2.321,2.791,2.805,1.948,1.815,2.091,1.618,1.745,2.175,2.129,1.866,1.884,1.552,1.748,2.434,2.007,1.669,2.948,1.858,2.52,2.763,2.305,2.529,2.446,2.195,2.201,2.362,2.102,2.251, -"Dec 01, 2014",2.407,3.042,3.108,2.999,2.771,3.164,3.311,3.441,3.15,2.987,3.123,3.053,3.47,2.841,2.963,3.071,4.491,2.302,2.8,2.847,1.949,1.8,2.088,1.616,1.74,2.173,2.113,1.87,1.89,1.54,1.743,2.45,1.989,1.676,3.042,1.867,2.498,2.718,2.28,2.515,2.435,2.188,2.199,2.393,2.087,2.214, -"Dec 08, 2014",2.386,2.998,3.077,2.871,2.762,3.187,3.257,3.363,3.136,2.941,3.116,3.031,3.488,2.842,2.842,3.022,4.502,2.305,2.678,2.835,1.94,1.794,2.087,1.609,1.741,2.151,2.131,1.882,1.893,1.49,1.716,2.42,1.993,1.659,2.997,1.841,2.488,2.729,2.271,2.491,2.422,2.203,2.192,2.423,2.041,2.428, -"Dec 15, 2014",2.382,2.988,3.071,2.888,2.758,3.177,3.272,3.362,3.083,2.922,3.1,2.98,3.449,2.786,2.872,3.02,4.409,2.296,2.736,2.812,1.94,1.812,2.101,1.586,1.736,2.138,2.152,1.874,1.895,1.453,1.702,2.411,1.98,1.672,2.995,1.853,2.485,2.737,2.281,2.499,2.397,2.208,2.17,2.475,2.1,2.347, -"Dec 22, 2014",2.38,2.995,3.031,2.718,2.715,3.146,3.248,3.384,3.069,2.945,3.094,2.966,3.443,2.806,2.919,3.034,4.403,2.291,2.721,2.958,1.931,1.827,2.089,1.57,1.714,2.135,2.132,1.841,1.906,1.428,1.686,2.379,1.974,1.659,3.097,1.836,2.489,2.762,2.266,2.484,2.409,2.196,2.17,2.451,2.107,2.259, -"Dec 29, 2014",2.368,2.966,3.037,2.789,2.703,3.142,3.246,3.385,3.087,2.893,3.079,2.956,3.414,2.792,2.808,3.011,4.494,2.298,2.692,2.75,1.928,1.824,2.083,1.558,1.705,2.129,2.185,1.841,1.883,1.392,1.655,2.405,1.935,1.649,3.107,1.818,2.485,2.756,2.288,2.498,2.384,2.197,2.167,2.405,2.075,2.395, -"Jan 05, 2015",2.358,2.947,3.017,2.714,2.688,3.133,3.244,3.376,3.045,2.871,3.051,2.915,3.384,2.786,2.779,2.997,4.365,2.28,2.693,2.864,1.92,1.814,2.08,1.565,1.684,2.143,2.153,1.844,1.87,1.351,1.646,2.392,1.914,1.645,3.127,1.813,2.503,2.813,2.27,2.52,2.39,2.197,2.172,2.407,2.037,2.467, -"Jan 12, 2015",2.348,2.934,3,2.768,2.704,3.127,3.209,3.351,2.963,2.853,3.008,2.895,3.385,2.762,2.765,2.992,4.41,2.289,2.66,2.845,1.916,1.805,2.091,1.558,1.678,2.147,2.178,1.839,1.871,1.307,1.639,2.386,1.894,1.632,3.107,1.809,2.473,2.767,2.243,2.496,2.365,2.173,2.172,2.414,2.067,2.211, -"Jan 19, 2015",2.386,3.05,3.111,2.83,2.704,3.179,3.231,3.501,3.448,2.994,3.099,3.034,3.447,2.939,2.899,3.081,4.3,2.341,2.831,3.041,1.909,1.79,2.103,1.553,1.65,2.162,2.179,1.821,1.865,1.299,1.576,2.388,1.853,1.633,3.168,1.8,2.45,2.749,2.228,2.474,2.333,2.192,2.154,2.477,1.985,2.551, -"Jan 26, 2015",2.376,3.029,3.106,2.797,2.694,3.164,3.252,3.51,3.427,2.976,3.072,3.015,3.455,2.913,2.883,3.048,4.322,2.3,2.813,2.902,1.907,1.8,2.113,1.551,1.645,2.172,2.154,1.818,1.861,1.281,1.586,2.416,1.832,1.614,3.17,1.777,2.443,2.754,2.2,2.458,2.334,2.179,2.119,2.488,1.971,2.583, -"Feb 02, 2015",2.368,3.029,3.109,2.866,2.695,3.164,3.256,3.489,3.408,2.967,3.059,3.011,3.445,2.911,2.868,3.058,4.363,2.284,2.809,2.939,1.893,1.785,2.101,1.548,1.62,2.175,2.173,1.804,1.865,1.282,1.539,2.417,1.823,1.614,3.11,1.709,2.439,2.756,2.195,2.469,2.317,2.158,2.101,2.489,1.953,2.528, -"Feb 09, 2015",2.362,3.022,3.1,2.812,2.7,3.114,3.26,3.486,3.423,2.978,3.075,3.004,3.49,2.898,2.896,3.031,4.311,2.278,2.783,2.917,1.889,1.808,2.09,1.544,1.604,2.148,2.184,1.804,1.848,1.278,1.519,2.407,1.828,1.555,3.141,1.683,2.444,2.778,2.199,2.467,2.317,2.137,2.097,2.42,1.923,2.518, -"Feb 16, 2015",2.356,3.021,3.094,2.794,2.677,3.13,3.25,3.475,3.43,2.98,3.066,3.006,3.477,2.927,2.877,3.03,4.324,2.278,2.773,2.924,1.88,1.786,2.062,1.532,1.604,2.13,2.181,1.818,1.844,1.286,1.521,2.362,1.834,1.537,3.144,1.682,2.445,2.767,2.196,2.473,2.323,2.116,2.065,2.435,1.91,2.479, -"Feb 23, 2015",2.353,3.015,3.111,2.86,2.688,3.148,3.251,3.5,3.45,2.944,3.079,3.004,3.492,2.855,2.847,3.045,4.364,2.273,2.778,2.952,1.877,1.793,2.063,1.523,1.592,2.152,2.153,1.812,1.836,1.286,1.514,2.381,1.829,1.529,3.156,1.675,2.449,2.758,2.209,2.466,2.34,2.12,2.095,2.508,1.899,2.382, -"Mar 02, 2015",2.37,3.065,3.121,2.876,2.71,3.148,3.265,3.514,3.447,3.055,3.102,3.008,3.531,2.937,3.047,3.047,4.391,2.271,2.775,2.937,1.875,1.795,2.057,1.517,1.596,2.137,2.186,1.789,1.835,1.286,1.493,2.397,1.831,1.481,3.132,1.681,2.459,2.774,2.226,2.487,2.334,2.089,2.074,2.445,1.844,2.402, -"Mar 09, 2015",2.359,3.061,3.117,2.844,2.7,3.153,3.251,3.579,3.454,3.056,3.115,3.017,3.527,2.923,3.06,3.037,4.364,2.268,2.765,2.944,1.859,1.769,2.052,1.493,1.582,2.122,2.161,1.785,1.832,1.282,1.482,2.381,1.837,1.457,3.151,1.636,2.45,2.74,2.227,2.487,2.332,2.072,2.066,2.413,1.823,2.384, -"Mar 16, 2015",2.342,3.042,3.094,2.836,2.7,3.142,3.197,3.558,3.426,3.045,3.097,3.011,3.496,2.945,3.021,3.009,4.273,2.262,2.758,2.918,1.848,1.764,2.027,1.462,1.572,2.1,2.171,1.784,1.827,1.266,1.481,2.381,1.83,1.45,3.085,1.612,2.441,2.712,2.23,2.476,2.33,2.022,2.021,2.261,1.759,2.443, -"Mar 23, 2015",2.323,3.026,3.077,2.823,2.686,3.125,3.177,3.547,3.407,3.031,3.087,2.999,3.491,2.92,3.014,2.993,4.252,2.205,2.753,2.938,1.824,1.728,1.981,1.451,1.551,2.061,2.167,1.77,1.817,1.244,1.461,2.355,1.823,1.41,3.022,1.587,2.425,2.709,2.184,2.448,2.328,1.998,2.032,2.253,1.735,2.294, -"Mar 30, 2015",2.292,2.987,3.047,2.796,2.683,3.105,3.139,3.526,3.34,2.975,3.055,2.99,3.469,2.835,2.963,2.969,4.282,2.201,2.691,2.91,1.8,1.687,1.937,1.417,1.533,2.042,2.161,1.743,1.786,1.231,1.429,2.342,1.814,1.395,2.971,1.582,2.397,2.673,2.144,2.439,2.297,1.973,2.001,2.271,1.681,2.319, -"Oct 05, 2015",1.98,2.724,2.781,2.643,2.153,2.89,2.99,3.055,3.182,2.57,2.66,2.542,3.324,2.338,2.625,2.872,4.703,1.948,2.504,2.723,1.415,1.334,1.522,0.986,1.145,1.64,1.752,1.239,1.384,1.028,1.017,1.947,1.454,1.024,3.194,1.149,2.173,2.49,1.873,2.113,2.139,1.818,1.783,2.291,1.475,2.311, -"Oct 12, 2015",1.894,2.586,2.608,2.509,2.159,2.804,2.669,3.036,2.844,2.512,2.662,2.564,3.089,2.297,2.562,2.66,4.291,1.904,2.29,2.544,1.367,1.305,1.46,0.989,1.157,1.624,1.608,1.273,1.302,1.031,1.011,1.876,1.447,1.046,2.671,1.149,2.116,2.352,1.833,2.09,2.102,1.7,1.649,1.96,1.526,2.041, -"Oct 19, 2015",1.893,2.569,2.604,2.547,2.148,2.79,2.67,2.959,2.841,2.471,2.658,2.577,2.984,2.261,2.512,2.662,4.279,1.923,2.292,2.541,1.376,1.297,1.452,0.987,1.153,1.632,1.651,1.277,1.32,1.043,1.019,1.888,1.449,1.061,2.672,1.165,2.106,2.364,1.804,2.048,2.11,1.732,1.64,1.994,1.594,2.12, -"Oct 26, 2015",1.909,2.586,2.606,2.498,2.167,2.748,2.703,2.962,2.859,2.509,2.68,2.601,3.107,2.287,2.547,2.664,4.302,1.935,2.282,2.537,1.389,1.289,1.504,0.993,1.154,1.594,1.644,1.285,1.316,1.043,1.03,1.973,1.469,1.071,2.812,1.168,2.126,2.379,1.872,2.057,2.12,1.771,1.681,2.071,1.615,2.162, -"Nov 02, 2015",1.924,2.589,2.6,2.497,2.17,2.716,2.707,2.999,2.848,2.529,2.683,2.592,3.089,2.323,2.569,2.653,4.293,1.941,2.24,2.577,1.414,1.294,1.531,0.992,1.156,1.659,1.738,1.293,1.305,1.041,1.043,2.089,1.501,1.068,2.819,1.164,2.131,2.421,1.88,2.039,2.117,1.773,1.7,2.07,1.59,2.172, -"Nov 09, 2015",1.919,2.596,2.6,2.439,2.156,2.716,2.725,2.984,2.875,2.54,2.686,2.615,3.117,2.325,2.584,2.659,4.281,1.924,2.263,2.59,1.406,1.275,1.544,0.997,1.157,1.686,1.715,1.293,1.308,1.044,1.042,1.983,1.508,1.069,2.826,1.176,2.128,2.415,1.884,2.019,2.125,1.73,1.678,2.076,1.482,2.172, -"Nov 16, 2015",1.938,2.632,2.635,2.487,2.145,2.772,2.79,2.981,2.896,2.572,2.749,2.598,3.166,2.349,2.63,2.702,4.358,1.932,2.324,2.593,1.413,1.292,1.549,0.997,1.162,1.661,1.723,1.289,1.333,1.048,1.041,2.009,1.472,1.071,2.897,1.178,2.129,2.451,1.807,2.039,2.123,1.751,1.732,2.018,1.493,2.178, -"Nov 23, 2015",1.952,2.656,2.658,2.497,2.161,2.795,2.804,3.081,2.939,2.589,2.739,2.628,3.103,2.371,2.66,2.735,4.436,1.967,2.307,2.688,1.419,1.296,1.567,0.995,1.152,1.676,1.71,1.284,1.325,1.052,1.04,2.017,1.495,1.072,3.006,1.193,2.153,2.506,1.859,2.046,2.127,1.752,1.739,1.992,1.486,2.196, -"Nov 30, 2015",1.963,2.669,2.659,2.48,2.17,2.799,2.77,3.122,2.982,2.614,2.747,2.629,3.191,2.401,2.674,2.738,4.442,1.975,2.31,2.685,1.432,1.309,1.575,0.995,1.152,1.701,1.735,1.303,1.331,1.044,1.05,2.05,1.506,1.075,3.016,1.2,2.152,2.514,1.861,2.029,2.128,1.762,1.749,2.003,1.488,2.229, -"Dec 07, 2015",1.969,2.671,2.671,2.47,2.173,2.758,2.804,3.237,3.036,2.617,2.753,2.633,3.207,2.408,2.669,2.734,4.443,1.988,2.3,2.665,1.439,1.309,1.603,0.992,1.145,1.735,1.75,1.305,1.344,1.044,1.044,2.062,1.51,1.072,3.024,1.209,2.155,2.523,1.878,2.035,2.12,1.787,1.767,2.028,1.517,2.267, -"Dec 14, 2015",1.979,2.684,2.652,2.511,2.186,2.732,2.825,3.204,2.892,2.646,2.755,2.651,3.238,2.41,2.732,2.749,4.531,2.014,2.271,2.684,1.443,1.319,1.599,0.991,1.142,1.735,1.745,1.309,1.371,1.032,1.034,2.041,1.527,1.074,3.066,1.222,2.173,2.533,1.934,2.045,2.131,1.815,1.772,2.068,1.569,2.304, -"Dec 21, 2015",1.988,2.7,2.67,2.48,2.189,2.775,2.812,3.268,2.968,2.642,2.787,2.654,3.244,2.435,2.689,2.786,4.545,2.035,2.325,2.727,1.45,1.329,1.639,0.99,1.142,1.791,1.74,1.302,1.378,1.034,1.007,2.079,1.525,1.077,3.089,1.208,2.183,2.557,1.962,2.045,2.13,1.814,1.776,2.061,1.565,2.299, -"Dec 28, 2015",1.996,2.713,2.692,2.531,2.201,2.775,2.848,3.314,2.985,2.66,2.773,2.653,3.279,2.437,2.729,2.789,4.545,2.026,2.348,2.705,1.454,1.312,1.649,1.008,1.157,1.776,1.751,1.299,1.364,1.034,1.011,2.13,1.533,1.077,3.089,1.214,2.18,2.563,1.96,2.046,2.119,1.826,1.786,2.082,1.578,2.304, -"Jan 04, 2016",2.001,2.716,2.711,2.491,2.204,2.829,2.861,3.325,3.028,2.64,2.826,2.665,3.306,2.417,2.68,2.807,4.637,2.053,2.331,2.707,1.459,1.324,1.681,1.015,1.156,1.792,1.75,1.308,1.373,1.029,1.011,2.086,1.526,1.075,3.162,1.214,2.201,2.613,1.986,2.037,2.14,1.833,1.805,2.099,1.569,2.304, -"Jan 11, 2016",2.014,2.733,2.723,2.473,2.217,2.862,2.868,3.346,3.037,2.666,2.822,2.678,3.308,2.434,2.727,2.818,4.643,2.061,2.348,2.711,1.469,1.326,1.695,1.01,1.152,1.828,1.761,1.315,1.399,1.033,1.009,2.128,1.525,1.077,3.172,1.213,2.211,2.623,2.004,2.053,2.143,1.84,1.809,2.154,1.567,2.301, -"Jan 18, 2016",2.02,2.736,2.74,2.472,2.204,2.868,2.894,3.343,3.107,2.666,2.827,2.681,3.304,2.475,2.685,2.815,4.653,2.053,2.342,2.707,1.478,1.344,1.726,1.009,1.147,1.833,1.764,1.323,1.407,1.019,1.009,2.156,1.526,1.076,3.181,1.221,2.212,2.639,2.015,2.054,2.127,1.845,1.814,2.154,1.577,2.298, -"Jan 25, 2016",2.019,2.737,2.738,2.491,2.207,2.875,2.897,3.338,3.068,2.669,2.845,2.686,3.278,2.46,2.712,2.815,4.639,2.054,2.345,2.715,1.476,1.342,1.743,1,1.162,1.84,1.747,1.323,1.413,1.009,1.009,2.177,1.537,1.077,3.178,1.195,2.203,2.63,2.036,2.039,2.11,1.853,1.813,2.164,1.599,2.295, -"Feb 01, 2016",2.022,2.75,2.746,2.467,2.217,2.868,2.941,3.349,3.054,2.691,2.842,2.688,3.285,2.458,2.77,2.82,4.64,2.055,2.357,2.717,1.473,1.351,1.75,1.001,1.17,1.825,1.757,1.315,1.396,1.006,1.008,2.155,1.536,1.068,3.185,1.188,2.188,2.63,1.952,2.033,2.108,1.861,1.826,2.168,1.602,2.304, -"Feb 08, 2016",2.032,2.768,2.76,2.49,2.227,2.862,2.96,3.361,3.084,2.72,2.859,2.742,3.342,2.484,2.791,2.829,4.668,2.072,2.351,2.729,1.483,1.353,1.772,1.011,1.165,1.848,1.777,1.316,1.396,1.002,1.008,2.179,1.548,1.063,3.221,1.19,2.192,2.646,1.962,2.013,2.12,1.826,1.788,2.095,1.571,2.306, -"Feb 15, 2016",2.034,2.768,2.771,2.5,2.231,2.873,2.971,3.455,3.092,2.707,2.862,2.719,3.335,2.503,2.744,2.838,4.72,2.059,2.357,2.718,1.483,1.362,1.778,1.01,1.156,1.858,1.78,1.313,1.395,1.001,1.011,2.193,1.561,1.063,3.086,1.2,2.198,2.642,2.001,1.999,2.132,1.867,1.823,2.148,1.629,2.316, -"Feb 22, 2016",2.028,2.76,2.77,2.535,2.241,2.896,2.941,3.426,3.075,2.695,2.764,2.723,3.327,2.486,2.745,2.829,4.752,2.082,2.357,2.603,1.475,1.352,1.775,1.01,1.149,1.837,1.783,1.27,1.372,0.995,1.008,2.196,1.565,1.063,3.131,1.199,2.205,2.658,2.026,2.002,2.129,1.865,1.821,2.141,1.628,2.311, -"Feb 29, 2016",2.026,2.766,2.793,2.573,2.251,2.917,2.977,3.451,3.085,2.694,2.772,2.725,3.336,2.48,2.745,2.833,4.746,2.081,2.376,2.589,1.469,1.353,1.76,1.01,1.145,1.825,1.779,1.264,1.369,0.983,0.998,2.198,1.569,1.061,3.133,1.17,2.215,2.666,2.02,2.039,2.128,1.837,1.79,2.145,1.58,2.312, -"Mar 07, 2016",2.02,2.761,2.799,2.558,2.249,2.92,2.984,3.505,3.111,2.692,2.757,2.719,3.318,2.498,2.728,2.819,4.687,2.064,2.376,2.597,1.459,1.334,1.743,1.012,1.148,1.821,1.772,1.253,1.376,0.99,1.004,2.178,1.561,1.059,3.044,1.155,2.215,2.678,2.016,2.035,2.124,1.855,1.787,2.209,1.623,2.302, -"Mar 14, 2016",2.022,2.764,2.815,2.588,2.246,2.938,2.963,3.532,3.196,2.7,2.747,2.697,3.333,2.53,2.721,2.808,4.707,2.065,2.359,2.553,1.46,1.341,1.745,1.014,1.159,1.796,1.769,1.255,1.354,1.002,1.006,2.181,1.558,1.068,3.071,1.169,2.217,2.687,1.999,2.035,2.13,1.847,1.752,2.27,1.618,2.313, -"Mar 21, 2016",2.014,2.754,2.822,2.592,2.264,2.927,2.989,3.549,3.181,2.682,2.744,2.698,3.324,2.526,2.678,2.797,4.721,2.063,2.361,2.471,1.453,1.336,1.732,1.015,1.164,1.788,1.726,1.25,1.363,1.002,0.999,2.174,1.549,1.051,3.058,1.17,2.225,2.7,2.007,2.047,2.132,1.824,1.751,2.169,1.583,2.313, -"Mar 28, 2016",2.008,2.748,2.802,2.512,2.261,2.912,2.981,3.516,3.151,2.695,2.763,2.694,3.301,2.517,2.727,2.778,4.716,2.059,2.33,2.446,1.445,1.335,1.721,1.014,1.156,1.781,1.699,1.241,1.358,1.002,0.997,2.172,1.527,1.047,3.08,1.148,2.221,2.696,2.005,2.047,2.126,1.831,1.765,2.178,1.584,2.312, -"Oct 03, 2016",1.984,2.76,2.789,2.698,2.158,2.818,3.063,3.385,3.152,2.658,2.771,2.627,3.206,2.538,2.654,2.862,4.864,1.846,2.418,2.758,1.394,1.337,1.578,0.968,1.155,1.673,1.639,1.205,1.236,1,0.953,2.027,1.406,1.001,3.291,1.146,2.091,2.495,1.776,1.896,2.116,1.893,1.844,2.059,1.675,2.34, -"Oct 10, 2016",2.018,2.801,2.845,2.701,2.227,2.825,3.149,3.395,3.251,2.689,2.817,2.595,3.259,2.559,2.704,2.903,4.896,1.865,2.467,2.82,1.42,1.387,1.645,0.988,1.206,1.732,1.701,1.232,1.3,1.043,0.977,2.068,1.426,1.055,2.763,1.188,2.125,2.548,1.837,1.898,2.149,1.961,1.921,2.178,1.73,2.359, -"Oct 17, 2016",2.053,2.826,2.875,2.742,2.246,2.829,3.186,3.441,3.308,2.734,2.844,2.586,3.264,2.611,2.769,2.902,4.938,1.862,2.429,2.852,1.459,1.417,1.717,1.018,1.204,1.746,1.727,1.296,1.287,1.049,1.006,2.133,1.437,1.084,2.899,1.25,2.149,2.59,1.883,1.911,2.157,2.062,1.993,2.37,1.815,2.509, -"Oct 24, 2016",2.069,2.843,2.902,2.738,2.266,2.9,3.206,3.474,3.316,2.737,2.853,2.613,3.271,2.621,2.758,2.928,4.955,1.872,2.464,2.889,1.474,1.429,1.722,1.032,1.209,1.748,1.721,1.315,1.3,1.06,1.068,2.116,1.471,1.119,2.968,1.284,2.154,2.612,1.854,1.917,2.167,2.088,2.008,2.423,1.847,2.539, -"Oct 31, 2016",2.059,2.827,2.918,2.733,2.292,2.917,3.223,3.47,3.328,2.736,2.844,2.617,3.277,2.61,2.765,2.874,4.657,1.918,2.456,2.892,1.479,1.415,1.73,1.035,1.229,1.743,1.727,1.33,1.291,1.064,1.09,2.156,1.471,1.123,2.903,1.304,2.061,2.213,1.866,1.898,2.171,2.102,2.02,2.425,1.858,2.574, -"Nov 07, 2016",2.064,2.837,2.932,2.776,2.28,2.932,3.231,3.463,3.371,2.779,2.859,2.748,3.366,2.648,2.78,2.845,4.54,1.886,2.447,2.921,1.483,1.432,1.755,1.034,1.222,1.787,1.661,1.333,1.288,1.067,1.085,2.167,1.488,1.134,2.936,1.332,2.063,2.221,1.843,1.906,2.177,2.076,2.032,2.078,1.872,2.608, -"Nov 14, 2016",2.045,2.802,2.905,2.66,2.279,2.886,3.219,3.282,3.385,2.71,2.654,2.714,3.168,2.63,2.697,2.845,4.574,1.916,2.418,2.912,1.487,1.384,1.714,1.04,1.225,1.818,1.668,1.329,1.358,1.069,1.098,2.167,1.487,1.149,2.969,1.364,2.055,2.249,1.836,1.889,2.152,1.921,1.953,2.064,1.543,2.439, -"Nov 21, 2016",2.061,2.821,2.923,2.677,2.291,2.899,3.237,3.296,3.417,2.732,2.645,2.727,3.176,2.647,2.735,2.86,4.642,1.967,2.39,2.916,1.503,1.376,1.775,1.034,1.19,1.872,1.732,1.343,1.345,1.066,1.101,2.207,1.505,1.157,3.064,1.341,2.085,2.308,1.884,1.92,2.152,1.906,1.904,2.08,1.566,2.43, -"Nov 28, 2016",2.077,2.836,2.93,2.688,2.302,2.896,3.262,3.286,3.409,2.756,2.674,2.726,3.187,2.66,2.779,2.87,4.657,2.002,2.443,2.801,1.519,1.383,1.802,1.038,1.194,1.883,1.746,1.353,1.345,1.075,1.105,2.3,1.52,1.159,3.078,1.353,2.097,2.328,1.899,1.933,2.159,1.928,1.919,2.13,1.588,2.452, -"Dec 05, 2016",2.118,2.887,2.974,2.775,2.32,2.908,3.308,3.337,3.501,2.808,2.718,2.753,3.225,2.73,2.824,2.923,4.724,2.045,2.503,2.835,1.551,1.423,1.827,1.053,1.222,1.898,1.781,1.366,1.404,1.101,1.117,2.343,1.532,1.184,3.172,1.391,2.138,2.363,1.978,1.977,2.184,1.983,1.985,2.167,1.634,2.504, -"Dec 12, 2016",2.157,2.917,2.995,2.802,2.356,2.915,3.325,3.365,3.523,2.832,2.75,2.772,3.279,2.756,2.839,2.966,4.75,2.113,2.548,2.863,1.595,1.464,1.909,1.072,1.256,1.955,1.816,1.411,1.459,1.136,1.164,2.38,1.646,1.22,3.235,1.424,2.159,2.382,2.025,1.986,2.203,2.071,2.08,2.262,1.717,2.576, -"Dec 19, 2016",2.188,2.939,3.016,2.812,2.36,2.952,3.351,3.34,3.55,2.871,2.785,2.81,3.355,2.798,2.869,2.969,4.76,2.122,2.535,2.884,1.631,1.498,1.959,1.102,1.277,1.97,1.843,1.441,1.483,1.164,1.256,2.423,1.708,1.273,3.211,1.47,2.183,2.408,2.063,1.999,2.226,2.134,2.118,2.325,1.821,2.642, -"Dec 26, 2016",2.213,2.959,3.028,2.828,2.387,2.956,3.377,3.35,3.526,2.904,2.79,2.829,3.419,2.822,2.911,2.98,4.78,2.141,2.535,2.902,1.661,1.522,2.004,1.121,1.308,2.007,1.873,1.463,1.549,1.177,1.294,2.494,1.671,1.306,3.244,1.476,2.189,2.374,2.026,2.05,2.245,2.185,2.154,2.395,1.901,2.666, -"Jan 02, 2017",2.271,3.012,3.065,2.866,2.441,2.971,3.394,3.385,3.6,2.954,2.855,2.852,3.493,2.864,2.971,3.047,4.849,2.232,2.589,2.963,1.721,1.597,2.071,1.167,1.366,2.044,1.911,1.533,1.606,1.212,1.327,2.586,1.758,1.355,3.363,1.527,2.241,2.426,2.109,2.11,2.277,2.269,2.221,2.54,1.988,2.751, -"Jan 09, 2017",2.298,3.043,3.083,2.887,2.44,2.985,3.435,3.485,3.606,3.002,2.879,2.897,3.532,2.927,3.009,3.066,4.865,2.248,2.617,2.97,1.745,1.607,2.114,1.182,1.382,2.049,1.932,1.543,1.634,1.236,1.375,2.611,1.784,1.369,3.374,1.58,2.255,2.441,2.134,2.121,2.289,2.311,2.238,2.563,2.065,2.815, -"Jan 16, 2017",2.326,3.066,3.098,2.964,2.469,3.018,3.411,3.559,3.59,3.023,2.883,2.917,3.55,2.959,3.022,3.095,4.914,2.282,2.635,2.996,1.771,1.621,2.14,1.198,1.404,2.084,1.965,1.551,1.667,1.248,1.406,2.666,1.83,1.393,3.44,1.596,2.289,2.491,2.189,2.149,2.307,2.39,2.28,2.698,2.202,2.853, -"Jan 23, 2017",2.354,3.106,3.128,2.977,2.489,3.045,3.438,3.561,3.653,3.071,2.936,2.99,3.619,3.014,3.05,3.133,4.934,2.329,2.668,3.053,1.79,1.65,2.161,1.208,1.43,2.112,1.983,1.562,1.704,1.256,1.419,2.682,1.843,1.409,3.493,1.607,2.317,2.52,2.204,2.173,2.344,2.421,2.317,2.749,2.231,2.855, -"Jan 30, 2017",2.394,3.141,3.165,3.013,2.548,3.074,3.487,3.628,3.65,3.115,2.953,3.027,3.677,3.045,3.111,3.156,4.986,2.342,2.682,3.077,1.832,1.709,2.194,1.236,1.494,2.152,2.022,1.62,1.746,1.299,1.44,2.731,1.856,1.446,3.597,1.624,2.357,2.564,2.267,2.198,2.38,2.473,2.354,2.825,2.284,2.93, -"Feb 06, 2017",2.453,3.191,3.199,3.002,2.626,3.09,3.51,3.659,3.697,3.192,3.031,3.073,3.751,3.131,3.186,3.184,5.051,2.349,2.682,3.149,1.892,1.776,2.266,1.28,1.536,2.167,2.072,1.678,1.823,1.354,1.474,2.823,1.877,1.467,3.718,1.694,2.438,2.645,2.354,2.264,2.469,2.565,2.433,2.956,2.388,3.009, -"Feb 13, 2017",2.451,3.202,3.205,3.03,2.639,3.099,3.521,3.694,3.666,3.199,3.047,3.093,3.709,3.138,3.2,3.205,5.057,2.362,2.706,3.186,1.88,1.742,2.267,1.271,1.528,2.174,2.048,1.68,1.812,1.342,1.469,2.824,1.884,1.478,3.651,1.682,2.437,2.655,2.35,2.261,2.466,2.549,2.433,2.938,2.327,3.034, -"Feb 20, 2017",2.447,3.208,3.211,2.998,2.65,3.094,3.539,3.674,3.683,3.2,3.046,3.054,3.705,3.147,3.205,3.217,5.078,2.373,2.715,3.197,1.87,1.734,2.266,1.264,1.494,2.173,2.045,1.674,1.781,1.318,1.446,2.836,1.878,1.45,3.659,1.654,2.434,2.66,2.333,2.262,2.461,2.543,2.418,2.954,2.323,3.03, -"Feb 27, 2017",2.417,3.161,3.208,2.989,2.65,3.109,3.531,3.654,3.67,3.147,3.042,3.054,3.68,3.133,3.082,3.149,5.07,2.372,2.7,2.866,1.85,1.725,2.257,1.251,1.484,2.137,2.035,1.65,1.758,1.296,1.403,2.829,1.845,1.427,3.655,1.61,2.423,2.648,2.253,2.269,2.468,2.516,2.374,2.978,2.292,3.024, -"Mar 06, 2017",2.419,3.199,3.207,2.959,2.634,3.108,3.536,3.655,3.695,3.177,3.029,3.053,3.647,3.127,3.179,3.219,5.06,2.421,2.71,3.183,1.827,1.712,2.178,1.221,1.447,2.08,2.014,1.619,1.747,1.281,1.386,2.796,1.848,1.407,3.66,1.606,2.433,2.644,2.325,2.269,2.466,2.492,2.349,2.949,2.274,2.998, -"Mar 13, 2017",2.41,3.195,3.227,2.992,2.621,3.123,3.576,3.702,3.725,3.196,3.067,3.136,3.761,3.195,3.106,3.174,5.099,2.379,2.743,2.869,1.815,1.692,2.198,1.214,1.444,2.11,2.018,1.617,1.752,1.254,1.37,2.709,1.875,1.386,3.676,1.572,2.404,2.622,2.242,2.261,2.441,2.5,2.348,2.984,2.284,3.011, -"Mar 20, 2017",2.405,3.196,3.228,2.988,2.607,3.131,3.582,3.703,3.733,3.202,3.076,3.135,3.769,3.214,3.1,3.167,5.109,2.373,2.721,2.875,1.805,1.696,2.201,1.205,1.443,2.103,2.006,1.584,1.722,1.238,1.34,2.71,1.871,1.368,3.71,1.565,2.403,2.642,2.246,2.257,2.426,2.488,2.339,2.966,2.26,3.016, -"Mar 27, 2017",2.39,3.177,3.209,2.969,2.596,3.12,3.579,3.654,3.673,3.181,3.08,3.145,3.757,3.174,3.083,3.152,5.089,2.369,2.707,2.85,1.791,1.673,2.147,1.191,1.427,2.09,2.005,1.585,1.701,1.218,1.316,2.697,1.864,1.356,3.7,1.561,2.401,2.642,2.231,2.27,2.418,2.483,2.337,2.97,2.253,2.997, -"Oct 02, 2017",2.277,3,2.895,2.767,2.524,2.884,3.011,3.377,3.276,2.972,2.926,2.943,3.45,2.892,2.963,3.103,4.789,2.114,2.771,2.927,1.727,1.588,1.911,1.302,1.5,1.97,1.878,1.581,1.668,1.366,1.311,2.475,1.816,1.387,3.119,1.515,2.296,2.511,2.033,2.293,2.28,2.005,2.009,2.217,1.606,2.492, -"Oct 09, 2017",2.305,3.027,2.931,2.796,2.538,2.907,3.072,3.452,3.32,2.987,2.922,2.912,3.465,2.917,2.986,3.137,4.825,2.18,2.779,2.976,1.755,1.606,1.934,1.322,1.515,1.974,1.914,1.629,1.68,1.387,1.339,2.514,1.811,1.448,3.241,1.533,2.309,2.54,2.055,2.329,2.265,2.069,2.059,2.222,1.727,2.549, -"Oct 16, 2017",2.315,3.03,2.947,2.833,2.566,2.925,3.077,3.488,3.319,2.993,2.921,2.957,3.476,2.917,2.985,3.129,4.826,2.144,2.771,2.987,1.772,1.608,1.972,1.336,1.513,1.985,1.939,1.652,1.698,1.395,1.342,2.546,1.839,1.461,3.25,1.546,2.312,2.547,2.059,2.319,2.274,2.083,2.067,2.224,1.759,2.561, -"Oct 23, 2017",2.322,3.032,2.947,2.816,2.608,2.891,3.083,3.462,3.31,2.994,2.895,2.976,3.492,2.924,2.976,3.133,4.833,2.137,2.783,2.984,1.783,1.604,1.996,1.347,1.515,2.056,1.954,1.644,1.693,1.389,1.388,2.563,1.864,1.468,3.256,1.55,2.315,2.544,2.05,2.329,2.281,2.093,2.064,2.248,1.782,2.579, -"Oct 30, 2017",2.344,3.046,2.963,2.806,2.624,2.916,3.086,3.472,3.352,3.017,2.906,3.03,3.497,2.94,3.003,3.136,4.837,2.15,2.782,2.982,1.812,1.621,2.057,1.384,1.542,2.078,1.965,1.676,1.714,1.401,1.431,2.625,1.879,1.509,3.203,1.592,2.332,2.558,2.058,2.353,2.299,2.106,2.07,2.3,1.776,2.612, -"Nov 06, 2017",2.361,3.068,3.004,2.854,2.645,2.993,3.09,3.509,3.425,3.044,2.894,3.014,3.541,2.986,3.025,3.138,4.793,2.197,2.792,2.97,1.825,1.635,2.092,1.402,1.574,2.098,1.998,1.675,1.729,1.429,1.473,2.618,1.92,1.529,3.067,1.616,2.34,2.564,2.093,2.344,2.307,2.145,2.091,2.391,1.805,2.672, -"Nov 13, 2017",2.382,3.088,3.028,2.864,2.668,3.021,3.1,3.54,3.471,3.085,2.921,3.067,3.604,3.039,3.047,3.132,4.743,2.21,2.805,2.955,1.847,1.674,2.115,1.404,1.579,2.132,2.061,1.667,1.755,1.435,1.516,2.636,1.94,1.55,3.047,1.63,2.35,2.557,2.139,2.327,2.331,2.185,2.105,2.437,1.856,2.77, -"Nov 20, 2017",2.419,3.137,3.041,2.878,2.673,3.056,3.104,3.563,3.478,3.157,2.944,3.115,3.662,3.136,3.11,3.178,4.844,2.232,2.844,2.98,1.877,1.698,2.144,1.437,1.604,2.165,2.089,1.714,1.759,1.457,1.542,2.671,1.964,1.57,3.071,1.676,2.376,2.57,2.164,2.366,2.355,2.216,2.13,2.464,1.885,2.822, -"Nov 27, 2017",2.435,3.146,3.044,2.886,2.678,3.057,3.103,3.547,3.484,3.182,2.938,3.117,3.659,3.191,3.124,3.174,4.827,2.247,2.833,2.985,1.898,1.728,2.179,1.458,1.613,2.197,2.095,1.738,1.778,1.477,1.561,2.682,1.972,1.576,3.065,1.707,2.391,2.582,2.193,2.365,2.376,2.231,2.142,2.484,1.904,2.834, -"Dec 04, 2017",2.452,3.174,3.1,2.897,2.692,3.088,3.231,3.55,3.559,3.199,2.941,3.146,3.676,3.223,3.124,3.195,4.857,2.278,2.836,3.019,1.911,1.749,2.185,1.462,1.639,2.215,2.121,1.768,1.805,1.489,1.568,2.688,1.976,1.586,3.024,1.712,2.422,2.59,2.221,2.395,2.424,2.183,2.196,2.489,1.909,2.356, -"Dec 11, 2017",2.482,3.222,3.161,2.917,2.722,3.118,3.335,3.732,3.653,3.231,2.965,3.158,3.712,3.259,3.157,3.254,4.911,2.35,2.887,3.084,1.927,1.759,2.203,1.464,1.645,2.226,2.146,1.782,1.832,1.484,1.567,2.728,1.99,1.591,3.061,1.724,2.444,2.611,2.261,2.421,2.435,2.221,2.247,2.524,1.942,2.371, -"Dec 18, 2017",2.485,3.232,3.185,2.921,2.735,3.124,3.38,3.776,3.691,3.255,2.975,3.163,3.716,3.325,3.151,3.237,4.837,2.355,2.888,3.075,1.926,1.74,2.206,1.457,1.649,2.233,2.157,1.78,1.825,1.477,1.578,2.723,2.011,1.586,3.046,1.743,2.441,2.606,2.251,2.423,2.434,2.215,2.244,2.484,1.942,2.374, -"Dec 25, 2017",2.496,3.248,3.207,2.926,2.753,3.128,3.451,3.783,3.681,3.276,2.987,3.168,3.735,3.358,3.166,3.244,4.837,2.361,2.904,3.074,1.935,1.745,2.224,1.463,1.643,2.236,2.175,1.783,1.835,1.482,1.58,2.725,2.026,1.596,3.058,1.755,2.443,2.606,2.265,2.425,2.432,2.225,2.25,2.49,1.954,2.395, -"Jan 01, 2018",2.52,3.286,3.235,2.957,2.794,3.166,3.43,3.83,3.75,3.325,3.079,3.212,3.755,3.443,3.181,3.273,4.805,2.45,2.935,3.103,1.946,1.765,2.257,1.483,1.67,2.265,2.159,1.774,1.87,1.488,1.556,2.742,2.027,1.608,3.087,1.768,2.472,2.639,2.287,2.469,2.453,2.251,2.251,2.53,2.015,2.418, -"Jan 08, 2018",2.55,3.318,3.288,3.026,2.874,3.197,3.478,3.857,3.795,3.35,3.115,3.251,3.797,3.466,3.199,3.301,4.822,2.463,2.964,3.157,1.978,1.811,2.312,1.497,1.68,2.32,2.172,1.79,1.9,1.503,1.602,2.762,2.05,1.615,3.136,1.822,2.486,2.651,2.326,2.484,2.456,2.269,2.269,2.539,2.041,2.43, -"Jan 15, 2018",2.584,3.348,3.336,3.073,2.917,3.203,3.591,3.872,3.817,3.381,3.151,3.329,3.831,3.512,3.198,3.318,4.753,2.516,3.01,3.177,2.015,1.845,2.452,1.506,1.691,2.429,2.192,1.825,1.915,1.51,1.618,2.829,2.071,1.634,3.122,1.861,2.529,2.727,2.388,2.551,2.458,2.287,2.277,2.55,2.067,2.471, -"Jan 22, 2018",2.607,3.363,3.319,3.113,2.914,3.211,3.52,3.896,3.787,3.41,3.164,3.392,3.841,3.546,3.219,3.336,4.751,2.538,3.038,3.193,2.05,1.929,2.627,1.513,1.693,2.481,2.212,1.825,1.962,1.51,1.629,2.853,2.079,1.635,3.126,1.877,2.536,2.723,2.408,2.575,2.455,2.295,2.286,2.549,2.064,2.505, -"Jan 29, 2018",2.598,3.357,3.315,3.12,2.926,3.215,3.491,3.901,3.777,3.405,3.184,3.379,3.841,3.534,3.218,3.329,4.749,2.538,3.003,3.227,2.034,1.916,2.579,1.498,1.687,2.443,2.213,1.805,1.933,1.491,1.614,2.854,2.077,1.632,3.119,1.862,2.542,2.734,2.408,2.583,2.458,2.293,2.271,2.547,2.073,2.521, -"Feb 05, 2018",2.587,3.334,3.328,3.102,2.956,3.221,3.527,3.901,3.76,3.349,3.188,3.384,3.835,3.53,3.071,3.321,4.728,2.538,3.002,3.209,2.032,1.894,2.559,1.499,1.684,2.464,2.213,1.83,1.933,1.487,1.605,2.86,2.089,1.63,3.104,1.85,2.525,2.698,2.38,2.58,2.449,2.291,2.275,2.527,2.062,2.529, -"Feb 12, 2018",2.576,3.334,3.336,3.12,2.958,3.22,3.545,3.92,3.769,3.343,3.17,3.389,3.841,3.521,3.064,3.323,4.708,2.54,3.024,3.198,2.015,1.854,2.507,1.475,1.692,2.458,2.248,1.814,1.928,1.456,1.59,2.88,2.091,1.615,3.097,1.786,2.509,2.665,2.351,2.569,2.444,2.269,2.271,2.505,2.013,2.504, -"Feb 19, 2018",2.568,3.331,3.325,3.078,2.932,3.217,3.546,3.916,3.768,3.338,3.159,3.368,3.815,3.525,3.06,3.326,4.719,2.55,3.028,3.18,2,1.842,2.452,1.467,1.661,2.426,2.245,1.815,1.912,1.437,1.576,2.869,2.091,1.597,3.101,1.754,2.509,2.669,2.336,2.573,2.446,2.27,2.276,2.511,2.007,2.502, -"Feb 26, 2018",2.557,3.325,3.318,3.057,2.954,3.213,3.522,3.915,3.751,3.333,3.152,3.359,3.821,3.521,3.053,3.32,4.717,2.555,3.018,3.168,1.985,1.814,2.403,1.468,1.655,2.409,2.238,1.808,1.895,1.417,1.558,2.849,2.082,1.592,3.094,1.74,2.505,2.667,2.318,2.572,2.445,2.262,2.262,2.508,2.007,2.492, -"Mar 05, 2018",2.531,3.308,3.299,3.032,2.933,3.211,3.526,3.912,3.678,3.317,3.143,3.328,3.8,3.51,3.036,3.305,4.732,2.519,2.995,3.157,1.949,1.773,2.323,1.451,1.628,2.356,2.229,1.759,1.838,1.395,1.536,2.821,2.038,1.579,3.14,1.68,2.497,2.678,2.263,2.572,2.441,2.237,2.215,2.511,2.007,2.462, -"Mar 12, 2018",2.499,3.281,3.28,2.998,2.9,3.179,3.52,3.901,3.681,3.295,3.133,3.32,3.776,3.488,3.008,3.266,4.676,2.492,2.955,3.127,1.911,1.713,2.287,1.42,1.595,2.288,2.219,1.712,1.81,1.391,1.512,2.754,2.021,1.544,3.095,1.644,2.489,2.658,2.236,2.571,2.442,2.19,2.156,2.48,1.968,2.423, -"Mar 19, 2018",2.487,3.273,3.266,2.973,2.894,3.177,3.49,3.9,3.669,3.295,3.124,3.335,3.775,3.488,3.006,3.253,4.703,2.446,2.94,3.11,1.893,1.702,2.262,1.399,1.597,2.301,2.209,1.682,1.803,1.349,1.486,2.739,1.983,1.531,3.087,1.617,2.484,2.638,2.236,2.567,2.443,2.182,2.151,2.469,1.96,2.409, -"Mar 26, 2018",2.48,3.273,3.266,2.963,2.894,3.177,3.488,3.881,3.682,3.293,3.116,3.328,3.773,3.49,3.003,3.253,4.706,2.44,2.935,3.123,1.882,1.685,2.261,1.377,1.597,2.281,2.201,1.665,1.792,1.346,1.481,2.742,1.97,1.524,3.098,1.597,2.472,2.628,2.226,2.547,2.436,2.178,2.146,2.469,1.956,2.405, -"Oct 01, 2018",2.37,3.179,3.16,3.004,2.892,3.161,3.221,3.454,3.524,3.187,3.126,3.242,3.847,3.183,3.051,3.182,4.708,2.278,2.768,3.105,1.745,1.6,1.924,1.322,1.517,2.098,2.002,1.537,1.709,1.348,1.257,2.64,1.795,1.396,2.917,1.513,2.431,2.574,2.075,2.466,2.466,2.041,2.024,2.295,1.716,2.443, -"Oct 08, 2018",2.389,3.204,3.192,3.025,2.932,3.167,3.286,3.479,3.536,3.223,3.125,3.257,3.846,3.235,3.091,3.192,4.723,2.27,2.784,3.116,1.759,1.606,1.939,1.332,1.524,2.113,2.016,1.557,1.69,1.354,1.353,2.639,1.801,1.436,2.928,1.53,2.441,2.577,2.094,2.501,2.464,2.064,2.042,2.322,1.736,2.479, -"Oct 15, 2018",2.402,3.21,3.201,3.042,2.937,3.186,3.277,3.508,3.557,3.23,3.153,3.268,3.854,3.248,3.088,3.192,4.711,2.271,2.788,3.122,1.779,1.61,1.959,1.35,1.542,2.162,2.018,1.587,1.726,1.367,1.385,2.646,1.824,1.455,2.954,1.558,2.435,2.555,2.109,2.507,2.452,2.086,2.069,2.352,1.75,2.496, -"Oct 22, 2018",2.419,3.222,3.211,3.021,2.968,3.183,3.288,3.503,3.574,3.232,3.181,3.281,3.851,3.242,3.091,3.218,4.721,2.276,2.834,3.15,1.8,1.627,1.985,1.357,1.573,2.169,2.012,1.635,1.777,1.394,1.437,2.644,1.857,1.491,2.993,1.567,2.443,2.547,2.142,2.527,2.452,2.115,2.086,2.39,1.808,2.499, -"Oct 29, 2018",2.418,3.219,3.21,3.005,2.988,3.175,3.286,3.508,3.56,3.232,3.175,3.281,3.85,3.245,3.089,3.211,4.729,2.276,2.819,3.136,1.8,1.621,1.983,1.36,1.575,2.167,2.002,1.628,1.786,1.393,1.45,2.651,1.905,1.495,3.002,1.555,2.441,2.539,2.16,2.526,2.445,2.116,2.081,2.386,1.818,2.503, -"Nov 05, 2018",2.419,3.217,3.203,3.01,3.005,3.177,3.28,3.491,3.497,3.216,3.162,3.27,3.853,3.205,3.092,3.228,4.762,2.301,2.83,3.135,1.804,1.624,1.994,1.345,1.571,2.188,2.002,1.629,1.791,1.384,1.447,2.655,1.914,1.498,3.016,1.575,2.445,2.545,2.175,2.526,2.447,2.126,2.08,2.402,1.841,2.513, -"Nov 12, 2018",2.422,3.223,3.206,3.009,3.001,3.192,3.269,3.458,3.526,3.222,3.167,3.276,3.88,3.211,3.093,3.235,4.792,2.312,2.825,3.132,1.803,1.616,1.997,1.343,1.565,2.225,2.003,1.626,1.789,1.37,1.433,2.668,1.915,1.492,3.034,1.567,2.457,2.597,2.185,2.516,2.449,2.132,2.072,2.428,1.86,2.518, -"Nov 19, 2018",2.425,3.23,3.207,2.985,3.011,3.216,3.265,3.551,3.492,3.24,3.163,3.291,3.877,3.264,3.086,3.233,4.793,2.328,2.819,3.116,1.805,1.618,2.008,1.339,1.561,2.234,2.008,1.622,1.79,1.353,1.435,2.66,1.924,1.498,3.031,1.577,2.452,2.579,2.186,2.515,2.448,2.135,2.07,2.433,1.868,2.522, -"Nov 26, 2018",2.423,3.224,3.187,2.974,3.012,3.146,3.265,3.543,3.466,3.242,3.173,3.276,3.876,3.274,3.085,3.229,4.786,2.33,2.814,3.113,1.803,1.633,2.011,1.347,1.563,2.215,2.006,1.623,1.783,1.352,1.431,2.637,1.932,1.494,3.023,1.573,2.452,2.572,2.198,2.514,2.446,2.136,2.071,2.437,1.869,2.519, -"Dec 03, 2018",2.431,3.232,3.205,2.98,3.011,3.146,3.298,3.572,3.521,3.238,3.186,3.277,3.883,3.272,3.072,3.244,4.806,2.335,2.836,3.117,1.81,1.635,2.028,1.337,1.559,2.24,2.013,1.632,1.785,1.346,1.436,2.653,1.936,1.495,3.054,1.586,2.46,2.577,2.204,2.534,2.45,2.168,2.108,2.474,1.894,2.548, -"Dec 10, 2018",2.441,3.241,3.208,2.984,3.015,3.142,3.303,3.559,3.532,3.242,3.19,3.277,3.892,3.276,3.078,3.263,4.837,2.343,2.855,3.133,1.819,1.65,2.058,1.338,1.55,2.242,2.019,1.636,1.787,1.348,1.444,2.671,1.941,1.501,3.083,1.591,2.466,2.591,2.214,2.537,2.453,2.189,2.126,2.507,1.92,2.559, -"Dec 17, 2018",2.439,3.236,3.206,2.975,3.015,3.128,3.315,3.572,3.522,3.235,3.17,3.277,3.873,3.275,3.067,3.257,4.833,2.341,2.849,3.121,1.821,1.654,2.069,1.336,1.545,2.267,2.011,1.636,1.788,1.346,1.445,2.666,1.945,1.499,3.053,1.609,2.46,2.577,2.214,2.534,2.446,2.197,2.131,2.507,1.924,2.588, -"Dec 24, 2018",2.437,3.232,3.198,2.971,3.013,3.123,3.321,3.574,3.478,3.23,3.17,3.262,3.868,3.278,3.057,3.256,4.827,2.341,2.849,3.124,1.819,1.653,2.071,1.332,1.543,2.272,2.008,1.633,1.784,1.342,1.449,2.671,1.943,1.497,3.05,1.603,2.456,2.566,2.216,2.534,2.442,2.2,2.141,2.502,1.925,2.584, -"Dec 31, 2018",2.433,3.224,3.194,2.965,3.019,3.112,3.317,3.572,3.47,3.22,3.152,3.265,3.845,3.265,3.048,3.248,4.817,2.338,2.845,3.107,1.818,1.65,2.08,1.324,1.539,2.26,2.008,1.636,1.79,1.335,1.45,2.665,1.942,1.494,3.046,1.602,2.455,2.573,2.214,2.533,2.436,2.202,2.146,2.504,1.921,2.587, -"Jan 07, 2019",2.432,3.212,3.172,2.974,3.001,3.096,3.286,3.559,3.429,3.195,3.131,3.265,3.824,3.244,3.012,3.26,4.856,2.346,2.864,3.075,1.823,1.643,2.091,1.319,1.539,2.241,2.033,1.641,1.8,1.32,1.442,2.705,1.946,1.493,3.083,1.599,2.458,2.582,2.225,2.533,2.435,2.225,2.17,2.527,1.945,2.605, -"Jan 14, 2019",2.428,3.206,3.171,2.957,3.004,3.097,3.308,3.556,3.394,3.181,3.132,3.272,3.819,3.248,2.972,3.257,4.862,2.343,2.859,3.067,1.819,1.641,2.096,1.311,1.537,2.248,2.033,1.64,1.803,1.32,1.428,2.701,1.944,1.492,3.049,1.582,2.462,2.597,2.216,2.535,2.439,2.223,2.172,2.506,1.948,2.601, -"Jan 21, 2019",2.427,3.207,3.164,2.966,2.999,3.096,3.277,3.564,3.399,3.192,3.125,3.281,3.818,3.282,2.967,3.253,4.858,2.343,2.854,3.06,1.817,1.64,2.105,1.312,1.539,2.257,2.035,1.633,1.784,1.315,1.423,2.712,1.938,1.49,3.031,1.578,2.46,2.595,2.22,2.539,2.431,2.224,2.173,2.517,1.945,2.598, -"Jan 28, 2019",2.428,3.205,3.166,2.97,3,3.097,3.281,3.564,3.402,3.191,3.121,3.281,3.818,3.284,2.961,3.247,4.846,2.342,2.849,3.056,1.821,1.645,2.123,1.312,1.541,2.28,2.029,1.634,1.786,1.313,1.428,2.717,1.936,1.488,3.032,1.586,2.461,2.59,2.22,2.549,2.432,2.225,2.175,2.524,1.943,2.598, -"Feb 04, 2019",2.435,3.22,3.178,2.982,3.001,3.109,3.297,3.567,3.424,3.221,3.132,3.282,3.833,3.3,3.02,3.246,4.832,2.345,2.835,3.091,1.821,1.648,2.129,1.311,1.537,2.277,2.033,1.629,1.784,1.314,1.424,2.715,1.937,1.486,3.059,1.587,2.466,2.592,2.23,2.557,2.435,2.22,2.179,2.521,1.928,2.584, -"Feb 11, 2019",2.431,3.215,3.171,2.973,3.005,3.099,3.292,3.567,3.403,3.219,3.135,3.274,3.838,3.305,3.011,3.241,4.81,2.355,2.831,3.086,1.819,1.647,2.127,1.312,1.527,2.252,2.035,1.632,1.775,1.309,1.422,2.716,1.94,1.488,3.059,1.578,2.463,2.59,2.221,2.553,2.433,2.211,2.161,2.514,1.928,2.581, -"Feb 18, 2019",2.429,3.213,3.166,2.946,3.016,3.099,3.283,3.565,3.386,3.221,3.13,3.283,3.835,3.312,3.008,3.236,4.806,2.347,2.833,3.068,1.818,1.649,2.125,1.313,1.526,2.263,2.034,1.627,1.772,1.314,1.419,2.715,1.932,1.486,3.062,1.578,2.457,2.589,2.221,2.555,2.419,2.206,2.154,2.505,1.935,2.567, -"Feb 25, 2019",2.43,3.21,3.165,2.955,3.01,3.1,3.276,3.56,3.391,3.209,3.13,3.282,3.836,3.312,2.977,3.242,4.816,2.347,2.838,3.081,1.822,1.65,2.125,1.319,1.532,2.263,2.041,1.636,1.771,1.327,1.431,2.718,1.935,1.486,3.06,1.576,2.459,2.593,2.221,2.554,2.421,2.213,2.159,2.504,1.95,2.569, -"Mar 04, 2019",2.419,3.204,3.173,2.95,3.027,3.118,3.272,3.564,3.399,3.217,3.134,3.285,3.837,3.325,2.983,3.211,4.753,2.332,2.806,3.072,1.808,1.643,2.094,1.326,1.532,2.25,2.026,1.631,1.751,1.326,1.436,2.681,1.927,1.488,2.953,1.565,2.445,2.566,2.197,2.543,2.417,2.194,2.126,2.481,1.953,2.553, -"Mar 11, 2019",2.414,3.199,3.177,2.946,3.031,3.119,3.276,3.569,3.413,3.216,3.137,3.282,3.837,3.323,2.984,3.192,4.704,2.323,2.792,3.071,1.803,1.647,2.08,1.325,1.53,2.232,2.013,1.624,1.748,1.339,1.443,2.659,1.927,1.489,2.957,1.563,2.434,2.556,2.165,2.536,2.412,2.188,2.114,2.486,1.958,2.533, -"Mar 18, 2019",2.41,3.198,3.173,2.945,3.029,3.114,3.268,3.568,3.409,3.221,3.143,3.285,3.831,3.331,2.987,3.189,4.697,2.317,2.789,3.075,1.797,1.641,2.038,1.323,1.527,2.23,2.013,1.61,1.744,1.345,1.439,2.647,1.919,1.482,2.964,1.561,2.423,2.518,2.154,2.533,2.411,2.191,2.108,2.482,1.98,2.534, -"Mar 25, 2019",2.397,3.19,3.159,2.943,3.016,3.114,3.262,3.568,3.353,3.214,3.139,3.285,3.819,3.329,2.976,3.182,4.693,2.306,2.779,3.074,1.782,1.626,1.998,1.316,1.525,2.217,2.001,1.597,1.734,1.34,1.431,2.616,1.918,1.477,2.973,1.539,2.39,2.451,2.136,2.502,2.391,2.188,2.101,2.48,1.986,2.525, -"Oct 07, 2019",1.84,2.548,2.704,2.611,2.555,2.872,2.793,3.073,2.614,2.42,2.677,2.609,2.843,2.437,2.16,2.546,3.931,2.081,2.567,2.544,1.394,1.278,1.443,1.153,1.226,2.215,1.565,1.275,1.393,1.068,1.365,2.007,1.5,1.245,2.343,1.191,2.059,2.326,1.535,2.2,2.133,1.503,1.488,1.615,1.42,1.606, -"Oct 14, 2019",1.847,2.54,2.701,2.593,2.544,2.876,2.766,3.078,2.647,2.395,2.561,2.543,2.837,2.437,2.148,2.569,3.879,2.126,2.556,2.561,1.406,1.286,1.466,1.157,1.241,2.239,1.565,1.264,1.386,1.086,1.38,1.843,1.517,1.264,2.36,1.22,2.072,2.285,1.549,2.221,2.135,1.516,1.504,1.662,1.412,1.597, -"Oct 21, 2019",1.839,2.54,2.689,2.589,2.534,2.866,2.746,3.04,2.641,2.4,2.57,2.474,2.905,2.446,2.148,2.576,3.89,2.076,2.572,2.576,1.401,1.29,1.477,1.178,1.222,2.236,1.566,1.285,1.398,1.07,1.131,1.852,1.525,1.261,2.383,1.24,2.059,2.223,1.548,2.221,2.135,1.524,1.51,1.679,1.432,1.592, -"Oct 28, 2019",1.845,2.504,2.626,2.583,2.402,2.729,2.733,2.921,2.615,2.373,2.537,2.47,2.842,2.427,2.097,2.557,3.876,2.094,2.574,2.532,1.425,1.345,1.505,1.191,1.232,2.255,1.579,1.323,1.396,1.107,1.161,1.889,1.572,1.282,2.361,1.254,2.074,2.295,1.561,2.239,2.13,1.536,1.52,1.683,1.444,1.61, -"Nov 04, 2019",1.895,2.529,2.655,2.596,2.386,2.775,2.758,2.957,2.7,2.391,2.595,2.549,2.85,2.432,2.113,2.584,3.932,2.104,2.609,2.551,1.487,1.43,1.561,1.269,1.236,2.31,1.592,1.44,1.473,1.116,1.283,1.921,1.6,1.338,2.386,1.317,2.094,2.285,1.591,2.24,2.167,1.559,1.534,1.696,1.494,1.626, -"Nov 11, 2019",1.942,2.528,2.67,2.61,2.404,2.777,2.773,2.982,2.715,2.392,2.578,2.517,2.861,2.435,2.12,2.568,3.991,2.105,2.565,2.557,1.574,1.605,1.753,1.367,1.266,2.319,1.613,1.589,1.483,1.21,1.411,1.943,1.635,1.435,2.44,1.409,2.115,2.249,1.708,2.237,2.174,1.639,1.633,1.746,1.562,1.675, -"Nov 18, 2019",1.97,2.547,2.674,2.65,2.404,2.786,2.793,2.984,2.67,2.415,2.604,2.554,2.806,2.461,2.158,2.589,3.952,2.138,2.565,2.58,1.624,1.722,1.908,1.412,1.3,2.064,1.654,1.612,1.515,1.199,1.525,1.976,1.669,1.465,2.402,1.456,2.133,2.285,1.752,2.24,2.183,1.665,1.651,1.774,1.594,1.718, -"Nov 25, 2019",1.999,2.57,2.7,2.658,2.45,2.789,2.83,3,2.697,2.445,2.604,2.6,2.876,2.488,2.181,2.601,3.956,2.149,2.566,2.602,1.668,1.817,1.937,1.459,1.333,2.065,1.696,1.636,1.563,1.226,1.689,2.026,1.682,1.48,2.416,1.498,2.142,2.299,1.772,2.241,2.191,1.672,1.66,1.777,1.6,1.726, -"Dec 02, 2019",2.029,2.596,2.742,2.664,2.46,2.795,2.854,3.046,2.85,2.463,2.612,2.569,2.9,2.524,2.205,2.622,3.992,2.168,2.573,2.638,1.696,1.806,1.992,1.459,1.335,2.068,1.764,1.668,1.59,1.23,1.683,2.048,1.702,1.491,2.434,1.548,2.153,2.311,1.79,2.259,2.194,1.709,1.695,1.801,1.649,1.767, -"Dec 09, 2019",2.023,2.6,2.74,2.668,2.453,2.806,2.84,3.018,2.867,2.471,2.621,2.561,2.882,2.531,2.232,2.629,4.027,2.176,2.597,2.645,1.682,1.771,1.987,1.389,1.329,2.083,1.739,1.674,1.546,1.221,1.686,2.025,1.704,1.474,2.471,1.565,2.162,2.291,1.81,2.278,2.203,1.726,1.711,1.819,1.668,1.779, -"Dec 16, 2019",2.021,2.607,2.736,2.669,2.453,2.773,2.874,3.042,2.825,2.481,2.616,2.586,2.903,2.539,2.224,2.641,3.993,2.195,2.602,2.654,1.675,1.722,1.967,1.376,1.325,2.081,1.757,1.642,1.573,1.225,1.575,2.023,1.713,1.477,2.465,1.565,2.164,2.306,1.817,2.281,2.199,1.737,1.731,1.817,1.672,1.78, -"Dec 23, 2019",2.023,2.621,2.752,2.68,2.481,2.786,2.889,3.008,2.854,2.493,2.615,2.636,2.908,2.555,2.23,2.657,4.013,2.21,2.609,2.659,1.667,1.701,1.961,1.355,1.329,2.105,1.761,1.589,1.569,1.231,1.575,2.054,1.713,1.452,2.483,1.553,2.166,2.308,1.805,2.283,2.206,1.74,1.732,1.825,1.675,1.785, -"Dec 30, 2019",2.011,2.616,2.739,2.666,2.475,2.784,2.872,3.072,2.803,2.497,2.619,2.649,2.907,2.555,2.232,2.646,4.001,2.202,2.605,2.65,1.653,1.686,1.944,1.327,1.341,2.113,1.741,1.581,1.559,1.222,1.565,2.028,1.713,1.452,2.496,1.548,2.161,2.312,1.805,2.282,2.196,1.742,1.737,1.83,1.678,1.774, -"Jan 06, 2020",2.005,2.611,2.741,2.662,2.48,2.759,2.883,3.086,2.817,2.49,2.637,2.628,2.89,2.557,2.206,2.637,4.003,2.195,2.587,2.654,1.644,1.667,1.935,1.319,1.341,2.103,1.725,1.571,1.574,1.229,1.518,2.052,1.716,1.451,2.519,1.535,2.16,2.315,1.78,2.28,2.208,1.738,1.722,1.842,1.683,1.772, -"Jan 13, 2020",2.01,2.619,2.756,2.692,2.487,2.767,2.881,3.126,2.852,2.498,2.646,2.622,2.898,2.574,2.205,2.64,3.979,2.193,2.607,2.66,1.64,1.648,1.912,1.306,1.337,2.106,1.724,1.575,1.581,1.227,1.49,2.045,1.711,1.452,2.538,1.54,2.181,2.374,1.798,2.294,2.215,1.735,1.713,1.854,1.681,1.766, -"Jan 20, 2020",2.004,2.618,2.751,2.66,2.474,2.789,2.889,3.136,2.835,2.494,2.644,2.593,2.897,2.569,2.217,2.649,4.002,2.211,2.598,2.661,1.633,1.599,1.908,1.279,1.354,2.104,1.735,1.578,1.563,1.214,1.476,2.045,1.714,1.452,2.539,1.544,2.183,2.363,1.805,2.316,2.21,1.734,1.713,1.852,1.679,1.769, -"Jan 27, 2020",1.994,2.607,2.744,2.675,2.468,2.778,2.891,3.098,2.807,2.473,2.643,2.624,2.901,2.523,2.209,2.649,4.006,2.225,2.593,2.667,1.621,1.557,1.891,1.272,1.354,2.109,1.735,1.554,1.567,1.202,1.46,2.042,1.714,1.439,2.544,1.533,2.184,2.368,1.805,2.321,2.207,1.733,1.711,1.85,1.683,1.766, -"Feb 03, 2020",1.988,2.603,2.735,2.619,2.478,2.78,2.875,3.123,2.792,2.464,2.638,2.652,2.9,2.522,2.181,2.655,3.914,2.309,2.572,2.671,1.614,1.539,1.89,1.26,1.354,2.109,1.725,1.54,1.567,1.195,1.432,2.045,1.708,1.439,2.538,1.524,2.194,2.373,1.805,2.309,2.228,1.729,1.708,1.849,1.679,1.757, -"Feb 10, 2020",1.986,2.603,2.731,2.629,2.469,2.766,2.863,3.103,2.811,2.469,2.639,2.681,2.884,2.534,2.177,2.652,3.968,2.307,2.576,2.663,1.611,1.533,1.892,1.251,1.358,2.108,1.724,1.53,1.568,1.194,1.424,2.043,1.71,1.443,2.53,1.522,2.178,2.378,1.803,2.311,2.19,1.724,1.705,1.849,1.67,1.753, -"Feb 17, 2020",1.981,2.602,2.726,2.591,2.484,2.748,2.845,3.118,2.848,2.463,2.637,2.696,2.877,2.533,2.16,2.663,3.942,2.307,2.572,2.704,1.606,1.521,1.868,1.235,1.352,2.095,1.722,1.522,1.566,1.194,1.417,2.05,1.691,1.441,2.51,1.524,2.171,2.372,1.786,2.31,2.184,1.716,1.694,1.842,1.665,1.744, -"Feb 24, 2020",1.977,2.596,2.717,2.597,2.487,2.753,2.845,3.129,2.789,2.465,2.639,2.662,2.882,2.533,2.172,2.652,3.938,2.219,2.573,2.711,1.601,1.511,1.86,1.25,1.352,2.095,1.721,1.521,1.566,1.199,1.393,2.031,1.692,1.431,2.516,1.514,2.171,2.372,1.782,2.31,2.185,1.715,1.692,1.836,1.667,1.745, -"Mar 02, 2020",1.968,2.596,2.722,2.614,2.476,2.772,2.826,3.108,2.818,2.456,2.635,2.676,2.877,2.52,2.171,2.657,3.905,2.306,2.554,2.702,1.585,1.5,1.81,1.233,1.351,2.09,1.711,1.503,1.56,1.201,1.368,2.023,1.693,1.391,2.488,1.497,2.172,2.369,1.783,2.309,2.178,1.718,1.707,1.832,1.658,1.743, -"Mar 09, 2020",1.962,2.593,2.713,2.58,2.474,2.772,2.825,3.065,2.814,2.454,2.632,2.648,2.871,2.52,2.16,2.656,3.914,2.291,2.562,2.701,1.568,1.474,1.774,1.229,1.337,2.09,1.688,1.471,1.555,1.148,1.33,2.039,1.683,1.367,2.479,1.477,2.164,2.353,1.746,2.31,2.179,1.709,1.698,1.825,1.643,1.742, -"Mar 16, 2020",1.929,2.572,2.675,2.557,2.458,2.739,2.821,3.052,2.691,2.449,2.606,2.726,2.86,2.491,2.146,2.621,3.894,2.195,2.549,2.671,1.539,1.467,1.678,1.198,1.322,2.096,1.684,1.438,1.524,1.13,1.297,1.991,1.662,1.325,2.494,1.452,2.144,2.331,1.695,2.307,2.162,1.692,1.662,1.818,1.642,1.739, -"Mar 23, 2020",1.902,2.561,2.672,2.539,2.447,2.718,2.844,3.052,2.685,2.451,2.602,2.644,2.837,2.47,2.188,2.591,3.88,2.169,2.506,2.649,1.504,1.431,1.629,1.151,1.322,2.081,1.655,1.411,1.459,1.114,1.278,1.988,1.632,1.326,2.438,1.383,2.133,2.305,1.657,2.349,2.141,1.663,1.611,1.813,1.64,1.714, -"Mar 30, 2020",1.869,2.544,2.651,2.456,2.435,2.683,2.798,3.007,2.749,2.436,2.599,2.62,2.832,2.447,2.177,2.58,3.889,2.164,2.473,2.632,1.46,1.387,1.537,1.133,1.28,2.078,1.664,1.362,1.41,1.054,1.179,1.957,1.608,1.265,2.41,1.353,2.119,2.318,1.629,2.344,2.123,1.616,1.581,1.699,1.612,1.645, -"Oct 05, 2020",1.772,2.518,2.66,2.779,2.539,2.706,2.645,2.853,2.631,2.369,2.536,2.505,2.927,2.373,2.17,2.557,3.837,2.273,2.456,2.548,1.368,1.319,1.553,1.087,1.187,1.702,1.589,1.223,1.336,1.085,1.155,1.764,1.512,1.232,2.235,1.258,1.966,2.046,1.596,2.15,2.059,1.536,1.614,1.64,1.392,1.574, -"Oct 12, 2020",1.777,2.515,2.652,2.741,2.477,2.715,2.654,2.851,2.661,2.373,2.512,2.532,2.831,2.378,2.185,2.553,3.723,2.272,2.456,2.563,1.384,1.332,1.601,1.103,1.215,1.666,1.577,1.25,1.346,1.078,1.174,1.776,1.516,1.241,2.241,1.264,1.998,2.132,1.591,2.222,2.077,1.531,1.616,1.615,1.391,1.564, -"Oct 19, 2020",1.79,2.516,2.657,2.703,2.49,2.714,2.68,2.846,2.66,2.364,2.513,2.515,2.83,2.388,2.151,2.556,3.724,2.274,2.458,2.575,1.398,1.362,1.616,1.107,1.22,1.742,1.583,1.27,1.346,1.089,1.171,1.786,1.54,1.251,2.271,1.272,2.021,2.167,1.627,2.258,2.087,1.54,1.647,1.626,1.384,1.57, -"Oct 26, 2020",1.801,2.528,2.67,2.696,2.526,2.704,2.713,2.845,2.675,2.375,2.512,2.592,2.832,2.398,2.155,2.57,3.721,2.281,2.473,2.6,1.412,1.351,1.619,1.132,1.251,1.749,1.585,1.298,1.36,1.093,1.188,1.804,1.557,1.26,2.268,1.297,2.016,2.152,1.629,2.261,2.076,1.539,1.62,1.637,1.393,1.577, -"Nov 02, 2020",1.821,2.531,2.679,2.714,2.522,2.719,2.736,2.862,2.662,2.369,2.505,2.552,2.833,2.413,2.138,2.581,3.739,2.293,2.48,2.614,1.433,1.361,1.651,1.138,1.248,1.766,1.642,1.325,1.377,1.131,1.196,1.818,1.564,1.27,2.28,1.32,2.033,2.158,1.659,2.267,2.091,1.555,1.621,1.658,1.407,1.608, -"Nov 09, 2020",1.837,2.549,2.696,2.73,2.53,2.729,2.767,2.869,2.674,2.383,2.515,2.564,2.837,2.42,2.166,2.606,3.775,2.316,2.505,2.637,1.45,1.371,1.673,1.145,1.276,1.786,1.63,1.318,1.413,1.139,1.196,1.863,1.583,1.284,2.317,1.327,2.054,2.233,1.678,2.268,2.105,1.592,1.675,1.704,1.422,1.634, -"Nov 16, 2020",1.848,2.561,2.704,2.739,2.534,2.734,2.778,2.837,2.691,2.403,2.52,2.577,2.837,2.437,2.195,2.613,3.777,2.331,2.51,2.639,1.462,1.382,1.695,1.15,1.277,1.784,1.639,1.329,1.421,1.175,1.2,1.92,1.587,1.285,2.33,1.351,2.06,2.251,1.686,2.279,2.104,1.63,1.685,1.728,1.515,1.689, -"Nov 23, 2020",1.855,2.568,2.716,2.764,2.544,2.727,2.786,2.833,2.719,2.409,2.52,2.606,2.864,2.445,2.185,2.614,3.774,2.337,2.502,2.651,1.467,1.382,1.723,1.151,1.273,1.787,1.65,1.347,1.416,1.176,1.202,1.921,1.584,1.295,2.331,1.351,2.072,2.254,1.722,2.284,2.108,1.635,1.689,1.729,1.524,1.692, -"Nov 30, 2020",1.859,2.581,2.733,2.771,2.577,2.734,2.803,2.862,2.736,2.42,2.525,2.648,2.876,2.436,2.219,2.615,3.796,2.328,2.509,2.65,1.471,1.383,1.725,1.15,1.275,1.809,1.664,1.351,1.424,1.176,1.204,1.931,1.591,1.299,2.355,1.353,2.083,2.287,1.746,2.285,2.11,1.645,1.701,1.731,1.536,1.704, -"Dec 07, 2020",1.882,2.614,2.775,2.815,2.588,2.775,2.856,2.888,2.791,2.45,2.542,2.62,2.901,2.486,2.237,2.651,3.848,2.36,2.543,2.679,1.485,1.391,1.744,1.155,1.286,1.822,1.66,1.359,1.445,1.184,1.212,1.976,1.596,1.316,2.384,1.369,2.121,2.317,1.787,2.307,2.143,1.672,1.754,1.791,1.488,1.751, -"Dec 14, 2020",1.9,2.641,2.807,2.892,2.593,2.796,2.891,2.875,2.817,2.472,2.567,2.645,2.969,2.505,2.258,2.681,3.9,2.38,2.576,2.718,1.498,1.407,1.754,1.161,1.307,1.844,1.671,1.369,1.452,1.185,1.219,2.025,1.613,1.328,2.411,1.382,2.129,2.382,1.795,2.319,2.144,1.689,1.769,1.826,1.5,1.777, -"Dec 21, 2020",1.942,2.686,2.838,2.938,2.623,2.821,2.922,2.89,2.838,2.526,2.605,2.71,3.025,2.554,2.308,2.726,3.936,2.417,2.633,2.75,1.54,1.457,1.805,1.218,1.38,1.874,1.702,1.398,1.516,1.203,1.261,2.084,1.639,1.359,2.458,1.411,2.157,2.458,1.823,2.343,2.16,1.716,1.795,1.887,1.505,1.805, -"Dec 28, 2020",1.97,2.711,2.873,2.963,2.657,2.836,2.957,2.954,2.9,2.541,2.603,2.705,3.058,2.576,2.322,2.756,3.942,2.438,2.664,2.781,1.567,1.465,1.877,1.222,1.397,1.92,1.722,1.444,1.54,1.211,1.267,2.107,1.656,1.378,2.474,1.439,2.173,2.463,1.831,2.368,2.18,1.735,1.827,1.915,1.512,1.82, -"Jan 04, 2021",2.012,2.753,2.91,2.947,2.68,2.939,2.975,3.01,2.972,2.572,2.635,2.763,3.083,2.603,2.349,2.815,4.027,2.482,2.738,2.837,1.612,1.525,1.902,1.26,1.448,2.245,1.745,1.477,1.567,1.227,1.278,2.158,1.687,1.443,2.686,1.488,2.212,2.519,1.88,2.382,2.218,1.784,1.881,1.983,1.556,1.834, -"Jan 11, 2021",2.081,2.818,2.975,3.009,2.728,3.018,3.058,3.037,3.025,2.629,2.698,2.823,3.128,2.662,2.404,2.891,4.135,2.56,2.831,2.881,1.686,1.59,1.968,1.321,1.581,2.245,1.791,1.572,1.664,1.329,1.317,2.219,1.754,1.479,2.738,1.573,2.275,2.594,1.94,2.401,2.299,1.86,1.946,2.028,1.658,1.902, -"Jan 18, 2021",2.183,2.881,3.045,3.056,2.818,3.089,3.139,3.066,3.093,2.696,2.792,2.947,3.183,2.729,2.456,2.942,4.159,2.599,2.906,2.915,1.817,1.717,2.083,1.49,1.783,2.274,1.876,1.744,1.799,1.474,1.509,2.316,1.886,1.667,2.789,1.69,2.348,2.663,2.03,2.451,2.374,1.934,2.052,2.088,1.703,1.984, -"Jan 25, 2021",2.197,2.897,3.061,3.072,2.83,3.09,3.146,3.064,3.143,2.708,2.796,2.925,3.205,2.745,2.472,2.964,4.143,2.637,2.918,2.944,1.832,1.716,2.093,1.501,1.691,2.258,1.867,1.754,1.807,1.466,1.624,2.345,1.931,1.69,2.708,1.744,2.358,2.66,2.042,2.468,2.385,1.935,2.02,2.125,1.718,1.987, -"Feb 01, 2021",2.206,2.924,3.086,3.095,2.868,3.115,3.161,3.183,3.157,2.741,2.84,2.953,3.206,2.773,2.505,2.98,4.161,2.647,2.949,2.945,1.836,1.722,2.104,1.484,1.699,2.297,1.876,1.758,1.815,1.459,1.547,2.369,1.93,1.668,2.731,1.764,2.366,2.666,2.037,2.496,2.391,1.934,2.024,2.119,1.709,2.004, -"Feb 08, 2021",2.224,2.93,3.091,3.097,2.891,3.106,3.172,3.131,3.156,2.748,2.85,2.957,3.22,2.779,2.511,2.989,4.145,2.675,2.934,2.979,1.86,1.76,2.156,1.493,1.729,2.354,1.899,1.765,1.854,1.533,1.547,2.383,1.972,1.679,2.744,1.786,2.371,2.678,2.072,2.506,2.378,1.963,2.033,2.141,1.773,2.003, -"Feb 15, 2021",2.295,2.952,3.123,3.117,2.915,3.136,3.228,3.109,3.189,2.777,2.846,2.965,3.239,2.803,2.555,2.99,4.154,2.691,2.945,2.954,1.959,1.889,2.221,1.723,1.928,2.383,1.903,1.853,1.991,1.695,1.683,2.423,2.122,1.739,2.756,1.88,2.423,2.705,2.184,2.514,2.423,2.039,2.137,2.164,1.851,2.09, -"Feb 22, 2021",2.492,3.026,3.204,3.266,2.998,3.168,3.303,3.256,3.232,2.823,2.889,3.084,3.322,2.859,2.558,3.088,4.211,2.855,3.029,3.035,2.226,2.164,2.457,2.067,2.281,2.47,2.035,2.185,2.426,2.047,1.821,2.485,2.379,2.069,2.856,2.19,2.626,2.83,2.698,2.601,2.528,2.169,2.276,2.215,2.038,2.096, -"Mar 01, 2021",2.498,3.045,3.212,3.212,3.005,3.201,3.328,3.359,3.246,2.852,2.945,3.11,3.36,2.882,2.572,3.105,4.224,2.842,3.043,3.076,2.221,2.087,2.394,1.974,2.18,2.481,2.03,2.171,2.426,1.991,1.855,2.468,2.426,2.108,2.863,2.283,2.653,2.841,2.738,2.615,2.565,2.183,2.273,2.219,2.085,2.1, -"Mar 08, 2021",2.415,3.045,3.223,3.22,3.018,3.201,3.336,3.322,3.284,2.861,2.971,3.112,3.397,2.886,2.58,3.083,4.244,2.772,3.009,3.092,2.091,2.005,2.338,1.765,2.045,2.466,2.035,1.982,2.22,1.788,1.743,2.492,2.334,1.923,2.817,2.046,2.597,2.846,2.496,2.606,2.57,2.134,2.178,2.236,2.031,2.122, -"Mar 15, 2021",2.358,3.039,3.219,3.2,3.014,3.182,3.366,3.226,3.269,2.843,2.975,3.076,3.375,2.863,2.569,3.089,4.233,2.763,3.008,3.125,2.007,1.897,2.221,1.639,1.903,2.472,2.006,1.892,2.106,1.639,1.651,2.444,2.253,1.853,2.801,1.987,2.514,2.839,2.168,2.602,2.56,2.105,2.157,2.22,1.988,2.078, -"Mar 22, 2021",2.322,3.03,3.209,3.18,2.998,3.176,3.366,3.171,3.266,2.82,2.993,3.075,3.362,2.83,2.55,3.096,4.233,2.759,2.989,3.179,1.961,1.854,2.161,1.559,1.848,2.451,1.997,1.859,2.035,1.589,1.627,2.415,2.129,1.802,2.79,1.93,2.482,2.779,2.129,2.603,2.525,2.055,2.095,2.218,1.916,2.069, -"Mar 29, 2021",2.295,3.014,3.195,3.182,2.974,3.159,3.39,3.041,3.257,2.805,2.997,3.05,3.391,2.819,2.535,3.082,4.222,2.75,2.975,3.162,1.929,1.814,2.118,1.542,1.824,2.473,2.025,1.843,1.966,1.573,1.591,2.365,2.08,1.787,2.792,1.871,2.462,2.773,2.065,2.603,2.516,2.025,2.056,2.209,1.89,2.029, -"Oct 04, 2021",2.59,3.256,3.375,3.548,3.069,3.453,3.38,3.472,3.441,3.129,3.091,3.37,3.524,3.162,2.893,3.295,4.799,2.959,3.282,3.241,2.232,2.122,2.448,1.928,2.154,2.55,2.393,2.149,2.167,2.034,1.861,2.781,2.508,2.09,3.063,2.129,2.752,3.228,2.31,2.831,2.826,2.322,2.441,2.426,2.045,2.561, -"Oct 11, 2021",2.657,3.319,3.457,3.583,3.162,3.518,3.518,3.485,3.506,3.179,3.146,3.436,3.623,3.238,2.897,3.361,4.852,3.048,3.342,3.301,2.305,2.172,2.472,2,2.224,2.629,2.435,2.254,2.336,2.094,1.964,2.842,2.579,2.125,3.099,2.241,2.825,3.256,2.42,2.885,2.899,2.402,2.521,2.541,2.101,2.673, -"Oct 18, 2021",2.691,3.357,3.482,3.613,3.194,3.561,3.511,3.58,3.537,3.241,3.266,3.544,3.675,3.292,2.953,3.381,4.88,3.048,3.354,3.353,2.33,2.175,2.517,2.033,2.238,2.672,2.486,2.309,2.355,2.1,2.004,2.635,2.582,2.177,3.144,2.256,2.845,3.229,2.457,2.889,2.938,2.423,2.543,2.579,2.116,2.683, -"Oct 25, 2021",2.712,3.382,3.503,3.628,3.27,3.561,3.526,3.58,3.529,3.276,3.281,3.523,3.636,3.334,2.999,3.393,4.771,3.075,3.36,3.361,2.351,2.181,2.55,2.086,2.276,2.727,2.464,2.333,2.388,2.099,2.013,2.659,2.607,2.205,3.142,2.307,2.851,3.249,2.464,2.897,2.921,2.439,2.524,2.627,2.132,2.691, -"Nov 01, 2021",2.722,3.382,3.506,3.639,3.235,3.552,3.558,3.564,3.538,3.258,3.288,3.576,3.609,3.323,2.958,3.412,4.805,3.091,3.379,3.377,2.368,2.275,2.572,2.032,2.286,2.737,2.462,2.339,2.364,2.105,2.017,2.713,2.627,2.212,3.177,2.317,2.872,3.285,2.475,2.912,2.955,2.488,2.556,2.665,2.219,2.722, -"Nov 08, 2021",2.727,3.406,3.54,3.661,3.263,3.597,3.578,3.604,3.599,3.285,3.287,3.556,3.633,3.367,2.963,3.422,4.809,3.093,3.367,3.425,2.369,2.233,2.583,2.021,2.275,2.739,2.475,2.341,2.391,2.123,2.017,2.688,2.626,2.214,3.186,2.348,2.873,3.275,2.479,2.926,2.941,2.492,2.582,2.627,2.226,2.695, -"Nov 15, 2021",2.733,3.396,3.533,3.633,3.276,3.595,3.581,3.63,3.568,3.271,3.32,3.449,3.662,3.358,2.962,3.42,4.851,3.079,3.36,3.445,2.377,2.237,2.6,2.012,2.283,2.745,2.473,2.352,2.42,2.112,2.028,2.718,2.638,2.209,3.181,2.339,2.882,3.282,2.48,2.945,2.962,2.509,2.596,2.673,2.251,2.695, -"Nov 22, 2021",2.722,3.383,3.506,3.604,3.247,3.574,3.539,3.646,3.552,3.263,3.303,3.458,3.642,3.347,2.948,3.414,4.808,3.065,3.354,3.431,2.362,2.234,2.598,1.979,2.24,2.743,2.45,2.33,2.387,2.11,2.027,2.687,2.643,2.195,3.166,2.318,2.879,3.284,2.492,2.95,2.945,2.489,2.566,2.654,2.239,2.648, -"Nov 29, 2021",2.717,3.385,3.516,3.611,3.251,3.609,3.566,3.776,3.507,3.256,3.3,3.446,3.634,3.341,2.939,3.421,4.788,3.064,3.376,3.425,2.358,2.219,2.592,1.97,2.239,2.743,2.444,2.35,2.387,2.103,2.025,2.681,2.642,2.195,3.161,2.311,2.88,3.275,2.482,2.95,2.95,2.486,2.567,2.656,2.235,2.626, -"Dec 06, 2021",2.711,3.378,3.503,3.587,3.211,3.583,3.586,3.775,3.495,3.255,3.287,3.435,3.6,3.34,2.941,3.41,4.849,3.042,3.34,3.442,2.346,2.192,2.598,1.933,2.202,2.749,2.446,2.328,2.377,2.008,2.024,2.684,2.653,2.152,3.177,2.293,2.871,3.271,2.491,2.953,2.915,2.488,2.562,2.679,2.241,2.613, -"Dec 13, 2021",2.696,3.365,3.497,3.578,3.222,3.563,3.568,3.772,3.503,3.232,3.285,3.434,3.594,3.323,2.909,3.401,4.808,3.047,3.322,3.444,2.339,2.164,2.6,1.927,2.185,2.799,2.443,2.333,2.372,1.99,2.021,2.705,2.596,2.151,3.218,2.285,2.865,3.272,2.492,2.957,2.898,2.472,2.528,2.675,2.242,2.59, -"Dec 20, 2021",2.699,3.375,3.511,3.587,3.26,3.529,3.624,3.722,3.492,3.245,3.283,3.396,3.58,3.343,2.923,3.404,4.809,3.041,3.328,3.452,2.338,2.159,2.629,1.912,2.181,2.798,2.439,2.343,2.378,1.983,2.021,2.696,2.613,2.153,3.219,2.278,2.858,3.272,2.486,2.946,2.891,2.477,2.536,2.676,2.249,2.59, -"Dec 27, 2021",2.702,3.38,3.513,3.569,3.248,3.518,3.661,3.697,3.491,3.244,3.283,3.381,3.567,3.351,2.913,3.422,4.845,3.042,3.363,3.446,2.339,2.159,2.632,1.901,2.18,2.801,2.437,2.345,2.379,1.98,2.02,2.699,2.589,2.155,3.23,2.287,2.862,3.278,2.491,2.946,2.896,2.488,2.542,2.685,2.27,2.598, -"Jan 03, 2022",2.701,3.368,3.509,3.625,3.247,3.512,3.627,3.701,3.474,3.235,3.281,3.383,3.595,3.335,2.904,3.396,4.814,3.052,3.317,3.437,2.339,2.166,2.605,1.898,2.18,2.795,2.429,2.351,2.37,1.985,2.02,2.691,2.6,2.155,3.256,2.279,2.857,3.27,2.482,2.946,2.891,2.492,2.55,2.665,2.286,2.592, -"Jan 10, 2022",2.705,3.373,3.527,3.596,3.264,3.505,3.665,3.709,3.533,3.235,3.301,3.39,3.577,3.329,2.9,3.397,4.815,3.057,3.324,3.429,2.346,2.171,2.606,1.886,2.187,2.794,2.443,2.369,2.388,1.982,2.026,2.685,2.616,2.171,3.254,2.293,2.859,3.268,2.478,2.961,2.892,2.503,2.561,2.661,2.299,2.63, -"Jan 17, 2022",2.724,3.392,3.559,3.65,3.297,3.521,3.705,3.716,3.548,3.246,3.308,3.426,3.582,3.35,2.905,3.412,4.806,3.085,3.325,3.445,2.364,2.208,2.63,1.907,2.2,2.803,2.459,2.375,2.397,2.023,2.097,2.708,2.626,2.174,3.257,2.301,2.88,3.337,2.481,3.012,2.892,2.505,2.554,2.67,2.302,2.648, -"Jan 24, 2022",2.744,3.414,3.593,3.676,3.316,3.528,3.773,3.759,3.58,3.279,3.329,3.455,3.591,3.402,2.913,3.408,4.821,3.094,3.304,3.461,2.382,2.217,2.644,1.919,2.21,2.812,2.477,2.415,2.408,2.026,2.11,2.728,2.629,2.215,3.265,2.339,2.885,3.341,2.485,3.014,2.9,2.518,2.573,2.682,2.312,2.649, -"Jan 31, 2022",2.775,3.45,3.629,3.763,3.337,3.58,3.777,3.768,3.619,3.329,3.365,3.502,3.619,3.454,2.964,3.428,4.848,3.11,3.333,3.472,2.413,2.249,2.699,1.944,2.221,2.823,2.502,2.44,2.434,2.042,2.135,2.745,2.669,2.244,3.271,2.387,2.895,3.35,2.506,3.028,2.901,2.525,2.581,2.688,2.313,2.673, -"Feb 07, 2022",2.826,3.518,3.708,3.847,3.405,3.625,3.881,3.796,3.71,3.382,3.465,3.529,3.657,3.499,3.028,3.502,4.911,3.12,3.434,3.551,2.463,2.354,2.775,1.986,2.259,2.838,2.542,2.461,2.507,2.061,2.136,2.778,2.715,2.256,3.293,2.44,2.935,3.381,2.568,3.073,2.931,2.586,2.623,2.731,2.423,2.69, -"Feb 14, 2022",2.831,3.522,3.699,3.821,3.392,3.646,3.872,3.853,3.683,3.393,3.491,3.552,3.653,3.526,3.015,3.512,4.911,3.117,3.443,3.576,2.467,2.382,2.786,1.985,2.26,2.838,2.54,2.456,2.507,2.06,2.139,2.792,2.72,2.257,3.319,2.448,2.947,3.39,2.572,3.074,2.951,2.591,2.623,2.738,2.436,2.694, -"Feb 21, 2022",2.84,3.539,3.728,3.853,3.441,3.663,3.909,3.865,3.687,3.401,3.5,3.558,3.681,3.525,3.039,3.524,4.924,3.126,3.451,3.595,2.474,2.387,2.771,1.993,2.267,2.831,2.537,2.458,2.522,2.136,2.139,2.821,2.708,2.26,3.327,2.457,2.959,3.4,2.595,3.087,2.96,2.595,2.634,2.737,2.432,2.697, -"Feb 28, 2022",2.887,3.61,3.817,3.931,3.521,3.773,3.99,3.933,3.793,3.478,3.585,3.649,3.747,3.598,3.122,3.565,4.951,3.149,3.491,3.654,2.516,2.413,2.792,2.046,2.278,2.849,2.564,2.538,2.562,2.17,2.189,2.875,2.738,2.295,3.329,2.524,3.007,3.45,2.683,3.133,2.98,2.608,2.649,2.746,2.441,2.72, -"Mar 07, 2022",2.994,3.727,3.954,4.181,3.671,3.882,4.104,4.049,3.875,3.587,3.642,3.78,3.831,3.702,3.235,3.674,5.028,3.245,3.604,3.764,2.609,2.499,2.872,2.147,2.426,2.919,2.777,2.625,2.649,2.306,2.236,2.958,2.825,2.344,3.355,2.563,3.107,3.478,2.843,3.189,3.093,2.702,2.786,2.844,2.476,2.813, -,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Back to Contents,Data 1: Residential Propane Weekly Heating Oil and Propane Prices (October - March),,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +Sourcekey,W_EPLLPA_PRS_NUS_DPG,W_EPLLPA_PRS_R10_DPG,W_EPLLPA_PRS_R1X_DPG,W_EPLLPA_PRS_SCT_DPG,W_EPLLPA_PRS_SME_DPG,W_EPLLPA_PRS_SMA_DPG,W_EPLLPA_PRS_SNH_DPG,W_EPLLPA_PRS_SRI_DPG,W_EPLLPA_PRS_SVT_DPG,W_EPLLPA_PRS_R1Y_DPG,W_EPLLPA_PRS_SDE_DPG,W_EPLLPA_PRS_SMD_DPG,W_EPLLPA_PRS_SNJ_DPG,W_EPLLPA_PRS_SNY_DPG,W_EPLLPA_PRS_SPA_DPG,W_EPLLPA_PRS_R1Z_DPG,W_EPLLPA_PRS_SFL_DPG,W_EPLLPA_PRS_SGA_DPG,W_EPLLPA_PRS_SNC_DPG,W_EPLLPA_PRS_SVA_DPG,W_EPLLPA_PRS_R20_DPG,W_EPLLPA_PRS_SIL_DPG,W_EPLLPA_PRS_SIN_DPG,W_EPLLPA_PRS_SIA_DPG,W_EPLLPA_PRS_SKS_DPG,W_EPLLPA_PRS_SKY_DPG,W_EPLLPA_PRS_SMI_DPG,W_EPLLPA_PRS_SMN_DPG,W_EPLLPA_PRS_SMO_DPG,W_EPLLPA_PRS_SNE_DPG,W_EPLLPA_PRS_SND_DPG,W_EPLLPA_PRS_SOH_DPG,W_EPLLPA_PRS_SOK_DPG,W_EPLLPA_PRS_SSD_DPG,W_EPLLPA_PRS_STN_DPG,W_EPLLPA_PRS_SWI_DPG,W_EPLLPA_PRS_R30_DPG,W_EPLLPA_PRS_SAL_DPG,W_EPLLPA_PRS_SAR_DPG,W_EPLLPA_PRS_SMS_DPG,W_EPLLPA_PRS_STX_DPG,W_EPLLPA_PRS_R40_DPG,W_EPLLPA_PRS_SCO_DPG,W_EPLLPA_PRS_SID_DPG,W_EPLLPA_PRS_SMT_DPG,W_EPLLPA_PRS_SUT_DPG +Date,Weekly U.S. Propane Residential Price (Dollars per Gallon),Weekly East Coast (PADD 1) Propane Residential Price (Dollars per Gallon),Weekly New England (PADD 1A) Propane Residential Price (Dollars per Gallon),Weekly Connecticut Propane Residential Price (Dollars per Gallon),Weekly Maine Propane Residential Price (Dollars per Gallon),Weekly Massachusetts Propane Residential Price (Dollars per Gallon),Weekly New Hampshire Propane Residential Price (Dollars per Gallon),Weekly Rhode Island Propane Residential Price (Dollars per Gallon),Weekly Vermont Propane Residential Price (Dollars per Gallon),Weekly Central Atlantic (PADD 1B) Propane Residential Price (Dollars per Gallon),Weekly Delaware Propane Residential Price (Dollars per Gallon),Weekly Maryland Propane Residential Price (Dollars per Gallon),Weekly New Jersey Propane Residential Price (Dollars per Gallon),Weekly New York Propane Residential Price (Dollars per Gallon),Weekly Pennsylvania Propane Residential Price (Dollars per Gallon),Weekly Lower Atlantic (PADD 1C) Propane Residential Price (Dollars per Gallon),Weekly Florida Propane Residential Price (Dollars per Gallon),Weekly Georgia Propane Residential Price (Dollars per Gallon),Weekly North Carolina Propane Residential Price (Dollars per Gallon),Weekly Virginia Propane Residential Price (Dollars per Gallon),Weekly Midwest (PADD 2) Propane Residential Price (Dollars per Gallon),Weekly Illinois Propane Residential Price (Dollars per Gallon),Weekly Indiana Propane Residential Price (Dollars per Gallon),Weekly Iowa Propane Residential Price (Dollars per Gallon),Weekly Kansas Propane Residential Price (Dollars per Gallon),Weekly Kentucky Propane Residential Price (Dollars per Gallon),Weekly Michigan Propane Residential Price (Dollars per Gallon),Weekly Minnesota Propane Residential Price (Dollars per Gallon),Weekly Missouri Propane Residential Price (Dollars per Gallon),Weekly Nebraska Propane Residential Price (Dollars per Gallon),Weekly North Dakota Propane Residential Price (Dollars per Gallon),Weekly Ohio Propane Residential Price (Dollars per Gallon),Weekly Oklahoma Propane Residential Price (Dollars per Gallon),Weekly South Dakota Propane Residential Price (Dollars per Gallon),Weekly Tennessee Propane Residential Price (Dollars per Gallon),Weekly Wisconsin Propane Residential Price (Dollars per Gallon),Weekly Weekly Gulf Coast (PADD 3) Propane Residential Price (Dollars per Gallon),Weekly Alabama Propane Residential Price (Dollars per Gallon),Weekly Arkansas Propane Residential Price (Dollars per Gallon),Weekly Mississippi Propane Residential Price (Dollars per Gallon),Weekly Texas Propane Residential Price (Dollars per Gallon),Weekly Weekly Rocky Mountain (PADD 4) Propane Residential Price (Dollars per Gallon),Weekly Colorado Propane Residential Price (Dollars per Gallon),Weekly Idaho Propane Residential Price (Dollars per Gallon),Weekly Montana Propane Residential Price (Dollars per Gallon),Weekly Utah Propane Residential Price (Dollars per Gallon) +"Oct 01, 1990",1.042,1.263,1.229,1.292,1.199,1.248,1.235,1.32,1.172,1.342,1.234,1.28,1.356,1.443,1.199,1.226,,,1.227,1.224,0.925,0.938,0.928,0.795,0.801,,0.985,0.992,0.901,0.751,0.772,1.135,,0.743,,0.977,,,,,,,,,, +"Oct 15, 1990",1.083,1.296,1.272,1.299,1.216,1.304,1.281,1.348,1.263,1.377,1.32,1.352,1.377,1.448,1.259,1.247,,,1.258,1.22,0.971,0.967,0.995,0.838,0.857,,1.046,1.019,0.958,0.808,0.822,1.194,,0.775,,1.016,,,,,,,,,, +"Nov 05, 1990",1.06,1.292,1.305,1.348,1.274,1.328,1.325,1.399,1.25,1.367,1.298,1.355,1.377,1.433,1.248,1.212,,,1.204,1.229,0.938,0.924,0.994,0.773,0.809,,1.029,0.968,0.924,0.757,0.795,1.184,,0.768,,1.004,,,,,,,,,, +"Nov 19, 1990",1.046,1.283,1.275,1.308,1.237,1.332,1.233,1.41,1.265,1.361,1.297,1.356,1.378,1.425,1.234,1.222,,,1.204,1.265,0.921,0.916,0.995,0.766,0.795,,1.035,0.936,0.888,0.749,0.789,1.183,,0.759,,0.972,,,,,,,,,, +"Dec 03, 1990",1.038,1.283,1.291,1.302,1.282,1.333,1.246,1.385,1.287,1.36,1.291,1.334,1.378,1.433,1.235,1.206,,,1.186,1.25,0.908,0.883,0.992,0.728,0.753,,1.028,0.944,0.875,0.72,0.785,1.161,,0.752,,0.983,,,,,,,,,, +"Dec 17, 1990",1.001,1.273,1.29,1.281,1.281,1.317,1.283,1.477,1.28,1.364,1.272,1.361,1.354,1.437,1.24,1.172,,,1.148,1.226,0.857,0.822,0.958,0.681,0.67,,1.014,0.871,0.835,0.666,0.728,1.136,,0.717,,0.911,,,,,,,,,, +"Jan 07, 1991",1.001,1.275,1.307,1.275,1.383,1.306,1.268,1.415,1.284,1.356,1.273,1.357,1.349,1.423,1.234,1.169,,,1.157,1.195,0.856,0.835,0.967,0.646,0.676,,1,0.865,0.824,0.669,0.758,1.166,,0.715,,0.919,,,,,,,,,, +"Jan 21, 1991",1.003,1.272,1.293,1.259,1.336,1.296,1.264,1.453,1.297,1.359,1.27,1.358,1.369,1.431,1.22,1.173,,,1.158,1.207,0.86,0.838,0.958,0.67,0.679,,1.003,0.889,0.814,0.661,0.77,1.189,,0.706,,0.906,,,,,,,,,, +"Feb 04, 1991",0.957,1.246,1.267,1.228,1.315,1.275,1.233,1.388,1.267,1.335,1.265,1.35,1.332,1.401,1.201,1.144,,,1.121,1.196,0.805,0.772,0.932,0.583,0.616,,0.951,0.822,0.765,0.603,0.714,1.156,,0.647,,0.862,,,,,,,,,, +"Feb 18, 1991",0.92,1.212,1.238,1.193,1.306,1.251,1.193,1.375,1.224,1.309,1.221,1.331,1.291,1.396,1.132,1.097,,,1.074,1.15,0.766,0.751,0.906,0.569,0.535,,0.922,0.795,0.722,0.544,0.637,1.117,,0.584,,0.811,,,,,,,,,, +"Mar 04, 1991",0.887,1.183,1.193,1.179,1.216,1.225,1.177,1.316,1.153,1.288,1.167,1.259,1.258,1.391,1.139,1.077,,,1.05,1.14,0.731,0.728,0.892,0.527,0.525,,0.897,0.753,0.69,0.51,0.574,1.041,,0.568,,0.777,,,,,,,,,, +"Mar 18, 1991",0.881,1.176,1.185,1.176,1.214,1.197,1.137,1.285,1.192,1.284,1.165,1.253,1.251,1.391,1.129,1.07,,,1.021,1.182,0.725,0.724,0.878,0.528,0.535,,0.886,0.757,0.681,0.516,0.548,1.018,,0.56,,0.771,,,,,,,,,, +"Oct 07, 1991",0.867,1.147,1.177,1.192,1.294,1.153,1.064,1.35,1.17,1.243,1.172,1.22,1.246,1.313,1.127,1.012,,,0.987,1.097,0.707,,0.785,0.578,0.564,,0.856,0.715,0.681,0.552,0.579,0.956,,0.588,,0.7,,,,,,,,,, +"Oct 21, 1991",0.887,1.168,1.191,1.207,1.296,1.153,1.092,1.332,1.199,1.266,1.192,1.224,1.274,1.345,1.147,1.039,,,1.019,1.107,0.726,,0.799,,0.593,,0.877,0.716,0.711,0.588,0.618,0.947,,0.615,,0.721,,,,,,,,,, +"Nov 04, 1991",0.899,1.178,1.21,1.207,1.318,1.202,1.121,1.371,1.183,1.266,1.199,1.203,1.284,1.351,1.145,1.05,,,1.029,1.12,0.741,,0.806,0.606,0.604,,0.888,0.732,0.737,0.597,0.618,0.971,,0.626,,0.739,,,,,,,,,, +"Nov 18, 1991",0.917,1.189,1.213,1.199,1.34,1.206,1.11,1.372,1.191,1.274,1.222,1.214,1.285,1.357,1.153,1.072,,,1.056,1.127,0.763,,0.851,,0.623,,0.903,0.775,0.741,0.617,0.65,0.973,,0.65,,0.774,,,,,,,,,, +"Dec 02, 1991",0.923,1.197,1.216,1.198,1.335,1.207,1.12,1.377,1.203,1.293,1.223,1.215,1.29,1.395,1.159,1.075,,,1.053,1.147,0.768,,0.855,0.634,0.621,,0.9,0.785,0.746,0.615,0.655,0.974,,0.65,,0.786,,,,,,,,,, +"Dec 16, 1991",0.916,1.197,1.215,1.189,1.336,1.209,1.12,1.379,1.208,1.295,1.227,1.244,1.278,1.393,1.154,1.073,,,1.051,1.146,0.757,,0.85,,0.598,,0.902,0.776,0.736,0.603,0.66,0.966,,0.641,,0.784,,,,,,,,,, +"Jan 06, 1992",0.896,1.18,1.205,1.162,1.336,1.189,1.121,1.384,1.203,1.291,1.217,1.254,1.269,1.378,1.162,1.035,,,1.013,1.112,0.735,,0.838,0.577,0.549,,0.884,0.752,0.715,0.567,0.639,0.967,,0.615,,0.759,,,,,,,,,, +"Jan 20, 1992",0.888,1.173,1.199,1.147,1.336,1.179,1.121,1.364,1.197,1.283,1.2,1.25,1.276,1.372,1.146,1.029,,,1.005,1.11,0.727,,0.836,,0.533,,0.852,0.753,0.712,0.548,0.612,0.982,,0.599,,0.758,,,,,,,,,, +"Feb 03, 1992",0.883,1.173,1.197,1.145,1.335,1.179,1.118,1.365,1.197,1.282,1.192,1.226,1.28,1.381,1.139,1.033,,,1.01,1.109,0.719,,0.841,0.53,0.525,,0.848,0.738,0.718,0.536,0.594,0.974,,0.581,,0.751,,,,,,,,,, +"Feb 17, 1992",0.877,1.169,1.192,1.126,1.335,1.173,1.118,1.349,1.194,1.274,1.19,1.224,1.28,1.379,1.106,1.034,,,1.011,1.112,0.712,,0.837,,0.522,,0.844,0.734,0.714,0.53,0.581,0.936,,0.585,,0.747,,,,,,,,,, +"Mar 02, 1992",0.871,1.166,1.187,1.124,1.336,1.166,1.105,1.337,1.191,1.273,1.179,1.222,1.277,1.379,1.107,1.032,,,1.009,1.112,0.705,,0.832,0.519,0.518,,0.841,0.729,0.707,0.528,0.575,0.927,,0.579,,0.732,,,,,,,,,, +"Mar 16, 1992",0.863,1.161,1.183,1.12,1.333,1.154,1.105,1.337,1.19,1.262,1.177,1.202,1.275,1.367,1.102,1.031,,,1.007,1.11,0.694,,0.833,,0.514,,0.833,0.712,0.68,0.528,0.562,0.922,,0.57,,0.73,,,,,,,,,, +"Oct 05, 1992",0.85,1.143,1.161,1.183,1.259,1.147,1.096,1.305,1.134,1.248,1.133,1.233,1.228,1.381,1.101,0.997,,,0.974,1.095,0.695,,0.795,0.514,0.564,,0.819,0.718,0.679,,0.566,0.865,,0.575,,0.699,,,,,,,,,, +"Oct 19, 1992",0.865,1.158,1.177,1.18,1.293,1.15,1.11,1.307,1.152,1.256,1.144,1.238,1.219,1.373,1.152,1.006,,,0.983,1.099,0.708,,0.801,,0.562,,0.839,0.731,0.689,,0.576,0.849,,0.584,,0.707,,,,,,,,,, +"Nov 02, 1992",0.868,1.153,1.167,1.174,1.252,1.153,1.11,1.31,1.156,1.255,1.15,1.241,1.221,1.374,1.148,1.003,,,0.98,1.099,0.714,,0.814,0.542,0.576,,0.848,0.731,0.699,,0.586,0.864,,0.594,,0.705,,,,,,,,,, +"Nov 16, 1992",0.876,1.154,1.164,1.177,1.25,1.154,1.11,1.316,1.139,1.257,1.15,1.24,1.209,1.374,1.155,1.007,,,0.985,1.1,0.727,,0.836,,0.587,,0.845,0.748,0.709,,0.602,0.873,,0.601,,0.73,,,,,,,,,, +"Dec 07, 1992",0.89,1.157,1.165,1.182,1.246,1.156,1.104,1.316,1.143,1.264,1.132,1.243,1.21,1.376,1.175,1.008,,,0.987,1.098,0.745,,0.853,0.588,0.605,,0.85,0.77,0.727,,0.628,0.887,,0.635,,0.744,,,,,,,,,, +"Dec 21, 1992",0.899,1.157,1.163,1.176,1.243,1.157,1.103,1.323,1.139,1.264,1.134,1.243,1.21,1.376,1.176,1.008,,,0.987,1.099,0.761,,0.856,,0.62,,0.867,0.789,0.739,,0.637,0.892,,0.646,,0.769,,,,,,,,,, +"Jan 04, 1993",0.924,1.161,1.167,1.182,1.246,1.156,1.104,1.338,1.15,1.267,1.143,1.252,1.211,1.378,1.178,1.014,,,0.993,1.106,0.797,,0.873,0.641,0.68,,0.885,0.834,0.777,,0.667,0.903,,0.688,,0.819,,,,,,,,,, +"Jan 11, 1993",1.02,1.169,1.173,1.186,1.243,1.159,1.114,1.345,1.167,1.276,1.154,1.265,1.229,1.382,1.186,1.025,,,1.003,1.116,0.94,,0.911,0.828,0.888,,0.938,1.024,0.913,,0.886,0.936,,0.898,,1.021,,,,,,,,,, +"Jan 18, 1993",1.002,1.167,1.178,1.187,1.244,1.158,1.115,1.355,1.185,1.267,1.159,1.266,1.177,1.384,1.185,1.024,,,1.004,1.109,0.913,,0.934,0.764,0.83,,0.948,1.007,0.902,,0.901,0.948,,0.825,,0.934,,,,,,,,,, +"Jan 25, 1993",0.968,1.172,1.179,1.183,1.257,1.173,1.125,1.352,1.169,1.28,1.155,1.267,1.233,1.386,1.191,1.023,,,1.001,1.116,0.857,,0.935,0.688,0.717,,0.941,0.918,0.835,,0.783,0.954,,0.741,,0.88,,,,,,,,,, +"Feb 01, 1993",0.954,1.168,1.183,1.185,1.255,1.161,1.127,1.357,1.193,1.268,1.155,1.266,1.182,1.387,1.183,1.02,,,1,1.109,0.837,,0.926,0.661,0.696,,0.944,0.884,0.822,,0.747,0.95,,0.718,,0.858,,,,,,,,,, +"Feb 15, 1993",0.937,1.169,1.183,1.186,1.255,1.162,1.137,1.351,1.185,1.271,1.166,1.273,1.182,1.391,1.183,1.019,,,0.998,1.111,0.81,,0.926,,0.653,,0.941,0.838,0.758,,0.696,0.934,,0.688,,0.834,,,,,,,,,, +"Mar 01, 1993",0.968,1.181,1.192,1.205,1.258,1.165,1.14,1.352,1.198,1.293,1.186,1.302,1.183,1.435,1.185,1.021,,,1.001,1.113,0.851,,0.927,0.704,0.768,,0.946,0.886,0.843,,0.668,0.934,,0.71,,0.878,,,,,,,,,, +"Mar 15, 1993",0.944,1.18,1.193,1.205,1.258,1.167,1.142,1.362,1.197,1.302,1.188,1.313,1.183,1.45,1.192,1.004,,,0.978,1.12,0.814,,0.928,,0.676,,0.945,0.854,0.782,,0.66,0.937,,0.697,,0.839,,,,,,,,,, +"Apr 05, 1993",0.935,1.185,1.194,1.208,1.261,1.178,1.147,1.353,1.184,1.314,1.203,1.309,1.239,1.451,1.192,1.006,,,0.975,1.139,0.801,,0.916,0.624,0.668,,0.927,0.83,0.755,,0.642,0.934,,0.688,,0.816,,,,,,,,,, +"Apr 19, 1993",0.924,1.169,1.195,1.207,1.254,1.163,1.143,1.34,1.21,1.277,1.175,1.297,1.186,1.413,1.185,1.005,,,0.977,1.128,0.791,,0.919,,0.657,,0.924,0.821,0.741,,0.618,0.927,,0.678,,0.813,,,,,,,,,, +"Oct 04, 1993",0.87,1.101,1.155,1.122,1.258,1.138,1.102,1.293,1.147,1.181,1.103,1.187,1.186,1.233,1.138,0.952,,,0.927,1.048,0.74,,0.798,0.605,0.62,,0.84,0.758,0.707,,0.614,0.874,,0.621,,0.773,,,,,,,,,, +"Oct 18, 1993",0.872,1.102,1.156,1.129,1.255,1.144,1.089,1.308,1.145,1.183,1.113,1.191,1.186,1.234,1.138,0.953,,,0.927,1.049,0.743,,0.815,0.6,0.621,,0.844,0.77,0.706,,0.622,0.877,,0.639,,0.768,,,,,,,,,, +"Nov 01, 1993",0.876,1.103,1.155,1.119,1.256,1.148,1.09,1.308,1.146,1.182,1.113,1.191,1.191,1.225,1.138,0.956,,,0.931,1.049,0.747,,0.825,0.604,0.622,,0.845,0.771,0.725,,0.624,0.878,,0.639,,0.765,,,,,,,,,, +"Nov 15, 1993",0.88,1.107,1.158,1.127,1.254,1.152,1.09,1.305,1.147,1.184,1.112,1.192,1.193,1.231,1.14,0.963,,,0.94,1.048,0.749,,0.833,0.611,0.628,,0.849,0.772,0.728,,0.625,0.873,,0.644,,0.763,,,,,,,,,, +"Dec 06, 1993",0.882,1.109,1.159,1.125,1.254,1.155,1.098,1.304,1.145,1.187,1.112,1.199,1.193,1.232,1.143,0.965,,,0.943,1.048,0.752,,0.835,0.613,0.628,,0.85,0.776,0.736,,0.63,0.87,,0.644,,0.768,,,,,,,,,, +"Dec 20, 1993",0.88,1.11,1.161,1.138,1.253,1.154,1.098,1.303,1.144,1.187,1.113,1.199,1.193,1.235,1.142,0.968,,,0.947,1.047,0.748,,0.842,0.599,0.613,,0.85,0.766,0.735,,0.627,0.872,,0.637,,0.767,,,,,,,,,, +"Jan 03, 1994",0.88,1.111,1.161,1.144,1.253,1.154,1.098,1.295,1.141,1.187,1.114,1.196,1.196,1.237,1.142,0.969,,,0.947,1.048,0.747,,0.838,0.593,0.612,,0.85,0.773,0.734,,0.624,0.876,,0.631,,0.762,,,,,,,,,, +"Jan 17, 1994",0.884,1.118,1.161,1.143,1.253,1.151,1.099,1.295,1.144,1.199,1.138,1.203,1.198,1.244,1.161,0.979,,,0.959,1.054,0.751,,0.847,0.593,0.612,,0.854,0.779,0.738,,0.628,0.882,,0.638,,0.767,,,,,,,,,, +"Jan 31, 1994",0.896,1.135,1.168,1.155,1.254,1.155,1.106,1.296,1.156,1.21,1.181,1.256,1.2,1.251,1.155,1.009,,,0.992,1.073,0.759,,0.873,0.591,0.612,,0.87,0.789,0.739,,0.634,0.893,,0.634,,0.779,,,,,,,,,, +"Feb 07, 1994",0.905,1.146,1.177,1.153,1.26,1.158,1.133,1.3,1.171,1.227,1.2,1.279,1.226,1.264,1.169,1.015,,,0.999,1.074,0.767,,0.876,0.598,0.616,,0.878,0.793,0.745,,0.641,0.899,,0.64,,0.795,,,,,,,,,, +"Feb 14, 1994",0.909,1.151,1.183,1.166,1.261,1.166,1.135,1.306,1.174,1.234,1.228,1.28,1.247,1.269,1.168,1.017,,,1,1.079,0.768,,0.872,0.603,0.619,,0.883,0.792,0.74,,0.642,0.9,,0.64,,0.796,,,,,,,,,, +"Feb 21, 1994",0.908,1.154,1.182,1.155,1.264,1.166,1.143,1.313,1.174,1.234,1.225,1.28,1.246,1.268,1.172,1.027,,,1.013,1.079,0.767,,0.872,0.598,0.617,,0.887,0.784,0.746,,0.642,0.899,,0.64,,0.795,,,,,,,,,, +"Feb 28, 1994",0.908,1.154,1.184,1.156,1.273,1.166,1.143,1.314,1.172,1.233,1.223,1.281,1.245,1.264,1.172,1.026,,,1.013,1.074,0.767,,0.873,0.597,0.616,,0.888,0.782,0.745,,0.639,0.898,,0.642,,0.795,,,,,,,,,, +"Mar 07, 1994",0.905,1.152,1.183,1.152,1.273,1.168,1.144,1.312,1.169,1.234,1.201,1.291,1.246,1.264,1.173,1.02,,,1.006,1.073,0.763,,0.873,0.59,0.614,,0.888,0.77,0.744,,0.639,0.896,,0.64,,0.789,,,,,,,,,, +"Mar 21, 1994",0.898,1.148,1.182,1.148,1.273,1.164,1.147,1.315,1.169,1.233,1.193,1.297,1.244,1.262,1.172,1.011,,,0.995,1.071,0.752,,0.864,0.579,0.603,,0.886,0.756,0.737,,0.63,0.891,,0.643,,0.763,,,,,,,,,, +"Oct 03, 1994",0.853,1.127,1.14,1.135,1.266,1.106,1.127,1.29,1.125,1.163,1.141,1.15,1.239,1.163,1.116,1.039,,,1,1.094,0.718,,0.782,0.558,,0.923,0.792,0.703,0.636,,0.584,0.848,,0.624,,0.743,,,,,,,,,, +"Oct 17, 1994",0.838,1.141,1.133,1.136,1.276,1.112,1.13,1.249,1.083,1.205,1.148,1.151,1.229,1.246,1.128,1.044,,,1.007,1.093,0.711,,0.789,0.545,,0.923,0.797,0.71,0.636,,0.586,0.841,,0.621,,0.745,,,,,,,,,, +"Nov 07, 1994",0.849,1.147,1.135,1.141,1.276,1.129,1.132,1.278,1.077,1.213,1.149,1.169,1.229,1.256,1.132,1.05,,,1.018,1.095,0.722,,0.797,0.554,,0.942,0.811,0.73,0.651,,0.598,0.856,,0.62,,0.746,,,,,,,,,, +"Nov 21, 1994",0.863,1.155,1.137,1.142,1.282,1.135,1.134,1.312,1.07,1.214,1.157,1.185,1.246,1.257,1.167,1.056,,,1.025,1.097,0.726,,0.801,0.56,,0.95,0.812,0.734,0.652,,0.61,0.86,,0.629,,0.759,,,,,,,,,, +"Dec 05, 1994",0.867,1.149,1.145,1.143,1.294,1.151,1.152,1.319,1.072,1.197,1.159,1.19,1.242,1.259,1.11,1.059,,,1.03,1.097,0.733,,0.804,0.554,,0.961,0.821,0.743,0.668,,0.619,0.869,,0.634,,0.762,,,,,,,,,, +"Dec 19, 1994",0.867,1.154,1.148,1.141,1.304,1.157,1.154,1.339,1.08,1.205,1.162,1.196,1.245,1.272,1.116,1.059,,,1.03,1.098,0.742,,0.813,0.602,,0.916,0.829,0.757,0.676,,0.637,0.863,,0.641,,0.762,,,,,,,,,, +"Jan 02, 1995",0.874,1.159,1.152,1.141,1.254,1.157,1.172,1.34,1.086,1.213,1.19,1.209,1.244,1.284,1.119,1.061,,,1.032,1.099,0.748,,0.821,0.616,,0.926,0.827,0.758,0.686,,0.647,0.867,,0.64,,0.764,,,,,,,,,, +"Jan 16, 1995",0.885,1.166,1.158,1.146,1.275,1.165,1.175,1.346,1.09,1.218,1.181,1.227,1.253,1.292,1.118,1.069,,,1.046,1.101,0.759,,0.832,0.624,,0.942,0.828,0.77,0.697,,0.65,0.871,,0.639,,0.765,,,,,,,,,, +"Feb 06, 1995",0.891,1.169,1.159,1.147,1.273,1.164,1.178,1.335,1.092,1.221,1.181,1.228,1.252,1.302,1.117,1.073,,,1.053,1.1,0.761,,0.834,0.586,,0.946,0.833,0.772,0.699,,0.647,0.866,,0.618,,0.765,,,,,,,,,, +"Feb 20, 1995",0.892,1.169,1.159,1.148,1.279,1.166,1.177,1.332,1.092,1.222,1.188,1.228,1.25,1.303,1.117,1.075,,,1.055,1.102,0.762,,0.835,0.589,,0.946,0.836,0.771,0.698,,0.653,0.87,,0.62,,0.767,,,,,,,,,, +"Mar 06, 1995",0.892,1.169,1.161,1.149,1.285,1.168,1.178,1.333,1.092,1.222,1.188,1.229,1.253,1.302,1.117,1.071,,,1.048,1.102,0.762,,0.835,0.592,,0.946,0.834,0.771,0.699,,0.649,0.871,,0.619,,0.768,,,,,,,,,, +"Mar 20, 1995",0.903,1.158,1.17,1.15,1.306,1.168,1.187,1.339,1.094,1.187,1.188,1.229,1.243,1.209,1.117,1.071,,,1.049,1.105,0.769,,0.832,0.607,,0.946,0.831,0.768,0.699,,0.652,0.877,,0.619,,0.768,,,,,,,,,, +"Oct 02, 1995",0.885,1.128,1.152,1.169,1.241,1.151,1.143,1.346,1.084,1.149,1.172,1.209,1.223,1.167,1.095,1.042,,,1.018,1.093,0.735,,0.819,0.58,,0.926,0.796,0.741,0.666,,0.593,0.869,,0.611,,0.748,,,,,,,,,, +"Oct 16, 1995",0.886,1.13,1.161,1.176,1.263,1.151,1.138,1.363,1.096,1.148,1.175,1.21,1.22,1.164,1.095,1.045,,,1.022,1.093,0.742,,0.822,0.583,,0.939,0.804,0.755,0.692,,0.599,0.866,,0.618,,0.758,,,,,,,,,, +"Nov 06, 1995",0.886,1.126,1.159,1.147,1.263,1.155,1.144,1.349,1.099,1.14,1.175,1.187,1.178,1.158,1.094,1.049,,,1.027,1.096,0.746,,0.835,0.586,,0.935,0.803,0.753,0.7,,0.616,0.865,,0.619,,0.767,,,,,,,,,, +"Nov 20, 1995",0.898,1.138,1.16,1.149,1.264,1.154,1.145,1.352,1.111,1.156,1.183,1.191,1.186,1.184,1.097,1.056,,,1.036,1.098,0.751,,0.848,0.594,,0.939,0.812,0.757,0.7,,0.632,0.871,,0.623,,0.77,,,,,,,,,, +"Dec 04, 1995",0.904,1.14,1.164,1.144,1.28,1.159,1.145,1.36,1.114,1.158,1.194,1.202,1.195,1.184,1.096,1.056,,,1.035,1.099,0.759,,0.864,0.6,,0.941,0.817,0.766,0.707,,0.663,0.88,,0.627,,0.778,,,,,,,,,, +"Dec 18, 1995",0.924,1.152,1.173,1.151,1.286,1.166,1.154,1.367,1.128,1.17,1.247,1.217,1.212,1.195,1.105,1.07,,,1.057,1.099,0.781,,0.88,0.638,,0.963,0.823,0.803,0.723,,0.698,0.892,,0.645,,0.808,,,,,,,,,, +"Jan 01, 1996",0.964,1.191,1.216,1.185,1.299,1.199,1.217,1.384,1.184,1.202,1.289,1.256,1.239,1.219,1.147,1.125,,,1.106,1.166,0.823,,0.922,0.665,,1.01,0.85,0.848,0.78,,0.744,0.917,,0.669,,0.863,,,,,,,,,, +"Jan 15, 1996",0.982,1.218,1.249,1.221,1.34,1.221,1.253,1.437,1.216,1.228,1.349,1.328,1.294,1.235,1.166,1.147,,,1.128,1.187,0.836,,0.937,0.668,,1.028,0.873,0.857,0.798,,0.758,0.958,,0.672,,0.856,,,,,,,,,, +"Feb 05, 1996",0.996,1.233,1.264,1.237,1.341,1.249,1.269,1.462,1.23,1.239,1.332,1.341,1.287,1.249,1.179,1.172,,,1.162,1.192,0.849,,0.95,0.675,,1.048,0.888,0.885,0.81,,0.77,0.971,,0.674,,0.864,,,,,,,,,, +"Feb 19, 1996",1.029,1.263,1.289,1.262,1.351,1.291,1.284,1.529,1.257,1.27,1.341,1.364,1.328,1.292,1.196,1.205,,,1.203,1.209,0.884,,1.001,0.691,,1.118,0.934,0.902,0.841,,0.778,1.026,,0.687,,0.894,,,,,,,,,, +"Mar 04, 1996",1.025,1.264,1.295,1.258,1.367,1.287,1.3,1.546,1.261,1.271,1.332,1.357,1.34,1.292,1.197,1.201,,,1.198,1.209,0.876,,0.984,0.701,,1.099,0.937,0.893,0.829,,0.766,1.009,,0.689,,0.87,,,,,,,,,, +"Mar 18, 1996",1.011,1.253,1.288,1.245,1.364,1.261,1.303,1.594,1.255,1.261,1.299,1.341,1.341,1.28,1.193,1.186,,,1.183,1.192,0.859,,0.954,0.687,,1.076,0.928,0.887,0.808,,0.743,0.985,,0.684,,0.864,,,,,,,,,, +"Oct 07, 1996",1.028,1.216,1.274,1.259,1.386,1.272,1.242,1.464,1.237,1.234,1.296,1.303,1.308,1.252,1.132,1.124,,,1.101,1.184,0.888,,0.954,0.763,,1.018,0.944,0.882,0.865,,0.763,0.976,,0.708,,0.876,,,,,,,,,, +"Oct 21, 1996",1.05,1.239,1.291,1.277,1.41,1.289,1.252,1.481,1.258,1.255,1.318,1.314,1.311,1.285,1.137,1.159,,,1.143,1.2,0.909,,0.969,0.783,,1.056,0.967,0.901,0.88,,0.809,0.999,,0.727,,0.892,,,,,,,,,, +"Oct 28, 1996",1.062,1.248,1.307,1.314,1.417,1.305,1.266,1.49,1.265,1.262,1.319,1.321,1.306,1.29,1.154,1.166,,,1.153,1.2,0.923,,0.974,0.796,,1.058,0.98,0.903,0.899,,0.816,1.004,,0.755,,0.92,,,,,,,,,, +"Nov 04, 1996",1.079,1.259,1.319,1.338,1.418,1.324,1.278,1.513,1.267,1.271,1.329,1.323,1.315,1.297,1.169,1.18,,,1.168,1.21,0.946,,0.996,0.82,,1.088,1.003,0.918,0.935,,0.841,1.03,,0.774,,0.932,,,,,,,,,, +"Nov 11, 1996",1.089,1.268,1.332,1.345,1.418,1.325,1.317,1.56,1.268,1.28,1.327,1.331,1.315,1.306,1.183,1.184,,,1.174,1.21,0.956,,1.015,0.821,,1.097,1.023,0.933,0.935,,0.847,1.034,,0.8,,0.948,,,,,,,,,, +"Nov 18, 1996",1.113,1.28,1.347,1.351,1.424,1.357,1.329,1.574,1.285,1.288,1.329,1.332,1.329,1.316,1.189,1.205,,,1.193,1.235,0.988,,1.081,0.855,,1.126,1.044,0.972,0.96,,0.869,1.055,,0.825,,0.98,,,,,,,,,, +"Nov 25, 1996",1.196,1.314,1.369,1.417,1.437,1.362,1.336,1.59,1.312,1.324,1.415,1.358,1.356,1.348,1.231,1.245,,,1.23,1.285,1.108,,1.214,1.028,,1.179,1.116,1.132,1.101,,1.016,1.121,,0.944,,1.1,,,,,,,,,, +"Dec 02, 1996",1.24,1.349,1.408,1.444,1.466,1.415,1.369,1.616,1.362,1.364,1.436,1.398,1.389,1.391,1.271,1.265,,,1.247,1.309,1.159,,1.269,1.06,,1.212,1.172,1.169,1.161,,1.09,1.16,,0.976,,1.183,,,,,,,,,, +"Dec 09, 1996",1.306,1.397,1.46,1.463,1.553,1.468,1.44,1.665,1.394,1.405,1.501,1.408,1.416,1.432,1.329,1.323,,,1.31,1.356,1.239,,1.322,1.142,,1.263,1.22,1.289,1.265,,1.189,1.214,,1.058,,1.286,,,,,,,,,, +"Dec 16, 1996",1.315,1.402,1.454,1.477,1.562,1.467,1.418,1.708,1.375,1.413,1.49,1.411,1.438,1.445,1.328,1.332,,,1.316,1.372,1.251,,1.339,1.146,,1.27,1.219,1.301,1.3,,1.181,1.25,,1.099,,1.272,,,,,,,,,, +"Dec 23, 1996",1.352,1.411,1.46,1.488,1.575,1.467,1.427,1.721,1.371,1.417,1.494,1.414,1.475,1.441,1.336,1.356,,,1.347,1.38,1.307,,1.372,1.249,,1.308,1.259,1.338,1.347,,1.28,1.259,,1.178,,1.373,,,,,,,,,, +"Dec 30, 1996",1.333,1.41,1.461,1.481,1.573,1.462,1.433,1.726,1.382,1.415,1.492,1.413,1.473,1.438,1.334,1.357,,,1.348,1.379,1.276,,1.365,1.171,,1.312,1.283,1.299,1.272,,1.275,1.25,,1.187,,1.316,,,,,,,,,, +"Jan 06, 1997",1.299,1.403,1.446,1.451,1.571,1.433,1.42,1.719,1.379,1.409,1.472,1.403,1.468,1.432,1.333,1.355,,,1.347,1.376,1.221,,1.278,1.069,,1.299,1.252,1.247,1.23,,1.197,1.219,,1.112,,1.26,,,,,,,,,, +"Jan 13, 1997",1.305,1.399,1.433,1.444,1.554,1.426,1.407,1.722,1.36,1.409,1.466,1.39,1.474,1.435,1.329,1.349,,,1.342,1.368,1.235,,1.275,1.119,,1.285,1.238,1.29,1.252,,1.194,1.212,,1.12,,1.28,,,,,,,,,, +"Jan 20, 1997",1.29,1.396,1.424,1.425,1.548,1.423,1.392,1.738,1.354,1.405,1.457,1.39,1.46,1.434,1.323,1.349,,,1.344,1.365,1.212,,1.266,1.087,,1.258,1.242,1.248,1.218,,1.193,1.182,,1.109,,1.257,,,,,,,,,, +"Jan 27, 1997",1.255,1.386,1.413,1.409,1.546,1.389,1.395,1.729,1.345,1.395,1.454,1.38,1.443,1.426,1.308,1.344,,,1.34,1.353,1.157,,1.21,0.978,,1.253,1.222,1.152,1.16,,1.129,1.154,,1.047,,1.22,,,,,,,,,, +"Feb 03, 1997",1.209,1.361,1.4,1.376,1.543,1.377,1.385,1.7,1.34,1.368,1.449,1.378,1.412,1.392,1.287,1.309,,,1.3,1.333,1.096,,1.143,0.876,,1.219,1.177,1.122,1.106,,1.035,1.112,,0.975,,1.133,,,,,,,,,, +"Feb 17, 1997",1.139,1.327,1.375,1.338,1.502,1.362,1.363,1.668,1.324,1.347,1.418,1.364,1.383,1.366,1.274,1.241,,,1.209,1.324,0.999,,1.042,0.798,,1.176,1.105,1.015,0.958,,0.892,1.043,,0.863,,1.024,,,,,,,,,, +"Mar 03, 1997",1.103,1.299,1.343,1.323,1.476,1.311,1.328,1.662,1.292,1.324,1.411,1.362,1.34,1.351,1.232,1.204,,,1.182,1.26,0.957,,0.988,0.745,,1.105,1.071,0.986,0.912,,0.827,1.017,,0.832,,0.975,,,,,,,,,, +"Mar 17, 1997",1.079,1.282,1.331,1.303,1.468,1.31,1.322,1.658,1.262,1.306,1.402,1.36,1.301,1.329,1.221,1.187,,,1.168,1.238,0.927,,0.963,0.732,,1.086,1.029,0.941,0.879,,0.784,0.991,,0.801,,0.943,,,,,,,,,, +"Oct 06, 1997",0.952,1.145,1.196,1.221,1.262,1.23,1.134,1.343,1.155,1.162,1.183,1.217,1.215,1.177,1.083,1.061,,,1.049,1.092,0.805,,0.845,0.657,,0.939,0.859,0.767,,,,0.921,,,,0.805,,,,,,,,,, +"Oct 20, 1997",0.959,1.151,1.202,1.221,1.283,1.23,1.138,1.344,1.163,1.167,1.185,1.221,1.215,1.186,1.082,1.067,,,1.056,1.094,0.814,,0.858,0.665,,0.956,0.866,0.764,,,,0.934,,,,0.817,,,,,,,,,, +"Nov 03, 1997",0.969,1.158,1.211,1.227,1.284,1.254,1.149,1.344,1.165,1.171,1.199,1.226,1.224,1.188,1.09,1.08,,,1.07,1.106,0.825,,0.883,0.677,,0.968,0.88,0.772,,,,0.952,,,,0.819,,,,,,,,,, +"Nov 17, 1997",0.973,1.162,1.212,1.22,1.285,1.261,1.15,1.331,1.165,1.176,1.222,1.227,1.235,1.188,1.104,1.083,,,1.072,1.11,0.83,,0.885,0.68,,0.991,0.887,0.779,,,,0.954,,,,0.82,,,,,,,,,, +"Dec 01, 1997",0.977,1.163,1.211,1.226,1.284,1.259,1.155,1.323,1.157,1.178,1.23,1.229,1.227,1.188,1.11,1.087,,,1.077,1.113,0.835,,0.897,0.679,,0.997,0.887,0.785,,,,0.954,,,,0.835,,,,,,,,,, +"Dec 15, 1997",0.979,1.17,1.215,1.229,1.29,1.267,1.158,1.315,1.156,1.187,1.249,1.229,1.242,1.195,1.125,1.091,,,1.082,1.115,0.834,,0.899,0.679,,0.992,0.886,0.783,,,,0.959,,,,0.826,,,,,,,,,, +"Jan 05, 1998",0.982,1.172,1.217,1.228,1.295,1.266,1.158,1.325,1.162,1.19,1.252,1.24,1.231,1.199,1.128,1.092,,,1.083,1.114,0.838,,0.903,0.677,,0.998,0.894,0.787,0.805,,0.701,0.965,,0.71,,0.823,,,,,,,,,, +"Jan 19, 1998",0.98,1.169,1.211,1.218,1.301,1.257,1.158,1.326,1.149,1.187,1.259,1.23,1.222,1.199,1.122,1.089,,,1.083,1.106,0.836,,0.907,0.673,,1,0.895,0.788,0.798,,0.701,0.958,,0.705,,0.825,,,,,,,,,, +"Feb 02, 1998",0.977,1.166,1.206,1.216,1.301,1.248,1.158,1.335,1.135,1.187,1.258,1.229,1.229,1.2,1.118,1.083,,,1.076,1.103,0.833,,0.902,0.673,,0.996,0.895,0.775,0.798,,0.699,0.954,,0.707,,0.82,,,,,,,,,, +"Feb 16, 1998",0.971,1.162,1.2,1.211,1.294,1.231,1.158,1.333,1.133,1.184,1.252,1.228,1.214,1.199,1.113,1.078,,,1.076,1.082,0.825,,0.898,0.664,,0.995,0.881,0.773,0.782,,0.701,0.951,,0.707,,0.809,,,,,,,,,, +"Mar 02, 1998",0.964,1.157,1.191,1.207,1.286,1.213,1.153,1.323,1.127,1.178,1.234,1.228,1.212,1.191,1.11,1.076,,,1.074,1.081,0.818,,0.892,0.656,,0.987,0.879,0.769,0.774,,0.695,0.934,,0.697,,0.805,,,,,,,,,, +"Mar 16, 1998",0.957,1.15,1.185,1.206,1.286,1.204,1.146,1.314,1.116,1.174,1.234,1.223,1.206,1.186,1.107,1.064,,,1.061,1.072,0.81,,0.886,0.649,,0.971,0.873,0.77,0.765,,0.684,0.918,,0.688,,0.797,,,,,,,,,, +"Oct 05, 1998",0.871,1.072,1.127,1.107,1.193,1.177,1.096,1.243,1.065,1.08,1.157,1.156,1.184,1.083,0.994,0.999,,,0.991,1.017,0.719,,0.777,0.555,,0.89,0.797,0.668,0.679,,0.544,0.851,,0.571,,0.715,,,,,,,,,, +"Oct 19, 1998",0.873,1.073,1.127,1.107,1.184,1.177,1.096,1.243,1.074,1.083,1.154,1.159,1.185,1.086,0.998,0.996,,,0.986,1.019,0.721,,0.783,0.562,,0.896,0.797,0.67,0.685,,0.545,0.847,,0.576,,0.713,,,,,,,,,, +"Nov 02, 1998",0.874,1.069,1.123,1.104,1.195,1.164,1.087,1.219,1.072,1.087,1.159,1.168,1.184,1.09,1.001,0.974,,,0.953,1.026,0.726,,0.79,0.565,,0.911,0.796,0.672,0.693,,0.56,0.854,,0.576,,0.715,,,,,,,,,, +"Nov 16, 1998",0.877,1.07,1.119,1.112,1.162,1.169,1.087,1.268,1.069,1.089,1.165,1.166,1.185,1.091,1.007,0.979,,,0.963,1.019,0.732,,0.798,0.562,,0.919,0.802,0.676,0.695,,0.581,0.871,,0.577,,0.717,,,,,,,,,, +"Dec 07, 1998",0.879,1.072,1.12,1.11,1.156,1.171,1.091,1.196,1.076,1.091,1.165,1.164,1.175,1.097,1.008,0.98,,,0.965,1.017,0.732,,0.807,0.561,,0.914,0.799,0.686,0.696,,0.582,0.869,,0.573,,0.717,,,,,,,,,, +"Dec 21, 1998",0.88,1.068,1.119,1.101,1.153,1.181,1.091,1.233,1.066,1.086,1.162,1.132,1.159,1.096,1.007,0.979,,,0.963,1.018,0.738,,0.811,0.567,,0.921,0.805,0.692,0.706,,0.594,0.865,,0.587,,0.72,,,,,,,,,, +"Jan 04, 1999",0.883,1.067,1.118,1.102,1.148,1.181,1.092,1.206,1.067,1.084,1.175,1.132,1.183,1.088,1.009,0.978,,,0.962,1.019,0.743,,0.819,0.57,,0.926,0.814,0.691,0.707,,0.595,0.878,,0.596,,0.723,,,,,,,,,, +"Jan 18, 1999",0.891,1.072,1.114,1.097,1.142,1.179,1.091,1.175,1.064,1.09,1.19,1.17,1.168,1.09,1.016,0.988,,,0.974,1.02,0.754,,0.847,0.582,,0.925,0.824,0.703,0.718,,0.617,0.888,,0.59,,0.729,,,,,,,,,, +"Feb 01, 1999",0.892,1.075,1.116,1.099,1.142,1.178,1.094,1.178,1.066,1.095,1.193,1.17,1.184,1.097,1.014,0.989,,,0.976,1.021,0.753,,0.849,0.578,,0.924,0.824,0.702,0.714,,0.616,0.886,,0.59,,0.735,,,,,,,,,, +"Feb 15, 1999",0.89,1.074,1.119,1.102,1.142,1.179,1.101,1.178,1.067,1.091,1.19,1.17,1.173,1.092,1.011,0.991,,,0.979,1.021,0.752,,0.851,0.577,,0.919,0.824,0.698,0.707,,0.62,0.884,,0.59,,0.736,,,,,,,,,, +"Mar 01, 1999",0.891,1.075,1.118,1.098,1.142,1.179,1.101,1.178,1.07,1.092,1.193,1.172,1.16,1.096,1.011,0.992,,,0.981,1.021,0.751,,0.848,0.574,,0.922,0.824,0.702,0.709,,0.62,0.884,,0.588,,0.733,,,,,,,,,, +"Mar 15, 1999",0.889,1.075,1.119,1.102,1.142,1.178,1.099,1.184,1.07,1.091,1.194,1.172,1.165,1.093,1.01,0.994,,,0.983,1.021,0.749,,0.843,0.573,,0.927,0.823,0.701,0.703,,0.615,0.877,,0.588,,0.734,,,,,,,,,, +"Oct 04, 1999",0.953,1.128,1.155,1.195,1.191,1.169,1.124,1.319,1.112,1.144,1.253,1.222,1.28,1.145,1.047,1.066,,,1.054,1.095,0.82,,0.861,0.672,,1.005,0.88,0.808,0.764,,0.724,0.926,,0.696,,0.809,,,,,,,,,, +"Oct 18, 1999",0.967,1.146,1.174,1.197,1.224,1.178,1.151,1.356,1.124,1.164,1.268,1.246,1.292,1.17,1.056,1.076,,,1.065,1.102,0.834,,0.883,0.682,,1.018,0.901,0.822,0.793,,0.742,0.92,,0.713,,0.807,,,,,,,,,, +"Nov 01, 1999",0.978,1.159,1.189,1.202,1.225,1.192,1.164,1.384,1.164,1.177,1.279,1.25,1.328,1.177,1.078,1.087,,,1.078,1.109,0.843,,0.886,0.677,,1.04,0.907,0.827,0.803,,0.759,0.945,,0.714,,0.817,,,,,,,,,, +"Nov 15, 1999",0.984,1.166,1.2,1.212,1.221,1.207,1.186,1.41,1.172,1.178,1.283,1.249,1.337,1.18,1.071,1.106,,,1.104,1.113,0.847,,0.886,0.681,,1.04,0.913,0.829,0.804,,0.758,0.957,,0.721,,0.823,,,,,,,,,, +"Dec 06, 1999",0.996,1.181,1.213,1.219,1.217,1.217,1.219,1.404,1.179,1.196,1.286,1.267,1.367,1.206,1.074,1.114,,,1.108,1.13,0.857,,0.898,0.688,,1.059,0.929,0.832,0.82,,0.76,0.963,,0.732,,0.833,,,,,,,,,, +"Dec 20, 1999",1.007,1.189,1.221,1.217,1.216,1.239,1.226,1.47,1.184,1.204,1.287,1.273,1.376,1.216,1.077,1.125,,,1.111,1.161,0.87,,0.913,0.707,,1.082,0.935,0.832,0.845,,0.772,0.972,,0.735,,0.84,,,,,,,,,, +"Jan 03, 2000",1.014,1.201,1.228,1.225,1.214,1.238,1.234,1.522,1.2,1.219,1.296,1.286,1.387,1.229,1.097,1.133,,,1.122,1.159,0.874,,0.923,0.702,,1.097,0.946,0.833,0.852,,0.774,0.977,,0.731,,0.835,,,,,,,,,, +"Jan 17, 2000",1.03,1.225,1.246,1.249,1.227,1.243,1.251,1.573,1.232,1.246,1.35,1.35,1.411,1.247,1.128,1.156,,,1.144,1.186,0.883,,0.923,0.706,,1.119,0.963,0.839,0.842,,0.775,1.012,,0.734,,0.849,,,,,,,,,, +"Jan 24, 2000",1.11,1.318,1.326,1.347,1.34,1.306,1.315,1.777,1.299,1.328,1.456,1.416,1.499,1.325,1.223,1.28,,,1.26,1.317,0.961,,1.015,0.753,,1.218,1.057,0.902,0.92,,0.795,1.123,,0.778,,0.913,,,,,,,,,, +"Jan 31, 2000",1.165,1.386,1.393,1.411,1.377,1.376,1.4,1.775,1.369,1.399,1.464,1.467,1.635,1.396,1.289,1.35,,,1.346,1.361,0.999,,1.084,0.778,,1.302,1.136,0.918,0.959,,0.825,1.126,,0.803,,0.931,,,,,,,,,, +"Feb 07, 2000",1.2,1.429,1.447,1.469,1.435,1.453,1.474,1.83,1.365,1.434,1.491,1.5,1.676,1.439,1.303,1.4,,,1.392,1.42,1.029,,1.104,0.814,,1.334,1.16,0.938,0.984,,0.827,1.209,,0.812,,0.954,,,,,,,,,, +"Feb 14, 2000",1.222,1.444,1.455,1.468,1.45,1.471,1.478,1.888,1.37,1.451,1.549,1.513,1.707,1.453,1.32,1.418,,,1.399,1.467,1.054,,1.151,0.825,,1.341,1.191,0.964,1.017,,0.841,1.243,,0.82,,0.972,,,,,,,,,, +"Feb 21, 2000",1.23,1.445,1.451,1.458,1.446,1.481,1.444,1.869,1.402,1.457,1.56,1.505,1.694,1.458,1.336,1.41,,,1.389,1.463,1.069,,1.159,0.833,,1.346,1.214,0.994,1.025,,0.855,1.244,,0.856,,0.995,,,,,,,,,, +"Feb 28, 2000",1.227,1.435,1.457,1.453,1.445,1.479,1.46,1.893,1.412,1.457,1.544,1.5,1.709,1.466,1.321,1.361,,,1.345,1.402,1.071,,1.156,0.841,,1.337,1.219,0.996,1.029,,0.859,1.247,,0.858,,0.994,,,,,,,,,, +"Mar 06, 2000",1.214,1.412,1.453,1.456,1.427,1.486,1.466,1.855,1.396,1.424,1.53,1.497,1.707,1.408,1.315,1.346,,,1.324,1.403,1.066,,1.137,0.846,,1.312,1.209,1.006,1.024,,0.86,1.236,,0.862,,0.992,,,,,,,,,, +"Mar 13, 2000",1.214,1.409,1.448,1.449,1.421,1.48,1.453,1.842,1.404,1.427,1.491,1.48,1.69,1.422,1.315,1.329,,,1.303,1.393,1.067,,1.132,0.853,,1.315,1.208,1.006,1.027,,0.874,1.24,,0.869,,0.987,,,,,,,,,, +"Mar 20, 2000",1.199,1.392,1.432,1.431,1.421,1.455,1.429,1.84,1.395,1.412,1.484,1.471,1.683,1.414,1.281,1.306,,,1.284,1.363,1.054,,1.09,0.852,,1.301,1.192,0.997,1.015,,0.873,1.226,,0.858,,0.982,,,,,,,,,, +"Oct 02, 2000",1.272,1.438,1.468,1.508,1.478,1.451,1.427,1.695,1.49,1.457,1.501,1.524,1.633,1.468,1.337,1.365,,,1.336,1.433,1.144,,1.127,0.984,,1.289,1.216,1.134,1.132,,1.028,1.254,,1.027,,1.159,,,,,,,,,, +"Oct 09, 2000",1.274,1.439,1.465,1.506,1.48,1.438,1.427,1.697,1.486,1.46,1.503,1.529,1.643,1.471,1.335,1.366,,,1.335,1.44,1.148,,1.135,0.989,,1.299,1.217,1.138,1.133,,1.027,1.257,,1.025,,1.156,,,,,,,,,, +"Oct 16, 2000",1.284,1.453,1.472,1.517,1.482,1.446,1.421,1.713,1.515,1.474,1.52,1.551,1.643,1.483,1.354,1.385,,,1.356,1.455,1.157,,1.142,0.99,,1.334,1.221,1.148,1.138,,1.025,1.286,,1.021,,1.163,,,,,,,,,, +"Oct 23, 2000",1.288,1.457,1.478,1.538,1.477,1.446,1.43,1.735,1.518,1.479,1.517,1.56,1.639,1.491,1.357,1.386,,,1.36,1.446,1.16,,1.157,0.987,,1.337,1.226,1.14,1.153,,1.023,1.291,,1.003,,1.16,,,,,,,,,, +"Oct 30, 2000",1.288,1.459,1.475,1.534,1.459,1.444,1.432,1.76,1.521,1.483,1.517,1.572,1.633,1.498,1.358,1.387,,,1.359,1.453,1.16,,1.165,0.981,,1.344,1.228,1.135,1.144,,1.021,1.299,,1.021,,1.156,,,,,,,,,, +"Nov 06, 2000",1.285,1.46,1.48,1.54,1.459,1.454,1.434,1.752,1.527,1.486,1.515,1.561,1.641,1.503,1.359,1.38,,,1.348,1.455,1.154,,1.157,0.983,,1.341,1.219,1.129,1.128,,1.019,1.294,,1.02,,1.158,,,,,,,,,, +"Nov 13, 2000",1.285,1.459,1.488,1.532,1.462,1.443,1.463,1.78,1.538,1.48,1.514,1.558,1.625,1.497,1.36,1.382,,,1.349,1.459,1.154,,1.166,0.983,,1.346,1.22,1.122,1.13,,1.017,1.286,,1.015,,1.154,,,,,,,,,, +"Nov 20, 2000",1.292,1.467,1.494,1.525,1.473,1.451,1.466,1.78,1.552,1.486,1.518,1.57,1.649,1.498,1.367,1.396,,,1.367,1.464,1.161,,1.172,0.979,,1.357,1.227,1.147,1.132,,1.02,1.293,,1.018,,1.165,,,,,,,,,, +"Nov 27, 2000",1.296,1.469,1.496,1.532,1.47,1.458,1.465,1.78,1.559,1.488,1.532,1.568,1.657,1.499,1.369,1.401,,,1.372,1.468,1.165,,1.196,0.98,,1.362,1.237,1.147,1.126,,1.034,1.297,,1.016,,1.166,,,,,,,,,, +"Dec 04, 2000",1.299,1.473,1.496,1.531,1.47,1.45,1.47,1.762,1.558,1.495,1.547,1.572,1.665,1.507,1.373,1.4,,,1.369,1.473,1.168,,1.203,0.976,,1.379,1.242,1.146,1.127,,1.024,1.299,,1.018,,1.167,,,,,,,,,, +"Dec 11, 2000",1.356,1.522,1.527,1.561,1.492,1.493,1.494,1.837,1.592,1.543,1.592,1.612,1.712,1.561,1.416,1.467,,,1.445,1.52,1.231,,1.29,1.012,,1.436,1.287,1.221,1.199,,1.068,1.368,,1.052,,1.251,,,,,,,,,, +"Dec 18, 2000",1.403,1.567,1.562,1.611,1.548,1.542,1.5,1.84,1.63,1.581,1.62,1.63,1.747,1.603,1.451,1.542,,,1.527,1.579,1.279,,1.352,1.062,,1.479,1.34,1.275,1.23,,1.136,1.399,,1.118,,1.299,,,,,,,,,, +"Dec 25, 2000",1.538,1.659,1.628,1.655,1.589,1.593,1.586,1.872,1.723,1.642,1.763,1.748,1.777,1.648,1.525,1.727,,,1.743,1.688,1.446,,1.528,1.244,,1.607,1.495,1.414,1.457,,1.31,1.578,,1.228,,1.437,,,,,,,,,, +"Jan 01, 2001",1.616,1.754,1.689,1.732,1.645,1.664,1.654,1.931,1.757,1.723,1.836,1.864,1.862,1.726,1.595,1.89,,,1.905,1.854,1.511,,1.62,1.266,,1.76,1.575,1.458,1.493,,1.386,1.673,,1.288,,1.484,,,,,,,,,, +"Jan 08, 2001",1.644,1.8,1.725,1.74,1.692,1.7,1.714,1.905,1.775,1.75,1.912,1.879,1.917,1.723,1.678,1.988,,,2.025,1.899,1.526,,1.613,1.254,,1.722,1.621,1.451,1.555,,1.392,1.703,,1.269,,1.5,,,,,,,,,, +"Jan 15, 2001",1.702,1.862,1.747,1.764,1.735,1.725,1.734,1.952,1.772,1.781,1.939,1.905,1.959,1.76,1.695,2.159,,,2.221,2.012,1.581,,1.637,1.284,,1.752,1.782,1.517,1.576,,1.412,1.772,,1.318,,1.539,,,,,,,,,, +"Jan 22, 2001",1.693,1.858,1.752,1.765,1.727,1.73,1.733,2.005,1.794,1.79,1.939,1.921,1.982,1.768,1.701,2.115,,,2.163,2.001,1.568,,1.637,1.264,,1.728,1.803,1.485,1.533,,1.411,1.782,,1.331,,1.513,,,,,,,,,, +"Jan 29, 2001",1.663,1.824,1.739,1.761,1.704,1.7,1.733,2.007,1.783,1.78,1.927,1.919,1.985,1.757,1.685,2.007,,,2.033,1.948,1.542,,1.584,1.225,,1.752,1.781,1.476,1.475,,1.386,1.774,,1.291,,1.503,,,,,,,,,, +"Feb 05, 2001",1.611,1.753,1.724,1.734,1.682,1.7,1.717,2.007,1.77,1.734,1.85,1.912,1.88,1.709,1.649,1.825,,,1.805,1.874,1.505,,1.546,1.182,,1.757,1.726,1.437,1.428,,1.36,1.717,,1.27,,1.487,,,,,,,,,, +"Feb 12, 2001",1.568,1.715,1.7,1.717,1.661,1.652,1.698,1.979,1.755,1.712,1.793,1.866,1.851,1.69,1.637,1.735,,,1.703,1.812,1.458,,1.466,1.159,,1.702,1.659,1.428,1.377,,1.308,1.651,,1.264,,1.447,,,,,,,,,, +"Feb 19, 2001",1.538,1.685,1.687,1.704,1.643,1.648,1.688,1.951,1.733,1.697,1.736,1.849,1.846,1.681,1.614,1.656,,,1.613,1.759,1.428,,1.425,1.14,,1.644,1.618,1.419,1.342,,1.282,1.606,,1.265,,1.431,,,,,,,,,, +"Feb 26, 2001",1.507,1.661,1.676,1.682,1.624,1.651,1.68,1.944,1.716,1.67,1.717,1.847,1.841,1.65,1.575,1.625,,,1.58,1.73,1.391,,1.361,1.101,,1.599,1.583,1.388,1.317,,1.271,1.556,,1.204,,1.42,,,,,,,,,, +"Mar 05, 2001",1.465,1.633,1.659,1.672,1.603,1.63,1.664,1.88,1.704,1.646,1.707,1.836,1.788,1.627,1.553,1.58,,,1.531,1.696,1.338,,1.284,1.085,,1.565,1.5,1.332,1.284,,1.22,1.476,,1.166,,1.367,,,,,,,,,, +"Mar 12, 2001",1.434,1.602,1.64,1.642,1.594,1.617,1.64,1.86,1.689,1.615,1.705,1.809,1.731,1.606,1.502,1.535,,,1.47,1.688,1.307,,1.253,1.061,,1.443,1.464,1.317,1.257,,1.151,1.455,,1.16,,1.361,,,,,,,,,, +"Mar 19, 2001",1.397,1.563,1.622,1.594,1.572,1.607,1.632,1.808,1.676,1.566,1.692,1.664,1.698,1.564,1.469,1.499,,,1.439,1.641,1.272,,1.243,1.046,,1.416,1.395,1.285,1.226,,1.123,1.404,,1.124,,1.322,,,,,,,,,, +"Oct 01, 2001",1.146,1.337,1.442,1.355,1.493,1.445,1.423,1.411,1.489,1.337,1.368,1.458,1.347,1.354,1.265,1.247,,,1.205,1.318,1.023,,1.008,0.887,,1.133,1.145,0.984,0.949,0.815,0.86,1.153,,0.887,,1.045,,,,,,,,,, +"Oct 08, 2001",1.14,1.33,1.438,1.351,1.487,1.437,1.433,1.409,1.476,1.331,1.355,1.442,1.337,1.341,1.276,1.237,,,1.184,1.328,1.019,,0.987,0.878,,1.145,1.144,0.974,0.947,0.797,0.85,1.155,,0.885,,1.036,,,,,,,,,, +"Oct 15, 2001",1.135,1.33,1.436,1.364,1.482,1.434,1.418,1.412,1.478,1.333,1.38,1.439,1.334,1.338,1.283,1.236,,,1.181,1.328,1.011,,0.984,0.872,,1.122,1.137,0.984,0.94,0.798,0.852,1.136,,0.89,,1.036,,,,,,,,,, +"Oct 22, 2001",1.137,1.329,1.435,1.357,1.486,1.435,1.426,1.413,1.472,1.336,1.38,1.448,1.333,1.346,1.28,1.225,,,1.161,1.332,1.013,,0.985,0.869,,1.121,1.138,0.985,0.957,0.786,0.846,1.131,,0.891,,1.04,,,,,,,,,, +"Oct 29, 2001",1.135,1.328,1.427,1.359,1.486,1.424,1.41,1.411,1.463,1.339,1.414,1.45,1.35,1.348,1.276,1.224,,,1.16,1.333,1.01,,0.984,0.872,,1.121,1.141,0.979,0.948,0.774,0.846,1.133,,0.893,,1.037,,,,,,,,,, +"Nov 05, 2001",1.138,1.331,1.423,1.368,1.455,1.41,1.405,1.457,1.47,1.337,1.413,1.447,1.345,1.345,1.277,1.241,,,1.182,1.34,1.012,,0.999,0.867,,1.129,1.134,0.979,0.956,0.771,0.849,1.128,,0.887,,1.039,,,,,,,,,, +"Nov 12, 2001",1.134,1.323,1.417,1.36,1.448,1.413,1.402,1.462,1.452,1.323,1.409,1.425,1.322,1.33,1.266,1.24,,,1.181,1.34,1.011,,1.003,0.865,,1.126,1.132,0.977,0.954,0.772,0.849,1.133,,0.88,,1.034,,,,,,,,,, +"Nov 19, 2001",1.132,1.321,1.411,1.353,1.433,1.407,1.397,1.455,1.454,1.321,1.408,1.424,1.323,1.333,1.257,1.24,,,1.18,1.341,1.008,,0.995,0.864,,1.124,1.137,0.97,0.956,0.779,0.849,1.124,,0.876,,1.031,,,,,,,,,, +"Nov 26, 2001",1.126,1.313,1.41,1.355,1.436,1.403,1.392,1.45,1.453,1.316,1.397,1.412,1.32,1.326,1.257,1.223,,,1.161,1.327,1.004,,0.997,0.85,,1.123,1.139,0.958,0.955,0.77,0.837,1.128,,0.878,,1.016,,,,,,,,,, +"Dec 03, 2001",1.12,1.302,1.396,1.336,1.43,1.379,1.393,1.441,1.427,1.305,1.392,1.398,1.315,1.326,1.234,1.214,,,1.15,1.322,1.002,,0.992,0.847,,1.122,1.151,0.952,0.936,0.768,0.835,1.129,,0.884,,1.014,,,,,,,,,, +"Dec 10, 2001",1.116,1.298,1.391,1.334,1.416,1.359,1.398,1.441,1.426,1.297,1.385,1.389,1.308,1.312,1.231,1.218,,,1.162,1.313,0.997,,0.984,0.846,,1.122,1.136,0.95,0.936,0.777,0.835,1.123,,0.88,,1.005,,,,,,,,,, +"Dec 17, 2001",1.117,1.297,1.392,1.333,1.405,1.366,1.4,1.436,1.43,1.295,1.36,1.379,1.307,1.315,1.231,1.215,,,1.162,1.305,1.001,,0.983,0.842,,1.123,1.155,0.956,0.935,0.773,0.832,1.137,,0.876,,1.004,,,,,,,,,, +"Dec 24, 2001",1.121,1.3,1.391,1.328,1.405,1.368,1.399,1.437,1.43,1.3,1.367,1.38,1.31,1.322,1.236,1.218,,,1.166,1.305,1.004,,0.993,0.845,,1.125,1.16,0.949,0.937,0.773,0.829,1.151,,0.876,,1.007,,,,,,,,,, +"Dec 31, 2001",1.127,1.303,1.395,1.344,1.407,1.361,1.409,1.437,1.429,1.304,1.369,1.384,1.317,1.323,1.241,1.222,,,1.171,1.308,1.012,,1.005,0.845,,1.144,1.162,0.949,0.958,0.769,0.829,1.156,,0.873,,1.013,,,,,,,,,, +"Jan 07, 2002",1.133,1.309,1.402,1.342,1.421,1.373,1.412,1.436,1.439,1.308,1.372,1.389,1.324,1.33,1.242,1.229,,,1.173,1.323,1.02,,1.034,0.848,,1.152,1.174,0.952,0.963,0.769,0.84,1.163,,0.873,,1.013,,,,,,,,,, +"Jan 14, 2002",1.134,1.312,1.405,1.341,1.423,1.369,1.421,1.482,1.441,1.31,1.372,1.384,1.326,1.336,1.242,1.235,,,1.178,1.332,1.018,,1.034,0.847,,1.15,1.159,0.952,0.959,0.77,0.838,1.17,,0.861,,1.018,,,,,,,,,, +"Jan 21, 2002",1.134,1.316,1.405,1.337,1.43,1.359,1.424,1.482,1.449,1.316,1.372,1.392,1.33,1.342,1.249,1.238,,,1.181,1.335,1.016,,1.032,0.841,,1.153,1.163,0.939,0.962,0.77,0.84,1.166,,0.861,,1.016,,,,,,,,,, +"Jan 28, 2002",1.135,1.316,1.403,1.333,1.426,1.357,1.419,1.482,1.449,1.315,1.372,1.392,1.33,1.337,1.251,1.243,,,1.188,1.337,1.017,,1.031,0.841,,1.149,1.166,0.951,0.962,0.773,0.839,1.159,,0.861,,1.016,,,,,,,,,, +"Feb 04, 2002",1.133,1.315,1.404,1.333,1.428,1.355,1.423,1.482,1.453,1.314,1.371,1.392,1.338,1.334,1.249,1.24,,,1.182,1.336,1.016,,1.015,0.844,,1.152,1.161,0.954,0.959,0.773,0.839,1.16,,0.861,,1.021,,,,,,,,,, +"Feb 11, 2002",1.13,1.315,1.405,1.333,1.426,1.359,1.423,1.471,1.452,1.314,1.366,1.391,1.335,1.334,1.252,1.24,,,1.183,1.336,1.01,,1.012,0.842,,1.14,1.157,0.952,0.958,0.735,0.827,1.147,,0.854,,1.022,,,,,,,,,, +"Feb 18, 2002",1.128,1.316,1.405,1.334,1.433,1.357,1.422,1.471,1.452,1.315,1.374,1.389,1.329,1.334,1.255,1.242,,,1.184,1.34,1.006,,1.011,0.842,,1.139,1.156,0.95,0.942,0.735,0.824,1.143,,0.856,,1.017,,,,,,,,,, +"Feb 25, 2002",1.125,1.315,1.406,1.339,1.431,1.363,1.422,1.471,1.449,1.316,1.374,1.395,1.334,1.334,1.256,1.235,,,1.175,1.336,1.003,,1.001,0.842,,1.131,1.156,0.95,0.934,0.734,0.824,1.14,,0.851,,1.017,,,,,,,,,, +"Mar 04, 2002",1.125,1.315,1.402,1.339,1.433,1.352,1.422,1.474,1.441,1.318,1.376,1.397,1.342,1.334,1.257,1.234,,,1.18,1.326,1.003,,1.006,0.842,,1.127,1.152,0.95,0.945,0.736,0.824,1.135,,0.843,,1.016,,,,,,,,,, +"Mar 11, 2002",1.122,1.316,1.4,1.337,1.433,1.355,1.414,1.475,1.441,1.321,1.381,1.395,1.342,1.337,1.262,1.237,,,1.181,1.329,0.996,,1,0.845,,1.126,1.129,0.95,0.933,0.739,0.814,1.116,,0.838,,1.016,,,,,,,,,, +"Mar 18, 2002",1.123,1.318,1.404,1.337,1.433,1.355,1.418,1.475,1.453,1.324,1.388,1.39,1.347,1.341,1.262,1.235,,,1.182,1.323,0.996,,0.986,0.844,,1.121,1.128,0.972,0.933,0.734,0.809,1.112,,0.839,,1.017,,,,,,,,,, +"Oct 07, 2002",1.122,1.317,1.398,1.325,1.521,1.363,1.411,1.389,1.395,1.332,1.366,1.406,1.377,1.337,1.293,1.219,,,1.172,1.314,0.989,,0.995,0.79,,1.096,1.107,0.92,0.918,0.721,0.812,1.105,,0.841,,0.961,,,,,,,,,, +"Oct 14, 2002",1.131,1.326,1.403,1.336,1.512,1.388,1.414,1.385,1.395,1.337,1.381,1.418,1.382,1.333,1.304,1.236,,,1.187,1.336,0.998,,1.008,0.793,,1.104,1.117,0.926,0.929,0.734,0.814,1.114,,0.85,,0.976,,,,,,,,,, +"Oct 21, 2002",1.137,1.333,1.41,1.338,1.516,1.393,1.434,1.388,1.398,1.347,1.39,1.423,1.4,1.337,1.319,1.243,,,1.194,1.342,1.003,,1.013,0.797,,1.121,1.117,0.928,0.931,0.736,0.827,1.111,,0.859,,0.976,,,,,,,,,, +"Oct 28, 2002",1.141,1.334,1.41,1.339,1.51,1.392,1.434,1.397,1.398,1.35,1.399,1.424,1.407,1.339,1.324,1.24,,,1.19,1.343,1.01,,1.019,0.811,,1.13,1.119,0.937,0.943,0.739,0.842,1.109,,0.87,,0.982,,,,,,,,,, +"Nov 04, 2002",1.151,1.336,1.413,1.341,1.515,1.403,1.44,1.399,1.398,1.354,1.395,1.431,1.408,1.344,1.326,1.237,,,1.189,1.333,1.026,,1.028,0.834,,1.145,1.133,0.965,0.961,0.743,0.862,1.124,,0.877,,0.996,,,,,,,,,, +"Nov 11, 2002",1.158,1.344,1.416,1.343,1.519,1.411,1.441,1.399,1.398,1.358,1.399,1.433,1.425,1.349,1.327,1.257,,,1.213,1.345,1.033,,1.038,0.83,,1.152,1.137,0.981,0.964,0.743,0.867,1.138,,0.886,,1.001,,,,,,,,,, +"Nov 18, 2002",1.161,1.348,1.417,1.337,1.521,1.406,1.443,1.41,1.402,1.359,1.394,1.435,1.434,1.35,1.328,1.267,,,1.221,1.36,1.035,,1.041,0.831,,1.147,1.142,0.981,0.964,0.743,0.868,1.151,,0.884,,1.005,,,,,,,,,, +"Nov 25, 2002",1.168,1.351,1.417,1.339,1.52,1.403,1.447,1.41,1.402,1.364,1.392,1.439,1.441,1.353,1.334,1.271,,,1.221,1.371,1.044,,1.047,0.836,,1.163,1.15,0.986,0.982,0.743,0.876,1.157,,0.888,,1.018,,,,,,,,,, +"Dec 02, 2002",1.175,1.354,1.423,1.351,1.517,1.409,1.455,1.463,1.405,1.367,1.399,1.44,1.431,1.358,1.337,1.273,,,1.221,1.377,1.053,,1.051,0.853,,1.191,1.157,0.99,0.986,0.744,0.88,1.161,,0.894,,1.022,,,,,,,,,, +"Dec 09, 2002",1.188,1.368,1.427,1.359,1.526,1.419,1.458,1.459,1.406,1.379,1.407,1.465,1.45,1.362,1.355,1.298,,,1.243,1.41,1.065,,1.085,0.86,,1.202,1.163,0.996,1.002,0.747,0.884,1.182,,0.899,,1.032,,,,,,,,,, +"Dec 16, 2002",1.208,1.388,1.451,1.373,1.534,1.422,1.478,1.467,1.446,1.396,1.43,1.495,1.484,1.365,1.381,1.319,,,1.264,1.431,1.085,,1.107,0.882,,1.229,1.175,1.01,1.021,0.784,0.903,1.199,,0.911,,1.061,,,,,,,,,, +"Dec 23, 2002",1.231,1.411,1.46,1.393,1.563,1.412,1.486,1.486,1.455,1.424,1.477,1.52,1.518,1.39,1.408,1.347,,,1.29,1.465,1.109,,1.116,0.892,,1.247,1.219,1.032,1.049,0.793,0.913,1.233,,0.935,,1.073,,,,,,,,,, +"Dec 30, 2002",1.252,1.435,1.487,1.424,1.577,1.428,1.495,1.51,1.498,1.447,1.493,1.533,1.535,1.419,1.429,1.368,,,1.311,1.484,1.128,,1.149,0.89,,1.288,1.231,1.046,1.062,0.799,0.938,1.259,,0.944,,1.087,,,,,,,,,, +"Jan 06, 2003",1.268,1.46,1.511,1.445,1.581,1.471,1.55,1.511,1.505,1.471,1.515,1.547,1.565,1.456,1.44,1.398,,,1.342,1.513,1.138,,1.153,0.909,,1.3,1.246,1.051,1.064,0.806,0.949,1.274,,0.948,,1.101,,,,,,,,,, +"Jan 13, 2003",1.276,1.466,1.515,1.448,1.581,1.471,1.556,1.514,1.511,1.483,1.529,1.575,1.581,1.464,1.451,1.397,,,1.334,1.525,1.146,,1.156,0.919,,1.302,1.245,1.06,1.085,0.806,0.954,1.295,,0.948,,1.112,,,,,,,,,, +"Jan 20, 2003",1.326,1.513,1.534,1.49,1.607,1.486,1.57,1.58,1.524,1.53,1.595,1.62,1.625,1.504,1.505,1.469,,,1.416,1.577,1.198,,1.207,0.946,,1.357,1.321,1.11,1.129,0.843,0.978,1.355,,0.983,,1.149,,,,,,,,,, +"Jan 27, 2003",1.359,1.557,1.583,1.542,1.614,1.521,1.585,1.581,1.608,1.578,1.674,1.687,1.713,1.537,1.552,1.503,,,1.44,1.632,1.225,,1.229,0.967,,1.387,1.371,1.125,1.153,0.855,1.013,1.373,,0.99,,1.163,,,,,,,,,, +"Feb 03, 2003",1.437,1.644,1.641,1.586,1.651,1.567,1.653,1.653,1.673,1.678,1.866,1.794,1.815,1.621,1.653,1.598,,,1.556,1.686,1.298,,1.312,1.021,,1.485,1.465,1.178,1.192,0.901,1.06,1.472,,1.038,,1.214,,,,,,,,,, +"Feb 10, 2003",1.483,1.687,1.711,1.621,1.692,1.608,1.693,1.666,1.787,1.722,1.948,1.861,1.922,1.645,1.697,1.613,,,1.558,1.721,1.346,,1.357,1.087,,1.516,1.498,1.247,1.263,0.973,1.127,1.495,,1.096,,1.268,,,,,,,,,, +"Feb 17, 2003",1.497,1.701,1.727,1.64,1.73,1.633,1.707,1.692,1.796,1.745,1.918,1.885,1.945,1.681,1.711,1.612,,,1.546,1.747,1.36,,1.38,1.082,,1.51,1.506,1.271,1.277,0.943,1.146,1.524,,1.108,,1.313,,,,,,,,,, +"Feb 24, 2003",1.504,1.711,1.735,1.66,1.741,1.648,1.71,1.703,1.801,1.753,1.927,1.895,1.959,1.69,1.716,1.626,,,1.552,1.776,1.365,,1.377,1.09,,1.523,1.52,1.271,1.277,0.948,1.121,1.539,,1.092,,1.311,,,,,,,,,, +"Mar 03, 2003",1.722,1.896,1.916,1.867,1.824,1.745,1.86,1.764,2.052,1.927,2.01,2.028,2.133,1.902,1.871,1.832,,,1.786,1.926,1.606,,1.609,1.256,,1.809,1.793,1.507,1.484,1.181,1.317,1.817,,1.226,,1.533,,,,,,,,,, +"Mar 10, 2003",1.654,1.848,1.894,1.838,1.911,1.838,1.892,1.806,1.931,1.887,2.039,2.046,2.098,1.88,1.779,1.749,,,1.663,1.924,1.522,,1.54,1.122,,1.68,1.759,1.403,1.389,0.975,1.258,1.748,,1.192,,1.464,,,,,,,,,, +"Mar 17, 2003",1.581,1.786,1.83,1.796,1.873,1.837,1.905,1.812,1.772,1.835,2.008,2.021,2.069,1.832,1.708,1.672,,,1.587,1.843,1.44,,1.448,1.107,,1.621,1.619,1.335,1.304,0.966,1.207,1.628,,1.168,,1.42,,,,,,,,,, +"Oct 06, 2003",1.282,1.459,1.541,1.482,1.579,1.496,1.534,1.737,1.56,1.474,1.495,1.595,1.524,1.456,1.456,1.346,,,1.301,1.435,1.148,,1.123,0.992,,1.252,1.264,1.097,1.121,0.925,0.983,1.254,,1.029,,1.145,,,,,,,,,, +"Oct 13, 2003",1.305,1.478,1.546,1.471,1.559,1.503,1.551,1.754,1.567,1.503,1.534,1.606,1.545,1.491,1.481,1.361,,,1.324,1.437,1.172,,1.133,1.05,,1.269,1.259,1.132,1.155,0.96,1,1.272,,1.062,,1.184,,,,,,,,,, +"Oct 20, 2003",1.322,1.489,1.57,1.481,1.559,1.498,1.564,1.793,1.623,1.504,1.542,1.588,1.551,1.494,1.484,1.377,,,1.344,1.442,1.193,,1.14,1.052,,1.277,1.304,1.165,1.178,0.966,1.038,1.288,,1.071,,1.2,,,,,,,,,, +"Oct 27, 2003",1.325,1.495,1.583,1.484,1.583,1.501,1.549,1.799,1.658,1.506,1.537,1.598,1.576,1.497,1.479,1.382,,,1.349,1.45,1.194,,1.141,1.053,,1.283,1.305,1.155,1.178,0.968,1.05,1.305,,1.073,,1.189,,,,,,,,,, +"Nov 03, 2003",1.325,1.498,1.589,1.502,1.585,1.505,1.56,1.783,1.661,1.507,1.525,1.608,1.588,1.496,1.48,1.384,,,1.351,1.45,1.192,,1.116,1.046,,1.297,1.312,1.155,1.175,0.964,1.052,1.308,,1.066,,1.185,,,,,,,,,, +"Nov 10, 2003",1.327,1.501,1.596,1.508,1.567,1.526,1.578,1.772,1.662,1.511,1.527,1.605,1.613,1.496,1.486,1.385,,,1.352,1.451,1.193,,1.119,1.045,,1.296,1.314,1.14,1.184,0.955,1.051,1.312,,1.071,,1.188,,,,,,,,,, +"Nov 17, 2003",1.33,1.509,1.618,1.517,1.568,1.52,1.58,1.773,1.72,1.513,1.531,1.61,1.618,1.498,1.49,1.388,,,1.353,1.457,1.192,,1.116,1.026,,1.309,1.313,1.137,1.19,0.952,1.045,1.319,,1.07,,1.188,,,,,,,,,, +"Nov 24, 2003",1.336,1.516,1.619,1.517,1.565,1.521,1.585,1.798,1.72,1.522,1.532,1.613,1.615,1.503,1.506,1.396,,,1.36,1.47,1.198,,1.113,1.026,,1.324,1.331,1.144,1.198,0.952,1.043,1.325,,1.063,,1.189,,,,,,,,,, +"Dec 01, 2003",1.341,1.519,1.623,1.52,1.579,1.526,1.59,1.792,1.72,1.524,1.541,1.62,1.621,1.505,1.507,1.401,,,1.359,1.486,1.203,,1.124,1.026,,1.333,1.334,1.159,1.198,0.945,1.038,1.333,,1.065,,1.191,,,,,,,,,, +"Dec 08, 2003",1.354,1.534,1.63,1.528,1.594,1.532,1.594,1.805,1.727,1.541,1.549,1.652,1.637,1.52,1.524,1.421,,,1.372,1.521,1.215,,1.135,1.03,,1.355,1.339,1.187,1.196,0.942,1.043,1.364,,1.077,,1.198,,,,,,,,,, +"Dec 15, 2003",1.392,1.58,1.654,1.581,1.622,1.543,1.62,1.851,1.745,1.59,1.621,1.713,1.687,1.565,1.572,1.483,,,1.441,1.57,1.248,,1.189,1.047,,1.405,1.376,1.2,1.225,0.957,1.064,1.402,,1.099,,1.236,,,,,,,,,, +"Dec 22, 2003",1.414,1.608,1.703,1.609,1.631,1.592,1.652,1.88,1.824,1.613,1.636,1.738,1.727,1.581,1.603,1.497,,,1.454,1.584,1.264,,1.222,1.05,,1.423,1.398,1.203,1.242,0.956,1.081,1.428,,1.105,,1.246,,,,,,,,,, +"Dec 29, 2003",1.418,1.61,1.702,1.615,1.629,1.596,1.636,1.893,1.829,1.618,1.635,1.734,1.716,1.593,1.604,1.499,,,1.453,1.592,1.27,,1.247,1.054,,1.423,1.407,1.2,1.242,0.959,1.077,1.432,,1.112,,1.245,,,,,,,,,, +"Jan 05, 2004",1.428,1.624,1.71,1.629,1.633,1.6,1.652,1.9,1.832,1.627,1.644,1.742,1.739,1.598,1.615,1.528,,,1.48,1.627,1.277,,1.267,1.049,,1.439,1.418,1.211,1.242,0.959,1.086,1.437,,1.115,,1.249,,,,,,,,,, +"Jan 12, 2004",1.497,1.702,1.76,1.721,1.68,1.645,1.702,1.97,1.873,1.698,1.754,1.793,1.807,1.66,1.699,1.647,,,1.598,1.747,1.339,,1.335,1.103,,1.541,1.496,1.254,1.279,1.027,1.12,1.514,,1.135,,1.296,,,,,,,,,, +"Jan 19, 2004",1.523,1.741,1.8,1.749,1.714,1.684,1.749,1.977,1.914,1.753,1.767,1.833,1.844,1.733,1.741,1.659,,,1.601,1.777,1.356,,1.362,1.105,,1.55,1.521,1.281,1.283,1.008,1.126,1.545,,1.131,,1.311,,,,,,,,,, +"Jan 26, 2004",1.536,1.758,1.827,1.776,1.736,1.716,1.784,2.006,1.937,1.77,1.788,1.869,1.873,1.749,1.753,1.664,,,1.606,1.782,1.365,,1.363,1.105,,1.572,1.531,1.288,1.295,1.006,1.137,1.57,,1.134,,1.314,,,,,,,,,, +"Feb 02, 2004",1.537,1.77,1.85,1.813,1.757,1.729,1.803,2.023,1.963,1.78,1.796,1.881,1.925,1.766,1.747,1.667,,,1.605,1.794,1.358,,1.369,1.108,,1.567,1.5,1.275,1.29,0.99,1.129,1.581,,1.126,,1.311,,,,,,,,,, +"Feb 09, 2004",1.536,1.773,1.87,1.792,1.766,1.71,1.806,2.018,2.024,1.783,1.793,1.881,1.92,1.768,1.756,1.651,,,1.587,1.78,1.354,,1.36,1.108,,1.547,1.495,1.283,1.301,1.011,1.13,1.559,,1.126,,1.311,,,,,,,,,, +"Feb 16, 2004",1.535,1.772,1.877,1.792,1.77,1.703,1.834,2.013,2.027,1.778,1.793,1.88,1.921,1.765,1.742,1.648,,,1.585,1.777,1.353,,1.356,1.095,,1.548,1.497,1.287,1.308,0.993,1.132,1.556,,1.124,,1.309,,,,,,,,,, +"Feb 23, 2004",1.535,1.773,1.88,1.802,1.769,1.706,1.838,2.009,2.027,1.781,1.793,1.881,1.907,1.765,1.754,1.646,,,1.588,1.764,1.352,,1.356,1.094,,1.547,1.503,1.281,1.307,0.992,1.136,1.556,,1.127,,1.299,,,,,,,,,, +"Mar 01, 2004",1.53,1.775,1.875,1.826,1.778,1.707,1.808,2.024,2.026,1.791,1.799,1.889,1.907,1.766,1.779,1.64,,,1.572,1.78,1.342,,1.354,1.091,,1.525,1.497,1.281,1.288,0.984,1.13,1.525,,1.121,,1.294,,,,,,,,,, +"Mar 08, 2004",1.513,1.752,1.873,1.805,1.786,1.719,1.804,1.998,2.022,1.77,1.79,1.888,1.864,1.761,1.733,1.59,,,1.549,1.676,1.33,,1.348,1.089,,1.511,1.49,1.271,1.266,0.983,1.131,1.482,,1.109,,1.285,,,,,,,,,, +"Mar 15, 2004",1.483,1.715,1.861,1.799,1.781,1.707,1.803,1.999,1.998,1.714,1.782,1.87,1.85,1.689,1.676,1.562,,,1.523,1.643,1.305,,1.301,1.065,,1.484,1.456,1.247,1.245,0.984,1.119,1.458,,1.102,,1.286,,,,,,,,,, +"Oct 04, 2004",1.573,1.796,1.908,1.866,1.919,1.854,1.914,1.966,1.958,1.834,1.957,1.919,1.946,1.797,1.792,1.719,,,1.618,1.96,1.385,,1.434,1.185,,1.548,1.44,1.365,1.399,1.158,1.213,1.511,,1.205,,1.357,,,,,,,,,, +"Oct 11, 2004",1.604,1.826,1.937,1.884,1.96,1.869,1.932,1.99,2.008,1.862,1.986,1.922,1.997,1.824,1.822,1.752,,,1.647,2.003,1.418,,1.476,1.211,,1.592,1.484,1.376,1.439,1.195,1.241,1.554,,1.226,,1.37,,,,,,,,,, +"Oct 18, 2004",1.626,1.845,1.962,1.921,1.959,1.874,1.94,2.109,2.081,1.885,2.011,1.95,2.002,1.828,1.902,1.761,,,1.666,2.014,1.453,,1.488,1.234,,1.616,1.525,1.403,1.459,1.227,1.262,1.597,,1.255,,1.424,,,,,,,,,, +"Oct 25, 2004",1.657,1.871,2.007,1.941,2.047,1.912,1.962,2.196,2.139,1.934,2.065,2.006,2.009,1.895,1.93,1.737,,,1.71,1.862,1.496,,1.528,1.318,,1.653,1.559,1.474,1.491,1.312,1.306,1.598,,1.319,,1.482,,,,,,,,,, +"Nov 01, 2004",1.682,1.894,2.015,1.954,2.067,1.916,1.965,2.228,2.143,1.973,2.073,2.054,2.054,1.937,1.953,1.749,,,1.723,1.868,1.525,,1.568,1.314,,1.677,1.594,1.475,1.55,1.29,1.337,1.648,,1.329,,1.48,,,,,,,,,, +"Nov 08, 2004",1.69,1.904,2.042,1.948,2.094,1.967,2.038,2.226,2.107,1.982,2.057,2.061,2.056,1.957,1.946,1.752,,,1.725,1.88,1.531,,1.585,1.303,,1.68,1.591,1.472,1.547,1.297,1.35,1.672,,1.324,,1.519,,,,,,,,,, +"Nov 15, 2004",1.689,1.901,2.03,1.932,2.06,1.957,2.034,2.222,2.104,1.974,2.01,2.069,2.053,1.942,1.951,1.758,,,1.729,1.895,1.533,,1.593,1.312,,1.684,1.588,1.482,1.559,1.29,1.351,1.668,,1.313,,1.5,,,,,,,,,, +"Nov 22, 2004",1.688,1.899,2.037,1.933,2.082,1.969,2.029,2.22,2.111,1.986,2.01,2.07,2.059,1.957,1.964,1.737,,,1.704,1.889,1.532,,1.582,1.311,,1.694,1.6,1.479,1.542,1.278,1.347,1.675,,1.315,,1.509,,,,,,,,,, +"Nov 29, 2004",1.704,1.915,2.057,1.958,2.134,1.969,2.051,2.234,2.118,1.986,1.995,2.048,2.067,1.959,1.974,1.772,,,1.746,1.892,1.548,,1.6,1.312,,1.709,1.624,1.495,1.554,1.288,1.356,1.682,,1.331,,1.544,,,,,,,,,, +"Dec 06, 2004",1.71,1.918,2.047,1.941,2.131,1.946,2.034,2.219,2.125,1.987,2.009,2.05,2.067,1.959,1.975,1.783,,,1.76,1.891,1.555,,1.61,1.305,,1.721,1.616,1.511,1.558,1.265,1.348,1.705,,1.318,,1.576,,,,,,,,,, +"Dec 13, 2004",1.713,1.939,2.044,1.932,2.135,1.932,2.043,2.233,2.114,1.98,1.983,2.049,2.046,1.962,1.948,1.849,,,1.836,1.908,1.545,,1.619,1.285,,1.714,1.618,1.494,1.542,1.248,1.337,1.712,,1.304,,1.555,,,,,,,,,, +"Dec 20, 2004",1.718,1.949,2.052,1.938,2.152,1.925,2.051,2.238,2.13,1.999,2.005,2.052,2.04,1.988,1.972,1.848,,,1.834,1.909,1.545,,1.635,1.288,,1.763,1.625,1.516,1.532,1.251,1.331,1.718,,1.306,,1.518,,,,,,,,,, +"Dec 27, 2004",1.729,1.955,2.057,1.907,2.198,1.937,2.045,2.238,2.127,2.007,2.005,2.054,2.051,1.996,1.986,1.849,,,1.835,1.918,1.561,,1.634,1.287,,1.764,1.662,1.512,1.552,1.251,1.341,1.747,,1.309,,1.528,,,,,,,,,, +"Jan 03, 2005",1.73,1.953,2.058,1.897,2.175,1.931,2.067,2.248,2.135,2.005,2.001,2.044,2.039,1.995,1.986,1.849,,,1.837,1.903,1.564,,1.655,1.272,,1.78,1.668,1.529,1.538,1.237,1.348,1.745,,1.295,,1.557,,,,,,,,,, +"Jan 10, 2005",1.728,1.947,2.049,1.897,2.182,1.915,2.044,2.257,2.128,1.997,1.996,2.041,2.041,1.987,1.97,1.845,,,1.833,1.901,1.565,,1.667,1.275,,1.772,1.675,1.52,1.533,1.236,1.342,1.729,,1.289,,1.578,,,,,,,,,, +"Jan 17, 2005",1.725,1.939,2.048,1.911,2.197,1.909,2.042,2.253,2.114,1.994,2.01,2.054,2.04,1.977,1.973,1.829,,,1.812,1.907,1.566,,1.666,1.268,,1.772,1.682,1.519,1.523,1.228,1.346,1.739,,1.289,,1.594,,,,,,,,,, +"Jan 24, 2005",1.731,1.945,2.06,1.904,2.223,1.917,2.052,2.242,2.128,2.002,2.01,2.056,2.066,1.985,1.979,1.83,,,1.812,1.912,1.571,,1.665,1.277,,1.766,1.69,1.517,1.53,1.228,1.35,1.742,,1.281,,1.608,,,,,,,,,, +"Jan 31, 2005",1.728,1.946,2.052,1.909,2.193,1.913,2.046,2.276,2.126,2.002,2.013,2.066,2.069,1.981,1.982,1.834,,,1.813,1.933,1.566,,1.668,1.274,,1.765,1.692,1.516,1.518,1.224,1.34,1.75,,1.26,,1.584,,,,,,,,,, +"Feb 07, 2005",1.723,1.945,2.058,1.907,2.228,1.907,2.041,2.285,2.134,2.006,2.024,2.065,2.063,1.986,1.986,1.825,,,1.803,1.926,1.559,,1.649,1.259,,1.763,1.691,1.513,1.508,1.22,1.306,1.745,,1.255,,1.581,,,,,,,,,, +"Feb 14, 2005",1.721,1.945,2.053,1.894,2.181,1.914,2.046,2.292,2.148,2.008,2.04,2.068,2.068,1.987,1.988,1.824,,,1.802,1.926,1.555,,1.647,1.254,,1.755,1.69,1.505,1.508,1.196,1.29,1.758,,1.253,,1.564,,,,,,,,,, +"Feb 21, 2005",1.717,1.94,2.053,1.916,2.191,1.904,2.041,2.272,2.141,2,2.042,2.065,2.07,1.986,1.951,1.822,,,1.8,1.924,1.551,,1.645,1.243,,1.759,1.668,1.512,1.514,1.19,1.28,1.77,,1.25,,1.549,,,,,,,,,, +"Feb 28, 2005",1.717,1.945,2.056,1.918,2.195,1.915,2.041,2.29,2.143,2.006,2.06,2.067,2.084,1.989,1.963,1.826,,,1.805,1.923,1.547,,1.659,1.223,,1.772,1.669,1.496,1.51,1.194,1.281,1.769,,1.243,,1.542,,,,,,,,,, +"Mar 07, 2005",1.714,1.948,2.066,1.932,2.181,1.922,2.065,2.278,2.155,2.013,2.017,2.05,2.094,1.997,1.989,1.822,,,1.796,1.942,1.54,,1.663,1.227,,1.769,1.666,1.485,1.48,1.194,1.28,1.775,,1.249,,1.545,,,,,,,,,, +"Mar 14, 2005",1.721,1.963,2.074,1.94,2.189,1.936,2.071,2.299,2.158,2.032,2.032,2.072,2.106,2.02,2.002,1.834,,,1.81,1.947,1.54,,1.676,1.235,,1.76,1.676,1.489,1.483,1.218,1.286,1.78,,1.256,,1.51,,,,,,,,,, +"Oct 03, 2005",1.916,2.197,2.255,2.236,2.178,2.239,2.253,2.673,2.293,2.235,2.298,2.358,2.399,2.2,2.156,2.084,,,1.976,2.245,1.743,,1.852,1.54,,1.953,1.813,1.69,1.661,1.475,1.499,1.938,,1.53,,1.769,,,,,,,,,, +"Oct 10, 2005",1.935,2.222,2.306,2.246,2.246,2.301,2.309,2.807,2.329,2.247,2.316,2.282,2.406,2.223,2.195,2.106,,,1.996,2.27,1.757,,1.885,1.545,,1.979,1.818,1.705,1.682,1.469,1.511,1.95,,1.527,,1.79,,,,,,,,,, +"Oct 17, 2005",1.949,2.241,2.31,2.217,2.298,2.302,2.312,2.752,2.334,2.261,2.323,2.325,2.439,2.209,2.225,2.146,,,2.013,2.344,1.769,,1.908,1.561,,1.965,1.842,1.701,1.674,1.474,1.517,2.007,,1.53,,1.766,,,,,,,,,, +"Oct 24, 2005",1.95,2.244,2.31,2.247,2.235,2.312,2.321,2.834,2.322,2.273,2.294,2.337,2.462,2.228,2.234,2.138,,,2.005,2.335,1.77,,1.863,1.544,,1.987,1.849,1.719,1.68,1.479,1.52,2.02,,1.538,,1.764,,,,,,,,,, +"Oct 31, 2005",1.962,2.258,2.338,2.278,2.309,2.327,2.342,2.873,2.339,2.282,2.31,2.336,2.472,2.239,2.244,2.146,,,2.013,2.339,1.78,,1.876,1.549,,2.011,1.86,1.72,1.68,1.493,1.532,2.032,,1.541,,1.785,,,,,,,,,, +"Nov 07, 2005",1.955,2.248,2.328,2.231,2.326,2.324,2.341,2.788,2.32,2.275,2.318,2.342,2.464,2.227,2.231,2.135,,,2.017,2.316,1.773,,1.863,1.538,,2.014,1.864,1.717,1.67,1.49,1.529,2.012,,1.525,,1.784,,,,,,,,,, +"Nov 14, 2005",1.945,2.241,2.326,2.187,2.328,2.328,2.344,2.796,2.33,2.27,2.32,2.338,2.423,2.236,2.222,2.12,,,2.001,2.301,1.762,,1.862,1.525,,1.997,1.851,1.707,1.65,1.468,1.505,2.009,,1.513,,1.779,,,,,,,,,, +"Nov 21, 2005",1.94,2.232,2.319,2.204,2.306,2.317,2.336,2.774,2.326,2.267,2.292,2.348,2.385,2.238,2.221,2.101,,,1.982,2.282,1.759,,1.874,1.49,,1.999,1.853,1.7,1.651,1.46,1.483,2.026,,1.514,,1.769,,,,,,,,,, +"Nov 28, 2005",1.938,2.226,2.312,2.178,2.305,2.319,2.331,2.766,2.315,2.26,2.306,2.356,2.371,2.24,2.197,2.096,,,1.975,2.28,1.76,,1.873,1.486,,2.039,1.849,1.693,1.65,1.458,1.481,2.025,,1.512,,1.776,,,,,,,,,, +"Dec 05, 2005",1.939,2.217,2.286,2.189,2.298,2.239,2.296,2.785,2.312,2.264,2.311,2.361,2.38,2.238,2.207,2.086,,,1.974,2.256,1.767,,1.876,1.496,,2.04,1.864,1.7,1.649,1.44,1.486,2.045,,1.511,,1.786,,,,,,,,,, +"Dec 12, 2005",1.956,2.23,2.286,2.199,2.291,2.244,2.293,2.763,2.313,2.279,2.352,2.393,2.415,2.243,2.217,2.105,,,1.99,2.278,1.787,,1.908,1.509,,2.033,1.884,1.725,1.68,1.455,1.516,2.057,,1.527,,1.803,,,,,,,,,, +"Dec 19, 2005",1.997,2.264,2.312,2.232,2.321,2.264,2.319,2.807,2.335,2.32,2.419,2.43,2.468,2.277,2.256,2.138,,,2.018,2.32,1.832,,1.961,1.537,,2.05,1.941,1.779,1.706,1.508,1.578,2.125,,1.555,,1.826,,,,,,,,,, +"Dec 26, 2005",2.006,2.279,2.315,2.226,2.331,2.269,2.322,2.783,2.34,2.341,2.474,2.455,2.51,2.302,2.258,2.153,,,2.022,2.352,1.839,,1.967,1.544,,2.071,1.94,1.779,1.715,1.527,1.589,2.136,,1.564,,1.838,,,,,,,,,, +"Jan 02, 2006",2.013,2.291,2.329,2.221,2.328,2.284,2.344,2.807,2.363,2.352,2.463,2.476,2.561,2.309,2.259,2.164,,,2.029,2.369,1.842,,1.985,1.545,,2.063,1.957,1.776,1.705,1.524,1.582,2.14,,1.562,,1.846,,,,,,,,,, +"Jan 09, 2006",2.009,2.292,2.319,2.227,2.273,2.282,2.35,2.843,2.338,2.358,2.456,2.478,2.566,2.317,2.266,2.17,,,2.028,2.385,1.834,,1.968,1.532,,2.063,1.948,1.762,1.693,1.498,1.591,2.136,,1.536,,1.853,,,,,,,,,, +"Jan 16, 2006",2.014,2.295,2.332,2.229,2.296,2.278,2.371,2.841,2.353,2.363,2.461,2.503,2.587,2.314,2.268,2.161,,,2.024,2.369,1.84,,2.023,1.534,,2.058,1.959,1.759,1.699,1.461,1.57,2.138,,1.532,,1.86,,,,,,,,,, +"Jan 23, 2006",2.012,2.297,2.337,2.217,2.313,2.29,2.376,2.842,2.358,2.366,2.468,2.524,2.567,2.305,2.285,2.156,,,2.02,2.363,1.837,,2.017,1.521,,2.058,1.956,1.764,1.694,1.46,1.552,2.14,,1.526,,1.859,,,,,,,,,, +"Jan 30, 2006",2.003,2.289,2.343,2.192,2.343,2.281,2.391,2.866,2.364,2.356,2.454,2.519,2.566,2.294,2.273,2.14,,,2.016,2.329,1.827,,2.015,1.511,,2.052,1.94,1.747,1.687,1.443,1.551,2.134,,1.523,,1.846,,,,,,,,,, +"Feb 06, 2006",2,2.287,2.345,2.183,2.348,2.285,2.397,2.871,2.363,2.359,2.46,2.514,2.584,2.298,2.274,2.127,,,1.993,2.332,1.823,,2.017,1.496,,2.043,1.945,1.732,1.68,1.437,1.543,2.14,,1.519,,1.844,,,,,,,,,, +"Feb 13, 2006",2.008,2.286,2.343,2.178,2.321,2.288,2.398,2.907,2.366,2.361,2.455,2.512,2.593,2.295,2.281,2.122,,,1.99,2.323,1.837,,2.049,1.509,,2.073,1.967,1.73,1.682,1.438,1.523,2.181,,1.512,,1.847,,,,,,,,,, +"Feb 20, 2006",2,2.28,2.347,2.169,2.323,2.291,2.401,2.891,2.385,2.35,2.453,2.509,2.571,2.282,2.27,2.117,,,1.976,2.331,1.828,,2.025,1.494,,2.067,1.947,1.739,1.672,1.422,1.514,2.177,,1.509,,1.847,,,,,,,,,, +"Feb 27, 2006",1.997,2.275,2.333,2.177,2.298,2.285,2.386,2.877,2.358,2.345,2.455,2.505,2.567,2.274,2.269,2.116,,,1.978,2.326,1.825,,2.016,1.485,,2.065,1.953,1.736,1.668,1.421,1.505,2.17,,1.511,,1.846,,,,,,,,,, +"Mar 06, 2006",1.991,2.273,2.341,2.176,2.308,2.285,2.398,2.886,2.372,2.34,2.453,2.505,2.551,2.269,2.265,2.112,,,1.964,2.339,1.816,,1.996,1.485,,2.054,1.947,1.734,1.659,1.414,1.503,2.143,,1.496,,1.849,,,,,,,,,, +"Mar 13, 2006",1.984,2.269,2.334,2.184,2.313,2.268,2.383,2.9,2.364,2.335,2.443,2.501,2.547,2.27,2.252,2.111,,,1.964,2.335,1.809,,1.972,1.484,,2.048,1.937,1.728,1.665,1.417,1.501,2.127,,1.495,,1.84,,,,,,,,,, +"Oct 02, 2006",1.941,2.291,2.372,2.239,2.395,2.297,2.374,2.993,2.447,2.346,2.46,2.537,2.517,2.315,2.222,2.132,,,2.023,2.295,1.724,,1.825,1.484,,1.908,1.834,1.664,1.62,1.418,1.471,1.965,,1.5,,1.744,,,,,,,,,, +"Oct 09, 2006",1.942,2.284,2.37,2.223,2.382,2.285,2.371,3.001,2.469,2.336,2.46,2.52,2.529,2.297,2.217,2.128,,,2.019,2.292,1.729,,1.827,1.48,,1.912,1.843,1.669,1.616,1.418,1.471,1.991,,1.474,,1.753,,,,,,,,,, +"Oct 16, 2006",1.934,2.272,2.366,2.209,2.347,2.288,2.378,2.989,2.472,2.323,2.46,2.497,2.543,2.254,2.234,2.109,,,2.005,2.264,1.725,,1.806,1.478,,1.926,1.857,1.663,1.623,1.406,1.452,1.947,,1.471,,1.76,,,,,,,,,, +"Oct 23, 2006",1.933,2.266,2.358,2.185,2.349,2.269,2.374,2.986,2.471,2.316,2.452,2.482,2.537,2.255,2.219,2.106,,,2.003,2.262,1.727,,1.806,1.482,,1.923,1.864,1.682,1.618,1.401,1.449,1.95,,1.466,,1.754,,,,,,,,,, +"Oct 30, 2006",1.934,2.265,2.35,2.193,2.356,2.267,2.356,2.977,2.453,2.313,2.453,2.478,2.547,2.241,2.225,2.115,,,2.021,2.256,1.729,,1.807,1.486,,1.935,1.858,1.686,1.622,1.398,1.455,1.953,,1.466,,1.763,,,,,,,,,, +"Nov 06, 2006",1.94,2.266,2.345,2.19,2.343,2.258,2.349,2.965,2.46,2.32,2.461,2.478,2.546,2.243,2.248,2.11,,,2.017,2.248,1.738,,1.82,1.487,,1.946,1.871,1.691,1.62,1.399,1.455,1.983,,1.467,,1.763,,,,,,,,,, +"Nov 13, 2006",1.946,2.269,2.356,2.184,2.38,2.265,2.36,2.971,2.47,2.32,2.454,2.487,2.557,2.25,2.234,2.111,,,2.014,2.255,1.746,,1.834,1.497,,1.954,1.892,1.686,1.627,1.397,1.447,1.99,,1.478,,1.76,,,,,,,,,, +"Nov 20, 2006",1.945,2.268,2.35,2.17,2.346,2.266,2.362,2.97,2.467,2.318,2.457,2.488,2.554,2.23,2.25,2.116,,,2.016,2.267,1.744,,1.838,1.488,,1.956,1.895,1.682,1.632,1.403,1.45,1.983,,1.472,,1.749,,,,,,,,,, +"Nov 27, 2006",1.95,2.267,2.346,2.175,2.348,2.263,2.358,2.966,2.449,2.319,2.457,2.487,2.55,2.23,2.255,2.117,,,2.018,2.264,1.754,,1.847,1.489,,1.995,1.901,1.696,1.63,1.424,1.456,1.996,,1.472,,1.756,,,,,,,,,, +"Dec 04, 2006",1.974,2.288,2.352,2.193,2.359,2.268,2.345,3.018,2.47,2.347,2.462,2.509,2.589,2.237,2.313,2.138,,,2.045,2.279,1.779,,1.874,1.512,,2.034,1.928,1.705,1.666,1.454,1.477,2.018,,1.482,,1.787,,,,,,,,,, +"Dec 11, 2006",1.978,2.295,2.363,2.199,2.376,2.274,2.368,3.006,2.468,2.35,2.466,2.516,2.593,2.233,2.322,2.148,,,2.057,2.285,1.782,,1.881,1.509,,2.05,1.935,1.709,1.665,1.453,1.488,2.021,,1.495,,1.771,,,,,,,,,, +"Dec 18, 2006",1.982,2.293,2.365,2.192,2.422,2.275,2.367,2.988,2.457,2.344,2.471,2.51,2.594,2.231,2.308,2.147,,,2.053,2.288,1.789,,1.894,1.499,,2.064,1.94,1.722,1.667,1.461,1.501,2.043,,1.492,,1.774,,,,,,,,,, +"Dec 25, 2006",1.984,2.296,2.361,2.195,2.397,2.272,2.367,3.003,2.45,2.352,2.461,2.533,2.609,2.235,2.313,2.151,,,2.047,2.31,1.792,,1.897,1.504,,2.052,1.952,1.715,1.669,1.468,1.506,2.042,,1.491,,1.777,,,,,,,,,, +"Jan 01, 2007",1.986,2.298,2.368,2.203,2.406,2.271,2.369,3.02,2.47,2.351,2.466,2.523,2.613,2.235,2.312,2.152,,,2.046,2.313,1.793,,1.887,1.504,,2.061,1.956,1.718,1.673,1.461,1.498,2.051,,1.491,,1.776,,,,,,,,,, +"Jan 08, 2007",1.993,2.301,2.369,2.185,2.4,2.287,2.374,2.973,2.474,2.349,2.468,2.521,2.605,2.259,2.28,2.164,,,2.059,2.324,1.804,,1.921,1.498,,2.058,1.961,1.743,1.675,1.454,1.499,2.067,,1.485,,1.794,,,,,,,,,, +"Jan 15, 2007",1.992,2.3,2.362,2.183,2.395,2.28,2.367,2.848,2.478,2.354,2.461,2.534,2.581,2.258,2.302,2.159,,,2.059,2.311,1.803,,1.931,1.482,,2.067,1.96,1.734,1.674,1.452,1.496,2.064,,1.484,,1.8,,,,,,,,,, +"Jan 22, 2007",1.992,2.302,2.366,2.174,2.416,2.275,2.374,2.774,2.49,2.356,2.455,2.529,2.575,2.263,2.306,2.161,,,2.061,2.313,1.802,,1.931,1.485,,2.065,1.957,1.731,1.682,1.448,1.491,2.064,,1.476,,1.796,,,,,,,,,, +"Jan 29, 2007",1.996,2.307,2.368,2.183,2.439,2.277,2.368,2.771,2.488,2.367,2.456,2.507,2.618,2.27,2.329,2.158,,,2.062,2.305,1.802,,1.945,1.485,,2.073,1.968,1.731,1.676,1.442,1.461,2.048,,1.477,,1.795,,,,,,,,,, +"Feb 05, 2007",2.005,2.319,2.389,2.212,2.478,2.288,2.392,2.768,2.499,2.375,2.453,2.516,2.609,2.29,2.33,2.169,,,2.075,2.311,1.811,,1.953,1.489,,2.077,1.972,1.739,1.686,1.452,1.476,2.066,,1.488,,1.804,,,,,,,,,, +"Feb 12, 2007",2.02,2.334,2.395,2.233,2.478,2.289,2.392,2.787,2.51,2.402,2.464,2.532,2.656,2.318,2.358,2.171,,,2.074,2.317,1.825,,1.96,1.505,,2.086,1.999,1.742,1.7,1.477,1.486,2.075,,1.501,,1.82,,,,,,,,,, +"Feb 19, 2007",2.025,2.342,2.419,2.235,2.527,2.295,2.426,2.793,2.54,2.406,2.471,2.539,2.648,2.327,2.359,2.17,,,2.069,2.322,1.828,,1.976,1.504,,2.095,2.005,1.73,1.697,1.489,1.502,2.081,,1.516,,1.819,,,,,,,,,, +"Feb 26, 2007",2.029,2.35,2.463,2.287,2.68,2.317,2.453,2.807,2.555,2.405,2.483,2.548,2.631,2.326,2.357,2.159,,,2.053,2.32,1.83,,1.983,1.507,,2.083,2.006,1.73,1.704,1.496,1.497,2.086,,1.516,,1.821,,,,,,,,,, +"Mar 05, 2007",2.029,2.356,2.459,2.274,2.605,2.33,2.456,2.804,2.578,2.411,2.493,2.556,2.638,2.333,2.359,2.176,,,2.066,2.343,1.827,,1.99,1.514,,2.085,2,1.74,1.684,1.5,1.496,2.063,,1.523,,1.819,,,,,,,,,, +"Mar 12, 2007",2.046,2.372,2.476,2.313,2.608,2.36,2.465,2.874,2.584,2.427,2.509,2.56,2.64,2.342,2.393,2.192,,,2.071,2.377,1.843,,1.999,1.522,,2.093,2.039,1.757,1.678,1.501,1.505,2.094,,1.526,,1.843,,,,,,,,,, +"Oct 08, 2007",2.125,2.506,2.565,2.425,2.682,2.523,2.598,2.876,2.521,2.535,2.634,2.679,2.73,2.433,2.518,2.406,,,2.309,2.553,1.89,,1.968,1.707,,2.069,1.972,1.837,1.805,1.657,1.66,2.11,,1.663,,1.873,,,,,,,,,, +"Oct 15, 2007",2.153,2.527,2.578,2.433,2.679,2.542,2.595,2.929,2.57,2.564,2.655,2.719,2.72,2.477,2.539,2.422,,,2.321,2.575,1.921,,1.998,1.749,,2.118,2.023,1.861,1.828,1.679,1.669,2.142,,1.683,,1.885,,,,,,,,,, +"Oct 22, 2007",2.208,2.58,2.632,2.503,2.767,2.58,2.639,2.968,2.624,2.62,2.749,2.774,2.776,2.536,2.585,2.468,,,2.379,2.603,1.979,,2.081,1.794,,2.182,2.071,1.899,1.889,1.742,1.742,2.215,,1.727,,1.936,,,,,,,,,, +"Oct 29, 2007",2.248,2.62,2.682,2.536,2.825,2.645,2.693,3.023,2.653,2.652,2.76,2.803,2.837,2.563,2.619,2.512,,,2.394,2.692,2.018,,2.148,1.815,,2.236,2.1,1.931,1.922,1.779,1.779,2.279,,1.768,,1.968,,,,,,,,,, +"Nov 05, 2007",2.333,2.706,2.763,2.585,2.914,2.773,2.78,3.093,2.697,2.723,2.817,2.849,2.959,2.649,2.669,2.628,,,2.524,2.786,2.103,,2.259,1.876,,2.338,2.162,2.014,1.987,1.841,1.868,2.419,,1.841,,2.052,,,,,,,,,, +"Nov 12, 2007",2.412,2.796,2.859,2.673,3.003,2.792,2.897,3.157,2.846,2.803,2.878,2.948,3.039,2.712,2.764,2.729,,,2.621,2.895,2.175,,2.332,1.904,,2.433,2.231,2.047,2.091,1.874,1.92,2.566,,1.892,,2.098,,,,,,,,,, +"Nov 19, 2007",2.435,2.814,2.844,2.656,2.935,2.778,2.869,3.406,2.861,2.833,2.894,3.037,3.142,2.711,2.787,2.757,,,2.659,2.906,2.2,,2.383,1.909,,2.456,2.251,2.086,2.112,1.881,1.92,2.617,,1.895,,2.107,,,,,,,,,, +"Nov 26, 2007",2.449,2.834,2.871,2.684,2.95,2.798,2.896,3.432,2.9,2.854,2.893,3.07,3.168,2.734,2.802,2.77,,,2.677,2.912,2.212,,2.413,1.92,,2.465,2.264,2.088,2.136,1.888,1.95,2.612,,1.898,,2.111,,,,,,,,,, +"Dec 03, 2007",2.461,2.849,2.904,2.71,2.985,2.82,2.929,3.38,2.965,2.872,2.905,3.057,3.19,2.747,2.838,2.762,,,2.671,2.904,2.22,,2.43,1.919,,2.472,2.311,2.094,2.139,1.883,1.954,2.588,,1.899,,2.116,,,,,,,,,, +"Dec 10, 2007",2.471,2.868,2.918,2.722,3.001,2.831,2.938,3.383,2.994,2.898,2.913,3.073,3.186,2.788,2.864,2.775,,,2.679,2.925,2.224,,2.438,1.918,,2.484,2.309,2.101,2.122,1.873,1.981,2.606,,1.923,,2.124,,,,,,,,,, +"Dec 17, 2007",2.487,2.883,2.933,2.747,2.962,2.837,2.975,3.392,3.016,2.916,2.924,3.08,3.203,2.817,2.874,2.785,,,2.694,2.924,2.241,,2.457,1.925,,2.494,2.315,2.118,2.152,1.881,1.983,2.649,,1.943,,2.128,,,,,,,,,, +"Dec 24, 2007",2.502,2.903,2.951,2.739,3.005,2.88,2.981,3.361,3.03,2.938,2.933,3.088,3.227,2.848,2.893,2.805,,,2.705,2.958,2.253,,2.466,1.954,,2.499,2.342,2.127,2.159,1.887,1.992,2.648,,1.944,,2.139,,,,,,,,,, +"Dec 31, 2007",2.524,2.922,2.979,2.773,3.006,2.887,3.012,3.397,3.09,2.967,2.956,3.114,3.263,2.871,2.93,2.798,,,2.697,2.952,2.277,,2.486,1.96,,2.517,2.373,2.15,2.195,1.907,1.996,2.683,,1.96,,2.157,,,,,,,,,, +"Jan 07, 2008",2.563,2.972,3.023,2.799,3.052,2.911,3.054,3.46,3.167,3.017,3.019,3.154,3.28,2.936,2.977,2.853,,,2.745,3.017,2.308,,2.51,1.985,,2.541,2.418,2.173,2.228,1.953,2.03,2.697,,2.01,,2.195,,,,,,,,,, +"Jan 14, 2008",2.565,2.979,3.048,2.82,3.081,2.917,3.092,3.478,3.191,3.018,3.017,3.151,3.264,2.93,2.991,2.857,,,2.747,3.024,2.306,,2.491,1.981,,2.55,2.418,2.16,2.228,1.951,2.019,2.704,,2.012,,2.2,,,,,,,,,, +"Jan 21, 2008",2.563,2.981,3.052,2.807,3.095,2.912,3.1,3.493,3.203,3.029,3.043,3.16,3.297,2.944,2.99,2.843,,,2.737,3.003,2.301,,2.492,1.966,,2.555,2.414,2.161,2.219,1.903,2.006,2.708,,1.993,,2.199,,,,,,,,,, +"Jan 28, 2008",2.562,2.979,3.046,2.842,3.075,2.91,3.084,3.494,3.19,3.025,3.034,3.165,3.337,2.931,2.982,2.845,,,2.744,2.998,2.302,,2.497,1.968,,2.549,2.421,2.166,2.221,1.899,1.987,2.703,,1.987,,2.196,,,,,,,,,, +"Feb 04, 2008",2.563,2.979,3.047,2.825,3.065,2.905,3.087,3.467,3.216,3.028,3.034,3.186,3.346,2.93,2.98,2.84,,,2.737,2.995,2.303,,2.501,1.974,,2.548,2.419,2.174,2.228,1.884,2.007,2.687,,1.993,,2.198,,,,,,,,,, +"Feb 11, 2008",2.552,2.969,3.05,2.811,3.07,2.92,3.089,3.473,3.216,3.016,3.023,3.173,3.35,2.935,2.944,2.824,,,2.719,2.983,2.291,,2.485,1.951,,2.545,2.412,2.172,2.216,1.862,2.008,2.663,,1.984,,2.186,,,,,,,,,, +"Feb 18, 2008",2.55,2.974,3.069,2.796,3.081,2.931,3.13,3.481,3.238,3.019,3.024,3.178,3.35,2.95,2.936,2.817,,,2.707,2.986,2.285,,2.479,1.966,,2.549,2.398,2.165,2.199,1.862,2,2.646,,1.978,,2.197,,,,,,,,,, +"Feb 25, 2008",2.58,2.983,3.079,2.842,3.095,2.947,3.131,3.477,3.235,3.03,3.033,3.194,3.331,2.957,2.958,2.823,,,2.716,2.985,2.328,,2.487,2.09,,2.542,2.415,2.24,2.23,1.948,2.005,2.651,,2.111,,2.27,,,,,,,,,, +"Mar 03, 2008",2.604,2.999,3.092,2.836,3.112,2.951,3.149,3.51,3.255,3.053,3.044,3.19,3.38,2.97,2.996,2.83,,,2.725,2.99,2.357,,2.488,2.195,,2.542,2.433,2.279,2.289,2.051,2.11,2.571,,2.107,,2.329,,,,,,,,,, +"Mar 10, 2008",2.603,3,3.082,2.854,3.085,2.938,3.115,3.552,3.275,3.057,3.059,3.201,3.379,2.971,3.001,2.837,,,2.731,2.997,2.354,,2.482,2.141,,2.537,2.431,2.285,2.308,2.007,2.092,2.58,,2.064,,2.35,,,,,,,,,, +"Mar 17, 2008",2.598,3.014,3.102,2.907,3.11,2.961,3.12,3.551,3.295,3.066,3.064,3.2,3.402,2.985,3.004,2.852,,,2.754,3,2.338,,2.469,2.115,,2.528,2.397,2.27,2.298,1.999,2.111,2.571,,2.062,,2.328,,,,,,,,,, +"Oct 06, 2008",2.66,3.136,3.182,3.057,3.281,3.14,3.143,3.589,3.252,3.241,3.143,3.254,3.516,3.088,3.341,2.935,,,2.831,3.092,2.361,,2.45,2.129,,2.644,2.489,2.281,2.25,2.028,2.061,2.629,,2.081,,2.342,,,,,,,,,, +"Oct 13, 2008",2.603,3.069,3.15,2.982,3.3,3.095,3.126,3.512,3.208,3.14,3.142,3.164,3.456,3.057,3.127,2.886,,,2.786,3.038,2.31,,2.424,2.107,,2.61,2.441,2.237,2.197,1.893,2.004,2.542,,1.998,,2.309,,,,,,,,,, +"Oct 20, 2008",2.557,3.015,3.117,2.924,3.218,3.075,3.118,3.511,3.169,3.092,3.1,3.078,3.431,3.042,3.048,2.804,,,2.7,2.961,2.27,,2.387,1.993,,2.571,2.419,2.2,2.172,1.758,1.933,2.538,,1.949,,2.276,,,,,,,,,, +"Oct 27, 2008",2.527,2.982,3.094,2.876,3.234,3.037,3.083,3.471,3.175,3.038,3.057,3.091,3.333,2.978,2.99,2.793,,,2.702,2.933,2.241,,2.363,1.925,,2.543,2.393,2.138,2.167,1.728,1.878,2.522,,1.905,,2.271,,,,,,,,,, +"Nov 03, 2008",2.5,2.94,3.076,2.876,3.166,2.991,3.104,3.446,3.15,3.008,3.029,3.087,3.248,2.953,2.96,2.713,,,2.586,2.907,2.224,,2.374,1.91,,2.51,2.388,2.128,2.152,1.692,1.823,2.494,,1.859,,2.243,,,,,,,,,, +"Nov 10, 2008",2.463,2.882,2.992,2.825,3.106,2.869,2.987,3.394,3.098,2.967,2.973,3.043,3.312,2.919,2.873,2.654,,,2.494,2.898,2.198,,2.357,1.881,,2.469,2.384,2.086,2.134,1.662,1.815,2.464,,1.792,,2.22,,,,,,,,,, +"Nov 17, 2008",2.443,2.855,2.965,2.801,3.076,2.839,2.97,3.364,3.077,2.942,2.933,3.013,3.285,2.868,2.894,2.621,,,2.47,2.851,2.186,,2.352,1.862,,2.493,2.384,2.059,2.103,1.614,1.762,2.458,,1.748,,2.21,,,,,,,,,, +"Nov 24, 2008",2.415,2.811,2.921,2.733,3.032,2.789,2.92,3.344,3.062,2.906,2.888,2.983,3.242,2.828,2.864,2.564,,,2.441,2.749,2.168,,2.343,1.827,,2.47,2.374,2.034,2.095,1.595,1.726,2.441,,1.701,,2.195,,,,,,,,,, +"Dec 01, 2008",2.401,2.785,2.906,2.704,3.017,2.758,2.904,3.362,3.071,2.888,2.878,2.958,3.2,2.81,2.854,2.516,,,2.415,2.669,2.163,,2.325,1.857,,2.467,2.382,2.019,2.072,1.584,1.684,2.453,,1.671,,2.184,,,,,,,,,, +"Dec 08, 2008",2.369,2.738,2.8,2.63,2.952,2.615,2.782,3.283,2.98,2.857,2.852,2.904,3.156,2.78,2.833,2.499,,,2.402,2.646,2.139,,2.302,1.825,,2.455,2.375,1.987,2.04,1.543,1.656,2.433,,1.614,,2.167,,,,,,,,,, +"Dec 15, 2008",2.341,2.707,2.775,2.641,2.939,2.596,2.739,3.296,2.942,2.825,2.821,2.898,3.091,2.754,2.795,2.464,,,2.364,2.615,2.113,,2.281,1.777,,2.444,2.358,1.942,2.031,1.55,1.624,2.389,,1.585,,2.141,,,,,,,,,, +"Dec 22, 2008",2.33,2.694,2.775,2.663,2.892,2.593,2.743,3.243,2.963,2.804,2.776,2.898,3.043,2.738,2.773,2.449,,,2.351,2.599,2.104,,2.277,1.796,,2.445,2.35,1.921,2.004,1.569,1.609,2.377,,1.57,,2.135,,,,,,,,,, +"Dec 29, 2008",2.317,2.675,2.752,2.601,2.877,2.595,2.705,3.298,2.946,2.786,2.75,2.873,3.039,2.723,2.751,2.432,,,2.352,2.553,2.095,,2.28,1.782,,2.437,2.331,1.923,1.989,1.552,1.613,2.371,,1.568,,2.123,,,,,,,,,, +"Jan 05, 2009",2.31,2.668,2.744,2.578,2.874,2.573,2.719,3.291,2.923,2.78,2.731,2.847,3.011,2.73,2.748,2.428,,,2.348,2.548,2.087,,2.279,1.769,,2.42,2.314,1.916,1.976,1.558,1.6,2.366,,1.569,,2.121,,,,,,,,,, +"Jan 12, 2009",2.306,2.667,2.727,2.568,2.884,2.55,2.688,3.288,2.911,2.786,2.743,2.845,3.022,2.733,2.758,2.429,,,2.35,2.548,2.081,,2.268,1.739,,2.401,2.329,1.915,1.97,1.559,1.602,2.351,,1.578,,2.105,,,,,,,,,, +"Jan 19, 2009",2.312,2.684,2.74,2.602,2.891,2.546,2.691,3.345,2.943,2.805,2.756,2.891,3.028,2.727,2.799,2.447,,,2.36,2.58,2.081,,2.253,1.738,,2.388,2.323,1.922,1.969,1.563,1.612,2.372,,1.585,,2.109,,,,,,,,,, +"Jan 26, 2009",2.324,2.707,2.756,2.608,2.959,2.562,2.694,3.381,2.946,2.828,2.763,2.914,3.096,2.731,2.834,2.476,,,2.375,2.63,2.086,,2.266,1.75,,2.414,2.327,1.903,1.989,1.57,1.602,2.374,,1.589,,2.101,,,,,,,,,, +"Feb 02, 2009",2.324,2.72,2.779,2.675,2.952,2.588,2.715,3.394,2.963,2.847,2.768,2.903,3.09,2.773,2.846,2.472,,,2.374,2.621,2.077,,2.261,1.717,,2.407,2.328,1.908,1.965,1.554,1.612,2.366,,1.596,,2.09,,,,,,,,,, +"Feb 09, 2009",2.32,2.729,2.815,2.702,2.977,2.582,2.782,3.381,3.014,2.847,2.752,2.898,3.089,2.783,2.842,2.468,,,2.376,2.608,2.066,,2.236,1.712,,2.395,2.316,1.892,1.953,1.559,1.612,2.37,,1.592,,2.073,,,,,,,,,, +"Feb 16, 2009",2.31,2.72,2.816,2.705,2.985,2.59,2.786,3.448,2.994,2.841,2.744,2.902,3.08,2.78,2.83,2.445,,,2.356,2.579,2.055,,2.25,1.683,,2.385,2.314,1.869,1.931,1.537,1.601,2.36,,1.57,,2.063,,,,,,,,,, +"Feb 23, 2009",2.292,2.71,2.817,2.68,3.016,2.617,2.79,3.413,2.957,2.829,2.712,2.882,3.06,2.77,2.823,2.431,,,2.35,2.555,2.032,,2.187,1.671,,2.373,2.305,1.853,1.896,1.501,1.596,2.346,,1.542,,2.04,,,,,,,,,, +"Mar 02, 2009",2.274,2.696,2.795,2.634,2.964,2.623,2.754,3.339,2.969,2.826,2.748,2.861,3.05,2.768,2.821,2.407,,,2.321,2.538,2.012,,2.152,1.652,,2.341,2.295,1.849,1.866,1.494,1.56,2.336,,1.515,,2.015,,,,,,,,,, +"Mar 09, 2009",2.246,2.663,2.756,2.625,2.912,2.565,2.741,2.948,2.947,2.794,2.734,2.797,3.016,2.744,2.791,2.378,,,2.294,2.505,1.987,,2.084,1.64,,2.303,2.278,1.837,1.846,1.476,1.529,2.31,,1.491,,1.987,,,,,,,,,, +"Mar 16, 2009",2.223,2.639,2.738,2.613,2.902,2.545,2.733,3,2.895,2.771,2.699,2.759,3.013,2.734,2.755,2.344,,,2.264,2.465,1.965,,2.061,1.621,,2.26,2.271,1.805,1.829,1.458,1.508,2.278,,1.491,,1.96,,,,,,,,,, +"Oct 05, 2009",1.94,2.469,2.546,2.33,2.546,2.44,2.542,2.798,2.552,2.575,2.535,2.484,2.86,2.47,2.594,2.206,,,2.177,2.272,1.529,,1.64,1.297,,1.738,1.719,1.484,1.456,1.289,1.242,1.796,,1.374,,1.399,,,,,,,,,, +"Oct 12, 2009",1.962,2.48,2.56,2.398,2.552,2.478,2.568,2.776,2.532,2.585,2.536,2.508,2.843,2.458,2.629,2.215,,,2.186,2.281,1.559,,1.652,1.313,,1.763,1.755,1.518,1.477,1.341,1.259,1.84,,1.385,,1.453,,,,,,,,,, +"Oct 19, 2009",2.002,2.516,2.58,2.383,2.625,2.514,2.557,2.829,2.55,2.627,2.569,2.522,2.936,2.491,2.669,2.255,,,2.24,2.29,1.601,,1.699,1.376,,1.783,1.785,1.569,1.518,1.376,1.336,1.854,,1.415,,1.507,,,,,,,,,, +"Oct 26, 2009",2.06,2.569,2.621,2.438,2.657,2.543,2.632,2.854,2.541,2.681,2.616,2.546,3.01,2.537,2.733,2.314,,,2.317,2.308,1.664,,1.787,1.441,,1.848,1.817,1.645,1.609,1.449,1.414,1.879,,1.511,,1.563,,,,,,,,,, +"Nov 02, 2009",2.089,2.593,2.63,2.448,2.693,2.557,2.622,2.878,2.549,2.705,2.641,2.58,3.009,2.563,2.763,2.352,,,2.343,2.373,1.695,,1.825,1.472,,1.883,1.844,1.633,1.649,1.459,1.449,1.954,,1.549,,1.6,,,,,,,,,, +"Nov 09, 2009",2.124,2.613,2.635,2.445,2.744,2.59,2.61,2.822,2.575,2.731,2.649,2.592,3.069,2.585,2.786,2.374,,,2.36,2.407,1.742,,1.891,1.522,,1.915,1.887,1.697,1.692,1.485,1.522,1.988,,1.579,,1.643,,,,,,,,,, +"Nov 16, 2009",2.153,2.635,2.654,2.478,2.736,2.583,2.616,2.902,2.616,2.757,2.646,2.625,3.113,2.615,2.805,2.388,,,2.375,2.419,1.777,,1.92,1.562,,1.949,1.94,1.739,1.719,1.502,1.571,2.01,,1.614,,1.668,,,,,,,,,, +"Nov 23, 2009",2.186,2.668,2.686,2.496,2.766,2.582,2.627,3.029,2.651,2.796,2.652,2.65,3.123,2.683,2.837,2.412,,,2.403,2.432,1.812,,1.943,1.618,,2.005,1.948,1.823,1.738,1.505,1.604,2.007,,1.657,,1.714,,,,,,,,,, +"Nov 30, 2009",2.209,2.687,2.693,2.487,2.765,2.618,2.651,2.978,2.663,2.82,2.668,2.646,3.162,2.701,2.87,2.433,,,2.414,2.476,1.836,,2.042,1.63,,2.028,1.98,1.816,1.75,1.516,1.642,2.043,,1.701,,1.716,,,,,,,,,, +"Dec 07, 2009",2.254,2.745,2.736,2.554,2.782,2.67,2.696,2.988,2.732,2.891,2.697,2.689,3.27,2.758,2.956,2.478,,,2.462,2.514,1.872,,2.094,1.647,,2.093,2.009,1.858,1.791,1.559,1.695,2.061,,1.714,,1.758,,,,,,,,,, +"Dec 14, 2009",2.274,2.773,2.748,2.572,2.8,2.678,2.706,2.968,2.763,2.923,2.703,2.711,3.309,2.78,3,2.512,,,2.491,2.559,1.886,,2.106,1.638,,2.122,2.045,1.874,1.769,1.588,1.713,2.075,,1.732,,1.777,,,,,,,,,, +"Dec 21, 2009",2.314,2.833,2.799,2.582,2.813,2.73,2.727,3.223,2.799,2.995,2.765,2.764,3.487,2.805,3.08,2.558,,,2.534,2.613,1.91,,2.121,1.654,,2.173,2.074,1.89,1.796,1.621,1.736,2.107,,1.749,,1.795,,,,,,,,,, +"Dec 28, 2009",2.381,2.883,2.84,2.607,2.851,2.8,2.77,3.261,2.834,3.045,2.8,2.885,3.528,2.835,3.132,2.617,,,2.608,2.636,1.991,,2.188,1.719,,2.193,2.168,1.945,1.895,1.703,1.783,2.296,,1.776,,1.853,,,,,,,,,, +"Jan 04, 2010",2.46,2.969,2.901,2.622,2.893,2.855,2.852,3.282,2.919,3.129,2.861,2.938,3.618,2.944,3.205,2.729,,,2.724,2.741,2.063,,2.325,1.778,,2.269,2.263,1.994,1.947,1.738,1.87,2.36,,1.867,,1.913,,,,,,,,,, +"Jan 11, 2010",2.589,3.126,3.019,2.717,3.036,2.893,2.95,3.488,3.051,3.267,3.007,3.086,3.77,3.092,3.325,2.954,,,2.939,2.988,2.17,,2.449,1.846,,2.422,2.346,2.121,2.068,1.825,1.967,2.527,,1.906,,1.99,,,,,,,,,, +"Jan 18, 2010",2.598,3.159,3.046,2.703,3.036,2.954,2.991,3.432,3.138,3.303,3.012,3.114,3.805,3.12,3.374,2.987,,,2.943,3.087,2.161,,2.477,1.82,,2.451,2.351,2.061,2.083,1.768,1.941,2.542,,1.888,,1.965,,,,,,,,,, +"Jan 25, 2010",2.601,3.168,3.06,2.767,3.061,2.967,2.996,3.426,3.147,3.299,3.019,3.096,3.798,3.122,3.37,3.014,,,2.983,3.085,2.16,,2.486,1.817,,2.419,2.344,2.068,2.072,1.78,1.928,2.559,,1.886,,1.965,,,,,,,,,, +"Feb 01, 2010",2.601,3.161,3.078,2.802,3.043,2.998,2.991,3.495,3.2,3.303,3.071,3.124,3.757,3.124,3.377,2.968,,,2.942,3.026,2.165,,2.496,1.814,,2.448,2.341,2.065,2.072,1.795,1.924,2.566,,1.888,,1.984,,,,,,,,,, +"Feb 08, 2010",2.604,3.155,3.087,2.78,3.023,3.02,3.012,3.526,3.205,3.298,3.086,3.108,3.793,3.123,3.354,2.947,,,2.941,2.96,2.174,,2.508,1.844,,2.471,2.32,2.08,2.095,1.844,1.922,2.523,,1.926,,2.01,,,,,,,,,, +"Feb 15, 2010",2.604,3.164,3.08,2.786,2.978,3.027,3.01,3.5,3.223,3.315,3.063,3.123,3.924,3.123,3.351,2.951,,,2.937,2.984,2.169,,2.517,1.85,,2.469,2.302,2.083,2.089,1.852,1.935,2.492,,1.92,,2.003,,,,,,,,,, +"Feb 22, 2010",2.6,3.156,3.082,2.817,3.009,3.005,3.001,3.512,3.209,3.312,3.095,3.118,3.833,3.117,3.379,2.925,,,2.894,2.996,2.168,,2.508,1.848,,2.458,2.301,2.072,2.079,1.806,1.933,2.547,,1.912,,2.001,,,,,,,,,, +"Mar 01, 2010",2.589,3.15,3.085,2.812,3.008,3.012,2.998,3.521,3.226,3.305,3.089,3.139,3.831,3.112,3.359,2.915,,,2.897,2.956,2.153,,2.487,1.827,,2.426,2.271,2.059,2.063,1.79,1.915,2.576,,1.888,,1.983,,,,,,,,,, +"Mar 08, 2010",2.556,3.108,3.071,2.805,2.997,2.998,2.992,3.502,3.193,3.249,3.103,3.142,3.763,3.067,3.271,2.875,,,2.853,2.924,2.126,,2.468,1.786,,2.422,2.273,2.04,2.051,1.746,1.883,2.482,,1.873,,1.963,,,,,,,,,, +"Mar 15, 2010",2.523,3.08,3.062,2.785,2.939,3.012,2.993,3.627,3.116,3.211,3.089,3.132,3.729,3.059,3.192,2.849,,,2.836,2.878,2.09,,2.433,1.752,,2.395,2.226,2.015,2.014,1.71,1.838,2.438,,1.848,,1.931,,,,,,,,,, +"Oct 04, 2010",2.224,2.747,2.819,2.608,2.668,2.766,2.82,3.269,2.79,2.806,2.95,2.92,3.384,2.691,2.649,2.572,,,2.554,2.622,1.839,,2.015,1.607,,2.068,2.061,1.741,1.768,1.579,1.586,2.159,,1.618,,1.744,,,,,,,,,, +"Oct 11, 2010",2.264,2.782,2.84,2.626,2.65,2.79,2.845,3.295,2.839,2.85,2.952,2.951,3.378,2.741,2.716,2.603,,,2.593,2.629,1.883,,2.077,1.628,,2.111,2.104,1.78,1.828,1.625,1.601,2.225,,1.662,,1.788,,,,,,,,,, +"Oct 18, 2010",2.29,2.82,2.852,2.655,2.675,2.82,2.867,3.262,2.826,2.887,2.975,2.957,3.31,2.765,2.815,2.666,,,2.665,2.67,1.9,,2.12,1.645,,2.137,2.115,1.794,1.845,1.626,1.62,2.24,,1.693,,1.794,,,,,,,,,, +"Oct 25, 2010",2.302,2.831,2.879,2.635,2.701,2.827,2.876,3.309,2.916,2.891,2.977,2.946,3.323,2.772,2.818,2.677,,,2.678,2.673,1.913,,2.129,1.648,,2.18,2.132,1.796,1.856,1.617,1.619,2.271,,1.701,,1.809,,,,,,,,,, +"Nov 01, 2010",2.327,2.85,2.911,2.683,2.695,2.876,2.877,3.503,2.924,2.922,2.985,2.97,3.333,2.825,2.839,2.664,,,2.658,2.679,1.942,,2.273,1.648,,2.229,2.143,1.802,1.856,1.621,1.636,2.353,,1.697,,1.82,,,,,,,,,, +"Nov 08, 2010",2.371,2.917,2.96,2.721,2.724,2.927,2.912,3.557,3.03,3.003,2.997,3.107,3.377,2.903,2.93,2.718,,,2.692,2.786,1.969,,2.291,1.675,,2.317,2.177,1.814,1.873,1.641,1.65,2.41,,1.711,,1.83,,,,,,,,,, +"Nov 15, 2010",2.39,2.943,2.993,2.743,2.728,2.949,2.971,3.541,3.08,3.028,3.031,3.135,3.427,2.943,2.929,2.74,,,2.729,2.77,1.984,,2.325,1.681,,2.325,2.207,1.84,1.876,1.656,1.679,2.418,,1.718,,1.821,,,,,,,,,, +"Nov 22, 2010",2.419,2.987,3.053,2.751,2.79,2.986,3.032,3.606,3.167,3.065,3.063,3.155,3.517,2.964,2.968,2.781,,,2.767,2.82,2.002,,2.388,1.682,,2.364,2.21,1.843,1.873,1.652,1.682,2.486,,1.735,,1.836,,,,,,,,,, +"Nov 29, 2010",2.438,3.014,3.068,2.78,2.825,3.017,3.025,3.64,3.181,3.109,3.132,3.21,3.591,3.008,2.993,2.791,,,2.753,2.893,2.014,,2.405,1.688,,2.384,2.218,1.849,1.881,1.666,1.684,2.531,,1.735,,1.842,,,,,,,,,, +"Dec 06, 2010",2.461,3.046,3.093,2.826,2.805,3.063,3.069,3.635,3.209,3.136,3.069,3.178,3.624,3.039,3.046,2.836,,,2.809,2.91,2.031,,2.467,1.695,,2.401,2.227,1.882,1.9,1.666,1.705,2.505,,1.756,,1.864,,,,,,,,,, +"Dec 13, 2010",2.49,3.081,3.145,2.849,2.861,3.07,3.161,3.646,3.239,3.172,3.112,3.191,3.656,3.073,3.09,2.855,,,2.823,2.94,2.054,,2.468,1.713,,2.425,2.252,1.9,1.917,1.683,1.728,2.572,,1.772,,1.89,,,,,,,,,, +"Dec 20, 2010",2.539,3.153,3.21,2.908,2.935,3.119,3.255,3.682,3.259,3.236,3.138,3.216,3.863,3.131,3.123,2.95,,,2.921,3.029,2.086,,2.506,1.729,,2.464,2.293,1.932,1.956,1.704,1.763,2.608,,1.796,,1.915,,,,,,,,,, +"Dec 27, 2010",2.572,3.2,3.266,2.992,2.97,3.147,3.334,3.695,3.315,3.283,3.144,3.264,3.883,3.208,3.159,2.985,,,2.955,3.065,2.11,,2.535,1.755,,2.466,2.322,1.964,1.981,1.72,1.779,2.637,,1.809,,1.928,,,,,,,,,, +"Jan 03, 2011",2.603,3.241,3.32,2.953,2.994,3.2,3.427,3.74,3.367,3.326,3.199,3.282,3.966,3.253,3.19,3.013,,,2.995,3.06,2.133,,2.561,1.782,,2.487,2.348,1.983,2.009,1.733,1.788,2.662,,1.83,,1.949,,,,,,,,,, +"Jan 10, 2011",2.622,3.261,3.346,3.003,3.023,3.223,3.453,3.756,3.389,3.347,3.217,3.321,4,3.262,3.212,3.024,,,3.005,3.076,2.152,,2.571,1.792,,2.525,2.355,2,2.045,1.757,1.828,2.687,,1.845,,1.968,,,,,,,,,, +"Jan 17, 2011",2.647,3.292,3.4,3.008,3.049,3.267,3.504,3.83,3.491,3.364,3.234,3.332,3.971,3.277,3.251,3.062,,,3.062,3.061,2.173,,2.583,1.813,,2.542,2.365,2.026,2.045,1.773,1.862,2.741,,1.874,,1.988,,,,,,,,,, +"Jan 24, 2011",2.658,3.309,3.433,3.057,3.082,3.295,3.533,3.85,3.543,3.371,3.247,3.359,3.952,3.286,3.257,3.083,,,3.077,3.098,2.178,,2.604,1.815,,2.562,2.381,2.031,2.048,1.779,1.859,2.72,,1.886,,1.993,,,,,,,,,, +"Jan 31, 2011",2.666,3.324,3.464,3.108,3.094,3.353,3.567,3.901,3.545,3.388,3.248,3.39,3.966,3.308,3.269,3.08,,,3.074,3.095,2.181,,2.605,1.815,,2.564,2.392,2.034,2.047,1.78,1.884,2.719,,1.891,,1.993,,,,,,,,,, +"Feb 07, 2011",2.673,3.339,3.488,3.12,3.133,3.376,3.593,3.909,3.564,3.409,3.271,3.395,3.959,3.328,3.306,3.076,,,3.066,3.103,2.183,,2.62,1.815,,2.574,2.384,2.036,2.048,1.774,1.872,2.723,,1.888,,1.998,,,,,,,,,, +"Feb 14, 2011",2.673,3.338,3.449,3.131,3.124,3.357,3.553,3.611,3.647,3.43,3.276,3.411,4.021,3.341,3.324,3.069,,,3.066,3.076,2.184,,2.623,1.815,,2.571,2.385,2.041,2.043,1.776,1.865,2.736,,1.891,,1.992,,,,,,,,,, +"Feb 21, 2011",2.672,3.334,3.437,3.147,3.133,3.367,3.536,3.603,3.595,3.422,3.279,3.417,3.897,3.357,3.331,3.079,,,3.079,3.08,2.185,,2.619,1.818,,2.57,2.394,2.029,2.042,1.773,1.865,2.744,,1.898,,1.994,,,,,,,,,, +"Feb 28, 2011",2.718,3.377,3.467,3.175,3.156,3.372,3.552,3.701,3.63,3.464,3.32,3.439,3.923,3.411,3.372,3.135,,,3.127,3.158,2.234,,2.636,1.88,,2.586,2.452,2.092,2.08,1.872,1.885,2.774,,1.942,,2.061,,,,,,,,,, +"Mar 07, 2011",2.731,3.405,3.491,3.218,3.222,3.431,3.553,3.776,3.596,3.514,3.36,3.486,4.02,3.443,3.425,3.124,,,3.106,3.174,2.236,,2.654,1.873,,2.598,2.411,2.128,2.095,1.878,1.912,2.747,,1.959,,2.068,,,,,,,,,, +"Mar 14, 2011",2.701,3.365,3.471,3.214,3.22,3.429,3.528,3.758,3.552,3.459,3.355,3.497,3.893,3.427,3.332,3.097,,,3.076,3.152,2.212,,2.523,1.868,,2.574,2.393,2.117,2.077,1.856,1.9,2.745,,1.943,,2.054,,,,,,,,,, +"Oct 03, 2011",2.61,3.207,3.326,3.17,3.141,3.354,3.243,3.949,3.351,3.247,3.362,3.352,3.662,3.138,3.155,3.015,,,3,3.06,2.167,,2.345,1.911,,2.426,2.413,2.1,2.042,1.877,1.911,2.577,,1.976,,2.029,,,,,,,,,, +"Oct 10, 2011",2.618,3.211,3.296,3.142,3.145,3.381,3.188,3.896,3.319,3.257,3.339,3.391,3.706,3.138,3.157,3.042,,,3.018,3.116,2.176,,2.364,1.909,,2.501,2.413,2.102,2.039,1.879,1.922,2.608,,1.979,,2.032,,,,,,,,,, +"Oct 17, 2011",2.643,3.232,3.3,3.148,3.157,3.391,3.19,3.887,3.325,3.28,3.329,3.404,3.695,3.159,3.202,3.075,,,3.039,3.187,2.205,,2.486,1.923,,2.533,2.427,2.102,2.082,1.877,1.925,2.663,,1.968,,2.048,,,,,,,,,, +"Oct 24, 2011",2.639,3.219,3.259,3.1,3.13,3.335,3.171,3.701,3.331,3.283,3.34,3.422,3.701,3.164,3.197,3.058,,,3.003,3.227,2.207,,2.504,1.927,,2.593,2.414,2.093,2.062,1.876,1.928,2.696,,1.977,,2.029,,,,,,,,,, +"Oct 31, 2011",2.665,3.256,3.298,3.104,3.134,3.404,3.231,3.739,3.362,3.316,3.356,3.448,3.787,3.17,3.24,3.1,,,3.062,3.218,2.226,,2.555,1.932,,2.548,2.456,2.084,2.084,1.877,1.928,2.769,,1.974,,2.041,,,,,,,,,, +"Nov 07, 2011",2.669,3.27,3.303,3.098,3.155,3.38,3.233,3.757,3.365,3.331,3.374,3.43,3.774,3.176,3.283,3.123,,,3.079,3.258,2.221,,2.57,1.932,,2.561,2.429,2.085,2.075,1.87,1.939,2.755,,1.957,,2.037,,,,,,,,,, +"Nov 14, 2011",2.677,3.272,3.305,3.1,3.152,3.389,3.225,3.797,3.369,3.34,3.372,3.437,3.755,3.192,3.297,3.111,,,3.067,3.246,2.234,,2.618,1.926,,2.557,2.447,2.098,2.079,1.855,1.954,2.801,,1.963,,2.036,,,,,,,,,, +"Nov 21, 2011",2.694,3.293,3.336,3.097,3.162,3.389,3.291,3.799,3.392,3.346,3.365,3.445,3.761,3.212,3.291,3.15,,,3.113,3.264,2.248,,2.639,1.924,,2.602,2.467,2.106,2.096,1.855,1.95,2.828,,1.994,,2.043,,,,,,,,,, +"Nov 28, 2011",2.701,3.303,3.341,3.094,3.156,3.385,3.296,3.804,3.419,3.356,3.359,3.46,3.779,3.228,3.293,3.167,,,3.124,3.299,2.252,,2.661,1.915,,2.604,2.478,2.104,2.102,1.857,1.954,2.831,,1.992,,2.055,,,,,,,,,, +"Dec 05, 2011",2.702,3.309,3.336,3.095,3.175,3.392,3.296,3.662,3.466,3.359,3.363,3.464,3.791,3.233,3.29,3.186,,,3.153,3.288,2.25,,2.651,1.917,,2.569,2.481,2.11,2.109,1.846,1.954,2.836,,1.982,,2.046,,,,,,,,,, +"Dec 12, 2011",2.705,3.314,3.361,3.094,3.193,3.407,3.326,3.744,3.464,3.357,3.385,3.464,3.8,3.23,3.282,3.185,,,3.148,3.299,2.252,,2.655,1.917,,2.571,2.489,2.104,2.1,1.839,1.95,2.857,,1.986,,2.05,,,,,,,,,, +"Dec 19, 2011",2.711,3.328,3.369,3.101,3.204,3.4,3.349,3.712,3.469,3.369,3.403,3.446,3.829,3.247,3.29,3.209,,,3.177,3.307,2.253,,2.664,1.911,,2.585,2.491,2.102,2.1,1.813,1.947,2.868,,1.981,,2.05,,,,,,,,,, +"Dec 26, 2011",2.712,3.337,3.373,3.081,3.193,3.421,3.372,3.651,3.494,3.383,3.392,3.474,3.868,3.246,3.308,3.216,,,3.173,3.348,2.247,,2.663,1.9,,2.582,2.504,2.097,2.091,1.803,1.933,2.861,,1.972,,2.038,,,,,,,,,, +"Jan 02, 2012",2.715,3.344,3.394,3.106,3.234,3.426,3.376,3.74,3.496,3.399,3.404,3.494,3.89,3.238,3.345,3.19,,,3.142,3.34,2.248,,2.668,1.893,,2.588,2.507,2.091,2.103,1.796,1.93,2.858,,1.979,,2.041,,,,,,,,,, +"Jan 09, 2012",2.71,3.339,3.415,3.112,3.229,3.443,3.404,3.764,3.533,3.397,3.405,3.471,3.939,3.239,3.326,3.157,,,3.103,3.325,2.242,,2.667,1.898,,2.605,2.497,2.079,2.091,1.78,1.915,2.863,,1.969,,2.022,,,,,,,,,, +"Jan 16, 2012",2.708,3.344,3.425,3.111,3.23,3.442,3.43,3.758,3.537,3.403,3.414,3.469,3.928,3.244,3.343,3.152,,,3.088,3.349,2.234,,2.655,1.884,,2.62,2.506,2.063,2.094,1.74,1.893,2.872,,1.96,,2.002,,,,,,,,,, +"Jan 23, 2012",2.707,3.34,3.427,3.108,3.238,3.445,3.426,3.756,3.556,3.4,3.412,3.489,3.93,3.246,3.325,3.142,,,3.078,3.338,2.237,,2.668,1.886,,2.622,2.505,2.062,2.096,1.727,1.896,2.879,,1.956,,2.007,,,,,,,,,, +"Jan 30, 2012",2.708,3.351,3.432,3.112,3.236,3.443,3.431,3.777,3.564,3.409,3.417,3.501,3.941,3.26,3.329,3.159,,,3.103,3.332,2.229,,2.659,1.872,,2.623,2.5,2.064,2.099,1.712,1.898,2.856,,1.957,,1.996,,,,,,,,,, +"Feb 06, 2012",2.706,3.352,3.441,3.099,3.234,3.488,3.455,3.742,3.564,3.406,3.42,3.507,3.942,3.259,3.318,3.162,,,3.104,3.34,2.226,,2.659,1.873,,2.583,2.501,2.066,2.096,1.714,1.89,2.849,,1.942,,1.994,,,,,,,,,, +"Feb 13, 2012",2.704,3.35,3.455,3.1,3.251,3.482,3.462,3.781,3.592,3.4,3.423,3.509,3.95,3.263,3.294,3.152,,,3.09,3.343,2.224,,2.66,1.862,,2.603,2.494,2.07,2.097,1.69,1.891,2.848,,1.957,,1.987,,,,,,,,,, +"Feb 20, 2012",2.703,3.351,3.472,3.093,3.256,3.487,3.487,3.812,3.616,3.39,3.426,3.501,3.948,3.254,3.277,3.16,,,3.089,3.378,2.221,,2.653,1.854,,2.597,2.515,2.073,2.09,1.673,1.886,2.845,,1.939,,1.978,,,,,,,,,, +"Feb 27, 2012",2.709,3.365,3.473,3.096,3.25,3.5,3.506,3.767,3.604,3.407,3.437,3.529,3.961,3.258,3.306,3.179,,,3.1,3.424,2.221,,2.65,1.855,,2.579,2.521,2.067,2.093,1.678,1.879,2.86,,1.94,,1.97,,,,,,,,,, +"Mar 05, 2012",2.71,3.368,3.468,3.11,3.244,3.497,3.5,3.783,3.578,3.418,3.438,3.529,3.969,3.271,3.322,3.174,,,3.098,3.41,2.22,,2.645,1.838,,2.584,2.532,2.054,2.101,1.681,1.875,2.886,,1.935,,1.965,,,,,,,,,, +"Mar 12, 2012",2.708,3.37,3.469,3.11,3.245,3.493,3.498,3.783,3.592,3.427,3.419,3.529,3.972,3.279,3.341,3.165,,,3.065,3.473,2.216,,2.643,1.828,,2.521,2.531,2.063,2.093,1.696,1.883,2.877,,1.933,,1.965,,,,,,,,,, +"Mar 19, 2012",2.705,3.368,3.483,3.111,3.243,3.502,3.516,3.803,3.615,3.431,3.417,3.549,4,3.262,3.351,3.137,,,3.031,3.465,2.211,,2.635,1.819,,2.557,2.533,2.061,2.088,1.667,1.88,2.87,,1.929,,1.955,,,,,,,,,, +"Oct 01, 2012",2.195,2.897,3.027,2.83,2.655,3.041,3.108,3.377,3.162,2.922,3.091,3.043,3.377,2.828,2.794,2.72,,,2.66,2.911,1.654,,1.826,1.356,,2.045,2.022,1.5,1.594,1.316,1.37,2.099,,1.397,,1.463,,,,,,,,,, +"Oct 08, 2012",2.2,2.914,3.045,2.836,2.709,3.111,3.124,3.358,3.139,2.967,3.028,3.144,3.468,2.841,2.851,2.684,,,2.632,2.85,1.648,,1.833,1.359,,2.034,1.944,1.505,1.605,1.328,1.374,2.092,,1.395,,1.479,,,,,,,,,, +"Oct 15, 2012",2.204,2.907,3.031,2.849,2.703,3.096,3.109,3.354,3.096,2.956,3.054,3.078,3.485,2.811,2.859,2.691,,,2.635,2.867,1.661,,1.857,1.364,,2.014,1.956,1.533,1.622,1.347,1.439,2.098,,1.414,,1.473,,,,,,,,,, +"Oct 22, 2012",2.21,2.914,3.04,2.83,2.723,3.097,3.119,3.312,3.14,2.967,3.056,3.081,3.508,2.818,2.873,2.686,,,2.623,2.885,1.667,,1.834,1.387,,1.996,1.953,1.532,1.625,1.354,1.447,2.117,,1.424,,1.491,,,,,,,,,, +"Oct 29, 2012",2.216,2.912,3.042,2.808,2.729,3.118,3.113,3.28,3.176,2.952,3.067,3.117,3.439,2.825,2.839,2.708,,,2.654,2.879,1.679,,1.86,1.395,,2.03,1.952,1.547,1.63,1.355,1.445,2.131,,1.43,,1.518,,,,,,,,,, +"Nov 05, 2012",2.243,2.941,3.048,2.819,2.73,3.085,3.119,3.358,3.171,3.006,3.063,3.136,3.451,2.829,2.973,2.707,,,2.651,2.886,1.704,,1.957,1.404,,2.04,1.997,1.556,1.65,1.358,1.459,2.17,,1.432,,1.526,,,,,,,,,, +"Nov 12, 2012",2.236,2.934,3.054,2.82,2.717,3.101,3.12,3.405,3.18,2.972,3.105,3.133,3.32,2.833,2.917,2.742,,,2.694,2.892,1.698,,1.829,1.401,,2.062,2,1.556,1.658,1.361,1.462,2.197,,1.43,,1.523,,,,,,,,,, +"Nov 19, 2012",2.239,2.932,3.051,2.814,2.731,3.092,3.105,3.365,3.211,2.967,3.118,3.163,3.331,2.841,2.882,2.747,,,2.698,2.902,1.704,,1.836,1.412,,2.077,2.011,1.562,1.665,1.348,1.452,2.218,,1.438,,1.51,,,,,,,,,, +"Nov 26, 2012",2.244,2.935,3.067,2.809,2.737,3.14,3.106,3.399,3.25,2.965,3.123,3.136,3.305,2.843,2.892,2.75,,,2.706,2.888,1.711,,1.853,1.409,,2.073,2.01,1.568,1.666,1.365,1.461,2.238,,1.449,,1.527,,,,,,,,,, +"Dec 03, 2012",2.243,2.936,3.063,2.801,2.726,3.138,3.109,3.336,3.273,2.967,3.11,3.144,3.294,2.853,2.891,2.752,,,2.708,2.892,1.708,,1.888,1.413,,2.081,1.976,1.569,1.671,1.33,1.465,2.228,,1.436,,1.524,,,,,,,,,, +"Dec 10, 2012",2.247,2.936,3.064,2.803,2.73,3.135,3.118,3.345,3.251,2.966,3.109,3.157,3.294,2.855,2.882,2.754,,,2.708,2.9,1.715,,1.903,1.405,,2.078,2.004,1.572,1.667,1.33,1.458,2.255,,1.429,,1.531,,,,,,,,,, +"Dec 17, 2012",2.243,2.93,3.063,2.799,2.703,3.128,3.125,3.368,3.254,2.958,3.065,3.145,3.296,2.852,2.872,2.747,,,2.708,2.869,1.713,,1.899,1.405,,2.095,2.015,1.573,1.654,1.324,1.472,2.245,,1.427,,1.517,,,,,,,,,, +"Dec 24, 2012",2.248,2.933,3.092,2.812,2.653,3.139,3.166,3.515,3.299,2.95,3.005,3.142,3.254,2.853,2.873,2.749,,,2.706,2.883,1.72,,1.92,1.421,,2.07,2.009,1.581,1.66,1.332,1.456,2.261,,1.44,,1.527,,,,,,,,,, +"Dec 31, 2012",2.262,2.951,3.114,2.831,2.687,3.179,3.146,3.595,3.358,2.954,3.024,3.144,3.287,2.853,2.869,2.788,,,2.756,2.89,1.73,,1.913,1.421,,2.109,2.028,1.585,1.674,1.335,1.461,2.29,,1.442,,1.529,,,,,,,,,, +"Jan 07, 2013",2.267,2.95,3.113,2.834,2.699,3.183,3.16,3.474,3.372,2.975,3.009,3.123,3.377,2.87,2.887,2.744,,,2.7,2.885,1.74,,1.925,1.423,,2.138,2.052,1.592,1.699,1.332,1.474,2.29,,1.452,,1.533,,,,,,,,,, +"Jan 14, 2013",2.268,2.955,3.116,2.844,2.723,3.175,3.165,3.445,3.37,2.978,3.016,3.15,3.324,2.872,2.903,2.755,,,2.706,2.909,1.738,,1.958,1.386,,2.113,2.064,1.592,1.705,1.338,1.472,2.292,,1.454,,1.528,,,,,,,,,, +"Jan 21, 2013",2.283,2.968,3.131,2.903,2.726,3.187,3.174,3.484,3.379,2.983,3.003,3.144,3.325,2.882,2.911,2.78,,,2.744,2.894,1.754,,1.956,1.39,,2.131,2.084,1.607,1.715,1.334,1.482,2.355,,1.471,,1.541,,,,,,,,,, +"Jan 28, 2013",2.297,2.98,3.167,2.898,2.725,3.193,3.196,3.56,3.506,2.995,3.017,3.155,3.364,2.891,2.916,2.77,,,2.73,2.898,1.769,,1.954,1.404,,2.21,2.099,1.622,1.717,1.336,1.509,2.352,,1.484,,1.565,,,,,,,,,, +"Feb 04, 2013",2.306,2.994,3.169,2.904,2.744,3.207,3.22,3.503,3.464,3.002,3.016,3.146,3.323,2.91,2.933,2.809,,,2.778,2.906,1.776,,1.945,1.41,,2.189,2.112,1.624,1.728,1.352,1.544,2.381,,1.482,,1.561,,,,,,,,,, +"Feb 11, 2013",2.309,2.996,3.18,2.902,2.748,3.195,3.235,3.54,3.48,3.002,3.035,3.161,3.336,2.902,2.931,2.806,,,2.777,2.898,1.779,,1.938,1.408,,2.197,2.119,1.63,1.721,1.346,1.556,2.403,,1.488,,1.561,,,,,,,,,, +"Feb 18, 2013",2.314,3.005,3.198,2.872,2.767,3.21,3.244,3.534,3.559,3.02,3.018,3.164,3.37,2.92,2.951,2.79,,,2.753,2.909,1.781,,1.946,1.406,,2.198,2.131,1.634,1.727,1.357,1.549,2.397,,1.481,,1.556,,,,,,,,,, +"Feb 25, 2013",2.319,3.01,3.206,2.871,2.771,3.211,3.249,3.54,3.589,3.021,3.017,3.162,3.377,2.931,2.942,2.798,,,2.763,2.909,1.785,,1.951,1.406,,2.194,2.139,1.636,1.719,1.358,1.556,2.415,,1.481,,1.567,,,,,,,,,, +"Mar 04, 2013",2.317,3.003,3.194,2.866,2.761,3.208,3.24,3.515,3.57,3.013,3.024,3.161,3.355,2.928,2.929,2.799,,,2.768,2.899,1.788,,1.964,1.405,,2.177,2.144,1.635,1.729,1.353,1.556,2.43,,1.48,,1.566,,,,,,,,,, +"Mar 11, 2013",2.317,3.007,3.191,2.877,2.766,3.206,3.239,3.511,3.546,3.02,3.035,3.163,3.359,2.933,2.94,2.804,,,2.769,2.913,1.785,,1.955,1.397,,2.186,2.143,1.625,1.722,1.365,1.556,2.428,,1.465,,1.57,,,,,,,,,, +"Mar 18, 2013",2.311,2.997,3.169,2.864,2.748,3.205,3.203,3.514,3.515,3.013,3.039,3.161,3.337,2.935,2.927,2.799,,,2.768,2.898,1.782,,1.954,1.398,,2.186,2.131,1.628,1.719,1.36,1.559,2.433,,1.458,,1.556,,,,,,,,,, +"Oct 07, 2013",2.358,2.999,3.032,2.961,2.678,3.137,3.027,3.547,3.227,2.997,2.985,3.164,3.474,2.864,2.931,2.971,,,2.937,3.068,1.835,,2.057,1.527,,2.119,2.062,1.675,1.796,1.54,1.563,2.344,,1.582,,1.675,,,,,,,,,, +"Oct 14, 2013",2.337,2.965,3.028,2.878,2.675,3.088,3.016,3.493,3.331,2.981,3.048,3.215,3.467,2.84,2.893,2.871,,,2.897,2.796,1.826,,2.063,1.525,,2.056,2.024,1.671,1.743,1.543,1.583,2.364,,1.577,,1.687,,,,,,,,,, +"Oct 21, 2013",2.377,3.003,3.024,2.937,2.694,3.138,3.005,3.57,3.204,3.038,3.02,3.277,3.586,2.855,2.98,2.908,,,2.869,3.018,1.867,,2.136,1.556,,2.119,2.101,1.692,1.829,1.537,1.593,2.391,,1.606,,1.697,,,,,,,,,, +"Oct 28, 2013",2.406,3.013,3.012,2.96,2.693,3.114,2.979,3.577,3.185,3.059,3.043,3.25,3.606,2.912,2.979,2.92,,,2.882,3.029,1.911,,2.176,1.586,,2.147,2.127,1.774,1.842,1.567,1.71,2.441,,1.677,,1.738,,,,,,,,,, +"Nov 04, 2013",2.45,3.044,3.033,2.994,2.729,3.129,2.987,3.574,3.218,3.095,3.086,3.293,3.616,2.933,3.035,2.948,,,2.912,3.051,1.966,,2.256,1.621,,2.207,2.15,1.846,1.901,1.596,1.843,2.512,,1.72,,1.761,,,,,,,,,, +"Nov 11, 2013",2.482,3.073,3.047,3.038,2.752,3.163,2.983,3.565,3.235,3.122,3.069,3.327,3.603,3.008,3.033,2.999,,,2.967,3.088,2,,2.305,1.651,,2.207,2.163,1.894,1.901,1.646,1.947,2.549,,1.792,,1.797,,,,,,,,,, +"Nov 18, 2013",2.506,3.09,3.064,3.034,2.786,3.137,2.984,3.6,3.299,3.145,3.088,3.306,3.591,3.049,3.061,3.001,,,2.955,3.129,2.03,,2.341,1.658,,2.272,2.196,1.945,1.915,1.662,1.957,2.581,,1.796,,1.835,,,,,,,,,, +"Nov 25, 2013",2.542,3.141,3.121,3.083,2.804,3.219,3.054,3.678,3.357,3.204,3.114,3.337,3.642,3.121,3.124,3.031,,,2.975,3.188,2.053,,2.42,1.683,,2.237,2.213,1.973,1.932,1.67,1.961,2.628,,1.803,,1.845,,,,,,,,,, +"Dec 02, 2013",2.566,3.165,3.172,3.11,2.837,3.233,3.136,3.709,3.418,3.213,3.158,3.363,3.653,3.154,3.101,3.059,,,2.998,3.233,2.077,,2.455,1.689,,2.256,2.216,1.98,1.948,1.682,1.955,2.762,,1.801,,1.857,,,,,,,,,, +"Dec 09, 2013",2.621,3.246,3.257,3.189,2.922,3.331,3.212,3.773,3.523,3.307,3.21,3.455,3.783,3.237,3.199,3.109,,,3.051,3.273,2.111,,2.518,1.749,,2.3,2.263,2.001,2.014,1.727,1.974,2.705,,1.857,,1.894,,,,,,,,,, +"Dec 16, 2013",2.712,3.315,3.312,3.26,2.997,3.368,3.256,3.831,3.58,3.383,3.209,3.505,3.853,3.335,3.274,3.177,,,3.116,3.351,2.221,,2.662,1.877,,2.376,2.359,2.13,2.126,1.844,2.084,2.754,,1.958,,2.024,,,,,,,,,, +"Dec 23, 2013",2.76,3.342,3.37,3.324,3.107,3.393,3.277,3.898,3.661,3.402,3.263,3.512,3.845,3.366,3.289,3.192,,,3.137,3.346,2.285,,2.761,1.903,,2.425,2.46,2.191,2.151,1.876,2.192,2.807,,2.014,,2.112,,,,,,,,,, +"Dec 30, 2013",2.802,3.387,3.461,3.352,3.121,3.467,3.454,3.935,3.757,3.447,3.374,3.539,3.932,3.394,3.332,3.195,,,3.136,3.362,2.324,,2.797,1.929,,2.455,2.516,2.228,2.21,1.89,2.205,2.858,,2.027,,2.159,,,,,,,,,, +"Jan 06, 2014",2.829,3.399,3.483,3.354,3.181,3.477,3.467,3.99,3.753,3.46,3.382,3.557,3.967,3.412,3.333,3.193,,,3.142,3.337,2.364,,2.806,1.96,,2.517,2.532,2.322,2.251,1.911,2.263,2.89,,2.065,,2.193,,,,,,,,,, +"Jan 13, 2014",2.861,3.432,3.531,3.397,3.273,3.536,3.501,4.016,3.776,3.486,3.395,3.596,3.931,3.47,3.347,3.229,,,3.18,3.366,2.396,,2.849,1.997,,2.54,2.575,2.33,2.265,1.92,2.273,2.95,,2.081,,2.24,,,,,,,,,, +"Jan 20, 2014",2.96,3.477,3.569,3.528,3.302,3.552,3.539,4.037,3.798,3.54,3.422,3.603,3.984,3.525,3.415,3.262,,,3.221,3.378,2.539,,2.939,2.584,,2.577,2.638,2.439,2.433,2.005,2.322,2.999,,2.088,,2.276,,,,,,,,,, +"Jan 27, 2014",4.01,3.783,3.73,3.653,3.469,3.695,3.672,4.207,4.037,3.836,3.734,3.865,4.235,3.797,3.755,3.722,,,3.711,3.753,4.195,,4.215,4.709,,3.785,3.611,4.61,3.997,4.073,4.569,3.731,,4.107,,4.49,,,,,,,,,, +"Feb 03, 2014",3.891,3.97,3.832,3.792,3.558,3.816,3.706,4.399,4.21,3.99,3.823,3.956,4.451,3.961,3.904,4.06,,,4.067,4.039,3.827,,4.265,3.59,,3.852,3.766,3.967,3.672,3.357,3.839,3.908,,3.664,,3.945,,,,,,,,,, +"Feb 10, 2014",3.764,4.02,3.849,3.918,3.607,3.794,3.728,4.456,4.134,4.044,3.79,4.055,4.433,4.004,3.991,4.131,,,4.153,4.069,3.555,,4.043,3.22,,3.677,3.667,3.48,3.484,2.995,3.283,3.808,,3.408,,3.686,,,,,,,,,, +"Feb 17, 2014",3.637,4.039,3.955,3.87,3.669,3.925,3.835,4.538,4.362,4.091,3.927,4.134,4.46,4.042,4.032,4.014,,,3.995,4.066,3.31,,3.753,2.811,,3.584,3.692,3.264,3.131,2.601,2.905,3.733,,3.019,,3.344,,,,,,,,,, +"Feb 24, 2014",3.477,3.988,3.96,3.902,3.637,3.974,3.827,4.615,4.361,4.086,3.911,4.144,4.436,4.06,4.01,3.815,,,3.779,3.915,3.06,,3.472,2.591,,3.417,3.359,2.985,2.96,2.393,2.618,3.615,,2.797,,2.967,,,,,,,,,, +"Mar 03, 2014",3.301,3.94,3.964,3.902,3.624,3.992,3.835,4.66,4.351,4.063,3.91,4.125,4.431,4.053,3.962,3.664,,,3.614,3.806,2.781,,3.248,2.149,,2.942,3.247,2.658,2.657,2.048,2.333,3.489,,2.751,,2.65,,,,,,,,,, +"Mar 10, 2014",3.165,3.875,3.946,3.776,3.591,3.99,3.84,4.66,4.344,4.016,3.874,4.098,4.362,4.014,3.908,3.519,,,3.431,3.767,2.586,,3.011,1.974,,2.937,3.006,2.416,2.424,1.891,2.2,3.365,,2.582,,2.384,,,,,,,,,, +"Mar 17, 2014",3.079,3.816,3.91,3.715,3.572,3.992,3.788,4.563,4.325,3.965,3.821,4.054,4.294,3.968,3.857,3.421,,,3.321,3.705,2.479,,2.922,1.889,,2.872,2.872,2.284,2.311,1.875,2.087,3.233,,2.536,,2.254,,,,,,,,,, +"Oct 13, 2014",2.376,3.077,3.106,3.062,2.78,3.326,3.205,3.632,3.031,3.112,3.19,3.333,3.754,3.097,2.887,3.021,4.228,2.391,2.728,2.963,1.894,1.76,1.959,1.621,1.74,2.198,2.071,1.842,1.847,1.596,1.751,2.246,1.963,1.666,2.63,1.823,2.468,2.662,2.207,2.412,2.489,1.938,2.068,2.158,1.72,1.866 +"Oct 20, 2014",2.387,3.062,3.123,3.069,2.77,3.325,3.166,3.776,3.163,3.046,3.173,3.19,3.706,2.934,2.924,3.045,4.325,2.331,2.817,2.83,1.908,1.743,2.008,1.614,1.734,2.215,2.103,1.85,1.865,1.571,1.749,2.263,2.001,1.659,2.843,1.822,2.487,2.687,2.218,2.451,2.494,2.088,2.09,2.281,2.022,2.068 +"Oct 27, 2014",2.413,3.079,3.109,2.941,2.771,3.294,3.187,3.753,3.161,3.02,3.174,3.152,3.603,2.905,2.92,3.132,4.519,2.348,2.865,2.961,1.939,1.802,2.041,1.618,1.767,2.202,2.127,1.853,1.901,1.561,1.749,2.392,2.001,1.672,2.879,1.855,2.51,2.72,2.297,2.455,2.5,2.137,2.17,2.362,2.034,2.083 +"Nov 03, 2014",2.401,3.029,3.098,2.952,2.771,3.239,3.244,3.687,3.076,2.93,3.124,3.09,3.559,2.759,2.86,3.106,4.454,2.375,2.859,2.866,1.947,1.819,2.068,1.617,1.745,2.222,2.113,1.853,1.885,1.565,1.753,2.428,1.98,1.673,2.946,1.87,2.517,2.724,2.278,2.488,2.503,2.169,2.154,2.319,2.082,2.288 +"Nov 10, 2014",2.411,3.055,3.106,2.961,2.766,3.191,3.284,3.643,3.128,2.989,3.103,3.051,3.516,2.853,2.947,3.105,4.463,2.368,2.846,2.891,1.95,1.816,2.065,1.617,1.747,2.214,2.137,1.865,1.88,1.566,1.76,2.435,1.977,1.67,2.931,1.874,2.509,2.761,2.281,2.492,2.453,2.146,2.189,2.301,2.026,2.166 +"Nov 17, 2014",2.404,3.04,3.093,2.964,2.766,3.195,3.298,3.544,3.049,2.992,3.13,3.05,3.512,2.862,2.945,3.066,4.406,2.335,2.824,2.822,1.944,1.804,2.077,1.614,1.746,2.214,2.147,1.853,1.881,1.571,1.758,2.364,1.992,1.679,2.925,1.881,2.516,2.762,2.298,2.503,2.458,2.172,2.199,2.361,2.05,2.215 +"Nov 24, 2014",2.401,3.023,3.089,2.966,2.764,3.172,3.258,3.497,3.127,2.953,3.079,3.071,3.518,2.849,2.853,3.068,4.507,2.321,2.791,2.805,1.948,1.815,2.091,1.618,1.745,2.175,2.129,1.866,1.884,1.552,1.748,2.434,2.007,1.669,2.948,1.858,2.52,2.763,2.305,2.529,2.446,2.195,2.201,2.362,2.102,2.251 +"Dec 01, 2014",2.407,3.042,3.108,2.999,2.771,3.164,3.311,3.441,3.15,2.987,3.123,3.053,3.47,2.841,2.963,3.071,4.491,2.302,2.8,2.847,1.949,1.8,2.088,1.616,1.74,2.173,2.113,1.87,1.89,1.54,1.743,2.45,1.989,1.676,3.042,1.867,2.498,2.718,2.28,2.515,2.435,2.188,2.199,2.393,2.087,2.214 +"Dec 08, 2014",2.386,2.998,3.077,2.871,2.762,3.187,3.257,3.363,3.136,2.941,3.116,3.031,3.488,2.842,2.842,3.022,4.502,2.305,2.678,2.835,1.94,1.794,2.087,1.609,1.741,2.151,2.131,1.882,1.893,1.49,1.716,2.42,1.993,1.659,2.997,1.841,2.488,2.729,2.271,2.491,2.422,2.203,2.192,2.423,2.041,2.428 +"Dec 15, 2014",2.382,2.988,3.071,2.888,2.758,3.177,3.272,3.362,3.083,2.922,3.1,2.98,3.449,2.786,2.872,3.02,4.409,2.296,2.736,2.812,1.94,1.812,2.101,1.586,1.736,2.138,2.152,1.874,1.895,1.453,1.702,2.411,1.98,1.672,2.995,1.853,2.485,2.737,2.281,2.499,2.397,2.208,2.17,2.475,2.1,2.347 +"Dec 22, 2014",2.38,2.995,3.031,2.718,2.715,3.146,3.248,3.384,3.069,2.945,3.094,2.966,3.443,2.806,2.919,3.034,4.403,2.291,2.721,2.958,1.931,1.827,2.089,1.57,1.714,2.135,2.132,1.841,1.906,1.428,1.686,2.379,1.974,1.659,3.097,1.836,2.489,2.762,2.266,2.484,2.409,2.196,2.17,2.451,2.107,2.259 +"Dec 29, 2014",2.368,2.966,3.037,2.789,2.703,3.142,3.246,3.385,3.087,2.893,3.079,2.956,3.414,2.792,2.808,3.011,4.494,2.298,2.692,2.75,1.928,1.824,2.083,1.558,1.705,2.129,2.185,1.841,1.883,1.392,1.655,2.405,1.935,1.649,3.107,1.818,2.485,2.756,2.288,2.498,2.384,2.197,2.167,2.405,2.075,2.395 +"Jan 05, 2015",2.358,2.947,3.017,2.714,2.688,3.133,3.244,3.376,3.045,2.871,3.051,2.915,3.384,2.786,2.779,2.997,4.365,2.28,2.693,2.864,1.92,1.814,2.08,1.565,1.684,2.143,2.153,1.844,1.87,1.351,1.646,2.392,1.914,1.645,3.127,1.813,2.503,2.813,2.27,2.52,2.39,2.197,2.172,2.407,2.037,2.467 +"Jan 12, 2015",2.348,2.934,3,2.768,2.704,3.127,3.209,3.351,2.963,2.853,3.008,2.895,3.385,2.762,2.765,2.992,4.41,2.289,2.66,2.845,1.916,1.805,2.091,1.558,1.678,2.147,2.178,1.839,1.871,1.307,1.639,2.386,1.894,1.632,3.107,1.809,2.473,2.767,2.243,2.496,2.365,2.173,2.172,2.414,2.067,2.211 +"Jan 19, 2015",2.386,3.05,3.111,2.83,2.704,3.179,3.231,3.501,3.448,2.994,3.099,3.034,3.447,2.939,2.899,3.081,4.3,2.341,2.831,3.041,1.909,1.79,2.103,1.553,1.65,2.162,2.179,1.821,1.865,1.299,1.576,2.388,1.853,1.633,3.168,1.8,2.45,2.749,2.228,2.474,2.333,2.192,2.154,2.477,1.985,2.551 +"Jan 26, 2015",2.376,3.029,3.106,2.797,2.694,3.164,3.252,3.51,3.427,2.976,3.072,3.015,3.455,2.913,2.883,3.048,4.322,2.3,2.813,2.902,1.907,1.8,2.113,1.551,1.645,2.172,2.154,1.818,1.861,1.281,1.586,2.416,1.832,1.614,3.17,1.777,2.443,2.754,2.2,2.458,2.334,2.179,2.119,2.488,1.971,2.583 +"Feb 02, 2015",2.368,3.029,3.109,2.866,2.695,3.164,3.256,3.489,3.408,2.967,3.059,3.011,3.445,2.911,2.868,3.058,4.363,2.284,2.809,2.939,1.893,1.785,2.101,1.548,1.62,2.175,2.173,1.804,1.865,1.282,1.539,2.417,1.823,1.614,3.11,1.709,2.439,2.756,2.195,2.469,2.317,2.158,2.101,2.489,1.953,2.528 +"Feb 09, 2015",2.362,3.022,3.1,2.812,2.7,3.114,3.26,3.486,3.423,2.978,3.075,3.004,3.49,2.898,2.896,3.031,4.311,2.278,2.783,2.917,1.889,1.808,2.09,1.544,1.604,2.148,2.184,1.804,1.848,1.278,1.519,2.407,1.828,1.555,3.141,1.683,2.444,2.778,2.199,2.467,2.317,2.137,2.097,2.42,1.923,2.518 +"Feb 16, 2015",2.356,3.021,3.094,2.794,2.677,3.13,3.25,3.475,3.43,2.98,3.066,3.006,3.477,2.927,2.877,3.03,4.324,2.278,2.773,2.924,1.88,1.786,2.062,1.532,1.604,2.13,2.181,1.818,1.844,1.286,1.521,2.362,1.834,1.537,3.144,1.682,2.445,2.767,2.196,2.473,2.323,2.116,2.065,2.435,1.91,2.479 +"Feb 23, 2015",2.353,3.015,3.111,2.86,2.688,3.148,3.251,3.5,3.45,2.944,3.079,3.004,3.492,2.855,2.847,3.045,4.364,2.273,2.778,2.952,1.877,1.793,2.063,1.523,1.592,2.152,2.153,1.812,1.836,1.286,1.514,2.381,1.829,1.529,3.156,1.675,2.449,2.758,2.209,2.466,2.34,2.12,2.095,2.508,1.899,2.382 +"Mar 02, 2015",2.37,3.065,3.121,2.876,2.71,3.148,3.265,3.514,3.447,3.055,3.102,3.008,3.531,2.937,3.047,3.047,4.391,2.271,2.775,2.937,1.875,1.795,2.057,1.517,1.596,2.137,2.186,1.789,1.835,1.286,1.493,2.397,1.831,1.481,3.132,1.681,2.459,2.774,2.226,2.487,2.334,2.089,2.074,2.445,1.844,2.402 +"Mar 09, 2015",2.359,3.061,3.117,2.844,2.7,3.153,3.251,3.579,3.454,3.056,3.115,3.017,3.527,2.923,3.06,3.037,4.364,2.268,2.765,2.944,1.859,1.769,2.052,1.493,1.582,2.122,2.161,1.785,1.832,1.282,1.482,2.381,1.837,1.457,3.151,1.636,2.45,2.74,2.227,2.487,2.332,2.072,2.066,2.413,1.823,2.384 +"Mar 16, 2015",2.342,3.042,3.094,2.836,2.7,3.142,3.197,3.558,3.426,3.045,3.097,3.011,3.496,2.945,3.021,3.009,4.273,2.262,2.758,2.918,1.848,1.764,2.027,1.462,1.572,2.1,2.171,1.784,1.827,1.266,1.481,2.381,1.83,1.45,3.085,1.612,2.441,2.712,2.23,2.476,2.33,2.022,2.021,2.261,1.759,2.443 +"Mar 23, 2015",2.323,3.026,3.077,2.823,2.686,3.125,3.177,3.547,3.407,3.031,3.087,2.999,3.491,2.92,3.014,2.993,4.252,2.205,2.753,2.938,1.824,1.728,1.981,1.451,1.551,2.061,2.167,1.77,1.817,1.244,1.461,2.355,1.823,1.41,3.022,1.587,2.425,2.709,2.184,2.448,2.328,1.998,2.032,2.253,1.735,2.294 +"Mar 30, 2015",2.292,2.987,3.047,2.796,2.683,3.105,3.139,3.526,3.34,2.975,3.055,2.99,3.469,2.835,2.963,2.969,4.282,2.201,2.691,2.91,1.8,1.687,1.937,1.417,1.533,2.042,2.161,1.743,1.786,1.231,1.429,2.342,1.814,1.395,2.971,1.582,2.397,2.673,2.144,2.439,2.297,1.973,2.001,2.271,1.681,2.319 +"Oct 05, 2015",1.98,2.724,2.781,2.643,2.153,2.89,2.99,3.055,3.182,2.57,2.66,2.542,3.324,2.338,2.625,2.872,4.703,1.948,2.504,2.723,1.415,1.334,1.522,0.986,1.145,1.64,1.752,1.239,1.384,1.028,1.017,1.947,1.454,1.024,3.194,1.149,2.173,2.49,1.873,2.113,2.139,1.818,1.783,2.291,1.475,2.311 +"Oct 12, 2015",1.894,2.586,2.608,2.509,2.159,2.804,2.669,3.036,2.844,2.512,2.662,2.564,3.089,2.297,2.562,2.66,4.291,1.904,2.29,2.544,1.367,1.305,1.46,0.989,1.157,1.624,1.608,1.273,1.302,1.031,1.011,1.876,1.447,1.046,2.671,1.149,2.116,2.352,1.833,2.09,2.102,1.7,1.649,1.96,1.526,2.041 +"Oct 19, 2015",1.893,2.569,2.604,2.547,2.148,2.79,2.67,2.959,2.841,2.471,2.658,2.577,2.984,2.261,2.512,2.662,4.279,1.923,2.292,2.541,1.376,1.297,1.452,0.987,1.153,1.632,1.651,1.277,1.32,1.043,1.019,1.888,1.449,1.061,2.672,1.165,2.106,2.364,1.804,2.048,2.11,1.732,1.64,1.994,1.594,2.12 +"Oct 26, 2015",1.909,2.586,2.606,2.498,2.167,2.748,2.703,2.962,2.859,2.509,2.68,2.601,3.107,2.287,2.547,2.664,4.302,1.935,2.282,2.537,1.389,1.289,1.504,0.993,1.154,1.594,1.644,1.285,1.316,1.043,1.03,1.973,1.469,1.071,2.812,1.168,2.126,2.379,1.872,2.057,2.12,1.771,1.681,2.071,1.615,2.162 +"Nov 02, 2015",1.924,2.589,2.6,2.497,2.17,2.716,2.707,2.999,2.848,2.529,2.683,2.592,3.089,2.323,2.569,2.653,4.293,1.941,2.24,2.577,1.414,1.294,1.531,0.992,1.156,1.659,1.738,1.293,1.305,1.041,1.043,2.089,1.501,1.068,2.819,1.164,2.131,2.421,1.88,2.039,2.117,1.773,1.7,2.07,1.59,2.172 +"Nov 09, 2015",1.919,2.596,2.6,2.439,2.156,2.716,2.725,2.984,2.875,2.54,2.686,2.615,3.117,2.325,2.584,2.659,4.281,1.924,2.263,2.59,1.406,1.275,1.544,0.997,1.157,1.686,1.715,1.293,1.308,1.044,1.042,1.983,1.508,1.069,2.826,1.176,2.128,2.415,1.884,2.019,2.125,1.73,1.678,2.076,1.482,2.172 +"Nov 16, 2015",1.938,2.632,2.635,2.487,2.145,2.772,2.79,2.981,2.896,2.572,2.749,2.598,3.166,2.349,2.63,2.702,4.358,1.932,2.324,2.593,1.413,1.292,1.549,0.997,1.162,1.661,1.723,1.289,1.333,1.048,1.041,2.009,1.472,1.071,2.897,1.178,2.129,2.451,1.807,2.039,2.123,1.751,1.732,2.018,1.493,2.178 +"Nov 23, 2015",1.952,2.656,2.658,2.497,2.161,2.795,2.804,3.081,2.939,2.589,2.739,2.628,3.103,2.371,2.66,2.735,4.436,1.967,2.307,2.688,1.419,1.296,1.567,0.995,1.152,1.676,1.71,1.284,1.325,1.052,1.04,2.017,1.495,1.072,3.006,1.193,2.153,2.506,1.859,2.046,2.127,1.752,1.739,1.992,1.486,2.196 +"Nov 30, 2015",1.963,2.669,2.659,2.48,2.17,2.799,2.77,3.122,2.982,2.614,2.747,2.629,3.191,2.401,2.674,2.738,4.442,1.975,2.31,2.685,1.432,1.309,1.575,0.995,1.152,1.701,1.735,1.303,1.331,1.044,1.05,2.05,1.506,1.075,3.016,1.2,2.152,2.514,1.861,2.029,2.128,1.762,1.749,2.003,1.488,2.229 +"Dec 07, 2015",1.969,2.671,2.671,2.47,2.173,2.758,2.804,3.237,3.036,2.617,2.753,2.633,3.207,2.408,2.669,2.734,4.443,1.988,2.3,2.665,1.439,1.309,1.603,0.992,1.145,1.735,1.75,1.305,1.344,1.044,1.044,2.062,1.51,1.072,3.024,1.209,2.155,2.523,1.878,2.035,2.12,1.787,1.767,2.028,1.517,2.267 +"Dec 14, 2015",1.979,2.684,2.652,2.511,2.186,2.732,2.825,3.204,2.892,2.646,2.755,2.651,3.238,2.41,2.732,2.749,4.531,2.014,2.271,2.684,1.443,1.319,1.599,0.991,1.142,1.735,1.745,1.309,1.371,1.032,1.034,2.041,1.527,1.074,3.066,1.222,2.173,2.533,1.934,2.045,2.131,1.815,1.772,2.068,1.569,2.304 +"Dec 21, 2015",1.988,2.7,2.67,2.48,2.189,2.775,2.812,3.268,2.968,2.642,2.787,2.654,3.244,2.435,2.689,2.786,4.545,2.035,2.325,2.727,1.45,1.329,1.639,0.99,1.142,1.791,1.74,1.302,1.378,1.034,1.007,2.079,1.525,1.077,3.089,1.208,2.183,2.557,1.962,2.045,2.13,1.814,1.776,2.061,1.565,2.299 +"Dec 28, 2015",1.996,2.713,2.692,2.531,2.201,2.775,2.848,3.314,2.985,2.66,2.773,2.653,3.279,2.437,2.729,2.789,4.545,2.026,2.348,2.705,1.454,1.312,1.649,1.008,1.157,1.776,1.751,1.299,1.364,1.034,1.011,2.13,1.533,1.077,3.089,1.214,2.18,2.563,1.96,2.046,2.119,1.826,1.786,2.082,1.578,2.304 +"Jan 04, 2016",2.001,2.716,2.711,2.491,2.204,2.829,2.861,3.325,3.028,2.64,2.826,2.665,3.306,2.417,2.68,2.807,4.637,2.053,2.331,2.707,1.459,1.324,1.681,1.015,1.156,1.792,1.75,1.308,1.373,1.029,1.011,2.086,1.526,1.075,3.162,1.214,2.201,2.613,1.986,2.037,2.14,1.833,1.805,2.099,1.569,2.304 +"Jan 11, 2016",2.014,2.733,2.723,2.473,2.217,2.862,2.868,3.346,3.037,2.666,2.822,2.678,3.308,2.434,2.727,2.818,4.643,2.061,2.348,2.711,1.469,1.326,1.695,1.01,1.152,1.828,1.761,1.315,1.399,1.033,1.009,2.128,1.525,1.077,3.172,1.213,2.211,2.623,2.004,2.053,2.143,1.84,1.809,2.154,1.567,2.301 +"Jan 18, 2016",2.02,2.736,2.74,2.472,2.204,2.868,2.894,3.343,3.107,2.666,2.827,2.681,3.304,2.475,2.685,2.815,4.653,2.053,2.342,2.707,1.478,1.344,1.726,1.009,1.147,1.833,1.764,1.323,1.407,1.019,1.009,2.156,1.526,1.076,3.181,1.221,2.212,2.639,2.015,2.054,2.127,1.845,1.814,2.154,1.577,2.298 +"Jan 25, 2016",2.019,2.737,2.738,2.491,2.207,2.875,2.897,3.338,3.068,2.669,2.845,2.686,3.278,2.46,2.712,2.815,4.639,2.054,2.345,2.715,1.476,1.342,1.743,1,1.162,1.84,1.747,1.323,1.413,1.009,1.009,2.177,1.537,1.077,3.178,1.195,2.203,2.63,2.036,2.039,2.11,1.853,1.813,2.164,1.599,2.295 +"Feb 01, 2016",2.022,2.75,2.746,2.467,2.217,2.868,2.941,3.349,3.054,2.691,2.842,2.688,3.285,2.458,2.77,2.82,4.64,2.055,2.357,2.717,1.473,1.351,1.75,1.001,1.17,1.825,1.757,1.315,1.396,1.006,1.008,2.155,1.536,1.068,3.185,1.188,2.188,2.63,1.952,2.033,2.108,1.861,1.826,2.168,1.602,2.304 +"Feb 08, 2016",2.032,2.768,2.76,2.49,2.227,2.862,2.96,3.361,3.084,2.72,2.859,2.742,3.342,2.484,2.791,2.829,4.668,2.072,2.351,2.729,1.483,1.353,1.772,1.011,1.165,1.848,1.777,1.316,1.396,1.002,1.008,2.179,1.548,1.063,3.221,1.19,2.192,2.646,1.962,2.013,2.12,1.826,1.788,2.095,1.571,2.306 +"Feb 15, 2016",2.034,2.768,2.771,2.5,2.231,2.873,2.971,3.455,3.092,2.707,2.862,2.719,3.335,2.503,2.744,2.838,4.72,2.059,2.357,2.718,1.483,1.362,1.778,1.01,1.156,1.858,1.78,1.313,1.395,1.001,1.011,2.193,1.561,1.063,3.086,1.2,2.198,2.642,2.001,1.999,2.132,1.867,1.823,2.148,1.629,2.316 +"Feb 22, 2016",2.028,2.76,2.77,2.535,2.241,2.896,2.941,3.426,3.075,2.695,2.764,2.723,3.327,2.486,2.745,2.829,4.752,2.082,2.357,2.603,1.475,1.352,1.775,1.01,1.149,1.837,1.783,1.27,1.372,0.995,1.008,2.196,1.565,1.063,3.131,1.199,2.205,2.658,2.026,2.002,2.129,1.865,1.821,2.141,1.628,2.311 +"Feb 29, 2016",2.026,2.766,2.793,2.573,2.251,2.917,2.977,3.451,3.085,2.694,2.772,2.725,3.336,2.48,2.745,2.833,4.746,2.081,2.376,2.589,1.469,1.353,1.76,1.01,1.145,1.825,1.779,1.264,1.369,0.983,0.998,2.198,1.569,1.061,3.133,1.17,2.215,2.666,2.02,2.039,2.128,1.837,1.79,2.145,1.58,2.312 +"Mar 07, 2016",2.02,2.761,2.799,2.558,2.249,2.92,2.984,3.505,3.111,2.692,2.757,2.719,3.318,2.498,2.728,2.819,4.687,2.064,2.376,2.597,1.459,1.334,1.743,1.012,1.148,1.821,1.772,1.253,1.376,0.99,1.004,2.178,1.561,1.059,3.044,1.155,2.215,2.678,2.016,2.035,2.124,1.855,1.787,2.209,1.623,2.302 +"Mar 14, 2016",2.022,2.764,2.815,2.588,2.246,2.938,2.963,3.532,3.196,2.7,2.747,2.697,3.333,2.53,2.721,2.808,4.707,2.065,2.359,2.553,1.46,1.341,1.745,1.014,1.159,1.796,1.769,1.255,1.354,1.002,1.006,2.181,1.558,1.068,3.071,1.169,2.217,2.687,1.999,2.035,2.13,1.847,1.752,2.27,1.618,2.313 +"Mar 21, 2016",2.014,2.754,2.822,2.592,2.264,2.927,2.989,3.549,3.181,2.682,2.744,2.698,3.324,2.526,2.678,2.797,4.721,2.063,2.361,2.471,1.453,1.336,1.732,1.015,1.164,1.788,1.726,1.25,1.363,1.002,0.999,2.174,1.549,1.051,3.058,1.17,2.225,2.7,2.007,2.047,2.132,1.824,1.751,2.169,1.583,2.313 +"Mar 28, 2016",2.008,2.748,2.802,2.512,2.261,2.912,2.981,3.516,3.151,2.695,2.763,2.694,3.301,2.517,2.727,2.778,4.716,2.059,2.33,2.446,1.445,1.335,1.721,1.014,1.156,1.781,1.699,1.241,1.358,1.002,0.997,2.172,1.527,1.047,3.08,1.148,2.221,2.696,2.005,2.047,2.126,1.831,1.765,2.178,1.584,2.312 +"Oct 03, 2016",1.984,2.76,2.789,2.698,2.158,2.818,3.063,3.385,3.152,2.658,2.771,2.627,3.206,2.538,2.654,2.862,4.864,1.846,2.418,2.758,1.394,1.337,1.578,0.968,1.155,1.673,1.639,1.205,1.236,1,0.953,2.027,1.406,1.001,3.291,1.146,2.091,2.495,1.776,1.896,2.116,1.893,1.844,2.059,1.675,2.34 +"Oct 10, 2016",2.018,2.801,2.845,2.701,2.227,2.825,3.149,3.395,3.251,2.689,2.817,2.595,3.259,2.559,2.704,2.903,4.896,1.865,2.467,2.82,1.42,1.387,1.645,0.988,1.206,1.732,1.701,1.232,1.3,1.043,0.977,2.068,1.426,1.055,2.763,1.188,2.125,2.548,1.837,1.898,2.149,1.961,1.921,2.178,1.73,2.359 +"Oct 17, 2016",2.053,2.826,2.875,2.742,2.246,2.829,3.186,3.441,3.308,2.734,2.844,2.586,3.264,2.611,2.769,2.902,4.938,1.862,2.429,2.852,1.459,1.417,1.717,1.018,1.204,1.746,1.727,1.296,1.287,1.049,1.006,2.133,1.437,1.084,2.899,1.25,2.149,2.59,1.883,1.911,2.157,2.062,1.993,2.37,1.815,2.509 +"Oct 24, 2016",2.069,2.843,2.902,2.738,2.266,2.9,3.206,3.474,3.316,2.737,2.853,2.613,3.271,2.621,2.758,2.928,4.955,1.872,2.464,2.889,1.474,1.429,1.722,1.032,1.209,1.748,1.721,1.315,1.3,1.06,1.068,2.116,1.471,1.119,2.968,1.284,2.154,2.612,1.854,1.917,2.167,2.088,2.008,2.423,1.847,2.539 +"Oct 31, 2016",2.059,2.827,2.918,2.733,2.292,2.917,3.223,3.47,3.328,2.736,2.844,2.617,3.277,2.61,2.765,2.874,4.657,1.918,2.456,2.892,1.479,1.415,1.73,1.035,1.229,1.743,1.727,1.33,1.291,1.064,1.09,2.156,1.471,1.123,2.903,1.304,2.061,2.213,1.866,1.898,2.171,2.102,2.02,2.425,1.858,2.574 +"Nov 07, 2016",2.064,2.837,2.932,2.776,2.28,2.932,3.231,3.463,3.371,2.779,2.859,2.748,3.366,2.648,2.78,2.845,4.54,1.886,2.447,2.921,1.483,1.432,1.755,1.034,1.222,1.787,1.661,1.333,1.288,1.067,1.085,2.167,1.488,1.134,2.936,1.332,2.063,2.221,1.843,1.906,2.177,2.076,2.032,2.078,1.872,2.608 +"Nov 14, 2016",2.045,2.802,2.905,2.66,2.279,2.886,3.219,3.282,3.385,2.71,2.654,2.714,3.168,2.63,2.697,2.845,4.574,1.916,2.418,2.912,1.487,1.384,1.714,1.04,1.225,1.818,1.668,1.329,1.358,1.069,1.098,2.167,1.487,1.149,2.969,1.364,2.055,2.249,1.836,1.889,2.152,1.921,1.953,2.064,1.543,2.439 +"Nov 21, 2016",2.061,2.821,2.923,2.677,2.291,2.899,3.237,3.296,3.417,2.732,2.645,2.727,3.176,2.647,2.735,2.86,4.642,1.967,2.39,2.916,1.503,1.376,1.775,1.034,1.19,1.872,1.732,1.343,1.345,1.066,1.101,2.207,1.505,1.157,3.064,1.341,2.085,2.308,1.884,1.92,2.152,1.906,1.904,2.08,1.566,2.43 +"Nov 28, 2016",2.077,2.836,2.93,2.688,2.302,2.896,3.262,3.286,3.409,2.756,2.674,2.726,3.187,2.66,2.779,2.87,4.657,2.002,2.443,2.801,1.519,1.383,1.802,1.038,1.194,1.883,1.746,1.353,1.345,1.075,1.105,2.3,1.52,1.159,3.078,1.353,2.097,2.328,1.899,1.933,2.159,1.928,1.919,2.13,1.588,2.452 +"Dec 05, 2016",2.118,2.887,2.974,2.775,2.32,2.908,3.308,3.337,3.501,2.808,2.718,2.753,3.225,2.73,2.824,2.923,4.724,2.045,2.503,2.835,1.551,1.423,1.827,1.053,1.222,1.898,1.781,1.366,1.404,1.101,1.117,2.343,1.532,1.184,3.172,1.391,2.138,2.363,1.978,1.977,2.184,1.983,1.985,2.167,1.634,2.504 +"Dec 12, 2016",2.157,2.917,2.995,2.802,2.356,2.915,3.325,3.365,3.523,2.832,2.75,2.772,3.279,2.756,2.839,2.966,4.75,2.113,2.548,2.863,1.595,1.464,1.909,1.072,1.256,1.955,1.816,1.411,1.459,1.136,1.164,2.38,1.646,1.22,3.235,1.424,2.159,2.382,2.025,1.986,2.203,2.071,2.08,2.262,1.717,2.576 +"Dec 19, 2016",2.188,2.939,3.016,2.812,2.36,2.952,3.351,3.34,3.55,2.871,2.785,2.81,3.355,2.798,2.869,2.969,4.76,2.122,2.535,2.884,1.631,1.498,1.959,1.102,1.277,1.97,1.843,1.441,1.483,1.164,1.256,2.423,1.708,1.273,3.211,1.47,2.183,2.408,2.063,1.999,2.226,2.134,2.118,2.325,1.821,2.642 +"Dec 26, 2016",2.213,2.959,3.028,2.828,2.387,2.956,3.377,3.35,3.526,2.904,2.79,2.829,3.419,2.822,2.911,2.98,4.78,2.141,2.535,2.902,1.661,1.522,2.004,1.121,1.308,2.007,1.873,1.463,1.549,1.177,1.294,2.494,1.671,1.306,3.244,1.476,2.189,2.374,2.026,2.05,2.245,2.185,2.154,2.395,1.901,2.666 +"Jan 02, 2017",2.271,3.012,3.065,2.866,2.441,2.971,3.394,3.385,3.6,2.954,2.855,2.852,3.493,2.864,2.971,3.047,4.849,2.232,2.589,2.963,1.721,1.597,2.071,1.167,1.366,2.044,1.911,1.533,1.606,1.212,1.327,2.586,1.758,1.355,3.363,1.527,2.241,2.426,2.109,2.11,2.277,2.269,2.221,2.54,1.988,2.751 +"Jan 09, 2017",2.298,3.043,3.083,2.887,2.44,2.985,3.435,3.485,3.606,3.002,2.879,2.897,3.532,2.927,3.009,3.066,4.865,2.248,2.617,2.97,1.745,1.607,2.114,1.182,1.382,2.049,1.932,1.543,1.634,1.236,1.375,2.611,1.784,1.369,3.374,1.58,2.255,2.441,2.134,2.121,2.289,2.311,2.238,2.563,2.065,2.815 +"Jan 16, 2017",2.326,3.066,3.098,2.964,2.469,3.018,3.411,3.559,3.59,3.023,2.883,2.917,3.55,2.959,3.022,3.095,4.914,2.282,2.635,2.996,1.771,1.621,2.14,1.198,1.404,2.084,1.965,1.551,1.667,1.248,1.406,2.666,1.83,1.393,3.44,1.596,2.289,2.491,2.189,2.149,2.307,2.39,2.28,2.698,2.202,2.853 +"Jan 23, 2017",2.354,3.106,3.128,2.977,2.489,3.045,3.438,3.561,3.653,3.071,2.936,2.99,3.619,3.014,3.05,3.133,4.934,2.329,2.668,3.053,1.79,1.65,2.161,1.208,1.43,2.112,1.983,1.562,1.704,1.256,1.419,2.682,1.843,1.409,3.493,1.607,2.317,2.52,2.204,2.173,2.344,2.421,2.317,2.749,2.231,2.855 +"Jan 30, 2017",2.394,3.141,3.165,3.013,2.548,3.074,3.487,3.628,3.65,3.115,2.953,3.027,3.677,3.045,3.111,3.156,4.986,2.342,2.682,3.077,1.832,1.709,2.194,1.236,1.494,2.152,2.022,1.62,1.746,1.299,1.44,2.731,1.856,1.446,3.597,1.624,2.357,2.564,2.267,2.198,2.38,2.473,2.354,2.825,2.284,2.93 +"Feb 06, 2017",2.453,3.191,3.199,3.002,2.626,3.09,3.51,3.659,3.697,3.192,3.031,3.073,3.751,3.131,3.186,3.184,5.051,2.349,2.682,3.149,1.892,1.776,2.266,1.28,1.536,2.167,2.072,1.678,1.823,1.354,1.474,2.823,1.877,1.467,3.718,1.694,2.438,2.645,2.354,2.264,2.469,2.565,2.433,2.956,2.388,3.009 +"Feb 13, 2017",2.451,3.202,3.205,3.03,2.639,3.099,3.521,3.694,3.666,3.199,3.047,3.093,3.709,3.138,3.2,3.205,5.057,2.362,2.706,3.186,1.88,1.742,2.267,1.271,1.528,2.174,2.048,1.68,1.812,1.342,1.469,2.824,1.884,1.478,3.651,1.682,2.437,2.655,2.35,2.261,2.466,2.549,2.433,2.938,2.327,3.034 +"Feb 20, 2017",2.447,3.208,3.211,2.998,2.65,3.094,3.539,3.674,3.683,3.2,3.046,3.054,3.705,3.147,3.205,3.217,5.078,2.373,2.715,3.197,1.87,1.734,2.266,1.264,1.494,2.173,2.045,1.674,1.781,1.318,1.446,2.836,1.878,1.45,3.659,1.654,2.434,2.66,2.333,2.262,2.461,2.543,2.418,2.954,2.323,3.03 +"Feb 27, 2017",2.417,3.161,3.208,2.989,2.65,3.109,3.531,3.654,3.67,3.147,3.042,3.054,3.68,3.133,3.082,3.149,5.07,2.372,2.7,2.866,1.85,1.725,2.257,1.251,1.484,2.137,2.035,1.65,1.758,1.296,1.403,2.829,1.845,1.427,3.655,1.61,2.423,2.648,2.253,2.269,2.468,2.516,2.374,2.978,2.292,3.024 +"Mar 06, 2017",2.419,3.199,3.207,2.959,2.634,3.108,3.536,3.655,3.695,3.177,3.029,3.053,3.647,3.127,3.179,3.219,5.06,2.421,2.71,3.183,1.827,1.712,2.178,1.221,1.447,2.08,2.014,1.619,1.747,1.281,1.386,2.796,1.848,1.407,3.66,1.606,2.433,2.644,2.325,2.269,2.466,2.492,2.349,2.949,2.274,2.998 +"Mar 13, 2017",2.41,3.195,3.227,2.992,2.621,3.123,3.576,3.702,3.725,3.196,3.067,3.136,3.761,3.195,3.106,3.174,5.099,2.379,2.743,2.869,1.815,1.692,2.198,1.214,1.444,2.11,2.018,1.617,1.752,1.254,1.37,2.709,1.875,1.386,3.676,1.572,2.404,2.622,2.242,2.261,2.441,2.5,2.348,2.984,2.284,3.011 +"Mar 20, 2017",2.405,3.196,3.228,2.988,2.607,3.131,3.582,3.703,3.733,3.202,3.076,3.135,3.769,3.214,3.1,3.167,5.109,2.373,2.721,2.875,1.805,1.696,2.201,1.205,1.443,2.103,2.006,1.584,1.722,1.238,1.34,2.71,1.871,1.368,3.71,1.565,2.403,2.642,2.246,2.257,2.426,2.488,2.339,2.966,2.26,3.016 +"Mar 27, 2017",2.39,3.177,3.209,2.969,2.596,3.12,3.579,3.654,3.673,3.181,3.08,3.145,3.757,3.174,3.083,3.152,5.089,2.369,2.707,2.85,1.791,1.673,2.147,1.191,1.427,2.09,2.005,1.585,1.701,1.218,1.316,2.697,1.864,1.356,3.7,1.561,2.401,2.642,2.231,2.27,2.418,2.483,2.337,2.97,2.253,2.997 +"Oct 02, 2017",2.277,3,2.895,2.767,2.524,2.884,3.011,3.377,3.276,2.972,2.926,2.943,3.45,2.892,2.963,3.103,4.789,2.114,2.771,2.927,1.727,1.588,1.911,1.302,1.5,1.97,1.878,1.581,1.668,1.366,1.311,2.475,1.816,1.387,3.119,1.515,2.296,2.511,2.033,2.293,2.28,2.005,2.009,2.217,1.606,2.492 +"Oct 09, 2017",2.305,3.027,2.931,2.796,2.538,2.907,3.072,3.452,3.32,2.987,2.922,2.912,3.465,2.917,2.986,3.137,4.825,2.18,2.779,2.976,1.755,1.606,1.934,1.322,1.515,1.974,1.914,1.629,1.68,1.387,1.339,2.514,1.811,1.448,3.241,1.533,2.309,2.54,2.055,2.329,2.265,2.069,2.059,2.222,1.727,2.549 +"Oct 16, 2017",2.315,3.03,2.947,2.833,2.566,2.925,3.077,3.488,3.319,2.993,2.921,2.957,3.476,2.917,2.985,3.129,4.826,2.144,2.771,2.987,1.772,1.608,1.972,1.336,1.513,1.985,1.939,1.652,1.698,1.395,1.342,2.546,1.839,1.461,3.25,1.546,2.312,2.547,2.059,2.319,2.274,2.083,2.067,2.224,1.759,2.561 +"Oct 23, 2017",2.322,3.032,2.947,2.816,2.608,2.891,3.083,3.462,3.31,2.994,2.895,2.976,3.492,2.924,2.976,3.133,4.833,2.137,2.783,2.984,1.783,1.604,1.996,1.347,1.515,2.056,1.954,1.644,1.693,1.389,1.388,2.563,1.864,1.468,3.256,1.55,2.315,2.544,2.05,2.329,2.281,2.093,2.064,2.248,1.782,2.579 +"Oct 30, 2017",2.344,3.046,2.963,2.806,2.624,2.916,3.086,3.472,3.352,3.017,2.906,3.03,3.497,2.94,3.003,3.136,4.837,2.15,2.782,2.982,1.812,1.621,2.057,1.384,1.542,2.078,1.965,1.676,1.714,1.401,1.431,2.625,1.879,1.509,3.203,1.592,2.332,2.558,2.058,2.353,2.299,2.106,2.07,2.3,1.776,2.612 +"Nov 06, 2017",2.361,3.068,3.004,2.854,2.645,2.993,3.09,3.509,3.425,3.044,2.894,3.014,3.541,2.986,3.025,3.138,4.793,2.197,2.792,2.97,1.825,1.635,2.092,1.402,1.574,2.098,1.998,1.675,1.729,1.429,1.473,2.618,1.92,1.529,3.067,1.616,2.34,2.564,2.093,2.344,2.307,2.145,2.091,2.391,1.805,2.672 +"Nov 13, 2017",2.382,3.088,3.028,2.864,2.668,3.021,3.1,3.54,3.471,3.085,2.921,3.067,3.604,3.039,3.047,3.132,4.743,2.21,2.805,2.955,1.847,1.674,2.115,1.404,1.579,2.132,2.061,1.667,1.755,1.435,1.516,2.636,1.94,1.55,3.047,1.63,2.35,2.557,2.139,2.327,2.331,2.185,2.105,2.437,1.856,2.77 +"Nov 20, 2017",2.419,3.137,3.041,2.878,2.673,3.056,3.104,3.563,3.478,3.157,2.944,3.115,3.662,3.136,3.11,3.178,4.844,2.232,2.844,2.98,1.877,1.698,2.144,1.437,1.604,2.165,2.089,1.714,1.759,1.457,1.542,2.671,1.964,1.57,3.071,1.676,2.376,2.57,2.164,2.366,2.355,2.216,2.13,2.464,1.885,2.822 +"Nov 27, 2017",2.435,3.146,3.044,2.886,2.678,3.057,3.103,3.547,3.484,3.182,2.938,3.117,3.659,3.191,3.124,3.174,4.827,2.247,2.833,2.985,1.898,1.728,2.179,1.458,1.613,2.197,2.095,1.738,1.778,1.477,1.561,2.682,1.972,1.576,3.065,1.707,2.391,2.582,2.193,2.365,2.376,2.231,2.142,2.484,1.904,2.834 +"Dec 04, 2017",2.452,3.174,3.1,2.897,2.692,3.088,3.231,3.55,3.559,3.199,2.941,3.146,3.676,3.223,3.124,3.195,4.857,2.278,2.836,3.019,1.911,1.749,2.185,1.462,1.639,2.215,2.121,1.768,1.805,1.489,1.568,2.688,1.976,1.586,3.024,1.712,2.422,2.59,2.221,2.395,2.424,2.183,2.196,2.489,1.909,2.356 +"Dec 11, 2017",2.482,3.222,3.161,2.917,2.722,3.118,3.335,3.732,3.653,3.231,2.965,3.158,3.712,3.259,3.157,3.254,4.911,2.35,2.887,3.084,1.927,1.759,2.203,1.464,1.645,2.226,2.146,1.782,1.832,1.484,1.567,2.728,1.99,1.591,3.061,1.724,2.444,2.611,2.261,2.421,2.435,2.221,2.247,2.524,1.942,2.371 +"Dec 18, 2017",2.485,3.232,3.185,2.921,2.735,3.124,3.38,3.776,3.691,3.255,2.975,3.163,3.716,3.325,3.151,3.237,4.837,2.355,2.888,3.075,1.926,1.74,2.206,1.457,1.649,2.233,2.157,1.78,1.825,1.477,1.578,2.723,2.011,1.586,3.046,1.743,2.441,2.606,2.251,2.423,2.434,2.215,2.244,2.484,1.942,2.374 +"Dec 25, 2017",2.496,3.248,3.207,2.926,2.753,3.128,3.451,3.783,3.681,3.276,2.987,3.168,3.735,3.358,3.166,3.244,4.837,2.361,2.904,3.074,1.935,1.745,2.224,1.463,1.643,2.236,2.175,1.783,1.835,1.482,1.58,2.725,2.026,1.596,3.058,1.755,2.443,2.606,2.265,2.425,2.432,2.225,2.25,2.49,1.954,2.395 +"Jan 01, 2018",2.52,3.286,3.235,2.957,2.794,3.166,3.43,3.83,3.75,3.325,3.079,3.212,3.755,3.443,3.181,3.273,4.805,2.45,2.935,3.103,1.946,1.765,2.257,1.483,1.67,2.265,2.159,1.774,1.87,1.488,1.556,2.742,2.027,1.608,3.087,1.768,2.472,2.639,2.287,2.469,2.453,2.251,2.251,2.53,2.015,2.418 +"Jan 08, 2018",2.55,3.318,3.288,3.026,2.874,3.197,3.478,3.857,3.795,3.35,3.115,3.251,3.797,3.466,3.199,3.301,4.822,2.463,2.964,3.157,1.978,1.811,2.312,1.497,1.68,2.32,2.172,1.79,1.9,1.503,1.602,2.762,2.05,1.615,3.136,1.822,2.486,2.651,2.326,2.484,2.456,2.269,2.269,2.539,2.041,2.43 +"Jan 15, 2018",2.584,3.348,3.336,3.073,2.917,3.203,3.591,3.872,3.817,3.381,3.151,3.329,3.831,3.512,3.198,3.318,4.753,2.516,3.01,3.177,2.015,1.845,2.452,1.506,1.691,2.429,2.192,1.825,1.915,1.51,1.618,2.829,2.071,1.634,3.122,1.861,2.529,2.727,2.388,2.551,2.458,2.287,2.277,2.55,2.067,2.471 +"Jan 22, 2018",2.607,3.363,3.319,3.113,2.914,3.211,3.52,3.896,3.787,3.41,3.164,3.392,3.841,3.546,3.219,3.336,4.751,2.538,3.038,3.193,2.05,1.929,2.627,1.513,1.693,2.481,2.212,1.825,1.962,1.51,1.629,2.853,2.079,1.635,3.126,1.877,2.536,2.723,2.408,2.575,2.455,2.295,2.286,2.549,2.064,2.505 +"Jan 29, 2018",2.598,3.357,3.315,3.12,2.926,3.215,3.491,3.901,3.777,3.405,3.184,3.379,3.841,3.534,3.218,3.329,4.749,2.538,3.003,3.227,2.034,1.916,2.579,1.498,1.687,2.443,2.213,1.805,1.933,1.491,1.614,2.854,2.077,1.632,3.119,1.862,2.542,2.734,2.408,2.583,2.458,2.293,2.271,2.547,2.073,2.521 +"Feb 05, 2018",2.587,3.334,3.328,3.102,2.956,3.221,3.527,3.901,3.76,3.349,3.188,3.384,3.835,3.53,3.071,3.321,4.728,2.538,3.002,3.209,2.032,1.894,2.559,1.499,1.684,2.464,2.213,1.83,1.933,1.487,1.605,2.86,2.089,1.63,3.104,1.85,2.525,2.698,2.38,2.58,2.449,2.291,2.275,2.527,2.062,2.529 +"Feb 12, 2018",2.576,3.334,3.336,3.12,2.958,3.22,3.545,3.92,3.769,3.343,3.17,3.389,3.841,3.521,3.064,3.323,4.708,2.54,3.024,3.198,2.015,1.854,2.507,1.475,1.692,2.458,2.248,1.814,1.928,1.456,1.59,2.88,2.091,1.615,3.097,1.786,2.509,2.665,2.351,2.569,2.444,2.269,2.271,2.505,2.013,2.504 +"Feb 19, 2018",2.568,3.331,3.325,3.078,2.932,3.217,3.546,3.916,3.768,3.338,3.159,3.368,3.815,3.525,3.06,3.326,4.719,2.55,3.028,3.18,2,1.842,2.452,1.467,1.661,2.426,2.245,1.815,1.912,1.437,1.576,2.869,2.091,1.597,3.101,1.754,2.509,2.669,2.336,2.573,2.446,2.27,2.276,2.511,2.007,2.502 +"Feb 26, 2018",2.557,3.325,3.318,3.057,2.954,3.213,3.522,3.915,3.751,3.333,3.152,3.359,3.821,3.521,3.053,3.32,4.717,2.555,3.018,3.168,1.985,1.814,2.403,1.468,1.655,2.409,2.238,1.808,1.895,1.417,1.558,2.849,2.082,1.592,3.094,1.74,2.505,2.667,2.318,2.572,2.445,2.262,2.262,2.508,2.007,2.492 +"Mar 05, 2018",2.531,3.308,3.299,3.032,2.933,3.211,3.526,3.912,3.678,3.317,3.143,3.328,3.8,3.51,3.036,3.305,4.732,2.519,2.995,3.157,1.949,1.773,2.323,1.451,1.628,2.356,2.229,1.759,1.838,1.395,1.536,2.821,2.038,1.579,3.14,1.68,2.497,2.678,2.263,2.572,2.441,2.237,2.215,2.511,2.007,2.462 +"Mar 12, 2018",2.499,3.281,3.28,2.998,2.9,3.179,3.52,3.901,3.681,3.295,3.133,3.32,3.776,3.488,3.008,3.266,4.676,2.492,2.955,3.127,1.911,1.713,2.287,1.42,1.595,2.288,2.219,1.712,1.81,1.391,1.512,2.754,2.021,1.544,3.095,1.644,2.489,2.658,2.236,2.571,2.442,2.19,2.156,2.48,1.968,2.423 +"Mar 19, 2018",2.487,3.273,3.266,2.973,2.894,3.177,3.49,3.9,3.669,3.295,3.124,3.335,3.775,3.488,3.006,3.253,4.703,2.446,2.94,3.11,1.893,1.702,2.262,1.399,1.597,2.301,2.209,1.682,1.803,1.349,1.486,2.739,1.983,1.531,3.087,1.617,2.484,2.638,2.236,2.567,2.443,2.182,2.151,2.469,1.96,2.409 +"Mar 26, 2018",2.48,3.273,3.266,2.963,2.894,3.177,3.488,3.881,3.682,3.293,3.116,3.328,3.773,3.49,3.003,3.253,4.706,2.44,2.935,3.123,1.882,1.685,2.261,1.377,1.597,2.281,2.201,1.665,1.792,1.346,1.481,2.742,1.97,1.524,3.098,1.597,2.472,2.628,2.226,2.547,2.436,2.178,2.146,2.469,1.956,2.405 +"Oct 01, 2018",2.37,3.179,3.16,3.004,2.892,3.161,3.221,3.454,3.524,3.187,3.126,3.242,3.847,3.183,3.051,3.182,4.708,2.278,2.768,3.105,1.745,1.6,1.924,1.322,1.517,2.098,2.002,1.537,1.709,1.348,1.257,2.64,1.795,1.396,2.917,1.513,2.431,2.574,2.075,2.466,2.466,2.041,2.024,2.295,1.716,2.443 +"Oct 08, 2018",2.389,3.204,3.192,3.025,2.932,3.167,3.286,3.479,3.536,3.223,3.125,3.257,3.846,3.235,3.091,3.192,4.723,2.27,2.784,3.116,1.759,1.606,1.939,1.332,1.524,2.113,2.016,1.557,1.69,1.354,1.353,2.639,1.801,1.436,2.928,1.53,2.441,2.577,2.094,2.501,2.464,2.064,2.042,2.322,1.736,2.479 +"Oct 15, 2018",2.402,3.21,3.201,3.042,2.937,3.186,3.277,3.508,3.557,3.23,3.153,3.268,3.854,3.248,3.088,3.192,4.711,2.271,2.788,3.122,1.779,1.61,1.959,1.35,1.542,2.162,2.018,1.587,1.726,1.367,1.385,2.646,1.824,1.455,2.954,1.558,2.435,2.555,2.109,2.507,2.452,2.086,2.069,2.352,1.75,2.496 +"Oct 22, 2018",2.419,3.222,3.211,3.021,2.968,3.183,3.288,3.503,3.574,3.232,3.181,3.281,3.851,3.242,3.091,3.218,4.721,2.276,2.834,3.15,1.8,1.627,1.985,1.357,1.573,2.169,2.012,1.635,1.777,1.394,1.437,2.644,1.857,1.491,2.993,1.567,2.443,2.547,2.142,2.527,2.452,2.115,2.086,2.39,1.808,2.499 +"Oct 29, 2018",2.418,3.219,3.21,3.005,2.988,3.175,3.286,3.508,3.56,3.232,3.175,3.281,3.85,3.245,3.089,3.211,4.729,2.276,2.819,3.136,1.8,1.621,1.983,1.36,1.575,2.167,2.002,1.628,1.786,1.393,1.45,2.651,1.905,1.495,3.002,1.555,2.441,2.539,2.16,2.526,2.445,2.116,2.081,2.386,1.818,2.503 +"Nov 05, 2018",2.419,3.217,3.203,3.01,3.005,3.177,3.28,3.491,3.497,3.216,3.162,3.27,3.853,3.205,3.092,3.228,4.762,2.301,2.83,3.135,1.804,1.624,1.994,1.345,1.571,2.188,2.002,1.629,1.791,1.384,1.447,2.655,1.914,1.498,3.016,1.575,2.445,2.545,2.175,2.526,2.447,2.126,2.08,2.402,1.841,2.513 +"Nov 12, 2018",2.422,3.223,3.206,3.009,3.001,3.192,3.269,3.458,3.526,3.222,3.167,3.276,3.88,3.211,3.093,3.235,4.792,2.312,2.825,3.132,1.803,1.616,1.997,1.343,1.565,2.225,2.003,1.626,1.789,1.37,1.433,2.668,1.915,1.492,3.034,1.567,2.457,2.597,2.185,2.516,2.449,2.132,2.072,2.428,1.86,2.518 +"Nov 19, 2018",2.425,3.23,3.207,2.985,3.011,3.216,3.265,3.551,3.492,3.24,3.163,3.291,3.877,3.264,3.086,3.233,4.793,2.328,2.819,3.116,1.805,1.618,2.008,1.339,1.561,2.234,2.008,1.622,1.79,1.353,1.435,2.66,1.924,1.498,3.031,1.577,2.452,2.579,2.186,2.515,2.448,2.135,2.07,2.433,1.868,2.522 +"Nov 26, 2018",2.423,3.224,3.187,2.974,3.012,3.146,3.265,3.543,3.466,3.242,3.173,3.276,3.876,3.274,3.085,3.229,4.786,2.33,2.814,3.113,1.803,1.633,2.011,1.347,1.563,2.215,2.006,1.623,1.783,1.352,1.431,2.637,1.932,1.494,3.023,1.573,2.452,2.572,2.198,2.514,2.446,2.136,2.071,2.437,1.869,2.519 +"Dec 03, 2018",2.431,3.232,3.205,2.98,3.011,3.146,3.298,3.572,3.521,3.238,3.186,3.277,3.883,3.272,3.072,3.244,4.806,2.335,2.836,3.117,1.81,1.635,2.028,1.337,1.559,2.24,2.013,1.632,1.785,1.346,1.436,2.653,1.936,1.495,3.054,1.586,2.46,2.577,2.204,2.534,2.45,2.168,2.108,2.474,1.894,2.548 +"Dec 10, 2018",2.441,3.241,3.208,2.984,3.015,3.142,3.303,3.559,3.532,3.242,3.19,3.277,3.892,3.276,3.078,3.263,4.837,2.343,2.855,3.133,1.819,1.65,2.058,1.338,1.55,2.242,2.019,1.636,1.787,1.348,1.444,2.671,1.941,1.501,3.083,1.591,2.466,2.591,2.214,2.537,2.453,2.189,2.126,2.507,1.92,2.559 +"Dec 17, 2018",2.439,3.236,3.206,2.975,3.015,3.128,3.315,3.572,3.522,3.235,3.17,3.277,3.873,3.275,3.067,3.257,4.833,2.341,2.849,3.121,1.821,1.654,2.069,1.336,1.545,2.267,2.011,1.636,1.788,1.346,1.445,2.666,1.945,1.499,3.053,1.609,2.46,2.577,2.214,2.534,2.446,2.197,2.131,2.507,1.924,2.588 +"Dec 24, 2018",2.437,3.232,3.198,2.971,3.013,3.123,3.321,3.574,3.478,3.23,3.17,3.262,3.868,3.278,3.057,3.256,4.827,2.341,2.849,3.124,1.819,1.653,2.071,1.332,1.543,2.272,2.008,1.633,1.784,1.342,1.449,2.671,1.943,1.497,3.05,1.603,2.456,2.566,2.216,2.534,2.442,2.2,2.141,2.502,1.925,2.584 +"Dec 31, 2018",2.433,3.224,3.194,2.965,3.019,3.112,3.317,3.572,3.47,3.22,3.152,3.265,3.845,3.265,3.048,3.248,4.817,2.338,2.845,3.107,1.818,1.65,2.08,1.324,1.539,2.26,2.008,1.636,1.79,1.335,1.45,2.665,1.942,1.494,3.046,1.602,2.455,2.573,2.214,2.533,2.436,2.202,2.146,2.504,1.921,2.587 +"Jan 07, 2019",2.432,3.212,3.172,2.974,3.001,3.096,3.286,3.559,3.429,3.195,3.131,3.265,3.824,3.244,3.012,3.26,4.856,2.346,2.864,3.075,1.823,1.643,2.091,1.319,1.539,2.241,2.033,1.641,1.8,1.32,1.442,2.705,1.946,1.493,3.083,1.599,2.458,2.582,2.225,2.533,2.435,2.225,2.17,2.527,1.945,2.605 +"Jan 14, 2019",2.428,3.206,3.171,2.957,3.004,3.097,3.308,3.556,3.394,3.181,3.132,3.272,3.819,3.248,2.972,3.257,4.862,2.343,2.859,3.067,1.819,1.641,2.096,1.311,1.537,2.248,2.033,1.64,1.803,1.32,1.428,2.701,1.944,1.492,3.049,1.582,2.462,2.597,2.216,2.535,2.439,2.223,2.172,2.506,1.948,2.601 +"Jan 21, 2019",2.427,3.207,3.164,2.966,2.999,3.096,3.277,3.564,3.399,3.192,3.125,3.281,3.818,3.282,2.967,3.253,4.858,2.343,2.854,3.06,1.817,1.64,2.105,1.312,1.539,2.257,2.035,1.633,1.784,1.315,1.423,2.712,1.938,1.49,3.031,1.578,2.46,2.595,2.22,2.539,2.431,2.224,2.173,2.517,1.945,2.598 +"Jan 28, 2019",2.428,3.205,3.166,2.97,3,3.097,3.281,3.564,3.402,3.191,3.121,3.281,3.818,3.284,2.961,3.247,4.846,2.342,2.849,3.056,1.821,1.645,2.123,1.312,1.541,2.28,2.029,1.634,1.786,1.313,1.428,2.717,1.936,1.488,3.032,1.586,2.461,2.59,2.22,2.549,2.432,2.225,2.175,2.524,1.943,2.598 +"Feb 04, 2019",2.435,3.22,3.178,2.982,3.001,3.109,3.297,3.567,3.424,3.221,3.132,3.282,3.833,3.3,3.02,3.246,4.832,2.345,2.835,3.091,1.821,1.648,2.129,1.311,1.537,2.277,2.033,1.629,1.784,1.314,1.424,2.715,1.937,1.486,3.059,1.587,2.466,2.592,2.23,2.557,2.435,2.22,2.179,2.521,1.928,2.584 +"Feb 11, 2019",2.431,3.215,3.171,2.973,3.005,3.099,3.292,3.567,3.403,3.219,3.135,3.274,3.838,3.305,3.011,3.241,4.81,2.355,2.831,3.086,1.819,1.647,2.127,1.312,1.527,2.252,2.035,1.632,1.775,1.309,1.422,2.716,1.94,1.488,3.059,1.578,2.463,2.59,2.221,2.553,2.433,2.211,2.161,2.514,1.928,2.581 +"Feb 18, 2019",2.429,3.213,3.166,2.946,3.016,3.099,3.283,3.565,3.386,3.221,3.13,3.283,3.835,3.312,3.008,3.236,4.806,2.347,2.833,3.068,1.818,1.649,2.125,1.313,1.526,2.263,2.034,1.627,1.772,1.314,1.419,2.715,1.932,1.486,3.062,1.578,2.457,2.589,2.221,2.555,2.419,2.206,2.154,2.505,1.935,2.567 +"Feb 25, 2019",2.43,3.21,3.165,2.955,3.01,3.1,3.276,3.56,3.391,3.209,3.13,3.282,3.836,3.312,2.977,3.242,4.816,2.347,2.838,3.081,1.822,1.65,2.125,1.319,1.532,2.263,2.041,1.636,1.771,1.327,1.431,2.718,1.935,1.486,3.06,1.576,2.459,2.593,2.221,2.554,2.421,2.213,2.159,2.504,1.95,2.569 +"Mar 04, 2019",2.419,3.204,3.173,2.95,3.027,3.118,3.272,3.564,3.399,3.217,3.134,3.285,3.837,3.325,2.983,3.211,4.753,2.332,2.806,3.072,1.808,1.643,2.094,1.326,1.532,2.25,2.026,1.631,1.751,1.326,1.436,2.681,1.927,1.488,2.953,1.565,2.445,2.566,2.197,2.543,2.417,2.194,2.126,2.481,1.953,2.553 +"Mar 11, 2019",2.414,3.199,3.177,2.946,3.031,3.119,3.276,3.569,3.413,3.216,3.137,3.282,3.837,3.323,2.984,3.192,4.704,2.323,2.792,3.071,1.803,1.647,2.08,1.325,1.53,2.232,2.013,1.624,1.748,1.339,1.443,2.659,1.927,1.489,2.957,1.563,2.434,2.556,2.165,2.536,2.412,2.188,2.114,2.486,1.958,2.533 +"Mar 18, 2019",2.41,3.198,3.173,2.945,3.029,3.114,3.268,3.568,3.409,3.221,3.143,3.285,3.831,3.331,2.987,3.189,4.697,2.317,2.789,3.075,1.797,1.641,2.038,1.323,1.527,2.23,2.013,1.61,1.744,1.345,1.439,2.647,1.919,1.482,2.964,1.561,2.423,2.518,2.154,2.533,2.411,2.191,2.108,2.482,1.98,2.534 +"Mar 25, 2019",2.397,3.19,3.159,2.943,3.016,3.114,3.262,3.568,3.353,3.214,3.139,3.285,3.819,3.329,2.976,3.182,4.693,2.306,2.779,3.074,1.782,1.626,1.998,1.316,1.525,2.217,2.001,1.597,1.734,1.34,1.431,2.616,1.918,1.477,2.973,1.539,2.39,2.451,2.136,2.502,2.391,2.188,2.101,2.48,1.986,2.525 +"Oct 07, 2019",1.84,2.548,2.704,2.611,2.555,2.872,2.793,3.073,2.614,2.42,2.677,2.609,2.843,2.437,2.16,2.546,3.931,2.081,2.567,2.544,1.394,1.278,1.443,1.153,1.226,2.215,1.565,1.275,1.393,1.068,1.365,2.007,1.5,1.245,2.343,1.191,2.059,2.326,1.535,2.2,2.133,1.503,1.488,1.615,1.42,1.606 +"Oct 14, 2019",1.847,2.54,2.701,2.593,2.544,2.876,2.766,3.078,2.647,2.395,2.561,2.543,2.837,2.437,2.148,2.569,3.879,2.126,2.556,2.561,1.406,1.286,1.466,1.157,1.241,2.239,1.565,1.264,1.386,1.086,1.38,1.843,1.517,1.264,2.36,1.22,2.072,2.285,1.549,2.221,2.135,1.516,1.504,1.662,1.412,1.597 +"Oct 21, 2019",1.839,2.54,2.689,2.589,2.534,2.866,2.746,3.04,2.641,2.4,2.57,2.474,2.905,2.446,2.148,2.576,3.89,2.076,2.572,2.576,1.401,1.29,1.477,1.178,1.222,2.236,1.566,1.285,1.398,1.07,1.131,1.852,1.525,1.261,2.383,1.24,2.059,2.223,1.548,2.221,2.135,1.524,1.51,1.679,1.432,1.592 +"Oct 28, 2019",1.845,2.504,2.626,2.583,2.402,2.729,2.733,2.921,2.615,2.373,2.537,2.47,2.842,2.427,2.097,2.557,3.876,2.094,2.574,2.532,1.425,1.345,1.505,1.191,1.232,2.255,1.579,1.323,1.396,1.107,1.161,1.889,1.572,1.282,2.361,1.254,2.074,2.295,1.561,2.239,2.13,1.536,1.52,1.683,1.444,1.61 +"Nov 04, 2019",1.895,2.529,2.655,2.596,2.386,2.775,2.758,2.957,2.7,2.391,2.595,2.549,2.85,2.432,2.113,2.584,3.932,2.104,2.609,2.551,1.487,1.43,1.561,1.269,1.236,2.31,1.592,1.44,1.473,1.116,1.283,1.921,1.6,1.338,2.386,1.317,2.094,2.285,1.591,2.24,2.167,1.559,1.534,1.696,1.494,1.626 +"Nov 11, 2019",1.942,2.528,2.67,2.61,2.404,2.777,2.773,2.982,2.715,2.392,2.578,2.517,2.861,2.435,2.12,2.568,3.991,2.105,2.565,2.557,1.574,1.605,1.753,1.367,1.266,2.319,1.613,1.589,1.483,1.21,1.411,1.943,1.635,1.435,2.44,1.409,2.115,2.249,1.708,2.237,2.174,1.639,1.633,1.746,1.562,1.675 +"Nov 18, 2019",1.97,2.547,2.674,2.65,2.404,2.786,2.793,2.984,2.67,2.415,2.604,2.554,2.806,2.461,2.158,2.589,3.952,2.138,2.565,2.58,1.624,1.722,1.908,1.412,1.3,2.064,1.654,1.612,1.515,1.199,1.525,1.976,1.669,1.465,2.402,1.456,2.133,2.285,1.752,2.24,2.183,1.665,1.651,1.774,1.594,1.718 +"Nov 25, 2019",1.999,2.57,2.7,2.658,2.45,2.789,2.83,3,2.697,2.445,2.604,2.6,2.876,2.488,2.181,2.601,3.956,2.149,2.566,2.602,1.668,1.817,1.937,1.459,1.333,2.065,1.696,1.636,1.563,1.226,1.689,2.026,1.682,1.48,2.416,1.498,2.142,2.299,1.772,2.241,2.191,1.672,1.66,1.777,1.6,1.726 +"Dec 02, 2019",2.029,2.596,2.742,2.664,2.46,2.795,2.854,3.046,2.85,2.463,2.612,2.569,2.9,2.524,2.205,2.622,3.992,2.168,2.573,2.638,1.696,1.806,1.992,1.459,1.335,2.068,1.764,1.668,1.59,1.23,1.683,2.048,1.702,1.491,2.434,1.548,2.153,2.311,1.79,2.259,2.194,1.709,1.695,1.801,1.649,1.767 +"Dec 09, 2019",2.023,2.6,2.74,2.668,2.453,2.806,2.84,3.018,2.867,2.471,2.621,2.561,2.882,2.531,2.232,2.629,4.027,2.176,2.597,2.645,1.682,1.771,1.987,1.389,1.329,2.083,1.739,1.674,1.546,1.221,1.686,2.025,1.704,1.474,2.471,1.565,2.162,2.291,1.81,2.278,2.203,1.726,1.711,1.819,1.668,1.779 +"Dec 16, 2019",2.021,2.607,2.736,2.669,2.453,2.773,2.874,3.042,2.825,2.481,2.616,2.586,2.903,2.539,2.224,2.641,3.993,2.195,2.602,2.654,1.675,1.722,1.967,1.376,1.325,2.081,1.757,1.642,1.573,1.225,1.575,2.023,1.713,1.477,2.465,1.565,2.164,2.306,1.817,2.281,2.199,1.737,1.731,1.817,1.672,1.78 +"Dec 23, 2019",2.023,2.621,2.752,2.68,2.481,2.786,2.889,3.008,2.854,2.493,2.615,2.636,2.908,2.555,2.23,2.657,4.013,2.21,2.609,2.659,1.667,1.701,1.961,1.355,1.329,2.105,1.761,1.589,1.569,1.231,1.575,2.054,1.713,1.452,2.483,1.553,2.166,2.308,1.805,2.283,2.206,1.74,1.732,1.825,1.675,1.785 +"Dec 30, 2019",2.011,2.616,2.739,2.666,2.475,2.784,2.872,3.072,2.803,2.497,2.619,2.649,2.907,2.555,2.232,2.646,4.001,2.202,2.605,2.65,1.653,1.686,1.944,1.327,1.341,2.113,1.741,1.581,1.559,1.222,1.565,2.028,1.713,1.452,2.496,1.548,2.161,2.312,1.805,2.282,2.196,1.742,1.737,1.83,1.678,1.774 +"Jan 06, 2020",2.005,2.611,2.741,2.662,2.48,2.759,2.883,3.086,2.817,2.49,2.637,2.628,2.89,2.557,2.206,2.637,4.003,2.195,2.587,2.654,1.644,1.667,1.935,1.319,1.341,2.103,1.725,1.571,1.574,1.229,1.518,2.052,1.716,1.451,2.519,1.535,2.16,2.315,1.78,2.28,2.208,1.738,1.722,1.842,1.683,1.772 +"Jan 13, 2020",2.01,2.619,2.756,2.692,2.487,2.767,2.881,3.126,2.852,2.498,2.646,2.622,2.898,2.574,2.205,2.64,3.979,2.193,2.607,2.66,1.64,1.648,1.912,1.306,1.337,2.106,1.724,1.575,1.581,1.227,1.49,2.045,1.711,1.452,2.538,1.54,2.181,2.374,1.798,2.294,2.215,1.735,1.713,1.854,1.681,1.766 +"Jan 20, 2020",2.004,2.618,2.751,2.66,2.474,2.789,2.889,3.136,2.835,2.494,2.644,2.593,2.897,2.569,2.217,2.649,4.002,2.211,2.598,2.661,1.633,1.599,1.908,1.279,1.354,2.104,1.735,1.578,1.563,1.214,1.476,2.045,1.714,1.452,2.539,1.544,2.183,2.363,1.805,2.316,2.21,1.734,1.713,1.852,1.679,1.769 +"Jan 27, 2020",1.994,2.607,2.744,2.675,2.468,2.778,2.891,3.098,2.807,2.473,2.643,2.624,2.901,2.523,2.209,2.649,4.006,2.225,2.593,2.667,1.621,1.557,1.891,1.272,1.354,2.109,1.735,1.554,1.567,1.202,1.46,2.042,1.714,1.439,2.544,1.533,2.184,2.368,1.805,2.321,2.207,1.733,1.711,1.85,1.683,1.766 +"Feb 03, 2020",1.988,2.603,2.735,2.619,2.478,2.78,2.875,3.123,2.792,2.464,2.638,2.652,2.9,2.522,2.181,2.655,3.914,2.309,2.572,2.671,1.614,1.539,1.89,1.26,1.354,2.109,1.725,1.54,1.567,1.195,1.432,2.045,1.708,1.439,2.538,1.524,2.194,2.373,1.805,2.309,2.228,1.729,1.708,1.849,1.679,1.757 +"Feb 10, 2020",1.986,2.603,2.731,2.629,2.469,2.766,2.863,3.103,2.811,2.469,2.639,2.681,2.884,2.534,2.177,2.652,3.968,2.307,2.576,2.663,1.611,1.533,1.892,1.251,1.358,2.108,1.724,1.53,1.568,1.194,1.424,2.043,1.71,1.443,2.53,1.522,2.178,2.378,1.803,2.311,2.19,1.724,1.705,1.849,1.67,1.753 +"Feb 17, 2020",1.981,2.602,2.726,2.591,2.484,2.748,2.845,3.118,2.848,2.463,2.637,2.696,2.877,2.533,2.16,2.663,3.942,2.307,2.572,2.704,1.606,1.521,1.868,1.235,1.352,2.095,1.722,1.522,1.566,1.194,1.417,2.05,1.691,1.441,2.51,1.524,2.171,2.372,1.786,2.31,2.184,1.716,1.694,1.842,1.665,1.744 +"Feb 24, 2020",1.977,2.596,2.717,2.597,2.487,2.753,2.845,3.129,2.789,2.465,2.639,2.662,2.882,2.533,2.172,2.652,3.938,2.219,2.573,2.711,1.601,1.511,1.86,1.25,1.352,2.095,1.721,1.521,1.566,1.199,1.393,2.031,1.692,1.431,2.516,1.514,2.171,2.372,1.782,2.31,2.185,1.715,1.692,1.836,1.667,1.745 +"Mar 02, 2020",1.968,2.596,2.722,2.614,2.476,2.772,2.826,3.108,2.818,2.456,2.635,2.676,2.877,2.52,2.171,2.657,3.905,2.306,2.554,2.702,1.585,1.5,1.81,1.233,1.351,2.09,1.711,1.503,1.56,1.201,1.368,2.023,1.693,1.391,2.488,1.497,2.172,2.369,1.783,2.309,2.178,1.718,1.707,1.832,1.658,1.743 +"Mar 09, 2020",1.962,2.593,2.713,2.58,2.474,2.772,2.825,3.065,2.814,2.454,2.632,2.648,2.871,2.52,2.16,2.656,3.914,2.291,2.562,2.701,1.568,1.474,1.774,1.229,1.337,2.09,1.688,1.471,1.555,1.148,1.33,2.039,1.683,1.367,2.479,1.477,2.164,2.353,1.746,2.31,2.179,1.709,1.698,1.825,1.643,1.742 +"Mar 16, 2020",1.929,2.572,2.675,2.557,2.458,2.739,2.821,3.052,2.691,2.449,2.606,2.726,2.86,2.491,2.146,2.621,3.894,2.195,2.549,2.671,1.539,1.467,1.678,1.198,1.322,2.096,1.684,1.438,1.524,1.13,1.297,1.991,1.662,1.325,2.494,1.452,2.144,2.331,1.695,2.307,2.162,1.692,1.662,1.818,1.642,1.739 +"Mar 23, 2020",1.902,2.561,2.672,2.539,2.447,2.718,2.844,3.052,2.685,2.451,2.602,2.644,2.837,2.47,2.188,2.591,3.88,2.169,2.506,2.649,1.504,1.431,1.629,1.151,1.322,2.081,1.655,1.411,1.459,1.114,1.278,1.988,1.632,1.326,2.438,1.383,2.133,2.305,1.657,2.349,2.141,1.663,1.611,1.813,1.64,1.714 +"Mar 30, 2020",1.869,2.544,2.651,2.456,2.435,2.683,2.798,3.007,2.749,2.436,2.599,2.62,2.832,2.447,2.177,2.58,3.889,2.164,2.473,2.632,1.46,1.387,1.537,1.133,1.28,2.078,1.664,1.362,1.41,1.054,1.179,1.957,1.608,1.265,2.41,1.353,2.119,2.318,1.629,2.344,2.123,1.616,1.581,1.699,1.612,1.645 +"Oct 05, 2020",1.772,2.518,2.66,2.779,2.539,2.706,2.645,2.853,2.631,2.369,2.536,2.505,2.927,2.373,2.17,2.557,3.837,2.273,2.456,2.548,1.368,1.319,1.553,1.087,1.187,1.702,1.589,1.223,1.336,1.085,1.155,1.764,1.512,1.232,2.235,1.258,1.966,2.046,1.596,2.15,2.059,1.536,1.614,1.64,1.392,1.574 +"Oct 12, 2020",1.777,2.515,2.652,2.741,2.477,2.715,2.654,2.851,2.661,2.373,2.512,2.532,2.831,2.378,2.185,2.553,3.723,2.272,2.456,2.563,1.384,1.332,1.601,1.103,1.215,1.666,1.577,1.25,1.346,1.078,1.174,1.776,1.516,1.241,2.241,1.264,1.998,2.132,1.591,2.222,2.077,1.531,1.616,1.615,1.391,1.564 +"Oct 19, 2020",1.79,2.516,2.657,2.703,2.49,2.714,2.68,2.846,2.66,2.364,2.513,2.515,2.83,2.388,2.151,2.556,3.724,2.274,2.458,2.575,1.398,1.362,1.616,1.107,1.22,1.742,1.583,1.27,1.346,1.089,1.171,1.786,1.54,1.251,2.271,1.272,2.021,2.167,1.627,2.258,2.087,1.54,1.647,1.626,1.384,1.57 +"Oct 26, 2020",1.801,2.528,2.67,2.696,2.526,2.704,2.713,2.845,2.675,2.375,2.512,2.592,2.832,2.398,2.155,2.57,3.721,2.281,2.473,2.6,1.412,1.351,1.619,1.132,1.251,1.749,1.585,1.298,1.36,1.093,1.188,1.804,1.557,1.26,2.268,1.297,2.016,2.152,1.629,2.261,2.076,1.539,1.62,1.637,1.393,1.577 +"Nov 02, 2020",1.821,2.531,2.679,2.714,2.522,2.719,2.736,2.862,2.662,2.369,2.505,2.552,2.833,2.413,2.138,2.581,3.739,2.293,2.48,2.614,1.433,1.361,1.651,1.138,1.248,1.766,1.642,1.325,1.377,1.131,1.196,1.818,1.564,1.27,2.28,1.32,2.033,2.158,1.659,2.267,2.091,1.555,1.621,1.658,1.407,1.608 +"Nov 09, 2020",1.837,2.549,2.696,2.73,2.53,2.729,2.767,2.869,2.674,2.383,2.515,2.564,2.837,2.42,2.166,2.606,3.775,2.316,2.505,2.637,1.45,1.371,1.673,1.145,1.276,1.786,1.63,1.318,1.413,1.139,1.196,1.863,1.583,1.284,2.317,1.327,2.054,2.233,1.678,2.268,2.105,1.592,1.675,1.704,1.422,1.634 +"Nov 16, 2020",1.848,2.561,2.704,2.739,2.534,2.734,2.778,2.837,2.691,2.403,2.52,2.577,2.837,2.437,2.195,2.613,3.777,2.331,2.51,2.639,1.462,1.382,1.695,1.15,1.277,1.784,1.639,1.329,1.421,1.175,1.2,1.92,1.587,1.285,2.33,1.351,2.06,2.251,1.686,2.279,2.104,1.63,1.685,1.728,1.515,1.689 +"Nov 23, 2020",1.855,2.568,2.716,2.764,2.544,2.727,2.786,2.833,2.719,2.409,2.52,2.606,2.864,2.445,2.185,2.614,3.774,2.337,2.502,2.651,1.467,1.382,1.723,1.151,1.273,1.787,1.65,1.347,1.416,1.176,1.202,1.921,1.584,1.295,2.331,1.351,2.072,2.254,1.722,2.284,2.108,1.635,1.689,1.729,1.524,1.692 +"Nov 30, 2020",1.859,2.581,2.733,2.771,2.577,2.734,2.803,2.862,2.736,2.42,2.525,2.648,2.876,2.436,2.219,2.615,3.796,2.328,2.509,2.65,1.471,1.383,1.725,1.15,1.275,1.809,1.664,1.351,1.424,1.176,1.204,1.931,1.591,1.299,2.355,1.353,2.083,2.287,1.746,2.285,2.11,1.645,1.701,1.731,1.536,1.704 +"Dec 07, 2020",1.882,2.614,2.775,2.815,2.588,2.775,2.856,2.888,2.791,2.45,2.542,2.62,2.901,2.486,2.237,2.651,3.848,2.36,2.543,2.679,1.485,1.391,1.744,1.155,1.286,1.822,1.66,1.359,1.445,1.184,1.212,1.976,1.596,1.316,2.384,1.369,2.121,2.317,1.787,2.307,2.143,1.672,1.754,1.791,1.488,1.751 +"Dec 14, 2020",1.9,2.641,2.807,2.892,2.593,2.796,2.891,2.875,2.817,2.472,2.567,2.645,2.969,2.505,2.258,2.681,3.9,2.38,2.576,2.718,1.498,1.407,1.754,1.161,1.307,1.844,1.671,1.369,1.452,1.185,1.219,2.025,1.613,1.328,2.411,1.382,2.129,2.382,1.795,2.319,2.144,1.689,1.769,1.826,1.5,1.777 +"Dec 21, 2020",1.942,2.686,2.838,2.938,2.623,2.821,2.922,2.89,2.838,2.526,2.605,2.71,3.025,2.554,2.308,2.726,3.936,2.417,2.633,2.75,1.54,1.457,1.805,1.218,1.38,1.874,1.702,1.398,1.516,1.203,1.261,2.084,1.639,1.359,2.458,1.411,2.157,2.458,1.823,2.343,2.16,1.716,1.795,1.887,1.505,1.805 +"Dec 28, 2020",1.97,2.711,2.873,2.963,2.657,2.836,2.957,2.954,2.9,2.541,2.603,2.705,3.058,2.576,2.322,2.756,3.942,2.438,2.664,2.781,1.567,1.465,1.877,1.222,1.397,1.92,1.722,1.444,1.54,1.211,1.267,2.107,1.656,1.378,2.474,1.439,2.173,2.463,1.831,2.368,2.18,1.735,1.827,1.915,1.512,1.82 +"Jan 04, 2021",2.012,2.753,2.91,2.947,2.68,2.939,2.975,3.01,2.972,2.572,2.635,2.763,3.083,2.603,2.349,2.815,4.027,2.482,2.738,2.837,1.612,1.525,1.902,1.26,1.448,2.245,1.745,1.477,1.567,1.227,1.278,2.158,1.687,1.443,2.686,1.488,2.212,2.519,1.88,2.382,2.218,1.784,1.881,1.983,1.556,1.834 +"Jan 11, 2021",2.081,2.818,2.975,3.009,2.728,3.018,3.058,3.037,3.025,2.629,2.698,2.823,3.128,2.662,2.404,2.891,4.135,2.56,2.831,2.881,1.686,1.59,1.968,1.321,1.581,2.245,1.791,1.572,1.664,1.329,1.317,2.219,1.754,1.479,2.738,1.573,2.275,2.594,1.94,2.401,2.299,1.86,1.946,2.028,1.658,1.902 +"Jan 18, 2021",2.183,2.881,3.045,3.056,2.818,3.089,3.139,3.066,3.093,2.696,2.792,2.947,3.183,2.729,2.456,2.942,4.159,2.599,2.906,2.915,1.817,1.717,2.083,1.49,1.783,2.274,1.876,1.744,1.799,1.474,1.509,2.316,1.886,1.667,2.789,1.69,2.348,2.663,2.03,2.451,2.374,1.934,2.052,2.088,1.703,1.984 +"Jan 25, 2021",2.197,2.897,3.061,3.072,2.83,3.09,3.146,3.064,3.143,2.708,2.796,2.925,3.205,2.745,2.472,2.964,4.143,2.637,2.918,2.944,1.832,1.716,2.093,1.501,1.691,2.258,1.867,1.754,1.807,1.466,1.624,2.345,1.931,1.69,2.708,1.744,2.358,2.66,2.042,2.468,2.385,1.935,2.02,2.125,1.718,1.987 +"Feb 01, 2021",2.206,2.924,3.086,3.095,2.868,3.115,3.161,3.183,3.157,2.741,2.84,2.953,3.206,2.773,2.505,2.98,4.161,2.647,2.949,2.945,1.836,1.722,2.104,1.484,1.699,2.297,1.876,1.758,1.815,1.459,1.547,2.369,1.93,1.668,2.731,1.764,2.366,2.666,2.037,2.496,2.391,1.934,2.024,2.119,1.709,2.004 +"Feb 08, 2021",2.224,2.93,3.091,3.097,2.891,3.106,3.172,3.131,3.156,2.748,2.85,2.957,3.22,2.779,2.511,2.989,4.145,2.675,2.934,2.979,1.86,1.76,2.156,1.493,1.729,2.354,1.899,1.765,1.854,1.533,1.547,2.383,1.972,1.679,2.744,1.786,2.371,2.678,2.072,2.506,2.378,1.963,2.033,2.141,1.773,2.003 +"Feb 15, 2021",2.295,2.952,3.123,3.117,2.915,3.136,3.228,3.109,3.189,2.777,2.846,2.965,3.239,2.803,2.555,2.99,4.154,2.691,2.945,2.954,1.959,1.889,2.221,1.723,1.928,2.383,1.903,1.853,1.991,1.695,1.683,2.423,2.122,1.739,2.756,1.88,2.423,2.705,2.184,2.514,2.423,2.039,2.137,2.164,1.851,2.09 +"Feb 22, 2021",2.492,3.026,3.204,3.266,2.998,3.168,3.303,3.256,3.232,2.823,2.889,3.084,3.322,2.859,2.558,3.088,4.211,2.855,3.029,3.035,2.226,2.164,2.457,2.067,2.281,2.47,2.035,2.185,2.426,2.047,1.821,2.485,2.379,2.069,2.856,2.19,2.626,2.83,2.698,2.601,2.528,2.169,2.276,2.215,2.038,2.096 +"Mar 01, 2021",2.498,3.045,3.212,3.212,3.005,3.201,3.328,3.359,3.246,2.852,2.945,3.11,3.36,2.882,2.572,3.105,4.224,2.842,3.043,3.076,2.221,2.087,2.394,1.974,2.18,2.481,2.03,2.171,2.426,1.991,1.855,2.468,2.426,2.108,2.863,2.283,2.653,2.841,2.738,2.615,2.565,2.183,2.273,2.219,2.085,2.1 +"Mar 08, 2021",2.415,3.045,3.223,3.22,3.018,3.201,3.336,3.322,3.284,2.861,2.971,3.112,3.397,2.886,2.58,3.083,4.244,2.772,3.009,3.092,2.091,2.005,2.338,1.765,2.045,2.466,2.035,1.982,2.22,1.788,1.743,2.492,2.334,1.923,2.817,2.046,2.597,2.846,2.496,2.606,2.57,2.134,2.178,2.236,2.031,2.122 +"Mar 15, 2021",2.358,3.039,3.219,3.2,3.014,3.182,3.366,3.226,3.269,2.843,2.975,3.076,3.375,2.863,2.569,3.089,4.233,2.763,3.008,3.125,2.007,1.897,2.221,1.639,1.903,2.472,2.006,1.892,2.106,1.639,1.651,2.444,2.253,1.853,2.801,1.987,2.514,2.839,2.168,2.602,2.56,2.105,2.157,2.22,1.988,2.078 +"Mar 22, 2021",2.322,3.03,3.209,3.18,2.998,3.176,3.366,3.171,3.266,2.82,2.993,3.075,3.362,2.83,2.55,3.096,4.233,2.759,2.989,3.179,1.961,1.854,2.161,1.559,1.848,2.451,1.997,1.859,2.035,1.589,1.627,2.415,2.129,1.802,2.79,1.93,2.482,2.779,2.129,2.603,2.525,2.055,2.095,2.218,1.916,2.069 +"Mar 29, 2021",2.295,3.014,3.195,3.182,2.974,3.159,3.39,3.041,3.257,2.805,2.997,3.05,3.391,2.819,2.535,3.082,4.222,2.75,2.975,3.162,1.929,1.814,2.118,1.542,1.824,2.473,2.025,1.843,1.966,1.573,1.591,2.365,2.08,1.787,2.792,1.871,2.462,2.773,2.065,2.603,2.516,2.025,2.056,2.209,1.89,2.029 +"Oct 04, 2021",2.59,3.256,3.375,3.548,3.069,3.453,3.38,3.472,3.441,3.129,3.091,3.37,3.524,3.162,2.893,3.295,4.799,2.959,3.282,3.241,2.232,2.122,2.448,1.928,2.154,2.55,2.393,2.149,2.167,2.034,1.861,2.781,2.508,2.09,3.063,2.129,2.752,3.228,2.31,2.831,2.826,2.322,2.441,2.426,2.045,2.561 +"Oct 11, 2021",2.657,3.319,3.457,3.583,3.162,3.518,3.518,3.485,3.506,3.179,3.146,3.436,3.623,3.238,2.897,3.361,4.852,3.048,3.342,3.301,2.305,2.172,2.472,2,2.224,2.629,2.435,2.254,2.336,2.094,1.964,2.842,2.579,2.125,3.099,2.241,2.825,3.256,2.42,2.885,2.899,2.402,2.521,2.541,2.101,2.673 +"Oct 18, 2021",2.691,3.357,3.482,3.613,3.194,3.561,3.511,3.58,3.537,3.241,3.266,3.544,3.675,3.292,2.953,3.381,4.88,3.048,3.354,3.353,2.33,2.175,2.517,2.033,2.238,2.672,2.486,2.309,2.355,2.1,2.004,2.635,2.582,2.177,3.144,2.256,2.845,3.229,2.457,2.889,2.938,2.423,2.543,2.579,2.116,2.683 +"Oct 25, 2021",2.712,3.382,3.503,3.628,3.27,3.561,3.526,3.58,3.529,3.276,3.281,3.523,3.636,3.334,2.999,3.393,4.771,3.075,3.36,3.361,2.351,2.181,2.55,2.086,2.276,2.727,2.464,2.333,2.388,2.099,2.013,2.659,2.607,2.205,3.142,2.307,2.851,3.249,2.464,2.897,2.921,2.439,2.524,2.627,2.132,2.691 +"Nov 01, 2021",2.722,3.382,3.506,3.639,3.235,3.552,3.558,3.564,3.538,3.258,3.288,3.576,3.609,3.323,2.958,3.412,4.805,3.091,3.379,3.377,2.368,2.275,2.572,2.032,2.286,2.737,2.462,2.339,2.364,2.105,2.017,2.713,2.627,2.212,3.177,2.317,2.872,3.285,2.475,2.912,2.955,2.488,2.556,2.665,2.219,2.722 +"Nov 08, 2021",2.727,3.406,3.54,3.661,3.263,3.597,3.578,3.604,3.599,3.285,3.287,3.556,3.633,3.367,2.963,3.422,4.809,3.093,3.367,3.425,2.369,2.233,2.583,2.021,2.275,2.739,2.475,2.341,2.391,2.123,2.017,2.688,2.626,2.214,3.186,2.348,2.873,3.275,2.479,2.926,2.941,2.492,2.582,2.627,2.226,2.695 +"Nov 15, 2021",2.733,3.396,3.533,3.633,3.276,3.595,3.581,3.63,3.568,3.271,3.32,3.449,3.662,3.358,2.962,3.42,4.851,3.079,3.36,3.445,2.377,2.237,2.6,2.012,2.283,2.745,2.473,2.352,2.42,2.112,2.028,2.718,2.638,2.209,3.181,2.339,2.882,3.282,2.48,2.945,2.962,2.509,2.596,2.673,2.251,2.695 +"Nov 22, 2021",2.722,3.383,3.506,3.604,3.247,3.574,3.539,3.646,3.552,3.263,3.303,3.458,3.642,3.347,2.948,3.414,4.808,3.065,3.354,3.431,2.362,2.234,2.598,1.979,2.24,2.743,2.45,2.33,2.387,2.11,2.027,2.687,2.643,2.195,3.166,2.318,2.879,3.284,2.492,2.95,2.945,2.489,2.566,2.654,2.239,2.648 +"Nov 29, 2021",2.717,3.385,3.516,3.611,3.251,3.609,3.566,3.776,3.507,3.256,3.3,3.446,3.634,3.341,2.939,3.421,4.788,3.064,3.376,3.425,2.358,2.219,2.592,1.97,2.239,2.743,2.444,2.35,2.387,2.103,2.025,2.681,2.642,2.195,3.161,2.311,2.88,3.275,2.482,2.95,2.95,2.486,2.567,2.656,2.235,2.626 +"Dec 06, 2021",2.711,3.378,3.503,3.587,3.211,3.583,3.586,3.775,3.495,3.255,3.287,3.435,3.6,3.34,2.941,3.41,4.849,3.042,3.34,3.442,2.346,2.192,2.598,1.933,2.202,2.749,2.446,2.328,2.377,2.008,2.024,2.684,2.653,2.152,3.177,2.293,2.871,3.271,2.491,2.953,2.915,2.488,2.562,2.679,2.241,2.613 +"Dec 13, 2021",2.696,3.365,3.497,3.578,3.222,3.563,3.568,3.772,3.503,3.232,3.285,3.434,3.594,3.323,2.909,3.401,4.808,3.047,3.322,3.444,2.339,2.164,2.6,1.927,2.185,2.799,2.443,2.333,2.372,1.99,2.021,2.705,2.596,2.151,3.218,2.285,2.865,3.272,2.492,2.957,2.898,2.472,2.528,2.675,2.242,2.59 +"Dec 20, 2021",2.699,3.375,3.511,3.587,3.26,3.529,3.624,3.722,3.492,3.245,3.283,3.396,3.58,3.343,2.923,3.404,4.809,3.041,3.328,3.452,2.338,2.159,2.629,1.912,2.181,2.798,2.439,2.343,2.378,1.983,2.021,2.696,2.613,2.153,3.219,2.278,2.858,3.272,2.486,2.946,2.891,2.477,2.536,2.676,2.249,2.59 +"Dec 27, 2021",2.702,3.38,3.513,3.569,3.248,3.518,3.661,3.697,3.491,3.244,3.283,3.381,3.567,3.351,2.913,3.422,4.845,3.042,3.363,3.446,2.339,2.159,2.632,1.901,2.18,2.801,2.437,2.345,2.379,1.98,2.02,2.699,2.589,2.155,3.23,2.287,2.862,3.278,2.491,2.946,2.896,2.488,2.542,2.685,2.27,2.598 +"Jan 03, 2022",2.701,3.368,3.509,3.625,3.247,3.512,3.627,3.701,3.474,3.235,3.281,3.383,3.595,3.335,2.904,3.396,4.814,3.052,3.317,3.437,2.339,2.166,2.605,1.898,2.18,2.795,2.429,2.351,2.37,1.985,2.02,2.691,2.6,2.155,3.256,2.279,2.857,3.27,2.482,2.946,2.891,2.492,2.55,2.665,2.286,2.592 +"Jan 10, 2022",2.705,3.373,3.527,3.596,3.264,3.505,3.665,3.709,3.533,3.235,3.301,3.39,3.577,3.329,2.9,3.397,4.815,3.057,3.324,3.429,2.346,2.171,2.606,1.886,2.187,2.794,2.443,2.369,2.388,1.982,2.026,2.685,2.616,2.171,3.254,2.293,2.859,3.268,2.478,2.961,2.892,2.503,2.561,2.661,2.299,2.63 +"Jan 17, 2022",2.724,3.392,3.559,3.65,3.297,3.521,3.705,3.716,3.548,3.246,3.308,3.426,3.582,3.35,2.905,3.412,4.806,3.085,3.325,3.445,2.364,2.208,2.63,1.907,2.2,2.803,2.459,2.375,2.397,2.023,2.097,2.708,2.626,2.174,3.257,2.301,2.88,3.337,2.481,3.012,2.892,2.505,2.554,2.67,2.302,2.648 +"Jan 24, 2022",2.744,3.414,3.593,3.676,3.316,3.528,3.773,3.759,3.58,3.279,3.329,3.455,3.591,3.402,2.913,3.408,4.821,3.094,3.304,3.461,2.382,2.217,2.644,1.919,2.21,2.812,2.477,2.415,2.408,2.026,2.11,2.728,2.629,2.215,3.265,2.339,2.885,3.341,2.485,3.014,2.9,2.518,2.573,2.682,2.312,2.649 +"Jan 31, 2022",2.775,3.45,3.629,3.763,3.337,3.58,3.777,3.768,3.619,3.329,3.365,3.502,3.619,3.454,2.964,3.428,4.848,3.11,3.333,3.472,2.413,2.249,2.699,1.944,2.221,2.823,2.502,2.44,2.434,2.042,2.135,2.745,2.669,2.244,3.271,2.387,2.895,3.35,2.506,3.028,2.901,2.525,2.581,2.688,2.313,2.673 +"Feb 07, 2022",2.826,3.518,3.708,3.847,3.405,3.625,3.881,3.796,3.71,3.382,3.465,3.529,3.657,3.499,3.028,3.502,4.911,3.12,3.434,3.551,2.463,2.354,2.775,1.986,2.259,2.838,2.542,2.461,2.507,2.061,2.136,2.778,2.715,2.256,3.293,2.44,2.935,3.381,2.568,3.073,2.931,2.586,2.623,2.731,2.423,2.69 +"Feb 14, 2022",2.831,3.522,3.699,3.821,3.392,3.646,3.872,3.853,3.683,3.393,3.491,3.552,3.653,3.526,3.015,3.512,4.911,3.117,3.443,3.576,2.467,2.382,2.786,1.985,2.26,2.838,2.54,2.456,2.507,2.06,2.139,2.792,2.72,2.257,3.319,2.448,2.947,3.39,2.572,3.074,2.951,2.591,2.623,2.738,2.436,2.694 +"Feb 21, 2022",2.84,3.539,3.728,3.853,3.441,3.663,3.909,3.865,3.687,3.401,3.5,3.558,3.681,3.525,3.039,3.524,4.924,3.126,3.451,3.595,2.474,2.387,2.771,1.993,2.267,2.831,2.537,2.458,2.522,2.136,2.139,2.821,2.708,2.26,3.327,2.457,2.959,3.4,2.595,3.087,2.96,2.595,2.634,2.737,2.432,2.697 +"Feb 28, 2022",2.887,3.61,3.817,3.931,3.521,3.773,3.99,3.933,3.793,3.478,3.585,3.649,3.747,3.598,3.122,3.565,4.951,3.149,3.491,3.654,2.516,2.413,2.792,2.046,2.278,2.849,2.564,2.538,2.562,2.17,2.189,2.875,2.738,2.295,3.329,2.524,3.007,3.45,2.683,3.133,2.98,2.608,2.649,2.746,2.441,2.72 +"Mar 07, 2022",2.993,3.725,3.949,4.169,3.65,3.882,4.104,4.05,3.875,3.59,3.654,3.778,3.855,3.705,3.237,3.671,5.051,3.255,3.604,3.757,2.608,2.492,2.868,2.147,2.422,2.92,2.777,2.624,2.65,2.31,2.236,2.963,2.829,2.344,3.362,2.563,3.103,3.478,2.844,3.183,3.087,2.705,2.786,2.84,2.485,2.813 +"Mar 14, 2022",3.019,3.761,4,4.14,3.707,3.935,4.141,4.095,4.01,3.639,3.701,3.78,4.002,3.751,3.292,3.681,5.091,3.339,3.573,3.751,2.623,2.504,2.901,2.186,2.426,3.023,2.74,2.601,2.645,2.256,2.274,2.938,2.866,2.405,3.385,2.631,3.165,3.5,2.877,3.214,3.197,2.724,2.803,2.87,2.514,2.793 +"Mar 21, 2022",2.975,3.701,3.923,4.091,3.665,3.846,4.053,4.058,3.898,3.572,3.659,3.702,3.93,3.687,3.225,3.637,5.075,3.315,3.528,3.699,2.59,2.419,2.866,2.114,2.334,3.026,2.748,2.598,2.596,2.11,2.268,2.944,2.865,2.394,3.351,2.647,3.142,3.492,2.782,3.216,3.198,2.713,2.811,2.818,2.501,2.778 +"Mar 28, 2022",2.983,3.728,3.984,4.22,3.737,3.908,4.124,4.044,3.894,3.59,3.66,3.747,3.959,3.705,3.241,3.642,5.021,3.323,3.521,3.708,2.595,2.425,2.807,2.146,2.426,3.018,2.751,2.605,2.594,2.191,2.268,2.954,2.865,2.393,3.363,2.619,3.128,3.485,2.756,3.214,3.183,2.698,2.775,2.846,2.492,2.76 +"Oct 03, 2022",2.661,3.408,3.595,3.683,3.314,3.61,3.811,3.67,3.479,3.246,3.469,3.414,3.416,3.337,2.972,3.426,4.687,3.092,3.428,3.366,2.241,2.061,2.516,1.924,2.038,2.451,2.475,2.124,2.319,1.876,1.886,2.684,2.555,2.1,3.394,2.074,2.9,3.298,2.408,3.109,2.944,2.4,2.416,2.554,2.268,2.522 +"Oct 10, 2022",2.665,3.408,3.587,3.697,3.295,3.602,3.785,3.646,3.47,3.278,3.48,3.506,3.437,3.375,2.975,3.4,4.627,3.099,3.362,3.363,2.243,2.071,2.521,1.924,2.061,2.448,2.506,2.145,2.311,1.869,1.883,2.693,2.58,2.121,3.24,2.083,2.904,3.321,2.387,3.114,2.951,2.418,2.431,2.53,2.314,2.523 +"Oct 17, 2022",2.664,3.41,3.6,3.658,3.336,3.622,3.798,3.869,3.477,3.276,3.492,3.521,3.472,3.351,2.977,3.395,4.606,3.089,3.363,3.358,2.24,2.078,2.521,1.934,2.056,2.463,2.485,2.16,2.319,1.866,1.883,2.636,2.588,2.114,3.219,2.077,2.897,3.312,2.397,3.102,2.938,2.418,2.424,2.509,2.335,2.509 +"Oct 24, 2022",2.66,3.399,3.592,3.671,3.329,3.592,3.792,3.883,3.474,3.256,3.509,3.452,3.435,3.364,2.94,3.396,4.599,3.078,3.383,3.349,2.239,2.07,2.521,1.941,2.046,2.446,2.497,2.15,2.312,1.867,1.884,2.656,2.541,2.098,3.22,2.072,2.896,3.312,2.42,3.092,2.93,2.414,2.407,2.525,2.329,2.524 +"Oct 31, 2022",2.666,3.404,3.607,3.697,3.342,3.6,3.809,3.842,3.493,3.269,3.479,3.411,3.44,3.376,2.968,3.375,4.595,3.069,3.344,3.339,2.244,2.069,2.518,1.937,2.046,2.517,2.489,2.153,2.314,1.866,1.887,2.655,2.543,2.117,3.26,2.07,2.903,3.335,2.419,3.091,2.938,2.42,2.402,2.524,2.336,2.567 +"Nov 07, 2022",2.675,3.414,3.622,3.726,3.354,3.611,3.798,3.84,3.544,3.273,3.479,3.435,3.435,3.394,2.957,3.389,4.635,3.077,3.357,3.353,2.254,2.071,2.57,1.944,2.058,2.511,2.49,2.175,2.321,1.867,1.888,2.66,2.538,2.076,3.262,2.075,2.912,3.347,2.434,3.092,2.946,2.426,2.411,2.518,2.349,2.571 +"Nov 14, 2022",2.667,3.404,3.61,3.727,3.352,3.539,3.81,3.833,3.514,3.27,3.478,3.412,3.411,3.401,2.951,3.378,4.634,3.083,3.356,3.321,2.259,2.081,2.571,1.95,2.062,2.56,2.496,2.181,2.33,1.866,1.938,2.668,2.537,2.059,3.232,2.082,2.878,3.236,2.452,3.115,2.937,2.406,2.418,2.544,2.287,2.519 +"Nov 21, 2022",2.678,3.403,3.578,3.729,3.328,3.558,3.719,3.811,3.486,3.29,3.509,3.447,3.402,3.409,2.972,3.376,4.653,3.048,3.358,3.342,2.265,2.097,2.587,1.949,2.062,2.571,2.491,2.188,2.343,1.895,1.94,2.742,2.566,2.069,3.223,2.074,2.923,3.375,2.474,3.094,2.941,2.427,2.445,2.597,2.285,2.531 +"Nov 28, 2022",2.679,3.395,3.587,3.708,3.301,3.56,3.791,3.788,3.485,3.266,3.455,3.438,3.426,3.39,2.949,3.371,4.626,3.029,3.357,3.331,2.267,2.096,2.587,1.948,2.069,2.569,2.492,2.186,2.344,1.899,1.92,2.692,2.528,2.085,3.264,2.074,2.919,3.363,2.474,3.082,2.942,2.433,2.459,2.596,2.288,2.517 +"Dec 05, 2022",2.678,3.397,3.579,3.695,3.306,3.549,3.77,3.823,3.481,3.267,3.439,3.467,3.396,3.388,2.943,3.384,4.654,3.046,3.365,3.333,2.267,2.095,2.591,1.953,2.057,2.537,2.493,2.195,2.342,1.862,1.922,2.702,2.519,2.106,3.278,2.077,2.926,3.392,2.489,3.09,2.924,2.45,2.458,2.621,2.319,2.558 +"Dec 12, 2022",2.675,3.37,3.551,3.668,3.265,3.538,3.752,3.804,3.435,3.235,3.425,3.438,3.362,3.362,2.911,3.367,4.665,3.036,3.353,3.305,2.271,2.095,2.602,1.945,2.069,2.532,2.484,2.21,2.346,1.856,1.924,2.689,2.571,2.052,3.269,2.097,2.915,3.362,2.487,3.093,2.909,2.448,2.439,2.691,2.312,2.518 +"Dec 19, 2022",2.679,3.369,3.548,3.683,3.276,3.532,3.735,3.812,3.423,3.237,3.424,3.385,3.349,3.378,2.913,3.364,4.618,3.021,3.369,3.301,2.283,2.119,2.585,1.943,2.075,2.526,2.475,2.217,2.341,1.874,1.933,2.695,2.566,2.073,3.277,2.179,2.891,3.18,2.487,3.099,2.919,2.452,2.444,2.671,2.314,2.572 +"Dec 26, 2022",2.679,3.367,3.537,3.687,3.248,3.52,3.721,3.826,3.419,3.236,3.419,3.376,3.338,3.387,2.902,3.367,4.596,3.033,3.38,3.294,2.288,2.124,2.607,1.946,2.079,2.525,2.478,2.218,2.341,1.881,1.933,2.702,2.586,2.09,3.277,2.176,2.899,3.177,2.522,3.095,2.922,2.462,2.478,2.647,2.308,2.58 +"Jan 02, 2023",2.69,3.374,3.558,3.714,3.264,3.511,3.735,3.719,3.476,3.233,3.408,3.405,3.36,3.362,2.913,3.384,4.656,3.033,3.385,3.335,2.291,2.142,2.611,1.942,2.08,2.537,2.482,2.222,2.343,1.853,1.963,2.716,2.589,2.103,3.244,2.175,2.944,3.396,2.585,3.104,2.912,2.525,2.511,2.665,2.449,2.582 +"Jan 09, 2023",2.693,3.374,3.549,3.719,3.284,3.479,3.748,3.725,3.428,3.245,3.462,3.442,3.351,3.377,2.916,3.369,4.625,3.033,3.35,3.33,2.292,2.134,2.611,1.94,2.1,2.528,2.479,2.226,2.338,1.857,1.961,2.731,2.58,2.09,3.28,2.166,2.953,3.392,2.613,3.12,2.915,2.506,2.494,2.666,2.425,2.541 +"Jan 16, 2023",2.695,3.379,3.555,3.764,3.296,3.478,3.748,3.671,3.417,3.251,3.408,3.405,3.445,3.388,2.925,3.373,4.63,3.041,3.349,3.338,2.293,2.142,2.602,1.937,2.09,2.528,2.481,2.224,2.344,1.865,1.972,2.736,2.586,2.082,3.264,2.168,2.954,3.392,2.617,3.118,2.914,2.509,2.493,2.671,2.433,2.54 +"Jan 23, 2023",2.705,3.394,3.579,3.817,3.329,3.513,3.733,3.703,3.449,3.259,3.423,3.421,3.344,3.393,2.952,3.386,4.657,3.057,3.348,3.359,2.301,2.144,2.611,1.942,2.11,2.535,2.487,2.236,2.362,1.871,1.974,2.761,2.598,2.12,3.267,2.172,2.959,3.401,2.63,3.118,2.918,2.516,2.505,2.67,2.431,2.563 +"Jan 30, 2023",2.71,3.421,3.608,3.857,3.359,3.55,3.763,3.77,3.456,3.293,3.425,3.43,3.394,3.431,2.981,3.399,4.671,3.083,3.341,3.384,2.3,2.144,2.615,1.941,2.099,2.534,2.487,2.233,2.363,1.871,1.974,2.726,2.622,2.125,3.267,2.173,2.964,3.407,2.631,3.117,2.925,2.523,2.52,2.707,2.407,2.586 +"Feb 06, 2023",2.708,3.412,3.6,3.813,3.354,3.543,3.778,3.725,3.451,3.285,3.43,3.44,3.352,3.421,2.977,3.389,4.679,3.071,3.337,3.372,2.298,2.144,2.61,1.94,2.092,2.557,2.48,2.228,2.355,1.864,1.974,2.712,2.601,2.134,3.271,2.173,2.964,3.402,2.638,3.117,2.923,2.532,2.533,2.719,2.408,2.601 +"Feb 13, 2023",2.706,3.405,3.59,3.819,3.345,3.535,3.774,3.646,3.424,3.284,3.427,3.43,3.345,3.427,2.975,3.378,4.673,3.068,3.313,3.37,2.297,2.143,2.605,1.938,2.093,2.557,2.477,2.227,2.354,1.882,1.974,2.711,2.606,2.132,3.275,2.171,2.962,3.405,2.637,3.117,2.917,2.553,2.538,2.721,2.439,2.681 +"Feb 20, 2023",2.702,3.397,3.582,3.796,3.344,3.535,3.765,3.643,3.415,3.274,3.423,3.442,3.339,3.413,2.967,3.375,4.664,3.066,3.31,3.365,2.294,2.142,2.603,1.936,2.092,2.556,2.472,2.219,2.345,1.86,1.974,2.719,2.61,2.132,3.273,2.167,2.954,3.401,2.609,3.118,2.916,2.555,2.533,2.768,2.434,2.654 +"Feb 27, 2023",2.696,3.395,3.587,3.796,3.34,3.534,3.765,3.608,3.455,3.267,3.422,3.419,3.337,3.404,2.96,3.371,4.662,3.071,3.302,3.361,2.288,2.114,2.601,1.936,2.088,2.555,2.471,2.223,2.348,1.856,1.953,2.714,2.607,2.127,3.27,2.164,2.948,3.4,2.588,3.118,2.914,2.547,2.528,2.769,2.435,2.655 +"Mar 06, 2023",2.694,3.4,3.603,3.845,3.347,3.557,3.751,3.62,3.472,3.275,3.427,3.453,3.347,3.412,2.968,3.363,4.66,3.067,3.289,3.356,2.286,2.082,2.61,1.934,2.071,2.549,2.475,2.223,2.344,1.853,1.952,2.708,2.608,2.147,3.262,2.162,2.945,3.413,2.564,3.117,2.914,2.547,2.508,2.756,2.462,2.642 +"Mar 13, 2023",2.691,3.394,3.587,3.815,3.342,3.531,3.738,3.605,3.47,3.267,3.447,3.411,3.336,3.41,2.96,3.366,4.693,3.054,3.291,3.363,2.281,2.081,2.605,1.929,2.069,2.546,2.471,2.209,2.341,1.852,1.952,2.719,2.608,2.146,3.264,2.161,2.938,3.424,2.531,3.108,2.918,2.536,2.509,2.762,2.426,2.642 +"Mar 20, 2023",2.68,3.378,3.574,3.779,3.323,3.536,3.737,3.608,3.455,3.248,3.441,3.405,3.288,3.392,2.935,3.354,4.659,3.038,3.289,3.347,2.272,2.054,2.603,1.923,2.057,2.548,2.471,2.202,2.309,1.847,1.948,2.71,2.6,2.149,3.262,2.16,2.929,3.419,2.534,3.094,2.905,2.526,2.502,2.737,2.417,2.646 +"Mar 27, 2023",2.671,3.36,3.554,3.79,3.276,3.513,3.716,3.579,3.439,3.226,3.451,3.394,3.247,3.361,2.922,3.343,4.657,3.031,3.279,3.331,2.268,2.051,2.599,1.929,2.039,2.537,2.467,2.199,2.308,1.845,1.947,2.701,2.604,2.147,3.226,2.161,2.925,3.413,2.507,3.094,2.914,2.517,2.489,2.708,2.419,2.644 diff --git a/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/README.md b/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/README.md index a9ae7d17..ac9b9e99 100644 --- a/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/README.md +++ b/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/README.md @@ -1,17 +1,20 @@ Electricity -* https://www.eia.gov/electricity/data/browser/#/topic/7?agg=1,0&geo=g0fvvvvvvvvvo&endsec=8&linechart=ELEC.PRICE.US-RES.A&columnchart=ELEC.PRICE.US-RES.A&map=ELEC.PRICE.US-RES.A&freq=A&start=2020&end=2021&ctype=linechart<ype=pin&rtype=s&pin=&rse=0&maptype=0 +* https://www.eia.gov/electricity/data/browser/#/topic/7?agg=1,0&geo=g0fvvvvvvvvvo&endsec=8&linechart=ELEC.PRICE.US-RES.A&columnchart=ELEC.PRICE.US-RES.A&map=ELEC.PRICE.US-RES.A&freq=A&start=2001&end=2022&ctype=linechart<ype=pin&rtype=s&maptype=0&rse=0&pin= * Download > Table (CSV) link * Average_retail_price_of_electricity.csv Natural Gas * https://www.eia.gov/dnav/ng/ng_pri_sum_a_EPG0_PRS_DMcf_a.htm -* Download Series History link > Convert second tab (Data 1) to CSV +* Download Series History link +* Convert second tab (Data 1) to CSV * NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv Fuel Oil * https://www.eia.gov/dnav/pet/xls/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.xls +* Convert second tab (Data 1) to CSV * PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv Propane * https://www.eia.gov/dnav/pet/xls/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.xls +* Convert second tab (Data 1) to CSV * PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv diff --git a/example_files/resources/hpxml-measures/ReportUtilityBills/resources/util.rb b/example_files/resources/hpxml-measures/ReportUtilityBills/resources/util.rb index a6954e34..f88b9852 100644 --- a/example_files/resources/hpxml-measures/ReportUtilityBills/resources/util.rb +++ b/example_files/resources/hpxml-measures/ReportUtilityBills/resources/util.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true class Fuel @@ -39,14 +44,15 @@ def initialize() @annual_fixed_charge = 0.0 @annual_total = 0.0 - @monthly_energy_charge = [0] * 12 - @monthly_fixed_charge = [0] * 12 + @monthly_energy_charge = [0.0] * 12 + @monthly_fixed_charge = [0.0] * 12 + @monthly_total = [0.0] * 12 @monthly_production_credit = [0] * 12 @annual_production_credit = 0.0 end attr_accessor(:annual_energy_charge, :annual_fixed_charge, :annual_total, - :monthly_energy_charge, :monthly_fixed_charge, + :monthly_energy_charge, :monthly_fixed_charge, :monthly_total, :monthly_production_credit, :annual_production_credit) end @@ -59,10 +65,12 @@ def self.simple(fuel_type, header, fuel_time_series, is_production, rate, bill, monthly_fuel_cost = [0] * 12 for month in 0..fuel_time_series.size - 1 + month_ix = month + header.sim_begin_month - 1 + if is_production && fuel_type == FT::Elec && rate.feed_in_tariff_rate - monthly_fuel_cost[month] = fuel_time_series[month] * rate.feed_in_tariff_rate + monthly_fuel_cost[month_ix] = fuel_time_series[month] * rate.feed_in_tariff_rate else - monthly_fuel_cost[month] = fuel_time_series[month] * rate.flatratebuy + monthly_fuel_cost[month_ix] = fuel_time_series[month] * rate.flatratebuy end if fuel_type == FT::Elec @@ -74,13 +82,13 @@ def self.simple(fuel_type, header, fuel_time_series, is_production, rate, bill, end if is_production - bill.monthly_production_credit[month] = monthly_fuel_cost[month] + bill.monthly_production_credit[month_ix] = monthly_fuel_cost[month_ix] else - bill.monthly_energy_charge[month] = monthly_fuel_cost[month] + bill.monthly_energy_charge[month_ix] = monthly_fuel_cost[month_ix] if not rate.fixedmonthlycharge.nil? # If the run period doesn't span the entire month, prorate the fixed charges - prorate_fraction = calculate_monthly_prorate(header, month + 1) - bill.monthly_fixed_charge[month] = rate.fixedmonthlycharge * prorate_fraction + prorate_fraction = calculate_monthly_prorate(header, month_ix + 1) + bill.monthly_fixed_charge[month_ix] = rate.fixedmonthlycharge * prorate_fraction end end end @@ -350,6 +358,7 @@ def self.detailed_electric(header, fuels, rate, bill) annual_total_charge_with_pv = annual_payments + end_of_year_bill_credit - excess_sellback bill.annual_production_credit = annual_total_charge - annual_total_charge_with_pv + for m in 0..11 bill.monthly_fixed_charge[m] += monthly_min_charges[m] end diff --git a/example_files/resources/hpxml-measures/ReportUtilityBills/tests/JacksonElectricMemberCorp-ResidentialSeniorCitizenLowIncomeAssistance.json b/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Detailed Rate.json similarity index 100% rename from example_files/resources/hpxml-measures/ReportUtilityBills/tests/JacksonElectricMemberCorp-ResidentialSeniorCitizenLowIncomeAssistance.json rename to example_files/resources/hpxml-measures/ReportUtilityBills/tests/Detailed Rate.json diff --git a/example_files/resources/hpxml-measures/ReportUtilityBills/tests/test_report_utility_bills.rb b/example_files/resources/hpxml-measures/ReportUtilityBills/tests/test_report_utility_bills.rb new file mode 100644 index 00000000..b3401d42 --- /dev/null +++ b/example_files/resources/hpxml-measures/ReportUtilityBills/tests/test_report_utility_bills.rb @@ -0,0 +1,1308 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + +# frozen_string_literal: true + +require 'oga' +require_relative '../../HPXMLtoOpenStudio/resources/utility_bills' +require_relative '../../HPXMLtoOpenStudio/resources/constants' +require_relative '../../HPXMLtoOpenStudio/resources/energyplus' +require_relative '../../HPXMLtoOpenStudio/resources/hpxml' +require_relative '../../HPXMLtoOpenStudio/resources/hpxml_defaults' +require_relative '../../HPXMLtoOpenStudio/resources/minitest_helper' +require_relative '../../HPXMLtoOpenStudio/resources/schedules' +require_relative '../../HPXMLtoOpenStudio/resources/unit_conversions' +require_relative '../../HPXMLtoOpenStudio/resources/xmlhelper' +require_relative '../../HPXMLtoOpenStudio/resources/version' +require_relative '../resources/util.rb' +require 'openstudio' +require 'openstudio/measure/ShowRunnerOutput' +require_relative '../measure.rb' +require 'csv' + +class ReportUtilityBillsTest < Minitest::Test + # BEopt 2.9.0.0: + # - Standard, New Construction, Single-Family Detached + # - 600 sq ft (30 x 20) + # - EPW Location: USA_CO_Denver.Intl.AP.725650_TMY3.epw + # - Cooking Range: Propane + # - Water Heater: Oil Standard + # - PV System: None, 1.0 kW, 10.0 kW + # - Timestep: 60 min + # - User-Specified rates: + # - Electricity: 0.1195179675994109 USD/kWh + # - Natural Gas: 0.7734017611590879 USD/therm + # - Fuel Oil: 3.495346153846154 USD/gal + # - Propane: 2.4532692307692305 USD/gal + # - Sample Tiered Rate + # - Tier 1: 150 Max kWh + # - Tier 2: 300 Max kWh + # - Sample Tiered Time-of-Use Rate + # - Tier 1: 150 Max kWh (Period 1 and 2) + # - Tier 2: 300 Max kWh (Period 2) + # - All other options left at default values + # Then retrieve 1.csv from output folder + + def setup + @args_hash = {} + + # From BEopt Output screen (Utility Bills USD/yr) + @expected_bills = { + 'Test: Electricity: Fixed (USD)' => 96, + 'Test: Electricity: Energy (USD)' => 632, + 'Test: Electricity: PV Credit (USD)' => 0, + 'Test: Natural Gas: Fixed (USD)' => 96, + 'Test: Natural Gas: Energy (USD)' => 149, + 'Test: Fuel Oil: Fixed (USD)' => 0, + 'Test: Fuel Oil: Energy (USD)' => 462, + 'Test: Propane: Fixed (USD)' => 0, + 'Test: Propane: Energy (USD)' => 76, + 'Test: Coal: Fixed (USD)' => 0, + 'Test: Coal: Energy (USD)' => 0, + 'Test: Wood Cord: Fixed (USD)' => 0, + 'Test: Wood Cord: Energy (USD)' => 0, + 'Test: Wood Pellets: Fixed (USD)' => 0, + 'Test: Wood Pellets: Energy (USD)' => 0 + } + + @measure = ReportUtilityBills.new + @hpxml_path = File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-pv.xml') + @hpxml = HPXML.new(hpxml_path: @hpxml_path) + @hpxml_bldg = @hpxml.buildings[0] + + @hpxml_header = @hpxml.header + @hpxml_header.utility_bill_scenarios.clear + @hpxml_header.utility_bill_scenarios.add(name: 'Test', + elec_fixed_charge: 8.0, + elec_marginal_rate: 0.1195179675994109, + natural_gas_fixed_charge: 8.0, + natural_gas_marginal_rate: 0.7734017611590879, + propane_marginal_rate: 2.4532692307692305, + fuel_oil_marginal_rate: 3.495346153846154) + + # Check for presence of fuels once + has_fuel = @hpxml_bldg.has_fuels(Constants.FossilFuels, @hpxml.to_doc) + HPXMLDefaults.apply_header(@hpxml_header, nil) + HPXMLDefaults.apply_utility_bill_scenarios(nil, @hpxml_header, @hpxml_bldg, has_fuel) + + @root_path = File.absolute_path(File.join(File.dirname(__FILE__), '..', '..')) + @sample_files_path = File.join(@root_path, 'workflow', 'sample_files') + @tmp_hpxml_path = File.join(@sample_files_path, 'tmp.xml') + @bills_csv = File.join(File.dirname(__FILE__), 'results_bills.csv') + @bills_monthly_csv = File.join(File.dirname(__FILE__), 'results_bills_monthly.csv') + + @fuels_pv_none_simple = _load_timeseries(0, false) + @fuels_pv_1kw_simple = _load_timeseries(1, false) + @fuels_pv_10kw_simple = _load_timeseries(10, false) + @fuels_pv_none_detailed = _load_timeseries(0, true) + @fuels_pv_1kw_detailed = _load_timeseries(1, true) + @fuels_pv_10kw_detailed = _load_timeseries(10, true) + + @monthly_data = [] + end + + def teardown + File.delete(@tmp_hpxml_path) if File.exist? @tmp_hpxml_path + File.delete(@bills_csv) if File.exist? @bills_csv + File.delete(@bills_monthly_csv) if File.exist? @bills_monthly_csv + end + + # Simple (non-JSON) Calculations + + def test_simple_pv_none + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_simple, @hpxml_header, [], utility_bill_scenario) + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_simple_pv_1kW_net_metering_user_excess_rate + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_simple_pv_10kW_net_metering_user_excess_rate + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_simple_pv_10kW_net_metering_retail_excess_rate + @hpxml_header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_simple_pv_10kW_net_metering_zero_excess_rate + @hpxml_header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -632 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_simple_pv_1kW_feed_in_tariff + @hpxml_header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff + @hpxml_header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_simple_pv_10kW_feed_in_tariff + @hpxml_header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff + @hpxml_header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_workflow_wood_cord + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-furnace-wood-only.xml')) + hpxml.header.utility_bill_scenarios.add(name: 'Test 1', wood_marginal_rate: 0.015) + hpxml.header.utility_bill_scenarios.add(name: 'Test 2', wood_marginal_rate: 0.03) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + actual_bills, actual_monthly_bills = _test_measure() + expected_val = actual_bills['Test 1: Wood Cord: Total (USD)'] + assert_in_delta(expected_val * 2, actual_bills['Test 2: Wood Cord: Total (USD)'], 1) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_workflow_wood_pellets + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-stove-wood-pellets-only.xml')) + hpxml.header.utility_bill_scenarios.add(name: 'Test 1', wood_pellets_marginal_rate: 0.02) + hpxml.header.utility_bill_scenarios.add(name: 'Test 2', wood_pellets_marginal_rate: 0.01) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + actual_bills, actual_monthly_bills = _test_measure() + expected_val = actual_bills['Test 1: Wood Pellets: Total (USD)'] + assert_in_delta(expected_val / 2, actual_bills['Test 2: Wood Pellets: Total (USD)'], 1) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_workflow_coal + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-furnace-coal-only.xml')) + hpxml.header.utility_bill_scenarios.add(name: 'Test 1', coal_marginal_rate: 0.05) + hpxml.header.utility_bill_scenarios.add(name: 'Test 2', coal_marginal_rate: 0.1) + hpxml.header.utility_bill_scenarios.add(name: 'Test 3', coal_marginal_rate: 0.025) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + actual_bills, actual_monthly_bills = _test_measure() + expected_val = actual_bills['Test 1: Coal: Total (USD)'] + assert_in_delta(expected_val * 2, actual_bills['Test 2: Coal: Total (USD)'], 1) + assert_in_delta(expected_val / 2, actual_bills['Test 3: Coal: Total (USD)'], 1) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_workflow_leap_year + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-location-AMY-2012.xml')) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + actual_bills, actual_monthly_bills = _test_measure() + assert_operator(actual_bills['Bills: Total (USD)'], :>, 0) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_workflow_semi_annual_run_period + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-simcontrol-runperiod-1-month.xml')) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + actual_bills, actual_monthly_bills = _test_measure() + assert_operator(actual_bills['Bills: Total (USD)'], :>, 0) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_workflow_no_bill_scenarios + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml.header.utility_bill_scenarios.clear + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + actual_bills, _actual_monthly_bills = _test_measure(hpxml: hpxml) + assert_nil(actual_bills) + end + + def test_workflow_detailed_calculations + # Detailed Rate.json was renamed from Jackson Electric Member Corp - A Residential Service Senior Citizen Low Income Assistance (Effective 2017-01-01).json + # See https://github.com/NREL/OpenStudio-HPXML/issues/1444 + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Detailed Rate.json') + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + actual_bills, actual_monthly_bills = _test_measure() + assert_operator(actual_bills['Test 1: Total (USD)'], :>, 0) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_workflow_detailed_calculations_all_electric + # Detailed Rate.json was renamed from Jackson Electric Member Corp - A Residential Service Senior Citizen Low Income Assistance (Effective 2017-01-01).json + # See https://github.com/NREL/OpenStudio-HPXML/issues/1444 + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-1-speed.xml')) + hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Detailed Rate.json') + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + actual_bills, actual_monthly_bills = _test_measure() + assert_operator(actual_bills['Test 1: Total (USD)'], :>, 0) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_auto_marginal_rate + fuel_types = [HPXML::FuelTypeElectricity, HPXML::FuelTypeNaturalGas, HPXML::FuelTypeOil, HPXML::FuelTypePropane] + + # Check that we can successfully look up "auto" rates for every state + # and every fuel type. + Constants.StateCodesMap.keys.each do |state_code| + fuel_types.each do |fuel_type| + flatratebuy, _ = UtilityBills.get_rates_from_eia_data(nil, state_code, fuel_type, 0) + refute_nil(flatratebuy) + end + end + + # Check that we can successfully look up "auto" rates for the US too. + fuel_types.each do |fuel_type| + flatratebuy, _ = UtilityBills.get_rates_from_eia_data(nil, 'US', fuel_type, 0) + refute_nil(flatratebuy) + end + + # Check that any other state code is gracefully handled (no error) + fuel_types.each do |fuel_type| + UtilityBills.get_rates_from_eia_data(nil, 'XX', fuel_type, 0) + end + end + + def test_warning_region + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-appliances-oil.xml')) + hpxml.buildings[0].state_code = 'FL' + hpxml.buildings[0].climate_and_risk_zones.weather_station_epw_filepath = 'USA_FL_Miami.Intl.AP.722020_TMY3.epw' + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + expected_warnings = ['Could not find state average fuel oil rate based on Florida; using region (PADD 1C) average.'] + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) + assert_nil(actual_bills) + end + + def test_warning_national + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-appliances-propane.xml')) + hpxml.buildings[0].state_code = 'OR' + hpxml.buildings[0].climate_and_risk_zones.weather_station_epw_filepath = 'USA_OR_Portland.Intl.AP.726980_TMY3.epw' + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + expected_warnings = ['Could not find state average propane rate based on Oregon; using national average.'] + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) + assert_nil(actual_bills) + end + + def test_warning_dse + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-dse.xml')) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + expected_warnings = ['DSE is not currently supported when calculating utility bills.'] + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) + assert_nil(actual_bills) + end + + def test_warning_no_rates + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-location-capetown-zaf.xml')) + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + expected_warnings = ['Could not find a marginal Electricity rate.', 'Could not find a marginal Natural Gas rate.'] + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) + assert_nil(actual_bills) + end + + def test_warning_invalid_fixed_charge_units + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Invalid Fixed Charge Units.json') + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + expected_warnings = ['Fixed charge units must be $/month.'] + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) + assert_nil(actual_bills) + end + + def test_warning_invalid_min_charge_units + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Invalid Min Charge Units.json') + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + expected_warnings = ['Min charge units must be either $/month or $/year.'] + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) + assert_nil(actual_bills) + end + + def test_warning_demand_charges + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Contains Demand Charges.json') + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + expected_warnings = ['Demand charges are not currently supported when calculating detailed utility bills.'] + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) + assert_nil(actual_bills) + end + + def test_warning_missing_required_fields + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Missing Required Fields.json') + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + expected_warnings = ['Tariff file must contain energyweekdayschedule, energyweekendschedule, and energyratestructure fields.'] + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) + assert_nil(actual_bills) + end + + def test_warning_detailed_rates_unit_multipliers + @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-unit-multiplier.xml')) + hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json') + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + expected_warnings = ['Cannot currently calculate utility bills based on detailed electric rates for an HPXML with unit multipliers or multiple Building elements.'] + actual_bills, _actual_monthly_bills = _test_measure(expected_warnings: expected_warnings) + assert_nil(actual_bills) + end + + def test_monthly_prorate + # Test begin_month == end_month + header = HPXML::Header.new(nil) + header.sim_begin_month = 3 + header.sim_begin_day = 5 + header.sim_end_month = 3 + header.sim_end_day = 20 + header.sim_calendar_year = 2002 + assert_equal(0.0, CalculateUtilityBill.calculate_monthly_prorate(header, 2)) + assert_equal((20 - 5 + 1) / 31.0, CalculateUtilityBill.calculate_monthly_prorate(header, 3)) + assert_equal(0.0, CalculateUtilityBill.calculate_monthly_prorate(header, 4)) + + # Test begin_month != end_month + header = HPXML::Header.new(nil) + header.sim_begin_month = 2 + header.sim_begin_day = 10 + header.sim_end_month = 4 + header.sim_end_day = 10 + header.sim_calendar_year = 2002 + assert_equal(0.0, CalculateUtilityBill.calculate_monthly_prorate(header, 1)) + assert_equal((28 - 10 + 1) / 28.0, CalculateUtilityBill.calculate_monthly_prorate(header, 2)) + assert_equal(1.0, CalculateUtilityBill.calculate_monthly_prorate(header, 3)) + assert_equal(10 / 30.0, CalculateUtilityBill.calculate_monthly_prorate(header, 4)) + assert_equal(0.0, CalculateUtilityBill.calculate_monthly_prorate(header, 5)) + end + + # Detailed (JSON) Calculations + + # Flat (Same as simple tests above) + + def test_detailed_flat_pv_none + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_flat_pv_1kW_net_metering_user_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_flat_pv_10kW_net_metering_user_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_flat_pv_10kW_net_metering_retail_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_flat_pv_10kW_net_metering_zero_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -632 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_flat_pv_1kW_feed_in_tariff + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff + @hpxml_header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_flat_pv_10kW_feed_in_tariff + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff + @hpxml_header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + # Tiered + + def test_detailed_tiered_pv_none + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 580 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tiered_pv_1kW_net_metering_user_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 580 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -190 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tiered_pv_10kW_net_metering_user_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 580 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -867 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tiered_pv_10kW_net_metering_retail_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 580 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1443 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tiered_pv_10kW_net_metering_zero_excess_rate + @hpxml_header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 580 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -580 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tiered_pv_1kW_feed_in_tariff + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff + @hpxml_header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 580 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tiered_pv_10kW_feed_in_tariff + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff + @hpxml_header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 580 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + # Time-of-Use + + def test_detailed_tou_pv_none + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 393 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tou_pv_1kW_net_metering_user_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 393 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -112 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tou_pv_10kW_net_metering_user_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 393 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -681 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tou_pv_10kW_net_metering_retail_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 393 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1127 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tou_pv_10kW_net_metering_zero_excess_rate + @hpxml_header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 393 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -393 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tou_pv_1kW_feed_in_tariff + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff + @hpxml_header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 393 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tou_pv_10kW_feed_in_tariff + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff + @hpxml_header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 393 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + # Tiered and Time-of-Use + + def test_detailed_tiered_tou_pv_none + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 377 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tiered_tou_pv_1kW_net_metering_user_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 377 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -108 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tiered_tou_pv_10kW_net_metering_user_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 377 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -665 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tiered_tou_pv_10kW_net_metering_retail_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 377 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1000 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tiered_tou_pv_10kW_net_metering_zero_excess_rate + @hpxml_header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 377 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -377 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tiered_tou_pv_1kW_feed_in_tariff + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff + @hpxml_header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 377 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_tiered_tou_pv_10kW_feed_in_tariff + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff + @hpxml_header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 377 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + # Real-time Pricing + + def test_detailed_rtp_pv_none + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 354 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_rtp_pv_1kW_net_metering_user_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 354 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -106 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_rtp_pv_10kW_net_metering_user_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 354 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -641 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_rtp_pv_10kW_net_metering_retail_excess_rate + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 354 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1060 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_rtp_pv_10kW_net_metering_zero_excess_rate + @hpxml_header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 354 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -354 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_rtp_pv_1kW_feed_in_tariff + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff + @hpxml_header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 354 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_rtp_pv_10kW_feed_in_tariff + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff + @hpxml_header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 108 + @expected_bills['Test: Electricity: Energy (USD)'] = 354 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + # Extra Fees & Charges + + def test_simple_pv_1kW_grid_fee_dollars_per_kW + @hpxml_header.utility_bill_scenarios[-1].pv_monthly_grid_connection_fee_dollars_per_kw = 2.50 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 126 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_simple_pv_1kW_grid_fee_dollars + @hpxml_header.utility_bill_scenarios[-1].pv_monthly_grid_connection_fee_dollars = 7.50 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 186 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_pv_1kW_grid_fee_dollars_per_kW + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_monthly_grid_connection_fee_dollars_per_kw = 2.50 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 126 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_pv_1kW_grid_fee_dollars + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' + @hpxml_header.utility_bill_scenarios[-1].pv_monthly_grid_connection_fee_dollars = 7.50 + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 186 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_pv_none_min_monthly_charge + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json' + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 96 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_pv_none_min_annual_charge + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json' + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 96 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_pv_1kW_net_metering_user_excess_rate_min_monthly_charge + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 96 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_pv_1kW_net_metering_user_excess_rate_min_annual_charge + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 96 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_pv_10kW_net_metering_user_excess_rate_min_monthly_charge + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 180 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_pv_10kW_net_metering_user_excess_rate_min_annual_charge + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json' + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 200 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_pv_10kW_net_metering_retail_excess_rate_min_monthly_charge + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json' + @hpxml_header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 180 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_detailed_pv_10kW_net_metering_retail_excess_rate_min_annual_charge + @hpxml_header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json' + @hpxml_header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + @expected_bills['Test: Electricity: Fixed (USD)'] = 200 + @expected_bills['Test: Electricity: Energy (USD)'] = 632 + @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 + expected_bills = _get_expected_bills(@expected_bills) + _check_bills(expected_bills, actual_bills) + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + + def test_downloaded_utility_rates + require 'rubygems/package' + require 'zip' + require 'tempfile' + + @hpxml_bldg.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml_bldg.pv_systems.size } + utility_bill_scenario = @hpxml_header.utility_bill_scenarios[0] + Zip.on_exists_proc = true + Zip::File.open(File.join(File.dirname(__FILE__), '../resources/detailed_rates/openei_rates.zip')) do |zip_file| + zip_file.each_with_index do |entry, i| + break if i >= 1000 # No need to run *every* file, that will take a while + next unless entry.file? + + tmpdir = Dir.tmpdir + tmpfile = Tempfile.new(['rate', '.json'], tmpdir) + tmp_path = tmpfile.path.to_s + + File.open(tmp_path, 'wb') do |f| + f.print entry.get_input_stream.read + + utility_bill_scenario.elec_tariff_filepath = tmp_path + File.delete(@bills_csv) if File.exist? @bills_csv + File.delete(@bills_monthly_csv) if File.exist? @bills_monthly_csv + actual_bills, actual_monthly_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml_header, @hpxml.buildings, utility_bill_scenario) + if !File.exist?(@bills_csv) + flunk "#{entry.name} was not successful." + end + if entry.name.include? 'North Slope Borough Power Light - Aged or Handicappedseniors over 60' + # No cost if < 600 kWh/month, which is the case for PV_None.csv + assert_equal(0, actual_bills['Test: Electricity: Total (USD)']) + else + assert_operator(actual_bills['Test: Electricity: Total (USD)'], :>, 0) + end + _check_monthly_bills(actual_bills, actual_monthly_bills) + end + end + end + end + + def _get_expected_bills(expected_bills) + expected_bills['Test: Electricity: Total (USD)'] = expected_bills['Test: Electricity: Fixed (USD)'] + expected_bills['Test: Electricity: Energy (USD)'] + expected_bills['Test: Electricity: PV Credit (USD)'] + expected_bills['Test: Natural Gas: Total (USD)'] = expected_bills['Test: Natural Gas: Fixed (USD)'] + expected_bills['Test: Natural Gas: Energy (USD)'] + expected_bills['Test: Fuel Oil: Total (USD)'] = expected_bills['Test: Fuel Oil: Fixed (USD)'] + expected_bills['Test: Fuel Oil: Energy (USD)'] + expected_bills['Test: Propane: Total (USD)'] = expected_bills['Test: Propane: Fixed (USD)'] + expected_bills['Test: Propane: Energy (USD)'] + expected_bills['Test: Coal: Total (USD)'] = expected_bills['Test: Coal: Fixed (USD)'] + expected_bills['Test: Coal: Energy (USD)'] + expected_bills['Test: Wood Cord: Total (USD)'] = expected_bills['Test: Wood Cord: Fixed (USD)'] + expected_bills['Test: Wood Cord: Energy (USD)'] + expected_bills['Test: Wood Pellets: Total (USD)'] = expected_bills['Test: Wood Pellets: Fixed (USD)'] + expected_bills['Test: Wood Pellets: Energy (USD)'] + expected_bills['Test: Total (USD)'] = expected_bills['Test: Electricity: Total (USD)'] + expected_bills['Test: Natural Gas: Total (USD)'] + expected_bills['Test: Fuel Oil: Total (USD)'] + expected_bills['Test: Propane: Total (USD)'] + expected_bills['Test: Wood Cord: Total (USD)'] + expected_bills['Test: Wood Pellets: Total (USD)'] + expected_bills['Test: Coal: Total (USD)'] + return expected_bills + end + + def _check_bills(expected_bills, actual_bills) + bills = expected_bills.keys | actual_bills.keys + bills.each do |bill| + assert(expected_bills.keys.include?(bill)) + if expected_bills[bill] != 0 + assert(actual_bills.keys.include?(bill)) + assert_in_delta(expected_bills[bill], actual_bills[bill], 1) # within a dollar + end + end + end + + def _check_monthly_bills(actual_bills, actual_monthly_bills) + # Check sum of monthly equal to annual + actual_bills.keys.each do |bill| + assert(actual_monthly_bills.keys.include?(bill)) + assert_in_delta(actual_bills[bill], actual_monthly_bills[bill].sum, 0.1) # within 10 cents + end + end + + def _load_timeseries(pv_size_kw, use_hourly_electricity) + fuels = @measure.setup_fuel_outputs() + columns = CSV.read(File.join(File.dirname(__FILE__), 'data.csv')).transpose + columns.each do |col| + col_name = col[0] + next if col_name == 'Date/Time' + + values = col[1..-1].map { |v| Float(v) } + + if col_name == 'Electricity [kWh]' + fuels[[FT::Elec, false]].timeseries = values + elsif col_name == 'Gas [therm]' + fuels[[FT::Gas, false]].timeseries = values + elsif col_name == 'Propane [gal]' + fuels[[FT::Propane, false]].timeseries = values + elsif col_name == 'Oil [gal]' + fuels[[FT::Oil, false]].timeseries = values + elsif col_name == "PV_#{pv_size_kw}kW [kWh]" + fuels[[FT::Elec, true]].timeseries = values + end + end + + fuels.values.each do |fuel| + fuel.timeseries = [0] * fuels[[FT::Elec, false]].timeseries.size if fuel.timeseries.empty? + end + + # Convert hourly data to monthly data as appropriate + num_days_in_month = Constants.NumDaysInMonths(2002) # Arbitrary non-leap year + fuels.each do |(fuel_type, _is_production), fuel| + next unless fuel_type != FT::Elec || (fuel_type == FT::Elec && !use_hourly_electricity) + + ts_data = fuel.timeseries.dup + fuel.timeseries = [] + start_day = 0 + num_days_in_month.each do |num_days| + fuel.timeseries << ts_data[start_day * 24..(start_day + num_days) * 24 - 1].sum + start_day += num_days + end + end + + return fuels + end + + def _bill_calcs(fuels, header, hpxml_buildings, utility_bill_scenario) + runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) + args = { output_format: 'csv', include_annual_bills: true, include_monthly_bills: true } + + utility_rates, utility_bills = @measure.setup_utility_outputs() + monthly_fee = @measure.get_monthly_fee(utility_bill_scenario, hpxml_buildings) + @measure.get_utility_rates(@hpxml_path, fuels, utility_rates, utility_bill_scenario, monthly_fee) + @measure.get_utility_bills(fuels, utility_rates, utility_bills, utility_bill_scenario, header) + + # Annual + output_path = File.join(File.dirname(__FILE__), "results_bills.#{args[:output_format]}") + @measure.report_runperiod_output_results(runner, args, utility_bills, output_path, utility_bill_scenario.name) + + # Check written values exist and are registered + assert(File.exist?(@bills_csv)) + actual_bills = _get_actual_bills(@bills_csv) + + _check_for_runner_registered_values(runner, nil, actual_bills) + + # Monthly + timestamps = (1..12).to_a + monthly_data = [] + monthly_output_path = File.join(File.dirname(__FILE__), "results_bills_monthly.#{args[:output_format]}") + @measure.get_monthly_output_results(args, utility_bills, utility_bill_scenario.name, monthly_data, header) + @measure.report_monthly_output_results(runner, args, timestamps, monthly_data, monthly_output_path) + + # Check written values exist + assert(File.exist?(@bills_monthly_csv)) + actual_monthly_bills = _get_actual_monthly_bills(@bills_monthly_csv) + + return actual_bills, actual_monthly_bills + end + + def _test_measure(hpxml: nil, expected_errors: [], expected_warnings: []) + # Run measure via OSW + require 'json' + template_osw = File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'template-run-hpxml.osw') + workflow = OpenStudio::WorkflowJSON.new(template_osw) + json = JSON.parse(workflow.to_s) + + # Update measure args + steps = OpenStudio::WorkflowStepVector.new + found_args = [] + json['steps'].each do |json_step| + step = OpenStudio::MeasureStep.new(json_step['measure_dir_name']) + json_step['arguments'].each do |json_arg_name, json_arg_val| + if @args_hash.keys.include? json_arg_name + # Override value + found_args << json_arg_name + json_arg_val = @args_hash[json_arg_name] + end + step.setArgument(json_arg_name, json_arg_val) + end + steps.push(step) + end + workflow.setWorkflowSteps(steps) + osw_path = File.join(File.dirname(template_osw), 'test.osw') + workflow.saveAs(osw_path) + assert_equal(@args_hash.size, found_args.size) + + # Run OSW + command = "#{OpenStudio.getOpenStudioCLI} run -w #{osw_path}" + success = system(command) + assert(success) + + # Cleanup + File.delete(osw_path) + + bills_csv = File.join(File.dirname(template_osw), 'run', 'results_bills.csv') + bills_monthly_csv = File.join(File.dirname(template_osw), 'run', 'results_bills_monthly.csv') + + # Check warnings/errors + log_lines = File.readlines(File.join(File.dirname(template_osw), 'run', 'run.log')).map(&:strip) + expected_errors.each do |expected_error| + assert(log_lines.any? { |line| line.include?(' ERROR]') && line.include?(expected_error) }) + end + expected_warnings.each do |expected_warning| + assert(log_lines.any? { |line| line.include?(' WARN]') && line.include?(expected_warning) }) + end + + if !hpxml.nil? + return if hpxml.header.utility_bill_scenarios.empty? + elsif (not expected_errors.empty?) || (not expected_warnings.empty?) + return + end + + # Check written values exist and are registered + assert(File.exist?(bills_csv)) + actual_bills = _get_actual_bills(bills_csv) + + _check_for_runner_registered_values(nil, File.join(File.dirname(bills_csv), 'results.json'), actual_bills) + + assert(File.exist?(bills_monthly_csv)) + actual_monthly_bills = _get_actual_monthly_bills(bills_monthly_csv) + + return actual_bills, actual_monthly_bills + end + + def _get_actual_bills(bills_csv) + actual_bills = {} + File.readlines(bills_csv).each do |line| + next if line.strip.empty? + + key, value = line.split(',').map { |x| x.strip } + actual_bills[key] = Float(value) + end + + return actual_bills + end + + def _get_actual_monthly_bills(bills_monthly_csv) + lines = File.readlines(bills_monthly_csv) + cols = lines[0].strip.split(',') + units = lines[1].strip.split(',')[1] + + actual_monthly_bills = {} + cols.each do |col| + col += " (#{units})" + actual_monthly_bills[col] = [] + end + + lines[2..-1].each do |row| + row.strip.split(',').each_with_index do |v, i| + col = cols[i] + " (#{units})" + actual_monthly_bills[col] << Float(v) if !col.include?('Time') + end + end + actual_monthly_bills.delete('Time' + " (#{units})") + + return actual_monthly_bills + end + + def _check_for_runner_registered_values(runner, results_json, actual_bills) + if !runner.nil? + runner_bills = {} + runner.result.stepValues.each do |step_value| + runner_bills[step_value.name] = get_value_from_workflow_step_value(step_value) + end + elsif !results_json.nil? + require 'json' + runner_bills = JSON.parse(File.read(results_json)) + runner_bills = runner_bills['ReportUtilityBills'] + end + + actual_bills.each do |name, value| + name = OpenStudio::toUnderscoreCase(name).chomp('_') + + assert_includes(runner_bills.keys, name) + assert_equal(value, runner_bills[name]) + end + end +end diff --git a/example_files/resources/hpxml-measures/ReportUtilityBills/tests/utility_bills_test.rb b/example_files/resources/hpxml-measures/ReportUtilityBills/tests/utility_bills_test.rb deleted file mode 100644 index 65e92ef3..00000000 --- a/example_files/resources/hpxml-measures/ReportUtilityBills/tests/utility_bills_test.rb +++ /dev/null @@ -1,1226 +0,0 @@ -# frozen_string_literal: true - -require 'oga' -require_relative '../../HPXMLtoOpenStudio/resources/utility_bills' -require_relative '../../HPXMLtoOpenStudio/resources/constants' -require_relative '../../HPXMLtoOpenStudio/resources/energyplus' -require_relative '../../HPXMLtoOpenStudio/resources/hpxml' -require_relative '../../HPXMLtoOpenStudio/resources/hpxml_defaults' -require_relative '../../HPXMLtoOpenStudio/resources/minitest_helper' -require_relative '../../HPXMLtoOpenStudio/resources/schedules' -require_relative '../../HPXMLtoOpenStudio/resources/unit_conversions' -require_relative '../../HPXMLtoOpenStudio/resources/xmlhelper' -require_relative '../../HPXMLtoOpenStudio/resources/version' -require_relative '../resources/util.rb' -require 'openstudio' -require 'openstudio/measure/ShowRunnerOutput' -require_relative '../measure.rb' -require 'csv' - -class ReportUtilityBillsTest < MiniTest::Test - # BEopt 2.9.0.0: - # - Standard, New Construction, Single-Family Detached - # - 600 sq ft (30 x 20) - # - EPW Location: USA_CO_Denver.Intl.AP.725650_TMY3.epw - # - Cooking Range: Propane - # - Water Heater: Oil Standard - # - PV System: None, 1.0 kW, 10.0 kW - # - Timestep: 60 min - # - User-Specified rates (calculated using default value): - # - Electricity: 0.1195179675994109 USD/kWh - # - Natural Gas: 0.7734017611590879 USD/therm - # - Fuel Oil: 3.495346153846154 USD/gal - # - Propane: 2.4532692307692305 USD/gal - # - Sample Tiered Rate - # - Tier 1: 150 Max kWh - # - Tier 2: 300 Max kWh - # - Sample Tiered Time-of-Use Rate - # - Tier 1: 150 Max kWh (Period 1 and 2) - # - Tier 2: 300 Max kWh (Period 2) - # - All other options left at default values - # Then retrieve 1.csv from output folder - - def setup - @args_hash = {} - - # From BEopt Output screen (Utility Bills USD/yr) - @expected_bills = { - 'Test: Electricity: Fixed (USD)' => 96, - 'Test: Electricity: Energy (USD)' => 632, - 'Test: Electricity: PV Credit (USD)' => 0, - 'Test: Natural Gas: Fixed (USD)' => 96, - 'Test: Natural Gas: Energy (USD)' => 149, - 'Test: Fuel Oil: Fixed (USD)' => 0, - 'Test: Fuel Oil: Energy (USD)' => 462, - 'Test: Propane: Fixed (USD)' => 0, - 'Test: Propane: Energy (USD)' => 76, - 'Test: Coal: Fixed (USD)' => 0, - 'Test: Coal: Energy (USD)' => 0, - 'Test: Wood Cord: Fixed (USD)' => 0, - 'Test: Wood Cord: Energy (USD)' => 0, - 'Test: Wood Pellets: Fixed (USD)' => 0, - 'Test: Wood Pellets: Energy (USD)' => 0 - } - - @measure = ReportUtilityBills.new - @hpxml_path = File.join(File.dirname(__FILE__), '../../workflow/sample_files/base-pv.xml') - @hpxml = HPXML.new(hpxml_path: @hpxml_path) - @hpxml.header.utility_bill_scenarios.clear - @hpxml.header.utility_bill_scenarios.add(name: 'Test', - elec_fixed_charge: 8.0, - natural_gas_fixed_charge: 8.0, - propane_marginal_rate: 2.4532692307692305, - fuel_oil_marginal_rate: 3.495346153846154) - - # Check for presence of fuels once - has_fuel = {} - hpxml_doc = @hpxml.to_oga - Constants.FossilFuels.each do |fuel| - has_fuel[fuel] = @hpxml.has_fuel(fuel, hpxml_doc) - end - - HPXMLDefaults.apply_header(@hpxml, nil, nil) - HPXMLDefaults.apply_utility_bill_scenarios(nil, @hpxml, has_fuel) - - @root_path = File.absolute_path(File.join(File.dirname(__FILE__), '..', '..')) - @sample_files_path = File.join(@root_path, 'workflow', 'sample_files') - @tmp_hpxml_path = File.join(@sample_files_path, 'tmp.xml') - @bills_csv = File.join(File.dirname(__FILE__), 'results_bills.csv') - - @fuels_pv_none_simple = _load_timeseries(0, false) - @fuels_pv_1kw_simple = _load_timeseries(1, false) - @fuels_pv_10kw_simple = _load_timeseries(10, false) - @fuels_pv_none_detailed = _load_timeseries(0, true) - @fuels_pv_1kw_detailed = _load_timeseries(1, true) - @fuels_pv_10kw_detailed = _load_timeseries(10, true) - end - - def teardown - File.delete(@tmp_hpxml_path) if File.exist? @tmp_hpxml_path - File.delete(@bills_csv) if File.exist? @bills_csv - end - - # Simple (non-JSON) Calculations - - def test_simple_pv_none - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_simple, @hpxml.header, [], utility_bill_scenario) - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_simple_pv_1kW_net_metering_user_excess_rate - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_simple_pv_10kW_net_metering_user_excess_rate - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_simple_pv_10kW_net_metering_retail_excess_rate - @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_simple_pv_10kW_net_metering_zero_excess_rate - @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -632 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_simple_pv_1kW_feed_in_tariff - @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff - @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_simple_pv_10kW_feed_in_tariff - @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff - @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_workflow_wood_cord - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-furnace-wood-only.xml')) - hpxml.header.utility_bill_scenarios.add(name: 'Test 1', wood_marginal_rate: 0.015) - hpxml.header.utility_bill_scenarios.add(name: 'Test 2', wood_marginal_rate: 0.03) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure() - expected_val = actual_bills['Test 1: Wood Cord: Total (USD)'] - assert_in_delta(expected_val * 2, actual_bills['Test 2: Wood Cord: Total (USD)'], 1) - end - - def test_workflow_wood_pellets - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-stove-wood-pellets-only.xml')) - hpxml.header.utility_bill_scenarios.add(name: 'Test 1', wood_pellets_marginal_rate: 0.02) - hpxml.header.utility_bill_scenarios.add(name: 'Test 2', wood_pellets_marginal_rate: 0.01) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure() - expected_val = actual_bills['Test 1: Wood Pellets: Total (USD)'] - assert_in_delta(expected_val / 2, actual_bills['Test 2: Wood Pellets: Total (USD)'], 1) - end - - def test_workflow_coal - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-furnace-coal-only.xml')) - hpxml.header.utility_bill_scenarios.add(name: 'Test 1', coal_marginal_rate: 0.05) - hpxml.header.utility_bill_scenarios.add(name: 'Test 2', coal_marginal_rate: 0.1) - hpxml.header.utility_bill_scenarios.add(name: 'Test 3', coal_marginal_rate: 0.025) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure() - expected_val = actual_bills['Test 1: Coal: Total (USD)'] - assert_in_delta(expected_val * 2, actual_bills['Test 2: Coal: Total (USD)'], 1) - assert_in_delta(expected_val / 2, actual_bills['Test 3: Coal: Total (USD)'], 1) - end - - def test_workflow_leap_year - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-location-AMY-2012.xml')) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure() - assert_operator(actual_bills['Bills: Total (USD)'], :>, 0) - end - - def test_workflow_semi_annual_run_period - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-simcontrol-runperiod-1-month.xml')) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure() - assert_operator(actual_bills['Bills: Total (USD)'], :>, 0) - end - - def test_workflow_no_bill_scenarios - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-misc-bills-none.xml')) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure(hpxml: hpxml) - assert_nil(actual_bills) - end - - def test_workflow_detailed_calculations - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/JacksonElectricMemberCorp-ResidentialSeniorCitizenLowIncomeAssistance.json') - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure() - assert_operator(actual_bills['Test 1: Total (USD)'], :>, 0) - end - - def test_workflow_detailed_calculations_all_electric - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-1-speed.xml')) - hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/JacksonElectricMemberCorp-ResidentialSeniorCitizenLowIncomeAssistance.json') - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - actual_bills = _test_measure() - assert_operator(actual_bills['Test 1: Total (USD)'], :>, 0) - end - - def test_auto_marginal_rate - fuel_types = [HPXML::FuelTypeElectricity, HPXML::FuelTypeNaturalGas, HPXML::FuelTypeOil, HPXML::FuelTypePropane] - - # Check that we can successfully look up "auto" rates for every state - # and every fuel type. - Constants.StateCodesMap.keys.each do |state_code| - fuel_types.each do |fuel_type| - flatratebuy, _ = UtilityBills.get_rates_from_eia_data(nil, state_code, fuel_type, 0) - refute_nil(flatratebuy) - end - end - - # Check that we can successfully look up "auto" rates for the US too. - fuel_types.each do |fuel_type| - flatratebuy, _ = UtilityBills.get_rates_from_eia_data(nil, 'US', fuel_type, 0) - refute_nil(flatratebuy) - end - - # Check that any other state code is gracefully handled (no error) - fuel_types.each do |fuel_type| - UtilityBills.get_rates_from_eia_data(nil, 'XX', fuel_type, 0) - end - end - - def test_warning_region - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-appliances-oil-location-miami-fl.xml')) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - expected_warnings = ['Could not find state average fuel oil rate based on Florida; using region (PADD 1C) average.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) - assert_nil(actual_bills) - end - - def test_warning_national - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-appliances-propane-location-portland-or.xml')) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - expected_warnings = ['Could not find state average propane rate based on Oregon; using national average.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) - assert_nil(actual_bills) - end - - def test_warning_dse - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-dse.xml')) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - expected_warnings = ['DSE is not currently supported when calculating utility bills.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) - assert_nil(actual_bills) - end - - def test_warning_no_rates - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-location-capetown-zaf.xml')) - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - expected_warnings = ['Could not find a marginal Electricity rate.', 'Could not find a marginal Natural Gas rate.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) - assert_nil(actual_bills) - end - - def test_warning_invalid_fixed_charge_units - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Invalid Fixed Charge Units.json') - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - expected_warnings = ['Fixed charge units must be $/month.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) - assert_nil(actual_bills) - end - - def test_warning_invalid_min_charge_units - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Invalid Min Charge Units.json') - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - expected_warnings = ['Min charge units must be either $/month or $/year.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) - assert_nil(actual_bills) - end - - def test_warning_demand_charges - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Contains Demand Charges.json') - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - expected_warnings = ['Demand charges are not currently supported when calculating detailed utility bills.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) - assert_nil(actual_bills) - end - - def test_warning_missing_required_fields - @args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.header.utility_bill_scenarios.add(name: 'Test 1', elec_tariff_filepath: '../../ReportUtilityBills/tests/Missing Required Fields.json') - XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) - expected_warnings = ['Tariff file must contain energyweekdayschedule, energyweekendschedule, and energyratestructure fields.'] - actual_bills = _test_measure(expected_warnings: expected_warnings) - assert_nil(actual_bills) - end - - def test_monthly_prorate - # Test begin_month == end_month - header = HPXML::Header.new(nil) - header.sim_begin_month = 3 - header.sim_begin_day = 5 - header.sim_end_month = 3 - header.sim_end_day = 20 - header.sim_calendar_year = 2002 - assert_equal(0.0, CalculateUtilityBill.calculate_monthly_prorate(header, 2)) - assert_equal((20 - 5 + 1) / 31.0, CalculateUtilityBill.calculate_monthly_prorate(header, 3)) - assert_equal(0.0, CalculateUtilityBill.calculate_monthly_prorate(header, 4)) - - # Test begin_month != end_month - header = HPXML::Header.new(nil) - header.sim_begin_month = 2 - header.sim_begin_day = 10 - header.sim_end_month = 4 - header.sim_end_day = 10 - header.sim_calendar_year = 2002 - assert_equal(0.0, CalculateUtilityBill.calculate_monthly_prorate(header, 1)) - assert_equal((28 - 10 + 1) / 28.0, CalculateUtilityBill.calculate_monthly_prorate(header, 2)) - assert_equal(1.0, CalculateUtilityBill.calculate_monthly_prorate(header, 3)) - assert_equal(10 / 30.0, CalculateUtilityBill.calculate_monthly_prorate(header, 4)) - assert_equal(0.0, CalculateUtilityBill.calculate_monthly_prorate(header, 5)) - end - - # Detailed (JSON) Calculations - - # Flat (Same as simple tests above) - - def test_detailed_flat_pv_none - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_flat_pv_1kW_net_metering_user_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_flat_pv_10kW_net_metering_user_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_flat_pv_10kW_net_metering_retail_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_flat_pv_10kW_net_metering_zero_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -632 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_flat_pv_1kW_feed_in_tariff - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff - @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_flat_pv_10kW_feed_in_tariff - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff - @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - # Tiered - - def test_detailed_tiered_pv_none - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 580 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tiered_pv_1kW_net_metering_user_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 580 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -190 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tiered_pv_10kW_net_metering_user_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 580 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -867 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tiered_pv_10kW_net_metering_retail_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 580 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1443 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tiered_pv_10kW_net_metering_zero_excess_rate - @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 580 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -580 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tiered_pv_1kW_feed_in_tariff - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff - @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 580 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tiered_pv_10kW_feed_in_tariff - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff - @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 580 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - # Time-of-Use - - def test_detailed_tou_pv_none - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 393 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tou_pv_1kW_net_metering_user_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 393 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -112 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tou_pv_10kW_net_metering_user_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 393 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -681 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tou_pv_10kW_net_metering_retail_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 393 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1127 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tou_pv_10kW_net_metering_zero_excess_rate - @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 393 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -393 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tou_pv_1kW_feed_in_tariff - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff - @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 393 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tou_pv_10kW_feed_in_tariff - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff - @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 393 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - # Tiered and Time-of-Use - - def test_detailed_tiered_tou_pv_none - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 377 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tiered_tou_pv_1kW_net_metering_user_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 377 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -108 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tiered_tou_pv_10kW_net_metering_user_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 377 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -665 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tiered_tou_pv_10kW_net_metering_retail_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 377 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1000 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tiered_tou_pv_10kW_net_metering_zero_excess_rate - @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 377 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -377 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tiered_tou_pv_1kW_feed_in_tariff - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff - @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 377 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_tiered_tou_pv_10kW_feed_in_tariff - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff - @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 377 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - # Real-time Pricing - - def test_detailed_rtp_pv_none - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 354 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_rtp_pv_1kW_net_metering_user_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 354 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -106 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_rtp_pv_10kW_net_metering_user_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 354 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -641 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_rtp_pv_10kW_net_metering_retail_excess_rate - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 354 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1060 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_rtp_pv_10kW_net_metering_zero_excess_rate - @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate = 0.0 - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 354 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -354 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_rtp_pv_1kW_feed_in_tariff - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff - @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 354 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -178 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_rtp_pv_10kW_feed_in_tariff - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_compensation_type = HPXML::PVCompensationTypeFeedInTariff - @hpxml.header.utility_bill_scenarios[-1].pv_feed_in_tariff_rate = 0.12 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 108 - @expected_bills['Test: Electricity: Energy (USD)'] = 354 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1785 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - # Extra Fees & Charges - - def test_simple_pv_1kW_grid_fee_dollars_per_kW - @hpxml.header.utility_bill_scenarios[-1].pv_monthly_grid_connection_fee_dollars_per_kw = 2.50 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 126 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_simple_pv_1kW_grid_fee_dollars - @hpxml.header.utility_bill_scenarios[-1].pv_monthly_grid_connection_fee_dollars = 7.50 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_simple, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 186 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_pv_1kW_grid_fee_dollars_per_kW - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_monthly_grid_connection_fee_dollars_per_kw = 2.50 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 126 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_pv_1kW_grid_fee_dollars - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json' - @hpxml.header.utility_bill_scenarios[-1].pv_monthly_grid_connection_fee_dollars = 7.50 - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 186 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_pv_none_min_monthly_charge - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json' - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 96 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_pv_none_min_annual_charge - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json' - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_none_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 96 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_pv_1kW_net_metering_user_excess_rate_min_monthly_charge - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 96 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_pv_1kW_net_metering_user_excess_rate_min_annual_charge - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 96 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -177 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_pv_10kW_net_metering_user_excess_rate_min_monthly_charge - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 180 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_pv_10kW_net_metering_user_excess_rate_min_annual_charge - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json' - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 200 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -920 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_pv_10kW_net_metering_retail_excess_rate_min_monthly_charge - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json' - @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 180 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_detailed_pv_10kW_net_metering_retail_excess_rate_min_annual_charge - @hpxml.header.utility_bill_scenarios[-1].elec_tariff_filepath = '../../ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json' - @hpxml.header.utility_bill_scenarios[-1].pv_net_metering_annual_excess_sellback_rate_type = HPXML::PVAnnualExcessSellbackRateTypeRetailElectricityCost - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 10000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - actual_bills = _bill_calcs(@fuels_pv_10kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - @expected_bills['Test: Electricity: Fixed (USD)'] = 200 - @expected_bills['Test: Electricity: Energy (USD)'] = 632 - @expected_bills['Test: Electricity: PV Credit (USD)'] = -1777 - expected_bills = _get_expected_bills(@expected_bills) - _check_bills(expected_bills, actual_bills) - end - end - - def test_downloaded_utility_rates - require 'rubygems/package' - require 'zip' - require 'tempfile' - - @hpxml.pv_systems.each { |pv_system| pv_system.max_power_output = 1000.0 / @hpxml.pv_systems.size } - @hpxml.header.utility_bill_scenarios.each do |utility_bill_scenario| - Zip.on_exists_proc = true - Zip::File.open(File.join(File.dirname(__FILE__), '../resources/detailed_rates/openei_rates.zip')) do |zip_file| - zip_file.each do |entry| - next unless entry.file? - - tmpdir = Dir.tmpdir - tmpfile = Tempfile.new(['rate', '.json'], tmpdir) - tmp_path = tmpfile.path.to_s - - File.open(tmp_path, 'wb') do |f| - f.print entry.get_input_stream.read - - utility_bill_scenario.elec_tariff_filepath = tmp_path - File.delete(@bills_csv) if File.exist? @bills_csv - actual_bills = _bill_calcs(@fuels_pv_1kw_detailed, @hpxml.header, @hpxml.pv_systems, utility_bill_scenario) - if !File.exist?(@bills_csv) - puts entry.name - assert(false) - end - if entry.name.include? 'North Slope Borough Power Light - Aged or Handicappedseniors over 60' - # No cost if < 600 kWh/month, which is the case for PV_None.csv - assert_equal(0, actual_bills['Test: Electricity: Total (USD)']) - else - assert_operator(actual_bills['Test: Electricity: Total (USD)'], :>, 0) - end - end - end - end - end - end - - def _get_expected_bills(expected_bills) - expected_bills['Test: Electricity: Total (USD)'] = expected_bills['Test: Electricity: Fixed (USD)'] + expected_bills['Test: Electricity: Energy (USD)'] + expected_bills['Test: Electricity: PV Credit (USD)'] - expected_bills['Test: Natural Gas: Total (USD)'] = expected_bills['Test: Natural Gas: Fixed (USD)'] + expected_bills['Test: Natural Gas: Energy (USD)'] - expected_bills['Test: Fuel Oil: Total (USD)'] = expected_bills['Test: Fuel Oil: Fixed (USD)'] + expected_bills['Test: Fuel Oil: Energy (USD)'] - expected_bills['Test: Propane: Total (USD)'] = expected_bills['Test: Propane: Fixed (USD)'] + expected_bills['Test: Propane: Energy (USD)'] - expected_bills['Test: Coal: Total (USD)'] = expected_bills['Test: Coal: Fixed (USD)'] + expected_bills['Test: Coal: Energy (USD)'] - expected_bills['Test: Wood Cord: Total (USD)'] = expected_bills['Test: Wood Cord: Fixed (USD)'] + expected_bills['Test: Wood Cord: Energy (USD)'] - expected_bills['Test: Wood Pellets: Total (USD)'] = expected_bills['Test: Wood Pellets: Fixed (USD)'] + expected_bills['Test: Wood Pellets: Energy (USD)'] - expected_bills['Test: Total (USD)'] = expected_bills['Test: Electricity: Total (USD)'] + expected_bills['Test: Natural Gas: Total (USD)'] + expected_bills['Test: Fuel Oil: Total (USD)'] + expected_bills['Test: Propane: Total (USD)'] + expected_bills['Test: Wood Cord: Total (USD)'] + expected_bills['Test: Wood Pellets: Total (USD)'] + expected_bills['Test: Coal: Total (USD)'] - return expected_bills - end - - def _check_bills(expected_bills, actual_bills) - bills = expected_bills.keys | actual_bills.keys - bills.each do |bill| - assert(expected_bills.keys.include?(bill)) - if expected_bills[bill] != 0 - assert(actual_bills.keys.include?(bill)) - assert_in_delta(expected_bills[bill], actual_bills[bill], 1) # within a dollar - end - end - end - - def _load_timeseries(pv_size_kw, use_hourly_electricity) - fuels = @measure.setup_fuel_outputs() - columns = CSV.read(File.join(File.dirname(__FILE__), 'data.csv')).transpose - columns.each do |col| - col_name = col[0] - next if col_name == 'Date/Time' - - values = col[1..-1].map { |v| Float(v) } - - if col_name == 'Electricity [kWh]' - fuels[[FT::Elec, false]].timeseries = values - elsif col_name == 'Gas [therm]' - fuels[[FT::Gas, false]].timeseries = values - elsif col_name == 'Propane [gal]' - fuels[[FT::Propane, false]].timeseries = values - elsif col_name == 'Oil [gal]' - fuels[[FT::Oil, false]].timeseries = values - elsif col_name == "PV_#{pv_size_kw}kW [kWh]" - fuels[[FT::Elec, true]].timeseries = values - end - end - - fuels.values.each do |fuel| - fuel.timeseries = [0] * fuels[[FT::Elec, false]].timeseries.size if fuel.timeseries.empty? - end - - # Convert hourly data to monthly data as appropriate - num_days_in_month = Constants.NumDaysInMonths(2002) # Arbitrary non-leap year - fuels.each do |(fuel_type, _is_production), fuel| - next unless fuel_type != FT::Elec || (fuel_type == FT::Elec && !use_hourly_electricity) - - ts_data = fuel.timeseries.dup - fuel.timeseries = [] - start_day = 0 - num_days_in_month.each do |num_days| - fuel.timeseries << ts_data[start_day * 24..(start_day + num_days) * 24 - 1].sum - start_day += num_days - end - end - - return fuels - end - - def _bill_calcs(fuels, header, pv_systems, utility_bill_scenario) - runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) - output_format = 'csv' - output_path = File.join(File.dirname(__FILE__), "results_bills.#{output_format}") - - utility_rates, utility_bills = @measure.setup_utility_outputs() - @measure.get_utility_rates(@hpxml_path, fuels, utility_rates, utility_bill_scenario, pv_systems) - @measure.get_utility_bills(fuels, utility_rates, utility_bills, utility_bill_scenario, header) - - @measure.report_runperiod_output_results(runner, utility_bills, output_format, output_path, utility_bill_scenario.name) - - # Check written values exist and are registered - assert(File.exist?(@bills_csv)) - actual_bills = _get_actual_bills(@bills_csv) - - _check_for_runner_registered_values(runner, nil, actual_bills) - - return actual_bills - end - - def _test_measure(hpxml: nil, expected_errors: [], expected_warnings: []) - # Run measure via OSW - require 'json' - template_osw = File.join(File.dirname(__FILE__), '..', '..', 'workflow', 'template-run-hpxml.osw') - workflow = OpenStudio::WorkflowJSON.new(template_osw) - json = JSON.parse(workflow.to_s) - - # Update measure args - steps = OpenStudio::WorkflowStepVector.new - found_args = [] - json['steps'].each do |json_step| - step = OpenStudio::MeasureStep.new(json_step['measure_dir_name']) - json_step['arguments'].each do |json_arg_name, json_arg_val| - if @args_hash.keys.include? json_arg_name - # Override value - found_args << json_arg_name - json_arg_val = @args_hash[json_arg_name] - end - step.setArgument(json_arg_name, json_arg_val) - end - steps.push(step) - end - workflow.setWorkflowSteps(steps) - osw_path = File.join(File.dirname(template_osw), 'test.osw') - workflow.saveAs(osw_path) - assert_equal(@args_hash.size, found_args.size) - - # Run OSW - command = "#{OpenStudio.getOpenStudioCLI} run -w #{osw_path}" - cli_output = `#{command}` - - # Cleanup - File.delete(osw_path) - - bills_csv = File.join(File.dirname(template_osw), 'run', 'results_bills.csv') - - # Check warnings/errors - if not expected_errors.empty? - expected_errors.each do |expected_error| - assert(cli_output.include?("ERROR] #{expected_error}")) - end - end - if not expected_warnings.empty? - expected_warnings.each do |expected_warning| - assert(cli_output.include?("WARN] #{expected_warning}")) - end - end - - if !hpxml.nil? - return if hpxml.header.utility_bill_scenarios.empty? - elsif (not expected_errors.empty?) || (not expected_warnings.empty?) - return - end - - # Check written values exist and are registered - assert(File.exist?(bills_csv)) - actual_bills = _get_actual_bills(bills_csv) - - _check_for_runner_registered_values(nil, File.join(File.dirname(bills_csv), 'results.json'), actual_bills) - - return actual_bills - end - - def _get_actual_bills(bills_csv) - actual_bills = {} - File.readlines(bills_csv).each do |line| - next if line.strip.empty? - - key, value = line.split(',').map { |x| x.strip } - actual_bills[key] = Float(value) - end - return actual_bills - end - - def _check_for_runner_registered_values(runner, results_json, actual_bills) - if !runner.nil? - runner_bills = {} - runner.result.stepValues.each do |step_value| - runner_bills[step_value.name] = get_value_from_workflow_step_value(step_value) - end - elsif !results_json.nil? - require 'json' - runner_bills = JSON.parse(File.read(results_json)) - runner_bills = runner_bills['ReportUtilityBills'] - end - - actual_bills.each do |name, value| - name = OpenStudio::toUnderscoreCase(name).chomp('_') - - assert_includes(runner_bills.keys, name) - assert_equal(value, runner_bills[name]) - end - end -end diff --git a/example_files/resources/hpxml-measures/docs/requirements.txt b/example_files/resources/hpxml-measures/docs/requirements.txt new file mode 100644 index 00000000..2dd647c4 --- /dev/null +++ b/example_files/resources/hpxml-measures/docs/requirements.txt @@ -0,0 +1,5 @@ +Sphinx +sphinx_rtd_theme>=1.1.0 +sphinx-autobuild +sphinxcontrib-programoutput +sphinx_paramlinks \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/docs/source/conf.py b/example_files/resources/hpxml-measures/docs/source/conf.py index d1d139a1..a7f54645 100644 --- a/example_files/resources/hpxml-measures/docs/source/conf.py +++ b/example_files/resources/hpxml-measures/docs/source/conf.py @@ -74,9 +74,8 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -import sphinx_rtd_theme html_theme = 'sphinx_rtd_theme' -html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] +html_theme_path = ["_themes", ] # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the diff --git a/example_files/resources/hpxml-measures/docs/source/intro.rst b/example_files/resources/hpxml-measures/docs/source/intro.rst index 6ff6e7b6..7340826f 100644 --- a/example_files/resources/hpxml-measures/docs/source/intro.rst +++ b/example_files/resources/hpxml-measures/docs/source/intro.rst @@ -13,27 +13,10 @@ The OpenStudio measures used by the workflow are: #. ``ReportUtilityBills``: A reporting measure that generates utility bill outputs in CSV/JSON/MessagePack format. -Scope (Dwelling Units) ----------------------- +Building Type Scope +------------------- -The OpenStudio-HPXML workflow is intended to be used to model individual residential dwelling units -- either a single-family detached (SFD) building, or a single unit of a single-family attached (SFA) or multifamily (MF) building. -This approach was taken because: - -- It is required/desired for certain projects. -- It improves runtime speed by being able to simulate individual units in parallel (as opposed to simulating the entire building). -- It doesn't necessarily preclude the possibility of running a single integrated EnergyPlus simulation. - -To model units of SFA/MF buildings, current capabilities include: - -- Defining surfaces adjacent to generic SFA/MF spaces (e.g., "other housing unit" or "other multifamily buffer space"). -- Locating various building components (e.g., ducts, water heaters, appliances) in these SFA/MF spaces. -- Defining shared systems (HVAC, water heating, mechanical ventilation, etc.) by approximating the energy use attributed to the unit. - -Note that only the energy use attributed to each dwelling unit is calculated. -Other OpenStudio capabilities should be used to supplement this workflow if the energy use of non-residential dwelling spaces (e.g., gyms, elevators, corridors, etc.) are of interest. - -For situations where more complex, integrated modeling is required, it is possible to merge multiple OpenStudio models together into a single model, such that one could merge all residential OSMs together and potentially combine it with a commercial OSM. -That capability is outside the scope of this project. +See :ref:`hpxmlbuilding` for information on the types of buildings/simulations that OpenStudio-HPXML supports. Accuracy vs Speed ----------------- diff --git a/example_files/resources/hpxml-measures/docs/source/usage_instructions.rst b/example_files/resources/hpxml-measures/docs/source/usage_instructions.rst index ac3fdb8f..0481aff2 100644 --- a/example_files/resources/hpxml-measures/docs/source/usage_instructions.rst +++ b/example_files/resources/hpxml-measures/docs/source/usage_instructions.rst @@ -8,7 +8,7 @@ Setup To get started: -#. Download `OpenStudio 3.6.1 `_ and install the Command Line Interface/EnergyPlus/C++ API components, or use the `nrel/openstudio docker image `_. +#. Download `OpenStudio 3.7.0 `_ and install the Command Line Interface/EnergyPlus components, or use the `nrel/openstudio docker image `_. #. Download the `latest release `_. Running diff --git a/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst b/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst index d0e7d326..e41c7c76 100644 --- a/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst +++ b/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst @@ -29,13 +29,6 @@ HPXML files submitted to OpenStudio-HPXML undergo a two step validation process: OpenStudio-HPXML **automatically validates** the HPXML file against both the XSD and Schematron documents and reports any validation errors, but software developers may find it beneficial to also integrate validation into their software. -.. important:: - - Usage of both validation approaches (XSD and Schematron) is recommended for developers actively working on creating HPXML files for EnergyPlus simulations: - - - Validation against XSD for general correctness and usage of HPXML - - Validation against Schematron for understanding XML document requirements specific to running EnergyPlus - Input Defaults ************** @@ -56,7 +49,7 @@ Default values would be used for the refrigerator energy use, location, and sche - living space + conditioned space 691.0 true @@ -106,157 +99,6 @@ EnergyPlus simulation controls are entered in ``/HPXML/SoftwareInfo/extension/Si Values greater than 1.0 have the effect of smoothing or damping the rate of change in the indoor air temperature from timestep to timestep. This heat capacitance effect is modeled on top of any other individual mass inputs (e.g., furniture mass, partition wall mass, interior drywall, etc.) in the HPXML. -.. _hvac_sizing_control: - -HPXML HVAC Sizing Control -************************* - -HVAC equipment sizing controls are entered in ``/HPXML/SoftwareInfo/extension/HVACSizingControl``. - - ================================= ======== ===== =========== ======== ======== ============================================ - Element Type Units Constraints Required Default Description - ================================= ======== ===== =========== ======== ======== ============================================ - ``AllowIncreasedFixedCapacities`` boolean No false Logic for fixed capacity HVAC equipment [#]_ - ``HeatPumpSizingMethodology`` string See [#]_ No HERS Logic for autosized heat pumps [#]_ - ================================= ======== ===== =========== ======== ======== ============================================ - - .. [#] If AllowIncreasedFixedCapacities is true, the larger of user-specified fixed capacity and design load will be used (to reduce potential for unmet loads); otherwise user-specified fixed capacity is used. - .. [#] HeatPumpSizingMethodology choices are 'ACCA', 'HERS', or 'MaxLoad'. - .. [#] If HeatPumpSizingMethodology is 'ACCA', autosized heat pumps have their nominal capacity sized per ACCA Manual J/S based on cooling design loads, with some oversizing allowances for larger heating design loads. - If HeatPumpSizingMethodology is 'HERS', autosized heat pumps have their nominal capacity sized equal to the larger of heating/cooling design loads. - If HeatPumpSizingMethodology is 'MaxLoad', autosized heat pumps have their nominal capacity sized based on the larger of heating/cooling design loads, while taking into account the heat pump's reduced capacity at the design temperature. - -If any HVAC equipment is being autosized (i.e., capacities are not provided), additional inputs for ACCA Manual J can be entered in ``/HPXML/SoftwareInfo/extension/HVACSizingControl/ManualJInputs``. - - ================================= ======== ====== =========== ======== ============ ============================================ - Element Type Units Constraints Required Default Description - ================================= ======== ====== =========== ======== ============ ============================================ - ``HeatingDesignTemperature`` double F No See [#]_ Heating design temperature - ``CoolingDesignTemperature`` double F No See [#]_ Cooling design temperature - ``HeatingSetpoint`` double F No 70 Conditioned space heating setpoint [#]_ - ``CoolingSetpoint`` double F No 75 Conditioned space cooling setpoint [#]_ - ``HumiditySetpoint`` double frac 0 - 1 No See [#]_ Conditioned space relative humidity - ``InternalLoadsSensible`` double Btu/hr No See [#]_ Sensible internal loads for cooling design load - ``InternalLoadsLatent`` double Btu/hr No 0 Latent internal loads for cooling design load - ``NumberofOccupants`` integer No #Beds+1 [#]_ Number of occupants for cooling design load - ================================= ======== ====== =========== ======== ============ ============================================ - - .. [#] If HeatingDesignTemperature not provided, the 99% heating design temperature is obtained from the DESIGN CONDITIONS header section inside the EPW weather file. - If not available in the EPW header, it is calculated from the 8760 hourly temperatures in the EPW. - .. [#] If CoolingDesignTemperature not provided, the 1% cooling design temperature is obtained from the DESIGN CONDITIONS header section inside the EPW weather file. - If not available in the EPW header, it is calculated from the 8760 hourly temperatures in the EPW. - .. [#] Any heating setpoint other than 70F is not in compliance with Manual J. - .. [#] Any cooling setpoint other than 75F is not in compliance with Manual J. - .. [#] If HumiditySetpoint not provided, defaults to 0.5 unless there is a dehumidifier with a lower setpoint, in which case that value is used. - .. [#] If InternalLoadsSensible not provided, defaults to 2400 Btu/hr if there is one refrigerator and no freezer, or 3600 Btu/hr if two refrigerators or a freezer. - This default represents loads that normally occur during the early evening in mid-summer. - Additional adjustments or custom internal loads can instead be specified here. - .. [#] If NumberofOccupants not provided, defaults to the number of bedrooms plus one per Manual J. - Each occupant produces an additional 230 Btu/hr sensible load and 200 Btu/hr latent load. - -.. _shadingcontrol: - -HPXML Shading Control -********************* - -Shading controls for window and skylight summer/winter shading coefficients are entered in ``/HPXML/SoftwareInfo/extension/ShadingControl``. -If not provided, summer will be default based on the cooling season defined in the `2010 BAHSP `_, using monthly average temperatures. -The remainder of the year is winter. - - ==================================== ======== ======= ============= ======== ======= ===================================== - Element Type Units Constraints Required Default Description - ==================================== ======== ======= ============= ======== ======= ===================================== - ``SummerBeginMonth`` integer 1 - 12 Yes Summer shading start date - ``SummerBeginDayOfMonth`` integer 1 - 31 Yes Summer shading start date - ``SummerEndMonth`` integer 1 - 12 Yes Summer shading end date - ``SummerEndDayOfMonth`` integer 1 - 31 Yes Summer shading end date - ==================================== ======== ======= ============= ======== ======= ===================================== - -HPXML Schedules -*************** - -Schedules for a variety of building features can be 1) specified via simple inputs, 2) specified via detailed inputs, or 3) defaulted. -It is allowed to use simple, detailed, and defaulted values in the same HPXML run. - -Simple Schedule Inputs -~~~~~~~~~~~~~~~~~~~~~~ - -Simple schedule inputs are available as weekday/weekend fractions and monthly multipliers for a variety of building characteristics. -For example, see the ``WeekdayScheduleFractions``, ``WeekendScheduleFractions``, and ``MonthlyScheduleMultipliers`` inputs for :ref:`buildingoccupancy`. - -.. _detailedschedules: - -Detailed Schedule Inputs -~~~~~~~~~~~~~~~~~~~~~~~~ - -Detailed schedule inputs allow schedule values for every hour or timestep of the simulation. -They can be used to reflect real-world or stochastic occupancy. - -Detailed schedule inputs are provided via one or more CSV file that should be referenced in the HPXML file as ``/HPXML/SoftwareInfo/extension/SchedulesFilePath`` elements. -The column names available in the schedule CSV files are: - - =============================== ===== ================================================================================= =============================== - Column Name Units Description Can Be Stochastically Generated - =============================== ===== ================================================================================= =============================== - ``occupants`` frac Occupant heat gain schedule. Yes - ``lighting_interior`` frac Interior lighting energy use schedule. Yes - ``lighting_exterior`` frac Exterior lighting energy use schedule. No - ``lighting_garage`` frac Garage lighting energy use schedule. Yes - ``lighting_exterior_holiday`` frac Exterior holiday lighting energy use schedule. No - ``cooking_range`` frac Cooking range & oven energy use schedule. Yes - ``refrigerator`` frac Primary refrigerator energy use schedule. No - ``extra_refrigerator`` frac Non-primary refrigerator energy use schedule. No - ``freezer`` frac Freezer energy use schedule. No - ``dishwasher`` frac Dishwasher energy use schedule. Yes - ``clothes_washer`` frac Clothes washer energy use schedule. Yes - ``clothes_dryer`` frac Clothes dryer energy use schedule. Yes - ``ceiling_fan`` frac Ceiling fan energy use schedule. Yes - ``plug_loads_other`` frac Other plug load energy use schedule. Yes - ``plug_loads_tv`` frac Television plug load energy use schedule. Yes - ``plug_loads_vehicle`` frac Electric vehicle plug load energy use schedule. No - ``plug_loads_well_pump`` frac Well pump plug load energy use schedule. No - ``fuel_loads_grill`` frac Grill fuel load energy use schedule. No - ``fuel_loads_lighting`` frac Lighting fuel load energy use schedule. No - ``fuel_loads_fireplace`` frac Fireplace fuel load energy use schedule. No - ``pool_pump`` frac Pool pump energy use schedule. No - ``pool_heater`` frac Pool heater energy use schedule. No - ``hot_tub_pump`` frac Hot tub pump energy use schedule. No - ``hot_tub_heater`` frac Hot tub heater energy use schedule. No - ``hot_water_dishwasher`` frac Dishwasher hot water use schedule. Yes - ``hot_water_clothes_washer`` frac Clothes washer hot water use schedule. Yes - ``hot_water_fixtures`` frac Fixtures (sinks, showers, baths) hot water use schedule. Yes - ``heating_setpoint`` F Thermostat heating setpoint schedule. No - ``cooling_setpoint`` F Thermostat cooling setpoint schedule. No - ``water_heater_setpoint`` F Water heater setpoint schedule. No - ``water_heater_operating_mode`` 0/1 Heat pump water heater operating mode schedule. 0=hyrbid/auto, 1=heat pump only. No - ``battery`` frac Battery schedule. Positive for charging, negative for discharging. No - ``vacancy`` 0/1 Vacancy schedule. 0=occupied, 1=vacant. Automatically overrides other columns. N/A - ``outage`` 0/1 Power outage schedule. 0=power. 1=nopower. Automatically overrides other columns. N/A - =============================== ===== ================================================================================= =============================== - -Columns with units of `frac` must be normalized to MAX=1; that is, these schedules only define *when* energy is used, not *how much* energy is used. -In other words, the amount of energy or hot water used in each simulation timestep is essentially the schedule value divided by the sum of all schedule values in the column, multiplied by the annual energy or hot water use. -Example schedule CSV files are provided in the ``HPXMLtoOpenStudio/resources/schedule_files`` directory. - -The schedule file must have a full year of data even if the simulation is not an entire year. -Frequency of schedule values do not need to match the simulation timestep. -For example, hourly schedules can be used with a 10-minute simulation timestep, or 10-minute schedules can be used with an hourly simulation timestep. - -A detailed stochastic occupancy schedule CSV file can also be automatically generated for you (see "Can Be Stochastically Generated" above for applicable columns); see the :ref:`usage_instructions` for the commands. -Inputs for the stochastic schedule generator are entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/BuildingOccupancy/NumberofResidents`` and ``/HPXML/Building/Site/Address/StateCode``. -See :ref:`buildingoccupancy` and :ref:`buildingsite` for more information. - -.. warning:: - - For simulations with daylight saving enabled (which is the default), EnergyPlus will skip forward an hour in the CSV on the "spring forward" day and repeat an hour on the "fall back" day. - -Default Schedules -~~~~~~~~~~~~~~~~~ - -If neither simple nor detailed inputs are provided, then schedules are defaulted. -Default schedules are typically smooth, averaged schedules. -These default schedules are described elsewhere in the documentation (e.g., see :ref:`buildingoccupancy` for the default occupant heat gain schedule). - HPXML Emissions Scenarios ************************* @@ -334,7 +176,7 @@ If EmissionsType is "CO2e", "NOx" or "SO2" and a given fuel's emissions factor i wood pellets -- -- -- ============ ============== ============= ============= -Default values in lb/MBtu (million Btu) are from *Table 5.1.2(1) National Average Emission Factors for Household Fuels* from *ANSI/RESNET/ICCC 301 Standard for the Calculation and Labeling of the Energy Performance of Dwelling and Sleeping Units using an Energy Rating Index* and include both combustion and pre-combustion (e.g., methane leakage for natural gas) emissions. +Default values in lb/MBtu (million Btu) are from *Table 5.1.2(1) National Average Emission Factors for Household Fuels* from *ANSI/RESNET/ICC 301 Standard for the Calculation and Labeling of the Energy Performance of Dwelling and Sleeping Units using an Energy Rating Index* and include both combustion and pre-combustion (e.g., methane leakage for natural gas) emissions. If no default value is available, a warning will be issued. @@ -368,11 +210,12 @@ For simple utility rate structures, inputs can be entered using a fixed charge a Element Type Units Constraints Required Default Notes ================================ ======== ======= =========== ======== ======== ==================== ``FuelType`` string electricity Yes Fuel type - ``FixedCharge`` double $/month No 12.0 Monthly fixed charge + ``FixedCharge`` double $/month No 12.0 Monthly fixed charge [#]_ ``MarginalRate`` double $/kWh No See [#]_ Marginal flat rate ================================ ======== ======= =========== ======== ======== ==================== - .. [#] If MarginalRate not provided, defaults to state, regional, or national average based on EIA data that can be found at ``ReportUtilityBills/resources/Data/UtilityRates/Average_retail_price_of_electricity.csv``. + .. [#] If running :ref:`bldg_type_bldgs`, the fixed charge will apply to every dwelling unit in the building. + .. [#] If MarginalRate not provided, defaults to state, regional, or national average based on 2022 EIA data that can be found at ``ReportUtilityBills/resources/Data/UtilityRates/Average_retail_price_of_electricity.csv``. **Detailed** @@ -408,11 +251,15 @@ For each scenario, fuel rates can be optionally entered as an ``/HPXML/SoftwareI .. [#] FuelType choices are "natural gas", "propane", "fuel oil", "coal", "wood", and "wood pellets". .. [#] FixedCharge defaults to $12/month for natural gas and $0/month for other fuels. .. [#] MarginalRate units are $/therm for natural gas, $/gallon for propane and fuel oil, and $/kBtu for other fuels. - .. [#] | If MarginalRate not provided, defaults to state, regional, or national average based on EIA data that can be found at: - | - **natural gas**: ``ReportUtilityBills/resources/Data/UtilityRates/NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv`` - | - **propane**: ``ReportUtilityBills/resources/Data/UtilityRates/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv`` - | - **fuel oil**: ``ReportUtilityBills/resources/Data/UtilityRates/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv`` - | or defaults to $0.015/kBtu for other fuels. + .. [#] If MarginalRate not provided, defaults to state, regional, or national average based on 2022 EIA data that can be found at: + + \- **natural gas**: ``ReportUtilityBills/resources/Data/UtilityRates/NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv`` + + \- **propane**: ``ReportUtilityBills/resources/Data/UtilityRates/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv`` + + \- **fuel oil**: ``ReportUtilityBills/resources/Data/UtilityRates/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv`` + + or defaults to $0.015/kBtu for other fuels. PV Compensation ~~~~~~~~~~~~~~~ @@ -489,6 +336,63 @@ You can create an additional column in the CSV file to define another unavailabl It is not possible to eliminate all HVAC/DHW energy use (e.g. crankcase/defrost energy, water heater parasitics) in EnergyPlus during an unavailable period. +.. _hpxmlbuilding: + +HPXML Building +-------------- + +OpenStudio-HPXML can be used to model either individual residential :ref:`bldg_type_units` or :ref:`bldg_type_bldgs`. + +Each residential dwelling unit is entered in ``/HPXML/Building``. + + ========================= ====== ======= =========== ======== ======= ============================================== + Element Type Units Constraints Required Default Notes + ========================= ====== ======= =========== ======== ======= ============================================== + ``BuildingID`` id Yes Unique identifier + ========================= ====== ======= =========== ======== ======= ============================================== + +.. _bldg_type_units: + +Dwelling Units +************** + +The OpenStudio-HPXML workflow was originally developed to model individual residential dwelling units -- either a single-family detached (SFD) building, or a single unit of a single-family attached (SFA) or multifamily (MF) building. +This approach: + +- Is required/desired for certain applications (e.g., a Home Energy Score or an Energy Rating Index calculation). +- Improves runtime speed by being able to simulate individual units in parallel (as opposed to simulating the entire building). + +When modeling individual units of SFA/MF buildings, current capabilities include: + +- Defining surfaces adjacent to generic SFA/MF spaces (e.g., "other housing unit" or "other multifamily buffer space"), in which temperature profiles will be assumed (see :ref:`hpxmllocations`). +- Locating various building components (e.g., ducts, water heaters, appliances) in these SFA/MF spaces. +- Defining shared systems (HVAC, water heating, mechanical ventilation, etc.), in which individual systems are modeled with adjustments to approximate their energy use attributed to the unit. + +Note that only the energy use attributed to each dwelling unit is calculated. + +.. _bldg_type_bldgs: + +Whole SFA/MF Buildings +********************** + +As of OpenStudio-HPXML v1.7.0, a new capability was added for modeling whole SFA/MF buildings in a single combined simulation. + +For these simulations: + +- Each dwelling unit is described by a separate ``Building`` element in the HPXML file. +- To run the single combined simulation, specify the Building ID as 'ALL' in the run_simulation.rb script or OpenStudio workflow. +- Unit multipliers (using the ``NumberofUnits`` element) can be specified to model *unique* dwelling units, rather than *all* dwelling units, reducing simulation runtime. +- Adjacent SFA/MF common spaces are still modeled using assumed temperature profiles, not as separate thermal zones. +- Shared systems are still modeled as individual systems, not shared systems connected to multiple dwelling unit. + +Notes/caveats about this approach: + +- Some inputs (e.g., EPW location or ground conductivity) cannot vary across ``Building`` elements. +- Batteries are not currently supported. Dehumidifiers and ground-source heat pumps are only supported if ``NumberofUnits`` is 1. +- Utility bill calculations using detailed rates are not supported. + +Note that only the energy use for the entire building is calculated. + .. _buildingsite: HPXML Building Site @@ -575,10 +479,13 @@ Building occupancy is entered in ``/HPXML/Building/BuildingDetails/BuildingSumma ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers ======================================== ======== ===== =========== ======== ======== ======================== - .. [#] | If NumberofResidents not provided, an *asset* calculation is performed assuming standard occupancy, in which various end use defaults (e.g., plug loads, appliances, and hot water usage) are calculated based on NumberofBedrooms and ConditionedFloorArea per `ANSI/RESNET/ICC 301-2019 `_. - | If NumberofResidents is provided, an *operational* calculation is instead performed in which the end use defaults are adjusted using the relationship between NumberofBedrooms and NumberofResidents from `RECS 2015 `_: - | - **single-family detached or manufactured home**: NumberofBedrooms = -1.47 + 1.69 * NumberofResidents - | - **single-family attached or apartment unit**: NumberofBedrooms = -0.68 + 1.09 * NumberofResidents + .. [#] If NumberofResidents not provided, an *asset* calculation is performed assuming standard occupancy, in which various end use defaults (e.g., plug loads, appliances, and hot water usage) are calculated based on NumberofBedrooms and ConditionedFloorArea per `ANSI/RESNET/ICC 301-2019 `_. + If NumberofResidents is provided, an *operational* calculation is instead performed in which the end use defaults are adjusted using the relationship between NumberofBedrooms and NumberofResidents from `RECS 2015 `_: + + \- **single-family detached or manufactured home**: NumberofBedrooms = -1.47 + 1.69 * NumberofResidents + + \- **single-family attached or apartment unit**: NumberofBedrooms = -0.68 + 1.09 * NumberofResidents + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figures 25 of the `2010 BAHSP `_ are used: "0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061". .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values are used: "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0". @@ -591,6 +498,7 @@ Building construction is entered in ``/HPXML/Building/BuildingDetails/BuildingSu Element Type Units Constraints Required Default Notes ========================================================= ======== ========= ================================= ======== ======== ======================================================================= ``ResidentialFacilityType`` string See [#]_ Yes Type of dwelling unit + ``NumberofUnits`` integer >= 1 No 1 Unit multiplier [#]_ ``NumberofConditionedFloors`` double > 0 Yes Number of conditioned floors (including a conditioned basement; excluding a conditioned crawlspace) ``NumberofConditionedFloorsAboveGrade`` double > 0, <= NumberofConditionedFloors Yes Number of conditioned floors above grade (including a walkout basement) ``NumberofBedrooms`` integer >= 0 Yes Number of bedrooms @@ -600,10 +508,164 @@ Building construction is entered in ``/HPXML/Building/BuildingDetails/BuildingSu ========================================================= ======== ========= ================================= ======== ======== ======================================================================= .. [#] ResidentialFacilityType choices are "single-family detached", "single-family attached", "apartment unit", or "manufactured home". + .. [#] NumberofUnits defines the number of similar dwelling units represented by the HPXML ``Building`` element. + EnergyPlus simulation results will be multiplied by this value. + For example, when modeling :ref:`bldg_type_bldgs`, this allows modeling *unique* dwelling units, rather than *all* dwelling units, to reduce simulation runtime. .. [#] If NumberofBathrooms not provided, calculated as NumberofBedrooms/2 + 0.5 based on the `2010 BAHSP `_. .. [#] If neither ConditionedBuildingVolume nor AverageCeilingHeight provided, AverageCeilingHeight defaults to the lesser of 8.0 and InfiltrationVolume / ConditionedFloorArea. If needed, additional defaulting is performed using the following relationship: ConditionedBuildingVolume = ConditionedFloorArea * AverageCeilingHeight + ConditionedCrawlspaceVolume. +HPXML Schedules +*************** + +Schedules for a variety of building features can be 1) specified via simple inputs, 2) specified via detailed inputs, or 3) defaulted. +It is allowed to use simple, detailed, and defaulted values in the same HPXML run. + +Simple Schedule Inputs +~~~~~~~~~~~~~~~~~~~~~~ + +Simple schedule inputs are available as weekday/weekend fractions and monthly multipliers for a variety of building characteristics. +For example, see the ``WeekdayScheduleFractions``, ``WeekendScheduleFractions``, and ``MonthlyScheduleMultipliers`` inputs for :ref:`buildingoccupancy`. + +.. _detailedschedules: + +Detailed Schedule Inputs +~~~~~~~~~~~~~~~~~~~~~~~~ + +Detailed schedule inputs allow schedule values for every hour or timestep of the simulation. +They can be used to reflect real-world or stochastic occupancy. + +Detailed schedule inputs are provided via one or more CSV file that should be referenced in the HPXML file as ``/HPXML/Building/BuildingDetails/BuildingSummary/extension/SchedulesFilePath`` elements. +The column names available in the schedule CSV files are: + + =============================== ===== ================================================================================= =============================== + Column Name Units Description Can Be Stochastically Generated + =============================== ===== ================================================================================= =============================== + ``occupants`` frac Occupant heat gain schedule. Yes + ``lighting_interior`` frac Interior lighting energy use schedule. Yes + ``lighting_exterior`` frac Exterior lighting energy use schedule. No + ``lighting_garage`` frac Garage lighting energy use schedule. Yes + ``lighting_exterior_holiday`` frac Exterior holiday lighting energy use schedule. No + ``cooking_range`` frac Cooking range & oven energy use schedule. Yes + ``refrigerator`` frac Primary refrigerator energy use schedule. No + ``extra_refrigerator`` frac Non-primary refrigerator energy use schedule. No + ``freezer`` frac Freezer energy use schedule. No + ``dishwasher`` frac Dishwasher energy use schedule. Yes + ``clothes_washer`` frac Clothes washer energy use schedule. Yes + ``clothes_dryer`` frac Clothes dryer energy use schedule. Yes + ``ceiling_fan`` frac Ceiling fan energy use schedule. Yes + ``plug_loads_other`` frac Other plug load energy use schedule. Yes + ``plug_loads_tv`` frac Television plug load energy use schedule. Yes + ``plug_loads_vehicle`` frac Electric vehicle plug load energy use schedule. No + ``plug_loads_well_pump`` frac Well pump plug load energy use schedule. No + ``fuel_loads_grill`` frac Grill fuel load energy use schedule. No + ``fuel_loads_lighting`` frac Lighting fuel load energy use schedule. No + ``fuel_loads_fireplace`` frac Fireplace fuel load energy use schedule. No + ``pool_pump`` frac Pool pump energy use schedule. No + ``pool_heater`` frac Pool heater energy use schedule. No + ``permanent_spa_pump`` frac Permanent spa pump energy use schedule. No + ``permanent_spa_heater`` frac Permanent spa heater energy use schedule. No + ``hot_water_dishwasher`` frac Dishwasher hot water use schedule. Yes + ``hot_water_clothes_washer`` frac Clothes washer hot water use schedule. Yes + ``hot_water_fixtures`` frac Fixtures (sinks, showers, baths) hot water use schedule. Yes + ``heating_setpoint`` F Thermostat heating setpoint schedule. No + ``cooling_setpoint`` F Thermostat cooling setpoint schedule. No + ``water_heater_setpoint`` F Water heater setpoint schedule. No + ``water_heater_operating_mode`` 0/1 Heat pump water heater operating mode schedule. 0=hybrid/auto, 1=heat pump only. No + ``battery`` frac Battery schedule. Positive for charging, negative for discharging. No + ``vacancy`` 0/1 Vacancy schedule. 0=occupied, 1=vacant. Automatically overrides other columns. N/A + ``outage`` 0/1 Power outage schedule. 0=power. 1=nopower. Automatically overrides other columns. N/A + =============================== ===== ================================================================================= =============================== + +Columns with units of `frac` must be normalized to MAX=1; that is, these schedules only define *when* energy is used, not *how much* energy is used. +In other words, the amount of energy or hot water used in each simulation timestep is essentially the schedule value divided by the sum of all schedule values in the column, multiplied by the annual energy or hot water use. +Example schedule CSV files are provided in the ``HPXMLtoOpenStudio/resources/schedule_files`` directory. + +The schedule file must have a full year of data even if the simulation is not an entire year. +Frequency of schedule values do not need to match the simulation timestep. +For example, hourly schedules can be used with a 10-minute simulation timestep, or 10-minute schedules can be used with an hourly simulation timestep. + +A detailed stochastic occupancy schedule CSV file can also be automatically generated for you (see "Can Be Stochastically Generated" above for applicable columns); see the :ref:`usage_instructions` for the commands. +Inputs for the stochastic schedule generator are entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/BuildingOccupancy/NumberofResidents`` and ``/HPXML/Building/Site/Address/StateCode``. +See :ref:`buildingoccupancy` and :ref:`buildingsite` for more information. + +.. warning:: + + For simulations with daylight saving enabled (which is the default), EnergyPlus will skip forward an hour in the CSV on the "spring forward" day and repeat an hour on the "fall back" day. + +Default Schedules +~~~~~~~~~~~~~~~~~ + +If neither simple nor detailed inputs are provided, then schedules are defaulted. +Default schedules are typically smooth, averaged schedules. +These default schedules are described elsewhere in the documentation (e.g., see :ref:`buildingoccupancy` for the default occupant heat gain schedule). + +.. _hvac_sizing_control: + +HPXML HVAC Sizing Control +************************* + +HVAC equipment sizing controls are entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/extension/HVACSizingControl``. + + ================================= ======== ===== =========== ======== ======== ============================================ + Element Type Units Constraints Required Default Description + ================================= ======== ===== =========== ======== ======== ============================================ + ``AllowIncreasedFixedCapacities`` boolean No false Logic for fixed capacity HVAC equipment [#]_ + ``HeatPumpSizingMethodology`` string See [#]_ No HERS Logic for autosized heat pumps [#]_ + ================================= ======== ===== =========== ======== ======== ============================================ + + .. [#] If AllowIncreasedFixedCapacities is true, the larger of user-specified fixed capacity and design load will be used (to reduce potential for unmet loads); otherwise user-specified fixed capacity is used. + .. [#] HeatPumpSizingMethodology choices are 'ACCA', 'HERS', or 'MaxLoad'. + .. [#] If HeatPumpSizingMethodology is 'ACCA', autosized heat pumps have their nominal capacity sized per ACCA Manual J/S based on cooling design loads, with some oversizing allowances for larger heating design loads. + If HeatPumpSizingMethodology is 'HERS', autosized heat pumps have their nominal capacity sized equal to the larger of heating/cooling design loads. + If HeatPumpSizingMethodology is 'MaxLoad', autosized heat pumps have their nominal capacity sized based on the larger of heating/cooling design loads, while taking into account the heat pump's reduced capacity at the design temperature. + +If any HVAC equipment is being autosized (i.e., capacities are not provided), additional inputs for ACCA Manual J can be entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/extension/HVACSizingControl/ManualJInputs``. + + ================================= ======== ====== =========== ======== ============ ============================================ + Element Type Units Constraints Required Default Description + ================================= ======== ====== =========== ======== ============ ============================================ + ``HeatingDesignTemperature`` double F No See [#]_ Heating design temperature + ``CoolingDesignTemperature`` double F No See [#]_ Cooling design temperature + ``HeatingSetpoint`` double F No 70 Conditioned space heating setpoint [#]_ + ``CoolingSetpoint`` double F No 75 Conditioned space cooling setpoint [#]_ + ``HumiditySetpoint`` double frac 0 - 1 No See [#]_ Conditioned space relative humidity + ``InternalLoadsSensible`` double Btu/hr No See [#]_ Sensible internal loads for cooling design load + ``InternalLoadsLatent`` double Btu/hr No 0 Latent internal loads for cooling design load + ``NumberofOccupants`` integer No #Beds+1 [#]_ Number of occupants for cooling design load + ================================= ======== ====== =========== ======== ============ ============================================ + + .. [#] If HeatingDesignTemperature not provided, the 99% heating design temperature is obtained from the DESIGN CONDITIONS header section inside the EPW weather file. + If not available in the EPW header, it is calculated from the 8760 hourly temperatures in the EPW. + .. [#] If CoolingDesignTemperature not provided, the 1% cooling design temperature is obtained from the DESIGN CONDITIONS header section inside the EPW weather file. + If not available in the EPW header, it is calculated from the 8760 hourly temperatures in the EPW. + .. [#] Any heating setpoint other than 70F is not in compliance with Manual J. + .. [#] Any cooling setpoint other than 75F is not in compliance with Manual J. + .. [#] If HumiditySetpoint not provided, defaults to 0.5 unless there is a dehumidifier with a lower setpoint, in which case that value is used. + .. [#] If InternalLoadsSensible not provided, defaults to 2400 Btu/hr if there is one refrigerator and no freezer, or 3600 Btu/hr if two refrigerators or a freezer. + This default represents loads that normally occur during the early evening in mid-summer. + Additional adjustments or custom internal loads can instead be specified here. + .. [#] If NumberofOccupants not provided, defaults to the number of bedrooms plus one per Manual J. + Each occupant produces an additional 230 Btu/hr sensible load and 200 Btu/hr latent load. + +.. _shadingcontrol: + +HPXML Shading Control +********************* + +Shading controls for window and skylight summer/winter shading coefficients are entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/extension/ShadingControl``. +If not provided, summer will be default based on the cooling season defined in the `2010 BAHSP `_, using monthly average temperatures. +The remainder of the year is winter. + + ==================================== ======== ======= ============= ======== ======= ===================================== + Element Type Units Constraints Required Default Description + ==================================== ======== ======= ============= ======== ======= ===================================== + ``SummerBeginMonth`` integer 1 - 12 Yes Summer shading start date + ``SummerBeginDayOfMonth`` integer 1 - 31 Yes Summer shading start date + ``SummerEndMonth`` integer 1 - 12 Yes Summer shading end date + ``SummerEndDayOfMonth`` integer 1 - 31 Yes Summer shading end date + ==================================== ======== ======= ============= ======== ======= ===================================== + HPXML Climate Zones ------------------- @@ -761,10 +823,13 @@ The presence of a flue or chimney with combustion air from conditioned space can ``extension/HasFlueOrChimneyInConditionedSpace`` boolean No See [#]_ Flue or chimney with combustion air from conditioned space ================================================ ======= ===== =========== ========= ======== =============================================== - .. [#] | If HasFlueOrChimneyInConditionedSpace not provided, defaults to true if any of the following conditions are met, otherwise false: - | - heating system is non-electric Furnace, Boiler, WallFurnace, FloorFurnace, Stove, PortableHeater, or FixedHeater located in conditioned space and AFUE/Percent is less than 0.89, - | - heating system is non-electric Fireplace located in conditioned space, or - | - water heater is non-electric with energy factor (or equivalent calculated from uniform energy factor) less than 0.63 and located in conditioned space. + .. [#] If HasFlueOrChimneyInConditionedSpace not provided, defaults to true if any of the following conditions are met, otherwise false: + + \- heating system is non-electric Furnace, Boiler, WallFurnace, FloorFurnace, Stove, or SpaceHeater located in conditioned space and AFUE/Percent is less than 0.89, + + \- heating system is non-electric Fireplace located in conditioned space, or + + \- water heater is non-electric with energy factor (or equivalent calculated from uniform energy factor) less than 0.63 and located in conditioned space. HPXML Attics ************ @@ -796,6 +861,12 @@ If the dwelling unit has a vented crawlspace, crawlspace ventilation information .. [#] UnitofMeasure only choice is "SLA" (specific leakage area). .. [#] Value default based on `ANSI/RESNET/ICC 301-2019 `_. +If the dwelling has a manufactured home belly-and-wing foundation, whether a +skirt is present can be optionally entered in +``/HPXML/Building/BuildingDetails/Enclosure/Foundations/Foundation/FoundationType/BellyAndWing/SkirtPresent``. +The default, if that value is missing, is to assume there is a skirt present and +the floors above that foundation do not have exposure to the wind. + HPXML Roofs *********** @@ -822,25 +893,35 @@ For a multifamily building where the dwelling unit has another dwelling unit abo ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ ====================================== ================= ================ ===================== ========= ============================== ================================== - .. [#] InteriorAdjacentTo choices are "attic - vented", "attic - unvented", "living space", or "garage". + .. [#] InteriorAdjacentTo choices are "attic - vented", "attic - unvented", "conditioned space", or "garage". See :ref:`hpxmllocations` for descriptions. .. [#] Orientation choices are "northeast", "east", "southeast", "south", "southwest", "west", "northwest", or "north" .. [#] If neither Azimuth nor Orientation provided, and it's a *pitched* roof, modeled as four surfaces of equal area facing every direction. Azimuth/Orientation is irrelevant for *flat* roofs. .. [#] RoofType choices are "asphalt or fiberglass shingles", "wood shingles or shakes", "shingles", "slate or tile shingles", "metal surfacing", "plastic/rubber/synthetic sheeting", "expanded polystyrene sheathing", "concrete", or "cool roof". .. [#] RoofColor choices are "light", "medium", "medium dark", "dark", or "reflective". - .. [#] | If SolarAbsorptance not provided, defaults based on RoofType and RoofColor: - | - **asphalt or fiberglass shingles**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50 - | - **wood shingles or shakes**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50 - | - **shingles**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50 - | - **slate or tile shingles**: dark=0.90, medium dark=0.83, medium=0.75, light=0.60, reflective=0.30 - | - **metal surfacing**: dark=0.90, medium dark=0.83, medium=0.75, light=0.60, reflective=0.30 - | - **plastic/rubber/synthetic sheeting**: dark=0.90, medium dark=0.83, medium=0.75, light=0.60, reflective=0.30 - | - **expanded polystyrene sheathing**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50 - | - **concrete**: dark=0.90, medium dark=0.83, medium=0.75, light=0.65, reflective=0.50 - | - **cool roof**: 0.30 + .. [#] If SolarAbsorptance not provided, defaults based on RoofType and RoofColor: + + \- **asphalt or fiberglass shingles**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50 + + \- **wood shingles or shakes**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50 + + \- **shingles**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50 + + \- **slate or tile shingles**: dark=0.90, medium dark=0.83, medium=0.75, light=0.60, reflective=0.30 + + \- **metal surfacing**: dark=0.90, medium dark=0.83, medium=0.75, light=0.60, reflective=0.30 + + \- **plastic/rubber/synthetic sheeting**: dark=0.90, medium dark=0.83, medium=0.75, light=0.60, reflective=0.30 + + \- **expanded polystyrene sheathing**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50 + + \- **concrete**: dark=0.90, medium dark=0.83, medium=0.75, light=0.65, reflective=0.50 + + \- **cool roof**: 0.30 + .. [#] InteriorFinish/Type choices are "gypsum board", "gypsum composite board", "plaster", "wood", "other", or "none". - .. [#] InteriorFinish/Type defaults to "gypsum board" if InteriorAdjacentTo is living space, otherwise "none". + .. [#] InteriorFinish/Type defaults to "gypsum board" if InteriorAdjacentTo is conditioned space, otherwise "none". .. [#] AssemblyEffectiveRValue includes all material layers, interior/exterior air films, and insulation installation grade. HPXML Rim Joists @@ -865,25 +946,31 @@ Each rim joist surface (i.e., the perimeter of floor joists typically found betw .. [#] ExteriorAdjacentTo choices are "outside", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. - .. [#] InteriorAdjacentTo choices are "living space", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", or "garage". + .. [#] InteriorAdjacentTo choices are "conditioned space", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", or "garage". See :ref:`hpxmllocations` for descriptions. .. [#] Orientation choices are "northeast", "east", "southeast", "south", "southwest", "west", "northwest", or "north" .. [#] If neither Azimuth nor Orientation provided, and it's an *exterior* rim joist, modeled as four surfaces of equal area facing every direction. Azimuth/Orientation is irrelevant for *interior* rim joists. .. [#] Siding choices are "wood siding", "vinyl siding", "stucco", "fiber cement siding", "brick veneer", "aluminum siding", "masonite siding", "composite shingle siding", "asbestos siding", "synthetic stucco", or "none". .. [#] Color choices are "light", "medium", "medium dark", "dark", or "reflective". - .. [#] | If SolarAbsorptance not provided, defaults based on Color: - | - **dark**: 0.95 - | - **medium dark**: 0.85 - | - **medium**: 0.70 - | - **light**: 0.50 - | - **reflective**: 0.30 + .. [#] If SolarAbsorptance not provided, defaults based on Color: + + \- **dark**: 0.95 + + \- **medium dark**: 0.85 + + \- **medium**: 0.70 + + \- **light**: 0.50 + + \- **reflective**: 0.30 + .. [#] AssemblyEffectiveRValue includes all material layers, interior/exterior air films, and insulation installation grade. HPXML Walls *********** -Each wall surface not attached to a foundation space is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Walls/Wall``. +Each wall surface is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Walls/Wall``. ====================================== ================= ================ ===================== ============= =========== ==================================== Element Type Units Constraints Required Default Notes @@ -905,28 +992,35 @@ Each wall surface not attached to a foundation space is entered as an ``/HPXML/B .. [#] ExteriorAdjacentTo choices are "outside", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. - .. [#] InteriorAdjacentTo choices are "living space", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", or "garage". + .. [#] InteriorAdjacentTo choices are "conditioned space", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", or "garage". See :ref:`hpxmllocations` for descriptions. .. [#] WallType child element choices are ``WoodStud``, ``DoubleWoodStud``, ``ConcreteMasonryUnit``, ``StructuralInsulatedPanel``, ``InsulatedConcreteForms``, ``SteelFrame``, ``SolidConcrete``, ``StructuralBrick``, ``StrawBale``, ``Stone``, ``LogWall``, or ``Adobe``. .. [#] Orientation choices are "northeast", "east", "southeast", "south", "southwest", "west", "northwest", or "north" .. [#] If neither Azimuth nor Orientation provided, and it's an *exterior* wall, modeled as four surfaces of equal area facing every direction. - Azimuth/Orientation is irrelevant for *interior* walls (e.g., between living space and garage). + Azimuth/Orientation is irrelevant for *interior* walls (e.g., between conditioned space and garage). .. [#] Siding choices are "wood siding", "vinyl siding", "stucco", "fiber cement siding", "brick veneer", "aluminum siding", "masonite siding", "composite shingle siding", "asbestos siding", "synthetic stucco", or "none". .. [#] Color choices are "light", "medium", "medium dark", "dark", or "reflective". - .. [#] | If SolarAbsorptance not provided, defaults based on Color: - | - **dark**: 0.95 - | - **medium dark**: 0.85 - | - **medium**: 0.70 - | - **light**: 0.50 - | - **reflective**: 0.30 + .. [#] If SolarAbsorptance not provided, defaults based on Color: + + \- **dark**: 0.95 + + \- **medium dark**: 0.85 + + \- **medium**: 0.70 + + \- **light**: 0.50 + + \- **reflective**: 0.30 + .. [#] InteriorFinish/Type choices are "gypsum board", "gypsum composite board", "plaster", "wood", "other", or "none". - .. [#] InteriorFinish/Type defaults to "gypsum board" if InteriorAdjacentTo is living space or basement - conditioned, otherwise "none". + .. [#] InteriorFinish/Type defaults to "gypsum board" if InteriorAdjacentTo is conditioned space or basement - conditioned, otherwise "none". .. [#] AssemblyEffectiveRValue includes all material layers, interior/exterior air films, and insulation installation grade. HPXML Foundation Walls ********************** -Each wall surface attached to a foundation space is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall``. +Each foundation wall surface is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall``. +Any wall surface in contact with the ground is considered a foundation wall. ============================================================== ================= ================ =================== ========= ============== ==================================== Element Type Units Constraints Required Default Notes @@ -1000,14 +1094,18 @@ Each floor/ceiling surface that is not in contact with the ground (Slab) nor adj ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_ ====================================== ======== ============ =========== ======== ======== ============================ - .. [#] ExteriorAdjacentTo choices are "outside", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". + .. [#] ExteriorAdjacentTo choices are "outside", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", or "manufactured home underbelly". See :ref:`hpxmllocations` for descriptions. - .. [#] InteriorAdjacentTo choices are "living space", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", or "garage". + .. [#] InteriorAdjacentTo choices are "conditioned space", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", or "garage". See :ref:`hpxmllocations` for descriptions. .. [#] FloorType child element choices are ``WoodFrame``, ``StructuralInsulatedPanel``, ``SteelFrame``, or ``SolidConcrete``. .. [#] InteriorFinish/Type choices are "gypsum board", "gypsum composite board", "plaster", "wood", "other", or "none". - .. [#] InteriorFinish/Type defaults to "gypsum board" if InteriorAdjacentTo is living space and the surface is a ceiling, otherwise "none". - .. [#] AssemblyEffectiveRValue includes all material layers, interior/exterior air films, and insulation installation grade. + .. [#] InteriorFinish/Type defaults to "gypsum board" if InteriorAdjacentTo is conditioned space and the surface is a ceiling, otherwise "none". + .. [#] AssemblyEffectiveRValue includes all material layers, interior/exterior + air films, and insulation installation grade. For a manufactured home belly + where the area of the belly wrap is different and usually greater than the + floor area, the AssemblyEffectiveRValue should be adjusted to account for + the surface area of the belly wrap and insulation. For floors adjacent to "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space", additional information is entered in ``Floor``. @@ -1032,7 +1130,7 @@ Each space type that borders the ground (i.e., basement, crawlspace, garage, and ``Area`` double ft2 > 0 Yes Gross area ``Thickness`` double in >= 0 No See [#]_ Thickness [#]_ ``ExposedPerimeter`` double ft >= 0 Yes Perimeter exposed to ambient conditions [#]_ - ``DepthBelowGrade`` double ft >= 0 See [#]_ Depth from the top of the slab surface to grade + ``DepthBelowGrade`` double ft >= 0 No See [#]_ Depth from the top of the slab surface to grade ``PerimeterInsulation/SystemIdentifier`` id Yes Unique identifier ``PerimeterInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of vertical insulation ``PerimeterInsulation/Layer/InsulationDepth`` double ft >= 0 Yes Depth from top of slab to bottom of vertical insulation @@ -1044,14 +1142,14 @@ Each space type that borders the ground (i.e., basement, crawlspace, garage, and ``extension/CarpetRValue`` double F-ft2-hr/Btu >= 0 No See [#]_ Carpet R-value ======================================================= ======== ============ =========== ========= ======== ==================================================== - .. [#] InteriorAdjacentTo choices are "living space", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", or "garage". + .. [#] InteriorAdjacentTo choices are "conditioned space", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", or "garage". See :ref:`hpxmllocations` for descriptions. .. [#] If Thickness not provided, defaults to 0 when adjacent to crawlspace and 4 inches for all other cases. .. [#] For a crawlspace with a dirt floor, enter a thickness of zero. .. [#] ExposedPerimeter includes any slab length that falls along the perimeter of the building's footprint (i.e., is exposed to ambient conditions). So a basement slab edge adjacent to a garage or crawlspace, for example, should not be included. - .. [#] DepthBelowGrade only required if the attached foundation has no ``FoundationWalls``. - For foundation types with walls, the the slab's position relative to grade is determined by the ``FoundationWall/DepthBelowGrade`` value. + .. [#] If DepthBelowGrade not provided, defaults to zero for foundation types without walls. + For foundation types with walls, DepthBelowGrade is ignored as the slab's position relative to grade is determined by the ``FoundationWall/DepthBelowGrade`` value(s). .. [#] InsulationWidth only required if InsulationSpansEntireSlab=true is not provided. .. [#] InsulationSpansEntireSlab=true only required if InsulationWidth is not provided. .. [#] If CarpetFraction not provided, defaults to 0.8 when adjacent to conditioned space, otherwise 0.0. @@ -1087,17 +1185,21 @@ Each window or glass door area is entered as an ``/HPXML/Building/BuildingDetail .. [#] Summer vs winter shading seasons are determined per :ref:`shadingcontrol`. .. [#] InteriorShading/SummerShadingCoefficient default value indicates 30% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 `_. .. [#] InteriorShading/WinterShadingCoefficient default value indicates 15% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 `_. - .. [#] | GlassType choices are "clear" or "low-e". The ``UFactor`` and ``SHGC`` of the window will be adjusted depending on the ``GlassType``, based on correlations derived using `data reported by PNNL `_. - | - **clear storm windows**: U-factor = U-factor of base window - (0.6435 * U-factor of base window - 0.1533); SHGC = 0.9 * SHGC of base window - | - **low-e storm windows**: U-factor = U-factor of base window - (0.766 * U-factor of base window - 0.1532); SHGC = 0.8 * SHGC of base window - | Note that a storm window is not allowed for a window with U-factor lower than 0.45. + .. [#] GlassType choices are "clear" or "low-e". The ``UFactor`` and ``SHGC`` of the window will be adjusted depending on the ``GlassType``, based on correlations derived using `data reported by PNNL `_. + + \- **clear storm windows**: U-factor = U-factor of base window - (0.6435 * U-factor of base window - 0.1533); SHGC = 0.9 * SHGC of base window + + \- **low-e storm windows**: U-factor = U-factor of base window - (0.766 * U-factor of base window - 0.1532); SHGC = 0.8 * SHGC of base window + + Note that a storm window is not allowed for a window with U-factor lower than 0.45. + .. [#] FractionOperable reflects whether the windows are operable (can be opened), not how they are used by the occupants. If a ``Window`` represents a single window, the value should be 0 or 1. If a ``Window`` represents multiple windows (e.g., 4), the value should be between 0 and 1 (e.g., 0, 0.25, 0.5, 0.75, or 1). The total open window area for natural ventilation is calculated using A) the operable fraction, B) the assumption that 50% of the area of operable windows can be open, and C) the assumption that 20% of that openable area is actually opened by occupants whenever outdoor conditions are favorable for cooling. .. [#] AttachedToWall must reference a ``Wall`` or ``FoundationWall``. -If operable windows are defined, the availability of natural ventilation is entered in ``/HPXML/SoftwareInfo/extension``. +If operable windows are defined, the availability of natural ventilation is entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/extension``. ============================================= ======== ========= =========== ======== ======== ======================================================== Element Type Units Constraints Required Default Notes @@ -1191,10 +1293,14 @@ Each skylight is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Skyli .. [#] Orientation choices are "northeast", "east", "southeast", "south", "southwest", "west", "northwest", or "north" .. [#] GlassLayers choices are "single-pane", "double-pane", or "triple-pane". .. [#] Summer vs winter shading seasons are determined per :ref:`shadingcontrol`. - .. [#] | GlassType choices are "clear" or "low-e". The ``UFactor`` and ``SHGC`` of the skylight will be adjusted depending on the ``GlassType``, based on correlations derived using `data reported by PNNL `_. - | - **clear storm windows**: U-factor = U-factor of base window - (0.6435 * U-factor of base window - 0.1533); SHGC = 0.9 * SHGC of base window - | - **low-e storm windows**: U-factor = U-factor of base window - (0.766 * U-factor of base window - 0.1532); SHGC = 0.8 * SHGC of base window - | Note that a storm window is not allowed for a skylight with U-factor lower than 0.45. + .. [#] GlassType choices are "clear" or "low-e". The ``UFactor`` and ``SHGC`` of the skylight will be adjusted depending on the ``GlassType``, based on correlations derived using `data reported by PNNL `_. + + \- **clear storm windows**: U-factor = U-factor of base window - (0.6435 * U-factor of base window - 0.1533); SHGC = 0.9 * SHGC of base window + + \- **low-e storm windows**: U-factor = U-factor of base window - (0.766 * U-factor of base window - 0.1532); SHGC = 0.8 * SHGC of base window + + Note that a storm window is not allowed for a skylight with U-factor lower than 0.45. + .. [#] AttachedToRoof must reference a ``Roof``. If UFactor and SHGC are not provided and GlassLayers is not "glass block", additional information is entered in ``Skylight``. @@ -1320,18 +1426,24 @@ Each heating system (other than a heat pump) is entered as an ``/HPXML/Building/ ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ See [#]_ Fraction of heating load served ================================= ======== ====== =========== ======== ============== =============================== - .. [#] UnitLocation choices are "living space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", or "unconditioned space". - .. [#] | If UnitLocation not provided, defaults based on the distribution system: - | - **none**: "living space" - | - **air**: supply duct location with the largest area, otherwise "living space" - | - **hydronic**: same default logic as :ref:`waterheatingsystems` - | - **dse**: "living space" if ``FractionHeatLoadServed`` is 1, otherwise "unconditioned space" - .. [#] HeatingSystemType child element choices are ``ElectricResistance``, ``Furnace``, ``WallFurnace``, ``FloorFurnace``, ``Boiler``, ``Stove``, ``PortableHeater``, ``FixedHeater``, or ``Fireplace``. + .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". + .. [#] If UnitLocation not provided, defaults based on the distribution system: + + \- **none**: "conditioned space" + + \- **air**: supply duct location with the largest area, otherwise "conditioned space" + + \- **hydronic**: same default logic as :ref:`waterheatingsystems` + + \- **dse**: "conditioned space" if ``FractionHeatLoadServed`` is 1, otherwise "unconditioned space" + + .. [#] HeatingSystemType child element choices are ``ElectricResistance``, ``Furnace``, ``WallFurnace``, ``FloorFurnace``, ``Boiler``, ``Stove``, ``SpaceHeater``, or ``Fireplace``. .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". For ``ElectricResistance``, "electricity" is required. .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load. .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] FractionHeatLoadServed is required unless the heating system is a heat pump backup system (i.e., referenced by a ``HeatPump[BackupType="separate"]/BackupSystem``; see :ref:`hvac_heatpump`), in which case FractionHeatLoadServed is not allowed. + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. Electric Resistance ~~~~~~~~~~~~~~~~~~~ @@ -1428,9 +1540,11 @@ If an in-unit boiler if specified, additional information is entered in ``Heatin ``ElectricAuxiliaryEnergy`` double kWh/yr >= 0 No See [#]_ Electric auxiliary energy =========================== ======== ====== =========== ======== ======== ========================= - .. [#] | If ElectricAuxiliaryEnergy not provided, defaults as follows: - | - **Oil boiler**: 330 kWh/yr - | - **Gas boiler**: 170 kWh/yr + .. [#] If ElectricAuxiliaryEnergy not provided, defaults as follows: + + \- **Oil boiler**: 330 kWh/yr + + \- **Gas boiler**: 170 kWh/yr If instead a shared boiler is specified, additional information is entered in ``HeatingSystem``. @@ -1442,10 +1556,14 @@ If instead a shared boiler is specified, additional information is entered in `` ``ElectricAuxiliaryEnergy`` or ``extension/FanCoilWatts`` double kWh/yr or W >= 0 No [#]_ Electric auxiliary energy or fan coil power ============================================================ ======== =========== =========== ======== ======== ========================= - .. [#] | If ElectricAuxiliaryEnergy nor SharedLoopWatts provided, defaults as follows: - | - **Shared boiler w/ baseboard**: 220 kWh/yr - | - **Shared boiler w/ water loop heat pump**: 265 kWh/yr - | - **Shared boiler w/ fan coil**: 438 kWh/yr + .. [#] If ElectricAuxiliaryEnergy nor SharedLoopWatts provided, defaults as follows: + + \- **Shared boiler w/ baseboard**: 220 kWh/yr + + \- **Shared boiler w/ water loop heat pump**: 265 kWh/yr + + \- **Shared boiler w/ fan coil**: 438 kWh/yr + .. [#] FanCoilWatts only used if boiler connected to fan coil and SharedLoopWatts provided. Stove @@ -1462,10 +1580,10 @@ If a stove is specified, additional information is entered in ``HeatingSystem``. ``extension/FanPowerWatts`` double W >= 0 No 40 Fan power ==================================================== ======= ====== =========== ======== ========= =================== -Portable/Fixed Heater -~~~~~~~~~~~~~~~~~~~~~ +Space Heater +~~~~~~~~~~~~ -If a portable heater or fixed heater is specified, additional information is entered in ``HeatingSystem``. +If a space heater (portable or fixed) is specified, additional information is entered in ``HeatingSystem``. ================================================== ====== ===== =========== ======== ========= =================== Element Type Units Constraints Required Default Notes @@ -1505,11 +1623,15 @@ Each cooling system (other than a heat pump) is entered as an ``/HPXML/Building/ ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served ========================== ======== ====== =========== ======== ======== =============================== - .. [#] UnitLocation choices are "living space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", or "unconditioned space". - .. [#] | If UnitLocation not provided, defaults based on the distribution system: - | - **none**: "living space" - | - **air**: supply duct location with the largest area, otherwise "living space" - | - **dse**: "living space" if ``FractionCoolLoadServed`` is 1, otherwise "unconditioned space" + .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". + .. [#] If UnitLocation not provided, defaults based on the distribution system: + + \- **none**: "conditioned space" + + \- **air**: supply duct location with the largest area, otherwise "conditioned space" + + \- **dse**: "conditioned space" if ``FractionCoolLoadServed`` is 1, otherwise "unconditioned space" + .. [#] CoolingSystemType choices are "central air conditioner", "room air conditioner", "evaporative cooler", "mini-split", "chiller", "cooling tower", or "packaged terminal air conditioner". .. [#] CoolingSystemFuel only choice is "electricity". .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. @@ -1519,26 +1641,28 @@ Central Air Conditioner If a central air conditioner is specified, additional information is entered in ``CoolingSystem``. - ================================================================ ====== =========== =========== ======== ============== =========================================================== - Element Type Units Constraints Required Default Notes - ================================================================ ====== =========== =========== ======== ============== =========================================================== - ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system - ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh or # > 0 Yes Rated efficiency [#]_ - ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity - ``SensibleHeatFraction`` double frac 0 - 1 No See [#]_ Sensible heat fraction - ``CompressorType`` string See [#]_ No See [#]_ Type of compressor - ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed [#]_ - ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_ - ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ - ``extension/CrankcaseHeaterPowerWatts`` double W No 50.0 Crankcase heater power - ================================================================ ====== =========== =========== ======== ============== =========================================================== + ================================================================ ======= =========== =========== ======== ============== =========================================================== + Element Type Units Constraints Required Default Notes + ================================================================ ======= =========== =========== ======== ============== =========================================================== + ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity + ``CompressorType`` string See [#]_ No See [#]_ Type of compressor + ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh or # > 0 Yes Rated efficiency [#]_ + ``SensibleHeatFraction`` double frac 0 - 1 No See [#]_ Sensible heat fraction + ``CoolingDetailedPerformanceData`` element No Cooling detailed performance data [#]_ + ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed [#]_ + ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_ + ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ + ``extension/CrankcaseHeaterPowerWatts`` double W No 50.0 Crankcase heater power + ================================================================ ======= =========== =========== ======== ============== =========================================================== .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE. - .. [#] If SEER2 provided, converted to SEER using ANSI/RESNET/ICC 301-2022 Addendum C, where SEER = SEER2 / 0.95 (assumed to be a split system). .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load. - .. [#] If not provided, defaults to 0.73 for single/two stage and 0.78 for variable speed. .. [#] CompressorType choices are "single stage", "two stage", or "variable speed". .. [#] If CompressorType not provided, defaults to "single stage" if SEER <= 15, else "two stage" if SEER <= 21, else "variable speed". + .. [#] If SEER2 provided, converted to SEER using ANSI/RESNET/ICC 301-2022 Addendum C, where SEER = SEER2 / 0.95 (assumed to be a split system). + .. [#] If SensibleHeatFraction not provided, defaults to 0.73 for single/two stage and 0.78 for variable speed. + .. [#] If CoolingDetailedPerformanceData is provided, see :ref:`clg_detailed_perf_data`. .. [#] If FanPowerWattsPerCFM not provided, defaults to using attached furnace W/cfm if available, else 0.5 W/cfm if SEER <= 13.5, else 0.375 W/cfm. .. [#] If there is a heating system attached to the DistributionSystem, the heating and cooling systems cannot have different values for FanPowerWattsPerCFM. .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect. @@ -1555,15 +1679,15 @@ If a room air conditioner is specified, additional information is entered in ``C ================================================================== ====== ====== =========== ======== ============== ============================================ Element Type Units Constraints Required Default Notes ================================================================== ====== ====== =========== ======== ============== ============================================ - ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity + ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency ``SensibleHeatFraction`` double frac 0 - 1 No 0.65 Sensible heat fraction ``IntegratedHeatingSystemFuel`` string See [#]_ No Fuel type of integrated heater ``extension/CrankcaseHeaterPowerWatts`` double W No 0.0 Crankcase heater power ================================================================== ====== ====== =========== ======== ============== ============================================ - .. [#] IntegratedHeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load. + .. [#] IntegratedHeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". If the room air conditioner has integrated heating, additional information is entered in ``CoolingSystem``. Note that a room air conditioner with reverse cycle heating should be entered as a heat pump; see :ref:`room_ac_reverse_cycle`. @@ -1587,8 +1711,8 @@ If a PTAC is specified, additional information is entered in ``CoolingSystem``. ================================================================== ====== ====== =========== ======== ============== ========================================== Element Type Units Constraints Required Default Notes ================================================================== ====== ====== =========== ======== ============== ========================================== - ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity + ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency ``SensibleHeatFraction`` double frac 0 - 1 No 0.65 Sensible heat fraction ``IntegratedHeatingSystemFuel`` string See [#]_ No Fuel type of integrated heater ``extension/CrankcaseHeaterPowerWatts`` double W No 0.0 Crankcase heater power @@ -1623,7 +1747,7 @@ If an evaporative cooler is specified, additional information is entered in ``Co ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity ================================= ======== ====== =========== ======== ============== ================================== - .. [#] If provided, HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE. + .. [#] If DistributionSystem provided, HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE. .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load. Mini-Split Air Conditioner @@ -1635,18 +1759,22 @@ If a mini-split air conditioner is specified, additional information is entered Element Type Units Constraints Required Default Notes ================================================================ ======== ====== =========== ======== ============== =========================================================== ``DistributionSystem`` idref See [#]_ No ID of attached distribution system - ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency [#]_ ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity + ``CompressorType`` string See [#]_ No variable speed Type of compressor + ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency [#]_ ``SensibleHeatFraction`` double frac 0 - 1 No 0.73 Sensible heat fraction + ``CoolingDetailedPerformanceData`` element No Cooling detailed performance data [#]_ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_ ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ ``extension/CrankcaseHeaterPowerWatts`` double W No 50.0 Crankcase heater power ================================================================ ======== ====== =========== ======== ============== =========================================================== - .. [#] If provided, HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE. - .. [#] If SEER2 provided, converted to SEER using ANSI/RESNET/ICC 301-2022 Addendum C, where SEER = SEER2 / 0.95 if ducted and SEER = SEER2 if ductless. + .. [#] If DistributionSystem provided, HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE. .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load. + .. [#] CompressorType only choices is "variable speed" (i.e., they are assumed to be inverter driven). + .. [#] If SEER2 provided, converted to SEER using ANSI/RESNET/ICC 301-2022 Addendum C, where SEER = SEER2 / 0.95 if ducted and SEER = SEER2 if ductless. + .. [#] If CoolingDetailedPerformanceData is provided, see :ref:`clg_detailed_perf_data`. .. [#] FanPowerWattsPerCFM defaults to 0.07 W/cfm for ductless systems and 0.18 W/cfm for ducted systems. .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect. A non-zero airflow defect can only be applied for systems attached to a distribution system. @@ -1654,10 +1782,6 @@ If a mini-split air conditioner is specified, additional information is entered .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect. A non-zero charge defect should typically only be applied for systems that are charged on site, not for systems that have pre-charged line sets. See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. - -.. note:: - - Mini-splits do not have a ``CompressorType`` input because they are assumed to be inverter driven (variable speed). .. _hvac_cooling_chiller: @@ -1669,8 +1793,8 @@ If a chiller is specified, additional information is entered in ``CoolingSystem` ========================================================================== ======== ====== =========== ======== ========= ========================================= Element Type Units Constraints Required Default Notes ========================================================================== ======== ====== =========== ======== ========= ========================================= - ``IsSharedSystem`` boolean true Yes Whether it serves multiple dwelling units ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``IsSharedSystem`` boolean true Yes Whether it serves multiple dwelling units ``NumberofUnitsServed`` integer > 1 Yes Number of dwelling units served ``CoolingCapacity`` double Btu/hr >= 0 Yes Total cooling output capacity ``AnnualCoolingEfficiency[Units="kW/ton"]/Value`` double kW/ton > 0 Yes Rated efficiency @@ -1696,8 +1820,8 @@ If a cooling tower is specified, additional information is entered in ``CoolingS ========================================================================== ======== ====== =========== ======== ========= ========================================= Element Type Units Constraints Required Default Notes ========================================================================== ======== ====== =========== ======== ========= ========================================= - ``IsSharedSystem`` boolean true Yes Whether it serves multiple dwelling units ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``IsSharedSystem`` boolean true Yes Whether it serves multiple dwelling units ``NumberofUnitsServed`` integer > 1 Yes Number of dwelling units served ``extension/SharedLoopWatts`` double W >= 0 Yes Pumping and fan power serving the system ========================================================================== ======== ====== =========== ======== ========= ========================================= @@ -1726,15 +1850,21 @@ Each heat pump is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/H ``BackupType`` string See [#]_ No Type of backup heating ================================= ======== ====== =========== ======== ========= =============================================== - .. [#] UnitLocation choices are "living space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", or "unconditioned space". - .. [#] | If UnitLocation not provided, defaults based on the distribution system: - | - **none**: "living space" - | - **air**: supply duct location with the largest area, otherwise "living space" - | - **hydronic**: same default logic as :ref:`waterheatingsystems` - | - **dse**: "living space" if ``FractionHeatLoadServed``/``FractionCoolLoadServed`` are 1, otherwise "unconditioned space" + .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". + .. [#] If UnitLocation not provided, defaults based on the distribution system: + + \- **none**: "conditioned space" + + \- **air**: supply duct location with the largest area, otherwise "conditioned space" + + \- **hydronic**: same default logic as :ref:`waterheatingsystems` + + \- **dse**: "conditioned space" if ``FractionHeatLoadServed``/``FractionCoolLoadServed`` are 1, otherwise "unconditioned space" + .. [#] HeatPumpType choices are "air-to-air", "mini-split", "ground-to-air", "water-loop-to-air", "packaged terminal heat pump", or "room air conditioner with reverse cycle". .. [#] HeatPumpFuel only choice is "electricity". .. [#] BackupType choices are "integrated" or "separate". + Heat pump backup will only operate during colder temperatures when the heat pump runs out of heating capacity or is disabled due to a switchover/lockout temperature. Use "integrated" if the heat pump's distribution system and blower fan power applies to the backup heating (e.g., built-in electric strip heat or an integrated backup furnace, i.e., a dual-fuel heat pump). Use "separate" if the backup system has its own distribution system (e.g., electric baseboard or a boiler). @@ -1743,26 +1873,28 @@ Air-to-Air Heat Pump If an air-to-air heat pump is specified, additional information is entered in ``HeatPump``. - ================================================================ ====== ======== ======================== ======== ============== ================================================= - Element Type Units Constraints Required Default Notes - ================================================================ ====== ======== ======================== ======== ============== ================================================= - ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system - ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity (excluding any backup heating) - ``HeatingCapacity17F`` double Btu/hr >= 0, <= HeatingCapacity No Heating output capacity at 17F, if available - ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity - ``CompressorType`` string See [#]_ No See [#]_ Type of compressor - ``CompressorLockoutTemperature`` double F No See [#]_ Minimum outdoor temperature for compressor operation - ``CoolingSensibleHeatFraction`` double frac 0 - 1 No See [#]_ Sensible heat fraction - ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served - ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served - ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency [#]_ - ``AnnualHeatingEfficiency[Units="HSPF" or Units="HSPF2"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency [#]_ - ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No See [#]_ Heating output capacity retention at cold temperature [#]_ - ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed - ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_ - ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ - ``extension/CrankcaseHeaterPowerWatts`` double W No 50.0 Crankcase heater power - ================================================================ ====== ======== ======================== ======== ============== ================================================= + ================================================================ ======= ======== ======================== ======== ============== ================================================= + Element Type Units Constraints Required Default Notes + ================================================================ ======= ======== ======================== ======== ============== ================================================= + ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity (excluding any backup heating) + ``HeatingCapacity17F`` double Btu/hr >= 0, <= HeatingCapacity No Heating output capacity at 17F, if available + ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity + ``CompressorType`` string See [#]_ No See [#]_ Type of compressor + ``CompressorLockoutTemperature`` double F No See [#]_ Minimum outdoor temperature for compressor operation + ``CoolingSensibleHeatFraction`` double frac 0 - 1 No See [#]_ Sensible heat fraction + ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served + ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served + ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency [#]_ + ``AnnualHeatingEfficiency[Units="HSPF" or Units="HSPF2"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency [#]_ + ``CoolingDetailedPerformanceData`` element No Cooling detailed performance data [#]_ + ``HeatingDetailedPerformanceData`` element No Heating detailed performance data [#]_ + ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No See [#]_ Heating output capacity retention at cold temperature [#]_ + ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed + ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_ + ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ + ``extension/CrankcaseHeaterPowerWatts`` double W No 50.0 Crankcase heater power + ================================================================ ======= ======== ======================== ======== ============== ================================================= .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE. .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`). @@ -1770,14 +1902,21 @@ If an air-to-air heat pump is specified, additional information is entered in `` .. [#] CompressorType choices are "single stage", "two stage", or "variable speed". .. [#] If CompressorType not provided, defaults to "single stage" if SEER <= 15, else "two stage" if SEER <= 21, else "variable speed". .. [#] If neither CompressorLockoutTemperature nor BackupHeatingSwitchoverTemperature provided, CompressorLockoutTemperature defaults to 25F if fossil fuel backup otherwise 0F. - .. [#] If not provided, defaults to 0.73 for single/two stage and 0.78 for variable speed. + .. [#] If SensibleHeatFraction not provided, defaults to 0.73 for single/two stage and 0.78 for variable speed. .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] If SEER2 provided, converted to SEER using ANSI/RESNET/ICC 301-2022 Addendum C, where SEER = SEER2 / 0.95 (assumed to be a split system). .. [#] If HSPF2 provided, converted to HSPF using ANSI/RESNET/ICC 301-2022 Addendum C, where HSPF = HSPF2 / 0.85 (assumed to be a split system). - .. [#] | If neither extension/HeatingCapacityRetention nor HeatingCapacity17F provided, heating capacity retention defaults based on CompressorType: - | - **single/two stage**: 0.425 at 5F - | - **variable speed**: 0.5 at 5F + .. [#] If CoolingDetailedPerformanceData is provided, see :ref:`clg_detailed_perf_data`. + HeatingDetailedPerformanceData must also be provided. + .. [#] If HeatingDetailedPerformanceData is provided, see :ref:`htg_detailed_perf_data`. + CoolingDetailedPerformanceData must also be provided. + .. [#] If neither extension/HeatingCapacityRetention nor HeatingCapacity17F nor HeatingDetailedPerformanceData provided, heating capacity retention defaults based on CompressorType: + + \- **single/two stage**: 0.425 (at 5F) + + \- **variable speed**: 0.0461 * HSPF + 0.1594 (at 5F) + .. [#] The extension/HeatingCapacityRetention input is a more flexible alternative to HeatingCapacity17F, as it can apply to autosized systems and allows the heating capacity retention to be defined at a user-specified temperature (instead of 17F). Either input approach can be used, but not both. .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.5 W/cfm if HSPF <= 8.75, else 0.375 W/cfm. @@ -1799,27 +1938,41 @@ If a mini-split heat pump is specified, additional information is entered in ``H ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity (excluding any backup heating) ``HeatingCapacity17F`` double Btu/hr >= 0, <= HeatingCapacity No Heating output capacity at 17F, if available ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity + ``CompressorType`` string See [#]_ No variable speed Type of compressor ``CompressorLockoutTemperature`` double F No See [#]_ Minimum outdoor temperature for compressor operation ``CoolingSensibleHeatFraction`` double frac 0 - 1 No 0.73 Sensible heat fraction ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency [#]_ ``AnnualHeatingEfficiency[Units="HSPF" or Units="HSPF2"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency [#]_ - ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No 0.5 | 5 Heating output capacity retention at cold temperature [#]_ + ``CoolingDetailedPerformanceData`` element No Cooling detailed performance data [#]_ + ``HeatingDetailedPerformanceData`` element No Heating detailed performance data [#]_ + ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No See [#]_ Heating output capacity retention at cold temperature [#]_ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_ ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ ``extension/CrankcaseHeaterPowerWatts`` double W No 50.0 Crankcase heater power ================================================================ ======== ======== ======================== ======== ============== ============================================== - .. [#] If provided, HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE. + .. [#] If DistributionSystem provided, HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE. .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`). .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`). + .. [#] CompressorType only choice is "variable speed" (i.e., they are assumed to be inverter driven). .. [#] If neither CompressorLockoutTemperature nor BackupHeatingSwitchoverTemperature provided, CompressorLockoutTemperature defaults to 25F if fossil fuel backup otherwise -20F. .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] If SEER2 provided, converted to SEER using ANSI/RESNET/ICC 301-2022 Addendum C, where SEER = SEER2 / 0.95 if ducted and SEER = SEER2 if ductless. .. [#] If HSPF2 provided, converted to HSPF using ANSI/RESNET/ICC 301-2022 Addendum C, where HSPF = HSPF2 / 0.85 if ducted and HSPF = HSPF2 / 0.90 if ductless. + .. [#] If CoolingDetailedPerformanceData is provided, see :ref:`clg_detailed_perf_data`. + HeatingDetailedPerformanceData must also be provided. + .. [#] If HeatingDetailedPerformanceData is provided, see :ref:`htg_detailed_perf_data`. + CoolingDetailedPerformanceData must also be provided. + .. [#] If neither extension/HeatingCapacityRetention nor HeatingCapacity17F nor HeatingDetailedPerformanceData provided, heating capacity retention defaults based on CompressorType: + + \- **single/two stage**: 0.425 (at 5F) + + \- **variable speed**: 0.0461 * HSPF + 0.1594 (at 5F) + .. [#] The extension/HeatingCapacityRetention input is a more flexible alternative to HeatingCapacity17F, as it can apply to autosized systems and allows the heating capacity retention to be defined at a user-specified temperature (instead of 17F). Either input approach can be used, but not both. .. [#] FanPowerWattsPerCFM defaults to 0.07 W/cfm for ductless systems and 0.18 W/cfm for ducted systems. @@ -1830,10 +1983,6 @@ If a mini-split heat pump is specified, additional information is entered in ``H A non-zero charge defect should typically only be applied for systems that are charged on site, not for systems that have pre-charged line sets. See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information. -.. note:: - - Mini-splits do not have a ``CompressorType`` input because they are assumed to be inverter driven (variable speed). - .. _pthp: Packaged Terminal Heat Pump @@ -1852,7 +2001,7 @@ If a packaged terminal heat pump is specified, additional information is entered ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency - ``AnnualHeatingEfficiency[Units="COP"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency + ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No 0.425 | 5 Heating output capacity retention at cold temperature [#]_ ``extension/CrankcaseHeaterPowerWatts`` double W No 0.0 Crankcase heater power =============================================================== ======== ======== ======================== ======== ============== ============================================== @@ -1883,7 +2032,7 @@ If a room air conditioner with reverse cycle is specified, additional informatio ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency - ``AnnualHeatingEfficiency[Units="COP"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency + ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No 0.425 | 5 Heating output capacity retention at cold temperature [#]_ ``extension/CrankcaseHeaterPowerWatts`` double W No 0.0 Crankcase heater power =============================================================== ======== ======== ======================== ======== ============== ============================================== @@ -1980,7 +2129,7 @@ If a backup type ("integrated" or "separate") is provided, additional informatio ============================================================================= ======== ====== =========== ======== ========= ========================================== .. [#] If neither BackupHeatingSwitchoverTemperature nor CompressorLockoutTemperature provided, CompressorLockoutTemperature defaults as described above for individual heat pump types. - .. [#] If both BackupHeatingLockoutTemperature and CompressorLockoutTemperature provided, BackupHeatingLockoutTemperature must be greater than CompressorLockoutTemperature. + .. [#] If both BackupHeatingLockoutTemperature and CompressorLockoutTemperature provided, BackupHeatingLockoutTemperature must be greater than or equal to CompressorLockoutTemperature. .. [#] If neither BackupHeatingSwitchoverTemperature nor BackupHeatingLockoutTemperature provided, BackupHeatingLockoutTemperature defaults to 40F for electric backup and 50F for fossil fuel backup. .. note:: @@ -2022,6 +2171,62 @@ If a backup type of "separate" is provided, additional information is entered in - The conditioned space cannot be partially heated (i.e., the sum of all ``FractionHeatLoadServed`` must be 1). - There cannot be multiple backup heating systems. +HPXML HVAC Detailed Perf. Data +****************************** + +Some air-source HVAC system types allow detailed heating/cooling performance data to be provided using the ``CoolingDetailedPerformanceData`` and ``HeatingDetailedPerformanceData`` elements, as described above. +One source of detailed performance data is `NEEP's Cold Climate Air Source Heat Pump List `_. + +Currently detailed performance data can only be provided for variable-speed HVAC systems. + +.. _clg_detailed_perf_data: + +Detailed Cooling Performance Data +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +For air-source HVAC systems with detailed cooling performance data, two or more pairs of minimum/maximum capacity data are entered in ``CoolingDetailedPerformanceData/PerformanceDataPoint``. + + ================================= ======== ====== =========== ======== ========= ========================================== + Element Type Units Constraints Required Default Notes + ================================= ======== ====== =========== ======== ========= ========================================== + ``OutdoorTemperature`` double F See [#]_ Yes Outdoor drybulb temperature + ``Capacity`` double Btu/hr Yes Cooling capacity at the specified outdoor temperature + ``CapacityDescription`` string See [#]_ Yes Whether the datapoint corresponds to minimum or maximum capacity + ``Efficiency[Units="COP"]/Value`` double W/W Yes Cooling efficiency at the specified outdoor temperature + ================================= ======== ====== =========== ======== ========= ========================================== + + .. [#] One of the minimum/maximum datapoint pairs must occur at the 95F rated outdoor temperature condition. + The other datapoint pairs can be at any temperature. + .. [#] CapacityDescription choices are "minimum" and "maximum". + +In addition, the parent object must provide the ``CoolingCapacity`` and the ``CompressorType`` must be set to "variable speed". +For heat pumps, :ref:`htg_detailed_perf_data` must also be provided. +Note that when detailed cooling performance data is provided, some other inputs (like SEER) are ignored. + +.. _htg_detailed_perf_data: + +Detailed Heating Performance Data +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +For air-source HVAC systems with detailed heating performance data, two or more pairs of minimum/maximum capacity data are entered in ``HeatingDetailedPerformanceData/PerformanceDataPoint``. + + ================================= ======== ====== =========== ======== ========= ========================================== + Element Type Units Constraints Required Default Notes + ================================= ======== ====== =========== ======== ========= ========================================== + ``OutdoorTemperature`` double F See [#]_ Yes Outdoor drybulb temperature + ``Capacity`` double Btu/hr Yes Heating capacity at the specified outdoor temperature + ``CapacityDescription`` string See [#]_ Yes Whether the datapoint corresponds to minimum or maximum capacity + ``Efficiency[Units="COP"]/Value`` double W/W Yes Heating efficiency at the specified outdoor temperature + ================================= ======== ====== =========== ======== ========= ========================================== + + .. [#] One of the minimum/maximum datapoint pairs must occur at the 47F rated outdoor temperature condition. + The other datapoint pairs can be at any temperature. + .. [#] CapacityDescription choices are "minimum" and "maximum". + +In addition, the parent object must provide the ``HeatingCapacity`` and the ``CompressorType`` must be set to "variable speed". +For heat pumps, :ref:`clg_detailed_perf_data` must also be provided. +Note that when detailed cooling performance data is provided, some other inputs (like HSPF and HeatingCapacityRetention) are ignored. + .. _hvac_control: HPXML HVAC Control @@ -2185,36 +2390,60 @@ Additional information is entered in each ``Ducts``. ``extension/DuctSurfaceAreaMultiplier`` double >= 0 No 1.0 Duct surface area multiplier ======================================================= ======= ============ ================ ======== ========== ====================================== - .. [#] | It is recommended to provide DuctInsulationRValue and not DuctEffectiveRValue. DuctInsulationRValue should not include the exterior air film (i.e., use 0 for an uninsulated duct). For ducts buried in insulation (using DuctBuriedInsulationLevel), DuctInsulationRValue should only represent any surrounding insulation duct wrap and not the entire attic insulation R-value. On the other hand, DuctEffectiveRValue should include the exterior air film as well as other effects such as adjustments for insulation wrapped around round ducts, or effective heat transfer for ducts buried in attic insulation. DuctEffectiveRValue is used for the actual model heat transfer, and when not provided is calculated as follows: - | - **Uninsulated**: 1.7 - | - **Supply, Insulated**: 2.2438 + 0.5619 * DuctInsulationRValue - | - **Supply, Partially Buried**: 5.83 + 2.0 * DuctInsulationRValue - | - **Supply, Fully Buried**: 9.4 + 1.9 * DuctInsulationRValue - | - **Supply, Deeply Buried**: 16.67 + 1.45 * DuctInsulationRValue - | - **Return, Insulated**: 2.0388 + 0.7053 * DuctInsulationRValue - | - **Return, Partially Buried**: 7.6 + 2.5 * DuctInsulationRValue - | - **Return, Fully Buried**: 11.83 + 2.45 * DuctInsulationRValue - | - **Return, Deeply Buried**: 20.9 + 1.9 * DuctInsulationRValue - | The uninsulated effective R-value is from ASHRAE Handbook of Fundamentals. The insulated effective R-values are from `True R-Values of Round Residential Ductwork `_. The buried effective R-values are from Table 13 of `Reducing Thermal Losses and Gains With Buried and Encapsulated Ducts `_. The equations assume that the average supply duct has an 8-inch diameter and the average return duct has a 14-in diameter + .. [#] It is recommended to provide DuctInsulationRValue and not DuctEffectiveRValue. DuctInsulationRValue should not include the exterior air film (i.e., use 0 for an uninsulated duct). + For ducts buried in insulation (using DuctBuriedInsulationLevel), DuctInsulationRValue should only represent any surrounding insulation duct wrap and not the entire attic insulation R-value. + On the other hand, DuctEffectiveRValue should include the exterior air film as well as other effects such as adjustments for insulation wrapped around round ducts, or effective heat transfer for ducts buried in attic insulation. + DuctEffectiveRValue is used for the actual model heat transfer, and when not provided is calculated as follows: + + \- **Uninsulated**: 1.7 + + \- **Supply, Insulated**: 2.2438 + 0.5619 * DuctInsulationRValue + + \- **Supply, Partially Buried**: 5.83 + 2.0 * DuctInsulationRValue + + \- **Supply, Fully Buried**: 9.4 + 1.9 * DuctInsulationRValue + + \- **Supply, Deeply Buried**: 16.67 + 1.45 * DuctInsulationRValue + + \- **Return, Insulated**: 2.0388 + 0.7053 * DuctInsulationRValue + + \- **Return, Partially Buried**: 7.6 + 2.5 * DuctInsulationRValue + + \- **Return, Fully Buried**: 11.83 + 2.45 * DuctInsulationRValue + + \- **Return, Deeply Buried**: 20.9 + 1.9 * DuctInsulationRValue + + The uninsulated effective R-value is from ASHRAE Handbook of Fundamentals. + The insulated effective R-values are from `True R-Values of Round Residential Ductwork `_. + The buried effective R-values are from Table 13 of `Reducing Thermal Losses and Gains With Buried and Encapsulated Ducts `_. + The equations assume that the average supply duct has an 8-inch diameter and the average return duct has a 14-in diameter. + .. [#] DuctBuriedInsulationLevel choices are "not buried", "partially buried", "fully buried", or "deeply buried". .. [#] Whether the ducts are buried in, e.g., attic loose-fill insulation. Partially buried ducts have insulation that does not cover the top of the ducts. Fully buried ducts have insulation that just covers the top of the ducts. Deeply buried ducts have insulation that continues above the top of the ducts. See the `Building America Solution Center `_ for more information. - .. [#] DuctLocation choices are "living space", "basement - conditioned", "basement - unconditioned", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "attic - unvented", "attic - vented", "garage", "outside", "exterior wall", "under slab", "roof deck", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". + .. [#] DuctLocation choices are "conditioned space", "basement - conditioned", "basement - unconditioned", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "attic - unvented", "attic - vented", "garage", "outside", "exterior wall", "under slab", "roof deck", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", or "manufactured home belly". See :ref:`hpxmllocations` for descriptions. - .. [#] If DuctLocation not provided, defaults to the first present space type: "basement - conditioned", "basement - unconditioned", "crawlspace - conditioned", "crawlspace - vented", "crawlspace - unvented", "attic - vented", "attic - unvented", "garage", or "living space". - If NumberofConditionedFloorsAboveGrade > 1, secondary ducts will be located in "living space". - .. [#] The sum of all ``[DuctType="supply"]/FractionDuctArea`` and ``[DuctType="return"]/FractionDuctArea`` must each equal to 1. - .. [#] FractionDuctArea and/or DuctSurfaceArea are required if DuctLocation is provided. - .. [#] | If neither DuctSurfaceArea nor FractionDuctArea provided, duct surface areas will be calculated based on `ASHRAE Standard 152 `_: - | - **Primary supply duct area**: 0.27 * F_out * ConditionedFloorAreaServed - | - **Secondary supply duct area**: 0.27 * (1 - F_out) * ConditionedFloorAreaServed - | - **Primary return duct area**: b_r * F_out * ConditionedFloorAreaServed - | - **Secondary return duct area**: b_r * (1 - F_out) * ConditionedFloorAreaServed - | where F_out is 1.0 when NumberofConditionedFloorsAboveGrade <= 1 and 0.75 when NumberofConditionedFloorsAboveGrade > 1, and b_r is 0.05 * NumberofReturnRegisters with a maximum value of 0.25. - | If FractionDuctArea is provided, each duct surface area will be FractionDuctArea times total duct area, which is calculated using the sum of primary and secondary duct areas from the equations above. + .. [#] If DuctLocation not provided, defaults to the first present space type: "basement - conditioned", "basement - unconditioned", "crawlspace - conditioned", "crawlspace - vented", "crawlspace - unvented", "attic - vented", "attic - unvented", "garage", or "conditioned space". + If NumberofConditionedFloorsAboveGrade > 1, secondary ducts will be located in "conditioned space". + .. [#] The sum of all ``FractionDuctArea`` must each equal to 1, both for the supply side and return side. + .. [#] FractionDuctArea or DuctSurfaceArea are required if DuctLocation is provided. + If both are provided, DuctSurfaceArea will be used in the model. + .. [#] If neither DuctSurfaceArea nor FractionDuctArea provided, duct surface areas will be calculated based on `ASHRAE Standard 152 `_: + + \- **Primary supply duct area**: 0.27 * F_out * ConditionedFloorAreaServed + + \- **Secondary supply duct area**: 0.27 * (1 - F_out) * ConditionedFloorAreaServed + + \- **Primary return duct area**: b_r * F_out * ConditionedFloorAreaServed + + \- **Secondary return duct area**: b_r * (1 - F_out) * ConditionedFloorAreaServed + + where F_out is 1.0 when NumberofConditionedFloorsAboveGrade <= 1 and 0.75 when NumberofConditionedFloorsAboveGrade > 1, and b_r is 0.05 * NumberofReturnRegisters with a maximum value of 0.25. + + If FractionDuctArea is provided, each duct surface area will be FractionDuctArea times total duct area, which is calculated using the sum of primary and secondary duct areas from the equations above. Hydronic Distribution ~~~~~~~~~~~~~~~~~~~~~ @@ -2235,9 +2464,10 @@ Distribution System Efficiency (DSE) .. warning:: A simplified DSE model is provided for flexibility, but it is **strongly** recommended to use one of the other detailed distribution system types for better accuracy. - Also note that when specifying a DSE system, its effect is reflected in the :ref:`workflow_outputs` but is **not** reflected in the raw EnergyPlus simulation outputs. + The DSE input is simply applied to heating/cooling energy use for every hour of the year. + Note that when specifying a DSE, its effect is reflected in the :ref:`workflow_outputs` but is **not** reflected in the raw EnergyPlus simulation outputs. -To define a DSE system, additional information is entered in ``HVACDistribution``. +To define a DSE, additional information is entered in ``HVACDistribution``. ============================================= ======= ======= =========== ======== ========= =================================================== Element Type Units Constraints Required Default Notes @@ -2246,7 +2476,7 @@ To define a DSE system, additional information is entered in ``HVACDistribution` ``AnnualCoolingDistributionSystemEfficiency`` double frac 0 - 1 Yes Seasonal distribution system efficiency for cooling ============================================= ======= ======= =========== ======== ========= =================================================== - DSE values can be calculated from `ASHRAE Standard 152 `_. + DSE values can be calculated using, e.g., `ASHRAE Standard 152 `_. HPXML Ventilation Fan ********************* @@ -2287,24 +2517,36 @@ If not entered, the simulation will not include mechanical ventilation. .. [#] For central fan integrated supply systems, IsSharedSystem must be false. .. [#] FanType choices are "energy recovery ventilator", "heat recovery ventilator", "exhaust only", "supply only", "balanced", or "central fan integrated supply". - .. [#] | If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: - | Qfan = Qtot - Φ*(Qinf * Aext) - | where - | Qfan = required mechanical ventilation rate (cfm) - | Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) - | Qinf = infiltration rate (cfm) - | Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` - | Φ = 1 for balanced ventilation systems, and Qinf/Qtot otherwise + .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_: + + Qfan = Qtot - Φ*(Qinf * Aext) + + where + + Qfan = required mechanical ventilation rate (cfm) + + Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1) + + Qinf = infiltration rate (cfm) + + Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration` + + Φ = 1 for balanced ventilation systems, and Qinf/Qtot otherwise + .. [#] For a central fan integrated supply system, the flow rate should equal the amount of outdoor air provided to the distribution system, not the total airflow through the distribution system. .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a CFIS system, in which case it is not allowed. .. [#] If HoursInOperation not provided, defaults to 24 (i.e., running continuously) for all system types other than central fan integrated supply (CFIS), and 8.0 (i.e., running intermittently) for CFIS systems. For a CFIS system, the HoursInOperation and the flow rate are combined to form the hourly target ventilation rate (e.g., inputs of 90 cfm and 8 hrs/day produce an hourly target ventilation rate of 30 cfm). For a CFIS system with a supplemental fan, the supplemental fan's runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate. - .. [#] | If FanPower not provided, defaults based on `ANSI/RESNET/ICC 301-2019 `_: - | - **energy recovery ventilator, heat recovery ventilator, or shared system**: 1.0 W/cfm - | - **balanced**: 0.7 W/cfm - | - **central fan integrated supply**: 0.5 W/cfm - | - **exhaust only" or "supply only**: 0.35 W/cfm + .. [#] If FanPower not provided, defaults based on `ANSI/RESNET/ICC 301-2019 `_: + + \- **energy recovery ventilator, heat recovery ventilator, or shared system**: 1.0 W/cfm + + \- **balanced**: 0.7 W/cfm + + \- **central fan integrated supply**: 0.5 W/cfm + + \- **exhaust only" or "supply only**: 0.35 W/cfm **Exhaust/Supply Only** @@ -2480,11 +2722,14 @@ If not entered, the simulation will not include water heating. ========================= ======= ======= =========== ======== ======== ================================================================ .. [#] WaterHeaterType choices are "storage water heater", "instantaneous water heater", "heat pump water heater", "space-heating boiler with storage tank", or "space-heating boiler with tankless coil". - .. [#] Location choices are "living space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". + .. [#] Location choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. - .. [#] | If Location not provided, defaults to the first present space type: - | - **IECC zones 1-3, excluding 3A**: "garage", "living space" - | - **IECC zones 3A, 4-8, unknown**: "basement - conditioned", "basement - unconditioned", "living space" + .. [#] If Location not provided, defaults to the first present space type: + + \- **IECC zones 1-3, excluding 3A**: "garage", "conditioned space" + + \- **IECC zones 3A, 4-8, unknown**: "basement - conditioned", "basement - unconditioned", "conditioned space" + .. [#] The sum of all ``FractionDHWLoadServed`` (across all WaterHeatingSystems) must equal to 1. .. [#] FractionDHWLoadServed represents only the fraction of the hot water load associated with the hot water **fixtures**. Additional hot water load from clothes washers/dishwashers will be automatically assigned to the appropriate water heater(s). @@ -2517,10 +2762,14 @@ If a conventional storage water heater is specified, additional information is e If neither UsageBin nor FirstHourRating provided, UsageBin defaults to "medium". If FirstHourRating provided and UsageBin not provided, UsageBin is determined based on the FirstHourRating value. .. [#] RecoveryEfficiency must also be greater than the EnergyFactor (or UniformEnergyFactor). - .. [#] | If RecoveryEfficiency not provided, defaults as follows based on a regression analysis of `AHRI certified water heaters `_: - | - **Electric**: 0.98 - | - **Non-electric, EnergyFactor < 0.75**: 0.252 * EnergyFactor + 0.608 - | - **Non-electric, EnergyFactor >= 0.75**: 0.561 * EnergyFactor + 0.439 + .. [#] If RecoveryEfficiency not provided, defaults as follows based on a regression analysis of `AHRI certified water heaters `_: + + \- **Electric**: 0.98 + + \- **Non-electric, EnergyFactor < 0.75**: 0.252 * EnergyFactor + 0.608 + + \- **Non-electric, EnergyFactor >= 0.75**: 0.561 * EnergyFactor + 0.439 + .. [#] TankModelType choices are "mixed" or "stratified". Tankless @@ -2550,7 +2799,7 @@ If a heat pump water heater is specified, additional information is entered in ` ``FuelType`` string See [#]_ Yes Fuel type ``TankVolume`` double gal > 0 Yes Nominal tank volume ``UniformEnergyFactor`` or ``EnergyFactor`` double frac > 1, <= 5 Yes EnergyGuide label rated efficiency - ``HPWHOperatingMode`` string See [#]_ No hyrbid/auto Operating mode [#]_ + ``HPWHOperatingMode`` string See [#]_ No hybrid/auto Operating mode [#]_ ``UsageBin`` or ``FirstHourRating`` string or double str or gal/hr See [#]_ or > 0 No See [#]_ EnergyGuide label usage bin/first hour rating ``WaterHeaterInsulation/Jacket/JacketRValue`` double F-ft2-hr/Btu >= 0 No 0 R-value of additional tank insulation wrap ============================================= ================ ============= =============== ======== =========== ============================================= @@ -2634,6 +2883,8 @@ If any water heating systems are provided, a single hot water distribution syste In attached/multifamily buildings, only the hot water distribution system serving the dwelling unit should be defined. The hot water distribution associated with, e.g., a shared laundry room should not be defined. +Hot water distribution systems are modeled according to the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. + Standard ~~~~~~~~ @@ -2645,12 +2896,18 @@ If the in-unit distribution system is specified as standard, additional informat ``PipingLength`` double ft > 0 No See [#]_ Length of piping [#]_ ================ ======= ===== =========== ======== ======== ===================== - .. [#] | If PipingLength not provided, calculated using the following equation from `ANSI/RESNET/ICC 301-2019 `_: - | PipeL = 2.0 * (CFA / NCfl)^0.5 + 10.0 * NCfl + 5.0 * Bsmnt - | where - | CFA = conditioned floor area [ft2], - | NCfl = number of conditioned floor levels number of conditioned floor levels in the residence including conditioned basements, - | Bsmnt = presence (1.0) or absence (0.0) of an unconditioned basement in the residence. + .. [#] If PipingLength not provided, calculated using the following equation from `ANSI/RESNET/ICC 301-2019 `_: + + PipeL = 2.0 * (CFA / NCfl)^0.5 + 10.0 * NCfl + 5.0 * Bsmnt + + where + + CFA = conditioned floor area [ft2], + + NCfl = number of conditioned floor levels number of conditioned floor levels in the residence including conditioned basements, + + Bsmnt = presence (1.0) or absence (0.0) of an unconditioned basement in the residence. + .. [#] PipingLength is the length of hot water piping from the hot water heater (or from a shared recirculation loop serving multiple dwelling units) to the farthest hot water fixture, measured longitudinally from plans, assuming the hot water piping does not run diagonally, plus 10 feet of piping for each floor level, plus 5 feet of piping for unconditioned basements (if any). Recirculation @@ -2668,12 +2925,29 @@ If the in-unit distribution system is specified as recirculation, additional inf ================================= ======= ===== =========== ======== ======== ===================================== .. [#] ControlType choices are "manual demand control", "presence sensor demand control", "temperature", "timer", or "no control". - .. [#] | If RecirculationPipingLoopLength not provided, calculated using the following equation from `ANSI/RESNET/ICC 301-2019 `_: - | RecircPipeL = 2.0 * (2.0 * (CFA / NCfl)^0.5 + 10.0 * NCfl + 5.0 * Bsmnt) - 20.0 - | where - | CFA = conditioned floor area [ft2], - | NCfl = number of conditioned floor levels number of conditioned floor levels in the residence including conditioned basements, - | Bsmnt = presence (1.0) or absence (0.0) of an unconditioned basement in the residence. + + \- **manual demand control**: The pump only runs when a user presses a button indicating they are about to use hot water. + + \- **presence sensor demand control**: The pump only runs when a sensor detects someone is present at the faucet. + + \- **temperature**: The pump runs based on monitoring temperature at some point in the system. + + \- **timer**: The pump is controlled by a timer. + + \- **no control**: The pump runs continuously. + + .. [#] If RecirculationPipingLoopLength not provided, calculated using the following equation from `ANSI/RESNET/ICC 301-2019 `_: + + RecircPipeL = 2.0 * (2.0 * (CFA / NCfl)^0.5 + 10.0 * NCfl + 5.0 * Bsmnt) - 20.0 + + where + + CFA = conditioned floor area [ft2], + + NCfl = number of conditioned floor levels number of conditioned floor levels in the residence including conditioned basements, + + Bsmnt = presence (1.0) or absence (0.0) of an unconditioned basement in the residence. + .. [#] RecirculationPipingLoopLength is the recirculation loop length including both supply and return sides, measured longitudinally from plans, assuming the hot water piping does not run diagonally, plus 20 feet of piping for each floor level greater than one plus 10 feet of piping for unconditioned basements. .. [#] BranchPipingLength is the length of the branch hot water piping from the recirculation loop to the farthest hot water fixture from the recirculation loop, measured longitudinally from plans, assuming the branch hot water piping does not run diagonally. .. [#] PumpPower default based on `ANSI/RESNET/ICC 301-2019 `_. @@ -2712,23 +2986,27 @@ If a drain water heat recovery (DWHR) device is specified, additional informatio Use "all" if there is one shower and it's connected to the DWHR or there are two or more showers connected to the DWHR. .. [#] EqualFlow should be true if the DWHR supplies pre-heated water to both the fixture cold water piping *and* the hot water heater potable supply piping. +Drain water heat recovery is modeled according to the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. + HPXML Water Fixtures ******************** Each water fixture is entered as a ``/HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterFixture``. - ==================== ======= ===== =========== ======== ======== =============================================== - Element Type Units Constraints Required Default Notes - ==================== ======= ===== =========== ======== ======== =============================================== - ``SystemIdentifier`` id Yes Unique identifier - ``WaterFixtureType`` string See [#]_ Yes Bathroom faucet or shower - ``LowFlow`` boolean Yes Whether the fixture is considered low-flow [#]_ - ==================== ======= ===== =========== ======== ======== =============================================== + =============================== ================= ===== =========== ======== ======== =============================================== + Element Type Units Constraints Required Default Notes + =============================== ================= ===== =========== ======== ======== =============================================== + ``SystemIdentifier`` id Yes Unique identifier + ``WaterFixtureType`` string See [#]_ Yes Bathroom faucet or shower + ``Count`` integer > 0 No See [#]_ Number of similar water fixtures + ``LowFlow`` and/or ``FlowRate`` boolean or double gpm > 0 Yes Whether the fixture is considered low-flow and/or the flow rate [#]_ + =============================== ================= ===== =========== ======== ======== =============================================== .. [#] WaterFixtureType choices are "shower head" or "faucet". If the shower stall has multiple shower heads that operate simultaneously, combine them as a single entry. - .. [#] LowFlow should be true if the fixture's flow rate (gpm) is <= 2.0. - Where a shower stall has multiple shower heads that operate simultaneously, the sum of their flows must be <= 2.0. + .. [#] A WaterFixture is considered low-flow if the fixture's flow rate (gpm) is <= 2.0. + Where a shower stall has multiple shower heads that operate simultaneously, use the sum of their flows. + .. [#] If Count not provided for any water fixture, assumes that 60% of all fixtures are faucets and 40% are shower heads. Additional information can be entered in ``/HPXML/Building/BuildingDetails/Systems/WaterHeating/``. @@ -2744,6 +3022,8 @@ Additional information can be entered in ``/HPXML/Building/BuildingDetails/Syste .. [#] If WaterFixturesWeekdayScheduleFractions or WaterFixturesWeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figures 9-11 of the `2010 BAHSP `_ are used: "0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026". .. [#] If WaterFixturesMonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values are used: "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0". +Water fixture hot water use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 `_. + HPXML Solar Thermal ******************* @@ -2760,6 +3040,8 @@ If not entered, the simulation will not include solar hot water. .. [#] SystemType only choice is "hot water". Solar hot water systems can be described with either simple or detailed inputs. +It is recommended to use detailed inputs and allow EnergyPlus to calculate the solar contribution to the hot water load; +the simple inputs are provided if equivalent calculations are performed in another software tool. Simple Inputs ~~~~~~~~~~~~~ @@ -2779,6 +3061,10 @@ To define a simple solar hot water system, additional information is entered in The referenced water heater cannot be a space-heating boiler nor attached to a desuperheater. .. [#] If ConnectedTo not provided, solar fraction will apply to all water heaters in the building. +.. warning:: + + The solar fraction will reduce the hot water load equally for every EnergyPlus timestep (even during nights and cloudy events). + Detailed Inputs ~~~~~~~~~~~~~~~ @@ -2834,20 +3120,33 @@ Many of the inputs are adopted from the `PVWatts model `_, which breaks down the losses as follows. - | Note that the total loss (14%) is not the sum of the individual losses but is calculated by multiplying the reduction due to each loss. - | - **Soiling**: 2% - | - **Shading**: 3% - | - **Snow**: 0% - | - **Mismatch**: 2% - | - **Wiring**: 2% - | - **Connections**: 0.5% - | - **Light-induced degradation**: 1.5% - | - **Nameplate rating**: 1% - | - **Age**: 0% - | - **Availability**: 3% - | If YearModulesManufactured provided but not SystemLossesFraction, calculated as: - | SystemLossesFraction = 1.0 - (1.0 - 0.14) * (1.0 - (1.0 - 0.995^(CurrentYear - YearModulesManufactured))). + .. [#] SystemLossesFraction default is derived from the `PVWatts documentation `_, which breaks down the losses as follows. + Note that the total loss (14%) is not the sum of the individual losses but is calculated by multiplying the reduction due to each loss. + + \- **Soiling**: 2% + + \- **Shading**: 3% + + \- **Snow**: 0% + + \- **Mismatch**: 2% + + \- **Wiring**: 2% + + \- **Connections**: 0.5% + + \- **Light-induced degradation**: 1.5% + + \- **Nameplate rating**: 1% + + \- **Age**: 0% + + \- **Availability**: 3% + + If YearModulesManufactured provided but not SystemLossesFraction, calculated as: + + SystemLossesFraction = 1.0 - (1.0 - 0.14) * (1.0 - (1.0 - 0.995^(CurrentYear - YearModulesManufactured))). + .. [#] System losses due to soiling, shading, snow, mismatch, wiring, degradation, etc. .. [#] AttachedToInverter must reference an ``Inverter``. .. [#] NumberofBedroomsServed only required if IsSharedSystem is true, in which case it must be > NumberofBedrooms. @@ -2883,7 +3182,7 @@ If not entered, the simulation will not include batteries. ``RoundTripEfficiency`` double frac 0 - 1 No 0.925 Round trip efficiency ==================================================== ======= ========= ======================= ======== ======== ============================================ - .. [#] Location choices are "living space", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", "attic - vented", "attic - unvented", "garage", or "outside". + .. [#] Location choices are "conditioned space", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "crawlspace - conditioned", "attic - vented", "attic - unvented", "garage", or "outside". .. [#] If Location not provided, defaults to "garage" if a garage is present, otherwise "outside". .. [#] BatteryType only choice is "Li-ion". .. [#] If NominalCapacity not provided, defaults to UsableCapacity / 0.9 if UsableCapacity provided, else (RatedPowerOutput / 1000) / 0.5 if RatedPowerOutput provided, else 10 kWh. @@ -2894,7 +3193,7 @@ If not entered, the simulation will not include batteries. An unscheduled battery in a home with photovoltaics (PV) will be controlled using a simple control strategy designed to maximize on site consumption of energy. The battery will charge if PV production is greater than the building load and the battery is below its maximum capacity, while the battery will discharge if the building load is greater than PV production and the battery is above its minimum capacity. - A battery can alternatively be controlled using :ref:`detailedschedules`, where charging and discharging schedules are defined. Positive schedule values control timing and magnitude of charging storage. Negative schedule values control timing and magnitude of discharging storage. Simultaneous charging and discharging of the battery is not allowed. The round trip efficiency affects charging; the reported charging rate will be larger than the schedule value by an amount equal to the losses due to the round trip efficiency. + A battery can alternatively be controlled using :ref:`detailedschedules`, where charging and discharging schedules are defined. Positive schedule values control timing and magnitude of charging storage. Negative schedule values control timing and magnitude of discharging storage. Simultaneous charging and discharging of the battery is not allowed. The round trip efficiency affects charging and discharging; the reported charging and discharging rates will be larger than the schedule value by an amount equal to the losses due to the round trip efficiency. A battery in a home without PV or charging/discharging schedules is assumed to operate as backup and is not modeled. @@ -2935,22 +3234,22 @@ HPXML Clothes Washer A single clothes washer can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/ClothesWasher``. If not entered, the simulation will not include a clothes washer. - ====================================================================== ======= =========== =========== ======== ============ ============================================== - Element Type Units Constraints Required Default Notes - ====================================================================== ======= =========== =========== ======== ============ ============================================== - ``SystemIdentifier`` id Yes Unique identifier - ``IsSharedAppliance`` boolean No false Whether it serves multiple dwelling units [#]_ - ``Location`` string See [#]_ No living space Location - ``IntegratedModifiedEnergyFactor`` or ``ModifiedEnergyFactor`` double ft3/kWh/cyc > 0 No See [#]_ Efficiency [#]_ - ``AttachedToWaterHeatingSystem`` or ``AttachedToHotWaterDistribution`` idref See [#]_ See [#]_ ID of attached water heater or distribution system - ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on energy & hot water usage - ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions - ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions - ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers - ====================================================================== ======= =========== =========== ======== ============ ============================================== + ====================================================================== ======= =========== =========== ======== ================= ============================================== + Element Type Units Constraints Required Default Notes + ====================================================================== ======= =========== =========== ======== ================= ============================================== + ``SystemIdentifier`` id Yes Unique identifier + ``IsSharedAppliance`` boolean No false Whether it serves multiple dwelling units [#]_ + ``Location`` string See [#]_ No conditioned space Location + ``IntegratedModifiedEnergyFactor`` or ``ModifiedEnergyFactor`` double ft3/kWh/cyc > 0 No See [#]_ Efficiency [#]_ + ``AttachedToWaterHeatingSystem`` or ``AttachedToHotWaterDistribution`` idref See [#]_ See [#]_ ID of attached water heater or distribution system + ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on energy & hot water usage + ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions + ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions + ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers + ====================================================================== ======= =========== =========== ======== ================= ============================================== .. [#] For example, a clothes washer in a shared laundry room of a MF building. - .. [#] Location choices are "living space", "basement - conditioned", "basement - unconditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". + .. [#] Location choices are "conditioned space", "basement - conditioned", "basement - unconditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. .. [#] If neither IntegratedModifiedEnergyFactor nor ModifiedEnergyFactor provided, the following default values representing a standard clothes washer from 2006 will be used: IntegratedModifiedEnergyFactor = 1.0, @@ -2989,24 +3288,24 @@ HPXML Clothes Dryer A single clothes dryer can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/ClothesDryer``. If not entered, the simulation will not include a clothes dryer. - ============================================ ======= ====== =========== ======== ============ ============================================== - Element Type Units Constraints Required Default Notes - ============================================ ======= ====== =========== ======== ============ ============================================== - ``SystemIdentifier`` id Yes Unique identifier - ``IsSharedAppliance`` boolean No false Whether it serves multiple dwelling units [#]_ - ``Location`` string See [#]_ No living space Location - ``FuelType`` string See [#]_ Yes Fuel type - ``CombinedEnergyFactor`` or ``EnergyFactor`` double lb/kWh > 0 No See [#]_ Efficiency [#]_ - ``Vented`` boolean No true Whether dryer is vented - ``VentedFlowRate`` double cfm >= 0 No 100 [#]_ Exhaust flow rate during operation - ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on energy use - ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions - ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions - ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers - ============================================ ======= ====== =========== ======== ============ ============================================== + ============================================ ======= ====== =========== ======== ================= ============================================== + Element Type Units Constraints Required Default Notes + ============================================ ======= ====== =========== ======== ================= ============================================== + ``SystemIdentifier`` id Yes Unique identifier + ``IsSharedAppliance`` boolean No false Whether it serves multiple dwelling units [#]_ + ``Location`` string See [#]_ No conditioned space Location + ``FuelType`` string See [#]_ Yes Fuel type + ``CombinedEnergyFactor`` or ``EnergyFactor`` double lb/kWh > 0 No See [#]_ Efficiency [#]_ + ``Vented`` boolean No true Whether dryer is vented + ``VentedFlowRate`` double cfm >= 0 No 100 [#]_ Exhaust flow rate during operation + ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on energy use + ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions + ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions + ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers + ============================================ ======= ====== =========== ======== ================= ============================================== .. [#] For example, a clothes dryer in a shared laundry room of a MF building. - .. [#] Location choices are "living space", "basement - conditioned", "basement - unconditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". + .. [#] Location choices are "conditioned space", "basement - conditioned", "basement - unconditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. .. [#] FuelType choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "electricity", "wood", or "wood pellets". .. [#] If neither CombinedEnergyFactor nor EnergyFactor provided, the following default values representing a standard clothes dryer from 2006 will be used: @@ -3026,22 +3325,22 @@ HPXML Dishwasher A single dishwasher can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Dishwasher``. If not entered, the simulation will not include a dishwasher. - ====================================================================== ======= =========== =========== ======== ============ ============================================== - Element Type Units Constraints Required Default Notes - ====================================================================== ======= =========== =========== ======== ============ ============================================== - ``SystemIdentifier`` id Yes Unique identifier - ``IsSharedAppliance`` boolean No false Whether it serves multiple dwelling units [#]_ - ``Location`` string See [#]_ No living space Location - ``RatedAnnualkWh`` or ``EnergyFactor`` double kWh/yr or # > 0 No See [#]_ EnergyGuide label consumption/efficiency [#]_ - ``AttachedToWaterHeatingSystem`` or ``AttachedToHotWaterDistribution`` idref See [#]_ See [#]_ ID of attached water heater or distribution system - ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on energy & hot water usage - ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions - ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions - ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers - ====================================================================== ======= =========== =========== ======== ============ ============================================== + ====================================================================== ======= =========== =========== ======== ================= ============================================== + Element Type Units Constraints Required Default Notes + ====================================================================== ======= =========== =========== ======== ================= ============================================== + ``SystemIdentifier`` id Yes Unique identifier + ``IsSharedAppliance`` boolean No false Whether it serves multiple dwelling units [#]_ + ``Location`` string See [#]_ No conditioned space Location + ``RatedAnnualkWh`` or ``EnergyFactor`` double kWh/yr or # > 0 No See [#]_ EnergyGuide label consumption/efficiency [#]_ + ``AttachedToWaterHeatingSystem`` or ``AttachedToHotWaterDistribution`` idref See [#]_ See [#]_ ID of attached water heater or distribution system + ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on energy & hot water usage + ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions + ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions + ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers + ====================================================================== ======= =========== =========== ======== ================= ============================================== .. [#] For example, a dishwasher in a shared mechanical room of a MF building. - .. [#] Location choices are "living space", "basement - conditioned", "basement - unconditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". + .. [#] Location choices are "conditioned space", "basement - conditioned", "basement - unconditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. .. [#] If neither RatedAnnualkWh nor EnergyFactor provided, the following default values representing a standard dishwasher from 2006 will be used: RatedAnnualkWh = 467, @@ -3090,10 +3389,10 @@ If not entered, the simulation will not include a refrigerator. ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers ===================================================== ======= ====== =========== ======== ======== ====================================== - .. [#] Location choices are "living space", "basement - conditioned", "basement - unconditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". + .. [#] Location choices are "conditioned space", "basement - conditioned", "basement - unconditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. - .. [#] If Location not provided and is the *primary* refrigerator, defaults to "living space". - If Location not provided and is a *secondary* refrigerator, defaults to the first present space type: "garage", "basement - unconditioned", "basement - conditioned", or "living space". + .. [#] If Location not provided and is the *primary* refrigerator, defaults to "conditioned space". + If Location not provided and is a *secondary* refrigerator, defaults to the first present space type: "garage", "basement - unconditioned", "basement - conditioned", or "conditioned space". .. [#] If RatedAnnualkWh not provided, it will be defaulted to represent a standard refrigerator from 2006 using the following equation based on `ANSI/RESNET/ICC 301-2019 `_: RatedAnnualkWh = 637.0 + 18.0 * NumberofBedrooms. .. [#] If multiple refrigerators are specified, there must be exactly one refrigerator described with PrimaryIndicator=true. @@ -3122,9 +3421,9 @@ If not entered, the simulation will not include a standalone freezer. ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers ===================================================== ====== ====== =========== ======== ========== ====================================== - .. [#] Location choices are "living space", "basement - conditioned", "basement - unconditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". + .. [#] Location choices are "conditioned space", "basement - conditioned", "basement - unconditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. - .. [#] If Location not provided, defaults to "garage" if present, otherwise "basement - unconditioned" if present, otherwise "basement - conditioned" if present, otherwise "living space". + .. [#] If Location not provided, defaults to "garage" if present, otherwise "basement - unconditioned" if present, otherwise "basement - conditioned" if present, otherwise "conditioned space". .. [#] RatedAnnualkWh default based on the `2010 BAHSP `_. .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 16 of the `2010 BAHSP `_ are used: "0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041". .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837". @@ -3152,14 +3451,14 @@ If not entered, the simulation will not include a dehumidifier. ============================================== ========== ========== =========== ======== ======= ======================================== .. [#] Type choices are "portable" or "whole-home". - .. [#] Location only choice is "living space". + .. [#] Location only choice is "conditioned space". .. [#] If multiple dehumidifiers are entered, they must all have the same setpoint or an error will be generated. .. [#] The sum of all ``FractionDehumidificationLoadServed`` (across all Dehumidifiers) must be less than or equal to 1. .. note:: Dehumidifiers are currently modeled as located within conditioned space; the model is not suited for a dehumidifier in, e.g., a wet unconditioned basement or crawlspace. - Therefore the dehumidifier Location is currently restricted to "living space". + Therefore the dehumidifier Location is currently restricted to "conditioned space". HPXML Cooking Range/Oven ************************ @@ -3167,20 +3466,20 @@ HPXML Cooking Range/Oven A single cooking range can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/CookingRange``. If not entered, the simulation will not include a cooking range/oven. - ======================================== ======= ====== =========== ======== ============ ====================================== - Element Type Units Constraints Required Default Notes - ======================================== ======= ====== =========== ======== ============ ====================================== - ``SystemIdentifier`` id Yes Unique identifier - ``Location`` string See [#]_ No living space Location - ``FuelType`` string See [#]_ Yes Fuel type - ``IsInduction`` boolean No false Induction range? - ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on energy use - ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions - ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions - ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers - ======================================== ======= ====== =========== ======== ============ ====================================== - - .. [#] Location choices are "living space", "basement - conditioned", "basement - unconditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". + ======================================== ======= ====== =========== ======== ================= ====================================== + Element Type Units Constraints Required Default Notes + ======================================== ======= ====== =========== ======== ================= ====================================== + ``SystemIdentifier`` id Yes Unique identifier + ``Location`` string See [#]_ No conditioned space Location + ``FuelType`` string See [#]_ Yes Fuel type + ``IsInduction`` boolean No false Induction range? + ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on energy use + ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions + ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions + ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers + ======================================== ======= ====== =========== ======== ================= ====================================== + + .. [#] Location choices are "conditioned space", "basement - conditioned", "basement - unconditioned", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space". See :ref:`hpxmllocations` for descriptions. .. [#] FuelType choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "electricity", "wood", or "wood pellets". .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 22 of the `2010 BAHSP `_ are used: "0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011". @@ -3310,8 +3609,8 @@ Ceiling fan energy use is calculated per the Energy Rating Rated Home in `ANSI/R A reduced cooling setpoint can be specified for months when ceiling fans are operating. See :ref:`hvac_control` for more information. -HPXML Pools & Hot Tubs ----------------------- +HPXML Pools & Permanent Spas +---------------------------- HPXML Pools *********** @@ -3332,8 +3631,8 @@ If not entered, the simulation will not include a pool. Pool Pump ~~~~~~~~~ -If a pool is specified, a single pool pump can be entered as a ``Pool/PoolPumps/PoolPump``. -If not entered, the simulation will not include a pool heater. +If a pool is specified, a single pool pump can be entered as a ``Pool/Pumps/Pump``. +If not entered, the simulation will not include a pool pump. ======================================== ======= ====== =========== ======== ============ ====================================== Element Type Units Constraints Required Default Notes @@ -3374,80 +3673,90 @@ If not entered, the simulation will not include a pool heater. .. [#] Type choices are "none, "gas fired", "electric resistance", or "heat pump". If "none" is entered, the simulation will not include a pool heater. - .. [#] | If Value not provided, defaults as follows: - | - **gas fired [therm/year]**: 3.0 / 0.014 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP `_) - | - **electric resistance [kWh/year]**: 8.3 / 0.004 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP `_) - | - **heat pump [kWh/year]**: (electric resistance) / 5.0 (based on an average COP of 5 from `Energy Saver `_) - | If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`. + .. [#] If Value not provided, defaults as follows: + + \- **gas fired [therm/year]**: 3.0 / 0.014 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP `_) + + \- **electric resistance [kWh/year]**: 8.3 / 0.004 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP `_) + + \- **heat pump [kWh/year]**: (electric resistance) / 5.0 (based on an average COP of 5 from `Energy Saver `_) + + If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`. + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: "0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003". .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154". -HPXML Hot Tubs -************** +HPXML Permanent Spas +******************** -A single hot tub can be entered as a ``/HPXML/Building/BuildingDetails/HotTubs/HotTub``. -If not entered, the simulation will not include a hot tub. +A single permanent spa can be entered as a ``/HPXML/Building/BuildingDetails/Spas/PermanentSpa``. +If not entered, the simulation will not include a permanent spa. ==================== ======= ====== =========== ======== ============ ================= Element Type Units Constraints Required Default Notes ==================== ======= ====== =========== ======== ============ ================= ``SystemIdentifier`` id Yes Unique identifier - ``Type`` string See [#]_ Yes Hot tub type + ``Type`` string See [#]_ Yes Permanent spa type ==================== ======= ====== =========== ======== ============ ================= .. [#] Type choices are "in ground", "on ground", "above ground", "other", "unknown", or "none". - If "none" is entered, the simulation will not include a hot tub. + If "none" is entered, the simulation will not include a permanent spa. -Hot Tub Pump -~~~~~~~~~~~~ +Permanent Spa Pump +~~~~~~~~~~~~~~~~~~ -If a hot tub is specified, a single hot tub pump can be entered as a ``HotTub/HotTubPumps/HotTubPump``. -If not entered, the simulation will not include a hot tub pump. +If a permanent spa is specified, a single permanent spa pump can be entered as a ``PermanentSpa/Pumps/Pump``. +If not entered, the simulation will not include a permanent spa pump. ======================================== ======= ====== =========== ======== ============ ====================================== Element Type Units Constraints Required Default Notes ======================================== ======= ====== =========== ======== ============ ====================================== ``SystemIdentifier`` id Yes Unique identifier - ``Type`` string See [#]_ Yes Hot tub pump type - ``Load[Units="kWh/year"]/Value`` double kWh/yr >= 0 No See [#]_ Hot tub pump energy use - ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on hot tub pump energy use + ``Type`` string See [#]_ Yes Permanent spa pump type + ``Load[Units="kWh/year"]/Value`` double kWh/yr >= 0 No See [#]_ Permanent spa pump energy use + ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on permanent spa pump energy use ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers ======================================== ======= ====== =========== ======== ============ ====================================== .. [#] Type choices are "single speed", "multi speed", "variable speed", "variable flow", "other", "unknown", or "none". - If "none" is entered, the simulation will not include a hot tub pump. + If "none" is entered, the simulation will not include a permanent spa pump. .. [#] If Value not provided, defaults based on the `2010 BAHSP `_: 59.5 / 0.059 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920). If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`. .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: "0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024". .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921". -Hot Tub Heater -~~~~~~~~~~~~~~ +Permanent Spa Heater +~~~~~~~~~~~~~~~~~~~~ -If a hot tub is specified, a hot tub heater can be entered as a ``HotTub/Heater``. -If not entered, the simulation will not include a hot tub heater. +If a permanent spa is specified, a permanent spa heater can be entered as a ``PermanentSpa/Heater``. +If not entered, the simulation will not include a permanent spa heater. ====================================================== ======= ================== =========== ======== ======== ======================================= Element Type Units Constraints Required Default Notes ====================================================== ======= ================== =========== ======== ======== ======================================= ``SystemIdentifier`` id Yes Unique identifier - ``Type`` string See [#]_ Yes Hot tub heater type - ``Load[Units="kWh/year" or Units="therm/year"]/Value`` double kWh/yr or therm/yr >= 0 No See [#]_ Hot tub heater energy use - ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on hot tub heater energy use + ``Type`` string See [#]_ Yes Permanent spa heater type + ``Load[Units="kWh/year" or Units="therm/year"]/Value`` double kWh/yr or therm/yr >= 0 No See [#]_ Permanent spa heater energy use + ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on permanent spa heater energy use ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers ====================================================== ======= ================== =========== ======== ======== ======================================= .. [#] Type choices are "none, "gas fired", "electric resistance", or "heat pump". - If "none" is entered, the simulation will not include a hot tub heater. - .. [#] | If Value not provided, defaults as follows: - | - **gas fired [therm/year]**: 0.87 / 0.011 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP `_) - | - **electric resistance [kWh/year]**: 49.0 / 0.048 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP `_) - | - **heat pump [kWh/year]** = (electric resistance) / 5.0 (based on an average COP of 5 from `Energy Saver `_) - | If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`. + If "none" is entered, the simulation will not include a permanent spa heater. + .. [#] If Value not provided, defaults as follows: + + \- **gas fired [therm/year]**: 0.87 / 0.011 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP `_) + + \- **electric resistance [kWh/year]**: 49.0 / 0.048 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP `_) + + \- **heat pump [kWh/year]** = (electric resistance) / 5.0 (based on an average COP of 5 from `Energy Saver `_) + + If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`. + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: "0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024". .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: "0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837". @@ -3481,38 +3790,68 @@ If not entered, the simulation will not include that type of plug load. ======================================== ======= ====== =========== ======== ======== ============================================================= .. [#] PlugLoadType choices are "other", "TV other", "well pump", or "electric vehicle charging". - .. [#] | If Value not provided, defaults as: - | - **other**: 0.91 * ConditionedFloorArea (based on `ANSI/RESNET/ICC 301-2019 `_) - | - **TV other**: 413.0 + 69.0 * NumberofBedrooms (based on `ANSI/RESNET/ICC 301-2019 `_) - | - **well pump**: 50.8 / 0.127 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP `_) - | - **electric vehicle charging**: 1666.67 (calculated using AnnualMiles * kWhPerMile / (ChargerEfficiency * BatteryEfficiency) where AnnualMiles=4500, kWhPerMile=0.3, ChargerEfficiency=0.9, and BatteryEfficiency=0.9) - | If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`. - .. [#] | If FracSensible not provided, defaults as: - | - **other**: 0.855 - | - **TV other**: 1.0 - | - **well pump**: 0.0 - | - **electric vehicle charging**: 0.0 + .. [#] If Value not provided, defaults as: + + \- **other**: 0.91 * ConditionedFloorArea (based on `ANSI/RESNET/ICC 301-2019 `_) + + \- **TV other**: 413.0 + 69.0 * NumberofBedrooms (based on `ANSI/RESNET/ICC 301-2019 `_) + + \- **well pump**: 50.8 / 0.127 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP `_) + + \- **electric vehicle charging**: 1666.67 (calculated using AnnualMiles * kWhPerMile / (ChargerEfficiency * BatteryEfficiency) where AnnualMiles=4500, kWhPerMile=0.3, ChargerEfficiency=0.9, and BatteryEfficiency=0.9) + + If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`. + + .. [#] If FracSensible not provided, defaults as: + + \- **other**: 0.855 + + \- **TV other**: 1.0 + + \- **well pump**: 0.0 + + \- **electric vehicle charging**: 0.0 + .. [#] The remaining fraction (i.e., 1.0 - FracSensible - FracLatent) must be > 0 and is assumed to be heat gain outside conditioned space and thus lost. - .. [#] | If FracLatent not provided, defaults as: - | - **other**: 0.045 - | - **TV other**: 0.0 - | - **well pump**: 0.0 - | - **electric vehicle charging**: 0.0 - .. [#] | If WeekdayScheduleFractions not provided (and :ref:`detailedschedules` not used), defaults as: - | - **other**: "0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036" (based on Figure 23 of the `2010 BAHSP `_) - | - **TV other**: "0.037, 0.018, 0.009, 0.007, 0.011, 0.018, 0.029, 0.040, 0.049, 0.058, 0.065, 0.072, 0.076, 0.086, 0.091, 0.102, 0.127, 0.156, 0.210, 0.294, 0.363, 0.344, 0.208, 0.090" (based on the `American Time Use Survey `_) - | - **well pump**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065" (based on Figure 23 of the `2010 BAHSP `_) - | - **electric vehicle charging**: "0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042" - .. [#] | If WeekdendScheduleFractions not provided (and :ref:`detailedschedules` not used), defaults as: - | - **other**: "0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036" (based on Figure 23 of the `2010 BAHSP `_) - | - **TV other**: "0.044, 0.022, 0.012, 0.008, 0.011, 0.014, 0.024, 0.043, 0.071, 0.094, 0.112, 0.123, 0.132, 0.156, 0.178, 0.196, 0.206, 0.213, 0.251, 0.330, 0.388, 0.358, 0.226, 0.103" (based on the `American Time Use Survey `_) - | - **well pump**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065" (based on Figure 23 of the `2010 BAHSP `_) - | - **electric vehicle charging**: "0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042" - .. [#] | If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), defaults as: - | - **other**: "1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248" (based on Figure 24 of the `2010 BAHSP `_) - | - **TV other**: "1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137" (based on the `American Time Use Survey `_) - | - **well pump**: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154" (based on Figure 24 of the `2010 BAHSP `_) - | - **electric vehicle charging**: "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0" + .. [#] If FracLatent not provided, defaults as: + + \- **other**: 0.045 + + \- **TV other**: 0.0 + + \- **well pump**: 0.0 + + \- **electric vehicle charging**: 0.0 + + .. [#] If WeekdayScheduleFractions not provided (and :ref:`detailedschedules` not used), defaults as: + + \- **other**: "0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036" (based on Figure 23 of the `2010 BAHSP `_) + + \- **TV other**: "0.037, 0.018, 0.009, 0.007, 0.011, 0.018, 0.029, 0.040, 0.049, 0.058, 0.065, 0.072, 0.076, 0.086, 0.091, 0.102, 0.127, 0.156, 0.210, 0.294, 0.363, 0.344, 0.208, 0.090" (based on the `American Time Use Survey `_) + + \- **well pump**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065" (based on Figure 23 of the `2010 BAHSP `_) + + \- **electric vehicle charging**: "0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042" + + .. [#] If WeekdendScheduleFractions not provided (and :ref:`detailedschedules` not used), defaults as: + + \- **other**: "0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036" (based on Figure 23 of the `2010 BAHSP `_) + + \- **TV other**: "0.044, 0.022, 0.012, 0.008, 0.011, 0.014, 0.024, 0.043, 0.071, 0.094, 0.112, 0.123, 0.132, 0.156, 0.178, 0.196, 0.206, 0.213, 0.251, 0.330, 0.388, 0.358, 0.226, 0.103" (based on the `American Time Use Survey `_) + + \- **well pump**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065" (based on Figure 23 of the `2010 BAHSP `_) + + \- **electric vehicle charging**: "0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042" + + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), defaults as: + + \- **other**: "1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248" (based on Figure 24 of the `2010 BAHSP `_) + + \- **TV other**: "1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137" (based on the `American Time Use Survey `_) + + \- **well pump**: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154" (based on Figure 24 of the `2010 BAHSP `_) + + \- **electric vehicle charging**: "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0" HPXML Fuel Loads **************** @@ -3538,23 +3877,35 @@ If not entered, the simulation will not include that type of fuel load. ======================================== ======= ======== =========== ======== ======== ============================================================= .. [#] FuelLoadType choices are "grill", "fireplace", or "lighting". - .. [#] | If Value not provided, calculated as based on the `2010 BAHSP `_: - | - **grill**: 0.87 / 0.029 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) - | - **fireplace**: 1.95 / 0.032 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) - | - **lighting**: 0.22 / 0.012 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) - | If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`. + .. [#] If Value not provided, calculated as based on the `2010 BAHSP `_: + + \- **grill**: 0.87 / 0.029 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) + + \- **fireplace**: 1.95 / 0.032 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) + + \- **lighting**: 0.22 / 0.012 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) + + If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`. + .. [#] FuelType choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "wood", or "wood pellets". .. [#] If FracSensible not provided, defaults to 0.5 for fireplace and 0.0 for all other types. .. [#] The remaining fraction (i.e., 1.0 - FracSensible - FracLatent) must be > 0 and is assumed to be heat gain outside conditioned space and thus lost. .. [#] If FracLatent not provided, defaults to 0.1 for fireplace and 0.0 for all other types. - .. [#] | If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: - | - **grill**: "0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007"; - | - **fireplace**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065"; - | - **lighting**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065". - .. [#] | If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: - | - **grill**: "1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097"; - | - **fireplace**: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154"; - | - **lighting**: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154". + .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 23 of the `2010 BAHSP `_ are used: + + \- **grill**: "0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007"; + + \- **fireplace**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065"; + + \- **lighting**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065". + + .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP `_ are used: + + \- **grill**: "1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097"; + + \- **fireplace**: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154"; + + \- **lighting**: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154". .. _hpxmllocations: @@ -3563,29 +3914,31 @@ HPXML Locations The various locations used in an HPXML file are defined as follows: - ============================== ======================================================= ======================================= ============= - Value Description Temperature Building Type - ============================== ======================================================= ======================================= ============= - outside Ambient environment Weather data Any - ground EnergyPlus calculation Any - living space Above-grade conditioned space maintained at setpoint EnergyPlus calculation Any - attic - vented EnergyPlus calculation Any - attic - unvented EnergyPlus calculation Any - basement - conditioned Below-grade conditioned space maintained at setpoint EnergyPlus calculation Any - basement - unconditioned EnergyPlus calculation Any - crawlspace - vented EnergyPlus calculation Any - crawlspace - unvented EnergyPlus calculation Any - crawlspace - conditioned Below-grade conditioned space maintained at setpoint EnergyPlus calculation Any - garage Single-family garage (not shared parking) EnergyPlus calculation Any - other housing unit E.g., conditioned adjacent unit or conditioned corridor Same as living space SFA/MF only - other heated space E.g., shared laundry/equipment space Avg of living space/outside; min of 68F SFA/MF only - other multifamily buffer space E.g., enclosed unconditioned stairwell Avg of living space/outside; min of 50F SFA/MF only - other non-freezing space E.g., shared parking garage ceiling Floats with outside; minimum of 40F SFA/MF only - other exterior Water heater outside Weather data Any - exterior wall Ducts in exterior wall Avg of living space/outside Any - under slab Ducts under slab (ground) EnergyPlus calculation Any - roof deck Ducts on roof deck (outside) Weather data Any - ============================== ======================================================= ======================================= ============= + ============================== ======================================================= ============================================ ================= + Value Description Temperature Building Type + ============================== ======================================================= ============================================ ================= + outside Ambient environment Weather data Any + ground EnergyPlus calculation Any + conditioned space Above-grade conditioned space maintained at setpoint EnergyPlus calculation Any + attic - vented EnergyPlus calculation Any + attic - unvented EnergyPlus calculation Any + basement - conditioned Below-grade conditioned space maintained at setpoint EnergyPlus calculation Any + basement - unconditioned EnergyPlus calculation Any + crawlspace - vented EnergyPlus calculation Any + crawlspace - unvented EnergyPlus calculation Any + crawlspace - conditioned Below-grade conditioned space maintained at setpoint EnergyPlus calculation Any + garage Single-family garage (not shared parking) EnergyPlus calculation Any + manufactured home underbelly Underneath the belly, ambient environment Weather data Manufactured only + manufactured home belly Within the belly Same as conditioned space Manufactured only + other housing unit E.g., conditioned adjacent unit or conditioned corridor Same as conditioned space SFA/MF only + other heated space E.g., shared laundry/equipment space Avg of conditioned space/outside; min of 68F SFA/MF only + other multifamily buffer space E.g., enclosed unconditioned stairwell Avg of conditioned space/outside; min of 50F SFA/MF only + other non-freezing space E.g., shared parking garage ceiling Floats with outside; minimum of 40F SFA/MF only + other exterior Water heater outside Weather data Any + exterior wall Ducts in exterior wall Avg of conditioned space/outside Any + under slab Ducts under slab (ground) EnergyPlus calculation Any + roof deck Ducts on roof deck (outside) Weather data Any + ============================== ======================================================= ============================================ ================= Validating & Debugging Errors ----------------------------- diff --git a/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst b/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst index ede14a15..0682b9c3 100644 --- a/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst +++ b/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst @@ -157,8 +157,8 @@ So the sum of all end uses for a given fuel (e.g., sum of all "End Use: Natural End Use: Electricity: Well Pump (MBtu) End Use: Electricity: Pool Heater (MBtu) End Use: Electricity: Pool Pump (MBtu) - End Use: Electricity: Hot Tub Heater (MBtu) - End Use: Electricity: Hot Tub Pump (MBtu) + End Use: Electricity: Permanent Spa Heater (MBtu) + End Use: Electricity: Permanent Spa Pump (MBtu) End Use: Electricity: PV (MBtu) Negative value for any power produced End Use: Electricity: Generator (MBtu) Negative value for any power produced End Use: Electricity: Battery (MBtu) Positive value for charging (including efficiency losses); negative value for discharging @@ -169,7 +169,7 @@ So the sum of all end uses for a given fuel (e.g., sum of all "End Use: Natural End Use: Natural Gas: Range/Oven (MBtu) End Use: Natural Gas: Mech Vent Preheating (MBtu) End Use: Natural Gas: Pool Heater (MBtu) - End Use: Natural Gas: Hot Tub Heater (MBtu) + End Use: Natural Gas: Permanent Spa Heater (MBtu) End Use: Natural Gas: Grill (MBtu) End Use: Natural Gas: Lighting (MBtu) End Use: Natural Gas: Fireplace (MBtu) @@ -334,6 +334,7 @@ Peak building electricity outputs are listed below. ================================== ============================================================= Peak Electricity: Winter Total (W) Maximum value in Dec/Jan/Feb (or Jun/Jul/Aug in the southern hemisphere) Peak Electricity: Summer Total (W) Maximum value in Jun/Jul/Aug (or Dec/Jan/Feb in the southern hemisphere) + Peak Electricity: Annual Total (W) Maximum value in any month ================================== ============================================================= Peak Building Loads @@ -403,12 +404,26 @@ Annual hot water uses are listed below. Hot Water: Distribution Waste (gal) =================================== ==================== +Resilience +~~~~~~~~~~ + +Resilience outputs are listed below. + + =================================== ==================== + Type Notes + =================================== ==================== + Resilience: Battery (hr) Average length of time the battery state of charge can meet the electric load [#]_ + =================================== ==================== + + .. [#] Calculation is performed every timestep and then averaged, which assumes a power outage is equally likely to occur every hour of the year. + The entire electric load is treated as a "critical load" that would be supported during an outage. + Resilience hours are set to 0 for any timestep where the battery is not charged, even if there is sufficient PV to power the building. + HVAC Capacities ~~~~~~~~~~~~~~~ System outputs are listed below. -Autosized HVAC systems are based on HVAC design temperatures/loads described below. -Capacities for individual HVAC systems can be found in the `in.xml` file. +Capacities for individual HVAC systems can be found in the ``in.xml`` file. ==================================================== ==================== Type Notes @@ -418,11 +433,21 @@ Capacities for individual HVAC systems can be found in the `in.xml` file. HVAC Capacity: Heat Pump Backup (Btu/h) Total HVAC heat pump backup capacity ==================================================== ==================== +.. note:: + + Autosized HVAC systems are based on :ref:`hvac_design_temps` and :ref:`hvac_design_loads`. + + For heat pumps with a minimum compressor lockout temperature greater than the heating design temperature (e.g., a dual-fuel heat pump in a cold climate), the compressor will be sized based on heating design loads calculated at the compressor lockout temperature. + This is done to prevent unutilized capacity at temperatures below the compressor lockout temperature. + Any heat pump backup will still be based on heating design loads calculated using the heating design temperature. + +.. _hvac_design_temps: + HVAC Design Temperatures ~~~~~~~~~~~~~~~~~~~~~~~~ Design temperatures are used in the design load calculations for autosizing of HVAC equipment; see :ref:`hvac_sizing_control` for how they are derived. -Design temperatures can also be found in the `in.xml` file. +Design temperatures can also be found in the ``in.xml`` file. ===================================================================== ==================== Type Notes @@ -431,12 +456,14 @@ Design temperatures can also be found in the `in.xml` file. HVAC Design Temperature: Cooling (F) 1% cooling drybulb temperature ===================================================================== ==================== +.. _hvac_design_loads: + HVAC Design Loads ~~~~~~~~~~~~~~~~~ Design load outputs, used for autosizing of HVAC equipment, are listed below. -Design loads are based on block load ACCA Manual J calculations using 1%/99% design temperatures. -Design loads can also be found in the `in.xml` file. +Design loads are based on block load ACCA Manual J calculations using :ref:`hvac_design_temps`. +Design loads can also be found in the ``in.xml`` file. ===================================================================== ==================== Type Notes @@ -494,9 +521,10 @@ Depending on the outputs requested, the file may include: Total Loads Heating, cooling, and hot water loads (in kBtu). Component Loads Heating and cooling loads (in kBtu) disaggregated by component (e.g., Walls, Windows, Infiltration, Ducts, etc.). Unmet Hours Heating and cooling unmet hours. - Zone Temperatures Zone temperatures (in deg-F) for each space (e.g., living space, attic, garage, basement, crawlspace, etc.) plus heating/cooling setpoints. + Zone Temperatures Zone temperatures (in deg-F) for each space (e.g., conditioned space, attic, garage, basement, crawlspace, etc.) plus heating/cooling setpoints. Airflows Airflow rates (in cfm) for infiltration, mechanical ventilation (including clothes dryer exhaust), natural ventilation, whole house fans. Weather Weather file data including outdoor temperatures, relative humidity, wind speed, and solar. + Resilience Resilience outputs (currently only average resilience hours for battery storage). EnergyPlus Output Variables These are optional and can be requested with the ReportSimulationOutput ``user_output_variables`` argument. =================================== ================================================================================================================================== @@ -506,42 +534,51 @@ Timestamps in the output use the start-of-period convention unless you have requ Additional timestamp columns can be optionally requested that reflect daylight saving time (DST) and/or coordinated universal time (UTC). Most outputs will be summed over the hour (e.g., energy) but some will be averaged over the hour (e.g., temperatures, airflows). -Note that if the home is not fully conditioned (e.g., a room air conditioner that only meets 30% of the cooling load), the reported zone temperature for the living space will reflect a fully conditioned home due to the way these systems are modeled in EnergyPlus. +Note that if the home is not fully conditioned (e.g., a room air conditioner that only meets 30% of the cooling load), the reported zone temperature for the conditioned space will reflect a fully conditioned home due to the way these systems are modeled in EnergyPlus. .. _bill_outputs: Utility Bill Outputs -------------------- -OpenStudio-HPXML can optionally generate a utility bills output file. -The utility bills output file is called ``results_bills.csv`` (or ``results_bills.json`` or ``results_bills.msgpack``) and located in the run directory. - -Results for each utility bill scenario defined in the HPXML file are listed as shown below. - - ============================================= ==================== - Type Notes - ============================================= ==================== - : Total ($) Scenario annual total charges. - : Electricity: Fixed ($) Scenario annual fixed charges for electricity. - : Electricity: Energy ($) Scenario annual energy charges for electricity. - : Electricity: PV Credit ($) Scenario annual production credit (negative value) for PV. - : Electricity: Total ($) Scenario annual total charges for electricity. - : Natural Gas: Fixed ($) Scenario annual fixed charges for natural gas. - : Natural Gas: Energy ($) Scenario annual energy charges for natural gas. - : Natural Gas: Total ($) Scenario annual total charges for natural gas. - : Fuel Oil: Fixed ($) Scenario annual fixed charges for fuel oil. - : Fuel Oil: Energy ($) Scenario annual energy charges for fuel oil. - : Fuel Oil: Total ($) Scenario annual total charges for fuel oil. - : Propane: Fixed ($) Scenario annual fixed charges for propane. - : Propane: Energy ($) Scenario annual energy charges for propane. - : Propane: Total ($) Scenario annual total charges for propane. - : Wood Cord: Fixed ($) Scenario annual fixed charges for wood cord. - : Wood Cord: Energy ($) Scenario annual energy charges for wood cord. - : Wood Cord: Total ($) Scenario annual total charges for wood cord. - : Wood Pellets: Fixed ($) Scenario annual fixed charges for wood pellets. - : Wood Pellets: Energy ($) Scenario annual energy charges for wood pellets. - : Wood Pellets: Total ($) Scenario annual total charges for wood pellets. - : Coal: Fixed ($) Scenario annual fixed charges for coal. - : Coal: Energy ($) Scenario annual energy charges for coal. - : Coal: Total ($) Scenario annual total charges for coal. - ============================================= ==================== +OpenStudio-HPXML can optionally generate utility bill output files (annual, monthly, or both). +The annual utility bills output file is called ``results_bills.csv`` (or ``results_bills.json`` or ``results_bills.msgpack``) and located in the run directory. +The monthly utility bills output file is called ``results_bills_monthly.csv`` (or ``results_bills_monthly.json`` or ``results_bills_monthly.msgpack``) and located in the run directory. + +Annual Bills by Fuel Use +~~~~~~~~~~~~~~~~~~~~~~~~ + +Annual results for each utility bill scenario defined in the HPXML file are listed as shown below. + + ================================================= ==================== + Type Notes + ================================================= ==================== + : Total (USD) Scenario annual total charges. + : Electricity: Fixed (USD) Scenario annual fixed charges for electricity. + : Electricity: Energy (USD) Scenario annual energy charges for electricity. + : Electricity: PV Credit (USD) Scenario annual production credit (negative value) for PV. + : Electricity: Total (USD) Scenario annual total charges for electricity. + : Natural Gas: Fixed (USD) Scenario annual fixed charges for natural gas. + : Natural Gas: Energy (USD) Scenario annual energy charges for natural gas. + : Natural Gas: Total (USD) Scenario annual total charges for natural gas. + : Fuel Oil: Fixed (USD) Scenario annual fixed charges for fuel oil. + : Fuel Oil: Energy (USD) Scenario annual energy charges for fuel oil. + : Fuel Oil: Total (USD) Scenario annual total charges for fuel oil. + : Propane: Fixed (USD) Scenario annual fixed charges for propane. + : Propane: Energy (USD) Scenario annual energy charges for propane. + : Propane: Total (USD) Scenario annual total charges for propane. + : Wood Cord: Fixed (USD) Scenario annual fixed charges for wood cord. + : Wood Cord: Energy (USD) Scenario annual energy charges for wood cord. + : Wood Cord: Total (USD) Scenario annual total charges for wood cord. + : Wood Pellets: Fixed (USD) Scenario annual fixed charges for wood pellets. + : Wood Pellets: Energy (USD) Scenario annual energy charges for wood pellets. + : Wood Pellets: Total (USD) Scenario annual total charges for wood pellets. + : Coal: Fixed (USD) Scenario annual fixed charges for coal. + : Coal: Energy (USD) Scenario annual energy charges for coal. + : Coal: Total (USD) Scenario annual total charges for coal. + ================================================= ==================== + +Monthly Bills by Fuel Use +~~~~~~~~~~~~~~~~~~~~~~~~~ + +Monthly results for each utility bill scenario defined in the HPXML file are listed as rows corresponding to Month, and columns corresponding to Type. diff --git a/example_files/resources/hpxml-measures/tasks.rb b/example_files/resources/hpxml-measures/tasks.rb index c6c9a478..8eaa184e 100644 --- a/example_files/resources/hpxml-measures/tasks.rb +++ b/example_files/resources/hpxml-measures/tasks.rb @@ -49,69 +49,69 @@ def create_hpxmls measures = {} measures['BuildResidentialHPXML'] = [json_input] - # Re-generate stochastic schedule CSV? - csv_path = json_input['schedules_filepaths'].to_s.split(',').map(&:strip).find { |fp| fp.include? 'occupancy-stochastic' } - if (not csv_path.nil?) && (not schedules_regenerated.include? csv_path) - sch_args = { 'hpxml_path' => hpxml_path, - 'output_csv_path' => csv_path, - 'hpxml_output_path' => hpxml_path } - measures['BuildResidentialScheduleFile'] = [sch_args] - schedules_regenerated << csv_path - end - measures_dir = File.dirname(__FILE__) model = OpenStudio::Model::Model.new runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) - # Apply measure - success = apply_measures(measures_dir, measures, runner, model) - - # Report errors - runner.result.stepErrors.each do |s| - puts "Error: #{s}" + num_apply_measures = 1 + if hpxml_path.include?('base-multiple-sfd-buildings') + num_apply_measures = 3 + elsif hpxml_path.include?('base-multiple-mf-units') + num_apply_measures = 6 end - if not success - puts "\nError: Did not successfully generate #{hpxml_file}." - exit! + for i in 1..num_apply_measures + measures['BuildResidentialHPXML'][0]['existing_hpxml_path'] = hpxml_path if i > 1 + if hpxml_path.include?('base-multiple-sfd-buildings') || hpxml_path.include?('base-multiple-mf-units') + suffix = "_#{i}" if i > 1 + measures['BuildResidentialHPXML'][0]['schedules_filepaths'] = "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic#{suffix}.csv" + end + if hpxml_path.include?('base-multiple-mf-units') + measures['BuildResidentialHPXML'][0]['geometry_foundation_type'] = (i <= 2 ? 'UnconditionedBasement' : 'AboveApartment') + measures['BuildResidentialHPXML'][0]['geometry_attic_type'] = (i >= 5 ? 'VentedAttic' : 'BelowApartment') + end + + # Re-generate stochastic schedule CSV? + csv_path = json_input['schedules_filepaths'].to_s.split(',').map(&:strip).find { |fp| fp.include? 'occupancy-stochastic' } + if (not csv_path.nil?) && (not schedules_regenerated.include? csv_path) + sch_args = { 'hpxml_path' => hpxml_path, + 'output_csv_path' => csv_path, + 'hpxml_output_path' => hpxml_path, + 'building_id' => "MyBuilding#{suffix}" } + measures['BuildResidentialScheduleFile'] = [sch_args] + schedules_regenerated << csv_path + end + + # Apply measure + success = apply_measures(measures_dir, measures, runner, model) + + # Report errors + runner.result.stepErrors.each do |s| + puts "Error: #{s}" + end + + if not success + puts "\nError: Did not successfully generate #{hpxml_filename}." + exit! + end end - hpxml = HPXML.new(hpxml_path: hpxml_path) + hpxml = HPXML.new(hpxml_path: hpxml_path, building_id: 'ALL') if hpxml_path.include? 'ASHRAE_Standard_140' apply_hpxml_modification_ashrae_140(hpxml) else apply_hpxml_modification(File.basename(hpxml_path), hpxml) end - hpxml_doc = hpxml.to_oga() - - if hpxml_path.include? 'base-multiple-buildings.xml' - # HPXML class doesn't support multiple buildings, so we'll stitch together manually. - hpxml_element = XMLHelper.get_element(hpxml_doc, '/HPXML') - building_element = XMLHelper.get_element(hpxml_element, 'Building') - for i in 2..3 - new_building_element = Marshal.load(Marshal.dump(building_element)) # Deep copy - - # Make all IDs unique so the HPXML is valid - new_building_element.each_node do |node| - next unless node.is_a?(Oga::XML::Element) - - if not XMLHelper.get_attribute_value(node, 'id').nil? - XMLHelper.add_attribute(node, 'id', "#{XMLHelper.get_attribute_value(node, 'id')}_#{i}") - elsif not XMLHelper.get_attribute_value(node, 'idref').nil? - XMLHelper.add_attribute(node, 'idref', "#{XMLHelper.get_attribute_value(node, 'idref')}_#{i}") - end - end - - hpxml_element.children << new_building_element - end - end + hpxml_doc = hpxml.to_doc() XMLHelper.write_file(hpxml_doc, hpxml_path) errors, _warnings = XMLValidator.validate_against_schema(hpxml_path, schema_validator) next unless errors.size > 0 - puts errors.to_s + errors.each do |s| + puts "Error: #{s}" + end puts "\nError: Did not successfully validate #{hpxml_filename}." exit! end @@ -139,94 +139,97 @@ def apply_hpxml_modification_ashrae_140(hpxml) hpxml.header.created_date_and_time = Time.new(2000, 1, 1, 0, 0, 0, '-07:00').strftime('%Y-%m-%dT%H:%M:%S%:z') # Hard-code to prevent diffs hpxml.header.apply_ashrae140_assumptions = true - # --------------------- # - # HPXML BuildingSummary # - # --------------------- # + hpxml.buildings.each do |hpxml_bldg| + # --------------------- # + # HPXML BuildingSummary # + # --------------------- # - hpxml.site.azimuth_of_front_of_home = nil - hpxml.building_construction.average_ceiling_height = nil + hpxml_bldg.site.azimuth_of_front_of_home = nil + hpxml_bldg.building_construction.average_ceiling_height = nil - # --------------- # - # HPXML Enclosure # - # --------------- # + # --------------- # + # HPXML Enclosure # + # --------------- # - hpxml.attics[0].vented_attic_ach = 2.4 - hpxml.foundations.reverse_each do |foundation| - foundation.delete - end - hpxml.roofs.each do |roof| - if roof.roof_color == HPXML::ColorReflective - roof.solar_absorptance = 0.2 - else - roof.solar_absorptance = 0.6 + hpxml_bldg.attics[0].vented_attic_ach = 2.4 + hpxml_bldg.foundations.reverse_each do |foundation| + foundation.delete end - roof.emittance = 0.9 - roof.roof_color = nil - end - (hpxml.walls + hpxml.rim_joists).each do |wall| - if wall.color == HPXML::ColorReflective - wall.solar_absorptance = 0.2 - else - wall.solar_absorptance = 0.6 + hpxml_bldg.roofs.each do |roof| + if roof.roof_color == HPXML::ColorReflective + roof.solar_absorptance = 0.2 + else + roof.solar_absorptance = 0.6 + end + roof.emittance = 0.9 + roof.roof_color = nil end - wall.emittance = 0.9 - wall.color = nil - if wall.is_a?(HPXML::Wall) - if wall.attic_wall_type == HPXML::AtticWallTypeGable - wall.insulation_assembly_r_value = 2.15 + (hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |wall| + if wall.color == HPXML::ColorReflective + wall.solar_absorptance = 0.2 else - wall.interior_finish_type = HPXML::InteriorFinishGypsumBoard - wall.interior_finish_thickness = 0.5 + wall.solar_absorptance = 0.6 + end + wall.emittance = 0.9 + wall.color = nil + if wall.is_a?(HPXML::Wall) + if wall.attic_wall_type == HPXML::AtticWallTypeGable + wall.insulation_assembly_r_value = 2.15 + else + wall.interior_finish_type = HPXML::InteriorFinishGypsumBoard + wall.interior_finish_thickness = 0.5 + end end end - end - hpxml.floors.each do |floor| - next unless floor.is_ceiling + hpxml_bldg.floors.each do |floor| + next unless floor.is_ceiling - floor.interior_finish_type = HPXML::InteriorFinishGypsumBoard - floor.interior_finish_thickness = 0.5 - end - hpxml.foundation_walls.each do |fwall| - if fwall.insulation_interior_r_value == 0 - fwall.interior_finish_type = HPXML::InteriorFinishNone - else - fwall.interior_finish_type = HPXML::InteriorFinishGypsumBoard - fwall.interior_finish_thickness = 0.5 + floor.interior_finish_type = HPXML::InteriorFinishGypsumBoard + floor.interior_finish_thickness = 0.5 end - end - if hpxml.doors.size == 1 - hpxml.doors[0].area /= 2.0 - hpxml.doors << hpxml.doors[0].dup - hpxml.doors[1].azimuth = 0 - hpxml.doors[1].id = 'Door2' - end - hpxml.windows.each do |window| - next if window.overhangs_depth.nil? + hpxml_bldg.foundation_walls.each do |fwall| + if fwall.insulation_interior_r_value == 0 + fwall.interior_finish_type = HPXML::InteriorFinishNone + else + fwall.interior_finish_type = HPXML::InteriorFinishGypsumBoard + fwall.interior_finish_thickness = 0.5 + end + end + if hpxml_bldg.doors.size == 1 + hpxml_bldg.doors[0].area /= 2.0 + hpxml_bldg.doors << hpxml_bldg.doors[0].dup + hpxml_bldg.doors[1].azimuth = 0 + hpxml_bldg.doors[1].id = 'Door2' + end + hpxml_bldg.windows.each do |window| + next if window.overhangs_depth.nil? - window.overhangs_distance_to_bottom_of_window = 6.0 - end + window.overhangs_distance_to_bottom_of_window = 6.0 + end - # ---------- # - # HPXML HVAC # - # ---------- # + # ---------- # + # HPXML HVAC # + # ---------- # - hpxml.hvac_controls.add(id: "HVACControl#{hpxml.hvac_controls.size + 1}", - heating_setpoint_temp: 68.0, - cooling_setpoint_temp: 78.0) + hpxml_bldg.hvac_controls.add(id: "HVACControl#{hpxml_bldg.hvac_controls.size + 1}", + heating_setpoint_temp: 68.0, + cooling_setpoint_temp: 78.0) - # --------------- # - # HPXML MiscLoads # - # --------------- # + # --------------- # + # HPXML MiscLoads # + # --------------- # - if hpxml.plug_loads[0].kwh_per_year > 0 - hpxml.plug_loads[0].weekday_fractions = '0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660' - hpxml.plug_loads[0].weekend_fractions = '0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660' - hpxml.plug_loads[0].monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' + next unless hpxml_bldg.plug_loads[0].kwh_per_year > 0 + + hpxml_bldg.plug_loads[0].weekday_fractions = '0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660' + hpxml_bldg.plug_loads[0].weekend_fractions = '0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660' + hpxml_bldg.plug_loads[0].monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' end end def apply_hpxml_modification(hpxml_file, hpxml) # Set detailed HPXML values for sample files + hpxml_bldg = hpxml.buildings[0] # ------------ # # HPXML Header # @@ -238,1949 +241,2232 @@ def apply_hpxml_modification(hpxml_file, hpxml) # Logic that can only be applied based on the file name if ['base-hvac-undersized-allow-increased-fixed-capacities.xml'].include? hpxml_file - hpxml.header.allow_increased_fixed_capacities = true + hpxml_bldg.header.allow_increased_fixed_capacities = true elsif ['base-misc-emissions.xml'].include? hpxml_file - hpxml.header.egrid_region = 'Western' - hpxml.header.egrid_subregion = 'RMPA' - hpxml.header.cambium_region_gea = 'RMPAc' + hpxml_bldg.egrid_region = 'Western' + hpxml_bldg.egrid_subregion = 'RMPA' + hpxml_bldg.cambium_region_gea = 'RMPAc' end - # --------------------- # - # HPXML BuildingSummary # - # --------------------- # - - # General logic for all files - hpxml.site.fuels = [HPXML::FuelTypeElectricity, HPXML::FuelTypeNaturalGas] - - # Logic that can only be applied based on the file name - if ['base-schedules-simple.xml', - 'base-schedules-simple-vacancy.xml', - 'base-schedules-simple-vacancy-year-round.xml', - 'base-schedules-simple-power-outage.xml', - 'base-misc-loads-large-uncommon.xml', - 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file - hpxml.building_occupancy.weekday_fractions = '0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061' - hpxml.building_occupancy.weekend_fractions = '0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061' - hpxml.building_occupancy.monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' - elsif ['base-misc-defaults.xml'].include? hpxml_file - hpxml.building_construction.average_ceiling_height = nil - hpxml.building_construction.conditioned_building_volume = nil - elsif ['base-atticroof-cathedral.xml'].include? hpxml_file - hpxml.building_construction.number_of_conditioned_floors = 2 - hpxml.building_construction.number_of_conditioned_floors_above_grade = 1 - hpxml.building_construction.conditioned_floor_area = 2700 - hpxml.attics[0].attic_type = HPXML::AtticTypeCathedral - elsif ['base-atticroof-conditioned.xml'].include? hpxml_file - hpxml.building_construction.conditioned_building_volume = 23850 - hpxml.air_infiltration_measurements[0].infiltration_volume = hpxml.building_construction.conditioned_building_volume - hpxml.air_infiltration_measurements[0].infiltration_height = 15.0 - elsif ['base-enclosure-split-level.xml'].include? hpxml_file - hpxml.building_construction.number_of_conditioned_floors = 1.5 - hpxml.building_construction.number_of_conditioned_floors_above_grade = 1.5 - elsif ['base-foundation-walkout-basement.xml'].include? hpxml_file - hpxml.building_construction.number_of_conditioned_floors_above_grade = 2 - elsif ['base-foundation-basement-garage.xml'].include? hpxml_file - hpxml.building_construction.conditioned_floor_area -= 400 * 2 - hpxml.building_construction.conditioned_building_volume -= 400 * 2 * 8 - hpxml.air_infiltration_measurements[0].infiltration_volume = hpxml.building_construction.conditioned_building_volume - elsif ['base-bldgtype-multifamily-infil-compartmentalization-test.xml'].include? hpxml_file - hpxml.air_infiltration_measurements[0].a_ext = 0.2 + if ['base-hvac-autosize-sizing-controls.xml'].include? hpxml_file + hpxml_bldg.header.manualj_heating_design_temp = 0 + hpxml_bldg.header.manualj_cooling_design_temp = 100 + hpxml_bldg.header.manualj_heating_setpoint = 60 + hpxml_bldg.header.manualj_cooling_setpoint = 80 + hpxml_bldg.header.manualj_humidity_setpoint = 0.55 + hpxml_bldg.header.manualj_internal_loads_sensible = 4000 + hpxml_bldg.header.manualj_internal_loads_latent = 200 + hpxml_bldg.header.manualj_num_occupants = 5 end - - # --------------- # - # HPXML Enclosure # - # --------------- # - - # General logic for all files - (hpxml.roofs + hpxml.walls + hpxml.rim_joists).each do |surface| - surface.solar_absorptance = 0.7 - surface.emittance = 0.92 - if surface.is_a? HPXML::Roof - surface.roof_color = nil - else - surface.color = nil - end + if ['base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml'].include? hpxml_file + # YORK HMH7 + # https://ashp.neep.org/#!/product/64253/7/25000///0 + clg_perf_data = hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data + htg_perf_data = hpxml_bldg.heat_pumps[0].heating_detailed_performance_data + clg_perf_data.add(outdoor_temperature: 95.0, + capacity: 11700, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 4.47) + clg_perf_data.add(outdoor_temperature: 95.0, + capacity: 36000, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 2.71) + clg_perf_data.add(outdoor_temperature: 82.0, + capacity: 13200, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 6.34) + clg_perf_data.add(outdoor_temperature: 82.0, + capacity: 40000, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 3.53) + htg_perf_data.add(outdoor_temperature: 47.0, + capacity: 10000, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 4.73) + htg_perf_data.add(outdoor_temperature: 47.0, + capacity: 36000, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 3.44) + htg_perf_data.add(outdoor_temperature: 17.0, + capacity: 4200, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 1.84) + htg_perf_data.add(outdoor_temperature: 17.0, + capacity: 24800, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 2.66) + htg_perf_data.add(outdoor_temperature: 5.0, + capacity: 1900, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 0.81) + htg_perf_data.add(outdoor_temperature: 5.0, + capacity: 19900, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 2.28) end - hpxml.roofs.each do |roof| - next unless roof.interior_adjacent_to == HPXML::LocationLivingSpace - - roof.interior_finish_type = HPXML::InteriorFinishGypsumBoard + if ['base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml'].include? hpxml_file + # YORK HMH7 + # https://ashp.neep.org/#!/product/64253/7/25000///0 + clg_perf_data = hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data + htg_perf_data = hpxml_bldg.heat_pumps[0].heating_detailed_performance_data + clg_perf_data.add(outdoor_temperature: 95.0, + capacity: 11700, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 4.47) + clg_perf_data.add(outdoor_temperature: 95.0, + capacity: 36000, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 2.71) + clg_perf_data.add(outdoor_temperature: 82.0, + capacity: 13200, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 6.34) + clg_perf_data.add(outdoor_temperature: 82.0, + capacity: 40000, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 3.53) + htg_perf_data.add(outdoor_temperature: 47.0, + capacity: 10000, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 4.73) + htg_perf_data.add(outdoor_temperature: 47.0, + capacity: 36000, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 3.44) + htg_perf_data.add(outdoor_temperature: 17.0, + capacity: 4200, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 1.84) + htg_perf_data.add(outdoor_temperature: 17.0, + capacity: 24800, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 2.66) + htg_perf_data.add(outdoor_temperature: 5.0, + capacity: 1900, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 0.81) + htg_perf_data.add(outdoor_temperature: 5.0, + capacity: 19900, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 2.28) + hpxml_bldg.heat_pumps[0].airflow_defect_ratio = -0.25 + hpxml_bldg.heat_pumps[0].charge_defect_ratio = -0.25 end - (hpxml.walls + hpxml.foundation_walls + hpxml.floors).each do |surface| - if surface.is_a?(HPXML::FoundationWall) && surface.interior_adjacent_to != HPXML::LocationBasementConditioned - surface.interior_finish_type = HPXML::InteriorFinishNone - end - next unless [HPXML::LocationLivingSpace, - HPXML::LocationBasementConditioned].include?(surface.interior_adjacent_to) && - [HPXML::LocationOutside, - HPXML::LocationGround, - HPXML::LocationGarage, - HPXML::LocationAtticUnvented, - HPXML::LocationAtticVented, - HPXML::LocationOtherHousingUnit, - HPXML::LocationBasementConditioned].include?(surface.exterior_adjacent_to) - next if surface.is_a?(HPXML::Floor) && surface.is_floor - - surface.interior_finish_type = HPXML::InteriorFinishGypsumBoard + if ['base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml'].include? hpxml_file + clg_perf_data = hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data + htg_perf_data = hpxml_bldg.heat_pumps[0].heating_detailed_performance_data + clg_perf_data.add(outdoor_temperature: 95.0, + capacity: 11700, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 4.47) + clg_perf_data.add(outdoor_temperature: 95.0, + capacity: 36000, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 2.71) + clg_perf_data.add(outdoor_temperature: 105.0, + capacity: 10000, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 3.9) + clg_perf_data.add(outdoor_temperature: 105.0, + capacity: 30000, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 2.3) + htg_perf_data.add(outdoor_temperature: 47.0, + capacity: 10000, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 4.73) + htg_perf_data.add(outdoor_temperature: 47.0, + capacity: 36000, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 3.44) + htg_perf_data.add(outdoor_temperature: 55.0, + capacity: 12000, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 5.5) + htg_perf_data.add(outdoor_temperature: 55.0, + capacity: 45000, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 4.0) end - hpxml.attics.each do |attic| - if attic.attic_type == HPXML::AtticTypeUnvented - attic.within_infiltration_volume = false - elsif attic.attic_type == HPXML::AtticTypeVented - attic.vented_attic_sla = 0.003 - end + if ['base-hvac-central-ac-only-var-speed-detailed-performance.xml'].include? hpxml_file + clg_perf_data = hpxml_bldg.cooling_systems[0].cooling_detailed_performance_data + clg_perf_data.add(outdoor_temperature: 95.0, + capacity: 11700, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 4.47) + clg_perf_data.add(outdoor_temperature: 95.0, + capacity: 36000, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 2.71) + clg_perf_data.add(outdoor_temperature: 82.0, + capacity: 13200, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 6.34) + clg_perf_data.add(outdoor_temperature: 82.0, + capacity: 40000, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 3.53) end - hpxml.foundations.each do |foundation| - if foundation.foundation_type == HPXML::FoundationTypeCrawlspaceUnvented - foundation.within_infiltration_volume = false - elsif foundation.foundation_type == HPXML::FoundationTypeCrawlspaceVented - foundation.vented_crawlspace_sla = 0.00667 - end + if ['base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml'].include? hpxml_file + clg_perf_data = hpxml_bldg.cooling_systems[0].cooling_detailed_performance_data + clg_perf_data.add(outdoor_temperature: 95.0, + capacity: 10372, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 4.05) + clg_perf_data.add(outdoor_temperature: 95.0, + capacity: 42653, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 3.27) + clg_perf_data.add(outdoor_temperature: 82.0, + capacity: 19456, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 8.03) + clg_perf_data.add(outdoor_temperature: 82.0, + capacity: 40093, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 3.27) + end + if ['base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml'].include? hpxml_file + # FUJITSU Halcyon Single-room Mini-Split Systems Slim + # https://ashp.neep.org/#!/product/25352/7/25000///0 + clg_perf_data = hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data + htg_perf_data = hpxml_bldg.heat_pumps[0].heating_detailed_performance_data + clg_perf_data.add(outdoor_temperature: 95.0, + capacity: 9600, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 4.02) + clg_perf_data.add(outdoor_temperature: 95.0, + capacity: 39000, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 2.86) + clg_perf_data.add(outdoor_temperature: 82.0, + capacity: 10224, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 4.61) + clg_perf_data.add(outdoor_temperature: 82.0, + capacity: 41587, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 3.29) + htg_perf_data.add(outdoor_temperature: 47.0, + capacity: 9200, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 4.35) + htg_perf_data.add(outdoor_temperature: 47.0, + capacity: 48000, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 3.21) + htg_perf_data.add(outdoor_temperature: 17.0, + capacity: 7063, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 2.92) + htg_perf_data.add(outdoor_temperature: 17.0, + capacity: 36800, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 2.15) + htg_perf_data.add(outdoor_temperature: 5.0, + capacity: 6310, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 2.60) + htg_perf_data.add(outdoor_temperature: 5.0, + capacity: 32920, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 1.93) end - hpxml.skylights.each do |skylight| - skylight.interior_shading_factor_summer = 1.0 - skylight.interior_shading_factor_winter = 1.0 + if ['base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml'].include? hpxml_file + # BOSCH Bosch Climate 5000 ductless minisplit series + # https://ashp.neep.org/#!/product/66076/7/25000///0 + clg_perf_data = hpxml_bldg.heat_pumps[0].cooling_detailed_performance_data + htg_perf_data = hpxml_bldg.heat_pumps[0].heating_detailed_performance_data + clg_perf_data.add(outdoor_temperature: 95.0, + capacity: 10372, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 4.05) + clg_perf_data.add(outdoor_temperature: 95.0, + capacity: 42653, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 3.27) + clg_perf_data.add(outdoor_temperature: 82.0, + capacity: 19456, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 8.03) + clg_perf_data.add(outdoor_temperature: 82.0, + capacity: 40093, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 3.27) + htg_perf_data.add(outdoor_temperature: 47.0, + capacity: 12143, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 4.81) + htg_perf_data.add(outdoor_temperature: 47.0, + capacity: 56499, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 3.17) + htg_perf_data.add(outdoor_temperature: 17.0, + capacity: 7414, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 1.96) + htg_perf_data.add(outdoor_temperature: 17.0, + capacity: 43387, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 2.31) + htg_perf_data.add(outdoor_temperature: 5.0, + capacity: 8130, + capacity_description: HPXML::CapacityDescriptionMinimum, + efficiency_cop: 1.71) + htg_perf_data.add(outdoor_temperature: 5.0, + capacity: 36037, + capacity_description: HPXML::CapacityDescriptionMaximum, + efficiency_cop: 1.96) end - # Logic that can only be applied based on the file name - if ['base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml', - 'base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml', - 'base-bldgtype-multifamily-adjacent-to-other-heated-space.xml', - 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml'].include? hpxml_file - if hpxml_file == 'base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml' - adjacent_to = HPXML::LocationOtherMultifamilyBufferSpace - elsif hpxml_file == 'base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml' - adjacent_to = HPXML::LocationOtherNonFreezingSpace - elsif hpxml_file == 'base-bldgtype-multifamily-adjacent-to-other-heated-space.xml' - adjacent_to = HPXML::LocationOtherHeatedSpace - elsif hpxml_file == 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml' - adjacent_to = HPXML::LocationOtherHousingUnit - end - wall = hpxml.walls.select { |w| - w.interior_adjacent_to == HPXML::LocationLivingSpace && - w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit - }[0] - wall.exterior_adjacent_to = adjacent_to - hpxml.floors[0].exterior_adjacent_to = adjacent_to - hpxml.floors[1].exterior_adjacent_to = adjacent_to - if hpxml_file != 'base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml' - wall.insulation_assembly_r_value = 23 - hpxml.floors[0].insulation_assembly_r_value = 18.7 - hpxml.floors[1].insulation_assembly_r_value = 18.7 - end - hpxml.windows.each do |window| - window.area = (window.area * 0.35).round(1) - end - hpxml.doors.add(id: "Door#{hpxml.doors.size + 1}", - wall_idref: wall.id, - area: 20, - azimuth: 0, - r_value: 4.4) - hpxml.hvac_distributions[0].ducts[0].duct_location = adjacent_to - hpxml.hvac_distributions[0].ducts[1].duct_location = adjacent_to - hpxml.water_heating_systems[0].location = adjacent_to - hpxml.clothes_washers[0].location = adjacent_to - hpxml.clothes_dryers[0].location = adjacent_to - hpxml.dishwashers[0].location = adjacent_to - hpxml.refrigerators[0].location = adjacent_to - hpxml.cooking_ranges[0].location = adjacent_to - elsif ['base-bldgtype-multifamily-adjacent-to-multiple.xml'].include? hpxml_file - wall = hpxml.walls.select { |w| - w.interior_adjacent_to == HPXML::LocationLivingSpace && - w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit - }[0] - wall.delete - hpxml.walls.add(id: "Wall#{hpxml.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationOtherHeatedSpace, - interior_adjacent_to: HPXML::LocationLivingSpace, - wall_type: HPXML::WallTypeWoodStud, - area: 100, - solar_absorptance: 0.7, - emittance: 0.92, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 23.0) - hpxml.walls.add(id: "Wall#{hpxml.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationOtherMultifamilyBufferSpace, - interior_adjacent_to: HPXML::LocationLivingSpace, - wall_type: HPXML::WallTypeWoodStud, - area: 100, - solar_absorptance: 0.7, - emittance: 0.92, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 23.0) - hpxml.walls.add(id: "Wall#{hpxml.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationOtherNonFreezingSpace, - interior_adjacent_to: HPXML::LocationLivingSpace, - wall_type: HPXML::WallTypeWoodStud, - area: 100, - solar_absorptance: 0.7, - emittance: 0.92, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 23.0) - hpxml.walls.add(id: "Wall#{hpxml.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationOtherHousingUnit, - interior_adjacent_to: HPXML::LocationLivingSpace, - wall_type: HPXML::WallTypeWoodStud, - area: 100, - solar_absorptance: 0.7, - emittance: 0.92, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 4.0) - hpxml.floors[0].delete - hpxml.floors[0].id = 'Floor1' - hpxml.floors[0].insulation_id = 'Floor1Insulation' - hpxml.floors.add(id: "Floor#{hpxml.floors.size + 1}", - exterior_adjacent_to: HPXML::LocationOtherNonFreezingSpace, - interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: HPXML::FloorTypeWoodFrame, - area: 550, - insulation_assembly_r_value: 18.7, - floor_or_ceiling: HPXML::FloorOrCeilingFloor) - hpxml.floors.add(id: "Floor#{hpxml.floors.size + 1}", - exterior_adjacent_to: HPXML::LocationOtherMultifamilyBufferSpace, - interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: HPXML::FloorTypeWoodFrame, - area: 200, - insulation_assembly_r_value: 18.7, - floor_or_ceiling: HPXML::FloorOrCeilingFloor) - hpxml.floors.add(id: "Floor#{hpxml.floors.size + 1}", - exterior_adjacent_to: HPXML::LocationOtherHeatedSpace, - interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: HPXML::FloorTypeWoodFrame, - area: 150, - insulation_assembly_r_value: 2.1, - floor_or_ceiling: HPXML::FloorOrCeilingFloor) - wall = hpxml.walls.select { |w| - w.interior_adjacent_to == HPXML::LocationLivingSpace && - w.exterior_adjacent_to == HPXML::LocationOtherMultifamilyBufferSpace - }[0] - hpxml.windows.add(id: "Window#{hpxml.windows.size + 1}", - area: 50, - azimuth: 270, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.67, - wall_idref: wall.id) - wall = hpxml.walls.select { |w| - w.interior_adjacent_to == HPXML::LocationLivingSpace && - w.exterior_adjacent_to == HPXML::LocationOtherHeatedSpace - }[0] - hpxml.doors.add(id: "Door#{hpxml.doors.size + 1}", - wall_idref: wall.id, - area: 20, - azimuth: 0, - r_value: 4.4) - wall = hpxml.walls.select { |w| - w.interior_adjacent_to == HPXML::LocationLivingSpace && - w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit - }[0] - hpxml.doors.add(id: "Door#{hpxml.doors.size + 1}", - wall_idref: wall.id, - area: 20, - azimuth: 0, - r_value: 4.4) - elsif ['base-enclosure-orientations.xml'].include? hpxml_file - hpxml.windows.each do |window| - window.orientation = { 0 => 'north', 90 => 'east', 180 => 'south', 270 => 'west' }[window.azimuth] - window.azimuth = nil - end - hpxml.doors[0].delete - hpxml.doors.add(id: "Door#{hpxml.doors.size + 1}", - wall_idref: 'Wall1', - area: 20, - orientation: HPXML::OrientationNorth, - r_value: 4.4) - hpxml.doors.add(id: "Door#{hpxml.doors.size + 1}", - wall_idref: 'Wall1', - area: 20, - orientation: HPXML::OrientationSouth, - r_value: 4.4) - elsif ['base-foundation-unconditioned-basement.xml'].include? hpxml_file - hpxml.foundations[0].within_infiltration_volume = false - elsif ['base-atticroof-conditioned.xml'].include? hpxml_file - hpxml.attics.add(id: "Attic#{hpxml.attics.size + 1}", - attic_type: HPXML::AtticTypeUnvented, - within_infiltration_volume: false) - hpxml.roofs.each do |roof| - roof.area = 1006.0 / hpxml.roofs.size - roof.insulation_assembly_r_value = 25.8 - end - hpxml.roofs.add(id: "Roof#{hpxml.roofs.size + 1}", - interior_adjacent_to: HPXML::LocationAtticUnvented, - area: 504, - roof_type: HPXML::RoofTypeAsphaltShingles, - solar_absorptance: 0.7, - emittance: 0.92, - pitch: 6, - radiant_barrier: false, - insulation_assembly_r_value: 2.3) - hpxml.rim_joists.each do |rim_joist| - rim_joist.area = 116.0 / hpxml.rim_joists.size - end - hpxml.walls.each do |wall| - wall.area = 1200.0 / hpxml.walls.size - end - hpxml.walls.add(id: "Wall#{hpxml.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationAtticUnvented, - interior_adjacent_to: HPXML::LocationLivingSpace, - wall_type: HPXML::WallTypeWoodStud, - area: 316, - solar_absorptance: 0.7, - emittance: 0.92, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 23.0) - hpxml.walls.add(id: "Wall#{hpxml.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationOutside, - interior_adjacent_to: HPXML::LocationLivingSpace, - wall_type: HPXML::WallTypeWoodStud, - siding: HPXML::SidingTypeWood, - area: 240, - solar_absorptance: 0.7, - emittance: 0.92, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 22.3) - hpxml.walls.add(id: "Wall#{hpxml.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationOutside, - interior_adjacent_to: HPXML::LocationAtticUnvented, - attic_wall_type: HPXML::AtticWallTypeGable, - wall_type: HPXML::WallTypeWoodStud, - siding: HPXML::SidingTypeWood, - area: 50, - solar_absorptance: 0.7, - emittance: 0.92, - insulation_assembly_r_value: 4.0) - hpxml.foundation_walls.each do |foundation_wall| - foundation_wall.area = 1200.0 / hpxml.foundation_walls.size - end - hpxml.floors.add(id: "Floor#{hpxml.floors.size + 1}", - exterior_adjacent_to: HPXML::LocationAtticUnvented, - interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: HPXML::FloorTypeWoodFrame, - area: 450, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 39.3, - floor_or_ceiling: HPXML::FloorOrCeilingCeiling) - hpxml.slabs[0].area = 1350 - hpxml.slabs[0].exposed_perimeter = 150 - hpxml.windows[1].area = 108 - hpxml.windows[3].area = 108 - hpxml.windows.add(id: "Window#{hpxml.windows.size + 1}", - area: 12, - azimuth: 90, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0, - wall_idref: hpxml.walls[-2].id) - hpxml.windows.add(id: "Window#{hpxml.windows.size + 1}", - area: 62, - azimuth: 270, - ufactor: 0.3, - shgc: 0.45, - fraction_operable: 0, - wall_idref: hpxml.walls[-2].id) - elsif ['base-foundation-unconditioned-basement-above-grade.xml'].include? hpxml_file - hpxml.windows.add(id: "Window#{hpxml.windows.size + 1}", - area: 20, - azimuth: 0, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.0, - wall_idref: hpxml.foundation_walls[0].id) - hpxml.windows.add(id: "Window#{hpxml.windows.size + 1}", - area: 10, - azimuth: 90, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.0, - wall_idref: hpxml.foundation_walls[0].id) - hpxml.windows.add(id: "Window#{hpxml.windows.size + 1}", - area: 20, - azimuth: 180, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.0, - wall_idref: hpxml.foundation_walls[0].id) - hpxml.windows.add(id: "Window#{hpxml.windows.size + 1}", - area: 10, - azimuth: 270, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.0, - wall_idref: hpxml.foundation_walls[0].id) - elsif ['base-enclosure-skylights-physical-properties.xml'].include? hpxml_file - hpxml.skylights[0].ufactor = nil - hpxml.skylights[0].shgc = nil - hpxml.skylights[0].glass_layers = HPXML::WindowLayersSinglePane - hpxml.skylights[0].frame_type = HPXML::WindowFrameTypeWood - hpxml.skylights[0].glass_type = HPXML::WindowGlassTypeTinted - hpxml.skylights[1].ufactor = nil - hpxml.skylights[1].shgc = nil - hpxml.skylights[1].glass_layers = HPXML::WindowLayersDoublePane - hpxml.skylights[1].frame_type = HPXML::WindowFrameTypeMetal - hpxml.skylights[1].thermal_break = true - hpxml.skylights[1].glass_type = HPXML::WindowGlassTypeLowE - hpxml.skylights[1].gas_fill = HPXML::WindowGasKrypton - elsif ['base-enclosure-skylights-shading.xml'].include? hpxml_file - hpxml.skylights[0].exterior_shading_factor_summer = 0.1 - hpxml.skylights[0].exterior_shading_factor_winter = 0.9 - hpxml.skylights[0].interior_shading_factor_summer = 0.01 - hpxml.skylights[0].interior_shading_factor_winter = 0.99 - hpxml.skylights[1].exterior_shading_factor_summer = 0.5 - hpxml.skylights[1].exterior_shading_factor_winter = 0.0 - hpxml.skylights[1].interior_shading_factor_summer = 0.5 - hpxml.skylights[1].interior_shading_factor_winter = 1.0 - elsif ['base-enclosure-windows-physical-properties.xml'].include? hpxml_file - hpxml.windows[0].ufactor = nil - hpxml.windows[0].shgc = nil - hpxml.windows[0].glass_layers = HPXML::WindowLayersSinglePane - hpxml.windows[0].frame_type = HPXML::WindowFrameTypeWood - hpxml.windows[0].glass_type = HPXML::WindowGlassTypeTinted - hpxml.windows[1].ufactor = nil - hpxml.windows[1].shgc = nil - hpxml.windows[1].glass_layers = HPXML::WindowLayersDoublePane - hpxml.windows[1].frame_type = HPXML::WindowFrameTypeVinyl - hpxml.windows[1].glass_type = HPXML::WindowGlassTypeReflective - hpxml.windows[1].gas_fill = HPXML::WindowGasAir - hpxml.windows[2].ufactor = nil - hpxml.windows[2].shgc = nil - hpxml.windows[2].glass_layers = HPXML::WindowLayersDoublePane - hpxml.windows[2].frame_type = HPXML::WindowFrameTypeMetal - hpxml.windows[2].thermal_break = true - hpxml.windows[2].glass_type = HPXML::WindowGlassTypeLowE - hpxml.windows[2].gas_fill = HPXML::WindowGasArgon - hpxml.windows[3].ufactor = nil - hpxml.windows[3].shgc = nil - hpxml.windows[3].glass_layers = HPXML::WindowLayersGlassBlock - elsif ['base-enclosure-windows-shading.xml'].include? hpxml_file - hpxml.windows[1].exterior_shading_factor_summer = 0.5 - hpxml.windows[1].exterior_shading_factor_winter = 0.5 - hpxml.windows[1].interior_shading_factor_summer = 0.5 - hpxml.windows[1].interior_shading_factor_winter = 0.5 - hpxml.windows[2].exterior_shading_factor_summer = 0.1 - hpxml.windows[2].exterior_shading_factor_winter = 0.9 - hpxml.windows[2].interior_shading_factor_summer = 0.01 - hpxml.windows[2].interior_shading_factor_winter = 0.99 - hpxml.windows[3].exterior_shading_factor_summer = 0.0 - hpxml.windows[3].exterior_shading_factor_winter = 1.0 - hpxml.windows[3].interior_shading_factor_summer = 0.0 - hpxml.windows[3].interior_shading_factor_winter = 1.0 - elsif ['base-enclosure-thermal-mass.xml'].include? hpxml_file - hpxml.partition_wall_mass.area_fraction = 0.8 - hpxml.partition_wall_mass.interior_finish_type = HPXML::InteriorFinishGypsumBoard - hpxml.partition_wall_mass.interior_finish_thickness = 0.25 - hpxml.furniture_mass.area_fraction = 0.8 - hpxml.furniture_mass.type = HPXML::FurnitureMassTypeHeavyWeight - elsif ['base-misc-defaults.xml'].include? hpxml_file - hpxml.attics.reverse_each do |attic| - attic.delete - end - hpxml.foundations.reverse_each do |foundation| - foundation.delete - end - hpxml.air_infiltration_measurements[0].infiltration_volume = nil - (hpxml.roofs + hpxml.walls + hpxml.rim_joists).each do |surface| - surface.solar_absorptance = nil - surface.emittance = nil + hpxml.buildings.each do |hpxml_bldg| + # Logic that can only be applied based on the file name + if ['base-misc-emissions.xml'].include? hpxml_file + hpxml_bldg.egrid_region = 'Western' + hpxml_bldg.egrid_subregion = 'RMPA' + hpxml_bldg.cambium_region_gea = 'RMPAc' + end + + # --------------------- # + # HPXML BuildingSummary # + # --------------------- # + + # General logic for all files + hpxml_bldg.site.fuels = [HPXML::FuelTypeElectricity, HPXML::FuelTypeNaturalGas] + + # Logic that can only be applied based on the file name + if ['base-schedules-simple.xml', + 'base-schedules-simple-vacancy.xml', + 'base-schedules-simple-power-outage.xml', + 'base-misc-loads-large-uncommon.xml', + 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file + hpxml_bldg.building_occupancy.weekday_fractions = '0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061' + hpxml_bldg.building_occupancy.weekend_fractions = '0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061' + hpxml_bldg.building_occupancy.monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' + elsif ['base-misc-defaults.xml'].include? hpxml_file + hpxml_bldg.building_construction.average_ceiling_height = nil + hpxml_bldg.building_construction.conditioned_building_volume = nil + elsif ['base-atticroof-cathedral.xml'].include? hpxml_file + hpxml_bldg.building_construction.number_of_conditioned_floors = 2 + hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 1 + hpxml_bldg.building_construction.conditioned_floor_area = 2700 + hpxml_bldg.attics[0].attic_type = HPXML::AtticTypeCathedral + elsif ['base-atticroof-conditioned.xml'].include? hpxml_file + hpxml_bldg.building_construction.conditioned_building_volume = 23850 + hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume + hpxml_bldg.air_infiltration_measurements[0].infiltration_height = 15.0 + elsif ['base-enclosure-split-level.xml'].include? hpxml_file + hpxml_bldg.building_construction.number_of_conditioned_floors = 1.5 + hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 1.5 + elsif ['base-foundation-walkout-basement.xml'].include? hpxml_file + hpxml_bldg.building_construction.number_of_conditioned_floors_above_grade = 2 + elsif ['base-foundation-basement-garage.xml'].include? hpxml_file + hpxml_bldg.building_construction.conditioned_floor_area -= 400 * 2 + hpxml_bldg.building_construction.conditioned_building_volume -= 400 * 2 * 8 + hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = hpxml_bldg.building_construction.conditioned_building_volume + elsif ['base-bldgtype-mf-unit-infil-compartmentalization-test.xml'].include? hpxml_file + hpxml_bldg.air_infiltration_measurements[0].a_ext = 0.2 + end + + # --------------- # + # HPXML Enclosure # + # --------------- # + + # General logic for all files + (hpxml_bldg.roofs + hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |surface| + surface.solar_absorptance = 0.7 + surface.emittance = 0.92 if surface.is_a? HPXML::Roof - surface.radiant_barrier = nil + surface.roof_color = nil + else + surface.color = nil end end - (hpxml.walls + hpxml.foundation_walls).each do |wall| - wall.interior_finish_type = nil - end - hpxml.foundation_walls.each do |fwall| - fwall.length = fwall.area / fwall.height - fwall.area = nil - end - hpxml.doors[0].azimuth = nil - elsif ['base-enclosure-2stories.xml', - 'base-enclosure-2stories-garage.xml', - 'base-hvac-ducts-area-fractions.xml'].include? hpxml_file - hpxml.rim_joists << hpxml.rim_joists[-1].dup - hpxml.rim_joists[-1].id = "RimJoist#{hpxml.rim_joists.size}" - hpxml.rim_joists[-1].insulation_id = "RimJoist#{hpxml.rim_joists.size}Insulation" - hpxml.rim_joists[-1].interior_adjacent_to = HPXML::LocationLivingSpace - hpxml.rim_joists[-1].area = 116 - elsif ['base-foundation-conditioned-basement-wall-insulation.xml'].include? hpxml_file - hpxml.foundation_walls.each do |foundation_wall| - foundation_wall.insulation_interior_r_value = 10 - foundation_wall.insulation_interior_distance_to_top = 1 - foundation_wall.insulation_interior_distance_to_bottom = 8 - foundation_wall.insulation_exterior_r_value = 8.9 - foundation_wall.insulation_exterior_distance_to_top = 1 - foundation_wall.insulation_exterior_distance_to_bottom = 8 - end - elsif ['base-foundation-walkout-basement.xml'].include? hpxml_file - hpxml.foundation_walls.reverse_each do |foundation_wall| - foundation_wall.delete - end - hpxml.foundation_walls.add(id: "FoundationWall#{hpxml.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 8, - area: 480, - thickness: 8, - depth_below_grade: 7, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_interior_r_value: 0, - insulation_exterior_distance_to_top: 0, - insulation_exterior_distance_to_bottom: 8, - insulation_exterior_r_value: 8.9) - hpxml.foundation_walls.add(id: "FoundationWall#{hpxml.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 4, - area: 120, - thickness: 8, - depth_below_grade: 3, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_interior_r_value: 0, - insulation_exterior_distance_to_top: 0, - insulation_exterior_distance_to_bottom: 4, - insulation_exterior_r_value: 8.9) - hpxml.foundation_walls.add(id: "FoundationWall#{hpxml.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 2, - area: 60, - thickness: 8, - depth_below_grade: 1, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_interior_r_value: 0, - insulation_exterior_distance_to_top: 0, - insulation_exterior_distance_to_bottom: 2, - insulation_exterior_r_value: 8.9) - hpxml.foundation_walls.each do |foundation_wall| - hpxml.foundations[0].attached_to_foundation_wall_idrefs << foundation_wall.id - end - hpxml.windows.add(id: "Window#{hpxml.windows.size + 1}", - area: 20, - azimuth: 0, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.0, - wall_idref: hpxml.foundation_walls[-1].id) - elsif ['base-foundation-multiple.xml'].include? hpxml_file - hpxml.foundations.add(id: "Foundation#{hpxml.foundations.size + 1}", - foundation_type: HPXML::FoundationTypeCrawlspaceUnvented, - within_infiltration_volume: false) - hpxml.rim_joists.each do |rim_joist| - next unless rim_joist.exterior_adjacent_to == HPXML::LocationOutside - - rim_joist.exterior_adjacent_to = HPXML::LocationCrawlspaceUnvented - rim_joist.siding = nil - end - hpxml.rim_joists.add(id: "RimJoist#{hpxml.rim_joists.size + 1}", - exterior_adjacent_to: HPXML::LocationOutside, - interior_adjacent_to: HPXML::LocationCrawlspaceUnvented, - siding: HPXML::SidingTypeWood, - area: 81, - solar_absorptance: 0.7, - emittance: 0.92, - insulation_assembly_r_value: 4.0) - hpxml.foundation_walls.each do |foundation_wall| - foundation_wall.area /= 2.0 - end - hpxml.foundation_walls.add(id: "FoundationWall#{hpxml.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationCrawlspaceUnvented, - interior_adjacent_to: HPXML::LocationBasementUnconditioned, - height: 8, - area: 360, - thickness: 8, - depth_below_grade: 4, - insulation_interior_r_value: 0, - insulation_exterior_r_value: 0) - hpxml.foundation_walls.add(id: "FoundationWall#{hpxml.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationCrawlspaceUnvented, - height: 4, - area: 600, - thickness: 8, - depth_below_grade: 3, - insulation_interior_r_value: 0, - insulation_exterior_r_value: 0) - hpxml.floors[0].area = 675 - hpxml.floors.add(id: "Floor#{hpxml.floors.size + 1}", - exterior_adjacent_to: HPXML::LocationCrawlspaceUnvented, - interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: HPXML::FloorTypeWoodFrame, - area: 675, - insulation_assembly_r_value: 18.7, - floor_or_ceiling: HPXML::FloorOrCeilingFloor) - hpxml.slabs[0].area = 675 - hpxml.slabs[0].exposed_perimeter = 75 - hpxml.slabs.add(id: "Slab#{hpxml.slabs.size + 1}", - interior_adjacent_to: HPXML::LocationCrawlspaceUnvented, - area: 675, - thickness: 0, - exposed_perimeter: 75, - perimeter_insulation_depth: 0, - under_slab_insulation_width: 0, - perimeter_insulation_r_value: 0, - under_slab_insulation_r_value: 0, - carpet_fraction: 0, - carpet_r_value: 0) - elsif ['base-foundation-complex.xml'].include? hpxml_file - hpxml.foundation_walls.reverse_each do |foundation_wall| - foundation_wall.delete - end - hpxml.foundation_walls.add(id: "FoundationWall#{hpxml.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 8, - area: 160, - thickness: 8, - depth_below_grade: 7, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_interior_r_value: 0, - insulation_exterior_r_value: 0.0) - hpxml.foundation_walls.add(id: "FoundationWall#{hpxml.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 8, - area: 240, - thickness: 8, - depth_below_grade: 7, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_interior_r_value: 0, - insulation_exterior_distance_to_top: 0, - insulation_exterior_distance_to_bottom: 8, - insulation_exterior_r_value: 8.9) - hpxml.foundation_walls.add(id: "FoundationWall#{hpxml.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 4, - area: 160, - thickness: 8, - depth_below_grade: 3, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_interior_r_value: 0, - insulation_exterior_r_value: 0.0) - hpxml.foundation_walls.add(id: "FoundationWall#{hpxml.foundation_walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGround, - interior_adjacent_to: HPXML::LocationBasementConditioned, - height: 4, - area: 200, - thickness: 8, - depth_below_grade: 3, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_interior_r_value: 0, - insulation_exterior_distance_to_top: 0, - insulation_exterior_distance_to_bottom: 4, - insulation_exterior_r_value: 8.9) - hpxml.foundation_walls.each do |foundation_wall| - hpxml.foundations[0].attached_to_foundation_wall_idrefs << foundation_wall.id - end - hpxml.slabs.reverse_each do |slab| - slab.delete - end - hpxml.slabs.add(id: "Slab#{hpxml.slabs.size + 1}", - interior_adjacent_to: HPXML::LocationBasementConditioned, - area: 675, - thickness: 4, - exposed_perimeter: 75, - perimeter_insulation_depth: 0, - under_slab_insulation_width: 0, - perimeter_insulation_r_value: 0, - under_slab_insulation_r_value: 0, - carpet_fraction: 0, - carpet_r_value: 0) - hpxml.slabs.add(id: "Slab#{hpxml.slabs.size + 1}", - interior_adjacent_to: HPXML::LocationBasementConditioned, - area: 675, - thickness: 4, - exposed_perimeter: 75, - perimeter_insulation_depth: 1, - under_slab_insulation_width: 0, - perimeter_insulation_r_value: 5, - under_slab_insulation_r_value: 0, - carpet_fraction: 0, - carpet_r_value: 0) - hpxml.slabs.each do |slab| - hpxml.foundations[0].attached_to_slab_idrefs << slab.id - end - elsif ['base-foundation-basement-garage.xml'].include? hpxml_file - hpxml.roofs[0].area += 670 - hpxml.walls.add(id: "Wall#{hpxml.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationGarage, - interior_adjacent_to: HPXML::LocationBasementConditioned, - wall_type: HPXML::WallTypeWoodStud, - area: 320, - solar_absorptance: 0.7, - emittance: 0.92, - interior_finish_type: HPXML::InteriorFinishGypsumBoard, - insulation_assembly_r_value: 23) - hpxml.foundations[0].attached_to_wall_idrefs << hpxml.walls[-1].id - hpxml.walls.add(id: "Wall#{hpxml.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationOutside, - interior_adjacent_to: HPXML::LocationGarage, - wall_type: HPXML::WallTypeWoodStud, - siding: HPXML::SidingTypeWood, - area: 320, - solar_absorptance: 0.7, - emittance: 0.92, - insulation_assembly_r_value: 4) - hpxml.floors.add(id: "Floor#{hpxml.floors.size + 1}", - exterior_adjacent_to: HPXML::LocationGarage, - interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: HPXML::FloorTypeWoodFrame, - area: 400, - insulation_assembly_r_value: 39.3, - floor_or_ceiling: HPXML::FloorOrCeilingFloor) - hpxml.slabs[0].area -= 400 - hpxml.slabs[0].exposed_perimeter -= 40 - hpxml.slabs.add(id: "Slab#{hpxml.slabs.size + 1}", - interior_adjacent_to: HPXML::LocationGarage, - area: 400, - thickness: 4, - exposed_perimeter: 40, - perimeter_insulation_depth: 0, - under_slab_insulation_width: 0, - depth_below_grade: 0, - perimeter_insulation_r_value: 0, - under_slab_insulation_r_value: 0, - carpet_fraction: 0, - carpet_r_value: 0) - hpxml.doors.add(id: "Door#{hpxml.doors.size + 1}", - wall_idref: hpxml.walls[-3].id, - area: 70, - azimuth: 180, - r_value: 4.4) - hpxml.doors.add(id: "Door#{hpxml.doors.size + 1}", - wall_idref: hpxml.walls[-2].id, - area: 4, - azimuth: 0, - r_value: 4.4) - elsif ['base-enclosure-ceilingtypes.xml'].include? hpxml_file - exterior_adjacent_to = hpxml.floors[0].exterior_adjacent_to - area = hpxml.floors[0].area - hpxml.floors.reverse_each do |floor| - floor.delete - end - floors_map = { HPXML::FloorTypeSIP => 16.1, - HPXML::FloorTypeConcrete => 3.2, - HPXML::FloorTypeSteelFrame => 8.1 } - floors_map.each_with_index do |(floor_type, assembly_r), _i| - hpxml.floors.add(id: "Floor#{hpxml.floors.size + 1}", - exterior_adjacent_to: exterior_adjacent_to, - interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: floor_type, - area: area / floors_map.size, - insulation_assembly_r_value: assembly_r, - floor_or_ceiling: HPXML::FloorOrCeilingCeiling) - end - elsif ['base-enclosure-floortypes.xml'].include? hpxml_file - exterior_adjacent_to = hpxml.floors[0].exterior_adjacent_to - area = hpxml.floors[0].area - ceiling = hpxml.floors[1].dup - hpxml.floors.reverse_each do |floor| - floor.delete + hpxml_bldg.roofs.each do |roof| + next unless roof.interior_adjacent_to == HPXML::LocationConditionedSpace + + roof.interior_finish_type = HPXML::InteriorFinishGypsumBoard end - floors_map = { HPXML::FloorTypeSIP => 16.1, - HPXML::FloorTypeConcrete => 3.2, - HPXML::FloorTypeSteelFrame => 8.1 } - floors_map.each_with_index do |(floor_type, assembly_r), _i| - hpxml.floors.add(id: "Floor#{hpxml.floors.size + 1}", - exterior_adjacent_to: exterior_adjacent_to, - interior_adjacent_to: HPXML::LocationLivingSpace, - floor_type: floor_type, - area: area / floors_map.size, - insulation_assembly_r_value: assembly_r, - floor_or_ceiling: HPXML::FloorOrCeilingFloor) + (hpxml_bldg.walls + hpxml_bldg.foundation_walls + hpxml_bldg.floors).each do |surface| + if surface.is_a?(HPXML::FoundationWall) && surface.interior_adjacent_to != HPXML::LocationBasementConditioned + surface.interior_finish_type = HPXML::InteriorFinishNone + end + next unless [HPXML::LocationConditionedSpace, + HPXML::LocationBasementConditioned].include?(surface.interior_adjacent_to) && + [HPXML::LocationOutside, + HPXML::LocationGround, + HPXML::LocationGarage, + HPXML::LocationAtticUnvented, + HPXML::LocationAtticVented, + HPXML::LocationOtherHousingUnit, + HPXML::LocationBasementConditioned].include?(surface.exterior_adjacent_to) + next if surface.is_a?(HPXML::Floor) && surface.is_floor + + surface.interior_finish_type = HPXML::InteriorFinishGypsumBoard + end + hpxml_bldg.attics.each do |attic| + if attic.attic_type == HPXML::AtticTypeUnvented + attic.within_infiltration_volume = false + elsif attic.attic_type == HPXML::AtticTypeVented + attic.vented_attic_sla = 0.003 + end end - hpxml.floors << ceiling - hpxml.floors[-1].id = "Floor#{hpxml.floors.size}" - hpxml.floors[-1].insulation_id = "Floor#{hpxml.floors.size}Insulation" - elsif ['base-enclosure-walltypes.xml'].include? hpxml_file - hpxml.rim_joists.reverse_each do |rim_joist| - rim_joist.delete + hpxml_bldg.foundations.each do |foundation| + if foundation.foundation_type == HPXML::FoundationTypeCrawlspaceUnvented + foundation.within_infiltration_volume = false + elsif foundation.foundation_type == HPXML::FoundationTypeCrawlspaceVented + foundation.vented_crawlspace_sla = 0.00667 + end end - siding_types = [[HPXML::SidingTypeAluminum, HPXML::ColorDark], - [HPXML::SidingTypeAsbestos, HPXML::ColorMedium], - [HPXML::SidingTypeBrick, HPXML::ColorReflective], - [HPXML::SidingTypeCompositeShingle, HPXML::ColorDark], - [HPXML::SidingTypeFiberCement, HPXML::ColorMediumDark], - [HPXML::SidingTypeMasonite, HPXML::ColorLight], - [HPXML::SidingTypeStucco, HPXML::ColorMedium], - [HPXML::SidingTypeSyntheticStucco, HPXML::ColorMediumDark], - [HPXML::SidingTypeVinyl, HPXML::ColorLight], - [HPXML::SidingTypeNone, HPXML::ColorMedium]] - siding_types.each do |siding_type| - hpxml.rim_joists.add(id: "RimJoist#{hpxml.rim_joists.size + 1}", + hpxml_bldg.skylights.each do |skylight| + skylight.interior_shading_factor_summer = 1.0 + skylight.interior_shading_factor_winter = 1.0 + end + + # Logic that can only be applied based on the file name + if ['base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml', + 'base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml', + 'base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml', + 'base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml'].include? hpxml_file + if hpxml_file == 'base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml' + adjacent_to = HPXML::LocationOtherMultifamilyBufferSpace + elsif hpxml_file == 'base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml' + adjacent_to = HPXML::LocationOtherNonFreezingSpace + elsif hpxml_file == 'base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml' + adjacent_to = HPXML::LocationOtherHeatedSpace + elsif hpxml_file == 'base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml' + adjacent_to = HPXML::LocationOtherHousingUnit + end + wall = hpxml_bldg.walls.select { |w| + w.interior_adjacent_to == HPXML::LocationConditionedSpace && + w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit + }[0] + wall.exterior_adjacent_to = adjacent_to + hpxml_bldg.floors[0].exterior_adjacent_to = adjacent_to + hpxml_bldg.floors[1].exterior_adjacent_to = adjacent_to + if hpxml_file != 'base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml' + wall.insulation_assembly_r_value = 23 + hpxml_bldg.floors[0].insulation_assembly_r_value = 18.7 + hpxml_bldg.floors[1].insulation_assembly_r_value = 18.7 + end + hpxml_bldg.windows.each do |window| + window.area = (window.area * 0.35).round(1) + end + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: wall.id, + area: 20, + azimuth: 0, + r_value: 4.4) + hpxml_bldg.hvac_distributions[0].ducts[0].duct_location = adjacent_to + hpxml_bldg.hvac_distributions[0].ducts[1].duct_location = adjacent_to + hpxml_bldg.water_heating_systems[0].location = adjacent_to + hpxml_bldg.clothes_washers[0].location = adjacent_to + hpxml_bldg.clothes_dryers[0].location = adjacent_to + hpxml_bldg.dishwashers[0].location = adjacent_to + hpxml_bldg.refrigerators[0].location = adjacent_to + hpxml_bldg.cooking_ranges[0].location = adjacent_to + elsif ['base-bldgtype-mf-unit-adjacent-to-multiple.xml'].include? hpxml_file + wall = hpxml_bldg.walls.select { |w| + w.interior_adjacent_to == HPXML::LocationConditionedSpace && + w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit + }[0] + wall.delete + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationOtherHeatedSpace, + interior_adjacent_to: HPXML::LocationConditionedSpace, + wall_type: HPXML::WallTypeWoodStud, + area: 100, + solar_absorptance: 0.7, + emittance: 0.92, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 23.0) + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationOtherMultifamilyBufferSpace, + interior_adjacent_to: HPXML::LocationConditionedSpace, + wall_type: HPXML::WallTypeWoodStud, + area: 100, + solar_absorptance: 0.7, + emittance: 0.92, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 23.0) + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationOtherNonFreezingSpace, + interior_adjacent_to: HPXML::LocationConditionedSpace, + wall_type: HPXML::WallTypeWoodStud, + area: 100, + solar_absorptance: 0.7, + emittance: 0.92, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 23.0) + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationOtherHousingUnit, + interior_adjacent_to: HPXML::LocationConditionedSpace, + wall_type: HPXML::WallTypeWoodStud, + area: 100, + solar_absorptance: 0.7, + emittance: 0.92, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 4.0) + hpxml_bldg.floors[0].delete + hpxml_bldg.floors[0].id = 'Floor1' + hpxml_bldg.floors[0].insulation_id = 'Floor1Insulation' + hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", + exterior_adjacent_to: HPXML::LocationOtherNonFreezingSpace, + interior_adjacent_to: HPXML::LocationConditionedSpace, + floor_type: HPXML::FloorTypeWoodFrame, + area: 550, + insulation_assembly_r_value: 18.7, + floor_or_ceiling: HPXML::FloorOrCeilingFloor) + hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", + exterior_adjacent_to: HPXML::LocationOtherMultifamilyBufferSpace, + interior_adjacent_to: HPXML::LocationConditionedSpace, + floor_type: HPXML::FloorTypeWoodFrame, + area: 200, + insulation_assembly_r_value: 18.7, + floor_or_ceiling: HPXML::FloorOrCeilingFloor) + hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", + exterior_adjacent_to: HPXML::LocationOtherHeatedSpace, + interior_adjacent_to: HPXML::LocationConditionedSpace, + floor_type: HPXML::FloorTypeWoodFrame, + area: 150, + insulation_assembly_r_value: 2.1, + floor_or_ceiling: HPXML::FloorOrCeilingFloor) + wall = hpxml_bldg.walls.select { |w| + w.interior_adjacent_to == HPXML::LocationConditionedSpace && + w.exterior_adjacent_to == HPXML::LocationOtherMultifamilyBufferSpace + }[0] + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 50, + azimuth: 270, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.67, + wall_idref: wall.id) + wall = hpxml_bldg.walls.select { |w| + w.interior_adjacent_to == HPXML::LocationConditionedSpace && + w.exterior_adjacent_to == HPXML::LocationOtherHeatedSpace + }[0] + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: wall.id, + area: 20, + azimuth: 0, + r_value: 4.4) + wall = hpxml_bldg.walls.select { |w| + w.interior_adjacent_to == HPXML::LocationConditionedSpace && + w.exterior_adjacent_to == HPXML::LocationOtherHousingUnit + }[0] + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: wall.id, + area: 20, + azimuth: 0, + r_value: 4.4) + elsif ['base-enclosure-orientations.xml'].include? hpxml_file + hpxml_bldg.windows.each do |window| + window.orientation = { 0 => 'north', 90 => 'east', 180 => 'south', 270 => 'west' }[window.azimuth] + window.azimuth = nil + end + hpxml_bldg.doors[0].delete + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: 'Wall1', + area: 20, + orientation: HPXML::OrientationNorth, + r_value: 4.4) + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: 'Wall1', + area: 20, + orientation: HPXML::OrientationSouth, + r_value: 4.4) + elsif ['base-foundation-unconditioned-basement.xml'].include? hpxml_file + hpxml_bldg.foundations[0].within_infiltration_volume = false + elsif ['base-atticroof-conditioned.xml'].include? hpxml_file + hpxml_bldg.attics.add(id: "Attic#{hpxml_bldg.attics.size + 1}", + attic_type: HPXML::AtticTypeUnvented, + within_infiltration_volume: false) + hpxml_bldg.roofs.each do |roof| + roof.area = 1006.0 / hpxml_bldg.roofs.size + roof.insulation_assembly_r_value = 25.8 + end + hpxml_bldg.roofs.add(id: "Roof#{hpxml_bldg.roofs.size + 1}", + interior_adjacent_to: HPXML::LocationAtticUnvented, + area: 504, + roof_type: HPXML::RoofTypeAsphaltShingles, + solar_absorptance: 0.7, + emittance: 0.92, + pitch: 6, + radiant_barrier: false, + insulation_assembly_r_value: 2.3) + hpxml_bldg.rim_joists.each do |rim_joist| + rim_joist.area = 116.0 / hpxml_bldg.rim_joists.size + end + hpxml_bldg.walls.each do |wall| + wall.area = 1200.0 / hpxml_bldg.walls.size + end + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationAtticUnvented, + interior_adjacent_to: HPXML::LocationConditionedSpace, + wall_type: HPXML::WallTypeWoodStud, + area: 316, + solar_absorptance: 0.7, + emittance: 0.92, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 23.0) + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationOutside, + interior_adjacent_to: HPXML::LocationConditionedSpace, + wall_type: HPXML::WallTypeWoodStud, + siding: HPXML::SidingTypeWood, + area: 240, + solar_absorptance: 0.7, + emittance: 0.92, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 22.3) + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", exterior_adjacent_to: HPXML::LocationOutside, + interior_adjacent_to: HPXML::LocationAtticUnvented, + attic_wall_type: HPXML::AtticWallTypeGable, + wall_type: HPXML::WallTypeWoodStud, + siding: HPXML::SidingTypeWood, + area: 50, + solar_absorptance: 0.7, + emittance: 0.92, + insulation_assembly_r_value: 4.0) + hpxml_bldg.foundation_walls.each do |foundation_wall| + foundation_wall.area = 1200.0 / hpxml_bldg.foundation_walls.size + end + hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", + exterior_adjacent_to: HPXML::LocationAtticUnvented, + interior_adjacent_to: HPXML::LocationConditionedSpace, + floor_type: HPXML::FloorTypeWoodFrame, + area: 450, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 39.3, + floor_or_ceiling: HPXML::FloorOrCeilingCeiling) + hpxml_bldg.slabs[0].area = 1350 + hpxml_bldg.slabs[0].exposed_perimeter = 150 + hpxml_bldg.windows[1].area = 108 + hpxml_bldg.windows[3].area = 108 + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 12, + azimuth: 90, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0, + wall_idref: hpxml_bldg.walls[-2].id) + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 62, + azimuth: 270, + ufactor: 0.3, + shgc: 0.45, + fraction_operable: 0, + wall_idref: hpxml_bldg.walls[-2].id) + elsif ['base-foundation-unconditioned-basement-above-grade.xml'].include? hpxml_file + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 20, + azimuth: 0, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.0, + wall_idref: hpxml_bldg.foundation_walls[0].id) + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 10, + azimuth: 90, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.0, + wall_idref: hpxml_bldg.foundation_walls[0].id) + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 20, + azimuth: 180, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.0, + wall_idref: hpxml_bldg.foundation_walls[0].id) + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 10, + azimuth: 270, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.0, + wall_idref: hpxml_bldg.foundation_walls[0].id) + elsif ['base-enclosure-skylights-physical-properties.xml'].include? hpxml_file + hpxml_bldg.skylights[0].ufactor = nil + hpxml_bldg.skylights[0].shgc = nil + hpxml_bldg.skylights[0].glass_layers = HPXML::WindowLayersSinglePane + hpxml_bldg.skylights[0].frame_type = HPXML::WindowFrameTypeWood + hpxml_bldg.skylights[0].glass_type = HPXML::WindowGlassTypeTinted + hpxml_bldg.skylights[1].ufactor = nil + hpxml_bldg.skylights[1].shgc = nil + hpxml_bldg.skylights[1].glass_layers = HPXML::WindowLayersDoublePane + hpxml_bldg.skylights[1].frame_type = HPXML::WindowFrameTypeMetal + hpxml_bldg.skylights[1].thermal_break = true + hpxml_bldg.skylights[1].glass_type = HPXML::WindowGlassTypeLowE + hpxml_bldg.skylights[1].gas_fill = HPXML::WindowGasKrypton + elsif ['base-enclosure-skylights-shading.xml'].include? hpxml_file + hpxml_bldg.skylights[0].exterior_shading_factor_summer = 0.1 + hpxml_bldg.skylights[0].exterior_shading_factor_winter = 0.9 + hpxml_bldg.skylights[0].interior_shading_factor_summer = 0.01 + hpxml_bldg.skylights[0].interior_shading_factor_winter = 0.99 + hpxml_bldg.skylights[1].exterior_shading_factor_summer = 0.5 + hpxml_bldg.skylights[1].exterior_shading_factor_winter = 0.0 + hpxml_bldg.skylights[1].interior_shading_factor_summer = 0.5 + hpxml_bldg.skylights[1].interior_shading_factor_winter = 1.0 + elsif ['base-enclosure-windows-physical-properties.xml'].include? hpxml_file + hpxml_bldg.windows[0].ufactor = nil + hpxml_bldg.windows[0].shgc = nil + hpxml_bldg.windows[0].glass_layers = HPXML::WindowLayersSinglePane + hpxml_bldg.windows[0].frame_type = HPXML::WindowFrameTypeWood + hpxml_bldg.windows[0].glass_type = HPXML::WindowGlassTypeTinted + hpxml_bldg.windows[1].ufactor = nil + hpxml_bldg.windows[1].shgc = nil + hpxml_bldg.windows[1].glass_layers = HPXML::WindowLayersDoublePane + hpxml_bldg.windows[1].frame_type = HPXML::WindowFrameTypeVinyl + hpxml_bldg.windows[1].glass_type = HPXML::WindowGlassTypeReflective + hpxml_bldg.windows[1].gas_fill = HPXML::WindowGasAir + hpxml_bldg.windows[2].ufactor = nil + hpxml_bldg.windows[2].shgc = nil + hpxml_bldg.windows[2].glass_layers = HPXML::WindowLayersDoublePane + hpxml_bldg.windows[2].frame_type = HPXML::WindowFrameTypeMetal + hpxml_bldg.windows[2].thermal_break = true + hpxml_bldg.windows[2].glass_type = HPXML::WindowGlassTypeLowE + hpxml_bldg.windows[2].gas_fill = HPXML::WindowGasArgon + hpxml_bldg.windows[3].ufactor = nil + hpxml_bldg.windows[3].shgc = nil + hpxml_bldg.windows[3].glass_layers = HPXML::WindowLayersGlassBlock + elsif ['base-enclosure-windows-shading.xml'].include? hpxml_file + hpxml_bldg.windows[1].exterior_shading_factor_summer = 0.5 + hpxml_bldg.windows[1].exterior_shading_factor_winter = 0.5 + hpxml_bldg.windows[1].interior_shading_factor_summer = 0.5 + hpxml_bldg.windows[1].interior_shading_factor_winter = 0.5 + hpxml_bldg.windows[2].exterior_shading_factor_summer = 0.1 + hpxml_bldg.windows[2].exterior_shading_factor_winter = 0.9 + hpxml_bldg.windows[2].interior_shading_factor_summer = 0.01 + hpxml_bldg.windows[2].interior_shading_factor_winter = 0.99 + hpxml_bldg.windows[3].exterior_shading_factor_summer = 0.0 + hpxml_bldg.windows[3].exterior_shading_factor_winter = 1.0 + hpxml_bldg.windows[3].interior_shading_factor_summer = 0.0 + hpxml_bldg.windows[3].interior_shading_factor_winter = 1.0 + elsif ['base-enclosure-thermal-mass.xml'].include? hpxml_file + hpxml_bldg.partition_wall_mass.area_fraction = 0.8 + hpxml_bldg.partition_wall_mass.interior_finish_type = HPXML::InteriorFinishGypsumBoard + hpxml_bldg.partition_wall_mass.interior_finish_thickness = 0.25 + hpxml_bldg.furniture_mass.area_fraction = 0.8 + hpxml_bldg.furniture_mass.type = HPXML::FurnitureMassTypeHeavyWeight + elsif ['base-misc-defaults.xml'].include? hpxml_file + hpxml_bldg.attics.reverse_each do |attic| + attic.delete + end + hpxml_bldg.foundations.reverse_each do |foundation| + foundation.delete + end + hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = nil + (hpxml_bldg.roofs + hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |surface| + surface.solar_absorptance = nil + surface.emittance = nil + if surface.is_a? HPXML::Roof + surface.radiant_barrier = nil + end + end + (hpxml_bldg.walls + hpxml_bldg.foundation_walls).each do |wall| + wall.interior_finish_type = nil + end + hpxml_bldg.foundation_walls.each do |fwall| + fwall.length = fwall.area / fwall.height + fwall.area = nil + end + hpxml_bldg.doors[0].azimuth = nil + elsif ['base-enclosure-2stories.xml', + 'base-enclosure-2stories-garage.xml', + 'base-hvac-ducts-area-fractions.xml'].include? hpxml_file + hpxml_bldg.rim_joists << hpxml_bldg.rim_joists[-1].dup + hpxml_bldg.rim_joists[-1].id = "RimJoist#{hpxml_bldg.rim_joists.size}" + hpxml_bldg.rim_joists[-1].insulation_id = "RimJoist#{hpxml_bldg.rim_joists.size}Insulation" + hpxml_bldg.rim_joists[-1].interior_adjacent_to = HPXML::LocationConditionedSpace + hpxml_bldg.rim_joists[-1].area = 116 + elsif ['base-foundation-conditioned-basement-wall-insulation.xml'].include? hpxml_file + hpxml_bldg.foundation_walls.each do |foundation_wall| + foundation_wall.insulation_interior_r_value = 10 + foundation_wall.insulation_interior_distance_to_top = 1 + foundation_wall.insulation_interior_distance_to_bottom = 8 + foundation_wall.insulation_exterior_r_value = 8.9 + foundation_wall.insulation_exterior_distance_to_top = 1 + foundation_wall.insulation_exterior_distance_to_bottom = 8 + end + elsif ['base-foundation-walkout-basement.xml'].include? hpxml_file + hpxml_bldg.foundation_walls.reverse_each do |foundation_wall| + foundation_wall.delete + end + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationBasementConditioned, + height: 8, + area: 480, + thickness: 8, + depth_below_grade: 7, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_interior_r_value: 0, + insulation_exterior_distance_to_top: 0, + insulation_exterior_distance_to_bottom: 8, + insulation_exterior_r_value: 8.9) + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationBasementConditioned, + height: 8, + area: 240, + thickness: 8, + depth_below_grade: 3, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_interior_r_value: 0, + insulation_exterior_distance_to_top: 0, + insulation_exterior_distance_to_bottom: 8, + insulation_exterior_r_value: 8.9) + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationBasementConditioned, + height: 8, + area: 240, + thickness: 8, + depth_below_grade: 1, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_interior_r_value: 0, + insulation_exterior_distance_to_top: 0, + insulation_exterior_distance_to_bottom: 8, + insulation_exterior_r_value: 8.9) + hpxml_bldg.foundation_walls.each do |foundation_wall| + hpxml_bldg.foundations[0].attached_to_foundation_wall_idrefs << foundation_wall.id + end + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 20, + azimuth: 0, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.0, + wall_idref: hpxml_bldg.foundation_walls[-1].id) + elsif ['base-foundation-multiple.xml'].include? hpxml_file + hpxml_bldg.foundations.add(id: "Foundation#{hpxml_bldg.foundations.size + 1}", + foundation_type: HPXML::FoundationTypeCrawlspaceUnvented, + within_infiltration_volume: false) + hpxml_bldg.rim_joists.each do |rim_joist| + next unless rim_joist.exterior_adjacent_to == HPXML::LocationOutside + + rim_joist.exterior_adjacent_to = HPXML::LocationCrawlspaceUnvented + rim_joist.siding = nil + end + hpxml_bldg.rim_joists.add(id: "RimJoist#{hpxml_bldg.rim_joists.size + 1}", + exterior_adjacent_to: HPXML::LocationOutside, + interior_adjacent_to: HPXML::LocationCrawlspaceUnvented, + siding: HPXML::SidingTypeWood, + area: 81, + solar_absorptance: 0.7, + emittance: 0.92, + insulation_assembly_r_value: 4.0) + hpxml_bldg.foundation_walls.each do |foundation_wall| + foundation_wall.area /= 2.0 + end + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationCrawlspaceUnvented, + interior_adjacent_to: HPXML::LocationBasementUnconditioned, + height: 8, + area: 360, + thickness: 8, + depth_below_grade: 4, + insulation_interior_r_value: 0, + insulation_exterior_r_value: 0) + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationCrawlspaceUnvented, + height: 4, + area: 600, + thickness: 8, + depth_below_grade: 3, + insulation_interior_r_value: 0, + insulation_exterior_r_value: 0) + hpxml_bldg.floors[0].area = 675 + hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", + exterior_adjacent_to: HPXML::LocationCrawlspaceUnvented, + interior_adjacent_to: HPXML::LocationConditionedSpace, + floor_type: HPXML::FloorTypeWoodFrame, + area: 675, + insulation_assembly_r_value: 18.7, + floor_or_ceiling: HPXML::FloorOrCeilingFloor) + hpxml_bldg.slabs[0].area = 675 + hpxml_bldg.slabs[0].exposed_perimeter = 75 + hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}", + interior_adjacent_to: HPXML::LocationCrawlspaceUnvented, + area: 675, + thickness: 0, + exposed_perimeter: 75, + perimeter_insulation_depth: 0, + under_slab_insulation_width: 0, + perimeter_insulation_r_value: 0, + under_slab_insulation_r_value: 0, + carpet_fraction: 0, + carpet_r_value: 0) + elsif ['base-foundation-complex.xml'].include? hpxml_file + hpxml_bldg.foundation_walls.reverse_each do |foundation_wall| + foundation_wall.delete + end + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationBasementConditioned, + height: 8, + area: 160, + thickness: 8, + depth_below_grade: 7, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_interior_r_value: 0, + insulation_exterior_r_value: 0.0) + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationBasementConditioned, + height: 8, + area: 240, + thickness: 8, + depth_below_grade: 7, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_interior_r_value: 0, + insulation_exterior_distance_to_top: 0, + insulation_exterior_distance_to_bottom: 8, + insulation_exterior_r_value: 8.9) + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationBasementConditioned, + height: 8, + area: 320, + thickness: 8, + depth_below_grade: 3, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_interior_r_value: 0, + insulation_exterior_r_value: 0.0) + hpxml_bldg.foundation_walls.add(id: "FoundationWall#{hpxml_bldg.foundation_walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGround, + interior_adjacent_to: HPXML::LocationBasementConditioned, + height: 8, + area: 400, + thickness: 8, + depth_below_grade: 3, + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_interior_r_value: 0, + insulation_exterior_distance_to_top: 0, + insulation_exterior_distance_to_bottom: 8, + insulation_exterior_r_value: 8.9) + hpxml_bldg.foundation_walls.each do |foundation_wall| + hpxml_bldg.foundations[0].attached_to_foundation_wall_idrefs << foundation_wall.id + end + hpxml_bldg.slabs.reverse_each do |slab| + slab.delete + end + hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}", + interior_adjacent_to: HPXML::LocationBasementConditioned, + area: 1150, + thickness: 4, + exposed_perimeter: 120, + perimeter_insulation_depth: 0, + under_slab_insulation_width: 0, + perimeter_insulation_r_value: 0, + under_slab_insulation_r_value: 0, + carpet_fraction: 0, + carpet_r_value: 0) + hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}", interior_adjacent_to: HPXML::LocationBasementConditioned, - siding: siding_type[0], - color: siding_type[1], - area: 116 / siding_types.size, + area: 200, + thickness: 4, + exposed_perimeter: 30, + perimeter_insulation_depth: 1, + under_slab_insulation_width: 0, + perimeter_insulation_r_value: 5, + under_slab_insulation_r_value: 0, + carpet_fraction: 0, + carpet_r_value: 0) + hpxml_bldg.slabs.each do |slab| + hpxml_bldg.foundations[0].attached_to_slab_idrefs << slab.id + end + elsif ['base-foundation-basement-garage.xml'].include? hpxml_file + hpxml_bldg.roofs[0].area += 670 + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationGarage, + interior_adjacent_to: HPXML::LocationBasementConditioned, + wall_type: HPXML::WallTypeWoodStud, + area: 320, + solar_absorptance: 0.7, emittance: 0.92, - insulation_assembly_r_value: 23.0) - hpxml.foundations[0].attached_to_rim_joist_idrefs << hpxml.rim_joists[-1].id - end - gable_walls = hpxml.walls.select { |w| w.interior_adjacent_to == HPXML::LocationAtticUnvented } - hpxml.walls.reverse_each do |wall| - wall.delete - end - walls_map = { HPXML::WallTypeCMU => 12, - HPXML::WallTypeDoubleWoodStud => 28.7, - HPXML::WallTypeICF => 21, - HPXML::WallTypeLog => 7.1, - HPXML::WallTypeSIP => 16.1, - HPXML::WallTypeConcrete => 1.35, - HPXML::WallTypeSteelStud => 8.1, - HPXML::WallTypeStone => 5.4, - HPXML::WallTypeStrawBale => 58.8, - HPXML::WallTypeBrick => 7.9, - HPXML::WallTypeAdobe => 5.0 } - siding_types = [[HPXML::SidingTypeAluminum, HPXML::ColorReflective], - [HPXML::SidingTypeAsbestos, HPXML::ColorLight], - [HPXML::SidingTypeBrick, HPXML::ColorMediumDark], - [HPXML::SidingTypeCompositeShingle, HPXML::ColorReflective], - [HPXML::SidingTypeFiberCement, HPXML::ColorMedium], - [HPXML::SidingTypeMasonite, HPXML::ColorDark], - [HPXML::SidingTypeStucco, HPXML::ColorLight], - [HPXML::SidingTypeSyntheticStucco, HPXML::ColorMedium], - [HPXML::SidingTypeVinyl, HPXML::ColorDark], - [HPXML::SidingTypeNone, HPXML::ColorMedium]] - int_finish_types = [[HPXML::InteriorFinishGypsumBoard, 0.5], - [HPXML::InteriorFinishGypsumBoard, 1.0], - [HPXML::InteriorFinishGypsumCompositeBoard, 0.5], - [HPXML::InteriorFinishPlaster, 0.5], - [HPXML::InteriorFinishWood, 0.5], - [HPXML::InteriorFinishNone, nil]] - walls_map.each_with_index do |(wall_type, assembly_r), i| - hpxml.walls.add(id: "Wall#{hpxml.walls.size + 1}", - exterior_adjacent_to: HPXML::LocationOutside, - interior_adjacent_to: HPXML::LocationLivingSpace, - wall_type: wall_type, - siding: siding_types[i % siding_types.size][0], - color: siding_types[i % siding_types.size][1], - area: 1200 / walls_map.size, - emittance: 0.92, - interior_finish_type: int_finish_types[i % int_finish_types.size][0], - interior_finish_thickness: int_finish_types[i % int_finish_types.size][1], - insulation_assembly_r_value: assembly_r) - end - gable_walls.each do |gable_wall| - hpxml.walls << gable_wall - hpxml.walls[-1].id = "Wall#{hpxml.walls.size}" - hpxml.walls[-1].insulation_id = "Wall#{hpxml.walls.size}Insulation" - hpxml.attics[0].attached_to_wall_idrefs << hpxml.walls[-1].id - end - hpxml.windows.reverse_each do |window| - window.delete - end - hpxml.windows.add(id: "Window#{hpxml.windows.size + 1}", - area: 108 / 8, - azimuth: 0, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.67, - wall_idref: 'Wall1') - hpxml.windows.add(id: "Window#{hpxml.windows.size + 1}", - area: 72 / 8, - azimuth: 90, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.67, - wall_idref: 'Wall2') - hpxml.windows.add(id: "Window#{hpxml.windows.size + 1}", - area: 108 / 8, - azimuth: 180, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.67, - wall_idref: 'Wall3') - hpxml.windows.add(id: "Window#{hpxml.windows.size + 1}", - area: 72 / 8, - azimuth: 270, - ufactor: 0.33, - shgc: 0.45, - fraction_operable: 0.67, - wall_idref: 'Wall4') - hpxml.doors.reverse_each do |door| - door.delete - end - hpxml.doors.add(id: "Door#{hpxml.doors.size + 1}", - wall_idref: 'Wall9', - area: 20, - azimuth: 0, - r_value: 4.4) - hpxml.doors.add(id: "Door#{hpxml.doors.size + 1}", - wall_idref: 'Wall10', - area: 20, - azimuth: 180, - r_value: 4.4) - elsif ['base-enclosure-rooftypes.xml'].include? hpxml_file - hpxml.roofs.reverse_each do |roof| - roof.delete + interior_finish_type: HPXML::InteriorFinishGypsumBoard, + insulation_assembly_r_value: 23) + hpxml_bldg.foundations[0].attached_to_wall_idrefs << hpxml_bldg.walls[-1].id + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationOutside, + interior_adjacent_to: HPXML::LocationGarage, + wall_type: HPXML::WallTypeWoodStud, + siding: HPXML::SidingTypeWood, + area: 320, + solar_absorptance: 0.7, + emittance: 0.92, + insulation_assembly_r_value: 4) + hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", + exterior_adjacent_to: HPXML::LocationGarage, + interior_adjacent_to: HPXML::LocationConditionedSpace, + floor_type: HPXML::FloorTypeWoodFrame, + area: 400, + insulation_assembly_r_value: 39.3, + floor_or_ceiling: HPXML::FloorOrCeilingFloor) + hpxml_bldg.slabs[0].area -= 400 + hpxml_bldg.slabs[0].exposed_perimeter -= 40 + hpxml_bldg.slabs.add(id: "Slab#{hpxml_bldg.slabs.size + 1}", + interior_adjacent_to: HPXML::LocationGarage, + area: 400, + thickness: 4, + exposed_perimeter: 40, + perimeter_insulation_depth: 0, + under_slab_insulation_width: 0, + perimeter_insulation_r_value: 0, + under_slab_insulation_r_value: 0, + carpet_fraction: 0, + carpet_r_value: 0) + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: hpxml_bldg.walls[-3].id, + area: 70, + azimuth: 180, + r_value: 4.4) + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: hpxml_bldg.walls[-2].id, + area: 4, + azimuth: 0, + r_value: 4.4) + elsif ['base-enclosure-ceilingtypes.xml'].include? hpxml_file + exterior_adjacent_to = hpxml_bldg.floors[0].exterior_adjacent_to + area = hpxml_bldg.floors[0].area + hpxml_bldg.floors.reverse_each do |floor| + floor.delete + end + floors_map = { HPXML::FloorTypeSIP => 16.1, + HPXML::FloorTypeConcrete => 3.2, + HPXML::FloorTypeSteelFrame => 8.1 } + floors_map.each_with_index do |(floor_type, assembly_r), _i| + hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", + exterior_adjacent_to: exterior_adjacent_to, + interior_adjacent_to: HPXML::LocationConditionedSpace, + floor_type: floor_type, + area: area / floors_map.size, + insulation_assembly_r_value: assembly_r, + floor_or_ceiling: HPXML::FloorOrCeilingCeiling) + end + elsif ['base-enclosure-floortypes.xml'].include? hpxml_file + exterior_adjacent_to = hpxml_bldg.floors[0].exterior_adjacent_to + area = hpxml_bldg.floors[0].area + ceiling = hpxml_bldg.floors[1].dup + hpxml_bldg.floors.reverse_each do |floor| + floor.delete + end + floors_map = { HPXML::FloorTypeSIP => 16.1, + HPXML::FloorTypeConcrete => 3.2, + HPXML::FloorTypeSteelFrame => 8.1 } + floors_map.each_with_index do |(floor_type, assembly_r), _i| + hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", + exterior_adjacent_to: exterior_adjacent_to, + interior_adjacent_to: HPXML::LocationConditionedSpace, + floor_type: floor_type, + area: area / floors_map.size, + insulation_assembly_r_value: assembly_r, + floor_or_ceiling: HPXML::FloorOrCeilingFloor) + end + hpxml_bldg.floors << ceiling + hpxml_bldg.floors[-1].id = "Floor#{hpxml_bldg.floors.size}" + hpxml_bldg.floors[-1].insulation_id = "Floor#{hpxml_bldg.floors.size}Insulation" + elsif ['base-enclosure-walltypes.xml'].include? hpxml_file + hpxml_bldg.rim_joists.reverse_each do |rim_joist| + rim_joist.delete + end + siding_types = [[HPXML::SidingTypeAluminum, HPXML::ColorDark], + [HPXML::SidingTypeAsbestos, HPXML::ColorMedium], + [HPXML::SidingTypeBrick, HPXML::ColorReflective], + [HPXML::SidingTypeCompositeShingle, HPXML::ColorDark], + [HPXML::SidingTypeFiberCement, HPXML::ColorMediumDark], + [HPXML::SidingTypeMasonite, HPXML::ColorLight], + [HPXML::SidingTypeStucco, HPXML::ColorMedium], + [HPXML::SidingTypeSyntheticStucco, HPXML::ColorMediumDark], + [HPXML::SidingTypeVinyl, HPXML::ColorLight], + [HPXML::SidingTypeNone, HPXML::ColorMedium]] + siding_types.each do |siding_type| + hpxml_bldg.rim_joists.add(id: "RimJoist#{hpxml_bldg.rim_joists.size + 1}", + exterior_adjacent_to: HPXML::LocationOutside, + interior_adjacent_to: HPXML::LocationBasementConditioned, + siding: siding_type[0], + color: siding_type[1], + area: 116 / siding_types.size, + emittance: 0.92, + insulation_assembly_r_value: 23.0) + hpxml_bldg.foundations[0].attached_to_rim_joist_idrefs << hpxml_bldg.rim_joists[-1].id + end + gable_walls = hpxml_bldg.walls.select { |w| w.interior_adjacent_to == HPXML::LocationAtticUnvented } + hpxml_bldg.walls.reverse_each do |wall| + wall.delete + end + walls_map = { HPXML::WallTypeCMU => 12, + HPXML::WallTypeDoubleWoodStud => 28.7, + HPXML::WallTypeICF => 21, + HPXML::WallTypeLog => 7.1, + HPXML::WallTypeSIP => 16.1, + HPXML::WallTypeConcrete => 1.35, + HPXML::WallTypeSteelStud => 8.1, + HPXML::WallTypeStone => 5.4, + HPXML::WallTypeStrawBale => 58.8, + HPXML::WallTypeBrick => 7.9, + HPXML::WallTypeAdobe => 5.0 } + siding_types = [[HPXML::SidingTypeAluminum, HPXML::ColorReflective], + [HPXML::SidingTypeAsbestos, HPXML::ColorLight], + [HPXML::SidingTypeBrick, HPXML::ColorMediumDark], + [HPXML::SidingTypeCompositeShingle, HPXML::ColorReflective], + [HPXML::SidingTypeFiberCement, HPXML::ColorMedium], + [HPXML::SidingTypeMasonite, HPXML::ColorDark], + [HPXML::SidingTypeStucco, HPXML::ColorLight], + [HPXML::SidingTypeSyntheticStucco, HPXML::ColorMedium], + [HPXML::SidingTypeVinyl, HPXML::ColorDark], + [HPXML::SidingTypeNone, HPXML::ColorMedium]] + int_finish_types = [[HPXML::InteriorFinishGypsumBoard, 0.5], + [HPXML::InteriorFinishGypsumBoard, 1.0], + [HPXML::InteriorFinishGypsumCompositeBoard, 0.5], + [HPXML::InteriorFinishPlaster, 0.5], + [HPXML::InteriorFinishWood, 0.5], + [HPXML::InteriorFinishNone, nil]] + walls_map.each_with_index do |(wall_type, assembly_r), i| + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationOutside, + interior_adjacent_to: HPXML::LocationConditionedSpace, + wall_type: wall_type, + siding: siding_types[i % siding_types.size][0], + color: siding_types[i % siding_types.size][1], + area: 1200 / walls_map.size, + emittance: 0.92, + interior_finish_type: int_finish_types[i % int_finish_types.size][0], + interior_finish_thickness: int_finish_types[i % int_finish_types.size][1], + insulation_assembly_r_value: assembly_r) + end + gable_walls.each do |gable_wall| + hpxml_bldg.walls << gable_wall + hpxml_bldg.walls[-1].id = "Wall#{hpxml_bldg.walls.size}" + hpxml_bldg.walls[-1].insulation_id = "Wall#{hpxml_bldg.walls.size}Insulation" + hpxml_bldg.attics[0].attached_to_wall_idrefs << hpxml_bldg.walls[-1].id + end + hpxml_bldg.windows.reverse_each do |window| + window.delete + end + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 108 / 8, + azimuth: 0, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.67, + wall_idref: 'Wall1') + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 72 / 8, + azimuth: 90, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.67, + wall_idref: 'Wall2') + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 108 / 8, + azimuth: 180, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.67, + wall_idref: 'Wall3') + hpxml_bldg.windows.add(id: "Window#{hpxml_bldg.windows.size + 1}", + area: 72 / 8, + azimuth: 270, + ufactor: 0.33, + shgc: 0.45, + fraction_operable: 0.67, + wall_idref: 'Wall4') + hpxml_bldg.doors.reverse_each do |door| + door.delete + end + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: 'Wall9', + area: 20, + azimuth: 0, + r_value: 4.4) + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: 'Wall10', + area: 20, + azimuth: 180, + r_value: 4.4) + elsif ['base-enclosure-rooftypes.xml'].include? hpxml_file + hpxml_bldg.roofs.reverse_each do |roof| + roof.delete + end + roof_types = [[HPXML::RoofTypeClayTile, HPXML::ColorLight], + [HPXML::RoofTypeMetal, HPXML::ColorReflective], + [HPXML::RoofTypeWoodShingles, HPXML::ColorDark], + [HPXML::RoofTypeShingles, HPXML::ColorMediumDark], + [HPXML::RoofTypePlasticRubber, HPXML::ColorLight], + [HPXML::RoofTypeEPS, HPXML::ColorMedium], + [HPXML::RoofTypeConcrete, HPXML::ColorLight], + [HPXML::RoofTypeCool, HPXML::ColorReflective]] + int_finish_types = [[HPXML::InteriorFinishGypsumBoard, 0.5], + [HPXML::InteriorFinishPlaster, 0.5], + [HPXML::InteriorFinishWood, 0.5]] + roof_types.each_with_index do |roof_type, i| + hpxml_bldg.roofs.add(id: "Roof#{hpxml_bldg.roofs.size + 1}", + interior_adjacent_to: HPXML::LocationAtticUnvented, + area: 1509.3 / roof_types.size, + roof_type: roof_type[0], + roof_color: roof_type[1], + emittance: 0.92, + pitch: 6, + radiant_barrier: false, + interior_finish_type: int_finish_types[i % int_finish_types.size][0], + interior_finish_thickness: int_finish_types[i % int_finish_types.size][1], + insulation_assembly_r_value: roof_type[0] == HPXML::RoofTypeEPS ? 7.0 : 2.3) + hpxml_bldg.attics[0].attached_to_roof_idrefs << hpxml_bldg.roofs[-1].id + end + elsif ['base-enclosure-overhangs.xml'].include? hpxml_file + # Test relaxed overhangs validation; https://github.com/NREL/OpenStudio-HPXML/issues/866 + hpxml_bldg.windows.each do |window| + next unless window.overhangs_depth.nil? + + window.overhangs_depth = 0.0 + window.overhangs_distance_to_top_of_window = 0.0 + window.overhangs_distance_to_bottom_of_window = 0.0 + end end - roof_types = [[HPXML::RoofTypeClayTile, HPXML::ColorLight], - [HPXML::RoofTypeMetal, HPXML::ColorReflective], - [HPXML::RoofTypeWoodShingles, HPXML::ColorDark], - [HPXML::RoofTypeShingles, HPXML::ColorMediumDark], - [HPXML::RoofTypePlasticRubber, HPXML::ColorLight], - [HPXML::RoofTypeEPS, HPXML::ColorMedium], - [HPXML::RoofTypeConcrete, HPXML::ColorLight], - [HPXML::RoofTypeCool, HPXML::ColorReflective]] - int_finish_types = [[HPXML::InteriorFinishGypsumBoard, 0.5], - [HPXML::InteriorFinishPlaster, 0.5], - [HPXML::InteriorFinishWood, 0.5]] - roof_types.each_with_index do |roof_type, i| - hpxml.roofs.add(id: "Roof#{hpxml.roofs.size + 1}", - interior_adjacent_to: HPXML::LocationAtticUnvented, - area: 1509.3 / roof_types.size, - roof_type: roof_type[0], - roof_color: roof_type[1], - emittance: 0.92, - pitch: 6, - radiant_barrier: false, - interior_finish_type: int_finish_types[i % int_finish_types.size][0], - interior_finish_thickness: int_finish_types[i % int_finish_types.size][1], - insulation_assembly_r_value: roof_type[0] == HPXML::RoofTypeEPS ? 7.0 : 2.3) - hpxml.attics[0].attached_to_roof_idrefs << hpxml.roofs[-1].id + if ['base-enclosure-2stories-garage.xml', + 'base-enclosure-garage.xml'].include? hpxml_file + grg_wall = hpxml_bldg.walls.select { |w| + w.interior_adjacent_to == HPXML::LocationGarage && + w.exterior_adjacent_to == HPXML::LocationOutside + }[0] + hpxml_bldg.doors.add(id: "Door#{hpxml_bldg.doors.size + 1}", + wall_idref: grg_wall.id, + area: 70, + azimuth: 180, + r_value: 4.4) + end + if ['base-misc-neighbor-shading-bldgtype-multifamily.xml'].include? hpxml_file + wall = hpxml_bldg.walls.select { |w| w.azimuth == hpxml_bldg.neighbor_buildings[0].azimuth }[0] + wall.exterior_adjacent_to = HPXML::LocationOtherHeatedSpace + end + if ['base-foundation-vented-crawlspace-above-grade.xml'].include? hpxml_file + # Convert FoundationWall to Wall to test a foundation with only Wall elements + fwall = hpxml_bldg.foundation_walls[0] + hpxml_bldg.walls.add(id: "Wall#{hpxml_bldg.walls.size + 1}", + exterior_adjacent_to: HPXML::LocationOutside, + interior_adjacent_to: fwall.interior_adjacent_to, + wall_type: HPXML::WallTypeConcrete, + area: fwall.area, + insulation_assembly_r_value: 10.1) + hpxml_bldg.foundations[0].attached_to_wall_idrefs << hpxml_bldg.walls[-1].id + hpxml_bldg.foundation_walls[0].delete + end + + # ---------- # + # HPXML HVAC # + # ---------- # + + # General logic + hpxml_bldg.heating_systems.each do |heating_system| + if heating_system.heating_system_type == HPXML::HVACTypeBoiler && + heating_system.heating_system_fuel == HPXML::FuelTypeNaturalGas && + !heating_system.is_shared_system + heating_system.electric_auxiliary_energy = 200 + elsif [HPXML::HVACTypeFloorFurnace, + HPXML::HVACTypeWallFurnace, + HPXML::HVACTypeFireplace, + HPXML::HVACTypeSpaceHeater].include? heating_system.heating_system_type + heating_system.fan_watts = 0 + elsif [HPXML::HVACTypeStove].include? heating_system.heating_system_type + heating_system.fan_watts = 40 + end end - elsif ['base-enclosure-overhangs.xml'].include? hpxml_file - # Test relaxed overhangs validation; https://github.com/NREL/OpenStudio-HPXML/issues/866 - hpxml.windows.each do |window| - next unless window.overhangs_depth.nil? - - window.overhangs_depth = 0.0 - window.overhangs_distance_to_top_of_window = 0.0 - window.overhangs_distance_to_bottom_of_window = 0.0 + hpxml_bldg.heat_pumps.each do |heat_pump| + if heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir + heat_pump.pump_watts_per_ton = 30.0 + end end - end - if ['base-enclosure-2stories-garage.xml', - 'base-enclosure-garage.xml'].include? hpxml_file - grg_wall = hpxml.walls.select { |w| - w.interior_adjacent_to == HPXML::LocationGarage && - w.exterior_adjacent_to == HPXML::LocationOutside - }[0] - hpxml.doors.add(id: "Door#{hpxml.doors.size + 1}", - wall_idref: grg_wall.id, - area: 70, - azimuth: 180, - r_value: 4.4) - end - if ['base-misc-neighbor-shading-bldgtype-multifamily.xml'].include? hpxml_file - wall = hpxml.walls.select { |w| w.azimuth == hpxml.neighbor_buildings[0].azimuth }[0] - wall.exterior_adjacent_to = HPXML::LocationOtherHeatedSpace - end - # ---------- # - # HPXML HVAC # - # ---------- # - - # General logic - hpxml.heating_systems.each do |heating_system| - if heating_system.heating_system_type == HPXML::HVACTypeBoiler && - heating_system.heating_system_fuel == HPXML::FuelTypeNaturalGas && - !heating_system.is_shared_system - heating_system.electric_auxiliary_energy = 200 - elsif [HPXML::HVACTypeFloorFurnace, - HPXML::HVACTypeWallFurnace, - HPXML::HVACTypeFireplace, - HPXML::HVACTypeFixedHeater, - HPXML::HVACTypePortableHeater].include? heating_system.heating_system_type - heating_system.fan_watts = 0 - elsif [HPXML::HVACTypeStove].include? heating_system.heating_system_type - heating_system.fan_watts = 40 + # Logic that can only be applied based on the file name + if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower') + # Handle chiller/cooling tower + if hpxml_file.include? 'chiller' + hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", + cooling_system_type: HPXML::HVACTypeChiller, + cooling_system_fuel: HPXML::FuelTypeElectricity, + is_shared_system: true, + number_of_units_served: 6, + cooling_capacity: 24000 * 6, + cooling_efficiency_kw_per_ton: 0.9, + fraction_cool_load_served: 1.0, + primary_system: true) + elsif hpxml_file.include? 'cooling-tower' + hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", + cooling_system_type: HPXML::HVACTypeCoolingTower, + cooling_system_fuel: HPXML::FuelTypeElectricity, + is_shared_system: true, + number_of_units_served: 6, + fraction_cool_load_served: 1.0, + primary_system: true) + end + if hpxml_file.include? 'boiler' + hpxml_bldg.hvac_controls[0].cooling_setpoint_temp = 78.0 + hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + else + hpxml_bldg.hvac_controls.add(id: "HVACControl#{hpxml_bldg.hvac_controls.size + 1}", + control_type: HPXML::HVACControlTypeManual, + cooling_setpoint_temp: 78.0) + if hpxml_file.include? 'baseboard' + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeHydronic, + hydronic_type: HPXML::HydronicTypeBaseboard) + hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + end + end end - end - hpxml.heat_pumps.each do |heat_pump| - if heat_pump.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir - heat_pump.pump_watts_per_ton = 30.0 + if hpxml_file.include?('water-loop-heat-pump') || (hpxml_file.include?('fan-coil') && !hpxml_file.include?('fireplace-elec')) + # Handle WLHP/ducted fan coil + hpxml_bldg.hvac_distributions.reverse_each do |hvac_distribution| + hvac_distribution.delete + end + if hpxml_file.include? 'water-loop-heat-pump' + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeHydronic, + hydronic_type: HPXML::HydronicTypeWaterLoop) + hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", + heat_pump_type: HPXML::HVACTypeHeatPumpWaterLoopToAir, + heat_pump_fuel: HPXML::FuelTypeElectricity) + if hpxml_file.include? 'boiler' + hpxml_bldg.heat_pumps[-1].heating_capacity = 24000 + hpxml_bldg.heat_pumps[-1].heating_efficiency_cop = 4.4 + hpxml_bldg.heating_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + end + if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower') + hpxml_bldg.heat_pumps[-1].cooling_capacity = 24000 + hpxml_bldg.heat_pumps[-1].cooling_efficiency_eer = 12.8 + hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + end + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeAir, + air_type: HPXML::AirTypeRegularVelocity) + hpxml_bldg.heat_pumps[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + elsif hpxml_file.include? 'fan-coil' + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeAir, + air_type: HPXML::AirTypeFanCoil) + + if hpxml_file.include? 'boiler' + hpxml_bldg.heating_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + end + if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower') + hpxml_bldg.cooling_systems[-1].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id + end + end + if hpxml_file.include?('water-loop-heat-pump') || hpxml_file.include?('fan-coil-ducted') + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, + duct_leakage_units: HPXML::UnitsCFM25, + duct_leakage_value: 15, + duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn, + duct_leakage_units: HPXML::UnitsCFM25, + duct_leakage_value: 10, + duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) + hpxml_bldg.hvac_distributions[-1].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[-1].ducts.size + 1}", + duct_type: HPXML::DuctTypeSupply, + duct_insulation_r_value: 0, + duct_location: HPXML::LocationOtherMultifamilyBufferSpace, + duct_surface_area: 50) + hpxml_bldg.hvac_distributions[-1].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[-1].ducts.size + 1}", + duct_type: HPXML::DuctTypeReturn, + duct_insulation_r_value: 0, + duct_location: HPXML::LocationOtherMultifamilyBufferSpace, + duct_surface_area: 20) + end end - end - - # Logic that can only be applied based on the file name - if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower') - # Handle chiller/cooling tower - if hpxml_file.include? 'chiller' - hpxml.cooling_systems.add(id: "CoolingSystem#{hpxml.cooling_systems.size + 1}", - cooling_system_type: HPXML::HVACTypeChiller, - cooling_system_fuel: HPXML::FuelTypeElectricity, - is_shared_system: true, - number_of_units_served: 6, - cooling_capacity: 24000 * 6, - cooling_efficiency_kw_per_ton: 0.9, - fraction_cool_load_served: 1.0, - primary_system: true) - elsif hpxml_file.include? 'cooling-tower' - hpxml.cooling_systems.add(id: "CoolingSystem#{hpxml.cooling_systems.size + 1}", - cooling_system_type: HPXML::HVACTypeCoolingTower, - cooling_system_fuel: HPXML::FuelTypeElectricity, + if hpxml_file.include? 'shared-ground-loop' + hpxml_bldg.heating_systems.reverse_each do |heating_system| + heating_system.delete + end + hpxml_bldg.cooling_systems.reverse_each do |cooling_system| + cooling_system.delete + end + hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", + distribution_system_idref: hpxml_bldg.hvac_distributions[-1].id, + heat_pump_type: HPXML::HVACTypeHeatPumpGroundToAir, + heat_pump_fuel: HPXML::FuelTypeElectricity, + backup_type: HPXML::HeatPumpBackupTypeIntegrated, + backup_heating_fuel: HPXML::FuelTypeElectricity, is_shared_system: true, number_of_units_served: 6, - fraction_cool_load_served: 1.0, - primary_system: true) - end - if hpxml_file.include? 'boiler' - hpxml.hvac_controls[0].cooling_setpoint_temp = 78.0 - hpxml.cooling_systems[-1].distribution_system_idref = hpxml.hvac_distributions[-1].id + backup_heating_efficiency_percent: 1.0, + fraction_heat_load_served: 1, + fraction_cool_load_served: 1, + heating_efficiency_cop: 3.6, + cooling_efficiency_eer: 16.6, + heating_capacity: 12000, + cooling_capacity: 12000, + backup_heating_capacity: 12000, + cooling_shr: 0.73, + primary_heating_system: true, + primary_cooling_system: true, + pump_watts_per_ton: 0.0) + + end + if hpxml_file.include? 'eae' + hpxml_bldg.heating_systems[0].electric_auxiliary_energy = 500.0 else - hpxml.hvac_controls.add(id: "HVACControl#{hpxml.hvac_controls.size + 1}", - control_type: HPXML::HVACControlTypeManual, - cooling_setpoint_temp: 78.0) - if hpxml_file.include? 'baseboard' - hpxml.hvac_distributions.add(id: "HVACDistribution#{hpxml.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeHydronic, - hydronic_type: HPXML::HydronicTypeBaseboard) - hpxml.cooling_systems[-1].distribution_system_idref = hpxml.hvac_distributions[-1].id - end - end - end - if hpxml_file.include?('water-loop-heat-pump') || hpxml_file.include?('fan-coil') - # Handle WLHP/ducted fan coil - hpxml.hvac_distributions.reverse_each do |hvac_distribution| - hvac_distribution.delete - end - if hpxml_file.include? 'water-loop-heat-pump' - hpxml.hvac_distributions.add(id: "HVACDistribution#{hpxml.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeHydronic, - hydronic_type: HPXML::HydronicTypeWaterLoop) - hpxml.heat_pumps.add(id: "HeatPump#{hpxml.heat_pumps.size + 1}", - heat_pump_type: HPXML::HVACTypeHeatPumpWaterLoopToAir, - heat_pump_fuel: HPXML::FuelTypeElectricity) - if hpxml_file.include? 'boiler' - hpxml.heat_pumps[-1].heating_capacity = 24000 - hpxml.heat_pumps[-1].heating_efficiency_cop = 4.4 - hpxml.heating_systems[-1].distribution_system_idref = hpxml.hvac_distributions[-1].id + if hpxml_file.include? 'shared-boiler' + hpxml_bldg.heating_systems[0].shared_loop_watts = 600 end if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower') - hpxml.heat_pumps[-1].cooling_capacity = 24000 - hpxml.heat_pumps[-1].cooling_efficiency_eer = 12.8 - hpxml.cooling_systems[-1].distribution_system_idref = hpxml.hvac_distributions[-1].id - end - hpxml.hvac_distributions.add(id: "HVACDistribution#{hpxml.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeAir, - air_type: HPXML::AirTypeRegularVelocity) - hpxml.heat_pumps[-1].distribution_system_idref = hpxml.hvac_distributions[-1].id - elsif hpxml_file.include? 'fan-coil' - hpxml.hvac_distributions.add(id: "HVACDistribution#{hpxml.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeAir, - air_type: HPXML::AirTypeFanCoil) - - if hpxml_file.include? 'boiler' - hpxml.heating_systems[-1].distribution_system_idref = hpxml.hvac_distributions[-1].id + hpxml_bldg.cooling_systems[0].shared_loop_watts = 600 end - if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower') - hpxml.cooling_systems[-1].distribution_system_idref = hpxml.hvac_distributions[-1].id + if hpxml_file.include? 'shared-ground-loop' + hpxml_bldg.heat_pumps[0].shared_loop_watts = 600 + end + if hpxml_file.include? 'fan-coil' + if hpxml_file.include? 'boiler' + hpxml_bldg.heating_systems[0].fan_coil_watts = 150 + end + if hpxml_file.include? 'chiller' + hpxml_bldg.cooling_systems[0].fan_coil_watts = 150 + end end end - if hpxml_file.include?('water-loop-heat-pump') || hpxml_file.include?('fan-coil-ducted') - hpxml.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, - duct_leakage_units: HPXML::UnitsCFM25, - duct_leakage_value: 15, - duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) - hpxml.hvac_distributions[-1].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn, - duct_leakage_units: HPXML::UnitsCFM25, - duct_leakage_value: 10, - duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) - hpxml.hvac_distributions[-1].ducts.add(id: "Ducts#{hpxml.hvac_distributions[-1].ducts.size + 1}", - duct_type: HPXML::DuctTypeSupply, - duct_insulation_r_value: 0, - duct_location: HPXML::LocationOtherMultifamilyBufferSpace, - duct_surface_area: 50) - hpxml.hvac_distributions[-1].ducts.add(id: "Ducts#{hpxml.hvac_distributions[-1].ducts.size + 1}", - duct_type: HPXML::DuctTypeReturn, - duct_insulation_r_value: 0, - duct_location: HPXML::LocationOtherMultifamilyBufferSpace, - duct_surface_area: 20) - end - end - if hpxml_file.include? 'shared-ground-loop' - hpxml.heating_systems.reverse_each do |heating_system| - heating_system.delete - end - hpxml.cooling_systems.reverse_each do |cooling_system| - cooling_system.delete - end - hpxml.heat_pumps.add(id: "HeatPump#{hpxml.heat_pumps.size + 1}", - distribution_system_idref: hpxml.hvac_distributions[-1].id, - heat_pump_type: HPXML::HVACTypeHeatPumpGroundToAir, - heat_pump_fuel: HPXML::FuelTypeElectricity, - backup_type: HPXML::HeatPumpBackupTypeIntegrated, - backup_heating_fuel: HPXML::FuelTypeElectricity, - is_shared_system: true, - number_of_units_served: 6, - backup_heating_efficiency_percent: 1.0, - fraction_heat_load_served: 1, - fraction_cool_load_served: 1, - heating_efficiency_cop: 3.6, - cooling_efficiency_eer: 16.6, - heating_capacity: 12000, - cooling_capacity: 12000, - backup_heating_capacity: 12000, - cooling_shr: 0.73, - primary_heating_system: true, - primary_cooling_system: true, - pump_watts_per_ton: 0.0) - - end - if hpxml_file.include? 'eae' - hpxml.heating_systems[0].electric_auxiliary_energy = 500.0 - else - if hpxml_file.include? 'shared-boiler' - hpxml.heating_systems[0].shared_loop_watts = 600 - end - if hpxml_file.include?('chiller') || hpxml_file.include?('cooling-tower') - hpxml.cooling_systems[0].shared_loop_watts = 600 - end - if hpxml_file.include? 'shared-ground-loop' - hpxml.heat_pumps[0].shared_loop_watts = 600 - end - if hpxml_file.include? 'fan-coil' - if hpxml_file.include? 'boiler' - hpxml.heating_systems[0].fan_coil_watts = 150 + if hpxml_file.include? 'install-quality' + hpxml_bldg.hvac_systems.each do |hvac_system| + hvac_system.fan_watts_per_cfm = 0.365 end - if hpxml_file.include? 'chiller' - hpxml.cooling_systems[0].fan_coil_watts = 150 + elsif ['base-hvac-setpoints-daily-setbacks.xml'].include? hpxml_file + hpxml_bldg.hvac_controls[0].heating_setback_temp = 66 + hpxml_bldg.hvac_controls[0].heating_setback_hours_per_week = 7 * 7 + hpxml_bldg.hvac_controls[0].heating_setback_start_hour = 23 # 11pm + hpxml_bldg.hvac_controls[0].cooling_setup_temp = 80 + hpxml_bldg.hvac_controls[0].cooling_setup_hours_per_week = 6 * 7 + hpxml_bldg.hvac_controls[0].cooling_setup_start_hour = 9 # 9am + elsif ['base-hvac-dse.xml', + 'base-dhw-indirect-dse.xml', + 'base-mechvent-cfis-dse.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeDSE + hpxml_bldg.hvac_distributions[0].annual_heating_dse = 0.8 + hpxml_bldg.hvac_distributions[0].annual_cooling_dse = 0.7 + elsif ['base-hvac-furnace-x3-dse.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeDSE + hpxml_bldg.hvac_distributions[0].annual_heating_dse = 0.8 + hpxml_bldg.hvac_distributions[0].annual_cooling_dse = 0.7 + hpxml_bldg.hvac_distributions << hpxml_bldg.hvac_distributions[0].dup + hpxml_bldg.hvac_distributions[1].id = "HVACDistribution#{hpxml_bldg.hvac_distributions.size}" + hpxml_bldg.hvac_distributions[1].annual_cooling_dse = 1.0 + hpxml_bldg.hvac_distributions << hpxml_bldg.hvac_distributions[0].dup + hpxml_bldg.hvac_distributions[2].id = "HVACDistribution#{hpxml_bldg.hvac_distributions.size}" + hpxml_bldg.hvac_distributions[2].annual_cooling_dse = 1.0 + hpxml_bldg.heating_systems[0].primary_system = false + hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup + hpxml_bldg.heating_systems[1].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}" + hpxml_bldg.heating_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id + hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup + hpxml_bldg.heating_systems[2].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}" + hpxml_bldg.heating_systems[2].distribution_system_idref = hpxml_bldg.hvac_distributions[2].id + hpxml_bldg.heating_systems[2].primary_system = true + for i in 0..2 + hpxml_bldg.heating_systems[i].heating_capacity /= 3.0 + # Test a file where sum is slightly greater than 1 + if i < 2 + hpxml_bldg.heating_systems[i].fraction_heat_load_served = 0.33 + else + hpxml_bldg.heating_systems[i].fraction_heat_load_served = 0.35 + end end - end - end - if hpxml_file.include? 'install-quality' - hpxml.hvac_systems.each do |hvac_system| - hvac_system.fan_watts_per_cfm = 0.365 - end - elsif ['base-hvac-setpoints-daily-setbacks.xml'].include? hpxml_file - hpxml.hvac_controls[0].heating_setback_temp = 66 - hpxml.hvac_controls[0].heating_setback_hours_per_week = 7 * 7 - hpxml.hvac_controls[0].heating_setback_start_hour = 23 # 11pm - hpxml.hvac_controls[0].cooling_setup_temp = 80 - hpxml.hvac_controls[0].cooling_setup_hours_per_week = 6 * 7 - hpxml.hvac_controls[0].cooling_setup_start_hour = 9 # 9am - elsif ['base-hvac-dse.xml', - 'base-dhw-indirect-dse.xml', - 'base-mechvent-cfis-dse.xml'].include? hpxml_file - hpxml.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeDSE - hpxml.hvac_distributions[0].annual_heating_dse = 0.8 - hpxml.hvac_distributions[0].annual_cooling_dse = 0.7 - elsif ['base-hvac-furnace-x3-dse.xml'].include? hpxml_file - hpxml.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeDSE - hpxml.hvac_distributions[0].annual_heating_dse = 0.8 - hpxml.hvac_distributions[0].annual_cooling_dse = 0.7 - hpxml.hvac_distributions << hpxml.hvac_distributions[0].dup - hpxml.hvac_distributions[1].id = "HVACDistribution#{hpxml.hvac_distributions.size}" - hpxml.hvac_distributions[1].annual_cooling_dse = 1.0 - hpxml.hvac_distributions << hpxml.hvac_distributions[0].dup - hpxml.hvac_distributions[2].id = "HVACDistribution#{hpxml.hvac_distributions.size}" - hpxml.hvac_distributions[2].annual_cooling_dse = 1.0 - hpxml.heating_systems[0].primary_system = false - hpxml.heating_systems << hpxml.heating_systems[0].dup - hpxml.heating_systems[1].id = "HeatingSystem#{hpxml.heating_systems.size}" - hpxml.heating_systems[1].distribution_system_idref = hpxml.hvac_distributions[1].id - hpxml.heating_systems << hpxml.heating_systems[0].dup - hpxml.heating_systems[2].id = "HeatingSystem#{hpxml.heating_systems.size}" - hpxml.heating_systems[2].distribution_system_idref = hpxml.hvac_distributions[2].id - hpxml.heating_systems[2].primary_system = true - for i in 0..2 - hpxml.heating_systems[i].heating_capacity /= 3.0 - # Test a file where sum is slightly greater than 1 - if i < 2 - hpxml.heating_systems[i].fraction_heat_load_served = 0.33 + elsif ['base-hvac-ducts-area-fractions.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions[0].ducts[2].duct_location = HPXML::LocationExteriorWall + hpxml_bldg.hvac_distributions[0].ducts[2].duct_insulation_r_value = 4.0 + elsif ['base-enclosure-2stories.xml', + 'base-enclosure-2stories-garage.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[0].ducts[0].dup + hpxml_bldg.hvac_distributions[0].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size}" + hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[0].ducts[1].dup + hpxml_bldg.hvac_distributions[0].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size}" + hpxml_bldg.hvac_distributions[0].ducts[2].duct_location = HPXML::LocationExteriorWall + hpxml_bldg.hvac_distributions[0].ducts[2].duct_surface_area = 37.5 + hpxml_bldg.hvac_distributions[0].ducts[3].duct_location = HPXML::LocationConditionedSpace + hpxml_bldg.hvac_distributions[0].ducts[3].duct_surface_area = 12.5 + if hpxml_file == 'base-hvac-ducts-area-fractions.xml' + hpxml_bldg.hvac_distributions[0].ducts[0].duct_surface_area = nil + hpxml_bldg.hvac_distributions[0].ducts[1].duct_surface_area = nil + hpxml_bldg.hvac_distributions[0].ducts[2].duct_surface_area = nil + hpxml_bldg.hvac_distributions[0].ducts[3].duct_surface_area = nil + hpxml_bldg.hvac_distributions[0].ducts[0].duct_fraction_area = 0.75 + hpxml_bldg.hvac_distributions[0].ducts[1].duct_fraction_area = 0.75 + hpxml_bldg.hvac_distributions[0].ducts[2].duct_fraction_area = 0.25 + hpxml_bldg.hvac_distributions[0].ducts[3].duct_fraction_area = 0.25 + hpxml_bldg.hvac_distributions[0].conditioned_floor_area_served = 4050.0 + hpxml_bldg.hvac_distributions[0].number_of_return_registers = 3 + end + elsif ['base-hvac-ducts-effective-rvalue.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions[0].ducts[0].duct_insulation_r_value = nil + hpxml_bldg.hvac_distributions[0].ducts[1].duct_insulation_r_value = nil + hpxml_bldg.hvac_distributions[0].ducts[0].duct_effective_r_value = 4.5 + hpxml_bldg.hvac_distributions[0].ducts[1].duct_effective_r_value = 1.7 + elsif ['base-hvac-multiple.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions.reverse_each do |hvac_distribution| + hvac_distribution.delete + end + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeAir, + air_type: HPXML::AirTypeRegularVelocity) + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, + duct_leakage_units: HPXML::UnitsCFM25, + duct_leakage_value: 75, + duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn, + duct_leakage_units: HPXML::UnitsCFM25, + duct_leakage_value: 25, + duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) + hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", + duct_type: HPXML::DuctTypeSupply, + duct_insulation_r_value: 8, + duct_location: HPXML::LocationAtticUnvented, + duct_surface_area: 75) + hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", + duct_type: HPXML::DuctTypeSupply, + duct_insulation_r_value: 8, + duct_location: HPXML::LocationOutside, + duct_surface_area: 75) + hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", + duct_type: HPXML::DuctTypeReturn, + duct_insulation_r_value: 4, + duct_location: HPXML::LocationAtticUnvented, + duct_surface_area: 25) + hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", + duct_type: HPXML::DuctTypeReturn, + duct_insulation_r_value: 4, + duct_location: HPXML::LocationOutside, + duct_surface_area: 25) + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeAir, + air_type: HPXML::AirTypeRegularVelocity) + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup + for i in 0..3 + hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[i].dup + hpxml_bldg.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + i + 1}" + end + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeHydronic, + hydronic_type: HPXML::HydronicTypeBaseboard) + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeHydronic, + hydronic_type: HPXML::HydronicTypeBaseboard) + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeAir, + air_type: HPXML::AirTypeRegularVelocity) + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup + for i in 0..3 + hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[i].dup + hpxml_bldg.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size * 2 + i + 1}" + end + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeAir, + air_type: HPXML::AirTypeRegularVelocity) + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup + hpxml_bldg.hvac_distributions[-1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup + for i in 0..3 + hpxml_bldg.hvac_distributions[-1].ducts << hpxml_bldg.hvac_distributions[0].ducts[i].dup + hpxml_bldg.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size * 3 + i + 1}" + end + hpxml_bldg.heating_systems.reverse_each do |heating_system| + heating_system.delete + end + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + distribution_system_idref: hpxml_bldg.hvac_distributions[0].id, + heating_system_type: HPXML::HVACTypeFurnace, + heating_system_fuel: HPXML::FuelTypeElectricity, + heating_capacity: 6400, + heating_efficiency_afue: 1, + fraction_heat_load_served: 0.1) + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + distribution_system_idref: hpxml_bldg.hvac_distributions[1].id, + heating_system_type: HPXML::HVACTypeFurnace, + heating_system_fuel: HPXML::FuelTypeNaturalGas, + heating_capacity: 6400, + heating_efficiency_afue: 0.92, + fraction_heat_load_served: 0.1) + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + distribution_system_idref: hpxml_bldg.hvac_distributions[2].id, + heating_system_type: HPXML::HVACTypeBoiler, + heating_system_fuel: HPXML::FuelTypeElectricity, + heating_capacity: 6400, + heating_efficiency_afue: 1, + fraction_heat_load_served: 0.1) + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + distribution_system_idref: hpxml_bldg.hvac_distributions[3].id, + heating_system_type: HPXML::HVACTypeBoiler, + heating_system_fuel: HPXML::FuelTypeNaturalGas, + heating_capacity: 6400, + heating_efficiency_afue: 0.92, + fraction_heat_load_served: 0.1, + electric_auxiliary_energy: 200) + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + heating_system_type: HPXML::HVACTypeElectricResistance, + heating_system_fuel: HPXML::FuelTypeElectricity, + heating_capacity: 6400, + heating_efficiency_percent: 1, + fraction_heat_load_served: 0.1) + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + heating_system_type: HPXML::HVACTypeStove, + heating_system_fuel: HPXML::FuelTypeOil, + heating_capacity: 6400, + heating_efficiency_percent: 0.8, + fraction_heat_load_served: 0.1, + fan_watts: 40.0) + hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", + heating_system_type: HPXML::HVACTypeWallFurnace, + heating_system_fuel: HPXML::FuelTypePropane, + heating_capacity: 6400, + heating_efficiency_afue: 0.8, + fraction_heat_load_served: 0.1, + fan_watts: 0.0) + hpxml_bldg.cooling_systems[0].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id + hpxml_bldg.cooling_systems[0].fraction_cool_load_served = 0.1333 + hpxml_bldg.cooling_systems[0].cooling_capacity *= 0.1333 + hpxml_bldg.cooling_systems[0].primary_system = false + hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", + cooling_system_type: HPXML::HVACTypeRoomAirConditioner, + cooling_system_fuel: HPXML::FuelTypeElectricity, + cooling_capacity: 9600, + fraction_cool_load_served: 0.1333, + cooling_efficiency_eer: 8.5, + cooling_shr: 0.65) + hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", + cooling_system_type: HPXML::HVACTypePTAC, + cooling_system_fuel: HPXML::FuelTypeElectricity, + cooling_capacity: 9600, + fraction_cool_load_served: 0.1333, + cooling_efficiency_eer: 10.7, + cooling_shr: 0.65) + hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", + distribution_system_idref: hpxml_bldg.hvac_distributions[4].id, + heat_pump_type: HPXML::HVACTypeHeatPumpAirToAir, + heat_pump_fuel: HPXML::FuelTypeElectricity, + heating_capacity: 4800, + cooling_capacity: 4800, + backup_type: HPXML::HeatPumpBackupTypeIntegrated, + backup_heating_fuel: HPXML::FuelTypeElectricity, + backup_heating_capacity: 3412, + backup_heating_efficiency_percent: 1.0, + fraction_heat_load_served: 0.1, + fraction_cool_load_served: 0.2, + heating_efficiency_hspf: 7.7, + cooling_efficiency_seer: 13, + heating_capacity_17F: 4800 * 0.6, + cooling_shr: 0.73, + compressor_type: HPXML::HVACCompressorTypeSingleStage) + hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", + distribution_system_idref: hpxml_bldg.hvac_distributions[5].id, + heat_pump_type: HPXML::HVACTypeHeatPumpGroundToAir, + heat_pump_fuel: HPXML::FuelTypeElectricity, + heating_capacity: 4800, + cooling_capacity: 4800, + backup_type: HPXML::HeatPumpBackupTypeIntegrated, + backup_heating_fuel: HPXML::FuelTypeElectricity, + backup_heating_capacity: 3412, + backup_heating_efficiency_percent: 1.0, + fraction_heat_load_served: 0.1, + fraction_cool_load_served: 0.2, + heating_efficiency_cop: 3.6, + cooling_efficiency_eer: 16.6, + cooling_shr: 0.73, + pump_watts_per_ton: 30.0) + hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", + heat_pump_type: HPXML::HVACTypeHeatPumpMiniSplit, + heat_pump_fuel: HPXML::FuelTypeElectricity, + heating_capacity: 4800, + cooling_capacity: 4800, + backup_type: HPXML::HeatPumpBackupTypeIntegrated, + backup_heating_fuel: HPXML::FuelTypeElectricity, + backup_heating_capacity: 3412, + backup_heating_efficiency_percent: 1.0, + fraction_heat_load_served: 0.1, + fraction_cool_load_served: 0.2, + heating_efficiency_hspf: 10, + cooling_efficiency_seer: 19, + heating_capacity_17F: 4800 * 0.6, + cooling_shr: 0.73, + primary_cooling_system: true, + primary_heating_system: true) + elsif ['base-mechvent-multiple.xml', + 'base-bldgtype-mf-unit-shared-mechvent-multiple.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeAir, + air_type: HPXML::AirTypeRegularVelocity) + hpxml_bldg.hvac_distributions[1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[0].dup + hpxml_bldg.hvac_distributions[1].duct_leakage_measurements << hpxml_bldg.hvac_distributions[0].duct_leakage_measurements[1].dup + hpxml_bldg.hvac_distributions[1].ducts << hpxml_bldg.hvac_distributions[0].ducts[0].dup + hpxml_bldg.hvac_distributions[1].ducts << hpxml_bldg.hvac_distributions[0].ducts[1].dup + hpxml_bldg.hvac_distributions[1].ducts[0].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}" + hpxml_bldg.hvac_distributions[1].ducts[1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 2}" + hpxml_bldg.heating_systems[0].heating_capacity /= 2.0 + hpxml_bldg.heating_systems[0].fraction_heat_load_served /= 2.0 + hpxml_bldg.heating_systems[0].primary_system = false + hpxml_bldg.heating_systems << hpxml_bldg.heating_systems[0].dup + hpxml_bldg.heating_systems[1].id = "HeatingSystem#{hpxml_bldg.heating_systems.size}" + hpxml_bldg.heating_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id + hpxml_bldg.heating_systems[1].primary_system = true + hpxml_bldg.cooling_systems[0].fraction_cool_load_served /= 2.0 + hpxml_bldg.cooling_systems[0].cooling_capacity /= 2.0 + hpxml_bldg.cooling_systems[0].primary_system = false + hpxml_bldg.cooling_systems << hpxml_bldg.cooling_systems[0].dup + hpxml_bldg.cooling_systems[1].id = "CoolingSystem#{hpxml_bldg.cooling_systems.size}" + hpxml_bldg.cooling_systems[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id + hpxml_bldg.cooling_systems[1].primary_system = true + elsif ['base-bldgtype-mf-unit-adjacent-to-multiple.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions[0].ducts[1].duct_location = HPXML::LocationOtherHousingUnit + hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", + duct_type: HPXML::DuctTypeSupply, + duct_insulation_r_value: 4, + duct_location: HPXML::LocationRoofDeck, + duct_surface_area: 150) + hpxml_bldg.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}", + duct_type: HPXML::DuctTypeReturn, + duct_insulation_r_value: 0, + duct_location: HPXML::LocationRoofDeck, + duct_surface_area: 50) + elsif ['base-appliances-dehumidifier-multiple.xml'].include? hpxml_file + hpxml_bldg.dehumidifiers[0].fraction_served = 0.5 + hpxml_bldg.dehumidifiers.add(id: 'Dehumidifier2', + type: HPXML::DehumidifierTypePortable, + capacity: 30, + energy_factor: 1.6, + rh_setpoint: 0.5, + fraction_served: 0.25, + location: HPXML::LocationConditionedSpace) + end + if ['base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml', + 'base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml'].include? hpxml_file + # Switch backup boiler with hydronic distribution to backup furnace with air distribution + hpxml_bldg.heating_systems[0].heating_system_type = HPXML::HVACTypeFurnace + hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeAir + hpxml_bldg.hvac_distributions[0].air_type = HPXML::AirTypeRegularVelocity + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements << hpxml_bldg.hvac_distributions[1].duct_leakage_measurements[0].dup + hpxml_bldg.hvac_distributions[0].duct_leakage_measurements << hpxml_bldg.hvac_distributions[1].duct_leakage_measurements[1].dup + hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[1].ducts[0].dup + hpxml_bldg.hvac_distributions[0].ducts << hpxml_bldg.hvac_distributions[1].ducts[1].dup + hpxml_bldg.hvac_distributions[1].ducts[0].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 1}" + hpxml_bldg.hvac_distributions[1].ducts[1].id = "Ducts#{hpxml_bldg.hvac_distributions[0].ducts.size + 2}" + end + if ['base-hvac-ducts-area-multipliers.xml'].include? hpxml_file + hpxml_bldg.hvac_distributions[0].ducts[0].duct_surface_area_multiplier = 0.5 + hpxml_bldg.hvac_distributions[0].ducts[1].duct_surface_area_multiplier = 1.5 + end + if hpxml_file.include? 'heating-capacity-17f' + hpxml_bldg.heat_pumps[0].heating_capacity_17F = hpxml_bldg.heat_pumps[0].heating_capacity * hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction + hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = nil + hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil + end + + # ------------------ # + # HPXML WaterHeating # + # ------------------ # + + # Logic that can only be applied based on the file name + if ['base-schedules-simple.xml', + 'base-schedules-simple-vacancy.xml', + 'base-schedules-simple-power-outage.xml', + 'base-misc-loads-large-uncommon.xml', + 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file + hpxml_bldg.water_heating.water_fixtures_weekday_fractions = '0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026' + hpxml_bldg.water_heating.water_fixtures_weekend_fractions = '0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026' + hpxml_bldg.water_heating.water_fixtures_monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' + elsif ['base-bldgtype-mf-unit-shared-water-heater-recirc.xml'].include? hpxml_file + hpxml_bldg.hot_water_distributions[0].has_shared_recirculation = true + hpxml_bldg.hot_water_distributions[0].shared_recirculation_number_of_units_served = 6 + hpxml_bldg.hot_water_distributions[0].shared_recirculation_pump_power = 220 + hpxml_bldg.hot_water_distributions[0].shared_recirculation_control_type = HPXML::DHWRecirControlTypeTimer + elsif ['base-bldgtype-mf-unit-shared-laundry-room.xml', + 'base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml'].include? hpxml_file + hpxml_bldg.water_heating_systems.reverse_each do |water_heating_system| + water_heating_system.delete + end + hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", + is_shared_system: true, + number_of_units_served: 6, + fuel_type: HPXML::FuelTypeNaturalGas, + water_heater_type: HPXML::WaterHeaterTypeStorage, + location: HPXML::LocationConditionedSpace, + tank_volume: 120, + fraction_dhw_load_served: 1.0, + heating_capacity: 40000, + energy_factor: 0.59, + recovery_efficiency: 0.76, + temperature: 125.0) + if hpxml_file == 'base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml' + hpxml_bldg.water_heating_systems[0].fraction_dhw_load_served /= 2.0 + hpxml_bldg.water_heating_systems[0].tank_volume /= 2.0 + hpxml_bldg.water_heating_systems[0].number_of_units_served /= 2.0 + hpxml_bldg.water_heating_systems << hpxml_bldg.water_heating_systems[0].dup + hpxml_bldg.water_heating_systems[1].id = "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size}" + end + elsif ['base-dhw-tank-gas-uef-fhr.xml'].include? hpxml_file + hpxml_bldg.water_heating_systems[0].first_hour_rating = 56.0 + hpxml_bldg.water_heating_systems[0].usage_bin = nil + elsif ['base-dhw-tankless-electric-outside.xml'].include? hpxml_file + hpxml_bldg.water_heating_systems[0].performance_adjustment = 0.92 + elsif ['base-dhw-multiple.xml'].include? hpxml_file + hpxml_bldg.water_heating_systems[0].fraction_dhw_load_served = 0.2 + hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", + fuel_type: HPXML::FuelTypeNaturalGas, + water_heater_type: HPXML::WaterHeaterTypeStorage, + location: HPXML::LocationConditionedSpace, + tank_volume: 50, + fraction_dhw_load_served: 0.2, + heating_capacity: 40000, + energy_factor: 0.59, + recovery_efficiency: 0.76, + temperature: 125.0) + hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", + fuel_type: HPXML::FuelTypeElectricity, + water_heater_type: HPXML::WaterHeaterTypeHeatPump, + location: HPXML::LocationConditionedSpace, + tank_volume: 80, + fraction_dhw_load_served: 0.2, + energy_factor: 2.3, + temperature: 125.0) + hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", + fuel_type: HPXML::FuelTypeElectricity, + water_heater_type: HPXML::WaterHeaterTypeTankless, + location: HPXML::LocationConditionedSpace, + fraction_dhw_load_served: 0.2, + energy_factor: 0.99, + temperature: 125.0) + hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", + fuel_type: HPXML::FuelTypeNaturalGas, + water_heater_type: HPXML::WaterHeaterTypeTankless, + location: HPXML::LocationConditionedSpace, + fraction_dhw_load_served: 0.1, + energy_factor: 0.82, + temperature: 125.0) + hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", + water_heater_type: HPXML::WaterHeaterTypeCombiStorage, + location: HPXML::LocationConditionedSpace, + tank_volume: 50, + fraction_dhw_load_served: 0.1, + related_hvac_idref: 'HeatingSystem1', + temperature: 125.0) + hpxml_bldg.solar_thermal_systems.add(id: "SolarThermalSystem#{hpxml_bldg.solar_thermal_systems.size + 1}", + system_type: HPXML::SolarThermalSystemType, + water_heating_system_idref: nil, # Apply to all water heaters + solar_fraction: 0.65) + end + if ['base-dhw-low-flow-fixtures.xml'].include? hpxml_file + hpxml_bldg.water_fixtures[0].count = 2 + hpxml_bldg.water_fixtures[1].low_flow = nil + hpxml_bldg.water_fixtures[1].flow_rate = 2.0 + hpxml_bldg.water_fixtures[1].count = 3 + end + + # -------------------- # + # HPXML VentilationFan # + # -------------------- # + + # Logic that can only be applied based on the file name + if ['base-bldgtype-mf-unit-shared-mechvent-multiple.xml'].include? hpxml_file + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeSupply, + is_shared_system: true, + in_unit_flow_rate: 100, + calculated_flow_rate: 1000, + hours_in_operation: 24, + fan_power: 300, + used_for_whole_building_ventilation: true, + fraction_recirculation: 0.0, + preheating_fuel: HPXML::FuelTypeNaturalGas, + preheating_efficiency_cop: 0.92, + preheating_fraction_load_served: 0.8, + precooling_fuel: HPXML::FuelTypeElectricity, + precooling_efficiency_cop: 4.0, + precooling_fraction_load_served: 0.8) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeERV, + is_shared_system: true, + in_unit_flow_rate: 50, + delivered_ventilation: 500, + hours_in_operation: 24, + total_recovery_efficiency: 0.48, + sensible_recovery_efficiency: 0.72, + fan_power: 150, + used_for_whole_building_ventilation: true, + fraction_recirculation: 0.4, + preheating_fuel: HPXML::FuelTypeNaturalGas, + preheating_efficiency_cop: 0.87, + preheating_fraction_load_served: 1.0, + precooling_fuel: HPXML::FuelTypeElectricity, + precooling_efficiency_cop: 3.5, + precooling_fraction_load_served: 1.0) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeHRV, + is_shared_system: true, + in_unit_flow_rate: 50, + rated_flow_rate: 500, + hours_in_operation: 24, + sensible_recovery_efficiency: 0.72, + fan_power: 150, + used_for_whole_building_ventilation: true, + fraction_recirculation: 0.3, + preheating_fuel: HPXML::FuelTypeElectricity, + preheating_efficiency_cop: 4.0, + precooling_fuel: HPXML::FuelTypeElectricity, + precooling_efficiency_cop: 4.5, + preheating_fraction_load_served: 1.0, + precooling_fraction_load_served: 1.0) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeBalanced, + is_shared_system: true, + in_unit_flow_rate: 30, + tested_flow_rate: 300, + hours_in_operation: 24, + fan_power: 150, + used_for_whole_building_ventilation: true, + fraction_recirculation: 0.3, + preheating_fuel: HPXML::FuelTypeElectricity, + preheating_efficiency_cop: 3.5, + precooling_fuel: HPXML::FuelTypeElectricity, + precooling_efficiency_cop: 4.0, + preheating_fraction_load_served: 0.9, + precooling_fraction_load_served: 1.0) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeExhaust, + is_shared_system: true, + in_unit_flow_rate: 70, + rated_flow_rate: 700, + hours_in_operation: 8, + fan_power: 300, + used_for_whole_building_ventilation: true, + fraction_recirculation: 0.0) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeExhaust, + tested_flow_rate: 50, + hours_in_operation: 14, + fan_power: 10, + used_for_whole_building_ventilation: true) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeCFIS, + tested_flow_rate: 160, + hours_in_operation: 8, + fan_power: 150, + used_for_whole_building_ventilation: true, + cfis_addtl_runtime_operating_mode: HPXML::CFISModeAirHandler, + distribution_system_idref: 'HVACDistribution1') + elsif ['base-mechvent-multiple.xml'].include? hpxml_file + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + rated_flow_rate: 2000, + fan_power: 150, + used_for_seasonal_cooling_load_reduction: true) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeSupply, + tested_flow_rate: 12.5, + hours_in_operation: 14, + fan_power: 2.5, + used_for_whole_building_ventilation: true) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeExhaust, + tested_flow_rate: 30.0, + fan_power: 7.5, + used_for_whole_building_ventilation: true) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeBalanced, + tested_flow_rate: 27.5, + hours_in_operation: 24, + fan_power: 15, + used_for_whole_building_ventilation: true) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeERV, + tested_flow_rate: 12.5, + hours_in_operation: 24, + total_recovery_efficiency: 0.48, + sensible_recovery_efficiency: 0.72, + fan_power: 6.25, + used_for_whole_building_ventilation: true) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeHRV, + tested_flow_rate: 15, + hours_in_operation: 24, + sensible_recovery_efficiency: 0.72, + fan_power: 7.5, + used_for_whole_building_ventilation: true) + hpxml_bldg.ventilation_fans.reverse_each do |vent_fan| + vent_fan.fan_power /= 2.0 + vent_fan.rated_flow_rate /= 2.0 unless vent_fan.rated_flow_rate.nil? + vent_fan.tested_flow_rate /= 2.0 unless vent_fan.tested_flow_rate.nil? + hpxml_bldg.ventilation_fans << vent_fan.dup + hpxml_bldg.ventilation_fans[-1].id = "VentilationFan#{hpxml_bldg.ventilation_fans.size}" + hpxml_bldg.ventilation_fans[-1].start_hour = vent_fan.start_hour - 1 unless vent_fan.start_hour.nil? + hpxml_bldg.ventilation_fans[-1].hours_in_operation = vent_fan.hours_in_operation - 1 unless vent_fan.hours_in_operation.nil? + end + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeCFIS, + tested_flow_rate: 40, + hours_in_operation: 8, + fan_power: 37.5, + used_for_whole_building_ventilation: true, + cfis_addtl_runtime_operating_mode: HPXML::CFISModeAirHandler, + distribution_system_idref: 'HVACDistribution1') + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeCFIS, + tested_flow_rate: 42.5, + hours_in_operation: 8, + fan_power: 37.5, + used_for_whole_building_ventilation: true, + cfis_addtl_runtime_operating_mode: HPXML::CFISModeSupplementalFan, + cfis_supplemental_fan_idref: hpxml_bldg.ventilation_fans.find { |f| f.fan_type == HPXML::MechVentTypeExhaust }.id, + distribution_system_idref: 'HVACDistribution2') + # Test ventilation system w/ zero airflow and hours + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeHRV, + tested_flow_rate: 0, + hours_in_operation: 24, + sensible_recovery_efficiency: 0.72, + fan_power: 7.5, + used_for_whole_building_ventilation: true) + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeHRV, + tested_flow_rate: 15, + hours_in_operation: 0, + sensible_recovery_efficiency: 0.72, + fan_power: 7.5, + used_for_whole_building_ventilation: true) + elsif ['base-mechvent-cfis-airflow-fraction-zero.xml'].include? hpxml_file + hpxml_bldg.ventilation_fans[0].cfis_vent_mode_airflow_fraction = 0.0 + elsif ['base-mechvent-cfis-supplemental-fan-exhaust.xml', + 'base-mechvent-cfis-supplemental-fan-supply.xml'].include? hpxml_file + hpxml_bldg.ventilation_fans.add(id: "VentilationFan#{hpxml_bldg.ventilation_fans.size + 1}", + tested_flow_rate: 120, + fan_power: 30, + used_for_whole_building_ventilation: true) + if hpxml_file == 'base-mechvent-cfis-supplemental-fan-exhaust.xml' + hpxml_bldg.ventilation_fans[-1].fan_type = HPXML::MechVentTypeExhaust else - hpxml.heating_systems[i].fraction_heat_load_served = 0.35 + hpxml_bldg.ventilation_fans[-1].fan_type = HPXML::MechVentTypeSupply end - end - elsif ['base-enclosure-2stories.xml', - 'base-enclosure-2stories-garage.xml', - 'base-hvac-ducts-area-fractions.xml'].include? hpxml_file - hpxml.hvac_distributions[0].ducts << hpxml.hvac_distributions[0].ducts[0].dup - hpxml.hvac_distributions[0].ducts[-1].id = "Ducts#{hpxml.hvac_distributions[0].ducts.size}" - hpxml.hvac_distributions[0].ducts << hpxml.hvac_distributions[0].ducts[1].dup - hpxml.hvac_distributions[0].ducts[-1].id = "Ducts#{hpxml.hvac_distributions[0].ducts.size}" - hpxml.hvac_distributions[0].ducts[2].duct_location = HPXML::LocationExteriorWall - hpxml.hvac_distributions[0].ducts[2].duct_surface_area = 37.5 - hpxml.hvac_distributions[0].ducts[3].duct_location = HPXML::LocationLivingSpace - hpxml.hvac_distributions[0].ducts[3].duct_surface_area = 12.5 - if hpxml_file == 'base-hvac-ducts-area-fractions.xml' - hpxml.hvac_distributions[0].ducts[0].duct_surface_area = nil - hpxml.hvac_distributions[0].ducts[1].duct_surface_area = nil - hpxml.hvac_distributions[0].ducts[2].duct_surface_area = nil - hpxml.hvac_distributions[0].ducts[3].duct_surface_area = nil - hpxml.hvac_distributions[0].ducts[0].duct_fraction_area = 0.75 - hpxml.hvac_distributions[0].ducts[1].duct_fraction_area = 0.75 - hpxml.hvac_distributions[0].ducts[2].duct_fraction_area = 0.25 - hpxml.hvac_distributions[0].ducts[3].duct_fraction_area = 0.25 - hpxml.hvac_distributions[0].conditioned_floor_area_served = 4050.0 - hpxml.hvac_distributions[0].number_of_return_registers = 3 - end - elsif ['base-hvac-ducts-effective-rvalue.xml'].include? hpxml_file - hpxml.hvac_distributions[0].ducts[0].duct_insulation_r_value = nil - hpxml.hvac_distributions[0].ducts[1].duct_insulation_r_value = nil - hpxml.hvac_distributions[0].ducts[0].duct_effective_r_value = 4.5 - hpxml.hvac_distributions[0].ducts[1].duct_effective_r_value = 1.7 - elsif ['base-hvac-multiple.xml'].include? hpxml_file - hpxml.hvac_distributions.reverse_each do |hvac_distribution| - hvac_distribution.delete - end - hpxml.hvac_distributions.add(id: "HVACDistribution#{hpxml.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeAir, - air_type: HPXML::AirTypeRegularVelocity) - hpxml.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, - duct_leakage_units: HPXML::UnitsCFM25, - duct_leakage_value: 75, - duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) - hpxml.hvac_distributions[0].duct_leakage_measurements.add(duct_type: HPXML::DuctTypeReturn, - duct_leakage_units: HPXML::UnitsCFM25, - duct_leakage_value: 25, - duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) - hpxml.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml.hvac_distributions[0].ducts.size + 1}", - duct_type: HPXML::DuctTypeSupply, - duct_insulation_r_value: 8, - duct_location: HPXML::LocationAtticUnvented, - duct_surface_area: 75) - hpxml.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml.hvac_distributions[0].ducts.size + 1}", - duct_type: HPXML::DuctTypeSupply, - duct_insulation_r_value: 8, - duct_location: HPXML::LocationOutside, - duct_surface_area: 75) - hpxml.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml.hvac_distributions[0].ducts.size + 1}", - duct_type: HPXML::DuctTypeReturn, - duct_insulation_r_value: 4, - duct_location: HPXML::LocationAtticUnvented, - duct_surface_area: 25) - hpxml.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml.hvac_distributions[0].ducts.size + 1}", - duct_type: HPXML::DuctTypeReturn, - duct_insulation_r_value: 4, - duct_location: HPXML::LocationOutside, - duct_surface_area: 25) - hpxml.hvac_distributions.add(id: "HVACDistribution#{hpxml.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeAir, - air_type: HPXML::AirTypeRegularVelocity) - hpxml.hvac_distributions[-1].duct_leakage_measurements << hpxml.hvac_distributions[0].duct_leakage_measurements[0].dup - hpxml.hvac_distributions[-1].duct_leakage_measurements << hpxml.hvac_distributions[0].duct_leakage_measurements[1].dup - for i in 0..3 - hpxml.hvac_distributions[-1].ducts << hpxml.hvac_distributions[0].ducts[i].dup - hpxml.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml.hvac_distributions[0].ducts.size + i + 1}" - end - hpxml.hvac_distributions.add(id: "HVACDistribution#{hpxml.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeHydronic, - hydronic_type: HPXML::HydronicTypeBaseboard) - hpxml.hvac_distributions.add(id: "HVACDistribution#{hpxml.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeHydronic, - hydronic_type: HPXML::HydronicTypeBaseboard) - hpxml.hvac_distributions.add(id: "HVACDistribution#{hpxml.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeAir, - air_type: HPXML::AirTypeRegularVelocity) - hpxml.hvac_distributions[-1].duct_leakage_measurements << hpxml.hvac_distributions[0].duct_leakage_measurements[0].dup - hpxml.hvac_distributions[-1].duct_leakage_measurements << hpxml.hvac_distributions[0].duct_leakage_measurements[1].dup - for i in 0..3 - hpxml.hvac_distributions[-1].ducts << hpxml.hvac_distributions[0].ducts[i].dup - hpxml.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml.hvac_distributions[0].ducts.size * 2 + i + 1}" - end - hpxml.hvac_distributions.add(id: "HVACDistribution#{hpxml.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeAir, - air_type: HPXML::AirTypeRegularVelocity) - hpxml.hvac_distributions[-1].duct_leakage_measurements << hpxml.hvac_distributions[0].duct_leakage_measurements[0].dup - hpxml.hvac_distributions[-1].duct_leakage_measurements << hpxml.hvac_distributions[0].duct_leakage_measurements[1].dup - for i in 0..3 - hpxml.hvac_distributions[-1].ducts << hpxml.hvac_distributions[0].ducts[i].dup - hpxml.hvac_distributions[-1].ducts[-1].id = "Ducts#{hpxml.hvac_distributions[0].ducts.size * 3 + i + 1}" - end - hpxml.heating_systems.reverse_each do |heating_system| - heating_system.delete - end - hpxml.heating_systems.add(id: "HeatingSystem#{hpxml.heating_systems.size + 1}", - distribution_system_idref: hpxml.hvac_distributions[0].id, - heating_system_type: HPXML::HVACTypeFurnace, - heating_system_fuel: HPXML::FuelTypeElectricity, - heating_capacity: 6400, - heating_efficiency_afue: 1, - fraction_heat_load_served: 0.1) - hpxml.heating_systems.add(id: "HeatingSystem#{hpxml.heating_systems.size + 1}", - distribution_system_idref: hpxml.hvac_distributions[1].id, - heating_system_type: HPXML::HVACTypeFurnace, - heating_system_fuel: HPXML::FuelTypeNaturalGas, - heating_capacity: 6400, - heating_efficiency_afue: 0.92, - fraction_heat_load_served: 0.1) - hpxml.heating_systems.add(id: "HeatingSystem#{hpxml.heating_systems.size + 1}", - distribution_system_idref: hpxml.hvac_distributions[2].id, - heating_system_type: HPXML::HVACTypeBoiler, - heating_system_fuel: HPXML::FuelTypeElectricity, - heating_capacity: 6400, - heating_efficiency_afue: 1, - fraction_heat_load_served: 0.1) - hpxml.heating_systems.add(id: "HeatingSystem#{hpxml.heating_systems.size + 1}", - distribution_system_idref: hpxml.hvac_distributions[3].id, - heating_system_type: HPXML::HVACTypeBoiler, - heating_system_fuel: HPXML::FuelTypeNaturalGas, - heating_capacity: 6400, - heating_efficiency_afue: 0.92, - fraction_heat_load_served: 0.1, - electric_auxiliary_energy: 200) - hpxml.heating_systems.add(id: "HeatingSystem#{hpxml.heating_systems.size + 1}", - heating_system_type: HPXML::HVACTypeElectricResistance, - heating_system_fuel: HPXML::FuelTypeElectricity, - heating_capacity: 6400, - heating_efficiency_percent: 1, - fraction_heat_load_served: 0.1) - hpxml.heating_systems.add(id: "HeatingSystem#{hpxml.heating_systems.size + 1}", - heating_system_type: HPXML::HVACTypeStove, - heating_system_fuel: HPXML::FuelTypeOil, - heating_capacity: 6400, - heating_efficiency_percent: 0.8, - fraction_heat_load_served: 0.1, - fan_watts: 40.0) - hpxml.heating_systems.add(id: "HeatingSystem#{hpxml.heating_systems.size + 1}", - heating_system_type: HPXML::HVACTypeWallFurnace, - heating_system_fuel: HPXML::FuelTypePropane, - heating_capacity: 6400, - heating_efficiency_afue: 0.8, - fraction_heat_load_served: 0.1, - fan_watts: 0.0) - hpxml.cooling_systems[0].distribution_system_idref = hpxml.hvac_distributions[1].id - hpxml.cooling_systems[0].fraction_cool_load_served = 0.1333 - hpxml.cooling_systems[0].cooling_capacity *= 0.1333 - hpxml.cooling_systems[0].primary_system = false - hpxml.cooling_systems.add(id: "CoolingSystem#{hpxml.cooling_systems.size + 1}", - cooling_system_type: HPXML::HVACTypeRoomAirConditioner, - cooling_system_fuel: HPXML::FuelTypeElectricity, - cooling_capacity: 9600, - fraction_cool_load_served: 0.1333, - cooling_efficiency_eer: 8.5, - cooling_shr: 0.65) - hpxml.cooling_systems.add(id: "CoolingSystem#{hpxml.cooling_systems.size + 1}", - cooling_system_type: HPXML::HVACTypePTAC, - cooling_system_fuel: HPXML::FuelTypeElectricity, - cooling_capacity: 9600, - fraction_cool_load_served: 0.1333, - cooling_efficiency_eer: 10.7, - cooling_shr: 0.65) - hpxml.heat_pumps.add(id: "HeatPump#{hpxml.heat_pumps.size + 1}", - distribution_system_idref: hpxml.hvac_distributions[4].id, - heat_pump_type: HPXML::HVACTypeHeatPumpAirToAir, - heat_pump_fuel: HPXML::FuelTypeElectricity, - heating_capacity: 4800, - cooling_capacity: 4800, - backup_type: HPXML::HeatPumpBackupTypeIntegrated, - backup_heating_fuel: HPXML::FuelTypeElectricity, - backup_heating_capacity: 3412, - backup_heating_efficiency_percent: 1.0, - fraction_heat_load_served: 0.1, - fraction_cool_load_served: 0.2, - heating_efficiency_hspf: 7.7, - cooling_efficiency_seer: 13, - heating_capacity_17F: 4800 * 0.6, - cooling_shr: 0.73, - compressor_type: HPXML::HVACCompressorTypeSingleStage) - hpxml.heat_pumps.add(id: "HeatPump#{hpxml.heat_pumps.size + 1}", - distribution_system_idref: hpxml.hvac_distributions[5].id, - heat_pump_type: HPXML::HVACTypeHeatPumpGroundToAir, - heat_pump_fuel: HPXML::FuelTypeElectricity, - heating_capacity: 4800, - cooling_capacity: 4800, - backup_type: HPXML::HeatPumpBackupTypeIntegrated, - backup_heating_fuel: HPXML::FuelTypeElectricity, - backup_heating_capacity: 3412, - backup_heating_efficiency_percent: 1.0, - fraction_heat_load_served: 0.1, - fraction_cool_load_served: 0.2, - heating_efficiency_cop: 3.6, - cooling_efficiency_eer: 16.6, - cooling_shr: 0.73, - pump_watts_per_ton: 30.0) - hpxml.heat_pumps.add(id: "HeatPump#{hpxml.heat_pumps.size + 1}", - heat_pump_type: HPXML::HVACTypeHeatPumpMiniSplit, - heat_pump_fuel: HPXML::FuelTypeElectricity, - heating_capacity: 4800, - cooling_capacity: 4800, - backup_type: HPXML::HeatPumpBackupTypeIntegrated, - backup_heating_fuel: HPXML::FuelTypeElectricity, - backup_heating_capacity: 3412, - backup_heating_efficiency_percent: 1.0, - fraction_heat_load_served: 0.1, - fraction_cool_load_served: 0.2, - heating_efficiency_hspf: 10, - cooling_efficiency_seer: 19, - heating_capacity_17F: 4800 * 0.6, - cooling_shr: 0.73, - primary_cooling_system: true, - primary_heating_system: true) - elsif ['base-mechvent-multiple.xml', - 'base-bldgtype-multifamily-shared-mechvent-multiple.xml'].include? hpxml_file - hpxml.hvac_distributions.add(id: "HVACDistribution#{hpxml.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeAir, - air_type: HPXML::AirTypeRegularVelocity) - hpxml.hvac_distributions[1].duct_leakage_measurements << hpxml.hvac_distributions[0].duct_leakage_measurements[0].dup - hpxml.hvac_distributions[1].duct_leakage_measurements << hpxml.hvac_distributions[0].duct_leakage_measurements[1].dup - hpxml.hvac_distributions[1].ducts << hpxml.hvac_distributions[0].ducts[0].dup - hpxml.hvac_distributions[1].ducts << hpxml.hvac_distributions[0].ducts[1].dup - hpxml.hvac_distributions[1].ducts[0].id = "Ducts#{hpxml.hvac_distributions[0].ducts.size + 1}" - hpxml.hvac_distributions[1].ducts[1].id = "Ducts#{hpxml.hvac_distributions[0].ducts.size + 2}" - hpxml.heating_systems[0].heating_capacity /= 2.0 - hpxml.heating_systems[0].fraction_heat_load_served /= 2.0 - hpxml.heating_systems[0].primary_system = false - hpxml.heating_systems << hpxml.heating_systems[0].dup - hpxml.heating_systems[1].id = "HeatingSystem#{hpxml.heating_systems.size}" - hpxml.heating_systems[1].distribution_system_idref = hpxml.hvac_distributions[1].id - hpxml.heating_systems[1].primary_system = true - hpxml.cooling_systems[0].fraction_cool_load_served /= 2.0 - hpxml.cooling_systems[0].cooling_capacity /= 2.0 - hpxml.cooling_systems[0].primary_system = false - hpxml.cooling_systems << hpxml.cooling_systems[0].dup - hpxml.cooling_systems[1].id = "CoolingSystem#{hpxml.cooling_systems.size}" - hpxml.cooling_systems[1].distribution_system_idref = hpxml.hvac_distributions[1].id - hpxml.cooling_systems[1].primary_system = true - elsif ['base-bldgtype-multifamily-adjacent-to-multiple.xml'].include? hpxml_file - hpxml.hvac_distributions[0].ducts[1].duct_location = HPXML::LocationOtherHousingUnit - hpxml.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml.hvac_distributions[0].ducts.size + 1}", - duct_type: HPXML::DuctTypeSupply, - duct_insulation_r_value: 4, - duct_location: HPXML::LocationRoofDeck, - duct_surface_area: 150) - hpxml.hvac_distributions[0].ducts.add(id: "Ducts#{hpxml.hvac_distributions[0].ducts.size + 1}", - duct_type: HPXML::DuctTypeReturn, - duct_insulation_r_value: 0, - duct_location: HPXML::LocationRoofDeck, - duct_surface_area: 50) - elsif ['base-appliances-dehumidifier-multiple.xml'].include? hpxml_file - hpxml.dehumidifiers[0].fraction_served = 0.5 - hpxml.dehumidifiers.add(id: 'Dehumidifier2', - type: HPXML::DehumidifierTypePortable, - capacity: 30, - energy_factor: 1.6, - rh_setpoint: 0.5, - fraction_served: 0.25, - location: HPXML::LocationLivingSpace) - end - if ['base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml', - 'base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml'].include? hpxml_file - # Switch backup boiler with hydronic distribution to backup furnace with air distribution - hpxml.heating_systems[0].heating_system_type = HPXML::HVACTypeFurnace - hpxml.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeAir - hpxml.hvac_distributions[0].air_type = HPXML::AirTypeRegularVelocity - hpxml.hvac_distributions[0].duct_leakage_measurements << hpxml.hvac_distributions[1].duct_leakage_measurements[0].dup - hpxml.hvac_distributions[0].duct_leakage_measurements << hpxml.hvac_distributions[1].duct_leakage_measurements[1].dup - hpxml.hvac_distributions[0].ducts << hpxml.hvac_distributions[1].ducts[0].dup - hpxml.hvac_distributions[0].ducts << hpxml.hvac_distributions[1].ducts[1].dup - hpxml.hvac_distributions[1].ducts[0].id = "Ducts#{hpxml.hvac_distributions[0].ducts.size + 1}" - hpxml.hvac_distributions[1].ducts[1].id = "Ducts#{hpxml.hvac_distributions[0].ducts.size + 2}" - end - if ['base-hvac-ducts-area-multipliers.xml'].include? hpxml_file - hpxml.hvac_distributions[0].ducts[0].duct_surface_area_multiplier = 0.5 - hpxml.hvac_distributions[0].ducts[1].duct_surface_area_multiplier = 1.5 - end - if ['base-hvac-autosize-sizing-controls.xml'].include? hpxml_file - hpxml.header.manualj_heating_design_temp = 0 - hpxml.header.manualj_cooling_design_temp = 100 - hpxml.header.manualj_heating_setpoint = 60 - hpxml.header.manualj_cooling_setpoint = 80 - hpxml.header.manualj_humidity_setpoint = 0.55 - hpxml.header.manualj_internal_loads_sensible = 4000 - hpxml.header.manualj_internal_loads_latent = 200 - hpxml.header.manualj_num_occupants = 5 - end - if hpxml_file.include? 'heating-capacity-17f' - hpxml.heat_pumps[0].heating_capacity_17F = hpxml.heat_pumps[0].heating_capacity * hpxml.heat_pumps[0].heating_capacity_retention_fraction - hpxml.heat_pumps[0].heating_capacity_retention_fraction = nil - hpxml.heat_pumps[0].heating_capacity_retention_temp = nil - end - - # ------------------ # - # HPXML WaterHeating # - # ------------------ # - - # Logic that can only be applied based on the file name - if ['base-schedules-simple.xml', - 'base-schedules-simple-vacancy.xml', - 'base-schedules-simple-vacancy-year-round.xml', - 'base-schedules-simple-power-outage.xml', - 'base-misc-loads-large-uncommon.xml', - 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file - hpxml.water_heating.water_fixtures_weekday_fractions = '0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026' - hpxml.water_heating.water_fixtures_weekend_fractions = '0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026' - hpxml.water_heating.water_fixtures_monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' - elsif ['base-bldgtype-multifamily-shared-water-heater-recirc.xml'].include? hpxml_file - hpxml.hot_water_distributions[0].has_shared_recirculation = true - hpxml.hot_water_distributions[0].shared_recirculation_number_of_units_served = 6 - hpxml.hot_water_distributions[0].shared_recirculation_pump_power = 220 - hpxml.hot_water_distributions[0].shared_recirculation_control_type = HPXML::DHWRecirControlTypeTimer - elsif ['base-bldgtype-multifamily-shared-laundry-room.xml', - 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml'].include? hpxml_file - hpxml.water_heating_systems.reverse_each do |water_heating_system| - water_heating_system.delete - end - hpxml.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml.water_heating_systems.size + 1}", - is_shared_system: true, - number_of_units_served: 6, - fuel_type: HPXML::FuelTypeNaturalGas, - water_heater_type: HPXML::WaterHeaterTypeStorage, - location: HPXML::LocationLivingSpace, - tank_volume: 120, - fraction_dhw_load_served: 1.0, - heating_capacity: 40000, - energy_factor: 0.59, - recovery_efficiency: 0.76, - temperature: 125.0) - if hpxml_file == 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml' - hpxml.water_heating_systems[0].fraction_dhw_load_served /= 2.0 - hpxml.water_heating_systems[0].tank_volume /= 2.0 - hpxml.water_heating_systems[0].number_of_units_served /= 2.0 - hpxml.water_heating_systems << hpxml.water_heating_systems[0].dup - hpxml.water_heating_systems[1].id = "WaterHeatingSystem#{hpxml.water_heating_systems.size}" - end - elsif ['base-dhw-tank-gas-uef-fhr.xml'].include? hpxml_file - hpxml.water_heating_systems[0].first_hour_rating = 56.0 - hpxml.water_heating_systems[0].usage_bin = nil - elsif ['base-dhw-tankless-electric-outside.xml'].include? hpxml_file - hpxml.water_heating_systems[0].performance_adjustment = 0.92 - elsif ['base-dhw-multiple.xml'].include? hpxml_file - hpxml.water_heating_systems[0].fraction_dhw_load_served = 0.2 - hpxml.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml.water_heating_systems.size + 1}", - fuel_type: HPXML::FuelTypeNaturalGas, - water_heater_type: HPXML::WaterHeaterTypeStorage, - location: HPXML::LocationLivingSpace, - tank_volume: 50, - fraction_dhw_load_served: 0.2, - heating_capacity: 40000, - energy_factor: 0.59, - recovery_efficiency: 0.76, - temperature: 125.0) - hpxml.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml.water_heating_systems.size + 1}", - fuel_type: HPXML::FuelTypeElectricity, - water_heater_type: HPXML::WaterHeaterTypeHeatPump, - location: HPXML::LocationLivingSpace, - tank_volume: 80, - fraction_dhw_load_served: 0.2, - energy_factor: 2.3, - temperature: 125.0) - hpxml.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml.water_heating_systems.size + 1}", - fuel_type: HPXML::FuelTypeElectricity, - water_heater_type: HPXML::WaterHeaterTypeTankless, - location: HPXML::LocationLivingSpace, - fraction_dhw_load_served: 0.2, - energy_factor: 0.99, - temperature: 125.0) - hpxml.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml.water_heating_systems.size + 1}", - fuel_type: HPXML::FuelTypeNaturalGas, - water_heater_type: HPXML::WaterHeaterTypeTankless, - location: HPXML::LocationLivingSpace, - fraction_dhw_load_served: 0.1, - energy_factor: 0.82, - temperature: 125.0) - hpxml.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml.water_heating_systems.size + 1}", - water_heater_type: HPXML::WaterHeaterTypeCombiStorage, - location: HPXML::LocationLivingSpace, - tank_volume: 50, - fraction_dhw_load_served: 0.1, - related_hvac_idref: 'HeatingSystem1', - temperature: 125.0) - hpxml.solar_thermal_systems.add(id: "SolarThermalSystem#{hpxml.solar_thermal_systems.size + 1}", - system_type: HPXML::SolarThermalSystemType, - water_heating_system_idref: nil, # Apply to all water heaters - solar_fraction: 0.65) - end - - # -------------------- # - # HPXML VentilationFan # - # -------------------- # - - # Logic that can only be applied based on the file name - if ['base-bldgtype-multifamily-shared-mechvent-multiple.xml'].include? hpxml_file - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeSupply, - is_shared_system: true, - in_unit_flow_rate: 100, - calculated_flow_rate: 1000, - hours_in_operation: 24, - fan_power: 300, - used_for_whole_building_ventilation: true, - fraction_recirculation: 0.0, - preheating_fuel: HPXML::FuelTypeNaturalGas, - preheating_efficiency_cop: 0.92, - preheating_fraction_load_served: 0.8, - precooling_fuel: HPXML::FuelTypeElectricity, - precooling_efficiency_cop: 4.0, - precooling_fraction_load_served: 0.8) - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeERV, - is_shared_system: true, - in_unit_flow_rate: 50, - delivered_ventilation: 500, - hours_in_operation: 24, - total_recovery_efficiency: 0.48, - sensible_recovery_efficiency: 0.72, - fan_power: 150, - used_for_whole_building_ventilation: true, - fraction_recirculation: 0.4, - preheating_fuel: HPXML::FuelTypeNaturalGas, - preheating_efficiency_cop: 0.87, - preheating_fraction_load_served: 1.0, - precooling_fuel: HPXML::FuelTypeElectricity, - precooling_efficiency_cop: 3.5, - precooling_fraction_load_served: 1.0) - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeHRV, - is_shared_system: true, - in_unit_flow_rate: 50, - rated_flow_rate: 500, - hours_in_operation: 24, - sensible_recovery_efficiency: 0.72, - fan_power: 150, - used_for_whole_building_ventilation: true, - fraction_recirculation: 0.3, - preheating_fuel: HPXML::FuelTypeElectricity, - preheating_efficiency_cop: 4.0, - precooling_fuel: HPXML::FuelTypeElectricity, - precooling_efficiency_cop: 4.5, - preheating_fraction_load_served: 1.0, - precooling_fraction_load_served: 1.0) - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeBalanced, - is_shared_system: true, - in_unit_flow_rate: 30, - tested_flow_rate: 300, - hours_in_operation: 24, - fan_power: 150, - used_for_whole_building_ventilation: true, - fraction_recirculation: 0.3, - preheating_fuel: HPXML::FuelTypeElectricity, - preheating_efficiency_cop: 3.5, - precooling_fuel: HPXML::FuelTypeElectricity, - precooling_efficiency_cop: 4.0, - preheating_fraction_load_served: 0.9, - precooling_fraction_load_served: 1.0) - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeExhaust, - is_shared_system: true, - in_unit_flow_rate: 70, - rated_flow_rate: 700, - hours_in_operation: 8, - fan_power: 300, - used_for_whole_building_ventilation: true, - fraction_recirculation: 0.0) - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeExhaust, - tested_flow_rate: 50, - hours_in_operation: 14, - fan_power: 10, - used_for_whole_building_ventilation: true) - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeCFIS, - tested_flow_rate: 160, - hours_in_operation: 8, - fan_power: 150, - used_for_whole_building_ventilation: true, - cfis_addtl_runtime_operating_mode: HPXML::CFISModeAirHandler, - distribution_system_idref: 'HVACDistribution1') - elsif ['base-mechvent-multiple.xml'].include? hpxml_file - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - rated_flow_rate: 2000, - fan_power: 150, - used_for_seasonal_cooling_load_reduction: true) - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeSupply, - tested_flow_rate: 12.5, - hours_in_operation: 14, - fan_power: 2.5, - used_for_whole_building_ventilation: true) - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeExhaust, - tested_flow_rate: 30.0, - fan_power: 7.5, - used_for_whole_building_ventilation: true) - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeBalanced, - tested_flow_rate: 27.5, - hours_in_operation: 24, - fan_power: 15, - used_for_whole_building_ventilation: true) - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeERV, - tested_flow_rate: 12.5, - hours_in_operation: 24, - total_recovery_efficiency: 0.48, - sensible_recovery_efficiency: 0.72, - fan_power: 6.25, - used_for_whole_building_ventilation: true) - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeHRV, - tested_flow_rate: 15, - hours_in_operation: 24, - sensible_recovery_efficiency: 0.72, - fan_power: 7.5, - used_for_whole_building_ventilation: true) - hpxml.ventilation_fans.reverse_each do |vent_fan| - vent_fan.fan_power /= 2.0 - vent_fan.rated_flow_rate /= 2.0 unless vent_fan.rated_flow_rate.nil? - vent_fan.tested_flow_rate /= 2.0 unless vent_fan.tested_flow_rate.nil? - hpxml.ventilation_fans << vent_fan.dup - hpxml.ventilation_fans[-1].id = "VentilationFan#{hpxml.ventilation_fans.size}" - hpxml.ventilation_fans[-1].start_hour = vent_fan.start_hour - 1 unless vent_fan.start_hour.nil? - hpxml.ventilation_fans[-1].hours_in_operation = vent_fan.hours_in_operation - 1 unless vent_fan.hours_in_operation.nil? - end - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeCFIS, - tested_flow_rate: 40, - hours_in_operation: 8, - fan_power: 37.5, - used_for_whole_building_ventilation: true, - cfis_addtl_runtime_operating_mode: HPXML::CFISModeAirHandler, - distribution_system_idref: 'HVACDistribution1') - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeCFIS, - tested_flow_rate: 42.5, - hours_in_operation: 8, - fan_power: 37.5, - used_for_whole_building_ventilation: true, - cfis_addtl_runtime_operating_mode: HPXML::CFISModeSupplementalFan, - cfis_supplemental_fan_idref: hpxml.ventilation_fans.find { |f| f.fan_type == HPXML::MechVentTypeExhaust }.id, - distribution_system_idref: 'HVACDistribution2') - # Test ventilation system w/ zero airflow and hours - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeHRV, - tested_flow_rate: 0, - hours_in_operation: 24, - sensible_recovery_efficiency: 0.72, - fan_power: 7.5, - used_for_whole_building_ventilation: true) - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeHRV, - tested_flow_rate: 15, - hours_in_operation: 0, - sensible_recovery_efficiency: 0.72, - fan_power: 7.5, - used_for_whole_building_ventilation: true) - elsif ['base-mechvent-cfis-airflow-fraction-zero.xml'].include? hpxml_file - hpxml.ventilation_fans[0].cfis_vent_mode_airflow_fraction = 0.0 - elsif ['base-mechvent-cfis-supplemental-fan-exhaust.xml', - 'base-mechvent-cfis-supplemental-fan-supply.xml'].include? hpxml_file - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - tested_flow_rate: 120, - fan_power: 30, - used_for_whole_building_ventilation: true) - if hpxml_file == 'base-mechvent-cfis-supplemental-fan-exhaust.xml' - hpxml.ventilation_fans[-1].fan_type = HPXML::MechVentTypeExhaust - else - hpxml.ventilation_fans[-1].fan_type = HPXML::MechVentTypeSupply - end - hpxml.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplementalFan - hpxml.ventilation_fans[0].cfis_supplemental_fan_idref = hpxml.ventilation_fans[1].id - end - - # ---------------- # - # HPXML Generation # - # ---------------- # - - # Logic that can only be applied based on the file name - if ['base-misc-defaults.xml'].include? hpxml_file - hpxml.pv_systems[0].year_modules_manufactured = 2015 - elsif ['base-misc-generators.xml', - 'base-misc-generators-battery.xml', - 'base-misc-generators-battery-scheduled.xml', - 'base-pv-generators.xml', - 'base-pv-generators-battery.xml', - 'base-pv-generators-battery-scheduled.xml'].include? hpxml_file - hpxml.generators.add(id: "Generator#{hpxml.generators.size + 1}", - fuel_type: HPXML::FuelTypeNaturalGas, - annual_consumption_kbtu: 8500, - annual_output_kwh: 1200) - hpxml.generators.add(id: "Generator#{hpxml.generators.size + 1}", - fuel_type: HPXML::FuelTypeOil, - annual_consumption_kbtu: 8500, - annual_output_kwh: 1200) - elsif ['base-bldgtype-multifamily-shared-generator.xml'].include? hpxml_file - hpxml.generators.add(id: "Generator#{hpxml.generators.size + 1}", - is_shared_system: true, - fuel_type: HPXML::FuelTypePropane, - annual_consumption_kbtu: 85000, - annual_output_kwh: 12000, - number_of_bedrooms_served: 18) - end - - # ------------- # - # HPXML Battery # - # ------------- # - - if ['base-pv-battery-lifetime-model.xml'].include? hpxml_file - hpxml.batteries[0].lifetime_model = HPXML::BatteryLifetimeModelKandlerSmith - elsif ['base-pv-battery-ah.xml'].include? hpxml_file - default_values = Battery.get_battery_default_values() - hpxml.batteries[0].nominal_capacity_ah = Battery.get_Ah_from_kWh(hpxml.batteries[0].nominal_capacity_kwh, - default_values[:nominal_voltage]) - hpxml.batteries[0].usable_capacity_ah = hpxml.batteries[0].nominal_capacity_ah * default_values[:usable_fraction] - hpxml.batteries[0].nominal_capacity_kwh = nil - hpxml.batteries[0].usable_capacity_kwh = nil - end - - # ---------------- # - # HPXML Appliances # - # ---------------- # + hpxml_bldg.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplementalFan + hpxml_bldg.ventilation_fans[0].cfis_supplemental_fan_idref = hpxml_bldg.ventilation_fans[1].id + end + + # ---------------- # + # HPXML Generation # + # ---------------- # + + # Logic that can only be applied based on the file name + if ['base-misc-defaults.xml'].include? hpxml_file + hpxml_bldg.pv_systems[0].year_modules_manufactured = 2015 + elsif ['base-misc-generators.xml', + 'base-misc-generators-battery.xml', + 'base-misc-generators-battery-scheduled.xml', + 'base-pv-generators.xml', + 'base-pv-generators-battery.xml', + 'base-pv-generators-battery-scheduled.xml'].include? hpxml_file + hpxml_bldg.generators.add(id: "Generator#{hpxml_bldg.generators.size + 1}", + fuel_type: HPXML::FuelTypeNaturalGas, + annual_consumption_kbtu: 8500, + annual_output_kwh: 1200) + hpxml_bldg.generators.add(id: "Generator#{hpxml_bldg.generators.size + 1}", + fuel_type: HPXML::FuelTypeOil, + annual_consumption_kbtu: 8500, + annual_output_kwh: 1200) + elsif ['base-bldgtype-mf-unit-shared-generator.xml'].include? hpxml_file + hpxml_bldg.generators.add(id: "Generator#{hpxml_bldg.generators.size + 1}", + is_shared_system: true, + fuel_type: HPXML::FuelTypePropane, + annual_consumption_kbtu: 85000, + annual_output_kwh: 12000, + number_of_bedrooms_served: 18) + end + + # ------------- # + # HPXML Battery # + # ------------- # + + if ['base-pv-battery-lifetime-model.xml'].include? hpxml_file + hpxml_bldg.batteries[0].lifetime_model = HPXML::BatteryLifetimeModelKandlerSmith + elsif ['base-pv-battery-ah.xml'].include? hpxml_file + default_values = Battery.get_battery_default_values() + hpxml_bldg.batteries[0].nominal_capacity_ah = Battery.get_Ah_from_kWh(hpxml_bldg.batteries[0].nominal_capacity_kwh, + default_values[:nominal_voltage]) + hpxml_bldg.batteries[0].usable_capacity_ah = hpxml_bldg.batteries[0].nominal_capacity_ah * default_values[:usable_fraction] + hpxml_bldg.batteries[0].nominal_capacity_kwh = nil + hpxml_bldg.batteries[0].usable_capacity_kwh = nil + end + + # ---------------- # + # HPXML Appliances # + # ---------------- # + + # Logic that can only be applied based on the file name + if ['base-schedules-simple.xml', + 'base-schedules-simple-vacancy.xml', + 'base-schedules-simple-power-outage.xml', + 'base-misc-loads-large-uncommon.xml', + 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file + hpxml_bldg.clothes_washers[0].weekday_fractions = '0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017' + hpxml_bldg.clothes_washers[0].weekend_fractions = '0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017' + hpxml_bldg.clothes_washers[0].monthly_multipliers = '1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011' + hpxml_bldg.clothes_dryers[0].weekday_fractions = '0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024' + hpxml_bldg.clothes_dryers[0].weekend_fractions = '0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024' + hpxml_bldg.clothes_dryers[0].monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' + hpxml_bldg.dishwashers[0].weekday_fractions = '0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031' + hpxml_bldg.dishwashers[0].weekend_fractions = '0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031' + hpxml_bldg.dishwashers[0].monthly_multipliers = '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097' + hpxml_bldg.refrigerators[0].weekday_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' + hpxml_bldg.refrigerators[0].weekend_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' + hpxml_bldg.refrigerators[0].monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837' + hpxml_bldg.cooking_ranges[0].weekday_fractions = '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011' + hpxml_bldg.cooking_ranges[0].weekend_fractions = '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011' + hpxml_bldg.cooking_ranges[0].monthly_multipliers = '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097' + end + if ['base-misc-loads-large-uncommon.xml', + 'base-misc-loads-large-uncommon2.xml', + 'base-misc-usage-multiplier.xml'].include? hpxml_file + if hpxml_file != 'base-misc-usage-multiplier.xml' + hpxml_bldg.refrigerators.add(id: "Refrigerator#{hpxml_bldg.refrigerators.size + 1}", + rated_annual_kwh: 800, + primary_indicator: false) + end + hpxml_bldg.freezers.add(id: "Freezer#{hpxml_bldg.freezers.size + 1}", + location: HPXML::LocationConditionedSpace, + rated_annual_kwh: 400) + if hpxml_file == 'base-misc-usage-multiplier.xml' + hpxml_bldg.freezers[-1].usage_multiplier = 0.9 + end + (hpxml_bldg.refrigerators + hpxml_bldg.freezers).each do |appliance| + next if appliance.is_a?(HPXML::Refrigerator) && hpxml_file == 'base-misc-usage-multiplier.xml' - # Logic that can only be applied based on the file name - if ['base-schedules-simple.xml', - 'base-schedules-simple-vacancy.xml', - 'base-schedules-simple-vacancy-year-round.xml', - 'base-schedules-simple-power-outage.xml', - 'base-misc-loads-large-uncommon.xml', - 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file - hpxml.clothes_washers[0].weekday_fractions = '0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017' - hpxml.clothes_washers[0].weekend_fractions = '0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017' - hpxml.clothes_washers[0].monthly_multipliers = '1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011' - hpxml.clothes_dryers[0].weekday_fractions = '0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024' - hpxml.clothes_dryers[0].weekend_fractions = '0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024' - hpxml.clothes_dryers[0].monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' - hpxml.dishwashers[0].weekday_fractions = '0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031' - hpxml.dishwashers[0].weekend_fractions = '0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031' - hpxml.dishwashers[0].monthly_multipliers = '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097' - hpxml.refrigerators[0].weekday_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' - hpxml.refrigerators[0].weekend_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' - hpxml.refrigerators[0].monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837' - hpxml.cooking_ranges[0].weekday_fractions = '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011' - hpxml.cooking_ranges[0].weekend_fractions = '0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011' - hpxml.cooking_ranges[0].monthly_multipliers = '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097' - end - if ['base-misc-loads-large-uncommon.xml', - 'base-misc-loads-large-uncommon2.xml', - 'base-misc-usage-multiplier.xml'].include? hpxml_file - if hpxml_file != 'base-misc-usage-multiplier.xml' - hpxml.refrigerators.add(id: "Refrigerator#{hpxml.refrigerators.size + 1}", - rated_annual_kwh: 800, - primary_indicator: false) - end - hpxml.freezers.add(id: "Freezer#{hpxml.freezers.size + 1}", - location: HPXML::LocationLivingSpace, - rated_annual_kwh: 400) - if hpxml_file == 'base-misc-usage-multiplier.xml' - hpxml.freezers[-1].usage_multiplier = 0.9 - end - (hpxml.refrigerators + hpxml.freezers).each do |appliance| - next if appliance.is_a?(HPXML::Refrigerator) && hpxml_file == 'base-misc-usage-multiplier.xml' + appliance.weekday_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' + appliance.weekend_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' + appliance.monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837' + end + hpxml_bldg.pools[0].pump_weekday_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' + hpxml_bldg.pools[0].pump_weekend_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' + hpxml_bldg.pools[0].pump_monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' + hpxml_bldg.pools[0].heater_weekday_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' + hpxml_bldg.pools[0].heater_weekend_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' + hpxml_bldg.pools[0].heater_monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' + hpxml_bldg.permanent_spas[0].pump_weekday_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' + hpxml_bldg.permanent_spas[0].pump_weekend_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' + hpxml_bldg.permanent_spas[0].pump_monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837' + hpxml_bldg.permanent_spas[0].heater_weekday_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' + hpxml_bldg.permanent_spas[0].heater_weekend_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' + hpxml_bldg.permanent_spas[0].heater_monthly_multipliers = '0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921' + end + if ['base-bldgtype-mf-unit-shared-laundry-room.xml', + 'base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml'].include? hpxml_file + hpxml_bldg.clothes_washers[0].is_shared_appliance = true + hpxml_bldg.clothes_washers[0].location = HPXML::LocationOtherHeatedSpace + hpxml_bldg.clothes_dryers[0].location = HPXML::LocationOtherHeatedSpace + hpxml_bldg.clothes_dryers[0].is_shared_appliance = true + hpxml_bldg.dishwashers[0].is_shared_appliance = true + hpxml_bldg.dishwashers[0].location = HPXML::LocationOtherHeatedSpace + if hpxml_file == 'base-bldgtype-mf-unit-shared-laundry-room.xml' + hpxml_bldg.clothes_washers[0].water_heating_system_idref = hpxml_bldg.water_heating_systems[0].id + hpxml_bldg.dishwashers[0].water_heating_system_idref = hpxml_bldg.water_heating_systems[0].id + elsif hpxml_file == 'base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml' + hpxml_bldg.clothes_washers[0].hot_water_distribution_idref = hpxml_bldg.hot_water_distributions[0].id + hpxml_bldg.dishwashers[0].hot_water_distribution_idref = hpxml_bldg.hot_water_distributions[0].id + end + elsif ['base-misc-defaults.xml'].include? hpxml_file + hpxml_bldg.refrigerators[0].primary_indicator = nil + end + + # -------------- # + # HPXML Lighting # + # -------------- # + + # Logic that can only be applied based on the file name + if ['base-lighting-ceiling-fans.xml'].include? hpxml_file + hpxml_bldg.ceiling_fans[0].weekday_fractions = '0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057' + hpxml_bldg.ceiling_fans[0].weekend_fractions = '0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057' + hpxml_bldg.ceiling_fans[0].monthly_multipliers = '0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0' + elsif ['base-lighting-holiday.xml'].include? hpxml_file + hpxml_bldg.lighting.holiday_weekday_fractions = '0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019' + hpxml_bldg.lighting.holiday_weekend_fractions = '0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019' + elsif ['base-schedules-simple.xml', + 'base-schedules-simple-vacancy.xml', + 'base-schedules-simple-power-outage.xml', + 'base-misc-loads-large-uncommon.xml', + 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file + hpxml_bldg.lighting.interior_weekday_fractions = '0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249' + hpxml_bldg.lighting.interior_weekend_fractions = '0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249' + hpxml_bldg.lighting.interior_monthly_multipliers = '1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905' + hpxml_bldg.lighting.exterior_weekday_fractions = '0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063' + hpxml_bldg.lighting.exterior_weekend_fractions = '0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059' + hpxml_bldg.lighting.exterior_monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248' + hpxml_bldg.lighting.garage_weekday_fractions = '0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063' + hpxml_bldg.lighting.garage_weekend_fractions = '0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059' + hpxml_bldg.lighting.garage_monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248' + elsif ['base-lighting-kwh-per-year.xml'].include? hpxml_file + ltg_kwhs_per_year = { HPXML::LocationInterior => 1500, + HPXML::LocationExterior => 150, + HPXML::LocationGarage => 0 } + hpxml_bldg.lighting_groups.clear + ltg_kwhs_per_year.each do |location, kwh_per_year| + hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}", + location: location, + kwh_per_year: kwh_per_year) + end + elsif ['base-lighting-mixed.xml'].include? hpxml_file + hpxml_bldg.lighting_groups.reverse_each do |lg| + next unless lg.location == HPXML::LocationExterior - appliance.weekday_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' - appliance.weekend_fractions = '0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041' - appliance.monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837' - end - hpxml.pools[0].pump_weekday_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' - hpxml.pools[0].pump_weekend_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' - hpxml.pools[0].pump_monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' - hpxml.pools[0].heater_weekday_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' - hpxml.pools[0].heater_weekend_fractions = '0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003' - hpxml.pools[0].heater_monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' - hpxml.hot_tubs[0].pump_weekday_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' - hpxml.hot_tubs[0].pump_weekend_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' - hpxml.hot_tubs[0].pump_monthly_multipliers = '0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837' - hpxml.hot_tubs[0].heater_weekday_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' - hpxml.hot_tubs[0].heater_weekend_fractions = '0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024' - hpxml.hot_tubs[0].heater_monthly_multipliers = '0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921' - end - if ['base-bldgtype-multifamily-shared-laundry-room.xml', - 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml'].include? hpxml_file - hpxml.clothes_washers[0].is_shared_appliance = true - hpxml.clothes_washers[0].location = HPXML::LocationOtherHeatedSpace - hpxml.clothes_dryers[0].location = HPXML::LocationOtherHeatedSpace - hpxml.clothes_dryers[0].is_shared_appliance = true - hpxml.dishwashers[0].is_shared_appliance = true - hpxml.dishwashers[0].location = HPXML::LocationOtherHeatedSpace - if hpxml_file == 'base-bldgtype-multifamily-shared-laundry-room.xml' - hpxml.clothes_washers[0].water_heating_system_idref = hpxml.water_heating_systems[0].id - hpxml.dishwashers[0].water_heating_system_idref = hpxml.water_heating_systems[0].id - elsif hpxml_file == 'base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml' - hpxml.clothes_washers[0].hot_water_distribution_idref = hpxml.hot_water_distributions[0].id - hpxml.dishwashers[0].hot_water_distribution_idref = hpxml.hot_water_distributions[0].id + lg.delete + end + hpxml_bldg.lighting_groups.each_with_index do |lg, i| + lg.id = "LightingGroup#{i + 1}" + end + hpxml_bldg.lighting_groups.add(id: "LightingGroup#{hpxml_bldg.lighting_groups.size + 1}", + location: HPXML::LocationExterior, + kwh_per_year: 150) + elsif ['base-foundation-basement-garage.xml'].include? hpxml_file + int_lighting_groups = hpxml_bldg.lighting_groups.select { |lg| lg.location == HPXML::LocationInterior } + int_lighting_groups.each do |lg| + hpxml_bldg.lighting_groups << lg.dup + hpxml_bldg.lighting_groups[-1].location = HPXML::LocationGarage + hpxml_bldg.lighting_groups[-1].id = "LightingGroup#{hpxml_bldg.lighting_groups.size}" + end end - elsif ['base-misc-defaults.xml'].include? hpxml_file - hpxml.refrigerators[0].primary_indicator = nil - end - # -------------- # - # HPXML Lighting # - # -------------- # + # --------------- # + # HPXML MiscLoads # + # --------------- # - # Logic that can only be applied based on the file name - if ['base-lighting-ceiling-fans.xml'].include? hpxml_file - hpxml.ceiling_fans[0].weekday_fractions = '0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057' - hpxml.ceiling_fans[0].weekend_fractions = '0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057' - hpxml.ceiling_fans[0].monthly_multipliers = '0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0' - elsif ['base-lighting-holiday.xml'].include? hpxml_file - hpxml.lighting.holiday_weekday_fractions = '0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019' - hpxml.lighting.holiday_weekend_fractions = '0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019' - elsif ['base-schedules-simple.xml', - 'base-schedules-simple-vacancy.xml', - 'base-schedules-simple-vacancy-year-round.xml', - 'base-schedules-simple-power-outage.xml', - 'base-misc-loads-large-uncommon.xml', - 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file - hpxml.lighting.interior_weekday_fractions = '0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249' - hpxml.lighting.interior_weekend_fractions = '0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249' - hpxml.lighting.interior_monthly_multipliers = '1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905' - hpxml.lighting.exterior_weekday_fractions = '0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063' - hpxml.lighting.exterior_weekend_fractions = '0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059' - hpxml.lighting.exterior_monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248' - hpxml.lighting.garage_weekday_fractions = '0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063' - hpxml.lighting.garage_weekend_fractions = '0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059' - hpxml.lighting.garage_monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248' - elsif ['base-lighting-kwh-per-year.xml'].include? hpxml_file - ltg_kwhs_per_year = { HPXML::LocationInterior => 1500, - HPXML::LocationExterior => 150, - HPXML::LocationGarage => 0 } - hpxml.lighting_groups.clear - ltg_kwhs_per_year.each do |location, kwh_per_year| - hpxml.lighting_groups.add(id: "LightingGroup#{hpxml.lighting_groups.size + 1}", - location: location, - kwh_per_year: kwh_per_year) + # Logic that can only be applied based on the file name + if ['base-schedules-simple.xml', + 'base-schedules-simple-vacancy.xml', + 'base-schedules-simple-power-outage.xml', + 'base-misc-loads-large-uncommon.xml', + 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file + hpxml_bldg.plug_loads[0].weekday_fractions = '0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07' + hpxml_bldg.plug_loads[0].weekend_fractions = '0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07' + hpxml_bldg.plug_loads[0].monthly_multipliers = '1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137' + hpxml_bldg.plug_loads[1].weekday_fractions = '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036' + hpxml_bldg.plug_loads[1].weekend_fractions = '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036' + hpxml_bldg.plug_loads[1].monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248' end - elsif ['base-lighting-mixed.xml'].include? hpxml_file - hpxml.lighting_groups.reverse_each do |lg| - next unless lg.location == HPXML::LocationExterior + next unless ['base-misc-loads-large-uncommon.xml', + 'base-misc-loads-large-uncommon2.xml', + 'base-misc-usage-multiplier.xml'].include? hpxml_file - lg.delete - end - hpxml.lighting_groups.each_with_index do |lg, i| - lg.id = "LightingGroup#{i + 1}" - end - hpxml.lighting_groups.add(id: "LightingGroup#{hpxml.lighting_groups.size + 1}", - location: HPXML::LocationExterior, - kwh_per_year: 150) - elsif ['base-foundation-basement-garage.xml'].include? hpxml_file - int_lighting_groups = hpxml.lighting_groups.select { |lg| lg.location == HPXML::LocationInterior } - int_lighting_groups.each do |lg| - hpxml.lighting_groups << lg.dup - hpxml.lighting_groups[-1].location = HPXML::LocationGarage - hpxml.lighting_groups[-1].id = "LightingGroup#{hpxml.lighting_groups.size}" - end - end - - # --------------- # - # HPXML MiscLoads # - # --------------- # - - # Logic that can only be applied based on the file name - if ['base-schedules-simple.xml', - 'base-schedules-simple-vacancy.xml', - 'base-schedules-simple-vacancy-year-round.xml', - 'base-schedules-simple-power-outage.xml', - 'base-misc-loads-large-uncommon.xml', - 'base-misc-loads-large-uncommon2.xml'].include? hpxml_file - hpxml.plug_loads[0].weekday_fractions = '0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07' - hpxml.plug_loads[0].weekend_fractions = '0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07' - hpxml.plug_loads[0].monthly_multipliers = '1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137' - hpxml.plug_loads[1].weekday_fractions = '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036' - hpxml.plug_loads[1].weekend_fractions = '0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036' - hpxml.plug_loads[1].monthly_multipliers = '1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248' - end - if ['base-misc-loads-large-uncommon.xml', - 'base-misc-loads-large-uncommon2.xml', - 'base-misc-usage-multiplier.xml'].include? hpxml_file if hpxml_file != 'base-misc-usage-multiplier.xml' - hpxml.plug_loads[2].weekday_fractions = '0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042' - hpxml.plug_loads[2].weekend_fractions = '0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042' - hpxml.plug_loads[2].monthly_multipliers = '1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1' - hpxml.plug_loads[3].weekday_fractions = '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065' - hpxml.plug_loads[3].weekend_fractions = '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065' - hpxml.plug_loads[3].monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' - end - hpxml.fuel_loads[0].weekday_fractions = '0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007' - hpxml.fuel_loads[0].weekend_fractions = '0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007' - hpxml.fuel_loads[0].monthly_multipliers = '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097' - hpxml.fuel_loads[1].weekday_fractions = '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065' - hpxml.fuel_loads[1].weekend_fractions = '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065' - hpxml.fuel_loads[1].monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' - hpxml.fuel_loads[2].weekday_fractions = '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065' - hpxml.fuel_loads[2].weekend_fractions = '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065' - hpxml.fuel_loads[2].monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' + hpxml_bldg.plug_loads[2].weekday_fractions = '0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042' + hpxml_bldg.plug_loads[2].weekend_fractions = '0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042' + hpxml_bldg.plug_loads[2].monthly_multipliers = '1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1' + hpxml_bldg.plug_loads[3].weekday_fractions = '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065' + hpxml_bldg.plug_loads[3].weekend_fractions = '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065' + hpxml_bldg.plug_loads[3].monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' + end + hpxml_bldg.fuel_loads[0].weekday_fractions = '0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007' + hpxml_bldg.fuel_loads[0].weekend_fractions = '0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007' + hpxml_bldg.fuel_loads[0].monthly_multipliers = '1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097' + hpxml_bldg.fuel_loads[1].weekday_fractions = '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065' + hpxml_bldg.fuel_loads[1].weekend_fractions = '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065' + hpxml_bldg.fuel_loads[1].monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' + hpxml_bldg.fuel_loads[2].weekday_fractions = '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065' + hpxml_bldg.fuel_loads[2].weekend_fractions = '0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065' + hpxml_bldg.fuel_loads[2].monthly_multipliers = '1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154' end end @@ -2273,47 +2559,11 @@ def display_usage(command_list) # Update measures XMLs puts 'Updating measure.xmls...' - require 'oga' Dir['**/measure.xml'].each do |measure_xml| - for n_attempt in 1..5 # For some reason CLI randomly generates errors, so try multiple times - measure_dir = File.dirname(measure_xml) - command = "#{OpenStudio.getOpenStudioCLI} measure -u '#{measure_dir}'" - system(command, [:out, :err] => File::NULL) - - # Check for error - xml_doc = XMLHelper.parse_file(measure_xml) - err_val = XMLHelper.get_value(xml_doc, '/measure/error', :string) - if err_val.nil? - err_val = XMLHelper.get_value(xml_doc, '/error', :string) - end - if err_val.nil? - break # Successfully updated - else - if n_attempt == 5 - fail "#{measure_xml}: #{err_val}" # Error generated all 5 times, fail - else - # Remove error from measure XML, try again - orig_lines = File.readlines(measure_xml) - new_lines = [] - inside_error = false - orig_lines.each do |l| - if l.include? '' - inside_error = true - end - if l.include? '' - inside_error = false - next - end - next if inside_error - - new_lines << l - end - File.open(measure_xml, 'w') do |file| - file.puts new_lines - end - end - end - end + measure_dir = File.dirname(measure_xml) + # Using classic to work around https://github.com/NREL/OpenStudio/issues/5045 + command = "#{OpenStudio.getOpenStudioCLI} classic measure -u '#{measure_dir}'" + system(command, [:out, :err] => File::NULL) end puts 'Done.' @@ -2352,21 +2602,21 @@ def display_usage(command_list) files = ['Changelog.md', 'LICENSE.md', - 'BuildResidentialHPXML/measure.*', + 'BuildResidentialHPXML/*.*', 'BuildResidentialHPXML/resources/**/*.*', - 'BuildResidentialScheduleFile/measure.*', + 'BuildResidentialScheduleFile/*.*', 'BuildResidentialScheduleFile/resources/**/*.*', - 'HPXMLtoOpenStudio/measure.*', + 'HPXMLtoOpenStudio/*.*', 'HPXMLtoOpenStudio/resources/**/*.*', - 'ReportSimulationOutput/measure.*', + 'ReportSimulationOutput/*.*', 'ReportSimulationOutput/resources/**/*.*', - 'ReportUtilityBills/measure.*', + 'ReportUtilityBills/*.*', 'ReportUtilityBills/resources/**/*.*', 'weather/*.*', 'workflow/*.*', 'workflow/real_homes/*.xml', 'workflow/sample_files/*.xml', - 'workflow/tests/*test*.rb', + 'workflow/tests/*.rb', 'workflow/tests/**/*.xml', 'workflow/tests/**/*.csv', 'documentation/index.html', diff --git a/example_files/resources/hpxml-measures/workflow/hpxml_inputs.json b/example_files/resources/hpxml-measures/workflow/hpxml_inputs.json index 95228734..0aff0717 100644 --- a/example_files/resources/hpxml-measures/workflow/hpxml_inputs.json +++ b/example_files/resources/hpxml-measures/workflow/hpxml_inputs.json @@ -205,8 +205,8 @@ "misc_fuel_loads_fireplace_fuel_type": "natural gas", "pool_present": false, "pool_heater_type": "none", - "hot_tub_present": false, - "hot_tub_heater_type": "none", + "permanent_spa_present": false, + "permanent_spa_heater_type": "none", "combine_like_surfaces": false }, "tests/ASHRAE_Standard_140/L110AC.xml": { @@ -507,7 +507,7 @@ "whole_house_fan_present": false, "water_heater_type": "storage water heater", "water_heater_fuel_type": "electricity", - "water_heater_location": "living space", + "water_heater_location": "conditioned space", "water_heater_tank_volume": 40, "water_heater_efficiency_type": "EnergyFactor", "water_heater_efficiency": 0.95, @@ -557,7 +557,7 @@ "dehumidifier_rh_setpoint": 0, "dehumidifier_fraction_dehumidification_load_served": 0, "clothes_washer_present": true, - "clothes_washer_location": "living space", + "clothes_washer_location": "conditioned space", "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor", "clothes_washer_efficiency": 1.21, "clothes_washer_rated_annual_kwh": 380, @@ -567,13 +567,13 @@ "clothes_washer_label_usage": 6, "clothes_washer_capacity": 3.2, "clothes_dryer_present": true, - "clothes_dryer_location": "living space", + "clothes_dryer_location": "conditioned space", "clothes_dryer_fuel_type": "electricity", "clothes_dryer_efficiency_type": "CombinedEnergyFactor", "clothes_dryer_efficiency": 3.73, "clothes_dryer_vented_flow_rate": 150, "dishwasher_present": true, - "dishwasher_location": "living space", + "dishwasher_location": "conditioned space", "dishwasher_efficiency_type": "RatedAnnualkWh", "dishwasher_efficiency": 307, "dishwasher_label_electric_rate": 0.12, @@ -582,12 +582,12 @@ "dishwasher_label_usage": 4, "dishwasher_place_setting_capacity": 12, "refrigerator_present": true, - "refrigerator_location": "living space", + "refrigerator_location": "conditioned space", "refrigerator_rated_annual_kwh": 650, "extra_refrigerator_present": false, "freezer_present": false, "cooking_range_oven_present": true, - "cooking_range_oven_location": "living space", + "cooking_range_oven_location": "conditioned space", "cooking_range_oven_fuel_type": "electricity", "cooking_range_oven_is_induction": false, "cooking_range_oven_is_convection": false, @@ -607,8 +607,8 @@ "misc_fuel_loads_fireplace_fuel_type": "natural gas", "pool_present": false, "pool_heater_type": "none", - "hot_tub_present": false, - "hot_tub_heater_type": "none", + "permanent_spa_present": false, + "permanent_spa_heater_type": "none", "utility_bill_scenario_names": "Bills", "combine_like_surfaces": true }, @@ -649,25 +649,11 @@ "clothes_dryer_fuel_type": "fuel oil", "cooking_range_oven_fuel_type": "fuel oil" }, - "sample_files/base-appliances-oil-location-miami-fl.xml": { - "parent_hpxml": "sample_files/base-appliances-oil.xml", - "site_iecc_zone": "1A", - "site_state_code": "FL", - "weather_station_epw_filepath": "USA_FL_Miami.Intl.AP.722020_TMY3.epw", - "heating_system_heating_capacity": 12000 - }, "sample_files/base-appliances-propane.xml": { "parent_hpxml": "sample_files/base-appliances-gas.xml", "clothes_dryer_fuel_type": "propane", "cooking_range_oven_fuel_type": "propane" }, - "sample_files/base-appliances-propane-location-portland-or.xml": { - "parent_hpxml": "sample_files/base-appliances-propane.xml", - "site_iecc_zone": "4C", - "site_state_code": "OR", - "weather_station_epw_filepath": "USA_OR_Portland.Intl.AP.726980_TMY3.epw", - "heating_system_heating_capacity": 24000 - }, "sample_files/base-appliances-wood.xml": { "parent_hpxml": "sample_files/base-appliances-gas.xml", "clothes_dryer_fuel_type": "wood", @@ -703,18 +689,18 @@ "window_aspect_ratio": 2, "ducts_supply_leakage_to_outside_value": 0, "ducts_return_leakage_to_outside_value": 0, - "ducts_supply_location": "living space", - "ducts_return_location": "living space" + "ducts_supply_location": "conditioned space", + "ducts_return_location": "conditioned space" }, "sample_files/base-atticroof-conditioned.xml": { "parent_hpxml": "sample_files/base.xml", "geometry_unit_num_floors_above_grade": 2, "geometry_unit_cfa": 3600, "geometry_attic_type": "ConditionedAttic", - "ducts_supply_leakage_to_outside_value": 50, - "ducts_return_leakage_to_outside_value": 100, - "ducts_supply_location": "living space", - "ducts_return_location": "living space", + "ducts_supply_leakage_to_outside_value": 5, + "ducts_return_leakage_to_outside_value": 10, + "ducts_supply_location": "conditioned space", + "ducts_return_location": "conditioned space", "water_heater_location": "basement - conditioned", "clothes_washer_location": "basement - conditioned", "clothes_dryer_location": "basement - conditioned", @@ -762,7 +748,7 @@ "parent_hpxml": "sample_files/base-battery.xml", "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/battery.csv" }, - "sample_files/base-bldgtype-attached.xml": { + "sample_files/base-bldgtype-sfa-unit.xml": { "parent_hpxml": "sample_files/base.xml", "geometry_unit_type": "single-family attached", "geometry_unit_right_wall_is_adiabatic": true, @@ -781,8 +767,8 @@ "heating_system_heating_capacity": 24000, "misc_plug_loads_other_annual_kwh": 1638 }, - "sample_files/base-bldgtype-attached-2stories.xml": { - "parent_hpxml": "sample_files/base-bldgtype-attached.xml", + "sample_files/base-bldgtype-sfa-unit-2stories.xml": { + "parent_hpxml": "sample_files/base-bldgtype-sfa-unit.xml", "geometry_unit_num_floors_above_grade": 2, "geometry_unit_cfa": 2700, "heating_system_heating_capacity": 48000, @@ -791,20 +777,20 @@ "ducts_return_surface_area": 37.5, "misc_plug_loads_other_annual_kwh": 2457 }, - "sample_files/base-bldgtype-attached-atticroof-cathedral.xml": { - "parent_hpxml": "sample_files/base-bldgtype-attached-2stories.xml", + "sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml": { + "parent_hpxml": "sample_files/base-bldgtype-sfa-unit-2stories.xml", "geometry_attic_type": "ConditionedAttic", "ducts_supply_leakage_to_outside_value": 0, "ducts_return_leakage_to_outside_value": 0, - "ducts_supply_location": "living space", - "ducts_return_location": "living space" + "ducts_supply_location": "conditioned space", + "ducts_return_location": "conditioned space" }, - "sample_files/base-bldgtype-attached-infil-compartmentalization-test.xml": { - "parent_hpxml": "sample_files/base-bldgtype-attached.xml", + "sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml": { + "parent_hpxml": "sample_files/base-bldgtype-sfa-unit.xml", "air_leakage_value": 3.57, "air_leakage_type": "unit total" }, - "sample_files/base-bldgtype-multifamily.xml": { + "sample_files/base-bldgtype-mf-unit.xml": { "parent_hpxml": "sample_files/base.xml", "geometry_unit_type": "apartment unit", "geometry_unit_right_wall_is_adiabatic": true, @@ -827,79 +813,86 @@ "cooling_system_cooling_capacity": 12000, "ducts_supply_leakage_to_outside_value": 0, "ducts_return_leakage_to_outside_value": 0, - "ducts_supply_location": "living space", + "ducts_supply_location": "conditioned space", "ducts_supply_insulation_r": 0, - "ducts_return_location": "living space", + "ducts_return_location": "conditioned space", "misc_plug_loads_other_annual_kwh": 819 }, - "sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml" + "sample_files/base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml" }, - "sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml" + "sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml" }, - "sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml" + "sample_files/base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml" }, - "sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml" + "sample_files/base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml" }, - "sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml" + "sample_files/base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml" }, - "sample_files/base-bldgtype-multifamily-infil-compartmentalization-test.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml", + "sample_files/base-bldgtype-mf-unit-infil-compartmentalization-test.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml", "air_leakage_value": 12.16, "air_leakage_type": "unit total" }, - "sample_files/base-bldgtype-multifamily-residents-1.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml", + "sample_files/base-bldgtype-mf-unit-residents-1.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml", "geometry_unit_num_occupants": 1, "misc_plug_loads_television_annual_kwh": null, "misc_plug_loads_other_annual_kwh": null }, - "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml", + "sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml", "heating_system_type": "Shared Boiler w/ Baseboard", "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, "cooling_system_fraction_cool_load_served": 0 }, - "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml", + "sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml", "heating_system_type": "Shared Boiler w/ Ductless Fan Coil" }, - "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml" + "sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml" }, - "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml" + "sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml" }, - "sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml" + "sample_files/base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml" }, - "sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml", + "sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml", "heating_system_type": "Shared Boiler w/ Baseboard", "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, "cooling_system_fraction_cool_load_served": 0 }, - "sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml", + "sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml", "heating_system_type": "Shared Boiler w/ Ductless Fan Coil" }, - "sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml" + "sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml", + "heating_system_fraction_heat_load_served": 0.75, + "heating_system_2_type": "Fireplace", + "heating_system_2_heating_efficiency": 1.0, + "heating_system_2_fraction_heat_load_served": 0.25 + }, + "sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml" }, - "sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml" + "sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml" }, - "sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml" + "sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml" }, - "sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml", + "sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml", "heating_system_type": "none", "heating_system_heating_efficiency": 0, "heating_system_fraction_heat_load_served": 0, @@ -907,32 +900,32 @@ "cooling_system_cooling_efficiency": 0, "cooling_system_fraction_cool_load_served": 0 }, - "sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml" + "sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml" }, - "sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml" + "sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml" }, - "sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml" + "sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml" }, - "sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml" + "sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml" }, - "sample_files/base-bldgtype-multifamily-shared-generator.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml" + "sample_files/base-bldgtype-mf-unit-shared-generator.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml" }, - "sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml" + "sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml" }, - "sample_files/base-bldgtype-multifamily-shared-laundry-room.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml" + "sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml" }, - "sample_files/base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-laundry-room.xml" + "sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml" }, - "sample_files/base-bldgtype-multifamily-shared-mechvent.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml", + "sample_files/base-bldgtype-mf-unit-shared-mechvent.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml", "mech_vent_fan_type": "supply only", "mech_vent_flow_rate": 800, "mech_vent_hours_in_operation": 24, @@ -948,11 +941,11 @@ "mech_vent_2_sensible_recovery_efficiency": 0.72, "mech_vent_2_fan_power": 26 }, - "sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml" + "sample_files/base-bldgtype-mf-unit-shared-mechvent-multiple.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml" }, - "sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-mechvent.xml", + "sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-mechvent.xml", "mech_vent_shared_preheating_fuel": "natural gas", "mech_vent_shared_preheating_efficiency": 0.92, "mech_vent_shared_preheating_fraction_heat_load_served": 0.7, @@ -960,8 +953,8 @@ "mech_vent_shared_precooling_efficiency": 4, "mech_vent_shared_precooling_fraction_cool_load_served": 0.8 }, - "sample_files/base-bldgtype-multifamily-shared-pv.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml", + "sample_files/base-bldgtype-mf-unit-shared-pv.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml", "pv_system_present": true, "pv_system_module_type": "standard", "pv_system_location": "ground", @@ -973,8 +966,8 @@ "pv_system_system_losses_fraction": 0.14, "pv_system_num_bedrooms_served": 18 }, - "sample_files/base-bldgtype-multifamily-shared-water-heater.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml", + "sample_files/base-bldgtype-mf-unit-shared-water-heater.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml", "water_heater_fuel_type": "natural gas", "water_heater_tank_volume": 120, "water_heater_efficiency": 0.59, @@ -982,8 +975,8 @@ "water_heater_heating_capacity": 40000, "water_heater_num_units_served": 6 }, - "sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-water-heater.xml" + "sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml": { + "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-water-heater.xml" }, "sample_files/base-dhw-combi-tankless.xml": { "parent_hpxml": "sample_files/base-dhw-indirect.xml", @@ -1464,6 +1457,26 @@ "parent_hpxml": "sample_files/base.xml", "misc_plug_loads_other_annual_kwh": 1729 }, + "sample_files/base-foundation-belly-wing-skirt.xml": { + "parent_hpxml": "sample_files/base-foundation-ambient.xml", + "geometry_unit_type": "manufactured home", + "geometry_unit_aspect_ratio": 4.0, + "geometry_foundation_type": "BellyAndWingWithSkirt", + "geometry_foundation_height": 2, + "geometry_foundation_height_above_grade": 2, + "geometry_roof_pitch": "3:12", + "window_area_front": 140, + "window_area_back": 140, + "window_area_left": 20, + "window_area_right": 20, + "ducts_supply_location": "manufactured home belly", + "ducts_supply_insulation_r": 0, + "ducts_return_location": "manufactured home belly" + }, + "sample_files/base-foundation-belly-wing-no-skirt.xml": { + "parent_hpxml": "sample_files/base-foundation-belly-wing-skirt.xml", + "geometry_foundation_type": "BellyAndWingNoSkirt" + }, "sample_files/base-foundation-complex.xml": { "parent_hpxml": "sample_files/base.xml" }, @@ -1472,6 +1485,11 @@ "slab_under_insulation_r": 10, "slab_under_width": 4 }, + "sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml": { + "parent_hpxml": "sample_files/base.xml", + "slab_under_insulation_r": 10, + "slab_under_width": 999 + }, "sample_files/base-foundation-conditioned-basement-wall-insulation.xml": { "parent_hpxml": "sample_files/base.xml", "foundation_wall_type": "concrete block foam core", @@ -1568,6 +1586,10 @@ "water_heater_location": "crawlspace - vented", "misc_plug_loads_other_annual_kwh": 1228.5 }, + "sample_files/base-foundation-vented-crawlspace-above-grade.xml": { + "parent_hpxml": "sample_files/base-foundation-vented-crawlspace.xml", + "geometry_foundation_height_above_grade": 4 + }, "sample_files/base-foundation-walkout-basement.xml": { "parent_hpxml": "sample_files/base.xml", "geometry_foundation_height_above_grade": 5, @@ -1599,10 +1621,6 @@ "sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml" }, - "sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml", - "heat_pump_backup_heating_capacity": null - }, "sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml", "heat_pump_heating_capacity": 0, @@ -1652,8 +1670,7 @@ "heating_system_2_type": "Boiler", "heating_system_2_fuel": "natural gas", "heating_system_2_heating_efficiency": 0.8, - "heating_system_2_heating_capacity": 60000, - "heating_system_2_fraction_heat_load_served": 0.25 + "heating_system_2_heating_capacity": 60000 }, "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml", @@ -1668,408 +1685,22 @@ "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml" }, - "sample_files/base-hvac-autosize.xml": { - "parent_hpxml": "sample_files/base.xml", - "heating_system_heating_capacity": null, - "cooling_system_cooling_capacity": null - }, - "sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "ACCA" - }, - "sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "MaxLoad" - }, - "sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml": { - "parent_hpxml": "sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml", - "site_iecc_zone": "1A", - "site_state_code": "FL", - "weather_station_epw_filepath": "USA_FL_Miami.Intl.AP.722020_TMY3.epw" - }, - "sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "ACCA" - }, - "sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "MaxLoad" - }, - "sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml": { + "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "ACCA" - }, - "sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "MaxLoad" - }, - "sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS", - "heating_system_2_heating_capacity": null - }, - "sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml": { - "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS", - "heating_system_2_heating_capacity": null - }, - "sample_files/base-hvac-autosize-boiler-elec-only.xml": { - "parent_hpxml": "sample_files/base-hvac-boiler-elec-only.xml", - "heating_system_heating_capacity": null - }, - "sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml": { - "parent_hpxml": "sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml", - "heating_system_heating_capacity": null, - "cooling_system_cooling_capacity": null - }, - "sample_files/base-hvac-autosize-boiler-gas-only.xml": { - "parent_hpxml": "sample_files/base-hvac-boiler-gas-only.xml", - "heating_system_heating_capacity": null - }, - "sample_files/base-hvac-autosize-central-ac-only-1-speed.xml": { - "parent_hpxml": "sample_files/base-hvac-central-ac-only-1-speed.xml", - "cooling_system_cooling_capacity": null - }, - "sample_files/base-hvac-autosize-central-ac-only-2-speed.xml": { - "parent_hpxml": "sample_files/base-hvac-central-ac-only-2-speed.xml", - "cooling_system_cooling_capacity": null - }, - "sample_files/base-hvac-autosize-central-ac-only-var-speed.xml": { - "parent_hpxml": "sample_files/base-hvac-central-ac-only-var-speed.xml", - "cooling_system_cooling_capacity": null - }, - "sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml": { - "parent_hpxml": "sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml", - "cooling_system_cooling_capacity": null, - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml": { - "parent_hpxml": "sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "ACCA" - }, - "sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml": { - "parent_hpxml": "sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml": { - "parent_hpxml": "sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "MaxLoad" - }, - "sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml": { - "parent_hpxml": "sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml", - "heat_pump_heating_capacity": null, + "heat_pump_cooling_compressor_type": "variable speed", "heat_pump_heating_capacity_retention_fraction": null, "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml": { - "parent_hpxml": "sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml", - "heat_pump_backup_heating_capacity": 36000 - }, - "sample_files/base-hvac-autosize-elec-resistance-only.xml": { - "parent_hpxml": "sample_files/base-hvac-elec-resistance-only.xml", - "heating_system_heating_capacity": null - }, - "sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml": { - "parent_hpxml": "sample_files/base-hvac-evap-cooler-furnace-gas.xml", - "heating_system_heating_capacity": null, - "cooling_system_cooling_capacity": null - }, - "sample_files/base-hvac-autosize-floor-furnace-propane-only.xml": { - "parent_hpxml": "sample_files/base-hvac-floor-furnace-propane-only.xml", - "heating_system_heating_capacity": null + "heat_pump_cooling_efficiency": 17.25, + "heat_pump_heating_efficiency": 10.0 }, - "sample_files/base-hvac-autosize-furnace-elec-only.xml": { - "parent_hpxml": "sample_files/base-hvac-furnace-elec-only.xml", - "heating_system_heating_capacity": null + "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml": { + "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml" }, - "sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml": { - "parent_hpxml": "sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml", - "heating_system_heating_capacity": null, - "cooling_system_cooling_capacity": null - }, - "sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml": { - "parent_hpxml": "sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml", - "heating_system_heating_capacity": null, - "cooling_system_cooling_capacity": null - }, - "sample_files/base-hvac-autosize-furnace-gas-only.xml": { - "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml", - "heating_system_heating_capacity": null - }, - "sample_files/base-hvac-autosize-furnace-gas-room-ac.xml": { - "parent_hpxml": "sample_files/base-hvac-furnace-gas-room-ac.xml", + "sample_files/base-hvac-autosize.xml": { + "parent_hpxml": "sample_files/base.xml", "heating_system_heating_capacity": null, "cooling_system_cooling_capacity": null }, - "sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml", - "heat_pump_heating_capacity": null, - "heat_pump_cooling_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml", - "heat_pump_heating_capacity": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "heat_pump_heating_capacity": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "ACCA" - }, - "sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "heat_pump_heating_capacity": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "heat_pump_heating_capacity": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "MaxLoad" - }, - "sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml": { - "parent_hpxml": "sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml", - "cooling_system_cooling_capacity": null - }, - "sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml": { - "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml": { - "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml": { - "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "ACCA" - }, - "sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml": { - "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml": { - "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "MaxLoad" - }, - "sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml": { - "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS", - "heating_system_2_heating_capacity": null - }, - "sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml": { - "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml", - "heat_pump_heating_capacity": null, - "heat_pump_heating_capacity_retention_fraction": null, - "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS", - "heating_system_2_heating_capacity": null - }, - "sample_files/base-hvac-autosize-ptac.xml": { - "parent_hpxml": "sample_files/base-hvac-ptac.xml", - "cooling_system_cooling_capacity": null - }, - "sample_files/base-hvac-autosize-ptac-with-heating.xml": { - "parent_hpxml": "sample_files/base-hvac-ptac-with-heating-electricity.xml", - "cooling_system_cooling_capacity": null, - "cooling_system_integrated_heating_system_capacity": null - }, - "sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml": { - "parent_hpxml": "sample_files/base-hvac-pthp.xml", - "heat_pump_heating_capacity": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "ACCA" - }, - "sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml": { - "parent_hpxml": "sample_files/base-hvac-pthp.xml", - "heat_pump_heating_capacity": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml": { - "parent_hpxml": "sample_files/base-hvac-pthp.xml", - "heat_pump_heating_capacity": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "MaxLoad" - }, - "sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml": { - "parent_hpxml": "sample_files/base-hvac-room-ac-with-reverse-cycle.xml", - "heat_pump_heating_capacity": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "ACCA" - }, - "sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml": { - "parent_hpxml": "sample_files/base-hvac-room-ac-with-reverse-cycle.xml", - "heat_pump_heating_capacity": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "HERS" - }, - "sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml": { - "parent_hpxml": "sample_files/base-hvac-room-ac-with-reverse-cycle.xml", - "heat_pump_heating_capacity": null, - "heat_pump_cooling_capacity": null, - "heat_pump_backup_heating_capacity": null, - "heat_pump_sizing_methodology": "MaxLoad" - }, - "sample_files/base-hvac-autosize-room-ac-with-heating.xml": { - "parent_hpxml": "sample_files/base-hvac-room-ac-with-heating.xml", - "cooling_system_cooling_capacity": null, - "cooling_system_integrated_heating_system_capacity": null - }, - "sample_files/base-hvac-autosize-room-ac-only.xml": { - "parent_hpxml": "sample_files/base-hvac-room-ac-only.xml", - "cooling_system_cooling_capacity": null - }, "sample_files/base-hvac-autosize-sizing-controls.xml": { "parent_hpxml": "sample_files/base-hvac-autosize.xml", "geometry_unit_num_occupants": 5, @@ -2078,14 +1709,6 @@ "hvac_control_cooling_weekday_setpoint": 80, "hvac_control_cooling_weekend_setpoint": 80 }, - "sample_files/base-hvac-autosize-stove-oil-only.xml": { - "parent_hpxml": "sample_files/base-hvac-stove-oil-only.xml", - "heating_system_heating_capacity": null - }, - "sample_files/base-hvac-autosize-wall-furnace-elec-only.xml": { - "parent_hpxml": "sample_files/base-hvac-wall-furnace-elec-only.xml", - "heating_system_heating_capacity": null - }, "sample_files/base-hvac-boiler-coal-only.xml": { "parent_hpxml": "sample_files/base-hvac-boiler-gas-only.xml", "heating_system_fuel": "coal" @@ -2148,6 +1771,12 @@ "cooling_system_cooling_compressor_type": "variable speed", "cooling_system_cooling_sensible_heat_fraction": 0.78 }, + "sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml": { + "parent_hpxml": "sample_files/base-hvac-central-ac-only-var-speed.xml", + "cooling_system_cooling_compressor_type": "variable speed", + "cooling_system_cooling_efficiency": 17.25, + "cooling_system_cooling_capacity": 36000 + }, "sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml": { "parent_hpxml": "sample_files/base-hvac-central-ac-only-1-speed.xml", "heat_pump_type": "air-to-air", @@ -2164,10 +1793,6 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_backup_heating_capacity": 36000 }, - "sample_files/base-hvac-crankcase-heater-40w.xml": { - "parent_hpxml": "sample_files/base.xml", - "cooling_system_crankcase_heater_watts": 40 - }, "sample_files/base-hvac-dse.xml": { "parent_hpxml": "sample_files/base.xml" }, @@ -2217,7 +1842,11 @@ "ducts_return_leakage_to_outside_value": 0.05 }, "sample_files/base-hvac-ducts-area-fractions.xml": { - "parent_hpxml": "sample_files/base-enclosure-2stories.xml" + "parent_hpxml": "sample_files/base-enclosure-2stories.xml", + "ducts_supply_surface_area": null, + "ducts_supply_surface_area_fraction": 0.75, + "ducts_return_surface_area": null, + "ducts_return_surface_area_fraction": 0.75 }, "sample_files/base-hvac-ducts-area-multipliers.xml": { "parent_hpxml": "sample_files/base.xml" @@ -2228,6 +1857,17 @@ "ducts_return_buried_insulation_level": "deeply buried", "ducts_return_insulation_r": 4 }, + "sample_files/base-hvac-ducts-defaults.xml": { + "parent_hpxml": "sample_files/base-hvac-furnace-gas-room-ac.xml", + "heating_system_fraction_heat_load_served": 0.75, + "heating_system_2_type": "Fireplace", + "heating_system_2_heating_efficiency": 1.0, + "heating_system_2_fraction_heat_load_served": 0.25, + "ducts_supply_location": null, + "ducts_supply_surface_area": null, + "ducts_return_location": null, + "ducts_return_surface_area": null + }, "sample_files/base-hvac-ducts-effective-rvalue.xml": { "parent_hpxml": "sample_files/base.xml" }, @@ -2261,21 +1901,10 @@ "heating_system_type": "Fireplace", "heating_system_fuel": "wood" }, - "sample_files/base-hvac-fixed-heater-gas-only.xml": { - "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "FixedHeater", - "heating_system_heating_efficiency": 1, - "cooling_system_type": "none", - "cooling_system_cooling_efficiency": 0, - "cooling_system_fraction_cool_load_served": 0 - }, "sample_files/base-hvac-floor-furnace-propane-only.xml": { "parent_hpxml": "sample_files/base-hvac-stove-oil-only.xml", "heating_system_type": "FloorFurnace", - "heating_system_fuel": "propane" - }, - "sample_files/base-hvac-floor-furnace-propane-only-pilot-light.xml": { - "parent_hpxml": "sample_files/base-hvac-floor-furnace-propane-only.xml", + "heating_system_fuel": "propane", "heating_system_pilot_light": 600 }, "sample_files/base-hvac-furnace-coal-only.xml": { @@ -2393,6 +2022,9 @@ "heat_pump_airflow_defect_ratio": -0.25, "heat_pump_charge_defect_ratio": -0.25 }, + "sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml": { + "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml" + }, "sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_airflow_defect_ratio": -0.25, @@ -2436,6 +2068,7 @@ "heating_system_heating_efficiency": 0, "heating_system_fraction_heat_load_served": 0, "cooling_system_type": "mini-split", + "cooling_system_cooling_compressor_type": null, "cooling_system_cooling_efficiency": 19, "cooling_system_is_ducted": true, "ducts_supply_leakage_to_outside_value": 15, @@ -2448,6 +2081,12 @@ "parent_hpxml": "sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml", "cooling_system_is_ducted": false }, + "sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml": { + "parent_hpxml": "sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml", + "cooling_system_cooling_compressor_type": "variable speed", + "cooling_system_cooling_efficiency": 21.5, + "cooling_system_cooling_capacity": 36000 + }, "sample_files/base-hvac-mini-split-heat-pump-ducted.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_type": "none", @@ -2476,6 +2115,14 @@ "ducts_supply_surface_area": 30, "ducts_return_surface_area": 10 }, + "sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml": { + "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml", + "heat_pump_cooling_compressor_type": "variable speed", + "heat_pump_heating_capacity_retention_fraction": null, + "heat_pump_heating_capacity_retention_temp": null, + "heat_pump_cooling_efficiency": 16.7, + "heat_pump_heating_efficiency": 11.3 + }, "sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml", "heat_pump_heating_capacity": 0, @@ -2494,6 +2141,14 @@ "heat_pump_backup_heating_efficiency": 0, "heat_pump_is_ducted": false }, + "sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml": { + "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless.xml", + "heat_pump_cooling_compressor_type": "variable speed", + "heat_pump_heating_capacity_retention_fraction": null, + "heat_pump_heating_capacity_retention_temp": null, + "heat_pump_cooling_efficiency": 21.5, + "heat_pump_heating_efficiency": 10.5 + }, "sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless.xml" }, @@ -2509,8 +2164,7 @@ "heating_system_2_type": "Stove", "heating_system_2_fuel": "fuel oil", "heating_system_2_heating_efficiency": 0.6, - "heating_system_2_heating_capacity": 60000, - "heating_system_2_fraction_heat_load_served": 0.25 + "heating_system_2_heating_capacity": 60000 }, "sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml", @@ -2524,6 +2178,13 @@ "heating_system_2_fuel": "natural gas", "heating_system_2_heating_efficiency": 0.8 }, + "sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml": { + "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml", + "ducts_supply_location": null, + "ducts_supply_surface_area": null, + "ducts_return_location": null, + "ducts_return_surface_area": null + }, "sample_files/base-hvac-multiple.xml": { "parent_hpxml": "sample_files/base.xml" }, @@ -2536,14 +2197,6 @@ "cooling_system_cooling_efficiency": 0, "cooling_system_fraction_cool_load_served": 0 }, - "sample_files/base-hvac-portable-heater-gas-only.xml": { - "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "PortableHeater", - "heating_system_heating_efficiency": 1, - "cooling_system_type": "none", - "cooling_system_cooling_efficiency": 0, - "cooling_system_fraction_cool_load_served": 0 - }, "sample_files/base-hvac-ptac.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_type": "none", @@ -2640,6 +2293,14 @@ "sample_files/base-hvac-setpoints-daily-setbacks.xml": { "parent_hpxml": "sample_files/base.xml" }, + "sample_files/base-hvac-space-heater-gas-only.xml": { + "parent_hpxml": "sample_files/base.xml", + "heating_system_type": "SpaceHeater", + "heating_system_heating_efficiency": 1, + "cooling_system_type": "none", + "cooling_system_cooling_efficiency": 0, + "cooling_system_fraction_cool_load_served": 0 + }, "sample_files/base-hvac-stove-oil-only.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_type": "Stove", @@ -2660,9 +2321,6 @@ "ducts_supply_leakage_to_outside_value": 7.5, "ducts_return_leakage_to_outside_value": 2.5 }, - "sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml": { - "parent_hpxml": "sample_files/base-hvac-undersized.xml" - }, "sample_files/base-hvac-wall-furnace-elec-only.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_type": "WallFurnace", @@ -2686,7 +2344,8 @@ "holiday_lighting_period": "Nov 24 - Jan 6" }, "sample_files/base-lighting-kwh-per-year.xml": { - "parent_hpxml": "sample_files/base.xml" + "parent_hpxml": "sample_files/base.xml", + "lighting_interior_usage_multiplier": 1.5 }, "sample_files/base-lighting-mixed.xml": { "parent_hpxml": "sample_files/base.xml" @@ -2901,10 +2560,6 @@ "utility_bill_electricity_marginal_rates": 0.12, "utility_bill_natural_gas_marginal_rates": 1.1 }, - "sample_files/base-misc-bills-none.xml": { - "parent_hpxml": "sample_files/base.xml", - "utility_bill_scenario_names": null - }, "sample_files/base-misc-bills-pv.xml": { "parent_hpxml": "sample_files/base-pv.xml", "pv_system_max_power_output": 10000, @@ -3045,7 +2700,7 @@ "extra_refrigerator_present": true, "extra_refrigerator_rated_annual_kwh": 700, "freezer_present": true, - "freezer_location": "living space", + "freezer_location": "conditioned space", "freezer_rated_annual_kwh": 300, "misc_plug_loads_well_pump_present": true, "misc_plug_loads_well_pump_annual_kwh": 475, @@ -3065,18 +2720,18 @@ "pool_pump_annual_kwh": 2700, "pool_heater_type": "gas fired", "pool_heater_annual_therm": 500, - "hot_tub_present": true, - "hot_tub_pump_annual_kwh": 1000, - "hot_tub_heater_type": "electric resistance", - "hot_tub_heater_annual_kwh": 1300 + "permanent_spa_present": true, + "permanent_spa_pump_annual_kwh": 1000, + "permanent_spa_heater_type": "electric resistance", + "permanent_spa_heater_annual_kwh": 1300 }, "sample_files/base-misc-loads-large-uncommon2.xml": { "parent_hpxml": "sample_files/base-misc-loads-large-uncommon.xml", "misc_fuel_loads_grill_fuel_type": "fuel oil", "misc_fuel_loads_fireplace_fuel_type": "wood pellets", "pool_heater_type": "none", - "hot_tub_heater_type": "heat pump", - "hot_tub_heater_annual_kwh": 260 + "permanent_spa_heater_type": "heat pump", + "permanent_spa_heater_annual_kwh": 260 }, "sample_files/base-misc-loads-none.xml": { "parent_hpxml": "sample_files/base.xml", @@ -3092,7 +2747,7 @@ "neighbor_front_height": 12 }, "sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml", + "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml", "neighbor_right_distance": 15, "combine_like_surfaces": false }, @@ -3100,6 +2755,10 @@ "parent_hpxml": "sample_files/base.xml", "site_shielding_of_home": "well-shielded" }, + "sample_files/base-misc-unit-multiplier.xml": { + "parent_hpxml": "sample_files/base.xml", + "unit_multiplier": "10" + }, "sample_files/base-misc-usage-multiplier.xml": { "parent_hpxml": "sample_files/base.xml", "water_fixtures_usage_multiplier": 0.9, @@ -3111,7 +2770,7 @@ "dishwasher_usage_multiplier": 0.9, "refrigerator_usage_multiplier": 0.9, "freezer_present": true, - "freezer_location": "living space", + "freezer_location": "conditioned space", "freezer_rated_annual_kwh": 300, "freezer_usage_multiplier": 0.9, "cooking_range_oven_usage_multiplier": 0.9, @@ -3136,17 +2795,46 @@ "pool_heater_type": "gas fired", "pool_heater_annual_therm": 500, "pool_heater_usage_multiplier": 0.9, - "hot_tub_present": true, - "hot_tub_pump_annual_kwh": 1000, - "hot_tub_pump_usage_multiplier": 0.9, - "hot_tub_heater_type": "electric resistance", - "hot_tub_heater_annual_kwh": 1300, - "hot_tub_heater_usage_multiplier": 0.9 + "permanent_spa_present": true, + "permanent_spa_pump_annual_kwh": 1000, + "permanent_spa_pump_usage_multiplier": 0.9, + "permanent_spa_heater_type": "electric resistance", + "permanent_spa_heater_annual_kwh": 1300, + "permanent_spa_heater_usage_multiplier": 0.9 }, - "sample_files/base-multiple-buildings.xml": { + "sample_files/base-multiple-sfd-buildings.xml": { "parent_hpxml": "sample_files/base.xml", "clothes_dryer_present": false }, + "sample_files/base-multiple-mf-units.xml": { + "parent_hpxml": "sample_files/base.xml", + "geometry_unit_type": "apartment unit", + "geometry_unit_right_wall_is_adiabatic": true, + "geometry_unit_cfa": 1200, + "geometry_unit_aspect_ratio": 0.75, + "geometry_building_num_units": 6, + "floor_over_foundation_assembly_r": 22.84, + "air_leakage_type": "unit exterior only", + "air_leakage_units": "ACHnatural", + "air_leakage_value": 0.375, + "window_front_wwr": 0.18, + "window_back_wwr": 0.18, + "window_left_wwr": 0.18, + "window_right_wwr": 0.18, + "window_area_front": 0, + "window_area_back": 0, + "window_area_left": 0, + "window_area_right": 0, + "door_area": 20, + "cooling_system_type": "room air conditioner", + "cooling_system_cooling_efficiency_type": "EER", + "cooling_system_cooling_efficiency": 8.5, + "cooling_system_cooling_capacity": 12000, + "heating_system_type": "ElectricResistance", + "heating_system_fuel": "electricity", + "heating_system_heating_efficiency": 1, + "heating_system_heating_capacity": 12000 + }, "sample_files/base-pv.xml": { "parent_hpxml": "sample_files/base.xml", "pv_system_present": true, @@ -3261,8 +2949,8 @@ "misc_fuel_loads_fireplace_annual_therm": null, "pool_pump_annual_kwh": null, "pool_heater_annual_therm": null, - "hot_tub_pump_annual_kwh": null, - "hot_tub_heater_annual_kwh": null + "permanent_spa_pump_annual_kwh": null, + "permanent_spa_heater_annual_kwh": null }, "sample_files/base-residents-1-misc-loads-large-uncommon2.xml": { "parent_hpxml": "sample_files/base-misc-loads-large-uncommon2.xml", @@ -3276,8 +2964,8 @@ "misc_fuel_loads_fireplace_annual_therm": null, "pool_pump_annual_kwh": null, "pool_heater_annual_therm": null, - "hot_tub_pump_annual_kwh": null, - "hot_tub_heater_annual_kwh": null + "permanent_spa_pump_annual_kwh": null, + "permanent_spa_heater_annual_kwh": null }, "sample_files/base-residents-5.xml": { "parent_hpxml": "sample_files/base-misc-defaults.xml", @@ -3290,24 +2978,10 @@ "parent_hpxml": "sample_files/base.xml", "schedules_vacancy_period": "Dec 1 - Jan 31" }, - "sample_files/base-schedules-simple-vacancy-year-round.xml": { - "parent_hpxml": "sample_files/base.xml", - "schedules_vacancy_period": "Jan 1 - Dec 31" - }, "sample_files/base-schedules-simple-power-outage.xml": { "parent_hpxml": "sample_files/base.xml", "schedules_power_outage_period": "Jul 1 5 - Jul 31 14" }, - "sample_files/base-schedules-simple-power-outage-natvent-available.xml": { - "parent_hpxml": "sample_files/base.xml", - "schedules_power_outage_period": "Jul 1 5 - Jul 31 14", - "schedules_power_outage_window_natvent_availability": "always available" - }, - "sample_files/base-schedules-simple-power-outage-natvent-unavailable.xml": { - "parent_hpxml": "sample_files/base.xml", - "schedules_power_outage_period": "Jul 1 5 - Jul 31 14", - "schedules_power_outage_window_natvent_availability": "always unavailable" - }, "sample_files/base-schedules-detailed-all-10-mins.xml": { "parent_hpxml": "sample_files/base-simcontrol-timestep-10-mins.xml", "hvac_control_heating_weekday_setpoint": null, @@ -3317,6 +2991,19 @@ "water_heater_setpoint_temperature": null, "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-10-mins.csv, ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints-10-mins.csv, ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv" }, + "sample_files/base-schedules-detailed-mixed-timesteps.xml": { + "parent_hpxml": "sample_files/base-simcontrol-timestep-10-mins.xml", + "hvac_control_heating_weekday_setpoint": null, + "hvac_control_heating_weekend_setpoint": null, + "hvac_control_cooling_weekday_setpoint": null, + "hvac_control_cooling_weekend_setpoint": null, + "water_heater_setpoint_temperature": null, + "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/setpoints.csv, ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints-10-mins.csv, ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv" + }, + "sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml": { + "parent_hpxml": "sample_files/base-schedules-detailed-mixed-timesteps.xml", + "schedules_power_outage_period": "Dec 1 5 - Jan 31 14" + }, "sample_files/base-schedules-detailed-occupancy-stochastic.xml": { "parent_hpxml": "sample_files/base.xml", "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv" @@ -3325,10 +3012,6 @@ "parent_hpxml": "sample_files/base-schedules-detailed-occupancy-stochastic.xml", "schedules_vacancy_period": "Dec 1 - Jan 31" }, - "sample_files/base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml": { - "parent_hpxml": "sample_files/base-schedules-detailed-occupancy-stochastic.xml", - "schedules_vacancy_period": "Jan 1 - Dec 31" - }, "sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml": { "parent_hpxml": "sample_files/base-schedules-detailed-occupancy-stochastic.xml", "schedules_power_outage_period": "Dec 1 5 - Jan 31 14" diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house001.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house001.xml index 33213f3f..9b90a611 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house001.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house001.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -79,7 +83,7 @@ - living space + conditioned space 194.0 medium 6.0 @@ -106,7 +110,7 @@ outside - living space + conditioned space 120.0 @@ -116,7 +120,7 @@ attic - unvented - living space + conditioned space 25.0 @@ -128,7 +132,7 @@ outside - living space + conditioned space @@ -142,7 +146,7 @@ garage - living space + conditioned space @@ -156,7 +160,7 @@ attic - unvented - living space + conditioned space @@ -185,7 +189,7 @@ attic - unvented - living space + conditioned space @@ -198,7 +202,7 @@ garage - living space + conditioned space @@ -212,10 +216,9 @@ - living space + conditioned space 1189.0 154.0 - 0.0 @@ -236,7 +239,6 @@ garage 373.0 77.25 - 0.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house002.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house002.xml index f381ae90..22a92ddc 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house002.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house002.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -111,7 +115,7 @@ outside - living space + conditioned space @@ -125,7 +129,7 @@ garage - living space + conditioned space @@ -154,7 +158,7 @@ attic - unvented - living space + conditioned space @@ -167,7 +171,7 @@ attic - unvented - living space + conditioned space @@ -181,10 +185,9 @@ - living space + conditioned space 1769.0 207.0 - 0.0 @@ -205,7 +208,6 @@ garage 670.0 103.54 - 0.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house003.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house003.xml index e12f3659..8640c8fe 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house003.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house003.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -91,7 +95,7 @@ - living space + conditioned space 261.0 medium 6.0 @@ -116,7 +120,7 @@ garage - living space + conditioned space @@ -130,7 +134,7 @@ attic - unvented - living space + conditioned space @@ -144,7 +148,7 @@ outside - living space + conditioned space @@ -173,7 +177,7 @@ attic - unvented - living space + conditioned space @@ -187,10 +191,9 @@ - living space + conditioned space 1950.0 183.0 - 0.0 @@ -211,7 +214,6 @@ garage 448.0 84.66 - 0.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house004.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house004.xml index 61fb6fcd..8d79be77 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house004.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house004.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -79,7 +83,7 @@ - living space + conditioned space 49.0 medium 6.0 @@ -116,7 +120,7 @@ attic - unvented - living space + conditioned space @@ -130,7 +134,7 @@ outside - living space + conditioned space @@ -144,7 +148,7 @@ garage - living space + conditioned space @@ -173,7 +177,7 @@ attic - unvented - living space + conditioned space @@ -187,10 +191,9 @@ - living space + conditioned space 3667.0 304.0 - 0.0 @@ -211,7 +214,6 @@ garage 960.0 123.94 - 0.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house005.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house005.xml index 7a130100..cbfe23cb 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house005.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house005.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -87,7 +91,7 @@ attic - unvented - living space + conditioned space 33.0 @@ -97,7 +101,7 @@ outside - living space + conditioned space 61.0 @@ -109,7 +113,7 @@ attic - unvented - living space + conditioned space @@ -123,7 +127,7 @@ garage - living space + conditioned space @@ -137,7 +141,7 @@ outside - living space + conditioned space @@ -166,7 +170,7 @@ attic - unvented - living space + conditioned space @@ -179,7 +183,7 @@ garage - living space + conditioned space @@ -193,10 +197,9 @@ - living space + conditioned space 1732.0 186.0 - 0.0 @@ -217,7 +220,6 @@ garage 294.0 68.59 - 0.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house006.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house006.xml index 0fee76c2..8c52c098 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house006.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house006.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -71,7 +75,6 @@ - @@ -102,7 +105,7 @@ garage - living space + conditioned space 19.0 @@ -112,7 +115,7 @@ outside - living space + conditioned space 89.0 @@ -122,7 +125,7 @@ attic - unvented - living space + conditioned space 19.0 @@ -132,7 +135,7 @@ outside - living space + conditioned space 79.0 @@ -144,7 +147,7 @@ outside - living space + conditioned space @@ -158,7 +161,7 @@ garage - living space + conditioned space @@ -172,7 +175,7 @@ attic - unvented - living space + conditioned space @@ -245,7 +248,7 @@ attic - unvented - living space + conditioned space @@ -260,9 +263,8 @@ basement - conditioned - 830.0 + 1008.0 112.0 - 7.0 @@ -280,40 +282,18 @@ - basement - conditioned - 178.0 - 24.0 - 7.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - - garage 422.0 82.17 - 0.0 - + 0.0 0.0 - + 0.0 0.0 @@ -391,7 +371,7 @@ - living space + conditioned space @@ -406,7 +386,7 @@ - living space + conditioned space central air conditioner electricity @@ -449,14 +429,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 4 @@ -483,7 +463,7 @@ natural gas storage water heater - living space + conditioned space 50.0 1.0 0.64 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house007.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house007.xml index 93cb73a5..e324c017 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house007.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house007.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -78,7 +82,6 @@ - @@ -109,7 +112,7 @@ garage - living space + conditioned space 22.0 @@ -119,7 +122,7 @@ outside - living space + conditioned space 110.0 @@ -129,7 +132,7 @@ outside - living space + conditioned space 38.0 @@ -139,7 +142,7 @@ outside - living space + conditioned space 82.0 @@ -151,7 +154,7 @@ outside - living space + conditioned space @@ -165,7 +168,7 @@ garage - living space + conditioned space @@ -238,7 +241,7 @@ attic - unvented - living space + conditioned space @@ -251,7 +254,7 @@ outside - living space + conditioned space @@ -266,9 +269,8 @@ basement - conditioned - 887.0 + 1064.0 110.0 - 7.0 @@ -286,40 +288,18 @@ - basement - conditioned - 177.0 - 22.0 - 7.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - - garage 504.0 89.8 - 0.0 - + 0.0 0.0 - + 0.0 0.0 @@ -397,7 +377,7 @@ - living space + conditioned space @@ -412,7 +392,7 @@ - living space + conditioned space central air conditioner electricity @@ -461,14 +441,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 5 @@ -494,7 +474,7 @@ natural gas storage water heater - living space + conditioned space 50.0 1.0 0.64 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house008.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house008.xml index c3bd587d..efdd3dce 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house008.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house008.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -82,7 +86,6 @@ - @@ -115,7 +118,7 @@ garage - living space + conditioned space 33.0 @@ -125,7 +128,7 @@ outside - living space + conditioned space 153.0 @@ -135,7 +138,7 @@ attic - unvented - living space + conditioned space 35.0 @@ -145,7 +148,7 @@ outside - living space + conditioned space 58.0 @@ -157,7 +160,7 @@ outside - living space + conditioned space @@ -171,7 +174,7 @@ garage - living space + conditioned space @@ -185,7 +188,7 @@ attic - unvented - living space + conditioned space @@ -279,7 +282,7 @@ attic - unvented - living space + conditioned space @@ -292,7 +295,7 @@ attic - unvented - living space + conditioned space @@ -305,7 +308,7 @@ garage - living space + conditioned space @@ -319,10 +322,9 @@ - living space + conditioned space 320.0 40.0 - 0.0 @@ -341,9 +343,8 @@ basement - conditioned - 408.0 + 608.0 115.0 - 8.0 @@ -362,39 +363,17 @@ basement - conditioned - 200.0 - 25.0 - 8.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - - - basement - conditioned 192.0 24.0 - 4.0 - + 0.0 0.0 - + 0.0 0.0 @@ -406,7 +385,6 @@ garage 466.0 86.35 - 0.0 @@ -477,7 +455,7 @@ - living space + conditioned space @@ -492,7 +470,7 @@ - living space + conditioned space central air conditioner electricity @@ -541,14 +519,14 @@ supply 0.0 - living space + conditioned space 0.86 return 0.0 - living space + conditioned space 1.0 @@ -582,7 +560,7 @@ natural gas storage water heater - living space + conditioned space 50.0 1.0 0.64 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house009.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house009.xml index 75fabf41..b39c7339 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house009.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house009.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -110,7 +114,7 @@ garage - living space + conditioned space 12.0 @@ -120,7 +124,7 @@ outside - living space + conditioned space 138.0 @@ -130,7 +134,7 @@ outside - living space + conditioned space 12.0 @@ -140,7 +144,7 @@ outside - living space + conditioned space 84.0 @@ -152,7 +156,7 @@ outside - living space + conditioned space @@ -166,7 +170,7 @@ garage - living space + conditioned space @@ -180,7 +184,7 @@ attic - unvented - living space + conditioned space @@ -253,7 +257,7 @@ attic - unvented - living space + conditioned space @@ -266,7 +270,7 @@ outside - living space + conditioned space @@ -279,7 +283,7 @@ outside - living space + conditioned space @@ -296,7 +300,6 @@ basement - conditioned 1057.0 148.0 - 7.0 @@ -317,7 +320,6 @@ basement - conditioned 86.0 12.0 - 3.0 @@ -338,7 +340,6 @@ garage 240.0 61.97 - 0.0 @@ -431,7 +432,7 @@ - living space + conditioned space @@ -446,7 +447,7 @@ - living space + conditioned space central air conditioner electricity @@ -489,14 +490,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 5 @@ -522,7 +523,7 @@ natural gas storage water heater - living space + conditioned space 50.0 1.0 0.64 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house010.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house010.xml index 8b0b8fe2..4e2c1598 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house010.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house010.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -85,7 +89,6 @@ - @@ -103,7 +106,7 @@ - living space + conditioned space 176.0 medium 6.0 @@ -118,7 +121,7 @@ garage - living space + conditioned space 22.0 @@ -128,7 +131,7 @@ outside - living space + conditioned space 110.0 @@ -138,7 +141,7 @@ outside - living space + conditioned space 14.0 @@ -148,7 +151,7 @@ outside - living space + conditioned space 140.0 @@ -160,7 +163,7 @@ outside - living space + conditioned space @@ -174,7 +177,7 @@ garage - living space + conditioned space @@ -188,7 +191,7 @@ attic - unvented - living space + conditioned space @@ -261,7 +264,7 @@ attic - unvented - living space + conditioned space @@ -274,7 +277,7 @@ outside - living space + conditioned space @@ -287,7 +290,7 @@ garage - living space + conditioned space @@ -302,9 +305,8 @@ basement - conditioned - 887.0 + 1064.0 110.0 - 7.0 @@ -322,40 +324,18 @@ - basement - conditioned - 177.0 - 22.0 - 7.0 - - - - 10.0 - 0.5 - - - - - - 0.0 - 0.0 - - - - - garage 264.0 64.99 - 0.0 - + 0.0 0.0 - + 0.0 0.0 @@ -433,7 +413,7 @@ - living space + conditioned space @@ -448,7 +428,7 @@ - living space + conditioned space central air conditioner electricity @@ -497,14 +477,14 @@ supply 0.0 - living space + conditioned space 0.92 return 0.0 - living space + conditioned space 1.0 @@ -538,7 +518,7 @@ natural gas storage water heater - living space + conditioned space 50.0 1.0 0.64 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house011.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house011.xml index 2326b00d..a08f1343 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house011.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house011.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -91,7 +95,7 @@ outside - living space + conditioned space @@ -130,7 +134,7 @@ attic - unvented - living space + conditioned space @@ -143,7 +147,7 @@ crawlspace - unvented - living space + conditioned space @@ -160,7 +164,6 @@ crawlspace - unvented 1228.0 140.17 - 0.0 @@ -335,7 +338,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 0.91 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house012.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house012.xml index 851b4aa0..dbee618e 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house012.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house012.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -91,7 +95,7 @@ outside - living space + conditioned space @@ -130,7 +134,7 @@ attic - unvented - living space + conditioned space @@ -143,7 +147,7 @@ crawlspace - unvented - living space + conditioned space @@ -160,7 +164,6 @@ crawlspace - unvented 1035.0 128.69 - 0.0 @@ -273,14 +276,14 @@ supply 4.2 - living space + conditioned space 1.0 return 4.2 - living space + conditioned space 1.0 1 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house013.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house013.xml index ebc2dbe3..44683454 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house013.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house013.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -91,7 +95,7 @@ outside - living space + conditioned space @@ -130,7 +134,7 @@ attic - unvented - living space + conditioned space @@ -143,7 +147,7 @@ crawlspace - vented - living space + conditioned space @@ -160,7 +164,6 @@ crawlspace - vented 884.0 118.93 - 0.0 @@ -325,7 +328,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 0.93 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house014.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house014.xml index 96bcb5d1..09ee446b 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house014.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house014.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -91,7 +95,7 @@ outside - living space + conditioned space @@ -130,7 +134,7 @@ attic - unvented - living space + conditioned space @@ -143,7 +147,7 @@ crawlspace - vented - living space + conditioned space @@ -160,7 +164,6 @@ crawlspace - vented 916.0 121.06 - 0.0 @@ -326,7 +329,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 0.95 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house015.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house015.xml index ebc2dbe3..44683454 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house015.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house015.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -91,7 +95,7 @@ outside - living space + conditioned space @@ -130,7 +134,7 @@ attic - unvented - living space + conditioned space @@ -143,7 +147,7 @@ crawlspace - vented - living space + conditioned space @@ -160,7 +164,6 @@ crawlspace - vented 884.0 118.93 - 0.0 @@ -325,7 +328,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 0.93 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house016.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house016.xml index d40774ac..53729ff5 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house016.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house016.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -139,7 +143,7 @@ outside - living space + conditioned space false @@ -155,7 +159,7 @@ attic - vented - living space + conditioned space knee wall @@ -186,7 +190,7 @@ attic - vented - living space + conditioned space @@ -199,7 +203,7 @@ attic - vented - living space + conditioned space @@ -216,7 +220,6 @@ basement - conditioned 2584.0 205.4 - 6.75 @@ -365,7 +368,7 @@ - living space + conditioned space @@ -442,14 +445,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 @@ -484,14 +487,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 @@ -553,7 +556,7 @@ propane instantaneous water heater - living space + conditioned space 1.0 38000.0 0.75 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house017.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house017.xml index 31097de6..0917acbb 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house017.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house017.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -117,7 +121,7 @@ outside - living space + conditioned space false @@ -133,7 +137,7 @@ outside - living space + conditioned space false @@ -149,7 +153,7 @@ attic - vented - living space + conditioned space knee wall @@ -176,7 +180,7 @@ other housing unit - living space + conditioned space @@ -206,7 +210,7 @@ attic - vented - living space + conditioned space @@ -219,7 +223,7 @@ garage - living space + conditioned space @@ -236,7 +240,6 @@ basement - conditioned 960.0 127.4 - 7.0 @@ -257,7 +260,6 @@ garage 216.0 58.79 - 0.0 @@ -377,7 +379,7 @@ - living space + conditioned space @@ -441,14 +443,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 @@ -483,7 +485,7 @@ natural gas storage water heater - living space + conditioned space 50.0 1.0 38000.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house018.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house018.xml index 9cce4fae..6a5d8f7e 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house018.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house018.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -104,7 +108,7 @@ outside - living space + conditioned space false @@ -136,7 +140,7 @@ attic - vented - living space + conditioned space @@ -149,7 +153,7 @@ crawlspace - unvented - living space + conditioned space @@ -166,7 +170,6 @@ crawlspace - unvented 1456.0 152.63 - 0.0 @@ -399,7 +402,7 @@ electricity storage water heater - living space + conditioned space 50.0 1.0 15358.5 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house019.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house019.xml index 485df9aa..08614d38 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house019.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house019.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -115,7 +119,7 @@ outside - living space + conditioned space false @@ -148,7 +152,7 @@ attic - vented - living space + conditioned space @@ -165,7 +169,6 @@ basement - conditioned 1350.0 150.0 - 7.0 @@ -320,7 +323,7 @@ - living space + conditioned space @@ -384,21 +387,21 @@ supply 0.0 - living space + conditioned space 0.65 supply 0.0 - living space + conditioned space 0.35 return 0.0 - living space + conditioned space 1.0 @@ -433,7 +436,7 @@ electricity storage water heater - living space + conditioned space 50.0 1.0 15358.5 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house020.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house020.xml index 32e1c9a3..d6a51c47 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house020.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house020.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -108,7 +112,7 @@ - living space + conditioned space 239.0 asphalt or fiberglass shingles medium @@ -135,7 +139,7 @@ outside - living space + conditioned space false @@ -151,7 +155,7 @@ attic - vented - living space + conditioned space knee wall @@ -182,7 +186,7 @@ attic - vented - living space + conditioned space @@ -199,7 +203,6 @@ basement - conditioned 2624.0 232.0 - 6.5 @@ -354,7 +357,7 @@ - living space + conditioned space @@ -418,14 +421,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 @@ -460,7 +463,7 @@ propane storage water heater - living space + conditioned space 50.0 1.0 38000.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house021.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house021.xml index 69352cc2..c2bd021d 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house021.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house021.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -138,7 +142,7 @@ outside - living space + conditioned space false @@ -154,7 +158,7 @@ outside - living space + conditioned space false @@ -200,7 +204,7 @@ attic - vented - living space + conditioned space @@ -213,7 +217,7 @@ attic - vented - living space + conditioned space @@ -226,7 +230,7 @@ garage - living space + conditioned space @@ -243,7 +247,6 @@ basement - conditioned 1446.0 156.3 - 6.9 @@ -264,7 +267,6 @@ garage 160.0 50.6 - 0.0 @@ -419,7 +421,7 @@ - living space + conditioned space @@ -434,7 +436,7 @@ - living space + conditioned space @@ -510,21 +512,21 @@ supply 0.0 - living space + conditioned space 0.65 supply 0.0 - living space + conditioned space 0.35 return 0.0 - living space + conditioned space 1.0 @@ -566,7 +568,7 @@ supply 6.0 - living space + conditioned space 0.35 @@ -608,7 +610,7 @@ natural gas storage water heater - living space + conditioned space 50.0 1.0 38000.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house022.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house022.xml index 89f1970f..b1938228 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house022.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house022.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -109,7 +113,7 @@ - living space + conditioned space 433.3 asphalt or fiberglass shingles medium @@ -136,7 +140,7 @@ outside - living space + conditioned space false @@ -152,7 +156,7 @@ outside - living space + conditioned space false @@ -168,7 +172,7 @@ attic - vented - living space + conditioned space knee wall @@ -199,7 +203,7 @@ attic - vented - living space + conditioned space @@ -212,7 +216,7 @@ basement - unconditioned - living space + conditioned space @@ -229,7 +233,6 @@ basement - unconditioned 950.0 124.6 - 7.0 @@ -390,7 +393,7 @@ - living space + conditioned space @@ -454,28 +457,28 @@ supply 0.0 - living space + conditioned space 0.5 supply 0.0 - living space + conditioned space 0.5 return 0.0 - living space + conditioned space 0.5 return 0.0 - living space + conditioned space 0.5 @@ -501,7 +504,7 @@ electricity storage water heater - living space + conditioned space 50.0 1.0 15358.5 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house023.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house023.xml index b5856110..25f33785 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house023.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house023.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -139,7 +143,7 @@ outside - living space + conditioned space false @@ -155,7 +159,7 @@ outside - living space + conditioned space false @@ -171,7 +175,7 @@ attic - vented - living space + conditioned space knee wall @@ -202,7 +206,7 @@ attic - vented - living space + conditioned space @@ -215,7 +219,7 @@ attic - vented - living space + conditioned space @@ -232,7 +236,6 @@ basement - conditioned 1292.0 145.3 - 8.0 @@ -358,7 +361,7 @@ - living space + conditioned space @@ -422,21 +425,21 @@ supply 0.0 - living space + conditioned space 0.65 supply 0.0 - living space + conditioned space 0.35 return 0.0 - living space + conditioned space 1.0 @@ -462,7 +465,7 @@ electricity storage water heater - living space + conditioned space 80.0 1.0 15358.5 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house024.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house024.xml index 42072c55..784366c6 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house024.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house024.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -151,7 +155,7 @@ outside - living space + conditioned space @@ -165,7 +169,7 @@ outside - living space + conditioned space @@ -179,7 +183,7 @@ attic - vented - living space + conditioned space knee wall @@ -222,7 +226,7 @@ attic - vented - living space + conditioned space @@ -235,7 +239,7 @@ attic - vented - living space + conditioned space @@ -248,7 +252,7 @@ basement - unconditioned - living space + conditioned space @@ -261,7 +265,7 @@ crawlspace - vented - living space + conditioned space @@ -278,7 +282,6 @@ basement - unconditioned 552.0 69.2 - 5.83 @@ -299,7 +302,6 @@ crawlspace - vented 390.0 78.99 - 0.0 @@ -525,7 +527,7 @@ supply 0.0 - living space + conditioned space 0.35 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house025.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house025.xml index d69dceb0..5dacc390 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house025.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house025.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -104,7 +108,7 @@ outside - living space + conditioned space false @@ -136,7 +140,7 @@ attic - vented - living space + conditioned space @@ -149,7 +153,7 @@ crawlspace - unvented - living space + conditioned space @@ -166,7 +170,6 @@ crawlspace - unvented 1297.0 144.06 - 0.0 @@ -428,7 +431,7 @@ supply 4.2 - living space + conditioned space 0.35 @@ -482,7 +485,7 @@ supply 4.2 - living space + conditioned space 0.35 @@ -502,7 +505,7 @@ electricity storage water heater - living space + conditioned space 90.0 1.0 15358.5 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house026.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house026.xml index 987c7bf4..4a1f5d57 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house026.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house026.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -73,6 +77,7 @@ + @@ -100,7 +105,7 @@ outside - living space + conditioned space 83.1 @@ -130,7 +135,7 @@ other housing unit - living space + conditioned space 77.0 @@ -142,7 +147,7 @@ outside - living space + conditioned space @@ -170,7 +175,7 @@ garage - living space + conditioned space @@ -184,7 +189,7 @@ other housing unit - living space + conditioned space @@ -278,7 +283,7 @@ attic - unvented - living space + conditioned space @@ -295,7 +300,7 @@ basement - unconditioned - living space + conditioned space @@ -308,7 +313,7 @@ garage - living space + conditioned space @@ -325,7 +330,7 @@ outside - living space + conditioned space @@ -344,9 +349,8 @@ basement - unconditioned - 1108.0 - 133.15 - 0.0 + 522.5 + 41.5 @@ -364,19 +368,38 @@ + basement - unconditioned + 585.5 + 46.5 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + + garage 327.2 72.35 - 0.0 - + 0.0 0.0 - + 0.0 0.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house027.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house027.xml index 24ad3774..3017c525 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house027.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house027.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -98,7 +102,7 @@ - living space + conditioned space 250.0 medium 6.0 @@ -113,7 +117,7 @@ outside - living space + conditioned space 159.6 @@ -123,7 +127,7 @@ other housing unit - living space + conditioned space 28.8 @@ -135,7 +139,7 @@ outside - living space + conditioned space @@ -149,7 +153,7 @@ outside - living space + conditioned space @@ -163,7 +167,7 @@ attic - unvented - living space + conditioned space @@ -177,7 +181,7 @@ other housing unit - living space + conditioned space @@ -191,7 +195,7 @@ attic - unvented - living space + conditioned space @@ -220,7 +224,7 @@ attic - unvented - living space + conditioned space @@ -233,7 +237,7 @@ garage - living space + conditioned space @@ -246,7 +250,7 @@ outside - living space + conditioned space @@ -260,10 +264,9 @@ - living space + conditioned space 1158.0 128.0 - 0.0 @@ -284,7 +287,6 @@ garage 302.0 69.51 - 0.0 @@ -400,7 +402,7 @@ - living space + conditioned space @@ -415,7 +417,7 @@ - living space + conditioned space central air conditioner electricity @@ -465,14 +467,14 @@ supply 0.0 - living space + conditioned space 0.8 return 0.0 - living space + conditioned space 1.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house028.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house028.xml index 543f1e64..40277660 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house028.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house028.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -98,7 +102,7 @@ - living space + conditioned space 280.0 dark 6.0 @@ -113,7 +117,7 @@ outside - living space + conditioned space 89.0 @@ -123,7 +127,7 @@ attic - unvented - living space + conditioned space 44.0 @@ -133,7 +137,7 @@ other housing unit - living space + conditioned space 23.0 @@ -145,7 +149,7 @@ outside - living space + conditioned space @@ -159,7 +163,7 @@ garage - living space + conditioned space @@ -173,7 +177,7 @@ attic - unvented - living space + conditioned space @@ -187,7 +191,7 @@ other housing unit - living space + conditioned space @@ -216,7 +220,7 @@ attic - unvented - living space + conditioned space @@ -229,7 +233,7 @@ garage - living space + conditioned space @@ -242,7 +246,7 @@ outside - living space + conditioned space @@ -256,10 +260,9 @@ - living space + conditioned space 1166.0 129.0 - 0.0 @@ -280,7 +283,6 @@ garage 204.0 57.13 - 0.0 @@ -444,7 +446,7 @@ - living space + conditioned space @@ -515,14 +517,14 @@ supply 0.0 - living space + conditioned space 0.8 return 0.0 - living space + conditioned space 1.0 3 @@ -548,7 +550,7 @@ natural gas storage water heater - living space + conditioned space 50.0 1.0 0.58 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house029.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house029.xml index 5cfb7728..12ad215d 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house029.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house029.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -136,7 +140,7 @@ outside - living space + conditioned space 89.2 @@ -146,7 +150,7 @@ other housing unit - living space + conditioned space 64.7 @@ -158,7 +162,7 @@ outside - living space + conditioned space @@ -172,7 +176,7 @@ garage - living space + conditioned space @@ -186,7 +190,7 @@ attic - unvented - living space + conditioned space @@ -200,7 +204,7 @@ other housing unit - living space + conditioned space @@ -273,7 +277,7 @@ attic - unvented - living space + conditioned space @@ -286,7 +290,7 @@ attic - unvented - living space + conditioned space @@ -299,7 +303,7 @@ basement - unconditioned - living space + conditioned space @@ -315,8 +319,7 @@ basement - unconditioned 1500.0 - 154.92 - 0.0 + 141.5 @@ -337,7 +340,6 @@ garage 830.0 115.24 - 0.0 @@ -528,14 +530,14 @@ supply 0.0 - living space + conditioned space 0.7 return 0.0 - living space + conditioned space 0.7 5 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house030.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house030.xml index 22b2b413..2fb51124 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house030.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house030.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -73,13 +77,14 @@ + - + @@ -110,7 +115,7 @@ outside - living space + conditioned space 114.0 @@ -120,7 +125,7 @@ garage - living space + conditioned space 26.0 @@ -132,7 +137,7 @@ outside - living space + conditioned space @@ -146,7 +151,7 @@ garage - living space + conditioned space @@ -261,7 +266,7 @@ attic - unvented - living space + conditioned space @@ -276,9 +281,8 @@ basement - conditioned - 574.0 - 69.0 - 5.7 + 348.5 + 25.5 @@ -296,19 +300,38 @@ - living space + basement - conditioned + 225.5 + 27.1 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + + + conditioned space 602.0 71.0 - 0.0 - + 10.0 4.0 - + 0.0 0.0 @@ -316,20 +339,19 @@ - + garage 416.0 81.58 - 0.0 - + 0.0 0.0 - + 0.0 0.0 @@ -425,7 +447,7 @@ - living space + conditioned space @@ -471,7 +493,7 @@ propane space-heating boiler with storage tank - living space + conditioned space 50.0 1.0 0.8 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house031.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house031.xml index a8571914..1912c8ba 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house031.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house031.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -114,7 +118,7 @@ outside - living space + conditioned space false @@ -160,7 +164,7 @@ attic - vented - living space + conditioned space @@ -173,7 +177,7 @@ garage - living space + conditioned space @@ -190,7 +194,6 @@ basement - conditioned 1052.7 133.4 - 7.0 @@ -211,7 +214,6 @@ garage 500.0 89.44 - 0.0 @@ -366,7 +368,7 @@ - living space + conditioned space @@ -381,7 +383,7 @@ - living space + conditioned space @@ -457,14 +459,14 @@ supply 4.2 - living space + conditioned space 1.0 return 4.2 - living space + conditioned space 1.0 @@ -506,7 +508,7 @@ supply 4.2 - living space + conditioned space 0.35 @@ -526,7 +528,7 @@ natural gas storage water heater - living space + conditioned space 50.0 1.0 38000.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house032.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house032.xml index 213a4524..8a468e65 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house032.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house032.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -115,7 +119,7 @@ outside - living space + conditioned space false @@ -148,7 +152,7 @@ attic - vented - living space + conditioned space @@ -165,7 +169,6 @@ basement - conditioned 848.0 116.48 - 0.0 @@ -320,7 +323,7 @@ - living space + conditioned space @@ -372,14 +375,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 @@ -392,7 +395,7 @@ natural gas storage water heater - living space + conditioned space 50.0 1.0 38000.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house033.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house033.xml index e64e5d11..9ba9064d 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house033.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house033.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -116,7 +120,7 @@ outside - living space + conditioned space false @@ -149,7 +153,7 @@ attic - vented - living space + conditioned space @@ -162,7 +166,7 @@ basement - unconditioned - living space + conditioned space @@ -179,7 +183,6 @@ basement - unconditioned 1100.0 146.0 - 7.0 @@ -373,7 +376,7 @@ fuel oil instantaneous water heater - living space + conditioned space 1.0 91000.0 0.5 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house034.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house034.xml index 99110741..d1c4d741 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house034.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house034.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -135,7 +139,7 @@ outside - living space + conditioned space false @@ -194,7 +198,7 @@ attic - vented - living space + conditioned space @@ -207,7 +211,7 @@ garage - living space + conditioned space @@ -220,7 +224,7 @@ crawlspace - unvented - living space + conditioned space @@ -237,7 +241,6 @@ basement - conditioned 596.9 62.2 - 6.0 @@ -258,7 +261,6 @@ crawlspace - unvented 560.0 94.66 - 0.0 @@ -279,7 +281,6 @@ garage 792.0 112.57 - 0.0 @@ -473,7 +474,7 @@ propane storage water heater - living space + conditioned space 50.0 1.0 38000.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house035.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house035.xml index 8db58cce..3de5e047 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house035.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house035.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -108,7 +112,7 @@ - living space + conditioned space 113.6 asphalt or fiberglass shingles medium @@ -135,7 +139,7 @@ outside - living space + conditioned space false @@ -168,7 +172,7 @@ attic - vented - living space + conditioned space @@ -181,7 +185,7 @@ basement - unconditioned - living space + conditioned space @@ -198,7 +202,6 @@ basement - unconditioned 1024.0 128.0 - 0.0 @@ -353,7 +356,7 @@ - living space + conditioned space @@ -417,28 +420,28 @@ supply 0.0 - living space + conditioned space 0.5 supply 0.0 - living space + conditioned space 0.5 return 0.0 - living space + conditioned space 0.5 return 0.0 - living space + conditioned space 0.5 @@ -451,7 +454,7 @@ natural gas storage water heater - living space + conditioned space 50.0 1.0 38000.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house036.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house036.xml index 2e89b957..87673dbd 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house036.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house036.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -107,7 +111,7 @@ - living space + conditioned space 1292.0 asphalt or fiberglass shingles medium @@ -134,7 +138,7 @@ outside - living space + conditioned space false @@ -167,7 +171,7 @@ attic - vented - living space + conditioned space @@ -180,7 +184,7 @@ basement - unconditioned - living space + conditioned space @@ -197,7 +201,6 @@ basement - unconditioned 1457.0 156.0 - 6.0 @@ -352,7 +355,7 @@ - living space + conditioned space @@ -416,14 +419,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house037.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house037.xml index 61ba245e..4037079d 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house037.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house037.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -139,7 +143,7 @@ outside - living space + conditioned space false @@ -172,7 +176,7 @@ attic - vented - living space + conditioned space @@ -185,7 +189,7 @@ attic - vented - living space + conditioned space @@ -198,7 +202,7 @@ basement - unconditioned - living space + conditioned space @@ -215,7 +219,6 @@ basement - unconditioned 1000.0 114.0 - 7.0 @@ -409,7 +412,7 @@ fuel oil instantaneous water heater - living space + conditioned space 1.0 91000.0 0.5 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house038.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house038.xml index 5dc3f7af..f38d51ec 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house038.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house038.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -114,7 +118,7 @@ outside - living space + conditioned space false @@ -160,7 +164,7 @@ attic - vented - living space + conditioned space @@ -173,7 +177,7 @@ garage - living space + conditioned space @@ -190,7 +194,6 @@ basement - conditioned 320.7 73.6 - 6.0 @@ -211,7 +214,6 @@ garage 500.0 89.44 - 0.0 @@ -366,7 +368,7 @@ - living space + conditioned space @@ -430,14 +432,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 @@ -450,7 +452,7 @@ natural gas storage water heater - living space + conditioned space 50.0 1.0 38000.0 @@ -596,12 +598,12 @@ unknown - - + + single speed - - + + none diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house039.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house039.xml index 85ab7dd1..4400dde8 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house039.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house039.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -116,7 +120,7 @@ outside - living space + conditioned space false @@ -162,7 +166,7 @@ attic - vented - living space + conditioned space @@ -175,7 +179,7 @@ garage - living space + conditioned space @@ -188,7 +192,7 @@ basement - unconditioned - living space + conditioned space @@ -205,7 +209,6 @@ basement - unconditioned 1000.0 130.0 - 6.0 @@ -226,7 +229,6 @@ garage 500.0 89.44 - 0.0 @@ -420,7 +422,7 @@ electricity heat pump water heater - living space + conditioned space 50.0 1.0 15359.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house040.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house040.xml index 1de86ae4..14fd2b89 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house040.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house040.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -117,7 +121,7 @@ - living space + conditioned space 1200.0 asphalt or fiberglass shingles medium @@ -144,7 +148,7 @@ outside - living space + conditioned space false @@ -189,7 +193,7 @@ attic - vented - living space + conditioned space @@ -202,7 +206,7 @@ crawlspace - unvented - living space + conditioned space @@ -219,7 +223,6 @@ basement - conditioned 609.2 85.9 - 6.0 @@ -240,7 +243,6 @@ crawlspace - unvented 152.3 49.36 - 0.0 @@ -395,7 +397,7 @@ - living space + conditioned space @@ -447,14 +449,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 @@ -467,7 +469,7 @@ natural gas storage water heater - living space + conditioned space 40.0 1.0 38000.0 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house041.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house041.xml index 02ef70c8..43d9f327 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house041.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house041.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -119,7 +123,7 @@ outside - living space + conditioned space 110.0 @@ -129,7 +133,7 @@ garage - living space + conditioned space 43.0 @@ -139,7 +143,7 @@ outside - living space + conditioned space 11.0 @@ -149,7 +153,7 @@ outside - living space + conditioned space 26.0 @@ -159,7 +163,7 @@ attic - unvented - living space + conditioned space 26.0 @@ -171,7 +175,7 @@ outside - living space + conditioned space @@ -185,7 +189,7 @@ garage - living space + conditioned space @@ -199,7 +203,7 @@ attic - unvented - living space + conditioned space @@ -272,7 +276,7 @@ attic - unvented - living space + conditioned space @@ -285,7 +289,7 @@ attic - unvented - living space + conditioned space @@ -298,7 +302,7 @@ outside - living space + conditioned space @@ -311,7 +315,7 @@ garage - living space + conditioned space @@ -325,10 +329,9 @@ - living space + conditioned space 216.0 42.0 - 0.0 @@ -348,8 +351,7 @@ basement - conditioned 1453.0 - 164.0 - 6.0 + 121.0 @@ -370,7 +372,6 @@ garage 625.0 100.0 - 0.0 @@ -688,7 +689,7 @@ - living space + conditioned space @@ -703,7 +704,7 @@ - living space + conditioned space central air conditioner electricity @@ -746,14 +747,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 6 @@ -779,7 +780,7 @@ natural gas storage water heater - living space + conditioned space 50.0 1.0 0.55 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house042.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house042.xml index 1a8f3ff4..10cb6d60 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house042.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house042.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -110,7 +114,7 @@ outside - living space + conditioned space 145.0 @@ -120,7 +124,7 @@ garage - living space + conditioned space 23.0 @@ -130,7 +134,7 @@ outside - living space + conditioned space 48.0 @@ -140,7 +144,7 @@ attic - unvented - living space + conditioned space 77.0 @@ -152,7 +156,7 @@ outside - living space + conditioned space @@ -166,7 +170,7 @@ garage - living space + conditioned space @@ -180,7 +184,7 @@ attic - unvented - living space + conditioned space @@ -274,7 +278,7 @@ attic - unvented - living space + conditioned space @@ -287,7 +291,7 @@ outside - living space + conditioned space @@ -300,7 +304,7 @@ outside - living space + conditioned space @@ -316,8 +320,7 @@ basement - conditioned 1544.0 - 188.0 - 6.0 + 148.0 @@ -338,7 +341,6 @@ garage 525.0 91.65 - 0.0 @@ -623,7 +625,7 @@ - living space + conditioned space @@ -638,7 +640,7 @@ - living space + conditioned space central air conditioner electricity @@ -681,14 +683,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 8 @@ -714,7 +716,7 @@ natural gas storage water heater - living space + conditioned space 40.0 1.0 0.61 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house043.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house043.xml index 4f34931d..d6af4ed9 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house043.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house043.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -108,7 +112,7 @@ outside - living space + conditioned space 111.5 @@ -118,7 +122,7 @@ garage - living space + conditioned space 25.0 @@ -128,7 +132,7 @@ outside - living space + conditioned space 77.0 @@ -138,7 +142,7 @@ attic - unvented - living space + conditioned space 41.0 @@ -150,7 +154,7 @@ outside - living space + conditioned space @@ -164,7 +168,7 @@ garage - living space + conditioned space @@ -178,7 +182,7 @@ attic - unvented - living space + conditioned space @@ -251,7 +255,7 @@ attic - unvented - living space + conditioned space @@ -264,7 +268,7 @@ outside - living space + conditioned space @@ -280,8 +284,7 @@ basement - conditioned 991.0 - 136.5 - 6.0 + 111.5 @@ -302,7 +305,6 @@ garage 330.0 72.66 - 0.0 @@ -507,7 +509,7 @@ - living space + conditioned space @@ -522,7 +524,7 @@ - living space + conditioned space central air conditioner electricity @@ -565,14 +567,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 5 @@ -598,7 +600,7 @@ natural gas storage water heater - living space + conditioned space 40.0 1.0 0.65 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house044.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house044.xml index 8acab959..6ed2ba99 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house044.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house044.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -103,7 +107,7 @@ - living space + conditioned space 502.0 dark 6.0 @@ -118,7 +122,7 @@ outside - living space + conditioned space 147.0 @@ -128,7 +132,7 @@ garage - living space + conditioned space 31.0 @@ -138,7 +142,7 @@ outside - living space + conditioned space 67.0 @@ -148,7 +152,7 @@ attic - unvented - living space + conditioned space 24.0 @@ -160,7 +164,7 @@ outside - living space + conditioned space @@ -174,7 +178,7 @@ garage - living space + conditioned space @@ -188,7 +192,7 @@ attic - unvented - living space + conditioned space @@ -261,7 +265,7 @@ attic - unvented - living space + conditioned space @@ -274,7 +278,7 @@ outside - living space + conditioned space @@ -287,7 +291,7 @@ outside - living space + conditioned space @@ -300,7 +304,7 @@ garage - living space + conditioned space @@ -316,8 +320,7 @@ basement - conditioned 1504.0 - 178.0 - 6.25 + 146.6 @@ -338,7 +341,6 @@ garage 27.0 20.78 - 0.0 @@ -566,7 +568,7 @@ - living space + conditioned space @@ -581,7 +583,7 @@ - living space + conditioned space central air conditioner electricity @@ -624,14 +626,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 7 @@ -657,7 +659,7 @@ natural gas storage water heater - living space + conditioned space 40.0 1.0 0.57 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house045.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house045.xml index d0f95a25..a43c208c 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house045.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house045.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -103,7 +107,7 @@ - living space + conditioned space 408.0 medium 6.0 @@ -128,7 +132,7 @@ outside - living space + conditioned space 107.0 @@ -138,7 +142,7 @@ garage - living space + conditioned space 32.0 @@ -148,7 +152,7 @@ outside - living space + conditioned space 46.0 @@ -158,7 +162,7 @@ attic - unvented - living space + conditioned space 30.0 @@ -170,7 +174,7 @@ outside - living space + conditioned space @@ -184,7 +188,7 @@ garage - living space + conditioned space @@ -278,7 +282,7 @@ attic - unvented - living space + conditioned space @@ -291,7 +295,7 @@ outside - living space + conditioned space @@ -308,7 +312,6 @@ basement - conditioned 1024.0 139.0 - 7.5 @@ -329,7 +332,6 @@ garage 632.0 100.56 - 0.0 @@ -464,7 +466,7 @@ - living space + conditioned space @@ -479,7 +481,7 @@ - living space + conditioned space central air conditioner electricity @@ -522,14 +524,14 @@ supply 0.0 - living space + conditioned space 1.0 return 0.0 - living space + conditioned space 1.0 4 @@ -555,7 +557,7 @@ natural gas storage water heater - living space + conditioned space 40.0 1.0 0.57 diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house046.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house046.xml index 067060aa..b4c178b9 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house046.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house046.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -86,7 +90,7 @@ outside - living space + conditioned space @@ -101,7 +105,7 @@ other housing unit - living space + conditioned space @@ -116,7 +120,7 @@ outside - living space + conditioned space @@ -131,7 +135,7 @@ other housing unit - living space + conditioned space @@ -148,7 +152,7 @@ attic - vented - living space + conditioned space ceiling @@ -162,7 +166,7 @@ other housing unit - living space + conditioned space floor @@ -313,7 +317,7 @@ electricity storage water heater - living space + conditioned space false 40.0 1.0 @@ -351,7 +355,7 @@ false - living space + conditioned space 3.06 196.0 0.1065 @@ -363,7 +367,7 @@ false - living space + conditioned space electricity 2.62 timer @@ -371,7 +375,7 @@ false - living space + conditioned space 270.0 12 0.12 @@ -381,12 +385,12 @@ - living space + conditioned space 525.0 - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house047.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house047.xml index 3d5082b8..cba8b361 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house047.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house047.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -59,7 +63,7 @@ outside - living space + conditioned space 39.3 0.8 0.75 @@ -71,7 +75,7 @@ other housing unit - living space + conditioned space 140.0 0.8 0.75 @@ -85,7 +89,7 @@ outside - living space + conditioned space @@ -100,7 +104,7 @@ other housing unit - living space + conditioned space @@ -117,7 +121,7 @@ other housing unit - living space + conditioned space ceiling @@ -132,11 +136,10 @@ - living space + conditioned space 718.0 4.0 23.7 - 0.0 @@ -238,14 +241,14 @@ supply 0.0 - living space + conditioned space 145.4 return 0.0 - living space + conditioned space 26.9 @@ -271,7 +274,7 @@ electricity instantaneous water heater - living space + conditioned space false 1.0 0.95 @@ -308,7 +311,7 @@ false - living space + conditioned space 2.06 152.0 0.12 @@ -320,7 +323,7 @@ false - living space + conditioned space electricity 3.73 timer @@ -328,7 +331,7 @@ false - living space + conditioned space 270.0 12 0.12 @@ -338,12 +341,12 @@ - living space + conditioned space 423.0 - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house048.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house048.xml index d16edd7c..b8d5684b 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house048.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house048.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -85,7 +89,7 @@ - living space + conditioned space 392.0 0.8 0.75 @@ -130,7 +134,7 @@ outside - living space + conditioned space @@ -145,7 +149,7 @@ outside - living space + conditioned space @@ -160,7 +164,7 @@ outside - living space + conditioned space @@ -175,7 +179,7 @@ outside - living space + conditioned space @@ -190,7 +194,7 @@ garage - living space + conditioned space @@ -205,7 +209,7 @@ attic - vented - living space + conditioned space @@ -220,7 +224,7 @@ attic - vented - living space + conditioned space @@ -252,7 +256,7 @@ attic - vented - living space + conditioned space @@ -265,7 +269,7 @@ attic - vented - living space + conditioned space @@ -278,7 +282,7 @@ garage - living space + conditioned space @@ -296,7 +300,6 @@ 484.0 4.0 61.8 - 0.0 @@ -318,11 +321,10 @@ - living space + conditioned space 2101.0 4.0 180.2 - 0.0 @@ -554,7 +556,7 @@ false - living space + conditioned space 2.2 300.0 0.0803 @@ -566,7 +568,7 @@ false - living space + conditioned space electricity 2.62 timer @@ -574,7 +576,7 @@ false - living space + conditioned space 270.0 12 0.12 @@ -584,12 +586,12 @@ - living space + conditioned space 709.0 - living space + conditioned space natural gas false diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house049.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house049.xml index e58468d0..0edb2511 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house049.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house049.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -100,7 +104,7 @@ outside - living space + conditioned space @@ -115,7 +119,7 @@ attic - vented - living space + conditioned space @@ -130,7 +134,7 @@ garage - living space + conditioned space @@ -162,7 +166,7 @@ attic - vented - living space + conditioned space @@ -180,7 +184,6 @@ 484.0 4.0 66.8 - 0.0 @@ -202,11 +205,10 @@ - living space + conditioned space 1491.0 4.0 167.6 - 0.0 @@ -552,7 +554,7 @@ electricity heat pump water heater - living space + conditioned space false 50.0 1.0 @@ -588,7 +590,7 @@ false - living space + conditioned space 3.06 196.0 0.1065 @@ -600,7 +602,7 @@ false - living space + conditioned space natural gas 2.32 moisture @@ -608,7 +610,7 @@ false - living space + conditioned space 270.0 12 0.12 @@ -618,12 +620,12 @@ - living space + conditioned space 900.0 - living space + conditioned space natural gas false diff --git a/example_files/resources/hpxml-measures/workflow/real_homes/house050.xml b/example_files/resources/hpxml-measures/workflow/real_homes/house050.xml index 308eb48b..c0df48e7 100644 --- a/example_files/resources/hpxml-measures/workflow/real_homes/house050.xml +++ b/example_files/resources/hpxml-measures/workflow/real_homes/house050.xml @@ -1,5 +1,5 @@ - + HPXML redacted @@ -8,7 +8,11 @@ - asset + + + Bills + + @@ -114,7 +118,7 @@ outside - living space + conditioned space @@ -129,7 +133,7 @@ garage - living space + conditioned space @@ -189,7 +193,7 @@ attic - vented - living space + conditioned space @@ -202,7 +206,7 @@ crawlspace - vented - living space + conditioned space @@ -220,7 +224,6 @@ 484.0 4.0 44.0 - 0.0 @@ -246,7 +249,6 @@ 1922.0 0.0 171.5 - 0.0 @@ -400,14 +402,14 @@ supply 8.0 - living space + conditioned space 518.9 return 8.0 - living space + conditioned space 76.9 @@ -485,7 +487,7 @@ false - living space + conditioned space 0.807 487.0 0.0803 @@ -497,7 +499,7 @@ false - living space + conditioned space electricity 2.62 moisture @@ -505,7 +507,7 @@ false - living space + conditioned space 239.0 12 0.12 @@ -515,12 +517,12 @@ - living space + conditioned space 691.0 - living space + conditioned space natural gas false diff --git a/example_files/resources/hpxml-measures/workflow/run_simulation.rb b/example_files/resources/hpxml-measures/workflow/run_simulation.rb index c3c1d28e..834e92a2 100644 --- a/example_files/resources/hpxml-measures/workflow/run_simulation.rb +++ b/example_files/resources/hpxml-measures/workflow/run_simulation.rb @@ -1,3 +1,8 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + # frozen_string_literal: true start_time = Time.now @@ -12,8 +17,8 @@ basedir = File.expand_path(File.dirname(__FILE__)) def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseries_outputs, skip_validation, add_comp_loads, - output_format, building_id, ep_input_format, stochastic_schedules, timeseries_time_column_types, - timeseries_output_variables, timeseries_timestamp_convention) + output_format, building_id, ep_input_format, stochastic_schedules, + timeseries_output_variables) measures_dir = File.join(basedir, '..') measures = {} @@ -26,6 +31,7 @@ def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseri args['hpxml_output_path'] = hpxml args['output_csv_path'] = File.join(rundir, 'stochastic.csv') args['debug'] = debug + args['building_id'] = building_id update_args_hash(measures, measure_subdir, args) end @@ -59,9 +65,7 @@ def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseri args['include_timeseries_zone_temperatures'] = timeseries_outputs.include? 'temperatures' args['include_timeseries_airflows'] = timeseries_outputs.include? 'airflows' args['include_timeseries_weather'] = timeseries_outputs.include? 'weather' - args['timeseries_timestamp_convention'] = timeseries_timestamp_convention - args['add_timeseries_dst_column'] = timeseries_time_column_types.include? 'DST' - args['add_timeseries_utc_column'] = timeseries_time_column_types.include? 'UTC' + args['include_timeseries_resilience'] = timeseries_outputs.include? 'resilience' args['user_output_variables'] = timeseries_output_variables.join(', ') unless timeseries_output_variables.empty? update_args_hash(measures, measure_subdir, args) @@ -80,7 +84,7 @@ def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseri timeseries_types = ['ALL', 'total', 'fuels', 'enduses', 'systemuses', 'emissions', 'emissionfuels', 'emissionenduses', 'hotwater', 'loads', 'componentloads', - 'unmethours', 'temperatures', 'airflows', 'weather'] + 'unmethours', 'temperatures', 'airflows', 'weather', 'resilience'] options = {} OptionParser.new do |opts| @@ -133,27 +137,17 @@ def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseri options[:stochastic_schedules] = true end - options[:timeseries_time_column_types] = [] - opts.on('--add-timeseries-time-column TYPE', ['DST', 'UTC'], 'Add timeseries time column (DST, UTC); can be called multiple times') do |t| - options[:timeseries_time_column_types] << t - end - options[:timeseries_output_variables] = [] - opts.on('--add-timeseries-output-variable NAME', 'Add timeseries output variable; can be called multiple times') do |t| + opts.on('-t', '--add-timeseries-output-variable NAME', 'Add timeseries output variable; can be called multiple times') do |t| options[:timeseries_output_variables] << t end - options[:timeseries_timestamp_convention] = 'start' - opts.on('--timeseries-timestamp-convention TYPE', ['start', 'end'], 'Convention (start, end) for timeseries timestamps') do |t| - options[:timeseries_timestamp_convention] = t - end - options[:ep_input_format] = 'idf' opts.on('--ep-input-format TYPE', 'EnergyPlus input file format (idf, epjson)') do |t| options[:ep_input_format] = t end - opts.on('-b', '--building-id ', 'ID of Building to simulate (required when multiple HPXML Building elements)') do |t| + opts.on('-b', '--building-id ID', 'ID of Building to simulate (required when multiple HPXML Building elements); use "ALL" to simulate a single whole MF building') do |t| options[:building_id] = t end @@ -244,8 +238,7 @@ def run_workflow(basedir, rundir, hpxml, debug, timeseries_output_freq, timeseri end success = run_workflow(basedir, rundir, options[:hpxml], options[:debug], timeseries_output_freq, timeseries_outputs, options[:skip_validation], options[:add_comp_loads], options[:output_format], options[:building_id], - options[:ep_input_format], options[:stochastic_schedules], options[:timeseries_time_column_types], - options[:timeseries_output_variables], options[:timeseries_timestamp_convention]) + options[:ep_input_format], options[:stochastic_schedules], options[:timeseries_output_variables]) if not success exit! 1 diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml index 8bc98c3b..79714740 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - coal - 3.3 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - coal - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + coal + 3.3 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + coal + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml index c2b70c57..4ba0f20a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml @@ -1,517 +1,516 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- TX -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 3A - - - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - portable - living space - 40.0 - 1.5 - 0.5 - 1.0 - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ TX +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 3A + + + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + conditioned space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + portable + conditioned space + 40.0 + 1.5 + 0.5 + 1.0 + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml index 2cca3547..3ffd1421 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml @@ -1,517 +1,516 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- TX -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 3A - - - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - whole-home - living space - 40.0 - 1.5 - 0.5 - 1.0 - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ TX +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 3A + + + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + conditioned space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + whole-home + conditioned space + 40.0 + 1.5 + 0.5 + 1.0 + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml index 4b4ead8f..2da0810e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml @@ -1,526 +1,525 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- TX -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 3A - - - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - portable - living space - 40.0 - 1.8 - 0.5 - 0.5 - - - - portable - living space - 30.0 - 1.6 - 0.5 - 0.25 - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ TX +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 3A + + + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + conditioned space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + portable + conditioned space + 40.0 + 1.8 + 0.5 + 0.5 + + + + portable + conditioned space + 30.0 + 1.6 + 0.5 + 0.25 + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml index bad5f383..886b706c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml @@ -1,517 +1,516 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- TX -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 3A - - - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - portable - living space - 40.0 - 1.8 - 0.5 - 1.0 - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ TX +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 3A + + + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + conditioned space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + portable + conditioned space + 40.0 + 1.8 + 0.5 + 1.0 + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml index 4d0937cb..a8f1f7ee 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - natural gas - 3.3 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - natural gas - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + natural gas + 3.3 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + natural gas + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml index b700d16e..d00ef07c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.65 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 4.29 - false - - - - living space - 0.7 - 6 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.65 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 4.29 + false + + + + conditioned space + 0.7 + 6 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml index 9b43b359..73483e67 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml @@ -1,506 +1,506 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil-location-miami-fl.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil-location-miami-fl.xml deleted file mode 100644 index 805f97de..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil-location-miami-fl.xml +++ /dev/null @@ -1,551 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- FL -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 1A - - - - USA_FL_Miami.Intl.AP.722020_TMY3 - - USA_FL_Miami.Intl.AP.722020_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - fuel oil - 3.3 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - fuel oil - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml index 88c4fab8..4c332e9d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - fuel oil - 3.3 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - fuel oil - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + fuel oil + 3.3 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + fuel oil + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane-location-portland-or.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane-location-portland-or.xml deleted file mode 100644 index 62729d72..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane-location-portland-or.xml +++ /dev/null @@ -1,551 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- OR -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 4C - - - - USA_OR_Portland.Intl.AP.726980_TMY3 - - USA_OR_Portland.Intl.AP.726980_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - propane - 3.3 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - propane - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml index 41c8f8dd..145d84d2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - propane - 3.3 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - propane - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + propane + 3.3 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + propane + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml index b382a3c1..cf20c6c0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - wood - 3.3 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - wood - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + wood + 3.3 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + wood + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml index 7c510788..4e395aba 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml @@ -1,515 +1,515 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 32400.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 32400.0 - - - - - - - - - - - - - - - - - true - - - - - - - - - - - living space - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - - gypsum board - - 6.0 - false - - - 25.8 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1425.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 120.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 120.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 4.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 32400.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 32400.0 + + + + + + + + + + + + + + + + + true + + + + + + + + + + + conditioned space + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + + gypsum board + + 6.0 + false + + + 25.8 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1425.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 120.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 120.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 4.0 + conditioned space + 150.0 + + + + return + 0.0 + conditioned space + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml index f91fc4b8..2c04f6ae 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml @@ -1,632 +1,632 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 3.0 - 2.0 - 8.0 - 3 - 2 - 3600.0 - 23850.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 23850.0 - 15.0 - - - - - - - - true - - - - - - - - - false - - - false - - - - - - - - true - - - - - - - - - - - living space - 1006.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - - gypsum board - - 6.0 - false - - - 25.8 - - - - - attic - unvented - 504.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - attic - unvented - living space - - - - 316.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - living space - - - - 240.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 22.3 - - - - - outside - attic - unvented - gable - - - - 50.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 450.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 12.0 - 90 - 0.33 - 0.45 - 0.0 - - - - - 62.0 - 270 - 0.3 - 0.45 - 0.0 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 50.0 - to outside - - - - return - - CFM25 - 100.0 - to outside - - - - - supply - 4.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - electricity - storage water heater - basement - conditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - basement - conditioned - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - basement - conditioned - electricity - 3.73 - true - 150.0 - - - - basement - conditioned - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - basement - conditioned - 650.0 - true - - - - basement - conditioned - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 3276.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 3.0 + 2.0 + 8.0 + 3 + 2 + 3600.0 + 23850.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 23850.0 + 15.0 + + + + + + + + true + + + + + + + + + false + + + false + + + + + + + + true + + + + + + + + + + + conditioned space + 1006.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + + gypsum board + + 6.0 + false + + + 25.8 + + + + + attic - unvented + 504.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + attic - unvented + conditioned space + + + + 316.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + conditioned space + + + + 240.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 22.3 + + + + + outside + attic - unvented + gable + + + + 50.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 450.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 90 + 0.33 + 0.45 + 0.0 + + + + + 62.0 + 270 + 0.3 + 0.45 + 0.0 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 5.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 4.0 + conditioned space + 150.0 + + + + return + 0.0 + conditioned space + 50.0 + + + + + + + + + electricity + storage water heater + basement - conditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + basement - conditioned + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + basement - conditioned + electricity + 3.73 + true + 150.0 + + + + basement - conditioned + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + basement - conditioned + 650.0 + true + + + + basement - conditioned + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 3276.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml index 2b548d64..999e0327 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml @@ -1,515 +1,515 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - - - - - - - - - - true - - - - - - - - - - - living space - 1350.0 - asphalt or fiberglass shingles - 0.7 - 0.92 - - gypsum board - - 0.0 - false - - - 25.8 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 4.0 - basement - conditioned - 150.0 - - - - return - 0.0 - basement - conditioned - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + + + + + + + + + + true + + + + + + + + + + + conditioned space + 1350.0 + asphalt or fiberglass shingles + 0.7 + 0.92 + + gypsum board + + 0.0 + false + + + 25.8 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 4.0 + basement - conditioned + 150.0 + + + + return + 0.0 + basement - conditioned + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml index a91d8372..8bca7656 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml @@ -1,509 +1,508 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- TX -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 3A - - - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - true - 2 - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 8.7 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ TX +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 3A + + + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + true + 2 + + + 2.3 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 8.7 + + + + + + + conditioned space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml index ec4f7e5a..3f23eee5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 25.8 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 2.1 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 25.8 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 2.1 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml index 331d0e75..24852786 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - true - - - - SLA - 0.003 - - - - - - - - - - - - true - - - - - - - - - - - attic - vented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - vented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - vented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - vented - 150.0 - - - - return - 0.0 - attic - vented - 50.0 - - - - - - - - - electricity - storage water heater - attic - vented - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + true + + + + SLA + 0.003 + + + + + + + + + + + + true + + + + + + + + + + + attic - vented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - vented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - vented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - vented + 150.0 + + + + return + 0.0 + attic - vented + 50.0 + + + + + + + + + electricity + storage water heater + attic - vented + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml index 326e21e8..d8210d7b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -11,7 +11,6 @@ 60 - ../../HPXMLtoOpenStudio/resources/schedule_files/battery.csv Bills @@ -52,6 +51,9 @@ 2700.0 21600.0 + + ../../HPXMLtoOpenStudio/resources/schedule_files/battery.csv + @@ -140,7 +142,7 @@ outside - living space + conditioned space @@ -205,7 +207,7 @@ attic - unvented - living space + conditioned space ceiling @@ -400,7 +402,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -449,7 +451,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -460,7 +462,7 @@ - living space + conditioned space electricity 3.73 true @@ -468,7 +470,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -478,13 +480,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-battery.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-battery.xml index c6e6c13d..027f6430 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-battery.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-battery.xml @@ -1,569 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - outside - Li-ion - - kWh - 20.0 - - - kWh - 18.0 - - 6000.0 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + outside + Li-ion + + kWh + 20.0 + + + kWh + 18.0 + + 6000.0 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml similarity index 95% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml index edcf411c..3b81e862 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml @@ -1,466 +1,466 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other multifamily buffer space - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - - - other multifamily buffer space - living space - floor - - - - 900.0 - - - 18.7 - - - - - other multifamily buffer space - living space - ceiling - - - - 900.0 - - gypsum board - - - - 18.7 - - - - - - - 12.4 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 12.4 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 18.5 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - 20.0 - 0 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 150.0 - - - - return - 0.0 - other multifamily buffer space - 50.0 - - - - - - - - - electricity - storage water heater - other multifamily buffer space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - other multifamily buffer space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - other multifamily buffer space - electricity - 3.73 - true - 150.0 - - - - other multifamily buffer space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - other multifamily buffer space - 650.0 - true - - - - other multifamily buffer space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other multifamily buffer space + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + + + other multifamily buffer space + conditioned space + floor + + + + 900.0 + + + 18.7 + + + + + other multifamily buffer space + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 18.7 + + + + + + + 12.4 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.4 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 18.5 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + 20.0 + 0 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 150.0 + + + + return + 0.0 + other multifamily buffer space + 50.0 + + + + + + + + + electricity + storage water heater + other multifamily buffer space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + other multifamily buffer space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + other multifamily buffer space + electricity + 3.73 + true + 150.0 + + + + other multifamily buffer space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + other multifamily buffer space + 650.0 + true + + + + other multifamily buffer space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml similarity index 92% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml index 3b298aa8..1381e3c3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml @@ -1,578 +1,578 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other heated space - living space - - - - 100.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other multifamily buffer space - living space - - - - 100.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other non-freezing space - living space - - - - 100.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 100.0 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - other non-freezing space - living space - floor - - - - 550.0 - - - 18.7 - - - - - other multifamily buffer space - living space - floor - - - - 200.0 - - - 18.7 - - - - - other heated space - living space - floor - - - - 150.0 - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 50.0 - 270 - 0.33 - 0.45 - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - 20.0 - 0 - 4.4 - - - - - 20.0 - 0 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - other housing unit - 50.0 - - - - supply - 4.0 - roof deck - 150.0 - - - - return - 0.0 - roof deck - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other heated space + conditioned space + + + + 100.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other multifamily buffer space + conditioned space + + + + 100.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other non-freezing space + conditioned space + + + + 100.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 100.0 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + other non-freezing space + conditioned space + floor + + + + 550.0 + + + 18.7 + + + + + other multifamily buffer space + conditioned space + floor + + + + 200.0 + + + 18.7 + + + + + other heated space + conditioned space + floor + + + + 150.0 + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 50.0 + 270 + 0.33 + 0.45 + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + 20.0 + 0 + 4.4 + + + + + 20.0 + 0 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + conditioned space + 150.0 + + + + return + 0.0 + other housing unit + 50.0 + + + + supply + 4.0 + roof deck + 150.0 + + + + return + 0.0 + roof deck + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml similarity index 95% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml index eacccbaa..7f94cf68 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml @@ -1,466 +1,466 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other non-freezing space - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - - - other non-freezing space - living space - floor - - - - 900.0 - - - 18.7 - - - - - other non-freezing space - living space - ceiling - - - - 900.0 - - gypsum board - - - - 18.7 - - - - - - - 12.4 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 12.4 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 18.5 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - 20.0 - 0 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - other non-freezing space - 150.0 - - - - return - 0.0 - other non-freezing space - 50.0 - - - - - - - - - electricity - storage water heater - other non-freezing space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - other non-freezing space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - other non-freezing space - electricity - 3.73 - true - 150.0 - - - - other non-freezing space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - other non-freezing space - 650.0 - true - - - - other non-freezing space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other non-freezing space + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + + + other non-freezing space + conditioned space + floor + + + + 900.0 + + + 18.7 + + + + + other non-freezing space + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 18.7 + + + + + + + 12.4 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.4 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 18.5 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + 20.0 + 0 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + other non-freezing space + 150.0 + + + + return + 0.0 + other non-freezing space + 50.0 + + + + + + + + + electricity + storage water heater + other non-freezing space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + other non-freezing space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + other non-freezing space + electricity + 3.73 + true + 150.0 + + + + other non-freezing space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + other non-freezing space + 650.0 + true + + + + other non-freezing space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml similarity index 95% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml index 651cb02b..3afd0d03 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml @@ -1,466 +1,466 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other heated space - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - - - other heated space - living space - floor - - - - 900.0 - - - 18.7 - - - - - other heated space - living space - ceiling - - - - 900.0 - - gypsum board - - - - 18.7 - - - - - - - 12.4 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 12.4 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 18.5 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - 20.0 - 0 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - other heated space - 150.0 - - - - return - 0.0 - other heated space - 50.0 - - - - - - - - - electricity - storage water heater - other heated space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - other heated space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - other heated space - electricity - 3.73 - true - 150.0 - - - - other heated space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - other heated space - 650.0 - true - - - - other heated space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other heated space + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + + + other heated space + conditioned space + floor + + + + 900.0 + + + 18.7 + + + + + other heated space + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 18.7 + + + + + + + 12.4 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.4 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 18.5 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + 20.0 + 0 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + other heated space + 150.0 + + + + return + 0.0 + other heated space + 50.0 + + + + + + + + + electricity + storage water heater + other heated space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + other heated space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + other heated space + electricity + 3.73 + true + 150.0 + + + + other heated space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + other heated space + 650.0 + true + + + + other heated space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml similarity index 95% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml index 3526c8b0..51be7fb5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml @@ -1,466 +1,466 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 12.4 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 12.4 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 18.5 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - 20.0 - 0 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - other housing unit - 150.0 - - - - return - 0.0 - other housing unit - 50.0 - - - - - - - - - electricity - storage water heater - other housing unit - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - other housing unit - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - other housing unit - electricity - 3.73 - true - 150.0 - - - - other housing unit - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - other housing unit - 650.0 - true - - - - other housing unit - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 12.4 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.4 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 18.5 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + 20.0 + 0 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + other housing unit + 150.0 + + + + return + 0.0 + other housing unit + 50.0 + + + + + + + + + electricity + storage water heater + other housing unit + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + other housing unit + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + other housing unit + electricity + 3.73 + true + 150.0 + + + + other housing unit + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + other housing unit + 650.0 + true + + + + other housing unit + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-infil-compartmentalization-test.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-infil-compartmentalization-test.xml similarity index 95% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-infil-compartmentalization-test.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-infil-compartmentalization-test.xml index f1c4eb6b..80720daa 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-infil-compartmentalization-test.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-infil-compartmentalization-test.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -101,7 +101,7 @@ outside - living space + conditioned space @@ -120,7 +120,7 @@ other housing unit - living space + conditioned space @@ -140,7 +140,7 @@ other housing unit - living space + conditioned space floor @@ -154,7 +154,7 @@ other housing unit - living space + conditioned space ceiling @@ -289,14 +289,14 @@ supply 0.0 - living space + conditioned space 150.0
return 0.0 - living space + conditioned space 50.0 @@ -308,7 +308,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -341,7 +341,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -352,7 +352,7 @@ - living space + conditioned space electricity 3.73 true @@ -360,7 +360,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -370,13 +370,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-residents-1.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-residents-1.xml similarity index 95% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-residents-1.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-residents-1.xml index 8958d6ed..7017e93d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-residents-1.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-residents-1.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -101,7 +101,7 @@ outside - living space + conditioned space @@ -120,7 +120,7 @@ other housing unit - living space + conditioned space @@ -140,7 +140,7 @@ other housing unit - living space + conditioned space floor @@ -154,7 +154,7 @@ other housing unit - living space + conditioned space ceiling @@ -289,14 +289,14 @@ supply 0.0 - living space + conditioned space 150.0 return 0.0 - living space + conditioned space 50.0 @@ -308,7 +308,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -341,7 +341,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -352,7 +352,7 @@ - living space + conditioned space electricity 3.73 true @@ -360,7 +360,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -370,13 +370,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml index 939714e5..2d91a8d9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml @@ -1,436 +1,436 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - - - - - - 68.0 - 78.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + + + + + + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml index 872796c2..680ead6a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml @@ -1,468 +1,468 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - 150.0 - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - 150.0 - - - - - - 68.0 - 78.0 - - - - - - fan coil - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + 150.0 + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + 150.0 + + + + + + 68.0 + 78.0 + + + + + + fan coil + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml index aabe1fb5..2c8e3b9c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml @@ -1,438 +1,438 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - 150.0 - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - 150.0 - - - - - - 68.0 - 78.0 - - - - - - fan coil - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + 150.0 + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + 150.0 + + + + + + 68.0 + 78.0 + + + + + + fan coil + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml index 21cd5c56..faece185 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml @@ -1,490 +1,490 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - - - - - - water-loop-to-air - electricity - 24000.0 - 24000.0 - - EER - 12.8 - - - COP - 4.4 - - - - - - 68.0 - 78.0 - - - - - - water loop - - - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + + + + + + water-loop-to-air + electricity + 24000.0 + 24000.0 + + EER + 12.8 + + + COP + 4.4 + + + + + + 68.0 + 78.0 + + + + + + water loop + + + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml index 081561df..7b90dea3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml @@ -1,485 +1,485 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - - - - - - true - 6 - cooling tower - electricity - 1.0 - - 600.0 - - - - - - water-loop-to-air - electricity - 24000.0 - 24000.0 - - EER - 12.8 - - - COP - 4.4 - - - - - - 68.0 - 78.0 - - - - - - water loop - - - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + + + + + + true + 6 + cooling tower + electricity + 1.0 + + 600.0 + + + + + + water-loop-to-air + electricity + 24000.0 + 24000.0 + + EER + 12.8 + + + COP + 4.4 + + + + + + 68.0 + 78.0 + + + + + + water loop + + + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml similarity index 92% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml index fec17aeb..9b65a799 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml @@ -1,417 +1,417 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml index d7374424..9481274b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml @@ -1,448 +1,448 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - 150.0 - - - - - - 68.0 - - - - - - fan coil - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + 150.0 + + + + + + 68.0 + + + + + + fan coil + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml similarity index 92% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml index a3afb1a2..76e2aa9c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml @@ -1,415 +1,415 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - 500.0 - - - - - 68.0 - - - - - - fan coil - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + 500.0 + + + + + 68.0 + + + + + + fan coil + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml new file mode 100644 index 00000000..dd31ff9d --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml @@ -0,0 +1,433 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 0.75 + + 600.0 + 150.0 + + + + + + + + electricity + + Percent + 1.0 + + 0.25 + + 0.0 + + + + + + 68.0 + + + + + + fan coil + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml similarity index 92% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml index ee59923b..4d719eeb 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml @@ -1,418 +1,418 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - 150.0 - - - - - - 68.0 - - - - - - fan coil - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + 150.0 + + + + + + 68.0 + + + + + + fan coil + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml index 3962a6b0..a3ffe052 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml @@ -1,466 +1,466 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - - - - natural gas - - AFUE - 0.92 - - 1.0 - - 600.0 - - - - - - water-loop-to-air - electricity - 24000.0 - - COP - 4.4 - - - - - - 68.0 - - - - - - water loop - - - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + + + + natural gas + + AFUE + 0.92 + + 1.0 + + 600.0 + + + + + + water-loop-to-air + electricity + 24000.0 + + COP + 4.4 + + + + + + 68.0 + + + + + + water loop + + + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml index cb33792d..a9c22a15 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml @@ -1,417 +1,417 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - - - - - - manual thermostat - 78.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + + + + + + manual thermostat + 78.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml index f3e649ad..69908ee7 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml @@ -1,448 +1,448 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - 150.0 - - - - - - manual thermostat - 78.0 - - - - - - fan coil - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + 150.0 + + + + + + manual thermostat + 78.0 + + + + + + fan coil + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml index 342b716c..f53d681f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml @@ -1,418 +1,418 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - 150.0 - - - - - - manual thermostat - 78.0 - - - - - - fan coil - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + 150.0 + + + + + + manual thermostat + 78.0 + + + + + + fan coil + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml index e90a2a3f..5940628d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml @@ -1,466 +1,466 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - chiller - electricity - 144000.0 - 1.0 - - kW/ton - 0.9 - - - 600.0 - - - - - - water-loop-to-air - electricity - 24000.0 - - EER - 12.8 - - - - - - manual thermostat - 78.0 - - - - - - water loop - - - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + chiller + electricity + 144000.0 + 1.0 + + kW/ton + 0.9 + + + 600.0 + + + + + + water-loop-to-air + electricity + 24000.0 + + EER + 12.8 + + + + + + manual thermostat + 78.0 + + + + + + water loop + + + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml index 5a27aa89..fdf8c117 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml @@ -1,461 +1,461 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - true - 6 - cooling tower - electricity - 1.0 - - 600.0 - - - - - - water-loop-to-air - electricity - 24000.0 - - EER - 12.8 - - - - - - manual thermostat - 78.0 - - - - - - water loop - - - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 10.0 - to outside - - - - - supply - 0.0 - other multifamily buffer space - 50.0 - - - - return - 0.0 - other multifamily buffer space - 20.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + true + 6 + cooling tower + electricity + 1.0 + + 600.0 + + + + + + water-loop-to-air + electricity + 24000.0 + + EER + 12.8 + + + + + + manual thermostat + 78.0 + + + + + + water loop + + + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 10.0 + to outside + + + + + supply + 0.0 + other multifamily buffer space + 50.0 + + + + return + 0.0 + other multifamily buffer space + 20.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-generator.xml similarity index 92% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-generator.xml index c606f998..5dd99f43 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-generator.xml @@ -1,471 +1,471 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - true - propane - 85000.0 - 12000.0 - 18 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + conditioned space + 150.0 + + + + return + 0.0 + conditioned space + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + true + propane + 85000.0 + 12000.0 + 18 + + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml similarity index 92% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml index ea602a02..223f5c2e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml @@ -1,463 +1,463 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - true - 6 - ground-to-air - electricity - 12000.0 - 12000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 12000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 0.0 - 600.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + true + 6 + ground-to-air + electricity + 12000.0 + 12000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 12000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 0.0 + 600.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + conditioned space + 150.0 + + + + return + 0.0 + conditioned space + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml index 631f8fd1..6618c49e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -98,7 +98,7 @@ outside - living space + conditioned space @@ -117,7 +117,7 @@ other housing unit - living space + conditioned space @@ -137,7 +137,7 @@ other housing unit - living space + conditioned space floor @@ -151,7 +151,7 @@ other housing unit - living space + conditioned space ceiling @@ -286,14 +286,14 @@ supply 0.0 - living space + conditioned space 150.0 return 0.0 - living space + conditioned space 50.0 @@ -305,7 +305,7 @@ natural gas storage water heater - living space + conditioned space true 3 60.0 @@ -319,7 +319,7 @@ natural gas storage water heater - living space + conditioned space true 3 60.0 @@ -389,13 +389,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml index 922c6ce7..8fdd9cee 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml @@ -1,467 +1,467 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - natural gas - storage water heater - living space - true - 6 - 120.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - true - - other heated space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - true - other heated space - electricity - 3.73 - true - 150.0 - - - - true - - other heated space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + conditioned space + 150.0 + + + + return + 0.0 + conditioned space + 50.0 + + + + + + + + + natural gas + storage water heater + conditioned space + true + 6 + 120.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + true + + other heated space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + true + other heated space + electricity + 3.73 + true + 150.0 + + + + true + + other heated space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-multiple.xml similarity index 94% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-multiple.xml index 1f9b9350..d0ce8418 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-multiple.xml @@ -1,681 +1,681 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 6000.0 - - AFUE - 0.92 - - 0.5 - - - - - - - - natural gas - 6000.0 - - AFUE - 0.92 - - 0.5 - - - - - central air conditioner - electricity - 6000.0 - single stage - 0.5 - - SEER - 13.0 - - 0.73 - - - - - central air conditioner - electricity - 6000.0 - single stage - 0.5 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - - supply only - 1000.0 - 24.0 - true - true - 0.0 - 300.0 - - 100.0 - - natural gas - - 0.92 - COP - - 0.8 - - - electricity - - 4.0 - COP - - 0.8 - - - - - - energy recovery ventilator - 24.0 - 500.0 - true - true - 0.4 - 0.48 - 0.72 - 150.0 - - 50.0 - - natural gas - - 0.87 - COP - - 1.0 - - - electricity - - 3.5 - COP - - 1.0 - - - - - - heat recovery ventilator - 500.0 - 24.0 - true - true - 0.3 - 0.72 - 150.0 - - 50.0 - - electricity - - 4.0 - COP - - 1.0 - - - electricity - - 4.5 - COP - - 1.0 - - - - - - balanced - 300.0 - 24.0 - true - true - 0.3 - 150.0 - - 30.0 - - electricity - - 3.5 - COP - - 0.9 - - - electricity - - 4.0 - COP - - 1.0 - - - - - - exhaust only - 700.0 - 8.0 - true - true - 0.0 - 300.0 - - 70.0 - - - - - exhaust only - 50.0 - 14.0 - true - 10.0 - - - - central fan integrated supply - - air handler fan - - 160.0 - 8.0 - true - 150.0 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 6000.0 + + AFUE + 0.92 + + 0.5 + + + + + + + + natural gas + 6000.0 + + AFUE + 0.92 + + 0.5 + + + + + central air conditioner + electricity + 6000.0 + single stage + 0.5 + + SEER + 13.0 + + 0.73 + + + + + central air conditioner + electricity + 6000.0 + single stage + 0.5 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + conditioned space + 150.0 + + + + return + 0.0 + conditioned space + 50.0 + + + + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + conditioned space + 150.0 + + + + return + 0.0 + conditioned space + 50.0 + + + + + + + + + + supply only + 1000.0 + 24.0 + true + true + 0.0 + 300.0 + + 100.0 + + natural gas + + 0.92 + COP + + 0.8 + + + electricity + + 4.0 + COP + + 0.8 + + + + + + energy recovery ventilator + 24.0 + 500.0 + true + true + 0.4 + 0.48 + 0.72 + 150.0 + + 50.0 + + natural gas + + 0.87 + COP + + 1.0 + + + electricity + + 3.5 + COP + + 1.0 + + + + + + heat recovery ventilator + 500.0 + 24.0 + true + true + 0.3 + 0.72 + 150.0 + + 50.0 + + electricity + + 4.0 + COP + + 1.0 + + + electricity + + 4.5 + COP + + 1.0 + + + + + + balanced + 300.0 + 24.0 + true + true + 0.3 + 150.0 + + 30.0 + + electricity + + 3.5 + COP + + 0.9 + + + electricity + + 4.0 + COP + + 1.0 + + + + + + exhaust only + 700.0 + 8.0 + true + true + 0.0 + 300.0 + + 70.0 + + + + + exhaust only + 50.0 + 14.0 + true + 10.0 + + + + central fan integrated supply + + air handler fan + + 160.0 + 8.0 + true + 150.0 + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml index c75da40d..0522bd4d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml @@ -1,500 +1,500 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - - supply only - 800.0 - 24.0 - true - true - 0.5 - 240.0 - - 80.0 - - natural gas - - 0.92 - COP - - 0.7 - - - electricity - - 4.0 - COP - - 0.8 - - - - - - exhaust only - 72.0 - 24.0 - true - 26.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + conditioned space + 150.0 + + + + return + 0.0 + conditioned space + 50.0 + + + + + + + + + + supply only + 800.0 + 24.0 + true + true + 0.5 + 240.0 + + 80.0 + + natural gas + + 0.92 + COP + + 0.7 + + + electricity + + 4.0 + COP + + 0.8 + + + + + + exhaust only + 72.0 + 24.0 + true + 26.0 + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent.xml index d7543bf2..4d74fdeb 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent.xml @@ -1,484 +1,484 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - - supply only - 800.0 - 24.0 - true - true - 0.5 - 240.0 - - 80.0 - - - - - exhaust only - 72.0 - 24.0 - true - 26.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + conditioned space + 150.0 + + + + return + 0.0 + conditioned space + 50.0 + + + + + + + + + + supply only + 800.0 + 24.0 + true + true + 0.5 + 240.0 + + 80.0 + + + + + exhaust only + 72.0 + 24.0 + true + 26.0 + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-pv.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-pv.xml index f4354a72..16b6539e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-pv.xml @@ -1,480 +1,480 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - true - ground - standard - fixed - 225 - 30.0 - 30000.0 - 0.14 - - - 18 - - - - - 0.96 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + conditioned space + 150.0 + + + + return + 0.0 + conditioned space + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + true + ground + standard + fixed + 225 + 30.0 + 30000.0 + 0.14 + + + 18 + + + + + 0.96 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml similarity index 92% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml index c26ecc46..41eda7c5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml @@ -1,469 +1,469 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - natural gas - storage water heater - living space - true - 6 - 120.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - 6 - 220.0 - timer - - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + conditioned space + 150.0 + + + + return + 0.0 + conditioned space + 50.0 + + + + + + + + + natural gas + storage water heater + conditioned space + true + 6 + 120.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + 6 + 220.0 + timer + + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater.xml similarity index 92% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater.xml index bf53a336..ffa45500 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater.xml @@ -1,462 +1,462 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - natural gas - storage water heater - living space - true - 6 - 120.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + conditioned space + 150.0 + + + + return + 0.0 + conditioned space + 50.0 + + + + + + + + + natural gas + storage water heater + conditioned space + true + 6 + 120.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit.xml similarity index 92% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit.xml index 3505b2dc..2d986a8f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit.xml @@ -1,459 +1,459 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - attached on one side - unit above and below - 180 - - electricity - natural gas - - - - apartment unit - 1.0 - 1.0 - 8.0 - 3 - 2 - 900.0 - 7200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - unit exterior only - 50.0 - - ACH - 3.0 - - 7200.0 - - - - - - - - - - - - - - - - - - - - - - outside - living space - - - - 685.9 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - other housing unit - living space - - - - 293.9 - 0.7 - 0.92 - - gypsum board - - - - 4.0 - - - - - - - other housing unit - living space - floor - - - - 900.0 - - - 2.1 - - - - - other housing unit - living space - ceiling - - - - 900.0 - - gypsum board - - - - 2.1 - - - - - - - 35.3 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 35.3 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 52.9 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 12000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - living space - 150.0 - - - - return - 0.0 - living space - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 819.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 12000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + conditioned space + 150.0 + + + + return + 0.0 + conditioned space + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-attached-2stories.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-attached-2stories.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml index 300c49b0..d86669ad 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-attached-2stories.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -155,7 +155,7 @@ outside - living space + conditioned space @@ -174,7 +174,7 @@ other housing unit - living space + conditioned space @@ -276,7 +276,7 @@ attic - unvented - living space + conditioned space ceiling @@ -457,7 +457,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -490,7 +490,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -501,7 +501,7 @@ - living space + conditioned space electricity 3.73 true @@ -509,7 +509,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -519,13 +519,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-attached-atticroof-cathedral.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-attached-atticroof-cathedral.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml index c494b044..0d8f0440 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-attached-atticroof-cathedral.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -107,7 +107,7 @@ - living space + conditioned space 1006.2 asphalt or fiberglass shingles 0.7 @@ -154,7 +154,7 @@ outside - living space + conditioned space @@ -173,7 +173,7 @@ other housing unit - living space + conditioned space @@ -386,14 +386,14 @@ supply 4.0 - living space + conditioned space 112.5 return 0.0 - living space + conditioned space 37.5 @@ -405,7 +405,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -438,7 +438,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -449,7 +449,7 @@ - living space + conditioned space electricity 3.73 true @@ -457,7 +457,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -467,13 +467,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-attached-infil-compartmentalization-test.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-attached-infil-compartmentalization-test.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml index 6068c2b0..779b12a8 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-attached-infil-compartmentalization-test.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -155,7 +155,7 @@ outside - living space + conditioned space @@ -174,7 +174,7 @@ other housing unit - living space + conditioned space @@ -276,7 +276,7 @@ attic - unvented - living space + conditioned space ceiling @@ -457,7 +457,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -490,7 +490,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -501,7 +501,7 @@ - living space + conditioned space electricity 3.73 true @@ -509,7 +509,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -519,13 +519,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-attached.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit.xml similarity index 97% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-attached.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit.xml index 4b4243ac..71e7907e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-attached.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -155,7 +155,7 @@ outside - living space + conditioned space @@ -174,7 +174,7 @@ other housing unit - living space + conditioned space @@ -276,7 +276,7 @@ attic - unvented - living space + conditioned space ceiling @@ -457,7 +457,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -490,7 +490,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -501,7 +501,7 @@ - living space + conditioned space electricity 3.73 true @@ -509,7 +509,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -519,13 +519,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml index 538e5cea..0182ebfd 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml @@ -1,505 +1,505 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - space-heating boiler with tankless coil - other exterior - 1.0 - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + space-heating boiler with tankless coil + other exterior + 1.0 + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml index 5e9d52c2..67befdf0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml @@ -1,505 +1,505 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - space-heating boiler with tankless coil - living space - 1.0 - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + space-heating boiler with tankless coil + conditioned space + 1.0 + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml index d3161450..8a3c601f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml @@ -1,539 +1,539 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - two stage - 1.0 - - SEER - 18.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - true - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + two stage + 1.0 + + SEER + 18.0 + + 0.73 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + true + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml index 84dd838c..1d637395 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - true - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + true + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml index af1c9db3..b07ed278 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 80.0 - 1.0 - 2.3 - 125.0 - true - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + conditioned space + 80.0 + 1.0 + 2.3 + 125.0 + true + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml index ecf7d73a..22ed2a80 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - instantaneous water heater - living space - 1.0 - 0.99 - 125.0 - true - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + instantaneous water heater + conditioned space + 1.0 + 0.99 + 125.0 + true + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml index 2642cce6..840585a1 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml @@ -1,539 +1,539 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - variable speed - 1.0 - - SEER - 24.0 - - 0.78 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - true - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + variable speed + 1.0 + + SEER + 24.0 + + 0.78 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + true + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml index 6d584730..12756ac6 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml @@ -1,539 +1,539 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - true - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + true + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml index e0f67ff5..1c8a5a92 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml @@ -1,558 +1,558 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - all - true - 0.55 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + all + true + 0.55 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml index 896684fd..cfe07902 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -11,7 +11,6 @@ 60 - ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv Bills @@ -52,6 +51,9 @@ 2700.0 21600.0 + + ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv + @@ -140,7 +142,7 @@ outside - living space + conditioned space @@ -205,7 +207,7 @@ attic - unvented - living space + conditioned space ceiling @@ -354,7 +356,7 @@ space-heating boiler with storage tank - living space + conditioned space 50.0 1.0 @@ -385,7 +387,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -396,7 +398,7 @@ - living space + conditioned space electricity 3.73 true @@ -404,7 +406,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -414,13 +416,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml index 780ecf7f..7fd5ba83 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml @@ -1,506 +1,506 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - DSE - - 0.8 - 0.7 - - - - - - space-heating boiler with storage tank - living space - 50.0 - 1.0 - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + DSE + + 0.8 + 0.7 + + + + + + space-heating boiler with storage tank + conditioned space + 50.0 + 1.0 + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml index 2815dd04..66f8d8e8 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml @@ -1,506 +1,506 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - space-heating boiler with storage tank - other exterior - 50.0 - 1.0 - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + space-heating boiler with storage tank + other exterior + 50.0 + 1.0 + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml index 32b5184e..5d9a3964 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml @@ -1,510 +1,510 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - space-heating boiler with storage tank - living space - 50.0 - 1.0 - - F/hr - 1.0 - - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + space-heating boiler with storage tank + conditioned space + 50.0 + 1.0 + + F/hr + 1.0 + + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml index 4f06276e..d04df581 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml @@ -1,514 +1,514 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - space-heating boiler with storage tank - living space - 50.0 - 1.0 - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - - 0.65 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + space-heating boiler with storage tank + conditioned space + 50.0 + 1.0 + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + + 0.65 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml index 4c138165..b990fa3a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml @@ -1,506 +1,506 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - space-heating boiler with storage tank - living space - 50.0 - 1.0 - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + space-heating boiler with storage tank + conditioned space + 50.0 + 1.0 + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml index d9e6b94d..fcc5f62f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml @@ -1,558 +1,558 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - - - 10.0 - - - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + + + 10.0 + + + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml index 73ae450b..420bc9d9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml @@ -1,559 +1,559 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - storage water heater - living space - 50.0 - 1.0 - 40000.0 - 0.59 - 0.76 - - - 10.0 - - - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + storage water heater + conditioned space + 50.0 + 1.0 + 40000.0 + 0.59 + 0.76 + + + 10.0 + + + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml index 11bba9a2..fe143b26 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml @@ -1,557 +1,557 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 80.0 - 1.0 - 2.3 - - - 10.0 - - - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + conditioned space + 80.0 + 1.0 + 2.3 + + + 10.0 + + + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml index 60f6126f..0eec0a6a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml @@ -1,511 +1,511 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - space-heating boiler with storage tank - living space - 50.0 - 1.0 - - - 10.0 - - - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + space-heating boiler with storage tank + conditioned space + 50.0 + 1.0 + + + 10.0 + + + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml index c9008537..feb01d95 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml @@ -1,553 +1,555 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - true - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + 2 + true + + + + faucet + 3 + 2.0 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml index ff41c81f..c0f28123 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml @@ -1,564 +1,564 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 0.2 - 18767.0 - 0.95 - 125.0 - - - - natural gas - storage water heater - living space - 50.0 - 0.2 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - electricity - heat pump water heater - living space - 80.0 - 0.2 - 2.3 - 125.0 - - - - electricity - instantaneous water heater - living space - 0.2 - 0.99 - 125.0 - - - - natural gas - instantaneous water heater - living space - 0.1 - 0.82 - 125.0 - - - - space-heating boiler with storage tank - living space - 50.0 - 0.1 - 125.0 - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 0.65 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 0.2 + 18767.0 + 0.95 + 125.0 + + + + natural gas + storage water heater + conditioned space + 50.0 + 0.2 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + electricity + heat pump water heater + conditioned space + 80.0 + 0.2 + 2.3 + 125.0 + + + + electricity + instantaneous water heater + conditioned space + 0.2 + 0.99 + 125.0 + + + + natural gas + instantaneous water heater + conditioned space + 0.1 + 0.82 + 125.0 + + + + space-heating boiler with storage tank + conditioned space + 50.0 + 0.1 + 125.0 + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 0.65 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml index a1362213..e2e6490d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml @@ -1,490 +1,490 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml index f68de797..588df816 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - presence sensor demand control - 50.0 - 50.0 - 50.0 - - - - 3.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + presence sensor demand control + 50.0 + 50.0 + 50.0 + + + + 3.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml index 23ac9346..16658f20 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - manual demand control - 50.0 - 50.0 - 50.0 - - - - 3.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + manual demand control + 50.0 + 50.0 + 50.0 + + + + 3.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml index 3ae92a76..6f30c937 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - no control - 50.0 - 50.0 - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + no control + 50.0 + 50.0 + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml index f4bcda54..6c630783 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - temperature - 50.0 - 50.0 - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + temperature + 50.0 + 50.0 + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml index cd37103f..61c9e9f4 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - timer - 50.0 - 50.0 - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + timer + 50.0 + 50.0 + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml index ff0940f5..3a7b378c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml @@ -1,568 +1,568 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - liquid direct - evacuated tube - 180 - 20.0 - 0.5 - 0.2799 - 60.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + liquid direct + evacuated tube + 180 + 20.0 + 0.5 + 0.2799 + 60.0 + + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml index 0b0e2f14..c9f74d53 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml @@ -1,568 +1,568 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - liquid direct - single glazing black - 180 - 20.0 - 0.77 - 0.793 - 60.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + liquid direct + single glazing black + 180 + 20.0 + 0.77 + 0.793 + 60.0 + + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml index 7a83744c..bcbe6330 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml @@ -1,568 +1,568 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - liquid direct - integrated collector storage - 180 - 20.0 - 0.77 - 0.793 - 60.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + liquid direct + integrated collector storage + 180 + 20.0 + 0.77 + 0.793 + 60.0 + + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml index 9acedfca..d21d4378 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml @@ -1,561 +1,561 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - - 0.65 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + + 0.65 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml index d5e577a6..ff0562a6 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml @@ -1,568 +1,568 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - liquid indirect - single glazing black - 180 - 20.0 - 0.77 - 0.793 - 60.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + liquid indirect + single glazing black + 180 + 20.0 + 0.77 + 0.793 + 60.0 + + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml index 092413ca..6a19197b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml @@ -1,568 +1,568 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - passive thermosyphon - single glazing black - 180 - 20.0 - 0.77 - 0.793 - 60.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + passive thermosyphon + single glazing black + 180 + 20.0 + 0.77 + 0.793 + 60.0 + + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml index 39c5716d..815aeb24 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - coal - storage water heater - living space - 50.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + coal + storage water heater + conditioned space + 50.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml index ff60c41e..461658f4 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml @@ -1,553 +1,555 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml index c321db16..ec842f04 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 30.0 - 1.0 - 15354.0 - 0.93 - low - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 30.0 + 1.0 + 15354.0 + 0.93 + low + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml index 868458af..f10e1043 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - storage water heater - other exterior - 50.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + storage water heater + other exterior + 50.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml index 6b6bad9b..72a7f041 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml @@ -1,555 +1,555 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - storage water heater - living space - 30.0 - 1.0 - 30000.0 - 0.59 - 56.0 - 0.75 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + storage water heater + conditioned space + 30.0 + 1.0 + 30000.0 + 0.59 + 56.0 + 0.75 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml index fffa42b2..eddbe809 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml @@ -1,555 +1,555 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - storage water heater - living space - 30.0 - 1.0 - 30000.0 - 0.59 - medium - 0.75 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + storage water heater + conditioned space + 30.0 + 1.0 + 30000.0 + 0.59 + medium + 0.75 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml index e06c0087..f8594f81 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - storage water heater - living space - 50.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + storage water heater + conditioned space + 50.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml index b202374f..724db926 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml @@ -1,554 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv - ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-operating-modes.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 50.0 - 1.0 - 3.75 - medium - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-operating-modes.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + conditioned space + 50.0 + 1.0 + 3.75 + medium + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml index 1734f988..e776a392 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 50.0 - 1.0 - 3.75 - heat pump only - medium - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + conditioned space + 50.0 + 1.0 + 3.75 + heat pump only + medium + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml index c6fcf58c..7637816f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - other exterior - 80.0 - 1.0 - 2.3 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + other exterior + 80.0 + 1.0 + 2.3 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml index f6bdac7c..aada8eb6 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 50.0 - 1.0 - 3.75 - medium - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + conditioned space + 50.0 + 1.0 + 3.75 + medium + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml index a4844639..d8249943 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml @@ -1,560 +1,560 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 80.0 - 1.0 - 2.3 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - - 0.65 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + conditioned space + 80.0 + 1.0 + 2.3 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + + 0.65 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml index 7ab30308..a5aa25f4 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml @@ -1,567 +1,567 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 80.0 - 1.0 - 2.3 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - liquid indirect - single glazing black - 180 - 20.0 - 0.77 - 0.793 - 60.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + conditioned space + 80.0 + 1.0 + 2.3 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + liquid indirect + single glazing black + 180 + 20.0 + 0.77 + 0.793 + 60.0 + + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml index 67b9a1a5..1db92de6 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - heat pump water heater - living space - 80.0 - 1.0 - 2.3 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + heat pump water heater + conditioned space + 80.0 + 1.0 + 2.3 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml index 8f8972a3..d20d400a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml @@ -1,557 +1,559 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - stratified - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + stratified + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml index 93a94ce8..dd76bd3f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - stratified - - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + stratified + + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml index 1a50224d..a9c3c5cd 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - fuel oil - storage water heater - living space - 50.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + fuel oil + storage water heater + conditioned space + 50.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml index 104b7442..731b295b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - wood - storage water heater - living space - 50.0 - 1.0 - 40000.0 - 0.59 - 0.76 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + wood + storage water heater + conditioned space + 50.0 + 1.0 + 40000.0 + 0.59 + 0.76 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml index 79947c9e..5209dc16 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml @@ -1,551 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - instantaneous water heater - living space - 1.0 - 0.82 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + instantaneous water heater + conditioned space + 1.0 + 0.82 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml index 70d29a0c..6f63e46c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - instantaneous water heater - other exterior - 0.92 - 1.0 - 0.99 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + instantaneous water heater + other exterior + 0.92 + 1.0 + 0.99 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml index a5043592..7aa3d3d7 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - instantaneous water heater - living space - 1.0 - 0.98 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + instantaneous water heater + conditioned space + 1.0 + 0.98 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml index ef0eadd1..4e11b222 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - instantaneous water heater - living space - 1.0 - 0.99 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + instantaneous water heater + conditioned space + 1.0 + 0.99 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml index 6edb209f..80a2a25b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - instantaneous water heater - living space - 1.0 - 0.93 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + instantaneous water heater + conditioned space + 1.0 + 0.93 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml index 5b518576..7bb62a41 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml @@ -1,559 +1,559 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - instantaneous water heater - living space - 1.0 - 0.82 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - - 0.65 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + instantaneous water heater + conditioned space + 1.0 + 0.82 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + + 0.65 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml index 0a940432..444e7233 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml @@ -1,566 +1,566 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - instantaneous water heater - living space - 1.0 - 0.82 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - liquid indirect - single glazing black - 180 - 20.0 - 0.77 - 0.793 - 60.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + instantaneous water heater + conditioned space + 1.0 + 0.82 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + liquid indirect + single glazing black + 180 + 20.0 + 0.77 + 0.793 + 60.0 + + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml index 52e3662a..168f82b3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - natural gas - instantaneous water heater - living space - 1.0 - 0.82 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + natural gas + instantaneous water heater + conditioned space + 1.0 + 0.82 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml index 829d712b..ed90eb22 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - propane - instantaneous water heater - living space - 1.0 - 0.82 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + propane + instantaneous water heater + conditioned space + 1.0 + 0.82 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml index df2e09ba..c47d6ba0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml @@ -1,685 +1,684 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 3.0 - 2.0 - 8.0 - 3 - 2 - 3250.0 - 26000.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 26000.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - living space - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - garage - - - - 320.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - outside - living space - - - - 2080.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - garage - living space - - - - 320.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - garage - living space - floor - - - - 400.0 - - - 39.3 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - garage - 400.0 - 4.0 - 40.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - basement - conditioned - 950.0 - 4.0 - 110.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 216.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 144.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 216.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 144.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - 70.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 48000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 36000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 112.5 - - - - return - 0.0 - attic - unvented - 37.5 - - - - supply - 4.0 - exterior wall - 37.5 - - - - return - 0.0 - living space - 12.5 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.4 - - - - - - - garage - 0.1 - - - - - - - garage - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2957.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 3.0 + 2.0 + 8.0 + 3 + 2 + 3250.0 + 26000.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 26000.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + conditioned space + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 320.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + conditioned space + + + + 2080.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + conditioned space + + + + 320.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + garage + conditioned space + floor + + + + 400.0 + + + 39.3 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 400.0 + 4.0 + 40.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 950.0 + 4.0 + 110.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 216.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 144.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 216.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 144.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 48000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 36000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 112.5 + + + + return + 0.0 + attic - unvented + 37.5 + + + + supply + 4.0 + exterior wall + 37.5 + + + + return + 0.0 + conditioned space + 12.5 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2957.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml index 9dbae18c..eedfcb5a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml @@ -1,580 +1,580 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 3.0 - 2.0 - 8.0 - 3 - 2 - 4050.0 - 32400.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 32400.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - living space - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 2400.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 216.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 144.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 216.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 144.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 48000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 36000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 112.5 - - - - return - 0.0 - attic - unvented - 37.5 - - - - supply - 4.0 - exterior wall - 37.5 - - - - return - 0.0 - living space - 12.5 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 3685.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 3.0 + 2.0 + 8.0 + 3 + 2 + 4050.0 + 32400.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 32400.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + conditioned space + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 2400.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 216.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 144.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 216.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 144.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 48000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 36000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 112.5 + + + + return + 0.0 + attic - unvented + 37.5 + + + + supply + 4.0 + exterior wall + 37.5 + + + + return + 0.0 + conditioned space + 12.5 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 3685.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml index aeff2ca0..7a8d21c9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 1 - 1 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 482.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 1 + 1 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 482.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml index fc29f6bb..bfcd1d91 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 2 - 1 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 551.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 2 + 1 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 551.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml index 5d56306b..9018d0dc 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 4 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 689.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 4 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 689.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml index 8a4b968f..7776a2ef 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 5 - 3 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 758.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 5 + 3 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 758.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml index 92b06c1f..3deb5959 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -138,7 +138,7 @@ outside - living space + conditioned space @@ -203,7 +203,7 @@ attic - unvented - living space + conditioned space ceiling @@ -217,7 +217,7 @@ attic - unvented - living space + conditioned space ceiling @@ -231,7 +231,7 @@ attic - unvented - living space + conditioned space ceiling @@ -423,7 +423,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -456,7 +456,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -467,7 +467,7 @@ - living space + conditioned space electricity 3.73 true @@ -475,7 +475,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -485,13 +485,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml index 254fa326..83823f25 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -118,7 +118,7 @@ outside - living space + conditioned space @@ -156,7 +156,7 @@ outside - living space + conditioned space floor @@ -170,7 +170,7 @@ outside - living space + conditioned space floor @@ -184,7 +184,7 @@ outside - living space + conditioned space floor @@ -198,7 +198,7 @@ attic - unvented - living space + conditioned space ceiling @@ -366,7 +366,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -399,7 +399,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -410,7 +410,7 @@ - living space + conditioned space electricity 3.73 true @@ -418,7 +418,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -428,13 +428,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml index 537a800a..466600d9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml @@ -1,659 +1,658 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 2180.2 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - garage - - - - 560.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - outside - living space - - - - 960.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - garage - living space - - - - 240.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 337.5 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - garage - ceiling - - - - 600.0 - - - 2.1 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - garage - 600.0 - 4.0 - 70.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - basement - conditioned - 1350.0 - 4.0 - 120.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 12.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - 70.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - garage - 150.0 - - - - return - 0.0 - garage - 50.0 - - - - - - - - - electricity - storage water heater - garage - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - garage - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - garage - electricity - 3.73 - true - 150.0 - - - - garage - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - garage - 650.0 - true - - - - garage - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.4 - - - - - - - garage - 0.1 - - - - - - - garage - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 2180.2 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 560.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + conditioned space + + + + 960.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + conditioned space + + + + 240.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 337.5 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + garage + ceiling + + + + 600.0 + + + 2.1 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 600.0 + 4.0 + 70.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 1350.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + garage + 150.0 + + + + return + 0.0 + garage + 50.0 + + + + + + + + + electricity + storage water heater + garage + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + garage + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + garage + electricity + 3.73 + true + 150.0 + + + + garage + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + garage + 650.0 + true + + + + garage + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml index 36a7adc7..1308a615 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 45.0 - - ACH - 2.8 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 45.0 + + ACH + 2.8 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml index 0c65811e..eabbe6ee 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 45.0 - - CFM - 1008.5 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 45.0 + + CFM + 1008.5 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml index ee7ee5ca..035e8e55 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - CFM - 1080.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + CFM + 1080.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml index 2102c2a4..be1aa559 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -135,7 +135,7 @@ outside - living space + conditioned space @@ -200,7 +200,7 @@ attic - unvented - living space + conditioned space ceiling @@ -395,7 +395,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -428,7 +428,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -439,7 +439,7 @@ - living space + conditioned space electricity 3.73 true @@ -447,7 +447,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -457,13 +457,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml index f91b3f16..7a7cc09e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - true - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + true + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml index 2762490c..104b64e2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - - ACHnatural - 0.2 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + + ACHnatural + 0.2 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml index fb471dd6..e3c5e616 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -138,7 +138,7 @@ outside - living space + conditioned space @@ -203,7 +203,7 @@ attic - unvented - living space + conditioned space ceiling @@ -398,7 +398,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -431,7 +431,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -442,7 +442,7 @@ - living space + conditioned space electricity 3.73 true @@ -450,7 +450,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -460,13 +460,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml index 3ffdee38..fc83f980 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml @@ -1,560 +1,560 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - north - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - east - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - south - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - west - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 20.0 - north - 4.4 - - - - - 20.0 - south - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + north + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + east + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + south + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + west + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + north + 4.4 + + + + + 20.0 + south + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml index 2c59c3a4..cd0e5d85 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml @@ -1,573 +1,573 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - - 2.5 - 0.0 - 4.0 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - - 1.5 - 2.0 - 6.0 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - - 0.0 - 0.0 - 0.0 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - - 1.5 - 2.0 - 7.0 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + + 2.5 + 0.0 + 4.0 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + + 1.5 + 2.0 + 6.0 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + + 0.0 + 0.0 + 0.0 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + + 1.5 + 2.0 + 7.0 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml index e2dd241a..b71797ed 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml @@ -1,690 +1,690 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 188.6625 - slate or tile shingles - light - 0.92 - - gypsum board - 0.5 - - 6.0 - false - - - 2.3 - - - - - attic - unvented - 188.6625 - metal surfacing - reflective - 0.92 - - plaster - 0.5 - - 6.0 - false - - - 2.3 - - - - - attic - unvented - 188.6625 - wood shingles or shakes - dark - 0.92 - - wood - 0.5 - - 6.0 - false - - - 2.3 - - - - - attic - unvented - 188.6625 - shingles - medium dark - 0.92 - - gypsum board - 0.5 - - 6.0 - false - - - 2.3 - - - - - attic - unvented - 188.6625 - plastic/rubber/synthetic sheeting - light - 0.92 - - plaster - 0.5 - - 6.0 - false - - - 2.3 - - - - - attic - unvented - 188.6625 - expanded polystyrene sheathing - medium - 0.92 - - wood - 0.5 - - 6.0 - false - - - 7.0 - - - - - attic - unvented - 188.6625 - concrete - light - 0.92 - - gypsum board - 0.5 - - 6.0 - false - - - 2.3 - - - - - attic - unvented - 188.6625 - cool roof - reflective - 0.92 - - plaster - 0.5 - - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 188.6625 + slate or tile shingles + light + 0.92 + + gypsum board + 0.5 + + 6.0 + false + + + 2.3 + + + + + attic - unvented + 188.6625 + metal surfacing + reflective + 0.92 + + plaster + 0.5 + + 6.0 + false + + + 2.3 + + + + + attic - unvented + 188.6625 + wood shingles or shakes + dark + 0.92 + + wood + 0.5 + + 6.0 + false + + + 2.3 + + + + + attic - unvented + 188.6625 + shingles + medium dark + 0.92 + + gypsum board + 0.5 + + 6.0 + false + + + 2.3 + + + + + attic - unvented + 188.6625 + plastic/rubber/synthetic sheeting + light + 0.92 + + plaster + 0.5 + + 6.0 + false + + + 2.3 + + + + + attic - unvented + 188.6625 + expanded polystyrene sheathing + medium + 0.92 + + wood + 0.5 + + 6.0 + false + + + 7.0 + + + + + attic - unvented + 188.6625 + concrete + light + 0.92 + + gypsum board + 0.5 + + 6.0 + false + + + 2.3 + + + + + attic - unvented + 188.6625 + cool roof + reflective + 0.92 + + plaster + 0.5 + + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml index 3126e6a2..d6c59d9c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml @@ -1,590 +1,590 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - 15.0 - 0 - - - - single-pane - tinted - - - 1.0 - 1.0 - - - - - - 15.0 - 180 - - - true - - - double-pane - low-e - krypton - - - 1.0 - 1.0 - - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + 15.0 + 0 + + + + single-pane + tinted + + + 1.0 + 1.0 + + + + + + 15.0 + 180 + + + true + + + double-pane + low-e + krypton + + + 1.0 + 1.0 + + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml index e781e3ff..79f3bde1 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml @@ -1,591 +1,591 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - 15.0 - 0 - 0.33 - 0.45 - - - 0.1 - 0.9 - - - - 0.01 - 0.99 - - - - - - 15.0 - 180 - 0.33 - 0.45 - - - 0.5 - 0.0 - - - - 0.5 - 1.0 - - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + 15.0 + 0 + 0.33 + 0.45 + + + 0.1 + 0.9 + + + + 0.01 + 0.99 + + + + + + 15.0 + 180 + 0.33 + 0.45 + + + 0.5 + 0.0 + + + + 0.5 + 1.0 + + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml index 1d47da16..f336b04f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml @@ -1,589 +1,589 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - 15.0 - 0 - 0.6 - 0.45 - - - 1.0 - 1.0 - - - - clear - - - - - - 15.0 - 180 - 0.6 - 0.45 - - - 1.0 - 1.0 - - - - clear - - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + 15.0 + 0 + 0.6 + 0.45 + + + 1.0 + 1.0 + + + + clear + + + + + + 15.0 + 180 + 0.6 + 0.45 + + + 1.0 + 1.0 + + + + clear + + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml index 180a61d0..c44dc0f7 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml @@ -1,581 +1,581 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - 15.0 - 0 - 0.33 - 0.45 - - - 1.0 - 1.0 - - - - - - 15.0 - 180 - 0.33 - 0.45 - - - 1.0 - 1.0 - - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + 15.0 + 0 + 0.33 + 0.45 + + + 1.0 + 1.0 + + + + + + 15.0 + 180 + 0.33 + 0.45 + + + 1.0 + 1.0 + + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml index 9fe8a7c7..750bb14d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml @@ -1,508 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.5 - 1.5 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.5 + 1.5 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + conditioned space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml index 50a773dd..01d8a418 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml @@ -1,566 +1,566 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - 0.8 - - gypsum board - 0.25 - - - - 0.8 - heavy-weight - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 0.8 + + gypsum board + 0.25 + + + + 0.8 + heavy-weight + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml index d7ab020d..bfe3fe1c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml @@ -1,866 +1,866 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 11.0 - aluminum siding - dark - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - asbestos siding - medium - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - brick veneer - reflective - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - composite shingle siding - dark - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - fiber cement siding - medium dark - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - masonite siding - light - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - stucco - medium - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - synthetic stucco - medium dark - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - vinyl siding - light - 0.92 - - - 23.0 - - - - - outside - basement - conditioned - 11.0 - none - medium - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 109.0 - aluminum siding - reflective - 0.92 - - gypsum board - 0.5 - - - - 12.0 - - - - - outside - living space - - - - 109.0 - asbestos siding - light - 0.92 - - gypsum board - 1.0 - - - - 28.7 - - - - - outside - living space - - - - 109.0 - brick veneer - medium dark - 0.92 - - gypsum composite board - 0.5 - - - - 21.0 - - - - - outside - living space - - - - 109.0 - composite shingle siding - reflective - 0.92 - - plaster - 0.5 - - - - 7.1 - - - - - outside - living space - - - - 109.0 - fiber cement siding - medium - 0.92 - - wood - 0.5 - - - - 16.1 - - - - - outside - living space - - - - 109.0 - masonite siding - dark - 0.92 - - none - - - - 1.35 - - - - - outside - living space - - - - 109.0 - stucco - light - 0.92 - - gypsum board - 0.5 - - - - 8.1 - - - - - outside - living space - - - - 109.0 - synthetic stucco - medium - 0.92 - - gypsum board - 1.0 - - - - 5.4 - - - - - outside - living space - - - - 109.0 - vinyl siding - dark - 0.92 - - gypsum composite board - 0.5 - - - - 58.8 - - - - - outside - living space - - - - 109.0 - none - medium - 0.92 - - plaster - 0.5 - - - - 7.9 - - - - - outside - living space - - - - 109.0 - aluminum siding - reflective - 0.92 - - wood - 0.5 - - - - 5.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 13.0 - 0 - 0.33 - 0.45 - 0.67 - - - - - 9.0 - 90 - 0.33 - 0.45 - 0.67 - - - - - 13.0 - 180 - 0.33 - 0.45 - 0.67 - - - - - 9.0 - 270 - 0.33 - 0.45 - 0.67 - - - - - - - - 20.0 - 0 - 4.4 - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 11.0 + aluminum siding + dark + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + asbestos siding + medium + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + brick veneer + reflective + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + composite shingle siding + dark + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + fiber cement siding + medium dark + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + masonite siding + light + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + stucco + medium + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + synthetic stucco + medium dark + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + vinyl siding + light + 0.92 + + + 23.0 + + + + + outside + basement - conditioned + 11.0 + none + medium + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 109.0 + aluminum siding + reflective + 0.92 + + gypsum board + 0.5 + + + + 12.0 + + + + + outside + conditioned space + + + + 109.0 + asbestos siding + light + 0.92 + + gypsum board + 1.0 + + + + 28.7 + + + + + outside + conditioned space + + + + 109.0 + brick veneer + medium dark + 0.92 + + gypsum composite board + 0.5 + + + + 21.0 + + + + + outside + conditioned space + + + + 109.0 + composite shingle siding + reflective + 0.92 + + plaster + 0.5 + + + + 7.1 + + + + + outside + conditioned space + + + + 109.0 + fiber cement siding + medium + 0.92 + + wood + 0.5 + + + + 16.1 + + + + + outside + conditioned space + + + + 109.0 + masonite siding + dark + 0.92 + + none + + + + 1.35 + + + + + outside + conditioned space + + + + 109.0 + stucco + light + 0.92 + + gypsum board + 0.5 + + + + 8.1 + + + + + outside + conditioned space + + + + 109.0 + synthetic stucco + medium + 0.92 + + gypsum board + 1.0 + + + + 5.4 + + + + + outside + conditioned space + + + + 109.0 + vinyl siding + dark + 0.92 + + gypsum composite board + 0.5 + + + + 58.8 + + + + + outside + conditioned space + + + + 109.0 + none + medium + 0.92 + + plaster + 0.5 + + + + 7.9 + + + + + outside + conditioned space + + + + 109.0 + aluminum siding + reflective + 0.92 + + wood + 0.5 + + + + 5.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 13.0 + 0 + 0.33 + 0.45 + 0.67 + + + + + 9.0 + 90 + 0.33 + 0.45 + 0.67 + + + + + 13.0 + 180 + 0.33 + 0.45 + 0.67 + + + + + 9.0 + 270 + 0.33 + 0.45 + 0.67 + + + + + + + + 20.0 + 0 + 4.4 + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml index ee616a10..c895a63d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -11,7 +11,6 @@ 60 - 7 Bills @@ -52,6 +51,9 @@ 2700.0 21600.0 + + 7 + @@ -140,7 +142,7 @@ outside - living space + conditioned space @@ -205,7 +207,7 @@ attic - unvented - living space + conditioned space ceiling @@ -400,7 +402,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -433,7 +435,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -444,7 +446,7 @@ - living space + conditioned space electricity 3.73 true @@ -452,7 +454,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -462,13 +464,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml index 8c4cd22b..204fbe62 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml @@ -1,495 +1,495 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml index 8195a415..ab9e1949 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml @@ -1,565 +1,565 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - - - - single-pane - tinted - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - - - - double-pane - reflective - air - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - - - true - - - double-pane - low-e - argon - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - glass block - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + + + + single-pane + tinted + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + + + + double-pane + reflective + air + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + + + true + + + double-pane + low-e + argon + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + glass block + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml index 33961a0d..a3428d16 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -11,12 +11,6 @@ 60 - - 5 - 1 - 9 - 30 - Bills @@ -57,6 +51,14 @@ 2700.0 21600.0 + + + 5 + 1 + 9 + 30 + + @@ -145,7 +147,7 @@ outside - living space + conditioned space @@ -210,7 +212,7 @@ attic - unvented - living space + conditioned space ceiling @@ -405,7 +407,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -438,7 +440,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -449,7 +451,7 @@ - living space + conditioned space electricity 3.73 true @@ -457,7 +459,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -467,13 +469,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml index 25c221fc..27789b6d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml @@ -1,568 +1,568 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.5 - 0.5 - - - - 0.5 - 0.5 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.1 - 0.9 - - - - 0.01 - 0.99 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.0 - 1.0 - - - - 0.0 - 1.0 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.5 + 0.5 + + + + 0.5 + 0.5 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.1 + 0.9 + + + + 0.01 + 0.99 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.0 + 1.0 + + + + 0.0 + 1.0 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml index 6fed81d6..496a3006 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml @@ -1,569 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.6 - 0.45 - - - 0.7 - 0.85 - - - - low-e - - 0.67 - - - - - 72.0 - 90 - 0.6 - 0.45 - - - 0.7 - 0.85 - - - - low-e - - 0.67 - - - - - 108.0 - 180 - 0.6 - 0.45 - - - 0.7 - 0.85 - - - - low-e - - 0.67 - - - - - 72.0 - 270 - 0.6 - 0.45 - - - 0.7 - 0.85 - - - - low-e - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.6 + 0.45 + + + 0.7 + 0.85 + + + + low-e + + 0.67 + + + + + 72.0 + 90 + 0.6 + 0.45 + + + 0.7 + 0.85 + + + + low-e + + 0.67 + + + + + 108.0 + 180 + 0.6 + 0.45 + + + 0.7 + 0.85 + + + + low-e + + 0.67 + + + + + 72.0 + 270 + 0.6 + 0.45 + + + 0.7 + 0.85 + + + + low-e + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml index 6e3aebaf..f408f6a1 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml @@ -1,494 +1,494 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - outside - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + outside + conditioned space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml index c2b59bab..54494143 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml @@ -1,666 +1,665 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 1900.0 - 15200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 15200.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - - attic - unvented - 2179.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - garage - basement - conditioned - - - - 320.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - garage - - - - 320.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - garage - living space - floor - - - - 400.0 - - - 39.3 - - - - - - - basement - conditioned - 950.0 - 4.0 - 110.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - garage - 400.0 - 4.0 - 40.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - 70.0 - 180 - 4.4 - - - - - 4.0 - 0 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.4 - - - - - - - garage - 0.1 - - - - - - - garage - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1729.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 1900.0 + 15200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 15200.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + + attic - unvented + 2179.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + garage + basement - conditioned + + + + 320.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + garage + + + + 320.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + garage + conditioned space + floor + + + + 400.0 + + + 39.3 + + + + + + + basement - conditioned + 950.0 + 4.0 + 110.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + garage + 400.0 + 4.0 + 40.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + 70.0 + 180 + 4.4 + + + + + 4.0 + 0 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1729.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml new file mode 100644 index 00000000..e757696d --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml @@ -0,0 +1,496 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + manufactured home + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + + + + + + + attic - unvented + 1391.5 + asphalt or fiberglass shingles + 0.7 + 0.92 + 3.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1469.7 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 42.2 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + manufactured home underbelly + conditioned space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + 140.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 20.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 140.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 20.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 0.0 + manufactured home belly + 150.0 + + + + return + 0.0 + manufactured home belly + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-skirt.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-skirt.xml new file mode 100644 index 00000000..8f3e97d4 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-skirt.xml @@ -0,0 +1,496 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + manufactured home + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + attic - unvented + 1391.5 + asphalt or fiberglass shingles + 0.7 + 0.92 + 3.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1469.7 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 42.2 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + manufactured home underbelly + conditioned space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + 140.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 20.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 140.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 20.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 0.0 + manufactured home belly + 150.0 + + + + return + 0.0 + manufactured home belly + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml index 62f191d4..2796168d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml @@ -1,653 +1,653 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 160.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 8.0 - 240.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 4.0 - 160.0 - 8.0 - 3.0 - - gypsum board - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 4.0 - 200.0 - 8.0 - 3.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 675.0 - 4.0 - 75.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - basement - conditioned - 675.0 - 4.0 - 75.0 - - - - 5.0 - 1.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 160.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 8.0 + 240.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 8.0 + 320.0 + 8.0 + 3.0 + + gypsum board + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 8.0 + 400.0 + 8.0 + 3.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1150.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 200.0 + 4.0 + 30.0 + + + + 5.0 + 1.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage-natvent-available.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml similarity index 94% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage-natvent-available.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml index 2b2ffcaf..89fe3746 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage-natvent-available.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -16,18 +16,6 @@ Bills
- - - Power Outage - 7 - 1 - 5 - 7 - 31 - 14 - always available - -
@@ -151,7 +139,7 @@ outside - living space + conditioned space @@ -216,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -248,8 +236,8 @@ - 0.0 - 0.0 + 10.0 + true @@ -411,7 +399,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -444,7 +432,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -455,7 +443,7 @@ - living space + conditioned space electricity 3.73 true @@ -463,7 +451,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -473,13 +461,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml index 1527fd3b..ccb99512 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 10.0 - 4.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 10.0 + 4.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml index ed1facdc..9f94b810 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -207,7 +207,7 @@ attic - unvented - living space + conditioned space ceiling @@ -402,7 +402,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -435,7 +435,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -446,7 +446,7 @@ - living space + conditioned space electricity 3.73 true @@ -454,7 +454,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -464,13 +464,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml index 62cb0ab0..f85d59ed 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 16200.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 16200.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - crawlspace - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - crawlspace - conditioned - 4.0 - 600.0 - 8.0 - 3.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - crawlspace - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 4.0 - crawlspace - conditioned - 150.0 - - - - return - 0.0 - crawlspace - conditioned - 50.0 - - - - - - - - - electricity - storage water heater - crawlspace - conditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 16200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 16200.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + crawlspace - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + crawlspace - conditioned + 4.0 + 600.0 + 8.0 + 3.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 4.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + crawlspace - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 4.0 + crawlspace - conditioned + 150.0 + + + + return + 0.0 + crawlspace - conditioned + 50.0 + + + + + + + + + electricity + storage water heater + crawlspace - conditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml index 01cced58..02c85091 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml @@ -1,666 +1,666 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - - - - - - - - - - false - - - false - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - crawlspace - unvented - basement - unconditioned - 115.6 - 0.7 - 0.92 - - - 4.0 - - - - - outside - crawlspace - unvented - 81.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - unconditioned - 8.0 - 600.0 - 8.0 - 7.0 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - crawlspace - unvented - basement - unconditioned - 8.0 - 360.0 - 8.0 - 4.0 - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - ground - crawlspace - unvented - 4.0 - 600.0 - 8.0 - 3.0 - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - - - basement - unconditioned - living space - floor - - - - 675.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - crawlspace - unvented - living space - floor - - - - 675.0 - - - 18.7 - - - - - - - basement - unconditioned - 675.0 - 4.0 - 75.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - crawlspace - unvented - 675.0 - 0.0 - 75.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - basement - unconditioned - 150.0 - - - - return - 0.0 - basement - unconditioned - 50.0 - - - - - - - - - electricity - storage water heater - basement - unconditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - basement - unconditioned - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - basement - unconditioned - electricity - 3.73 - true - 150.0 - - - - basement - unconditioned - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - basement - unconditioned - 650.0 - true - - - - basement - unconditioned - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + + + + + + + + + + false + + + false + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + crawlspace - unvented + basement - unconditioned + 115.6 + 0.7 + 0.92 + + + 4.0 + + + + + outside + crawlspace - unvented + 81.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - unconditioned + 8.0 + 600.0 + 8.0 + 7.0 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + crawlspace - unvented + basement - unconditioned + 8.0 + 360.0 + 8.0 + 4.0 + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + crawlspace - unvented + 4.0 + 600.0 + 8.0 + 3.0 + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + + + basement - unconditioned + conditioned space + floor + + + + 675.0 + + + 18.7 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + crawlspace - unvented + conditioned space + floor + + + + 675.0 + + + 18.7 + + + + + + + basement - unconditioned + 675.0 + 4.0 + 75.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + crawlspace - unvented + 675.0 + 0.0 + 75.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + basement - unconditioned + 150.0 + + + + return + 0.0 + basement - unconditioned + 50.0 + + + + + + + + + electricity + storage water heater + basement - unconditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + basement - unconditioned + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + basement - unconditioned + electricity + 3.73 + true + 150.0 + + + + basement - unconditioned + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + basement - unconditioned + 650.0 + true + + + + basement - unconditioned + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml index 16f6f98a..ac457067 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml @@ -1,508 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + conditioned space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml index 9682918d..901ff85f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml @@ -1,602 +1,602 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - unconditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - unconditioned - 8.0 - 1200.0 - 8.0 - 4.0 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - - - basement - unconditioned - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - unconditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 20.0 - 0 - 0.33 - 0.45 - 0.0 - - - - - 10.0 - 90 - 0.33 - 0.45 - 0.0 - - - - - 20.0 - 180 - 0.33 - 0.45 - 0.0 - - - - - 10.0 - 270 - 0.33 - 0.45 - 0.0 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - basement - unconditioned - 150.0 - - - - return - 0.0 - basement - unconditioned - 50.0 - - - - - - - - - electricity - storage water heater - basement - unconditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - basement - unconditioned - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - basement - unconditioned - electricity - 3.73 - true - 150.0 - - - - basement - unconditioned - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - basement - unconditioned - 650.0 - true - - - - basement - unconditioned - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - unconditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - unconditioned + 8.0 + 1200.0 + 8.0 + 4.0 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + + + basement - unconditioned + conditioned space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - unconditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 20.0 + 0 + 0.33 + 0.45 + 0.0 + + + + + 10.0 + 90 + 0.33 + 0.45 + 0.0 + + + + + 20.0 + 180 + 0.33 + 0.45 + 0.0 + + + + + 10.0 + 270 + 0.33 + 0.45 + 0.0 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + basement - unconditioned + 150.0 + + + + return + 0.0 + basement - unconditioned + 50.0 + + + + + + + + + electricity + storage water heater + basement - unconditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + basement - unconditioned + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + basement - unconditioned + electricity + 3.73 + true + 150.0 + + + + basement - unconditioned + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + basement - unconditioned + 650.0 + true + + + + basement - unconditioned + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml index a7546681..cc9a9060 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml @@ -1,559 +1,559 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - unconditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - unconditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - none - - - - 10.69 - - - - - - - basement - unconditioned - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - unconditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - basement - unconditioned - 150.0 - - - - return - 0.0 - basement - unconditioned - 50.0 - - - - - - - - - electricity - storage water heater - basement - unconditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - basement - unconditioned - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - basement - unconditioned - electricity - 3.73 - true - 150.0 - - - - basement - unconditioned - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - basement - unconditioned - 650.0 - true - - - - basement - unconditioned - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - unconditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - unconditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + none + + + + 10.69 + + + + + + + basement - unconditioned + conditioned space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - unconditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + basement - unconditioned + 150.0 + + + + return + 0.0 + basement - unconditioned + 50.0 + + + + + + + + + electricity + storage water heater + basement - unconditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + basement - unconditioned + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + basement - unconditioned + electricity + 3.73 + true + 150.0 + + + + basement - unconditioned + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + basement - unconditioned + 650.0 + true + + + + basement - unconditioned + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml index 0de5d41f..3d1db823 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml @@ -1,568 +1,568 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - unconditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - unconditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - basement - unconditioned - living space - floor - - - - 1350.0 - - - 2.1 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - unconditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - basement - unconditioned - 150.0 - - - - return - 0.0 - basement - unconditioned - 50.0 - - - - - - - - - electricity - storage water heater - basement - unconditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - basement - unconditioned - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - basement - unconditioned - electricity - 3.73 - true - 150.0 - - - - basement - unconditioned - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - basement - unconditioned - 650.0 - true - - - - basement - unconditioned - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - unconditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - unconditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 4.0 + + + continuous - interior + 0.0 + + + + + + + + basement - unconditioned + conditioned space + floor + + + + 1350.0 + + + 2.1 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - unconditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + basement - unconditioned + 150.0 + + + + return + 0.0 + basement - unconditioned + 50.0 + + + + + + + + + electricity + storage water heater + basement - unconditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + basement - unconditioned + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + basement - unconditioned + electricity + 3.73 + true + 150.0 + + + + basement - unconditioned + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + basement - unconditioned + 650.0 + true + + + + basement - unconditioned + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml index c3263422..99e403d3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml @@ -1,567 +1,567 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - false - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - unconditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - unconditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - - - basement - unconditioned - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - unconditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - basement - unconditioned - 150.0 - - - - return - 0.0 - basement - unconditioned - 50.0 - - - - - - - - - electricity - storage water heater - basement - unconditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - basement - unconditioned - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - basement - unconditioned - electricity - 3.73 - true - 150.0 - - - - basement - unconditioned - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - basement - unconditioned - 650.0 - true - - - - basement - unconditioned - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + false + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - unconditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - unconditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + + + basement - unconditioned + conditioned space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - unconditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + basement - unconditioned + 150.0 + + + + return + 0.0 + basement - unconditioned + 50.0 + + + + + + + + + electricity + storage water heater + basement - unconditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + basement - unconditioned + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + basement - unconditioned + electricity + 3.73 + true + 150.0 + + + + basement - unconditioned + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + basement - unconditioned + 650.0 + true + + + + basement - unconditioned + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml index a1df1287..06b04d1b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml @@ -1,569 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - false - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - crawlspace - unvented - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - crawlspace - unvented - 4.0 - 600.0 - 8.0 - 3.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - crawlspace - unvented - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - crawlspace - unvented - 1350.0 - 0.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - crawlspace - unvented - 150.0 - - - - return - 0.0 - crawlspace - unvented - 50.0 - - - - - - - - - electricity - storage water heater - crawlspace - unvented - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + false + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + crawlspace - unvented + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + crawlspace - unvented + 4.0 + 600.0 + 8.0 + 3.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 4.0 + + + continuous - interior + 0.0 + + + + + + + + crawlspace - unvented + conditioned space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + crawlspace - unvented + 1350.0 + 0.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + crawlspace - unvented + 150.0 + + + + return + 0.0 + crawlspace - unvented + 50.0 + + + + + + + + + electricity + storage water heater + crawlspace - unvented + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml new file mode 100644 index 00000000..ed7c6305 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml @@ -0,0 +1,558 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + SLA + 0.00667 + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + crawlspace - vented + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + crawlspace - vented + + + + 600.0 + + + 10.1 + + + + + + + crawlspace - vented + conditioned space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + crawlspace - vented + 1350.0 + 0.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + crawlspace - vented + 150.0 + + + + return + 0.0 + crawlspace - vented + 50.0 + + + + + + + + + electricity + storage water heater + crawlspace - vented + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml index e507a912..44aa2290 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml @@ -1,572 +1,572 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - SLA - 0.00667 - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - crawlspace - vented - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - crawlspace - vented - 4.0 - 600.0 - 8.0 - 3.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - crawlspace - vented - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - crawlspace - vented - 1350.0 - 0.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - crawlspace - vented - 150.0 - - - - return - 0.0 - crawlspace - vented - 50.0 - - - - - - - - - electricity - storage water heater - crawlspace - vented - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + SLA + 0.00667 + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + crawlspace - vented + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + crawlspace - vented + 4.0 + 600.0 + 8.0 + 3.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 4.0 + + + continuous - interior + 0.0 + + + + + + + + crawlspace - vented + conditioned space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + crawlspace - vented + 1350.0 + 0.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + crawlspace - vented + 150.0 + + + + return + 0.0 + crawlspace - vented + 50.0 + + + + + + + + + electricity + storage water heater + crawlspace - vented + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml index ae8c236d..91e30fa2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml @@ -1,614 +1,614 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 2.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 480.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 4.0 - 120.0 - 8.0 - 3.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 2.0 - 60.0 - 8.0 - 1.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 2.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 20.0 - 0 - 0.33 - 0.45 - 0.0 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 2.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 480.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 8.0 + 240.0 + 8.0 + 3.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 8.0 + 240.0 + 8.0 + 1.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 20.0 + 0 + 0.33 + 0.45 + 0.0 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml index bd5b3799..632cc0f6 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml @@ -1,549 +1,549 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - air-to-air - electricity - 0.0 - 36000.0 - single stage - 0.73 - 0.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - 0.6 - 17.0 - - - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + air-to-air + electricity + 0.0 + 36000.0 + single stage + 0.73 + 0.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + 0.6 + 17.0 + + + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml index 4fca728a..f6e64871 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -399,7 +399,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -432,7 +432,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -443,7 +443,7 @@ - living space + conditioned space electricity 3.73 true @@ -451,7 +451,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -461,13 +461,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml index 5d66ea04..792372fb 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 0.0 - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 0.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - 0.6 - 17.0 - - - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 0.0 + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 0.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + 0.6 + 17.0 + + + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml index bd5a66b7..0ee1820c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -409,7 +409,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -442,7 +442,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -453,7 +453,7 @@ - living space + conditioned space electricity 3.73 true @@ -461,7 +461,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -471,13 +471,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml index 6830ea8e..a048aa4e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -404,7 +404,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -437,7 +437,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -448,7 +448,7 @@ - living space + conditioned space electricity 3.73 true @@ -456,7 +456,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -466,13 +466,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml index d1d529da..7bc0cbea 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml @@ -1,558 +1,558 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml index 6359a49c..9cb38169 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml @@ -1,558 +1,558 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - two stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 18.0 - - - HSPF - 9.3 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + two stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 18.0 + + + HSPF + 9.3 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml index 9cf23453..ab7d77b2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -433,7 +433,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -466,7 +466,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -477,7 +477,7 @@ - living space + conditioned space electricity 3.73 true @@ -485,7 +485,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -495,13 +495,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml index 13829fa6..997e8bdd 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml @@ -1,576 +1,576 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 60000.0 - - AFUE - 0.8 - - 200.0 - - - - - air-to-air - electricity - 18000.0 - 18000.0 - variable speed - 0.78 - separate - - 30.0 - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - baseboard - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 60000.0 + + AFUE + 0.8 + + 200.0 + + + + + air-to-air + electricity + 18000.0 + 18000.0 + variable speed + 0.78 + separate + + 30.0 + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml index 096a82ff..b7409f97 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml @@ -1,575 +1,575 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 60000.0 - - AFUE - 0.8 - - 200.0 - - - - - air-to-air - electricity - 18000.0 - 18000.0 - variable speed - 0.78 - separate - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - baseboard - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 60000.0 + + AFUE + 0.8 + + 200.0 + + + + + air-to-air + electricity + 18000.0 + 18000.0 + variable speed + 0.78 + separate + + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml index b4c9f94e..51cfd95f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml @@ -1,605 +1,605 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 60000.0 - - AFUE - 0.8 - - 200.0 - - - - - air-to-air - electricity - 18000.0 - 18000.0 - variable speed - 0.78 - separate - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 60000.0 + + AFUE + 0.8 + + 200.0 + + + + + air-to-air + electricity + 18000.0 + 18000.0 + variable speed + 0.78 + separate + + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml similarity index 83% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml index cbc07789..88ea4f2d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml @@ -1,552 +1,628 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - ACCA - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - variable speed - 0.78 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + variable speed + 0.78 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 17.25 + + + HSPF + 10.0 + + + + 95.0 + 11700.0 + minimum + + COP + 4.47 + + + + 95.0 + 36000.0 + maximum + + COP + 2.71 + + + + 105.0 + 10000.0 + minimum + + COP + 3.9 + + + + 105.0 + 30000.0 + maximum + + COP + 2.3 + + + + + + 47.0 + 10000.0 + minimum + + COP + 4.73 + + + + 47.0 + 36000.0 + maximum + + COP + 3.44 + + + + 55.0 + 12000.0 + minimum + + COP + 5.5 + + + + 55.0 + 45000.0 + maximum + + COP + 4.0 + + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml similarity index 80% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml index dcd0feb5..02529c74 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -1,552 +1,646 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - variable speed - 0.78 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + variable speed + 0.78 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 17.25 + + + HSPF + 10.0 + + + + 95.0 + 11700.0 + minimum + + COP + 4.47 + + + + 95.0 + 36000.0 + maximum + + COP + 2.71 + + + + 82.0 + 13200.0 + minimum + + COP + 6.34 + + + + 82.0 + 40000.0 + maximum + + COP + 3.53 + + + + + + 47.0 + 10000.0 + minimum + + COP + 4.73 + + + + 47.0 + 36000.0 + maximum + + COP + 3.44 + + + + 17.0 + 4200.0 + minimum + + COP + 1.84 + + + + 17.0 + 24800.0 + maximum + + COP + 2.66 + + + + 5.0 + 1900.0 + minimum + + COP + 0.81 + + + + 5.0 + 19900.0 + maximum + + COP + 2.28 + + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml index ee1f1035..6ac2dfec 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml @@ -1,558 +1,558 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - variable speed - 0.78 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + variable speed + 0.78 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml deleted file mode 100644 index 3c5bdac0..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml +++ /dev/null @@ -1,544 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - 0.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml deleted file mode 100644 index 74a5888b..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml +++ /dev/null @@ -1,550 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 0.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml deleted file mode 100644 index a0fc2bfa..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +++ /dev/null @@ -1,552 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - ACCA - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml deleted file mode 100644 index 9702e1b0..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +++ /dev/null @@ -1,552 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml deleted file mode 100644 index f7f1dce9..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml +++ /dev/null @@ -1,552 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- FL -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 1A - - - - USA_FL_Miami.Intl.AP.722020_TMY3 - - USA_FL_Miami.Intl.AP.722020_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml deleted file mode 100644 index a8cf2f18..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +++ /dev/null @@ -1,552 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml deleted file mode 100644 index 82e2d974..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml +++ /dev/null @@ -1,552 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - ACCA - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - two stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 18.0 - - - HSPF - 9.3 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml deleted file mode 100644 index b2e9ddc2..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml +++ /dev/null @@ -1,552 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - two stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 18.0 - - - HSPF - 9.3 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml deleted file mode 100644 index abcaa712..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml +++ /dev/null @@ -1,552 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - two stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 18.0 - - - HSPF - 9.3 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml deleted file mode 100644 index bd6fb557..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml +++ /dev/null @@ -1,569 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.8 - - 200.0 - - - - - air-to-air - electricity - variable speed - 0.78 - separate - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - baseboard - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml deleted file mode 100644 index 9d08573d..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml +++ /dev/null @@ -1,599 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.8 - - 200.0 - - - - - air-to-air - electricity - variable speed - 0.78 - separate - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml deleted file mode 100644 index 8b23b55a..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml +++ /dev/null @@ -1,552 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - variable speed - 0.78 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml deleted file mode 100644 index c4b4393a..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml +++ /dev/null @@ -1,506 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - electricity - - AFUE - 0.98 - - 1.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml deleted file mode 100644 index b21f1316..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml +++ /dev/null @@ -1,560 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - central air conditioner - electricity - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - baseboard - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml deleted file mode 100644 index 335eec30..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml +++ /dev/null @@ -1,507 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml deleted file mode 100644 index 7237949f..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml +++ /dev/null @@ -1,536 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml deleted file mode 100644 index 751ba56e..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml +++ /dev/null @@ -1,536 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - two stage - 1.0 - - SEER - 18.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml deleted file mode 100644 index 746435d9..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml +++ /dev/null @@ -1,536 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - variable speed - 1.0 - - SEER - 24.0 - - 0.78 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml deleted file mode 100644 index f0fa0f0d..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml +++ /dev/null @@ -1,565 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - central air conditioner - electricity - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - air-to-air - electricity - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 0.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml deleted file mode 100644 index 3888c603..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +++ /dev/null @@ -1,553 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - ACCA - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - natural gas - - AFUE - 0.95 - - 30.0 - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml deleted file mode 100644 index f26fd15c..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +++ /dev/null @@ -1,553 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - natural gas - - AFUE - 0.95 - - 30.0 - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml deleted file mode 100644 index 246605b5..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +++ /dev/null @@ -1,553 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - single stage - 0.73 - integrated - natural gas - - AFUE - 0.95 - - 30.0 - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml deleted file mode 100644 index 13d03b2d..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml +++ /dev/null @@ -1,497 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - electricity - - Percent - 1.0 - - 1.0 - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml deleted file mode 100644 index 3514e9a0..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml +++ /dev/null @@ -1,544 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - evaporative cooler - electricity - 1.0 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml deleted file mode 100644 index 33d6a414..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml +++ /dev/null @@ -1,500 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - propane - - AFUE - 0.8 - - 1.0 - - 0.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml deleted file mode 100644 index 62631bf1..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml +++ /dev/null @@ -1,536 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - electricity - - AFUE - 0.98 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml deleted file mode 100644 index 3b56f2d7..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml +++ /dev/null @@ -1,551 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - two stage - 1.0 - - SEER - 18.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml deleted file mode 100644 index 8ce4f0bf..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml +++ /dev/null @@ -1,536 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml deleted file mode 100644 index a6ba4e98..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +++ /dev/null @@ -1,546 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - ground-to-air - electricity - 0.73 - 0.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml deleted file mode 100644 index 107f7a7a..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +++ /dev/null @@ -1,552 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - ground-to-air - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 0.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml deleted file mode 100644 index 0c016a93..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml +++ /dev/null @@ -1,554 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - ACCA - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml deleted file mode 100644 index e999e701..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml +++ /dev/null @@ -1,554 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml deleted file mode 100644 index 60edeb36..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml +++ /dev/null @@ -1,554 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml deleted file mode 100644 index ecf9258b..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml +++ /dev/null @@ -1,535 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 1.0 - - SEER - 19.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml deleted file mode 100644 index 9a88c41f..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml +++ /dev/null @@ -1,543 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 0.73 - 0.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml deleted file mode 100644 index 3f737063..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml +++ /dev/null @@ -1,549 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 0.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml deleted file mode 100644 index c8a4d354..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml +++ /dev/null @@ -1,551 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - ACCA - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - mini-split - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml deleted file mode 100644 index 891871f0..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml +++ /dev/null @@ -1,551 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - mini-split - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml deleted file mode 100644 index 022c2acd..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml +++ /dev/null @@ -1,519 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - electricity - - Percent - 1.0 - - - - - mini-split - electricity - 0.73 - separate - - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml deleted file mode 100644 index 88f5f791..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml +++ /dev/null @@ -1,522 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - fuel oil - - Percent - 0.6 - - - 40.0 - - - - - mini-split - electricity - 0.73 - separate - - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac-with-heating.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac-with-heating.xml deleted file mode 100644 index 843eba38..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac-with-heating.xml +++ /dev/null @@ -1,503 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - packaged terminal air conditioner - electricity - 1.0 - - EER - 10.7 - - 0.65 - electricity - - Percent - 1.0 - - 1.0 - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac.xml deleted file mode 100644 index 1ea173fd..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac.xml +++ /dev/null @@ -1,496 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - packaged terminal air conditioner - electricity - 1.0 - - EER - 10.7 - - 0.65 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml deleted file mode 100644 index 5e9baa26..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml +++ /dev/null @@ -1,518 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - ACCA - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - packaged terminal heat pump - electricity - 0.65 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 11.4 - - - COP - 3.6 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml deleted file mode 100644 index fff07e26..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml +++ /dev/null @@ -1,518 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - packaged terminal heat pump - electricity - 0.65 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 11.4 - - - COP - 3.6 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml deleted file mode 100644 index 4c33e92f..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml +++ /dev/null @@ -1,518 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - packaged terminal heat pump - electricity - 0.65 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 11.4 - - - COP - 3.6 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-only.xml deleted file mode 100644 index fa152f83..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-only.xml +++ /dev/null @@ -1,496 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - room air conditioner - electricity - 1.0 - - EER - 8.5 - - 0.65 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml deleted file mode 100644 index 42021819..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml +++ /dev/null @@ -1,518 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - ACCA - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - room air conditioner with reverse cycle - electricity - 0.65 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 11.4 - - - COP - 3.6 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml deleted file mode 100644 index b6a2f3de..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml +++ /dev/null @@ -1,518 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - room air conditioner with reverse cycle - electricity - 0.65 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 11.4 - - - COP - 3.6 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml deleted file mode 100644 index 283775ac..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml +++ /dev/null @@ -1,518 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - room air conditioner with reverse cycle - electricity - 0.65 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - EER - 11.4 - - - COP - 3.6 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml index 2f87f034..bb642907 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -11,18 +11,6 @@ 60 - - - 0.0 - 100.0 - 60.0 - 80.0 - 0.55 - 4000.0 - 200.0 - 5 - - Bills @@ -66,6 +54,20 @@ 2700.0 21600.0 + + + + 0.0 + 100.0 + 60.0 + 80.0 + 0.55 + 4000.0 + 200.0 + 5 + + + @@ -154,7 +156,7 @@ outside - living space + conditioned space @@ -219,7 +221,7 @@ attic - unvented - living space + conditioned space ceiling @@ -412,7 +414,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -445,7 +447,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -456,7 +458,7 @@ - living space + conditioned space electricity 3.73 true @@ -464,7 +466,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -474,13 +476,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml deleted file mode 100644 index 3d7fa9a3..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml +++ /dev/null @@ -1,500 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - fuel oil - - Percent - 0.8 - - 1.0 - - 40.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml deleted file mode 100644 index 264e5a51..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml +++ /dev/null @@ -1,500 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - electricity - - AFUE - 0.98 - - 1.0 - - 0.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml index 7d8e71e2..a8c504ea 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml index 87f2ed69..bef3d009 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml @@ -1,507 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - coal - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + coal + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml index 04146c8a..b2e5229d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml @@ -1,507 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - electricity - 36000.0 - - AFUE - 0.98 - - 1.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + electricity + 36000.0 + + AFUE + 0.98 + + 1.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml index 7630f474..5303ba79 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml @@ -1,562 +1,562 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - baseboard - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + baseboard + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml index 3c0b93f2..be8f2312 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -359,7 +359,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -392,7 +392,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -403,7 +403,7 @@ - living space + conditioned space electricity 3.73 true @@ -411,7 +411,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -421,13 +421,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml index 28c3f796..e0aab7b1 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml @@ -1,508 +1,508 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - 200.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + 200.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml index e5030aa8..80746e2d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml @@ -1,507 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - fuel oil - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + fuel oil + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml index a6ba8a4f..26e9d824 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml @@ -1,507 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - propane - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + propane + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml index d54dca47..52eb48ab 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml @@ -1,507 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - wood - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - baseboard - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + wood + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + baseboard + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml index f865564f..26ac1887 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -383,7 +383,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -416,7 +416,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -427,7 +427,7 @@ - living space + conditioned space electricity 3.73 true @@ -435,7 +435,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -445,13 +445,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml index 17f70043..4000f5ad 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml index 482675d7..e325cb50 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - two stage - 1.0 - - SEER - 18.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + two stage + 1.0 + + SEER + 18.0 + + 0.73 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml similarity index 89% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml index f2d3c313..0bd7f8a7 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml @@ -1,551 +1,575 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - variable speed - 1.0 - - SEER - 24.0 - - 0.78 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 36000.0 + variable speed + 1.0 + + SEER + 17.25 + + 0.78 + + + 95.0 + 11700.0 + minimum + + COP + 4.47 + + + + 95.0 + 36000.0 + maximum + + COP + 2.71 + + + + 82.0 + 13200.0 + minimum + + COP + 6.34 + + + + 82.0 + 40000.0 + maximum + + COP + 3.53 + + + + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml index d27cc0a3..24826169 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - variable speed - 1.0 - - SEER - 24.0 - - 0.78 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + variable speed + 1.0 + + SEER + 24.0 + + 0.78 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml index 94242497..b04bfa5f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml @@ -1,572 +1,572 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - air-to-air - electricity - 36000.0 - 36000.0 - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 0.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + air-to-air + electricity + 36000.0 + 36000.0 + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 0.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml index ddbfcdb5..63665af4 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml @@ -1,523 +1,523 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - DSE - - 0.8 - 0.7 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + DSE + + 0.8 + 0.7 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml index c728351d..8dc621d3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -406,7 +406,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -439,7 +439,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -450,7 +450,7 @@ - living space + conditioned space electricity 3.73 true @@ -458,7 +458,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -468,13 +468,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml index a5cc18b1..4c1a7632 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml @@ -1,559 +1,559 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - single stage - 0.73 - integrated - natural gas - - AFUE - 0.95 - - 36000.0 - 30.0 - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + single stage + 0.73 + integrated + natural gas + + AFUE + 0.95 + + 36000.0 + 30.0 + 1.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml index 392165f0..4cec3efe 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml @@ -1,559 +1,559 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - two stage - 0.73 - integrated - natural gas - - AFUE - 0.95 - - 36000.0 - 30.0 - 1.0 - 1.0 - - SEER - 18.0 - - - HSPF - 9.3 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + two stage + 0.73 + integrated + natural gas + + AFUE + 0.95 + + 36000.0 + 30.0 + 1.0 + 1.0 + + SEER + 18.0 + + + HSPF + 9.3 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml index ca8bc39e..1932be33 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml @@ -1,559 +1,559 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - variable speed - 0.78 - integrated - natural gas - - AFUE - 0.95 - - 36000.0 - 30.0 - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + variable speed + 0.78 + integrated + natural gas + + AFUE + 0.95 + + 36000.0 + 30.0 + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml index 449105a3..c915fcd1 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml @@ -1,558 +1,558 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - mini-split - electricity - 36000.0 - 36000.0 - 0.73 - integrated - natural gas - - AFUE - 0.95 - - 36000.0 - 30.0 - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + mini-split + electricity + 36000.0 + 36000.0 + 0.73 + integrated + natural gas + + AFUE + 0.95 + + 36000.0 + 30.0 + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml index 42341ca2..681de522 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml @@ -1,582 +1,581 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 3.0 - 2.0 - 8.0 - 3 - 2 - 4050.0 - 32400.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 32400.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - outside - living space - 116.0 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 2400.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 216.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 144.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 216.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 144.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 48000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 36000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 0.75 - - - - return - 0.0 - attic - unvented - 0.75 - - - - supply - 4.0 - exterior wall - 0.25 - - - - return - 0.0 - living space - 0.25 - - 3 - - - 4050.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 3685.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 3.0 + 2.0 + 8.0 + 3 + 2 + 4050.0 + 32400.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 32400.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + outside + conditioned space + 116.0 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 2400.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 216.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 144.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 216.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 144.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 48000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 36000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 0.75 + + + + return + 0.0 + attic - unvented + 0.75 + + + + supply + 4.0 + exterior wall + 0.25 + + + + return + 0.0 + conditioned space + 0.25 + + + + 4050.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 3685.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml index 45ae9d9a..335960ae 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -405,7 +405,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -438,7 +438,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -449,7 +449,7 @@ - living space + conditioned space electricity 3.73 true @@ -457,7 +457,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -467,13 +467,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml index 63b694f7..9d9ab5dc 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -401,7 +401,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -434,7 +434,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -445,7 +445,7 @@ - living space + conditioned space electricity 3.73 true @@ -453,7 +453,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -463,13 +463,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-defaults.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-defaults.xml index f614b736..f3150a7c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-defaults.xml @@ -1,549 +1,563 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - - AFUE - 0.92 - - 1.0 - - - - room air conditioner - electricity - 1.0 - - EER - 8.5 - - 0.65 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 0.75 + + + + + + + electricity + + Percent + 1.0 + + 0.25 + + 0.0 + + + + + room air conditioner + electricity + 24000.0 + 1.0 + + EER + 8.5 + + 0.65 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + + + + return + 0.0 + + + + 2025.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml index 4c2c27fb..79ba84ff 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -399,7 +399,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -432,7 +432,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -443,7 +443,7 @@ - living space + conditioned space electricity 3.73 true @@ -451,7 +451,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -461,13 +461,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml index f6f0d42e..0d6c9aba 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM50 - 100.0 - to outside - - - - return - - CFM50 - 125.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM50 + 100.0 + to outside + + + + return + + CFM50 + 125.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml index e1696a18..eee8e924 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - Percent - 0.1 - to outside - - - - return - - Percent - 0.05 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + Percent + 0.1 + to outside + + + + return + + Percent + 0.05 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml index e4336d13..c630a6fd 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml @@ -1,498 +1,498 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - electricity - 36000.0 - - Percent - 1.0 - - 1.0 - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + electricity + 36000.0 + + Percent + 1.0 + + 1.0 + + + + + 68.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml index 9f1018a5..087809f3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml @@ -1,546 +1,546 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - evaporative cooler - electricity - 24000.0 - 1.0 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + evaporative cooler + electricity + 24000.0 + 1.0 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml index e8e496f6..6c9e8094 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml @@ -1,525 +1,525 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - evaporative cooler - electricity - 24000.0 - 1.0 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - 0 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + evaporative cooler + electricity + 24000.0 + 1.0 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + 0 + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml index 3b536a97..98e3bf91 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml @@ -1,492 +1,492 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - evaporative cooler - electricity - 24000.0 - 1.0 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + evaporative cooler + electricity + 24000.0 + 1.0 + + + + + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml index e23f3663..66864744 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml @@ -1,501 +1,501 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - wood - 36000.0 - - Percent - 0.8 - - 1.0 - - 0.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + wood + 36000.0 + + Percent + 0.8 + + 1.0 + + 0.0 + + + + + + 68.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml deleted file mode 100644 index 16d2e71f..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml +++ /dev/null @@ -1,501 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - natural gas - 36000.0 - - Percent - 1.0 - - 1.0 - - 0.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml index c8206d08..d44460b3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml @@ -1,501 +1,506 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - propane - 36000.0 - - AFUE - 0.8 - - 1.0 - - 0.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + true + + 600.0 + + + + propane + 36000.0 + + AFUE + 0.8 + + 1.0 + + 0.0 + + + + + + 68.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml index 410dabd0..d6c37a4b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - coal - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + coal + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml index d40422bc..d4f75d3c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - electricity - 36000.0 - - AFUE - 1.0 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + electricity + 36000.0 + + AFUE + 1.0 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml index 401c1cc8..70520b9a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - electricity - 36000.0 - - AFUE - 0.98 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + electricity + 36000.0 + + AFUE + 0.98 + + 1.0 + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml index ec75d88c..e949c7e0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - two stage - 1.0 - - SEER - 18.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + two stage + 1.0 + + SEER + 18.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml index df652bc9..611d46a8 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - variable speed - 1.0 - - SEER - 24.0 - - 0.78 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + variable speed + 1.0 + + SEER + 24.0 + + 0.78 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml index 7397247f..25f56118 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml @@ -1,537 +1,539 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-heating-only.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-heating-only.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml index cd0fa113..fdcb4585 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -388,7 +388,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -421,7 +421,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -432,7 +432,7 @@ - living space + conditioned space electricity 3.73 true @@ -440,7 +440,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -450,13 +450,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml index 707a1ebe..8c40553c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml index 485f180d..54b4b5e9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml @@ -1,551 +1,551 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - room air conditioner - electricity - 24000.0 - 1.0 - - EER - 8.5 - - 0.65 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + room air conditioner + electricity + 24000.0 + 1.0 + + EER + 8.5 + + 0.65 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml index 01b25fdd..e5c7406e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - fuel oil - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + fuel oil + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml index ccc90c16..1d2a27d4 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - propane - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + propane + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml index e211a8a6..2a5be070 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml @@ -1,537 +1,537 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - wood - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + wood + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml index 99d2db5e..8bc11974 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml @@ -1,567 +1,567 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 0.33 - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 0.33 - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 0.35 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - DSE - - 0.8 - 0.7 - - - - - DSE - - 0.8 - 1.0 - - - - - DSE - - 0.8 - 1.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 0.33 + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 0.33 + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 0.35 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + DSE + + 0.8 + 0.7 + + + + + DSE + + 0.8 + 1.0 + + + + + DSE + + 0.8 + 1.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml index 64c6d300..861a9a80 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml @@ -1,545 +1,545 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - ground-to-air - electricity - 0.0 - 36000.0 - 0.73 - 0.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + ground-to-air + electricity + 0.0 + 36000.0 + 0.73 + 0.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml index 543fe2bc..bd6cfffb 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml @@ -1,552 +1,552 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 0.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 0.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 0.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 0.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml index 29af0aa9..713da108 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml index 7603cd48..083f12a5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml @@ -1,561 +1,561 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 13.0 - - - HSPF - 7.7 - - - -0.25 - -0.25 - 0.365 - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 13.0 + + + HSPF + 7.7 + + + -0.25 + -0.25 + 0.365 + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml index e9be6997..6beb9369 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml @@ -1,561 +1,561 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - two stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 18.0 - - - HSPF - 9.3 - - - -0.25 - -0.25 - 0.365 - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + two stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 18.0 + + + HSPF + 9.3 + + + -0.25 + -0.25 + 0.365 + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml similarity index 79% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml index 2e247ac7..ba4d110d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -328,29 +328,123 @@ electricity 36000.0 36000.0 - single stage - 0.73 + variable speed + 0.78 integrated electricity Percent 1.0 + 36000.0 1.0 1.0 SEER - 13.0 + 17.25 HSPF - 7.7 + 10.0 + + + 95.0 + 11700.0 + minimum + + COP + 4.47 + + + + 95.0 + 36000.0 + maximum + + COP + 2.71 + + + + 82.0 + 13200.0 + minimum + + COP + 6.34 + + + + 82.0 + 40000.0 + maximum + + COP + 3.53 + + + + + + 47.0 + 10000.0 + minimum + + COP + 4.73 + + + + 47.0 + 36000.0 + maximum + + COP + 3.44 + + + + 17.0 + 4200.0 + minimum + + COP + 1.84 + + + + 17.0 + 24800.0 + maximum + + COP + 2.66 + + + + 5.0 + 1900.0 + minimum + + COP + 0.81 + + + + 5.0 + 19900.0 + maximum + + COP + 2.28 + + + - - 0.6 - 17.0 - + -0.25 + -0.25 + 0.365 @@ -403,7 +497,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -436,7 +530,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -447,7 +541,7 @@ - living space + conditioned space electricity 3.73 true @@ -455,7 +549,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -465,13 +559,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml index bdcc9548..e9facec2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml @@ -1,561 +1,561 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - air-to-air - electricity - 36000.0 - 36000.0 - variable speed - 0.78 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 22.0 - - - HSPF - 10.0 - - - -0.25 - -0.25 - 0.365 - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + air-to-air + electricity + 36000.0 + 36000.0 + variable speed + 0.78 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 22.0 + + + HSPF + 10.0 + + + -0.25 + -0.25 + 0.365 + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml index f9818e83..13f3c8cb 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml @@ -1,562 +1,562 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - 0.365 - -0.25 - - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - -0.25 - -0.25 - 0.365 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + 0.365 + -0.25 + + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + -0.25 + -0.25 + 0.365 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml index 1e45dcef..b70d6719 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml @@ -1,562 +1,562 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - 0.365 - -0.25 - - - - - - central air conditioner - electricity - 24000.0 - two stage - 1.0 - - SEER - 18.0 - - 0.73 - - -0.25 - -0.25 - 0.365 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + 0.365 + -0.25 + + + + + + central air conditioner + electricity + 24000.0 + two stage + 1.0 + + SEER + 18.0 + + 0.73 + + -0.25 + -0.25 + 0.365 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml index 2fb6e655..bc195cf9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml @@ -1,562 +1,562 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - 0.365 - -0.25 - - - - - - central air conditioner - electricity - 24000.0 - variable speed - 1.0 - - SEER - 24.0 - - 0.78 - - -0.25 - -0.25 - 0.365 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + 0.365 + -0.25 + + + + + + central air conditioner + electricity + 24000.0 + variable speed + 1.0 + + SEER + 24.0 + + 0.78 + + -0.25 + -0.25 + 0.365 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml index 5285446b..32083cbe 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml @@ -1,541 +1,541 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - 0.365 - -0.25 - - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + 0.365 + -0.25 + + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml index cb0e40bf..4958f4f4 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml @@ -1,557 +1,557 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - -0.25 - -0.25 - 0.365 - 30.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + -0.25 + -0.25 + 0.365 + 30.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml index 207e335f..ac6e3954 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml @@ -1,541 +1,541 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 24000.0 - 1.0 - - SEER - 19.0 - - 0.73 - - -0.25 - -0.25 - 0.365 - - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 24000.0 + 1.0 + + SEER + 19.0 + + 0.73 + + -0.25 + -0.25 + 0.365 + + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml index eb8cca2c..bc5651dd 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml @@ -1,560 +1,560 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - mini-split - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - -0.25 - -0.25 - 0.365 - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + mini-split + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + -0.25 + -0.25 + 0.365 + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml index ffe71194..ab362545 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml @@ -1,536 +1,536 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 24000.0 - 1.0 - - SEER - 19.0 - - 0.73 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 24000.0 + 1.0 + + SEER + 19.0 + + 0.73 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-heating.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml similarity index 87% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-heating.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml index 5e76b688..130ccf28 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-heating.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -322,25 +322,58 @@ - room air conditioner + mini-split electricity + 36000.0 + variable speed 1.0 - EER - 8.5 + SEER + 21.5 - 0.65 - electricity - - Percent - 1.0 - - 1.0 + 0.73 + + + 95.0 + 10372.0 + minimum + + COP + 4.05 + + + + 95.0 + 42653.0 + maximum + + COP + 3.27 + + + + 82.0 + 19456.0 + minimum + + COP + 8.03 + + + + 82.0 + 40093.0 + maximum + + COP + 3.27 + + + - 68.0 78.0 @@ -349,7 +382,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -382,7 +415,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -393,7 +426,7 @@ - living space + conditioned space electricity 3.73 true @@ -401,7 +434,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -411,13 +444,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml index e8589106..94222c58 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml @@ -1,497 +1,497 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - mini-split - electricity - 24000.0 - 1.0 - - SEER - 19.0 - - 0.73 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + mini-split + electricity + 24000.0 + 1.0 + + SEER + 19.0 + + 0.73 + + + + + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml index 9b9351d3..b2b4c69a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml @@ -1,548 +1,548 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 0.0 - 36000.0 - 0.73 - 0.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 0.0 + 36000.0 + 0.73 + 0.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml similarity index 80% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml index 921f35b3..4ab7ecb2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml @@ -1,551 +1,646 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - MaxLoad - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - mini-split - electricity - 0.73 - integrated - electricity - - Percent - 1.0 - - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + mini-split + electricity + 36000.0 + 36000.0 + variable speed + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 16.7 + + + HSPF + 11.3 + + + + 95.0 + 9600.0 + minimum + + COP + 4.02 + + + + 95.0 + 39000.0 + maximum + + COP + 2.86 + + + + 82.0 + 10224.0 + minimum + + COP + 4.61 + + + + 82.0 + 41587.0 + maximum + + COP + 3.29 + + + + + + 47.0 + 9200.0 + minimum + + COP + 4.35 + + + + 47.0 + 48000.0 + maximum + + COP + 3.21 + + + + 17.0 + 7063.0 + minimum + + COP + 2.92 + + + + 17.0 + 36800.0 + maximum + + COP + 2.15 + + + + 5.0 + 6310.0 + minimum + + COP + 2.6 + + + + 5.0 + 32920.0 + maximum + + COP + 1.93 + + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml index 8801c85e..e20e853e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml @@ -1,555 +1,555 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 36000.0 - 0.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 0.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 36000.0 + 0.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 0.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml index e4e8828c..73b230f5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml @@ -1,557 +1,557 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - mini-split - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + mini-split + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 15.0 + to outside + + + + return + + CFM25 + 5.0 + to outside + + + + + supply + 0.0 + attic - unvented + 30.0 + + + + return + 0.0 + attic - unvented + 10.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml index fd79e19a..7a602d34 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -371,7 +371,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -404,7 +404,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -415,7 +415,7 @@ - living space + conditioned space electricity 3.73 true @@ -423,7 +423,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -433,13 +433,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml index d61d4f85..17e84d0a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -11,9 +11,6 @@ 60 - - HERS - Bills @@ -142,7 +139,7 @@ outside - living space + conditioned space @@ -207,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -324,20 +321,28 @@ + + + + + + + natural gas + 60000.0 + + AFUE + 0.8 + + - mini-split electricity + 18000.0 + 18000.0 0.73 - integrated - natural gas - - AFUE - 0.95 - - 36000.0 - 30.0 + separate + 1.0 1.0 @@ -348,6 +353,12 @@ HSPF 10.0 + + + 0.6 + 17.0 + + @@ -380,18 +391,15 @@ supply 0.0 - attic - unvented - 30.0 return 0.0 - attic - unvented - 10.0 + 2700.0 @@ -399,7 +407,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -432,7 +440,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -443,7 +451,7 @@ - living space + conditioned space electricity 3.73 true @@ -451,7 +459,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -461,13 +469,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml index 4704139f..94b92d22 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -410,7 +410,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -443,7 +443,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -454,7 +454,7 @@ - living space + conditioned space electricity 3.73 true @@ -462,7 +462,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -472,13 +472,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml index cb8b2cde..a0a6ad4e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml @@ -1,528 +1,528 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - fuel oil - 60000.0 - - Percent - 0.6 - - - 40.0 - - - - - mini-split - electricity - 18000.0 - 18000.0 - 0.73 - separate - - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + fuel oil + 60000.0 + + Percent + 0.6 + + + 40.0 + + + + + mini-split + electricity + 18000.0 + 18000.0 + 0.73 + separate + + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml similarity index 78% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml index 2c5be527..e8e89d46 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml @@ -1,552 +1,600 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - HERS - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - mini-split - electricity - 0.73 - integrated - natural gas - - AFUE - 0.95 - - 30.0 - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 15.0 - to outside - - - - return - - CFM25 - 5.0 - to outside - - - - - supply - 0.0 - attic - unvented - 30.0 - - - - return - 0.0 - attic - unvented - 10.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 36000.0 + 36000.0 + variable speed + 0.73 + 1.0 + 1.0 + + SEER + 21.5 + + + HSPF + 10.5 + + + + 95.0 + 10372.0 + minimum + + COP + 4.05 + + + + 95.0 + 42653.0 + maximum + + COP + 3.27 + + + + 82.0 + 19456.0 + minimum + + COP + 8.03 + + + + 82.0 + 40093.0 + maximum + + COP + 3.27 + + + + + + 47.0 + 12143.0 + minimum + + COP + 4.81 + + + + 47.0 + 56499.0 + maximum + + COP + 3.17 + + + + 17.0 + 7414.0 + minimum + + COP + 1.96 + + + + 17.0 + 43387.0 + maximum + + COP + 2.31 + + + + 5.0 + 8130.0 + minimum + + COP + 1.71 + + + + 5.0 + 36037.0 + maximum + + COP + 1.96 + + + + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml index 99bdd216..192e82f3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -352,7 +352,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -385,7 +385,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -396,7 +396,7 @@ - living space + conditioned space electricity 3.73 true @@ -404,7 +404,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -414,13 +414,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml index f89f7a86..ece7c22e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml @@ -1,511 +1,511 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - mini-split - electricity - 36000.0 - 36000.0 - 0.73 - 1.0 - 1.0 - - SEER - 19.0 - - - HSPF - 10.0 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 36000.0 + 36000.0 + 0.73 + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml index 016921dc..de4ba87e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml @@ -1,934 +1,934 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.1 - - - - - - - - natural gas - 6400.0 - - AFUE - 0.92 - - 0.1 - - - - - - - - electricity - 6400.0 - - AFUE - 1.0 - - 0.1 - - - - - - - - natural gas - 6400.0 - - AFUE - 0.92 - - 0.1 - 200.0 - - - - - - - electricity - 6400.0 - - Percent - 1.0 - - 0.1 - - - - - - - fuel oil - 6400.0 - - Percent - 0.8 - - 0.1 - - 40.0 - - - - - - - - propane - 6400.0 - - AFUE - 0.8 - - 0.1 - - 0.0 - - - - - - central air conditioner - electricity - 3199.2 - single stage - 0.1333 - - SEER - 13.0 - - 0.73 - - - - room air conditioner - electricity - 9600.0 - 0.1333 - - EER - 8.5 - - 0.65 - - - - packaged terminal air conditioner - electricity - 9600.0 - 0.1333 - - EER - 10.7 - - 0.65 - - - - - air-to-air - electricity - 4800.0 - 2880.0 - 4800.0 - single stage - 0.73 - integrated - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - SEER - 13.0 - - - HSPF - 7.7 - - - - - - ground-to-air - electricity - 4800.0 - 4800.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - mini-split - electricity - 4800.0 - 2880.0 - 4800.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 3412.0 - 0.1 - 0.2 - - SEER - 19.0 - - - HSPF - 10.0 - - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 8.0 - attic - unvented - 75.0 - - - - supply - 8.0 - outside - 75.0 - - - - return - 4.0 - attic - unvented - 25.0 - - - - return - 4.0 - outside - 25.0 - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 8.0 - attic - unvented - 75.0 - - - - supply - 8.0 - outside - 75.0 - - - - return - 4.0 - attic - unvented - 25.0 - - - - return - 4.0 - outside - 25.0 - - - - - - - - - baseboard - - - - - - - - baseboard - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 8.0 - attic - unvented - 75.0 - - - - supply - 8.0 - outside - 75.0 - - - - return - 4.0 - attic - unvented - 25.0 - - - - return - 4.0 - outside - 25.0 - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 8.0 - attic - unvented - 75.0 - - - - supply - 8.0 - outside - 75.0 - - - - return - 4.0 - attic - unvented - 25.0 - - - - return - 4.0 - outside - 25.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.1 + + + + + + + + natural gas + 6400.0 + + AFUE + 0.92 + + 0.1 + + + + + + + + electricity + 6400.0 + + AFUE + 1.0 + + 0.1 + + + + + + + + natural gas + 6400.0 + + AFUE + 0.92 + + 0.1 + 200.0 + + + + + + + electricity + 6400.0 + + Percent + 1.0 + + 0.1 + + + + + + + fuel oil + 6400.0 + + Percent + 0.8 + + 0.1 + + 40.0 + + + + + + + + propane + 6400.0 + + AFUE + 0.8 + + 0.1 + + 0.0 + + + + + + central air conditioner + electricity + 3199.2 + single stage + 0.1333 + + SEER + 13.0 + + 0.73 + + + + room air conditioner + electricity + 9600.0 + 0.1333 + + EER + 8.5 + + 0.65 + + + + packaged terminal air conditioner + electricity + 9600.0 + 0.1333 + + EER + 10.7 + + 0.65 + + + + + air-to-air + electricity + 4800.0 + 2880.0 + 4800.0 + single stage + 0.73 + integrated + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + SEER + 13.0 + + + HSPF + 7.7 + + + + + + ground-to-air + electricity + 4800.0 + 4800.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + mini-split + electricity + 4800.0 + 2880.0 + 4800.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 3412.0 + 0.1 + 0.2 + + SEER + 19.0 + + + HSPF + 10.0 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 8.0 + attic - unvented + 75.0 + + + + supply + 8.0 + outside + 75.0 + + + + return + 4.0 + attic - unvented + 25.0 + + + + return + 4.0 + outside + 25.0 + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 8.0 + attic - unvented + 75.0 + + + + supply + 8.0 + outside + 75.0 + + + + return + 4.0 + attic - unvented + 25.0 + + + + return + 4.0 + outside + 25.0 + + + + + + + + + baseboard + + + + + + + + baseboard + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 8.0 + attic - unvented + 75.0 + + + + supply + 8.0 + outside + 75.0 + + + + return + 4.0 + attic - unvented + 25.0 + + + + return + 4.0 + outside + 25.0 + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 8.0 + attic - unvented + 75.0 + + + + supply + 8.0 + outside + 75.0 + + + + return + 4.0 + attic - unvented + 25.0 + + + + return + 4.0 + outside + 25.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml index 7ce89b0e..2d785cc9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml @@ -1,429 +1,428 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- HI -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 1A - - - - USA_HI_Honolulu.Intl.AP.911820_TMY3 - - USA_HI_Honolulu.Intl.AP.911820_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ HI +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 1A + + + + USA_HI_Honolulu.Intl.AP.911820_TMY3 + + USA_HI_Honolulu.Intl.AP.911820_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + conditioned space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml deleted file mode 100644 index 9995b8de..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml +++ /dev/null @@ -1,501 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - natural gas - 36000.0 - - Percent - 1.0 - - 1.0 - - 0.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml index 7de995ac..b4f4a9be 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml @@ -1,505 +1,505 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - packaged terminal air conditioner - electricity - 24000.0 - 1.0 - - EER - 10.7 - - 0.65 - electricity - 36000.0 - - Percent - 1.0 - - 1.0 - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + packaged terminal air conditioner + electricity + 24000.0 + 1.0 + + EER + 10.7 + + 0.65 + electricity + 36000.0 + + Percent + 1.0 + + 1.0 + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml index 443e256f..4dd94f0a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -351,7 +351,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -384,7 +384,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -395,7 +395,7 @@ - living space + conditioned space electricity 3.73 true @@ -403,7 +403,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -413,13 +413,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml index e7113308..9e086cfa 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml @@ -1,497 +1,497 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - packaged terminal air conditioner - electricity - 24000.0 - 1.0 - - EER - 10.7 - - 0.65 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + packaged terminal air conditioner + electricity + 24000.0 + 1.0 + + EER + 10.7 + + 0.65 + + + + + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml index 7e455635..d091b098 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -359,7 +359,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -392,7 +392,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -403,7 +403,7 @@ - living space + conditioned space electricity 3.73 true @@ -411,7 +411,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -421,13 +421,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml index 05eed290..9851032d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml @@ -1,518 +1,518 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - packaged terminal heat pump - electricity - 36000.0 - 36000.0 - 0.65 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 11.4 - - - COP - 3.6 - - - - 0.6 - 17.0 - - - - - - - 68.0 - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + packaged terminal heat pump + electricity + 36000.0 + 36000.0 + 0.65 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 11.4 + + + COP + 3.6 + + + + 0.6 + 17.0 + + + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml index 46bfbcc5..d897face 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml @@ -1,497 +1,497 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - room air conditioner - electricity - 8000.0 - 0.33 - - EER - 8.5 - - 0.65 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + room air conditioner + electricity + 8000.0 + 0.33 + + EER + 8.5 + + 0.65 + + + + + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml index 378084cf..35d4e30b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml @@ -1,497 +1,497 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - room air conditioner - electricity - 24000.0 - 1.0 - - CEER - 8.4 - - 0.65 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + room air conditioner + electricity + 24000.0 + 1.0 + + CEER + 8.4 + + 0.65 + + + + + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml index 8ad99841..1518ba8f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml @@ -1,497 +1,499 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-cooling-only.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - room air conditioner - electricity - 24000.0 - 1.0 - - EER - 8.5 - - 0.65 - - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-cooling-only.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + room air conditioner + electricity + 24000.0 + 1.0 + + EER + 8.5 + + 0.65 + + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml index 57785bb0..b54b58a3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml @@ -1,497 +1,497 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - room air conditioner - electricity - 24000.0 - 1.0 - - EER - 8.5 - - 0.65 - - - - - 78.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + room air conditioner + electricity + 24000.0 + 1.0 + + EER + 8.5 + + 0.65 + + + + + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml index 39a7ecf8..2db13f03 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -351,7 +351,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -384,7 +384,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -395,7 +395,7 @@ - living space + conditioned space electricity 3.73 true @@ -403,7 +403,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -413,13 +413,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml index 68d89e99..83dc9402 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -364,7 +364,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -397,7 +397,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -408,7 +408,7 @@ - living space + conditioned space electricity 3.73 true @@ -416,7 +416,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -426,13 +426,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml index 70e60846..9b4a437e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml @@ -1,565 +1,565 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - 11 - 1 - 5 - 1 - - - 6 - 1 - 10 - 1 - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + 11 + 1 + 5 + 1 + + + 6 + 1 + 10 + 1 + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml index 66216341..fe96d7f5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml @@ -1,557 +1,557 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - - 64, 64, 64, 64, 64, 64, 64, 70, 70, 66, 66, 66, 66, 66, 66, 66, 66, 68, 68, 68, 68, 68, 64, 64 - 68, 68, 68, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70 - 80, 80, 80, 80, 80, 80, 80, 75, 75, 80, 80, 80, 80, 80, 80, 80, 80, 78, 78, 78, 78, 78, 80, 80 - 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78 - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + + 64, 64, 64, 64, 64, 64, 64, 70, 70, 66, 66, 66, 66, 66, 66, 66, 66, 68, 68, 68, 68, 68, 64, 64 + 68, 68, 68, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70 + 80, 80, 80, 80, 80, 80, 80, 75, 75, 80, 80, 80, 80, 80, 80, 80, 80, 78, 78, 78, 78, 78, 80, 80 + 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78 + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml index d2d1aa74..24205aea 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml @@ -1,561 +1,561 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 66.0 - 49 - 80.0 - 78.0 - 42 - - 23 - 9 - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 66.0 + 49 + 80.0 + 78.0 + 42 + + 23 + 9 + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml index fd341067..b877ce4c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 60.0 - 80.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 60.0 + 80.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only-pilot-light.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-space-heater-gas-only.xml similarity index 95% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only-pilot-light.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-space-heater-gas-only.xml index feb44f40..a057cb9b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only-pilot-light.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-space-heater-gas-only.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -323,18 +323,13 @@ - - true - - 600.0 - - + - propane + natural gas 36000.0 - AFUE - 0.8 + Percent + 1.0 1.0 @@ -352,7 +347,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -385,7 +380,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -396,7 +391,7 @@ - living space + conditioned space electricity 3.73 true @@ -404,7 +399,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -414,13 +409,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml index 74d6b297..fb6d7d05 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml @@ -1,501 +1,501 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - fuel oil - 36000.0 - - Percent - 0.8 - - 1.0 - - 40.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + fuel oil + 36000.0 + + Percent + 0.8 + + 1.0 + + 40.0 + + + + + + 68.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml index af194385..0dd8811e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml @@ -1,501 +1,501 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - wood pellets - 36000.0 - - Percent - 0.8 - - 1.0 - - 40.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + wood pellets + 36000.0 + + Percent + 0.8 + + 1.0 + + 40.0 + + + + + + 68.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml deleted file mode 100644 index 03b1c4e9..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml +++ /dev/null @@ -1,556 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - true - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 3600.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 2400.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 7.5 - to outside - - - - return - - CFM25 - 2.5 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml index aa4280cf..4607f7b1 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 3600.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 2400.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 7.5 - to outside - - - - return - - CFM25 - 2.5 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 3600.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 2400.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 7.5 + to outside + + + + return + + CFM25 + 2.5 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml index 764d2fbc..793cc640 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml @@ -1,501 +1,501 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - electricity - 36000.0 - - AFUE - 0.98 - - 1.0 - - 0.0 - - - - - - 68.0 - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + electricity + 36000.0 + + AFUE + 0.98 + + 1.0 + + 0.0 + + + + + + 68.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml index ddc69a69..5a96a5e7 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml @@ -1,569 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - 0.5 - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - medium - 100.0 - - 4 - - 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057 - 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057 - 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0 - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + 0.5 + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + medium + 100.0 + + 4 + + 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057 + 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057 + 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0 + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml index 59ba34cd..5715250f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml @@ -1,567 +1,567 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - kWh/day - 1.1 - - 11 - 24 - 1 - 6 - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019 - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019 - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + kWh/day + 1.1 + + 11 + 24 + 1 + 6 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019 + 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019 + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml index 919f3218..04cb1ea2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -399,7 +399,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -432,7 +432,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -443,7 +443,7 @@ - living space + conditioned space electricity 3.73 true @@ -451,7 +451,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -461,13 +461,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false @@ -501,6 +501,9 @@ 0.0 + + 1.5 + diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml index e1b550c7..26660d96 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -399,7 +399,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -432,7 +432,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -443,7 +443,7 @@ - living space + conditioned space electricity 3.73 true @@ -451,7 +451,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -461,13 +461,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml index 742070b9..a33174a3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -402,7 +402,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -435,7 +435,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -446,7 +446,7 @@ - living space + conditioned space electricity 3.73 true @@ -454,7 +454,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -464,13 +464,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml index ebd8e2cc..013d3ae8 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml @@ -1,503 +1,503 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml index 347ba7f9..4fa2a468 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - US_CO_Boulder_AMY_2012 - - US_CO_Boulder_AMY_2012.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + US_CO_Boulder_AMY_2012 + + US_CO_Boulder_AMY_2012.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml index 423fabbc..149a2fc6 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml @@ -1,569 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- MD -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 4A - - - - USA_MD_Baltimore-Washington.Intl.AP.724060_TMY3 - - USA_MD_Baltimore-Washington.Intl.AP.724060_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - false - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - crawlspace - unvented - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - crawlspace - unvented - 4.0 - 600.0 - 8.0 - 3.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - crawlspace - unvented - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - crawlspace - unvented - 1350.0 - 0.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - crawlspace - unvented - 150.0 - - - - return - 0.0 - crawlspace - unvented - 50.0 - - - - - - - - - electricity - storage water heater - crawlspace - unvented - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ MD +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 4A + + + + USA_MD_Baltimore-Washington.Intl.AP.724060_TMY3 + + USA_MD_Baltimore-Washington.Intl.AP.724060_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + false + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + crawlspace - unvented + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + crawlspace - unvented + 4.0 + 600.0 + 8.0 + 3.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 4.0 + + + continuous - interior + 0.0 + + + + + + + + crawlspace - unvented + conditioned space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + crawlspace - unvented + 1350.0 + 0.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + crawlspace - unvented + 150.0 + + + + return + 0.0 + crawlspace - unvented + 50.0 + + + + + + + + + electricity + storage water heater + crawlspace - unvented + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml index bec29251..bb4e9ee5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml @@ -1,562 +1,562 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - - ZAF_Cape.Town.688160_IWEC - - ZAF_Cape.Town.688160_IWEC.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - SLA - 0.00667 - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - crawlspace - vented - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - crawlspace - vented - 4.0 - 600.0 - 8.0 - 3.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - crawlspace - vented - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - crawlspace - vented - 1350.0 - 0.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - crawlspace - vented - 150.0 - - - - return - 0.0 - crawlspace - vented - 50.0 - - - - - - - - - electricity - storage water heater - crawlspace - vented - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + + ZAF_Cape.Town.688160_IWEC + + ZAF_Cape.Town.688160_IWEC.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + SLA + 0.00667 + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + crawlspace - vented + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + crawlspace - vented + 4.0 + 600.0 + 8.0 + 3.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 4.0 + + + continuous - interior + 0.0 + + + + + + + + crawlspace - vented + conditioned space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + crawlspace - vented + 1350.0 + 0.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + crawlspace - vented + 150.0 + + + + return + 0.0 + crawlspace - vented + 50.0 + + + + + + + + + electricity + storage water heater + crawlspace - vented + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml index 92b95022..84cf014b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml @@ -1,508 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- TX -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 3A - - - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 - - USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ TX +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 3A + + + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3 + + USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + conditioned space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml index 3967ed0d..47ffb342 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml @@ -1,566 +1,566 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- MN -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 7 - - - - USA_MN_Duluth.Intl.AP.727450_TMY3 - - USA_MN_Duluth.Intl.AP.727450_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - false - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - unconditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - unconditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - - - basement - unconditioned - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - unconditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - basement - unconditioned - 150.0 - - - - return - 0.0 - basement - unconditioned - 50.0 - - - - - - - - - electricity - storage water heater - basement - unconditioned - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - basement - unconditioned - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - basement - unconditioned - electricity - 3.73 - true - 150.0 - - - - basement - unconditioned - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - basement - unconditioned - 650.0 - true - - - - basement - unconditioned - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ MN +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 7 + + + + USA_MN_Duluth.Intl.AP.727450_TMY3 + + USA_MN_Duluth.Intl.AP.727450_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + false + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - unconditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - unconditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + + + basement - unconditioned + conditioned space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - unconditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + basement - unconditioned + 150.0 + + + + return + 0.0 + basement - unconditioned + 50.0 + + + + + + + + + electricity + storage water heater + basement - unconditioned + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + basement - unconditioned + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + basement - unconditioned + electricity + 3.73 + true + 150.0 + + + + basement - unconditioned + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + basement - unconditioned + 650.0 + true + + + + basement - unconditioned + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml index df08b1fd..a8675760 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- MT -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 6B - - - - USA_MT_Helena.Rgnl.AP.727720_TMY3 - - USA_MT_Helena.Rgnl.AP.727720_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 48000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ MT +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 6B + + + + USA_MT_Helena.Rgnl.AP.727720_TMY3 + + USA_MT_Helena.Rgnl.AP.727720_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 48000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml index 12ad7863..77ed62d2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml @@ -1,508 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- HI -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 1A - - - - USA_HI_Honolulu.Intl.AP.911820_TMY3 - - USA_HI_Honolulu.Intl.AP.911820_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ HI +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 1A + + + + USA_HI_Honolulu.Intl.AP.911820_TMY3 + + USA_HI_Honolulu.Intl.AP.911820_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + conditioned space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml index 02474072..2393a685 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml @@ -1,508 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- FL -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 1A - - - - USA_FL_Miami.Intl.AP.722020_TMY3 - - USA_FL_Miami.Intl.AP.722020_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 12000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ FL +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 1A + + + + USA_FL_Miami.Intl.AP.722020_TMY3 + + USA_FL_Miami.Intl.AP.722020_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + conditioned space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 12000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml index caf66451..d8ee8f43 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml @@ -1,508 +1,507 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- AZ -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 2B - - - - USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3 - - USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - living space - 1350.0 - 4.0 - 150.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 5.0 - true - - - - 1.0 - 2.5 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - under slab - 150.0 - - - - return - 0.0 - under slab - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ AZ +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 2B + + + + USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3 + + USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + conditioned space + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 5.0 + true + + + + 1.0 + 2.5 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + under slab + 150.0 + + + + return + 0.0 + under slab + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml index 52cc6bab..1ec3d86b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml @@ -1,572 +1,572 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- OR -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 3 - 2 - 1350.0 - 10800.0 - - - - - 2006 - 4C - - - - USA_OR_Portland.Intl.AP.726980_TMY3 - - USA_OR_Portland.Intl.AP.726980_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 10800.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - SLA - 0.00667 - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - crawlspace - vented - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - crawlspace - vented - 4.0 - 600.0 - 8.0 - 3.0 - - none - - - - - continuous - exterior - 8.9 - 0.0 - 4.0 - - - continuous - interior - 0.0 - - - - - - - - crawlspace - vented - living space - floor - - - - 1350.0 - - - 18.7 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - crawlspace - vented - 1350.0 - 0.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 24000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - crawlspace - vented - 150.0 - - - - return - 0.0 - crawlspace - vented - 50.0 - - - - - - - - - electricity - storage water heater - crawlspace - vented - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 1228.5 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ OR +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 2 + 1350.0 + 10800.0 + + + + + 2006 + 4C + + + + USA_OR_Portland.Intl.AP.726980_TMY3 + + USA_OR_Portland.Intl.AP.726980_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 10800.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + SLA + 0.00667 + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + crawlspace - vented + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + crawlspace - vented + 4.0 + 600.0 + 8.0 + 3.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 4.0 + + + continuous - interior + 0.0 + + + + + + + + crawlspace - vented + conditioned space + floor + + + + 1350.0 + + + 18.7 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + crawlspace - vented + 1350.0 + 0.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 24000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + crawlspace - vented + 150.0 + + + + return + 0.0 + crawlspace - vented + 50.0 + + + + + + + + + electricity + storage water heater + crawlspace - vented + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 1228.5 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml index c528f124..fa78a70a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml @@ -1,565 +1,565 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - balanced - 110.0 - 24.0 - true - 60.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + balanced + 110.0 + 24.0 + true + 60.0 + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml index 2db022f3..e79bc490 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml @@ -1,581 +1,581 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - 1 - 100.0 - 1.5 - kitchen - true - 30.0 - - 18 - - - - - 2 - 50.0 - 1.5 - bath - true - 15.0 - - 7 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + 1 + 100.0 + 1.5 + kitchen + true + 30.0 + + 18 + + + + + 2 + 50.0 + 1.5 + bath + true + 15.0 + + 7 + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml index 6d5ee173..fde5033f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml @@ -1,572 +1,572 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - central fan integrated supply - - air handler fan - - 330.0 - 8.0 - true - 300.0 - - - 0.0 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + central fan integrated supply + + air handler fan + + 330.0 + 8.0 + true + 300.0 + + + 0.0 + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml index bdcdaa22..842a03c7 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml @@ -1,539 +1,539 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - DSE - - 0.8 - 0.7 - - - - - - - central fan integrated supply - - air handler fan - - 330.0 - 8.0 - true - 300.0 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + DSE + + 0.8 + 0.7 + + + + + + + central fan integrated supply + + air handler fan + + 330.0 + 8.0 + true + 300.0 + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml index 0ae5c218..98a6cd5e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml @@ -1,541 +1,541 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - evaporative cooler - electricity - 24000.0 - 1.0 - - - - - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - 0 - - - - - - - - - central fan integrated supply - - air handler fan - - 330.0 - 8.0 - true - 300.0 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + evaporative cooler + electricity + 24000.0 + 1.0 + + + + + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + 0 + + + + + + + + + central fan integrated supply + + air handler fan + + 330.0 + 8.0 + true + 300.0 + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml index 1592af1b..e6f777d5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -423,7 +423,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -456,7 +456,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -467,7 +467,7 @@ - living space + conditioned space electricity 3.73 true @@ -475,7 +475,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -485,13 +485,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml index e999c88d..99638d5b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -423,7 +423,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -456,7 +456,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -467,7 +467,7 @@ - living space + conditioned space electricity 3.73 true @@ -475,7 +475,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -485,13 +485,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml index e3f4db39..bbbc3bfd 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml @@ -1,569 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - central fan integrated supply - - air handler fan - - 330.0 - 8.0 - true - 300.0 - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + central fan integrated supply + + air handler fan + + 330.0 + 8.0 + true + 300.0 + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml index c1d6d9b6..3b0aed5a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml @@ -1,567 +1,567 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - energy recovery ventilator - 110.0 - 24.0 - true - 0.526 - 0.79 - 60.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + energy recovery ventilator + 110.0 + 24.0 + true + 0.526 + 0.79 + 60.0 + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml index 0c528de5..7613d60e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml @@ -1,567 +1,567 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - energy recovery ventilator - 110.0 - 24.0 - true - 0.48 - 0.72 - 60.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + energy recovery ventilator + 110.0 + 24.0 + true + 0.48 + 0.72 + 60.0 + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml index d72eb377..978f2b90 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml @@ -1,565 +1,565 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - exhaust only - 110.0 - 24.0 - true - 30.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + exhaust only + 110.0 + 24.0 + true + 30.0 + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml index d72eb377..978f2b90 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml @@ -1,565 +1,565 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - exhaust only - 110.0 - 24.0 - true - 30.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + exhaust only + 110.0 + 24.0 + true + 30.0 + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml index b8de06fe..c14ce13c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml @@ -1,566 +1,566 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - heat recovery ventilator - 110.0 - 24.0 - true - 0.79 - 60.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + heat recovery ventilator + 110.0 + 24.0 + true + 0.79 + 60.0 + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml index 2261b14f..391f2e2a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml @@ -1,566 +1,566 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - heat recovery ventilator - 110.0 - 24.0 - true - 0.72 - 60.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + heat recovery ventilator + 110.0 + 24.0 + true + 0.72 + 60.0 + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml index ec0af628..cb497a31 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml @@ -1,810 +1,810 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 18000.0 - - AFUE - 0.92 - - 0.5 - - - - - - - - natural gas - 18000.0 - - AFUE - 0.92 - - 0.5 - - - - - central air conditioner - electricity - 12000.0 - single stage - 0.5 - - SEER - 13.0 - - 0.73 - - - - - central air conditioner - electricity - 12000.0 - single stage - 0.5 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - 1 - 50.0 - 1.5 - kitchen - true - 15.0 - - 18 - - - - - 2 - 25.0 - 1.5 - bath - true - 7.5 - - 7 - - - - - 1000.0 - true - 75.0 - - - - supply only - 6.25 - 14.0 - true - 1.25 - - - - exhaust only - 15.0 - true - 3.75 - - - - balanced - 13.75 - 24.0 - true - 7.5 - - - - energy recovery ventilator - 6.25 - 24.0 - true - 0.48 - 0.72 - 3.125 - - - - heat recovery ventilator - 7.5 - 24.0 - true - 0.72 - 3.75 - - - - heat recovery ventilator - 7.5 - 23.0 - true - 0.72 - 3.75 - - - - energy recovery ventilator - 6.25 - 23.0 - true - 0.48 - 0.72 - 3.125 - - - - balanced - 13.75 - 23.0 - true - 7.5 - - - - exhaust only - 15.0 - true - 3.75 - - - - supply only - 6.25 - 13.0 - true - 1.25 - - - - 1000.0 - true - 75.0 - - - - 2 - 25.0 - 0.5 - bath - true - 7.5 - - 6 - - - - - 1 - 50.0 - 0.5 - kitchen - true - 15.0 - - 17 - - - - - central fan integrated supply - - air handler fan - - 40.0 - 8.0 - true - 37.5 - - - - - central fan integrated supply - - supplemental fan - - - 42.5 - 8.0 - true - 37.5 - - - - - heat recovery ventilator - 0.0 - 24.0 - true - 0.72 - 7.5 - - - - heat recovery ventilator - 15.0 - 0.0 - true - 0.72 - 7.5 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 18000.0 + + AFUE + 0.92 + + 0.5 + + + + + + + + natural gas + 18000.0 + + AFUE + 0.92 + + 0.5 + + + + + central air conditioner + electricity + 12000.0 + single stage + 0.5 + + SEER + 13.0 + + 0.73 + + + + + central air conditioner + electricity + 12000.0 + single stage + 0.5 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + 1 + 50.0 + 1.5 + kitchen + true + 15.0 + + 18 + + + + + 2 + 25.0 + 1.5 + bath + true + 7.5 + + 7 + + + + + 1000.0 + true + 75.0 + + + + supply only + 6.25 + 14.0 + true + 1.25 + + + + exhaust only + 15.0 + true + 3.75 + + + + balanced + 13.75 + 24.0 + true + 7.5 + + + + energy recovery ventilator + 6.25 + 24.0 + true + 0.48 + 0.72 + 3.125 + + + + heat recovery ventilator + 7.5 + 24.0 + true + 0.72 + 3.75 + + + + heat recovery ventilator + 7.5 + 23.0 + true + 0.72 + 3.75 + + + + energy recovery ventilator + 6.25 + 23.0 + true + 0.48 + 0.72 + 3.125 + + + + balanced + 13.75 + 23.0 + true + 7.5 + + + + exhaust only + 15.0 + true + 3.75 + + + + supply only + 6.25 + 13.0 + true + 1.25 + + + + 1000.0 + true + 75.0 + + + + 2 + 25.0 + 0.5 + bath + true + 7.5 + + 6 + + + + + 1 + 50.0 + 0.5 + kitchen + true + 15.0 + + 17 + + + + + central fan integrated supply + + air handler fan + + 40.0 + 8.0 + true + 37.5 + + + + + central fan integrated supply + + supplemental fan + + + 42.5 + 8.0 + true + 37.5 + + + + + heat recovery ventilator + 0.0 + 24.0 + true + 0.72 + 7.5 + + + + heat recovery ventilator + 15.0 + 0.0 + true + 0.72 + 7.5 + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml index e7f9d238..1658a441 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml @@ -1,565 +1,565 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - supply only - 110.0 - 24.0 - true - 30.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + supply only + 110.0 + 24.0 + true + 30.0 + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml index 677f62fe..ed07cd3d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml @@ -1,563 +1,563 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - - 4500.0 - true - 300.0 - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + + 4500.0 + true + 300.0 + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml index 1cd29a58..071e1d3d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml @@ -1,563 +1,565 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - false - - 2-story home in Denver - , - < - > - / - \ - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + false + + 2-story home in Denver + , + < + > + / + \ + + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-none.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-none.xml deleted file mode 100644 index 749d8dfa..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-none.xml +++ /dev/null @@ -1,548 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml index cd44c1d0..a76b52d1 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -164,7 +164,7 @@ outside - living space + conditioned space @@ -229,7 +229,7 @@ attic - unvented - living space + conditioned space ceiling @@ -424,7 +424,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -485,7 +485,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -496,7 +496,7 @@ - living space + conditioned space electricity 3.73 true @@ -504,7 +504,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -514,13 +514,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml index 48c4a63c..61732000 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -146,7 +146,7 @@ outside - living space + conditioned space @@ -211,7 +211,7 @@ attic - unvented - living space + conditioned space ceiling @@ -406,7 +406,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -467,7 +467,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -478,7 +478,7 @@ - living space + conditioned space electricity 3.73 true @@ -486,7 +486,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -496,13 +496,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml index a9741aa8..f0712c4b 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml @@ -1,651 +1,651 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Net Metering w/ Wholesale Excess Rate - - electricity - 10.0 - 0.12 - - - natural gas - 11.0 - 1.1 - - - - - User-Specified - 0.035 - - - - $/kW - 2.5 - - - - - Net Metering w/ Retail Excess Rate - - electricity - 10.0 - 0.12 - - - natural gas - 11.0 - 1.1 - - - - - Retail Electricity Cost - - - - $/kW - 2.5 - - - - - Feed-In Tariff - - electricity - 10.0 - 0.12 - - - natural gas - 11.0 - 1.1 - - - - - 0.13 - - - - $ - 7.5 - - - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - roof - standard - fixed - 180 - 20.0 - 10000.0 - 0.14 - - - - - roof - premium - fixed - 90 - 20.0 - 1500.0 - 0.14 - - - - - 0.96 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Net Metering w/ Wholesale Excess Rate + + electricity + 10.0 + 0.12 + + + natural gas + 11.0 + 1.1 + + + + + User-Specified + 0.035 + + + + $/kW + 2.5 + + + + + Net Metering w/ Retail Excess Rate + + electricity + 10.0 + 0.12 + + + natural gas + 11.0 + 1.1 + + + + + Retail Electricity Cost + + + + $/kW + 2.5 + + + + + Feed-In Tariff + + electricity + 10.0 + 0.12 + + + natural gas + 11.0 + 1.1 + + + + + 0.13 + + + + $ + 7.5 + + + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + roof + standard + fixed + 180 + 20.0 + 10000.0 + 0.14 + + + + + roof + premium + fixed + 90 + 20.0 + 1500.0 + 0.14 + + + + + 0.96 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml index be3af1c5..d05ea274 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml @@ -1,563 +1,563 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - electricity - 12.0 - 0.12 - - - natural gas - 12.0 - 1.1 - - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + electricity + 12.0 + 0.12 + + + natural gas + 12.0 + 1.1 + + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml index 12b632de..260aac12 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml @@ -1,467 +1,467 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - - Bills - - - - - - - - proposed workscope - - - - - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 3 - 2700.0 - - - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - - - - - - attic - unvented - 1509.3 - 6.0 - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - - - 4.0 - - - - - - - ground - basement - conditioned - 150.0 - 8.0 - 7.0 - - - - continuous - exterior - 8.9 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - - - - - - 40.0 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - 1.0 - - SEER - 13.0 - - - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - - - - return - 0.0 - - 2 - - - 2700.0 - - - - - - - exhaust only - true - - - - kitchen - true - - - - bath - true - - - - true - - - - - - - electricity - storage water heater - 1.0 - 18767.0 - 0.95 - - - - - - - - - - shower head - true - - - - faucet - false - - - - - - hot water - 40.0 - liquid direct - single glazing black - 180 - 20.0 - 0.77 - 0.793 - - - - - - - 180 - 20.0 - 4000.0 - 2015 - - - - - - - - - - Li-ion - - - - - - - - - - electricity - - - - - - - - - - electricity - - - - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - - - - TV other - - - - other - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + + Bills + + + + + + + + proposed workscope + + + + + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 3 + 2700.0 + + + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + + + + + + attic - unvented + 1509.3 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + + + 4.0 + + + + + + + ground + basement - conditioned + 150.0 + 8.0 + 7.0 + + + + continuous - exterior + 8.9 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + + + + + + 40.0 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + 1.0 + + SEER + 13.0 + + + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + + + + return + 0.0 + + 2 + + + 2700.0 + + + + + + + exhaust only + true + + + + kitchen + true + + + + bath + true + + + + true + + + + + + + electricity + storage water heater + 1.0 + 18767.0 + 0.95 + + + + + + + + + + shower head + true + + + + faucet + false + + + + + + hot water + 40.0 + liquid direct + single glazing black + 180 + 20.0 + 0.77 + 0.793 + + + + + + + 180 + 20.0 + 4000.0 + 2015 + + + + + + + + + + Li-ion + + + + + + + + + + electricity + + + + + + + + + + electricity + + + + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + + + + TV other + + + + other + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml index e80a8650..1bf5ac19 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml @@ -1,651 +1,651 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Cambium Hourly MidCase LRMER RMPA - CO2e - - electricity - kg/MWh - ../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_MidCase.csv - 1 - 17 - - - - Cambium Hourly LowRECosts LRMER RMPA - CO2e - - electricity - kg/MWh - ../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_LowRECosts.csv - 1 - 17 - - - - Cambium Annual MidCase AER National - CO2e - - electricity - kg/MWh - 392.6 - - - - eGRID RMPA - SO2 - - electricity - lb/MWh - 0.384 - - - - eGRID RMPA - NOx - - electricity - lb/MWh - 0.67 - - - - - - Bills - - - - - - - - -
- CO -
- Western - RMPA - RMPAc -
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - roof - standard - fixed - 180 - 20.0 - 4000.0 - 0.14 - - - - - roof - premium - fixed - 90 - 20.0 - 1500.0 - 0.14 - - - - - 0.96 - - - - - - outside - Li-ion - - kWh - 20.0 - - - kWh - 18.0 - - 6000.0 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Cambium Hourly MidCase LRMER RMPA + CO2e + + electricity + kg/MWh + ../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_MidCase.csv + 1 + 17 + + + + Cambium Hourly LowRECosts LRMER RMPA + CO2e + + electricity + kg/MWh + ../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_LowRECosts.csv + 1 + 17 + + + + Cambium Annual MidCase AER National + CO2e + + electricity + kg/MWh + 392.6 + + + + eGRID RMPA + SO2 + + electricity + lb/MWh + 0.384 + + + + eGRID RMPA + NOx + + electricity + lb/MWh + 0.67 + + + + + + Bills + + + + + + + + +
+ CO +
+ Western + RMPA + RMPAc +
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + roof + standard + fixed + 180 + 20.0 + 4000.0 + 0.14 + + + + + roof + premium + fixed + 90 + 20.0 + 1500.0 + 0.14 + + + + + 0.96 + + + + + + outside + Li-ion + + kWh + 20.0 + + + kWh + 18.0 + + 6000.0 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml index a8c22351..544a74ed 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -11,7 +11,6 @@ 60 - ../../HPXMLtoOpenStudio/resources/schedule_files/battery.csv Bills @@ -52,6 +51,9 @@ 2700.0 21600.0 + + ../../HPXMLtoOpenStudio/resources/schedule_files/battery.csv + @@ -140,7 +142,7 @@ outside - living space + conditioned space @@ -205,7 +207,7 @@ attic - unvented - living space + conditioned space ceiling @@ -400,7 +402,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -465,7 +467,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -476,7 +478,7 @@ - living space + conditioned space electricity 3.73 true @@ -484,7 +486,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -494,13 +496,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml index 189d8c6d..56f52769 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -399,7 +399,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -464,7 +464,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -475,7 +475,7 @@ - living space + conditioned space electricity 3.73 true @@ -483,7 +483,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -493,13 +493,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml index bcfd8819..3f77271a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml @@ -1,569 +1,569 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - natural gas - 8500.0 - 1200.0 - - - - fuel oil - 8500.0 - 1200.0 - - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + natural gas + 8500.0 + 1200.0 + + + + fuel oil + 8500.0 + 1200.0 + + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml index 63eac1cb..644d8525 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -142,7 +142,7 @@ outside - living space + conditioned space @@ -207,7 +207,7 @@ attic - unvented - living space + conditioned space ceiling @@ -402,7 +402,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -435,7 +435,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -446,7 +446,7 @@ - living space + conditioned space electricity 3.73 true @@ -454,7 +454,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -464,13 +464,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml index 5d13610e..78706fd9 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml @@ -1,787 +1,787 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - - 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 - 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 - 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 - 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 - 1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011 - - - - - living space - electricity - 3.73 - true - 150.0 - - 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 - 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 - 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - living space - 650.0 - true - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - 700.0 - false - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - 800.0 - false - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - 300.0 - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - 400.0 - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - electricity - false - - 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 - 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 - 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 - 1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905 - 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 - 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 - 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - - - - - - unknown - - - - unknown - - kWh/year - 2700.0 - - - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - - gas fired - - therm/year - 500.0 - - - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - - - - unknown - - - - unknown - - kWh/year - 1000.0 - - - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - - electric resistance - - kWh/year - 1300.0 - - - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 - - - - - - - - TV other - - kWh/year - 620.0 - - - 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 - 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 - 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 - 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - - - - - electric vehicle charging - - kWh/year - 1500.0 - - - 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 - 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - - - - - well pump - - kWh/year - 475.0 - - - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - grill - - therm/year - 25.0 - - propane - - 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 - 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - lighting - - therm/year - 28.0 - - natural gas - - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - fireplace - - therm/year - 55.0 - - wood - - 0.5 - 0.1 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + + 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 + 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 + 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 + 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 + 1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011 + + + + + conditioned space + electricity + 3.73 + true + 150.0 + + 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 + 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 + 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + conditioned space + 650.0 + true + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 700.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 800.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + conditioned space + 300.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + conditioned space + 400.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + conditioned space + electricity + false + + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 + 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 + 1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905 + 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 + 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 + 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + + + unknown + + + + unknown + + kWh/year + 2700.0 + + + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + gas fired + + therm/year + 500.0 + + + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + + + unknown + + + + unknown + + kWh/year + 1000.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + + electric resistance + + kWh/year + 1300.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 + + + + + + + + TV other + + kWh/year + 620.0 + + + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + + electric vehicle charging + + kWh/year + 1500.0 + + + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 + + + + + well pump + + kWh/year + 475.0 + + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + grill + + therm/year + 25.0 + + propane + + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + lighting + + therm/year + 28.0 + + natural gas + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + fireplace + + therm/year + 55.0 + + wood + + 0.5 + 0.1 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml index 3737fc66..33f2d8e5 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml @@ -1,778 +1,778 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - - 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 - 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 - 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 - 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 - 1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011 - - - - - living space - electricity - 3.73 - true - 150.0 - - 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 - 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 - 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - living space - 650.0 - true - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - 700.0 - false - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - 800.0 - false - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - 300.0 - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - 400.0 - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - electricity - false - - 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 - 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 - 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 - 1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905 - 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 - 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 - 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - - - - - - unknown - - - - unknown - - kWh/year - 2700.0 - - - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - - none - - - - - - - unknown - - - - unknown - - kWh/year - 1000.0 - - - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - - heat pump - - kWh/year - 260.0 - - - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 - - - - - - - - TV other - - kWh/year - 620.0 - - - 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 - 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 - 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 - 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - - - - - electric vehicle charging - - kWh/year - 1500.0 - - - 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 - 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 - - - - - well pump - - kWh/year - 475.0 - - - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - grill - - therm/year - 25.0 - - fuel oil - - 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 - 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - lighting - - therm/year - 28.0 - - natural gas - - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - fireplace - - therm/year - 55.0 - - wood pellets - - 0.5 - 0.1 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + + 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 + 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 + 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 + 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 + 1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011 + + + + + conditioned space + electricity + 3.73 + true + 150.0 + + 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 + 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 + 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + conditioned space + 650.0 + true + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 700.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + 800.0 + false + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + conditioned space + 300.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + conditioned space + 400.0 + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + conditioned space + electricity + false + + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 + 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 + 1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905 + 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 + 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 + 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + + + unknown + + + + unknown + + kWh/year + 2700.0 + + + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + none + + + + + + + unknown + + + + unknown + + kWh/year + 1000.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + + heat pump + + kWh/year + 260.0 + + + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 + + + + + + + + TV other + + kWh/year + 620.0 + + + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + + electric vehicle charging + + kWh/year + 1500.0 + + + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 + + + + + well pump + + kWh/year + 475.0 + + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + grill + + therm/year + 25.0 + + fuel oil + + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + lighting + + therm/year + 28.0 + + natural gas + + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + fireplace + + therm/year + 55.0 + + wood pellets + + 0.5 + 0.1 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml index bb8fb73b..e0f9861a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml @@ -1,541 +1,541 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - other - - kWh/year - 0.0 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + other + + kWh/year + 0.0 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml index fb186309..8a5b4629 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -106,7 +106,7 @@ outside - living space + conditioned space @@ -126,7 +126,7 @@ other heated space - living space + conditioned space @@ -145,7 +145,7 @@ outside - living space + conditioned space @@ -165,7 +165,7 @@ outside - living space + conditioned space @@ -187,7 +187,7 @@ other housing unit - living space + conditioned space floor @@ -201,7 +201,7 @@ other housing unit - living space + conditioned space ceiling @@ -336,14 +336,14 @@ supply 0.0 - living space + conditioned space 150.0 return 0.0 - living space + conditioned space 50.0 @@ -355,7 +355,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -388,7 +388,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -399,7 +399,7 @@ - living space + conditioned space electricity 3.73 true @@ -407,7 +407,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -417,13 +417,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml index 69dff9cb..581c00d3 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml @@ -1,566 +1,566 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - - 180 - 15.0 - 12.0 - - - 0 - 10.0 - - - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + + 180 + 15.0 + 12.0 + + + 0 + 10.0 + + + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml index 320b924c..3f4d271a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - well-shielded - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + well-shielded + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-crankcase-heater-40w.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-unit-multiplier.xml similarity index 96% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-crankcase-heater-40w.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-misc-unit-multiplier.xml index e56e7fc7..5427b6ea 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-crankcase-heater-40w.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-unit-multiplier.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -43,6 +43,7 @@ single-family detached + 10 2.0 1.0 8.0 @@ -139,7 +140,7 @@ outside - living space + conditioned space @@ -204,7 +205,7 @@ attic - unvented - living space + conditioned space ceiling @@ -348,9 +349,6 @@ 13.0 0.73 - - 40.0 - @@ -402,7 +400,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -435,7 +433,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -446,7 +444,7 @@ - living space + conditioned space electricity 3.73 true @@ -454,7 +452,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -464,13 +462,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml index 4e720b09..02e6420f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml @@ -1,720 +1,720 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - 0.9 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - 0.9 - - - - - living space - electricity - 3.73 - true - 150.0 - - 0.9 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - 0.9 - - - - - living space - 650.0 - true - - 0.9 - - - - - living space - 300.0 - - 0.9 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - 400.0 - - 0.9 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - electricity - false - - 0.9 - - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - 0.9 - 0.9 - - - - - - unknown - - - - unknown - - kWh/year - 2700.0 - - - 0.9 - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - - gas fired - - therm/year - 500.0 - - - 0.9 - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - - - - unknown - - - - unknown - - kWh/year - 1000.0 - - - 0.9 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - - electric resistance - - kWh/year - 1300.0 - - - 0.9 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 - 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 - - - - - - - - TV other - - kWh/year - 620.0 - - - 0.9 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - 0.9 - - - - - grill - - therm/year - 25.0 - - propane - - 0.9 - 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 - 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - lighting - - therm/year - 28.0 - - natural gas - - 0.9 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - - fireplace - - therm/year - 55.0 - - wood - - 0.5 - 0.1 - 0.9 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 - 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + 0.9 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + 0.9 + + + + + conditioned space + electricity + 3.73 + true + 150.0 + + 0.9 + + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + 0.9 + + + + + conditioned space + 650.0 + true + + 0.9 + + + + + conditioned space + 300.0 + + 0.9 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + conditioned space + 400.0 + + 0.9 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + conditioned space + electricity + false + + 0.9 + + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + 0.9 + 0.9 + + + + + + unknown + + + + unknown + + kWh/year + 2700.0 + + + 0.9 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + gas fired + + therm/year + 500.0 + + + 0.9 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + + + + unknown + + + + unknown + + kWh/year + 1000.0 + + + 0.9 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + + electric resistance + + kWh/year + 1300.0 + + + 0.9 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024 + 0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921 + + + + + + + + TV other + + kWh/year + 620.0 + + + 0.9 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + 0.9 + + + + + grill + + therm/year + 25.0 + + propane + + 0.9 + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + lighting + + therm/year + 28.0 + + natural gas + + 0.9 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + + fireplace + + therm/year + 55.0 + + wood + + 0.5 + 0.1 + 0.9 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065 + 1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-mf-units.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-mf-units.xml new file mode 100644 index 00000000..411c43de --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-mf-units.xml @@ -0,0 +1,2755 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 1200.0 + 9600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + + ACHnatural + 0.375 + + 9600.0 + + + + + + + + + + + + + + + + false + + + + + + + + + + + + + + outside + basement - unconditioned + 77.1 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + basement - unconditioned + basement - unconditioned + 30.8 + 0.7 + 0.92 + + + 4.0 + + + + + + + outside + conditioned space + + + + 800.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 320.0 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + ground + basement - unconditioned + 8.0 + 800.0 + 8.0 + 7.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + basement - unconditioned + basement - unconditioned + 8.0 + 320.0 + 8.0 + 7.0 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + + + basement - unconditioned + conditioned space + floor + + + + 1200.0 + + + 22.84 + + + + + other housing unit + conditioned space + ceiling + + + + 1200.0 + + gypsum board + + + + 2.1 + + + + + + + basement - unconditioned + 1200.0 + 4.0 + 100.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 43.2 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 43.2 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 57.6 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + electricity + 12000.0 + + Percent + 1.0 + + 1.0 + + + + room air conditioner + electricity + 12000.0 + 1.0 + + EER + 8.5 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 1200.0 + 9600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + + ACHnatural + 0.375 + + 9600.0 + + + + + + + + + + + + + + + + false + + + + + + + + + + + + + + outside + basement - unconditioned + 77.1 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + basement - unconditioned + basement - unconditioned + 30.8 + 0.7 + 0.92 + + + 4.0 + + + + + + + outside + conditioned space + + + + 800.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 320.0 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + ground + basement - unconditioned + 8.0 + 800.0 + 8.0 + 7.0 + + none + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + basement - unconditioned + basement - unconditioned + 8.0 + 320.0 + 8.0 + 7.0 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + + + basement - unconditioned + conditioned space + floor + + + + 1200.0 + + + 22.84 + + + + + other housing unit + conditioned space + ceiling + + + + 1200.0 + + gypsum board + + + + 2.1 + + + + + + + basement - unconditioned + 1200.0 + 4.0 + 100.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 43.2 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 43.2 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 57.6 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + electricity + 12000.0 + + Percent + 1.0 + + 1.0 + + + + room air conditioner + electricity + 12000.0 + 1.0 + + EER + 8.5 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 1200.0 + 9600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + + ACHnatural + 0.375 + + 9600.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 800.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 320.0 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 1200.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 1200.0 + + gypsum board + + + + 2.1 + + + + + + + 43.2 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 43.2 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 57.6 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + electricity + 12000.0 + + Percent + 1.0 + + 1.0 + + + + room air conditioner + electricity + 12000.0 + 1.0 + + EER + 8.5 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 1200.0 + 9600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_4.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + + ACHnatural + 0.375 + + 9600.0 + + + + + + + + + + + + + + + + + + + + + + outside + conditioned space + + + + 800.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 320.0 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 1200.0 + + + 2.1 + + + + + other housing unit + conditioned space + ceiling + + + + 1200.0 + + gypsum board + + + + 2.1 + + + + + + + 43.2 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 43.2 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 57.6 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + electricity + 12000.0 + + Percent + 1.0 + + 1.0 + + + + room air conditioner + electricity + 12000.0 + 1.0 + + EER + 8.5 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 1200.0 + 9600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_5.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + + ACHnatural + 0.375 + + 9600.0 + + + + + + + + true + + + + SLA + 0.003 + + + + + + + + + + + + + + + + + + + attic - vented + 1341.6 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 800.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 320.0 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + outside + attic - vented + gable + + + + 200.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 200.0 + 0.7 + 0.92 + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 1200.0 + + + 2.1 + + + + + attic - vented + conditioned space + ceiling + + + + 1200.0 + + gypsum board + + + + 39.3 + + + + + + + 43.2 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 43.2 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 57.6 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + electricity + 12000.0 + + Percent + 1.0 + + 1.0 + + + + room air conditioner + electricity + 12000.0 + 1.0 + + EER + 8.5 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 1200.0 + 9600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_6.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + + ACHnatural + 0.375 + + 9600.0 + + + + + + + + true + + + + SLA + 0.003 + + + + + + + + + + + + + + + + + + + attic - vented + 1341.6 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 800.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + conditioned space + + + + 320.0 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + outside + attic - vented + gable + + + + 200.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 200.0 + 0.7 + 0.92 + + + 4.0 + + + + + + + other housing unit + conditioned space + floor + + + + 1200.0 + + + 2.1 + + + + + attic - vented + conditioned space + ceiling + + + + 1200.0 + + gypsum board + + + + 39.3 + + + + + + + 43.2 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 43.2 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 57.6 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + electricity + 12000.0 + + Percent + 1.0 + + 1.0 + + + + room air conditioner + electricity + 12000.0 + 1.0 + + EER + 8.5 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-sfd-buildings.xml similarity index 95% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-sfd-buildings.xml index c13698c7..e50aceb1 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-sfd-buildings.xml @@ -1,1593 +1,1602 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
- - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
- - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+ + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml index f16ee8ec..95d9c72a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml @@ -1,597 +1,597 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - roof - standard - fixed - 180 - 20.0 - 4000.0 - 0.14 - - - - - roof - premium - fixed - 90 - 20.0 - 1500.0 - 0.14 - - - - - 0.96 - - - - - - outside - Li-ion - - Ah - 400.0 - - - Ah - 360.0 - - 6000.0 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + roof + standard + fixed + 180 + 20.0 + 4000.0 + 0.14 + + + + + roof + premium + fixed + 90 + 20.0 + 1500.0 + 0.14 + + + + + 0.96 + + + + + + outside + Li-ion + + Ah + 400.0 + + + Ah + 360.0 + + 6000.0 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml index 1913f597..946bad55 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml @@ -1,696 +1,695 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 2180.2 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - garage - - - - 560.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - outside - living space - - - - 960.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - garage - living space - - - - 240.0 - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 337.5 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - garage - ceiling - - - - 600.0 - - - 2.1 - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - garage - 600.0 - 4.0 - 70.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - basement - conditioned - 1350.0 - 4.0 - 120.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 12.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - garage - 150.0 - - - - return - 0.0 - garage - 50.0 - - - - - - - - - electricity - storage water heater - garage - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - roof - standard - fixed - 180 - 20.0 - 4000.0 - 0.14 - - - - - roof - premium - fixed - 90 - 20.0 - 1500.0 - 0.14 - - - - - 0.96 - - - - - - garage - Li-ion - - kWh - 20.0 - - - kWh - 18.0 - - 6000.0 - - - - - - - garage - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - garage - electricity - 3.73 - true - 150.0 - - - - garage - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - garage - 650.0 - true - - - - garage - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - garage - 0.4 - - - - - - - garage - 0.1 - - - - - - - garage - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 2180.2 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + garage + + + + 560.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + outside + conditioned space + + + + 960.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + garage + conditioned space + + + + 240.0 + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 337.5 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + garage + ceiling + + + + 600.0 + + + 2.1 + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + garage + 600.0 + 4.0 + 70.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + basement - conditioned + 1350.0 + 4.0 + 120.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 12.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + garage + 150.0 + + + + return + 0.0 + garage + 50.0 + + + + + + + + + electricity + storage water heater + garage + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + roof + standard + fixed + 180 + 20.0 + 4000.0 + 0.14 + + + + + roof + premium + fixed + 90 + 20.0 + 1500.0 + 0.14 + + + + + 0.96 + + + + + + garage + Li-ion + + kWh + 20.0 + + + kWh + 18.0 + + 6000.0 + + + + + + + garage + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + garage + electricity + 3.73 + true + 150.0 + + + + garage + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + garage + 650.0 + true + + + + garage + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + garage + 0.4 + + + + + + + garage + 0.1 + + + + + + + garage + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml index e191316d..b243d125 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -399,7 +399,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -477,7 +477,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -488,7 +488,7 @@ - living space + conditioned space electricity 3.73 true @@ -496,7 +496,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -506,13 +506,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml index 7947ccb2..be13747f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -11,7 +11,6 @@ 60 - ../../HPXMLtoOpenStudio/resources/schedule_files/battery.csv Bills @@ -52,6 +51,9 @@ 2700.0 21600.0
+ + ../../HPXMLtoOpenStudio/resources/schedule_files/battery.csv + @@ -140,7 +142,7 @@ outside - living space + conditioned space @@ -205,7 +207,7 @@ attic - unvented - living space + conditioned space ceiling @@ -400,7 +402,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -477,7 +479,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -488,7 +490,7 @@ - living space + conditioned space electricity 3.73 true @@ -496,7 +498,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -506,13 +508,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml index e96fbd95..33788e67 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml @@ -1,597 +1,597 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - roof - standard - fixed - 180 - 20.0 - 4000.0 - 0.14 - - - - - roof - premium - fixed - 90 - 20.0 - 1500.0 - 0.14 - - - - - 0.96 - - - - - - outside - Li-ion - - kWh - 20.0 - - - kWh - 18.0 - - 6000.0 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + roof + standard + fixed + 180 + 20.0 + 4000.0 + 0.14 + + + + + roof + premium + fixed + 90 + 20.0 + 1500.0 + 0.14 + + + + + 0.96 + + + + + + outside + Li-ion + + kWh + 20.0 + + + kWh + 18.0 + + 6000.0 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml index 36d19b45..02a6429a 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -11,7 +11,6 @@ 60 - ../../HPXMLtoOpenStudio/resources/schedule_files/battery.csv Bills @@ -52,6 +51,9 @@ 2700.0 21600.0 + + ../../HPXMLtoOpenStudio/resources/schedule_files/battery.csv + @@ -140,7 +142,7 @@ outside - living space + conditioned space @@ -205,7 +207,7 @@ attic - unvented - living space + conditioned space ceiling @@ -400,7 +402,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -493,7 +495,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -504,7 +506,7 @@ - living space + conditioned space electricity 3.73 true @@ -512,7 +514,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -522,13 +524,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml index e7a004fd..27a56635 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -399,7 +399,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -492,7 +492,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -503,7 +503,7 @@ - living space + conditioned space electricity 3.73 true @@ -511,7 +511,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -521,13 +521,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml index de72148d..a8b12b84 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -399,7 +399,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -476,7 +476,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -487,7 +487,7 @@ - living space + conditioned space electricity 3.73 true @@ -495,7 +495,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -505,13 +505,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml index 3067b9d3..68374bf2 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml @@ -1,581 +1,581 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - roof - standard - fixed - 180 - 20.0 - 4000.0 - 0.14 - - - - - roof - premium - fixed - 90 - 20.0 - 1500.0 - 0.14 - - - - - 0.96 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + roof + standard + fixed + 180 + 20.0 + 4000.0 + 0.14 + + + + + roof + premium + fixed + 90 + 20.0 + 1500.0 + 0.14 + + + + + 0.96 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml index d74595fb..0b9fd256 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -146,7 +146,7 @@ outside - living space + conditioned space @@ -211,7 +211,7 @@ attic - unvented - living space + conditioned space ceiling @@ -406,7 +406,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -439,7 +439,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -450,7 +450,7 @@ - living space + conditioned space electricity 3.73 true @@ -458,7 +458,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -468,13 +468,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0.xml index 46422abd..05942ad0 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -142,7 +142,7 @@ outside - living space + conditioned space @@ -207,7 +207,7 @@ attic - unvented - living space + conditioned space ceiling @@ -402,7 +402,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -435,7 +435,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -446,7 +446,7 @@ - living space + conditioned space electricity 3.73 true @@ -454,7 +454,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -464,13 +464,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml index 506e053d..23c1767e 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -142,7 +142,7 @@ outside - living space + conditioned space @@ -207,7 +207,7 @@ attic - unvented - living space + conditioned space ceiling @@ -402,7 +402,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -435,7 +435,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -446,7 +446,7 @@ - living space + conditioned space electricity 3.73 true @@ -454,7 +454,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -464,7 +464,7 @@ - living space + conditioned space 650.0 true @@ -475,12 +475,12 @@
- living space + conditioned space 300.0 - living space + conditioned space electricity false @@ -543,34 +543,34 @@ unknown - - + + unknown - - + + gas fired - - - + + + unknown - - - + + + unknown - - + + - + electric resistance - - + + diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml index eb5d37ff..b60b272f 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -142,7 +142,7 @@ outside - living space + conditioned space @@ -207,7 +207,7 @@ attic - unvented - living space + conditioned space ceiling @@ -402,7 +402,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -435,7 +435,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -446,7 +446,7 @@ - living space + conditioned space electricity 3.73 true @@ -454,7 +454,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -464,7 +464,7 @@ - living space + conditioned space 650.0 true @@ -475,12 +475,12 @@ - living space + conditioned space 300.0 - living space + conditioned space electricity false @@ -543,34 +543,34 @@ unknown - - + + unknown - - + + none - - - + + + unknown - - - + + + unknown - - + + - + heat pump - - + + diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1.xml index f6e36b0d..ee4a0b8d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -142,7 +142,7 @@ outside - living space + conditioned space @@ -207,7 +207,7 @@ attic - unvented - living space + conditioned space ceiling @@ -402,7 +402,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -435,7 +435,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -446,7 +446,7 @@ - living space + conditioned space electricity 3.73 true @@ -454,7 +454,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -464,13 +464,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-5.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-5.xml index e977b945..522d4399 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-5.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-5.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -125,7 +125,7 @@ outside - living space + conditioned space @@ -185,7 +185,7 @@ attic - unvented - living space + conditioned space ceiling diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml index 8d5e2896..d825b8e4 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml @@ -1,553 +1,555 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 10 - - ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-10-mins.csv - ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints-10-mins.csv - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 10 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-10-mins.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints-10-mins.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage-natvent-unavailable.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml similarity index 95% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage-natvent-unavailable.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml index 6a718bb5..70a10a71 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage-natvent-unavailable.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -9,7 +9,7 @@ - 60 + 10 @@ -19,13 +19,12 @@ Power Outage - 7 + 12 1 5 - 7 + 1 31 14 - always unavailable @@ -63,6 +62,11 @@ 2700.0 21600.0 + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints-10-mins.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv + @@ -151,7 +155,7 @@ outside - living space + conditioned space @@ -216,7 +220,7 @@ attic - unvented - living space + conditioned space ceiling @@ -364,8 +368,6 @@ - 68.0 - 78.0 @@ -411,12 +413,11 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 0.95 - 125.0 @@ -444,7 +445,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -455,7 +456,7 @@ - living space + conditioned space electricity 3.73 true @@ -463,7 +464,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -473,13 +474,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml similarity index 93% rename from example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml rename to example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml index ace0116f..7df361db 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -9,24 +9,13 @@ - 60 + 10 - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv Bills - - - Vacancy - 1 - 1 - 12 - 31 - always unavailable - - @@ -62,6 +51,11 @@ 2700.0 21600.0 + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints-10-mins.csv + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv + @@ -150,7 +144,7 @@ outside - living space + conditioned space @@ -215,7 +209,7 @@ attic - unvented - living space + conditioned space ceiling @@ -363,8 +357,6 @@ - 68.0 - 78.0 @@ -410,12 +402,11 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 0.95 - 125.0 @@ -443,7 +434,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -454,7 +445,7 @@ - living space + conditioned space electricity 3.73 true @@ -462,7 +453,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -472,13 +463,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml index 7d158883..45f3f362 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml @@ -1,554 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml index cdc41e7f..aa34c748 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -11,7 +11,6 @@ 60 - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv Bills @@ -63,6 +62,9 @@ 2700.0 21600.0 + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv + @@ -151,7 +153,7 @@ outside - living space + conditioned space @@ -216,7 +218,7 @@ attic - unvented - living space + conditioned space ceiling @@ -411,7 +413,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -444,7 +446,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -455,7 +457,7 @@ - living space + conditioned space electricity 3.73 true @@ -463,7 +465,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -473,13 +475,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml index acc1fd0e..a12178ae 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml @@ -1,564 +1,566 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv - - - Bills - - - - - Vacancy - 12 - 1 - 1 - 31 - always unavailable - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + Vacancy + 12 + 1 + 1 + 31 + always unavailable + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml index c4b35844..6154a371 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml @@ -1,554 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml index 8c56ed38..d72fb876 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml @@ -1,552 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-daily-schedules.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-daily-schedules.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml index 64551fcc..912e1418 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml @@ -1,552 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-daily-setbacks.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-daily-setbacks.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml index da5db996..47f0a544 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml @@ -1,552 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/setpoints.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml index 51256737..7603231c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -157,7 +157,7 @@ outside - living space + conditioned space @@ -222,7 +222,7 @@ attic - unvented - living space + conditioned space ceiling @@ -417,7 +417,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -455,7 +455,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -471,7 +471,7 @@ - living space + conditioned space electricity 3.73 true @@ -484,7 +484,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -499,7 +499,7 @@ - living space + conditioned space 650.0 true @@ -510,7 +510,7 @@ - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy-year-round.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy-year-round.xml deleted file mode 100644 index 0d6e6919..00000000 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy-year-round.xml +++ /dev/null @@ -1,619 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - Vacancy - 1 - 1 - 12 - 31 - always unavailable - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - - 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 - 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 - 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 - 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 - 1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011 - - - - - living space - electricity - 3.73 - true - 150.0 - - 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 - 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 - 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - living space - 650.0 - true - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - electricity - false - - 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 - 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 - 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 - 1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905 - 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 - 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 - 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - - - - - - TV other - - kWh/year - 620.0 - - - 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 - 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 - 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 - 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - - - - -
-
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml index ab3ab2a6..af60e491 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -156,7 +156,7 @@ outside - living space + conditioned space @@ -221,7 +221,7 @@ attic - unvented - living space + conditioned space ceiling @@ -416,7 +416,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -454,7 +454,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -470,7 +470,7 @@ - living space + conditioned space electricity 3.73 true @@ -483,7 +483,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -498,7 +498,7 @@ - living space + conditioned space 650.0 true @@ -509,7 +509,7 @@ - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml index 6875c8af..8ed31d20 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml @@ -1,609 +1,609 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - - 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 - 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 - 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 - 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 - 1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011 - - - - - living space - electricity - 3.73 - true - 150.0 - - 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 - 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 - 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - living space - 650.0 - true - - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 - 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 - - - - - living space - electricity - false - - 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 - 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 - 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 - - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 - 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 - 1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905 - 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 - 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 - 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - - - - - - TV other - - kWh/year - 620.0 - - - 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 - 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 - 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 - 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 - 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + + 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 + 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 + 0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 + 0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017 + 1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011 + + + + + conditioned space + electricity + 3.73 + true + 150.0 + + 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 + 0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 + 0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + conditioned space + 650.0 + true + + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 + 0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837 + + + + + conditioned space + electricity + false + + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011 + 1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097 + + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 + 0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249 + 1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905 + 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 + 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + 0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063 + 0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + + + TV other + + kWh/year + 620.0 + + + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07 + 1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036 + 1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml index 5e3310d4..b16c6d5d 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml @@ -1,554 +1,554 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - 2010 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + 2010 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml index 5d348862..d3fed5de 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml @@ -1,562 +1,562 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
- - true - - 3 - 10 - 11 - 6 - - -
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+ + true + + 3 + 10 + 11 + 6 + + +
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml index 5063e74a..1bc257df 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml @@ -1,556 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
- - false - -
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+ + false + +
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml index 9bd6daf1..d5ec4eca 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml @@ -1,557 +1,557 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - 2 - 1 - 2 - 28 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + 2 + 1 + 2 + 28 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml index 454291cb..4471e215 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -140,7 +140,7 @@ outside - living space + conditioned space @@ -205,7 +205,7 @@ attic - unvented - living space + conditioned space ceiling @@ -400,7 +400,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -433,7 +433,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -444,7 +444,7 @@ - living space + conditioned space electricity 3.73 true @@ -452,7 +452,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -462,13 +462,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml index 30f47d76..f61f146c 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml @@ -1,554 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 10 - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 10 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml index 2b35efec..6d253365 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml @@ -1,554 +1,556 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 10 - - ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 10 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml index 44ecd110..fb44db12 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 10 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 10 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml index ccbdf579..fc9339bc 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -399,7 +399,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -432,7 +432,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -443,7 +443,7 @@ - living space + conditioned space electricity 3.73 true @@ -451,7 +451,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -461,13 +461,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/example_files/resources/hpxml-measures/workflow/sample_files/base.xml b/example_files/resources/hpxml-measures/workflow/sample_files/base.xml index beee4761..28ecf123 100644 --- a/example_files/resources/hpxml-measures/workflow/sample_files/base.xml +++ b/example_files/resources/hpxml-measures/workflow/sample_files/base.xml @@ -1,553 +1,553 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - living space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - living space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - natural gas - 36000.0 - - AFUE - 0.92 - - 1.0 - - - - - central air conditioner - electricity - 24000.0 - single stage - 1.0 - - SEER - 13.0 - - 0.73 - - - - - 68.0 - 78.0 - - - - - - regular velocity - - supply - - CFM25 - 75.0 - to outside - - - - return - - CFM25 - 25.0 - to outside - - - - - supply - 4.0 - attic - unvented - 150.0 - - - - return - 0.0 - attic - unvented - 50.0 - - - - - - - - - electricity - storage water heater - living space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - living space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - living space - electricity - 3.73 - true - 150.0 - - - - living space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - living space - 650.0 - true - - - - living space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
+ + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + + + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + true + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
\ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw b/example_files/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw index c2f2a1c2..da3a974b 100644 --- a/example_files/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw +++ b/example_files/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw @@ -115,6 +115,7 @@ "include_annual_component_loads": true, "include_annual_hot_water_uses": true, "include_annual_hvac_summary": true, + "include_annual_resilience": true, "timeseries_frequency": "none", "include_timeseries_total_consumptions": false, "include_timeseries_fuel_consumptions": false, @@ -130,6 +131,7 @@ "include_timeseries_zone_temperatures": false, "include_timeseries_airflows": false, "include_timeseries_weather": false, + "include_timeseries_resilience": false, "timeseries_timestamp_convention": "start", "add_timeseries_dst_column": false, "add_timeseries_utc_column": false, diff --git a/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw b/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw index e9b8de8d..376cc13c 100644 --- a/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw +++ b/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw @@ -40,6 +40,7 @@ "include_annual_component_loads": true, "include_annual_hot_water_uses": true, "include_annual_hvac_summary": true, + "include_annual_resilience": true, "timeseries_frequency": "none", "include_timeseries_total_consumptions": false, "include_timeseries_fuel_consumptions": false, @@ -55,6 +56,7 @@ "include_timeseries_zone_temperatures": false, "include_timeseries_airflows": false, "include_timeseries_weather": false, + "include_timeseries_resilience": false, "timeseries_timestamp_convention": "start", "add_timeseries_dst_column": false, "add_timeseries_utc_column": false, diff --git a/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy.osw b/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy.osw index 87516421..737d8ab3 100644 --- a/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy.osw +++ b/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy.osw @@ -39,6 +39,7 @@ "include_annual_component_loads": true, "include_annual_hot_water_uses": true, "include_annual_hvac_summary": true, + "include_annual_resilience": true, "timeseries_frequency": "none", "include_timeseries_total_consumptions": false, "include_timeseries_fuel_consumptions": false, @@ -54,6 +55,7 @@ "include_timeseries_zone_temperatures": false, "include_timeseries_airflows": false, "include_timeseries_weather": false, + "include_timeseries_resilience": false, "timeseries_timestamp_convention": "start", "add_timeseries_dst_column": false, "add_timeseries_utc_column": false, diff --git a/example_files/resources/hpxml-measures/workflow/template-run-hpxml.osw b/example_files/resources/hpxml-measures/workflow/template-run-hpxml.osw index a5e7ac45..cedb0cce 100644 --- a/example_files/resources/hpxml-measures/workflow/template-run-hpxml.osw +++ b/example_files/resources/hpxml-measures/workflow/template-run-hpxml.osw @@ -10,7 +10,8 @@ "output_dir": "..", "debug": false, "add_component_loads": false, - "skip_validation": false + "skip_validation": false, + "building_id": "" }, "measure_dir_name": "HPXMLtoOpenStudio" }, @@ -31,6 +32,7 @@ "include_annual_component_loads": true, "include_annual_hot_water_uses": true, "include_annual_hvac_summary": true, + "include_annual_resilience": true, "timeseries_frequency": "none", "include_timeseries_total_consumptions": false, "include_timeseries_fuel_consumptions": false, @@ -46,6 +48,7 @@ "include_timeseries_zone_temperatures": false, "include_timeseries_airflows": false, "include_timeseries_weather": false, + "include_timeseries_resilience": false, "timeseries_timestamp_convention": "start", "add_timeseries_dst_column": false, "add_timeseries_utc_column": false, diff --git a/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Long_Residence.xml b/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Long_Residence.xml index 358019ae..a7f9ba7b 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Long_Residence.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Long_Residence.xml @@ -1,5 +1,5 @@ - + HPXML hand @@ -65,7 +65,7 @@ outside - living space + conditioned space @@ -119,7 +119,7 @@ attic - vented - living space + conditioned space diff --git a/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Vatilo_Residence.xml b/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Vatilo_Residence.xml index f19a3664..cdb6b37a 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Vatilo_Residence.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Vatilo_Residence.xml @@ -1,5 +1,5 @@ - + HPXML hand @@ -65,7 +65,7 @@ outside - living space + conditioned space @@ -79,7 +79,7 @@ garage - living space + conditioned space @@ -108,7 +108,7 @@ attic - vented - living space + conditioned space @@ -135,10 +135,9 @@ - living space + conditioned space 1200.0 140.0 - 0.0 @@ -159,7 +158,6 @@ garage 15.0 45.0 - 0.0 diff --git a/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Victor_Residence.xml b/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Victor_Residence.xml index fa4ce611..98e7adab 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Victor_Residence.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Victor_Residence.xml @@ -1,5 +1,5 @@ - + HPXML hand @@ -49,7 +49,7 @@ - living space + conditioned space 2068.6 asphalt or fiberglass shingles 0.92 @@ -66,7 +66,7 @@ outside - living space + conditioned space @@ -103,7 +103,7 @@ crawlspace - unvented - living space + conditioned space diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml index 60671c06..fe13b262 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml index 376acf92..df88842c 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml index 75cd08f0..0783aee1 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 1.5 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 1.5 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml index 9580831e..3658ee0c 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 1.5 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 1.5 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml index 9b78fff2..af0324ee 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 57.49 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 57.49 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml index c8e0905d..e45085f4 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 23.58 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 57.49 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 23.58 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 57.49 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml index ec530bb1..82c19b14 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml index fa49d6b4..b8d23d9e 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 0.3 - 0.335 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 0.3 + 0.335 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml index 1c908732..3f056d0c 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml @@ -1,309 +1,309 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml index 63ab0327..cf39667c 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml @@ -1,309 +1,309 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml index de84aea1..1fc68f91 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml @@ -1,325 +1,325 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 270.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 270.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml index bc886ffd..fa34a96b 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml @@ -1,325 +1,325 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 270.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 270.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml index 72d10d21..16343993 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml @@ -1,330 +1,330 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 270.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - - 2.5 - 1.0 - 6.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 270.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + + 2.5 + 1.0 + 6.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml index c3f5056d..16546dc9 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml @@ -1,330 +1,330 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 270.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - - 2.5 - 1.0 - 6.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 270.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + + 2.5 + 1.0 + 6.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml index f6abe1ca..5f46c999 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml @@ -1,339 +1,339 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 135.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 135.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 135.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 135.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml index 9ecbd2c2..98403581 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml @@ -1,339 +1,339 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 135.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 135.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 135.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 135.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml index 3d56aa5b..be4511c2 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml @@ -1,360 +1,360 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 0.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 0.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml index 945b2f5f..05f243f0 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml @@ -1,360 +1,360 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 0.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 0.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml index 87d33ac2..52fc94f1 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 1.5 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 4.24 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 11.75 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 1.5 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 4.24 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 11.75 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml index 30c6f650..f04f87ae 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 1.5 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 4.24 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 11.75 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 1.5 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 4.24 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 11.75 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml index 9fa2aad4..b25cb8b0 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 1.5 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.2 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.2 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.2 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.2 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 4.24 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 11.75 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 1.5 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.2 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.2 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.2 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.2 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 4.24 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 11.75 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml index a2756573..a2358859 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml @@ -1,367 +1,367 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - - USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw - - - - - - - - - ACHnatural - 1.5 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.2 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.2 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.2 - 0.9 - - gypsum board - 0.5 - - - - 4.84 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.2 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.2 - 0.9 - - - 2.15 - - - - - - - outside - living space - floor - - - - 1539.0 - - - 4.24 - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 11.75 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 1.5 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.2 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.2 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.2 + 0.9 + + gypsum board + 0.5 + + + + 4.84 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.2 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.2 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 4.24 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 11.75 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml index df8135db..1f51226c 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml @@ -1,381 +1,380 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - living space - 1539.0 - 4.0 - 168.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 1.0 - 2.08 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + conditioned space + 1539.0 + 4.0 + 168.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 1.0 + 2.08 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml index 096e10ad..177bb94f 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml @@ -1,381 +1,380 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 1.0 - 1.0 - 3 - 1539.0 - 12312.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.67 - - 12312.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - living space - 1539.0 - 4.0 - 168.0 - 0.0 - - - - 5.4 - 2.5 - - - - - - 0.0 - 0.0 - - - - 1.0 - 2.08 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + conditioned space + 1539.0 + 4.0 + 168.0 + + + + 5.4 + 2.5 + + + + + + 0.0 + 0.0 + + + + 1.0 + 2.08 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml index ba807861..d9e0dbc3 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml @@ -1,536 +1,536 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 2.0 - 1.0 - 3 - 3078.0 - 24624.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.335 - - 24624.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - basement - conditioned - 42.7 - 0 - wood siding - 0.6 - 0.9 - - - 5.01 - - - - - outside - basement - conditioned - 20.3 - 90 - wood siding - 0.6 - 0.9 - - - 5.01 - - - - - outside - basement - conditioned - 42.7 - 180 - wood siding - 0.6 - 0.9 - - - 5.01 - - - - - outside - basement - conditioned - 20.3 - 270 - wood siding - 0.6 - 0.9 - - - 5.01 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - ground - basement - conditioned - 7.25 - 413.2 - 0 - 6.0 - 6.583 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 7.25 - 195.8 - 90 - 6.0 - 6.583 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 7.25 - 413.2 - 180 - 6.0 - 6.583 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - ground - basement - conditioned - 7.25 - 195.8 - 270 - 6.0 - 6.583 - - none - - - - - continuous - exterior - 0.0 - - - continuous - interior - 0.0 - - - - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - basement - conditioned - 1539.0 - 4.0 - 168.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 2.0 + 1.0 + 3 + 3078.0 + 24624.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.335 + + 24624.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + basement - conditioned + 42.7 + 0 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - conditioned + 20.3 + 90 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - conditioned + 42.7 + 180 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - conditioned + 20.3 + 270 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + ground + basement - conditioned + 7.25 + 413.2 + 0 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 7.25 + 195.8 + 90 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 7.25 + 413.2 + 180 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - conditioned + 7.25 + 195.8 + 270 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + basement - conditioned + 1539.0 + 4.0 + 168.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml index 46d9452a..0a9c5a6e 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml +++ b/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml @@ -1,548 +1,548 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - true - - - - - - proposed workscope - - - - - stand-alone - no units above or below - - - 0.0 - - - single-family detached - 2.0 - 1.0 - 3 - 3078.0 - 24624.0 - - - - - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - - USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw - - - - - - - - - ACHnatural - 0.335 - - 24624.0 - - - - - - - - true - - - - ACHnatural - 2.4 - - - - - - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - false - - - 1.99 - - - - - - - outside - basement - conditioned - 42.7 - 0 - wood siding - 0.6 - 0.9 - - - 13.14 - - - - - outside - basement - conditioned - 20.3 - 90 - wood siding - 0.6 - 0.9 - - - 13.14 - - - - - outside - basement - conditioned - 42.7 - 180 - wood siding - 0.6 - 0.9 - - - 13.14 - - - - - outside - basement - conditioned - 20.3 - 270 - wood siding - 0.6 - 0.9 - - - 13.14 - - - - - - - outside - living space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - living space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - ground - basement - conditioned - 7.25 - 413.2 - 0 - 6.0 - 6.583 - - gypsum board - 0.5 - - - - - continuous - exterior - 0.0 - - - continuous - interior - 10.2 - 0.0 - 7.25 - - - - - - ground - basement - conditioned - 7.25 - 195.8 - 90 - 6.0 - 6.583 - - gypsum board - 0.5 - - - - - continuous - exterior - 0.0 - - - continuous - interior - 10.2 - 0.0 - 7.25 - - - - - - ground - basement - conditioned - 7.25 - 413.2 - 180 - 6.0 - 6.583 - - gypsum board - 0.5 - - - - - continuous - exterior - 0.0 - - - continuous - interior - 10.2 - 0.0 - 7.25 - - - - - - ground - basement - conditioned - 7.25 - 195.8 - 270 - 6.0 - 6.583 - - gypsum board - 0.5 - - - - - continuous - exterior - 0.0 - - - continuous - interior - 10.2 - 0.0 - 7.25 - - - - - - - - attic - vented - living space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - basement - conditioned - 1539.0 - 4.0 - 168.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 90 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 90.0 - 180 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - 45.0 - 270 - 1.039 - 0.67 - - - 1.0 - 1.0 - - 0.0 - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - 68.0 - 78.0 - - - - - - - other - - kWh/year - 7302.0 - - - 0.822 - 0.178 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 - 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 - - - - - + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 2.0 + 1.0 + 3 + 3078.0 + 24624.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.335 + + 24624.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + false + + + 1.99 + + + + + + + outside + basement - conditioned + 42.7 + 0 + wood siding + 0.6 + 0.9 + + + 13.14 + + + + + outside + basement - conditioned + 20.3 + 90 + wood siding + 0.6 + 0.9 + + + 13.14 + + + + + outside + basement - conditioned + 42.7 + 180 + wood siding + 0.6 + 0.9 + + + 13.14 + + + + + outside + basement - conditioned + 20.3 + 270 + wood siding + 0.6 + 0.9 + + + 13.14 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + ground + basement - conditioned + 7.25 + 413.2 + 0 + 6.0 + 6.583 + + gypsum board + 0.5 + + + + + continuous - exterior + 0.0 + + + continuous - interior + 10.2 + 0.0 + 7.25 + + + + + + ground + basement - conditioned + 7.25 + 195.8 + 90 + 6.0 + 6.583 + + gypsum board + 0.5 + + + + + continuous - exterior + 0.0 + + + continuous - interior + 10.2 + 0.0 + 7.25 + + + + + + ground + basement - conditioned + 7.25 + 413.2 + 180 + 6.0 + 6.583 + + gypsum board + 0.5 + + + + + continuous - exterior + 0.0 + + + continuous - interior + 10.2 + 0.0 + 7.25 + + + + + + ground + basement - conditioned + 7.25 + 195.8 + 270 + 6.0 + 6.583 + + gypsum board + 0.5 + + + + + continuous - exterior + 0.0 + + + continuous - interior + 10.2 + 0.0 + 7.25 + + + + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + basement - conditioned + 1539.0 + 4.0 + 168.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + 68.0 + 78.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + \ No newline at end of file diff --git a/example_files/resources/hpxml-measures/workflow/tests/base_results/results.csv b/example_files/resources/hpxml-measures/workflow/tests/base_results/results.csv deleted file mode 100644 index e993a1ea..00000000 --- a/example_files/resources/hpxml-measures/workflow/tests/base_results/results.csv +++ /dev/null @@ -1,475 +0,0 @@ -HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Hot Tub Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu),Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h),HVAC Design Temperature: Heating (F),HVAC Design Temperature: Cooling (F),HVAC Design Load: Heating: Total (Btu/h),HVAC Design Load: Heating: Ducts (Btu/h),HVAC Design Load: Heating: Windows (Btu/h),HVAC Design Load: Heating: Skylights (Btu/h),HVAC Design Load: Heating: Doors (Btu/h),HVAC Design Load: Heating: Walls (Btu/h),HVAC Design Load: Heating: Roofs (Btu/h),HVAC Design Load: Heating: Floors (Btu/h),HVAC Design Load: Heating: Slabs (Btu/h),HVAC Design Load: Heating: Ceilings (Btu/h),HVAC Design Load: Heating: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Total (Btu/h),HVAC Design Load: Cooling Sensible: Ducts (Btu/h),HVAC Design Load: Cooling Sensible: Windows (Btu/h),HVAC Design Load: Cooling Sensible: Skylights (Btu/h),HVAC Design Load: Cooling Sensible: Doors (Btu/h),HVAC Design Load: Cooling Sensible: Walls (Btu/h),HVAC Design Load: Cooling Sensible: Roofs (Btu/h),HVAC Design Load: Cooling Sensible: Floors (Btu/h),HVAC Design Load: Cooling Sensible: Slabs (Btu/h),HVAC Design Load: Cooling Sensible: Ceilings (Btu/h),HVAC Design Load: Cooling Sensible: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Internal Gains (Btu/h),HVAC Design Load: Cooling Latent: Total (Btu/h),HVAC Design Load: Cooling Latent: Ducts (Btu/h),HVAC Design Load: Cooling Latent: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Latent: Internal Gains (Btu/h) -base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-portable.xml,34.583,34.583,33.262,33.262,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.604,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.18,0.0,30.514,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.1,9.476,14.236,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.307,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.344,9.575,1.88,1354.8,997.6,9989.1,2461.3,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-ief-whole-home.xml,34.611,34.611,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.655,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15,0.0,30.49,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2767.0,9.495,14.236,0.0,1.77,1.652,0.0,0.0,0.392,5.039,-4.911,0.0,0.0,0.0,1.312,-0.373,1.058,0.077,0.399,0.0,0.032,-4.78,-0.772,0.0,0.548,-0.009,0.0,0.0,0.206,1.933,17.103,0.0,0.0,0.0,1.819,-0.368,-0.332,-1.9,-0.091,0.0,0.344,9.532,1.875,1354.8,997.6,9989.1,2461.3,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-multiple.xml,34.574,34.574,33.184,33.184,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.813,1.88,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.541,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.452,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.3,9.552,14.236,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.035,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.344,9.512,1.873,1354.8,997.6,9989.1,2461.3,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier.xml,34.548,34.548,33.243,33.243,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.818,1.882,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.593,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.174,0.0,30.467,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.0,9.548,14.236,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.344,9.498,1.87,1354.8,997.6,9989.1,2461.3,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.167,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,9.69,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.636,0.365,1.519,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,7.932,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,4.848,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,12000.0,24000.0,0.0,51.62,90.68,12246.0,5542.0,2184.0,0.0,167.0,1864.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,8.739,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,24000.0,24000.0,0.0,28.58,87.08,23059.0,7546.0,4921.0,0.0,377.0,4200.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 -base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29390.0,0.0,9510.0,0.0,575.0,6763.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,67.293,67.293,40.782,40.782,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.921,0.983,9.068,0.0,0.0,5.751,0.0,0.398,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.831,0.0,16.409,9.18,0.614,0.0,0.0,0.0,0.0,2378.3,3719.8,26.547,20.758,4.552,1.164,5.544,0.518,7.651,0.635,15.399,-16.987,0.0,0.0,0.0,8.521,-0.082,7.083,0.0,0.73,0.0,3.11,-10.232,-3.183,0.005,0.021,-0.566,-0.053,2.687,-0.029,-3.027,17.676,0.0,0.0,0.0,-6.349,-0.075,-1.69,-4.153,-0.166,0.0,0.937,8.933,2.568,1354.8,997.6,11399.6,2521.8,36000.0,24000.0,0.0,6.8,91.76,37750.0,7491.0,10436.0,0.0,575.0,7551.0,2464.0,0.0,1949.0,724.0,6561.0,18712.0,182.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,24345.0,0.0,7508.0,0.0,575.0,6409.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,37.385,37.385,33.168,33.168,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.236,1.963,6.821,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.893,0.0,31.745,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3190.7,13.54,17.969,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.366,9.113,1.789,1354.8,997.6,9989.0,2461.3,24000.0,24000.0,0.0,25.88,98.42,25739.0,1416.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,22162.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30047.0,4820.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,9.228,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,27461.0,7439.0,5147.0,0.0,575.0,5388.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,9.236,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,43121.0,0.0,3210.0,0.0,575.0,4222.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,9.441,0.0,0.0,3.268,0.0,0.27,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21138.0,8111.0,2576.0,0.0,575.0,3842.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,9.441,0.0,0.0,3.268,0.0,0.27,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21139.0,8111.0,2576.0,0.0,575.0,3842.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.626,36.626,24.815,24.815,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.087,0.0,0.0,1.608,0.207,9.832,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.949,0.0,3.054,9.538,0.73,0.0,0.0,0.0,0.0,1572.5,2015.2,7.667,5.819,0.0,2.94,3.649,0.0,0.0,0.582,1.416,-1.582,0.0,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-4.25,-1.186,0.0,-0.922,-0.231,0.0,0.0,-0.054,-0.234,1.305,0.0,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.559,3.423,0.841,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,12347.0,5659.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-multiple.xml,31.845,31.845,25.255,25.255,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,2.093,0.314,9.717,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.113,0.0,4.965,9.538,0.61,0.0,0.0,0.0,0.0,1562.3,2239.8,9.397,10.552,0.0,-0.004,3.294,0.0,0.0,1.383,4.001,-4.202,0.0,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-6.296,-1.142,0.0,0.0,-0.445,0.0,0.0,-0.418,-0.571,3.958,0.0,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.481,5.704,0.884,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,12328.0,5014.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.799,49.799,24.82,24.82,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,1.466,0.173,9.916,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.163,0.0,2.504,9.538,0.818,0.0,0.0,0.0,0.0,1579.9,2256.3,11.078,8.452,0.0,5.364,4.204,0.0,0.0,0.788,1.403,-1.699,0.0,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-4.485,-1.249,0.0,-1.186,-0.054,0.0,0.0,-0.054,-0.122,1.188,0.0,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.528,3.187,0.778,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,14594.0,6779.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.041,26.041,24.679,24.679,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.632,0.213,9.742,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.261,0.0,3.156,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2015.1,3.416,5.821,0.0,0.353,3.152,0.0,0.0,0.376,1.484,-1.49,0.0,0.0,0.375,0.0,-0.006,1.698,0.0,0.0,0.0,0.387,-4.015,-1.12,0.0,-0.831,-0.466,0.0,0.0,-0.076,-0.345,1.397,0.0,0.0,-0.847,0.0,-0.002,-0.394,-0.388,0.0,0.0,0.576,3.657,0.907,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,8333.0,3674.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.343,26.343,25.227,25.227,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.109,0.333,9.695,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.034,0.0,5.133,9.538,0.587,0.0,0.0,0.0,0.0,1559.4,1834.6,3.707,4.327,0.0,-0.003,3.197,0.0,0.0,0.368,1.519,-1.394,0.0,0.0,-0.002,0.0,-0.063,1.76,0.0,0.0,0.0,0.321,-3.692,-1.021,0.0,-0.001,-0.556,0.0,0.0,-0.044,-0.506,1.493,0.0,0.0,-0.0,0.0,-0.059,-0.532,-0.512,0.0,0.0,0.913,3.98,1.006,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,7888.0,3455.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,6278.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.841,26.841,26.284,26.284,0.557,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.967,0.547,9.684,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.514,0.0,8.85,9.538,0.575,0.0,0.0,0.0,0.0,1703.9,1962.7,3.256,6.985,0.0,-0.013,2.505,0.0,0.0,0.42,4.041,-2.559,0.0,0.0,-0.009,0.0,-0.344,0.994,0.0,0.68,0.0,0.0,-4.559,-0.773,0.0,-0.008,-1.074,0.0,0.0,-0.048,-1.702,5.598,0.0,0.0,-0.004,0.0,-0.334,-0.402,-1.335,-0.391,0.0,0.0,7.407,1.254,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 -base-bldgtype-multifamily-residents-1.xml,19.898,19.898,18.595,18.595,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.363,0.394,4.595,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.169,0.22,0.912,1.184,0.0,1.505,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.205,0.0,6.696,4.213,0.585,0.0,0.0,0.0,0.0,1104.0,1602.9,3.916,6.507,0.0,-0.014,2.619,0.0,0.0,0.418,4.236,-3.104,0.0,0.0,-0.012,0.0,-0.305,1.3,0.0,0.75,0.0,0.0,-3.826,-0.937,0.0,-0.01,-0.765,0.0,0.0,-0.014,-1.207,5.053,0.0,0.0,-0.007,0.0,-0.297,-0.396,-1.194,-0.272,0.0,0.0,4.803,1.089,817.2,530.6,4779.7,1341.4,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.394,27.394,26.696,26.696,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.0,3.07,0.825,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1670.4,2088.4,3.455,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,5886.0,9233.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.149,28.149,27.404,27.404,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,3.656,0.921,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.663,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1695.4,2322.2,3.602,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.038,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,8647.0,10342.0,0.0,6.8,91.76,8647.0,2761.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.679,27.679,27.017,27.017,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.346,0.825,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1680.5,2160.3,3.454,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,5886.0,9233.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,32.821,32.821,32.278,32.278,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,8.52,0.921,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.638,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1940.2,3671.7,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,28548.0,10342.0,0.0,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.766,27.766,27.223,27.223,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,3.465,0.921,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.638,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1688.5,2269.4,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,28548.0,10342.0,0.0,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,23.295,23.295,22.713,22.713,0.582,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1509.2,1333.8,3.459,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,5886.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.356,23.356,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.552,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1522.4,1334.7,3.605,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,8647.0,0.0,0.0,6.8,91.76,8647.0,2761.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.749,22.749,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1534.7,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,5886.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.303,23.303,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1536.8,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,5886.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,23.195,23.195,22.742,22.742,0.453,0.0,0.0,0.0,0.0,0.0,0.028,0.028,0.0,0.0,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.532,0.0,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1528.0,1334.7,3.537,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-6.08,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,3156.5,28548.0,0.0,0.0,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.649,26.649,26.649,26.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.054,0.819,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1670.9,2071.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,9233.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.327,27.327,27.327,27.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.637,0.914,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1702.6,2322.2,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922,26.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328,0.819,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1681.0,2152.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,9233.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.824,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.969,27.969,27.969,27.969,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.818,2.895,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.9,1820.0,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,12000.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.613,0.0,14.614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.566,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,3156.6,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.737,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,9.724,0.0,0.0,2.026,0.0,0.206,3.725,0.949,0.167,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.094,0.0,0.0,0.0,0.0,12.173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.499,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,8872.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,4518.0,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.708,32.708,27.342,27.342,5.366,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.574,0.439,9.696,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.045,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.407,0.0,0.0,0.0,0.0,3.959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.302,0.0,7.061,9.538,0.588,0.0,0.0,0.0,0.0,1711.5,2147.3,4.167,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,4.308,-3.183,0.0,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-5.414,-0.952,0.0,-0.009,-0.693,0.0,0.0,-0.005,-1.118,4.974,0.0,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,6.564,1.074,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,6182.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1828.0,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent.xml,31.03,31.03,27.217,27.217,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,2.492,0.416,9.705,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.53,0.0,6.838,9.538,0.598,0.0,0.0,0.0,0.0,1638.9,2132.2,5.993,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,4.232,-3.684,0.0,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-5.86,-1.052,0.0,-0.008,-0.511,0.0,0.0,-0.01,-0.941,4.473,0.0,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,6.129,0.974,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,7785.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,3431.0,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-pv.xml,26.899,2.451,26.223,1.775,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.901,30.901,17.531,17.531,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,0.0,1.096,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.85,0.0,12.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.786,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,1052.2,1525.8,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater.xml,29.805,29.805,16.435,16.435,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.85,0.0,12.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.786,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,999.5,1473.1,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.875,0.0,10.466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.074,0.0,10.466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.345,37.345,37.345,37.345,0.0,0.0,0.0,0.0,0.0,0.0,5.342,0.373,0.0,0.0,2.587,1.074,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.898,0.0,13.36,9.232,0.614,2.924,0.0,0.0,0.0,3219.0,2126.0,21.008,15.09,0.0,3.604,3.633,0.511,7.495,0.628,10.5,-12.557,0.0,0.0,0.0,8.269,-0.061,4.802,0.0,0.728,0.0,3.115,-8.592,-2.5,0.0,0.012,-0.453,-0.05,2.713,-0.024,-1.912,11.726,0.0,0.0,0.0,-6.305,-0.057,-1.163,-3.084,-0.164,0.0,1.833,8.483,2.01,1354.8,997.6,11413.1,2619.0,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,0.0,18.126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.848,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,0.0,18.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,6.924,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.587,0.0,13.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1066.9,770.9,9019.2,2069.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,0.0,4.743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,388.3,286.5,3205.6,735.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.67,0.0,13.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,8.867,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.89,0.0,13.165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1075.0,777.3,9103.8,2089.0,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,8.796,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,0.0,0.0,1.948,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.106,0.0,3.945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,472.0,347.5,3998.4,917.5,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.088,0.026,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,8.67,0.017,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,0.249,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,2.985,0.0,0.324,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,0.0,0.329,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,3.208,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,0.0,0.306,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,9.153,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,9.236,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,17.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.051,0.0,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,2.497,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,6.822,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,1.252,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,0.0,0.33,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,8.734,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,11.367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.328,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,3.987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,9.12,0.0,0.0,5.268,0.142,0.373,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,10.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,48000.0,36000.0,0.0,6.8,91.76,43353.0,7641.0,15016.0,0.0,575.0,8855.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,45325.0,7665.0,15016.0,0.0,575.0,9035.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,5.557,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.203,0.253,1.049,1.262,0.0,1.644,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,7.399,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.261,0.309,1.281,1.395,0.0,1.879,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,10.889,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.376,0.421,1.744,1.661,0.0,2.35,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 -base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.434,0.477,1.976,1.794,0.0,2.585,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 -base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,9.168,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,44054.0,8851.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,64.445,64.445,29.438,29.438,35.007,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,3.69,0.673,9.366,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.788,0.0,11.181,9.342,0.619,0.0,0.0,0.0,0.0,1757.2,3482.5,27.934,20.772,0.0,3.519,3.647,0.0,0.0,0.654,9.893,-12.804,0.0,0.0,26.42,0.0,-0.18,2.047,0.0,0.786,0.0,7.347,-7.418,-1.565,0.0,0.392,-0.069,0.0,0.0,0.096,0.251,11.037,0.0,0.0,-7.528,0.0,-0.176,-0.275,-1.935,-0.093,0.0,2.77,5.786,1.082,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,9.266,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29361.0,8026.0,5506.0,0.0,575.0,6537.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31789.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31791.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,36858.0,8703.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,36857.0,8703.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,36857.0,8703.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34149.0,8646.0,7508.0,2294.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32435.0,8601.0,7508.0,626.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32508.0,8603.0,7508.0,696.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32435.0,8601.0,7508.0,626.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,40.753,40.753,29.446,29.446,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.84,0.724,9.565,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.581,0.0,11.955,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2605.0,13.185,12.044,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.304,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.076,6.354,1.189,1354.8,997.6,11399.6,3013.0,36000.0,24000.0,0.0,6.8,91.76,29033.0,1685.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 -base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34804.0,8652.0,918.0,0.0,575.0,15942.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,9.167,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,9.169,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,25022.0,8332.0,0.0,0.0,575.0,7398.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38222.0,8734.0,13788.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.137,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30939.0,8558.0,6680.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-ambient.xml,47.553,47.553,30.316,30.316,17.237,0.0,0.0,0.0,0.0,0.0,0.0,0.284,0.0,0.0,4.641,0.906,9.353,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.147,0.0,15.224,9.342,0.606,0.0,0.0,0.0,2.0,1739.5,3551.4,20.358,21.092,0.0,3.835,3.82,0.0,0.0,0.743,10.74,-11.371,0.0,0.0,9.918,0.0,-0.403,2.064,0.0,0.788,0.0,3.878,-6.786,-1.435,0.0,-0.045,-0.503,0.0,0.0,0.04,-0.774,12.469,0.0,0.0,-3.613,0.0,-0.397,-0.407,-2.432,-0.157,0.0,3.617,6.404,1.212,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,27750.0,8437.0,7508.0,0.0,575.0,2198.0,0.0,4563.0,0.0,2171.0,2299.0,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,9.402,0.0,0.0,3.406,0.142,0.277,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,36000.0,24000.0,0.0,6.8,91.76,31139.0,8564.0,7508.0,0.0,620.0,7098.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 -base-foundation-complex.xml,65.762,65.762,36.973,36.973,28.789,0.0,0.0,0.0,0.0,0.0,0.0,0.475,0.0,0.0,5.045,1.013,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.962,0.0,17.137,9.233,0.615,0.0,0.0,0.0,0.0,2145.5,3923.4,26.48,20.732,0.0,3.473,3.603,0.507,10.912,0.621,10.368,-12.56,0.0,0.0,0.0,9.47,-0.053,4.804,0.0,0.727,0.0,6.113,-8.913,-2.501,0.0,-0.082,-0.468,-0.053,3.7,-0.028,-1.929,11.71,0.0,0.0,0.0,-4.553,-0.048,-1.148,-3.157,-0.163,0.0,3.656,7.866,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33064.0,8618.0,7508.0,0.0,575.0,7168.0,0.0,0.0,2427.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31189.0,8565.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32565.0,8604.0,7508.0,0.0,575.0,7160.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,9.362,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,21226.0,0.0,7508.0,0.0,575.0,4819.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 -base-foundation-multiple.xml,42.738,42.738,29.706,29.706,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.218,0.812,9.33,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.199,0.0,13.443,9.285,0.693,0.0,0.0,0.0,0.0,1723.6,2714.9,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,10.857,-11.246,0.0,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-4.636,-1.429,0.0,-0.098,-0.674,0.0,0.0,-0.018,-1.077,12.595,0.0,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.65,4.23,1.218,1354.8,997.6,11399.4,2706.9,36000.0,24000.0,0.0,6.8,91.76,23122.0,4833.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14275.0,222.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-slab.xml,39.954,39.954,29.299,29.299,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.9,0.74,9.353,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.972,0.0,12.215,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2611.5,12.703,12.011,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.078,6.379,1.193,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,28666.0,1683.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-above-grade.xml,43.94,43.94,29.852,29.852,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.308,0.833,9.348,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.189,0.0,13.834,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.0,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,10.912,-11.281,0.0,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.069,12.56,0.0,0.0,-0.506,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.93,4.211,1.213,1354.8,997.6,11399.5,2706.9,36000.0,24000.0,0.0,6.8,91.76,23083.0,4828.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14270.0,226.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-assembly-r.xml,41.196,41.196,29.243,29.243,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.197,0.0,0.0,3.847,0.722,9.346,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,0.0,11.864,9.285,0.71,0.0,0.0,0.0,0.0,1718.3,2855.2,14.652,12.883,0.0,3.994,3.856,0.0,0.0,0.759,10.855,-11.125,0.0,0.0,4.456,0.0,-0.343,2.583,0.0,0.0,0.0,1.82,-4.614,-1.421,0.0,-0.074,-0.626,0.0,0.0,0.009,-1.062,12.715,0.0,0.0,-2.011,0.0,-0.339,-0.564,-2.512,0.0,0.0,1.12,4.251,1.226,1354.8,997.6,11399.5,2706.9,36000.0,24000.0,0.0,6.8,91.76,20580.0,4443.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-wall-insulation.xml,48.948,48.948,28.952,28.952,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.558,0.653,9.28,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.715,0.0,10.743,9.285,0.64,0.0,0.0,0.0,0.0,1726.7,2483.3,16.597,11.56,0.0,3.723,3.619,0.0,0.0,0.633,9.712,-12.351,0.0,0.0,14.373,0.0,-0.047,2.46,0.0,0.0,0.0,2.599,-4.778,-1.481,0.0,0.063,-0.441,0.0,0.0,-0.015,-0.972,11.49,0.0,0.0,-2.769,0.0,-0.045,-0.521,-2.405,0.0,0.0,1.302,4.088,1.166,1354.8,997.6,11399.5,2706.9,36000.0,24000.0,0.0,6.8,91.76,23845.0,1648.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,15218.0,128.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement.xml,42.817,42.817,29.736,29.736,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,4.234,0.816,9.34,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.245,0.0,13.513,9.285,0.703,0.0,0.0,0.0,0.0,1723.8,2921.5,15.45,14.318,0.0,3.994,3.853,0.0,0.0,0.749,10.805,-11.235,0.0,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-4.634,-1.429,0.0,-0.077,-0.629,0.0,0.0,-0.0,-1.111,12.605,0.0,0.0,-0.673,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.724,4.231,1.218,1354.8,997.6,11399.5,2706.9,36000.0,24000.0,0.0,6.8,91.76,23128.0,4833.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14277.0,222.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.103,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,20341.0,4163.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,9.523,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.975,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,23883.0,6886.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-walkout-basement.xml,61.824,61.824,36.337,36.337,25.487,0.0,0.0,0.0,0.0,0.0,0.0,0.42,0.0,0.0,4.58,0.896,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.868,0.0,15.098,9.233,0.614,0.0,0.0,0.0,0.0,2142.3,3805.8,25.232,19.65,0.0,3.553,3.687,0.512,4.683,0.63,11.227,-12.771,0.0,0.0,0.0,10.608,-0.062,6.635,0.0,0.729,0.0,5.498,-8.906,-2.499,0.0,-0.12,-0.524,-0.053,1.621,-0.027,-2.145,12.058,0.0,0.0,0.0,-3.52,-0.058,-1.571,-3.422,-0.164,0.0,3.325,7.872,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32446.0,8601.0,7925.0,0.0,575.0,4704.0,0.0,0.0,2528.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,0.0,15.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,39288.0,16080.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.69,42.69,42.69,42.69,0.0,0.0,0.0,0.0,0.0,0.0,9.829,1.766,0.625,0.054,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.679,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7301.8,1637.3,25.597,0.0,0.0,3.448,3.637,0.512,7.485,0.629,10.517,-12.551,0.0,0.0,0.0,8.113,-0.066,4.805,0.0,0.728,0.0,7.479,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,30706.0,0.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.191,46.191,46.191,46.191,0.0,0.0,0.0,0.0,0.0,0.0,9.727,1.011,0.469,0.025,3.46,1.059,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.516,0.494,13.136,9.233,0.614,0.0,0.0,0.0,0.0,6957.6,3218.7,24.38,15.851,0.0,3.496,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.107,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.238,7.871,2.01,1354.8,997.6,11399.5,2615.8,32561.0,32561.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml,49.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,4.848,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,0.0,21.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,25971.0,25971.0,11059.0,51.62,90.68,11059.0,4355.0,2184.0,0.0,167.0,1864.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.826,44.826,44.826,44.826,0.0,0.0,0.0,0.0,0.0,0.0,9.162,0.998,0.046,0.006,3.202,0.972,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.529,0.052,11.986,9.233,0.614,0.0,0.0,0.0,0.0,6646.5,2916.0,22.763,13.183,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.036,-8.907,-2.499,0.0,0.036,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.066,7.871,2.01,1354.8,997.6,11399.5,2615.8,64975.0,64975.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,24186.0,24186.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.589,41.589,41.589,41.589,0.0,0.0,0.0,0.0,0.0,0.0,7.132,0.631,0.441,0.017,2.299,0.628,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.714,0.459,13.364,9.233,0.614,0.0,0.0,0.0,0.0,6927.3,2770.1,24.354,16.817,0.0,3.45,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.343,-8.907,-2.499,0.0,-0.016,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.47,7.871,2.01,1354.8,997.6,11399.5,2615.8,32943.0,32943.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.631,40.631,40.631,40.631,0.0,0.0,0.0,0.0,0.0,0.0,6.888,0.551,0.049,0.005,2.127,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.241,0.054,12.109,9.233,0.614,0.0,0.0,0.0,0.0,6743.7,2524.4,23.408,13.625,0.0,3.58,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.063,4.804,0.0,0.728,0.0,3.769,-8.907,-2.499,0.0,0.033,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.19,7.871,2.01,1354.8,997.6,11399.5,2615.8,64639.0,64639.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.163,51.163,37.631,37.631,13.533,0.0,0.0,0.0,0.0,0.0,4.159,0.371,0.0,0.14,2.311,0.209,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.77,11.263,14.484,9.233,0.615,0.0,0.0,2.0,0.0,3199.7,2682.1,23.554,17.721,0.0,3.374,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.401,-8.918,-2.502,0.0,-0.06,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.73,7.861,2.008,1354.8,997.6,11399.5,2615.8,33152.0,33152.0,23209.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.524,54.524,37.837,37.837,16.688,0.0,0.0,0.0,0.0,0.0,4.012,0.354,0.0,0.503,2.318,0.209,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.611,13.853,14.589,9.233,0.614,0.0,0.0,2.0,0.0,3340.9,2627.7,30.723,17.555,0.0,3.247,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.29,-0.061,4.804,0.0,0.728,0.0,12.383,-8.908,-2.5,0.0,-0.068,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.064,-0.165,0.0,3.737,7.87,2.01,1354.8,997.6,11399.5,2615.8,33152.0,33152.0,31792.0,6.8,91.76,39288.0,16080.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,26367.0,26367.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.183,41.183,41.183,41.183,0.0,0.0,0.0,0.0,0.0,0.0,7.323,0.751,0.133,0.009,2.318,0.209,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.86,0.141,14.588,9.233,0.614,0.0,0.0,0.0,0.0,7037.5,2627.7,24.691,17.555,0.0,3.367,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.551,-8.908,-2.5,0.0,-0.068,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.737,7.87,2.01,1354.8,997.6,11399.5,2615.8,33152.0,33152.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.896,40.896,40.896,40.896,0.0,0.0,0.0,0.0,0.0,0.0,7.275,0.644,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.845,0.057,13.53,9.233,0.614,0.0,0.0,0.0,0.0,6897.7,2562.2,23.861,16.36,0.0,3.444,3.635,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.477,-8.907,-2.499,0.0,-0.022,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.061,-0.165,0.0,2.648,7.871,2.01,1354.8,997.6,11399.5,2615.8,49709.0,49709.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-elec-only.xml,48.173,48.173,48.173,48.173,0.0,0.0,0.0,0.0,0.0,0.0,17.561,0.194,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.298,55.298,36.433,36.433,18.865,0.0,0.0,0.0,0.0,0.0,0.0,0.231,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.865,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2097.2,3330.0,16.457,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,23209.0,19922.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-only.xml,49.322,49.322,30.646,30.646,18.676,0.0,0.0,0.0,0.0,0.0,0.0,0.228,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2058.6,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.106,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20155.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,0.0,17.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20283.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.583,48.583,48.583,48.583,0.0,0.0,0.0,0.0,0.0,0.0,9.917,1.783,0.627,0.054,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.925,0.681,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7330.8,3330.1,25.597,17.819,0.0,3.442,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.547,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,30706.0,19922.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,55.484,55.484,40.703,40.703,14.78,0.0,0.0,0.0,0.0,0.0,4.131,0.357,0.0,1.255,3.46,1.059,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.482,15.296,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3476.2,3218.7,24.372,15.851,0.0,3.41,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.144,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.238,7.871,2.01,1354.8,997.6,11399.5,2615.8,32561.0,32561.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,55.484,55.484,40.703,40.703,14.78,0.0,0.0,0.0,0.0,0.0,4.131,0.357,0.0,1.255,3.46,1.059,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.482,15.296,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3476.2,3218.7,24.372,15.851,0.0,3.41,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.144,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.238,7.871,2.01,1354.8,997.6,11399.5,2615.8,32561.0,32561.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.583,47.583,35.911,35.911,11.672,0.0,0.0,0.0,0.0,0.0,2.48,0.097,0.0,0.655,2.159,0.078,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.182,11.744,12.267,9.233,0.614,0.0,0.0,0.0,0.0,2588.4,2190.0,19.512,13.381,0.0,3.586,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.71,-8.907,-2.499,0.0,0.027,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.365,7.871,2.01,1354.8,997.6,11399.5,2615.8,25707.0,25707.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.583,47.583,35.911,35.911,11.672,0.0,0.0,0.0,0.0,0.0,2.48,0.097,0.0,0.655,2.159,0.078,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.182,11.744,12.267,9.233,0.614,0.0,0.0,0.0,0.0,2588.4,2190.0,19.512,13.381,0.0,3.586,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.71,-8.907,-2.499,0.0,0.027,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.365,7.871,2.01,1354.8,997.6,11399.5,2615.8,25707.0,25707.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-evap-cooler-furnace-gas.xml,56.437,56.437,32.047,32.047,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,0.0,0.972,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.076,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.7,1915.1,25.24,11.075,0.0,3.482,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.677,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,31792.0,13458.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-elec-only.xml,53.715,53.715,53.715,53.715,0.0,0.0,0.0,0.0,0.0,0.0,22.67,0.628,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.847,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8664.8,1637.3,25.24,0.0,0.0,3.487,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.613,-8.908,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,31792.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.65,58.65,34.864,34.864,23.786,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.319,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2122.6,2947.8,24.293,18.493,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.905,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,31792.0,20155.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.98,57.98,34.213,34.213,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.428,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.296,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2121.8,2796.9,24.264,17.856,0.0,3.509,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.882,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,31792.0,20283.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-only.xml,55.194,55.194,31.045,31.045,24.149,0.0,0.0,0.0,0.0,0.0,0.0,0.628,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.847,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.9,1637.3,25.24,0.0,0.0,3.487,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.613,-8.908,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,31792.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-room-ac.xml,60.517,60.517,36.126,36.126,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,5.051,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.076,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.7,3023.7,25.24,11.066,0.0,3.482,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.677,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,31792.0,14272.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.324,34.324,34.324,34.324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.874,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.707,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2888.0,0.0,17.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.164,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24222.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.719,36.719,36.719,36.719,0.0,0.0,0.0,0.0,0.0,0.0,5.502,0.8,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.152,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3429.1,1637.3,23.668,0.0,0.0,3.547,3.636,0.512,7.483,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.869,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,30706.0,0.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,40.005,40.005,40.005,40.005,0.0,0.0,0.0,0.0,0.0,0.0,5.519,0.693,0.0,0.0,2.54,0.813,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.204,0.0,13.313,9.233,0.614,0.0,0.0,0.0,0.0,3372.7,2561.2,23.122,15.813,0.0,3.548,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.758,-8.907,-2.499,0.0,-0.015,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.422,7.871,2.01,1354.8,997.6,11399.5,2615.8,30706.0,30706.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.255,0.37,0.0,0.0,2.479,1.034,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.85,0.0,12.857,9.233,0.614,0.0,0.0,0.0,0.0,3225.9,2597.8,21.438,15.107,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.366,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.061,-0.165,0.0,1.948,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.255,0.37,0.0,0.0,2.479,1.034,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.85,0.0,12.857,9.233,0.614,0.0,0.0,0.0,0.0,3225.9,2597.8,21.438,15.107,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.366,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.061,-0.165,0.0,1.948,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.625,36.625,36.625,36.625,0.0,0.0,0.0,0.0,0.0,0.0,5.808,0.316,0.082,0.003,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.818,0.085,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4309.1,1637.3,19.511,0.0,0.0,3.595,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.502,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,25749.0,0.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,19866.0,19866.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.941,38.941,38.941,38.941,0.0,0.0,0.0,0.0,0.0,0.0,5.858,0.319,0.084,0.003,2.159,0.078,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.012,0.087,12.267,9.233,0.614,0.0,0.0,0.0,0.0,4313.4,2190.0,19.512,13.381,0.0,3.592,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.534,-8.907,-2.499,0.0,0.027,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.365,7.871,2.01,1354.8,997.6,11399.5,2615.8,25707.0,25707.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.41,38.41,38.41,38.41,0.0,0.0,0.0,0.0,0.0,0.0,5.415,0.269,0.0,0.0,2.211,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.078,0.0,11.748,9.233,0.614,0.0,0.0,0.0,0.0,3649.5,2213.4,19.201,12.59,0.0,3.623,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.574,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.833,7.871,2.01,1354.8,997.6,11399.5,2615.8,41152.0,41152.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.761,37.761,37.761,37.761,0.0,0.0,0.0,0.0,0.0,0.0,5.087,0.103,0.048,0.0,2.055,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.048,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3723.6,2118.3,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23171.0,23171.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.931,47.931,35.611,35.611,0.0,12.32,0.0,0.0,0.0,0.0,3.013,0.093,0.0,0.0,2.038,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.658,7.392,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2851.6,2121.4,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,23171.0,23171.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23209.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.687,41.687,41.687,41.687,0.0,0.0,0.0,0.0,0.0,0.0,7.031,0.0,0.222,0.0,3.993,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.222,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2701.9,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,24611.0,24611.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.219,42.219,42.219,42.219,0.0,0.0,0.0,0.0,0.0,0.0,7.577,0.0,0.038,0.0,4.164,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2807.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,47663.0,47663.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23209.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.687,41.687,41.687,41.687,0.0,0.0,0.0,0.0,0.0,0.0,7.031,0.0,0.222,0.0,3.993,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.222,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2701.9,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,24611.0,24611.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.219,42.219,42.219,42.219,0.0,0.0,0.0,0.0,0.0,0.0,7.577,0.0,0.038,0.0,4.164,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2807.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,47663.0,47663.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,49.618,49.618,42.911,42.911,6.707,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.203,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2613.9,3427.6,16.935,14.883,0.0,2.872,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.461,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,31005.0,27561.0,0.0,0.0,100.0,31005.0,9028.0,7128.0,0.0,545.0,6084.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-stove-oil-only.xml,52.274,52.274,30.521,30.521,0.0,21.754,0.0,0.0,0.0,0.0,0.0,0.102,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.8,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize.xml,60.029,60.029,36.205,36.205,23.824,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.365,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2124.2,3189.8,24.351,18.003,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.952,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,31792.0,19922.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.119,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.929,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.276,11.121,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.39,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.179,15.199,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.042,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.535,15.232,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.756,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.265,15.613,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,9.005,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,70776.0,33116.0,15016.0,0.0,575.0,9035.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31013.0,7804.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,28177.0,4969.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31786.0,8577.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34050.0,10841.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32152.0,8944.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,0.0,0.815,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only-ducted.xml,31.362,31.362,31.362,31.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,0.0,14.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fixed-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.834,33.834,33.834,33.834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.571,0.777,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.556,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2618.9,0.0,14.783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.993,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.574,36.574,36.574,36.574,0.0,0.0,0.0,0.0,0.0,0.0,5.394,0.763,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.341,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3367.4,1637.3,22.277,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.035,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.556,39.556,39.556,39.556,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.367,0.0,0.0,2.476,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.559,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3214.4,2581.7,20.901,14.709,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.067,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,0.698,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.381,41.381,41.381,41.381,0.0,0.0,0.0,0.0,0.0,0.0,6.67,0.384,0.0,0.0,2.932,0.954,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.447,0.0,13.147,9.233,0.614,0.0,0.0,0.0,0.0,3447.4,2730.1,21.835,15.722,0.0,3.576,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.98,-8.907,-2.499,0.0,-0.008,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.246,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,0.0,13.209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,0.0,12.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,0.028,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,0.028,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,26137.0,2928.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,0.028,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.378,66.378,51.93,51.93,7.162,3.603,3.683,0.0,0.0,0.0,13.664,0.862,0.199,0.008,6.203,0.554,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.718,0.207,18.969,9.233,0.615,0.0,0.0,0.0,4.0,6442.4,4057.4,37.83,22.72,0.0,3.417,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.316,-8.919,-2.502,0.0,-0.122,-0.445,-0.049,2.738,-0.021,-1.886,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.244,7.859,2.007,1354.8,997.6,11399.5,2615.8,59200.0,36799.2,10236.0,6.8,91.76,36503.0,13294.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-none.xml,19.737,19.737,19.737,19.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.607,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.4,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354.8,997.6,8540.6,2104.4,0.0,0.0,0.0,63.32,89.06,2825.0,0.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 -base-hvac-portable-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,0.0,3.584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,8000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,0.0,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,9.194,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,56.236,56.236,35.518,35.518,20.719,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,3.959,0.758,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.42,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,2961.2,20.504,15.145,0.0,3.61,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.932,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,28463.0,18434.0,0.0,6.8,91.76,28463.0,5254.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,0.355,9.179,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,3600.0,2400.0,0.0,6.8,91.76,28463.0,5254.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.533,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-kwh-per-year.xml,59.243,59.243,36.784,36.784,22.46,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.346,0.842,9.164,0.0,0.0,5.118,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.033,0.0,14.182,9.233,0.614,0.0,0.0,0.0,0.0,2193.9,3333.9,23.005,18.0,0.0,3.549,3.638,0.512,7.512,0.63,10.518,-12.549,0.0,0.0,0.0,8.291,-0.064,4.806,0.0,0.728,0.0,4.868,-8.907,-2.836,0.0,-0.051,-0.461,-0.051,2.688,-0.025,-1.933,11.731,0.0,0.0,0.0,-6.342,-0.06,-1.17,-3.09,-0.165,0.0,3.143,7.871,2.282,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,9.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,9.579,0.0,0.0,4.524,0.0,0.335,0.0,0.0,0.0,0.0,2.225,0.0,0.0,0.32,0.366,1.517,1.533,0.0,2.121,8.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,36000.0,24000.0,0.0,10.22,91.4,30246.0,8331.0,7102.0,0.0,543.0,6062.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 -base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.656,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,2719.3,24000.0,24000.0,0.0,17.24,91.22,18314.0,4508.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,15107.0,1151.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 -base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,7.629,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,1354.8,997.6,10580.5,2607.1,24000.0,24000.0,0.0,41.0,84.38,13255.0,5428.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13718.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 -base-location-dallas-tx.xml,34.353,34.353,32.588,32.588,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.767,1.868,6.814,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.629,0.0,30.193,6.675,0.573,0.0,0.0,0.0,0.0,2014.4,2771.1,9.706,14.235,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.343,9.5,1.888,1354.8,997.6,9989.0,2461.3,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-location-duluth-mn.xml,70.96,70.96,29.786,29.786,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,2.265,0.329,11.623,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.316,0.0,5.222,11.597,0.833,0.0,0.0,0.0,0.0,1760.4,2414.3,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,19.994,-13.274,0.0,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-6.293,-1.93,0.0,-0.435,-0.782,0.0,0.0,-0.099,-1.383,7.876,0.0,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.334,2.573,0.717,1354.8,997.6,12167.9,2889.4,36000.0,24000.0,0.0,-13.72,81.14,31260.0,6260.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11642.0,149.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 -base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,10.333,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,48000.0,24000.0,0.0,-8.14,89.24,39420.0,10023.0,9283.0,0.0,710.0,7923.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 -base-location-honolulu-hi.xml,36.199,36.199,36.199,36.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.218,3.035,4.816,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,2132.0,2154.5,0.0,13.168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.228,0.744,0.0,0.0,0.3,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,13.134,2.647,1354.8,997.6,8540.5,2104.4,12000.0,24000.0,0.0,63.32,89.06,3417.0,592.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 -base-location-miami-fl.xml,35.353,35.353,35.353,35.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.444,2.83,4.948,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.97,4.712,0.551,0.0,0.0,0.0,0.0,2104.8,2424.8,0.0,13.564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.006,0.575,0.0,0.0,0.304,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,13.135,2.647,1354.8,997.6,8625.1,2125.3,12000.0,24000.0,0.0,51.62,90.68,8608.0,784.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,646.0,13318.0,-219.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 -base-location-phoenix-az.xml,38.434,38.434,38.433,38.433,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.029,3.092,5.181,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,51.765,4.955,0.556,0.0,0.0,0.0,0.0,2368.2,3386.4,0.593,17.634,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,11.511,2.368,1354.8,997.6,8429.2,2077.0,24000.0,24000.0,0.0,41.36,108.14,13271.0,1050.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1035.0,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 -base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,9.081,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.884,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,1354.8,997.6,11239.5,2769.4,24000.0,24000.0,0.0,28.58,87.08,17550.0,6260.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 -base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,9.17,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38240.0,8734.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,9.164,0.0,0.0,4.51,0.0,0.334,0.112,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,26408.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-evap-cooler-only-ducted.xml,34.15,34.15,34.15,34.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.887,9.233,0.0,0.0,4.51,0.0,0.334,2.754,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,26408.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.736,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33151.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33153.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,9.169,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,9.169,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33151.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33153.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,42299.0,16223.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,9.169,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-57.264,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,63.835,44.385,31.488,12.038,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.745,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-19.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,36000.0,24000.0,0.0,6.8,91.76,30567.0,4631.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-emissions.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31472.0,8574.0,7508.0,0.0,575.0,6098.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,9.16,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,4.437,3.415,0.0,0.0,0.0,17.463,0.0,0.0,0.0,0.0,0.0,49.967,0.0,0.0,2.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,9.16,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,0.887,3.415,0.0,0.0,0.0,17.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,9.168,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30944.0,8558.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 -base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,8.303,0.0,0.0,4.059,0.0,0.3,0.0,0.0,0.0,0.0,1.998,2.151,0.0,0.287,0.329,1.361,1.375,0.0,1.903,7.537,0.0,0.0,0.0,8.286,3.993,3.073,0.0,0.0,0.0,21.139,0.0,0.0,0.0,0.0,0.0,44.97,0.0,0.0,2.518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29361.0,8026.0,5506.0,0.0,575.0,6537.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-round-trip-efficiency.xml,60.69,33.803,37.859,10.972,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,1.909,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-scheduled.xml,60.483,33.596,37.652,10.766,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery-scheduled.xml,77.483,42.407,37.652,2.576,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery.xml,76.584,41.509,36.754,1.678,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,0.804,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,3.939,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,3.032,2.994,0.0,0.0,0.0,21.458,0.0,0.0,0.0,0.0,0.0,18.628,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,3.939,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,0.606,2.994,0.0,0.0,0.0,21.458,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,3.942,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,2.36,0.0,0.0,0.769,0.544,4.047,2.057,0.745,3.051,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-20.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,36000.0,24000.0,0.0,6.8,91.76,30567.0,4631.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,9.169,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,9.194,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.376,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,9.164,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.376,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,9.167,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,9.161,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -house001.xml,86.472,86.472,46.995,46.995,39.477,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.723,4.406,0.0,0.0,0.0,7.38,0.315,0.652,0.448,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,3.284,1.794,0.0,2.585,6.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.439,0.0,17.038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.196,0.0,50.021,10.416,2.674,0.0,0.0,0.0,0.0,1853.3,6430.8,37.577,40.55,0.489,1.971,7.187,0.419,0.0,0.959,7.579,-4.942,0.0,0.0,0.438,1.257,-0.263,4.293,0.0,5.152,0.0,3.21,-6.762,-2.935,0.576,2.028,3.795,0.307,0.0,0.257,0.294,11.575,0.0,0.0,0.572,6.816,-0.249,-0.42,-1.415,-0.757,0.0,10.793,11.588,4.446,2104.5,2144.0,14468.7,4385.1,90000.0,60000.0,0.0,25.88,98.42,62092.0,24399.0,7740.0,0.0,942.0,7599.0,453.0,609.0,9636.0,2236.0,8478.0,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 -house002.xml,67.267,67.267,39.84,39.84,27.428,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.743,3.413,0.0,0.0,0.0,6.381,0.315,0.594,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,5.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.945,0.0,13.482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.306,0.0,39.368,7.526,2.888,0.0,0.0,0.0,0.0,1554.0,4938.0,23.886,28.431,0.0,2.525,5.047,0.0,0.0,0.848,5.998,-4.053,0.0,0.0,0.0,1.761,-0.146,1.574,0.0,3.789,0.0,1.371,-5.071,-2.493,0.0,3.11,2.775,0.0,0.0,0.402,-0.49,8.601,0.0,0.0,0.0,8.463,-0.14,-0.183,-1.053,-0.638,0.0,5.886,8.93,3.888,1610.9,1574.7,9989.5,3520.4,90000.0,60000.0,0.0,25.88,98.42,47924.0,15311.0,6070.0,0.0,752.0,4731.0,0.0,0.0,12952.0,3120.0,4987.0,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 -house003.xml,68.65,68.65,40.101,40.101,28.549,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.766,3.552,0.0,0.0,0.0,6.875,0.315,0.623,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.309,0.0,13.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.411,0.0,40.869,7.526,2.687,0.0,0.0,0.0,0.0,1632.3,5239.7,26.287,32.144,0.645,2.771,4.649,0.0,0.0,0.979,6.67,-3.929,0.0,0.0,0.0,1.082,-0.162,1.987,0.0,3.935,0.0,1.613,-5.288,-2.699,0.809,3.085,2.609,0.0,0.0,0.639,-0.276,9.905,0.0,0.0,0.0,6.527,-0.155,-0.219,-1.096,-0.637,0.0,6.494,9.194,4.176,1610.9,1574.7,9989.3,3520.4,90000.0,60000.0,0.0,25.88,98.42,48411.0,15944.0,6644.0,0.0,892.0,4431.0,610.0,0.0,11450.0,2908.0,5532.0,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 -house004.xml,136.282,136.282,75.371,75.371,60.91,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,29.027,9.473,0.0,0.0,0.0,11.562,0.315,0.893,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,1.633,2.35,11.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.769,0.0,16.142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.203,0.0,107.257,8.985,3.506,0.0,0.0,0.0,105.0,3062.3,7371.4,54.682,50.217,0.128,5.524,11.378,0.0,0.0,1.248,14.004,-5.986,0.0,0.0,0.0,3.23,-0.722,4.937,0.0,6.276,0.0,7.099,-7.294,-3.929,0.202,6.823,11.717,0.0,0.0,0.523,5.458,17.456,0.0,0.0,0.0,18.949,-0.709,1.029,0.0,1.859,0.0,21.516,15.063,7.633,1857.7,1859.3,12229.0,3983.9,80000.0,60000.0,0.0,25.88,98.42,76554.0,20975.0,11324.0,0.0,882.0,8959.0,101.0,0.0,19021.0,5929.0,9362.0,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 -house005.xml,95.141,95.141,53.332,53.332,41.809,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.312,5.162,0.0,0.0,0.0,9.155,0.315,0.754,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,8.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.616,0.0,15.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.585,0.0,59.698,8.985,2.726,0.0,0.0,0.0,0.0,2075.9,7519.2,45.934,51.035,0.0,3.005,8.093,0.266,0.0,1.336,10.05,-6.655,0.0,0.0,0.37,1.255,-0.337,5.037,0.0,5.077,0.0,4.382,-6.862,-3.637,0.0,3.044,4.354,0.214,0.0,0.297,0.315,15.402,0.0,0.0,0.447,7.531,-0.32,-0.49,-1.77,-0.737,0.0,14.587,11.523,5.518,1857.7,1859.4,12229.0,3983.9,90000.0,60000.0,0.0,25.88,98.42,71539.0,26959.0,10216.0,0.0,1260.0,8257.0,0.0,480.0,11638.0,3312.0,9418.0,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 -house006.xml,142.242,142.242,31.894,31.894,110.348,0.0,0.0,0.0,0.0,0.0,0.0,1.939,0.0,0.0,2.995,0.348,0.0,0.0,0.0,8.687,0.29,0.705,3.138,0.0,0.0,0.0,1.707,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.114,8.883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.5,0.0,20.137,2.642,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.35,0.0,7.988,13.084,3.278,0.0,0.0,0.0,0.0,1993.4,2452.7,41.347,14.878,0.0,4.247,22.232,1.986,37.105,1.863,17.922,-9.457,0.0,0.0,0.0,12.082,-0.315,9.522,0.0,4.368,0.0,0.0,-14.573,-6.454,0.0,0.178,-0.794,-0.045,2.679,-0.086,-0.891,4.255,0.0,0.0,0.0,-3.557,-0.314,-0.514,-0.619,-0.075,0.0,0.0,5.644,2.233,1610.9,1574.7,12168.1,4288.2,80000.0,30000.0,0.0,-13.72,81.14,38740.0,0.0,8907.0,0.0,750.0,19692.0,0.0,0.0,2259.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 -house007.xml,141.653,141.653,34.049,34.049,107.604,0.0,0.0,0.0,0.0,0.0,0.0,1.691,0.0,0.0,2.601,0.411,0.0,0.0,0.0,10.299,0.315,0.82,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.937,0.0,23.28,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.383,0.0,5.998,15.632,3.268,0.0,0.0,0.0,0.0,2197.3,2578.4,40.515,13.451,0.0,4.696,23.603,4.396,10.144,1.496,18.957,-9.35,0.0,0.0,0.076,14.267,-0.347,6.117,0.0,20.825,0.0,2.966,-17.227,-7.76,0.0,0.203,-0.715,-0.042,0.519,-0.048,-0.56,4.543,0.0,0.0,-0.009,-3.729,-0.343,-0.193,-0.595,-1.898,0.0,0.107,6.313,2.539,1857.7,1859.4,14896.3,4852.9,90000.0,42000.0,0.0,-13.72,81.14,43636.0,5468.0,9095.0,0.0,587.0,14942.0,0.0,27.0,2397.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 -house008.xml,185.757,185.757,39.285,39.285,146.472,0.0,0.0,0.0,0.0,0.0,0.0,2.539,0.0,0.0,3.638,0.547,0.0,0.0,0.0,11.006,0.315,0.861,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,113.034,0.0,26.377,3.452,3.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.509,0.0,10.33,18.129,3.214,0.0,0.0,0.0,0.0,2477.9,3308.4,55.44,19.563,0.0,7.203,27.363,4.679,24.316,1.177,22.371,-7.822,0.0,0.0,1.223,19.694,-0.365,18.319,0.0,6.384,0.0,7.958,-18.658,-8.182,0.0,0.306,-1.14,-0.066,1.602,-0.088,-1.393,5.358,0.0,0.0,-0.104,-2.374,-0.365,-0.992,-0.691,-0.286,0.0,0.545,7.296,2.823,2104.5,2144.0,17624.6,5341.6,90000.0,36000.0,0.0,-13.72,81.14,59832.0,10595.0,10314.0,0.0,587.0,20172.0,0.0,891.0,4429.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 -house009.xml,154.012,154.012,33.993,33.993,120.019,0.0,0.0,0.0,0.0,0.0,0.0,2.029,0.0,0.0,2.389,0.289,0.0,0.0,0.0,10.271,0.315,0.819,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.344,0.0,23.29,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.128,0.0,5.244,15.632,3.276,0.0,0.0,0.0,0.0,2226.3,2610.0,44.084,13.929,0.0,5.088,28.337,4.269,13.075,2.251,19.554,-8.214,0.0,0.0,0.266,15.531,-0.345,8.73,0.0,21.437,0.0,0.0,-17.507,-7.871,0.0,0.245,-0.691,-0.018,0.744,-0.076,-0.776,4.52,0.0,0.0,-0.028,-4.085,-0.341,-0.259,-0.523,-1.801,0.0,0.0,6.014,2.401,1857.7,1859.4,14896.3,4852.9,90000.0,36000.0,0.0,-13.72,81.14,44389.0,0.0,8913.0,0.0,885.0,18118.0,0.0,95.0,3355.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 -house010.xml,156.325,156.325,37.675,37.675,118.65,0.0,0.0,0.0,0.0,0.0,0.0,1.914,0.0,0.0,2.958,0.282,0.0,0.0,0.0,10.986,0.315,0.86,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.214,0.0,26.375,3.452,3.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.298,0.0,7.539,18.129,3.213,0.0,0.0,0.0,0.0,2413.9,2825.7,46.006,15.529,0.872,4.91,25.351,4.845,9.789,1.246,23.444,-9.224,0.0,0.0,0.893,13.855,-0.364,19.559,0.0,6.4,0.0,4.992,-18.699,-8.179,0.025,0.219,-0.753,-0.078,0.5,-0.073,-1.37,5.069,0.0,0.0,-0.046,-3.89,-0.361,-1.028,-0.687,-0.272,0.0,0.345,7.235,2.807,2104.5,2144.0,17624.6,5341.6,90000.0,30000.0,0.0,-13.72,81.14,51143.0,8284.0,10714.0,0.0,587.0,16310.0,359.0,532.0,1678.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 -house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,2.334,10.452,0.0,0.0,4.905,0.0,0.509,0.003,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.0,0.0,1.661,0.0,2.35,3.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,24000.0,18000.0,34120.0,24.62,91.58,20649.0,6686.0,2440.0,0.0,1007.0,3251.0,0.0,546.0,0.0,1795.0,4923.0,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 -house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,8.943,0.0,0.0,4.378,0.0,0.478,0.003,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.0,0.0,1.528,0.0,2.114,3.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,23400.0,23200.0,0.0,24.62,91.58,13914.0,1327.0,1906.0,0.0,333.0,2909.0,0.0,1767.0,0.0,1513.0,4159.0,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 -house013.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,18000.0,18000.0,17060.0,24.62,91.58,12482.0,3021.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,0.0,0.0,4.053,0.0,0.46,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,3131.8,18000.0,18000.0,17060.0,24.62,91.58,13648.0,3089.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 -house015.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,18000.0,18000.0,17060.0,24.62,91.58,12482.0,3021.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house016.xml,61.263,61.263,39.853,39.853,0.0,0.0,21.411,0.0,0.0,0.0,7.559,0.538,0.161,0.004,3.072,1.04,0.0,0.0,0.0,8.606,0.0,0.723,0.215,0.0,0.0,0.0,2.448,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.255,8.015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.223,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.34,0.164,12.019,10.478,0.0,0.0,0.0,1.0,16.0,7459.0,3560.9,42.956,19.023,0.0,4.422,10.844,0.619,5.714,0.298,7.394,-8.024,0.0,0.0,0.0,6.778,-0.019,5.733,0.0,3.86,0.0,0.0,-8.633,-4.768,0.0,-0.35,-0.879,-0.023,2.9,-0.048,-0.599,12.366,0.0,0.0,0.0,-8.871,-0.021,-1.377,-1.189,-1.027,0.0,0.0,7.782,3.838,1759.0,1745.5,13591.0,4566.0,136000.0,36000.0,36000.0,19.22,86.72,26406.0,0.0,5399.0,0.0,171.0,10377.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 -house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,0.0,0.0,0.0,4.67,0.187,0.387,0.033,0.0,0.0,0.0,2.086,0.0,0.0,0.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,60000.0,24000.0,0.0,16.16,89.24,35267.0,0.0,4833.0,0.0,181.0,13937.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 -house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,0.0,0.0,4.761,0.0,0.461,0.112,0.0,0.0,0.0,4.21,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,4.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,36000.0,36000.0,36000.0,19.22,86.72,18300.0,4909.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2606.0,1095.0,711.0,800.0 -house019.xml,129.829,129.829,51.943,51.943,77.886,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.26,3.784,9.725,0.0,0.0,8.923,0.0,0.741,0.054,0.0,0.0,0.0,2.005,1.27,0.0,0.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.111,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.061,0.0,44.571,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6498.5,84.656,46.066,0.0,11.382,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.956,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.957,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,100000.0,60000.0,0.0,16.16,89.24,49914.0,0.0,9523.0,0.0,1028.0,26480.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 -house020.xml,116.978,116.978,56.889,56.889,0.0,0.0,60.089,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.255,2.925,0.0,0.0,0.0,12.75,0.0,0.892,0.026,0.0,0.0,0.0,3.976,0.0,0.0,0.496,0.369,2.745,0.11,0.0,2.255,16.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.951,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.959,0.0,34.544,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6621.3,31.034,32.551,0.908,11.005,10.577,1.134,9.808,0.633,14.613,-15.405,0.0,0.0,0.0,7.525,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.244,0.149,0.176,0.052,6.389,0.012,-1.765,21.501,0.0,0.0,0.0,-6.71,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,120000.0,60000.0,0.0,19.22,86.72,44436.0,0.0,10325.0,0.0,395.0,12858.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 -house021.xml,156.414,156.414,48.608,48.608,107.806,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.49,1.583,0.0,0.0,0.0,10.64,0.244,0.771,0.071,0.0,0.0,0.0,2.448,1.472,0.0,0.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.765,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.989,0.0,19.001,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4772.1,81.115,23.856,0.0,8.268,27.059,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.316,26.612,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.014,-0.865,0.005,2.201,-0.093,-1.71,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.324,8.889,3.787,1759.0,1745.5,13752.0,4620.1,130000.0,60000.0,0.0,16.16,89.24,52324.0,8017.0,10175.0,0.0,318.0,15504.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 -house022.xml,137.518,137.518,48.884,48.884,0.0,88.635,0.0,0.0,0.0,0.0,0.0,2.204,0.0,0.0,8.878,0.897,12.47,0.0,0.0,6.69,0.0,0.61,0.034,0.0,0.0,0.0,2.086,1.649,0.0,0.496,0.369,2.745,1.608,0.0,2.255,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.755,0.0,19.669,10.989,1.479,0.0,0.0,184.0,126.0,2989.1,5375.4,90.672,27.64,3.697,3.766,20.67,0.0,0.0,1.489,16.102,-13.284,0.0,0.0,14.728,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.522,0.0,0.0,-0.127,-0.987,12.096,0.0,0.0,1.908,0.0,-0.281,-2.742,-0.645,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,100000.0,36000.0,0.0,16.16,89.24,53604.0,0.0,10741.0,0.0,737.0,11570.0,2029.0,5140.0,0.0,2115.0,21272.0,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 -house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,0.0,0.0,9.219,0.0,0.692,0.045,0.0,0.0,0.0,4.21,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.653,11.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,125000.0,42000.0,0.0,16.16,89.24,43971.0,0.0,5067.0,0.0,362.0,17083.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 -house024.xml,129.181,129.181,44.059,44.059,0.0,85.122,0.0,0.0,0.0,0.0,0.0,2.117,0.0,0.0,5.375,0.691,16.753,0.0,0.0,3.916,0.0,0.396,0.058,0.0,0.0,0.0,2.005,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.653,3.778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.176,0.0,16.013,14.653,2.088,0.0,0.0,0.0,0.0,2750.5,3528.1,72.024,17.577,0.0,7.189,30.113,0.0,0.0,0.682,6.988,-7.991,0.0,0.0,5.221,0.0,-0.109,25.401,0.0,1.837,0.0,11.726,-8.633,-2.537,0.0,0.564,1.148,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.499,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.853,5.531,1.379,2176.1,2226.5,14983.5,4452.7,85000.0,30000.0,0.0,16.16,89.24,60409.0,12599.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,21856.0,1377.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7041.0,2605.0,3636.0,800.0 -house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,0.0,0.0,9.263,0.0,0.783,0.0,0.0,0.0,0.0,4.105,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,158000.0,81000.0,33000.0,24.62,91.58,54382.0,20089.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,32212.0,8765.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 -house026.xml,57.53,57.53,24.858,24.858,32.672,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.534,0.251,0.548,0.299,0.0,0.0,0.0,1.987,0.0,0.0,0.447,0.338,2.514,1.528,0.934,2.114,7.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.54,0.0,14.132,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.214,0.0,0.0,8.607,2.071,0.0,0.0,0.0,0.0,1554.3,1299.3,17.654,0.0,0.0,1.763,6.788,0.231,0.0,0.196,4.821,-2.877,0.0,0.0,7.433,0.0,-0.053,2.486,0.0,3.124,0.0,0.0,-6.702,-3.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1294.7,1281.5,8575.8,3022.2,84000.0,0.0,0.0,24.62,91.58,22421.0,0.0,3869.0,0.0,128.0,5749.0,0.0,5824.0,0.0,1459.0,5391.0,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 -house027.xml,72.675,72.675,31.766,31.766,40.908,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,7.903,1.021,0.0,0.0,0.0,5.947,0.218,0.485,0.927,0.0,0.0,0.0,1.724,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,7.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.958,0.0,17.881,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.8,0.0,23.144,8.564,5.231,0.0,0.0,0.0,0.0,1579.3,3624.8,24.012,22.742,0.717,1.779,7.835,0.433,0.0,0.588,5.217,-4.028,0.0,0.0,0.372,3.347,-0.138,1.744,0.0,10.422,0.0,2.036,-8.785,-2.844,0.486,1.117,0.735,0.091,0.0,-0.107,-0.293,5.629,0.0,0.0,0.112,3.831,-0.138,-0.367,-0.973,-3.484,0.0,2.602,10.733,3.103,1610.9,1574.7,10579.5,3728.4,75000.0,36000.0,0.0,24.62,91.58,33085.0,7576.0,4494.0,0.0,375.0,6506.0,550.0,250.0,4088.0,1516.0,7731.0,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 -house028.xml,67.777,67.777,29.713,29.713,38.064,0.0,0.0,0.0,0.0,0.0,0.0,0.257,0.0,0.0,7.134,1.521,0.0,0.0,0.0,6.138,0.226,0.503,0.618,0.0,0.0,0.0,2.104,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,7.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.558,0.0,18.12,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.733,0.0,22.845,10.226,3.619,0.0,0.0,0.0,0.0,1516.8,3329.2,19.98,21.277,0.767,1.659,7.019,0.34,0.0,0.428,5.478,-3.79,0.0,0.0,0.233,2.471,-0.05,4.04,0.0,4.465,0.0,1.534,-9.079,-2.901,0.614,1.244,-0.524,0.118,0.0,0.074,-0.711,6.39,0.0,0.0,0.073,1.831,-0.051,-1.083,-1.206,-1.646,0.0,2.931,11.526,3.237,1857.7,1859.4,12951.5,4219.3,75000.0,36000.0,0.0,24.62,91.58,31420.0,8676.0,4365.0,0.0,315.0,5287.0,616.0,180.0,3569.0,1488.0,6925.0,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 -house029.xml,78.146,78.146,30.129,30.129,48.017,0.0,0.0,0.0,0.0,0.0,0.0,0.647,0.0,0.0,6.253,0.932,0.0,0.0,0.0,6.543,0.274,0.569,0.76,0.0,0.0,0.0,1.981,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,6.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.353,0.0,12.596,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.015,0.0,14.034,9.614,0.0,0.0,0.0,0.0,0.0,1605.9,3024.0,28.665,14.173,0.0,3.353,14.661,0.392,0.0,0.306,6.677,-6.46,0.0,0.0,7.295,0.0,-0.082,7.286,0.0,7.296,0.0,3.208,-8.368,-3.708,0.0,1.121,-0.886,0.008,0.0,0.054,0.347,5.724,0.0,0.0,-0.005,0.0,-0.077,-0.819,-1.09,-1.55,0.0,1.281,7.176,2.834,1610.9,1574.7,11033.0,3888.2,77000.0,36000.0,0.0,17.24,91.22,29358.0,2294.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 -house030.xml,58.718,58.718,17.191,17.191,0.0,0.0,41.527,0.0,0.0,0.0,0.0,0.056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.324,0.272,0.497,0.57,0.0,0.0,0.0,1.834,0.0,0.0,0.366,0.286,0.168,0.096,0.701,1.879,5.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.217,0.0,13.274,2.238,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.525,0.0,0.0,7.715,2.195,0.0,0.0,0.0,0.0,1134.0,975.2,16.286,0.0,0.0,1.661,10.17,0.487,1.11,1.042,5.327,-4.368,0.0,0.0,0.0,4.32,-0.041,2.74,0.0,5.69,0.0,0.0,-7.811,-2.953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1066.3,993.0,6765.0,2581.4,87000.0,0.0,0.0,17.24,91.22,18253.0,0.0,3366.0,0.0,474.0,6809.0,0.0,0.0,2880.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 -house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,0.0,0.0,0.0,10.36,0.246,0.758,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,200000.0,96000.0,0.0,16.16,89.24,82679.0,13643.0,10261.0,0.0,650.0,23266.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 -house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.094,0.0,0.518,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.3,2807.9,75000.0,0.0,0.0,16.16,89.24,30426.0,0.0,5132.0,0.0,690.0,10940.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 -house033.xml,106.743,106.743,14.691,14.691,0.0,92.052,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.888,0.0,0.528,0.0,0.0,0.0,0.0,1.294,0.0,0.0,0.0,0.194,1.443,1.158,0.0,1.46,3.412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.371,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.569,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,48.38,0.0,0.0,19.125,14.564,0.0,0.0,1.0,10.82,-7.637,0.0,0.0,14.706,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,924.8,0.0,3905.6,1188.1,109000.0,0.0,0.0,16.16,89.24,32325.0,0.0,5273.0,0.0,362.0,6028.0,0.0,4559.0,0.0,8461.0,7643.0,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 -house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.498,0.341,1.204,0.0,0.0,0.0,0.0,1.909,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.255,15.707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1759.0,1745.5,10287.1,3456.0,210000.0,0.0,0.0,16.16,89.24,60898.0,0.0,15758.0,0.0,1028.0,15579.0,0.0,4773.0,1069.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 -house035.xml,63.505,63.505,17.521,17.521,45.985,0.0,0.0,0.0,0.0,0.0,0.0,0.809,0.0,0.0,1.742,0.119,0.0,0.0,0.0,5.438,0.0,0.533,0.0,0.0,0.0,0.0,2.257,0.0,0.0,0.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.522,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.706,0.0,2.673,3.92,3.822,0.0,0.0,102.0,0.0,1326.3,1899.4,39.1,9.67,0.367,6.149,10.862,0.0,0.0,0.538,5.863,-7.44,0.0,0.0,7.797,0.0,0.004,13.61,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.579,-1.589,0.0,0.0,-0.082,-1.219,7.322,0.0,0.0,-4.457,0.0,0.009,-2.738,-0.728,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,80000.0,24000.0,0.0,16.16,89.24,27631.0,0.0,4397.0,0.0,318.0,7248.0,249.0,1468.0,0.0,4065.0,9886.0,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 -house036.xml,82.314,82.314,26.075,26.075,56.239,0.0,0.0,0.0,0.0,0.0,0.0,0.964,0.0,0.0,5.964,1.051,0.0,0.0,0.0,5.449,0.0,0.536,0.0,0.0,0.0,0.0,1.617,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.77,0.0,17.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.868,0.0,15.005,8.219,5.837,0.0,0.0,102.0,126.0,1461.8,3231.3,31.799,17.329,5.544,2.267,3.993,0.0,0.0,1.83,6.573,-7.755,0.0,0.0,21.29,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.427,-3.43,1.567,0.119,-0.032,0.0,0.0,-0.224,-0.58,6.698,0.0,0.0,2.216,0.0,-0.0,-0.749,-0.419,-0.061,0.0,0.0,4.352,2.019,1341.9,1264.5,6447.0,2476.3,60000.0,24000.0,0.0,16.16,89.24,25212.0,0.0,4435.0,0.0,1019.0,2375.0,3328.0,7811.0,0.0,1320.0,4925.0,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 -house037.xml,87.934,87.934,21.779,21.779,0.0,66.155,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.807,0.0,0.61,0.0,0.0,0.0,0.0,2.004,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,6.203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.998,0.0,16.157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.091,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,29.538,0.0,0.0,16.714,11.33,0.0,0.0,1.563,7.276,-10.49,0.0,0.0,6.59,0.0,-0.309,14.696,0.0,0.461,0.0,0.0,-6.818,-3.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,8324.2,3197.3,110000.0,0.0,0.0,19.22,86.72,40440.0,0.0,6057.0,0.0,969.0,7752.0,0.0,1095.0,0.0,13572.0,10994.0,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 -house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,0.0,0.0,0.0,6.908,0.315,0.625,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,71000.0,36000.0,0.0,16.16,89.24,30633.0,0.0,6993.0,0.0,362.0,9341.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 -house039.xml,98.796,98.796,24.025,24.025,74.77,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,5.136,0.0,0.0,4.411,0.239,0.418,0.0,0.0,0.0,0.0,1.763,0.0,0.0,0.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.084,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.19,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,49.765,0.0,0.0,14.276,5.416,0.0,0.0,2.519,15.643,-13.75,0.0,0.0,13.85,0.0,-0.039,13.263,0.0,0.557,0.0,0.0,-4.135,-2.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2176.1,2226.5,17536.3,5211.3,87000.0,0.0,0.0,16.16,89.24,42559.0,0.0,11110.0,0.0,1456.0,3312.0,0.0,6991.0,0.0,8806.0,10883.0,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 -house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.373,0.0,0.651,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,75000.0,0.0,0.0,16.16,89.24,43973.0,0.0,7249.0,0.0,1028.0,13423.0,5873.0,795.0,946.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 -house041.xml,263.645,263.645,47.328,47.328,216.317,0.0,0.0,0.0,0.0,0.0,0.0,4.262,0.0,0.0,2.66,0.267,0.0,0.0,0.0,13.943,0.315,1.031,0.05,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.473,2.35,14.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189.767,0.0,26.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,178.811,0.0,4.914,15.632,5.037,0.0,0.0,140.0,0.0,3249.4,4593.2,77.768,23.858,0.0,11.231,44.604,3.437,35.033,3.016,41.157,-22.869,0.0,0.0,4.272,22.319,-0.484,64.007,0.0,2.762,0.0,0.0,-20.273,-10.988,0.0,0.083,-2.236,-0.118,1.495,-0.212,-4.036,11.056,0.0,0.0,-0.318,-4.879,-0.482,-3.525,-1.055,-0.26,0.0,0.0,6.574,2.954,1857.7,1859.4,14896.4,4852.9,75000.0,30000.0,0.0,-13.72,81.14,97503.0,0.0,18666.0,0.0,1544.0,30313.0,0.0,2471.0,8192.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 -house042.xml,233.907,233.907,40.211,40.211,193.696,0.0,0.0,0.0,0.0,0.0,0.0,3.967,0.0,0.0,1.854,0.077,0.0,0.0,0.0,9.539,0.213,0.678,0.093,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,13.542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,169.261,0.0,24.435,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,166.422,0.0,3.165,15.632,3.225,0.0,0.0,0.0,0.0,2767.6,3100.5,89.493,19.715,0.0,9.183,39.876,3.992,43.914,2.661,34.078,-21.646,0.0,0.0,2.425,19.204,-0.37,56.218,0.0,1.75,0.0,0.0,-19.153,-7.589,0.0,0.183,-1.615,-0.065,2.502,-0.161,-3.142,7.055,0.0,0.0,-0.272,-4.669,-0.366,-2.879,-0.664,-0.146,0.0,0.0,5.555,1.95,1857.7,1859.4,14896.3,4852.9,90000.0,24000.0,0.0,-13.72,81.14,85454.0,0.0,17465.0,0.0,1066.0,30498.0,0.0,927.0,3750.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 -house043.xml,160.748,160.748,30.151,30.151,130.597,0.0,0.0,0.0,0.0,0.0,0.0,2.513,0.0,0.0,2.066,0.123,0.0,0.0,0.0,6.562,0.213,0.514,0.093,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.697,0.0,19.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.439,0.0,3.154,13.084,2.206,0.0,0.0,0.0,0.0,1994.0,2811.9,55.417,13.976,0.0,3.166,23.182,2.279,33.907,5.589,23.433,-11.473,0.0,0.0,0.547,12.702,-0.276,28.925,0.0,1.576,0.0,0.0,-14.351,-5.157,0.0,0.028,-0.929,-0.095,1.426,-0.379,-2.383,5.808,0.0,0.0,-0.071,-3.42,-0.276,-1.629,-0.549,-0.148,0.0,0.0,4.471,1.404,1610.9,1574.7,12168.1,4288.2,90000.0,30000.0,0.0,-13.72,81.14,54524.0,0.0,11581.0,0.0,2417.0,20151.0,0.0,202.0,2421.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 -house044.xml,229.02,229.02,43.659,43.659,185.362,0.0,0.0,0.0,0.0,0.0,0.0,4.768,0.0,0.0,2.147,0.207,0.0,0.0,0.0,12.955,0.315,0.974,0.037,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,12.956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.796,0.0,22.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,151.254,0.0,3.935,13.084,4.45,0.0,0.0,0.0,0.0,3101.2,3571.6,81.86,19.162,4.363,6.889,36.355,9.097,19.369,2.733,18.933,-13.314,0.0,0.0,12.687,18.441,-0.462,61.873,0.0,1.435,0.0,0.0,-18.014,-10.248,0.233,0.435,-1.484,-0.104,1.069,-0.123,-1.249,6.809,0.0,0.0,-1.163,-4.596,-0.459,-2.766,-0.501,-0.103,0.0,0.0,5.311,2.707,1610.9,1574.7,12168.1,4288.2,110000.0,36000.0,0.0,-13.72,81.14,79064.0,0.0,8527.0,0.0,1403.0,26527.0,1911.0,5425.0,2422.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 -house045.xml,152.5,152.5,35.243,35.243,117.257,0.0,0.0,0.0,0.0,0.0,0.0,2.776,0.0,0.0,2.406,0.302,0.0,0.0,0.0,9.065,0.315,0.749,1.793,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.806,0.0,22.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.082,0.0,4.068,13.084,4.362,0.0,0.0,0.0,0.0,2317.0,3015.0,47.223,12.936,3.564,3.072,15.126,2.27,32.793,1.139,19.86,-13.612,1.043,-0.407,0.086,12.675,-0.187,20.633,0.0,10.931,0.0,0.0,-14.66,-7.027,-0.013,0.005,-1.094,-0.117,0.875,-0.089,-2.077,7.137,-0.068,0.396,-0.013,-4.088,-0.186,-1.186,-0.918,-1.261,0.0,0.0,4.827,2.037,1610.9,1574.7,12168.1,4288.2,70000.0,30000.0,0.0,-13.72,81.14,45202.0,0.0,8927.0,496.0,442.0,17005.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 -house046.xml,25.039,25.039,25.039,25.039,0.0,0.0,0.0,0.0,0.0,0.0,5.363,0.445,0.267,0.009,3.74,1.039,4.924,0.0,0.0,1.03,0.0,0.082,0.0,0.0,0.0,0.0,1.793,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.644,2.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.919,0.276,12.851,4.305,0.617,0.0,0.0,0.0,0.0,3842.2,2404.7,16.167,13.006,0.0,2.523,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.283,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.818,4.589,0.545,596.8,442.2,5543.5,2208.6,18000.0,18000.0,17065.0,24.62,91.58,19009.0,4026.0,1800.0,0.0,182.0,2847.0,0.0,0.0,0.0,1604.0,8550.0,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 -house047.xml,20.762,20.762,14.475,14.475,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.596,0.005,4.487,0.0,0.0,0.921,0.0,0.463,0.182,0.0,0.0,0.0,1.444,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.644,2.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.111,0.0,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.4,968.8,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.729,-0.554,0.0,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.101,0.032,0.0,0.0,-0.093,0.798,0.0,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.276,0.409,251.7,442.2,5772.6,1524.2,20000.0,18000.0,0.0,19.22,86.72,7389.0,1053.0,1216.0,0.0,0.0,630.0,0.0,0.0,705.0,0.0,3785.0,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 -house048.xml,91.545,91.545,39.87,39.87,51.675,0.0,0.0,0.0,0.0,0.0,0.0,0.331,0.0,0.0,12.958,3.843,0.0,0.0,0.0,3.691,0.085,0.498,3.014,0.0,0.0,0.0,2.421,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.35,8.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.721,0.0,12.616,0.0,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.9,0.0,51.647,7.253,2.672,0.0,0.0,0.0,0.0,1537.0,5475.4,41.96,33.156,1.017,2.617,11.966,0.0,0.0,0.809,4.918,-2.538,0.0,0.0,0.057,2.027,-0.53,6.789,0.0,4.189,0.0,6.375,-7.395,-1.508,1.351,1.066,9.35,0.0,0.0,0.558,2.746,4.304,0.0,0.0,0.074,10.099,-0.517,0.518,-0.451,1.922,0.0,7.048,11.596,2.183,130.3,817.7,11617.6,3495.1,63000.0,46500.0,0.0,25.88,98.42,51008.0,12331.0,4499.0,0.0,585.0,9704.0,828.0,45.0,11275.0,2249.0,9492.0,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 -house049.xml,32.045,32.045,28.548,28.548,3.497,0.0,0.0,0.0,0.0,0.0,5.846,0.035,0.0,0.0,5.866,0.149,2.621,0.249,0.0,1.474,0.057,0.099,2.092,0.0,0.0,0.0,3.073,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.879,4.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.698,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.202,0.0,34.041,4.262,1.305,0.0,0.0,0.0,93.0,4425.1,2181.8,12.334,17.734,0.0,1.364,4.436,0.0,0.0,0.0,3.891,-7.555,0.0,0.0,0.0,1.446,-0.076,2.577,0.0,1.806,0.0,0.0,-2.434,-0.439,0.0,1.567,6.673,0.0,0.0,0.0,3.231,15.06,0.0,0.0,0.0,2.969,-0.077,-0.317,-3.564,0.51,0.0,0.0,7.533,1.035,728.6,567.4,7487.1,928.5,39000.0,16000.0,0.0,33.26,106.16,18656.0,0.0,5635.0,0.0,0.0,5120.0,0.0,0.0,2100.0,1357.0,4445.0,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 -house050.xml,51.833,51.833,21.857,21.857,29.976,0.0,0.0,0.0,0.0,0.0,0.0,0.275,0.0,0.0,1.906,0.335,0.0,0.0,0.0,1.782,0.057,0.111,2.23,0.0,0.0,0.0,2.36,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.114,5.961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.061,0.0,10.847,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.688,0.0,5.139,8.572,0.0,0.0,0.0,0.0,0.0,1156.7,2605.3,11.113,15.398,0.0,4.131,6.506,0.0,0.0,2.03,5.645,-4.221,0.0,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.92,-10.283,-1.232,0.0,-0.284,-0.31,0.0,0.0,-0.39,-0.567,4.041,0.0,0.0,-0.955,0.0,-0.123,-0.557,-1.22,-0.76,0.0,0.569,5.253,0.551,1689.0,437.0,10674.9,2994.2,58000.0,29000.0,0.0,28.58,87.08,21920.0,7753.0,3277.0,0.0,856.0,3061.0,0.0,2043.0,0.0,1771.0,3159.0,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 diff --git a/example_files/resources/hpxml-measures/workflow/tests/base_results/results_bills.csv b/example_files/resources/hpxml-measures/workflow/tests/base_results/results_bills.csv deleted file mode 100644 index 06f0adb4..00000000 --- a/example_files/resources/hpxml-measures/workflow/tests/base_results/results_bills.csv +++ /dev/null @@ -1,475 +0,0 @@ -HPXML,Bills: Total (USD),Bills: Electricity: Fixed (USD),Bills: Electricity: Energy (USD),Bills: Electricity: PV Credit (USD),Bills: Electricity: Total (USD),Bills: Natural Gas: Fixed (USD),Bills: Natural Gas: Energy (USD),Bills: Natural Gas: Total (USD),Bills: Fuel Oil: Fixed (USD),Bills: Fuel Oil: Energy (USD),Bills: Fuel Oil: Total (USD),Bills: Propane: Fixed (USD),Bills: Propane: Energy (USD),Bills: Propane: Total (USD),Bills: Wood Cord: Fixed (USD),Bills: Wood Cord: Energy (USD),Bills: Wood Cord: Total (USD),Bills: Wood Pellets: Fixed (USD),Bills: Wood Pellets: Energy (USD),Bills: Wood Pellets: Total (USD),Bills: Coal: Fixed (USD),Bills: Coal: Energy (USD),Bills: Coal: Total (USD),Tiered: Total (USD),Tiered: Electricity: Fixed (USD),Tiered: Electricity: Energy (USD),Tiered: Electricity: PV Credit (USD),Tiered: Electricity: Total (USD),Tiered: Natural Gas: Fixed (USD),Tiered: Natural Gas: Energy (USD),Tiered: Natural Gas: Total (USD),Tiered: Fuel Oil: Fixed (USD),Tiered: Fuel Oil: Energy (USD),Tiered: Fuel Oil: Total (USD),Tiered: Propane: Fixed (USD),Tiered: Propane: Energy (USD),Tiered: Propane: Total (USD),Tiered: Wood Cord: Fixed (USD),Tiered: Wood Cord: Energy (USD),Tiered: Wood Cord: Total (USD),Tiered: Wood Pellets: Fixed (USD),Tiered: Wood Pellets: Energy (USD),Tiered: Wood Pellets: Total (USD),Tiered: Coal: Fixed (USD),Tiered: Coal: Energy (USD),Tiered: Coal: Total (USD),TOU: Total (USD),TOU: Electricity: Fixed (USD),TOU: Electricity: Energy (USD),TOU: Electricity: PV Credit (USD),TOU: Electricity: Total (USD),TOU: Natural Gas: Fixed (USD),TOU: Natural Gas: Energy (USD),TOU: Natural Gas: Total (USD),TOU: Fuel Oil: Fixed (USD),TOU: Fuel Oil: Energy (USD),TOU: Fuel Oil: Total (USD),TOU: Propane: Fixed (USD),TOU: Propane: Energy (USD),TOU: Propane: Total (USD),TOU: Wood Cord: Fixed (USD),TOU: Wood Cord: Energy (USD),TOU: Wood Cord: Total (USD),TOU: Wood Pellets: Fixed (USD),TOU: Wood Pellets: Energy (USD),TOU: Wood Pellets: Total (USD),TOU: Coal: Fixed (USD),TOU: Coal: Energy (USD),TOU: Coal: Total (USD),Tiered and TOU: Total (USD),Tiered and TOU: Electricity: Fixed (USD),Tiered and TOU: Electricity: Energy (USD),Tiered and TOU: Electricity: PV Credit (USD),Tiered and TOU: Electricity: Total (USD),Tiered and TOU: Natural Gas: Fixed (USD),Tiered and TOU: Natural Gas: Energy (USD),Tiered and TOU: Natural Gas: Total (USD),Tiered and TOU: Fuel Oil: Fixed (USD),Tiered and TOU: Fuel Oil: Energy (USD),Tiered and TOU: Fuel Oil: Total (USD),Tiered and TOU: Propane: Fixed (USD),Tiered and TOU: Propane: Energy (USD),Tiered and TOU: Propane: Total (USD),Tiered and TOU: Wood Cord: Fixed (USD),Tiered and TOU: Wood Cord: Energy (USD),Tiered and TOU: Wood Cord: Total (USD),Tiered and TOU: Wood Pellets: Fixed (USD),Tiered and TOU: Wood Pellets: Energy (USD),Tiered and TOU: Wood Pellets: Total (USD),Tiered and TOU: Coal: Fixed (USD),Tiered and TOU: Coal: Energy (USD),Tiered and TOU: Coal: Total (USD),Real-Time Pricing: Total (USD),Real-Time Pricing: Electricity: Fixed (USD),Real-Time Pricing: Electricity: Energy (USD),Real-Time Pricing: Electricity: PV Credit (USD),Real-Time Pricing: Electricity: Total (USD),Real-Time Pricing: Natural Gas: Fixed (USD),Real-Time Pricing: Natural Gas: Energy (USD),Real-Time Pricing: Natural Gas: Total (USD),Real-Time Pricing: Fuel Oil: Fixed (USD),Real-Time Pricing: Fuel Oil: Energy (USD),Real-Time Pricing: Fuel Oil: Total (USD),Real-Time Pricing: Propane: Fixed (USD),Real-Time Pricing: Propane: Energy (USD),Real-Time Pricing: Propane: Total (USD),Real-Time Pricing: Wood Cord: Fixed (USD),Real-Time Pricing: Wood Cord: Energy (USD),Real-Time Pricing: Wood Cord: Total (USD),Real-Time Pricing: Wood Pellets: Fixed (USD),Real-Time Pricing: Wood Pellets: Energy (USD),Real-Time Pricing: Wood Pellets: Total (USD),Real-Time Pricing: Coal: Fixed (USD),Real-Time Pricing: Coal: Energy (USD),Real-Time Pricing: Coal: Total (USD),Simple: Total (USD),Simple: Electricity: Fixed (USD),Simple: Electricity: Energy (USD),Simple: Electricity: PV Credit (USD),Simple: Electricity: Total (USD),Simple: Natural Gas: Fixed (USD),Simple: Natural Gas: Energy (USD),Simple: Natural Gas: Total (USD),Simple: Fuel Oil: Fixed (USD),Simple: Fuel Oil: Energy (USD),Simple: Fuel Oil: Total (USD),Simple: Propane: Fixed (USD),Simple: Propane: Energy (USD),Simple: Propane: Total (USD),Simple: Wood Cord: Fixed (USD),Simple: Wood Cord: Energy (USD),Simple: Wood Cord: Total (USD),Simple: Wood Pellets: Fixed (USD),Simple: Wood Pellets: Energy (USD),Simple: Wood Pellets: Total (USD),Simple: Coal: Fixed (USD),Simple: Coal: Energy (USD),Simple: Coal: Total (USD),Detailed: Total (USD),Detailed: Electricity: Fixed (USD),Detailed: Electricity: Energy (USD),Detailed: Electricity: PV Credit (USD),Detailed: Electricity: Total (USD),Detailed: Natural Gas: Fixed (USD),Detailed: Natural Gas: Energy (USD),Detailed: Natural Gas: Total (USD),Detailed: Fuel Oil: Fixed (USD),Detailed: Fuel Oil: Energy (USD),Detailed: Fuel Oil: Total (USD),Detailed: Propane: Fixed (USD),Detailed: Propane: Energy (USD),Detailed: Propane: Total (USD),Detailed: Wood Cord: Fixed (USD),Detailed: Wood Cord: Energy (USD),Detailed: Wood Cord: Total (USD),Detailed: Wood Pellets: Fixed (USD),Detailed: Wood Pellets: Energy (USD),Detailed: Wood Pellets: Total (USD),Detailed: Coal: Fixed (USD),Detailed: Coal: Energy (USD),Detailed: Coal: Total (USD),Net Metering w/ Wholesale Excess Rate: Total (USD),Net Metering w/ Wholesale Excess Rate: Electricity: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Electricity: Energy (USD),Net Metering w/ Wholesale Excess Rate: Electricity: PV Credit (USD),Net Metering w/ Wholesale Excess Rate: Electricity: Total (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Energy (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Total (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Wholesale Excess Rate: Propane: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Propane: Energy (USD),Net Metering w/ Wholesale Excess Rate: Propane: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Wholesale Excess Rate: Coal: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Coal: Energy (USD),Net Metering w/ Wholesale Excess Rate: Coal: Total (USD),Net Metering w/ Retail Excess Rate: Total (USD),Net Metering w/ Retail Excess Rate: Electricity: Fixed (USD),Net Metering w/ Retail Excess Rate: Electricity: Energy (USD),Net Metering w/ Retail Excess Rate: Electricity: PV Credit (USD),Net Metering w/ Retail Excess Rate: Electricity: Total (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Fixed (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Energy (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Total (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Retail Excess Rate: Propane: Fixed (USD),Net Metering w/ Retail Excess Rate: Propane: Energy (USD),Net Metering w/ Retail Excess Rate: Propane: Total (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Total (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Retail Excess Rate: Coal: Fixed (USD),Net Metering w/ Retail Excess Rate: Coal: Energy (USD),Net Metering w/ Retail Excess Rate: Coal: Total (USD),Feed-In Tariff: Total (USD),Feed-In Tariff: Electricity: Fixed (USD),Feed-In Tariff: Electricity: Energy (USD),Feed-In Tariff: Electricity: PV Credit (USD),Feed-In Tariff: Electricity: Total (USD),Feed-In Tariff: Natural Gas: Fixed (USD),Feed-In Tariff: Natural Gas: Energy (USD),Feed-In Tariff: Natural Gas: Total (USD),Feed-In Tariff: Fuel Oil: Fixed (USD),Feed-In Tariff: Fuel Oil: Energy (USD),Feed-In Tariff: Fuel Oil: Total (USD),Feed-In Tariff: Propane: Fixed (USD),Feed-In Tariff: Propane: Energy (USD),Feed-In Tariff: Propane: Total (USD),Feed-In Tariff: Wood Cord: Fixed (USD),Feed-In Tariff: Wood Cord: Energy (USD),Feed-In Tariff: Wood Cord: Total (USD),Feed-In Tariff: Wood Pellets: Fixed (USD),Feed-In Tariff: Wood Pellets: Energy (USD),Feed-In Tariff: Wood Pellets: Total (USD),Feed-In Tariff: Coal: Fixed (USD),Feed-In Tariff: Coal: Energy (USD),Feed-In Tariff: Coal: Total (USD) -base-appliances-coal.xml,1627.17,144.0,1107.24,0.0,1251.24,144.0,158.94,302.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.99,72.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier-ief-portable.xml,1371.09,144.0,1072.11,0.0,1216.11,144.0,10.98,154.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier-ief-whole-home.xml,1372.53,144.0,1073.74,0.0,1217.74,144.0,10.79,154.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier-multiple.xml,1369.15,144.0,1069.6,0.0,1213.6,144.0,11.55,155.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier.xml,1370.33,144.0,1071.48,0.0,1215.48,144.0,10.85,154.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-gas.xml,1589.07,144.0,1107.24,0.0,1251.24,144.0,193.83,337.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-modified.xml,1675.41,144.0,1229.92,0.0,1373.92,144.0,157.49,301.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-none.xml,1410.99,144.0,945.38,0.0,1089.38,144.0,177.61,321.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-oil-location-miami-fl.xml,1718.5,144.0,1457.23,0.0,1601.23,0.0,0.0,0.0,0.0,117.27,117.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-oil.xml,1676.54,144.0,1107.24,0.0,1251.24,144.0,158.94,302.94,0.0,122.36,122.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-propane-location-portland-or.xml,1489.07,144.0,886.74,0.0,1030.74,144.0,171.14,315.14,0.0,0.0,0.0,0.0,143.19,143.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-propane.xml,1684.5,144.0,1107.24,0.0,1251.24,144.0,158.94,302.94,0.0,0.0,0.0,0.0,130.32,130.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-wood.xml,1627.17,144.0,1107.24,0.0,1251.24,144.0,158.94,302.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.99,72.99,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-cathedral.xml,1668.28,144.0,1191.51,0.0,1335.51,144.0,188.77,332.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-conditioned.xml,1836.16,144.0,1358.07,0.0,1502.07,144.0,190.09,334.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-flat.xml,1599.95,144.0,1169.15,0.0,1313.15,144.0,142.8,286.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-radiant-barrier.xml,1392.12,144.0,1069.08,0.0,1213.08,144.0,35.04,179.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-unvented-insulated-roof.xml,1622.21,144.0,1174.38,0.0,1318.38,144.0,159.83,303.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-vented.xml,1636.06,144.0,1185.75,0.0,1329.75,144.0,162.31,306.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-battery-scheduled.xml,1704.83,144.0,1253.13,0.0,1397.13,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-battery.xml,1648.84,144.0,1197.14,0.0,1341.14,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-2stories.xml,1562.05,144.0,1151.78,0.0,1295.78,144.0,122.27,266.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-atticroof-cathedral.xml,1964.16,144.0,1239.87,0.0,1383.87,144.0,436.29,580.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-infil-compartmentalization-test.xml,1376.56,144.0,996.97,0.0,1140.97,144.0,91.59,235.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached.xml,1376.56,144.0,996.97,0.0,1140.97,144.0,91.59,235.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,1199.03,144.0,826.35,0.0,970.35,144.0,84.68,228.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-multiple.xml,1176.26,144.0,841.01,0.0,985.01,144.0,47.25,191.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,1293.63,144.0,826.53,0.0,970.53,144.0,179.1,323.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,1119.59,144.0,821.82,0.0,965.82,144.0,9.77,153.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,1136.08,144.0,840.08,0.0,984.08,144.0,8.0,152.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-infil-compartmentalization-test.xml,1167.28,144.0,875.29,0.0,1019.29,144.0,3.99,147.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-residents-1.xml,916.58,144.0,619.24,0.0,763.24,144.0,9.34,153.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,1182.01,144.0,889.0,0.0,1033.0,144.0,5.01,149.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,1205.91,144.0,912.56,0.0,1056.56,144.0,5.35,149.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,1192.45,144.0,899.7,0.0,1043.7,144.0,4.75,148.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,1366.77,144.0,1074.87,0.0,1218.87,144.0,3.9,147.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1198.43,144.0,906.53,0.0,1050.53,144.0,3.9,147.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,1048.54,144.0,756.37,0.0,900.37,144.0,4.17,148.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,1049.52,144.0,757.07,0.0,901.07,144.0,4.45,148.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,1049.51,144.0,757.54,0.0,901.54,144.0,3.97,147.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,1049.58,144.0,757.62,0.0,901.62,144.0,3.96,147.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,1048.57,144.0,757.32,0.0,901.32,144.0,3.25,147.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,1031.42,144.0,887.42,0.0,1031.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,1054.02,144.0,910.02,0.0,1054.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1040.54,144.0,896.54,0.0,1040.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1214.92,144.0,1070.92,0.0,1214.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1047.71,144.0,903.71,0.0,1047.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-generator.xml,1545.52,144.0,873.25,0.0,1017.25,144.0,4.85,148.85,0.0,0.0,0.0,0.0,379.42,379.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,1075.4,144.0,931.4,0.0,1075.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,950.2,144.0,553.02,0.0,697.02,144.0,109.18,253.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-laundry-room.xml,930.16,144.0,546.72,0.0,690.72,144.0,95.44,239.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,1456.89,144.0,1023.58,0.0,1167.58,144.0,145.31,289.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,1236.98,144.0,910.5,0.0,1054.5,144.0,38.48,182.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-mechvent.xml,1221.69,144.0,906.36,0.0,1050.36,144.0,27.33,171.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-pv.xml,351.97,144.0,873.25,-814.13,203.12,144.0,4.85,148.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,967.67,144.0,583.81,0.0,727.81,144.0,95.86,239.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-water-heater.xml,931.17,144.0,547.31,0.0,691.31,144.0,95.86,239.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily.xml,1166.1,144.0,873.25,0.0,1017.25,144.0,4.85,148.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-combi-tankless-outside.xml,1219.08,144.0,713.53,0.0,857.53,144.0,217.55,361.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-combi-tankless.xml,1227.99,144.0,713.85,0.0,857.85,144.0,226.14,370.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-2-speed.xml,1213.75,144.0,1069.75,0.0,1213.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-gshp.xml,1387.61,144.0,1243.61,0.0,1387.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-hpwh.xml,1472.89,144.0,988.81,0.0,1132.81,144.0,196.08,340.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-tankless.xml,1268.63,144.0,1124.63,0.0,1268.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-var-speed.xml,1189.31,144.0,1045.31,0.0,1189.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater.xml,1269.29,144.0,1125.29,0.0,1269.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-dwhr.xml,1574.23,144.0,1122.53,0.0,1266.53,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-detailed-setpoints.xml,1238.92,144.0,713.47,0.0,857.47,144.0,237.45,381.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-outside.xml,1250.17,144.0,713.53,0.0,857.53,144.0,248.64,392.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-standbyloss.xml,1241.58,144.0,713.42,0.0,857.42,144.0,240.16,384.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-with-solar-fraction.xml,1183.34,144.0,713.72,0.0,857.72,144.0,181.62,325.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect.xml,1239.94,144.0,713.48,0.0,857.48,144.0,238.46,382.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-electric.xml,1639.53,144.0,1186.27,0.0,1330.27,144.0,165.26,309.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-gas.xml,1454.77,144.0,895.43,0.0,1039.43,144.0,271.34,415.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-hpwh.xml,1468.51,144.0,984.36,0.0,1128.36,144.0,196.15,340.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-indirect.xml,1238.54,144.0,713.54,0.0,857.54,144.0,237.0,381.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-low-flow-fixtures.xml,1636.59,144.0,1184.89,0.0,1328.89,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-multiple.xml,1238.92,144.0,778.47,0.0,922.47,144.0,172.45,316.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-none.xml,1268.92,144.0,817.45,0.0,961.45,144.0,163.47,307.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-demand.xml,1647.16,144.0,1195.46,0.0,1339.46,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-manual.xml,1632.95,144.0,1181.25,0.0,1325.25,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-nocontrol.xml,2145.0,144.0,1693.3,0.0,1837.3,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-temperature.xml,1981.48,144.0,1529.78,0.0,1673.78,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-timer.xml,2145.0,144.0,1693.3,0.0,1837.3,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-direct-evacuated-tube.xml,1454.01,144.0,1002.31,0.0,1146.31,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-direct-flat-plate.xml,1404.96,144.0,953.33,0.0,1097.33,144.0,163.63,307.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-direct-ics.xml,1455.94,144.0,1004.24,0.0,1148.24,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-fraction.xml,1451.24,144.0,997.59,0.0,1141.59,144.0,165.65,309.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-indirect-flat-plate.xml,1405.3,144.0,956.21,0.0,1100.21,144.0,161.09,305.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-thermosyphon-flat-plate.xml,1395.68,144.0,944.05,0.0,1088.05,144.0,163.63,307.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-coal.xml,1582.54,144.0,897.21,0.0,1041.21,144.0,165.27,309.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,232.06,232.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-detailed-setpoints.xml,1648.43,144.0,1196.78,0.0,1340.78,144.0,163.65,307.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-elec-uef.xml,1651.08,144.0,1199.76,0.0,1343.76,144.0,163.32,307.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas-outside.xml,1468.19,144.0,890.11,0.0,1034.11,144.0,290.08,434.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas-uef-fhr.xml,1458.1,144.0,895.96,0.0,1039.96,144.0,274.14,418.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas-uef.xml,1458.1,144.0,895.96,0.0,1039.96,144.0,274.14,418.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas.xml,1461.41,144.0,897.21,0.0,1041.21,144.0,276.2,420.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-detailed-schedules.xml,1445.56,144.0,955.58,0.0,1099.58,144.0,201.98,345.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1440.05,144.0,949.81,0.0,1093.81,144.0,202.24,346.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-outside.xml,1572.0,144.0,1117.3,0.0,1261.3,144.0,166.7,310.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-uef.xml,1440.05,144.0,949.81,0.0,1093.81,144.0,202.24,346.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,1391.2,144.0,926.56,0.0,1070.56,144.0,176.64,320.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-with-solar.xml,1404.14,144.0,947.2,0.0,1091.2,144.0,168.94,312.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump.xml,1472.61,144.0,989.0,0.0,1133.0,144.0,195.61,339.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1643.65,144.0,1185.12,0.0,1329.12,144.0,170.53,314.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-model-type-stratified.xml,1635.5,144.0,1181.26,0.0,1325.26,144.0,166.24,310.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-oil.xml,1739.51,144.0,897.21,0.0,1041.21,144.0,165.27,309.27,0.0,389.03,389.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-wood.xml,1582.54,144.0,897.21,0.0,1041.21,144.0,165.27,309.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,232.06,232.06,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-detailed-setpoints.xml,1426.31,144.0,890.11,0.0,1034.11,144.0,248.2,392.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-electric-outside.xml,1658.99,144.0,1204.29,0.0,1348.29,144.0,166.7,310.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-electric-uef.xml,1655.44,144.0,1200.74,0.0,1344.74,144.0,166.7,310.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-electric.xml,1658.99,144.0,1204.29,0.0,1348.29,144.0,166.7,310.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas-uef.xml,1415.29,144.0,890.11,0.0,1034.11,144.0,237.18,381.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas-with-solar-fraction.xml,1373.39,144.0,890.11,0.0,1034.11,144.0,195.28,339.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas-with-solar.xml,1368.28,144.0,904.42,0.0,1048.42,144.0,175.86,319.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas.xml,1426.48,144.0,890.11,0.0,1034.11,144.0,248.37,392.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-propane.xml,1649.87,144.0,890.11,0.0,1034.11,144.0,166.7,310.7,0.0,0.0,0.0,0.0,305.06,305.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-2stories-garage.xml,1832.39,144.0,1361.24,0.0,1505.24,144.0,183.15,327.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-2stories.xml,1976.86,144.0,1471.25,0.0,1615.25,144.0,217.61,361.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-1.xml,1483.82,144.0,1017.73,0.0,1161.73,144.0,178.09,322.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-2.xml,1567.5,144.0,1108.62,0.0,1252.62,144.0,170.88,314.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-4.xml,1729.09,144.0,1284.5,0.0,1428.5,144.0,156.59,300.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-5.xml,1808.87,144.0,1371.31,0.0,1515.31,144.0,149.56,293.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-ceilingtypes.xml,1778.25,144.0,1214.66,0.0,1358.66,144.0,275.59,419.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-floortypes.xml,1519.3,144.0,980.3,0.0,1124.3,144.0,251.0,395.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-garage.xml,1616.06,144.0,1152.66,0.0,1296.66,144.0,175.4,319.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-ach-house-pressure.xml,1648.72,144.0,1197.14,0.0,1341.14,144.0,163.58,307.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-cfm-house-pressure.xml,1648.72,144.0,1197.14,0.0,1341.14,144.0,163.58,307.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-cfm50.xml,1648.84,144.0,1197.14,0.0,1341.14,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-ela.xml,1704.0,144.0,1197.66,0.0,1341.66,144.0,218.34,362.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-flue.xml,1658.98,144.0,1197.12,0.0,1341.12,144.0,173.86,317.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-natural-ach.xml,1704.0,144.0,1197.66,0.0,1341.66,144.0,218.34,362.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-natural-cfm.xml,1704.0,144.0,1197.66,0.0,1341.66,144.0,218.34,362.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-orientations.xml,1649.83,144.0,1196.34,0.0,1340.34,144.0,165.49,309.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-overhangs.xml,1647.39,144.0,1192.41,0.0,1336.41,144.0,166.98,310.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-rooftypes.xml,1644.01,144.0,1191.68,0.0,1335.68,144.0,164.33,308.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-skylights-physical-properties.xml,1695.49,144.0,1233.73,0.0,1377.73,144.0,173.76,317.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-skylights-shading.xml,1672.7,144.0,1225.25,0.0,1369.25,144.0,159.45,303.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-skylights-storms.xml,1672.11,144.0,1222.24,0.0,1366.24,144.0,161.87,305.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-skylights.xml,1672.92,144.0,1225.57,0.0,1369.57,144.0,159.35,303.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-split-level.xml,1349.64,144.0,980.57,0.0,1124.57,144.0,81.07,225.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-thermal-mass.xml,1646.24,144.0,1195.61,0.0,1339.61,144.0,162.63,306.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-walltypes.xml,1734.86,144.0,1158.33,0.0,1302.33,144.0,288.53,432.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-natural-ventilation-availability.xml,1616.71,144.0,1164.5,0.0,1308.5,144.0,164.21,308.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-none.xml,1599.11,144.0,1132.77,0.0,1276.77,144.0,178.34,322.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-physical-properties.xml,1707.89,144.0,1201.04,0.0,1345.04,144.0,218.85,362.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-shading-seasons.xml,1647.37,144.0,1197.54,0.0,1341.54,144.0,161.83,305.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-shading.xml,1590.69,144.0,1118.71,0.0,1262.71,144.0,183.98,327.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-storms.xml,1640.51,144.0,1177.87,0.0,1321.87,144.0,174.64,318.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-ambient.xml,1421.13,144.0,1009.54,0.0,1153.54,144.0,123.59,267.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-basement-garage.xml,1521.03,144.0,1087.91,0.0,1231.91,144.0,145.12,289.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-complex.xml,1725.64,144.0,1231.23,0.0,1375.23,144.0,206.41,350.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-basement-slab-insulation.xml,1646.2,144.0,1204.03,0.0,1348.03,144.0,154.17,298.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-basement-wall-insulation.xml,1627.83,144.0,1181.78,0.0,1325.78,144.0,158.05,302.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-crawlspace.xml,1384.2,144.0,963.85,0.0,1107.85,144.0,132.35,276.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-multiple.xml,1370.68,144.0,989.24,0.0,1133.24,144.0,93.44,237.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-slab.xml,1340.08,144.0,975.68,0.0,1119.68,144.0,76.4,220.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement-above-grade.xml,1383.1,144.0,994.09,0.0,1138.09,144.0,101.01,245.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement-assembly-r.xml,1347.53,144.0,973.83,0.0,1117.83,144.0,85.7,229.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement-wall-insulation.xml,1395.49,144.0,964.12,0.0,1108.12,144.0,143.37,287.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement.xml,1372.03,144.0,990.24,0.0,1134.24,144.0,93.79,237.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unvented-crawlspace.xml,1358.78,144.0,993.41,0.0,1137.41,144.0,77.37,221.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-vented-crawlspace.xml,1371.34,144.0,991.63,0.0,1135.63,144.0,91.71,235.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-walkout-basement.xml,1680.8,144.0,1210.06,0.0,1354.06,144.0,182.74,326.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,1670.47,144.0,1526.47,0.0,1670.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1303.23,144.0,1159.23,0.0,1303.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1670.47,144.0,1526.47,0.0,1670.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1547.29,144.0,1403.29,0.0,1547.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1668.66,144.0,1524.66,0.0,1668.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1672.47,144.0,1528.47,0.0,1672.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed.xml,1670.47,144.0,1526.47,0.0,1670.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-2-speed.xml,1519.16,144.0,1375.16,0.0,1519.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1680.7,144.0,1285.89,0.0,1429.89,144.0,106.81,250.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1674.99,144.0,1247.53,0.0,1391.53,144.0,139.46,283.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1683.88,144.0,1289.04,0.0,1433.04,144.0,106.84,250.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1688.7,144.0,1294.63,0.0,1438.63,144.0,106.07,250.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed.xml,1510.26,144.0,1366.26,0.0,1510.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,1320.61,144.0,1176.61,0.0,1320.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,1565.62,144.0,1421.62,0.0,1565.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,1739.17,144.0,1595.17,0.0,1739.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1682.2,144.0,1538.2,0.0,1682.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml,1729.62,144.0,1585.62,0.0,1729.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1636.74,144.0,1492.74,0.0,1636.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,1566.45,144.0,1422.45,0.0,1566.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,1528.96,144.0,1384.96,0.0,1528.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,1497.04,144.0,1353.04,0.0,1497.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,1638.16,144.0,1253.13,0.0,1397.13,144.0,97.03,241.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,1667.64,144.0,1259.99,0.0,1403.99,144.0,119.65,263.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,1537.76,144.0,1393.76,0.0,1537.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,1515.42,144.0,1371.42,0.0,1515.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,1505.87,144.0,1361.87,0.0,1505.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-elec-only.xml,1748.19,144.0,1604.19,0.0,1748.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,1636.51,144.0,1213.25,0.0,1357.25,144.0,135.26,279.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-gas-only.xml,1442.43,144.0,1020.52,0.0,1164.52,144.0,133.91,277.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-central-ac-only-1-speed.xml,1346.5,144.0,1202.5,0.0,1346.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-central-ac-only-2-speed.xml,1290.52,144.0,1146.52,0.0,1290.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-central-ac-only-var-speed.xml,1268.22,144.0,1124.22,0.0,1268.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,1761.87,144.0,1617.87,0.0,1761.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,1764.11,144.0,1363.77,0.0,1507.77,144.0,112.34,256.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1749.42,144.0,1355.45,0.0,1499.45,144.0,105.97,249.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1749.42,144.0,1355.45,0.0,1499.45,144.0,105.97,249.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,1567.55,144.0,1195.86,0.0,1339.86,144.0,83.69,227.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,1567.55,144.0,1195.86,0.0,1339.86,144.0,83.69,227.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-elec-resistance-only.xml,1704.68,144.0,1560.68,0.0,1704.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-evap-cooler-furnace-gas.xml,1530.06,144.0,1067.18,0.0,1211.18,144.0,174.88,318.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-floor-furnace-propane-only.xml,1742.99,144.0,1012.95,0.0,1156.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,586.04,586.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-elec-only.xml,1932.76,144.0,1788.76,0.0,1932.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,1619.53,144.0,1160.98,0.0,1304.98,144.0,170.55,314.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1597.72,144.0,1139.31,0.0,1283.31,144.0,170.41,314.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-only.xml,1494.97,144.0,1033.82,0.0,1177.82,144.0,173.15,317.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-room-ac.xml,1665.9,144.0,1203.02,0.0,1347.02,144.0,174.88,318.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1287.0,144.0,1143.0,0.0,1287.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1366.77,144.0,1222.77,0.0,1366.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1476.2,144.0,1332.2,0.0,1476.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1462.01,144.0,1318.01,0.0,1462.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1462.01,144.0,1318.01,0.0,1462.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,1265.67,144.0,1121.67,0.0,1265.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,1241.94,144.0,1097.94,0.0,1241.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,1363.66,144.0,1219.66,0.0,1363.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,1462.81,144.0,1318.81,0.0,1462.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,1440.76,144.0,1296.76,0.0,1440.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,1423.08,144.0,1279.08,0.0,1423.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,1401.46,144.0,1257.46,0.0,1401.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,1639.68,144.0,1185.88,0.0,1329.88,0.0,0.0,0.0,0.0,309.8,309.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ptac-with-heating.xml,1844.65,144.0,1700.65,0.0,1844.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ptac.xml,1289.24,144.0,1145.24,0.0,1289.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,1528.19,144.0,1384.19,0.0,1528.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,1532.21,144.0,1388.21,0.0,1532.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,1549.91,144.0,1405.91,0.0,1549.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-only.xml,1322.9,144.0,1178.9,0.0,1322.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-with-heating.xml,1879.23,144.0,1735.23,0.0,1879.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,1528.19,144.0,1384.19,0.0,1528.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,1532.21,144.0,1388.21,0.0,1532.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,1549.91,144.0,1405.91,0.0,1549.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-sizing-controls.xml,1765.06,144.0,1428.97,0.0,1572.97,144.0,48.09,192.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-stove-oil-only.xml,1707.39,144.0,1016.36,0.0,1160.36,0.0,0.0,0.0,0.0,547.03,547.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-wall-furnace-elec-only.xml,1715.84,144.0,1571.84,0.0,1715.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize.xml,1664.48,144.0,1205.66,0.0,1349.66,144.0,170.82,314.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-coal-only.xml,1456.33,144.0,1021.0,0.0,1165.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,291.33,291.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-elec-only.xml,1771.72,144.0,1627.72,0.0,1771.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-gas-central-ac-1-speed.xml,1633.46,144.0,1204.14,0.0,1348.14,144.0,141.32,285.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-gas-only-pilot.xml,1481.48,144.0,1017.84,0.0,1161.84,144.0,175.64,319.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-gas-only.xml,1445.74,144.0,1017.84,0.0,1161.84,144.0,139.9,283.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-oil-only.xml,1653.4,144.0,1021.0,0.0,1165.0,0.0,0.0,0.0,0.0,488.4,488.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-propane-only.xml,1684.23,144.0,1017.11,0.0,1161.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,523.12,523.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-wood-only.xml,1454.09,144.0,1017.11,0.0,1161.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,292.98,292.98,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-only-1-speed-seer2.xml,1339.68,144.0,1195.68,0.0,1339.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-only-1-speed.xml,1340.19,144.0,1196.19,0.0,1340.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-only-2-speed.xml,1285.57,144.0,1141.57,0.0,1285.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-only-var-speed.xml,1262.52,144.0,1118.52,0.0,1262.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1737.03,144.0,1593.03,0.0,1737.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-crankcase-heater-40w.xml,1644.1,144.0,1192.4,0.0,1336.4,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1754.74,144.0,1389.81,0.0,1533.81,144.0,76.93,220.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1747.95,144.0,1355.73,0.0,1499.73,144.0,104.22,248.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1644.43,144.0,1249.33,0.0,1393.33,144.0,107.1,251.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1653.51,144.0,1260.92,0.0,1404.92,144.0,104.59,248.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1573.19,144.0,1204.46,0.0,1348.46,144.0,80.73,224.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-area-fractions.xml,2176.63,144.0,1550.68,0.0,1694.68,144.0,337.95,481.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-area-multipliers.xml,1639.89,144.0,1192.9,0.0,1336.9,144.0,158.99,302.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-buried.xml,1621.6,144.0,1184.86,0.0,1328.86,144.0,148.74,292.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-effective-rvalue.xml,1648.79,144.0,1197.12,0.0,1341.12,144.0,163.67,307.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-leakage-cfm50.xml,1641.72,144.0,1193.4,0.0,1337.4,144.0,160.32,304.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-leakage-percent.xml,1662.89,144.0,1203.75,0.0,1347.75,144.0,171.14,315.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-elec-resistance-only.xml,1704.68,144.0,1560.68,0.0,1704.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-evap-cooler-furnace-gas.xml,1517.24,144.0,1061.15,0.0,1205.15,144.0,168.09,312.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-evap-cooler-only-ducted.xml,1188.39,144.0,1044.39,0.0,1188.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-evap-cooler-only.xml,1185.61,144.0,1041.61,0.0,1185.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-fireplace-wood-only.xml,1485.17,144.0,1012.95,0.0,1156.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,328.22,328.22,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-fixed-heater-gas-only.xml,1418.86,144.0,1012.92,0.0,1156.92,144.0,117.94,261.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,1875.95,144.0,1012.95,0.0,1156.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,719.0,719.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-floor-furnace-propane-only.xml,1742.99,144.0,1012.95,0.0,1156.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,586.04,586.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-coal-only.xml,1525.16,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-elec-central-ac-1-speed.xml,2040.6,144.0,1896.6,0.0,2040.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-elec-only.xml,1902.59,144.0,1758.59,0.0,1902.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-central-ac-2-speed.xml,1605.2,144.0,1153.5,0.0,1297.5,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-central-ac-var-speed.xml,1583.36,144.0,1131.67,0.0,1275.67,144.0,163.69,307.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,1364.02,144.0,1020.91,0.0,1164.91,144.0,55.11,199.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only-pilot.xml,1522.56,144.0,1033.01,0.0,1177.01,144.0,201.55,345.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only.xml,1487.42,144.0,1033.01,0.0,1177.01,144.0,166.41,310.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-room-ac.xml,1668.06,144.0,1211.97,0.0,1355.97,144.0,168.09,312.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-oil-only.xml,1760.65,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,583.64,583.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-propane-only.xml,1798.62,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,621.61,621.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-wood-only.xml,1525.16,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.15,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1270.71,144.0,1126.71,0.0,1270.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1361.93,144.0,1217.93,0.0,1361.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1461.26,144.0,1317.26,0.0,1461.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1774.69,144.0,1630.69,0.0,1774.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1604.26,144.0,1460.26,0.0,1604.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1587.1,144.0,1443.1,0.0,1587.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1683.26,144.0,1222.93,0.0,1366.93,144.0,172.33,316.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1632.51,144.0,1172.18,0.0,1316.18,144.0,172.33,316.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1611.04,144.0,1150.71,0.0,1294.71,144.0,172.33,316.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-only.xml,1493.87,144.0,1028.54,0.0,1172.54,144.0,177.33,321.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,1522.01,144.0,1378.01,0.0,1522.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1276.65,144.0,1132.65,0.0,1276.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1498.26,144.0,1354.26,0.0,1498.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,1255.32,144.0,1111.32,0.0,1255.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,1250.66,144.0,1106.66,0.0,1250.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1232.78,144.0,1088.78,0.0,1232.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1347.36,144.0,1203.36,0.0,1347.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted.xml,1425.35,144.0,1281.35,0.0,1425.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1411.48,144.0,1267.48,0.0,1411.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1540.19,144.0,1187.77,0.0,1331.77,144.0,64.42,208.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1639.43,144.0,1184.52,0.0,1328.52,0.0,0.0,0.0,0.0,310.91,310.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1397.25,144.0,1253.25,0.0,1397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless.xml,1397.25,144.0,1253.25,0.0,1397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-multiple.xml,2257.9,144.0,1729.32,0.0,1873.32,144.0,51.35,195.35,0.0,90.6,90.6,0.0,98.63,98.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-none.xml,1959.67,144.0,1815.67,0.0,1959.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-portable-heater-gas-only.xml,1418.86,144.0,1012.92,0.0,1156.92,144.0,117.94,261.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac-with-heating-electricity.xml,1852.42,144.0,1708.42,0.0,1852.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac-with-heating-natural-gas.xml,1592.0,144.0,1155.08,0.0,1299.08,144.0,148.92,292.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac.xml,1296.73,144.0,1152.73,0.0,1296.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-pthp-heating-capacity-17f.xml,1542.37,144.0,1398.37,0.0,1542.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-pthp.xml,1542.37,144.0,1398.37,0.0,1542.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only-33percent.xml,1219.49,144.0,1075.49,0.0,1219.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only-ceer.xml,1332.65,144.0,1188.65,0.0,1332.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only-detailed-setpoints.xml,1291.08,144.0,1147.08,0.0,1291.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only.xml,1332.32,144.0,1188.32,0.0,1332.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-with-heating.xml,1889.01,144.0,1745.01,0.0,1889.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-with-reverse-cycle.xml,1542.37,144.0,1398.37,0.0,1542.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-seasons.xml,1646.17,144.0,1195.7,0.0,1339.7,144.0,162.47,306.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints-daily-schedules.xml,1624.03,144.0,1176.79,0.0,1320.79,144.0,159.24,303.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints-daily-setbacks.xml,1623.73,144.0,1181.79,0.0,1325.79,144.0,153.94,297.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints.xml,1477.87,144.0,1136.02,0.0,1280.02,144.0,53.85,197.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-stove-oil-only.xml,1707.32,144.0,1015.15,0.0,1159.15,0.0,0.0,0.0,0.0,548.17,548.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-stove-wood-pellets-only.xml,1486.14,144.0,1015.15,0.0,1159.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,326.99,326.99,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,1619.32,144.0,1182.77,0.0,1326.77,144.0,148.55,292.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-undersized.xml,1503.12,144.0,1103.54,0.0,1247.54,144.0,111.58,255.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-wall-furnace-elec-only.xml,1715.84,144.0,1571.84,0.0,1715.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-ceiling-fans.xml,1661.61,144.0,1210.06,0.0,1354.06,144.0,163.55,307.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-holiday.xml,1655.48,144.0,1203.78,0.0,1347.78,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-kwh-per-year.xml,1673.96,144.0,1224.93,0.0,1368.93,144.0,161.03,305.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-mixed.xml,1654.75,144.0,1203.05,0.0,1347.05,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-none-ceiling-fans.xml,1508.7,144.0,1037.09,0.0,1181.09,144.0,183.61,327.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-none.xml,1495.84,144.0,1024.08,0.0,1168.08,144.0,183.76,327.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-AMY-2012.xml,1682.17,144.0,1160.86,0.0,1304.86,144.0,233.31,377.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-baltimore-md.xml,1439.98,144.0,1050.43,0.0,1194.43,144.0,101.55,245.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-capetown-zaf.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-dallas-tx.xml,1353.05,144.0,1050.38,0.0,1194.38,144.0,14.67,158.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-duluth-mn.xml,1587.83,144.0,1043.28,0.0,1187.28,144.0,256.55,400.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-helena-mt.xml,1596.01,144.0,1016.95,0.0,1160.95,144.0,291.06,435.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-honolulu-hi.xml,3474.08,144.0,3330.08,0.0,3474.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-miami-fl.xml,1277.33,144.0,1133.33,0.0,1277.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-phoenix-az.xml,1578.17,144.0,1290.16,0.0,1434.16,144.0,0.01,144.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-portland-or.xml,1190.77,144.0,822.45,0.0,966.45,144.0,80.32,224.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-balanced.xml,1850.66,144.0,1258.54,0.0,1402.54,144.0,304.12,448.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-bath-kitchen-fans.xml,1664.05,144.0,1200.21,0.0,1344.21,144.0,175.84,319.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-airflow-fraction-zero.xml,1800.16,144.0,1255.13,0.0,1399.13,144.0,257.03,401.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-evap-cooler-only-ducted.xml,1281.24,144.0,1137.24,0.0,1281.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,1744.87,144.0,1210.36,0.0,1354.36,144.0,246.51,390.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-supplemental-fan-supply.xml,1761.08,144.0,1211.33,0.0,1355.33,144.0,261.75,405.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis.xml,1806.81,144.0,1252.9,0.0,1396.9,144.0,265.91,409.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-erv-atre-asre.xml,1746.69,144.0,1259.32,0.0,1403.32,144.0,199.37,343.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-erv.xml,1746.72,144.0,1259.32,0.0,1403.32,144.0,199.4,343.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-exhaust-rated-flow-rate.xml,1782.9,144.0,1225.02,0.0,1369.02,144.0,269.88,413.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-exhaust.xml,1782.9,144.0,1225.02,0.0,1369.02,144.0,269.88,413.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-hrv-asre.xml,1746.79,144.0,1259.43,0.0,1403.43,144.0,199.36,343.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-hrv.xml,1746.81,144.0,1259.43,0.0,1403.43,144.0,199.38,343.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-multiple.xml,1871.86,144.0,1274.34,0.0,1418.34,144.0,309.52,453.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-supply.xml,1774.58,144.0,1227.41,0.0,1371.41,144.0,259.17,403.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-whole-house-fan.xml,1595.78,144.0,1142.79,0.0,1286.79,144.0,164.99,308.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-additional-properties.xml,1648.84,144.0,1197.14,0.0,1341.14,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-none.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv-detailed-only.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,688.56,108.0,1261.65,-988.78,380.86,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,607.26,108.0,783.24,-591.68,299.56,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,604.02,108.0,751.38,-563.06,296.32,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,567.68,108.0,707.18,-555.2,259.98,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv-mixed.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753.5,144.0,1197.14,-895.34,445.8,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,688.56,108.0,1261.65,-988.78,380.86,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629.51,465.0,1264.29,-1482.92,246.37,132.0,251.14,383.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.55,465.0,1264.29,-2013.87,-284.59,132.0,251.14,383.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-324.27,210.0,1264.29,-2181.7,-707.41,132.0,251.14,383.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,1803.43,144.0,1264.29,0.0,1408.29,144.0,251.14,395.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-defaults.xml,920.8,144.0,1048.47,-647.6,544.87,144.0,231.93,375.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-emissions.xml,779.45,144.0,1222.99,-895.24,471.75,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators-battery-scheduled.xml,1979.51,144.0,1253.13,0.0,1397.13,144.0,224.64,368.64,0.0,213.74,213.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators-battery.xml,1923.52,144.0,1197.14,0.0,1341.14,144.0,224.64,368.64,0.0,213.74,213.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators.xml,1923.52,144.0,1197.14,0.0,1341.14,144.0,224.64,368.64,0.0,213.74,213.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-ground-conductivity.xml,1630.12,144.0,1194.48,0.0,1338.48,144.0,147.64,291.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-loads-large-uncommon.xml,3218.63,144.0,2277.73,0.0,2421.73,144.0,503.53,647.53,0.0,0.0,0.0,0.0,66.93,66.93,0.0,82.44,82.44,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-loads-large-uncommon2.xml,2738.09,144.0,2159.54,0.0,2303.54,144.0,145.27,289.27,0.0,62.84,62.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.44,82.44,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-loads-none.xml,1317.81,144.0,822.91,0.0,966.91,144.0,206.9,350.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,1148.64,144.0,854.3,0.0,998.3,144.0,6.34,150.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-neighbor-shading.xml,1660.76,144.0,1186.14,0.0,1330.14,144.0,186.62,330.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-shielding-of-home.xml,1649.98,144.0,1201.76,0.0,1345.76,144.0,160.22,304.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-usage-multiplier.xml,2605.29,144.0,1690.79,0.0,1834.79,144.0,492.06,636.06,0.0,0.0,0.0,0.0,60.24,60.24,0.0,74.2,74.2,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-ah.xml,779.45,144.0,1222.99,-895.24,471.75,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-garage.xml,748.55,144.0,1180.31,-895.23,429.07,144.0,175.48,319.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-round-trip-efficiency.xml,817.09,144.0,1260.64,-895.25,509.39,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-scheduled.xml,810.2,144.0,1253.13,-894.63,502.5,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery.xml,779.45,144.0,1222.99,-895.24,471.75,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators-battery-scheduled.xml,812.18,144.0,1253.13,-1167.33,229.8,144.0,224.64,368.64,0.0,213.74,213.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators-battery.xml,782.26,144.0,1223.82,-1167.94,199.88,144.0,224.64,368.64,0.0,213.74,213.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators.xml,755.48,144.0,1197.14,-1168.04,173.1,144.0,224.64,368.64,0.0,213.74,213.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv.xml,753.5,144.0,1197.14,-895.34,445.8,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-0-runperiod-1-month.xml,74.66,0.0,14.35,0.0,14.35,0.0,60.31,60.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-0.xml,778.4,144.0,241.7,0.0,385.7,144.0,248.7,392.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1-misc-loads-large-uncommon.xml,2467.6,144.0,1731.43,0.0,1875.43,144.0,298.84,442.84,0.0,0.0,0.0,0.0,69.87,69.87,0.0,79.46,79.46,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1-misc-loads-large-uncommon2.xml,2248.99,144.0,1650.65,0.0,1794.65,144.0,165.28,309.28,0.0,65.6,65.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.46,79.46,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1.xml,1411.62,144.0,944.7,0.0,1088.7,144.0,178.92,322.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-5.xml,1162.01,144.0,1332.86,-674.31,802.55,144.0,215.46,359.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-all-10-mins.xml,1664.99,144.0,1205.26,0.0,1349.26,144.0,171.73,315.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,1658.69,144.0,1202.52,0.0,1346.52,144.0,168.17,312.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,1401.49,144.0,1007.48,0.0,1151.48,144.0,106.01,250.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,778.4,144.0,241.7,0.0,385.7,144.0,248.7,392.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,1511.38,144.0,1027.18,0.0,1171.18,144.0,196.2,340.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic.xml,1657.06,144.0,1201.07,0.0,1345.07,144.0,167.99,311.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints-daily-schedules.xml,1624.03,144.0,1176.79,0.0,1320.79,144.0,159.24,303.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints-daily-setbacks.xml,1623.73,144.0,1181.79,0.0,1325.79,144.0,153.94,297.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints.xml,1477.87,144.0,1136.02,0.0,1280.02,144.0,53.85,197.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage-natvent-available.xml,1533.43,144.0,1081.55,0.0,1225.55,144.0,163.88,307.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage-natvent-unavailable.xml,1539.0,144.0,1087.35,0.0,1231.35,144.0,163.65,307.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage.xml,1536.04,144.0,1083.28,0.0,1227.28,144.0,164.76,308.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-vacancy-year-round.xml,778.4,144.0,241.7,0.0,385.7,144.0,248.7,392.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-vacancy.xml,1503.04,144.0,1020.12,0.0,1164.12,144.0,194.92,338.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple.xml,1651.01,144.0,1198.33,0.0,1342.33,144.0,164.68,308.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-calendar-year-custom.xml,1647.89,144.0,1196.15,0.0,1340.15,144.0,163.74,307.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-daylight-saving-custom.xml,1648.84,144.0,1197.14,0.0,1341.14,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-daylight-saving-disabled.xml,1648.21,144.0,1196.61,0.0,1340.61,144.0,163.6,307.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-runperiod-1-month.xml,143.65,0.0,97.13,0.0,97.13,0.0,46.52,46.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-temperature-capacitance-multiplier.xml,1645.31,144.0,1193.65,0.0,1337.65,144.0,163.66,307.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1664.97,144.0,1205.13,0.0,1349.13,144.0,171.84,315.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1664.17,144.0,1204.83,0.0,1348.83,144.0,171.34,315.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins.xml,1656.03,144.0,1200.87,0.0,1344.87,144.0,167.16,311.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-30-mins.xml,1653.1,144.0,1199.19,0.0,1343.19,144.0,165.91,309.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base.xml,1648.84,144.0,1197.14,0.0,1341.14,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house001.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house002.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house003.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house004.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house005.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house006.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house007.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house008.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house009.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house010.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house011.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house012.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house013.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house014.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house015.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house016.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house017.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house018.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house019.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house020.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house021.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house022.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house023.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house024.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house025.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house026.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house027.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house028.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house029.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house030.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house031.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house032.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house033.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house034.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house035.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house036.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house037.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house038.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house039.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house040.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house041.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house042.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house043.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house044.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house045.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house046.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house047.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house048.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house049.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house050.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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/example_files/resources/hpxml-measures/workflow/tests/base_results/results_sizing.csv b/example_files/resources/hpxml-measures/workflow/tests/base_results/results_sizing.csv new file mode 100644 index 00000000..d31a384e --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/tests/base_results/results_sizing.csv @@ -0,0 +1,363 @@ +HPXML,HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h),HVAC Airflow: Heating (cfm),HVAC Airflow: Cooling (cfm) +denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-ACCA.xml,0.0,21309.0,0.0,0.0,886.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-HERS.xml,0.0,18787.0,0.0,0.0,781.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-MaxLoad.xml,0.0,21309.0,0.0,0.0,886.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0,723.0,953.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0,2079.0,2741.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad.xml,65909.0,0.0,31147.0,2079.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0,723.0,953.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0,2079.0,2741.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0,723.0,953.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0,2079.0,2741.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0,723.0,953.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0,2079.0,2741.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,24187.0,24187.0,31147.0,763.0,1006.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,65568.0,65568.0,31147.0,2068.0,2727.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA.xml,25917.0,25917.0,23640.0,817.0,1078.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS.xml,31147.0,31147.0,23640.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad.xml,33052.0,33052.0,23640.0,1043.0,1374.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA.xml,25917.0,25917.0,23640.0,817.0,1078.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS.xml,31147.0,31147.0,23640.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad.xml,33052.0,33052.0,23640.0,1043.0,1374.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA.xml,24037.0,24037.0,23640.0,758.0,1000.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-HERS.xml,31147.0,31147.0,23640.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-MaxLoad.xml,33052.0,33052.0,23640.0,1043.0,1374.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA.xml,25917.0,25917.0,32235.0,1529.0,1078.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS.xml,31147.0,31147.0,32235.0,1694.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad.xml,33052.0,33052.0,32235.0,1755.0,1374.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,25917.0,25917.0,31147.0,817.0,1078.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,48922.0,48922.0,31147.0,1543.0,2034.0 +denver-hvac-autosize-boiler-coal-only.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-boiler-elec-only.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-boiler-gas-central-ac-1-speed.xml,23640.0,21309.0,0.0,0.0,886.0 +denver-hvac-autosize-boiler-gas-only-pilot.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-boiler-gas-only.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-boiler-oil-only.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-boiler-propane-only.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-boiler-wood-only.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,21309.0,0.0,0.0,886.0 +denver-hvac-autosize-central-ac-only-1-speed.xml,0.0,21309.0,0.0,0.0,886.0 +denver-hvac-autosize-central-ac-only-2-speed.xml,0.0,20844.0,0.0,0.0,867.0 +denver-hvac-autosize-central-ac-only-var-speed.xml,0.0,19936.0,0.0,0.0,829.0 +denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA.xml,31147.0,21309.0,31147.0,982.0,886.0 +denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS.xml,31147.0,21309.0,31147.0,982.0,886.0 +denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad.xml,65909.0,21309.0,31147.0,2079.0,886.0 +denver-hvac-autosize-dse.xml,23640.0,15265.0,0.0,522.0,635.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0,723.0,953.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,35328.0,35328.0,31147.0,1114.0,1469.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0,723.0,953.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,35328.0,35328.0,31147.0,1114.0,1469.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,24187.0,24187.0,31147.0,763.0,1006.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,34557.0,34557.0,31147.0,1090.0,1437.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,24037.0,24037.0,31147.0,758.0,1000.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,33052.0,33052.0,31147.0,1043.0,1374.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19626.0,19626.0,26181.0,619.0,816.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,26181.0,26181.0,26181.0,826.0,1089.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,29687.0,29687.0,26181.0,936.0,1234.0 +denver-hvac-autosize-ducts-area-fractions.xml,71257.0,96895.0,0.0,1573.0,4029.0 +denver-hvac-autosize-ducts-area-multipliers.xml,31447.0,20880.0,0.0,694.0,868.0 +denver-hvac-autosize-ducts-buried.xml,28613.0,17907.0,0.0,632.0,745.0 +denver-hvac-autosize-ducts-defaults.xml,28213.0,14272.0,0.0,664.0,371.0 +denver-hvac-autosize-ducts-effective-rvalue.xml,32230.0,21305.0,0.0,712.0,886.0 +denver-hvac-autosize-ducts-leakage-cfm50.xml,34498.0,23082.0,0.0,762.0,960.0 +denver-hvac-autosize-ducts-leakage-percent.xml,32661.0,23448.0,0.0,721.0,975.0 +denver-hvac-autosize-elec-resistance-only.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-evap-cooler-furnace-gas.xml,32235.0,13458.0,0.0,712.0,2456.0 +denver-hvac-autosize-evap-cooler-only-ducted.xml,0.0,15717.0,0.0,0.0,2868.0 +denver-hvac-autosize-evap-cooler-only.xml,0.0,13458.0,0.0,0.0,2456.0 +denver-hvac-autosize-fireplace-wood-only.xml,23640.0,0.0,0.0,689.0,0.0 +denver-hvac-autosize-floor-furnace-propane-only.xml,23640.0,0.0,0.0,689.0,0.0 +denver-hvac-autosize-furnace-coal-only.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-elec-central-ac-1-speed.xml,32235.0,21309.0,0.0,712.0,886.0 +denver-hvac-autosize-furnace-elec-only.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-gas-central-ac-2-speed.xml,32235.0,20844.0,0.0,712.0,867.0 +denver-hvac-autosize-furnace-gas-central-ac-var-speed.xml,32235.0,19936.0,0.0,712.0,829.0 +denver-hvac-autosize-furnace-gas-only-detailed-setpoints.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-gas-only-pilot.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-gas-only.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-gas-room-ac.xml,32235.0,14272.0,0.0,712.0,371.0 +denver-hvac-autosize-furnace-oil-only.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-propane-only.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-wood-only.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-x3-dse.xml,23876.0,15265.0,0.0,527.0,635.0 +denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,24224.0,0.0,0.0,912.0 +denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,18787.0,0.0,0.0,708.0 +denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,24224.0,0.0,0.0,912.0 +denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0,982.0,1173.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0,1213.0,1599.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,25873.0,26950.0,31147.0,612.0,840.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,35174.0,36638.0,31147.0,832.0,1143.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,74430.0,77528.0,31147.0,1761.0,2418.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27282.0,28282.0,31147.0,645.0,882.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,35133.0,36421.0,31147.0,831.0,1136.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,73958.0,76670.0,31147.0,1750.0,2391.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,29280.0,30497.0,31147.0,693.0,951.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,35188.0,36653.0,31147.0,832.0,1143.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,55269.0,57566.0,31147.0,1307.0,1795.0 +denver-hvac-autosize-install-quality-furnace-gas-central-ac-1-speed.xml,32235.0,25066.0,0.0,534.0,782.0 +denver-hvac-autosize-install-quality-furnace-gas-central-ac-2-speed.xml,32235.0,24373.0,0.0,534.0,760.0 +denver-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,32235.0,23459.0,0.0,534.0,732.0 +denver-hvac-autosize-install-quality-furnace-gas-only.xml,32235.0,0.0,0.0,534.0,0.0 +denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,35169.0,36836.0,31147.0,832.0,1040.0 +denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,35169.0,36836.0,31147.0,832.0,1149.0 +denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,43421.0,45480.0,31147.0,1027.0,1418.0 +denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,20424.0,0.0,0.0,637.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,23855.0,24848.0,26181.0,564.0,775.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,29578.0,30810.0,26181.0,700.0,961.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,46458.0,48389.0,26181.0,1099.0,1509.0 +denver-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,17356.0,0.0,0.0,722.0 +denver-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,14282.0,0.0,0.0,476.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,17356.0,0.0,0.0,722.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,15306.0,0.0,0.0,636.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,17356.0,0.0,0.0,722.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA.xml,26181.0,0.0,26181.0,826.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS.xml,26181.0,0.0,26181.0,826.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad.xml,41122.0,0.0,26181.0,1297.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,21116.0,21116.0,26181.0,666.0,878.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,26181.0,26181.0,26181.0,826.0,1089.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,41122.0,41122.0,26181.0,1297.0,1710.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA.xml,18566.0,18566.0,23640.0,619.0,619.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0,788.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad.xml,37131.0,37131.0,23640.0,1238.0,1238.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA.xml,18566.0,18566.0,24589.0,1162.0,619.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS.xml,23640.0,23640.0,24589.0,1331.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad.xml,25086.0,25086.0,24589.0,1379.0,836.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA.xml,18566.0,18566.0,26570.0,1206.0,619.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS.xml,23640.0,23640.0,26570.0,1375.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad.xml,25086.0,25086.0,26570.0,1423.0,836.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA.xml,18566.0,18566.0,23640.0,1308.0,619.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0,1477.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad.xml,25086.0,25086.0,23640.0,1525.0,836.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-ACCA.xml,18566.0,18566.0,0.0,619.0,619.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-HERS.xml,23640.0,23640.0,0.0,788.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-MaxLoad.xml,37131.0,37131.0,0.0,1238.0,1238.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,18566.0,18566.0,0.0,619.0,619.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-HERS.xml,23640.0,23640.0,0.0,788.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-MaxLoad.xml,37131.0,37131.0,0.0,1238.0,1238.0 +denver-hvac-autosize-multiple-sizing-methodology-ACCA.xml,41122.0,28997.0,12678.0,953.0,982.0 +denver-hvac-autosize-multiple-sizing-methodology-HERS.xml,37122.0,24997.0,12678.0,824.0,858.0 +denver-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,46282.0,34157.0,12678.0,1117.0,1192.0 +denver-hvac-autosize-none.xml,0.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-ptac-with-heating-electricity.xml,23640.0,14272.0,0.0,522.0,371.0 +denver-hvac-autosize-ptac-with-heating-natural-gas.xml,23640.0,14272.0,0.0,522.0,371.0 +denver-hvac-autosize-ptac.xml,0.0,14272.0,0.0,0.0,371.0 +denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0,479.0,427.0 +denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0,689.0,615.0 +denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0,1459.0,1301.0 +denver-hvac-autosize-pthp-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0,479.0,427.0 +denver-hvac-autosize-pthp-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0,689.0,615.0 +denver-hvac-autosize-pthp-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0,1459.0,1301.0 +denver-hvac-autosize-room-ac-only-33percent.xml,0.0,4710.0,0.0,0.0,122.0 +denver-hvac-autosize-room-ac-only-ceer.xml,0.0,14272.0,0.0,0.0,371.0 +denver-hvac-autosize-room-ac-only-detailed-setpoints.xml,0.0,14272.0,0.0,0.0,371.0 +denver-hvac-autosize-room-ac-only.xml,0.0,14272.0,0.0,0.0,371.0 +denver-hvac-autosize-room-ac-with-heating.xml,23640.0,14272.0,0.0,522.0,371.0 +denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0,479.0,427.0 +denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0,689.0,615.0 +denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0,1459.0,1301.0 +denver-hvac-autosize-seasons.xml,32235.0,21309.0,0.0,712.0,886.0 +denver-hvac-autosize-setpoints-daily-schedules.xml,32235.0,21309.0,0.0,712.0,886.0 +denver-hvac-autosize-setpoints-daily-setbacks.xml,32235.0,21309.0,0.0,712.0,886.0 +denver-hvac-autosize-setpoints.xml,32235.0,21309.0,0.0,712.0,886.0 +denver-hvac-autosize-space-heater-gas-only.xml,23640.0,0.0,0.0,689.0,0.0 +denver-hvac-autosize-stove-oil-only.xml,23640.0,0.0,0.0,689.0,0.0 +denver-hvac-autosize-stove-wood-pellets-only.xml,23640.0,0.0,0.0,689.0,0.0 +denver-hvac-autosize-undersized.xml,28898.0,19717.0,0.0,638.0,820.0 +denver-hvac-autosize-wall-furnace-elec-only.xml,23640.0,0.0,0.0,689.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-ACCA.xml,0.0,27095.0,0.0,0.0,1127.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-HERS.xml,0.0,25329.0,0.0,0.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-MaxLoad.xml,0.0,27095.0,0.0,0.0,1127.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0,706.0,1127.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad.xml,24146.0,0.0,20038.0,629.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0,706.0,1127.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0,706.0,1127.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0,706.0,1127.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27339.0,27339.0,20038.0,712.0,1137.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,30431.0,30431.0,20038.0,793.0,1265.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA.xml,24475.0,24475.0,14077.0,638.0,1018.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS.xml,25329.0,25329.0,14077.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad.xml,29028.0,29028.0,14077.0,756.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA.xml,24475.0,24475.0,14077.0,638.0,1018.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS.xml,25329.0,25329.0,14077.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad.xml,29028.0,29028.0,14077.0,756.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA.xml,24475.0,24475.0,14077.0,638.0,1018.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-HERS.xml,25329.0,25329.0,14077.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-MaxLoad.xml,29028.0,29028.0,14077.0,756.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA.xml,24475.0,24475.0,21260.0,1026.0,1018.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS.xml,25329.0,25329.0,21260.0,1048.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad.xml,29028.0,29028.0,21260.0,1144.0,1207.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,24475.0,24475.0,20038.0,638.0,1018.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,29028.0,29028.0,20038.0,756.0,1207.0 +houston-hvac-autosize-boiler-coal-only.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-boiler-elec-only.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-boiler-gas-central-ac-1-speed.xml,14077.0,27095.0,0.0,0.0,1127.0 +houston-hvac-autosize-boiler-gas-only-pilot.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-boiler-gas-only.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-boiler-oil-only.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-boiler-propane-only.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-boiler-wood-only.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,27095.0,0.0,0.0,1127.0 +houston-hvac-autosize-central-ac-only-1-speed.xml,0.0,27095.0,0.0,0.0,1127.0 +houston-hvac-autosize-central-ac-only-2-speed.xml,0.0,27339.0,0.0,0.0,1137.0 +houston-hvac-autosize-central-ac-only-var-speed.xml,0.0,24475.0,0.0,0.0,1018.0 +houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA.xml,20038.0,27095.0,20038.0,522.0,1127.0 +houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS.xml,20038.0,27095.0,20038.0,522.0,1127.0 +houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad.xml,24146.0,27095.0,20038.0,629.0,1127.0 +houston-hvac-autosize-dse.xml,14077.0,18120.0,0.0,257.0,753.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0,706.0,1127.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0,706.0,1127.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27339.0,27339.0,20038.0,712.0,1137.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,30431.0,30431.0,20038.0,793.0,1265.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,24475.0,24475.0,20038.0,638.0,1018.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,29028.0,29028.0,20038.0,756.0,1207.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,20779.0,20779.0,16055.0,541.0,864.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,19590.0,19590.0,16055.0,510.0,815.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,22451.0,22451.0,16055.0,585.0,934.0 +houston-hvac-autosize-ducts-area-fractions.xml,44891.0,118859.0,0.0,819.0,4943.0 +houston-hvac-autosize-ducts-area-multipliers.xml,20588.0,26667.0,0.0,375.0,1109.0 +houston-hvac-autosize-ducts-buried.xml,19022.0,23092.0,0.0,347.0,960.0 +houston-hvac-autosize-ducts-defaults.xml,18921.0,18120.0,0.0,384.0,471.0 +houston-hvac-autosize-ducts-effective-rvalue.xml,21256.0,27089.0,0.0,388.0,1126.0 +houston-hvac-autosize-ducts-leakage-cfm50.xml,22511.0,33165.0,0.0,410.0,1379.0 +houston-hvac-autosize-ducts-leakage-percent.xml,19445.0,33305.0,0.0,355.0,1385.0 +houston-hvac-autosize-elec-resistance-only.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-evap-cooler-furnace-gas.xml,21260.0,16939.0,0.0,388.0,5400.0 +houston-hvac-autosize-evap-cooler-only-ducted.xml,0.0,18494.0,0.0,0.0,5400.0 +houston-hvac-autosize-evap-cooler-only.xml,0.0,16939.0,0.0,0.0,5400.0 +houston-hvac-autosize-fireplace-wood-only.xml,14077.0,0.0,0.0,411.0,0.0 +houston-hvac-autosize-floor-furnace-propane-only.xml,14077.0,0.0,0.0,411.0,0.0 +houston-hvac-autosize-furnace-coal-only.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-elec-central-ac-1-speed.xml,21260.0,27095.0,0.0,388.0,1127.0 +houston-hvac-autosize-furnace-elec-only.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-gas-central-ac-2-speed.xml,21260.0,27339.0,0.0,388.0,1137.0 +houston-hvac-autosize-furnace-gas-central-ac-var-speed.xml,21260.0,24475.0,0.0,388.0,1018.0 +houston-hvac-autosize-furnace-gas-only-detailed-setpoints.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-gas-only-pilot.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-gas-only.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-gas-room-ac.xml,21260.0,18120.0,0.0,388.0,471.0 +houston-hvac-autosize-furnace-oil-only.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-propane-only.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-wood-only.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-x3-dse.xml,14219.0,18120.0,0.0,260.0,753.0 +houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,32400.0,0.0,0.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,25329.0,0.0,0.0,760.0 +houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,32400.0,0.0,0.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0,844.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,760.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0,844.0,972.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,33330.0,31852.0,20038.0,651.0,993.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31158.0,29777.0,20038.0,609.0,929.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,37544.0,35880.0,20038.0,733.0,1119.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,33606.0,31949.0,20038.0,657.0,996.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31136.0,29600.0,20038.0,608.0,923.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,37407.0,35562.0,20038.0,731.0,1109.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,30106.0,28785.0,20038.0,588.0,898.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31157.0,29787.0,20038.0,609.0,929.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,35707.0,34137.0,20038.0,698.0,1065.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-1-speed.xml,21260.0,31852.0,0.0,291.0,993.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-2-speed.xml,21260.0,31949.0,0.0,291.0,996.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,21260.0,28785.0,0.0,291.0,898.0 +houston-hvac-autosize-install-quality-furnace-gas-only.xml,21260.0,0.0,0.0,291.0,0.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,39778.0,38295.0,20038.0,777.0,862.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31097.0,29938.0,20038.0,608.0,674.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,39778.0,38295.0,20038.0,777.0,862.0 +houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,24438.0,0.0,0.0,762.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,25560.0,24438.0,16055.0,499.0,762.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,24097.0,23040.0,16055.0,471.0,719.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,27617.0,26405.0,16055.0,540.0,823.0 +houston-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,20779.0,0.0,0.0,864.0 +houston-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,17967.0,0.0,0.0,599.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,20779.0,0.0,0.0,864.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,19590.0,0.0,0.0,815.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,20779.0,0.0,0.0,864.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA.xml,16055.0,0.0,16055.0,418.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS.xml,16055.0,0.0,16055.0,418.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad.xml,18399.0,0.0,16055.0,479.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,20779.0,20779.0,16055.0,541.0,864.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,19590.0,19590.0,16055.0,510.0,815.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,22451.0,22451.0,16055.0,585.0,934.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA.xml,17967.0,17967.0,14077.0,599.0,599.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0,565.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad.xml,19413.0,19413.0,14077.0,647.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA.xml,17967.0,17967.0,15088.0,874.0,599.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS.xml,16939.0,16939.0,15088.0,840.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad.xml,19413.0,19413.0,15088.0,922.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA.xml,17967.0,17967.0,16466.0,899.0,599.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS.xml,16939.0,16939.0,16466.0,865.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad.xml,19413.0,19413.0,16466.0,947.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA.xml,17967.0,17967.0,14077.0,1010.0,599.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0,976.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad.xml,19413.0,19413.0,14077.0,1058.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-ACCA.xml,17967.0,17967.0,0.0,599.0,599.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-HERS.xml,16939.0,16939.0,0.0,565.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-MaxLoad.xml,19413.0,19413.0,0.0,647.0,647.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,17967.0,17967.0,0.0,599.0,599.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-HERS.xml,16939.0,16939.0,0.0,565.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-MaxLoad.xml,19413.0,19413.0,0.0,647.0,647.0 +houston-hvac-autosize-multiple-sizing-methodology-ACCA.xml,54257.0,50447.0,12670.0,1251.0,1651.0 +houston-hvac-autosize-multiple-sizing-methodology-HERS.xml,48792.0,44982.0,12670.0,1107.0,1508.0 +houston-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,56380.0,52570.0,12670.0,1307.0,1736.0 +houston-hvac-autosize-none.xml,0.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-ptac-with-heating-electricity.xml,14077.0,18120.0,0.0,257.0,471.0 +houston-hvac-autosize-ptac-with-heating-natural-gas.xml,14077.0,18120.0,0.0,257.0,471.0 +houston-hvac-autosize-ptac.xml,0.0,18120.0,0.0,0.0,471.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA.xml,18120.0,18120.0,14077.0,528.0,471.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0,494.0,440.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad.xml,20411.0,20411.0,14077.0,595.0,531.0 +houston-hvac-autosize-pthp-sizing-methodology-ACCA.xml,18120.0,18120.0,14077.0,528.0,471.0 +houston-hvac-autosize-pthp-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0,494.0,440.0 +houston-hvac-autosize-pthp-sizing-methodology-MaxLoad.xml,20411.0,20411.0,14077.0,595.0,531.0 +houston-hvac-autosize-room-ac-only-33percent.xml,0.0,5980.0,0.0,0.0,155.0 +houston-hvac-autosize-room-ac-only-ceer.xml,0.0,18120.0,0.0,0.0,471.0 +houston-hvac-autosize-room-ac-only-detailed-setpoints.xml,0.0,18120.0,0.0,0.0,471.0 +houston-hvac-autosize-room-ac-only.xml,0.0,18120.0,0.0,0.0,471.0 +houston-hvac-autosize-room-ac-with-heating.xml,14077.0,18120.0,0.0,257.0,471.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA.xml,18120.0,18120.0,14077.0,528.0,471.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0,494.0,440.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad.xml,20411.0,20411.0,14077.0,595.0,531.0 +houston-hvac-autosize-seasons.xml,21260.0,27095.0,0.0,388.0,1127.0 +houston-hvac-autosize-setpoints-daily-schedules.xml,21260.0,27095.0,0.0,388.0,1127.0 +houston-hvac-autosize-setpoints-daily-setbacks.xml,21260.0,27095.0,0.0,388.0,1127.0 +houston-hvac-autosize-setpoints.xml,21260.0,27095.0,0.0,388.0,1127.0 +houston-hvac-autosize-space-heater-gas-only.xml,14077.0,0.0,0.0,411.0,0.0 +houston-hvac-autosize-stove-oil-only.xml,14077.0,0.0,0.0,411.0,0.0 +houston-hvac-autosize-stove-wood-pellets-only.xml,14077.0,0.0,0.0,411.0,0.0 +houston-hvac-autosize-undersized.xml,17839.0,23548.0,0.0,325.0,979.0 +houston-hvac-autosize-wall-furnace-elec-only.xml,14077.0,0.0,0.0,411.0,0.0 diff --git a/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1.csv b/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1.csv new file mode 100644 index 00000000..a5e7e9a5 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1.csv @@ -0,0 +1,281 @@ +HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Permanent Spa Heater (MBtu),End Use: Electricity: Permanent Spa Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Permanent Spa Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu),Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h),HVAC Design Temperature: Heating (F),HVAC Design Temperature: Cooling (F),HVAC Design Load: Heating: Total (Btu/h),HVAC Design Load: Heating: Ducts (Btu/h),HVAC Design Load: Heating: Windows (Btu/h),HVAC Design Load: Heating: Skylights (Btu/h),HVAC Design Load: Heating: Doors (Btu/h),HVAC Design Load: Heating: Walls (Btu/h),HVAC Design Load: Heating: Roofs (Btu/h),HVAC Design Load: Heating: Floors (Btu/h),HVAC Design Load: Heating: Slabs (Btu/h),HVAC Design Load: Heating: Ceilings (Btu/h),HVAC Design Load: Heating: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Total (Btu/h),HVAC Design Load: Cooling Sensible: Ducts (Btu/h),HVAC Design Load: Cooling Sensible: Windows (Btu/h),HVAC Design Load: Cooling Sensible: Skylights (Btu/h),HVAC Design Load: Cooling Sensible: Doors (Btu/h),HVAC Design Load: Cooling Sensible: Walls (Btu/h),HVAC Design Load: Cooling Sensible: Roofs (Btu/h),HVAC Design Load: Cooling Sensible: Floors (Btu/h),HVAC Design Load: Cooling Sensible: Slabs (Btu/h),HVAC Design Load: Cooling Sensible: Ceilings (Btu/h),HVAC Design Load: Cooling Sensible: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Internal Gains (Btu/h),HVAC Design Load: Cooling Latent: Total (Btu/h),HVAC Design Load: Cooling Latent: Ducts (Btu/h),HVAC Design Load: Cooling Latent: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Latent: Internal Gains (Btu/h) +base-appliances-coal.xml,59.618,59.618,33.14,33.14,21.613,0.0,0.0,0.0,0.0,4.866,0.0,0.357,0.0,0.0,4.443,0.849,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3346.9,3346.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-portable.xml,34.535,34.535,33.252,33.252,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.943,1.876,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.59,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.133,0.0,31.411,6.562,0.571,0.0,0.0,0.0,0.0,2082.6,2832.6,2832.6,9.452,15.099,0.0,1.741,1.624,0.0,0.0,0.393,4.909,-4.778,0.0,0.0,0.0,1.255,-0.399,1.048,0.077,0.392,0.0,0.032,-4.653,-0.755,0.0,0.498,-0.057,0.0,0.0,0.202,2.738,17.393,0.0,0.0,0.0,1.73,-0.394,-0.346,-1.931,-0.099,0.0,0.358,9.611,1.892,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier-ief-whole-home.xml,34.564,34.564,33.301,33.301,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,8.942,1.876,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.64,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,31.402,6.562,0.571,0.0,0.0,0.0,0.0,2101.2,2832.6,2832.6,9.474,15.099,0.0,1.746,1.629,0.0,0.0,0.394,4.93,-4.783,0.0,0.0,0.0,1.261,-0.399,1.053,0.078,0.394,0.0,0.031,-4.697,-0.758,0.0,0.502,-0.053,0.0,0.0,0.204,2.757,17.387,0.0,0.0,0.0,1.734,-0.394,-0.342,-1.926,-0.097,0.0,0.358,9.588,1.889,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier-multiple.xml,34.533,34.533,33.18,33.18,1.352,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.932,1.874,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.531,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.205,0.0,31.373,6.562,0.571,0.0,0.0,0.0,0.0,1986.8,2832.6,2832.6,9.538,15.099,0.0,1.749,1.629,0.0,0.0,0.392,4.889,-4.85,0.0,0.0,0.0,1.269,-0.389,1.046,0.076,0.393,0.0,0.034,-4.524,-0.759,0.0,0.511,-0.047,0.0,0.0,0.203,2.736,17.321,0.0,0.0,0.0,1.763,-0.384,-0.345,-1.922,-0.097,0.0,0.358,9.577,1.888,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier.xml,34.502,34.502,33.233,33.233,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,8.935,1.874,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.58,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.134,0.0,31.369,6.562,0.571,0.0,0.0,0.0,0.0,1974.6,2832.6,2832.6,9.517,15.099,0.0,1.761,1.641,0.0,0.0,0.395,4.941,-4.857,0.0,0.0,0.0,1.272,-0.396,1.056,0.078,0.397,0.0,0.031,-4.672,-0.765,0.0,0.522,-0.036,0.0,0.0,0.206,2.78,17.314,0.0,0.0,0.0,1.759,-0.391,-0.336,-1.924,-0.093,0.0,0.358,9.545,1.882,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-gas.xml,59.618,59.618,33.14,33.14,26.479,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.443,0.849,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.613,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3346.9,3346.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,58.236,58.236,36.823,36.823,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,4.472,0.856,9.541,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.636,0.365,1.519,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.053,0.0,14.889,9.641,0.613,0.0,0.0,0.0,0.0,2160.4,3418.6,3418.6,22.968,19.151,0.0,3.567,3.65,0.514,7.552,0.632,10.119,-12.663,0.0,0.0,0.0,8.335,-0.066,5.409,0.0,0.0,0.0,4.671,-9.525,-2.496,0.0,-0.075,-0.48,-0.054,2.643,-0.03,-1.454,11.75,0.0,0.0,0.0,-6.421,-0.063,-1.323,-3.168,0.0,0.0,3.234,8.51,2.014,1354.8,1997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,52.471,52.471,28.283,28.283,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,4.021,0.748,7.784,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.653,0.0,12.992,7.75,0.615,0.0,0.0,0.0,0.0,1855.8,2941.1,2941.1,23.37,17.934,0.0,3.528,3.626,0.51,7.473,0.627,10.055,-12.698,0.0,0.0,0.0,8.25,-0.062,5.397,0.0,0.0,0.0,5.202,-7.087,-2.503,0.0,-0.005,-0.425,-0.046,2.794,-0.016,-1.285,11.715,0.0,0.0,0.0,-6.168,-0.058,-1.269,-2.935,0.0,0.0,2.899,5.974,2.006,0.0,0.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-oil.xml,59.618,59.618,33.14,33.14,21.613,4.866,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.443,0.849,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3346.9,3346.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-propane.xml,59.618,59.618,33.14,33.14,21.613,0.0,4.866,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.443,0.849,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3346.9,3346.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,59.618,59.618,33.14,33.14,21.613,0.0,0.0,4.866,0.0,0.0,0.0,0.357,0.0,0.0,4.443,0.849,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3346.9,3346.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,61.345,61.345,35.725,35.725,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,4.212,0.796,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.973,0.0,13.668,9.075,0.615,0.0,0.0,0.0,0.0,2143.4,3112.0,3112.0,22.717,16.559,6.771,0.0,4.231,0.513,7.508,0.633,12.688,-15.638,0.0,0.0,0.0,8.371,-0.086,9.316,0.0,0.729,0.0,0.0,-8.932,-2.503,0.124,0.0,-0.517,-0.049,2.739,-0.02,-1.228,15.662,0.0,0.0,0.0,-6.364,-0.061,-2.102,-3.934,-0.159,0.0,0.0,7.847,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,63.091,63.091,40.489,40.489,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.868,0.953,8.922,0.0,0.0,5.751,0.0,0.398,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.151,0.0,16.414,9.023,0.613,0.0,0.0,0.0,0.0,2374.2,3660.6,3660.6,22.528,19.797,4.57,1.168,5.569,0.52,7.699,0.639,14.497,-17.149,0.0,0.0,0.0,8.589,-0.089,7.111,0.0,0.733,0.0,0.273,-10.225,-3.182,-0.013,0.016,-0.589,-0.055,2.657,-0.033,-1.932,17.689,0.0,0.0,0.0,-6.404,-0.083,-1.707,-4.231,-0.168,0.0,0.093,8.938,2.569,1354.8,997.6,11171.6,2471.3,0.0,36000.0,24000.0,0.0,6.8,91.76,31468.0,778.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,54.457,54.457,35.005,35.005,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.321,0.0,0.0,3.708,0.682,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.203,0.0,11.696,9.075,0.614,0.0,0.0,0.0,0.0,2104.8,2704.0,2704.0,17.648,12.83,6.045,0.0,3.619,0.509,7.464,0.625,10.031,-12.687,0.0,0.0,0.0,8.217,-0.076,4.799,0.0,0.728,0.0,0.0,-8.908,-2.5,0.291,0.0,-0.456,-0.051,2.711,-0.025,-1.387,11.721,0.0,0.0,0.0,-6.302,-0.051,-1.158,-3.067,-0.164,0.0,0.0,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier.xml,37.3,37.3,33.148,33.148,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.336,1.949,6.714,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.834,0.0,32.579,6.562,0.579,0.0,0.0,0.0,0.0,1903.9,3231.2,3231.2,13.531,18.845,0.0,6.126,1.575,0.0,0.0,0.335,4.353,-5.899,0.0,0.0,0.0,0.826,-0.36,0.993,0.0,0.397,0.0,0.103,-3.998,-0.844,0.0,2.403,0.135,0.0,0.0,0.203,2.884,16.272,0.0,0.0,0.0,2.056,-0.352,-0.28,-1.733,-0.052,0.0,0.379,9.165,1.803,1354.8,997.6,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,25739.0,1416.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,22161.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-atticroof-unvented-insulated-roof.xml,56.972,56.972,35.161,35.161,21.812,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,3.807,0.7,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.413,0.0,11.97,9.075,0.615,0.0,0.0,0.0,0.0,2127.6,2844.3,2844.3,19.246,14.108,0.0,5.475,3.627,0.51,7.484,0.627,10.053,-12.69,0.0,0.0,0.0,8.285,-0.062,4.803,0.0,0.729,0.0,2.654,-8.912,-2.5,0.0,-1.478,-0.423,-0.046,2.812,-0.016,-1.287,11.723,0.0,0.0,0.0,-6.128,-0.053,-1.135,-2.92,-0.161,0.0,1.442,7.867,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,30482.0,4823.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1772.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,57.589,57.589,35.509,35.509,22.08,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.733,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.675,0.0,12.646,9.075,0.803,0.0,0.0,0.0,0.0,2132.8,2982.7,2982.7,21.537,15.351,0.0,3.899,3.639,0.512,7.515,0.63,10.087,-12.691,0.0,0.0,0.0,8.3,-0.062,4.804,0.0,0.729,0.0,4.066,-8.579,-2.5,0.0,-0.528,-0.448,-0.05,2.73,-0.022,-1.358,11.723,0.0,0.0,0.0,-6.278,-0.058,-1.157,-3.029,-0.164,0.0,1.937,7.585,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16425.0,3714.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,59.84,59.84,37.574,37.574,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.735,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3486.6,3486.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,1.303,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery.xml,58.105,58.105,35.839,35.839,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,36.297,36.297,24.672,24.672,11.625,0.0,0.0,0.0,0.0,0.0,0.0,0.085,0.0,0.0,1.623,0.207,9.675,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.777,0.0,3.158,9.374,0.73,0.0,0.0,0.0,0.0,1571.2,2029.1,2029.1,7.666,6.063,0.0,2.942,3.651,0.0,0.0,0.583,1.31,-1.593,0.0,0.0,2.978,0.0,-0.037,1.669,0.0,0.0,0.0,4.662,-4.243,-1.184,0.0,-0.933,-0.243,0.0,0.0,-0.056,-0.113,1.309,0.0,0.0,-0.947,0.0,-0.033,-0.288,-0.351,0.0,0.0,0.578,3.429,0.842,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12345.0,5658.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,31.507,31.507,25.157,25.157,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,2.148,0.321,9.559,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.89,0.0,5.253,9.374,0.609,0.0,0.0,0.0,0.0,1559.2,2235.7,2235.7,9.392,10.995,0.0,-0.004,3.304,0.0,0.0,1.394,3.736,-4.206,0.0,0.0,4.616,0.0,-0.071,1.253,0.0,0.793,0.0,2.37,-6.264,-1.136,0.0,-0.0,-0.473,0.0,0.0,-0.429,-0.211,4.0,0.0,0.0,-3.092,0.0,-0.066,-0.251,-1.127,-0.133,0.0,0.503,5.735,0.89,1354.8,997.6,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12328.0,5013.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,49.412,49.412,24.675,24.675,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,1.479,0.172,9.76,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.939,0.0,2.588,9.374,0.818,0.0,0.0,0.0,0.0,1572.9,2202.9,2202.9,11.077,8.634,0.0,5.361,4.203,0.0,0.0,0.789,1.288,-1.709,0.0,0.0,5.413,0.0,-0.062,1.7,0.0,0.0,0.0,11.645,-4.474,-1.246,0.0,-1.205,-0.066,0.0,0.0,-0.056,-0.008,1.194,0.0,0.0,-1.212,0.0,-0.057,-0.194,-0.279,0.0,0.0,0.544,3.198,0.781,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,14592.0,6778.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,25.855,25.855,24.538,24.538,1.317,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.648,0.213,9.585,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.22,0.0,3.264,9.374,0.636,0.0,0.0,0.0,0.0,1558.6,1857.9,1857.9,3.415,6.065,0.0,0.378,3.172,0.0,0.0,0.381,1.385,-1.507,0.0,0.0,0.401,0.0,-0.006,1.706,0.0,0.0,0.0,0.374,-4.015,-1.12,0.0,-0.84,-0.474,0.0,0.0,-0.078,-0.221,1.396,0.0,0.0,-0.856,0.0,-0.002,-0.396,-0.392,0.0,0.0,0.597,3.657,0.907,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,8331.0,3673.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,26.155,26.155,25.093,25.093,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.134,0.333,9.537,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.984,0.0,5.308,9.374,0.586,0.0,0.0,0.0,0.0,1577.8,1735.0,1735.0,3.705,4.57,0.0,-0.004,3.199,0.0,0.0,0.372,1.434,-1.384,0.0,0.0,-0.004,0.0,-0.074,1.765,0.0,0.0,0.0,0.306,-3.658,-1.009,0.0,-0.001,-0.583,0.0,0.0,-0.044,-0.373,1.518,0.0,0.0,-0.001,0.0,-0.071,-0.543,-0.515,0.0,0.0,0.944,4.015,1.017,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,7886.0,3453.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,6279.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-infil-compartmentalization-test.xml,26.755,26.755,26.238,26.238,0.517,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.065,0.562,9.526,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,9.42,9.374,0.574,0.0,0.0,0.0,0.0,1666.2,1943.7,1943.7,3.251,7.677,0.0,-0.015,2.451,0.0,0.0,0.424,3.906,-2.465,0.0,0.0,-0.01,0.0,-0.396,0.991,0.0,0.666,0.0,0.0,-4.45,-0.746,0.0,-0.01,-1.157,0.0,0.0,-0.049,-1.212,5.738,0.0,0.0,-0.005,0.0,-0.386,-0.414,-1.343,-0.41,0.0,0.0,7.514,1.28,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 +base-bldgtype-mf-unit-residents-1.xml,19.849,19.849,18.628,18.628,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.45,0.409,4.527,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.169,0.22,0.912,1.184,0.0,1.505,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.129,0.0,7.202,4.144,0.584,0.0,0.0,0.0,0.0,1141.0,1661.2,1661.2,3.916,7.195,0.0,-0.018,2.578,0.0,0.0,0.425,4.087,-3.005,0.0,0.0,-0.017,0.0,-0.365,1.302,0.0,0.742,0.0,0.0,-3.753,-0.915,0.0,-0.013,-0.841,0.0,0.0,-0.013,-0.739,5.197,0.0,0.0,-0.012,0.0,-0.356,-0.408,-1.204,-0.286,0.0,0.0,4.875,1.111,817.2,530.6,4684.1,1314.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,27.426,27.426,26.776,26.776,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.031,0.0,0.0,3.302,0.833,9.527,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,4.0,1681.2,2028.6,2028.6,3.451,7.024,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,28.224,28.224,27.531,27.531,0.694,0.0,0.0,0.0,0.0,0.0,0.0,0.055,0.0,0.0,3.923,0.943,9.527,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.616,0.0,10.479,9.374,0.576,0.0,0.0,0.0,10.0,1710.3,2227.6,2227.6,3.597,8.162,0.0,-0.015,2.472,0.0,0.0,0.423,3.919,-2.555,0.0,0.0,-0.011,0.0,-0.392,1.275,0.0,0.675,0.0,0.036,-4.548,-0.767,0.0,-0.01,-1.111,0.0,0.0,-0.046,-1.16,5.647,0.0,0.0,-0.005,0.0,-0.382,-0.522,-1.34,-0.394,0.0,1.253,7.418,1.259,1354.8,997.6,11171.5,3093.4,0.0,8647.0,8994.0,0.0,6.8,91.76,8647.0,2761.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,27.68,27.68,27.064,27.064,0.616,0.0,0.0,0.0,0.0,0.0,0.0,0.074,0.0,0.0,3.547,0.833,9.527,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,4.0,1690.5,2083.3,2083.3,3.449,7.024,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,31.93,31.93,31.424,31.424,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,7.808,0.943,9.527,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,10.479,9.374,0.576,0.0,0.0,0.0,10.0,2071.4,3136.2,3136.2,3.53,8.162,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.045,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.253,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.0,0.0,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.874,27.874,27.368,27.368,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,3.752,0.943,9.527,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,10.479,9.374,0.576,0.0,0.0,0.0,10.0,1703.8,2187.5,2187.5,3.53,8.162,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.045,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.253,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.0,0.0,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,23.068,23.068,22.546,22.546,0.522,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,0.0,0.0,9.438,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1508.8,1332.5,1508.8,3.443,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,3093.4,0.0,5886.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,23.122,23.122,22.564,22.564,0.558,0.0,0.0,0.0,0.0,0.0,0.0,0.044,0.0,0.0,0.0,0.0,9.438,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.495,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1527.5,1332.5,1527.5,3.595,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.029,-6.076,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,3093.4,0.0,8647.0,0.0,0.0,6.8,91.76,8647.0,2761.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,23.075,23.075,22.577,22.577,0.498,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,0.0,0.0,9.438,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1538.6,1332.5,1538.6,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,3093.4,0.0,5886.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,23.054,23.054,22.693,22.693,0.361,0.0,0.0,0.0,0.0,0.0,0.116,0.057,0.0,0.0,0.0,0.0,9.438,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1647.2,1332.5,1647.2,3.447,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.076,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,3093.4,0.0,5885.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,23.075,23.075,22.579,22.579,0.496,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,0.0,0.0,9.438,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1540.5,1332.5,1540.5,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,3093.4,0.0,5886.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,22.978,22.978,22.571,22.571,0.407,0.0,0.0,0.0,0.0,0.0,0.026,0.025,0.0,0.0,0.0,0.0,9.438,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1532.9,1332.5,1532.9,3.527,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.011,-6.076,-1.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,3093.4,0.0,28548.0,0.0,0.0,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,26.726,26.726,26.726,26.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.283,0.826,9.535,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.148,9.374,0.584,0.0,0.0,0.0,4.0,1683.2,2012.7,2012.7,0.0,7.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.047,-1.131,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.329,1.237,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,27.453,27.453,27.453,27.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.901,0.935,9.535,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1735.4,2201.2,2201.2,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,26.97,26.97,26.97,26.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.527,0.826,9.535,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.148,9.374,0.584,0.0,0.0,0.0,4.0,1699.2,2065.5,2065.5,0.0,7.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.047,-1.131,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.329,1.237,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,31.309,31.309,31.309,31.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.758,0.935,9.535,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1991.4,3070.5,3070.5,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,27.283,27.283,27.283,27.283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.731,0.935,9.535,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1724.1,2162.9,2162.9,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-generator.xml,40.97,34.146,26.175,19.35,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.012,0.548,9.527,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1655.4,2001.6,2001.6,3.449,7.707,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.142,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.4,1.256,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.248,28.248,28.248,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.255,0.0,0.0,2.271,2.959,9.527,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,0.0,1717.0,1949.1,1949.1,3.449,7.707,0.0,-0.016,2.483,0.0,0.0,0.426,3.954,-2.567,0.0,0.0,-0.012,0.0,-0.391,1.284,0.0,0.681,0.0,0.0,-4.595,-0.776,0.0,-0.011,-1.1,0.0,0.0,-0.042,-1.124,5.636,0.0,0.0,-0.007,0.0,-0.381,-0.513,-1.333,-0.388,0.0,0.0,7.371,1.25,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,12000.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,31.695,31.695,16.716,16.716,14.979,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.066,0.563,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,14.407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.527,0.0,9.528,9.374,2.261,0.0,0.0,0.0,0.0,1020.3,1539.8,1539.8,3.498,7.734,0.0,-0.017,2.437,0.0,0.0,0.425,3.915,-2.473,0.0,0.0,-0.013,0.0,-0.417,2.025,0.0,0.0,0.0,0.0,-4.705,-0.753,0.0,-0.012,-1.156,0.0,0.0,-0.045,-1.18,5.73,0.0,0.0,-0.007,0.0,-0.407,-0.941,-1.35,0.0,0.0,0.0,7.748,1.273,1354.8,997.6,11171.8,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-laundry-room.xml,29.58,29.58,16.526,16.526,13.054,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.915,0.523,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.742,0.0,12.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,8.806,9.374,0.568,0.0,0.0,0.0,0.0,1011.4,1528.4,1528.4,3.655,7.615,0.0,-0.017,2.498,0.0,0.0,0.426,3.976,-2.663,0.0,0.0,-0.014,0.0,-0.395,2.062,0.0,0.0,0.0,0.0,-4.478,-0.8,0.0,-0.012,-1.052,0.0,0.0,-0.036,-1.051,5.54,0.0,0.0,-0.009,0.0,-0.386,-0.862,-1.313,0.0,0.0,0.0,6.883,1.227,1354.8,997.6,11171.7,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,50.689,50.689,30.64,30.64,20.049,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.791,0.303,9.565,0.0,0.0,2.026,0.0,0.206,3.73,0.946,0.167,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.888,0.0,0.0,0.0,0.0,12.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.308,0.0,5.091,9.374,0.615,0.0,0.0,0.0,0.0,1867.2,2259.4,2259.4,7.584,8.979,0.0,-0.017,2.791,0.0,0.0,0.407,4.196,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.34,0.0,0.0,-6.693,-1.194,0.0,-0.013,-0.143,0.0,0.0,0.06,0.126,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.698,-4.225,0.0,0.0,5.312,0.832,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,8872.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,4518.0,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,32.574,32.574,27.282,27.282,5.293,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.66,0.452,9.537,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.045,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.335,0.0,0.0,0.0,0.0,3.958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,7.541,9.374,0.586,0.0,0.0,0.0,0.0,1656.4,2020.9,2020.9,4.163,7.879,0.0,-0.018,2.638,0.0,0.0,0.432,4.149,-3.079,0.0,0.0,-0.017,0.0,-0.36,1.775,0.0,1.925,0.0,0.0,-5.318,-0.929,0.0,-0.013,-0.774,0.0,0.0,-0.004,-0.66,5.123,0.0,0.0,-0.012,0.0,-0.352,-0.53,-1.154,-1.781,0.0,0.0,6.659,1.097,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,6182.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1828.0,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,30.797,30.797,27.136,27.136,3.661,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.56,0.426,9.546,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.389,0.0,7.249,9.374,0.596,0.0,0.0,0.0,0.0,1646.4,2099.9,2099.9,5.987,8.5,0.0,-0.016,2.683,0.0,0.0,0.398,4.039,-3.61,0.0,0.0,-0.018,0.0,-0.253,1.739,0.0,5.306,0.0,0.0,-5.803,-1.04,0.0,-0.011,-0.57,0.0,0.0,-0.008,-0.517,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.44,-1.153,-1.512,0.0,0.0,6.184,0.986,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,7785.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,3431.0,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-pv.xml,26.804,2.356,26.175,1.727,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.012,0.548,9.527,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1655.4,2001.6,2001.6,3.449,7.707,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.142,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.4,1.256,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,30.742,30.742,17.637,17.637,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.927,0.526,0.0,1.096,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1056.9,1589.1,1589.1,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.426,3.986,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.61,0.0,0.696,0.0,0.0,-4.663,-0.809,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.036,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.097,1.218,1354.8,997.6,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-water-heater.xml,29.646,29.646,16.541,16.541,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.927,0.526,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1004.2,1536.4,1536.4,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.426,3.986,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.61,0.0,0.696,0.0,0.0,-4.663,-0.809,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.036,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.097,1.218,1354.8,997.6,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit.xml,26.804,26.804,26.175,26.175,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.012,0.548,9.527,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1655.4,2001.6,2001.6,3.449,7.707,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.142,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.4,1.256,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-sfa-unit-2stories.xml,50.938,50.938,34.548,34.548,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.214,0.0,0.0,3.381,0.598,9.079,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.285,0.0,10.28,9.11,0.613,0.0,0.0,0.0,0.0,2111.0,3056.0,3056.0,17.841,15.556,0.0,2.437,5.073,0.298,4.382,0.64,7.13,-8.585,0.0,0.0,0.0,5.027,-0.069,7.099,0.0,0.73,0.0,2.271,-8.897,-2.5,0.0,-0.004,-0.668,-0.027,1.593,-0.021,-1.066,7.911,0.0,0.0,0.0,-4.019,-0.064,-1.707,-2.597,-0.164,0.0,1.365,7.881,2.01,1354.8,997.6,11171.5,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16951.0,4421.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-atticroof-cathedral.xml,97.453,97.453,37.106,37.106,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.787,0.0,0.0,5.013,0.942,9.088,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.272,0.0,15.98,9.11,0.623,0.0,0.0,0.0,0.0,2152.6,4262.0,4262.0,36.45,28.479,49.534,0.0,2.942,0.289,3.702,0.668,4.716,-5.325,0.0,0.0,0.0,3.447,-0.844,7.54,0.0,0.773,0.0,0.0,-9.663,-2.68,8.461,0.0,-0.16,0.004,1.534,0.119,0.028,5.085,0.0,0.0,0.0,-4.279,-0.806,-0.856,-1.185,-0.094,0.0,0.0,7.124,1.829,1354.8,997.6,11171.6,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,42.239,42.239,29.828,29.828,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.796,0.473,9.289,0.0,0.0,3.268,0.0,0.27,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.083,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2548.6,2548.6,13.175,10.707,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.016,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.634,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-sfa-unit.xml,42.239,42.239,29.828,29.828,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.796,0.473,9.289,0.0,0.0,3.268,0.0,0.27,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.083,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2548.6,2548.6,13.175,10.707,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.016,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.634,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21403.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13941.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-dhw-combi-tankless-outside.xml,51.079,51.079,21.423,21.423,29.656,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.363,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.322,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,52.277,52.277,21.432,21.432,30.845,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.551,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.37,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1376.9,1017.3,1376.9,17.068,0.0,0.0,3.743,3.642,0.513,7.499,0.631,10.099,-12.691,0.0,0.0,0.0,8.145,-0.067,5.887,0.0,0.729,0.0,0.0,-8.581,-2.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,32.031,32.031,32.031,32.031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.255,0.74,6.76,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.208,9.074,0.661,2.903,0.0,0.0,0.0,2067.2,2821.5,2821.5,0.0,19.702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.093,-0.469,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.192,-3.046,-0.166,0.0,3.688,8.629,2.036,1354.8,997.6,11181.6,2565.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.468,37.468,37.468,37.468,0.0,0.0,0.0,0.0,0.0,0.0,5.011,0.476,0.0,0.0,3.206,0.962,6.536,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.721,0.0,14.004,9.074,0.613,2.953,0.0,0.0,0.0,3250.5,2391.7,3250.5,21.507,16.492,0.0,3.604,3.642,0.513,7.524,0.63,10.096,-12.683,0.0,0.0,0.0,8.308,-0.064,4.805,0.0,0.729,0.0,3.371,-8.59,-2.499,0.0,-0.01,-0.463,-0.052,2.69,-0.026,-1.403,11.73,0.0,0.0,0.0,-6.345,-0.06,-1.169,-3.129,-0.165,0.0,2.103,8.505,2.01,1354.8,997.6,11184.9,2566.6,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,56.35,56.35,29.683,29.683,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,4.46,0.854,2.653,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.972,0.0,14.893,9.085,1.809,3.024,0.0,0.0,0.0,1884.0,3131.6,3131.6,25.892,19.515,0.0,3.522,3.634,0.511,7.504,0.628,10.066,-12.724,0.0,0.0,0.0,8.331,-0.052,4.794,0.0,0.727,0.0,5.64,-5.456,-2.509,0.0,-0.019,-0.422,-0.046,2.83,-0.015,-1.277,11.689,0.0,0.0,0.0,-6.115,-0.048,-1.121,-2.944,-0.156,0.0,3.19,7.659,2.001,1354.7,997.5,11162.8,2561.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,33.66,33.66,33.66,33.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.458,1.184,6.742,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.585,9.08,0.0,2.936,0.0,0.0,0.0,1932.8,3243.5,3243.5,0.0,19.108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.068,-0.464,-0.051,2.687,-0.03,-1.43,11.85,0.0,0.0,0.0,-6.908,-0.064,-1.186,-3.017,-0.165,0.0,3.23,8.361,2.036,1354.8,997.6,11131.9,2554.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,31.142,31.142,31.142,31.142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.826,0.295,6.744,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.992,9.074,0.661,2.927,0.0,0.0,0.0,2066.9,2630.1,2630.1,0.0,19.354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.134,-0.469,-0.052,2.673,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.915,-0.064,-1.192,-3.051,-0.166,0.0,4.519,8.636,2.036,1354.8,997.6,11184.2,2566.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,33.691,33.691,33.691,33.691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.512,1.202,6.701,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.813,9.073,0.661,2.99,0.0,0.0,0.0,2069.0,3256.4,3256.4,0.0,19.212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.075,-0.47,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.192,-3.047,-0.166,0.0,3.266,8.653,2.036,1354.8,997.6,11186.9,2567.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,55.834,55.834,33.567,33.567,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,6.744,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,6.634,0.614,0.0,0.0,0.0,0.0,2102.3,3387.7,3387.7,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,10014.1,2297.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-detailed-setpoints.xml,53.845,53.845,21.421,21.421,32.423,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.114,0.0,13.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.124,0.0,0.0,9.099,2.365,0.0,0.0,0.0,0.0,1376.0,1017.3,1376.0,16.681,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.108,-12.669,0.0,0.0,0.0,8.131,-0.068,5.892,0.0,0.729,0.0,0.0,-9.892,-2.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1154.4,852.6,9359.8,2147.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-dse.xml,58.805,58.805,21.458,21.458,37.348,0.0,0.0,0.0,0.0,0.0,0.0,0.182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.952,0.0,13.395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.168,0.0,0.0,9.103,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.134,-0.07,5.893,0.0,0.729,0.0,0.0,-9.854,-2.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1070.4,771.3,8876.8,2036.9,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-outside.xml,55.4,55.4,21.423,21.423,33.977,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.363,0.0,14.614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.322,0.0,0.0,9.106,3.299,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.0,767.3,8821.4,2024.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-standbyloss.xml,54.218,54.218,21.42,21.42,32.799,0.0,0.0,0.0,0.0,0.0,0.0,0.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.906,0.0,13.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.947,0.0,0.0,9.105,2.69,0.0,0.0,0.0,0.0,1375.9,1017.3,1375.9,16.729,0.0,0.0,3.746,3.646,0.513,7.512,0.632,10.114,-12.663,0.0,0.0,0.0,8.131,-0.071,5.895,0.0,0.73,0.0,0.0,-10.09,-2.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1059.1,763.7,8811.6,2022.0,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,46.173,46.173,21.429,21.429,24.744,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.069,0.0,4.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.953,0.0,0.0,9.08,0.783,0.0,5.902,0.0,0.0,1376.6,1017.3,1376.6,16.971,0.0,0.0,3.745,3.645,0.513,7.503,0.631,10.103,-12.69,0.0,0.0,0.0,8.144,-0.067,5.89,0.0,0.729,0.0,0.0,-9.023,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,388.7,286.4,3143.6,721.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,53.979,53.979,21.422,21.422,32.557,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.162,0.0,13.395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.168,0.0,0.0,9.103,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.134,-0.07,5.893,0.0,0.729,0.0,0.0,-9.854,-2.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1070.4,771.3,8876.8,2036.9,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,57.995,57.995,35.514,35.514,22.481,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.327,0.821,8.719,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.053,0.0,14.282,9.075,0.295,0.0,0.0,0.0,0.0,2106.1,3366.5,3366.5,23.085,18.875,0.0,3.554,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.806,0.0,0.729,0.0,4.874,-8.733,-2.499,0.0,-0.051,-0.462,-0.052,2.693,-0.026,-1.4,11.73,0.0,0.0,0.0,-6.339,-0.06,-1.168,-3.09,-0.165,0.0,3.127,7.726,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,64.006,64.006,26.925,26.925,37.08,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.427,0.845,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.883,0.0,14.197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.43,0.0,14.701,9.075,2.724,0.0,0.0,0.0,0.0,1464.4,3104.3,3104.3,23.58,19.343,0.0,3.552,3.645,0.513,7.531,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,5.889,0.0,0.729,0.0,4.961,-9.538,-2.499,0.0,-0.058,-0.465,-0.052,2.687,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.347,-0.058,-1.45,-3.116,-0.166,0.0,3.208,8.403,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,56.238,56.238,29.55,29.55,26.687,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,3.88,0.715,3.238,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.993,0.0,12.482,9.13,1.302,0.0,0.0,0.0,0.0,1880.5,3518.3,3518.3,25.325,18.909,0.0,3.522,3.636,0.512,7.508,0.627,10.062,-12.738,0.0,0.0,0.0,8.34,-0.05,4.794,0.0,0.727,0.0,5.64,-5.436,-2.509,0.0,0.009,-0.412,-0.045,2.851,-0.015,-1.259,11.675,0.0,0.0,0.0,-6.073,-0.046,-1.114,-2.817,-0.154,0.0,2.783,5.447,2.001,1354.8,997.6,10758.2,2468.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-indirect.xml,53.778,53.778,21.423,21.423,32.355,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38,0.0,12.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.357,0.0,0.0,9.102,1.911,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.825,0.0,0.0,3.746,3.646,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.137,-0.068,5.892,0.0,0.729,0.0,0.0,-9.652,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1075.0,775.0,8916.9,2046.2,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,57.885,57.885,35.619,35.619,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,8.796,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,8.838,0.614,0.0,0.0,0.0,0.0,2129.0,3372.0,3372.0,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,10829.5,2485.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-multiple.xml,46.852,46.852,23.349,23.349,23.504,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,0.0,0.0,1.924,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.59,0.0,3.914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.541,0.0,0.0,9.066,2.815,0.0,5.893,0.0,0.0,2028.1,1810.7,2028.1,16.778,0.0,0.0,3.746,3.646,0.513,7.507,0.631,10.104,-12.678,0.0,0.0,0.0,8.139,-0.067,5.891,0.0,0.729,0.0,0.0,-9.471,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,472.1,347.6,3919.3,899.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,46.82,46.82,24.586,24.586,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.319,0.82,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.822,0.0,14.352,0.0,0.0,0.0,0.0,0.0,0.0,1360.7,2962.4,2962.4,23.072,18.891,0.0,3.558,3.646,0.513,7.535,0.631,10.106,-12.683,0.0,0.0,0.0,8.321,-0.064,5.405,0.0,0.0,0.0,4.828,-8.819,-2.499,0.0,-0.056,-0.466,-0.052,2.68,-0.027,-1.413,11.73,0.0,0.0,0.0,-6.358,-0.06,-1.307,-3.107,0.0,0.0,3.127,7.842,2.011,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,58.057,58.057,35.791,35.791,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,8.942,0.026,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.017,0.614,0.0,0.0,0.0,0.0,2130.9,3372.9,3372.9,23.033,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,57.637,57.637,35.371,35.371,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,8.531,0.017,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.017,0.614,0.0,0.0,0.0,0.0,2115.9,3358.3,3358.3,23.033,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,72.79,72.79,50.524,50.524,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,22.206,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4183.7,4183.7,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,67.939,67.939,45.672,45.672,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,18.6,0.249,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.109,0.614,0.0,0.0,0.0,0.0,2754.3,4000.4,4000.4,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,72.79,72.79,50.524,50.524,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,22.206,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4183.7,4183.7,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,52.302,52.302,30.036,30.036,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.356,0.828,2.885,0.0,0.323,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.409,9.098,0.628,0.0,6.625,0.0,0.0,2096.5,3093.6,3093.6,23.033,18.941,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.684,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.147,7.887,2.011,1354.7,997.5,10979.9,2519.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,50.865,50.865,28.608,28.608,22.257,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.368,0.831,1.455,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.843,0.0,14.461,9.207,0.694,0.0,8.339,0.0,0.0,2067.2,3097.1,3097.1,23.033,18.971,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.913,-2.499,0.0,-0.055,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.113,-0.166,0.0,3.156,7.945,2.011,1354.4,997.2,10197.2,2339.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-ics.xml,52.381,52.381,30.114,30.114,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.361,0.829,2.953,0.0,0.328,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.432,9.133,0.649,0.0,6.61,0.0,0.0,2124.6,3095.9,3095.9,23.034,18.96,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.055,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.108,-0.166,0.0,3.151,7.909,2.011,1354.7,997.6,10721.3,2460.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,52.478,52.478,29.943,29.943,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.32,0.819,3.156,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.104,0.0,14.253,9.075,0.215,0.0,5.899,0.0,0.0,1786.0,3372.7,3372.7,23.1,18.862,0.0,3.554,3.644,0.513,7.529,0.631,10.098,-12.69,0.0,0.0,0.0,8.316,-0.062,4.806,0.0,0.729,0.0,4.885,-8.691,-2.5,0.0,-0.05,-0.461,-0.051,2.696,-0.026,-1.399,11.724,0.0,0.0,0.0,-6.333,-0.059,-1.167,-3.087,-0.165,0.0,3.123,7.688,2.01,474.2,349.2,3910.1,897.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,50.597,50.597,28.695,28.695,21.903,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,4.47,0.856,1.426,0.0,0.305,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.511,0.0,14.907,9.186,0.682,0.0,8.337,0.0,0.0,2107.1,3130.5,3130.5,23.067,19.248,0.0,3.559,3.645,0.513,7.536,0.63,10.098,-12.669,0.0,0.0,0.0,8.31,-0.061,4.807,0.0,0.729,0.0,4.762,-9.207,-2.496,0.0,-0.067,-0.473,-0.053,2.663,-0.029,-1.44,11.744,0.0,0.0,0.0,-6.388,-0.058,-1.183,-3.161,-0.168,0.0,3.23,8.469,2.013,1354.2,997.1,10322.8,2368.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,50.581,50.581,28.324,28.324,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.367,0.831,1.482,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.844,0.0,14.458,9.2,0.69,0.0,8.299,0.0,0.0,2091.4,3065.0,3065.0,23.033,18.97,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.912,-2.499,0.0,-0.055,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.112,-0.166,0.0,3.155,7.942,2.011,1354.4,997.2,10240.9,2350.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-coal.xml,64.742,64.742,26.979,26.979,22.487,0.0,0.0,0.0,0.0,15.277,0.0,0.371,0.0,0.0,4.475,0.856,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3115.3,3115.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-detailed-setpoints.xml,58.089,58.089,35.83,35.83,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.353,0.827,9.006,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.846,0.0,14.397,9.049,0.623,0.0,0.0,0.0,0.0,2529.3,3395.0,3395.0,23.009,18.922,0.0,3.556,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.908,-2.499,0.0,-0.055,-0.465,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.145,7.879,2.011,1354.8,997.6,11206.2,2571.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,58.132,58.132,35.918,35.918,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.359,0.829,9.088,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.803,0.0,14.421,9.075,0.691,0.0,0.0,0.0,0.0,2172.7,3440.8,3440.8,23.02,18.939,0.0,3.557,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.823,-8.947,-2.499,0.0,-0.055,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.172,-3.11,-0.166,0.0,3.149,7.908,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,66.467,66.467,26.768,26.768,39.698,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,17.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.24,0.0,14.177,9.075,5.067,0.0,0.0,0.0,0.0,1462.6,3048.4,3048.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,64.413,64.413,26.941,26.941,37.472,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.441,0.848,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.763,0.0,14.709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.317,0.0,14.763,9.075,2.977,0.0,0.0,0.0,0.0,1464.3,3107.5,3107.5,23.55,19.37,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.059,-0.466,-0.052,2.682,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.218,8.483,2.011,1354.8,997.6,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,64.413,64.413,26.941,26.941,37.472,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.441,0.848,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.763,0.0,14.709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.317,0.0,14.763,9.075,2.977,0.0,0.0,0.0,0.0,1464.3,3107.5,3107.5,23.55,19.37,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.059,-0.466,-0.052,2.682,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.218,8.483,2.011,1354.8,997.6,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,64.742,64.742,26.979,26.979,37.764,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.475,0.856,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.487,0.0,15.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3115.3,3115.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,56.204,56.204,28.72,28.72,27.484,0.0,0.0,0.0,0.0,0.0,0.0,0.453,0.0,0.0,3.824,0.702,2.464,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.734,0.0,12.232,9.216,1.415,0.0,0.0,0.0,0.0,1856.0,3033.7,3033.7,26.694,18.696,0.0,3.506,3.633,0.511,7.505,0.628,10.08,-12.706,0.0,0.0,0.0,8.336,-0.061,4.798,0.0,0.727,0.0,5.798,-4.871,-2.509,0.0,0.02,-0.397,-0.042,2.89,-0.009,-1.185,11.708,0.0,0.0,0.0,-6.003,-0.057,-1.086,-2.728,-0.154,0.0,2.733,5.066,2.0,1354.8,997.6,9994.8,2293.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.061,56.061,28.542,28.542,27.519,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.808,0.698,2.306,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.759,0.0,12.17,9.132,1.307,0.0,0.0,0.0,0.0,1854.5,3388.8,3388.8,25.444,18.875,0.0,3.516,3.634,0.511,7.509,0.628,10.061,-12.724,0.0,0.0,0.0,8.352,-0.046,4.792,0.0,0.727,0.0,5.79,-4.85,-2.508,0.0,0.021,-0.401,-0.043,2.894,-0.011,-1.219,11.689,0.0,0.0,0.0,-6.009,-0.042,-1.1,-2.763,-0.152,0.0,2.735,5.064,2.001,1354.8,997.6,10745.3,2465.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,56.185,56.185,33.505,33.505,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,6.736,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.24,0.0,14.177,9.096,2.524,0.0,0.0,0.0,0.0,3051.2,3282.6,3282.6,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11023.3,2529.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,56.061,56.061,28.542,28.542,27.519,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.808,0.698,2.306,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.759,0.0,12.17,9.132,1.307,0.0,0.0,0.0,0.0,1854.5,3388.8,3388.8,25.444,18.875,0.0,3.516,3.634,0.511,7.509,0.628,10.061,-12.724,0.0,0.0,0.0,8.352,-0.046,4.792,0.0,0.727,0.0,5.79,-4.85,-2.508,0.0,0.021,-0.401,-0.043,2.894,-0.011,-1.219,11.689,0.0,0.0,0.0,-6.009,-0.042,-1.1,-2.763,-0.152,0.0,2.735,5.064,2.001,1354.8,997.6,10745.3,2465.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,51.881,51.881,27.851,27.851,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,4.161,0.782,1.236,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.503,0.0,13.612,9.108,0.602,0.0,5.92,0.0,0.0,1856.3,3135.6,3135.6,25.408,18.908,0.0,3.544,3.64,0.512,7.519,0.629,10.079,-12.705,0.0,0.0,0.0,8.318,-0.055,4.8,0.0,0.728,0.0,5.161,-7.514,-2.501,0.0,-0.028,-0.443,-0.049,2.749,-0.022,-1.352,11.708,0.0,0.0,0.0,-6.242,-0.051,-1.148,-2.982,-0.162,0.0,3.002,6.875,2.009,474.2,349.2,3821.6,876.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,51.398,51.398,28.455,28.455,22.943,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.499,0.863,1.111,0.0,0.327,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.484,0.0,15.039,9.023,1.965,0.0,8.039,0.0,0.0,1896.1,3144.9,3144.9,25.085,19.348,0.0,3.556,3.646,0.513,7.537,0.63,10.093,-12.686,0.0,0.0,0.0,8.324,-0.056,4.806,0.0,0.729,0.0,4.955,-8.421,-2.498,0.0,-0.061,-0.467,-0.052,2.678,-0.028,-1.429,11.727,0.0,0.0,0.0,-6.35,-0.053,-1.177,-3.153,-0.166,0.0,3.244,8.548,2.011,1354.4,997.3,11673.7,2678.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,56.302,56.302,29.701,29.701,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,3.892,0.719,3.376,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.907,0.0,12.539,9.12,1.717,0.0,0.0,0.0,0.0,1874.8,3269.1,3269.1,23.533,19.054,0.0,3.526,3.638,0.512,7.511,0.627,10.061,-12.745,0.0,0.0,0.0,8.343,-0.049,4.795,0.0,0.727,0.0,5.625,-5.52,-2.509,0.0,0.008,-0.413,-0.045,2.848,-0.015,-1.266,11.668,0.0,0.0,0.0,-6.079,-0.045,-1.116,-2.835,-0.155,0.0,2.789,5.526,2.001,1354.8,997.6,10838.7,2487.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.659,58.659,35.391,35.391,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.385,0.834,8.5,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.788,0.0,14.489,9.117,0.021,0.0,0.0,0.0,0.0,4562.5,5549.5,5549.5,30.746,19.739,0.0,3.55,3.645,0.513,7.528,0.631,10.104,-12.683,0.0,0.0,0.0,8.312,-0.062,5.265,0.0,0.776,0.0,5.021,-8.643,-2.504,0.0,-0.052,-0.46,-0.051,2.698,-0.025,-1.389,11.73,0.0,0.0,0.0,-6.33,-0.058,-1.267,-3.074,-0.186,0.0,3.167,8.004,2.005,1354.7,998.0,10786.3,2475.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,57.945,57.945,35.278,35.278,22.667,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.304,0.816,8.508,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.227,0.0,14.185,9.125,0.021,0.0,0.0,0.0,0.0,2011.1,3403.3,3403.3,23.132,18.831,0.0,3.553,3.644,0.513,7.528,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.91,-8.585,-2.5,0.0,-0.048,-0.459,-0.051,2.7,-0.025,-1.395,11.724,0.0,0.0,0.0,-6.326,-0.058,-1.165,-3.078,-0.165,0.0,3.112,7.6,2.01,1354.8,997.6,10766.2,2470.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,64.742,64.742,26.979,26.979,22.487,15.277,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.475,0.856,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3115.3,3115.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-wood.xml,64.742,64.742,26.979,26.979,22.487,0.0,0.0,15.277,0.0,0.0,0.0,0.371,0.0,0.0,4.475,0.856,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3115.3,3115.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,60.62,60.62,26.768,26.768,33.852,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,11.171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.24,0.0,14.177,9.056,0.0,0.0,0.0,0.0,0.0,1462.6,3048.4,3048.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11343.1,2602.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,58.722,58.722,36.041,36.041,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,9.273,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.24,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3439.2,3439.2,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,58.617,58.617,35.936,35.936,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,9.168,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.24,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,2006.8,3434.8,3434.8,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,58.722,58.722,36.041,36.041,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,9.273,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.24,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3439.2,3439.2,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,59.11,59.11,26.768,26.768,32.342,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,9.661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.24,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3048.4,3048.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,53.367,53.367,26.768,26.768,26.599,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,3.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.24,0.0,14.177,9.076,0.0,0.0,5.899,0.0,0.0,1462.6,3048.4,3048.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,474.2,349.2,3909.2,897.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,51.081,51.081,27.198,27.198,23.882,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.409,0.841,0.0,0.0,0.304,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.316,0.0,1.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.899,0.0,14.636,9.262,0.0,0.0,7.989,0.0,0.0,1462.4,3114.0,3114.0,23.167,19.107,0.0,3.557,3.645,0.513,7.532,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,4.807,0.0,0.73,0.0,4.843,-8.879,-2.498,0.0,-0.058,-0.467,-0.052,2.679,-0.027,-1.42,11.73,0.0,0.0,0.0,-6.36,-0.058,-1.175,-3.128,-0.166,0.0,3.187,8.131,2.011,1344.9,989.3,9809.3,2250.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,60.644,60.644,26.768,26.768,33.876,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,11.195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.24,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3048.4,3048.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-propane.xml,60.644,60.644,26.768,26.768,22.681,0.0,11.195,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.24,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3048.4,3048.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,65.574,65.574,40.854,40.854,24.721,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,6.359,1.278,8.973,0.0,0.0,5.268,0.142,0.373,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,10.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.053,0.0,22.216,9.053,0.609,0.0,0.0,0.0,0.0,2295.2,4772.5,4772.5,30.686,28.023,0.0,3.862,7.596,1.093,5.881,0.688,20.477,-24.88,0.0,0.0,0.867,6.711,-0.179,8.99,0.0,0.763,0.0,3.298,-9.747,-2.93,0.0,-0.108,-1.064,-0.109,1.841,-0.027,-1.631,23.454,0.0,0.0,-0.141,-4.808,-0.17,-1.956,-6.137,-0.162,0.0,2.864,8.485,2.338,1354.8,997.6,11171.5,2524.9,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7647.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25899.0,4445.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,73.568,73.568,44.165,44.165,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,6.248,1.252,8.86,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.421,0.0,21.74,8.989,0.612,0.0,0.0,0.0,0.0,2519.0,4654.9,4654.9,33.941,28.165,0.0,3.774,7.88,1.071,7.921,0.667,20.509,-25.19,0.0,0.0,0.0,9.056,-0.136,11.167,0.0,0.747,0.0,3.872,-10.951,-3.54,0.0,-0.074,-1.046,-0.101,2.662,-0.023,-2.118,23.376,0.0,0.0,0.0,-6.456,-0.126,-2.486,-6.302,-0.162,0.0,2.792,9.405,2.832,1354.8,997.6,11171.6,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25801.0,4444.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,54.775,54.775,30.519,30.519,24.255,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.043,0.753,5.473,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.203,0.253,1.049,1.262,0.0,1.644,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.716,0.0,13.253,5.267,0.615,0.0,0.0,0.0,0.0,1683.1,3233.0,3233.0,23.625,18.28,0.0,3.533,3.635,0.511,7.498,0.63,10.083,-12.698,0.0,0.0,0.0,8.293,-0.065,4.804,0.0,0.727,0.0,5.229,-7.29,-2.504,0.0,-0.017,-0.434,-0.048,2.778,-0.018,-1.304,11.715,0.0,0.0,0.0,-6.2,-0.061,-1.138,-2.942,-0.161,0.0,2.969,6.287,2.006,939.7,637.0,6161.9,1598.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18320.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,56.472,56.472,33.214,33.214,23.257,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.196,0.79,7.282,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.261,0.309,1.281,1.395,0.0,1.879,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.78,0.0,13.818,7.212,0.614,0.0,0.0,0.0,0.0,2063.0,3299.2,3299.2,23.329,18.601,0.0,3.545,3.639,0.512,7.514,0.63,10.088,-12.691,0.0,0.0,0.0,8.302,-0.063,4.804,0.0,0.728,0.0,5.031,-8.097,-2.5,0.0,-0.035,-0.449,-0.05,2.732,-0.022,-1.359,11.723,0.0,0.0,0.0,-6.276,-0.059,-1.155,-3.024,-0.163,0.0,3.057,7.081,2.009,1147.2,817.3,8666.7,2153.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18553.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,59.719,59.719,38.432,38.432,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.351,0.0,0.0,4.513,0.866,10.712,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.376,0.421,1.744,1.661,0.0,2.35,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.934,0.0,14.984,10.898,0.613,0.0,0.0,0.0,0.0,2183.4,3530.2,3530.2,22.735,19.253,0.0,3.569,3.65,0.514,7.549,0.631,10.109,-12.676,0.0,0.0,0.0,8.327,-0.062,4.808,0.0,0.731,0.0,4.636,-9.709,-2.497,0.0,-0.072,-0.479,-0.054,2.64,-0.031,-1.461,11.737,0.0,0.0,0.0,-6.42,-0.058,-1.188,-3.188,-0.168,0.0,3.234,8.669,2.013,1562.4,1177.9,13676.3,2901.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5342.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 +base-enclosure-beds-5.xml,61.324,61.324,41.006,41.006,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.335,0.0,0.0,4.678,0.906,12.383,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.434,0.477,1.976,1.794,0.0,2.585,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.027,0.0,15.585,12.694,0.612,0.0,0.0,0.0,0.0,2527.7,3881.6,3881.6,22.438,19.574,0.0,3.582,3.657,0.515,7.568,0.633,10.128,-12.669,0.0,0.0,0.0,8.348,-0.064,4.813,0.0,0.733,0.0,4.441,-10.517,-2.496,0.0,-0.09,-0.493,-0.056,2.596,-0.034,-1.504,11.744,0.0,0.0,0.0,-6.484,-0.06,-1.202,-3.268,-0.17,0.0,3.322,9.461,2.013,1770.0,1358.2,16181.0,3193.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19258.0,5339.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 +base-enclosure-ceilingtypes.xml,74.206,74.206,36.353,36.353,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,0.0,4.555,0.878,9.02,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.444,0.0,15.23,9.075,0.618,0.0,0.0,0.0,0.0,2135.2,3447.5,3447.5,29.35,19.614,0.0,17.288,3.592,0.505,7.259,0.62,9.956,-12.802,0.0,0.0,0.0,7.765,-0.075,4.845,0.0,0.734,0.0,6.976,-9.065,-2.542,0.0,0.085,-0.331,-0.033,2.89,0.007,-1.002,11.611,0.0,0.0,0.0,-6.098,-0.066,-1.017,-2.912,-0.141,0.0,2.765,7.716,1.968,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30007.0,5443.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-floortypes.xml,67.018,67.018,29.253,29.253,37.765,0.0,0.0,0.0,0.0,0.0,0.0,0.623,0.0,0.0,3.637,0.648,9.216,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.371,0.0,11.104,9.182,0.62,0.0,0.0,0.0,0.0,1765.2,3434.1,3434.1,29.151,21.511,0.0,3.488,3.656,0.0,0.0,0.672,9.52,-13.012,0.0,0.0,29.107,0.0,-0.209,2.053,0.0,0.788,0.0,7.865,-7.472,-1.575,0.0,0.408,-0.079,0.0,0.0,0.093,0.884,10.956,0.0,0.0,-8.039,0.0,-0.204,-0.263,-1.884,-0.087,0.0,2.695,5.732,1.072,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19986.0,5356.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-enclosure-garage.xml,58.46,58.46,34.532,34.532,23.928,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.067,0.532,9.119,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.402,0.0,9.107,9.075,0.724,0.0,0.0,0.0,0.0,2134.3,2846.6,2846.6,18.031,11.736,0.0,3.529,3.789,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.368,0.0,0.0,0.0,3.762,-6.763,-2.508,0.0,0.098,-0.288,-0.036,2.418,-0.001,-1.133,8.269,0.0,0.0,0.0,-5.679,-0.041,-1.225,-2.105,0.0,0.0,1.315,5.683,2.002,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15522.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,58.105,58.105,35.839,35.839,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,58.105,58.105,35.839,35.839,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,58.105,58.105,35.839,35.839,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,65.743,65.743,35.852,35.852,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.263,0.802,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.927,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3488.8,3488.8,28.066,19.95,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.012,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.13,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,59.513,59.513,35.838,35.838,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.333,0.822,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.171,0.0,14.292,9.075,0.614,0.0,0.0,0.0,0.0,2119.6,3397.5,3397.5,23.768,19.155,0.0,3.545,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.319,-0.062,5.886,0.0,0.728,0.0,5.113,-8.911,-2.5,0.0,-0.047,-0.456,-0.051,2.715,-0.024,-1.382,11.724,0.0,0.0,0.0,-6.303,-0.058,-1.436,-3.06,-0.164,0.0,3.143,7.868,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,65.743,65.743,35.852,35.852,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.263,0.802,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.927,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3488.8,3488.8,28.066,19.95,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.012,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.13,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,65.743,65.743,35.852,35.852,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.263,0.802,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.927,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3488.8,3488.8,28.066,19.95,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.012,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.13,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,58.328,58.328,35.815,35.815,22.513,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.33,0.822,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.083,0.0,14.299,9.075,0.614,0.0,0.0,0.0,0.0,2110.9,3368.7,3368.7,23.045,18.891,0.0,3.551,3.641,0.512,7.521,0.864,10.091,-12.683,0.0,0.0,0.0,8.303,-0.064,4.805,0.0,0.729,0.0,4.878,-8.906,-2.499,0.0,-0.051,-0.462,-0.052,2.692,-0.155,-1.398,11.73,0.0,0.0,0.0,-6.336,-0.06,-1.168,-3.092,-0.165,0.0,3.124,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,58.232,58.232,35.671,35.671,22.561,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.212,0.794,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.128,0.0,13.814,9.075,0.614,0.0,0.0,0.0,0.0,2116.9,3324.6,3324.6,22.984,18.381,0.0,3.548,3.639,0.512,7.51,0.629,10.004,-12.276,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.729,0.0,4.882,-8.91,-2.5,0.0,-0.035,-0.451,-0.05,2.717,-0.023,-1.42,11.099,0.0,0.0,0.0,-6.287,-0.059,-1.163,-3.064,-0.164,0.0,3.023,7.868,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,58.03,58.03,35.679,35.679,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.22,0.798,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.931,0.0,13.848,9.075,0.614,0.0,0.0,0.0,0.0,2115.6,3255.4,3255.4,22.859,17.895,0.0,3.669,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.307,-0.061,4.806,0.0,0.729,0.0,4.836,-8.908,-2.5,0.0,-0.304,-0.459,-0.051,2.699,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.327,-0.058,-1.168,-3.089,-0.165,0.0,2.798,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-physical-properties.xml,60.604,60.604,36.925,36.925,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,5.215,1.028,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,17.958,9.075,0.612,0.0,0.0,0.0,0.0,2132.5,3634.7,3634.7,24.757,21.883,0.0,3.552,3.66,0.515,7.583,0.634,10.135,-12.625,2.717,-2.174,0.0,8.471,-0.068,4.816,0.0,0.732,0.0,5.144,-8.887,-2.495,0.0,-0.143,-0.516,-0.059,2.583,-0.039,-1.533,11.705,-0.068,3.749,0.0,-6.624,-0.063,-1.187,-3.252,-0.17,0.0,3.94,7.889,2.014,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23504.0,5406.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,59.242,59.242,35.884,35.884,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.375,0.831,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.875,0.0,14.462,9.075,0.614,0.0,0.0,0.0,0.0,2115.2,3407.0,3407.0,23.651,19.191,0.0,3.538,3.64,0.512,7.524,0.63,10.088,-12.677,1.147,-0.32,0.0,8.318,-0.063,4.806,0.0,0.729,0.0,5.048,-8.906,-2.499,0.0,-0.053,-0.458,-0.051,2.705,-0.025,-1.388,11.724,-0.498,0.432,0.0,-6.325,-0.059,-1.163,-3.074,-0.165,0.0,3.176,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19514.0,5322.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,58.612,58.612,36.586,36.586,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.363,0.0,0.0,4.962,0.97,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.626,0.0,16.931,9.075,0.612,0.0,0.0,0.0,0.0,2127.3,3634.7,3634.7,23.618,21.274,0.0,3.568,3.663,0.516,7.583,0.634,10.138,-12.642,0.857,-1.409,0.0,8.436,-0.063,4.814,0.0,0.732,0.0,4.801,-8.885,-2.496,0.0,-0.126,-0.51,-0.059,2.585,-0.038,-1.535,11.715,0.254,2.537,0.0,-6.587,-0.059,-1.196,-3.257,-0.17,0.0,3.684,7.891,2.014,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21676.0,5364.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,58.364,58.364,36.685,36.685,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,5.046,0.99,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.301,0.0,17.295,9.075,0.612,0.0,0.0,0.0,0.0,2126.9,3634.7,3634.7,23.534,21.347,0.0,3.575,3.667,0.516,7.595,0.636,10.154,-12.632,0.765,-1.651,0.0,8.463,-0.066,4.818,0.0,0.732,0.0,4.733,-8.884,-2.495,0.0,-0.137,-0.519,-0.06,2.564,-0.04,-1.554,11.716,0.258,2.975,0.0,-6.633,-0.063,-1.201,-3.288,-0.171,0.0,3.753,7.892,2.015,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21910.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-split-level.xml,40.336,40.336,29.357,29.357,10.979,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,3.909,0.728,9.409,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.274,0.0,12.412,9.295,0.606,0.0,0.0,0.0,0.0,1718.3,2541.5,2541.5,13.175,13.018,0.0,3.945,3.838,0.0,0.0,0.691,10.079,-12.095,0.0,0.0,0.0,7.996,-0.152,2.657,0.0,0.776,0.0,0.295,-6.808,-1.452,0.0,-0.102,-0.617,0.0,0.0,-0.024,-0.74,12.161,0.0,0.0,0.0,-1.657,-0.149,-0.598,-3.044,-0.169,0.0,0.084,6.381,1.195,1354.8,997.6,11171.5,2952.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29034.0,1685.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,313.0,0.0,-487.0,800.0 +base-enclosure-thermal-mass.xml,57.9,57.9,35.793,35.793,22.107,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.316,0.82,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.703,0.0,14.273,9.075,0.614,0.0,0.0,0.0,0.0,2110.8,3335.2,3335.2,22.901,18.579,0.0,3.557,3.642,0.513,7.508,0.63,10.116,-12.697,0.0,0.0,0.0,8.279,-0.098,4.801,0.0,0.728,0.0,4.785,-8.907,-2.499,0.0,-0.047,-0.46,-0.051,2.699,-0.026,-1.427,11.731,0.0,0.0,0.0,-6.336,-0.094,-1.175,-3.143,-0.166,0.0,3.08,7.871,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,74.827,74.827,34.523,34.523,40.303,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,3.03,0.529,9.023,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.731,0.0,8.994,9.075,0.622,0.0,0.0,0.0,0.0,2128.5,2682.3,2682.3,25.831,12.574,0.0,3.347,16.952,0.473,7.157,0.836,1.283,-1.612,0.0,0.0,0.0,7.38,-0.045,4.826,0.0,0.732,0.0,7.806,-9.155,-2.566,0.0,0.292,-0.622,-0.009,3.405,-0.085,-0.165,1.409,0.0,0.0,0.0,-4.92,-0.04,-0.965,-0.378,-0.123,0.0,1.748,7.631,1.944,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13671.0,5183.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,57.198,57.198,34.861,34.861,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.567,0.631,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.919,0.0,10.838,9.075,0.616,0.0,0.0,0.0,0.0,2119.4,3336.2,3336.2,23.032,18.584,0.0,3.555,3.644,0.513,7.537,0.631,10.098,-12.683,0.0,0.0,0.0,8.359,-0.06,4.806,0.0,0.729,0.0,4.848,-8.905,-2.499,0.0,0.014,-0.412,-0.044,2.862,-0.013,-1.249,11.73,0.0,0.0,0.0,-6.095,-0.057,-1.111,-7.007,-0.157,0.0,2.703,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-none.xml,58.689,58.689,33.822,33.822,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.662,0.452,9.021,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.28,0.0,7.537,9.075,0.619,0.0,0.0,0.0,0.0,2107.2,2487.0,2487.0,17.245,8.333,0.0,3.468,5.156,0.5,7.22,0.6,0.0,0.0,0.0,0.0,0.0,7.492,-0.043,4.777,0.0,0.723,0.0,4.877,-9.031,-2.531,0.0,0.205,-0.376,-0.023,3.187,0.013,0.0,0.0,0.0,0.0,0.0,-5.188,-0.041,-1.102,0.0,-0.144,0.0,1.301,7.752,1.978,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5099.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,65.896,65.896,35.951,35.951,29.945,0.0,0.0,0.0,0.0,0.0,0.0,0.494,0.0,0.0,4.344,0.819,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.045,0.0,14.213,9.075,0.616,0.0,0.0,0.0,0.0,2146.8,3634.7,3634.7,27.766,21.326,0.0,3.492,3.633,0.511,7.504,0.63,19.595,-16.819,0.0,0.0,0.0,8.426,-0.074,4.825,0.0,0.732,0.0,6.377,-8.965,-2.513,0.0,0.015,-0.392,-0.042,2.826,-0.007,-4.96,14.292,0.0,0.0,0.0,-6.171,-0.068,-1.082,-2.85,-0.155,0.0,3.243,7.815,1.997,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21180.0,5355.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,58.029,58.029,35.868,35.868,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.377,0.834,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.753,0.0,14.515,9.075,0.613,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.558,3.645,0.513,7.515,0.631,10.105,-12.683,0.0,0.0,0.0,8.252,-0.071,4.808,0.0,0.73,0.0,4.81,-8.905,-2.499,0.0,-0.073,-0.483,-0.055,2.62,-0.031,-1.316,12.141,0.0,0.0,0.0,-6.498,-0.067,-1.188,-3.219,-0.168,0.0,3.165,7.872,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,57.767,57.767,33.4,33.4,24.367,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,2.337,0.361,9.024,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.819,0.0,6.148,9.075,0.622,0.0,0.0,0.0,0.0,2131.5,2555.5,2555.5,23.076,11.305,0.0,3.574,3.682,0.517,7.568,0.638,10.631,-11.787,0.0,0.0,0.0,8.559,-0.043,4.867,0.0,0.74,0.0,5.219,-9.143,-2.56,0.0,0.354,-0.11,-0.002,3.553,0.056,-3.589,2.911,0.0,0.0,0.0,-4.594,-0.039,-0.912,-2.173,-0.118,0.0,1.398,7.643,1.95,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-storms.xml,59.071,59.071,35.265,35.265,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,3.865,0.713,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.295,0.0,12.373,9.075,0.616,0.0,0.0,0.0,0.0,2130.8,3264.1,3264.1,22.493,16.956,0.0,3.514,3.609,0.508,7.424,0.622,8.599,-9.444,0.0,0.0,0.0,8.041,-0.059,4.791,0.0,0.726,0.0,5.093,-8.925,-2.504,0.0,0.017,-0.411,-0.044,2.82,-0.014,-0.74,8.684,0.0,0.0,0.0,-6.06,-0.055,-1.142,-2.918,-0.16,0.0,2.72,7.854,2.006,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17521.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-ambient.xml,47.529,47.529,30.202,30.202,17.327,0.0,0.0,0.0,0.0,0.0,0.0,0.286,0.0,0.0,4.683,0.9,9.202,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.233,0.0,15.611,9.182,0.606,0.0,0.0,0.0,2.0,1739.2,3434.1,3434.1,20.513,21.806,0.0,3.811,3.817,0.0,0.0,0.769,10.526,-11.315,0.0,0.0,10.182,0.0,-0.48,2.065,0.0,0.786,0.0,3.899,-6.747,-1.425,0.0,-0.107,-0.589,0.0,0.0,0.029,-0.179,12.654,0.0,0.0,-3.786,0.0,-0.474,-0.413,-2.427,-0.161,0.0,3.621,6.443,1.222,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,27750.0,8437.0,7508.0,0.0,575.0,2198.0,0.0,4563.0,0.0,2171.0,2299.0,18957.0,5354.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-basement-garage.xml,52.313,52.313,32.555,32.555,19.758,0.0,0.0,0.0,0.0,0.0,0.0,0.326,0.0,0.0,4.372,0.83,9.25,0.0,0.0,3.406,0.142,0.277,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.502,0.0,14.445,9.204,0.613,0.0,0.0,0.0,0.0,1905.4,3328.9,3328.9,21.426,19.451,0.0,3.661,4.739,0.514,5.516,0.701,9.837,-12.609,0.0,0.0,0.835,6.146,-0.039,3.259,0.0,0.735,0.0,4.443,-7.701,-1.886,0.0,-0.039,-0.654,-0.057,1.918,-0.044,-1.196,11.679,0.0,0.0,-0.129,-4.618,-0.036,-0.791,-3.022,-0.167,0.0,3.313,6.955,1.52,1354.8,997.6,11171.6,2792.6,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19061.0,5346.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 +base-foundation-belly-wing-no-skirt.xml,49.296,49.296,29.291,29.291,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.906,0.721,9.203,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.736,0.0,12.229,9.182,0.607,0.0,0.0,0.0,0.0,1746.6,3036.3,3036.3,24.177,17.847,0.0,3.986,5.373,0.0,0.0,0.756,8.719,-11.134,0.0,0.0,10.274,0.0,-0.363,2.069,0.0,0.793,0.0,6.171,-6.863,-1.453,0.0,0.291,-0.621,0.0,0.0,0.037,0.041,9.561,0.0,0.0,-3.473,0.0,-0.356,-0.4,-2.2,-0.147,0.0,2.245,6.327,1.194,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-belly-wing-skirt.xml,48.925,48.925,29.299,29.299,19.626,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.918,0.724,9.203,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.38,0.0,12.283,9.182,0.606,0.0,0.0,0.0,0.0,1745.5,3031.9,3031.9,24.024,17.806,0.0,3.992,5.382,0.0,0.0,0.757,8.731,-11.127,0.0,0.0,9.978,0.0,-0.357,2.07,0.0,0.794,0.0,6.058,-6.857,-1.453,0.0,0.285,-0.63,0.0,0.0,0.036,0.021,9.567,0.0,0.0,-3.392,0.0,-0.351,-0.403,-2.214,-0.147,0.0,2.251,6.333,1.194,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-complex.xml,77.373,77.373,37.128,37.128,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,5.151,1.017,9.019,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.691,0.0,17.738,9.075,0.617,0.0,0.0,0.0,3.0,2139.6,3634.6,3634.6,33.388,22.034,0.0,3.434,3.658,0.521,19.566,0.65,10.136,-12.837,0.0,0.0,0.0,8.756,-0.109,6.085,0.0,0.739,0.0,8.279,-9.111,-2.555,0.0,0.034,-0.372,-0.046,3.7,-0.007,-1.014,11.574,0.0,0.0,0.0,-4.532,-0.101,-1.237,-3.289,-0.139,0.0,3.73,7.67,1.955,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,55.42,55.42,36.372,36.372,19.048,0.0,0.0,0.0,0.0,0.0,0.0,0.314,0.0,0.0,4.826,0.942,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.836,0.0,16.438,9.075,0.611,0.0,0.0,0.0,0.0,2120.4,3561.3,3561.3,22.288,20.673,0.0,3.636,3.705,0.522,8.235,0.644,10.266,-12.652,0.0,0.0,0.0,4.795,-0.064,4.843,0.0,0.735,0.0,4.211,-8.886,-2.496,0.0,-0.111,-0.508,-0.058,2.158,-0.038,-1.547,11.761,0.0,0.0,0.0,-3.714,-0.059,-1.194,-3.315,-0.17,0.0,3.498,7.889,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,56.979,56.979,36.045,36.045,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.537,0.871,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.603,0.0,15.18,9.075,0.613,0.0,0.0,0.0,0.0,2123.3,3463.5,3463.5,22.76,19.767,0.0,3.584,3.664,0.516,7.833,0.635,10.15,-12.669,0.0,0.0,0.0,6.873,-0.061,4.815,0.0,0.731,0.0,4.578,-8.892,-2.496,0.0,-0.079,-0.484,-0.055,2.494,-0.032,-1.471,11.744,0.0,0.0,0.0,-5.347,-0.057,-1.182,-3.184,-0.168,0.0,3.283,7.885,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,56.901,56.901,35.387,35.387,21.515,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,3.999,0.74,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.147,0.0,12.834,9.075,0.614,0.0,0.0,0.0,0.0,2124.2,3427.1,3427.1,23.225,18.744,0.0,3.584,3.669,0.516,6.117,0.636,10.166,-12.69,0.0,0.0,0.0,8.986,-0.065,4.827,0.0,0.734,0.0,4.708,-8.905,-2.5,0.0,-0.002,-0.423,-0.046,1.073,-0.017,-1.296,11.724,0.0,0.0,0.0,-6.519,-0.06,-1.143,-2.923,-0.162,0.0,2.934,7.872,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,46.839,46.839,28.838,28.838,18.001,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.554,0.647,9.21,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.845,0.0,11.07,9.182,0.614,0.0,0.0,0.0,0.0,1720.5,2371.2,2371.2,15.899,11.724,0.0,3.711,3.607,0.507,5.113,0.622,9.795,-12.66,0.0,0.0,0.0,10.002,-0.052,3.495,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.025,-0.473,-0.053,1.786,-0.029,-1.225,11.693,0.0,0.0,0.0,-3.856,-0.048,-0.842,-2.99,-0.164,0.0,0.0,6.308,1.18,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 +base-foundation-multiple.xml,42.337,42.337,29.641,29.641,12.696,0.0,0.0,0.0,0.0,0.0,0.0,0.209,0.0,0.0,4.302,0.818,9.182,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.886,0.0,13.988,9.126,0.693,0.0,0.0,0.0,0.0,1709.3,3001.9,3001.9,15.204,15.253,0.0,3.982,3.868,0.0,0.0,0.78,10.584,-11.178,0.0,0.0,5.315,0.0,-0.386,2.585,0.0,0.0,0.0,1.988,-4.612,-1.419,0.0,-0.151,-0.726,0.0,0.0,-0.016,-0.483,12.79,0.0,0.0,-0.712,0.0,-0.381,-0.573,-2.645,0.0,0.0,1.694,4.254,1.228,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23121.0,4832.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14275.0,221.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-slab.xml,39.551,39.551,29.218,29.218,10.333,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.0,0.0,3.972,0.743,9.201,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.67,0.0,12.686,9.182,0.605,0.0,0.0,0.0,0.0,1716.3,2511.4,2511.4,12.694,12.985,0.0,3.934,3.804,0.0,0.0,0.691,10.073,-12.046,0.0,0.0,0.0,8.0,-0.153,2.012,0.0,0.776,0.0,0.278,-6.774,-1.446,0.0,-0.09,-0.602,0.0,0.0,-0.029,-0.812,12.21,0.0,0.0,0.0,-1.717,-0.151,-0.471,-2.884,-0.174,0.0,0.085,6.415,1.201,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,28667.0,1684.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-above-grade.xml,43.511,43.511,29.776,29.776,13.735,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.383,0.836,9.2,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.859,0.0,14.351,9.126,0.713,0.0,0.0,0.0,0.0,1713.3,2858.9,2858.9,16.464,16.227,0.0,3.987,3.868,0.0,0.0,0.779,10.63,-11.228,0.0,0.0,5.935,0.0,-0.399,2.588,0.0,0.0,0.0,2.404,-4.628,-1.424,0.0,-0.127,-0.706,0.0,0.0,-0.012,-0.481,12.741,0.0,0.0,-0.614,0.0,-0.394,-0.561,-2.632,0.0,0.0,1.97,4.237,1.223,1354.8,997.6,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23082.0,4827.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14270.0,225.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-assembly-r.xml,40.822,40.822,29.188,29.188,11.634,0.0,0.0,0.0,0.0,0.0,0.0,0.192,0.0,0.0,3.938,0.731,9.197,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.892,0.0,12.421,9.126,0.71,0.0,0.0,0.0,0.0,1716.9,2619.0,2619.0,14.652,13.981,0.0,3.976,3.837,0.0,0.0,0.769,10.587,-11.043,0.0,0.0,4.441,0.0,-0.41,2.586,0.0,0.0,0.0,1.776,-4.584,-1.409,0.0,-0.127,-0.681,0.0,0.0,0.012,-0.458,12.925,0.0,0.0,-2.107,0.0,-0.406,-0.578,-2.548,0.0,0.0,1.166,4.282,1.238,1354.8,997.6,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,20580.0,4443.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-wall-insulation.xml,48.475,48.475,28.856,28.856,19.619,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.617,0.654,9.131,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.362,0.0,11.127,9.126,0.639,0.0,0.0,0.0,0.0,1728.2,2475.4,2475.4,16.593,12.566,0.0,3.735,3.633,0.0,0.0,0.636,9.314,-12.475,0.0,0.0,14.539,0.0,-0.046,2.466,0.0,0.0,0.0,2.55,-4.773,-1.48,0.0,0.05,-0.453,0.0,0.0,-0.018,-0.471,11.493,0.0,0.0,-2.86,0.0,-0.045,-0.525,-2.441,0.0,0.0,1.344,4.092,1.167,1354.8,997.6,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23845.0,1648.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,15218.0,127.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement.xml,42.411,42.411,29.672,29.672,12.739,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.319,0.822,9.19,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.926,0.0,14.067,9.126,0.703,0.0,0.0,0.0,0.0,1709.8,3114.5,3114.5,15.45,15.452,0.0,3.974,3.834,0.0,0.0,0.76,10.528,-11.159,0.0,0.0,5.366,0.0,-0.39,2.583,0.0,0.0,0.0,2.089,-4.606,-1.417,0.0,-0.13,-0.683,0.0,0.0,0.003,-0.513,12.81,0.0,0.0,-0.766,0.0,-0.385,-0.574,-2.667,0.0,0.0,1.771,4.26,1.23,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23128.0,4832.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14277.0,221.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unvented-crawlspace.xml,40.275,40.275,29.774,29.774,10.501,0.0,0.0,0.0,0.0,0.0,0.0,0.173,0.0,0.0,4.341,0.83,9.298,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.832,0.0,14.178,9.182,0.708,0.0,0.0,0.0,0.0,1705.8,2988.7,2988.7,14.329,14.748,0.0,3.959,3.815,0.0,0.0,0.781,10.65,-10.714,0.0,0.0,4.565,0.0,-0.459,2.05,0.0,0.775,0.0,1.604,-6.2,-1.376,0.0,-0.242,-0.804,0.0,0.0,-0.001,-0.693,13.255,0.0,0.0,-2.1,0.0,-0.454,-0.49,-2.745,-0.198,0.0,1.315,6.384,1.271,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,20341.0,4163.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace-above-grade.xml,42.267,42.267,29.879,29.879,12.388,0.0,0.0,0.0,0.0,0.0,0.0,0.204,0.0,0.0,4.35,0.83,9.364,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.599,0.0,14.129,9.182,0.777,0.0,0.0,0.0,0.0,1721.9,2790.7,2790.7,15.473,15.546,0.0,3.952,3.793,0.0,0.0,0.758,10.49,-10.966,0.0,0.0,6.708,0.0,-0.446,1.847,0.0,0.78,0.0,1.999,-6.302,-1.401,0.0,-0.145,-0.695,0.0,0.0,0.016,-0.509,13.003,0.0,0.0,-2.522,0.0,-0.441,-0.399,-2.671,-0.183,0.0,1.477,6.282,1.246,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,24393.0,7387.0,7508.0,0.0,575.0,2198.0,0.0,2255.0,0.0,2171.0,2299.0,15739.0,2026.0,7037.0,0.0,207.0,232.0,0.0,598.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace.xml,42.177,42.177,29.718,29.718,12.459,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,4.213,0.797,9.372,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.666,0.0,13.527,9.182,0.786,0.0,0.0,0.0,0.0,1723.9,3094.6,3094.6,15.482,15.239,0.0,3.962,3.816,0.0,0.0,0.766,10.546,-11.029,0.0,0.0,6.732,0.0,-0.434,1.848,0.0,0.782,0.0,2.013,-6.322,-1.406,0.0,-0.128,-0.69,0.0,0.0,0.01,-0.475,12.939,0.0,0.0,-3.04,0.0,-0.429,-0.394,-2.616,-0.18,0.0,1.349,6.262,1.241,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,23883.0,6887.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-walkout-basement.xml,64.094,64.094,36.213,36.213,27.88,0.0,0.0,0.0,0.0,0.0,0.0,0.46,0.0,0.0,4.58,0.879,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.11,0.0,15.293,9.075,0.615,0.0,0.0,0.0,0.0,2133.5,3620.4,3620.4,26.753,20.8,0.0,3.536,3.698,0.521,7.384,0.648,10.878,-12.928,0.0,0.0,0.0,10.191,-0.062,6.628,0.0,0.729,0.0,5.961,-8.927,-2.504,0.0,-0.108,-0.524,-0.061,1.459,-0.034,-1.566,12.043,0.0,0.0,0.0,-3.716,-0.057,-1.537,-3.401,-0.161,0.0,3.295,7.852,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19161.0,5335.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.713,34.713,34.713,34.713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,1.009,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.916,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,3214.9,3214.9,0.0,16.016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.022,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,1.982,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.533,45.533,45.533,45.533,0.0,0.0,0.0,0.0,0.0,0.0,9.428,0.999,0.296,0.017,3.461,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.459,0.313,13.301,9.075,0.614,0.0,0.0,0.0,0.0,7012.9,3247.0,7012.9,24.203,16.281,0.0,3.531,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.456,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,41.785,41.785,41.785,41.785,0.0,0.0,0.0,0.0,0.0,0.0,9.448,1.729,0.308,0.031,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.092,0.339,0.0,9.075,0.588,0.0,0.0,0.0,0.0,7122.8,1624.2,7122.8,25.253,0.0,0.0,3.503,3.648,0.513,7.514,0.632,10.115,-12.683,0.0,0.0,0.0,8.151,-0.069,4.81,0.0,0.73,0.0,6.27,-8.906,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.501,45.501,45.501,45.501,0.0,0.0,0.0,0.0,0.0,0.0,8.966,0.903,0.894,0.051,3.382,1.014,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.707,0.945,12.973,9.075,0.613,0.0,0.0,144.0,0.0,10357.9,3230.8,10357.9,37.455,16.144,0.0,3.614,3.675,0.516,7.775,0.624,10.039,-12.798,0.0,0.0,0.0,9.086,0.059,4.748,0.0,0.762,0.0,4.604,-8.886,-2.51,0.0,0.007,-0.452,-0.051,2.749,-0.035,-1.506,11.615,0.0,0.0,0.0,-6.397,0.05,-1.191,-3.331,-0.163,0.0,1.991,7.891,2.0,1354.8,997.6,11171.5,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.592,45.592,45.592,45.592,0.0,0.0,0.0,0.0,0.0,0.0,9.499,0.999,0.296,0.017,3.449,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.459,0.313,13.301,9.075,0.614,0.0,0.0,0.0,0.0,7012.9,3241.2,7012.9,24.203,16.281,0.0,3.531,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.456,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,45.533,45.533,45.533,45.533,0.0,0.0,0.0,0.0,0.0,0.0,9.428,0.999,0.296,0.017,3.461,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.459,0.313,13.301,9.075,0.614,0.0,0.0,0.0,0.0,7012.9,3247.0,7012.9,24.203,16.281,0.0,3.531,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.456,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,41.473,41.473,41.473,41.473,0.0,0.0,0.0,0.0,0.0,0.0,7.361,0.584,0.283,0.012,2.316,0.626,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.469,0.295,13.553,9.075,0.614,0.0,0.0,0.0,0.0,6989.9,2794.0,6989.9,24.196,17.295,0.0,3.491,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.498,-8.906,-2.499,0.0,-0.017,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.286,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.616,53.616,38.701,38.701,14.915,0.0,0.0,0.0,0.0,0.0,5.079,0.352,0.0,0.056,2.441,0.48,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.699,11.125,16.156,9.075,0.614,0.0,0.0,1.0,10.0,3202.1,2882.4,3202.1,22.934,17.738,0.0,3.282,3.605,0.508,7.527,0.616,9.934,-12.591,0.0,0.0,0.0,8.249,-0.03,5.816,0.0,0.72,0.0,10.953,-8.787,-2.475,0.0,-0.186,-0.492,-0.056,2.721,-0.038,-1.537,11.822,0.0,0.0,0.0,-6.368,-0.026,-1.501,-3.081,-0.171,0.0,5.206,7.991,2.034,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.607,56.607,37.565,37.565,19.042,0.0,0.0,0.0,0.0,0.0,4.02,0.233,0.0,0.072,2.464,0.482,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.307,14.185,16.31,9.075,0.615,0.0,0.0,225.0,10.0,3034.2,2882.5,3034.2,23.177,17.738,0.0,3.297,3.6,0.506,7.421,0.614,9.851,-12.664,0.0,0.0,0.0,8.25,-0.008,5.77,0.0,0.715,0.0,10.51,-8.794,-2.468,0.0,-0.174,-0.487,-0.056,2.65,-0.037,-1.586,11.749,0.0,0.0,0.0,-6.307,-0.005,-1.521,-3.068,-0.175,0.0,5.101,7.984,2.042,1354.8,997.6,11171.5,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.723,53.723,38.803,38.803,14.92,0.0,0.0,0.0,0.0,0.0,5.151,0.357,0.0,0.056,2.464,0.483,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.971,11.129,16.346,9.075,0.614,0.0,0.0,1.0,10.0,3202.1,2882.4,3202.1,22.934,17.738,0.0,3.324,3.646,0.513,7.529,0.631,10.095,-12.703,0.0,0.0,0.0,8.332,-0.059,5.884,0.0,0.728,0.0,11.091,-8.914,-2.501,0.0,-0.142,-0.453,-0.051,2.716,-0.024,-1.382,11.71,0.0,0.0,0.0,-6.295,-0.055,-1.437,-3.069,-0.164,0.0,5.274,7.864,2.009,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.7,53.7,38.942,38.942,14.758,0.0,0.0,0.0,0.0,0.0,4.916,0.334,0.0,0.445,2.473,0.482,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.195,12.251,16.463,9.075,0.614,0.0,0.0,2.0,8.0,3212.2,2882.3,3212.2,26.385,17.729,0.0,3.269,3.648,0.513,7.535,0.631,10.099,-12.695,0.0,0.0,0.0,8.327,-0.059,4.804,0.0,0.729,0.0,12.407,-8.905,-2.499,0.0,-0.151,-0.462,-0.052,2.686,-0.026,-1.413,11.718,0.0,0.0,0.0,-6.343,-0.055,-1.173,-3.115,-0.166,0.0,5.289,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,50.041,50.041,50.041,50.041,0.0,0.0,0.0,0.0,0.0,0.0,9.692,0.717,5.724,0.327,3.182,0.106,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.665,6.051,14.672,9.075,0.614,0.0,0.0,0.0,0.0,8393.7,3435.0,8393.7,24.188,18.194,0.0,3.366,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.323,-0.065,4.807,0.0,0.729,0.0,9.802,-8.906,-2.499,0.0,-0.066,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.107,-0.166,0.0,3.46,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,42.376,42.376,42.376,42.376,0.0,0.0,0.0,0.0,0.0,0.0,8.726,0.512,0.13,0.006,2.595,0.115,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.13,0.136,14.712,9.075,0.614,0.0,0.0,0.0,0.0,6971.0,3559.8,6971.0,24.193,18.088,0.0,3.389,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.322,-0.065,4.807,0.0,0.729,0.0,9.254,-8.906,-2.499,0.0,-0.068,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.107,-0.166,0.0,3.499,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,40.908,40.908,40.908,40.908,0.0,0.0,0.0,0.0,0.0,0.0,7.802,0.252,0.322,0.015,2.105,0.12,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.727,0.337,14.405,9.075,0.614,0.0,0.0,0.0,0.0,7018.6,2768.7,7018.6,24.247,18.073,0.0,3.444,3.645,0.513,7.532,0.631,10.105,-12.683,0.0,0.0,0.0,8.319,-0.065,4.807,0.0,0.729,0.0,7.804,-8.906,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.106,-0.166,0.0,3.179,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,49.283,49.283,42.753,42.753,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,3.334,0.519,15.676,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.046,0.0,9.778,16.204,0.642,0.0,0.0,0.0,0.0,2608.0,3510.7,3510.7,17.003,15.983,0.0,2.9,2.833,0.397,5.505,0.423,7.596,-12.563,0.0,0.0,0.0,5.727,-0.058,3.539,0.0,0.582,0.0,1.453,-10.182,-2.473,0.0,-0.153,-0.607,-0.072,2.26,-0.067,-1.871,11.85,0.0,0.0,0.0,-7.696,-0.059,-1.295,-5.334,-0.193,0.0,2.007,9.375,2.036,2181.0,1715.2,21140.4,3685.7,0.0,31430.0,27891.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22993.0,6411.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 +base-hvac-autosize.xml,58.953,58.953,35.972,35.972,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.443,0.851,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.529,0.0,14.835,9.075,0.614,0.0,0.0,0.0,0.0,2124.0,3361.2,3361.2,23.95,19.118,0.0,3.532,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.53,-8.905,-2.499,0.0,-0.073,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.107,-0.166,0.0,3.593,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,32235.0,21309.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-coal-only.xml,49.421,49.421,30.505,30.505,0.0,0.0,0.0,0.0,0.0,18.916,0.0,0.236,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2045.6,1615.7,2045.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-elec-only.xml,48.249,48.249,48.249,48.249,0.0,0.0,0.0,0.0,0.0,0.0,17.858,0.122,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,6027.4,1615.7,6027.4,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,55.251,55.251,36.051,36.051,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,4.437,1.176,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,14.48,9.075,0.614,0.0,0.0,0.0,0.0,2083.0,3548.7,3548.7,16.438,19.072,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,-0.06,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,3.231,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only-pilot.xml,54.387,54.387,30.412,30.412,23.974,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2033.0,1615.7,2033.0,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,49.415,49.415,30.412,30.412,19.003,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2033.0,1615.7,2033.0,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-oil-only.xml,49.421,49.421,30.505,30.505,0.0,18.916,0.0,0.0,0.0,0.0,0.0,0.236,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2045.6,1615.7,2045.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-propane-only.xml,49.414,49.414,30.391,30.391,0.0,0.0,19.023,0.0,0.0,0.0,0.0,0.122,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2030.2,1615.7,2030.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,49.414,49.414,30.391,30.391,0.0,0.0,0.0,19.023,0.0,0.0,0.0,0.122,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2030.2,1615.7,2030.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,35.806,35.806,35.806,35.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.325,1.144,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.068,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3506.5,3506.5,0.0,18.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.072,-0.471,-0.052,2.665,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.918,-0.064,-1.194,-3.021,-0.167,0.0,3.156,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed.xml,35.819,35.819,35.819,35.819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.338,1.144,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.068,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3513.2,3513.2,0.0,18.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.072,-0.471,-0.052,2.665,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.918,-0.064,-1.194,-3.021,-0.167,0.0,3.156,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,34.186,34.186,34.186,34.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.144,0.706,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.48,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3088.8,3088.8,0.0,19.368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.574,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,33.715,33.715,33.715,33.715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.26,0.118,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.439,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3515.6,3515.6,0.0,17.851,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.023,-0.167,0.0,3.571,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,33.347,33.347,33.347,33.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.273,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.276,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2902.2,2902.2,0.0,18.997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.13,-0.471,-0.052,2.667,-0.032,-1.453,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.194,-3.026,-0.167,0.0,4.423,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.527,47.527,47.527,47.527,0.0,0.0,0.0,0.0,0.0,0.0,9.535,1.746,0.309,0.031,4.437,1.176,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.316,0.34,14.481,9.075,0.614,0.0,0.0,0.0,0.0,7344.8,3548.8,7344.8,25.253,19.073,0.0,3.498,3.645,0.513,7.531,0.631,10.104,-12.683,0.0,0.0,0.0,8.317,-0.065,4.807,0.0,0.729,0.0,6.329,-8.906,-2.499,0.0,-0.058,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,3.231,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dse.xml,58.357,58.357,36.747,36.747,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.356,0.0,0.0,5.156,0.942,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2102.1,2603.4,2603.4,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.108,52.108,41.456,41.456,10.652,0.0,0.0,0.0,0.0,0.0,5.242,0.493,0.0,0.929,3.461,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.809,11.048,13.301,9.075,0.614,0.0,0.0,0.0,0.0,3608.2,3247.0,3608.2,24.193,16.281,0.0,3.471,3.645,0.513,7.532,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.808,0.0,0.729,0.0,6.854,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,54.864,54.864,40.458,40.458,14.406,0.0,0.0,0.0,0.0,0.0,3.933,0.344,0.0,1.389,3.461,1.039,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.704,15.074,13.301,9.075,0.614,0.0,0.0,0.0,0.0,3456.2,3247.0,3456.2,24.191,16.281,0.0,3.434,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,7.78,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.25,52.25,37.443,37.443,14.806,0.0,0.0,0.0,0.0,0.0,2.98,0.188,0.0,1.042,2.316,0.626,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.038,15.108,13.553,9.075,0.614,0.0,0.0,0.0,0.0,2838.2,2794.1,2838.2,24.19,17.295,0.0,3.422,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.321,-0.065,4.808,0.0,0.729,0.0,8.124,-8.906,-2.499,0.0,-0.017,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.104,-0.166,0.0,2.286,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,51.949,51.949,37.013,37.013,14.936,0.0,0.0,0.0,0.0,0.0,3.325,0.037,0.0,1.134,2.105,0.12,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.915,15.323,14.405,9.075,0.614,0.0,0.0,0.0,0.0,2844.2,2768.7,2844.2,24.242,18.073,0.0,3.392,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.322,-0.065,4.808,0.0,0.729,0.0,9.032,-8.906,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.106,-0.166,0.0,3.179,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.367,47.367,35.947,35.947,11.42,0.0,0.0,0.0,0.0,0.0,2.908,0.012,0.0,0.544,2.144,0.047,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.303,11.393,12.324,9.075,0.614,0.0,0.0,0.0,0.0,2645.0,2405.9,2645.0,19.077,13.974,0.0,3.611,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,3.246,-8.906,-2.499,0.0,0.028,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.102,-0.166,0.0,1.045,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-fractions.xml,92.3,92.3,46.527,46.527,45.773,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,7.996,1.653,8.86,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.723,0.0,29.357,8.989,0.612,0.0,0.0,5.0,47.0,2576.6,5082.0,5082.0,48.976,36.121,0.0,3.225,7.897,1.073,7.933,0.668,20.527,-25.252,0.0,0.0,0.0,9.073,-0.115,11.172,0.0,0.748,0.0,19.695,-10.961,-3.544,0.0,-0.375,-1.033,-0.1,2.666,-0.022,-2.112,23.314,0.0,0.0,0.0,-6.451,-0.103,-2.481,-6.339,-0.161,0.0,10.744,9.395,2.829,1354.8,997.6,11171.6,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,71257.0,33166.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,57.339,57.339,35.713,35.713,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.259,0.805,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.257,0.0,14.061,9.075,0.614,0.0,0.0,0.0,0.0,2116.7,3314.9,3314.9,22.356,18.391,0.0,3.579,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.219,-8.905,-2.499,0.0,-0.039,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.105,-0.166,0.0,2.798,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18409.0,4950.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,55.698,55.698,35.476,35.476,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.083,0.767,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.93,0.0,13.239,9.075,0.614,0.0,0.0,0.0,0.0,2110.2,3033.7,3033.7,20.269,15.813,0.0,3.625,3.644,0.513,7.528,0.631,10.097,-12.683,0.0,0.0,0.0,8.31,-0.062,4.806,0.0,0.729,0.0,2.851,-8.903,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.171,-3.105,-0.166,0.0,1.955,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,28613.0,4973.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15788.0,2330.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-defaults.xml,54.665,54.665,40.513,40.513,14.152,0.0,0.0,0.0,0.0,0.0,4.354,0.368,0.0,0.0,5.499,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.731,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3055.2,3318.2,3318.2,18.192,11.921,0.0,3.744,3.643,0.513,7.524,0.631,10.098,-12.683,0.0,0.0,0.0,8.304,-0.065,4.807,0.0,0.73,0.0,1.557,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.096,-0.166,0.0,-0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,41910.0,24000.0,0.0,6.8,91.76,28213.0,4573.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-effective-rvalue.xml,58.101,58.101,35.838,35.838,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.848,0.0,14.392,9.075,0.614,0.0,0.0,0.0,0.0,2119.3,3372.0,3372.0,23.027,18.922,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.829,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.143,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18783.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,57.535,57.535,35.728,35.728,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.269,0.807,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.435,0.0,14.205,9.075,0.614,0.0,0.0,0.0,0.0,2116.8,3362.1,3362.1,22.444,18.84,0.0,3.567,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.807,0.0,0.73,0.0,4.423,-8.906,-2.499,0.0,-0.044,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.105,-0.166,0.0,3.002,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34498.0,10858.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20350.0,6892.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-percent.xml,59.317,59.317,36.036,36.036,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.499,0.861,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.808,0.0,15.05,9.075,0.614,0.0,0.0,0.0,0.0,2123.4,3544.1,3544.1,24.251,20.487,0.0,3.52,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.315,-0.064,4.807,0.0,0.729,0.0,5.821,-8.905,-2.499,0.0,-0.083,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.108,-0.166,0.0,3.824,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32661.0,9021.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20673.0,7215.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-elec-resistance-only.xml,46.293,46.293,46.293,46.293,0.0,0.0,0.0,0.0,0.0,0.0,16.025,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.011,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,5913.9,1615.7,5913.9,16.439,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-furnace-gas.xml,54.595,54.595,31.729,31.729,22.866,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,0.0,0.0,0.842,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.631,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2123.2,1811.2,2123.2,24.046,11.93,0.0,3.529,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.628,-8.905,-2.499,0.0,0.037,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.096,-0.166,0.0,-0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only-ducted.xml,31.243,31.243,31.243,31.243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.906,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.91,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,1920.1,2020.7,0.0,15.977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.015,-0.167,0.0,0.941,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only.xml,31.157,31.157,31.157,31.157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.82,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.955,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,1853.6,2020.7,0.0,11.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-fireplace-wood-only.xml,51.606,51.606,30.269,30.269,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2019.6,1637.4,2019.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,56.578,56.578,30.269,30.269,0.0,0.0,26.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2019.6,1637.4,2019.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-coal-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,0.0,0.0,22.632,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,56.324,56.324,56.324,56.324,0.0,0.0,0.0,0.0,0.0,0.0,20.485,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,7897.8,3372.6,7897.8,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-only.xml,52.103,52.103,52.103,52.103,0.0,0.0,0.0,0.0,0.0,0.0,21.247,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,8283.1,1622.9,8283.1,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,56.801,56.801,34.535,34.535,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.192,0.684,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.822,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3118.4,3118.4,23.032,19.604,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.106,-0.166,0.0,3.578,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,55.999,55.999,33.733,33.733,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,2.79,0.284,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,15.696,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,2927.4,2927.4,23.032,19.236,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.117,-0.464,-0.052,2.686,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.348,-0.06,-1.171,-3.111,-0.166,0.0,4.508,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,37.962,37.962,30.502,30.502,7.459,0.0,0.0,0.0,0.0,0.0,0.0,0.194,0.0,0.0,0.0,0.0,9.032,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.05,0.0,0.0,9.075,0.631,0.0,0.0,0.0,0.0,2085.2,1635.6,2085.2,18.154,0.0,0.0,2.849,2.792,0.391,5.359,0.413,7.471,-12.563,0.0,0.0,0.0,5.445,-0.06,3.485,0.0,0.573,0.0,1.812,-8.806,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-pilot.xml,58.398,58.398,30.857,30.857,27.541,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only.xml,53.489,53.489,30.857,30.857,22.632,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-room-ac.xml,59.252,59.252,36.386,36.386,22.866,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,0.0,5.5,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.631,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2123.2,3318.2,3318.2,24.046,11.922,0.0,3.529,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.628,-8.905,-2.499,0.0,0.037,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.096,-0.166,0.0,-0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-oil-only.xml,53.489,53.489,30.857,30.857,0.0,22.632,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-propane-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,58.355,58.355,36.777,36.777,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.156,0.942,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.339,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2105.4,2603.4,2603.4,16.604,11.921,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.179,34.179,34.179,34.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.022,0.82,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.013,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2840.3,2840.3,0.0,15.957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.027,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.081,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,35.993,35.993,35.993,35.993,0.0,0.0,0.0,0.0,0.0,0.0,4.996,0.729,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.793,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3375.0,1621.9,3375.0,22.277,0.0,0.0,3.592,3.648,0.513,7.511,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.908,-8.906,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.675,39.675,39.675,39.675,0.0,0.0,0.0,0.0,0.0,0.0,4.922,0.468,0.0,0.0,3.077,0.916,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.38,0.0,13.305,9.075,0.614,0.0,0.0,0.0,0.0,3274.6,2737.2,3274.6,21.395,16.112,0.0,3.608,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.318,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.032,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.624,48.624,48.624,48.624,0.0,0.0,0.0,0.0,0.0,0.0,12.08,0.691,0.618,0.019,4.225,0.698,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.904,0.638,13.847,9.075,0.614,0.0,0.0,0.0,0.0,7101.3,3502.4,7101.3,24.716,17.398,0.0,3.475,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.943,-8.906,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.592,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.109,44.109,44.109,44.109,0.0,0.0,0.0,0.0,0.0,0.0,9.216,0.568,0.555,0.017,2.885,0.576,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.109,0.573,14.194,9.075,0.614,0.0,0.0,0.0,0.0,7082.4,3118.0,7082.4,24.712,18.774,0.0,3.428,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,8.186,-8.906,-2.499,0.0,-0.045,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.944,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,45.743,45.743,45.743,45.743,0.0,0.0,0.0,0.0,0.0,0.0,10.976,0.524,0.312,0.01,3.456,0.173,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.437,0.321,15.438,9.075,0.614,0.0,0.0,0.0,0.0,7073.3,4237.7,7073.3,24.71,18.727,0.0,3.34,3.648,0.513,7.536,0.631,10.103,-12.695,0.0,0.0,0.0,8.327,-0.061,4.807,0.0,0.729,0.0,10.604,-8.908,-2.5,0.0,-0.101,-0.462,-0.052,2.688,-0.026,-1.408,11.718,0.0,0.0,0.0,-6.341,-0.057,-1.171,-3.111,-0.165,0.0,4.252,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.973,43.973,43.973,43.973,0.0,0.0,0.0,0.0,0.0,0.0,9.904,0.341,0.609,0.021,2.649,0.156,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.319,0.63,15.189,9.075,0.614,0.0,0.0,0.0,0.0,7094.4,3157.2,7094.4,24.758,18.676,0.0,3.383,3.647,0.513,7.535,0.631,10.106,-12.69,0.0,0.0,0.0,8.325,-0.064,4.808,0.0,0.73,0.0,9.444,-8.908,-2.5,0.0,-0.09,-0.463,-0.052,2.687,-0.026,-1.406,11.724,0.0,0.0,0.0,-6.344,-0.06,-1.17,-3.109,-0.166,0.0,3.988,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.079,60.079,36.64,36.64,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,5.299,0.767,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.306,9.075,0.614,0.0,0.0,0.0,3.0,2098.9,3513.4,3513.4,24.074,18.622,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.096,-0.464,-0.052,2.686,-0.027,-1.41,11.73,0.0,0.0,0.0,-6.35,-0.059,-1.172,-3.109,-0.166,0.0,4.08,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.565,58.565,35.126,35.126,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.902,0.65,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.757,9.075,0.614,0.0,0.0,0.0,3.0,2098.9,3203.2,3203.2,24.074,18.898,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.116,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.109,-0.166,0.0,4.538,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,57.797,57.797,34.358,34.358,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.404,0.381,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,16.486,9.075,0.614,0.0,0.0,0.0,0.0,2098.9,3154.3,3154.3,24.074,19.166,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.157,-0.464,-0.052,2.687,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.348,-0.059,-1.172,-3.116,-0.166,0.0,5.323,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-only.xml,54.843,54.843,30.726,30.726,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.643,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2091.6,1623.6,2091.6,25.358,0.0,0.0,3.488,3.648,0.513,7.514,0.632,10.112,-12.683,0.0,0.0,0.0,8.148,-0.067,4.809,0.0,0.73,0.0,6.844,-8.905,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.725,41.725,41.725,41.725,0.0,0.0,0.0,0.0,0.0,0.0,6.367,0.478,0.0,0.0,3.716,0.872,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.361,0.0,13.864,9.075,0.614,0.0,0.0,0.0,0.0,3514.4,2959.7,3514.4,22.464,17.298,0.0,3.575,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.312,-0.064,4.807,0.0,0.729,0.0,4.326,-8.905,-2.499,0.0,-0.032,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.106,-0.166,0.0,2.606,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.87,33.87,33.87,33.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.336,0.198,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.742,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2953.2,2953.2,0.0,14.158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.018,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.021,-0.167,0.0,1.83,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,41.386,41.386,41.386,41.386,0.0,0.0,0.0,0.0,0.0,0.0,8.076,0.201,0.121,0.005,2.597,0.095,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.44,0.126,12.616,9.075,0.614,0.0,0.0,0.0,0.0,4873.7,2791.1,4873.7,19.228,14.111,0.0,3.607,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,3.387,-8.906,-2.499,0.0,0.019,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.103,-0.166,0.0,1.346,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,33.207,33.207,33.207,33.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8,0.07,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.473,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2570.0,2570.0,0.0,13.958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.019,-0.167,0.0,1.548,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,32.927,32.927,32.927,32.927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.586,0.004,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.954,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2665.0,2665.0,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,33.302,33.302,33.302,33.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.941,0.024,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.955,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2505.3,2505.3,0.0,11.717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.472,32.472,32.472,32.472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.089,0.045,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.961,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2372.1,2372.1,0.0,13.738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.012,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.016,-0.167,0.0,1.019,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,40.45,40.45,40.45,40.45,0.0,0.0,0.0,0.0,0.0,0.0,6.99,0.144,0.0,0.0,2.988,0.036,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.28,0.0,12.658,9.075,0.614,0.0,0.0,0.0,0.0,4056.3,2621.1,4056.3,18.97,13.938,0.0,3.612,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,3.222,-8.906,-2.499,0.0,0.017,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.103,-0.166,0.0,1.392,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,37.004,37.004,37.004,37.004,0.0,0.0,0.0,0.0,0.0,0.0,6.558,0.122,0.053,0.002,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.855,0.055,0.0,9.075,0.588,0.0,0.0,0.0,0.0,4362.5,1621.8,4362.5,19.31,0.0,0.0,3.623,3.647,0.513,7.511,0.632,10.112,-12.683,0.0,0.0,0.0,8.145,-0.069,4.809,0.0,0.73,0.0,2.953,-8.906,-2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,39.246,39.246,39.246,39.246,0.0,0.0,0.0,0.0,0.0,0.0,6.631,0.076,0.055,0.001,2.144,0.047,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.088,0.056,12.324,9.075,0.614,0.0,0.0,0.0,0.0,4286.8,2405.9,4286.8,19.079,13.974,0.0,3.618,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,3.025,-8.906,-2.499,0.0,0.028,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.102,-0.166,0.0,1.045,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.911,38.911,38.911,38.911,0.0,0.0,0.0,0.0,0.0,0.0,5.671,0.121,0.343,0.0,2.455,0.028,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.343,11.294,9.075,0.614,0.0,0.0,0.0,0.0,4436.0,2599.9,4436.0,16.439,11.92,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,45.478,45.478,36.476,36.476,9.001,0.0,0.0,0.0,0.0,0.0,3.395,0.043,0.0,0.271,2.445,0.028,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.335,7.472,11.194,9.075,0.614,0.0,0.0,2.0,0.0,2921.7,2618.4,2921.7,17.264,12.083,0.0,3.742,3.641,0.512,7.519,0.63,10.092,-12.69,0.0,0.0,0.0,8.311,-0.063,5.886,0.0,0.729,0.0,0.111,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.435,-3.05,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,24589.0,950.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,45.186,45.186,36.285,36.285,8.901,0.0,0.0,0.0,0.0,0.0,3.202,0.039,0.0,0.268,2.455,0.028,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.569,7.389,11.294,9.075,0.614,0.0,0.0,1.0,0.0,2848.6,2599.9,2848.6,17.577,11.92,0.0,3.723,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.303,-0.066,4.807,0.0,0.73,0.0,0.41,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.353,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,48.473,48.473,36.218,36.218,0.0,12.255,0.0,0.0,0.0,0.0,3.392,0.06,0.0,0.0,2.445,0.028,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.225,7.353,11.194,9.075,0.614,0.0,0.0,2.0,0.0,2921.7,2618.4,2921.7,16.995,12.083,0.0,3.742,3.641,0.512,7.519,0.63,10.092,-12.69,0.0,0.0,0.0,8.311,-0.063,5.886,0.0,0.729,0.0,0.0,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.435,-3.05,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,38.968,38.968,38.968,38.968,0.0,0.0,0.0,0.0,0.0,0.0,6.705,0.036,0.0,0.0,1.932,0.003,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,11.293,9.075,0.614,0.0,0.0,0.0,0.0,3979.6,2668.3,3979.6,16.439,11.917,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,38.212,38.212,38.212,38.212,0.0,0.0,0.0,0.0,0.0,0.0,5.664,0.051,0.0,0.0,2.199,0.006,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3660.8,2367.3,3660.8,16.439,11.917,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,38.212,38.212,38.212,38.212,0.0,0.0,0.0,0.0,0.0,0.0,5.664,0.051,0.0,0.0,2.199,0.006,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3660.8,2367.3,3660.8,16.439,11.917,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.196,66.196,52.054,52.054,7.011,3.526,3.605,0.0,0.0,0.0,13.488,0.843,0.215,0.009,6.647,0.561,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.07,0.223,19.503,9.075,0.614,0.0,0.0,0.0,15.0,6551.7,4043.8,6551.7,37.974,22.365,0.0,3.429,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.887,0.0,0.728,0.0,15.097,-8.914,-2.501,0.0,-0.137,-0.456,-0.051,2.714,-0.024,-1.382,11.717,0.0,0.0,0.0,-6.301,-0.058,-1.436,-3.09,-0.164,0.0,8.421,7.863,2.008,1354.8,997.6,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,36744.0,13104.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23818.0,10360.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-none.xml,19.67,19.67,19.67,19.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.539,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.497,0.33,0.0,0.0,0.0,0.0,1280.4,1085.1,1280.4,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1354.8,997.6,8369.8,2062.4,0.0,0.0,0.0,0.0,63.32,89.06,2825.0,0.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1252.0,0.0,452.0,800.0 +base-hvac-ptac-with-heating-electricity.xml,50.851,50.851,50.851,50.851,0.0,0.0,0.0,0.0,0.0,0.0,16.19,0.0,0.0,0.0,4.369,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,5913.9,2889.3,5913.9,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,54.899,54.899,34.661,34.661,20.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.369,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2019.7,2889.3,2889.3,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac.xml,34.591,34.591,34.591,34.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.254,0.0,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.955,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2870.2,2870.2,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp-heating-capacity-17f.xml,41.792,41.792,41.792,41.792,0.0,0.0,0.0,0.0,0.0,0.0,7.228,0.0,0.047,0.0,4.225,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.047,11.294,9.075,0.614,0.0,0.0,0.0,0.0,4933.1,2869.5,4933.1,16.439,11.921,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.027,-1.409,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.171,-3.096,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp.xml,41.792,41.792,41.792,41.792,0.0,0.0,0.0,0.0,0.0,0.0,7.228,0.0,0.047,0.0,4.225,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.047,11.294,9.075,0.614,0.0,0.0,0.0,0.0,4933.1,2869.5,4933.1,16.439,11.921,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.027,-1.409,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.171,-3.096,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-33percent.xml,32.203,32.203,32.203,32.203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.866,0.0,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.615,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2111.3,2111.3,0.0,3.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007,-0.156,-0.017,0.879,-0.011,-0.48,3.911,0.0,0.0,0.0,-2.283,-0.021,-0.394,-0.994,-0.055,0.0,0.0,2.642,0.672,1354.8,997.6,11171.5,2563.5,0.0,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-ceer.xml,35.702,35.702,35.702,35.702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.365,0.0,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.955,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,3298.0,3298.0,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-detailed-setpoints.xml,34.449,34.449,34.449,34.449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.12,0.0,9.054,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.146,9.075,0.653,0.0,0.0,0.0,0.0,2019.6,3133.1,3133.1,0.0,10.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.145,-0.648,-0.078,2.174,-0.077,-1.993,11.85,0.0,0.0,0.0,-7.664,-0.066,-1.338,-3.396,-0.2,0.0,0.0,8.0,2.036,1354.8,997.6,11171.6,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only.xml,35.692,35.692,35.692,35.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.355,0.0,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.955,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,3294.1,3294.1,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-heating.xml,51.982,51.982,51.982,51.982,0.0,0.0,0.0,0.0,0.0,0.0,16.19,0.0,0.0,0.0,5.499,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,5913.9,3318.2,5913.9,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,41.792,41.792,41.792,41.792,0.0,0.0,0.0,0.0,0.0,0.0,7.228,0.0,0.047,0.0,4.225,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.047,11.294,9.075,0.614,0.0,0.0,0.0,0.0,4933.1,2869.5,4933.1,16.439,11.921,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.027,-1.409,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.171,-3.096,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,57.892,57.892,35.789,35.789,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.315,0.818,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.698,0.0,14.225,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.2,3372.2,23.032,18.923,0.0,3.516,3.607,0.508,7.531,0.617,9.947,-12.591,0.0,0.0,0.0,8.244,-0.034,4.753,0.0,0.723,0.0,4.802,-8.79,-2.477,0.0,-0.095,-0.501,-0.057,2.688,-0.04,-1.559,11.822,0.0,0.0,0.0,-6.415,-0.03,-1.222,-3.122,-0.173,0.0,3.111,7.988,2.033,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,56.935,56.935,35.238,35.238,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.859,0.728,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.946,0.0,12.403,9.075,0.615,0.0,0.0,101.0,51.0,2155.4,3745.2,3745.2,34.947,20.81,0.0,3.517,3.579,0.503,7.523,0.608,9.828,-12.674,0.0,0.0,0.0,8.679,0.006,4.652,0.0,0.727,0.0,4.499,-8.859,-2.496,0.0,-0.072,-0.501,-0.058,2.616,-0.042,-1.59,11.74,0.0,0.0,0.0,-6.667,-0.004,-1.223,-3.406,-0.174,0.0,2.447,7.92,2.014,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,56.304,56.304,35.388,35.388,20.915,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,3.994,0.755,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.498,0.0,13.025,9.075,0.616,0.0,0.0,0.0,8.0,2130.8,3634.6,3634.6,25.333,21.331,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.196,-0.023,4.639,0.0,0.724,0.0,4.386,-8.884,-2.501,0.0,-0.055,-0.497,-0.057,2.572,-0.04,-1.577,11.697,0.0,0.0,0.0,-6.643,-0.024,-1.204,-3.355,-0.177,0.0,2.591,7.896,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,41.316,41.316,34.027,34.027,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.065,0.52,9.046,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.82,0.0,9.129,9.075,0.645,0.0,0.0,0.0,0.0,2100.9,3176.1,3176.1,17.396,16.187,0.0,2.853,2.787,0.39,5.357,0.411,7.457,-12.563,0.0,0.0,0.0,5.504,-0.06,3.479,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.124,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.261,-5.126,-0.188,0.0,2.084,8.003,2.036,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-space-heater-gas-only.xml,46.293,46.293,30.268,30.268,16.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.011,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2019.6,1614.5,2019.6,16.439,0.0,0.0,3.745,3.645,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.808,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-oil-only.xml,51.59,51.59,30.334,30.334,0.0,21.257,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2022.6,1637.4,2022.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-wood-pellets-only.xml,51.59,51.59,30.334,30.334,0.0,0.0,0.0,0.0,21.257,0.0,0.0,0.064,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2022.6,1637.4,2022.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized.xml,48.274,48.274,33.024,33.024,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.246,0.0,0.0,2.114,0.358,9.031,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.279,0.0,6.525,9.075,0.629,0.0,0.0,3653.0,2615.0,2089.1,1834.6,2089.1,3.839,2.744,0.0,2.699,2.924,0.409,5.375,0.449,7.904,-12.797,0.0,0.0,0.0,4.761,-0.121,3.617,0.0,0.6,0.0,9.541,-9.006,-2.517,0.0,-0.38,-0.816,-0.103,1.571,-0.117,-2.501,11.616,0.0,0.0,0.0,-8.115,-0.065,-1.427,-5.1,-0.236,0.0,2.724,7.787,1.992,1354.8,997.6,11171.6,2563.5,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17384.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-wall-furnace-elec-only.xml,46.62,46.62,46.62,46.62,0.0,0.0,0.0,0.0,0.0,0.0,16.351,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.011,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,6008.3,1614.5,6008.3,16.439,0.0,0.0,3.745,3.645,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.808,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 diff --git a/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1_bills.csv b/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1_bills.csv new file mode 100644 index 00000000..1125794d --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -0,0 +1,281 @@ +HPXML,Bills: Total (USD),Bills: Electricity: Fixed (USD),Bills: Electricity: Energy (USD),Bills: Electricity: PV Credit (USD),Bills: Electricity: Total (USD),Bills: Natural Gas: Fixed (USD),Bills: Natural Gas: Energy (USD),Bills: Natural Gas: Total (USD),Bills: Fuel Oil: Fixed (USD),Bills: Fuel Oil: Energy (USD),Bills: Fuel Oil: Total (USD),Bills: Propane: Fixed (USD),Bills: Propane: Energy (USD),Bills: Propane: Total (USD),Bills: Wood Cord: Fixed (USD),Bills: Wood Cord: Energy (USD),Bills: Wood Cord: Total (USD),Bills: Wood Pellets: Fixed (USD),Bills: Wood Pellets: Energy (USD),Bills: Wood Pellets: Total (USD),Bills: Coal: Fixed (USD),Bills: Coal: Energy (USD),Bills: Coal: Total (USD) +base-appliances-coal.xml,1806.18,144.0,1216.24,0.0,1360.24,144.0,228.95,372.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.99,72.99 +base-appliances-dehumidifier-ief-portable.xml,1518.27,144.0,1216.97,0.0,1360.97,144.0,13.3,157.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-whole-home.xml,1519.87,144.0,1218.78,0.0,1362.78,144.0,13.09,157.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-multiple.xml,1516.38,144.0,1214.36,0.0,1358.36,144.0,14.02,158.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier.xml,1517.45,144.0,1216.3,0.0,1360.3,144.0,13.15,157.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-gas.xml,1784.74,144.0,1216.24,0.0,1360.24,144.0,280.5,424.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,1866.25,144.0,1351.41,0.0,1495.41,144.0,226.84,370.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,1582.24,144.0,1038.01,0.0,1182.01,144.0,256.23,400.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-oil.xml,1903.38,144.0,1216.24,0.0,1360.24,144.0,228.95,372.95,0.0,170.19,170.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-propane.xml,1865.27,144.0,1216.24,0.0,1360.24,144.0,228.95,372.95,0.0,0.0,0.0,0.0,132.08,132.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,1806.18,144.0,1216.24,0.0,1360.24,144.0,228.95,372.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.99,72.99,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,1870.51,144.0,1311.11,0.0,1455.11,144.0,271.4,415.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,2013.39,144.0,1485.95,0.0,1629.95,144.0,239.44,383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,1778.74,144.0,1284.68,0.0,1428.68,144.0,206.06,350.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier.xml,1544.21,144.0,1213.18,0.0,1357.18,144.0,43.03,187.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-unvented-insulated-roof.xml,1809.47,144.0,1290.41,0.0,1434.41,144.0,231.06,375.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,1825.1,144.0,1303.2,0.0,1447.2,144.0,233.9,377.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,1902.06,144.0,1378.19,0.0,1522.19,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-battery.xml,1839.18,144.0,1315.31,0.0,1459.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,1316.62,144.0,905.47,0.0,1049.47,144.0,123.15,267.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,1278.55,144.0,923.28,0.0,1067.28,144.0,67.27,211.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,1455.63,144.0,905.58,0.0,1049.58,144.0,262.05,406.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,1202.51,144.0,900.55,0.0,1044.55,144.0,13.96,157.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,1220.17,144.0,920.92,0.0,1064.92,144.0,11.25,155.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-infil-compartmentalization-test.xml,1256.44,144.0,962.96,0.0,1106.96,144.0,5.48,149.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-residents-1.xml,984.59,144.0,683.66,0.0,827.66,144.0,12.93,156.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,1277.58,144.0,982.69,0.0,1126.69,144.0,6.89,150.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,1305.73,144.0,1010.38,0.0,1154.38,144.0,7.35,151.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,1287.78,144.0,993.25,0.0,1137.25,144.0,6.53,150.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,1446.64,144.0,1153.28,0.0,1297.28,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1297.78,144.0,1004.42,0.0,1148.42,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,1120.96,144.0,827.43,0.0,971.43,144.0,5.53,149.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,1122.03,144.0,828.12,0.0,972.12,144.0,5.91,149.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,1121.86,144.0,828.59,0.0,972.59,144.0,5.27,149.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,1124.68,144.0,832.85,0.0,976.85,144.0,3.83,147.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,1121.92,144.0,828.67,0.0,972.67,144.0,5.25,149.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,1120.69,144.0,828.38,0.0,972.38,144.0,4.31,148.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,1124.85,144.0,980.85,0.0,1124.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,1151.53,144.0,1007.53,0.0,1151.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,1133.79,144.0,989.79,0.0,1133.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1293.07,144.0,1149.07,0.0,1293.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,1145.29,144.0,1001.29,0.0,1145.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-generator.xml,1639.83,144.0,960.62,0.0,1104.62,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1180.73,144.0,1036.73,0.0,1180.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1060.16,144.0,613.48,0.0,757.48,144.0,158.68,302.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-laundry-room.xml,1032.79,144.0,606.5,0.0,750.5,144.0,138.29,282.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1624.9,144.0,1124.51,0.0,1268.51,144.0,212.39,356.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1345.31,144.0,1001.24,0.0,1145.24,144.0,56.07,200.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,1322.68,144.0,995.9,0.0,1139.9,144.0,38.78,182.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-pv.xml,358.03,144.0,960.62,-897.25,207.37,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,1074.11,144.0,647.28,0.0,791.28,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-water-heater.xml,1033.89,144.0,607.06,0.0,751.06,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit.xml,1255.28,144.0,960.62,0.0,1104.62,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-2stories.xml,1729.56,144.0,1267.93,0.0,1411.93,144.0,173.63,317.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-atticroof-cathedral.xml,2289.08,144.0,1361.8,0.0,1505.8,144.0,639.28,783.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,1514.18,144.0,1094.71,0.0,1238.71,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit.xml,1514.18,144.0,1094.71,0.0,1238.71,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless-outside.xml,1388.39,144.0,786.23,0.0,930.23,144.0,314.16,458.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,1401.33,144.0,786.58,0.0,930.58,144.0,326.75,470.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,1319.56,144.0,1175.56,0.0,1319.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,1519.08,144.0,1375.08,0.0,1519.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,1659.88,144.0,1089.39,0.0,1233.39,144.0,282.49,426.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,1379.35,144.0,1235.35,0.0,1379.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,1286.91,144.0,1142.91,0.0,1286.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,1380.46,144.0,1236.46,0.0,1380.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,1755.8,144.0,1231.93,0.0,1375.93,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-detailed-setpoints.xml,1417.64,144.0,786.17,0.0,930.17,144.0,343.47,487.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-outside.xml,1434.16,144.0,786.23,0.0,930.23,144.0,359.93,503.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-standbyloss.xml,1421.56,144.0,786.11,0.0,930.11,144.0,347.45,491.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,1336.56,144.0,786.44,0.0,930.44,144.0,262.12,406.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,1419.07,144.0,786.18,0.0,930.18,144.0,344.89,488.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,1829.53,144.0,1303.38,0.0,1447.38,144.0,238.15,382.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,1668.97,144.0,988.17,0.0,1132.17,144.0,392.8,536.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,1655.22,144.0,1084.51,0.0,1228.51,144.0,282.71,426.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-indirect.xml,1416.98,144.0,786.24,0.0,930.24,144.0,342.74,486.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,1831.1,144.0,1307.23,0.0,1451.23,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-multiple.xml,1393.88,144.0,856.9,0.0,1000.9,144.0,248.98,392.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,1425.86,144.0,902.33,0.0,1046.33,144.0,235.53,379.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,1837.42,144.0,1313.55,0.0,1457.55,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,1822.0,144.0,1298.13,0.0,1442.13,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,2378.13,144.0,1854.26,0.0,1998.26,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,2200.06,144.0,1676.19,0.0,1820.19,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,2378.13,144.0,1854.26,0.0,1998.26,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,1626.21,144.0,1102.34,0.0,1246.34,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,1573.71,144.0,1049.93,0.0,1193.93,144.0,235.78,379.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-ics.xml,1629.07,144.0,1105.2,0.0,1249.2,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,1625.64,144.0,1098.92,0.0,1242.92,144.0,238.72,382.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,1573.13,144.0,1053.11,0.0,1197.11,144.0,232.02,376.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,1563.27,144.0,1039.49,0.0,1183.49,144.0,235.78,379.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-coal.xml,1745.49,144.0,990.12,0.0,1134.12,144.0,238.21,382.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.16,229.16 +base-dhw-tank-detailed-setpoints.xml,1838.76,144.0,1314.96,0.0,1458.96,144.0,235.8,379.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,1841.51,144.0,1318.19,0.0,1462.19,144.0,235.32,379.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,1690.94,144.0,982.4,0.0,1126.4,144.0,420.54,564.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,1673.7,144.0,988.75,0.0,1132.75,144.0,396.95,540.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,1673.7,144.0,988.75,0.0,1132.75,144.0,396.95,540.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,1678.16,144.0,990.12,0.0,1134.12,144.0,400.04,544.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,1633.19,144.0,1054.04,0.0,1198.04,144.0,291.15,435.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1627.02,144.0,1047.5,0.0,1191.5,144.0,291.52,435.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,1757.89,144.0,1229.63,0.0,1373.63,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,1627.02,144.0,1047.5,0.0,1191.5,144.0,291.52,435.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,1564.71,144.0,1022.16,0.0,1166.16,144.0,254.55,398.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,1575.35,144.0,1044.31,0.0,1188.31,144.0,243.04,387.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,1659.84,144.0,1090.05,0.0,1234.05,144.0,281.79,425.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1833.33,144.0,1298.85,0.0,1442.85,144.0,246.48,390.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,1822.83,144.0,1294.71,0.0,1438.71,144.0,240.12,384.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,2050.64,144.0,990.12,0.0,1134.12,144.0,238.21,382.21,0.0,534.31,534.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-wood.xml,1745.49,144.0,990.12,0.0,1134.12,144.0,238.21,382.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.16,229.16,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,1629.01,144.0,982.4,0.0,1126.4,144.0,358.61,502.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,1850.98,144.0,1322.72,0.0,1466.72,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,1847.14,144.0,1318.88,0.0,1462.88,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,1850.98,144.0,1322.72,0.0,1466.72,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,1613.01,144.0,982.4,0.0,1126.4,144.0,342.61,486.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,1552.17,144.0,982.4,0.0,1126.4,144.0,281.77,425.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,1539.18,144.0,998.19,0.0,1142.19,144.0,252.99,396.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,1629.26,144.0,982.4,0.0,1126.4,144.0,358.86,502.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-propane.xml,1814.55,144.0,982.4,0.0,1126.4,144.0,240.26,384.26,0.0,0.0,0.0,0.0,303.89,303.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,2049.23,144.0,1499.36,0.0,1643.36,144.0,261.87,405.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,2220.34,144.0,1620.87,0.0,1764.87,144.0,311.47,455.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,1665.01,144.0,1120.06,0.0,1264.06,144.0,256.95,400.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,1753.35,144.0,1218.98,0.0,1362.98,144.0,246.37,390.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,1923.97,144.0,1410.47,0.0,1554.47,144.0,225.5,369.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-5.xml,2008.18,144.0,1504.94,0.0,1648.94,144.0,215.24,359.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-ceilingtypes.xml,2023.18,144.0,1334.19,0.0,1478.19,144.0,400.99,544.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-floortypes.xml,1761.66,144.0,1073.61,0.0,1217.61,144.0,400.05,544.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-garage.xml,1808.8,144.0,1267.33,0.0,1411.33,144.0,253.47,397.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,1839.18,144.0,1315.31,0.0,1459.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,1839.18,144.0,1315.31,0.0,1459.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,1839.18,144.0,1315.31,0.0,1459.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,1920.43,144.0,1315.78,0.0,1459.78,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,1854.08,144.0,1315.28,0.0,1459.28,144.0,250.8,394.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,1920.43,144.0,1315.78,0.0,1459.78,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,1920.43,144.0,1315.78,0.0,1459.78,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,1840.92,144.0,1314.43,0.0,1458.43,144.0,238.49,382.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,1836.14,144.0,1309.15,0.0,1453.15,144.0,238.99,382.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,1834.2,144.0,1309.42,0.0,1453.42,144.0,236.78,380.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-physical-properties.xml,1894.0,144.0,1355.16,0.0,1499.16,144.0,250.84,394.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,1852.38,144.0,1316.94,0.0,1460.94,144.0,247.44,391.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,1864.05,144.0,1342.72,0.0,1486.72,144.0,233.33,377.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,1864.01,144.0,1346.36,0.0,1490.36,144.0,229.65,373.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-split-level.xml,1481.71,144.0,1077.41,0.0,1221.41,144.0,116.3,260.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-thermal-mass.xml,1835.8,144.0,1313.61,0.0,1457.61,144.0,234.19,378.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,1981.97,144.0,1267.02,0.0,1411.02,144.0,426.95,570.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,1804.03,144.0,1279.4,0.0,1423.4,144.0,236.63,380.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-none.xml,1792.7,144.0,1241.27,0.0,1385.27,144.0,263.43,407.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,1924.65,144.0,1319.43,0.0,1463.43,144.0,317.22,461.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,1839.14,144.0,1316.39,0.0,1460.39,144.0,234.75,378.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,1771.93,144.0,1225.8,0.0,1369.8,144.0,258.13,402.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-storms.xml,1834.42,144.0,1294.24,0.0,1438.24,144.0,252.18,396.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-ambient.xml,1579.97,144.0,1108.42,0.0,1252.42,144.0,183.55,327.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-basement-garage.xml,1692.09,144.0,1194.79,0.0,1338.79,144.0,209.3,353.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-belly-wing-no-skirt.xml,1574.91,144.0,1074.99,0.0,1218.99,144.0,211.92,355.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-belly-wing-skirt.xml,1571.18,144.0,1075.28,0.0,1219.28,144.0,207.9,351.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-complex.xml,2076.94,144.0,1362.6,0.0,1506.6,144.0,426.34,570.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,1824.64,144.0,1334.86,0.0,1478.86,144.0,201.78,345.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,1832.62,144.0,1322.86,0.0,1466.86,144.0,221.76,365.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,1814.61,144.0,1298.7,0.0,1442.7,144.0,227.91,371.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,1537.06,144.0,1058.37,0.0,1202.37,144.0,190.69,334.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-multiple.xml,1510.34,144.0,1087.84,0.0,1231.84,144.0,134.5,278.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-slab.xml,1469.76,144.0,1072.3,0.0,1216.3,144.0,109.46,253.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-above-grade.xml,1526.28,144.0,1092.79,0.0,1236.79,144.0,145.49,289.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-assembly-r.xml,1482.46,144.0,1071.22,0.0,1215.22,144.0,123.24,267.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-wall-insulation.xml,1554.87,144.0,1059.04,0.0,1203.04,144.0,207.83,351.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement.xml,1511.92,144.0,1088.97,0.0,1232.97,144.0,134.95,278.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unvented-crawlspace.xml,1491.96,144.0,1092.72,0.0,1236.72,144.0,111.24,255.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-vented-crawlspace-above-grade.xml,1515.82,144.0,1096.59,0.0,1240.59,144.0,131.23,275.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-vented-crawlspace.xml,1510.65,144.0,1090.66,0.0,1234.66,144.0,131.99,275.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-walkout-basement.xml,1912.39,144.0,1329.04,0.0,1473.04,144.0,295.35,439.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1417.99,144.0,1273.99,0.0,1417.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1815.07,144.0,1671.07,0.0,1815.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1677.51,144.0,1533.51,0.0,1677.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1813.9,144.0,1669.9,0.0,1813.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1817.23,144.0,1673.23,0.0,1817.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,1815.07,144.0,1671.07,0.0,1815.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,1666.08,144.0,1522.08,0.0,1666.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1866.34,144.0,1420.34,0.0,1564.34,144.0,158.0,302.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1868.36,144.0,1378.64,0.0,1522.64,144.0,201.72,345.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1870.14,144.0,1424.09,0.0,1568.09,144.0,158.05,302.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1873.53,144.0,1429.2,0.0,1573.2,144.0,156.33,300.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,1980.54,144.0,1836.54,0.0,1980.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,1699.22,144.0,1555.22,0.0,1699.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,1645.35,144.0,1501.35,0.0,1645.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,1926.22,144.0,1569.04,0.0,1713.04,144.0,69.18,213.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-autosize.xml,1851.63,144.0,1320.19,0.0,1464.19,144.0,243.44,387.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-coal-only.xml,1547.28,144.0,1119.54,0.0,1263.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,283.74,283.74 +base-hvac-boiler-elec-only.xml,1914.77,144.0,1770.77,0.0,1914.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,1814.47,144.0,1323.08,0.0,1467.08,144.0,203.39,347.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only-pilot.xml,1658.12,144.0,1116.15,0.0,1260.15,144.0,253.97,397.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,1605.45,144.0,1116.15,0.0,1260.15,144.0,201.3,345.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-oil-only.xml,1925.12,144.0,1119.54,0.0,1263.54,0.0,0.0,0.0,0.0,661.58,661.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-propane-only.xml,1775.73,144.0,1115.36,0.0,1259.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,516.37,516.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,1544.71,144.0,1115.36,0.0,1259.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,285.35,285.35,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,1458.08,144.0,1314.08,0.0,1458.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed.xml,1458.56,144.0,1314.56,0.0,1458.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,1398.66,144.0,1254.66,0.0,1398.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,1381.34,144.0,1237.34,0.0,1381.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,1367.86,144.0,1223.86,0.0,1367.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1888.27,144.0,1744.27,0.0,1888.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1922.29,144.0,1521.45,0.0,1665.45,144.0,112.84,256.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1925.44,144.0,1484.83,0.0,1628.83,144.0,152.61,296.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1819.04,144.0,1374.19,0.0,1518.19,144.0,156.85,300.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1804.62,144.0,1358.4,0.0,1502.4,144.0,158.22,302.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1728.24,144.0,1319.27,0.0,1463.27,144.0,120.97,264.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-fractions.xml,2480.44,144.0,1707.55,0.0,1851.55,144.0,484.89,628.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,1827.76,144.0,1310.67,0.0,1454.67,144.0,229.09,373.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,1804.2,144.0,1301.97,0.0,1445.97,144.0,214.23,358.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-defaults.xml,1924.76,144.0,1486.85,0.0,1630.85,144.0,149.91,293.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-effective-rvalue.xml,1839.12,144.0,1315.29,0.0,1459.29,144.0,235.83,379.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,1830.24,144.0,1311.24,0.0,1455.24,144.0,231.0,375.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-percent.xml,1857.15,144.0,1322.53,0.0,1466.53,144.0,246.62,390.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-elec-resistance-only.xml,1842.97,144.0,1698.97,0.0,1842.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-furnace-gas.xml,1694.69,144.0,1164.46,0.0,1308.46,144.0,242.23,386.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only-ducted.xml,1290.62,144.0,1146.62,0.0,1290.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only.xml,1287.46,144.0,1143.46,0.0,1287.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-fireplace-wood-only.xml,1574.96,144.0,1110.9,0.0,1254.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,320.06,320.06,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,1969.03,144.0,1110.9,0.0,1254.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,714.13,714.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-coal-only.xml,1615.94,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.48,339.48 +base-hvac-furnace-elec-central-ac-1-speed.xml,2211.12,144.0,2067.12,0.0,2211.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-only.xml,2056.22,144.0,1912.22,0.0,2056.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,1791.31,144.0,1267.44,0.0,1411.44,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,1761.88,144.0,1238.01,0.0,1382.01,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,1486.47,144.0,1119.45,0.0,1263.45,144.0,79.02,223.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-pilot.xml,1712.21,144.0,1132.46,0.0,1276.46,144.0,291.75,435.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only.xml,1660.21,144.0,1132.46,0.0,1276.46,144.0,239.75,383.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-room-ac.xml,1865.62,144.0,1335.39,0.0,1479.39,144.0,242.23,386.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-oil-only.xml,2068.01,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,791.55,791.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-propane-only.xml,1890.8,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,614.34,614.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,1615.94,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.48,339.48,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1398.38,144.0,1254.38,0.0,1398.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1464.96,144.0,1320.96,0.0,1464.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,1600.1,144.0,1456.1,0.0,1600.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1928.51,144.0,1784.51,0.0,1928.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1762.82,144.0,1618.82,0.0,1762.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1822.8,144.0,1678.8,0.0,1822.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1757.81,144.0,1613.81,0.0,1757.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1881.0,144.0,1344.7,0.0,1488.7,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1825.44,144.0,1289.14,0.0,1433.14,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1797.25,144.0,1260.95,0.0,1404.95,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-only.xml,1671.13,144.0,1127.65,0.0,1271.65,144.0,255.48,399.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1675.31,144.0,1531.31,0.0,1675.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1387.05,144.0,1243.05,0.0,1387.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1662.89,144.0,1518.89,0.0,1662.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,1362.71,144.0,1218.71,0.0,1362.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,1352.43,144.0,1208.43,0.0,1352.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,1366.2,144.0,1222.2,0.0,1366.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1335.72,144.0,1191.72,0.0,1335.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,1628.54,144.0,1484.54,0.0,1628.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1502.06,144.0,1358.06,0.0,1502.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,1584.35,144.0,1440.35,0.0,1584.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1572.03,144.0,1428.03,0.0,1572.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1722.04,144.0,1338.69,0.0,1482.69,144.0,95.35,239.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1713.96,144.0,1331.67,0.0,1475.67,144.0,94.29,238.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1901.83,144.0,1329.22,0.0,1473.22,0.0,0.0,0.0,0.0,428.61,428.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1574.13,144.0,1430.13,0.0,1574.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1546.39,144.0,1402.39,0.0,1546.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,1546.39,144.0,1402.39,0.0,1546.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,2493.83,144.0,1910.39,0.0,2054.39,144.0,74.27,218.27,0.0,123.32,123.32,0.0,97.85,97.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-none.xml,2513.83,144.0,2369.83,0.0,2513.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-electricity.xml,2010.26,144.0,1866.26,0.0,2010.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,1774.46,144.0,1272.07,0.0,1416.07,144.0,214.39,358.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ptac.xml,1413.49,144.0,1269.49,0.0,1413.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-pthp-heating-capacity-17f.xml,1677.79,144.0,1533.79,0.0,1677.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-pthp.xml,1677.79,144.0,1533.79,0.0,1677.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-33percent.xml,1325.86,144.0,1181.86,0.0,1325.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-ceer.xml,1454.26,144.0,1310.26,0.0,1454.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-detailed-setpoints.xml,1408.31,144.0,1264.31,0.0,1408.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only.xml,1453.89,144.0,1309.89,0.0,1453.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-heating.xml,2051.76,144.0,1907.76,0.0,2051.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,1677.79,144.0,1533.79,0.0,1677.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,1835.62,144.0,1313.48,0.0,1457.48,144.0,234.14,378.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,1811.1,144.0,1293.26,0.0,1437.26,144.0,229.84,373.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,1808.33,144.0,1298.77,0.0,1442.77,144.0,221.56,365.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,1614.03,144.0,1248.82,0.0,1392.82,144.0,77.21,221.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-space-heater-gas-only.xml,1568.61,144.0,1110.86,0.0,1254.86,144.0,169.75,313.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-stove-oil-only.xml,2000.7,144.0,1113.26,0.0,1257.26,0.0,0.0,0.0,0.0,743.44,743.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-stove-wood-pellets-only.xml,1576.11,144.0,1113.26,0.0,1257.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,318.85,318.85,0.0,0.0,0.0 +base-hvac-undersized.xml,1661.55,144.0,1212.0,0.0,1356.0,144.0,161.55,305.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-wall-furnace-elec-only.xml,1854.96,144.0,1710.96,0.0,1854.96,0.0,0.0,0.0,0.0,0.0,0.0,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/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2.csv b/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2.csv new file mode 100644 index 00000000..5ad981f8 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2.csv @@ -0,0 +1,141 @@ +HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Permanent Spa Heater (MBtu),End Use: Electricity: Permanent Spa Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Permanent Spa Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu),Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h),HVAC Design Temperature: Heating (F),HVAC Design Temperature: Cooling (F),HVAC Design Load: Heating: Total (Btu/h),HVAC Design Load: Heating: Ducts (Btu/h),HVAC Design Load: Heating: Windows (Btu/h),HVAC Design Load: Heating: Skylights (Btu/h),HVAC Design Load: Heating: Doors (Btu/h),HVAC Design Load: Heating: Walls (Btu/h),HVAC Design Load: Heating: Roofs (Btu/h),HVAC Design Load: Heating: Floors (Btu/h),HVAC Design Load: Heating: Slabs (Btu/h),HVAC Design Load: Heating: Ceilings (Btu/h),HVAC Design Load: Heating: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Total (Btu/h),HVAC Design Load: Cooling Sensible: Ducts (Btu/h),HVAC Design Load: Cooling Sensible: Windows (Btu/h),HVAC Design Load: Cooling Sensible: Skylights (Btu/h),HVAC Design Load: Cooling Sensible: Doors (Btu/h),HVAC Design Load: Cooling Sensible: Walls (Btu/h),HVAC Design Load: Cooling Sensible: Roofs (Btu/h),HVAC Design Load: Cooling Sensible: Floors (Btu/h),HVAC Design Load: Cooling Sensible: Slabs (Btu/h),HVAC Design Load: Cooling Sensible: Ceilings (Btu/h),HVAC Design Load: Cooling Sensible: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Internal Gains (Btu/h),HVAC Design Load: Cooling Latent: Total (Btu/h),HVAC Design Load: Cooling Latent: Ducts (Btu/h),HVAC Design Load: Cooling Latent: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Latent: Internal Gains (Btu/h) +base-lighting-ceiling-fans.xml,58.475,58.475,36.23,36.23,22.245,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.246,0.802,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.832,0.0,14.011,9.075,0.612,0.0,0.0,0.0,0.0,2119.4,3757.5,3757.5,23.032,18.72,0.0,3.557,3.645,0.513,7.528,0.631,10.101,-12.683,0.0,0.0,0.0,8.298,-0.064,4.807,0.0,0.729,0.0,4.828,-8.905,-2.499,0.0,-0.094,-0.512,-0.059,2.557,-0.038,-1.551,11.73,0.0,0.0,0.0,-6.547,-0.06,-1.206,-3.271,-0.174,0.0,3.03,8.396,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-holiday.xml,58.305,58.305,36.038,36.038,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.533,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2407.8,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-kwh-per-year.xml,59.816,59.816,39.442,39.442,20.375,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.585,0.884,9.015,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.08,0.0,15.41,9.075,0.612,0.0,0.0,0.0,0.0,2414.8,3540.2,3540.2,22.763,19.429,0.0,3.59,3.667,0.516,7.602,0.636,10.162,-12.654,0.0,0.0,0.0,8.406,-0.069,4.817,0.0,0.731,0.0,4.463,-8.891,-4.249,0.0,-0.095,-0.498,-0.057,2.592,-0.035,-1.503,11.743,0.0,0.0,0.0,-6.501,-0.065,-1.196,-3.239,-0.17,0.0,3.31,7.886,3.428,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-mixed.xml,58.283,58.283,36.017,36.017,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2131.0,3378.3,3378.3,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none-ceiling-fans.xml,56.057,56.057,31.039,31.039,25.018,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,3.928,0.725,9.017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,12.637,9.075,0.614,0.0,0.0,0.0,0.0,1722.6,3177.4,3177.4,23.408,17.993,0.0,3.512,3.616,0.509,7.437,0.625,10.031,-12.718,0.0,0.0,0.0,8.185,-0.059,4.798,0.0,0.728,0.0,5.362,-8.928,0.0,0.0,-0.036,-0.463,-0.052,2.696,-0.025,-1.404,11.719,0.0,0.0,0.0,-6.312,-0.055,-1.167,-3.071,-0.168,0.0,2.801,8.374,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none.xml,55.685,55.685,30.646,30.646,25.039,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,4.032,0.75,9.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.45,0.0,13.012,9.075,0.615,0.0,0.0,0.0,0.0,1722.6,3142.6,3142.6,23.408,18.203,0.0,3.512,3.615,0.509,7.439,0.625,10.03,-12.718,0.0,0.0,0.0,8.2,-0.059,4.798,0.0,0.728,0.0,5.366,-8.928,0.0,0.0,0.005,-0.415,-0.045,2.824,-0.014,-1.262,11.719,0.0,0.0,0.0,-6.116,-0.055,-1.132,-2.911,-0.16,0.0,2.915,7.851,0.0,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-location-AMY-2012.xml,66.921,66.921,34.744,34.744,32.177,0.0,0.0,0.0,0.0,0.0,0.0,0.523,0.0,0.0,2.964,0.49,9.424,0.0,0.0,4.524,0.0,0.335,0.0,0.0,0.0,0.0,2.225,0.0,0.0,0.32,0.366,1.517,1.533,0.0,2.121,8.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.128,0.0,8.817,9.508,0.619,0.0,0.0,0.0,0.0,2145.3,2852.8,2852.8,23.49,15.762,0.0,4.266,4.384,0.623,9.837,0.807,12.591,-13.801,0.0,0.0,0.0,10.991,-0.092,5.205,0.0,0.773,0.0,7.113,-10.172,-2.863,0.0,-0.004,-0.342,-0.042,1.616,-0.044,-1.659,9.941,0.0,0.0,0.0,-7.422,-0.082,-0.883,-2.44,-0.097,0.0,2.109,6.66,1.661,1358.5,1000.6,11355.8,2605.8,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18522.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 +base-location-baltimore-md.xml,39.05,39.05,29.842,29.842,9.208,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,5.116,1.035,8.523,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.506,0.0,17.289,8.405,0.66,0.0,0.0,0.0,0.0,1684.4,2550.7,2550.7,13.608,14.211,0.0,3.492,3.345,0.0,0.0,0.722,9.055,-8.541,0.0,0.0,3.31,0.0,-0.336,2.06,0.0,0.803,0.0,1.498,-5.842,-1.3,0.0,-0.135,-0.628,0.0,0.0,-0.007,0.03,12.018,0.0,0.0,-0.954,0.0,-0.329,-0.438,-1.537,-0.211,0.0,1.593,6.742,1.348,1354.8,997.6,10815.2,2664.9,0.0,24000.0,24000.0,0.0,17.24,91.22,18314.0,4508.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,15107.0,1152.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1875.0,594.0,480.0,800.0 +base-location-capetown-zaf.xml,28.099,28.099,27.938,27.938,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,4.286,1.011,7.511,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,16.632,7.296,0.693,0.0,0.0,0.0,0.0,1857.0,2406.2,2406.2,4.202,12.632,0.0,1.596,1.352,0.0,0.0,0.569,4.54,-5.631,0.0,0.0,2.603,0.0,-1.073,0.758,0.0,0.326,0.0,0.023,-4.305,-0.792,0.0,-0.908,-1.638,0.0,0.0,-0.468,-0.617,17.811,0.0,0.0,-4.252,0.0,-1.072,-0.601,-2.04,-0.407,0.0,1.046,8.279,1.855,1354.8,997.6,10368.9,2554.9,0.0,24000.0,24000.0,0.0,41.0,84.38,13255.0,5428.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13719.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,846.0,27.0,19.0,800.0 +base-location-dallas-tx.xml,34.317,34.317,32.595,32.595,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.886,1.862,6.708,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.588,0.0,31.105,6.562,0.573,0.0,0.0,0.0,0.0,1925.7,2832.8,2832.8,9.692,15.098,0.0,1.711,1.591,0.0,0.0,0.368,4.651,-4.907,0.0,0.0,0.0,1.212,-0.34,0.998,0.0,0.383,0.0,0.043,-3.597,-0.743,0.0,0.508,-0.048,0.0,0.0,0.188,2.608,17.264,0.0,0.0,0.0,1.812,-0.335,-0.366,-1.955,-0.099,0.0,0.356,9.56,1.904,1354.8,997.6,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-location-duluth-mn.xml,70.615,70.615,29.721,29.721,40.894,0.0,0.0,0.0,0.0,0.0,0.0,0.435,0.0,0.0,2.369,0.349,11.437,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.056,0.0,5.773,11.397,0.833,0.0,0.0,0.0,0.0,1752.4,2446.6,2446.6,26.512,11.637,0.0,7.03,7.028,0.0,0.0,1.592,19.664,-13.103,0.0,0.0,9.994,0.0,-0.367,6.402,0.0,0.0,0.0,7.572,-6.247,-1.915,0.0,-0.474,-0.828,0.0,0.0,-0.101,-0.953,8.135,0.0,0.0,-1.63,0.0,-0.366,-0.533,-1.022,0.0,0.0,0.371,2.618,0.732,1354.8,997.6,11924.5,2831.6,0.0,36000.0,24000.0,0.0,-13.72,81.14,31260.0,6260.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11642.0,148.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1210.0,246.0,164.0,800.0 +base-location-helena-mt.xml,77.736,77.736,35.272,35.272,42.465,0.0,0.0,0.0,0.0,0.0,0.0,1.04,0.0,0.0,2.417,0.374,10.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.108,0.0,6.467,10.298,0.625,0.0,0.0,0.0,0.0,2236.8,3002.1,3002.1,30.328,14.857,0.0,5.359,5.464,0.773,11.523,1.049,15.462,-15.392,0.0,0.0,0.0,13.841,-0.19,7.82,0.0,1.206,0.0,8.245,-12.135,-3.367,0.0,0.003,-0.26,-0.028,1.289,0.008,-0.496,8.386,0.0,0.0,0.0,-6.087,-0.184,-0.686,-2.363,-0.123,0.0,1.332,4.654,1.142,1354.8,997.6,11614.9,2665.3,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17992.0,5113.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,81.0,0.0,-719.0,800.0 +base-location-honolulu-hi.xml,35.687,35.687,35.687,35.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.905,2.906,4.745,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.787,4.497,0.55,0.0,0.0,0.0,0.0,2105.0,2130.1,2316.4,0.0,13.019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.238,0.753,0.0,0.0,0.303,5.283,20.458,0.0,0.0,0.0,6.02,-0.004,-0.044,-1.672,0.062,0.0,0.744,13.134,2.647,1354.8,997.6,8369.7,2062.3,0.0,12000.0,24000.0,0.0,63.32,89.06,3417.0,592.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1831.0,580.0,452.0,800.0 +base-location-miami-fl.xml,34.859,34.859,34.859,34.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.145,2.708,4.875,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.316,4.634,0.551,0.0,0.0,0.0,0.0,2082.1,2402.6,2402.6,0.0,13.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.018,0.586,0.0,0.0,0.307,4.475,19.646,0.0,0.0,0.0,5.54,-0.004,-0.213,-2.328,-0.004,0.0,0.686,13.135,2.647,1354.8,997.6,8452.7,2082.8,0.0,12000.0,24000.0,0.0,51.62,90.68,8608.0,784.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,646.0,13318.0,-220.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2519.0,954.0,765.0,800.0 +base-location-phoenix-az.xml,38.533,38.533,38.533,38.533,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.372,2.925,5.104,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,53.069,4.873,0.556,0.0,0.0,0.0,0.0,2439.4,3322.0,3322.0,0.564,18.416,0.0,0.703,0.517,0.0,0.0,0.206,2.243,-1.843,0.0,0.0,0.0,-0.076,-0.467,0.365,0.0,0.123,0.0,-0.0,-1.613,-0.275,0.0,1.761,1.401,0.0,0.0,0.802,6.862,24.223,0.0,0.0,0.0,7.005,-0.479,0.01,-3.136,0.116,0.0,0.951,11.527,2.372,1354.8,997.6,8260.4,2035.4,0.0,24000.0,24000.0,0.0,41.36,108.14,13271.0,1050.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1035.0,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 +base-location-portland-or.xml,37.107,37.107,27.57,27.57,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,2.916,0.546,8.939,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.811,0.0,9.05,8.727,0.78,0.0,0.0,0.0,0.0,1685.4,2718.6,2718.6,8.448,14.131,0.0,3.436,3.276,0.0,0.0,0.748,8.756,-8.143,0.0,0.0,6.216,0.0,-0.442,1.469,0.0,0.81,0.0,1.633,-7.49,-1.648,0.0,-0.327,-0.797,0.0,0.0,-0.01,-0.756,10.358,0.0,0.0,-2.965,0.0,-0.439,-0.366,-1.84,-0.257,0.0,0.576,5.094,0.999,1354.8,997.6,11014.7,2714.0,0.0,24000.0,24000.0,0.0,28.58,87.08,17550.0,6260.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 +base-mechvent-balanced.xml,79.465,79.465,37.677,37.677,41.788,0.0,0.0,0.0,0.0,0.0,0.0,0.689,0.0,0.0,4.133,0.763,9.022,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.138,0.0,13.199,9.075,0.62,0.0,0.0,0.0,0.0,2207.2,3774.7,3774.7,32.383,21.477,0.0,3.502,3.716,0.523,7.451,0.654,10.375,-12.838,0.0,0.0,0.0,8.166,-0.114,5.497,0.0,15.075,0.0,8.573,-9.173,-2.568,0.0,0.146,-0.259,-0.023,3.003,0.031,-0.717,11.576,0.0,0.0,0.0,-5.946,-0.11,-1.02,-2.551,-3.554,0.0,3.159,7.611,1.941,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5342.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-bath-kitchen-fans.xml,59.884,59.884,35.932,35.932,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.315,0.817,9.016,0.0,0.0,4.51,0.0,0.334,0.112,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.43,0.0,14.204,9.075,0.614,0.0,0.0,0.0,0.0,2158.0,3589.1,3589.1,24.906,20.53,0.0,3.547,3.643,0.513,7.527,0.631,10.093,-12.692,0.0,0.0,0.0,8.325,-0.059,4.321,0.0,2.474,0.0,5.168,-8.912,-2.501,0.0,-0.04,-0.451,-0.05,2.727,-0.023,-1.37,11.721,0.0,0.0,0.0,-6.275,-0.056,-1.046,-3.038,-0.687,0.0,3.127,7.867,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,72.82,72.82,37.589,37.589,35.231,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,0.0,4.224,0.787,9.02,0.0,0.0,4.51,0.0,0.334,1.701,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.997,0.0,13.643,9.075,0.618,0.0,0.0,0.0,0.0,2174.2,3634.9,3634.9,29.389,21.244,0.0,3.484,3.659,0.515,7.505,0.637,10.165,-12.749,0.0,0.0,0.0,8.338,-0.07,1.505,0.0,13.86,0.0,7.362,-9.0,-2.522,0.0,0.038,-0.367,-0.038,2.917,0.001,-1.081,11.664,0.0,0.0,0.0,-5.979,-0.066,-0.256,-2.751,-3.277,0.0,3.186,7.782,1.988,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-dse.xml,72.948,72.948,38.558,38.558,34.39,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.956,0.883,9.02,0.0,0.0,4.51,0.0,0.334,1.856,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.747,0.0,10.536,9.075,0.618,0.0,0.0,0.0,0.0,2173.6,2782.3,2782.3,21.242,13.45,0.0,3.757,3.654,0.514,7.497,0.636,10.158,-12.737,0.0,0.0,0.0,8.324,-0.073,1.505,0.0,13.737,0.0,0.0,-8.997,-2.521,0.0,0.127,-0.369,-0.038,2.916,0.001,-1.083,11.676,0.0,0.0,0.0,-5.982,-0.069,-0.256,-2.742,-3.246,0.0,0.0,7.785,1.989,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-evap-cooler-only-ducted.xml,34.022,34.022,34.022,34.022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.914,9.084,0.0,0.0,4.51,0.0,0.334,2.748,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.391,9.075,0.687,0.0,0.0,0.0,0.0,2119.8,2031.0,2119.8,0.0,18.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.146,-0.36,-0.036,2.984,-0.004,-1.109,11.85,0.0,0.0,0.0,-6.577,-0.059,-0.257,-2.577,-3.1,0.0,0.643,8.012,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,70.035,70.035,36.238,36.238,33.797,0.0,0.0,0.0,0.0,0.0,0.0,0.558,0.0,0.0,4.135,0.767,9.021,0.0,0.0,4.51,0.0,0.334,0.481,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.654,0.0,13.285,9.075,0.619,0.0,0.0,0.0,0.0,2131.0,3634.9,3634.9,29.39,21.23,0.0,3.517,3.68,0.518,7.479,0.643,10.242,-12.776,0.0,0.0,0.0,8.264,-0.086,1.917,0.0,12.478,0.0,7.088,-9.068,-2.54,0.0,0.094,-0.314,-0.031,2.98,0.015,-0.906,11.637,0.0,0.0,0.0,-5.925,-0.082,-0.255,-2.616,-4.011,0.0,3.109,7.715,1.97,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-supply.xml,72.157,72.157,36.265,36.265,35.891,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.142,0.767,9.021,0.0,0.0,4.51,0.0,0.334,0.467,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.616,0.0,13.285,9.075,0.619,0.0,0.0,0.0,0.0,2161.0,3634.9,3634.9,29.39,21.233,0.0,3.49,3.667,0.516,7.492,0.64,10.201,-12.763,0.0,0.0,0.0,8.307,-0.079,1.508,0.0,14.421,0.0,7.476,-9.032,-2.53,0.0,0.068,-0.339,-0.034,2.956,0.009,-0.986,11.65,0.0,0.0,0.0,-5.933,-0.075,-0.247,-2.659,-3.884,0.0,3.134,7.75,1.98,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis.xml,74.033,74.033,37.524,37.524,36.51,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.173,0.774,9.021,0.0,0.0,4.51,0.0,0.334,1.678,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.195,0.0,13.4,9.075,0.618,0.0,0.0,0.0,0.0,2171.8,3634.9,3634.9,29.388,21.226,0.0,3.49,3.703,0.521,7.473,0.651,10.331,-12.78,0.0,0.0,0.0,8.223,-0.114,1.519,0.0,14.05,0.0,8.491,-9.097,-2.548,0.0,0.144,-0.305,-0.029,2.935,0.02,-0.861,11.633,0.0,0.0,0.0,-6.011,-0.11,-0.235,-2.664,-3.048,0.0,2.435,7.686,1.962,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv-atre-asre.xml,64.925,64.925,37.703,37.703,27.222,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.345,0.822,9.018,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.494,0.0,14.271,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3569.7,3569.7,25.349,20.049,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.906,0.0,5.81,-8.928,-2.504,0.0,-0.027,-0.434,-0.048,2.792,-0.018,-1.306,11.708,0.0,0.0,0.0,-6.172,-0.057,-1.258,-2.954,-0.853,0.0,3.198,7.851,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv.xml,64.928,64.928,37.703,37.703,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.345,0.822,9.018,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.497,0.0,14.271,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3569.8,3569.8,25.35,20.049,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.909,0.0,5.811,-8.928,-2.504,0.0,-0.027,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.258,-2.954,-0.854,0.0,3.198,7.851,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19144.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust-rated-flow-rate.xml,73.699,73.699,36.673,36.673,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.109,0.759,9.021,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.678,0.0,13.135,9.075,0.619,0.0,0.0,0.0,0.0,2164.0,3664.9,3664.9,29.44,21.291,0.0,3.5,3.682,0.518,7.48,0.643,10.243,-12.791,0.0,0.0,0.0,8.263,-0.082,1.462,0.0,15.396,0.0,7.675,-9.072,-2.541,0.0,0.096,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.924,-0.078,-0.232,-2.607,-4.199,0.0,3.12,7.711,1.968,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust.xml,73.699,73.699,36.673,36.673,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.109,0.759,9.021,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.678,0.0,13.135,9.075,0.619,0.0,0.0,0.0,0.0,2164.0,3664.9,3664.9,29.44,21.291,0.0,3.5,3.682,0.518,7.48,0.643,10.243,-12.791,0.0,0.0,0.0,8.263,-0.082,1.462,0.0,15.396,0.0,7.675,-9.072,-2.541,0.0,0.096,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.924,-0.078,-0.232,-2.607,-4.199,0.0,3.12,7.711,1.968,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv-asre.xml,64.926,64.926,37.706,37.706,27.22,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.347,0.823,9.018,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.492,0.0,14.273,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3571.1,3571.1,25.348,20.051,0.0,3.52,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.904,0.0,5.81,-8.928,-2.504,0.0,-0.027,-0.434,-0.048,2.792,-0.018,-1.306,11.708,0.0,0.0,0.0,-6.172,-0.057,-1.258,-2.954,-0.852,0.0,3.2,7.851,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv.xml,64.929,64.929,37.706,37.706,27.223,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.347,0.823,9.018,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.495,0.0,14.273,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3571.2,3571.2,25.349,20.051,0.0,3.52,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.906,0.0,5.81,-8.928,-2.504,0.0,-0.027,-0.434,-0.048,2.792,-0.018,-1.306,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.258,-2.954,-0.853,0.0,3.2,7.851,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19144.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-multiple.xml,80.635,80.635,38.148,38.148,42.487,0.0,0.0,0.0,0.0,0.0,0.0,0.698,0.0,0.0,4.498,0.671,9.024,0.0,0.0,4.51,0.0,0.334,1.576,0.0,0.0,0.405,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.794,0.0,11.595,9.075,0.622,0.0,0.0,0.0,18.0,2271.7,3683.2,3683.2,35.903,23.179,0.0,3.183,3.709,0.522,7.491,0.652,10.33,-12.791,0.0,0.0,0.0,8.289,-0.106,3.845,0.0,9.548,0.0,16.428,-9.091,-2.547,0.0,0.056,-0.213,-0.016,3.197,0.041,-0.605,11.623,0.0,0.0,0.0,-5.617,-0.101,-0.613,0.0,-2.151,-8.166,4.637,7.695,1.963,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24528.0,10278.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-supply.xml,72.281,72.281,36.743,36.743,35.538,0.0,0.0,0.0,0.0,0.0,0.0,0.586,0.0,0.0,4.185,0.778,9.021,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.284,0.0,13.467,9.075,0.618,0.0,0.0,0.0,0.0,2190.3,3664.9,3664.9,29.255,21.273,0.0,3.493,3.667,0.516,7.492,0.64,10.201,-12.763,0.0,0.0,0.0,8.307,-0.08,1.508,0.0,14.154,0.0,7.409,-9.032,-2.53,0.0,0.066,-0.34,-0.034,2.955,0.009,-0.988,11.65,0.0,0.0,0.0,-5.936,-0.076,-0.247,-2.665,-3.723,0.0,3.169,7.75,1.98,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-whole-house-fan.xml,56.665,56.665,34.219,34.219,22.446,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,2.5,0.385,9.024,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.664,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.021,0.0,6.516,9.075,0.622,0.0,0.0,0.0,0.0,2119.4,3398.4,3398.4,23.032,16.068,0.0,3.554,3.643,0.513,7.547,0.63,10.093,-12.683,0.0,0.0,0.0,8.434,-0.057,4.805,0.0,0.729,0.0,4.871,-8.905,-2.499,0.0,0.089,-0.266,-0.023,3.27,0.022,-0.818,11.73,0.0,0.0,0.0,-5.409,-0.053,-0.992,0.0,-0.135,-11.71,1.763,7.881,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-additional-properties.xml,58.105,58.105,35.839,35.839,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-detailed-only.xml,58.105,31.219,35.839,8.953,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-mixed.xml,58.105,31.219,35.839,8.953,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv.xml,58.105,0.842,35.839,-21.424,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-57.264,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills.xml,58.105,58.105,35.839,35.839,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,63.277,43.827,31.485,12.035,31.792,0.0,0.0,0.0,0.0,0.0,0.0,0.524,0.0,0.0,2.247,0.327,2.103,0.0,0.313,4.51,0.0,0.334,1.118,0.0,0.0,1.081,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.745,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-19.45,0.0,0.508,31.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.759,0.0,5.463,10.472,0.696,0.0,9.068,0.0,0.0,2428.2,2958.0,2958.0,26.046,15.207,0.0,3.491,3.687,0.518,7.47,1.119,10.315,-12.806,0.0,0.0,0.0,8.267,-0.095,1.531,0.0,15.069,0.0,2.756,-9.283,-2.557,0.0,0.69,-0.095,0.001,3.444,-0.195,-0.322,11.607,0.0,0.0,0.0,-5.223,-0.091,-0.199,0.0,-3.419,-10.855,0.448,8.628,1.952,1610.4,1574.2,10319.0,3636.6,2.888,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-emissions.xml,58.927,32.041,36.661,9.774,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.822,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2176.0,3446.4,3446.4,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,14.04,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery-scheduled.xml,76.84,68.651,37.574,29.385,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.735,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3486.6,3486.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,1.682,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery.xml,75.105,66.916,35.839,27.65,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators.xml,75.105,66.916,35.839,27.65,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-ground-conductivity.xml,55.797,55.797,35.763,35.763,20.034,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,4.322,0.819,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.76,0.0,14.253,9.075,0.613,0.0,0.0,0.0,0.0,2120.8,3378.7,3378.7,22.146,18.983,0.0,3.593,3.668,0.516,7.311,0.636,10.165,-12.663,0.0,0.0,0.0,6.694,-0.064,4.813,0.0,0.731,0.0,4.399,-8.891,-2.496,0.0,-0.063,-0.474,-0.053,2.388,-0.029,-1.439,11.75,0.0,0.0,0.0,-6.137,-0.059,-1.181,-3.121,-0.168,0.0,3.131,7.886,2.014,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8588.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon.xml,146.02,146.02,68.279,68.279,69.746,0.0,2.499,5.496,0.0,0.0,0.0,0.28,0.0,0.0,5.335,1.068,9.012,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,4.437,3.415,0.0,0.0,0.0,16.981,0.0,0.0,0.0,0.0,0.0,49.967,0.0,0.0,2.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.9,0.0,18.687,9.075,0.609,0.0,0.0,0.0,0.0,3267.1,5193.7,5193.7,21.946,21.105,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.832,0.0,0.734,0.0,3.78,-13.808,-2.35,0.0,-0.198,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.271,-3.573,-0.181,0.0,3.808,13.226,2.158,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon2.xml,92.504,92.504,64.73,64.73,19.779,2.499,0.0,0.0,5.496,0.0,0.0,0.28,0.0,0.0,5.335,1.068,9.012,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,0.887,3.415,0.0,0.0,0.0,16.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.9,0.0,18.687,9.075,0.609,0.0,0.0,0.0,0.0,3218.2,4791.2,4791.2,21.946,21.105,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.832,0.0,0.734,0.0,3.78,-13.808,-2.35,0.0,-0.198,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.271,-3.573,-0.181,0.0,3.808,13.226,2.158,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-none.xml,52.857,52.857,24.609,24.609,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,3.672,0.664,9.019,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.457,0.0,11.508,9.075,0.617,0.0,0.0,0.0,0.0,1514.6,2783.2,2783.2,24.266,17.141,0.0,3.475,3.599,0.506,7.396,0.622,9.986,-12.73,0.0,0.0,0.0,8.165,-0.054,4.795,0.0,0.726,0.0,5.972,-3.801,-2.512,0.0,0.059,-0.368,-0.038,2.973,-0.001,-1.105,11.683,0.0,0.0,0.0,-5.88,-0.05,-1.085,-2.701,-0.152,0.0,2.651,3.706,1.998,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-neighbor-shading-bldgtype-multifamily.xml,26.428,26.428,25.592,25.592,0.835,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.544,0.424,9.536,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.772,0.0,7.007,9.374,0.585,0.0,0.0,0.0,0.0,1639.3,2064.6,2064.6,3.335,8.14,0.0,-0.013,3.83,0.0,0.0,0.417,4.067,-3.186,0.0,0.0,-0.01,0.0,-0.312,1.311,0.0,0.761,0.0,0.0,-5.319,-0.936,0.0,-0.008,-2.783,0.0,0.0,-0.012,-0.688,5.017,0.0,0.0,-0.005,0.0,-0.303,-0.394,-1.178,-0.271,0.0,0.0,6.656,1.09,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-misc-neighbor-shading.xml,63.141,63.141,35.588,35.588,27.553,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,4.077,0.762,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.803,0.0,13.244,9.075,0.615,0.0,0.0,0.0,0.0,2119.3,3303.3,3303.3,23.266,18.284,0.0,3.479,3.709,0.541,7.36,0.776,10.707,-8.74,0.0,0.0,0.0,7.861,-0.057,4.786,0.0,0.724,0.0,5.781,-8.918,-2.502,0.0,-0.012,-0.467,-0.054,2.778,-0.04,-1.339,10.323,0.0,0.0,0.0,-6.182,-0.052,-1.149,-2.99,-0.162,0.0,2.908,7.861,2.008,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-shielding-of-home.xml,57.766,57.766,35.979,35.979,21.787,0.0,0.0,0.0,0.0,0.0,0.0,0.359,0.0,0.0,4.471,0.857,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.403,0.0,14.931,9.075,0.613,0.0,0.0,0.0,0.0,2130.6,3486.4,3486.4,23.012,18.839,0.0,3.562,3.647,0.513,7.535,0.631,10.101,-12.683,0.0,0.0,0.0,8.308,-0.061,4.424,0.0,0.73,0.0,4.741,-8.899,-2.498,0.0,-0.068,-0.476,-0.054,2.649,-0.03,-1.451,11.73,0.0,0.0,0.0,-6.41,-0.058,-1.066,-2.61,-0.168,0.0,3.215,7.878,2.012,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31389.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18685.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,106.0,0.0,-694.0,800.0 +base-misc-unit-multiplier.xml,581.057,581.057,358.392,358.392,222.666,0.0,0.0,0.0,0.0,0.0,0.0,3.673,0.0,0.0,43.524,8.273,90.16,0.0,0.0,45.096,0.0,3.337,0.0,0.0,0.0,0.0,22.196,0.0,0.0,3.185,3.653,15.127,15.28,0.0,21.142,83.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,222.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,208.521,0.0,143.943,90.753,6.137,0.0,0.0,0.0,0.0,21193.7,33725.5,33725.5,230.319,189.27,0.0,35.573,36.457,5.131,75.308,6.309,101.023,-126.896,0.0,0.0,0.0,83.175,-0.635,48.076,0.0,7.296,0.0,48.328,-89.081,-24.996,0.0,-0.536,-4.632,-0.518,26.861,-0.262,-14.064,117.236,0.0,0.0,0.0,-63.455,-0.596,-11.7,-31.063,-1.655,0.0,31.45,78.695,20.1,13548.2,9976.1,111715.5,25635.3,0.0,360000.0,240000.0,0.0,6.8,91.76,322350.0,85950.0,75080.0,0.0,5750.0,68400.0,0.0,0.0,19490.0,21710.0,45970.0,187870.0,53290.0,70370.0,0.0,2070.0,2650.0,0.0,0.0,0.0,20100.0,6190.0,33200.0,0.0,0.0,0.0,0.0 +base-misc-usage-multiplier.xml,125.956,125.956,50.676,50.676,68.084,0.0,2.249,4.947,0.0,0.0,0.0,0.34,0.0,0.0,4.621,0.893,8.171,0.0,0.0,4.059,0.0,0.3,0.0,0.0,0.0,0.0,1.998,2.151,0.0,0.287,0.329,1.361,1.375,0.0,1.903,7.537,0.0,0.0,0.0,8.286,3.993,3.073,0.0,0.0,0.0,20.596,0.0,0.0,0.0,0.0,0.0,44.97,0.0,0.0,2.518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.287,0.0,15.545,8.168,0.612,0.0,0.0,0.0,0.0,2729.6,4375.5,4375.5,22.733,19.545,0.0,3.581,3.659,0.515,7.576,0.633,10.138,-12.664,0.0,0.0,0.0,8.363,-0.065,4.863,0.0,0.658,0.0,4.503,-10.586,-2.246,0.0,-0.093,-0.496,-0.056,2.596,-0.035,-1.507,11.751,0.0,0.0,0.0,-6.491,-0.062,-1.211,-3.25,-0.153,0.0,3.323,9.606,1.813,1219.3,897.9,10054.4,2307.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-pv-battery-ah.xml,58.927,32.041,36.661,9.774,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.822,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2176.0,3446.4,3446.4,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,14.04,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-garage.xml,59.342,32.456,35.408,8.522,23.934,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.073,0.534,9.117,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.871,23.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.408,0.0,9.132,9.075,0.722,0.0,0.0,0.0,0.0,2200.9,2690.3,2690.3,18.031,11.746,0.0,3.532,3.792,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.368,0.0,0.0,0.0,3.763,-6.763,-2.508,0.0,0.104,-0.281,-0.037,2.417,-0.001,-1.134,8.269,0.0,0.0,0.0,-5.68,-0.041,-1.226,-2.106,0.0,0.0,1.329,5.683,2.002,1354.8,997.6,11171.6,2563.5,17.453,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15522.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-round-trip-efficiency.xml,60.287,33.4,38.021,11.134,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,2.182,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2301.3,3582.5,3582.5,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,4.399,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-scheduled.xml,59.84,32.954,37.574,10.687,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,1.735,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3486.6,3486.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,5.591,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery.xml,58.927,32.041,36.661,9.774,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.822,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2176.0,3446.4,3446.4,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,14.04,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery-scheduled.xml,76.84,41.764,37.574,2.498,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,1.735,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3486.6,3486.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,16.862,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery.xml,75.952,40.877,36.686,1.61,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,0.847,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2165.1,3435.5,3435.5,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,84.903,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators.xml,75.105,40.03,35.839,0.764,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,-8.189,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv.xml,58.105,31.219,35.839,8.953,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0-runperiod-1-month.xml,8.7747,8.7747,0.4299,0.4299,8.3448,0.0,0.0,0.0,0.0,0.0,0.0,0.1377,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.3448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.8115,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.16,0.0,556.16,26.8895,0.0,0.0,0.6029,0.6429,0.0909,1.7457,0.1095,1.7779,-1.9884,0.0,0.0,0.0,2.2351,-0.0005,1.0002,0.0,0.0,0.0,1.7427,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0.xml,41.359,41.359,7.316,7.316,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.361,0.597,0.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.888,0.0,10.821,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2211.7,2211.7,25.495,15.471,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.996,-0.063,5.417,0.0,0.0,0.0,7.057,-1.409,0.0,0.0,0.152,-0.28,-0.026,3.179,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.425,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon.xml,101.016,101.016,51.977,51.977,41.133,0.0,2.609,5.297,0.0,0.0,0.0,0.345,0.0,0.0,4.544,0.875,3.885,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,3.032,2.994,0.0,0.0,0.0,20.911,0.0,0.0,0.0,0.0,0.0,18.628,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.583,0.0,15.423,3.562,0.613,0.0,0.0,0.0,0.0,2604.8,4502.7,4502.7,22.989,19.475,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.814,0.0,0.729,0.0,4.575,-10.198,-2.496,0.0,-0.094,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.194,-3.22,-0.169,0.0,3.32,9.248,2.014,777.8,496.4,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon2.xml,79.962,79.962,49.551,49.551,22.505,2.609,0.0,0.0,5.297,0.0,0.0,0.345,0.0,0.0,4.544,0.875,3.885,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,0.606,2.994,0.0,0.0,0.0,20.911,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.583,0.0,15.423,3.562,0.613,0.0,0.0,0.0,0.0,2406.4,4243.0,4243.0,22.989,19.475,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.814,0.0,0.729,0.0,4.575,-10.198,-2.496,0.0,-0.094,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.194,-3.22,-0.169,0.0,3.32,9.248,2.014,777.8,496.4,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1.xml,52.727,52.727,28.356,28.356,24.371,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,4.025,0.749,3.887,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.824,0.0,13.184,3.562,0.615,0.0,0.0,0.0,0.0,1640.1,3190.1,3190.1,23.634,18.227,0.0,3.532,3.634,0.511,7.494,0.629,10.079,-12.698,0.0,0.0,0.0,8.289,-0.064,4.803,0.0,0.727,0.0,5.251,-7.189,-2.504,0.0,-0.015,-0.432,-0.047,2.784,-0.017,-1.299,11.715,0.0,0.0,0.0,-6.191,-0.06,-1.136,-2.934,-0.161,0.0,2.955,6.197,2.006,777.8,496.4,4208.3,833.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,69.374,49.122,39.86,19.609,29.514,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,2.364,0.354,6.918,0.0,0.326,4.51,0.0,0.334,1.118,0.0,0.0,1.107,2.36,0.0,0.0,0.769,0.544,4.047,2.057,0.745,3.051,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-20.251,0.0,0.396,29.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.625,0.0,5.884,18.166,0.644,0.0,11.901,0.0,0.0,3043.8,3199.7,3199.7,25.599,15.561,0.0,3.796,3.691,0.519,7.524,0.645,10.259,-12.764,0.0,0.0,0.0,8.385,-0.078,1.524,0.0,14.999,0.0,2.562,-11.178,-2.536,0.0,0.218,-0.167,-0.01,3.395,0.049,-0.49,11.649,0.0,0.0,0.0,-5.263,-0.074,-0.214,0.0,-3.588,-11.536,0.48,10.475,1.974,2592.1,2706.5,20694.5,5541.1,1.847,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-all-10-mins.xml,59.48,59.48,36.083,36.083,23.397,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.525,0.862,9.022,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.91,0.0,14.938,9.053,0.638,0.0,0.0,0.333,1.0,9422.1,10695.3,10695.3,37.366,22.441,0.0,3.607,3.669,0.517,7.596,0.642,10.189,-12.601,0.0,0.0,0.0,8.33,-0.062,5.307,0.0,0.775,0.0,5.11,-8.969,-2.509,0.0,-0.176,-0.489,-0.056,2.704,-0.032,-1.437,11.752,0.0,0.0,0.0,-6.329,-0.058,-1.279,-3.004,-0.179,0.0,3.367,8.308,2.0,1354.7,998.0,11252.3,2582.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,33.446,33.446,28.601,28.601,4.845,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.259,0.559,7.324,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.538,0.0,9.775,7.3,0.56,0.0,0.0,0.5,0.5,9397.2,10434.9,10434.9,41.543,22.033,0.0,2.617,2.464,0.344,4.289,0.336,6.501,-12.497,0.0,0.0,0.0,3.691,-0.104,3.39,0.0,0.384,0.0,1.013,-6.566,-1.596,0.0,-0.246,-0.599,-0.072,2.363,-0.065,-1.808,11.861,0.0,0.0,0.0,-7.639,-0.059,-1.386,-4.977,-0.212,0.0,2.31,8.448,2.023,1141.2,883.5,9207.0,2112.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps.xml,42.356,42.356,34.304,34.304,8.052,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.271,0.562,9.051,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.54,0.0,9.824,9.053,0.67,0.0,0.0,0.0,0.5,9393.8,10437.8,10437.8,31.865,22.036,0.0,2.918,2.81,0.394,5.403,0.421,7.525,-12.492,0.0,0.0,0.0,5.506,-0.059,3.865,0.0,0.581,0.0,1.73,-8.86,-2.486,0.0,-0.249,-0.603,-0.072,2.368,-0.066,-1.818,11.861,0.0,0.0,0.0,-7.571,-0.058,-1.388,-4.99,-0.212,0.0,2.32,8.448,2.023,1354.7,998.0,11253.5,2582.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,58.889,58.889,35.997,35.997,22.893,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.444,0.848,8.936,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.435,0.0,14.736,8.987,0.615,0.0,0.0,0.0,0.0,6629.1,7170.6,9091.3,31.35,21.296,0.0,3.558,3.649,0.513,7.536,0.632,10.11,-12.685,0.0,0.0,0.0,8.318,-0.06,5.322,0.0,0.764,0.0,4.945,-8.988,-2.501,0.0,-0.053,-0.46,-0.051,2.692,-0.025,-1.398,11.729,0.0,0.0,0.0,-6.34,-0.055,-1.287,-3.093,-0.189,0.0,3.21,8.364,1.98,1002.6,945.2,11359.3,2606.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,44.519,44.519,30.174,30.174,14.345,0.0,0.0,0.0,0.0,0.0,0.0,0.237,0.0,0.0,4.414,0.841,7.293,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.438,0.0,14.618,7.313,0.517,0.0,0.0,17.0,0.0,6231.1,5670.7,6231.1,36.507,19.784,0.0,3.075,3.07,0.431,5.717,0.489,8.386,-12.686,0.0,0.0,0.0,5.187,-0.154,4.374,0.0,0.513,0.0,3.019,-6.68,-1.621,0.0,-0.053,-0.461,-0.052,2.676,-0.025,-1.397,11.731,0.0,0.0,0.0,-6.442,-0.057,-1.272,-3.091,-0.186,0.0,3.186,8.28,2.006,1141.2,883.5,9132.4,2095.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,57.557,57.557,30.764,30.764,26.793,0.0,0.0,0.0,0.0,0.0,0.0,0.442,0.0,0.0,4.432,0.846,7.368,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.09,0.0,14.697,7.303,0.614,0.0,0.0,0.0,0.0,4487.7,5677.0,5677.0,30.776,19.84,0.0,3.504,3.622,0.51,7.453,0.626,10.041,-12.679,0.0,0.0,0.0,8.149,-0.064,5.305,0.0,0.514,0.0,5.697,-6.297,-1.615,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.358,-0.059,-1.276,-3.102,-0.186,0.0,3.2,8.286,2.008,1141.2,883.5,9118.0,2092.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic.xml,58.825,58.825,35.956,35.956,22.869,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.433,0.846,9.013,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.414,0.0,14.699,9.071,0.614,0.0,0.0,0.0,0.0,4690.7,5677.2,5677.2,30.649,19.842,0.0,3.553,3.644,0.513,7.53,0.631,10.102,-12.674,0.0,0.0,0.0,8.308,-0.063,5.265,0.0,0.777,0.0,4.943,-8.954,-2.502,0.0,-0.059,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.355,-0.059,-1.276,-3.103,-0.186,0.0,3.2,8.286,2.008,1354.7,998.0,11168.6,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-schedules.xml,56.935,56.935,35.238,35.238,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.859,0.728,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.946,0.0,12.403,9.075,0.615,0.0,0.0,101.0,51.0,2155.4,3745.3,3745.3,34.947,20.81,0.0,3.517,3.579,0.503,7.523,0.608,9.828,-12.674,0.0,0.0,0.0,8.679,0.006,4.652,0.0,0.727,0.0,4.499,-8.859,-2.496,0.0,-0.072,-0.501,-0.058,2.616,-0.042,-1.59,11.74,0.0,0.0,0.0,-6.667,-0.004,-1.223,-3.406,-0.174,0.0,2.447,7.92,2.014,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-setbacks.xml,56.304,56.304,35.388,35.388,20.915,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,3.994,0.755,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.498,0.0,13.025,9.075,0.616,0.0,0.0,0.0,8.0,2130.8,3634.6,3634.6,25.333,21.331,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.196,-0.023,4.639,0.0,0.724,0.0,4.386,-8.884,-2.501,0.0,-0.055,-0.497,-0.057,2.572,-0.04,-1.577,11.697,0.0,0.0,0.0,-6.643,-0.024,-1.204,-3.355,-0.177,0.0,2.591,7.896,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints.xml,41.316,41.316,34.027,34.027,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.065,0.52,9.046,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.82,0.0,9.128,9.075,0.645,0.0,0.0,0.0,0.0,2100.9,3176.1,3176.1,17.397,16.187,0.0,2.853,2.787,0.39,5.357,0.411,7.457,-12.563,0.0,0.0,0.0,5.504,-0.06,3.479,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.124,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.261,-5.126,-0.188,0.0,2.084,8.003,2.036,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage.xml,54.84,54.84,32.427,32.427,22.412,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,3.384,0.607,8.406,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.989,0.0,10.641,8.454,0.58,0.0,0.0,0.0,4.0,1990.4,5801.3,5801.3,23.066,22.78,0.0,3.554,3.643,0.513,7.524,0.63,10.091,-12.684,0.0,0.0,0.0,8.289,-0.061,4.76,0.0,0.795,0.0,4.86,-8.902,-2.367,0.0,-0.096,-0.536,-0.062,2.488,-0.045,-1.632,11.731,0.0,0.0,0.0,-6.63,-0.057,-1.233,-3.892,-0.174,0.0,2.296,6.936,1.794,1241.6,923.2,10291.7,2361.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy.xml,57.162,57.162,30.552,30.552,26.61,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,4.38,0.834,7.366,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.92,0.0,14.509,7.302,0.614,0.0,0.0,0.0,0.0,1965.3,3394.2,3394.2,23.124,19.007,0.0,3.503,3.619,0.509,7.446,0.625,10.032,-12.688,0.0,0.0,0.0,8.141,-0.065,4.961,0.0,0.552,0.0,5.667,-6.163,-1.548,0.0,-0.057,-0.466,-0.052,2.681,-0.027,-1.412,11.729,0.0,0.0,0.0,-6.357,-0.06,-1.149,-3.111,-0.2,0.0,3.166,7.872,2.14,1122.2,811.7,9189.2,2108.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple.xml,58.275,58.275,35.874,35.874,22.401,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,4.38,0.834,9.016,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.978,0.0,14.513,9.075,0.614,0.0,0.0,0.0,0.0,1984.0,3392.4,3392.4,23.066,18.992,0.0,3.554,3.642,0.513,7.525,0.63,10.091,-12.684,0.0,0.0,0.0,8.301,-0.061,4.804,0.0,0.729,0.0,4.858,-8.902,-2.367,0.0,-0.057,-0.466,-0.052,2.68,-0.027,-1.418,11.729,0.0,0.0,0.0,-6.358,-0.057,-1.173,-3.114,-0.166,0.0,3.166,7.876,2.141,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-calendar-year-custom.xml,58.082,58.082,35.81,35.81,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.328,0.822,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.298,9.075,0.614,0.0,0.0,0.0,0.0,2119.6,3382.2,3382.2,23.032,18.929,0.0,3.557,3.645,0.513,7.53,0.631,10.1,-12.683,0.0,0.0,0.0,8.316,-0.063,4.807,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.048,-0.46,-0.051,2.707,-0.025,-1.394,11.73,0.0,0.0,0.0,-6.328,-0.059,-1.165,-3.252,-0.165,0.0,3.11,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-custom.xml,58.106,58.106,35.839,35.839,22.267,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.853,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-disabled.xml,58.077,58.077,35.824,35.824,22.254,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.339,0.824,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.84,0.0,14.338,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3295.8,3295.8,23.032,18.536,0.0,3.556,3.643,0.513,7.531,0.63,10.089,-12.683,0.0,0.0,0.0,8.311,-0.06,4.804,0.0,0.727,0.0,4.829,-8.9,-2.496,0.0,-0.053,-0.465,-0.052,2.684,-0.027,-1.417,11.73,0.0,0.0,0.0,-6.348,-0.056,-1.175,-3.132,-0.163,0.0,3.122,7.877,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-runperiod-1-month.xml,9.3245,9.3245,2.9023,2.9023,6.4222,0.0,0.0,0.0,0.0,0.0,0.0,0.1059,0.0,0.0,0.1034,0.0,0.8277,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.0126,0.0,0.0,0.8385,0.0511,0.0,0.0,0.0,0.0,2100.14,0.0,2100.14,24.5039,0.0,0.0,0.6218,0.6514,0.0921,1.7783,0.1114,1.8005,-1.9863,0.0,0.0,0.0,2.3104,0.001,0.8916,0.0,0.1316,0.0,1.3929,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,907.03,208.14,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-temperature-capacitance-multiplier.xml,57.995,57.995,35.736,35.736,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.268,0.808,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.846,0.0,14.05,9.075,0.614,0.0,0.0,0.0,0.0,2110.3,3355.2,3355.2,22.973,18.841,0.0,3.626,3.641,0.512,7.527,0.628,10.073,-12.689,0.0,0.0,0.0,8.292,-0.053,4.803,0.0,0.728,0.0,4.827,-8.896,-2.498,0.0,-0.221,-0.462,-0.052,2.69,-0.027,-1.419,11.724,0.0,0.0,0.0,-6.346,-0.05,-1.179,-3.176,-0.164,0.0,2.994,7.882,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,59.49,59.49,36.077,36.077,23.413,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.524,0.862,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.924,0.0,14.931,9.074,0.616,0.0,0.0,0.333,1.0,8643.3,8929.7,9252.7,37.369,22.44,0.0,3.607,3.669,0.517,7.596,0.642,10.189,-12.601,0.0,0.0,0.0,8.33,-0.062,5.307,0.0,0.775,0.0,5.113,-8.958,-2.509,0.0,-0.176,-0.489,-0.056,2.705,-0.032,-1.437,11.752,0.0,0.0,0.0,-6.328,-0.058,-1.279,-3.002,-0.179,0.0,3.366,8.296,2.0,1354.7,998.0,11182.0,2565.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,59.411,59.411,36.07,36.07,23.341,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.522,0.861,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.857,0.0,14.924,9.071,0.614,0.0,0.0,0.0,0.167,6063.1,7308.9,7308.9,35.1,21.787,0.0,3.607,3.669,0.517,7.594,0.642,10.187,-12.601,0.0,0.0,0.0,8.326,-0.062,5.255,0.0,0.771,0.0,5.101,-8.955,-2.502,0.0,-0.176,-0.489,-0.056,2.703,-0.033,-1.438,11.752,0.0,0.0,0.0,-6.332,-0.057,-1.264,-3.005,-0.186,0.0,3.364,8.284,2.008,1354.7,998.0,11168.8,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins.xml,58.711,58.711,35.951,35.951,22.76,0.0,0.0,0.0,0.0,0.0,0.0,0.375,0.0,0.0,4.439,0.842,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.313,0.0,14.613,9.075,0.614,0.0,0.0,0.0,0.0,3549.1,4910.1,4910.1,23.32,18.84,0.0,3.612,3.669,0.517,7.595,0.642,10.185,-12.61,0.0,0.0,0.0,8.335,-0.06,4.791,0.0,0.735,0.0,4.995,-8.905,-2.499,0.0,-0.171,-0.487,-0.056,2.709,-0.032,-1.435,11.744,0.0,0.0,0.0,-6.317,-0.055,-1.156,-3.002,-0.172,0.0,3.307,7.873,2.011,1354.8,997.6,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-30-mins.xml,58.485,58.485,35.902,35.902,22.584,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.401,0.835,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.148,0.0,14.49,9.075,0.614,0.0,0.0,0.0,0.0,2158.3,3743.7,3743.7,23.223,18.848,0.0,3.594,3.661,0.516,7.566,0.639,10.168,-12.631,0.0,0.0,0.0,8.321,-0.062,4.793,0.0,0.733,0.0,4.932,-8.905,-2.498,0.0,-0.14,-0.482,-0.055,2.704,-0.031,-1.435,11.747,0.0,0.0,0.0,-6.329,-0.058,-1.16,-3.05,-0.17,0.0,3.22,7.873,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base.xml,58.105,58.105,35.839,35.839,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +house001.xml,86.191,86.191,46.895,46.895,39.296,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,15.71,4.321,0.0,0.0,0.0,7.38,0.315,0.652,0.448,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,3.284,1.794,0.0,2.585,6.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.249,0.0,17.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.043,0.0,50.722,10.416,2.681,0.0,0.0,0.0,0.0,1853.7,6551.3,6551.3,37.693,42.27,0.495,1.999,7.301,0.422,0.0,0.982,7.164,-4.978,0.0,0.0,0.485,1.29,-0.286,4.306,0.0,5.162,0.0,3.187,-6.727,-2.915,0.558,1.97,3.666,0.303,0.0,0.228,1.548,11.487,0.0,0.0,0.516,6.779,-0.271,-0.434,-1.439,-0.779,0.0,10.726,11.623,4.465,2104.5,2144.0,14468.7,4385.1,0.0,90000.0,60000.0,0.0,25.88,98.42,62095.0,24402.0,7740.0,0.0,942.0,7599.0,453.0,609.0,9636.0,2236.0,8478.0,118221.0,90310.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6860.0,3501.0,2159.0,1200.0 +house002.xml,67.927,67.927,40.704,40.704,27.223,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,14.661,3.362,0.0,0.0,0.0,6.381,0.315,0.594,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,5.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.737,0.0,13.485,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.137,0.0,40.097,7.526,2.891,0.0,0.0,0.0,0.0,1553.9,5237.2,5237.2,23.852,29.59,0.0,2.552,5.064,0.0,0.0,0.846,5.729,-4.087,0.0,0.0,0.0,1.809,-0.161,1.581,0.0,3.794,0.0,1.353,-5.039,-2.475,0.0,3.059,2.765,0.0,0.0,0.409,0.354,8.652,0.0,0.0,0.0,8.391,-0.154,-0.19,-1.077,-0.66,0.0,5.882,8.963,3.907,1610.9,1574.7,9989.4,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,47925.0,15312.0,6070.0,0.0,752.0,4731.0,0.0,0.0,12952.0,3120.0,4987.0,35212.0,14864.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3848.0,1750.0,1297.0,800.0 +house003.xml,68.425,68.425,40.172,40.172,28.253,0.0,0.0,0.0,0.0,0.0,0.0,0.168,0.0,0.0,12.875,3.518,0.0,0.0,0.0,6.875,0.315,0.623,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.007,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.166,0.0,41.88,7.526,2.691,0.0,0.0,0.0,0.0,1632.3,5416.1,5416.1,26.254,34.245,0.653,2.805,4.678,0.0,0.0,0.98,6.254,-3.935,0.0,0.0,0.0,1.138,-0.182,1.997,0.0,3.942,0.0,1.585,-5.248,-2.676,0.786,3.013,2.567,0.0,0.0,0.638,1.037,9.843,0.0,0.0,0.0,6.458,-0.174,-0.231,-1.127,-0.664,0.0,6.526,9.233,4.2,1610.9,1574.7,9989.3,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,48412.0,15944.0,6644.0,0.0,892.0,4431.0,610.0,0.0,11450.0,2908.0,5532.0,43305.0,19002.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3967.0,1750.0,1416.0,800.0 +house004.xml,136.117,136.117,75.737,75.737,60.38,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,29.546,9.324,0.0,0.0,0.0,11.562,0.315,0.893,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,1.633,2.35,11.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,44.232,0.0,16.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.769,0.0,109.106,8.985,3.512,0.0,0.0,0.0,98.0,3134.1,7528.2,7528.2,54.639,51.907,0.127,5.509,11.301,0.0,0.0,1.239,13.609,-5.79,0.0,0.0,0.0,3.103,-0.775,4.914,0.0,6.221,0.0,7.031,-7.178,-3.849,0.197,6.683,11.63,0.0,0.0,0.509,7.409,17.81,0.0,0.0,0.0,18.787,-0.762,0.999,0.0,1.804,0.0,21.466,15.179,7.713,1857.7,1859.3,12229.1,3983.9,0.0,80000.0,60000.0,0.0,25.88,98.42,76552.0,20973.0,11324.0,0.0,882.0,8959.0,101.0,0.0,19021.0,5929.0,9362.0,54906.0,19420.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4612.0,1284.0,2328.0,1000.0 +house005.xml,94.808,94.808,53.42,53.42,41.389,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,18.457,5.11,0.0,0.0,0.0,9.155,0.315,0.754,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,8.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.187,0.0,15.202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.237,0.0,61.135,8.985,2.732,0.0,0.0,0.0,1.0,2076.2,7612.9,7612.9,46.019,53.178,0.0,3.051,8.217,0.269,0.0,1.36,9.437,-6.696,0.0,0.0,0.398,1.313,-0.377,5.064,0.0,5.092,0.0,4.318,-6.822,-3.611,0.0,2.951,4.206,0.21,0.0,0.265,2.282,15.363,0.0,0.0,0.41,7.446,-0.36,-0.513,-1.822,-0.766,0.0,14.63,11.562,5.544,1857.7,1859.4,12229.0,3983.9,0.0,90000.0,60000.0,0.0,25.88,98.42,71542.0,26962.0,10216.0,0.0,1260.0,8257.0,0.0,480.0,11638.0,3312.0,9418.0,67659.0,32921.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6854.0,3501.0,2354.0,1000.0 +house006.xml,139.133,139.133,31.835,31.835,107.297,0.0,0.0,0.0,0.0,0.0,0.0,1.869,0.0,0.0,3.01,0.344,0.0,0.0,0.0,8.687,0.29,0.705,3.138,0.0,0.0,0.0,1.707,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.114,8.883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.45,0.0,20.136,2.642,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.414,0.0,8.172,13.084,3.277,0.0,0.0,0.0,0.0,1987.1,2448.6,2448.6,40.493,14.968,0.0,4.264,22.276,1.991,37.138,1.864,17.625,-9.441,0.0,0.0,0.0,9.272,-0.322,9.531,0.0,4.369,0.0,0.0,-14.532,-6.438,0.0,0.172,-0.806,-0.046,2.784,-0.086,-0.558,4.335,0.0,0.0,0.0,-3.919,-0.321,-0.518,-0.614,-0.076,0.0,0.0,5.683,2.249,1610.9,1574.7,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,43331.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5256.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1566.0,0.0,766.0,800.0 +house007.xml,138.649,138.649,33.963,33.963,104.686,0.0,0.0,0.0,0.0,0.0,0.0,1.629,0.0,0.0,2.587,0.4,0.0,0.0,0.0,10.299,0.315,0.82,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.019,0.0,23.281,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.638,0.0,6.04,15.632,3.268,0.0,0.0,0.0,0.0,2191.9,2549.6,2549.6,39.657,13.506,0.0,4.727,23.696,4.449,10.124,1.499,18.834,-9.346,0.0,0.0,0.076,11.539,-0.372,6.119,0.0,20.826,0.0,2.861,-17.172,-7.734,0.0,0.2,-0.721,-0.058,0.561,-0.047,-0.336,4.603,0.0,0.0,-0.009,-4.044,-0.368,-0.193,-0.584,-1.905,0.0,0.108,6.368,2.565,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,43727.0,5470.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12281.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2145.0,404.0,741.0,1000.0 +house008.xml,182.998,182.998,39.329,39.329,143.669,0.0,0.0,0.0,0.0,0.0,0.0,2.476,0.0,0.0,3.735,0.557,0.0,0.0,0.0,11.006,0.315,0.861,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.234,0.0,26.374,3.452,3.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.871,0.0,10.909,18.129,3.213,0.0,0.0,0.0,0.0,2472.9,3401.6,3401.6,54.892,20.571,0.0,7.246,27.501,4.711,24.32,1.195,21.291,-7.816,0.0,0.0,1.287,17.853,-0.393,18.343,0.0,6.388,0.0,7.879,-18.61,-8.163,0.0,0.292,-1.156,-0.067,1.6,-0.09,-0.438,5.412,0.0,0.0,-0.112,-2.804,-0.393,-0.996,-0.687,-0.286,0.0,0.569,7.342,2.843,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,62679.0,10615.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18542.0,2434.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2481.0,158.0,1123.0,1200.0 +house009.xml,153.781,153.781,34.101,34.101,119.68,0.0,0.0,0.0,0.0,0.0,0.0,2.021,0.0,0.0,2.49,0.304,0.0,0.0,0.0,10.271,0.315,0.819,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.006,0.0,23.288,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.809,0.0,5.739,15.632,3.274,0.0,0.0,0.0,0.0,2226.3,2666.2,2666.2,44.142,14.399,0.0,5.112,28.422,4.319,13.051,2.253,18.888,-8.18,0.0,0.0,0.266,15.624,-0.398,8.745,0.0,21.44,0.0,0.0,-17.429,-7.833,0.0,0.24,-0.73,-0.035,0.709,-0.078,-0.206,4.6,0.0,0.0,-0.029,-4.154,-0.395,-0.262,-0.531,-1.82,0.0,0.0,6.091,2.438,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1793.0,0.0,793.0,1000.0 +house010.xml,153.499,153.499,37.667,37.667,115.832,0.0,0.0,0.0,0.0,0.0,0.0,1.85,0.0,0.0,3.011,0.285,0.0,0.0,0.0,10.986,0.315,0.86,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.398,0.0,26.374,3.452,3.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.644,0.0,7.883,18.129,3.212,0.0,0.0,0.0,0.0,2408.7,2855.8,2855.8,45.335,15.815,0.876,4.938,25.514,4.913,9.775,1.266,22.965,-9.184,0.0,0.0,0.928,11.368,-0.399,19.584,0.0,6.404,0.0,4.879,-18.629,-8.154,0.022,0.21,-0.793,-0.102,0.536,-0.077,-0.783,5.164,0.0,0.0,-0.052,-4.233,-0.396,-1.034,-0.682,-0.272,0.0,0.357,7.304,2.833,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10514.0,14181.0,1891.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2621.0,261.0,1159.0,1200.0 +house011.xml,45.142,45.142,45.142,45.142,0.0,0.0,0.0,0.0,0.0,0.0,6.965,0.634,0.121,0.006,8.457,2.321,10.452,0.0,0.0,4.905,0.0,0.509,0.003,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.0,0.0,1.661,0.0,2.35,3.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.718,0.128,26.135,9.325,1.123,0.0,0.0,0.0,326.0,5019.5,3218.5,5019.5,18.28,15.961,0.0,2.69,5.465,0.0,0.0,1.636,3.459,-3.192,0.0,0.0,1.872,0.0,-0.39,1.843,0.0,5.406,0.0,4.012,-6.004,-2.079,0.0,1.643,1.235,0.0,0.0,0.147,0.293,5.656,0.0,0.0,0.73,0.0,-0.389,-0.201,-0.182,-1.023,0.0,6.662,8.878,2.825,0.0,1859.4,12951.3,4219.2,0.0,24000.0,18000.0,34120.0,24.62,91.58,20648.0,6685.0,2440.0,0.0,1007.0,3251.0,0.0,546.0,0.0,1795.0,4923.0,21013.0,7842.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3065.0,463.0,1602.0,1000.0 +house012.xml,35.83,35.83,35.83,35.83,0.0,0.0,0.0,0.0,0.0,0.0,4.728,0.25,0.0,0.0,5.898,1.493,8.943,0.0,0.0,4.378,0.0,0.478,0.003,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.0,0.0,1.528,0.0,2.114,3.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.965,0.0,16.413,7.782,1.158,0.0,0.0,0.0,0.0,3020.8,2653.5,3020.8,11.072,11.211,0.0,2.374,4.758,0.0,0.0,0.627,2.68,-1.832,0.0,0.0,2.039,0.0,-0.25,1.648,0.0,4.356,0.0,0.323,-4.814,-1.943,0.0,1.715,1.079,0.0,0.0,-0.037,0.46,3.51,0.0,0.0,1.564,0.0,-0.25,-0.164,-0.165,-0.748,0.0,0.276,6.81,2.435,0.0,1574.7,10579.4,3728.3,0.0,23400.0,23200.0,0.0,24.62,91.58,13915.0,1328.0,1906.0,0.0,333.0,2909.0,0.0,1767.0,0.0,1513.0,4159.0,11890.0,639.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2498.0,370.0,1328.0,800.0 +house013.xml,30.573,30.573,30.573,30.573,0.0,0.0,0.0,0.0,0.0,0.0,2.811,0.155,0.0,0.0,3.89,1.273,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.991,0.0,15.061,6.85,0.853,0.0,0.0,0.0,0.0,2638.8,2135.9,2638.8,9.777,9.598,0.0,1.627,2.853,0.0,0.0,0.652,2.618,-2.126,0.0,0.0,2.087,0.0,-0.279,1.517,0.0,1.059,0.0,1.127,-3.66,-1.506,0.0,1.072,0.369,0.0,0.0,-0.095,0.205,3.803,0.0,0.0,0.529,0.0,-0.279,-0.258,-0.197,-0.283,0.0,1.446,6.38,2.46,1364.1,1290.1,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,12482.0,3021.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9750.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1618.0,312.0,706.0,600.0 +house014.xml,31.557,31.557,31.557,31.557,0.0,0.0,0.0,0.0,0.0,0.0,3.332,0.189,0.006,0.0,4.258,1.393,7.45,0.0,0.0,4.053,0.0,0.46,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.389,0.006,16.595,6.85,0.597,0.0,0.0,0.0,0.0,2948.4,2156.4,2948.4,10.984,10.439,0.0,1.7,3.69,0.0,0.0,0.583,3.02,-2.479,0.0,0.0,2.205,0.0,-0.243,1.724,0.0,1.115,0.0,1.412,-3.756,-1.617,0.0,1.129,0.535,0.0,0.0,-0.071,0.531,4.749,0.0,0.0,0.6,0.0,-0.242,-0.254,-0.225,-0.263,0.0,1.654,6.113,2.436,1364.1,1290.1,8207.2,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13648.0,3089.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1682.0,312.0,770.0,600.0 +house015.xml,30.573,30.573,30.573,30.573,0.0,0.0,0.0,0.0,0.0,0.0,2.811,0.155,0.0,0.0,3.89,1.273,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.991,0.0,15.061,6.85,0.853,0.0,0.0,0.0,0.0,2638.8,2135.9,2638.8,9.777,9.598,0.0,1.627,2.853,0.0,0.0,0.652,2.618,-2.126,0.0,0.0,2.087,0.0,-0.279,1.517,0.0,1.059,0.0,1.127,-3.66,-1.506,0.0,1.072,0.369,0.0,0.0,-0.095,0.205,3.803,0.0,0.0,0.529,0.0,-0.279,-0.258,-0.197,-0.283,0.0,1.446,6.38,2.46,1364.1,1290.1,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,12482.0,3021.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9750.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1618.0,312.0,706.0,600.0 +house016.xml,61.259,61.259,39.758,39.758,0.0,0.0,21.502,0.0,0.0,0.0,7.615,0.555,0.187,0.004,2.953,0.965,0.0,0.0,0.0,8.606,0.0,0.723,0.215,0.0,0.0,0.0,2.448,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.255,8.015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.313,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.695,0.191,11.489,10.478,0.0,0.0,0.0,2.0,11.0,7549.9,3522.7,7549.9,43.059,18.712,0.0,4.421,10.834,0.618,5.69,0.298,7.711,-7.897,0.0,0.0,0.0,6.738,-0.022,5.729,0.0,3.867,0.0,0.0,-8.639,-4.771,0.0,-0.336,-0.824,-0.019,2.932,-0.046,-1.012,11.998,0.0,0.0,0.0,-8.779,-0.024,-1.359,-1.156,-1.008,0.0,0.0,7.776,3.835,1759.0,1745.5,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1991.0,0.0,1191.0,800.0 +house017.xml,91.817,91.817,27.919,27.919,63.898,0.0,0.0,0.0,0.0,0.0,0.0,1.281,0.0,0.0,4.526,0.614,0.0,0.0,0.0,4.67,0.187,0.387,0.033,0.0,0.0,0.0,2.086,0.0,0.0,0.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.795,0.0,18.103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.956,0.0,10.103,11.141,3.418,0.0,0.0,151.0,96.0,1729.6,3570.0,3570.0,60.335,19.527,0.0,5.432,14.641,0.652,10.656,0.362,7.456,-9.321,0.0,0.0,0.719,4.357,0.006,19.783,0.0,1.22,0.0,0.0,-11.23,-2.985,0.0,-0.143,-0.972,-0.02,4.68,-0.06,-1.169,7.472,0.0,0.0,-0.008,-4.8,0.008,-2.768,-0.714,-0.258,0.0,0.0,7.225,1.685,1778.7,1768.3,13969.3,4663.9,0.0,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3537.0,0.0,2537.0,1000.0 +house018.xml,36.028,36.028,36.028,36.028,0.0,0.0,0.0,0.0,0.0,0.0,4.599,0.209,0.0,0.0,2.544,0.767,7.873,0.0,0.0,4.761,0.0,0.461,0.112,0.0,0.0,0.0,4.21,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,4.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.688,0.0,9.43,7.32,0.552,0.0,0.0,0.0,0.0,4617.7,2657.5,4617.7,19.992,10.861,0.0,4.564,4.623,0.0,0.0,0.276,3.696,-3.618,0.0,0.0,2.17,0.0,-0.019,2.615,0.0,2.082,0.0,1.848,-7.059,-2.596,0.0,-0.527,-0.811,0.0,0.0,-0.095,-1.34,4.337,0.0,0.0,-0.012,0.0,-0.014,-0.774,-0.637,-0.75,0.0,1.255,6.864,2.164,1341.9,1264.5,9054.5,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,18300.0,4908.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2608.0,1096.0,712.0,800.0 +house019.xml,130.141,130.141,51.592,51.592,78.549,0.0,0.0,0.0,0.0,0.0,0.0,1.13,0.0,0.0,11.089,3.593,9.725,0.0,0.0,8.923,0.0,0.741,0.054,0.0,0.0,0.0,2.005,1.27,0.0,0.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.774,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.664,0.0,43.619,7.894,1.826,0.0,0.0,193.0,261.0,2783.7,6444.3,6622.6,84.769,45.696,0.0,11.38,44.759,0.65,5.035,1.92,16.406,-14.184,0.0,0.0,0.0,5.96,-0.034,8.894,0.0,1.87,0.0,0.0,-10.303,-5.203,0.0,2.977,10.126,0.15,2.882,0.272,1.603,17.047,0.0,0.0,0.0,-4.232,-0.021,-0.157,-0.148,0.025,0.0,0.0,8.091,3.72,1341.9,1264.5,7836.1,3009.8,0.0,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1991.0,0.0,1191.0,800.0 +house020.xml,117.256,117.256,56.501,56.501,0.0,0.0,60.754,0.0,0.0,0.0,0.0,0.826,0.0,0.0,13.04,2.739,0.0,0.0,0.0,12.75,0.0,0.892,0.026,0.0,0.0,0.0,3.976,0.0,0.0,0.496,0.369,2.745,0.11,0.0,2.255,16.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.612,0.0,18.911,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.567,0.0,33.299,10.477,4.224,0.0,0.0,0.0,0.0,2703.5,6613.2,6613.2,31.214,31.947,0.908,11.003,10.557,1.131,9.759,0.631,15.145,-15.17,0.0,0.0,0.0,7.469,-0.042,15.238,0.0,0.837,0.0,0.0,-15.243,-7.022,0.245,0.175,0.235,0.059,6.426,0.015,-2.454,20.699,0.0,0.0,0.0,-6.636,-0.032,-2.672,-1.637,-0.195,0.0,0.0,13.51,5.728,1759.0,1745.5,13595.6,4567.6,0.0,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3130.0,0.0,2330.0,800.0 +house021.xml,156.946,156.946,48.155,48.155,108.791,0.0,0.0,0.0,0.0,0.0,0.0,2.011,0.0,0.0,8.157,1.437,0.0,0.0,0.0,10.64,0.244,0.771,0.071,0.0,0.0,0.0,2.448,1.472,0.0,0.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.745,0.0,19.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.798,0.0,17.765,10.989,3.817,0.0,0.0,0.0,0.0,2798.0,4687.7,4687.7,81.275,23.098,0.0,8.265,27.044,2.42,9.183,0.859,21.82,-20.282,0.0,0.0,1.093,9.427,-0.32,26.651,0.0,2.489,0.0,6.1,-14.701,-6.87,0.0,0.047,-0.747,0.016,2.242,-0.09,-2.214,14.693,0.0,0.0,0.041,-6.014,-0.297,-2.379,-0.835,-0.387,0.0,1.217,8.849,3.77,1759.0,1745.5,13752.0,4620.1,0.0,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28791.0,5964.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4908.0,1135.0,2773.0,1000.0 +house022.xml,138.01,138.01,48.718,48.718,0.0,89.292,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,8.711,0.88,12.471,0.0,0.0,6.69,0.0,0.61,0.034,0.0,0.0,0.0,2.086,1.649,0.0,0.496,0.369,2.745,1.608,0.0,2.255,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.296,0.0,18.932,10.989,1.481,0.0,0.0,184.0,120.0,2976.2,5355.9,5373.2,90.789,27.299,3.682,3.758,20.617,0.0,0.0,1.487,16.605,-13.137,0.0,0.0,14.693,0.0,-0.263,37.701,0.0,1.156,0.0,0.0,-9.56,-4.289,1.107,0.17,0.612,0.0,0.0,-0.12,-1.429,11.451,0.0,0.0,2.05,0.0,-0.255,-2.682,-0.615,-0.07,0.0,0.0,6.16,2.401,1759.0,1745.5,13751.5,4619.9,0.0,100000.0,36000.0,0.0,16.16,89.24,53604.0,0.0,10741.0,0.0,737.0,11570.0,2029.0,5140.0,0.0,2115.0,21272.0,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5447.0,0.0,4647.0,800.0 +house023.xml,138.233,138.233,63.089,63.089,0.0,75.144,0.0,0.0,0.0,0.0,0.0,1.892,0.0,0.0,5.902,0.759,19.997,0.0,0.0,9.219,0.0,0.692,0.045,0.0,0.0,0.0,4.21,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.653,11.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.736,0.0,16.259,17.1,2.769,0.0,0.0,0.0,0.0,4239.1,4673.6,4673.6,62.489,20.564,0.0,10.208,21.486,1.2,16.451,0.85,9.985,-7.811,0.0,0.0,0.0,6.173,-0.032,23.701,0.0,1.638,0.0,0.0,-15.571,-5.906,0.0,-0.192,-1.022,-0.014,5.967,-0.114,-1.042,9.141,0.0,0.0,0.0,-6.007,-0.01,-2.68,-0.761,-0.315,0.0,0.0,10.086,3.313,2176.1,2226.5,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4276.0,0.0,3276.0,1000.0 +house024.xml,129.312,129.312,43.836,43.836,0.0,85.476,0.0,0.0,0.0,0.0,0.0,2.126,0.0,0.0,5.355,0.479,16.754,0.0,0.0,3.916,0.0,0.396,0.058,0.0,0.0,0.0,2.005,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.653,3.778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.468,0.0,15.704,14.653,2.088,0.0,0.0,0.0,0.0,2752.4,3570.5,3601.7,72.07,17.436,0.0,7.179,30.082,0.0,0.0,0.681,7.227,-7.897,0.0,0.0,5.183,0.0,-0.106,25.399,0.0,1.837,0.0,11.769,-8.64,-2.539,0.0,0.586,1.25,0.0,0.0,-0.04,-0.295,6.002,0.0,0.0,0.512,0.0,-0.099,-1.46,-0.332,-0.196,0.0,2.942,5.524,1.377,2176.1,2226.5,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,60408.0,12599.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,21858.0,1379.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7046.0,2607.0,3639.0,800.0 +house025.xml,104.514,104.514,69.46,69.46,35.054,0.0,0.0,0.0,0.0,0.0,6.618,1.06,0.0,0.0,18.797,2.597,12.215,0.0,0.0,9.263,0.0,0.783,0.0,0.0,0.0,0.0,4.105,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.855,0.0,47.577,8.321,3.83,0.0,0.0,0.0,0.0,4332.1,6893.6,6893.6,36.405,32.763,0.0,3.375,17.544,0.0,0.0,2.164,7.392,-5.637,0.0,0.0,6.835,0.0,-1.322,13.719,0.0,0.41,0.0,4.938,-8.606,-4.03,0.0,1.089,5.672,0.0,0.0,0.437,1.931,12.471,0.0,0.0,5.647,0.0,-1.32,-0.743,-0.165,-0.005,0.0,6.095,11.506,5.233,1341.9,1264.5,3496.9,1343.1,0.0,158000.0,81000.0,33000.0,24.62,91.58,54383.0,20091.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,32216.0,8770.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9615.0,5967.0,2849.0,800.0 +house026.xml,56.735,56.735,24.856,24.856,31.879,0.0,0.0,0.0,0.0,0.0,0.0,0.045,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.534,0.251,0.548,0.299,0.0,0.0,0.0,1.987,0.0,0.0,0.447,0.338,2.514,1.528,0.934,2.114,7.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.742,0.0,14.137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.596,0.0,0.0,8.607,2.075,0.0,0.0,0.0,0.0,1553.8,1299.3,1553.8,17.399,0.0,0.0,1.773,6.876,0.233,0.0,0.198,4.407,-2.924,0.0,0.0,7.132,0.0,-0.05,2.498,0.0,3.138,0.0,0.0,-6.701,-3.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1295.3,1282.5,8580.0,3023.7,0.0,84000.0,0.0,0.0,24.62,91.58,22421.0,0.0,3869.0,0.0,128.0,5749.0,0.0,5824.0,0.0,1459.0,5391.0,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2344.0,0.0,1544.0,800.0 +house027.xml,72.565,72.565,31.685,31.685,40.88,0.0,0.0,0.0,0.0,0.0,0.0,0.436,0.0,0.0,7.85,0.993,0.0,0.0,0.0,5.947,0.218,0.485,0.927,0.0,0.0,0.0,1.724,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,7.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.933,0.0,17.879,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.776,0.0,23.222,8.564,5.23,0.0,0.0,0.0,0.0,1579.5,3648.6,3648.6,24.054,23.236,0.719,1.784,7.914,0.454,0.0,0.593,4.982,-3.982,0.0,0.0,0.383,3.36,-0.138,1.752,0.0,10.446,0.0,2.033,-8.791,-2.847,0.489,1.125,0.656,0.056,0.0,-0.113,0.132,5.429,0.0,0.0,0.095,3.842,-0.139,-0.365,-0.97,-3.474,0.0,2.575,10.726,3.101,1610.9,1574.7,10579.5,3728.4,0.0,75000.0,36000.0,0.0,24.62,91.58,33087.0,7577.0,4494.0,0.0,375.0,6506.0,550.0,250.0,4088.0,1516.0,7731.0,19084.0,3678.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5496.0,1758.0,2939.0,800.0 +house028.xml,67.9,67.9,29.948,29.948,37.951,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,7.366,1.488,0.0,0.0,0.0,6.138,0.226,0.503,0.618,0.0,0.0,0.0,2.104,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,7.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.451,0.0,18.114,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.672,0.0,23.505,10.226,3.615,0.0,0.0,0.0,0.0,1527.5,3496.6,3496.6,20.253,23.027,0.77,1.666,7.189,0.358,0.0,0.442,4.977,-3.803,0.0,0.0,0.246,2.526,-0.046,4.068,0.0,4.486,0.0,1.624,-9.071,-2.899,0.603,1.217,-0.512,0.105,0.0,0.06,0.058,6.213,0.0,0.0,0.064,1.834,-0.047,-1.09,-1.226,-1.653,0.0,3.084,11.532,3.238,1857.7,1859.4,12951.6,4219.3,0.0,75000.0,36000.0,0.0,24.62,91.58,31422.0,8678.0,4365.0,0.0,315.0,5287.0,616.0,180.0,3569.0,1488.0,6925.0,19789.0,3915.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5049.0,2024.0,2025.0,1000.0 +house029.xml,77.585,77.585,30.042,30.042,47.543,0.0,0.0,0.0,0.0,0.0,0.0,0.702,0.0,0.0,6.207,0.835,0.0,0.0,0.0,6.543,0.274,0.569,0.76,0.0,0.0,0.0,1.981,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,6.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.878,0.0,12.596,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.61,0.0,13.462,9.614,0.0,0.0,0.0,0.0,0.0,1614.8,3028.9,3028.9,28.366,13.891,0.0,3.365,14.613,0.393,0.0,0.296,6.288,-6.011,0.0,0.0,6.904,0.0,-0.085,7.303,0.0,7.308,0.0,3.181,-8.387,-3.714,0.0,1.13,-0.707,0.01,0.0,0.069,0.462,5.273,0.0,0.0,-0.462,0.0,-0.08,-0.803,-1.051,-1.526,0.0,1.247,7.157,2.828,1610.9,1574.7,11033.0,3888.2,0.0,77000.0,36000.0,0.0,17.24,91.22,29357.0,2294.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,16260.0,-172.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3901.0,903.0,2197.0,800.0 +house030.xml,58.682,58.682,17.191,17.191,0.0,0.0,41.491,0.0,0.0,0.0,0.0,0.056,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.324,0.272,0.497,0.57,0.0,0.0,0.0,1.834,0.0,0.0,0.366,0.286,0.168,0.096,0.701,1.879,5.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.166,0.0,13.289,2.238,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.478,0.0,0.0,7.715,2.206,0.0,0.0,0.0,0.0,1133.9,975.2,1133.9,15.963,0.0,0.0,1.673,10.157,0.486,1.1,1.039,5.182,-3.325,0.0,0.0,0.0,3.437,-0.041,2.725,0.0,5.693,0.0,0.0,-7.831,-2.959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1066.1,992.7,6763.6,2580.9,0.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1714.0,0.0,1114.0,600.0 +house031.xml,233.55,233.55,50.257,50.257,183.293,0.0,0.0,0.0,0.0,0.0,0.0,3.407,0.0,0.0,12.858,3.3,0.0,0.0,0.0,10.36,0.246,0.758,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.802,0.0,29.094,4.254,4.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.913,0.0,39.746,17.932,5.234,0.0,0.0,48.0,113.0,3052.5,7440.8,7663.8,125.503,49.219,0.0,14.456,42.005,1.048,6.639,1.393,20.051,-16.712,0.0,0.0,1.979,6.048,-0.849,56.906,0.0,0.654,0.0,9.747,-17.118,-6.505,0.0,2.242,5.112,0.174,2.818,0.114,0.456,16.998,0.0,0.0,0.223,-3.626,-0.816,-1.933,-0.384,-0.01,0.0,3.044,11.057,3.856,2593.2,2707.5,18307.9,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83012.0,13661.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44186.0,9754.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8618.0,1699.0,5518.0,1400.0 +house032.xml,101.487,101.487,15.551,15.551,85.936,0.0,0.0,0.0,0.0,0.0,0.0,1.509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.094,0.0,0.518,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.723,0.0,16.238,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.776,0.0,0.0,8.002,4.93,0.0,0.0,153.0,0.0,1348.0,804.3,1348.0,50.432,0.0,0.0,10.402,8.755,1.921,20.407,1.411,8.355,-9.322,0.0,0.0,0.0,4.519,0.02,14.968,0.0,0.624,0.0,0.0,-8.947,-3.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2481.0,0.0,1481.0,1000.0 +house033.xml,107.175,107.175,14.692,14.692,0.0,92.483,0.0,0.0,0.0,0.0,0.0,0.315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.888,0.0,0.528,0.0,0.0,0.0,0.0,1.294,0.0,0.0,0.0,0.194,1.443,1.158,0.0,1.46,3.412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.801,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.9,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.4,771.3,1018.4,48.445,0.0,0.0,19.109,14.551,0.0,0.0,0.999,11.105,-7.521,0.0,0.0,14.666,0.0,-0.352,18.58,0.0,0.792,0.0,0.0,-5.002,-3.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,924.8,0.0,3905.6,1188.1,0.0,109000.0,0.0,0.0,16.16,89.24,32325.0,0.0,5273.0,0.0,362.0,6028.0,0.0,4559.0,0.0,8461.0,7643.0,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2666.0,0.0,1666.0,1000.0 +house034.xml,153.724,153.724,43.213,43.213,0.0,0.0,110.511,0.0,0.0,0.0,0.0,0.082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.498,0.341,1.204,0.0,0.0,0.0,0.0,1.909,0.0,0.0,0.496,0.369,2.745,1.608,0.0,2.255,15.707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.18,0.0,21.331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.075,0.0,0.0,11.573,5.411,0.0,0.0,0.0,0.0,2949.8,2213.7,2949.8,86.132,0.0,0.0,8.867,26.927,0.0,2.855,1.897,26.618,-26.196,0.0,0.0,10.921,2.675,0.066,34.737,0.0,0.571,0.0,0.0,-16.188,-10.525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1759.0,1745.5,10287.1,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4951.0,0.0,3951.0,1000.0 +house035.xml,63.699,63.699,17.44,17.44,46.258,0.0,0.0,0.0,0.0,0.0,0.0,0.816,0.0,0.0,1.666,0.108,0.0,0.0,0.0,5.438,0.0,0.533,0.0,0.0,0.0,0.0,2.257,0.0,0.0,0.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.79,0.0,9.632,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.926,0.0,2.503,3.92,3.827,0.0,0.0,102.0,0.0,1326.9,1887.1,1887.1,39.297,9.633,0.366,6.129,10.823,0.0,0.0,0.536,6.091,-7.321,0.0,0.0,7.744,0.0,0.004,13.599,0.0,0.49,0.0,0.0,-7.872,-3.466,0.062,-0.544,-1.523,0.0,0.0,-0.08,-1.405,7.072,0.0,0.0,-4.366,0.0,0.009,-2.704,-0.705,-0.126,0.0,0.0,4.962,1.972,924.8,783.5,4210.2,1280.7,0.0,80000.0,24000.0,0.0,16.16,89.24,27631.0,0.0,4397.0,0.0,318.0,7248.0,249.0,1468.0,0.0,4065.0,9886.0,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2960.0,0.0,2160.0,800.0 +house036.xml,82.591,82.591,25.803,25.803,56.787,0.0,0.0,0.0,0.0,0.0,0.0,0.977,0.0,0.0,5.765,0.964,0.0,0.0,0.0,5.449,0.0,0.536,0.0,0.0,0.0,0.0,1.617,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.308,0.0,17.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.307,0.0,14.148,8.219,5.845,0.0,0.0,106.0,124.0,1462.3,3200.7,3200.7,31.832,16.86,5.508,2.255,3.969,0.0,0.0,1.823,6.799,-7.197,0.0,0.0,21.059,0.0,-0.007,7.4,0.0,0.554,0.0,0.0,-6.44,-3.438,1.615,0.14,0.002,0.0,0.0,-0.21,-0.867,5.704,0.0,0.0,2.5,0.0,-0.007,-0.729,-0.392,-0.059,0.0,0.0,4.339,2.011,1341.9,1264.5,6447.0,2476.3,0.0,60000.0,24000.0,0.0,16.16,89.24,25212.0,0.0,4435.0,0.0,1019.0,2375.0,3328.0,7811.0,0.0,1320.0,4925.0,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1674.0,0.0,1074.0,600.0 +house037.xml,88.458,88.458,21.781,21.781,0.0,66.677,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.807,0.0,0.61,0.0,0.0,0.0,0.0,2.004,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,6.203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.52,0.0,16.157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.486,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1456.9,1117.9,1456.9,29.691,0.0,0.0,16.696,11.31,0.0,0.0,1.562,7.647,-10.338,0.0,0.0,6.538,0.0,-0.324,14.693,0.0,0.46,0.0,0.0,-6.828,-3.864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,8324.2,3197.3,0.0,110000.0,0.0,0.0,19.22,86.72,40440.0,0.0,6057.0,0.0,969.0,7752.0,0.0,1095.0,0.0,13572.0,10994.0,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3269.0,0.0,2469.0,800.0 +house038.xml,125.312,125.312,51.041,51.041,74.271,0.0,0.0,0.0,0.0,0.0,0.0,1.031,0.0,0.0,13.667,2.595,0.0,0.0,0.0,6.908,0.315,0.625,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,50.24,0.0,24.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.189,0.0,30.939,14.715,4.601,0.0,0.0,0.0,213.0,2455.6,5668.8,5726.6,48.331,27.398,0.0,3.652,14.88,0.651,4.466,0.809,12.429,-10.431,0.0,0.0,1.862,2.347,-0.043,22.483,0.0,0.595,0.0,0.0,-10.145,-3.873,0.0,0.845,2.6,0.141,2.253,0.018,0.92,12.753,0.0,0.0,0.337,-0.578,-0.032,-0.574,-0.139,0.005,0.0,0.0,8.631,3.035,2176.1,2226.5,14642.0,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3753.0,0.0,2353.0,1400.0 +house039.xml,99.9,99.9,24.033,24.033,75.868,0.0,0.0,0.0,0.0,0.0,0.0,0.146,0.0,0.0,0.0,0.0,5.141,0.0,0.0,4.411,0.239,0.418,0.0,0.0,0.0,0.0,1.763,0.0,0.0,0.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.181,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.911,0.0,0.0,14.272,1.132,0.0,0.0,0.0,0.0,1709.3,1461.4,1709.3,50.061,0.0,0.0,14.206,5.384,0.0,0.0,2.508,16.122,-13.538,0.0,0.0,14.024,0.0,-0.042,13.243,0.0,0.556,0.0,0.0,-4.143,-2.844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2176.1,2226.5,17537.7,5211.7,0.0,87000.0,0.0,0.0,16.16,89.24,42559.0,0.0,11110.0,0.0,1456.0,3312.0,0.0,6991.0,0.0,8806.0,10883.0,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3173.0,0.0,2373.0,800.0 +house040.xml,101.602,101.602,23.52,23.52,78.082,0.0,0.0,0.0,0.0,0.0,0.0,1.304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.373,0.0,0.651,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.723,0.0,17.359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.206,0.0,0.0,8.002,5.509,0.0,0.0,0.0,0.0,1751.7,1153.8,1751.7,62.344,0.0,11.265,5.616,22.28,0.0,4.302,2.094,12.88,-12.508,0.0,0.0,2.036,3.382,-0.096,19.739,0.0,0.612,0.0,0.0,-10.087,-4.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3333.0,0.0,2533.0,800.0 +house041.xml,258.946,258.946,47.07,47.07,211.876,0.0,0.0,0.0,0.0,0.0,0.0,4.162,0.0,0.0,2.532,0.238,0.0,0.0,0.0,13.943,0.315,1.031,0.05,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.473,2.35,14.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,185.321,0.0,26.555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174.622,0.0,4.466,15.632,5.04,0.0,0.0,105.0,0.0,3249.4,4671.1,4671.1,77.757,24.091,0.0,11.261,45.049,3.518,35.041,3.141,38.863,-20.773,0.0,0.0,4.608,17.348,-0.578,64.107,0.0,2.766,0.0,0.0,-20.295,-10.998,0.0,0.122,-2.113,-0.121,1.638,-0.218,-2.819,9.454,0.0,0.0,-0.354,-5.262,-0.575,-3.419,-0.97,-0.253,0.0,0.0,6.553,2.945,1857.7,1859.4,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2263.0,0.0,1263.0,1000.0 +house042.xml,231.144,231.144,40.02,40.02,191.124,0.0,0.0,0.0,0.0,0.0,0.0,3.906,0.0,0.0,1.739,0.062,0.0,0.0,0.0,9.539,0.213,0.678,0.093,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,13.542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,166.681,0.0,24.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,163.886,0.0,2.58,15.632,3.23,0.0,0.0,0.0,0.0,2758.4,3133.3,3133.3,88.149,19.056,0.0,9.173,39.855,4.013,43.722,2.65,34.229,-19.417,0.0,0.0,2.449,14.522,-0.355,56.291,0.0,1.751,0.0,0.0,-19.243,-7.618,0.0,0.218,-1.428,-0.057,2.844,-0.145,-2.939,5.799,0.0,0.0,-0.261,-4.926,-0.351,-2.751,-0.582,-0.139,0.0,0.0,5.468,1.921,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2111.0,0.0,1111.0,1000.0 +house043.xml,158.475,158.475,29.946,29.946,128.529,0.0,0.0,0.0,0.0,0.0,0.0,2.466,0.0,0.0,1.928,0.103,0.0,0.0,0.0,6.562,0.213,0.514,0.093,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.626,0.0,19.903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.466,0.0,2.697,13.084,2.209,0.0,0.0,0.0,0.0,1987.9,2782.0,2782.0,54.557,13.381,0.0,3.168,23.196,2.294,33.782,5.576,22.938,-10.008,0.0,0.0,0.549,9.916,-0.296,28.974,0.0,1.578,0.0,0.0,-14.399,-5.171,0.0,0.043,-0.806,-0.089,1.681,-0.346,-2.008,4.659,0.0,0.0,-0.068,-3.583,-0.295,-1.564,-0.499,-0.142,0.0,0.0,4.425,1.391,1610.9,1574.7,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1456.0,0.0,656.0,800.0 +house044.xml,226.642,226.642,43.473,43.473,183.169,0.0,0.0,0.0,0.0,0.0,0.0,4.703,0.0,0.0,2.056,0.176,0.0,0.0,0.0,12.955,0.315,0.974,0.037,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,12.956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,160.597,0.0,22.572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.211,0.0,3.421,13.084,4.455,0.0,0.0,0.0,0.0,3093.0,3640.3,3640.3,80.998,18.73,4.37,6.899,36.505,9.235,19.259,2.757,18.188,-11.677,0.0,0.0,12.916,15.073,-0.492,61.982,0.0,1.436,0.0,0.0,-18.082,-10.281,0.25,0.46,-1.344,-0.105,1.199,-0.116,-0.763,5.624,0.0,0.0,-1.119,-4.82,-0.489,-2.644,-0.448,-0.098,0.0,0.0,5.246,2.674,1610.9,1574.7,12168.1,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1982.0,0.0,1182.0,800.0 +house045.xml,152.408,152.408,35.2,35.2,117.208,0.0,0.0,0.0,0.0,0.0,0.0,2.775,0.0,0.0,2.383,0.284,0.0,0.0,0.0,9.065,0.315,0.749,1.793,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.754,0.0,22.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.034,0.0,3.955,13.084,4.364,0.0,0.0,0.0,0.0,2316.2,3040.0,3040.0,47.197,12.955,3.573,3.08,15.119,2.29,32.747,1.135,18.522,-12.215,1.044,-0.408,0.086,12.611,-0.249,20.643,0.0,10.932,0.0,0.0,-14.635,-7.011,-0.01,0.008,-1.075,-0.123,0.921,-0.085,-1.422,6.252,-0.067,0.396,-0.013,-4.06,-0.248,-1.175,-0.888,-1.254,0.0,0.0,4.853,2.054,1610.9,1574.7,12168.2,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1423.0,0.0,623.0,800.0 +house046.xml,25.004,25.004,25.004,25.004,0.0,0.0,0.0,0.0,0.0,0.0,5.297,0.452,0.303,0.011,3.758,1.009,4.924,0.0,0.0,1.03,0.0,0.082,0.0,0.0,0.0,0.0,1.793,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.644,2.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.836,0.314,12.877,4.305,0.617,0.0,0.0,0.0,0.0,3876.4,2449.3,3876.4,16.152,13.471,0.0,2.518,3.834,0.0,0.0,0.327,2.231,-1.648,0.0,0.0,-0.154,0.0,-0.3,7.959,0.0,0.378,0.0,2.781,-3.563,-0.481,0.0,1.266,2.526,0.0,0.0,0.023,0.771,2.452,0.0,0.0,-0.153,0.0,-0.299,-0.473,-0.141,0.018,0.0,1.786,4.608,0.548,596.8,442.2,5543.5,2208.6,0.0,18000.0,18000.0,17065.0,24.62,91.58,19009.0,4026.0,1800.0,0.0,182.0,2847.0,0.0,0.0,0.0,1604.0,8550.0,15040.0,3886.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3101.0,483.0,2218.0,400.0 +house047.xml,20.676,20.676,14.395,14.395,6.281,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.52,0.001,4.487,0.0,0.0,0.921,0.0,0.463,0.182,0.0,0.0,0.0,1.444,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.644,2.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.105,0.0,1.556,4.203,0.0,0.0,0.0,0.0,0.0,873.4,945.1,945.1,4.758,2.584,0.0,-0.001,0.775,0.127,0.0,0.0,1.726,-0.559,0.0,0.0,0.0,1.374,-0.01,1.573,0.0,4.971,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.1,0.032,0.0,0.0,-0.066,0.798,0.0,0.0,0.0,-1.125,-0.01,-0.23,-0.245,-1.381,0.0,-0.0,3.276,0.409,251.7,442.2,5772.6,1524.2,0.0,20000.0,18000.0,0.0,19.22,86.72,7389.0,1053.0,1216.0,0.0,0.0,630.0,0.0,0.0,705.0,0.0,3785.0,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1599.0,0.0,1199.0,400.0 +house048.xml,91.003,91.003,39.59,39.59,51.414,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,12.756,3.744,0.0,0.0,0.0,3.691,0.085,0.498,3.024,0.0,0.0,0.0,2.421,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.35,8.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.477,0.0,12.598,0.0,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.716,0.0,52.226,7.253,2.657,0.0,0.0,0.0,0.0,1535.4,5475.5,5475.5,42.014,33.921,1.023,2.631,12.005,0.0,0.0,0.803,4.609,-2.524,0.0,0.0,0.056,2.012,-0.563,6.79,0.0,4.189,0.0,6.411,-7.337,-1.493,1.319,0.988,9.25,0.0,0.0,0.562,3.662,4.27,0.0,0.0,0.074,10.05,-0.551,0.504,-0.456,1.925,0.0,7.005,11.653,2.198,130.3,817.7,11617.6,3495.1,0.0,63000.0,46500.0,0.0,25.88,98.42,51007.0,12330.0,4499.0,0.0,585.0,9704.0,828.0,45.0,11275.0,2249.0,9492.0,30574.0,8419.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4490.0,1126.0,2365.0,1000.0 +house049.xml,35.471,35.471,31.974,31.974,3.497,0.0,0.0,0.0,0.0,0.0,7.74,0.047,0.0,0.0,7.331,0.191,2.634,0.249,0.0,1.474,0.057,0.099,2.092,0.0,0.0,0.0,3.073,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.879,4.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.698,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.901,0.0,30.687,4.262,1.318,0.0,0.0,0.0,117.0,4645.5,2820.9,4645.5,13.151,15.914,0.0,1.368,4.348,0.0,0.0,0.0,4.233,-5.804,0.0,0.0,0.0,1.252,-0.081,2.653,0.0,1.846,0.0,0.0,-2.547,-0.463,0.0,1.687,7.208,0.0,0.0,0.0,2.956,9.864,0.0,0.0,0.0,3.485,-0.08,-0.046,-2.986,0.697,0.0,0.0,7.424,1.011,728.6,567.4,7487.1,928.5,0.0,39000.0,16000.0,0.0,33.26,106.16,18656.0,0.0,5635.0,0.0,0.0,5120.0,0.0,0.0,2100.0,1357.0,4445.0,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 +house050.xml,51.752,51.752,22.064,22.064,29.688,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.0,0.0,2.085,0.368,0.0,0.0,0.0,1.782,0.057,0.111,2.23,0.0,0.0,0.0,2.36,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.114,5.961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.772,0.0,10.847,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.406,0.0,5.882,8.572,0.0,0.0,0.0,0.0,0.0,1156.6,2803.5,2803.5,11.085,17.274,0.0,4.153,6.539,0.0,0.0,2.036,5.175,-4.145,0.0,0.0,4.906,0.0,-0.163,2.669,0.0,3.682,0.0,1.887,-10.201,-1.222,0.0,-0.32,-0.352,0.0,0.0,-0.402,0.241,4.091,0.0,0.0,-1.016,0.0,-0.162,-0.568,-1.254,-0.777,0.0,0.64,5.335,0.56,1689.0,437.0,10674.9,2994.2,0.0,58000.0,29000.0,0.0,28.58,87.08,21919.0,7752.0,3277.0,0.0,856.0,3061.0,0.0,2043.0,0.0,1771.0,3159.0,18928.0,5164.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,723.0,0.0,-77.0,800.0 diff --git a/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2_bills.csv b/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2_bills.csv new file mode 100644 index 00000000..67dc6f19 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2_bills.csv @@ -0,0 +1,141 @@ +HPXML,Bills: Total (USD),Bills: Electricity: Fixed (USD),Bills: Electricity: Energy (USD),Bills: Electricity: PV Credit (USD),Bills: Electricity: Total (USD),Bills: Natural Gas: Fixed (USD),Bills: Natural Gas: Energy (USD),Bills: Natural Gas: Total (USD),Bills: Fuel Oil: Fixed (USD),Bills: Fuel Oil: Energy (USD),Bills: Fuel Oil: Total (USD),Bills: Propane: Fixed (USD),Bills: Propane: Energy (USD),Bills: Propane: Total (USD),Bills: Wood Cord: Fixed (USD),Bills: Wood Cord: Energy (USD),Bills: Wood Cord: Total (USD),Bills: Wood Pellets: Fixed (USD),Bills: Wood Pellets: Energy (USD),Bills: Wood Pellets: Total (USD),Bills: Coal: Fixed (USD),Bills: Coal: Energy (USD),Bills: Coal: Total (USD),Tiered: Total (USD),Tiered: Electricity: Fixed (USD),Tiered: Electricity: Energy (USD),Tiered: Electricity: PV Credit (USD),Tiered: Electricity: Total (USD),Tiered: Natural Gas: Fixed (USD),Tiered: Natural Gas: Energy (USD),Tiered: Natural Gas: Total (USD),Tiered: Fuel Oil: Fixed (USD),Tiered: Fuel Oil: Energy (USD),Tiered: Fuel Oil: Total (USD),Tiered: Propane: Fixed (USD),Tiered: Propane: Energy (USD),Tiered: Propane: Total (USD),Tiered: Wood Cord: Fixed (USD),Tiered: Wood Cord: Energy (USD),Tiered: Wood Cord: Total (USD),Tiered: Wood Pellets: Fixed (USD),Tiered: Wood Pellets: Energy (USD),Tiered: Wood Pellets: Total (USD),Tiered: Coal: Fixed (USD),Tiered: Coal: Energy (USD),Tiered: Coal: Total (USD),TOU: Total (USD),TOU: Electricity: Fixed (USD),TOU: Electricity: Energy (USD),TOU: Electricity: PV Credit (USD),TOU: Electricity: Total (USD),TOU: Natural Gas: Fixed (USD),TOU: Natural Gas: Energy (USD),TOU: Natural Gas: Total (USD),TOU: Fuel Oil: Fixed (USD),TOU: Fuel Oil: Energy (USD),TOU: Fuel Oil: Total (USD),TOU: Propane: Fixed (USD),TOU: Propane: Energy (USD),TOU: Propane: Total (USD),TOU: Wood Cord: Fixed (USD),TOU: Wood Cord: Energy (USD),TOU: Wood Cord: Total (USD),TOU: Wood Pellets: Fixed (USD),TOU: Wood Pellets: Energy (USD),TOU: Wood Pellets: Total (USD),TOU: Coal: Fixed (USD),TOU: Coal: Energy (USD),TOU: Coal: Total (USD),Tiered and TOU: Total (USD),Tiered and TOU: Electricity: Fixed (USD),Tiered and TOU: Electricity: Energy (USD),Tiered and TOU: Electricity: PV Credit (USD),Tiered and TOU: Electricity: Total (USD),Tiered and TOU: Natural Gas: Fixed (USD),Tiered and TOU: Natural Gas: Energy (USD),Tiered and TOU: Natural Gas: Total (USD),Tiered and TOU: Fuel Oil: Fixed (USD),Tiered and TOU: Fuel Oil: Energy (USD),Tiered and TOU: Fuel Oil: Total (USD),Tiered and TOU: Propane: Fixed (USD),Tiered and TOU: Propane: Energy (USD),Tiered and TOU: Propane: Total (USD),Tiered and TOU: Wood Cord: Fixed (USD),Tiered and TOU: Wood Cord: Energy (USD),Tiered and TOU: Wood Cord: Total (USD),Tiered and TOU: Wood Pellets: Fixed (USD),Tiered and TOU: Wood Pellets: Energy (USD),Tiered and TOU: Wood Pellets: Total (USD),Tiered and TOU: Coal: Fixed (USD),Tiered and TOU: Coal: Energy (USD),Tiered and TOU: Coal: Total (USD),Real-Time Pricing: Total (USD),Real-Time Pricing: Electricity: Fixed (USD),Real-Time Pricing: Electricity: Energy (USD),Real-Time Pricing: Electricity: PV Credit (USD),Real-Time Pricing: Electricity: Total (USD),Real-Time Pricing: Natural Gas: Fixed (USD),Real-Time Pricing: Natural Gas: Energy (USD),Real-Time Pricing: Natural Gas: Total (USD),Real-Time Pricing: Fuel Oil: Fixed (USD),Real-Time Pricing: Fuel Oil: Energy (USD),Real-Time Pricing: Fuel Oil: Total (USD),Real-Time Pricing: Propane: Fixed (USD),Real-Time Pricing: Propane: Energy (USD),Real-Time Pricing: Propane: Total (USD),Real-Time Pricing: Wood Cord: Fixed (USD),Real-Time Pricing: Wood Cord: Energy (USD),Real-Time Pricing: Wood Cord: Total (USD),Real-Time Pricing: Wood Pellets: Fixed (USD),Real-Time Pricing: Wood Pellets: Energy (USD),Real-Time Pricing: Wood Pellets: Total (USD),Real-Time Pricing: Coal: Fixed (USD),Real-Time Pricing: Coal: Energy (USD),Real-Time Pricing: Coal: Total (USD),Simple: Total (USD),Simple: Electricity: Fixed (USD),Simple: Electricity: Energy (USD),Simple: Electricity: PV Credit (USD),Simple: Electricity: Total (USD),Simple: Natural Gas: Fixed (USD),Simple: Natural Gas: Energy (USD),Simple: Natural Gas: Total (USD),Simple: Fuel Oil: Fixed (USD),Simple: Fuel Oil: Energy (USD),Simple: Fuel Oil: Total (USD),Simple: Propane: Fixed (USD),Simple: Propane: Energy (USD),Simple: Propane: Total (USD),Simple: Wood Cord: Fixed (USD),Simple: Wood Cord: Energy (USD),Simple: Wood Cord: Total (USD),Simple: Wood Pellets: Fixed (USD),Simple: Wood Pellets: Energy (USD),Simple: Wood Pellets: Total (USD),Simple: Coal: Fixed (USD),Simple: Coal: Energy (USD),Simple: Coal: Total (USD),Detailed: Total (USD),Detailed: Electricity: Fixed (USD),Detailed: Electricity: Energy (USD),Detailed: Electricity: PV Credit (USD),Detailed: Electricity: Total (USD),Detailed: Natural Gas: Fixed (USD),Detailed: Natural Gas: Energy (USD),Detailed: Natural Gas: Total (USD),Detailed: Fuel Oil: Fixed (USD),Detailed: Fuel Oil: Energy (USD),Detailed: Fuel Oil: Total (USD),Detailed: Propane: Fixed (USD),Detailed: Propane: Energy (USD),Detailed: Propane: Total (USD),Detailed: Wood Cord: Fixed (USD),Detailed: Wood Cord: Energy (USD),Detailed: Wood Cord: Total (USD),Detailed: Wood Pellets: Fixed (USD),Detailed: Wood Pellets: Energy (USD),Detailed: Wood Pellets: Total (USD),Detailed: Coal: Fixed (USD),Detailed: Coal: Energy (USD),Detailed: Coal: Total (USD),Net Metering w/ Wholesale Excess Rate: Total (USD),Net Metering w/ Wholesale Excess Rate: Electricity: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Electricity: Energy (USD),Net Metering w/ Wholesale Excess Rate: Electricity: PV Credit (USD),Net Metering w/ Wholesale Excess Rate: Electricity: Total (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Energy (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Total (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Wholesale Excess Rate: Propane: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Propane: Energy (USD),Net Metering w/ Wholesale Excess Rate: Propane: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Wholesale Excess Rate: Coal: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Coal: Energy (USD),Net Metering w/ Wholesale Excess Rate: Coal: Total (USD),Net Metering w/ Retail Excess Rate: Total (USD),Net Metering w/ Retail Excess Rate: Electricity: Fixed (USD),Net Metering w/ Retail Excess Rate: Electricity: Energy (USD),Net Metering w/ Retail Excess Rate: Electricity: PV Credit (USD),Net Metering w/ Retail Excess Rate: Electricity: Total (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Fixed (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Energy (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Total (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Retail Excess Rate: Propane: Fixed (USD),Net Metering w/ Retail Excess Rate: Propane: Energy (USD),Net Metering w/ Retail Excess Rate: Propane: Total (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Total (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Retail Excess Rate: Coal: Fixed (USD),Net Metering w/ Retail Excess Rate: Coal: Energy (USD),Net Metering w/ Retail Excess Rate: Coal: Total (USD),Feed-In Tariff: Total (USD),Feed-In Tariff: Electricity: Fixed (USD),Feed-In Tariff: Electricity: Energy (USD),Feed-In Tariff: Electricity: PV Credit (USD),Feed-In Tariff: Electricity: Total (USD),Feed-In Tariff: Natural Gas: Fixed (USD),Feed-In Tariff: Natural Gas: Energy (USD),Feed-In Tariff: Natural Gas: Total (USD),Feed-In Tariff: Fuel Oil: Fixed (USD),Feed-In Tariff: Fuel Oil: Energy (USD),Feed-In Tariff: Fuel Oil: Total (USD),Feed-In Tariff: Propane: Fixed (USD),Feed-In Tariff: Propane: Energy (USD),Feed-In Tariff: Propane: Total (USD),Feed-In Tariff: Wood Cord: Fixed (USD),Feed-In Tariff: Wood Cord: Energy (USD),Feed-In Tariff: Wood Cord: Total (USD),Feed-In Tariff: Wood Pellets: Fixed (USD),Feed-In Tariff: Wood Pellets: Energy (USD),Feed-In Tariff: Wood Pellets: Total (USD),Feed-In Tariff: Coal: Fixed (USD),Feed-In Tariff: Coal: Energy (USD),Feed-In Tariff: Coal: Total (USD) +base-lighting-ceiling-fans.xml,1853.29,144.0,1329.64,0.0,1473.64,144.0,235.65,379.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-holiday.xml,1846.49,144.0,1322.62,0.0,1466.62,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-kwh-per-year.xml,1951.37,144.0,1447.53,0.0,1591.53,144.0,215.84,359.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-mixed.xml,1845.7,144.0,1321.83,0.0,1465.83,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-none-ceiling-fans.xml,1692.16,144.0,1139.14,0.0,1283.14,144.0,265.02,409.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-none.xml,1677.96,144.0,1124.71,0.0,1268.71,144.0,265.25,409.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-AMY-2012.xml,1903.98,144.0,1275.12,0.0,1419.12,144.0,340.86,484.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-baltimore-md.xml,1588.03,144.0,1167.92,0.0,1311.92,144.0,132.11,276.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-capetown-zaf.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-dallas-tx.xml,1498.78,144.0,1192.93,0.0,1336.93,144.0,17.85,161.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-duluth-mn.xml,1701.88,144.0,1105.44,0.0,1249.44,144.0,308.44,452.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-helena-mt.xml,1668.81,144.0,1028.19,0.0,1172.19,144.0,352.62,496.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-honolulu-hi.xml,4443.5,144.0,4299.5,0.0,4443.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-miami-fl.xml,1456.61,144.0,1312.61,0.0,1456.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-phoenix-az.xml,1634.57,144.0,1346.56,0.0,1490.56,144.0,0.01,144.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-portland-or.xml,1207.8,144.0,822.58,0.0,966.58,144.0,97.22,241.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-balanced.xml,2113.41,144.0,1382.74,0.0,1526.74,144.0,442.67,586.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-bath-kitchen-fans.xml,1860.44,144.0,1318.71,0.0,1462.71,144.0,253.73,397.73,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-airflow-fraction-zero.xml,2040.75,144.0,1379.54,0.0,1523.54,144.0,373.21,517.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-evap-cooler-only-ducted.xml,1392.63,144.0,1248.63,0.0,1392.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,1975.96,144.0,1329.93,0.0,1473.93,144.0,358.03,502.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-supplemental-fan-supply.xml,1999.16,144.0,1330.95,0.0,1474.95,144.0,380.21,524.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis.xml,2051.89,144.0,1377.13,0.0,1521.13,144.0,386.76,530.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-erv-atre-asre.xml,1960.1,144.0,1383.73,0.0,1527.73,144.0,288.37,432.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-erv.xml,1960.13,144.0,1383.73,0.0,1527.73,144.0,288.4,432.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-exhaust-rated-flow-rate.xml,2026.13,144.0,1345.9,0.0,1489.9,144.0,392.23,536.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-exhaust.xml,2026.13,144.0,1345.9,0.0,1489.9,144.0,392.23,536.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-hrv-asre.xml,1960.19,144.0,1383.84,0.0,1527.84,144.0,288.35,432.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-hrv.xml,1960.22,144.0,1383.84,0.0,1527.84,144.0,288.38,432.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-multiple.xml,2138.11,144.0,1400.03,0.0,1544.03,144.0,450.08,594.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-supply.xml,2012.95,144.0,1348.49,0.0,1492.49,144.0,376.46,520.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-whole-house-fan.xml,1781.62,144.0,1255.84,0.0,1399.84,144.0,237.78,381.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-additional-properties.xml,1839.18,144.0,1315.31,0.0,1459.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-bills-pv-detailed-only.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,756.98,108.0,1257.44,-988.34,377.11,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,677.15,108.0,780.96,-591.68,297.28,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,673.75,108.0,748.8,-562.92,293.88,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,637.49,108.0,704.82,-555.2,257.62,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-bills-pv-mixed.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,852.44,144.0,1315.31,-986.74,472.57,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,756.98,108.0,1257.44,-988.34,377.11,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-bills-pv.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,622.17,465.0,1260.41,-1480.17,245.24,132.0,244.93,376.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.46,465.0,1260.41,-2013.87,-288.47,132.0,244.93,376.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-334.36,210.0,1260.41,-2181.7,-711.29,132.0,244.93,376.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-bills.xml,1793.34,144.0,1260.41,0.0,1404.41,144.0,244.93,388.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-defaults.xml,1066.48,144.0,1155.39,-713.7,585.69,144.0,336.79,480.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-emissions.xml,882.59,144.0,1345.35,-986.62,502.72,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators-battery-scheduled.xml,2289.39,144.0,1378.19,0.0,1522.19,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators-battery.xml,2226.51,144.0,1315.31,0.0,1459.31,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators.xml,2226.51,144.0,1315.31,0.0,1459.31,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-ground-conductivity.xml,1812.74,144.0,1312.52,0.0,1456.52,144.0,212.22,356.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-loads-large-uncommon.xml,3682.97,144.0,2505.86,0.0,2649.86,144.0,738.84,882.84,0.0,0.0,0.0,0.0,67.83,67.83,0.0,82.44,82.44,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-loads-large-uncommon2.xml,3042.97,144.0,2375.6,0.0,2519.6,144.0,209.53,353.53,0.0,87.4,87.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.44,82.44,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-loads-none.xml,1490.41,144.0,903.17,0.0,1047.17,144.0,299.24,443.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-neighbor-shading-bldgtype-multifamily.xml,1236.1,144.0,939.25,0.0,1083.25,144.0,8.85,152.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-neighbor-shading.xml,1885.96,144.0,1306.08,0.0,1450.08,144.0,291.88,435.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-shielding-of-home.xml,1839.22,144.0,1320.43,0.0,1464.43,144.0,230.79,374.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-unit-multiplier.xml,18391.89,1440.0,13153.12,0.0,14593.12,1440.0,2358.77,3798.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-usage-multiplier.xml,3004.33,144.0,1859.84,0.0,2003.84,144.0,721.24,865.24,0.0,0.0,0.0,0.0,61.05,61.05,0.0,74.2,74.2,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-ah.xml,882.59,144.0,1345.35,-986.62,502.72,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-garage.xml,854.29,144.0,1299.36,-986.62,456.75,144.0,253.54,397.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-round-trip-efficiency.xml,932.5,144.0,1395.26,-986.63,552.63,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-scheduled.xml,916.1,144.0,1378.19,-985.96,536.23,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery.xml,882.59,144.0,1345.35,-986.62,502.72,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators-battery-scheduled.xml,1002.88,144.0,1378.19,-1286.5,235.68,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators-battery.xml,970.3,144.0,1346.27,-1287.17,203.1,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators.xml,939.22,144.0,1315.31,-1287.29,172.02,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv.xml,852.44,144.0,1315.31,-986.74,472.57,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-0-runperiod-1-month.xml,128.18,12.0,15.78,0.0,27.78,12.0,88.4,100.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-0.xml,917.12,144.0,268.49,0.0,412.49,144.0,360.63,504.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-1-misc-loads-large-uncommon.xml,2781.57,144.0,1907.56,0.0,2051.56,144.0,435.74,579.74,0.0,0.0,0.0,0.0,70.81,70.81,0.0,79.46,79.46,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-1-misc-loads-large-uncommon2.xml,2515.63,144.0,1818.53,0.0,1962.53,144.0,238.4,382.4,0.0,91.24,91.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.46,79.46,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-1.xml,1586.83,144.0,1040.66,0.0,1184.66,144.0,258.17,402.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-5.xml,1320.29,144.0,1462.79,-743.14,863.64,144.0,312.65,456.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-all-10-mins.xml,1860.1,144.0,1324.25,0.0,1468.25,144.0,247.85,391.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,1389.0,144.0,1049.68,0.0,1193.68,144.0,51.32,195.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-mixed-timesteps.xml,1632.25,144.0,1258.95,0.0,1402.95,144.0,85.3,229.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,1851.6,144.0,1321.09,0.0,1465.09,144.0,242.51,386.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,1547.37,144.0,1107.41,0.0,1251.41,144.0,151.96,295.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,1700.88,144.0,1129.06,0.0,1273.06,144.0,283.82,427.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic.xml,1849.86,144.0,1319.61,0.0,1463.61,144.0,242.25,386.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-setpoints-daily-schedules.xml,1811.1,144.0,1293.26,0.0,1437.26,144.0,229.84,373.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-setpoints-daily-setbacks.xml,1808.33,144.0,1298.77,0.0,1442.77,144.0,221.56,365.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-setpoints.xml,1614.03,144.0,1248.82,0.0,1392.82,144.0,77.21,221.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-power-outage.xml,1715.52,144.0,1190.1,0.0,1334.1,144.0,237.42,381.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-vacancy.xml,1691.16,144.0,1121.27,0.0,1265.27,144.0,281.89,425.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple.xml,1841.9,144.0,1316.6,0.0,1460.6,144.0,237.3,381.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-calendar-year-custom.xml,1838.15,144.0,1314.22,0.0,1458.22,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-daylight-saving-custom.xml,1839.19,144.0,1315.31,0.0,1459.31,144.0,235.88,379.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-daylight-saving-disabled.xml,1838.48,144.0,1314.74,0.0,1458.74,144.0,235.74,379.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-runperiod-1-month.xml,198.54,12.0,106.51,0.0,118.51,12.0,68.03,80.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-temperature-capacitance-multiplier.xml,1835.31,144.0,1311.51,0.0,1455.51,144.0,235.8,379.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1860.06,144.0,1324.04,0.0,1468.04,144.0,248.02,392.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1859.03,144.0,1323.77,0.0,1467.77,144.0,247.26,391.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins.xml,1848.51,144.0,1319.41,0.0,1463.41,144.0,241.1,385.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-30-mins.xml,1844.84,144.0,1317.6,0.0,1461.6,144.0,239.24,383.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base.xml,1839.18,144.0,1315.31,0.0,1459.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house001.xml,2411.55,144.0,1716.3,0.0,1860.3,144.0,407.25,551.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house002.xml,2059.85,144.0,1489.72,0.0,1633.72,144.0,282.13,426.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house003.xml,2051.06,144.0,1470.25,0.0,1614.25,144.0,292.81,436.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house004.xml,3685.65,144.0,2771.89,0.0,2915.89,144.0,625.76,769.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house005.xml,2672.04,144.0,1955.1,0.0,2099.1,144.0,428.94,572.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house006.xml,2281.38,144.0,1184.1,0.0,1328.1,144.0,809.28,953.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house007.xml,2340.82,144.0,1263.24,0.0,1407.24,144.0,789.58,933.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house008.xml,2834.42,144.0,1462.81,0.0,1606.81,144.0,1083.61,1227.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house009.xml,2459.04,144.0,1268.37,0.0,1412.37,144.0,902.67,1046.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house010.xml,2562.65,144.0,1400.99,0.0,1544.99,144.0,873.66,1017.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house011.xml,1600.41,144.0,1456.41,0.0,1600.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house012.xml,1299.98,144.0,1155.98,0.0,1299.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house013.xml,1130.38,144.0,986.38,0.0,1130.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house014.xml,1162.12,144.0,1018.12,0.0,1162.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house015.xml,1130.38,144.0,986.38,0.0,1130.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house016.xml,2702.83,144.0,1759.69,0.0,1903.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,799.14,799.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house017.xml,2101.87,144.0,1019.2,0.0,1163.2,144.0,794.67,938.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house018.xml,1738.61,144.0,1594.61,0.0,1738.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house019.xml,3148.24,144.0,1883.36,0.0,2027.36,144.0,976.88,1120.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house020.xml,4902.8,144.0,2500.77,0.0,2644.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2258.03,2258.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house021.xml,3398.9,144.0,1757.9,0.0,1901.9,144.0,1353.0,1497.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house022.xml,5109.11,144.0,1778.45,0.0,1922.45,0.0,0.0,0.0,0.0,3186.66,3186.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house023.xml,5128.81,144.0,2303.07,0.0,2447.07,0.0,0.0,0.0,0.0,2681.74,2681.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house024.xml,4794.71,144.0,1600.25,0.0,1744.25,0.0,0.0,0.0,0.0,3050.46,3050.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house025.xml,3023.76,144.0,2240.98,0.0,2384.98,144.0,494.78,638.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house026.xml,1539.91,144.0,801.94,0.0,945.94,144.0,449.97,593.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house027.xml,1887.26,144.0,1022.24,0.0,1166.24,144.0,577.02,721.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house028.xml,1789.89,144.0,966.21,0.0,1110.21,144.0,535.68,679.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house029.xml,2145.83,144.0,1175.73,0.0,1319.73,144.0,682.1,826.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house030.xml,2376.92,144.0,672.79,0.0,816.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1560.13,1560.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house031.xml,4402.19,144.0,1834.64,0.0,1978.64,144.0,2279.55,2423.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house032.xml,1924.45,144.0,567.69,0.0,711.69,144.0,1068.76,1212.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house033.xml,3980.86,144.0,536.35,0.0,680.35,0.0,0.0,0.0,0.0,3300.51,3300.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house034.xml,5891.18,144.0,1577.51,0.0,1721.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4169.67,4169.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house035.xml,1499.97,144.0,636.67,0.0,780.67,144.0,575.3,719.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house036.xml,1936.2,144.0,941.96,0.0,1085.96,144.0,706.24,850.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house037.xml,3487.6,144.0,964.03,0.0,1108.03,0.0,0.0,0.0,0.0,2379.57,2379.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house038.xml,3074.94,144.0,1863.26,0.0,2007.26,144.0,923.68,1067.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house039.xml,2108.86,144.0,877.32,0.0,1021.32,144.0,943.54,1087.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house040.xml,2117.69,144.0,858.61,0.0,1002.61,144.0,971.08,1115.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house041.xml,3636.79,144.0,1750.74,0.0,1894.74,144.0,1598.05,1742.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house042.xml,3218.05,144.0,1488.52,0.0,1632.52,144.0,1441.53,1585.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house043.xml,2371.22,144.0,1113.8,0.0,1257.8,144.0,969.42,1113.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house044.xml,3286.48,144.0,1616.95,0.0,1760.95,144.0,1381.53,1525.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house045.xml,2481.28,144.0,1309.25,0.0,1453.25,144.0,884.03,1028.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house046.xml,950.71,144.0,806.71,0.0,950.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house047.xml,991.39,144.0,637.13,0.0,781.13,144.0,66.26,210.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house048.xml,2269.77,144.0,1448.93,0.0,1592.93,144.0,532.84,676.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house049.xml,1485.34,144.0,1174.21,0.0,1318.21,144.0,23.13,167.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house050.xml,1248.95,144.0,658.31,0.0,802.31,144.0,302.64,446.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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/example_files/resources/hpxml-measures/workflow/tests/compare.py b/example_files/resources/hpxml-measures/workflow/tests/compare.py index f6526e6d..99f13a02 100644 --- a/example_files/resources/hpxml-measures/workflow/tests/compare.py +++ b/example_files/resources/hpxml-measures/workflow/tests/compare.py @@ -45,8 +45,8 @@ def results(self, aggregate_column=None, aggregate_function=None, excludes=[], e print("Warning: %s not found. Skipping..." % feature_file) continue - base_df = pd.read_csv(base_file, index_col=0) - feature_df = pd.read_csv(feature_file, index_col=0) + base_df = read_csv(base_file, index_col=0) + feature_df = read_csv(feature_file, index_col=0) base_df = self.intersect_rows(base_df, feature_df) feature_df = self.intersect_rows(feature_df, base_df) @@ -151,14 +151,14 @@ def visualize(self, aggregate_column=None, aggregate_function=None, display_colu files.append(file) if display_columns or aggregate_columns: - base_characteristics_df = pd.read_csv( + base_characteristics_df = read_csv( os.path.join( self.base_folder, 'results_characteristics.csv'), index_col=0)[ display_columns + aggregate_columns] - feature_characteristics_df = pd.read_csv( + feature_characteristics_df = read_csv( os.path.join( self.feature_folder, 'results_characteristics.csv'), @@ -209,8 +209,8 @@ def remove_columns(cols): print("Warning: %s not found. Skipping..." % feature_file) continue - base_df = pd.read_csv(base_file, index_col=0) - feature_df = pd.read_csv(feature_file, index_col=0) + base_df = read_csv(base_file, index_col=0) + feature_df = read_csv(feature_file, index_col=0) base_df = self.intersect_rows(base_df, feature_df) feature_df = self.intersect_rows(feature_df, base_df) @@ -334,6 +334,12 @@ def remove_columns(cols): auto_open=False) +def read_csv(csv_file_path, **kwargs) -> pd.DataFrame: + default_na_values = pd._libs.parsers.STR_NA_VALUES + df = pd.read_csv(csv_file_path, na_values=list(default_na_values - {'None'}), keep_default_na=False, **kwargs) + return df + + if __name__ == '__main__': default_base_folder = 'workflow/tests/base_results' diff --git a/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb b/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb deleted file mode 100644 index cf78eba2..00000000 --- a/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb +++ /dev/null @@ -1,1313 +0,0 @@ -# frozen_string_literal: true - -require_relative '../../HPXMLtoOpenStudio/resources/minitest_helper' -require 'openstudio' -require 'fileutils' -require 'parallel' -require_relative '../../HPXMLtoOpenStudio/measure.rb' - -class HPXMLTest < MiniTest::Test - def setup - @this_dir = File.dirname(__FILE__) - @results_dir = File.join(@this_dir, 'results') - FileUtils.mkdir_p @results_dir - - schema_path = File.join(File.dirname(__FILE__), '..', '..', 'HPXMLtoOpenStudio', 'resources', 'hpxml_schema', 'HPXML.xsd') - @schema_validator = XMLValidator.get_schema_validator(schema_path) - schematron_path = File.join(File.dirname(__FILE__), '..', '..', 'HPXMLtoOpenStudio', 'resources', 'hpxml_schematron', 'EPvalidator.xml') - @schematron_validator = XMLValidator.get_schematron_validator(schematron_path) - end - - def test_simulations - results_out = File.join(@results_dir, 'results.csv') - File.delete(results_out) if File.exist? results_out - bills_out = File.join(@results_dir, 'results_bills.csv') - File.delete(bills_out) if File.exist? bills_out - - xmls = [] - sample_files_dirs = [File.absolute_path(File.join(@this_dir, '..', 'sample_files')), - File.absolute_path(File.join(@this_dir, '..', 'real_homes'))] - sample_files_dirs.each do |sample_files_dir| - Dir["#{sample_files_dir}/*.xml"].sort.each do |xml| - next if xml.include? 'base-multiple-buildings.xml' # This is tested in test_multiple_building_ids - - xmls << File.absolute_path(xml) - end - end - - # Test simulations - puts "Running #{xmls.size} HPXML files..." - all_results = {} - all_bill_results = {} - Parallel.map(xmls, in_threads: Parallel.processor_count) do |xml| - xml_name = File.basename(xml) - all_results[xml_name], all_bill_results[xml_name] = _run_xml(xml, Parallel.worker_number) - end - - _write_results(all_results.sort_by { |k, _v| k.downcase }.to_h, results_out) - _write_results(all_bill_results.sort_by { |k, _v| k.downcase }.to_h, bills_out) - end - - def test_ashrae_140 - ashrae140_out = File.join(@results_dir, 'results_ashrae_140.csv') - File.delete(ashrae140_out) if File.exist? ashrae140_out - - xmls = [] - ashrae_140_dir = File.absolute_path(File.join(@this_dir, 'ASHRAE_Standard_140')) - Dir["#{ashrae_140_dir}/*.xml"].sort.each do |xml| - xmls << File.absolute_path(xml) - end - - # Test simulations - puts "Running #{xmls.size} HPXML files..." - all_results = {} - Parallel.map(xmls, in_threads: Parallel.processor_count) do |xml| - xml_name = File.basename(xml) - all_results[xml_name], _, _ = _run_xml(xml, Parallel.worker_number) - end - - _write_ashrae_140_results(all_results.sort_by { |k, _v| k.downcase }.to_h, ashrae140_out) - end - - def test_run_simulation_output_formats - # Check that the simulation produces outputs in the appropriate format - ['csv', 'json', 'msgpack', 'csv_dview'].each do |output_format| - rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb') - xml = File.join(File.dirname(__FILE__), '..', 'sample_files', 'base.xml') - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --debug --hourly ALL --output-format #{output_format}" - system(command, err: File::NULL) - - output_format = 'csv' if output_format == 'csv_dview' - - # Check for output files - assert(File.exist? File.join(File.dirname(xml), 'run', 'eplusout.msgpack')) - assert(File.exist? File.join(File.dirname(xml), 'run', "results_annual.#{output_format}")) - assert(File.exist? File.join(File.dirname(xml), 'run', "results_timeseries.#{output_format}")) - assert(File.exist?(File.join(File.dirname(xml), 'run', "results_bills.#{output_format}"))) - - # Check for debug files - osm_path = File.join(File.dirname(xml), 'run', 'in.osm') - assert(File.exist? osm_path) - hpxml_defaults_path = File.join(File.dirname(xml), 'run', 'in.xml') - assert(File.exist? hpxml_defaults_path) - - next unless output_format == 'msgpack' - - # Check timeseries output isn't rounded - require 'msgpack' - data = MessagePack.unpack(File.read(File.join(File.dirname(xml), 'run', "results_timeseries.#{output_format}"), mode: 'rb')) - value = data['Energy Use']['Total (kBtu)'][0] - assert_operator((value - value.round(8)).abs, :>, 0) - end - end - - def test_run_simulation_epjson_input - # Check that we can run a simulation using epJSON (instead of IDF) if requested - rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb') - xml = File.join(File.dirname(__FILE__), '..', 'sample_files', 'base.xml') - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --ep-input-format epjson" - system(command, err: File::NULL) - - # Check for epjson file - assert(File.exist? File.join(File.dirname(xml), 'run', 'in.epJSON')) - - # Check for output files - assert(File.exist? File.join(File.dirname(xml), 'run', 'eplusout.msgpack')) - assert(File.exist? File.join(File.dirname(xml), 'run', 'results_annual.csv')) - end - - def test_run_simulation_idf_input - # Check that we can run a simulation using IDF (instead of epJSON) if requested - rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb') - xml = File.join(File.dirname(__FILE__), '..', 'sample_files', 'base.xml') - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --ep-input-format idf" - system(command, err: File::NULL) - - # Check for idf file - assert(File.exist? File.join(File.dirname(xml), 'run', 'in.idf')) - - # Check for output files - assert(File.exist? File.join(File.dirname(xml), 'run', 'eplusout.msgpack')) - assert(File.exist? File.join(File.dirname(xml), 'run', 'results_annual.csv')) - end - - def test_run_simulation_faster_performance - # Run w/ --skip-validation and w/o --add-component-loads arguments - rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb') - xml = File.join(File.dirname(__FILE__), '..', 'sample_files', 'base.xml') - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --skip-validation" - system(command, err: File::NULL) - - # Check for output files - assert(File.exist? File.join(File.dirname(xml), 'run', 'eplusout.msgpack')) - assert(File.exist? File.join(File.dirname(xml), 'run', 'results_annual.csv')) - - # Check component loads don't exist - component_loads = {} - CSV.read(File.join(File.dirname(xml), 'run', 'results_annual.csv'), headers: false).each do |data| - next unless data[0].to_s.start_with? 'Component Load' - - component_loads[data[0]] = Float(data[1]) - end - assert_equal(0, component_loads.size) - end - - def test_run_simulation_detailed_occupancy_schedules - [false, true].each do |debug| - # Check that the simulation produces stochastic schedules if requested - sample_files_path = File.join(File.dirname(__FILE__), '..', 'sample_files') - tmp_hpxml_path = File.join(sample_files_path, 'tmp.xml') - hpxml = HPXML.new(hpxml_path: File.join(sample_files_path, 'base.xml')) - XMLHelper.write_file(hpxml.to_oga, tmp_hpxml_path) - - rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb') - xml = File.absolute_path(tmp_hpxml_path) - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --add-stochastic-schedules" - command += ' -d' if debug - system(command, err: File::NULL) - - # Check for output files - assert(File.exist? File.join(File.dirname(xml), 'run', 'eplusout.msgpack')) - assert(File.exist? File.join(File.dirname(xml), 'run', 'results_annual.csv')) - assert(File.exist? File.join(File.dirname(xml), 'run', 'in.schedules.csv')) - assert(File.exist? File.join(File.dirname(xml), 'run', 'stochastic.csv')) - - # Check stochastic.csv headers - schedules = CSV.read(File.join(File.dirname(xml), 'run', 'stochastic.csv'), headers: true) - if debug - assert(schedules.headers.include?(SchedulesFile::ColumnSleeping)) - else - refute(schedules.headers.include?(SchedulesFile::ColumnSleeping)) - end - - # Cleanup - File.delete(tmp_hpxml_path) if File.exist? tmp_hpxml_path - end - end - - def test_run_simulation_timeseries_outputs - [true, false].each do |invalid_variable_only| - # Check that the simulation produces timeseries with requested outputs - rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb') - xml = File.join(File.dirname(__FILE__), '..', 'sample_files', 'base.xml') - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\"" - if not invalid_variable_only - command += ' --hourly ALL' - command += ' --add-timeseries-time-column DST' - command += ' --add-timeseries-time-column UTC' - command += " --add-timeseries-output-variable 'Zone People Occupant Count'" - command += " --add-timeseries-output-variable 'Zone People Total Heating Energy'" - end - command += " --add-timeseries-output-variable 'Foobar Variable'" # Test invalid output variable request - system(command, err: File::NULL) - - # Check for output files - assert(File.exist? File.join(File.dirname(xml), 'run', 'eplusout.msgpack')) - assert(File.exist? File.join(File.dirname(xml), 'run', 'results_annual.csv')) - if not invalid_variable_only - assert(File.exist? File.join(File.dirname(xml), 'run', 'results_timeseries.csv')) - # Check timeseries columns exist - timeseries_rows = CSV.read(File.join(File.dirname(xml), 'run', 'results_timeseries.csv')) - assert_equal(1, timeseries_rows[0].select { |r| r == 'Time' }.size) - assert_equal(1, timeseries_rows[0].select { |r| r == 'TimeDST' }.size) - assert_equal(1, timeseries_rows[0].select { |r| r == 'TimeUTC' }.size) - assert_equal(1, timeseries_rows[0].select { |r| r == 'Zone People Occupant Count: Living Space' }.size) - assert_equal(1, timeseries_rows[0].select { |r| r == 'Zone People Total Heating Energy: Living Space' }.size) - else - refute(File.exist? File.join(File.dirname(xml), 'run', 'results_timeseries.csv')) - end - - # Check run.log has warning about missing Foobar Variable - assert(File.exist? File.join(File.dirname(xml), 'run', 'run.log')) - log_lines = File.readlines(File.join(File.dirname(xml), 'run', 'run.log')).map(&:strip) - assert(log_lines.include? "Warning: Request for output variable 'Foobar Variable' returned no key values.") - end - end - - def test_run_defaulted_in_xml - # Check that if we simulate the in.xml file (HPXML w/ defaults), we get - # the same results as the original HPXML. - - # Run base.xml - rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb') - xml = File.join(File.dirname(__FILE__), '..', 'sample_files', 'base.xml') - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\"" - system(command, err: File::NULL) - assert(File.exist? File.join(File.dirname(xml), 'run', 'results_annual.csv')) - base_results = CSV.read(File.join(File.dirname(xml), 'run', 'results_annual.csv')) - - # Run in.xml (generated from base.xml) - xml2 = File.join(File.dirname(xml), 'run', 'in.xml') - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml2}\"" - system(command, err: File::NULL) - assert(File.exist? File.join(File.dirname(xml2), 'run', 'results_annual.csv')) - default_results = CSV.read(File.join(File.dirname(xml2), 'run', 'results_annual.csv')) - - # Check two output files are identical - assert_equal(base_results, default_results) - end - - def test_template_osws - # Check that simulation works using template-*.osw - require 'json' - - ['template-run-hpxml.osw', - 'template-run-hpxml-with-stochastic-occupancy.osw', - 'template-run-hpxml-with-stochastic-occupancy-subset.osw', - 'template-build-and-run-hpxml-with-stochastic-occupancy.osw'].each do |osw_name| - osw_path = File.join(File.dirname(__FILE__), '..', osw_name) - - # Create derivative OSW for testing - osw_path_test = osw_path.gsub('.osw', '_test.osw') - FileUtils.cp(osw_path, osw_path_test) - - # Turn on debug mode - json = JSON.parse(File.read(osw_path_test), symbolize_names: true) - measure_index = json[:steps].find_index { |m| m[:measure_dir_name] == 'HPXMLtoOpenStudio' } - json[:steps][measure_index][:arguments][:debug] = true - - if Dir.exist? File.join(File.dirname(__FILE__), '..', '..', 'project') - # CI checks out the repo as "project", so update dir name - json[:steps][measure_index][:measure_dir_name] = 'project' - end - - File.open(osw_path_test, 'w') do |f| - f.write(JSON.pretty_generate(json)) - end - - command = "\"#{OpenStudio.getOpenStudioCLI}\" run -w \"#{osw_path_test}\"" - system(command, err: File::NULL) - - # Check for output files - assert(File.exist? File.join(File.dirname(osw_path_test), 'run', 'eplusout.msgpack')) - assert(File.exist? File.join(File.dirname(osw_path_test), 'run', 'results_annual.csv')) - - # Check for debug files - assert(File.exist? File.join(File.dirname(osw_path_test), 'run', 'in.osm')) - hpxml_defaults_path = File.join(File.dirname(osw_path_test), 'run', 'in.xml') - assert(File.exist? hpxml_defaults_path) - - # Cleanup - File.delete(osw_path_test) - xml_path_test = File.join(File.dirname(__FILE__), '..', 'run', 'built.xml') - File.delete(xml_path_test) if File.exist?(xml_path_test) - xml_path_test = File.join(File.dirname(__FILE__), '..', 'run', 'built-stochastic-schedules.xml') - File.delete(xml_path_test) if File.exist?(xml_path_test) - end - end - - def test_multiple_building_ids - rb_path = File.join(File.dirname(__FILE__), '..', 'run_simulation.rb') - xml = File.join(File.dirname(__FILE__), '..', 'sample_files', 'base-multiple-buildings.xml') - csv_output_path = File.join(File.dirname(xml), 'run', 'results_annual.csv') - run_log = File.join(File.dirname(xml), 'run', 'run.log') - - # Check successful simulation when providing correct building ID - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id MyBuilding" - system(command, err: File::NULL) - assert_equal(true, File.exist?(csv_output_path)) - - # Check that we have exactly one warning (i.e., check we are only validating a single Building element against schematron) - assert_equal(1, File.readlines(run_log).select { |l| l.include? 'Warning: No clothes dryer specified, the model will not include clothes dryer energy use.' }.size) - - # Check unsuccessful simulation when providing incorrect building ID - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\" --building-id MyFoo" - system(command, err: File::NULL) - assert_equal(false, File.exist?(csv_output_path)) - assert_equal(1, File.readlines(run_log).select { |l| l.include? "Could not find Building element with ID 'MyFoo'." }.size) - - # Check unsuccessful simulation when not providing building ID - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{rb_path}\" -x \"#{xml}\"" - system(command, err: File::NULL) - assert_equal(false, File.exist?(csv_output_path)) - assert_equal(1, File.readlines(run_log).select { |l| l.include? 'Multiple Building elements defined in HPXML file; Building ID argument must be provided.' }.size) - end - - def test_release_zips - # Check release zips successfully created - top_dir = File.join(@this_dir, '..', '..') - command = "\"#{OpenStudio.getOpenStudioCLI}\" \"#{File.join(top_dir, 'tasks.rb')}\" create_release_zips" - system(command) - assert_equal(1, Dir["#{top_dir}/*.zip"].size) - - # Check successful running of simulation from release zips - require 'zip' - Zip.on_exists_proc = true - Dir["#{top_dir}/OpenStudio-HPXML*.zip"].each do |zip_path| - Zip::File.open(zip_path) do |zip_file| - zip_file.each do |f| - FileUtils.mkdir_p(File.dirname(f.name)) unless File.exist?(File.dirname(f.name)) - zip_file.extract(f, f.name) - end - end - - # Test run_simulation.rb - command = "\"#{OpenStudio.getOpenStudioCLI}\" OpenStudio-HPXML/workflow/run_simulation.rb -x OpenStudio-HPXML/workflow/sample_files/base.xml" - system(command) - assert(File.exist? 'OpenStudio-HPXML/workflow/sample_files/run/results_annual.csv') - - File.delete(zip_path) - rm_path('OpenStudio-HPXML') - end - end - - private - - def _run_xml(xml, worker_num = nil) - print "Testing #{File.basename(xml)}...\n" - rundir = File.join(@this_dir, "test#{worker_num}") - - # Uses 'monthly' to verify timeseries results match annual results via error-checking - # inside the ReportSimulationOutput measure. - cli_path = OpenStudio.getOpenStudioCLI - command = "\"#{cli_path}\" \"#{File.join(File.dirname(__FILE__), '../run_simulation.rb')}\" -x \"#{xml}\" --add-component-loads -o \"#{rundir}\" --debug --monthly ALL" - success = system(command) - - rundir = File.join(rundir, 'run') - - # Check results - print "Simulation failed: #{xml}.\n" unless success - assert_equal(true, success) - - # Check for output files - annual_csv_path = File.join(rundir, 'results_annual.csv') - timeseries_csv_path = File.join(rundir, 'results_timeseries.csv') - bills_csv_path = File.join(rundir, 'results_bills.csv') - assert(File.exist? annual_csv_path) - assert(File.exist? timeseries_csv_path) - - # Check outputs - hpxml_defaults_path = File.join(rundir, 'in.xml') - hpxml = HPXML.new(hpxml_path: hpxml_defaults_path, schema_validator: @schema_validator, schematron_validator: @schematron_validator) # Validate in.xml to ensure it can be run back through OS-HPXML - if not hpxml.errors.empty? - puts 'ERRORS:' - hpxml.errors.each do |error| - puts error - end - flunk "EPvalidator.xml error in #{hpxml_defaults_path}." - end - bill_results = _get_bill_results(bills_csv_path) - results = _get_simulation_results(annual_csv_path, xml) - _verify_outputs(rundir, xml, results, hpxml) - - return results, bill_results - end - - def _get_simulation_results(annual_csv_path, xml) - # Grab all outputs from reporting measure CSV annual results - results = {} - CSV.foreach(annual_csv_path) do |row| - next if row.nil? || (row.size < 2) - next if row[0].start_with? 'System Use:' - next if row[0].start_with? 'Emissions:' - - results[row[0]] = Float(row[1]) - end - - # Check discrepancy between total load and sum of component loads - if not xml.include? 'ASHRAE_Standard_140' - sum_component_htg_loads = results.select { |k, _v| k.start_with? 'Component Load: Heating:' }.values.sum(0.0) - sum_component_clg_loads = results.select { |k, _v| k.start_with? 'Component Load: Cooling:' }.values.sum(0.0) - total_htg_load_delivered = results['Load: Heating: Delivered (MBtu)'] - total_clg_load_delivered = results['Load: Cooling: Delivered (MBtu)'] - abs_htg_load_delta = (total_htg_load_delivered - sum_component_htg_loads).abs - abs_clg_load_delta = (total_clg_load_delivered - sum_component_clg_loads).abs - avg_htg_load = ([total_htg_load_delivered, sum_component_htg_loads].sum / 2.0) - avg_clg_load = ([total_clg_load_delivered, sum_component_clg_loads].sum / 2.0) - if avg_htg_load > 0 - abs_htg_load_frac = abs_htg_load_delta / avg_htg_load - end - if avg_clg_load > 0 - abs_clg_load_frac = abs_clg_load_delta / avg_clg_load - end - # Check that the difference is less than 1.5 MBtu or less than 10% - assert((abs_htg_load_delta < 1.5) || (!abs_htg_load_frac.nil? && abs_htg_load_frac < 0.1)) - assert((abs_clg_load_delta < 1.5) || (!abs_clg_load_frac.nil? && abs_clg_load_frac < 0.1)) - end - - return results - end - - def _get_bill_results(bill_csv_path) - # Grab all outputs from reporting measure CSV bill results - results = {} - if File.exist? bill_csv_path - CSV.foreach(bill_csv_path) do |row| - next if row.nil? || (row.size < 2) - - results[row[0]] = Float(row[1]) - end - end - - return results - end - - def _verify_outputs(rundir, hpxml_path, results, hpxml) - assert(File.exist? File.join(rundir, 'eplusout.msgpack')) - - sqlFile = OpenStudio::SqlFile.new(File.join(rundir, 'eplusout.sql'), false) - - # Collapse windows further using same logic as measure.rb - hpxml.windows.each do |window| - window.fraction_operable = nil - end - hpxml.collapse_enclosure_surfaces() - hpxml.delete_adiabatic_subsurfaces() - - # Check run.log warnings - File.readlines(File.join(rundir, 'run.log')).each do |message| - next if message.strip.empty? - next if message.start_with? 'Info: ' - next if message.start_with? 'Executing command' - next if message.include? 'Could not find state average' - - if hpxml_path.include? 'base-atticroof-conditioned.xml' - next if message.include?('Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment.') - end - if hpxml.clothes_washers.empty? - next if message.include? 'No clothes washer specified, the model will not include clothes washer energy use.' - end - if hpxml.clothes_dryers.empty? - next if message.include? 'No clothes dryer specified, the model will not include clothes dryer energy use.' - end - if hpxml.dishwashers.empty? - next if message.include? 'No dishwasher specified, the model will not include dishwasher energy use.' - end - if hpxml.refrigerators.empty? - next if message.include? 'No refrigerator specified, the model will not include refrigerator energy use.' - end - if hpxml.cooking_ranges.empty? - next if message.include? 'No cooking range specified, the model will not include cooking range/oven energy use.' - end - if hpxml.water_heating_systems.empty? - next if message.include? 'No water heating specified, the model will not include water heating energy use.' - end - if (hpxml.heating_systems + hpxml.heat_pumps).select { |h| h.fraction_heat_load_served.to_f > 0 }.empty? - next if message.include? 'No space heating specified, the model will not include space heating energy use.' - end - if (hpxml.cooling_systems + hpxml.heat_pumps).select { |c| c.fraction_cool_load_served.to_f > 0 }.empty? - next if message.include? 'No space cooling specified, the model will not include space cooling energy use.' - end - if hpxml.plug_loads.select { |p| p.plug_load_type == HPXML::PlugLoadTypeOther }.empty? - next if message.include? "No '#{HPXML::PlugLoadTypeOther}' plug loads specified, the model will not include misc plug load energy use." - end - if hpxml.plug_loads.select { |p| p.plug_load_type == HPXML::PlugLoadTypeTelevision }.empty? - next if message.include? "No '#{HPXML::PlugLoadTypeTelevision}' plug loads specified, the model will not include television plug load energy use." - end - if hpxml.lighting_groups.empty? - next if message.include? 'No interior lighting specified, the model will not include interior lighting energy use.' - next if message.include? 'No exterior lighting specified, the model will not include exterior lighting energy use.' - next if message.include? 'No garage lighting specified, the model will not include garage lighting energy use.' - end - if hpxml.windows.empty? - next if message.include? 'No windows specified, the model will not include window heat transfer.' - end - if hpxml.pv_systems.empty? && !hpxml.batteries.empty? && hpxml.header.schedules_filepaths.empty? - next if message.include? 'Battery without PV specified, and no charging/discharging schedule provided; battery is assumed to operate as backup and will not be modeled.' - end - if hpxml_path.include? 'base-location-capetown-zaf.xml' - next if message.include? 'OS Message: Minutes field (60) on line 9 of EPW file' - next if message.include? 'Could not find a marginal Electricity rate.' - next if message.include? 'Could not find a marginal Natural Gas rate.' - end - if !hpxml.hvac_distributions.select { |d| d.distribution_system_type == HPXML::HVACDistributionTypeDSE }.empty? - next if message.include? 'DSE is not currently supported when calculating utility bills.' - end - if !hpxml.header.unavailable_periods.select { |up| up.column_name == 'Power Outage' }.empty? - next if message.include? 'It is not possible to eliminate all HVAC energy use (e.g. crankcase/defrost energy) in EnergyPlus during an unavailable period.' - next if message.include? 'It is not possible to eliminate all water heater energy use (e.g. parasitics) in EnergyPlus during an unavailable period.' - end - if hpxml_path.include? 'base-location-AMY-2012.xml' - next if message.include? 'No design condition info found; calculating design conditions from EPW weather data.' - end - - flunk "Unexpected run.log message found for #{File.basename(hpxml_path)}: #{message}" - end - - # Check for unexpected eplusout.err messages - messages = [] - message = nil - File.readlines(File.join(rundir, 'eplusout.err')).each do |err_line| - if err_line.include?('** Warning **') || err_line.include?('** Severe **') || err_line.include?('** Fatal **') - messages << message unless message.nil? - message = err_line - else - message += err_line unless message.nil? - end - end - - messages.each do |message| - # General - next if message.include? 'Schedule:Constant="ALWAYS ON CONTINUOUS", Blank Schedule Type Limits Name input' - next if message.include? 'Schedule:Constant="ALWAYS OFF DISCRETE", Blank Schedule Type Limits Name input' - next if message.include? 'Entered Zone Volumes differ from calculated zone volume' - next if message.include? 'PerformancePrecisionTradeoffs: Carroll MRT radiant exchange method is selected.' - next if message.include?('CalculateZoneVolume') && message.include?('not fully enclosed') - next if message.include? 'do not define an enclosure' - next if message.include? 'Pump nominal power or motor efficiency is set to 0' - next if message.include? 'volume flow rate per watt of rated total cooling capacity is out of range' - next if message.include? 'volume flow rate per watt of rated total heating capacity is out of range' - next if message.include? 'Timestep: Requested number' - next if message.include? 'The Standard Ratings is calculated for' - next if message.include?('WetBulb not converged after') && message.include?('iterations(PsyTwbFnTdbWPb)') - next if message.include? 'Inside surface heat balance did not converge with Max Temp Difference' - next if message.include? 'Inside surface heat balance convergence problem continues' - next if message.include? 'Missing temperature setpoint for LeavingSetpointModulated mode' # These warnings are fine, simulation continues with assigning plant loop setpoint to boiler, which is the expected one - next if message.include?('Glycol: Temperature') && message.include?('out of range (too low) for fluid') - next if message.include?('Glycol: Temperature') && message.include?('out of range (too high) for fluid') - next if message.include? 'Plant loop exceeding upper temperature limit' - next if message.include? 'Plant loop falling below lower temperature limit' - next if message.include?('Foundation:Kiva') && message.include?('wall surfaces with more than four vertices') # TODO: Check alternative approach - next if message.include? 'Temperature out of range [-100. to 200.] (PsyPsatFnTemp)' - next if message.include? 'Enthalpy out of range (PsyTsatFnHPb)' - next if message.include? 'Full load outlet air dry-bulb temperature < 2C. This indicates the possibility of coil frost/freeze.' - next if message.include? 'Full load outlet temperature indicates a possibility of frost/freeze error continues.' - next if message.include? 'Air-cooled condenser inlet dry-bulb temperature below 0 C.' - next if message.include? 'Low condenser dry-bulb temperature error continues.' - next if message.include? 'Coil control failed' - next if message.include? 'sensible part-load ratio out of range error continues' - next if message.include? 'Iteration limit exceeded in calculating sensible part-load ratio error continues' - next if message.include?('setupIHGOutputs: Output variables=Zone Other Equipment') && message.include?('are not available.') - next if message.include?('setupIHGOutputs: Output variables=Space Other Equipment') && message.include?('are not available') - next if message.include? 'Actual air mass flow rate is smaller than 25% of water-to-air heat pump coil rated air flow rate.' # FUTURE: Remove this when https://github.com/NREL/EnergyPlus/issues/9125 is resolved - next if message.include? 'DetailedSkyDiffuseModeling is chosen but not needed as either the shading transmittance for shading devices does not change throughout the year' - next if message.include? 'View factors not complete' - next if message.include?('CheckSimpleWAHPRatedCurvesOutputs') && message.include?('WaterToAirHeatPump:EquationFit') # FIXME: Check these - - # HPWHs - if hpxml.water_heating_systems.select { |wh| wh.water_heater_type == HPXML::WaterHeaterTypeHeatPump }.size > 0 - next if message.include? 'Recovery Efficiency and Energy Factor could not be calculated during the test for standard ratings' - next if message.include? 'SimHVAC: Maximum iterations (20) exceeded for all HVAC loops' - next if message.include? 'Rated air volume flow rate per watt of rated total water heating capacity is out of range' - next if message.include? 'For object = Coil:WaterHeating:AirToWaterHeatPump:Wrapped' - next if message.include? 'Enthalpy out of range (PsyTsatFnHPb)' - next if message.include?('CheckWarmupConvergence: Loads Initialization') && message.include?('did not converge after 25 warmup days') - end - if hpxml.water_heating_systems.select { |wh| wh.water_heater_type == HPXML::WaterHeaterTypeHeatPump && wh.location == HPXML::LocationOtherExterior }.size > 0 - next if message.include? 'Water heater tank set point temperature is greater than or equal to the cut-in temperature of the heat pump water heater.' - end - # Stratified tank WHs - if hpxml.water_heating_systems.select { |wh| wh.tank_model_type == HPXML::WaterHeaterTankModelTypeStratified }.size > 0 - next if message.include? 'Recovery Efficiency and Energy Factor could not be calculated during the test for standard ratings' - end - # HP defrost curves - if hpxml.heat_pumps.select { |hp| [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit, HPXML::HVACTypeHeatPumpPTHP, HPXML::HVACTypeHeatPumpRoom].include? hp.heat_pump_type }.size > 0 - next if message.include?('GetDXCoils: Coil:Heating:DX') && message.include?('curve values') - end - if hpxml.cooling_systems.select { |c| c.cooling_system_type == HPXML::HVACTypeEvaporativeCooler }.size > 0 - # Evap cooler model is not really using Controller:MechanicalVentilation object, so these warnings of ignoring some features are fine. - # OS requires a Controller:MechanicalVentilation to be attached to the oa controller, however it's not required by E+. - # Manually removing Controller:MechanicalVentilation from idf eliminates these two warnings. - # FUTURE: Can we update OS to allow removing it? - next if message.include?('Zone') && message.include?('is not accounted for by Controller:MechanicalVentilation object') - next if message.include?('PEOPLE object for zone') && message.include?('is not accounted for by Controller:MechanicalVentilation object') - # "The only valid controller type for an AirLoopHVAC is Controller:WaterCoil.", evap cooler doesn't need one. - next if message.include?('GetAirPathData: AirLoopHVAC') && message.include?('has no Controllers') - # input "Autosize" for Fixed Minimum Air Flow Rate is added by OS translation, now set it to 0 to skip potential sizing process, though no way to prevent this warning. - next if message.include? 'Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored' - end - if hpxml.hvac_distributions.select { |d| d.air_type.to_s == HPXML::AirTypeFanCoil }.size > 0 - next if message.include? 'In calculating the design coil UA for Coil:Cooling:Water' # Warning for unused cooling coil for fan coil - end - if hpxml_path.include?('ground-to-air-heat-pump-cooling-only.xml') || hpxml_path.include?('ground-to-air-heat-pump-heating-only.xml') - next if message.include? 'COIL:HEATING:WATERTOAIRHEATPUMP:EQUATIONFIT' # heating capacity is > 20% different than cooling capacity; safe to ignore - end - if hpxml.solar_thermal_systems.size > 0 - next if message.include? 'Supply Side is storing excess heat the majority of the time.' - end - if !hpxml.header.unavailable_periods.empty? - next if message.include? 'Target water temperature is greater than the hot water temperature' - next if message.include? 'Target water temperature should be less than or equal to the hot water temperature' - end - - flunk "Unexpected eplusout.err message found for #{File.basename(hpxml_path)}: #{message}" - end - - # Check for unused objects/schedules/constructions warnings - num_unused_objects = 0 - num_unused_schedules = 0 - num_unused_constructions = 0 - File.readlines(File.join(rundir, 'eplusout.err')).each do |err_line| - if err_line.include? 'unused objects in input' - num_unused_objects = Integer(err_line.split(' ')[3]) - elsif err_line.include? 'unused schedules in input' - num_unused_schedules = Integer(err_line.split(' ')[3]) - elsif err_line.include? 'unused constructions in input' - num_unused_constructions = Integer(err_line.split(' ')[6]) - end - end - assert_equal(0, num_unused_objects) - assert_equal(0, num_unused_schedules) - assert_equal(0, num_unused_constructions) - - # Check for Output:Meter and Output:Variable warnings - num_invalid_output_meters = 0 - num_invalid_output_variables = 0 - File.readlines(File.join(rundir, 'eplusout.err')).each do |err_line| - if err_line.include? 'Output:Meter: invalid Key Name' - num_invalid_output_meters += 1 - elsif err_line.include?('Key=') && err_line.include?('VarName=') - num_invalid_output_variables += 1 - end - end - assert_equal(0, num_invalid_output_meters) - assert_equal(0, num_invalid_output_variables) - - # Timestep - timestep = hpxml.header.timestep - if timestep.nil? - timestep = 60 - end - query = 'SELECT NumTimestepsPerHour FROM Simulations' - sql_value = sqlFile.execAndReturnFirstDouble(query).get - assert_equal(60 / timestep, sql_value) - - # Conditioned Floor Area - if (hpxml.total_fraction_cool_load_served > 0) || (hpxml.total_fraction_heat_load_served > 0) # EnergyPlus will only report conditioned floor area if there is an HVAC system - hpxml_value = hpxml.building_construction.conditioned_floor_area - if hpxml.has_location(HPXML::LocationCrawlspaceConditioned) - hpxml_value += hpxml.slabs.select { |s| s.interior_adjacent_to == HPXML::LocationCrawlspaceConditioned }.map { |s| s.area }.sum - end - query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='InputVerificationandResultsSummary' AND ReportForString='Entire Facility' AND TableName='Zone Summary' AND RowName='Conditioned Total' AND ColumnName='Area' AND Units='m2'" - sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^2', 'ft^2') - assert_in_epsilon(hpxml_value, sql_value, 0.1) - end - - # Enclosure Roofs - hpxml.roofs.each do |roof| - roof_id = roof.id.upcase - - # R-value - hpxml_value = roof.insulation_assembly_r_value - if hpxml_path.include? 'ASHRAE_Standard_140' - # Compare R-value w/o film - hpxml_value -= Material.AirFilmRoofASHRAE140.rvalue - hpxml_value -= Material.AirFilmOutsideASHRAE140.rvalue - query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND (RowName='#{roof_id}' OR RowName LIKE '#{roof_id}:%') AND ColumnName='U-Factor no Film' AND Units='W/m2-K'" - else - # Compare R-value w/ film - query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND (RowName='#{roof_id}' OR RowName LIKE '#{roof_id}:%') AND ColumnName='U-Factor with Film' AND Units='W/m2-K'" - end - sql_value = 1.0 / UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'W/(m^2*K)', 'Btu/(hr*ft^2*F)') - assert_in_epsilon(hpxml_value, sql_value, 0.1) - - # Net area - hpxml_value = roof.area - hpxml.skylights.each do |subsurface| - next if subsurface.roof_idref.upcase != roof_id - - hpxml_value -= subsurface.area - end - query = "SELECT SUM(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND (RowName='#{roof_id}' OR RowName LIKE '#{roof_id}:%') AND ColumnName='Net Area' AND Units='m2'" - sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^2', 'ft^2') - assert_operator(sql_value, :>, 0.01) - assert_in_epsilon(hpxml_value, sql_value, 0.1) - - # Solar absorptance - hpxml_value = roof.solar_absorptance - query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND (RowName='#{roof_id}' OR RowName LIKE '#{roof_id}:%') AND ColumnName='Reflectance'" - sql_value = 1.0 - sqlFile.execAndReturnFirstDouble(query).get - assert_in_epsilon(hpxml_value, sql_value, 0.01) - - # Tilt - hpxml_value = UnitConversions.convert(Math.atan(roof.pitch / 12.0), 'rad', 'deg') - query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND (RowName='#{roof_id}' OR RowName LIKE '#{roof_id}:%') AND ColumnName='Tilt' AND Units='deg'" - sql_value = sqlFile.execAndReturnFirstDouble(query).get - assert_in_epsilon(hpxml_value, sql_value, 0.01) - - # Azimuth - next unless (not roof.azimuth.nil?) && (Float(roof.pitch) > 0) - - hpxml_value = roof.azimuth - query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND (RowName='#{roof_id}' OR RowName LIKE '#{roof_id}:%') AND ColumnName='Azimuth' AND Units='deg'" - sql_value = sqlFile.execAndReturnFirstDouble(query).get - assert_in_epsilon(hpxml_value, sql_value, 0.01) - end - - # Enclosure Foundations - # Ensure Kiva instances have perimeter fraction of 1.0 as we explicitly define them to end up this way. - num_kiva_instances = 0 - File.readlines(File.join(rundir, 'eplusout.eio')).each do |eio_line| - next unless eio_line.downcase.start_with? 'foundation kiva' - - kiva_perim_frac = Float(eio_line.split(',')[5]) - assert_equal(1.0, kiva_perim_frac) - - num_kiva_instances += 1 - end - - if hpxml_path.include? 'ASHRAE_Standard_140' - # nop - elsif hpxml_path.include? 'real_homes' - # nop - elsif hpxml.building_construction.residential_facility_type == HPXML::ResidentialTypeApartment - # no foundation, above dwelling unit - assert_equal(0, num_kiva_instances) - elsif hpxml.slabs.empty? - assert_equal(0, num_kiva_instances) - else - num_expected_kiva_instances = { 'base-foundation-multiple.xml' => 2, # additional instance for 2nd foundation type - 'base-enclosure-2stories-garage.xml' => 2, # additional instance for garage - 'base-foundation-basement-garage.xml' => 2, # additional instance for garage - 'base-enclosure-garage.xml' => 2, # additional instance for garage - 'base-foundation-walkout-basement.xml' => 4, # 3 foundation walls plus a no-wall exposed perimeter - 'base-foundation-complex.xml' => 10, # lots of foundations for testing - 'base-pv-battery-garage.xml' => 2 } # additional instance for garage - num_expected = num_expected_kiva_instances[File.basename(hpxml_path)] - num_expected = 1 if num_expected.nil? - assert_equal(num_expected, num_kiva_instances) - end - - # Enclosure Foundation Slabs - num_slabs = hpxml.slabs.size - if (num_slabs <= 1) && (num_kiva_instances <= 1) # The slab surfaces may be combined in these situations, so skip tests - hpxml.slabs.each do |slab| - slab_id = slab.id.upcase - - # Exposed Area - hpxml_value = Float(slab.area) - query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND RowName='#{slab_id}' AND ColumnName='Gross Area' AND Units='m2'" - sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^2', 'ft^2') - assert_operator(sql_value, :>, 0.01) - assert_in_epsilon(hpxml_value, sql_value, 0.1) - - # Tilt - query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND RowName='#{slab_id}' AND ColumnName='Tilt' AND Units='deg'" - sql_value = sqlFile.execAndReturnFirstDouble(query).get - assert_in_epsilon(180.0, sql_value, 0.01) - end - end - - # Enclosure Walls/RimJoists/FoundationWalls - (hpxml.walls + hpxml.rim_joists + hpxml.foundation_walls).each do |wall| - wall_id = wall.id.upcase - - if wall.is_adiabatic - # Adiabatic surfaces have their "BaseSurfaceIndex" as their "ExtBoundCond" in "Surfaces" table in SQL simulation results - query_base_surf_idx = "SELECT BaseSurfaceIndex FROM Surfaces WHERE SurfaceName='#{wall_id}'" - query_ext_bound = "SELECT ExtBoundCond FROM Surfaces WHERE SurfaceName='#{wall_id}'" - sql_value_base_surf_idx = sqlFile.execAndReturnFirstDouble(query_base_surf_idx).get - sql_value_ext_bound_cond = sqlFile.execAndReturnFirstDouble(query_ext_bound).get - assert_equal(sql_value_base_surf_idx, sql_value_ext_bound_cond) - end - - if wall.is_exterior - table_name = 'Opaque Exterior' - else - table_name = 'Opaque Interior' - end - - # R-value - if (not wall.insulation_assembly_r_value.nil?) && (not wall.is_a? HPXML::FoundationWall) # FoundationWalls use Foundation:Kiva for insulation - hpxml_value = wall.insulation_assembly_r_value - if hpxml_path.include? 'ASHRAE_Standard_140' - # Compare R-value w/o film - hpxml_value -= Material.AirFilmVerticalASHRAE140.rvalue - if wall.is_exterior - hpxml_value -= Material.AirFilmOutsideASHRAE140.rvalue - else - hpxml_value -= Material.AirFilmVerticalASHRAE140.rvalue - end - query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%') AND ColumnName='U-Factor no Film' AND Units='W/m2-K'" - elsif wall.is_interior - # Compare R-value w/o film - hpxml_value -= Material.AirFilmVertical.rvalue - hpxml_value -= Material.AirFilmVertical.rvalue - query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%') AND ColumnName='U-Factor no Film' AND Units='W/m2-K'" - else - # Compare R-value w/ film - query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%') AND ColumnName='U-Factor with Film' AND Units='W/m2-K'" - end - sql_value = 1.0 / UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'W/(m^2*K)', 'Btu/(hr*ft^2*F)') - assert_in_epsilon(hpxml_value, sql_value, 0.1) - end - - # Net area - hpxml_value = wall.area - (hpxml.windows + hpxml.doors).each do |subsurface| - next if subsurface.wall_idref.upcase != wall_id - - hpxml_value -= subsurface.area - end - if wall.exterior_adjacent_to == HPXML::LocationGround - # Calculate total length of walls - wall_total_length = 0 - hpxml.foundation_walls.each do |foundation_wall| - next unless foundation_wall.exterior_adjacent_to == HPXML::LocationGround - next unless wall.interior_adjacent_to == foundation_wall.interior_adjacent_to - - wall_total_length += foundation_wall.area / foundation_wall.height - end - - # Calculate total slab exposed perimeter - slab_exposed_length = 0 - hpxml.slabs.each do |slab| - next unless wall.interior_adjacent_to == slab.interior_adjacent_to - - slab_exposed_length += slab.exposed_perimeter - end - - # Calculate exposed foundation wall area - if slab_exposed_length < wall_total_length - hpxml_value *= (slab_exposed_length / wall_total_length) - end - end - if (hpxml.foundation_walls.include? wall) && (not wall.is_exterior) - # interzonal foundation walls: only above-grade portion modeled - hpxml_value *= (wall.height - wall.depth_below_grade) / wall.height - end - if wall.is_exterior - query = "SELECT SUM(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%' OR RowName LIKE '#{wall_id} %') AND ColumnName='Net Area' AND Units='m2'" - else - query = "SELECT SUM(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%') AND ColumnName='Net Area' AND Units='m2'" - end - sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^2', 'ft^2') - assert_operator(sql_value, :>, 0.01) - assert_in_epsilon(hpxml_value, sql_value, 0.1) - - # Solar absorptance - if wall.respond_to?(:solar_absorptance) && (not wall.solar_absorptance.nil?) - hpxml_value = wall.solar_absorptance - query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%') AND ColumnName='Reflectance'" - sql_value = 1.0 - sqlFile.execAndReturnFirstDouble(query).get - assert_in_epsilon(hpxml_value, sql_value, 0.01) - end - - # Tilt - query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%') AND ColumnName='Tilt' AND Units='deg'" - sql_value = sqlFile.execAndReturnFirstDouble(query).get - assert_in_epsilon(90.0, sql_value, 0.01) - - # Azimuth - next if wall.azimuth.nil? - - hpxml_value = wall.azimuth - query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%') AND ColumnName='Azimuth' AND Units='deg'" - sql_value = sqlFile.execAndReturnFirstDouble(query).get - assert_in_epsilon(hpxml_value, sql_value, 0.01) - end - - # Enclosure Floors - hpxml.floors.each do |floor| - floor_id = floor.id.upcase - - if floor.is_adiabatic - # Adiabatic surfaces have their "BaseSurfaceIndex" as their "ExtBoundCond" in "Surfaces" table in SQL simulation results - query_base_surf_idx = "SELECT BaseSurfaceIndex FROM Surfaces WHERE SurfaceName='#{floor_id}'" - query_ext_bound = "SELECT ExtBoundCond FROM Surfaces WHERE SurfaceName='#{floor_id}'" - sql_value_base_surf_idx = sqlFile.execAndReturnFirstDouble(query_base_surf_idx).get - sql_value_ext_bound_cond = sqlFile.execAndReturnFirstDouble(query_ext_bound).get - assert_equal(sql_value_base_surf_idx, sql_value_ext_bound_cond) - end - - if floor.is_exterior - table_name = 'Opaque Exterior' - else - table_name = 'Opaque Interior' - end - - # R-value - hpxml_value = floor.insulation_assembly_r_value - if hpxml_path.include? 'ASHRAE_Standard_140' - # Compare R-value w/o film - if floor.is_exterior # Raised floor - hpxml_value -= Material.AirFilmFloorASHRAE140.rvalue - hpxml_value -= Material.AirFilmFloorZeroWindASHRAE140.rvalue - elsif floor.is_ceiling # Attic floor - hpxml_value -= Material.AirFilmFloorASHRAE140.rvalue - hpxml_value -= Material.AirFilmFloorASHRAE140.rvalue - end - query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{floor_id}' AND ColumnName='U-Factor no Film' AND Units='W/m2-K'" - elsif floor.is_interior - # Compare R-value w/o film - if floor.is_ceiling - hpxml_value -= Material.AirFilmFloorAverage.rvalue - hpxml_value -= Material.AirFilmFloorAverage.rvalue - else - hpxml_value -= Material.AirFilmFloorReduced.rvalue - hpxml_value -= Material.AirFilmFloorReduced.rvalue - end - query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{floor_id}' AND ColumnName='U-Factor no Film' AND Units='W/m2-K'" - else - # Compare R-value w/ film - query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{floor_id}' AND ColumnName='U-Factor with Film' AND Units='W/m2-K'" - end - sql_value = 1.0 / UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'W/(m^2*K)', 'Btu/(hr*ft^2*F)') - assert_in_epsilon(hpxml_value, sql_value, 0.1) - - # Area - hpxml_value = floor.area - query = "SELECT SUM(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{floor_id}' AND ColumnName='Net Area' AND Units='m2'" - sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^2', 'ft^2') - assert_operator(sql_value, :>, 0.01) - assert_in_epsilon(hpxml_value, sql_value, 0.1) - - # Tilt - if floor.is_ceiling - hpxml_value = 0 - else - hpxml_value = 180 - end - query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{floor_id}' AND ColumnName='Tilt' AND Units='deg'" - sql_value = sqlFile.execAndReturnFirstDouble(query).get - assert_in_epsilon(hpxml_value, sql_value, 0.01) - end - - # Enclosure Windows/Skylights - (hpxml.windows + hpxml.skylights).each do |subsurface| - subsurface_id = subsurface.id.upcase - - if subsurface.is_exterior - table_name = 'Exterior Fenestration' - else - table_name = 'Interior Door' - end - - # Area - if subsurface.is_exterior - col_name = 'Area of Multiplied Openings' - else - col_name = 'Gross Area' - end - hpxml_value = subsurface.area - query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{subsurface_id}' AND ColumnName='#{col_name}' AND Units='m2'" - sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^2', 'ft^2') - assert_operator(sql_value, :>, 0.01) - assert_in_epsilon(hpxml_value, sql_value, 0.1) - - # U-Factor - if subsurface.is_exterior - col_name = 'Glass U-Factor' - else - col_name = 'U-Factor no Film' - end - hpxml_value = Constructions.get_ufactor_shgc_adjusted_by_storms(subsurface.storm_type, subsurface.ufactor, subsurface.shgc)[0] - if subsurface.is_interior - hpxml_value = 1.0 / (1.0 / hpxml_value - Material.AirFilmVertical.rvalue) - hpxml_value = 1.0 / (1.0 / hpxml_value - Material.AirFilmVertical.rvalue) - end - if subsurface.is_a? HPXML::Skylight - hpxml_value /= 1.2 # converted to the 20-deg slope from the vertical position by multiplying the tested value at vertical - end - query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{subsurface_id}' AND ColumnName='#{col_name}' AND Units='W/m2-K'" - sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'W/(m^2*K)', 'Btu/(hr*ft^2*F)') - assert_in_epsilon(hpxml_value, sql_value, 0.02) - - next unless subsurface.is_exterior - - # SHGC - hpxml_value = Constructions.get_ufactor_shgc_adjusted_by_storms(subsurface.storm_type, subsurface.ufactor, subsurface.shgc)[1] - query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{subsurface_id}' AND ColumnName='Glass SHGC'" - sql_value = sqlFile.execAndReturnFirstDouble(query).get - assert_in_delta(hpxml_value, sql_value, 0.01) - - # Azimuth - hpxml_value = subsurface.azimuth - query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{subsurface_id}' AND ColumnName='Azimuth' AND Units='deg'" - sql_value = sqlFile.execAndReturnFirstDouble(query).get - assert_in_epsilon(hpxml_value, sql_value, 0.01) - - # Tilt - if subsurface.is_a? HPXML::Window - query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{subsurface_id}' AND ColumnName='Tilt' AND Units='deg'" - sql_value = sqlFile.execAndReturnFirstDouble(query).get - assert_in_epsilon(90.0, sql_value, 0.01) - elsif subsurface.is_a? HPXML::Skylight - hpxml_value = nil - hpxml.roofs.each do |roof| - next if roof.id != subsurface.roof_idref - - hpxml_value = UnitConversions.convert(Math.atan(roof.pitch / 12.0), 'rad', 'deg') - end - query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{subsurface_id}' AND ColumnName='Tilt' AND Units='deg'" - sql_value = sqlFile.execAndReturnFirstDouble(query).get - assert_in_epsilon(hpxml_value, sql_value, 0.01) - else - flunk "Subsurface '#{subsurface_id}' should have either AttachedToWall or AttachedToRoof element." - end - end - - # Enclosure Doors - hpxml.doors.each do |door| - door_id = door.id.upcase - - if door.wall.is_exterior - table_name = 'Exterior Door' - else - table_name = 'Interior Door' - end - - # Area - if not door.area.nil? - hpxml_value = door.area - query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{door_id}' AND ColumnName='Gross Area' AND Units='m2'" - sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^2', 'ft^2') - assert_operator(sql_value, :>, 0.01) - assert_in_epsilon(hpxml_value, sql_value, 0.1) - end - - # R-Value - next if door.r_value.nil? - - if door.is_exterior - col_name = 'U-Factor with Film' - else - col_name = 'U-Factor no Film' - end - hpxml_value = door.r_value - if door.is_interior - hpxml_value -= Material.AirFilmVertical.rvalue - hpxml_value -= Material.AirFilmVertical.rvalue - end - query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{door_id}' AND ColumnName='#{col_name}' AND Units='W/m2-K'" - sql_value = 1.0 / UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'W/(m^2*K)', 'Btu/(hr*ft^2*F)') - assert_in_epsilon(hpxml_value, sql_value, 0.1) - end - - # HVAC Load Fractions - if (not hpxml_path.include? 'location-miami') && (not hpxml_path.include? 'location-honolulu') && (not hpxml_path.include? 'location-phoenix') - htg_energy = results.select { |k, _v| (k.include?(': Heating (MBtu)') || k.include?(': Heating Fans/Pumps (MBtu)')) && !k.include?('Load') }.values.sum(0.0) - assert_equal(hpxml.total_fraction_heat_load_served > 0, htg_energy > 0) - end - clg_energy = results.select { |k, _v| (k.include?(': Cooling (MBtu)') || k.include?(': Cooling Fans/Pumps (MBtu)')) && !k.include?('Load') }.values.sum(0.0) - assert_equal(hpxml.total_fraction_cool_load_served > 0, clg_energy > 0) - - # Mechanical Ventilation - whole_vent_fans = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_whole_building_ventilation && !vent_mech.is_cfis_supplemental_fan? } - local_vent_fans = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_local_ventilation } - fan_cfis = whole_vent_fans.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeCFIS } - fan_sup = whole_vent_fans.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeSupply } - fan_exh = whole_vent_fans.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeExhaust } - fan_bal = whole_vent_fans.select { |vent_mech| [HPXML::MechVentTypeBalanced, HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include?(vent_mech.fan_type) } - vent_fan_kitchen = local_vent_fans.select { |vent_mech| vent_mech.fan_location == HPXML::LocationKitchen } - vent_fan_bath = local_vent_fans.select { |vent_mech| vent_mech.fan_location == HPXML::LocationBath } - - if not (fan_cfis + fan_sup + fan_exh + fan_bal + vent_fan_kitchen + vent_fan_bath).empty? - mv_energy = UnitConversions.convert(results['End Use: Electricity: Mech Vent (MBtu)'], 'MBtu', 'GJ') - - if not fan_cfis.empty? - if (fan_sup + fan_exh + fan_bal + vent_fan_kitchen + vent_fan_bath).empty? - # CFIS only, check for positive mech vent energy that is less than the energy if it had run 24/7 - fan_gj = fan_cfis.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) - assert_operator(mv_energy, :>, 0) - assert_operator(mv_energy, :<, fan_gj) - end - else - # Supply, exhaust, ERV, HRV, etc., check for appropriate mech vent energy - fan_gj = 0 - if not fan_sup.empty? - fan_gj += fan_sup.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) - end - if not fan_exh.empty? - fan_gj += fan_exh.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) - end - if not fan_bal.empty? - fan_gj += fan_bal.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) - end - if not vent_fan_kitchen.empty? - fan_gj += vent_fan_kitchen.map { |vent_kitchen| UnitConversions.convert(vent_kitchen.unit_fan_power * vent_kitchen.hours_in_operation * vent_kitchen.count * 365.0, 'Wh', 'GJ') }.sum(0.0) - end - if not vent_fan_bath.empty? - fan_gj += vent_fan_bath.map { |vent_bath| UnitConversions.convert(vent_bath.unit_fan_power * vent_bath.hours_in_operation * vent_bath.count * 365.0, 'Wh', 'GJ') }.sum(0.0) - end - # Maximum error that can be caused by rounding - assert_in_delta(mv_energy, fan_gj, 0.006) - end - end - - tabular_map = { HPXML::ClothesWasher => Constants.ObjectNameClothesWasher, - HPXML::ClothesDryer => Constants.ObjectNameClothesDryer, - HPXML::Refrigerator => Constants.ObjectNameRefrigerator, - HPXML::Dishwasher => Constants.ObjectNameDishwasher, - HPXML::CookingRange => Constants.ObjectNameCookingRange } - - (hpxml.clothes_washers + hpxml.clothes_dryers + hpxml.refrigerators + hpxml.dishwashers + hpxml.cooking_ranges).each do |appliance| - next unless hpxml.water_heating_systems.size > 0 - - # Location - hpxml_value = appliance.location - if hpxml_value.nil? || HPXML::conditioned_locations.include?(hpxml_value) || [HPXML::LocationOtherHeatedSpace, HPXML::LocationOtherMultifamilyBufferSpace, HPXML::LocationOtherNonFreezingSpace].include?(hpxml_value) - hpxml_value = HPXML::LocationLivingSpace - end - tabular_value = tabular_map[appliance.class] - query = "SELECT Value FROM TabularDataWithStrings WHERE TableName='ElectricEquipment Internal Gains Nominal' AND ColumnName='Zone Name' AND RowName=(SELECT RowName FROM TabularDataWithStrings WHERE TableName='ElectricEquipment Internal Gains Nominal' AND ColumnName='Name' AND Value='#{tabular_value.upcase}')" - sql_value = sqlFile.execAndReturnFirstString(query).get - assert_equal(hpxml_value.upcase, sql_value) - end - - # Lighting - ltg_energy = results.select { |k, _v| k.include? 'End Use: Electricity: Lighting' }.values.sum(0.0) - if not (hpxml_path.include?('vacancy-year-round') || hpxml_path.include?('residents-0')) - assert_equal(hpxml.lighting_groups.size > 0, ltg_energy > 0) - else - assert_operator(hpxml.lighting_groups.size, :>, 0) - assert_equal(0, ltg_energy) - end - - # Get fuels - htg_fuels = [] - htg_backup_fuels = [] - wh_fuels = [] - hpxml.heating_systems.each do |heating_system| - if heating_system.is_heat_pump_backup_system - htg_backup_fuels << heating_system.heating_system_fuel - else - htg_fuels << heating_system.heating_system_fuel - end - end - hpxml.cooling_systems.each do |cooling_system| - if cooling_system.has_integrated_heating - htg_fuels << cooling_system.integrated_heating_system_fuel - end - end - hpxml.heat_pumps.each do |heat_pump| - if heat_pump.fraction_heat_load_served > 0 - htg_backup_fuels << heat_pump.backup_heating_fuel - end - end - hpxml.water_heating_systems.each do |water_heating_system| - related_hvac = water_heating_system.related_hvac_system - if related_hvac.nil? - wh_fuels << water_heating_system.fuel_type - elsif related_hvac.respond_to? :heating_system_fuel - wh_fuels << related_hvac.heating_system_fuel - end - end - - is_warm_climate = false - if ['USA_FL_Miami.Intl.AP.722020_TMY3.epw', - 'USA_HI_Honolulu.Intl.AP.911820_TMY3.epw', - 'USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw'].include? hpxml.climate_and_risk_zones.weather_station_epw_filepath - is_warm_climate = true - end - - # Fuel consumption checks - [HPXML::FuelTypeNaturalGas, - HPXML::FuelTypeOil, - HPXML::FuelTypeKerosene, - HPXML::FuelTypePropane, - HPXML::FuelTypeWoodCord, - HPXML::FuelTypeWoodPellets, - HPXML::FuelTypeCoal].each do |fuel| - fuel_name = fuel.split.map(&:capitalize).join(' ') - fuel_name += ' Cord' if fuel_name == 'Wood' - energy_htg = results.fetch("End Use: #{fuel_name}: Heating (MBtu)", 0) - energy_hp_backup = results.fetch("End Use: #{fuel_name}: Heating Heat Pump Backup (MBtu)", 0) - energy_dhw = results.fetch("End Use: #{fuel_name}: Hot Water (MBtu)", 0) - energy_cd = results.fetch("End Use: #{fuel_name}: Clothes Dryer (MBtu)", 0) - energy_cr = results.fetch("End Use: #{fuel_name}: Range/Oven (MBtu)", 0) - if htg_fuels.include? fuel - if (not hpxml_path.include? 'autosize') && (not is_warm_climate) - assert_operator(energy_htg, :>, 0) - end - else - assert_equal(0, energy_htg) - end - if htg_backup_fuels.include? fuel - if (not hpxml_path.include? 'autosize') && (not is_warm_climate) - assert_operator(energy_hp_backup, :>, 0) - end - else - assert_equal(0, energy_hp_backup) - end - if wh_fuels.include? fuel - assert_operator(energy_dhw, :>, 0) - else - assert_equal(0, energy_dhw) - end - if (hpxml.clothes_dryers.size > 0) && (hpxml.clothes_dryers[0].fuel_type == fuel) - assert_operator(energy_cd, :>, 0) - else - assert_equal(0, energy_cd) - end - if (hpxml.cooking_ranges.size > 0) && (hpxml.cooking_ranges[0].fuel_type == fuel) - assert_operator(energy_cr, :>, 0) - else - assert_equal(0, energy_cr) - end - end - - # Check unmet hours - unmet_hours_htg = results.select { |k, _v| k.include? 'Unmet Hours: Heating' }.values.sum(0.0) - unmet_hours_clg = results.select { |k, _v| k.include? 'Unmet Hours: Cooling' }.values.sum(0.0) - if hpxml_path.include? 'base-hvac-undersized.xml' - assert_operator(unmet_hours_htg, :>, 1000) - assert_operator(unmet_hours_clg, :>, 1000) - else - if hpxml.total_fraction_heat_load_served == 0 - assert_equal(0, unmet_hours_htg) - else - assert_operator(unmet_hours_htg, :<, 350) - end - if hpxml.total_fraction_cool_load_served == 0 - assert_equal(0, unmet_hours_clg) - else - assert_operator(unmet_hours_clg, :<, 350) - end - end - - sqlFile.close - - # Ensure sql file is immediately freed; otherwise we can get - # errors on Windows when trying to delete this file. - GC.start() - end - - def _write_results(results, csv_out) - require 'csv' - - output_keys = [] - results.values.each do |xml_results| - xml_results.keys.each do |key| - next if output_keys.include? key - - output_keys << key - end - end - - CSV.open(csv_out, 'w') do |csv| - csv << ['HPXML'] + output_keys - results.sort.each do |xml, xml_results| - csv_row = [xml] - output_keys.each do |key| - if xml_results[key].nil? - csv_row << 0 - else - csv_row << xml_results[key] - end - end - csv << csv_row - end - end - - puts "Wrote results to #{csv_out}." - end - - def _write_ashrae_140_results(all_results, csv_out) - require 'csv' - - htg_loads = {} - clg_loads = {} - CSV.open(csv_out, 'w') do |csv| - csv << ['Test Case', 'Annual Heating Load [MMBtu]', 'Annual Cooling Load [MMBtu]'] - all_results.sort.each do |xml, xml_results| - next unless xml.include? 'C.xml' - - htg_load = xml_results['Load: Heating: Delivered (MBtu)'].round(2) - csv << [File.basename(xml), htg_load, 'N/A'] - test_name = File.basename(xml, File.extname(xml)) - htg_loads[test_name] = htg_load - end - all_results.sort.each do |xml, xml_results| - next unless xml.include? 'L.xml' - - clg_load = xml_results['Load: Cooling: Delivered (MBtu)'].round(2) - csv << [File.basename(xml), 'N/A', clg_load] - test_name = File.basename(xml, File.extname(xml)) - clg_loads[test_name] = clg_load - end - end - - puts "Wrote ASHRAE 140 results to #{csv_out}." - end -end diff --git a/example_files/resources/hpxml-measures/workflow/tests/util.rb b/example_files/resources/hpxml-measures/workflow/tests/util.rb new file mode 100644 index 00000000..e09cdd31 --- /dev/null +++ b/example_files/resources/hpxml-measures/workflow/tests/util.rb @@ -0,0 +1,1141 @@ +# ********************************************************************************* +# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. +# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md +# ********************************************************************************* + +# frozen_string_literal: true + +def run_simulation_tests(xmls) + # Run simulations + puts "Running #{xmls.size} HPXML files..." + all_results = {} + all_results_bills = {} + Parallel.map(xmls, in_threads: Parallel.processor_count) do |xml| + next if xml.end_with? '-10x.xml' + next if xml.include? 'base-multiple-sfd-buildings' # Separate tests cover this + next if xml.include? 'base-multiple-mf-units' # Separate tests cover this + + xml_name = File.basename(xml) + results = _run_xml(xml, Parallel.worker_number) + all_results[xml_name], all_results_bills[xml_name], timeseries_results = results + + next unless xml.include?('sample_files') || xml.include?('real_homes') + + # Also run with a 10x unit multiplier (2 identical dwelling units each with a 5x + # unit multiplier) and check how the results compare to the original run + _run_xml(xml, Parallel.worker_number, true, all_results[xml_name], timeseries_results) + end + + return all_results, all_results_bills +end + +def _run_xml(xml, worker_num, apply_unit_multiplier = false, results_1x = nil, timeseries_results_1x = nil) + unit_multiplier = 1 + if apply_unit_multiplier + hpxml = HPXML.new(hpxml_path: xml, building_id: 'ALL') + hpxml.buildings.each do |hpxml_bldg| + next unless hpxml_bldg.building_construction.number_of_units.nil? + + hpxml_bldg.building_construction.number_of_units = 1 + end + orig_multiplier = hpxml.buildings.map { |hpxml_bldg| hpxml_bldg.building_construction.number_of_units }.sum + + # Create copy of the HPXML where the number of Building elements is doubled + # and each Building is assigned a unit multiplier of 5 (2x5=10). + n_bldgs = hpxml.buildings.size + for i in 0..n_bldgs - 1 + hpxml_bldg = hpxml.buildings[i] + if hpxml_bldg.dehumidifiers.size > 0 + # FUTURE: Dehumidifiers currently don't give desired results w/ unit multipliers + # https://github.com/NREL/OpenStudio-HPXML/issues/1499 + elsif hpxml_bldg.heat_pumps.select { |hp| hp.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir }.size > 0 + # FUTURE: GSHPs currently don't give desired results w/ unit multipliers + # https://github.com/NREL/OpenStudio-HPXML/issues/1499 + elsif hpxml_bldg.batteries.size > 0 + # FUTURE: Batteries currently don't work with whole SFA/MF buildings + # https://github.com/NREL/OpenStudio-HPXML/issues/1499 + return + else + hpxml_bldg.building_construction.number_of_units *= 5 + end + hpxml.buildings << hpxml_bldg.dup + end + xml.gsub!('.xml', '-10x.xml') + hpxml_doc = hpxml.to_doc() + hpxml.set_unique_hpxml_ids(hpxml_doc) + XMLHelper.write_file(hpxml_doc, xml) + unit_multiplier = hpxml.buildings.map { |hpxml_bldg| hpxml_bldg.building_construction.number_of_units }.sum / orig_multiplier + end + + print "Testing #{File.basename(xml)}...\n" + rundir = File.join(File.dirname(__FILE__), "test#{worker_num}") + + # Uses 'monthly' to verify timeseries results match annual results via error-checking + # inside the ReportSimulationOutput measure. + cli_path = OpenStudio.getOpenStudioCLI + command = "\"#{cli_path}\" \"#{File.join(File.dirname(__FILE__), '../run_simulation.rb')}\" -x \"#{xml}\" --add-component-loads -o \"#{rundir}\" --debug --monthly ALL" + if unit_multiplier > 1 + command += ' -b ALL' + end + success = system(command) + + if unit_multiplier > 1 + # Clean up + File.delete(xml) + xml.gsub!('-10x.xml', '.xml') + end + + rundir = File.join(rundir, 'run') + + # Check results + print "Simulation failed: #{xml}.\n" unless success + assert_equal(true, success) + + # Check for output files + annual_csv_path = File.join(rundir, 'results_annual.csv') + timeseries_csv_path = File.join(rundir, 'results_timeseries.csv') + bills_csv_path = File.join(rundir, 'results_bills.csv') + assert(File.exist? annual_csv_path) + assert(File.exist? timeseries_csv_path) + + # Check outputs + hpxml_defaults_path = File.join(rundir, 'in.xml') + schema_validator = XMLValidator.get_schema_validator(File.join(File.dirname(__FILE__), '..', '..', 'HPXMLtoOpenStudio', 'resources', 'hpxml_schema', 'HPXML.xsd')) + schematron_validator = XMLValidator.get_schematron_validator(File.join(File.dirname(__FILE__), '..', '..', 'HPXMLtoOpenStudio', 'resources', 'hpxml_schematron', 'EPvalidator.xml')) + hpxml = HPXML.new(hpxml_path: hpxml_defaults_path, schema_validator: schema_validator, schematron_validator: schematron_validator, building_id: 'ALL') # Validate in.xml to ensure it can be run back through OS-HPXML + if not hpxml.errors.empty? + puts 'ERRORS:' + hpxml.errors.each do |error| + puts error + end + flunk "EPvalidator.xml error in #{hpxml_defaults_path}." + end + bill_results = _get_bill_results(bills_csv_path) + results = _get_simulation_results(annual_csv_path) + timeseries_results = _get_simulation_timeseries_results(timeseries_csv_path) + _verify_outputs(rundir, xml, results, hpxml, unit_multiplier) + if unit_multiplier > 1 + _check_unit_multiplier_results(hpxml.buildings[0], results_1x, results, timeseries_results_1x, timeseries_results, unit_multiplier) + end + + return results, bill_results, timeseries_results +end + +def _get_simulation_results(annual_csv_path) + # Grab all outputs from reporting measure CSV annual results + results = {} + CSV.foreach(annual_csv_path) do |row| + next if row.nil? || (row.size < 2) + + results[row[0]] = Float(row[1]) + end + + return results +end + +def _get_simulation_timeseries_results(timeseries_csv_path) + results = {} + headers = nil + CSV.foreach(timeseries_csv_path).with_index do |row, i| + row = row[1..-1] # Skip time column + if i == 0 # Header row + headers = row + next + elsif i == 1 # Units row + headers = headers.zip(row).map { |header, units| "#{header} (#{units})" } + next + end + + for i in 0..row.size - 1 + results[headers[i]] = [] if results[headers[i]].nil? + results[headers[i]] << Float(row[i]) + end + end + + return results +end + +def _get_bill_results(bill_csv_path) + # Grab all outputs (except monthly) from reporting measure CSV bill results + results = {} + if File.exist? bill_csv_path + CSV.foreach(bill_csv_path) do |row| + next if row.nil? || (row.size < 2) + next if (1..12).to_a.any? { |month| row[0].include?(": Month #{month}:") } + + results[row[0]] = Float(row[1]) + end + end + + return results +end + +def _verify_outputs(rundir, hpxml_path, results, hpxml, unit_multiplier) + assert(File.exist? File.join(rundir, 'eplusout.msgpack')) + + hpxml_header = hpxml.header + hpxml_bldg = hpxml.buildings[0] + sqlFile = OpenStudio::SqlFile.new(File.join(rundir, 'eplusout.sql'), false) + + # Collapse windows further using same logic as measure.rb + hpxml_bldg.windows.each do |window| + window.fraction_operable = nil + end + hpxml_bldg.collapse_enclosure_surfaces() + hpxml_bldg.delete_adiabatic_subsurfaces() + + # Check run.log warnings + File.readlines(File.join(rundir, 'run.log')).each do |message| + next if message.strip.empty? + next if message.start_with? 'Info: ' + next if message.start_with? 'Executing command' + next if message.include? 'Could not find state average' + + if hpxml_bldg.clothes_washers.empty? + next if message.include? 'No clothes washer specified, the model will not include clothes washer energy use.' + end + if hpxml_bldg.clothes_dryers.empty? + next if message.include? 'No clothes dryer specified, the model will not include clothes dryer energy use.' + end + if hpxml_bldg.dishwashers.empty? + next if message.include? 'No dishwasher specified, the model will not include dishwasher energy use.' + end + if hpxml_bldg.refrigerators.empty? + next if message.include? 'No refrigerator specified, the model will not include refrigerator energy use.' + end + if hpxml_bldg.cooking_ranges.empty? + next if message.include? 'No cooking range specified, the model will not include cooking range/oven energy use.' + end + if hpxml_bldg.water_heating_systems.empty? + next if message.include? 'No water heating specified, the model will not include water heating energy use.' + end + if (hpxml_bldg.heating_systems + hpxml_bldg.heat_pumps).select { |h| h.fraction_heat_load_served.to_f > 0 }.empty? + next if message.include? 'No space heating specified, the model will not include space heating energy use.' + end + if (hpxml_bldg.cooling_systems + hpxml_bldg.heat_pumps).select { |c| c.fraction_cool_load_served.to_f > 0 }.empty? + next if message.include? 'No space cooling specified, the model will not include space cooling energy use.' + end + if hpxml_bldg.plug_loads.select { |p| p.plug_load_type == HPXML::PlugLoadTypeOther }.empty? + next if message.include? "No '#{HPXML::PlugLoadTypeOther}' plug loads specified, the model will not include misc plug load energy use." + end + if hpxml_bldg.plug_loads.select { |p| p.plug_load_type == HPXML::PlugLoadTypeTelevision }.empty? + next if message.include? "No '#{HPXML::PlugLoadTypeTelevision}' plug loads specified, the model will not include television plug load energy use." + end + if hpxml_bldg.lighting_groups.empty? + next if message.include? 'No interior lighting specified, the model will not include interior lighting energy use.' + next if message.include? 'No exterior lighting specified, the model will not include exterior lighting energy use.' + next if message.include? 'No garage lighting specified, the model will not include garage lighting energy use.' + end + if hpxml_bldg.windows.empty? + next if message.include? 'No windows specified, the model will not include window heat transfer.' + end + if hpxml_bldg.pv_systems.empty? && !hpxml_bldg.batteries.empty? && hpxml_bldg.header.schedules_filepaths.empty? + next if message.include? 'Battery without PV specified, and no charging/discharging schedule provided; battery is assumed to operate as backup and will not be modeled.' + end + if hpxml_path.include? 'base-location-capetown-zaf.xml' + next if message.include? 'OS Message: Minutes field (60) on line 9 of EPW file' + next if message.include? 'Could not find a marginal Electricity rate.' + next if message.include? 'Could not find a marginal Natural Gas rate.' + end + if !hpxml_bldg.hvac_distributions.select { |d| d.distribution_system_type == HPXML::HVACDistributionTypeDSE }.empty? + next if message.include? 'DSE is not currently supported when calculating utility bills.' + end + if !hpxml_header.unavailable_periods.select { |up| up.column_name == 'Power Outage' }.empty? + next if message.include? 'It is not possible to eliminate all HVAC energy use (e.g. crankcase/defrost energy) in EnergyPlus during an unavailable period.' + next if message.include? 'It is not possible to eliminate all water heater energy use (e.g. parasitics) in EnergyPlus during an unavailable period.' + end + if hpxml_path.include? 'base-location-AMY-2012.xml' + next if message.include? 'No design condition info found; calculating design conditions from EPW weather data.' + end + if hpxml_bldg.building_construction.number_of_units > 1 + next if message.include? 'NumberofUnits is greater than 1, indicating that the HPXML Building represents multiple dwelling units; simulation outputs will reflect this unit multiplier.' + end + + # FUTURE: Revert this eventually + # https://github.com/NREL/OpenStudio-HPXML/issues/1499 + if hpxml_header.utility_bill_scenarios.has_detailed_electric_rates + uses_unit_multipliers = hpxml.buildings.select { |hpxml_bldg| hpxml_bldg.building_construction.number_of_units > 1 }.size > 0 + if uses_unit_multipliers || hpxml.buildings.size > 1 + next if message.include? 'Cannot currently calculate utility bills based on detailed electric rates for an HPXML with unit multipliers or multiple Building elements' + end + end + + flunk "Unexpected run.log message found for #{File.basename(hpxml_path)}: #{message}" + end + + # Check for unexpected eplusout.err messages + messages = [] + message = nil + File.readlines(File.join(rundir, 'eplusout.err')).each do |err_line| + if err_line.include?('** Warning **') || err_line.include?('** Severe **') || err_line.include?('** Fatal **') + messages << message unless message.nil? + message = err_line + else + message += err_line unless message.nil? + end + end + + messages.each do |message| + # General + next if message.include? 'Schedule:Constant="ALWAYS ON CONTINUOUS", Blank Schedule Type Limits Name input' + next if message.include? 'Schedule:Constant="ALWAYS ON DISCRETE", Blank Schedule Type Limits Name input' + next if message.include? 'Schedule:Constant="ALWAYS OFF DISCRETE", Blank Schedule Type Limits Name input' + next if message.include? 'Entered Zone Volumes differ from calculated zone volume' + next if message.include? 'PerformancePrecisionTradeoffs: Carroll MRT radiant exchange method is selected.' + next if message.include?('CalculateZoneVolume') && message.include?('not fully enclosed') + next if message.include? 'do not define an enclosure' + next if message.include? 'Pump nominal power or motor efficiency is set to 0' + next if message.include? 'volume flow rate per watt of rated total cooling capacity is out of range' + next if message.include? 'volume flow rate per watt of rated total heating capacity is out of range' + next if message.include? 'The Standard Ratings is calculated for' + next if message.include?('WetBulb not converged after') && message.include?('iterations(PsyTwbFnTdbWPb)') + next if message.include? 'Inside surface heat balance did not converge with Max Temp Difference' + next if message.include? 'Inside surface heat balance convergence problem continues' + next if message.include?('Glycol: Temperature') && message.include?('out of range (too low) for fluid') + next if message.include?('Glycol: Temperature') && message.include?('out of range (too high) for fluid') + next if message.include? 'Plant loop exceeding upper temperature limit' + next if message.include? 'Plant loop falling below lower temperature limit' + next if message.include?('Foundation:Kiva') && message.include?('wall surfaces with more than four vertices') # TODO: Check alternative approach + next if message.include? 'Temperature out of range [-100. to 200.] (PsyPsatFnTemp)' + next if message.include? 'Enthalpy out of range (PsyTsatFnHPb)' + next if message.include? 'Full load outlet air dry-bulb temperature < 2C. This indicates the possibility of coil frost/freeze.' + next if message.include? 'Full load outlet temperature indicates a possibility of frost/freeze error continues.' + next if message.include? 'Air-cooled condenser inlet dry-bulb temperature below 0 C.' + next if message.include? 'Low condenser dry-bulb temperature error continues.' + next if message.include? 'Coil control failed' + next if message.include? 'sensible part-load ratio out of range error continues' + next if message.include? 'Iteration limit exceeded in calculating sensible part-load ratio error continues' + next if message.include?('setupIHGOutputs: Output variables=Zone Other Equipment') && message.include?('are not available.') + next if message.include?('setupIHGOutputs: Output variables=Space Other Equipment') && message.include?('are not available') + next if message.include? 'Multiple speed fan will be applied to this unit. The speed number is determined by load.' + + # HPWHs + if hpxml_bldg.water_heating_systems.select { |wh| wh.water_heater_type == HPXML::WaterHeaterTypeHeatPump }.size > 0 + next if message.include? 'Recovery Efficiency and Energy Factor could not be calculated during the test for standard ratings' + next if message.include? 'SimHVAC: Maximum iterations (20) exceeded for all HVAC loops' + next if message.include? 'Rated air volume flow rate per watt of rated total water heating capacity is out of range' + next if message.include? 'For object = Coil:WaterHeating:AirToWaterHeatPump:Wrapped' + next if message.include? 'Enthalpy out of range (PsyTsatFnHPb)' + next if message.include?('CheckWarmupConvergence: Loads Initialization') && message.include?('did not converge after 25 warmup days') + end + # HPWHs outside + if hpxml_bldg.water_heating_systems.select { |wh| wh.water_heater_type == HPXML::WaterHeaterTypeHeatPump && wh.location == HPXML::LocationOtherExterior }.size > 0 + next if message.include? 'Water heater tank set point temperature is greater than or equal to the cut-in temperature of the heat pump water heater.' + end + # Stratified tank WHs + if hpxml_bldg.water_heating_systems.select { |wh| wh.tank_model_type == HPXML::WaterHeaterTankModelTypeStratified }.size > 0 + next if message.include? 'Recovery Efficiency and Energy Factor could not be calculated during the test for standard ratings' + end + # HP defrost curves + if hpxml_bldg.heat_pumps.select { |hp| [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit, HPXML::HVACTypeHeatPumpPTHP, HPXML::HVACTypeHeatPumpRoom].include? hp.heat_pump_type }.size > 0 + next if message.include?('GetDXCoils: Coil:Heating:DX') && message.include?('curve values') && message.include?('Defrost Energy Input Ratio Function of Temperature Curve') + end + # variable system SHR adjustment + if (hpxml_bldg.heat_pumps + hpxml_bldg.cooling_systems).select { |hp| hp.compressor_type == HPXML::HVACCompressorTypeVariableSpeed }.size > 0 + next if message.include?('CalcCBF: SHR adjusted to achieve valid outlet air properties and the simulation continues.') + end + # Evaporative coolers + if hpxml_bldg.cooling_systems.select { |c| c.cooling_system_type == HPXML::HVACTypeEvaporativeCooler }.size > 0 + # Evap cooler model is not really using Controller:MechanicalVentilation object, so these warnings of ignoring some features are fine. + # OS requires a Controller:MechanicalVentilation to be attached to the oa controller, however it's not required by E+. + # Manually removing Controller:MechanicalVentilation from idf eliminates these two warnings. + # FUTURE: Can we update OS to allow removing it? + next if message.include?('Zone') && message.include?('is not accounted for by Controller:MechanicalVentilation object') + next if message.include?('PEOPLE object for zone') && message.include?('is not accounted for by Controller:MechanicalVentilation object') + # "The only valid controller type for an AirLoopHVAC is Controller:WaterCoil.", evap cooler doesn't need one. + next if message.include?('GetAirPathData: AirLoopHVAC') && message.include?('has no Controllers') + # input "Autosize" for Fixed Minimum Air Flow Rate is added by OS translation, now set it to 0 to skip potential sizing process, though no way to prevent this warning. + next if message.include? 'Since Zone Minimum Air Flow Input Method = CONSTANT, input for Fixed Minimum Air Flow Rate will be ignored' + end + # Fan coil distribution + if hpxml_bldg.hvac_distributions.select { |d| d.air_type.to_s == HPXML::AirTypeFanCoil }.size > 0 + next if message.include? 'In calculating the design coil UA for Coil:Cooling:Water' # Warning for unused cooling coil for fan coil + end + # Boilers + if hpxml_bldg.heating_systems.select { |h| h.heating_system_type == HPXML::HVACTypeBoiler }.size > 0 + next if message.include? 'Missing temperature setpoint for LeavingSetpointModulated mode' # These warnings are fine, simulation continues with assigning plant loop setpoint to boiler, which is the expected one + end + # GSHPs + if hpxml_bldg.heat_pumps.select { |hp| hp.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir }.size > 0 + next if message.include?('CheckSimpleWAHPRatedCurvesOutputs') && message.include?('WaterToAirHeatPump:EquationFit') # FUTURE: Check these + next if message.include? 'Actual air mass flow rate is smaller than 25% of water-to-air heat pump coil rated air flow rate.' # FUTURE: Remove this when https://github.com/NREL/EnergyPlus/issues/9125 is resolved + end + # GSHPs with only heating or cooling + if hpxml_bldg.heat_pumps.select { |hp| hp.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir && (hp.fraction_heat_load_served == 0 || hp.fraction_cool_load_served == 0) }.size > 0 + next if message.include? 'heating capacity is disproportionate (> 20% different) to total cooling capacity' # safe to ignore + end + # Solar thermal systems + if hpxml_bldg.solar_thermal_systems.size > 0 + next if message.include? 'Supply Side is storing excess heat the majority of the time.' + end + # Unavailability periods + if !hpxml_header.unavailable_periods.empty? + next if message.include? 'Target water temperature is greater than the hot water temperature' + next if message.include? 'Target water temperature should be less than or equal to the hot water temperature' + end + # Simulation w/ timesteps longer than 15-minutes + timestep = hpxml_header.timestep.nil? ? 60 : hpxml_header.timestep + if timestep > 15 + next if message.include?('Timestep: Requested number') && message.include?('is less than the suggested minimum') + end + # TODO: Check why this house produces this warning + if hpxml_path.include? 'house044.xml' + next if message.include? 'FixViewFactors: View factors not complete. Check for bad surface descriptions or unenclosed zone' + end + + flunk "Unexpected eplusout.err message found for #{File.basename(hpxml_path)}: #{message}" + end + + # Check for unused objects/schedules/constructions warnings + num_unused_objects = 0 + num_unused_schedules = 0 + num_unused_constructions = 0 + File.readlines(File.join(rundir, 'eplusout.err')).each do |err_line| + if err_line.include? 'unused objects in input' + num_unused_objects = Integer(err_line.split(' ')[3]) + elsif err_line.include? 'unused schedules in input' + num_unused_schedules = Integer(err_line.split(' ')[3]) + elsif err_line.include? 'unused constructions in input' + num_unused_constructions = Integer(err_line.split(' ')[6]) + end + end + assert_equal(0, num_unused_objects) + assert_equal(0, num_unused_schedules) + assert_equal(0, num_unused_constructions) + + # Check for Output:Meter and Output:Variable warnings + num_invalid_output_meters = 0 + num_invalid_output_variables = 0 + File.readlines(File.join(rundir, 'eplusout.err')).each do |err_line| + if err_line.include? 'Output:Meter: invalid Key Name' + num_invalid_output_meters += 1 + elsif err_line.include?('Key=') && err_line.include?('VarName=') + num_invalid_output_variables += 1 + end + end + assert_equal(0, num_invalid_output_meters) + assert_equal(0, num_invalid_output_variables) + + # Check discrepancy between total load and sum of component loads + if not hpxml_path.include? 'ASHRAE_Standard_140' + sum_component_htg_loads = results.select { |k, _v| k.start_with? 'Component Load: Heating:' }.values.sum(0.0) + sum_component_clg_loads = results.select { |k, _v| k.start_with? 'Component Load: Cooling:' }.values.sum(0.0) + total_htg_load_delivered = results['Load: Heating: Delivered (MBtu)'] + total_clg_load_delivered = results['Load: Cooling: Delivered (MBtu)'] + abs_htg_load_delta = (total_htg_load_delivered - sum_component_htg_loads).abs + abs_clg_load_delta = (total_clg_load_delivered - sum_component_clg_loads).abs + avg_htg_load = [total_htg_load_delivered, sum_component_htg_loads].sum / 2.0 + avg_clg_load = [total_clg_load_delivered, sum_component_clg_loads].sum / 2.0 + if avg_htg_load > 0 + abs_htg_load_frac = abs_htg_load_delta / avg_htg_load + end + if avg_clg_load > 0 + abs_clg_load_frac = abs_clg_load_delta / avg_clg_load + end + # Check that the difference is less than 1.5 MBtu or less than 10% + assert((abs_htg_load_delta < 1.5 * unit_multiplier) || (!abs_htg_load_frac.nil? && abs_htg_load_frac < 0.1)) + assert((abs_clg_load_delta < 1.5 * unit_multiplier) || (!abs_clg_load_frac.nil? && abs_clg_load_frac < 0.1)) + end + + return if (hpxml.buildings.size > 1) || (hpxml_bldg.building_construction.number_of_units > 1) + + # Timestep + timestep = hpxml_header.timestep.nil? ? 60 : hpxml_header.timestep + query = 'SELECT NumTimestepsPerHour FROM Simulations' + sql_value = sqlFile.execAndReturnFirstDouble(query).get + assert_equal(60 / timestep, sql_value) + + # Conditioned Floor Area + if (hpxml_bldg.total_fraction_cool_load_served > 0) || (hpxml_bldg.total_fraction_heat_load_served > 0) # EnergyPlus will only report conditioned floor area if there is an HVAC system + hpxml_value = hpxml_bldg.building_construction.conditioned_floor_area + if hpxml_bldg.has_location(HPXML::LocationCrawlspaceConditioned) + hpxml_value += hpxml_bldg.slabs.select { |s| s.interior_adjacent_to == HPXML::LocationCrawlspaceConditioned }.map { |s| s.area }.sum + end + query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='InputVerificationandResultsSummary' AND ReportForString='Entire Facility' AND TableName='Zone Summary' AND RowName='Conditioned Total' AND ColumnName='Area' AND Units='m2'" + sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^2', 'ft^2') + assert_in_epsilon(hpxml_value, sql_value, 0.1) + end + + # Enclosure Roofs + hpxml_bldg.roofs.each do |roof| + roof_id = roof.id.upcase + + # R-value + hpxml_value = roof.insulation_assembly_r_value + if hpxml_path.include? 'ASHRAE_Standard_140' + # Compare R-value w/o film + hpxml_value -= Material.AirFilmRoofASHRAE140.rvalue + hpxml_value -= Material.AirFilmOutsideASHRAE140.rvalue + query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND (RowName='#{roof_id}' OR RowName LIKE '#{roof_id}:%') AND ColumnName='U-Factor no Film' AND Units='W/m2-K'" + else + # Compare R-value w/ film + query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND (RowName='#{roof_id}' OR RowName LIKE '#{roof_id}:%') AND ColumnName='U-Factor with Film' AND Units='W/m2-K'" + end + sql_value = 1.0 / UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'W/(m^2*K)', 'Btu/(hr*ft^2*F)') + assert_in_epsilon(hpxml_value, sql_value, 0.1) + + # Net area + hpxml_value = roof.area + hpxml_bldg.skylights.each do |subsurface| + next if subsurface.roof_idref.upcase != roof_id + + hpxml_value -= subsurface.area + end + query = "SELECT SUM(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND (RowName='#{roof_id}' OR RowName LIKE '#{roof_id}:%') AND ColumnName='Net Area' AND Units='m2'" + sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^2', 'ft^2') + assert_operator(sql_value, :>, 0.01) + assert_in_epsilon(hpxml_value, sql_value, 0.1) + + # Solar absorptance + hpxml_value = roof.solar_absorptance + query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND (RowName='#{roof_id}' OR RowName LIKE '#{roof_id}:%') AND ColumnName='Reflectance'" + sql_value = 1.0 - sqlFile.execAndReturnFirstDouble(query).get + assert_in_epsilon(hpxml_value, sql_value, 0.01) + + # Tilt + hpxml_value = UnitConversions.convert(Math.atan(roof.pitch / 12.0), 'rad', 'deg') + query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND (RowName='#{roof_id}' OR RowName LIKE '#{roof_id}:%') AND ColumnName='Tilt' AND Units='deg'" + sql_value = sqlFile.execAndReturnFirstDouble(query).get + assert_in_epsilon(hpxml_value, sql_value, 0.01) + + # Azimuth + next unless (not roof.azimuth.nil?) && (Float(roof.pitch) > 0) + + hpxml_value = roof.azimuth + query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND (RowName='#{roof_id}' OR RowName LIKE '#{roof_id}:%') AND ColumnName='Azimuth' AND Units='deg'" + sql_value = sqlFile.execAndReturnFirstDouble(query).get + assert_in_epsilon(hpxml_value, sql_value, 0.01) + end + + # Enclosure Foundations + # Ensure Kiva instances have perimeter fraction of 1.0 as we explicitly define them to end up this way. + num_kiva_instances = 0 + File.readlines(File.join(rundir, 'eplusout.eio')).each do |eio_line| + next unless eio_line.downcase.start_with? 'foundation kiva' + + kiva_perim_frac = Float(eio_line.split(',')[5]) + assert_equal(1.0, kiva_perim_frac) + + num_kiva_instances += 1 + end + + # Enclosure Foundation Slabs + num_slabs = hpxml_bldg.slabs.size + if (num_slabs <= 1) && (num_kiva_instances <= 1) # The slab surfaces may be combined in these situations, so skip tests + hpxml_bldg.slabs.each do |slab| + slab_id = slab.id.upcase + + # Exposed Area + hpxml_value = Float(slab.area) + query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND RowName='#{slab_id}' AND ColumnName='Gross Area' AND Units='m2'" + sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^2', 'ft^2') + assert_operator(sql_value, :>, 0.01) + assert_in_epsilon(hpxml_value, sql_value, 0.1) + + # Tilt + query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='Opaque Exterior' AND RowName='#{slab_id}' AND ColumnName='Tilt' AND Units='deg'" + sql_value = sqlFile.execAndReturnFirstDouble(query).get + assert_in_epsilon(180.0, sql_value, 0.01) + end + end + + # Enclosure Walls/RimJoists/FoundationWalls + (hpxml_bldg.walls + hpxml_bldg.rim_joists + hpxml_bldg.foundation_walls).each do |wall| + wall_id = wall.id.upcase + + if wall.is_adiabatic + # Adiabatic surfaces have their "BaseSurfaceIndex" as their "ExtBoundCond" in "Surfaces" table in SQL simulation results + query_base_surf_idx = "SELECT BaseSurfaceIndex FROM Surfaces WHERE SurfaceName='#{wall_id}'" + query_ext_bound = "SELECT ExtBoundCond FROM Surfaces WHERE SurfaceName='#{wall_id}'" + sql_value_base_surf_idx = sqlFile.execAndReturnFirstDouble(query_base_surf_idx).get + sql_value_ext_bound_cond = sqlFile.execAndReturnFirstDouble(query_ext_bound).get + assert_equal(sql_value_base_surf_idx, sql_value_ext_bound_cond) + end + + if wall.is_exterior + table_name = 'Opaque Exterior' + else + table_name = 'Opaque Interior' + end + + # R-value + if (not wall.insulation_assembly_r_value.nil?) && (not wall.is_a? HPXML::FoundationWall) # FoundationWalls use Foundation:Kiva for insulation + hpxml_value = wall.insulation_assembly_r_value + if hpxml_path.include? 'ASHRAE_Standard_140' + # Compare R-value w/o film + hpxml_value -= Material.AirFilmVerticalASHRAE140.rvalue + if wall.is_exterior + hpxml_value -= Material.AirFilmOutsideASHRAE140.rvalue + else + hpxml_value -= Material.AirFilmVerticalASHRAE140.rvalue + end + query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%') AND ColumnName='U-Factor no Film' AND Units='W/m2-K'" + elsif wall.is_interior + # Compare R-value w/o film + hpxml_value -= Material.AirFilmVertical.rvalue + hpxml_value -= Material.AirFilmVertical.rvalue + query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%') AND ColumnName='U-Factor no Film' AND Units='W/m2-K'" + else + # Compare R-value w/ film + query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%') AND ColumnName='U-Factor with Film' AND Units='W/m2-K'" + end + sql_value = 1.0 / UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'W/(m^2*K)', 'Btu/(hr*ft^2*F)') + assert_in_epsilon(hpxml_value, sql_value, 0.1) + end + + # Net area + hpxml_value = wall.net_area + if wall.is_a? HPXML::FoundationWall + if wall.is_exterior + # only modeling portion of foundation wall that is exposed perimeter + hpxml_value *= wall.exposed_fraction + else + # interzonal foundation walls: only above-grade portion modeled + hpxml_value *= (wall.height - wall.depth_below_grade) / wall.height + end + end + if wall.is_exterior + query = "SELECT SUM(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%' OR RowName LIKE '#{wall_id} %') AND ColumnName='Net Area' AND Units='m2'" + else + query = "SELECT SUM(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%') AND ColumnName='Net Area' AND Units='m2'" + end + sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^2', 'ft^2') + assert_operator(sql_value, :>, 0.01) + assert_in_epsilon(hpxml_value, sql_value, 0.1) + + # Solar absorptance + if wall.respond_to?(:solar_absorptance) && (not wall.solar_absorptance.nil?) + hpxml_value = wall.solar_absorptance + query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%') AND ColumnName='Reflectance'" + sql_value = 1.0 - sqlFile.execAndReturnFirstDouble(query).get + assert_in_epsilon(hpxml_value, sql_value, 0.01) + end + + # Tilt + query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%') AND ColumnName='Tilt' AND Units='deg'" + sql_value = sqlFile.execAndReturnFirstDouble(query).get + assert_in_epsilon(90.0, sql_value, 0.01) + + # Azimuth + next if wall.azimuth.nil? + + hpxml_value = wall.azimuth + query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND (RowName='#{wall_id}' OR RowName LIKE '#{wall_id}:%') AND ColumnName='Azimuth' AND Units='deg'" + sql_value = sqlFile.execAndReturnFirstDouble(query).get + assert_in_epsilon(hpxml_value, sql_value, 0.01) + end + + # Enclosure Floors + hpxml_bldg.floors.each do |floor| + floor_id = floor.id.upcase + + if floor.is_adiabatic + # Adiabatic surfaces have their "BaseSurfaceIndex" as their "ExtBoundCond" in "Surfaces" table in SQL simulation results + query_base_surf_idx = "SELECT BaseSurfaceIndex FROM Surfaces WHERE SurfaceName='#{floor_id}'" + query_ext_bound = "SELECT ExtBoundCond FROM Surfaces WHERE SurfaceName='#{floor_id}'" + sql_value_base_surf_idx = sqlFile.execAndReturnFirstDouble(query_base_surf_idx).get + sql_value_ext_bound_cond = sqlFile.execAndReturnFirstDouble(query_ext_bound).get + assert_equal(sql_value_base_surf_idx, sql_value_ext_bound_cond) + end + + if floor.is_exterior + table_name = 'Opaque Exterior' + else + table_name = 'Opaque Interior' + end + + # R-value + hpxml_value = floor.insulation_assembly_r_value + if hpxml_path.include? 'ASHRAE_Standard_140' + # Compare R-value w/o film + if floor.is_exterior # Raised floor + hpxml_value -= Material.AirFilmFloorASHRAE140.rvalue + hpxml_value -= Material.AirFilmFloorZeroWindASHRAE140.rvalue + elsif floor.is_ceiling # Attic floor + hpxml_value -= Material.AirFilmFloorASHRAE140.rvalue + hpxml_value -= Material.AirFilmFloorASHRAE140.rvalue + end + query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{floor_id}' AND ColumnName='U-Factor no Film' AND Units='W/m2-K'" + elsif floor.is_interior + # Compare R-value w/o film + if floor.is_ceiling + hpxml_value -= Material.AirFilmFloorAverage.rvalue + hpxml_value -= Material.AirFilmFloorAverage.rvalue + else + hpxml_value -= Material.AirFilmFloorReduced.rvalue + hpxml_value -= Material.AirFilmFloorReduced.rvalue + end + query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{floor_id}' AND ColumnName='U-Factor no Film' AND Units='W/m2-K'" + else + # Compare R-value w/ film + query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{floor_id}' AND ColumnName='U-Factor with Film' AND Units='W/m2-K'" + end + sql_value = 1.0 / UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'W/(m^2*K)', 'Btu/(hr*ft^2*F)') + assert_in_epsilon(hpxml_value, sql_value, 0.1) + + # Area + hpxml_value = floor.area + query = "SELECT SUM(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{floor_id}' AND ColumnName='Net Area' AND Units='m2'" + sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^2', 'ft^2') + assert_operator(sql_value, :>, 0.01) + assert_in_epsilon(hpxml_value, sql_value, 0.1) + + # Tilt + if floor.is_ceiling + hpxml_value = 0 + else + hpxml_value = 180 + end + query = "SELECT AVG(Value) FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{floor_id}' AND ColumnName='Tilt' AND Units='deg'" + sql_value = sqlFile.execAndReturnFirstDouble(query).get + assert_in_epsilon(hpxml_value, sql_value, 0.01) + end + + # Enclosure Windows/Skylights + (hpxml_bldg.windows + hpxml_bldg.skylights).each do |subsurface| + subsurface_id = subsurface.id.upcase + + if subsurface.is_exterior + table_name = 'Exterior Fenestration' + else + table_name = 'Interior Door' + end + + # Area + if subsurface.is_exterior + col_name = 'Area of Multiplied Openings' + else + col_name = 'Gross Area' + end + hpxml_value = subsurface.area + query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{subsurface_id}' AND ColumnName='#{col_name}' AND Units='m2'" + sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^2', 'ft^2') + assert_operator(sql_value, :>, 0.01) + assert_in_epsilon(hpxml_value, sql_value, 0.1) + + # U-Factor + if subsurface.is_exterior + col_name = 'Glass U-Factor' + else + col_name = 'U-Factor no Film' + end + hpxml_value = Constructions.get_ufactor_shgc_adjusted_by_storms(subsurface.storm_type, subsurface.ufactor, subsurface.shgc)[0] + if subsurface.is_interior + hpxml_value = 1.0 / (1.0 / hpxml_value - Material.AirFilmVertical.rvalue) + hpxml_value = 1.0 / (1.0 / hpxml_value - Material.AirFilmVertical.rvalue) + end + if subsurface.is_a? HPXML::Skylight + hpxml_value /= 1.2 # converted to the 20-deg slope from the vertical position by multiplying the tested value at vertical + end + query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{subsurface_id}' AND ColumnName='#{col_name}' AND Units='W/m2-K'" + sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'W/(m^2*K)', 'Btu/(hr*ft^2*F)') + assert_in_epsilon(hpxml_value, sql_value, 0.02) + + next unless subsurface.is_exterior + + # SHGC + hpxml_value = Constructions.get_ufactor_shgc_adjusted_by_storms(subsurface.storm_type, subsurface.ufactor, subsurface.shgc)[1] + query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{subsurface_id}' AND ColumnName='Glass SHGC'" + sql_value = sqlFile.execAndReturnFirstDouble(query).get + assert_in_delta(hpxml_value, sql_value, 0.01) + + # Azimuth + hpxml_value = subsurface.azimuth + query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{subsurface_id}' AND ColumnName='Azimuth' AND Units='deg'" + sql_value = sqlFile.execAndReturnFirstDouble(query).get + assert_in_epsilon(hpxml_value, sql_value, 0.01) + + # Tilt + if subsurface.is_a? HPXML::Window + query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{subsurface_id}' AND ColumnName='Tilt' AND Units='deg'" + sql_value = sqlFile.execAndReturnFirstDouble(query).get + assert_in_epsilon(90.0, sql_value, 0.01) + elsif subsurface.is_a? HPXML::Skylight + hpxml_value = nil + hpxml_bldg.roofs.each do |roof| + next if roof.id != subsurface.roof_idref + + hpxml_value = UnitConversions.convert(Math.atan(roof.pitch / 12.0), 'rad', 'deg') + end + query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{subsurface_id}' AND ColumnName='Tilt' AND Units='deg'" + sql_value = sqlFile.execAndReturnFirstDouble(query).get + assert_in_epsilon(hpxml_value, sql_value, 0.01) + else + flunk "Subsurface '#{subsurface_id}' should have either AttachedToWall or AttachedToRoof element." + end + end + + # Enclosure Doors + hpxml_bldg.doors.each do |door| + door_id = door.id.upcase + + if door.wall.is_exterior + table_name = 'Exterior Door' + else + table_name = 'Interior Door' + end + + # Area + if not door.area.nil? + hpxml_value = door.area + query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{door_id}' AND ColumnName='Gross Area' AND Units='m2'" + sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^2', 'ft^2') + assert_operator(sql_value, :>, 0.01) + assert_in_epsilon(hpxml_value, sql_value, 0.1) + end + + # R-Value + next if door.r_value.nil? + + if door.is_exterior + col_name = 'U-Factor with Film' + else + col_name = 'U-Factor no Film' + end + hpxml_value = door.r_value + if door.is_interior + hpxml_value -= Material.AirFilmVertical.rvalue + hpxml_value -= Material.AirFilmVertical.rvalue + end + query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{door_id}' AND ColumnName='#{col_name}' AND Units='W/m2-K'" + sql_value = 1.0 / UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'W/(m^2*K)', 'Btu/(hr*ft^2*F)') + assert_in_epsilon(hpxml_value, sql_value, 0.1) + end + + # HVAC Load Fractions + if (not hpxml_path.include? 'location-miami') && (not hpxml_path.include? 'location-honolulu') && (not hpxml_path.include? 'location-phoenix') + htg_energy = results.select { |k, _v| (k.include?(': Heating (MBtu)') || k.include?(': Heating Fans/Pumps (MBtu)')) && !k.include?('Load') }.values.sum(0.0) + assert_equal(hpxml_bldg.total_fraction_heat_load_served > 0, htg_energy > 0) + end + clg_energy = results.select { |k, _v| (k.include?(': Cooling (MBtu)') || k.include?(': Cooling Fans/Pumps (MBtu)')) && !k.include?('Load') }.values.sum(0.0) + assert_equal(hpxml_bldg.total_fraction_cool_load_served > 0, clg_energy > 0) + + # Mechanical Ventilation + whole_vent_fans = hpxml_bldg.ventilation_fans.select { |vent_mech| vent_mech.used_for_whole_building_ventilation && !vent_mech.is_cfis_supplemental_fan? } + local_vent_fans = hpxml_bldg.ventilation_fans.select { |vent_mech| vent_mech.used_for_local_ventilation } + fan_cfis = whole_vent_fans.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeCFIS } + fan_sup = whole_vent_fans.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeSupply } + fan_exh = whole_vent_fans.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeExhaust } + fan_bal = whole_vent_fans.select { |vent_mech| [HPXML::MechVentTypeBalanced, HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include?(vent_mech.fan_type) } + vent_fan_kitchen = local_vent_fans.select { |vent_mech| vent_mech.fan_location == HPXML::LocationKitchen } + vent_fan_bath = local_vent_fans.select { |vent_mech| vent_mech.fan_location == HPXML::LocationBath } + + if not (fan_cfis + fan_sup + fan_exh + fan_bal + vent_fan_kitchen + vent_fan_bath).empty? + mv_energy = UnitConversions.convert(results['End Use: Electricity: Mech Vent (MBtu)'], 'MBtu', 'GJ') + + if not fan_cfis.empty? + if (fan_sup + fan_exh + fan_bal + vent_fan_kitchen + vent_fan_bath).empty? + # CFIS only, check for positive mech vent energy that is less than the energy if it had run 24/7 + fan_gj = fan_cfis.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) + assert_operator(mv_energy, :>, 0) + assert_operator(mv_energy, :<, fan_gj) + end + else + # Supply, exhaust, ERV, HRV, etc., check for appropriate mech vent energy + fan_gj = 0 + if not fan_sup.empty? + fan_gj += fan_sup.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) + end + if not fan_exh.empty? + fan_gj += fan_exh.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) + end + if not fan_bal.empty? + fan_gj += fan_bal.map { |vent_mech| UnitConversions.convert(vent_mech.unit_fan_power * vent_mech.hours_in_operation * 365.0, 'Wh', 'GJ') }.sum(0.0) + end + if not vent_fan_kitchen.empty? + fan_gj += vent_fan_kitchen.map { |vent_kitchen| UnitConversions.convert(vent_kitchen.unit_fan_power * vent_kitchen.hours_in_operation * vent_kitchen.count * 365.0, 'Wh', 'GJ') }.sum(0.0) + end + if not vent_fan_bath.empty? + fan_gj += vent_fan_bath.map { |vent_bath| UnitConversions.convert(vent_bath.unit_fan_power * vent_bath.hours_in_operation * vent_bath.count * 365.0, 'Wh', 'GJ') }.sum(0.0) + end + # Maximum error that can be caused by rounding + assert_in_delta(mv_energy, fan_gj, 0.006) + end + end + + tabular_map = { HPXML::ClothesWasher => Constants.ObjectNameClothesWasher, + HPXML::ClothesDryer => Constants.ObjectNameClothesDryer, + HPXML::Refrigerator => Constants.ObjectNameRefrigerator, + HPXML::Dishwasher => Constants.ObjectNameDishwasher, + HPXML::CookingRange => Constants.ObjectNameCookingRange } + + (hpxml_bldg.clothes_washers + hpxml_bldg.clothes_dryers + hpxml_bldg.refrigerators + hpxml_bldg.dishwashers + hpxml_bldg.cooking_ranges).each do |appliance| + next unless hpxml_bldg.water_heating_systems.size > 0 + + # Location + hpxml_value = appliance.location + if hpxml_value.nil? || HPXML::conditioned_locations.include?(hpxml_value) || [HPXML::LocationOtherHeatedSpace, HPXML::LocationOtherMultifamilyBufferSpace, HPXML::LocationOtherNonFreezingSpace].include?(hpxml_value) + hpxml_value = HPXML::LocationConditionedSpace + end + tabular_value = tabular_map[appliance.class] + query = "SELECT Value FROM TabularDataWithStrings WHERE TableName='ElectricEquipment Internal Gains Nominal' AND ColumnName='Zone Name' AND RowName=(SELECT RowName FROM TabularDataWithStrings WHERE TableName='ElectricEquipment Internal Gains Nominal' AND ColumnName='Name' AND Value='#{tabular_value.upcase}')" + sql_value = sqlFile.execAndReturnFirstString(query).get + assert_equal(hpxml_value.upcase, sql_value) + end + + # Lighting + ltg_energy = results.select { |k, _v| k.include? 'End Use: Electricity: Lighting' }.values.sum(0.0) + if not (hpxml_path.include?('vacancy-year-round') || hpxml_path.include?('residents-0')) + assert_equal(hpxml_bldg.lighting_groups.size > 0, ltg_energy > 0) + else + assert_operator(hpxml_bldg.lighting_groups.size, :>, 0) + assert_equal(0, ltg_energy) + end + + # Get fuels + htg_fuels = [] + htg_backup_fuels = [] + wh_fuels = [] + hpxml_bldg.heating_systems.each do |heating_system| + if heating_system.is_heat_pump_backup_system + htg_backup_fuels << heating_system.heating_system_fuel + else + htg_fuels << heating_system.heating_system_fuel + end + end + hpxml_bldg.cooling_systems.each do |cooling_system| + if cooling_system.has_integrated_heating + htg_fuels << cooling_system.integrated_heating_system_fuel + end + end + hpxml_bldg.heat_pumps.each do |heat_pump| + if heat_pump.fraction_heat_load_served > 0 + htg_backup_fuels << heat_pump.backup_heating_fuel + end + end + hpxml_bldg.water_heating_systems.each do |water_heating_system| + related_hvac = water_heating_system.related_hvac_system + if related_hvac.nil? + wh_fuels << water_heating_system.fuel_type + elsif related_hvac.respond_to? :heating_system_fuel + wh_fuels << related_hvac.heating_system_fuel + end + end + + is_warm_climate = false + if ['USA_FL_Miami.Intl.AP.722020_TMY3.epw', + 'USA_HI_Honolulu.Intl.AP.911820_TMY3.epw', + 'USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw'].include? hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath + is_warm_climate = true + end + + # Fuel consumption checks + [HPXML::FuelTypeNaturalGas, + HPXML::FuelTypeOil, + HPXML::FuelTypeKerosene, + HPXML::FuelTypePropane, + HPXML::FuelTypeWoodCord, + HPXML::FuelTypeWoodPellets, + HPXML::FuelTypeCoal].each do |fuel| + fuel_name = fuel.split.map(&:capitalize).join(' ') + fuel_name += ' Cord' if fuel_name == 'Wood' + energy_htg = results.fetch("End Use: #{fuel_name}: Heating (MBtu)", 0) + energy_hp_backup = results.fetch("End Use: #{fuel_name}: Heating Heat Pump Backup (MBtu)", 0) + energy_dhw = results.fetch("End Use: #{fuel_name}: Hot Water (MBtu)", 0) + energy_cd = results.fetch("End Use: #{fuel_name}: Clothes Dryer (MBtu)", 0) + energy_cr = results.fetch("End Use: #{fuel_name}: Range/Oven (MBtu)", 0) + if htg_fuels.include? fuel + if (not hpxml_path.include? 'autosize') && (not is_warm_climate) + assert_operator(energy_htg, :>, 0) + end + else + assert_equal(0, energy_htg) + end + if htg_backup_fuels.include? fuel + if (not hpxml_path.include? 'autosize') && (not is_warm_climate) + assert_operator(energy_hp_backup, :>, 0) + end + else + assert_equal(0, energy_hp_backup) + end + if wh_fuels.include? fuel + assert_operator(energy_dhw, :>, 0) + else + assert_equal(0, energy_dhw) + end + if (hpxml_bldg.clothes_dryers.size > 0) && (hpxml_bldg.clothes_dryers[0].fuel_type == fuel) + assert_operator(energy_cd, :>, 0) + else + assert_equal(0, energy_cd) + end + if (hpxml_bldg.cooking_ranges.size > 0) && (hpxml_bldg.cooking_ranges[0].fuel_type == fuel) + assert_operator(energy_cr, :>, 0) + else + assert_equal(0, energy_cr) + end + end + + # Check unmet hours + unmet_hours_htg = results.select { |k, _v| k.include? 'Unmet Hours: Heating' }.values.sum(0.0) + unmet_hours_clg = results.select { |k, _v| k.include? 'Unmet Hours: Cooling' }.values.sum(0.0) + if hpxml_path.include? 'base-hvac-undersized.xml' + assert_operator(unmet_hours_htg, :>, 1000) + assert_operator(unmet_hours_clg, :>, 1000) + else + if hpxml_bldg.total_fraction_heat_load_served == 0 + assert_equal(0, unmet_hours_htg) + else + assert_operator(unmet_hours_htg, :<, 400) + end + if hpxml_bldg.total_fraction_cool_load_served == 0 + assert_equal(0, unmet_hours_clg) + else + assert_operator(unmet_hours_clg, :<, 400) + end + end + + sqlFile.close + + # Ensure sql file is immediately freed; otherwise we can get + # errors on Windows when trying to delete this file. + GC.start() +end + +def _check_unit_multiplier_results(hpxml_bldg, annual_results_1x, annual_results_10x, timeseries_results_1x, timeseries_results_10x, unit_multiplier) + # Check that results_10x are expected compared to results_1x + + def get_tolerances(key) + if key.include?('(MBtu)') || key.include?('(kBtu)') || key.include?('(kWh)') + # Check that the energy difference is less than 0.5 MBtu or less than 5% + abs_delta_tol = 0.5 # MBtu + abs_frac_tol = 0.05 + if key.include?('(kBtu)') + abs_delta_tol = UnitConversions.convert(abs_delta_tol, 'MBtu', 'kBtu') + elsif key.include?('(kWh)') + abs_delta_tol = UnitConversions.convert(abs_delta_tol, 'MBtu', 'kWh') + end + elsif key.include?('Peak Electricity:') + # Check that the peak electricity difference is less than 500 W or less than 2% + # Wider tolerances than others because a small change in when an event (like the + # water heating firing) occurs can significantly impact the peak. + abs_delta_tol = 500.0 + abs_frac_tol = 0.02 + elsif key.include?('Peak Load:') + # Check that the peak load difference is less than 0.2 kBtu/hr or less than 5% + abs_delta_tol = 0.2 + abs_frac_tol = 0.05 + elsif key.include?('Hot Water:') + # Check that the hot water usage difference is less than 10 gal/yr or less than 2% + abs_delta_tol = 10.0 + abs_frac_tol = 0.02 + elsif key.include?('Resilience: Battery') + # Check that the battery resilience difference is less than 1 hr or less than 1% + abs_delta_tol = 1.0 + abs_frac_tol = 0.01 + elsif key.include?('Airflow:') + # Check that airflow rate difference is less than 0.1 cfm or less than 0.5% + abs_delta_tol = 0.1 + abs_frac_tol = 0.005 + elsif key.include?('Unmet Hours:') + # Check that the unmet hours difference is less than 10 hrs + abs_delta_tol = 10 + abs_frac_tol = nil + elsif key.include?('HVAC Capacity:') || key.include?('HVAC Design Load:') || key.include?('HVAC Design Temperature:') || key.include?('Weather:') + # Check that there is no difference + abs_delta_tol = 0 + abs_frac_tol = nil + else + fail "Unexpected results key: #{key}." + end + + return abs_delta_tol, abs_frac_tol + end + + # Number of systems and thermal zones change between the 1x and 10x runs, + # so remove these from the comparison + ['System Use:', 'Temperature:'].each do |key| + annual_results_1x.delete_if { |k, _v| k.start_with? key } + annual_results_10x.delete_if { |k, _v| k.start_with? key } + timeseries_results_1x.delete_if { |k, _v| k.start_with? key } + timeseries_results_10x.delete_if { |k, _v| k.start_with? key } + end + + # Compare annual and timeseries results + assert_equal(annual_results_1x.keys.sort, annual_results_10x.keys.sort) + assert_equal(timeseries_results_1x.keys.sort, timeseries_results_10x.keys.sort) + + { annual_results_1x => annual_results_10x, + timeseries_results_1x => timeseries_results_10x }.each do |results_1x, results_10x| + results_1x.each do |key, vals_1x| + abs_delta_tol, abs_frac_tol = get_tolerances(key) + + vals_10x = results_10x[key] + if not vals_1x.is_a? Array + vals_1x = [vals_1x] + vals_10x = [vals_10x] + end + + vals_1x.zip(vals_10x).each do |val_1x, val_10x| + if not (key.include?('Unmet Hours') || + key.include?('HVAC Design Temperature') || + key.include?('Weather')) + # These outputs shouldn't change based on the unit multiplier + val_1x *= unit_multiplier + end + + abs_val_delta = (val_1x - val_10x).abs + avg_val = [val_1x, val_10x].sum / 2.0 + if avg_val > 0 + abs_val_frac = abs_val_delta / avg_val + end + + # FUTURE: Address these + if hpxml_bldg.water_heating_systems.select { |wh| wh.water_heater_type == HPXML::WaterHeaterTypeHeatPump }.size > 0 + next if key.include?('Airflow:') + next if key.include?('Peak') + end + if hpxml_bldg.water_heating_systems.select { |wh| [HPXML::WaterHeaterTypeCombiStorage, HPXML::WaterHeaterTypeCombiTankless].include? wh.water_heater_type }.size > 0 + next if key.include?('Hot Water') + end + + # Uncomment these lines to debug: + # if val_1x != 0 or val_10x != 0 + # puts "[#{key}] 1x=#{val_1x} 10x=#{val_10x}" + # end + if abs_frac_tol.nil? + if abs_delta_tol == 0 + assert_equal(val_1x, val_10x) + else + assert_in_delta(val_1x, val_10x, abs_delta_tol) + end + else + assert((abs_val_delta <= abs_delta_tol) || (!abs_val_frac.nil? && abs_val_frac <= abs_frac_tol)) + end + end + end + end +end + +def _write_results(results, csv_out) + require 'csv' + + output_keys = [] + results.values.each do |xml_results| + # Don't include emissions and system uses in output file/CI results + xml_results.delete_if { |k, _v| k.start_with? 'Emissions:' } + xml_results.delete_if { |k, _v| k.start_with? 'System Use:' } + + xml_results.keys.each do |key| + next if output_keys.include? key + + output_keys << key + end + end + + CSV.open(csv_out, 'w') do |csv| + csv << ['HPXML'] + output_keys + results.sort.each do |xml, xml_results| + csv_row = [xml] + output_keys.each do |key| + if xml_results[key].nil? + csv_row << 0 + else + csv_row << xml_results[key] + end + end + csv << csv_row + end + end + + puts "Wrote results to #{csv_out}." +end diff --git a/example_files/resources/measure-info.json b/example_files/resources/measure-info.json deleted file mode 100644 index abc44e1b..00000000 --- a/example_files/resources/measure-info.json +++ /dev/null @@ -1,26 +0,0 @@ -[ - { - "group_name": "1. Build Residential HPXML", - "group_steps": [ - { - "name": "1. Build Residential HPXML", - "dependencies": "", - "measures": [ - "BuildResidentialHPXML" - ] - } - ] - }, - { - "group_name": "2. HPXML to OpenStudio", - "group_steps": [ - { - "name": "1. HPXML to OpenStudio", - "dependencies": "", - "measures": [ - "HPXMLtoOpenStudio" - ] - } - ] - } -] \ No newline at end of file diff --git a/example_files/resources/meta_measure.rb b/example_files/resources/meta_measure.rb deleted file mode 100644 index e4cb87b6..00000000 --- a/example_files/resources/meta_measure.rb +++ /dev/null @@ -1,301 +0,0 @@ -# ********************************************************************************* -# URBANopt (tm), Copyright (c) Alliance for Sustainable Energy, LLC. -# See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md -# ********************************************************************************* - -# frozen_string_literal: true - -# Helper methods related to having a meta-measure - -def get_measures(workflow_json, include_only = nil) - result = [] - JSON.parse(File.read(workflow_json), symbolize_names: true).each do |group| - group[:group_steps].each do |step| - step[:measures].each do |measure_dir| - if (not include_only.nil?) && (not include_only.include? measure_dir) - next - end - - result << measure_dir - end - end - end - return result -end - -def apply_child_measures(measures_dir, measures, runner, model, workflow_json = nil, osw_out = nil, show_measure_calls = true) - require 'openstudio' - - workflow_order = [] - if workflow_json.nil? - measures.keys.each do |measure_subdir| - workflow_order << measure_subdir - end - else - # Run measures in the order dictated by the json instead - workflow_order = get_measures(workflow_json, include_only = measures.keys) - - # Tack additional measure not found in workflow_json on the end - measures.keys.each do |measure_subdir| - next if workflow_order.include? measure_subdir - - workflow_order << measure_subdir - end - end - - if not osw_out.nil? - # Create a workflow based on the measures we're going to call. Convenient for debugging. - workflowJSON = OpenStudio::WorkflowJSON.new - workflowJSON.setOswPath(File.expand_path("../#{osw_out}")) - workflowJSON.addMeasurePath('measures') - workflowJSON.addMeasurePath('resources/hpxml-measures') - steps = OpenStudio::WorkflowStepVector.new - workflow_order.each do |measure_subdir| - measures[measure_subdir].each do |args| - step = OpenStudio::MeasureStep.new(measure_subdir) - args.each do |k, v| - next if v.nil? - - step.setArgument(k, v) - end - steps.push(step) - end - end - workflowJSON.setWorkflowSteps(steps) - workflowJSON.save - end - - # Call each measure in the specified order - workflow_order.each do |measure_subdir| - # Gather measure arguments and call measure - full_measure_path = File.join(measures_dir, measure_subdir, 'measure.rb') - check_file_exists(full_measure_path, runner) - measure_instance = get_measure_instance(full_measure_path) - measures[measure_subdir].each do |args| - argument_map = get_argument_map(model, measure_instance, args, nil, measure_subdir, runner) - if show_measure_calls - print_measure_call(args, measure_subdir, runner) - end - - if not run_measure(model, measure_instance, argument_map, runner) - return false - end - end - end - - return true -end - -def print_measure_call(measure_args, measure_dir, runner) - if measure_args.nil? || measure_dir.nil? - return - end - - args_s = hash_to_string(measure_args, delim = ' -> ', separator = ' \n') - if args_s.size > 0 - runner.registerInfo("Calling #{measure_dir} measure with arguments:\n#{args_s}") - else - runner.registerInfo("Calling #{measure_dir} measure with no arguments.") - end -end - -def get_measure_instance(measure_rb_path) - # Parse XML file for class name - # Avoid REXML for performance reasons - measure_class = nil - File.readlines(measure_rb_path.sub('.rb', '.xml')).each do |xml_line| - next unless xml_line.include? '' - - measure_class = xml_line.gsub('', '').gsub('', '').strip - break - end - # Create new instance - require File.absolute_path(measure_rb_path) - measure = eval(measure_class).new - return measure -end - -def validate_measure_args(measure_args, provided_args, lookup_file, measure_name, runner = nil) - measure_arg_names = measure_args.map { |arg| arg.name } - lookup_file_str = '' - if not lookup_file.nil? - lookup_file_str = " in #{lookup_file}" - end - # Verify all arguments have been provided - measure_args.each do |arg| - next if provided_args.keys.include?(arg.name) - next if not arg.required - next if arg.name.include?('hpxml_path') - - register_error("Required argument '#{arg.name}' not provided#{lookup_file_str} for measure '#{measure_name}'.", runner) - end - provided_args.keys.each do |k| - next if measure_arg_names.include?(k) - - register_error("Extra argument '#{k}' specified#{lookup_file_str} for measure '#{measure_name}'.", runner) - end - # Check for valid argument values - measure_args.each do |arg| - # Get measure provided arg - if provided_args[arg.name].nil? - if arg.required - next if arg.name.include?('hpxml_path') - - register_error("Required argument '#{arg.name}' for measure '#{measure_name}' must have a value provided.", runner) - else - next - end - else - provided_args[arg.name] = provided_args[arg.name].to_s - end - case arg.type.valueName.downcase - when 'boolean' - if not ['true', 'false'].include?(provided_args[arg.name]) - register_error("Value of '#{provided_args[arg.name]}' for argument '#{arg.name}' and measure '#{measure_name}' must be 'true' or 'false'.", runner) - end - when 'double' - if not provided_args[arg.name].is_number? - register_error("Value of '#{provided_args[arg.name]}' for argument '#{arg.name}' and measure '#{measure_name}' must be a number.", runner) - end - when 'integer' - if not provided_args[arg.name].is_integer? - register_error("Value of '#{provided_args[arg.name]}' for argument '#{arg.name}' and measure '#{measure_name}' must be an integer.", runner) - end - when 'string' - # no op - when 'choice' - if (not arg.choiceValues.include?(provided_args[arg.name])) && (not arg.modelDependent) - register_error("Value of '#{provided_args[arg.name]}' for argument '#{arg.name}' and measure '#{measure_name}' must be one of: #{arg.choiceValues}.", runner) - end - end - end - return provided_args -end - -def get_argument_map(model, measure, provided_args, lookup_file, measure_name, runner = nil) - require 'openstudio' - measure_args = measure.arguments(model) - provided_args = validate_measure_args(measure_args, provided_args, lookup_file, measure_name, runner) - - # Convert to argument map needed by OS - argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(measure_args) - measure_args.each do |arg| - temp_arg_var = arg.clone - if !provided_args[arg.name].nil? - temp_arg_var.setValue(provided_args[arg.name]) - end - argument_map[arg.name] = temp_arg_var - end - return argument_map -end - -def run_measure(model, measure, argument_map, runner) - require 'openstudio' - begin - # run the measure - runner_child = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) - if model.instance_of? OpenStudio::Workspace - runner_child.setLastOpenStudioModel(runner.lastOpenStudioModel.get) - end - measure.run(model, runner_child, argument_map) - result_child = runner_child.result - - # get initial and final condition - if result_child.initialCondition.is_initialized - runner.registerInitialCondition(result_child.initialCondition.get.logMessage) - end - if result_child.finalCondition.is_initialized - runner.registerFinalCondition(result_child.finalCondition.get.logMessage) - end - - # re-register runner child registered values on the parent runner - result_child.stepValues.each do |step_value| - runner.registerValue(step_value.name, get_value_from_workflow_step_value(step_value)) - end - - # log messages - result_child.warnings.each do |warning| - runner.registerWarning(warning.logMessage) - end - result_child.info.each do |info| - runner.registerInfo(info.logMessage) - end - result_child.errors.each do |error| - runner.registerError(error.logMessage) - end - if result_child.errors.size > 0 - return false - end - - # convert a return false in the measure to a return false and error here. - if result_child.value.valueName == 'Fail' - runner.registerError('The measure was not successful') - return false - end - rescue => e - runner.registerError("Measure Failed with an error: #{e.inspect} at: #{e.backtrace.join("\n")}") - return false - end - return true -end - -def hash_to_string(hash, delim = '=', separator = ',') - hash_s = '' - hash.each do |k, v| - hash_s += "#{k}#{delim}#{v}#{separator}" - end - if hash_s.size > 0 - hash_s = hash_s.chomp(separator.to_s) - end - return hash_s -end - -def register_error(msg, runner = nil) - if not runner.nil? - runner.registerError(msg) - fail msg # OS 2.0 will handle this more gracefully - else - raise "ERROR: #{msg}" - end -end - -def check_file_exists(full_path, runner = nil) - if not File.exist?(full_path) - register_error("Cannot find file #{full_path}.", runner) - end -end - -def check_dir_exists(full_path, runner = nil) - if not Dir.exist?(full_path) - register_error("Cannot find directory #{full_path}.", runner) - end -end - -def update_args_hash(hash, key, args, add_new = true) - if not hash.keys.include? key - hash[key] = [args] - elsif add_new - hash[key] << args - else # merge new arguments into existing - args.each do |k, v| - hash[key][0][k] = v - end - end -end - -class String - def is_number? - true if Float(self) rescue false - end - - def is_integer? - if not is_number? - return false - end - if Integer(Float(self)).to_f != Float(self) - return false - end - - return true - end -end diff --git a/example_files/weather/USA_CO_Denver.Intl.AP.725650_TMY3.ddy b/example_files/weather/USA_CO_Denver.Intl.AP.725650_TMY3.ddy new file mode 100644 index 00000000..5b24270b --- /dev/null +++ b/example_files/weather/USA_CO_Denver.Intl.AP.725650_TMY3.ddy @@ -0,0 +1,536 @@ + ! The following Location and Design Day data are produced as possible from the indicated data source. + ! Wind Speeds follow the indicated design conditions rather than traditional values (6.7 m/s heating, 3.35 m/s cooling) + ! No special attempts at re-creating or determining missing data parts (e.g. Wind speed or direction) + ! are done. Therefore, you should look at the data and fill in any incorrect values as you desire. + + Site:Location, + Denver Intl Ap_CO_USA Design_Conditions, !- Location Name + 39.83, !- Latitude {N+ S-} + -104.65, !- Longitude {W- E+} + -7.00, !- Time Zone Relative to GMT {GMT+/-} + 1650.00; !- Elevation {m} + + ! WMO=725650 Time Zone=NAM: (GMT-07:00) Mountain Time (US & Canada) + ! Data Source=ASHRAE 2009 Annual Design Conditions + RunPeriodControl:DaylightSavingTime, + 2nd Sunday in March, !- StartDate + 2nd Sunday in November; !- EndDate + + ! Using Design Conditions from "Climate Design Data 2009 ASHRAE Handbook" + ! Denver Intl Ap_CO_USA Extreme Annual Wind Speeds, 1%=11.9m/s, 2.5%=10.4m/s, 5%=8.8m/s + ! Denver Intl Ap_CO_USA Extreme Annual Temperatures, Max Drybulb=-22.7°C Min Drybulb=37.1°C + + ! Denver Intl Ap_CO_USA Annual Heating Design Conditions Wind Speed=3.3m/s Wind Dir=160 + ! Coldest Month=DEC + ! Denver Intl Ap_CO_USA Annual Heating 99.6%, MaxDB=-17.4°C + SizingPeriod:DesignDay, + Denver Intl Ap Ann Htg 99.6% Condns DB, !- Name + 12, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + -17.4, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + -17.4, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 3.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 160, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Denver Intl Ap_CO_USA Annual Heating 99%, MaxDB=-14°C + SizingPeriod:DesignDay, + Denver Intl Ap Ann Htg 99% Condns DB, !- Name + 12, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + -14, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + -14, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 3.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 160, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Denver Intl Ap_CO_USA Annual Humidification 99.6% Design Conditions DP=>MCDB, DP=-21.5°C + SizingPeriod:DesignDay, + Denver Intl Ap Ann Hum_n 99.6% Condns DP=>MCDB, !- Name + 12, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + -11.7, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + -21.5, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 3.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 160, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Denver Intl Ap_CO_USA Annual Humidification 99% Design Conditions DP=>MCDB, DP=-18.9°C + SizingPeriod:DesignDay, + Denver Intl Ap Ann Hum_n 99% Condns DP=>MCDB, !- Name + 12, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + -6.9, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + -18.9, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 3.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 160, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Denver Intl Ap_CO_USA Annual Heating Wind 99.6% Design Conditions WS=>MCDB, WS=14.1m/s + SizingPeriod:DesignDay, + Denver Intl Ap Ann Htg Wind 99.6% Condns WS=>MCDB, !- Name + 12, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 1.8, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 1.8, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 14.1, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 160, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Denver Intl Ap_CO_USA Annual Heating Wind 99% Design Conditions WS=>MCDB, WS=12m/s + SizingPeriod:DesignDay, + Denver Intl Ap Ann Htg Wind 99% Condns WS=>MCDB, !- Name + 12, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 2.4, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 2.4, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 12, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 160, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Denver Intl Ap Annual Cooling Design Conditions Wind Speed=4.2m/s Wind Dir=80 + ! Hottest Month=JUL + ! Denver Intl Ap_CO_USA Annual Cooling (DB=>MWB) .4%, MaxDB=34.6°C MWB=15.7°C + SizingPeriod:DesignDay, + Denver Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 34.6, !- Maximum Dry-Bulb Temperature {C} + 15.2, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 15.7, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 4.2, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.424, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.012; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Denver Intl Ap_CO_USA Annual Cooling (DB=>MWB) 1%, MaxDB=33.2°C MWB=15.6°C + SizingPeriod:DesignDay, + Denver Intl Ap Ann Clg 1% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 33.2, !- Maximum Dry-Bulb Temperature {C} + 15.2, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 15.6, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 4.2, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.424, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.012; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Denver Intl Ap_CO_USA Annual Cooling (DB=>MWB) 2%, MaxDB=31.8°C MWB=15.4°C + SizingPeriod:DesignDay, + Denver Intl Ap Ann Clg 2% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 31.8, !- Maximum Dry-Bulb Temperature {C} + 15.2, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 15.4, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 4.2, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.424, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.012; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Denver Intl Ap_CO_USA Annual Cooling (WB=>MDB) .4%, MDB=27.3°C WB=18.3°C + SizingPeriod:DesignDay, + Denver Intl Ap Ann Clg .4% Condns WB=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 27.3, !- Maximum Dry-Bulb Temperature {C} + 15.2, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 18.3, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 4.2, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.424, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.012; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Denver Intl Ap_CO_USA Annual Cooling (WB=>MDB) 1%, MDB=27°C WB=17.6°C + SizingPeriod:DesignDay, + Denver Intl Ap Ann Clg 1% Condns WB=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 27, !- Maximum Dry-Bulb Temperature {C} + 15.2, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 17.6, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 4.2, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.424, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.012; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Denver Intl Ap_CO_USA Annual Cooling (WB=>MDB) 2%, MDB=26.5°C WB=17°C + SizingPeriod:DesignDay, + Denver Intl Ap Ann Clg 2% Condns WB=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 26.5, !- Maximum Dry-Bulb Temperature {C} + 15.2, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 17, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 4.2, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.424, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.012; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Denver Intl Ap_CO_USA Annual Cooling (DP=>MDB) .4%, MDB=19.9°C DP=16°C HR=0.0140 + SizingPeriod:DesignDay, + Denver Intl Ap Ann Clg .4% Condns DP=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 19.9, !- Maximum Dry-Bulb Temperature {C} + 15.2, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + 16, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 4.2, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.424, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.012; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Denver Intl Ap_CO_USA Annual Cooling (DP=>MDB) 1%, MDB=19.7°C DP=15.2°C HR=0.0132 + SizingPeriod:DesignDay, + Denver Intl Ap Ann Clg 1% Condns DP=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 19.7, !- Maximum Dry-Bulb Temperature {C} + 15.2, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + 15.2, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 4.2, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.424, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.012; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Denver Intl Ap_CO_USA Annual Cooling (DP=>MDB) 2%, MDB=19.6°C DP=14.1°C HR=0.0123 + SizingPeriod:DesignDay, + Denver Intl Ap Ann Clg 2% Condns DP=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 19.6, !- Maximum Dry-Bulb Temperature {C} + 15.2, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + 14.1, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 4.2, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.424, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.012; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Denver Intl Ap_CO_USA Annual Cooling (Enthalpy=>MDB) .4%, MDB=27°C Enthalpy=58300.0J/kg + SizingPeriod:DesignDay, + Denver Intl Ap Ann Clg .4% Condns Enth=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 27, !- Maximum Dry-Bulb Temperature {C} + 15.2, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Enthalpy, !- Humidity Condition Type + , !- Wetbulb or Dewpoint at Maximum Dry-Bulb + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + 58300.0, !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 4.2, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.424, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.012; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Denver Intl Ap_CO_USA Annual Cooling (Enthalpy=>MDB) 1%, MDB=26.9°C Enthalpy=55900.0J/kg + SizingPeriod:DesignDay, + Denver Intl Ap Ann Clg 1% Condns Enth=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 26.9, !- Maximum Dry-Bulb Temperature {C} + 15.2, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Enthalpy, !- Humidity Condition Type + , !- Wetbulb or Dewpoint at Maximum Dry-Bulb + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + 55900.0, !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 4.2, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.424, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.012; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Denver Intl Ap_CO_USA Annual Cooling (Enthalpy=>MDB) 2%, MDB=26.3°C Enthalpy=53800.0J/kg + SizingPeriod:DesignDay, + Denver Intl Ap Ann Clg 2% Condns Enth=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 26.3, !- Maximum Dry-Bulb Temperature {C} + 15.2, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Enthalpy, !- Humidity Condition Type + , !- Wetbulb or Dewpoint at Maximum Dry-Bulb + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + 53800.0, !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 83011., !- Barometric Pressure {Pa} + 4.2, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 80, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.424, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.012; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + diff --git a/example_files/weather/USA_CO_Denver.Intl.AP.725650_TMY3.epw b/example_files/weather/USA_CO_Denver.Intl.AP.725650_TMY3.epw new file mode 100644 index 00000000..e3f58eac --- /dev/null +++ b/example_files/weather/USA_CO_Denver.Intl.AP.725650_TMY3.epw @@ -0,0 +1,8768 @@ +LOCATION,Denver Intl Ap,CO,USA,TMY3,725650,39.83,-104.65,-7.0,1650.0 +DESIGN CONDITIONS,1,Climate Design Data 2009 ASHRAE Handbook,,Heating,12,-17.4,-14,-21.5,0.7,-11.7,-18.9,0.9,-6.9,14.1,1.8,12,2.4,3.3,160,Cooling,7,15.2,34.6,15.7,33.2,15.6,31.8,15.4,18.3,27.3,17.6,27,17,26.5,4.2,80,16,14,19.9,15.2,13.2,19.7,14.1,12.3,19.6,58.3,27,55.9,26.9,53.8,26.3,722,Extremes,11.9,10.4,8.8,20.7,-22.7,37.1,2.8,1.3,-24.7,38,-26.3,38.8,-27.9,39.5,-29.9,40.5 +TYPICAL/EXTREME PERIODS,6,Summer - Week Nearest Max Temperature For Period,Extreme,6/22,6/28,Summer - Week Nearest Average Temperature For Period,Typical,6/ 8,6/14,Winter - Week Nearest Min Temperature For Period,Extreme,1/27,2/ 2,Winter - Week Nearest Average Temperature For Period,Typical,1/ 6,1/12,Autumn - Week Nearest Average Temperature For Period,Typical,10/13,10/19,Spring - Week Nearest Average Temperature For Period,Typical,4/26,5/ 2 +GROUND TEMPERATURES,3,.5,,,,0.36,2.33,6.17,9.79,16.66,20.28,21.27,19.44,15.20,9.93,4.73,1.30,2,,,,3.08,3.56,5.74,8.18,13.45,16.83,18.51,18.13,15.72,12.07,7.97,4.74,4,,,,5.88,5.54,6.50,7.88,11.37,13.98,15.68,16.09,15.03,12.89,10.11,7.59 +HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +COMMENTS 1,Custom/User Format -- WMO#725650; NREL TMY Data Set (2008); Period of Record 1973-2005 (Generally) +COMMENTS 2, -- Ground temps produced with a standard soil diffusivity of 2.3225760E-03 {m**2/day} +DATA PERIODS,1,1,Data,Sunday, 1/ 1,12/31 +1995,1,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-18.0,-19.7,85,83700,0,0,181,0,0,0,0,0,0,0,0,0.0,2,2,777.7,20306,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-16.6,-18.6,83,83500,0,0,188,0,0,0,0,0,0,0,0,0.0,3,3,777.7,18674,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-15.3,-17.1,85,83400,0,0,193,0,0,0,0,0,0,0,0,0.0,3,3,777.7,16614,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-14.4,-15.6,90,83100,0,0,198,0,0,0,0,0,0,0,0,0.0,4,4,777.7,14677,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-13.0,-14.6,86,83400,0,0,205,0,0,0,0,0,0,0,0,0.0,5,5,777.7,12892,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.1,-12.5,88,83000,0,0,215,0,0,0,0,0,0,0,0,0.0,6,6,777.7,11077,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-9.7,-11.6,84,82900,0,0,220,0,0,0,0,0,0,0,0,0.0,6,6,777.7,11821,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.7,-10.0,82,82800,45,908,231,9,17,8,1033,692,996,164,120,1.4,7,7,777.7,8786,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.9,-8.5,80,82900,248,1415,239,89,73,77,9674,5357,8730,1645,140,1.3,7,7,777.7,7581,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-7.0,66,82700,433,1415,247,266,494,115,27534,43873,14050,2191,200,1.7,8,4,777.7,11251,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.4,-7.1,50,82400,565,1415,260,357,544,139,37364,52147,16460,2737,310,1.7,8,4,777.7,9436,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-7.8,42,82300,634,1415,272,430,540,187,44304,52895,20489,3885,20,4.6,7,7,777.7,6706,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-8.9,34,82300,637,1415,272,362,384,189,38569,39003,20939,4150,20,7.2,8,5,777.7,6706,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-8.9,37,82200,572,1415,265,342,524,130,36181,50444,15697,2544,10,8.2,7,4,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-8.9,35,82200,444,1415,265,252,312,154,26257,28547,17247,3276,10,7.7,8,3,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-10.0,36,82100,263,1415,252,131,369,62,13609,26773,8600,1128,10,6.2,4,1,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-7.8,54,82000,56,1002,239,18,114,11,1879,5232,1566,210,20,3.6,1,0,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-7.8,62,82100,0,0,234,0,0,0,0,0,0,0,10,6.2,0,0,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-9.4,68,82100,0,0,223,0,0,0,0,0,0,0,350,5.7,0,0,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-10.6,65,82100,0,0,220,0,0,0,0,0,0,0,360,5.2,0,0,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-11.1,64,82000,0,0,218,0,0,0,0,0,0,0,350,2.1,0,0,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-11.1,64,82100,0,0,218,0,0,0,0,0,0,0,20,2.6,0,0,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-12.8,55,82300,0,0,216,0,0,0,0,0,0,0,10,4.1,0,0,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-12.8,50,81900,0,0,220,0,0,0,0,0,0,0,10,8.8,0,0,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-13.3,48,81900,0,0,220,0,0,0,0,0,0,0,20,8.8,0,0,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-14.4,46,82000,0,0,217,0,0,0,0,0,0,0,20,7.2,0,0,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-15.0,41,81900,0,0,218,0,0,0,0,0,0,0,20,7.2,0,0,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.7,-15.0,48,81900,0,0,213,0,0,0,0,0,0,0,20,6.7,0,0,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-15.0,43,82400,0,0,216,0,0,0,0,0,0,0,360,3.6,0,0,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-15.0,45,81900,0,0,219,0,0,0,0,0,0,0,10,3.1,1,1,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-15.6,37,81900,0,0,224,0,0,0,0,0,0,0,50,3.1,2,1,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.8,-15.0,34,82000,44,908,230,15,63,12,1700,2200,1600,210,40,1.5,9,1,777.7,77777,9,999999999,20,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-13.3,36,82300,248,1415,249,85,118,64,9200,8700,7700,1370,110,2.1,7,7,777.7,4572,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-12.2,30,82400,433,1415,260,236,373,122,24300,33100,14100,2340,140,2.1,8,5,777.7,7620,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-11.7,25,82400,566,1415,271,392,744,94,40900,70600,12600,1860,130,2.6,5,4,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,-14.4,15,82400,636,1415,283,350,349,193,37200,35400,21200,4260,160,2.1,8,5,777.7,7620,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-13.3,16,82400,639,1415,289,325,469,113,35400,46400,14400,2230,180,2.6,9,6,777.7,7620,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-11.7,19,82300,575,1415,299,285,143,226,30400,14000,24700,5320,140,2.6,9,8,777.7,4572,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,-8.3,25,82300,447,1415,301,260,368,144,27300,33800,16600,3010,150,3.1,9,7,777.7,4572,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.8,-10.0,25,82300,266,1415,284,109,249,62,11400,18200,7900,1130,140,3.1,8,5,777.7,7620,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-10.0,26,82100,58,1026,272,21,102,15,2300,3900,2100,260,150,2.6,6,2,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-10.0,30,82100,0,0,269,0,0,0,0,0,0,0,170,3.6,6,3,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-10.0,39,82300,0,0,248,0,0,0,0,0,0,0,150,3.6,2,1,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-10.0,43,82200,0,0,244,0,0,0,0,0,0,0,180,3.6,3,1,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-10.6,46,82200,0,0,233,0,0,0,0,0,0,0,190,4.1,0,0,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-12.2,38,82100,0,0,238,0,0,0,0,0,0,0,150,2.1,1,1,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-13.3,30,82400,0,0,243,0,0,0,0,0,0,0,0,0.0,1,1,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-13.3,32,82100,0,0,236,0,0,0,0,0,0,0,230,2.6,1,0,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-13.3,33,82100,0,0,234,0,0,0,0,0,0,0,210,3.6,0,0,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-13.3,33,82100,0,0,234,0,0,0,0,0,0,0,210,5.2,0,0,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-13.3,35,82200,0,0,233,0,0,0,0,0,0,0,220,5.2,0,0,777.7,77777,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-13.3,36,82400,0,0,231,0,0,0,0,0,0,0,220,5.7,2,0,777.7,77777,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-13.3,36,82800,0,0,231,0,0,0,0,0,0,0,230,6.2,3,0,777.7,77777,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-13.9,33,82600,0,0,240,0,0,0,0,0,0,0,210,7.2,5,2,777.7,77777,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-13.3,35,82700,0,0,249,0,0,0,0,0,0,0,240,5.7,8,6,777.7,7620,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-12.8,35,82800,44,908,249,14,24,12,1500,1000,1500,250,250,6.7,7,5,777.7,7620,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-13.3,25,83000,248,1415,263,79,146,53,8400,10200,6600,970,210,4.6,8,5,777.7,7010,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-12.2,23,83200,434,1415,275,192,256,113,20400,23300,13200,2240,210,5.2,7,6,777.7,7620,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,-8.3,32,83500,567,1415,275,325,587,90,34100,55900,11600,1790,290,1.5,6,3,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-12.2,22,83300,638,1415,267,450,783,98,47600,76300,13000,2030,250,7.7,2,1,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-10.0,29,83400,641,1415,265,426,757,83,44400,73100,11100,1690,280,9.3,4,1,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.6,-11.3,27,83400,577,1415,263,362,675,86,38100,64700,11600,1740,300,11.1,5,2,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.3,-11.5,32,83400,450,1415,257,254,460,107,26600,41500,13300,2020,280,7.4,6,3,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.3,-11.6,38,83500,270,1415,251,118,173,84,12200,12600,9800,1670,260,6.7,10,5,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.0,-12.9,42,83600,60,1049,240,22,15,21,2400,800,2400,500,230,4.6,10,5,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.8,-12.0,58,83500,0,0,231,0,0,0,0,0,0,0,240,2.8,10,5,777.7,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-13.8,48,83500,0,0,232,0,0,0,0,0,0,0,230,1.6,10,6,777.7,6096,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.2,-12.3,64,83500,0,0,228,0,0,0,0,0,0,0,200,0.4,10,6,777.7,6096,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-8.8,-13.6,65,83200,0,0,221,0,0,0,0,0,0,0,220,0.8,10,6,777.7,5486,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-9.9,-14.4,67,83300,0,0,217,0,0,0,0,0,0,0,210,1.6,10,6,777.7,5486,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.4,-15.1,71,83600,0,0,212,0,0,0,0,0,0,0,170,1.5,10,6,777.7,4572,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-12.4,-14.7,81,83200,0,0,225,0,0,0,0,0,0,0,200,1.8,10,10,777.7,4572,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-13.5,-14.9,88,83200,0,0,221,0,0,0,0,0,0,0,270,0.2,10,10,777.7,3658,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.2,-17.3,90,83200,0,0,210,0,0,0,0,0,0,0,0,0.0,10,10,6.4,3353,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.2,-17.8,86,83200,0,0,204,0,0,0,0,0,0,0,170,1.5,10,9,8.0,6706,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-14.7,-16.9,82,83200,0,0,195,0,0,0,0,0,0,0,130,2.6,4,3,8.0,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-14.2,-16.6,80,83600,0,0,195,0,0,0,0,0,0,0,150,1.5,4,2,8.0,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-13.3,-16.3,76,83400,0,0,191,0,0,0,0,0,0,0,130,1.5,0,0,8.0,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.8,-16.5,65,83400,0,0,196,0,0,0,0,0,0,0,0,0.0,0,0,8.0,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-9.1,-14.0,64,83300,44,908,210,14,139,7,1600,7300,1200,170,0,0.0,1,1,8.0,77777,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.9,-12.5,56,83700,248,1415,232,59,156,32,6600,11100,4600,550,0,0.0,7,6,8.0,7620,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.5,-10.5,42,83700,435,1415,266,127,148,81,13800,13500,9600,1510,180,1.5,10,9,8.0,3658,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-9.1,36,83500,568,1415,291,152,0,152,17200,0,17200,5810,210,2.1,10,10,8.0,4267,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.8,-8.3,38,83600,640,1415,294,174,0,174,19800,0,19800,6810,0,0.0,10,10,8.0,4267,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.0,-6.8,32,83600,644,1415,314,140,0,140,16200,0,16200,5850,350,3.6,10,10,8.0,2438,9,999999999,30,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.6,-5.9,31,83500,580,1415,322,125,0,125,14400,0,14400,5110,10,4.1,10,10,8.0,2438,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.1,-5.6,29,83500,454,1415,320,105,53,88,11600,4800,10000,2510,360,3.6,9,9,8.0,1981,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,-5.6,31,83300,273,1415,309,44,59,33,5100,4600,4200,710,300,7.2,10,8,8.0,4267,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-4.4,42,83000,63,1073,293,20,53,17,2200,1800,2100,290,0,0.0,9,7,8.0,4267,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-5.0,40,83000,0,0,297,0,0,0,0,0,0,0,80,3.1,8,8,8.0,7315,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,-6.7,37,83000,0,0,281,0,0,0,0,0,0,0,180,3.6,7,5,8.0,7315,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-8.9,28,82900,0,0,281,0,0,0,0,0,0,0,210,2.6,4,4,8.0,77777,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,-9.4,29,82900,0,0,278,0,0,0,0,0,0,0,180,4.1,5,5,8.0,77777,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-10.0,29,82700,0,0,271,0,0,0,0,0,0,0,160,3.1,3,3,8.0,77777,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-9.4,31,82600,0,0,267,0,0,0,0,0,0,0,250,3.1,2,2,8.0,77777,9,999999999,40,0.0440,0,88,0.220,999.0,99.0 +1995,1,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,-10.0,21,82600,0,0,276,0,0,0,0,0,0,0,210,6.7,0,0,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-9.4,31,82400,0,0,258,0,0,0,0,0,0,0,210,4.6,0,0,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.6,-7.8,25,82400,0,0,281,0,0,0,0,0,0,0,220,6.2,0,0,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.1,-7.2,25,82400,0,0,284,0,0,0,0,0,0,0,230,6.7,0,0,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-7.2,28,82600,0,0,277,0,0,0,0,0,0,0,230,5.2,0,0,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-7.2,28,82800,0,0,277,0,0,0,0,0,0,0,260,3.6,0,0,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-6.7,29,82700,0,0,278,0,0,0,0,0,0,0,210,4.6,0,0,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-6.1,42,82800,0,0,261,0,0,0,0,0,0,0,300,4.6,0,0,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,-5.0,33,82800,44,908,282,16,174,7,1800,9900,1200,210,360,1.5,0,0,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,-5.0,35,82900,249,1415,277,142,630,31,15000,49500,6300,650,50,4.1,0,0,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,-5.6,26,83000,436,1415,292,292,810,43,31000,73300,8300,1000,360,4.6,0,0,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,-6.7,23,82900,570,1415,297,381,787,64,40200,75100,9800,1360,40,5.7,3,1,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,-6.7,20,83000,642,1415,306,465,894,60,49100,86200,9800,1390,30,5.1,2,1,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,-7.2,20,83000,646,1415,303,450,832,69,47800,81100,10600,1520,30,4.1,3,1,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,-6.7,23,83100,583,1415,297,394,790,68,41400,75600,10100,1430,50,3.1,2,1,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,-3.9,36,83100,457,1415,288,239,526,68,25000,47700,9500,1310,70,2.6,3,1,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.3,-4.4,39,83100,277,1415,281,126,438,40,13200,33700,6500,750,100,2.1,2,1,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-3.3,51,83100,66,1097,278,24,126,17,2700,5000,2400,300,160,2.6,5,3,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-9.4,30,83100,0,0,269,0,0,0,0,0,0,0,170,2.6,4,2,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-10.0,32,83200,0,0,264,0,0,0,0,0,0,0,170,4.1,3,3,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-9.4,35,83200,0,0,260,0,0,0,0,0,0,0,160,4.1,2,2,8.0,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-8.9,41,83200,0,0,259,0,0,0,0,0,0,0,160,4.6,4,4,8.0,77777,9,999999999,60,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-8.9,47,83200,0,0,257,0,0,0,0,0,0,0,110,2.1,6,6,8.0,7620,9,999999999,60,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-10.0,41,83600,0,0,256,0,0,0,0,0,0,0,180,1.5,8,5,8.0,7620,9,999999999,60,0.0440,0,88,0.220,999.0,99.0 +1995,1,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-10.6,40,83100,0,0,255,0,0,0,0,0,0,0,240,3.1,7,6,8.0,7620,9,999999999,60,0.0440,0,88,0.220,999.0,99.0 +1995,1,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-11.7,37,83200,0,0,274,0,0,0,0,0,0,0,250,3.6,10,10,8.0,7620,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-13.3,29,83200,0,0,277,0,0,0,0,0,0,0,240,3.6,10,10,8.0,6706,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-14.4,27,83300,0,0,274,0,0,0,0,0,0,0,290,2.6,10,10,8.0,6706,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-14.4,29,83300,0,0,264,0,0,0,0,0,0,0,330,3.6,10,9,8.0,6706,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-13.3,33,83800,0,0,246,0,0,0,0,0,0,0,270,1.5,6,4,8.0,8534,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-13.9,30,83500,0,0,236,0,0,0,0,0,0,0,200,3.1,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-12.8,35,83500,0,0,249,0,0,0,0,0,0,0,250,4.1,6,5,8.0,7620,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-13.3,33,83600,45,908,244,10,39,8,1100,1400,1100,130,240,5.2,5,3,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-11.7,38,83800,249,1415,244,124,418,50,12600,30200,7300,880,240,4.1,4,2,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-7.8,52,83900,437,1415,252,265,510,107,27600,45500,13500,2020,280,3.6,3,3,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-7.8,52,84000,571,1415,241,406,859,58,42700,81500,9600,1280,210,1.5,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-8.9,43,84000,644,1415,244,471,894,64,49500,86200,10100,1410,130,3.6,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-7.8,46,84000,649,1415,247,475,896,64,50000,86500,10100,1420,130,7.7,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-7.8,48,84000,587,1415,245,420,868,59,44100,82600,9700,1300,120,6.7,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-8.3,44,84000,461,1415,247,309,796,50,32600,72800,8800,1080,120,8.2,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-7.8,49,84000,281,1415,244,162,629,37,16700,49900,6700,730,130,7.2,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-7.8,54,83900,69,1120,239,26,211,13,2800,11500,2000,270,140,8.2,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-7.2,63,83700,0,0,236,0,0,0,0,0,0,0,130,5.2,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-7.8,68,83800,0,0,230,0,0,0,0,0,0,0,180,4.1,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-7.8,75,83800,0,0,236,0,0,0,0,0,0,0,240,5.2,3,3,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-7.8,86,83800,0,0,232,0,0,0,0,0,0,0,280,1.5,4,4,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.8,-8.9,91,83700,0,0,235,0,0,0,0,0,0,0,270,2.6,8,8,8.0,6706,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.8,-10.0,82,83900,0,0,246,0,0,0,0,0,0,0,250,2.1,10,10,8.0,2743,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-8.9,-10.6,86,83700,0,0,241,0,0,0,0,0,0,0,250,3.1,10,10,8.0,2743,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-8.9,-10.6,86,83500,0,0,241,0,0,0,0,0,0,0,220,4.1,10,10,8.0,2286,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-8.3,-10.0,86,83500,0,0,244,0,0,0,0,0,0,0,260,2.6,10,10,8.0,2438,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-10.6,-12.2,87,83400,0,0,234,0,0,0,0,0,0,0,230,3.6,10,10,8.0,1676,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-12.2,-13.3,91,83400,0,0,227,0,0,0,0,0,0,0,260,1.5,10,10,8.0,1219,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-13.9,-14.4,96,83700,0,0,220,0,0,0,0,0,0,0,0,0.0,10,10,8.0,1829,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-12.8,-14.4,86,83400,0,0,224,0,0,0,0,0,0,0,280,3.1,10,10,8.0,732,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-12.8,-14.4,86,83400,0,0,224,0,0,0,0,0,0,0,250,2.6,10,10,8.0,61,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.8,-12.8,42,83400,45,908,262,5,0,5,600,0,600,200,240,3.6,10,10,8.0,152,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-13.3,33,83500,250,1415,270,38,0,38,4400,0,4400,1450,190,4.1,10,10,8.0,61,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-15.0,25,83700,438,1415,275,69,0,69,8100,0,8100,2840,260,1.5,10,10,8.0,30,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-12.8,27,83600,573,1415,285,93,0,93,10900,0,10900,4020,10,1.5,10,10,8.0,30,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-13.3,22,83700,646,1415,293,105,0,105,12400,0,12400,4660,80,2.1,10,10,8.0,152,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-15.0,18,83700,652,1415,294,106,0,106,12500,0,12500,4720,100,2.1,10,10,8.0,152,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-16.7,16,83700,590,1415,289,95,0,95,11200,0,11200,4140,330,2.1,10,10,8.0,0,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-16.7,16,83600,464,1415,289,74,0,74,8700,0,8700,3070,110,3.1,10,10,8.0,122,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-15.6,19,83500,284,1415,288,44,0,44,5100,0,5100,1700,120,2.1,10,10,8.0,183,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-15.6,18,83300,72,1144,291,9,0,9,1100,0,1100,350,150,3.6,10,10,8.0,183,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-16.1,16,83400,0,0,293,0,0,0,0,0,0,0,170,4.1,10,10,8.0,1158,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-16.1,17,83300,0,0,290,0,0,0,0,0,0,0,220,3.6,10,10,8.0,1097,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-15.6,19,83300,0,0,288,0,0,0,0,0,0,0,230,4.6,10,10,8.0,1676,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-15.0,23,83100,0,0,272,0,0,0,0,0,0,0,210,5.2,10,9,8.0,2438,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-11.7,38,83000,0,0,255,0,0,0,0,0,0,0,220,3.6,7,7,8.0,2438,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-11.7,37,83200,0,0,254,0,0,0,0,0,0,0,230,4.6,6,6,8.0,6096,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-12.8,29,83000,0,0,280,0,0,0,0,0,0,0,270,3.6,10,10,8.0,2438,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-13.3,28,83000,0,0,280,0,0,0,0,0,0,0,270,4.1,10,10,8.0,1219,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-12.8,31,82900,0,0,278,0,0,0,0,0,0,0,320,4.6,10,10,8.0,975,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-12.8,35,82800,0,0,271,0,0,0,0,0,0,0,270,5.2,10,10,8.0,1829,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-12.2,40,82800,0,0,267,0,0,0,0,0,0,0,280,9.8,10,10,8.0,152,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-11.7,48,83000,0,0,261,0,0,0,0,0,0,0,280,8.2,10,10,8.0,2438,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-12.8,44,82800,0,0,241,0,0,0,0,0,0,0,290,5.2,10,6,8.0,2134,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-12.2,50,82800,0,0,230,0,0,0,0,0,0,0,300,5.7,7,2,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.8,-12.8,42,82700,45,908,237,14,88,9,1500,3900,1300,170,270,3.1,3,3,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-12.2,30,82900,251,1415,250,132,585,28,14000,46200,5800,650,280,6.7,1,1,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-11.1,27,83000,439,1415,261,290,797,43,30800,72300,8200,1010,260,5.2,1,1,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-10.6,24,82800,575,1415,274,359,609,111,37100,57600,13600,2140,270,7.2,2,2,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.8,-11.7,21,82900,649,1415,278,425,734,89,44100,70800,11500,1770,290,7.2,3,3,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.6,-8.9,22,82700,655,1415,285,457,806,84,47700,78100,11400,1730,280,7.7,1,1,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.6,-10.6,19,82600,593,1415,278,439,947,42,46800,90600,8600,1140,280,5.2,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.8,-10.6,23,82500,468,1415,267,329,889,35,35100,81800,7900,950,290,5.2,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-10.6,25,82400,288,1415,263,180,755,26,19200,62000,6500,680,300,2.6,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-10.0,31,82200,75,1167,260,29,272,12,3200,15100,2200,260,290,3.6,2,1,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-10.0,41,82200,0,0,252,0,0,0,0,0,0,0,240,3.6,5,3,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-7.8,54,82300,0,0,254,0,0,0,0,0,0,0,260,5.2,7,5,8.0,7620,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-7.8,59,82300,0,0,246,0,0,0,0,0,0,0,270,6.2,8,3,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-8.3,54,82200,0,0,249,0,0,0,0,0,0,0,240,4.6,7,4,8.0,7620,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-8.3,59,82100,0,0,256,0,0,0,0,0,0,0,260,5.7,8,8,8.0,4572,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-7.8,59,82000,0,0,252,0,0,0,0,0,0,0,240,3.6,7,6,8.0,4572,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.8,-8.3,62,82100,0,0,254,0,0,0,0,0,0,0,220,5.7,9,8,8.0,4572,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-7.8,68,82000,0,0,230,0,0,0,0,0,0,0,240,6.2,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-8.3,65,82000,0,0,237,0,0,0,0,0,0,0,250,5.7,2,2,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-8.3,65,82000,0,0,234,0,0,0,0,0,0,0,240,5.7,1,1,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-8.3,65,82000,0,0,234,0,0,0,0,0,0,0,240,5.7,2,1,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.9,-8.3,68,82100,0,0,232,0,0,0,0,0,0,0,260,4.1,3,1,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-9.4,59,82100,0,0,229,0,0,0,0,0,0,0,220,5.2,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-8.3,75,82100,0,0,224,0,0,0,0,0,0,0,0,0.0,1,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-9.4,49,82200,46,908,241,14,107,8,1500,4800,1200,160,130,2.6,1,1,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-9.4,43,82300,252,1415,242,136,551,38,13800,41900,6300,710,140,2.6,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-10.0,35,82500,441,1415,249,287,749,53,29900,67700,8700,1080,110,4.6,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-8.9,35,82400,577,1415,254,405,835,64,42800,79900,10100,1370,100,5.2,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-8.3,39,82400,651,1415,253,471,870,70,49400,83900,10600,1450,100,5.2,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-7.8,41,82300,658,1415,253,477,873,71,50000,84300,10600,1470,90,6.2,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-7.8,39,82300,597,1415,255,422,844,66,44700,81200,10300,1420,100,6.2,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-8.9,34,82200,472,1415,256,313,770,56,32800,70700,9000,1150,120,5.7,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-7.8,39,82300,292,1415,255,166,603,41,17000,48300,6900,780,70,4.6,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-7.8,42,82200,78,1191,251,28,200,15,3000,9800,2300,280,100,4.1,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-7.8,48,82300,0,0,245,0,0,0,0,0,0,0,150,4.1,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-6.1,60,82200,0,0,243,0,0,0,0,0,0,0,170,4.6,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-4.4,66,82100,0,0,247,0,0,0,0,0,0,0,170,4.6,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-6.1,69,82100,0,0,237,0,0,0,0,0,0,0,170,5.2,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-5.6,72,82100,0,0,237,0,0,0,0,0,0,0,170,5.7,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.8,-6.1,76,82100,0,0,233,0,0,0,0,0,0,0,220,5.2,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-6.7,82,81900,0,0,227,0,0,0,0,0,0,0,220,5.7,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-6.7,82,81800,0,0,227,0,0,0,0,0,0,0,210,5.7,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-8.3,75,81900,0,0,224,0,0,0,0,0,0,0,210,5.2,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-8.3,75,81900,0,0,224,0,0,0,0,0,0,0,190,4.1,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-9.4,72,81900,0,0,221,0,0,0,0,0,0,0,210,5.7,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-9.4,75,81900,0,0,223,0,0,0,0,0,0,0,190,5.2,1,1,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.7,-10.6,71,81900,0,0,216,0,0,0,0,0,0,0,200,4.6,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-11.1,62,81800,0,0,224,0,0,0,0,0,0,0,230,3.6,2,1,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-10.6,61,81800,46,908,222,19,234,7,2100,13300,1400,220,200,5.2,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-10.6,46,82100,254,1415,233,150,695,25,16000,55000,6000,630,220,5.7,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-11.1,34,82400,443,1415,244,303,855,35,32300,77800,7800,930,240,5.7,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-12.2,26,82300,580,1415,253,422,924,43,44800,88000,8600,1140,220,5.7,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,-14.4,19,82500,654,1415,257,488,952,47,51800,92200,8900,1260,220,4.1,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-14.4,17,82400,661,1415,261,494,955,47,52400,92600,8900,1260,220,1.5,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-13.9,18,82400,601,1415,262,440,933,44,46800,89300,8700,1170,210,2.1,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-14.4,18,82500,476,1415,259,332,875,37,35300,80700,8000,980,0,0.0,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,-13.3,21,82500,297,1415,258,183,742,27,19500,61400,6500,700,40,2.6,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-12.8,26,82600,81,1214,248,36,360,12,4000,21900,2500,310,70,2.1,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-11.7,35,82400,0,0,240,0,0,0,0,0,0,0,290,2.6,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-11.1,42,82400,0,0,235,0,0,0,0,0,0,0,220,3.6,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-11.1,46,82400,0,0,231,0,0,0,0,0,0,0,230,3.6,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-11.1,42,82200,0,0,235,0,0,0,0,0,0,0,240,3.6,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-10.6,53,82100,0,0,228,0,0,0,0,0,0,0,220,5.2,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-10.0,61,82600,0,0,224,0,0,0,0,0,0,0,220,3.6,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-11.1,59,82000,0,0,221,0,0,0,0,0,0,0,210,7.7,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-11.1,62,82000,0,0,219,0,0,0,0,0,0,0,220,5.7,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-11.1,64,82100,0,0,218,0,0,0,0,0,0,0,230,5.7,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-11.7,61,82000,0,0,217,0,0,0,0,0,0,0,300,3.6,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-11.7,59,82000,0,0,223,0,0,0,0,0,0,0,230,5.7,2,1,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-12.2,53,82400,0,0,225,0,0,0,0,0,0,0,230,6.2,4,1,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.9,-12.8,46,82100,0,0,228,0,0,0,0,0,0,0,230,5.7,2,1,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.9,-12.8,46,82100,0,0,233,0,0,0,0,0,0,0,230,5.2,4,3,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-12.2,46,82300,47,908,234,17,83,12,1800,3000,1700,200,220,5.7,6,2,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-12.2,40,82700,255,1414,242,110,302,55,11500,21600,7600,990,210,6.7,8,3,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-13.3,29,83000,445,1414,248,285,650,81,29500,58000,11200,1510,230,4.6,7,2,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-13.3,19,83000,582,1414,274,326,537,105,33900,51100,12800,2060,200,3.1,8,3,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.8,-16.7,13,82900,657,1414,270,458,726,120,47700,70500,14800,2440,110,2.1,7,2,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.6,-16.7,11,83000,665,1414,286,471,653,164,49600,64700,19100,3390,90,6.2,8,4,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.7,-18.9,8,82900,604,1414,287,425,717,119,44000,68300,14700,2320,90,7.7,7,4,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.2,-17.2,9,83000,480,1414,294,201,197,134,21300,18600,15000,2740,110,7.2,9,5,8.0,7925,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,-17.8,10,83000,301,1414,290,104,103,81,11200,8300,9400,1750,110,4.6,10,7,8.0,6096,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.3,-20.6,9,82300,85,1238,276,32,62,28,3500,2900,3300,580,120,4.1,9,6,8.0,5486,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.8,-18.3,11,82900,0,0,280,0,0,0,0,0,0,0,40,3.1,10,7,8.0,5486,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-16.7,14,82800,0,0,290,0,0,0,0,0,0,0,320,2.6,10,9,8.0,5486,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-14.4,19,82500,0,0,273,0,0,0,0,0,0,0,260,4.1,10,6,8.0,6096,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-13.3,23,82100,0,0,277,0,0,0,0,0,0,0,240,4.6,10,8,8.0,5486,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,-15.0,18,82200,0,0,288,0,0,0,0,0,0,0,260,4.6,10,9,8.0,4877,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-12.8,24,82200,0,0,291,0,0,0,0,0,0,0,240,4.1,10,10,8.0,3962,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-12.2,26,82000,0,0,290,0,0,0,0,0,0,0,240,4.6,10,10,8.0,3353,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-11.7,30,81900,0,0,286,0,0,0,0,0,0,0,250,4.6,10,10,8.0,2438,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-12.2,35,82100,0,0,274,0,0,0,0,0,0,0,220,3.6,10,10,8.0,1158,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-11.7,40,82300,0,0,270,0,0,0,0,0,0,0,230,3.1,10,10,8.0,274,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-11.1,51,82300,0,0,262,0,0,0,0,0,0,0,230,4.6,10,10,8.0,244,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-11.1,59,82500,0,0,256,0,0,0,0,0,0,0,220,3.6,10,10,8.0,244,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-11.7,59,82200,0,0,253,0,0,0,0,0,0,0,230,4.1,10,10,8.0,244,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-11.7,61,82400,0,0,251,0,0,0,0,0,0,0,230,4.1,10,10,8.0,183,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-11.7,53,82500,47,931,257,4,0,4,500,0,500,160,240,4.1,10,10,8.0,152,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-11.1,41,82800,257,1414,273,38,0,38,4400,0,4400,1460,230,4.1,10,10,8.0,213,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-12.2,30,83100,447,1414,283,76,0,76,8800,0,8800,3100,220,4.1,10,10,8.0,305,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,-11.1,25,83000,585,1414,301,104,0,104,12200,0,12200,4440,240,3.1,10,10,8.0,305,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.8,-11.7,21,83400,660,1414,307,100,0,100,11900,0,11900,4520,180,1.5,10,10,8.0,183,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.8,-12.8,19,83300,668,1414,306,122,0,122,14300,0,14300,5350,120,4.1,10,10,8.0,274,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,-13.9,16,83300,608,1414,309,91,0,91,10800,0,10800,4040,90,5.7,10,10,8.0,183,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.3,-13.9,17,83300,484,1414,307,83,0,83,9700,0,9700,3430,100,5.2,10,10,8.0,213,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.3,-13.9,17,83500,305,1414,307,47,0,47,5500,0,5500,1840,100,4.1,10,10,8.0,274,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-13.3,23,83300,88,1261,291,12,0,12,1400,0,1400,450,110,5.2,10,10,8.0,427,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-12.2,30,83500,0,0,269,0,0,0,0,0,0,0,130,4.6,10,8,8.0,488,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-11.7,31,83500,0,0,283,0,0,0,0,0,0,0,150,4.6,10,10,8.0,183,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-11.7,31,83700,0,0,270,0,0,0,0,0,0,0,150,4.1,10,8,8.0,1280,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-11.7,40,83500,0,0,250,0,0,0,0,0,0,0,220,2.6,10,6,8.0,1829,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-10.6,48,83400,0,0,247,0,0,0,0,0,0,0,210,3.1,8,6,8.0,1829,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-11.1,44,83900,0,0,249,0,0,0,0,0,0,0,190,4.6,7,6,8.0,1829,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-10.0,49,83500,0,0,247,0,0,0,0,0,0,0,220,4.1,8,5,8.0,2134,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-10.0,41,83600,0,0,252,0,0,0,0,0,0,0,210,4.6,4,3,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-10.0,34,83600,0,0,268,0,0,0,0,0,0,0,220,4.1,7,6,8.0,1981,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-10.0,35,83700,0,0,260,0,0,0,0,0,0,0,220,5.2,3,3,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-9.4,37,83600,0,0,250,0,0,0,0,0,0,0,190,3.1,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-9.4,35,84200,0,0,252,0,0,0,0,0,0,0,220,2.6,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-9.4,37,84000,0,0,250,0,0,0,0,0,0,0,220,3.6,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-9.4,38,84000,0,0,248,0,0,0,0,0,0,0,220,4.6,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-8.9,37,84200,48,931,252,21,293,6,2400,16800,1500,200,230,5.7,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-8.9,31,84400,258,1414,261,160,755,22,17100,60200,6100,600,230,3.6,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.8,-8.9,27,84500,449,1414,269,318,903,31,34000,82400,7700,870,250,4.1,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-9.4,23,84400,588,1414,275,440,966,38,46900,92300,8400,1070,230,4.1,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-9.4,23,84500,664,1414,275,508,992,42,54100,96300,8700,1180,230,2.6,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,-9.4,22,84400,672,1414,282,494,845,92,51200,81900,12100,1850,210,1.5,1,1,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-10.0,22,84400,613,1414,274,456,954,42,48500,91600,8600,1150,180,1.5,1,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-10.0,22,84400,489,1414,279,323,835,35,34500,77400,7700,960,0,0.0,1,1,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-10.0,22,84500,310,1414,279,171,674,24,18400,56500,6000,670,0,0.0,1,1,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.3,-10.0,24,84200,92,1285,275,40,314,18,4200,17700,2900,340,20,4.1,4,1,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-10.0,26,84400,0,0,271,0,0,0,0,0,0,0,40,2.6,4,1,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-8.3,31,84200,0,0,277,0,0,0,0,0,0,0,180,4.1,3,3,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-8.3,31,84200,0,0,279,0,0,0,0,0,0,0,0,0.0,5,4,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,-8.9,30,84100,0,0,276,0,0,0,0,0,0,0,240,4.1,4,4,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-8.9,37,84000,0,0,265,0,0,0,0,0,0,0,240,3.6,5,4,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-9.4,40,84200,0,0,259,0,0,0,0,0,0,0,240,3.1,5,4,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-8.9,38,83800,0,0,265,0,0,0,0,0,0,0,220,4.6,7,5,8.0,3658,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-7.8,35,83800,0,0,283,0,0,0,0,0,0,0,220,5.7,7,7,8.0,3658,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-7.8,32,83800,0,0,298,0,0,0,0,0,0,0,200,3.1,9,9,8.0,1981,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-7.8,31,83800,0,0,301,0,0,0,0,0,0,0,200,5.2,9,9,8.0,2591,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-7.8,32,83900,0,0,298,0,0,0,0,0,0,0,190,4.1,9,9,8.0,2591,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-8.3,31,83900,0,0,279,0,0,0,0,0,0,0,180,4.6,4,4,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-8.3,31,83900,0,0,279,0,0,0,0,0,0,0,130,4.1,4,4,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-8.3,31,84000,0,0,287,0,0,0,0,0,0,0,170,6.2,7,7,8.0,3658,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-8.3,31,84000,49,931,292,14,39,12,1600,1200,1500,200,170,6.2,8,8,8.0,3962,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.3,-7.8,29,84200,260,1414,286,119,266,69,12100,19100,8600,1270,200,5.7,5,4,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,-8.3,25,84400,452,1414,290,246,355,133,26000,32800,15500,2720,220,4.1,5,3,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.2,-8.3,21,84000,591,1414,302,339,540,113,35100,51300,13500,2200,210,6.2,5,4,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,-8.3,20,84400,667,1414,302,513,858,108,54000,84000,14200,2250,220,3.1,3,3,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.3,-8.9,19,84300,676,1414,306,289,413,92,30800,40800,11200,1970,160,2.1,4,4,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.3,-8.9,19,84200,617,1414,319,250,283,127,27400,28700,14900,2580,100,3.1,8,8,8.0,7620,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,-8.9,19,84200,493,1414,312,239,254,150,25200,24100,16700,3130,80,6.2,9,7,8.0,7620,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.2,-8.9,20,84100,314,1414,321,84,35,77,9300,2900,8600,1970,90,5.2,10,9,8.0,2896,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,-8.9,23,83600,96,1308,312,17,15,16,1900,900,1800,410,80,4.1,10,9,8.0,2896,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,-8.3,26,83600,0,0,316,0,0,0,0,0,0,0,100,4.1,10,10,8.0,2438,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-8.9,28,83600,0,0,308,0,0,0,0,0,0,0,160,5.7,10,10,8.0,1067,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-8.3,33,83700,0,0,302,0,0,0,0,0,0,0,180,5.7,10,10,8.0,152,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-8.9,38,83500,0,0,289,0,0,0,0,0,0,0,180,5.7,10,10,8.0,610,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-8.3,46,83400,0,0,283,0,0,0,0,0,0,0,170,5.2,10,10,8.0,274,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-7.8,49,83500,0,0,281,0,0,0,0,0,0,0,220,5.2,10,10,8.0,274,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-7.8,57,83200,0,0,274,0,0,0,0,0,0,0,250,5.2,10,10,8.0,274,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-7.8,57,83200,0,0,274,0,0,0,0,0,0,0,240,4.6,10,10,8.0,152,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-8.3,57,83200,0,0,240,0,0,0,0,0,0,0,230,4.1,1,1,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-8.3,57,83200,0,0,235,0,0,0,0,0,0,0,230,3.6,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-8.3,59,83200,0,0,233,0,0,0,0,0,0,0,230,4.1,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-8.9,54,83500,0,0,234,0,0,0,0,0,0,0,230,4.6,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-9.4,49,83200,0,0,236,0,0,0,0,0,0,0,240,4.1,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.8,-9.4,57,83200,0,0,230,0,0,0,0,0,0,0,230,5.2,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-8.9,56,83400,50,954,233,20,249,7,2300,14300,1500,220,230,4.6,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-9.4,35,83500,262,1414,252,157,706,26,16700,56400,6200,650,230,4.6,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-9.4,27,83800,454,1414,266,314,865,36,33400,79100,7900,950,240,3.6,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,-10.0,21,83600,594,1414,276,436,933,44,46300,89200,8700,1170,240,3.1,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.2,-10.6,17,84000,671,1414,284,505,961,49,53600,93300,9100,1300,0,0.0,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,-11.7,15,84000,680,1414,286,487,904,52,51600,87900,9100,1350,0,0.0,1,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.3,-12.2,14,84000,621,1414,287,455,924,49,48200,88800,9000,1260,360,1.5,1,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,-11.7,15,84000,498,1414,286,349,874,41,37100,81200,8300,1050,0,0.0,1,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.6,-7.8,25,84000,319,1414,281,198,743,31,21100,62600,6900,770,30,2.1,1,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,-7.2,29,83600,100,1331,275,46,419,14,5100,26200,3000,340,40,2.6,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.8,-8.3,29,83800,0,0,270,0,0,0,0,0,0,0,20,3.1,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-8.3,36,83700,0,0,262,0,0,0,0,0,0,0,120,2.1,3,1,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-8.9,35,83700,0,0,259,0,0,0,0,0,0,0,160,2.1,2,1,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-8.9,40,83700,0,0,259,0,0,0,0,0,0,0,220,2.6,6,3,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-9.4,38,83600,0,0,253,0,0,0,0,0,0,0,240,3.6,4,1,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-8.9,49,83800,0,0,243,0,0,0,0,0,0,0,250,3.1,4,1,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-9.4,45,83600,0,0,252,0,0,0,0,0,0,0,260,2.6,7,4,8.0,7620,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-11.1,32,83500,0,0,265,0,0,0,0,0,0,0,250,2.6,7,6,8.0,7620,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-9.4,35,83500,0,0,267,0,0,0,0,0,0,0,250,3.6,8,5,8.0,6706,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-10.0,26,83500,0,0,279,0,0,0,0,0,0,0,250,3.6,6,5,8.0,6706,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-3.9,69,83400,0,0,260,0,0,0,0,0,0,0,220,3.6,5,4,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-3.9,79,84000,0,0,253,0,0,0,0,0,0,0,240,3.6,4,4,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-3.9,79,83500,0,0,253,0,0,0,0,0,0,0,240,3.6,6,4,8.0,5182,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-4.4,76,83600,0,0,255,0,0,0,0,0,0,0,220,4.1,7,5,8.0,5182,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-5.6,62,83500,51,954,260,12,23,11,1400,1000,1400,230,220,3.6,9,6,8.0,5182,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-5.6,62,83600,264,1414,260,95,118,73,10300,9000,8600,1560,100,2.1,7,6,8.0,4572,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-2.8,87,83700,457,1414,266,232,135,189,24700,12400,20700,4280,70,4.6,9,8,8.0,4572,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-2.8,79,83800,597,1414,263,277,266,164,29600,26700,18300,3480,50,6.7,7,6,8.0,4572,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-2.2,77,83500,674,1414,275,359,328,202,38300,33700,22100,4520,30,5.7,8,8,8.0,4572,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-3.9,62,83600,684,1414,273,440,405,244,46300,41600,26100,5720,20,9.3,7,7,8.0,4572,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-4.4,59,83500,625,1414,263,395,492,177,40900,48100,19500,3640,10,9.8,8,3,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-3.9,64,83600,502,1414,259,283,552,87,29400,50900,11300,1660,10,10.3,5,2,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-3.9,64,83600,323,1414,262,178,443,76,18500,35300,10400,1390,10,6.2,4,3,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-3.3,67,83500,104,1355,260,40,114,31,4200,4700,3900,570,350,4.1,4,2,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-3.9,72,83500,0,0,250,0,0,0,0,0,0,0,10,4.1,3,1,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-5.6,60,83600,0,0,250,0,0,0,0,0,0,0,10,5.7,2,1,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-10.6,37,83500,0,0,257,0,0,0,0,0,0,0,20,3.1,6,5,8.0,7620,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-9.4,47,83600,0,0,257,0,0,0,0,0,0,0,10,3.1,7,7,8.0,4877,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-9.4,49,83700,0,0,272,0,0,0,0,0,0,0,360,2.1,10,10,8.0,518,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-10.0,49,83500,0,0,252,0,0,0,0,0,0,0,340,3.6,7,7,8.0,4877,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-10.0,51,83700,0,0,267,0,0,0,0,0,0,0,360,3.1,10,10,8.0,1524,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-10.6,48,83400,0,0,254,0,0,0,0,0,0,0,350,3.1,9,8,8.0,1402,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-10.6,46,83500,0,0,249,0,0,0,0,0,0,0,310,3.1,7,6,8.0,1372,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-11.7,42,83500,0,0,255,0,0,0,0,0,0,0,280,2.6,8,8,8.0,1250,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-11.7,32,83500,0,0,264,0,0,0,0,0,0,0,310,3.6,9,7,8.0,792,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-11.1,41,83500,0,0,265,0,0,0,0,0,0,0,340,5.2,9,9,8.0,853,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-11.1,41,83800,0,0,265,0,0,0,0,0,0,0,300,2.6,10,9,8.0,1250,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-11.1,39,83600,0,0,268,0,0,0,0,0,0,0,340,2.6,10,9,8.0,1158,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-8.9,71,83800,53,954,258,7,0,7,900,0,900,270,280,3.1,10,10,8.0,1006,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-8.3,59,83900,267,1414,269,52,0,52,5900,0,5900,1900,300,3.1,10,10,8.0,1463,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-7.8,52,83900,460,1414,261,177,227,104,19200,21200,12300,2020,330,4.6,7,7,8.0,3658,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-7.2,54,84100,600,1414,266,300,270,185,31800,27100,20200,4030,360,5.2,8,8,8.0,3658,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-7.8,57,84000,678,1414,254,364,521,114,38200,51000,13600,2380,20,4.1,6,6,8.0,3658,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-8.3,59,84000,688,1414,249,437,575,157,46500,57400,18400,3260,310,3.1,6,6,8.0,3658,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.8,-9.4,57,84000,630,1414,244,416,594,151,43900,58300,17800,3050,10,2.1,5,5,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-10.0,61,84000,507,1414,238,333,733,70,34300,67900,9900,1350,350,3.6,5,5,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-11.1,62,83900,328,1414,235,162,220,111,16800,17700,12700,2280,20,3.1,6,6,8.0,3658,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.7,-11.1,68,83600,109,1378,231,23,70,18,2600,3000,2400,300,10,1.5,8,6,8.0,3658,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-8.3,-11.7,74,83800,0,0,221,0,0,0,0,0,0,0,0,0.0,4,4,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-9.4,-12.2,78,83800,0,0,219,0,0,0,0,0,0,0,210,1.5,5,5,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-9.4,-12.2,78,83800,0,0,223,0,0,0,0,0,0,0,230,2.1,7,7,8.0,1676,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-10.0,-12.8,78,83600,0,0,224,0,0,0,0,0,0,0,230,2.1,10,8,8.0,1219,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-10.6,-13.3,78,83700,0,0,218,0,0,0,0,0,0,0,250,3.6,7,7,8.0,1372,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.1,-13.3,82,83700,0,0,220,0,0,0,0,0,0,0,220,3.6,8,8,8.0,1829,9,999999999,30,0.0420,0,88,0.220,999.0,99.0 +1995,1,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.7,-13.9,82,83600,0,0,228,0,0,0,0,0,0,0,160,3.1,10,10,8.0,2134,9,999999999,30,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.7,-13.9,82,83500,0,0,210,0,0,0,0,0,0,0,180,3.6,5,5,8.0,77777,9,999999999,30,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.7,-14.4,78,83500,0,0,198,0,0,0,0,0,0,0,200,3.1,0,0,8.0,77777,9,999999999,30,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.7,-14.4,78,83500,0,0,198,0,0,0,0,0,0,0,210,3.1,0,0,8.0,77777,9,999999999,30,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-12.2,-14.4,82,83400,0,0,200,0,0,0,0,0,0,0,200,2.6,1,1,8.0,77777,9,999999999,30,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.7,-13.9,82,83800,0,0,198,0,0,0,0,0,0,0,210,4.1,0,0,8.0,77777,9,999999999,30,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.7,-13.9,82,83600,0,0,210,0,0,0,0,0,0,0,230,3.1,5,5,8.0,77777,9,999999999,30,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.7,-14.4,78,83700,0,0,198,0,0,0,0,0,0,0,230,3.6,0,0,8.0,77777,9,999999999,30,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-9.4,-12.2,78,83600,54,978,206,24,320,7,2800,18600,1700,220,230,3.6,0,0,8.0,77777,9,999999999,30,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-8.3,-12.2,71,84000,269,1413,210,169,772,22,18100,62300,6200,610,270,2.6,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.9,-10.6,56,84000,463,1413,225,331,915,31,35400,84000,7800,880,330,2.1,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-8.9,43,83900,604,1413,244,456,977,38,48600,93700,8400,1080,310,2.1,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-8.9,35,83900,682,1413,254,526,1002,42,56000,97600,8700,1190,300,1.5,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-8.9,28,83800,693,1413,267,536,1005,43,57100,98000,8800,1220,280,2.1,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.3,-12.8,13,83700,635,1413,286,483,987,40,51500,95300,8600,1130,240,2.1,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,-14.4,12,83700,512,1413,283,374,938,34,40000,87700,8000,960,200,2.1,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.7,-15.0,12,83700,333,1413,278,220,829,25,23600,70800,6900,710,0,0.0,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.7,-15.0,12,83300,113,1402,278,56,534,13,6200,34000,3300,340,50,3.1,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,-14.4,14,83300,0,0,272,0,0,0,0,0,0,0,60,3.6,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.1,-15.0,13,83100,0,0,275,0,0,0,0,0,0,0,90,3.6,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.6,-15.0,13,83100,0,0,273,0,0,0,0,0,0,0,100,3.6,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.1,-15.6,12,82900,0,0,275,0,0,0,0,0,0,0,50,3.6,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.6,-16.1,12,82800,0,0,272,0,0,0,0,0,0,0,340,2.1,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.6,-16.7,11,82900,0,0,272,0,0,0,0,0,0,0,360,1.5,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-16.1,13,82800,0,0,268,0,0,0,0,0,0,0,0,0.0,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.1,-17.8,10,82800,0,0,272,0,0,0,0,0,0,0,270,2.1,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.6,-17.8,10,82600,0,0,270,0,0,0,0,0,0,0,220,4.1,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,-17.2,12,82700,0,0,265,0,0,0,0,0,0,0,270,2.1,0,0,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.8,-16.7,13,82500,0,0,266,0,0,0,0,0,0,0,0,0.0,5,1,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-15.0,20,82900,0,0,255,0,0,0,0,0,0,0,260,1.5,5,1,8.0,77777,9,999999999,40,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-13.3,19,82900,0,0,267,0,0,0,0,0,0,0,210,1.5,4,1,8.0,77777,9,999999999,50,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.6,-17.2,11,83200,0,0,283,0,0,0,0,0,0,0,0,0.0,5,3,8.0,77777,9,999999999,50,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-17.8,11,83300,56,977,266,22,238,9,2500,13800,1700,250,230,2.1,1,0,8.0,77777,9,999999999,50,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.2,-18.3,9,83600,272,1413,276,159,651,34,16500,51300,6600,690,160,2.6,3,0,8.0,77777,9,999999999,50,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,-18.3,8,83700,466,1413,278,319,843,41,33900,77400,8200,1020,160,2.6,1,0,8.0,77777,9,999999999,50,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,-17.8,7,83400,607,1413,287,442,911,51,46800,87300,9200,1270,230,2.1,1,0,8.0,77777,9,999999999,50,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,-16.7,8,83800,686,1413,289,519,960,52,54900,93400,9300,1350,40,2.6,0,0,8.0,77777,9,999999999,50,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.6,-18.3,7,83500,697,1413,295,502,892,61,52800,86800,9800,1470,40,4.1,3,1,8.0,77777,9,999999999,50,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.6,-17.8,7,83600,639,1413,295,441,824,68,46900,80200,10500,1500,50,5.7,4,1,8.0,77777,9,999999999,50,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,-17.8,7,83500,517,1413,287,352,807,57,37200,75800,9400,1210,60,5.2,4,0,8.0,77777,9,999999999,50,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.2,-17.2,9,83600,338,1413,277,207,652,51,21000,54400,8000,930,90,4.1,7,0,8.0,77777,9,999999999,50,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.7,-17.2,10,83600,118,1413,275,52,362,22,5200,20700,3400,380,100,2.1,5,0,8.0,77777,9,999999999,50,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.6,-17.2,11,83500,0,12,271,0,0,0,0,0,0,0,130,2.6,2,0,8.0,77777,9,999999999,50,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-16.7,12,83300,0,0,267,0,0,0,0,0,0,0,70,2.1,3,0,8.0,77777,9,999999999,60,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-12.8,32,83200,0,0,239,0,0,0,0,0,0,0,30,2.1,2,0,8.0,77777,9,999999999,60,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-8.9,56,83200,0,0,233,0,0,0,0,0,0,0,130,4.1,0,0,8.0,77777,9,999999999,60,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-7.8,68,83100,0,0,230,0,0,0,0,0,0,0,170,4.1,0,0,8.0,77777,9,999999999,60,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-7.8,79,83600,0,0,224,0,0,0,0,0,0,0,150,3.1,0,0,8.0,77777,9,999999999,60,0.0420,0,88,0.220,999.0,99.0 +1995,1,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-6.7,91,83200,0,0,223,0,0,0,0,0,0,0,120,2.6,0,0,8.0,77777,9,999999999,60,0.0420,0,88,0.220,999.0,99.0 +1995,1,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-6.1,96,83200,0,0,224,0,0,0,0,0,0,0,160,3.1,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-6.1,96,83000,0,0,224,0,0,0,0,0,0,0,160,2.6,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-6.1,91,83000,0,0,226,0,0,0,0,0,0,0,170,3.1,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-6.1,91,83000,0,0,226,0,0,0,0,0,0,0,180,3.1,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-5.6,95,83300,0,0,226,0,0,0,0,0,0,0,190,3.6,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-6.1,91,83000,0,0,226,0,0,0,0,0,0,0,190,3.6,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-5.6,90,83000,0,0,228,0,0,0,0,0,0,0,180,3.1,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-5.6,90,83200,57,1001,228,22,218,10,2500,11800,1700,230,200,2.1,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-6.1,86,83300,275,1413,228,161,666,32,17100,53800,6600,710,130,2.1,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-5.6,72,83300,469,1413,237,321,833,44,34000,76500,8400,1050,0,0.0,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-5.0,61,83300,611,1413,248,446,907,53,47100,87000,9300,1290,20,2.6,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-5.0,58,83600,690,1413,250,517,938,59,54600,91300,9800,1440,30,2.6,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-5.6,49,83600,702,1413,255,528,942,59,55600,91800,9800,1450,40,2.1,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-6.1,40,83600,644,1413,263,476,921,56,50300,88900,9600,1360,40,3.6,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-6.7,35,83600,522,1413,267,368,866,48,38900,81100,8900,1150,30,2.6,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-6.7,34,83500,343,1413,269,216,741,36,22900,63500,7400,830,20,3.1,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-6.1,40,83100,123,1413,263,56,413,20,5600,24300,3500,380,360,2.1,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-6.1,45,83300,0,59,257,0,7,0,0,0,0,0,320,2.1,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-6.1,57,83300,0,0,245,0,0,0,0,0,0,0,270,2.1,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-6.1,60,83200,0,0,243,0,0,0,0,0,0,0,290,2.1,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-6.1,69,83100,0,0,237,0,0,0,0,0,0,0,270,2.1,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-6.7,65,83200,0,0,236,0,0,0,0,0,0,0,260,3.1,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.8,-6.7,72,82800,0,0,233,0,0,0,0,0,0,0,250,3.1,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-7.2,72,82800,0,0,230,0,0,0,0,0,0,0,230,3.1,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-7.8,79,82900,0,0,224,0,0,0,0,0,0,0,210,3.1,1,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-7.8,83,82700,0,0,222,0,0,0,0,0,0,0,180,3.6,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-8.3,83,82500,0,0,220,0,0,0,0,0,0,0,180,4.1,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-8.3,83,82500,0,0,220,0,0,0,0,0,0,0,160,4.6,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.7,-8.9,83,82800,0,0,218,0,0,0,0,0,0,0,170,5.2,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.7,-8.9,83,82800,0,0,218,0,0,0,0,0,0,0,240,3.6,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-9.4,72,82600,0,0,221,0,0,0,0,0,0,0,230,4.1,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-8.9,54,82600,59,1024,234,23,217,10,2500,11800,1700,230,200,4.1,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-8.3,40,82700,278,1413,251,164,668,33,17400,54200,6700,710,230,4.6,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-8.3,31,82700,472,1413,265,327,839,46,34600,77200,8600,1070,240,4.6,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.6,-8.3,24,82500,615,1413,281,454,914,56,47900,87700,9600,1320,220,3.6,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,-9.4,19,82600,695,1413,288,526,945,61,55400,92000,10000,1460,210,3.1,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,-10.0,16,82500,706,1413,300,527,912,71,55300,88800,10700,1550,180,2.1,3,1,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.6,-11.1,13,82600,649,1413,308,414,628,125,42900,60700,14900,2510,160,1.5,2,2,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.6,-13.3,11,82600,527,1413,301,352,812,49,37200,76100,8700,1160,130,3.1,1,1,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,-12.2,13,82500,348,1413,304,204,613,53,21300,51200,8600,1000,120,2.1,2,2,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.1,-12.2,16,82400,128,1413,290,34,81,27,3700,3600,3300,480,100,3.6,3,3,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.3,-11.7,20,82500,0,82,277,0,6,0,0,0,0,0,120,3.6,2,2,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-10.6,32,82500,0,0,255,0,0,0,0,0,0,0,140,4.1,1,1,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-9.4,34,82500,0,0,254,0,0,0,0,0,0,0,150,4.6,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-8.3,42,82500,0,0,249,0,0,0,0,0,0,0,160,5.2,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-8.9,41,82500,0,0,255,0,0,0,0,0,0,0,130,5.2,2,2,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-8.9,43,82700,0,0,268,0,0,0,0,0,0,0,130,5.7,8,8,8.0,4267,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-8.9,43,82400,0,0,259,0,0,0,0,0,0,0,140,5.2,7,5,8.0,6706,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-9.4,41,82200,0,0,264,0,0,0,0,0,0,0,160,5.2,7,7,8.0,6706,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-10.0,41,82300,0,0,256,0,0,0,0,0,0,0,160,4.6,6,5,8.0,6706,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-10.6,39,82200,0,0,249,0,0,0,0,0,0,0,150,4.6,2,2,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-11.7,38,82400,0,0,240,0,0,0,0,0,0,0,160,5.2,1,1,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-12.2,35,82700,0,0,242,0,0,0,0,0,0,0,190,5.2,1,1,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-12.2,37,82500,0,0,235,0,0,0,0,0,0,0,210,4.1,1,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-13.3,33,82400,0,0,234,0,0,0,0,0,0,0,200,4.6,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-13.9,28,82600,61,1024,240,27,325,8,3100,19200,1900,240,170,4.1,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-13.9,22,82800,281,1412,251,178,772,24,19000,63000,6400,650,150,4.6,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.3,-13.9,17,83000,476,1412,266,343,916,34,36600,84600,8000,940,170,6.7,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.2,-14.4,12,82900,619,1412,280,471,978,42,50100,94100,8700,1150,190,4.6,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,-15.0,10,83000,699,1412,288,543,1005,46,57800,98100,9000,1270,230,4.1,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.1,-17.8,7,83000,711,1412,292,555,1009,46,58900,98600,9000,1280,210,4.6,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.1,-18.9,6,82900,654,1412,291,503,992,43,53500,96100,8800,1190,210,4.6,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.1,-20.0,6,83100,532,1412,289,393,944,37,41900,88800,8300,1020,200,1.5,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,-18.9,7,83100,353,1412,286,238,839,28,25400,72600,7200,770,180,2.6,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.1,-15.6,12,82900,132,1412,280,64,498,18,6900,32500,3800,390,150,3.1,1,1,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-15.0,17,83000,1,106,264,0,22,0,0,0,0,0,170,5.7,1,1,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-13.9,22,83100,0,0,251,0,0,0,0,0,0,0,210,5.2,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-13.9,24,82800,0,0,252,0,0,0,0,0,0,0,210,5.7,1,1,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-13.9,24,82600,0,0,247,0,0,0,0,0,0,0,210,6.7,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-11.7,34,82900,0,0,242,0,0,0,0,0,0,0,210,7.2,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-10.6,44,83100,0,0,235,0,0,0,0,0,0,0,210,7.7,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-11.1,39,82800,0,0,238,0,0,0,0,0,0,0,210,8.8,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-11.7,37,82700,0,0,242,0,0,0,0,0,0,0,210,7.7,1,1,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.8,-11.1,49,82700,0,0,245,0,0,0,0,0,0,0,220,7.7,7,6,8.0,4877,9,999999999,20,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-12.2,38,82700,0,0,238,0,0,0,0,0,0,0,220,7.2,1,1,8.0,77777,9,999999999,20,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-12.8,35,82700,0,0,239,0,0,0,0,0,0,0,210,6.2,1,1,8.0,77777,9,999999999,20,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-13.3,33,83100,0,0,244,0,0,0,0,0,0,0,210,7.7,4,3,8.0,77777,9,999999999,20,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-12.8,38,82800,0,0,235,0,0,0,0,0,0,0,220,5.7,2,1,8.0,77777,9,999999999,20,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-12.8,33,83000,0,0,237,0,0,0,0,0,0,0,230,5.7,1,0,8.0,77777,9,999999999,20,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-12.8,31,83200,63,1047,241,23,190,12,2600,9000,2000,230,210,8.2,1,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-12.2,24,83500,284,1412,255,167,641,38,17200,51100,6800,750,220,5.2,0,0,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-11.7,19,83500,480,1412,286,255,362,132,27100,34100,15500,2690,230,5.2,4,4,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,-12.2,14,83500,623,1412,305,339,404,160,35400,39500,17900,3250,250,4.6,6,6,8.0,7620,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,-12.8,12,83500,704,1412,313,338,256,210,36100,26500,22800,4770,270,5.2,7,6,8.0,7620,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.1,-16.1,8,83500,716,1412,309,422,514,161,45000,51700,18700,3400,320,2.6,4,4,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,-15.0,9,83500,659,1412,308,496,904,74,52000,87300,11000,1470,340,4.1,2,2,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,-15.0,9,83500,537,1412,311,329,575,110,33800,53400,13400,2060,310,3.1,8,3,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.1,-13.3,11,83600,359,1412,321,175,153,136,18600,13000,15300,2990,290,6.2,7,7,8.0,7620,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,-14.4,12,83500,137,1412,311,32,46,27,3500,2500,3200,560,290,6.2,9,8,8.0,7620,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,-13.3,17,83300,1,129,287,0,1,0,0,0,0,0,300,5.2,7,6,8.0,7620,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-12.2,22,83300,0,0,287,0,0,0,0,0,0,0,320,5.2,8,8,8.0,6706,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-9.4,33,83300,0,0,273,0,0,0,0,0,0,0,160,4.1,6,6,8.0,6706,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-8.9,35,83100,0,0,294,0,0,0,0,0,0,0,150,5.2,10,10,8.0,6706,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-9.4,38,83000,0,0,278,0,0,0,0,0,0,0,160,5.2,9,9,8.0,6706,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-10.0,35,83400,0,0,260,0,0,0,0,0,0,0,130,4.6,3,3,8.0,77777,9,999999999,30,0.0430,0,88,0.220,999.0,99.0 +1995,1,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-11.1,32,82900,0,0,248,0,0,0,0,0,0,0,160,6.2,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-11.7,31,83000,0,0,246,0,0,0,0,0,0,0,170,6.2,0,0,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-13.3,26,83000,0,0,251,0,0,0,0,0,0,0,170,6.2,1,1,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-14.4,23,82900,0,0,252,0,0,0,0,0,0,0,210,5.2,1,1,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-15.0,20,82900,0,0,273,0,0,0,0,0,0,0,190,5.7,8,8,8.0,4572,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-14.4,21,83100,0,0,268,0,0,0,0,0,0,0,260,4.6,6,6,8.0,7620,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-14.4,19,83000,0,0,266,0,0,0,0,0,0,0,140,2.6,4,3,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-14.4,19,83200,0,0,264,0,0,0,0,0,0,0,230,3.6,2,2,8.0,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-12.8,25,83200,65,1047,268,22,41,19,2400,1800,2300,390,220,4.6,8,6,8.0,5486,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,-13.3,19,83400,287,1412,284,80,83,63,8800,6600,7500,1360,250,4.1,9,7,8.0,5486,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,-11.1,21,83500,484,1412,298,178,106,142,19400,10000,15900,3240,260,3.1,9,8,8.0,5486,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.3,-9.4,18,83200,627,1412,305,368,563,118,38200,54200,14100,2350,280,2.6,9,4,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,-8.3,18,83500,708,1412,314,346,271,210,37000,28100,22900,4780,320,3.1,9,5,8.0,7315,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.6,-7.8,18,83500,721,1412,326,372,322,208,40000,33500,22800,4740,0,0.0,9,7,8.0,6096,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,-7.8,18,83400,664,1412,320,456,615,167,48000,61000,19200,3460,350,2.1,8,6,8.0,5486,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,-7.2,20,83400,542,1412,307,313,540,106,32400,50400,12900,2010,10,2.6,4,2,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.3,-6.7,23,83400,364,1412,306,169,320,86,17600,26800,10700,1590,320,3.1,4,3,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.2,-7.2,23,83200,142,1412,294,56,272,28,5700,15300,4100,500,310,5.7,2,1,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,-6.7,30,83500,1,153,276,0,5,0,0,0,0,0,320,4.6,1,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,-7.2,35,83500,0,0,264,0,0,0,0,0,0,0,310,3.1,0,0,8.0,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,-6.7,37,83500,0,0,265,0,0,0,0,0,0,0,280,2.1,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-6.7,41,83500,0,0,258,0,0,0,0,0,0,0,250,4.1,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-6.1,51,83500,0,0,251,0,0,0,0,0,0,0,230,4.6,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-6.1,55,83800,0,0,247,0,0,0,0,0,0,0,250,4.1,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-7.2,50,83400,0,0,246,0,0,0,0,0,0,0,260,5.7,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-7.2,52,83300,0,0,244,0,0,0,0,0,0,0,270,5.2,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-7.8,57,83200,0,0,238,0,0,0,0,0,0,0,270,5.2,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-7.8,57,83200,0,0,238,0,0,0,0,0,0,0,230,1.5,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-7.8,57,83200,0,0,238,0,0,0,0,0,0,0,240,3.6,0,0,8.0,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-9.4,41,83600,0,0,244,0,0,0,0,0,0,0,170,1.5,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-8.9,62,83100,0,0,229,0,0,0,0,0,0,0,240,2.1,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-8.3,65,83200,0,0,230,0,0,0,0,0,0,0,200,2.6,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-7.8,62,83200,67,1070,234,27,242,11,2800,13400,2000,250,150,3.1,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-6.7,45,83300,291,1411,254,172,675,33,18200,55500,6800,740,150,2.1,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-6.7,38,83400,488,1411,263,332,784,61,34600,72400,9400,1230,0,0.0,4,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,-6.7,37,83500,632,1411,283,325,208,232,35000,20800,25600,5590,0,0.0,8,6,8.0,9144,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,-6.7,30,83300,713,1411,298,394,317,234,41900,32900,25200,5460,30,3.1,7,7,8.0,9144,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,-9.4,22,83200,726,1411,291,479,554,194,50200,55600,21500,4200,320,4.1,10,4,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.1,-8.9,22,83200,670,1411,299,293,266,166,31600,27400,18600,3570,330,5.2,10,5,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.7,-8.3,22,83200,548,1411,300,346,547,133,36300,52100,16000,2600,70,5.7,9,4,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-7.8,27,83200,369,1411,286,171,353,79,18100,29800,10300,1450,20,11.3,10,2,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.8,-7.8,30,83100,147,1411,286,52,29,49,5700,1900,5500,1080,40,9.8,10,5,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,-8.3,33,83100,2,176,279,0,4,0,0,0,0,0,50,10.3,7,6,8.0,7620,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-7.8,39,83000,0,0,273,0,0,0,0,0,0,0,40,9.3,8,6,8.0,7620,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-7.2,38,82900,0,0,281,0,0,0,0,0,0,0,60,4.6,9,7,8.0,7620,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,-7.2,35,82900,0,0,290,0,0,0,0,0,0,0,70,5.2,8,8,8.0,6706,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-5.6,44,82800,0,0,270,0,0,0,0,0,0,0,40,6.7,2,2,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-5.0,48,82800,0,0,271,0,0,0,0,0,0,0,60,5.2,4,3,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-2.8,63,82600,0,0,258,0,0,0,0,0,0,0,30,2.1,0,0,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-2.2,71,82600,0,0,259,0,0,0,0,0,0,0,70,2.1,2,1,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.6,-2.2,80,82500,0,0,253,0,0,0,0,0,0,0,150,2.1,4,1,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-2.2,91,82400,0,0,251,0,0,0,0,0,0,0,220,3.6,6,2,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.9,-5.0,91,82400,0,0,235,0,0,0,0,0,0,0,220,4.1,8,1,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-6.7,86,82600,0,0,229,0,0,0,0,0,0,0,230,5.7,7,1,8.0,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-7.2,87,82400,0,0,227,0,0,0,0,0,0,0,230,4.6,8,1,8.0,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.7,-8.3,87,82500,0,0,225,0,0,0,0,0,0,0,230,4.1,9,2,8.0,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.8,-9.4,87,82600,70,1094,225,19,30,17,2100,1400,2000,350,240,4.1,10,4,8.0,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.8,-9.4,87,82700,295,1411,225,72,113,48,7900,8700,6000,850,240,3.6,10,4,8.0,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.2,-9.4,82,82700,492,1411,227,255,269,161,26700,25500,17800,3420,240,3.1,8,4,8.0,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.2,-10.0,78,82800,636,1411,222,366,472,153,38600,46400,17600,3110,290,4.1,6,2,8.0,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-9.4,72,82700,718,1411,225,479,722,111,50600,71600,14000,2410,290,4.6,3,1,8.0,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-10.0,61,82700,731,1411,224,541,895,77,56600,87400,11100,1620,340,5.2,2,0,8.0,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-9.4,75,82800,675,1411,219,493,896,64,51800,86900,10100,1460,340,3.6,0,0,8.0,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-9.4,72,82800,553,1411,221,385,841,55,40600,79400,9300,1240,30,2.6,0,0,8.0,77777,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-8.9,75,82700,374,1411,221,229,697,44,23900,60600,7800,910,0,0.0,1,0,8.0,77777,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-7.8,79,82700,153,1411,224,69,402,26,7000,25400,4200,470,110,2.1,1,0,8.0,77777,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-6.7,86,82800,3,223,225,0,17,0,0,0,0,0,180,5.7,0,0,8.0,77777,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-5.6,90,82800,0,0,228,0,0,0,0,0,0,0,200,5.2,0,0,8.0,77777,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.9,-5.0,91,82800,0,0,230,0,0,0,0,0,0,0,170,5.7,0,0,8.0,77777,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.9,-5.6,86,82900,0,0,230,0,0,0,0,0,0,0,180,3.1,0,0,8.0,77777,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-5.6,82,82900,0,0,232,0,0,0,0,0,0,0,190,5.2,0,0,8.0,77777,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.0,-4.3,90,82900,0,0,234,0,0,0,0,0,0,0,180,5.1,0,0,8.0,20446,9,999999999,100,0.0430,0,88,0.220,999.0,99.0 +1995,1,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.7,-4.2,88,82700,0,0,240,0,0,0,0,0,0,0,200,6.0,1,1,8.0,18892,9,999999999,100,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.5,-4.8,90,82600,0,0,236,0,0,0,0,0,0,0,210,5.4,1,1,8.0,17338,9,999999999,100,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.2,-5.3,84,82500,0,0,240,0,0,0,0,0,0,0,240,4.9,2,2,8.0,15785,9,999999999,100,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.8,-4.0,83,82500,0,0,246,0,0,0,0,0,0,0,240,5.8,2,2,8.0,14231,9,999999999,100,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.5,-3.9,82,82500,0,0,248,0,0,0,0,0,0,0,250,5.2,2,2,8.0,12677,9,999999999,100,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.1,-3.4,76,82700,0,0,256,0,0,0,0,0,0,0,260,4.6,3,3,8.0,11123,9,999999999,100,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.2,-2.7,79,82600,0,0,257,0,0,0,0,0,0,0,270,5.5,3,3,8.0,9569,9,999999999,100,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.6,-2.1,75,82500,0,0,267,0,0,0,0,0,0,0,290,4.9,8,5,8.0,8015,9,999999999,100,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.9,-2.0,74,82500,72,1117,269,17,52,14,1900,1900,1800,230,270,5.9,10,5,8.0,6462,9,999999999,100,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-2.0,67,82600,298,1411,280,145,148,114,15500,11700,13000,2470,310,5.8,10,7,8.0,4908,9,999999999,100,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.2,-3.0,58,82700,496,1411,279,281,397,141,28900,36700,15900,2760,300,3.6,10,6,8.0,3354,9,999999999,100,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-3.4,53,82600,641,1411,282,256,349,97,28300,34600,12500,1890,360,5.1,10,6,16.1,1800,9,999999999,100,0.0430,0,88,0.220,0.0,6.0 +1995,1,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.3,-3.2,53,82500,723,1411,281,470,613,156,48500,59800,17800,3210,290,3.3,10,5,16.1,3483,9,999999999,100,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.8,-3.3,54,82500,736,1411,281,322,93,273,35300,9400,30400,7910,190,4.8,10,6,16.1,5167,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.7,-3.1,55,82400,680,1411,277,400,292,259,43000,29600,28700,6380,180,4.1,10,4,16.1,6850,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.1,-3.6,55,82500,559,1411,276,245,341,110,26300,32700,13300,2110,210,4.9,9,5,16.1,8533,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.5,-4.1,55,82500,380,1411,271,161,225,101,17100,19500,11900,1980,180,4.8,8,4,16.1,10217,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.8,-4.1,62,82800,158,1411,266,40,126,26,4300,7000,3500,450,180,5.1,9,5,16.1,11900,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.1,-4.6,68,82700,3,247,255,0,21,0,0,0,0,0,200,2.9,5,3,16.1,13583,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.0,-5.1,71,82800,0,0,253,0,0,0,0,0,0,0,50,0.7,5,4,16.1,15267,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.1,-4.5,75,82800,0,0,251,0,0,0,0,0,0,0,200,2.6,5,3,16.1,16950,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.6,-4.5,78,82900,0,0,251,0,0,0,0,0,0,0,190,4.4,4,4,16.1,18633,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.7,-4.4,87,82900,0,0,243,0,0,0,0,0,0,0,190,2.8,2,2,16.1,20317,9,999999999,89,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-6.1,96,83100,0,0,228,0,0,0,0,0,0,0,170,4.1,1,1,16.1,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-6.1,96,82800,0,0,224,0,0,0,0,0,0,0,170,4.1,0,0,16.1,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-6.7,95,82700,0,0,221,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-6.1,91,82600,0,0,230,0,0,0,0,0,0,0,190,4.1,1,1,16.1,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-7.2,91,82600,0,0,236,0,0,0,0,0,0,0,180,2.1,6,6,16.1,4267,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-8.9,75,82600,0,0,237,0,0,0,0,0,0,0,250,3.1,6,6,16.1,4572,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-9.4,72,82800,0,0,248,0,0,0,0,0,0,0,220,2.1,9,9,16.1,4572,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.2,-11.7,67,82600,0,0,247,0,0,0,0,0,0,0,0,0.0,10,10,16.1,7010,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-10.0,-13.9,70,82600,0,0,215,0,0,0,0,0,0,0,360,3.6,7,5,16.1,8534,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-9.4,-13.3,70,82500,75,1117,216,32,116,24,3300,4800,3000,430,40,3.6,8,4,16.1,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-9.4,-11.7,81,82600,302,1410,214,147,497,40,15400,39700,6900,760,320,2.6,6,2,16.1,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-8.9,75,82500,500,1410,231,277,435,123,29000,40500,14600,2370,340,6.2,5,3,16.1,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.3,-9.4,59,82700,646,1410,236,428,743,88,44400,71700,11400,1760,10,5.7,6,2,16.1,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-9.4,54,82500,728,1410,242,493,590,188,51800,59300,21100,4060,40,5.2,8,3,16.1,77777,9,999999999,80,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.8,-8.3,62,82300,742,1410,245,538,707,166,55400,69000,19000,3430,70,3.6,6,5,16.1,7620,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-9.4,52,82200,686,1410,246,395,633,87,42300,62800,11600,1900,70,4.1,6,4,16.1,7620,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-7.8,59,82200,564,1410,255,192,217,105,21100,21600,12500,2050,70,3.6,9,7,16.1,3962,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-8.9,56,82200,385,1410,269,86,0,86,9800,0,9800,3200,110,3.1,10,10,16.1,2896,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.8,-6.7,72,82500,163,1410,268,33,0,33,3700,0,3700,1140,100,3.1,10,10,16.1,2438,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-5.6,90,82200,4,270,263,0,0,0,0,0,0,0,90,4.1,10,10,16.1,2743,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.0,-6.0,84,82200,0,0,264,0,0,0,0,0,0,0,100,4.6,10,10,16.1,244,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-6.7,86,82200,0,0,260,0,0,0,0,0,0,0,120,4.1,10,10,16.1,152,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-6.1,91,82200,0,0,260,0,0,0,0,0,0,0,130,5.2,10,10,16.1,183,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-6.7,95,82100,0,0,256,0,0,0,0,0,0,0,130,6.2,10,10,16.1,213,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-9.4,-10.6,90,82300,0,0,240,0,0,0,0,0,0,0,120,3.1,10,10,16.1,305,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.8,-8.9,91,82000,0,0,247,0,0,0,0,0,0,0,160,5.2,10,10,16.1,427,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-10.6,-11.7,91,81900,0,0,213,0,0,0,0,0,0,0,180,3.6,4,4,16.1,77777,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.7,-13.3,87,81900,0,0,215,0,0,0,0,0,0,0,180,5.7,10,7,16.1,1128,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-15.6,-17.2,86,81800,0,0,212,0,0,0,0,0,0,0,150,3.1,10,10,16.1,1219,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-13.9,-16.1,82,81900,0,0,219,0,0,0,0,0,0,0,230,1.5,10,10,16.1,701,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-13.3,-15.6,81,82000,0,0,221,0,0,0,0,0,0,0,190,2.6,10,10,16.1,1676,9,999999999,69,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-12.8,-15.0,82,81900,0,0,224,0,0,0,0,0,0,0,180,1.5,10,10,16.1,244,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-15.0,-17.2,81,81800,0,0,204,0,0,0,0,0,0,0,320,1.5,10,8,16.1,2134,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-10.0,-13.3,74,81800,78,1140,210,30,98,24,3300,3700,3000,430,10,2.1,6,2,16.1,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-8.9,-13.3,67,81900,306,1410,207,179,641,40,18500,52400,7100,790,350,2.6,0,0,16.1,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.2,-12.8,61,81900,505,1410,213,345,808,55,36300,75100,9300,1170,330,2.6,0,0,16.1,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-10.6,65,82000,651,1410,220,474,883,66,49700,85200,10300,1440,350,3.6,0,0,16.1,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.9,-11.1,53,81800,733,1410,225,549,916,73,57600,89500,10900,1610,350,3.1,0,0,16.1,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.8,-8.3,62,81800,747,1410,231,562,922,74,59000,90300,10900,1640,20,3.1,0,0,16.1,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-9.4,54,81700,691,1410,232,512,902,69,53700,87700,10500,1520,10,3.1,0,0,16.1,77777,9,999999999,60,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.8,-8.3,62,81800,570,1410,231,403,848,60,42400,80400,9700,1290,360,3.1,0,0,16.1,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-8.3,59,81900,391,1410,233,249,729,46,25900,64100,8100,950,360,4.1,0,0,16.1,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-3.9,-8.3,68,81700,168,1410,227,80,435,28,8000,28500,4600,500,350,3.6,0,0,16.1,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.2,-10.0,78,81700,5,294,215,0,21,0,0,0,0,0,50,2.6,0,0,16.1,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-10.0,-12.2,82,81700,0,0,204,0,0,0,0,0,0,0,90,2.1,0,0,16.1,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-9.4,-12.2,78,81800,0,0,206,0,0,0,0,0,0,0,150,2.1,2,0,16.1,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-10.6,-12.8,82,81800,0,0,216,0,0,0,0,0,0,0,170,3.1,9,6,16.1,6096,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.1,-13.3,82,81700,0,0,217,0,0,0,0,0,0,0,160,2.6,9,7,16.1,6096,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.1,-13.9,78,81800,0,0,219,0,0,0,0,0,0,0,190,3.1,10,8,16.1,6096,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.1,-14.4,74,81800,0,0,210,0,0,0,0,0,0,0,130,2.1,5,4,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.1,-14.4,74,81900,0,0,206,0,0,0,0,0,0,0,350,3.1,2,2,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-9.4,-13.9,67,81900,0,0,205,0,0,0,0,0,0,0,220,2.6,0,0,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-10.6,-13.9,74,82000,0,0,201,0,0,0,0,0,0,0,200,2.1,0,0,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-10.0,-14.4,67,82000,0,0,203,0,0,0,0,0,0,0,190,2.1,0,0,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.7,-15.6,70,82300,0,0,197,0,0,0,0,0,0,0,210,3.6,0,0,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-10.6,-15.6,63,82200,0,0,200,0,0,0,0,0,0,0,150,3.1,0,0,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-11.1,-15.6,66,82300,0,0,202,0,0,0,0,0,0,0,180,2.1,1,1,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-12.2,-16.7,66,82400,81,1163,198,26,137,17,2900,5900,2500,290,170,2.1,3,1,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.8,-13.9,58,82500,311,1410,210,181,620,44,18500,50600,7300,840,170,5.2,1,0,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-13.9,50,82500,510,1410,215,345,786,61,36100,73400,9500,1250,160,4.6,1,0,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-13.9,43,82700,656,1410,221,474,860,73,50100,83900,10900,1590,180,3.1,1,0,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-11.1,46,82600,739,1410,235,543,890,76,56800,87000,11000,1630,320,1.5,1,1,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.0,-8.3,49,82600,753,1410,246,540,866,77,56500,84800,11000,1670,350,3.6,1,1,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-9.4,40,82600,697,1410,251,483,822,77,51400,80800,11200,1710,350,3.1,1,1,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.2,-11.1,33,82700,575,1410,246,408,842,64,43100,80600,10100,1370,20,2.1,0,0,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-9.4,40,82700,396,1410,246,252,720,49,26200,63400,8200,990,10,4.6,0,0,16.1,77777,9,999999999,40,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.7,-8.9,54,83000,173,1410,234,80,398,31,8200,24700,5200,560,360,2.1,1,0,16.1,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-11.1,56,82900,6,317,223,1,21,0,0,0,0,0,40,2.1,0,0,16.1,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-12.8,48,83000,0,0,226,0,0,0,0,0,0,0,320,1.5,2,1,16.1,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.8,-11.7,71,83000,0,0,216,0,0,0,0,0,0,0,170,2.1,5,1,16.1,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-12.2,50,82900,0,0,227,0,0,0,0,0,0,0,180,2.1,1,1,16.1,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-11.7,59,82700,0,0,228,0,0,0,0,0,0,0,170,1.5,5,3,16.1,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-11.7,56,83200,0,0,228,0,0,0,0,0,0,0,160,1.5,5,2,16.1,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-11.7,56,82800,0,0,221,0,0,0,0,0,0,0,180,1.5,0,0,16.1,77777,9,999999999,50,0.0430,0,88,0.220,999.0,99.0 +1995,1,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-12.8,53,82900,0,0,222,0,0,0,0,0,0,0,180,1.5,1,1,16.1,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.6,-13.3,51,82900,0,0,229,0,0,0,0,0,0,0,190,3.1,4,4,16.1,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-13.9,50,82900,0,0,227,0,0,0,0,0,0,0,140,3.1,4,4,16.1,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-14.4,48,82900,0,0,222,0,0,0,0,0,0,0,190,2.6,2,2,16.1,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-8.3,-15.0,55,83300,0,0,222,0,0,0,0,0,0,0,200,3.1,6,6,16.1,6096,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-8.9,-15.0,58,83000,0,0,212,0,0,0,0,0,0,0,170,3.6,4,2,16.1,77777,9,999999999,50,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-8.3,-15.6,52,83000,0,0,216,0,0,0,0,0,0,0,160,2.6,8,3,16.1,77777,9,999999999,60,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.8,-15.0,52,83000,84,1186,222,29,120,20,3100,5200,2700,350,180,3.1,7,5,16.1,6096,9,999999999,60,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-14.4,41,83200,315,1409,242,138,108,114,14800,8800,12800,2480,180,4.1,10,8,16.1,6096,9,999999999,60,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.2,-13.3,38,83400,514,1409,245,236,248,145,25000,23900,16300,3000,210,4.1,9,6,16.1,7620,9,999999999,60,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-12.8,29,83400,661,1409,259,356,439,150,37800,43500,17300,3070,0,0.0,9,6,16.1,7620,9,999999999,60,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.8,-11.7,30,83400,744,1409,262,433,476,181,45800,48100,20300,3930,0,0.0,7,5,16.1,7620,9,999999999,60,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-11.1,27,83300,758,1409,274,443,494,177,47100,50000,20100,3870,80,2.6,10,6,16.1,6706,9,999999999,60,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-11.1,27,83200,703,1409,274,293,242,172,31800,25100,19200,3760,70,2.6,10,6,16.1,6706,9,999999999,60,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-11.7,26,83200,581,1409,281,261,107,217,28600,10500,24300,5740,80,2.6,10,8,16.1,6096,9,999999999,60,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-11.7,27,83200,402,1409,269,252,484,114,25900,41900,13900,2170,80,4.1,10,5,16.1,6096,9,999999999,60,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.7,-11.1,34,83200,179,1409,259,91,151,72,9300,8500,8200,1500,90,3.1,10,5,16.1,6401,9,999999999,69,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.6,-12.2,37,83000,7,364,249,2,23,1,0,0,0,0,110,3.6,9,5,16.1,6706,9,999999999,69,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-4.4,-10.0,61,83000,0,0,238,0,0,0,0,0,0,0,100,2.6,8,5,16.1,6706,9,999999999,69,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.8,-11.1,75,83100,0,0,227,0,0,0,0,0,0,0,350,1.5,7,6,16.1,6706,9,999999999,69,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.0,-13.3,48,83100,0,0,235,0,0,0,0,0,0,0,0,0.0,9,6,16.1,6706,9,999999999,69,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.3,-14.2,44,83000,0,0,235,0,0,0,0,0,0,0,170,0.8,10,7,16.1,6706,9,999999999,69,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-5.7,-15.1,50,83300,0,0,231,0,0,0,0,0,0,0,170,1.6,9,6,16.1,6706,9,999999999,69,0.0440,0,88,0.220,999.0,99.0 +1995,1,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-6.1,-16.1,53,82900,0,0,228,0,0,0,0,0,0,0,180,2.4,9,6,16.1,6706,9,999999999,69,0.0440,0,88,0.220,999.0,99.0 +1994,2,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.5,-17.0,47,84000,0,0,218,0,0,0,0,0,0,0,260,3.3,2,2,48.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.9,-18.0,38,84000,0,0,218,0,0,0,0,0,0,0,270,4.1,5,3,48.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.3,-18.9,34,84000,0,0,211,0,0,0,0,0,0,0,270,4.9,2,1,48.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-20.0,33,84000,0,0,205,0,0,0,0,0,0,0,270,5.7,1,0,48.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-20.0,31,84000,0,0,211,0,0,0,0,0,0,0,260,6.2,1,1,48.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-20.6,31,83900,0,0,208,0,0,0,0,0,0,0,250,4.6,1,1,48.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-20.6,29,83900,0,0,206,0,0,0,0,0,0,0,240,4.1,0,0,80.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-20.0,30,84000,88,1209,212,38,360,12,4200,22300,2500,320,270,5.2,1,1,112.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-18.9,29,84000,321,1409,215,209,798,28,22400,67400,6900,740,280,4.6,0,0,112.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-18.9,26,84000,520,1409,218,383,931,39,40800,87300,8400,1040,290,5.7,0,0,112.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-18.3,24,84000,667,1409,224,516,990,47,54800,96100,9100,1270,270,6.2,0,0,112.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-20.0,18,84000,751,1409,228,592,1015,51,62800,99700,9400,1400,280,4.1,0,0,112.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-18.3,18,83900,765,1409,235,606,1019,52,64200,100300,9500,1430,340,2.6,0,0,112.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-11.7,48,83800,710,1409,227,554,1002,49,58800,97900,9200,1330,90,5.7,0,0,112.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-12.2,46,83800,588,1409,226,443,959,42,47100,91600,8700,1140,110,6.2,0,0,112.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-12.2,48,83800,409,1409,224,284,865,32,30200,77500,7600,870,110,6.2,0,0,112.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-13.3,46,83800,185,1409,221,103,628,20,10900,45400,4900,500,150,3.6,0,0,112.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-15.0,48,83700,9,387,213,3,83,1,0,0,0,0,130,2.1,0,0,80.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-15.0,50,83700,0,0,211,0,0,0,0,0,0,0,160,2.6,0,0,48.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-15.6,50,83600,0,0,209,0,0,0,0,0,0,0,180,3.6,0,0,32.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-16.7,49,83600,0,0,204,0,0,0,0,0,0,0,210,1.0,0,0,32.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-17.2,52,83600,0,0,200,0,0,0,0,0,0,0,140,2.1,0,0,32.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-17.8,49,83600,0,0,200,0,0,0,0,0,0,0,180,2.6,0,0,32.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-18.3,44,83600,0,0,201,0,0,0,0,0,0,0,200,3.1,0,0,32.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-18.9,44,83600,0,0,199,0,0,0,0,0,0,0,190,2.1,0,0,32.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-18.9,42,83600,0,0,201,0,0,0,0,0,0,0,120,3.1,0,0,32.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-18.9,51,83500,0,0,198,0,0,0,0,0,0,0,180,2.1,3,1,48.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-18.3,54,83500,0,0,198,0,0,0,0,0,0,0,210,2.1,1,1,48.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.3,-20.0,53,83500,0,0,192,0,0,0,0,0,0,0,0,0.0,1,1,48.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.2,-19.4,51,83500,0,0,192,0,0,0,0,0,0,0,170,2.1,0,0,48.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.3,-20.0,53,83500,0,0,188,0,0,0,0,0,0,0,190,2.6,0,0,112.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-20.0,42,83500,92,1232,196,40,342,14,4300,21200,2700,340,160,4.1,0,0,112.0,77777,9,999999999,20,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-18.3,32,83500,325,1408,213,206,747,33,21800,63300,7100,790,150,3.1,0,0,112.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-16.1,28,83500,525,1408,228,378,891,46,40100,83600,8800,1130,180,4.6,0,0,112.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-13.3,29,83400,672,1408,240,511,955,55,54000,92700,9600,1380,200,4.6,0,0,112.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-13.3,22,83300,756,1408,254,588,983,60,62000,96500,10000,1530,190,2.6,0,0,112.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-18.9,11,83300,771,1408,259,602,987,61,63400,97100,10100,1560,110,1.5,0,0,112.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-11.1,26,83200,716,1408,259,551,970,58,58200,94800,9800,1460,350,3.1,0,0,96.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-5.6,51,83200,594,1408,254,440,923,50,46500,88200,9100,1240,350,5.2,0,0,64.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.7,54,83300,415,1408,245,281,822,39,29800,73700,8000,950,360,4.1,0,0,64.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-8.3,62,83300,191,1408,231,102,570,25,10800,41500,5200,530,350,3.1,0,0,64.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-9.4,75,83400,10,411,219,3,63,1,0,0,0,0,240,1.5,0,0,64.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-11.7,74,83400,0,0,210,0,0,0,0,0,0,0,350,2.1,0,0,32.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-10.6,74,83500,0,0,215,0,0,0,0,0,0,0,30,1.5,0,0,24.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-11.7,78,83500,0,0,208,0,0,0,0,0,0,0,120,2.1,0,0,24.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-11.7,78,83500,0,0,208,0,0,0,0,0,0,0,180,2.1,0,0,24.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-11.7,81,83500,0,0,207,0,0,0,0,0,0,0,160,2.6,0,0,24.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-13.9,70,83500,0,0,210,0,0,0,0,0,0,0,150,3.1,2,2,24.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-12.8,82,83400,0,0,219,0,0,0,0,0,0,0,160,2.1,7,7,19.2,3962,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-12.2,82,83400,0,0,225,0,0,0,0,0,0,0,170,1.5,10,8,19.2,4572,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-14.4,67,83400,0,0,219,0,0,0,0,0,0,0,190,2.1,7,7,19.2,7010,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-14.4,71,83300,0,0,213,0,0,0,0,0,0,0,190,2.6,8,5,19.2,7620,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.1,-14.4,74,83300,0,0,211,0,0,0,0,0,0,0,180,2.1,6,5,32.0,7010,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.2,-15.6,73,83200,0,0,205,0,0,0,0,0,0,0,220,2.6,4,4,32.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.2,-16.1,70,83200,0,0,205,0,0,0,0,0,0,0,180,1.5,4,4,64.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-15.6,70,83200,95,1255,207,34,199,19,3600,10200,2800,350,120,1.5,4,4,80.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-14.4,53,83100,330,1408,218,201,689,39,20900,57900,7300,800,200,4.1,2,2,80.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-15.0,36,83100,530,1408,233,357,725,83,37400,68200,11600,1630,180,2.1,3,3,80.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-13.9,26,83000,678,1408,252,445,687,114,46700,67300,14100,2380,280,1.5,4,2,80.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-10.6,31,83000,762,1408,266,462,471,207,48400,47600,22500,4620,340,2.1,8,4,64.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-7.8,36,82900,777,1408,268,563,751,148,58700,74400,17500,3250,350,3.1,7,2,48.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-7.8,39,82800,722,1408,269,407,500,150,43700,50400,17800,3160,20,3.1,8,4,16.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.8,44,82900,600,1408,258,396,707,95,41700,68100,12500,1920,90,4.6,7,2,12.8,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.1,55,83000,420,1408,258,195,483,51,20800,43200,7800,1000,50,2.6,8,3,16.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-6.1,60,83000,196,1408,257,83,143,63,8600,8600,7400,1240,60,4.6,5,5,16.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-10.0,45,83100,12,434,250,2,33,1,0,0,0,0,120,4.1,4,4,16.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-12.2,48,83200,0,0,232,0,0,0,0,0,0,0,200,1.5,2,2,16.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-12.8,46,83300,0,0,228,0,0,0,0,0,0,0,0,0.0,1,1,24.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-13.9,39,83400,0,0,225,0,0,0,0,0,0,0,120,2.6,1,0,24.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-12.8,50,83500,0,0,220,0,0,0,0,0,0,0,200,1.5,0,0,24.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-12.8,55,83600,0,0,216,0,0,0,0,0,0,0,180,2.6,0,0,24.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-12.8,61,83600,0,0,213,0,0,0,0,0,0,0,180,2.1,0,0,24.0,77777,9,999999999,30,0.0530,0,88,0.220,0.0,1.0 +1994,2,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-13.9,61,83500,0,0,208,0,0,0,0,0,0,0,150,2.1,0,0,32.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-15.0,58,83500,0,0,206,0,0,0,0,0,0,0,240,2.1,0,0,32.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-16.1,61,83500,0,0,200,0,0,0,0,0,0,0,270,2.1,0,0,32.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-15.6,63,83400,0,0,200,0,0,0,0,0,0,0,190,1.5,0,0,32.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.8,-16.1,74,83400,0,0,193,0,0,0,0,0,0,0,320,1.0,0,0,32.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-16.7,63,83400,0,0,196,0,0,0,0,0,0,0,180,2.1,0,0,32.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.9,-16.7,77,83400,0,0,189,0,0,0,0,0,0,0,190,2.1,0,0,96.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-15.0,64,83300,99,1279,206,41,329,16,4400,19200,2800,330,200,1.5,2,1,80.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-13.3,51,83300,335,1408,227,155,390,62,15900,31800,8300,1120,0,0.0,3,3,80.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-11.1,49,83300,536,1408,236,370,721,95,38400,67500,12600,1840,330,2.6,2,2,64.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-9.4,45,83200,683,1408,245,490,838,83,51500,81900,11600,1770,350,2.1,3,1,64.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.7,50,83100,768,1408,257,536,779,111,57100,78100,14300,2520,360,2.6,2,2,64.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-7.2,44,83100,783,1408,263,509,688,127,53900,68800,15500,2870,340,4.1,3,3,64.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-8.3,36,83000,727,1408,265,515,822,89,54000,80900,12100,1930,120,2.1,2,2,64.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.6,46,83000,606,1408,271,403,814,52,42500,78000,8800,1280,340,3.1,4,3,48.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-6.7,40,83100,426,1408,282,201,270,119,21300,24500,13800,2390,60,2.6,9,7,48.0,7010,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-6.7,43,83100,202,1408,296,44,0,44,4900,0,4900,1520,80,3.1,10,10,64.0,3962,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.1,51,83200,13,481,282,2,1,2,0,0,0,0,70,2.6,10,9,48.0,3962,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-5.0,76,83400,0,0,267,0,0,0,0,0,0,0,350,3.6,10,9,32.0,3962,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.1,79,83400,0,0,250,0,0,0,0,0,0,0,10,2.6,7,7,24.0,3962,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.7,82,83500,0,0,237,0,0,0,0,0,0,0,300,1.5,5,3,24.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-9.4,62,83600,0,0,242,0,0,0,0,0,0,0,10,1.5,6,6,24.0,3962,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-10.6,65,83600,0,0,229,0,0,0,0,0,0,0,60,2.6,3,3,32.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-11.1,68,83700,0,0,216,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-10.0,82,83600,0,0,213,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-10.0,78,83500,0,0,219,0,0,0,0,0,0,0,70,2.6,1,1,32.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-11.1,68,83500,0,0,220,0,0,0,0,0,0,0,150,4.6,2,1,32.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-11.1,71,83500,0,0,223,0,0,0,0,0,0,0,160,2.6,4,3,32.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-11.1,78,83500,0,0,218,0,0,0,0,0,0,0,190,2.1,5,2,32.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-11.7,78,83500,0,0,217,0,0,0,0,0,0,0,130,2.1,3,3,32.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-11.1,75,83400,0,0,219,0,0,0,0,0,0,0,150,3.1,2,2,80.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-10.0,68,83400,103,1302,230,44,285,21,4600,14800,3400,380,200,3.1,3,3,80.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-8.9,49,83400,340,1407,243,191,602,45,19600,50700,7300,880,180,2.6,1,1,96.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-9.4,40,83300,541,1407,251,339,732,58,36000,69500,9200,1250,190,3.1,1,1,96.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-9.4,33,83300,689,1407,256,520,943,58,54900,91800,9700,1430,200,3.6,0,0,112.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-11.7,22,83200,773,1407,264,597,972,63,62900,95600,10200,1590,170,2.1,0,0,112.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-13.3,18,83100,789,1407,266,612,977,64,64400,96300,10300,1620,120,2.1,0,0,112.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-12.2,21,83000,733,1407,263,561,960,61,59200,94000,10000,1510,310,8.8,0,0,112.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-12.2,21,83000,612,1407,263,451,916,53,47700,87900,9300,1290,300,11.3,0,0,112.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-11.7,23,83100,432,1407,262,292,818,41,31000,74000,8200,990,300,6.7,0,0,112.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-12.2,23,83100,207,1407,257,112,580,27,11900,43300,5500,560,290,7.7,0,0,112.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-12.2,28,83100,15,504,249,4,76,2,0,0,0,0,290,6.7,0,0,80.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-12.2,29,83200,0,0,247,0,0,0,0,0,0,0,260,4.1,0,0,48.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-12.2,33,83200,0,0,239,0,0,0,0,0,0,0,250,1.0,0,0,48.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-11.7,40,83200,0,0,234,0,0,0,0,0,0,0,180,1.5,0,0,48.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-13.9,30,83200,0,0,236,0,0,0,0,0,0,0,200,4.1,0,0,48.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-14.4,30,83200,0,0,233,0,0,0,0,0,0,0,190,4.6,0,0,48.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-15.0,31,83200,0,0,229,0,0,0,0,0,0,0,190,3.6,0,0,48.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-15.0,34,83200,0,0,225,0,0,0,0,0,0,0,160,3.6,0,0,48.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-14.4,41,83200,0,0,221,0,0,0,0,0,0,0,180,3.1,0,0,48.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-15.6,35,83200,0,0,221,0,0,0,0,0,0,0,190,3.1,0,0,48.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-15.6,37,83200,0,0,219,0,0,0,0,0,0,0,180,4.1,0,0,48.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-16.1,34,83200,0,0,225,0,0,0,0,0,0,0,160,3.1,1,1,48.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-15.0,36,83200,0,0,231,0,0,0,0,0,0,0,190,5.2,4,2,48.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-15.0,36,83200,0,0,235,0,0,0,0,0,0,0,150,3.1,6,4,96.0,6401,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-15.6,28,83200,108,1325,246,42,49,38,4500,2500,4300,790,180,4.1,7,6,96.0,6401,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-13.3,32,83300,345,1407,253,177,177,133,18800,14900,15100,2910,200,3.1,8,6,128.0,6401,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-14.4,23,83200,546,1407,265,73,52,53,8500,5200,6500,1230,340,2.1,7,7,128.0,7315,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-11.1,30,83300,695,1407,267,374,393,179,39200,39300,19700,3790,180,2.1,8,6,128.0,7315,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-12.2,19,83200,779,1407,284,544,698,157,56600,69000,18200,3420,80,2.1,4,4,128.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-13.3,16,83100,795,1407,282,383,359,179,40900,36600,20100,4020,60,1.5,4,3,112.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-11.1,21,83100,739,1407,280,518,700,150,53800,68800,17500,3160,50,3.1,7,2,112.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-12.2,19,83100,618,1407,279,382,561,135,40600,55000,16400,2690,80,3.1,8,3,112.0,77777,9,999999999,30,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-9.4,26,83100,438,1407,277,244,506,86,25000,44800,11000,1580,140,3.1,9,2,112.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-8.3,33,83100,213,1407,275,74,143,52,7800,9100,6400,970,100,3.6,10,4,112.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-7.8,42,83100,17,528,272,4,3,4,0,0,0,0,120,4.1,10,7,80.0,7315,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.2,46,83100,0,0,261,0,0,0,0,0,0,0,160,4.6,8,3,40.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.8,48,83100,0,0,250,0,0,0,0,0,0,0,130,2.6,6,1,40.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.8,49,83100,0,0,256,0,0,0,0,0,0,0,210,2.1,9,4,40.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-7.8,57,83100,0,0,245,0,0,0,0,0,0,0,160,3.1,6,2,40.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-6.7,68,83000,0,0,245,0,0,0,0,0,0,0,300,2.1,8,3,40.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-7.2,69,83000,0,0,244,0,0,0,0,0,0,0,220,1.0,9,4,40.0,77777,9,999999999,40,0.0540,0,88,0.220,0.0,1.0 +1994,2,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.7,75,83000,0,0,247,0,0,0,0,0,0,0,20,2.1,7,6,32.0,7315,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.2,83,83000,0,0,234,0,0,0,0,0,0,0,350,3.6,8,3,32.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.8,86,83000,0,0,228,0,0,0,0,0,0,0,340,3.6,6,2,32.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-6.7,95,83000,0,0,256,0,0,0,0,0,0,0,340,4.1,10,10,4.0,61,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-6.7,95,82900,0,0,256,0,0,0,0,0,0,0,340,3.1,10,10,0.8,30,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-7.2,96,83000,0,0,253,0,0,0,0,0,0,0,10,4.6,10,10,0.4,30,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-7.2,96,83000,0,0,253,0,0,0,0,0,0,0,360,3.1,10,10,0.6,61,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-7.2,96,83000,112,1348,253,11,0,11,1300,0,1300,430,30,1.0,10,10,0.8,61,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.2,91,82900,350,1406,255,55,0,55,6400,0,6400,2190,50,2.1,10,10,1.2,244,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.8,86,82900,552,1406,255,80,0,80,9500,0,9500,3500,50,3.1,10,10,1.2,183,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-8.3,87,82800,700,1406,252,107,0,107,12800,0,12800,4900,90,2.6,10,10,2.4,152,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.2,83,82700,785,1406,259,121,0,121,14500,0,14500,5700,350,3.1,10,10,0.8,183,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.2,75,82500,801,1406,247,507,174,408,55500,18000,45200,11090,60,1.5,10,7,3.2,183,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.7,72,82500,745,1406,249,356,332,180,38800,34800,20300,4030,360,3.6,10,6,6.4,7620,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.1,76,82400,624,1406,249,99,67,70,11600,6800,8500,1680,360,2.6,10,6,6.4,7620,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.7,75,82500,443,1406,247,252,140,208,27500,13200,23300,4680,360,4.1,10,6,6.4,7620,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.7,79,82500,218,1406,257,57,45,50,6200,3400,5700,1250,100,2.1,10,9,6.4,3658,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.1,83,82400,18,551,257,5,0,5,0,0,0,0,360,2.6,10,9,4.8,7620,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.7,86,82400,0,0,260,0,0,0,0,0,0,0,90,2.6,10,10,4.8,3658,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.2,83,82400,0,0,259,0,0,0,0,0,0,0,330,2.6,10,10,4.8,3658,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.1,86,82300,0,0,263,0,0,0,0,0,0,0,350,1.5,10,10,6.4,3658,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.1,83,82300,0,0,265,0,0,0,0,0,0,0,330,2.1,10,10,9.6,3658,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-5.0,43,82200,0,0,308,0,0,0,0,0,0,0,200,7.2,10,10,40.0,3658,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-4.4,51,82200,0,0,301,0,0,0,0,0,0,0,310,1.5,10,10,40.0,3658,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-4.4,66,82100,0,0,285,0,0,0,0,0,0,0,360,2.6,10,10,32.0,3962,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.0,66,82100,0,0,282,0,0,0,0,0,0,0,300,1.5,10,10,32.0,4267,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.1,83,82000,0,0,265,0,0,0,0,0,0,0,0,0.0,10,10,32.0,4572,9,999999999,69,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-4.4,76,82000,0,0,278,0,0,0,0,0,0,0,160,1.0,10,10,32.0,4572,9,999999999,69,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.9,69,81900,0,0,285,0,0,0,0,0,0,0,170,1.5,10,10,32.0,4572,9,999999999,69,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-10.6,82,82100,0,0,244,0,0,0,0,0,0,0,350,5.2,10,10,32.0,4267,9,999999999,69,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.2,-14.4,82,82200,0,0,226,0,0,0,0,0,0,0,20,6.7,10,10,12.8,183,9,999999999,69,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.8,-14.4,86,82300,117,1371,224,16,0,16,1900,0,1900,600,50,4.1,10,10,4.8,244,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.8,-16.1,74,82500,356,1406,223,61,0,61,7100,0,7100,2390,50,4.6,10,10,3.2,396,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.8,-16.7,70,82600,558,1406,222,122,0,122,14000,0,14000,4930,60,4.1,10,10,3.2,518,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.8,-17.2,67,82600,706,1406,222,158,0,158,18300,0,18300,6730,70,3.6,10,10,8.0,579,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-15.6,63,82600,791,1406,224,229,124,159,25700,13000,18300,4160,40,4.1,10,9,12.8,549,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-15.6,63,82500,807,1406,220,293,128,219,32300,13400,24500,5780,70,2.6,10,8,9.6,579,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-15.6,70,82500,751,1406,227,170,0,170,19800,0,19800,7350,60,4.1,10,10,8.0,640,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.1,-16.7,60,82500,629,1406,217,265,199,176,29000,20100,20000,4240,50,4.1,8,8,9.6,2286,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-16.7,63,82700,449,1406,212,108,158,57,12100,14700,7400,1010,50,3.6,7,7,9.6,2286,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.8,-16.7,70,82800,223,1406,211,88,48,80,9600,3700,9000,1780,70,5.2,10,8,9.6,3962,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-14.4,-18.3,70,83000,20,574,202,6,11,6,0,0,0,0,60,4.1,10,7,9.6,3962,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.0,-18.3,73,83100,0,0,213,0,0,0,0,0,0,0,80,3.1,10,10,12.8,2896,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-14.4,-18.3,70,83200,0,0,215,0,0,0,0,0,0,0,120,2.1,10,10,11.2,1981,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-14.4,-18.3,70,83200,0,0,215,0,0,0,0,0,0,0,40,1.0,10,10,4.4,914,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.0,-18.3,73,83300,0,0,207,0,0,0,0,0,0,0,70,2.1,9,9,9.6,1676,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.6,-18.9,73,83400,0,0,186,0,0,0,0,0,0,0,160,2.1,1,1,24.0,77777,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.6,-18.3,78,83300,0,0,183,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.0,-18.3,73,83300,0,0,185,0,0,0,0,0,0,0,190,2.6,0,0,24.0,77777,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.6,-18.3,78,83300,0,0,183,0,0,0,0,0,0,0,170,1.5,0,0,24.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.6,-17.8,81,83300,0,0,183,0,0,0,0,0,0,0,140,2.1,0,0,24.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.0,-17.8,77,83300,0,0,185,0,0,0,0,0,0,0,30,1.0,0,0,24.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.6,-18.3,78,83300,0,0,183,0,0,0,0,0,0,0,190,1.0,0,0,24.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.6,-17.2,86,83300,0,0,184,0,0,0,0,0,0,0,110,2.1,0,0,24.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.3,-15.6,81,83300,0,0,192,0,0,0,0,0,0,0,160,1.5,0,0,64.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.2,-15.0,77,83300,122,1393,199,42,186,25,4400,9100,3600,440,260,1.5,1,1,96.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-11.7,64,83300,361,1405,215,212,611,55,22200,51700,8800,1040,0,0.0,0,0,96.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-9.4,52,83300,563,1405,234,385,772,75,39900,73100,10400,1490,60,1.5,0,0,80.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.8,62,83300,712,1405,234,520,848,89,54400,83200,12100,1900,30,2.6,0,0,48.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-7.8,65,83200,797,1405,232,598,882,97,63000,87600,13100,2200,340,4.1,0,0,32.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-6.7,57,83100,813,1405,242,612,887,99,64600,88200,13300,2270,350,3.6,0,0,32.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-6.1,49,83000,758,1405,253,561,866,94,59000,85600,12700,2060,20,2.1,0,0,32.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.1,51,83000,635,1405,256,424,757,81,44200,73200,11000,1670,350,3.6,1,1,11.2,77777,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-5.0,50,83000,455,1405,258,287,681,66,30100,61900,10000,1280,360,1.5,1,0,11.2,77777,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.1,63,83000,229,1405,249,105,341,49,11000,23200,7200,880,340,1.5,2,2,48.0,77777,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-5.6,75,82900,23,621,250,7,7,7,0,0,0,0,140,2.6,5,5,40.0,77777,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-5.6,72,82900,0,0,245,0,0,0,0,0,0,0,170,3.1,4,2,40.0,77777,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.6,62,82900,0,0,254,0,0,0,0,0,0,0,120,3.1,8,3,40.0,77777,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.1,57,83000,0,0,265,0,0,0,0,0,0,0,110,3.6,7,7,40.0,4572,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-7.8,36,83000,0,0,285,0,0,0,0,0,0,0,290,4.6,8,8,40.0,4572,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-7.8,39,83000,0,0,276,0,0,0,0,0,0,0,270,2.1,7,7,40.0,4572,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-8.9,29,83000,0,0,283,0,0,0,0,0,0,0,280,7.7,6,6,40.0,4267,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-9.4,31,83100,0,0,269,0,0,0,0,0,0,0,260,5.2,5,3,40.0,77777,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-8.9,35,83100,0,0,268,0,0,0,0,0,0,0,290,5.2,4,4,40.0,77777,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-8.9,35,83100,0,0,265,0,0,0,0,0,0,0,280,8.2,5,3,40.0,77777,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-8.9,35,83200,0,0,263,0,0,0,0,0,0,0,270,8.8,2,2,40.0,77777,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-8.3,42,83200,0,0,254,0,0,0,0,0,0,0,300,5.7,1,1,40.0,77777,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-9.4,38,83200,0,0,256,0,0,0,0,0,0,0,360,5.7,6,2,40.0,77777,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-9.4,43,83300,0,35,256,0,0,0,0,0,0,0,250,2.1,8,5,96.0,7620,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-8.3,54,83500,127,1405,251,42,79,35,4400,3500,4100,650,180,1.5,7,5,96.0,7620,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.8,48,83500,367,1405,260,183,286,108,19200,24400,12800,2160,140,2.1,6,5,96.0,7620,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-7.8,36,83400,569,1405,273,266,282,151,28400,28000,17000,3150,140,4.1,5,4,96.0,77777,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-7.8,32,83400,718,1405,292,382,190,285,41000,19400,31100,7170,110,5.7,8,8,96.0,3048,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-7.2,31,83300,803,1405,293,359,377,143,39300,38600,17200,3180,150,7.2,7,7,96.0,3048,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-6.1,37,83100,819,1405,294,320,199,204,34900,21100,22600,4840,160,7.7,8,8,96.0,2743,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-6.1,36,83100,764,1405,288,436,462,185,46300,46800,20700,4080,160,7.2,7,6,96.0,2896,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-5.6,36,83000,641,1405,299,182,178,101,20400,18200,12000,2000,160,6.2,9,8,80.0,2743,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-5.0,41,83000,461,1405,302,126,11,122,14100,700,13900,4470,160,5.7,9,9,80.0,2591,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-3.3,57,83000,235,1405,292,56,25,51,6100,1900,5700,1290,320,8.8,9,9,80.0,2591,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-3.9,67,83000,25,644,266,7,20,6,0,0,0,0,320,4.6,7,6,80.0,7620,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.9,69,83100,0,0,277,0,0,0,0,0,0,0,290,5.2,9,9,48.0,3353,9,999999999,50,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-4.4,66,83100,0,0,277,0,0,0,0,0,0,0,180,1.5,9,9,19.2,3353,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-3.9,76,83000,0,0,253,0,0,0,0,0,0,0,340,1.5,3,3,19.2,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-4.4,73,82900,0,0,250,0,0,0,0,0,0,0,350,2.1,5,2,24.0,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-5.0,76,82800,0,0,248,0,0,0,0,0,0,0,360,2.1,3,3,24.0,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.6,68,82800,0,0,247,0,0,0,0,0,0,0,320,2.6,2,2,24.0,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-5.6,79,82700,0,0,234,0,0,0,0,0,0,0,310,2.1,0,0,24.0,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.0,91,82600,0,0,230,0,0,0,0,0,0,0,170,1.5,0,0,24.0,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.6,90,82500,0,0,228,0,0,0,0,0,0,0,0,0.0,1,0,24.0,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.6,90,82400,0,0,232,0,0,0,0,0,0,0,360,1.5,3,1,24.0,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.1,83,82500,0,0,229,0,0,0,0,0,0,0,20,2.6,1,0,24.0,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.1,91,82400,0,0,226,0,0,0,0,0,0,0,0,0.0,1,0,19.2,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-6.1,96,82400,0,59,224,0,6,0,0,0,0,0,0,0.0,0,0,19.2,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.6,86,82400,132,1404,230,61,433,20,6200,26300,3700,390,190,2.1,0,0,64.0,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-4.4,76,82300,372,1404,241,239,762,37,25400,66700,7600,880,170,2.6,0,0,80.0,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.9,59,82200,575,1404,255,413,887,50,43700,84400,9000,1230,60,2.1,0,0,72.0,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-3.3,51,82200,724,1404,266,546,944,59,57600,92400,9800,1480,70,2.6,0,0,72.0,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-3.3,42,82100,810,1404,282,567,873,63,59700,86200,9800,1640,20,5.2,1,1,48.0,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-2.2,50,82100,825,1404,279,611,930,64,64300,92000,10100,1670,10,5.7,1,1,40.0,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-2.8,55,82100,770,1404,280,512,607,180,54600,61600,20700,3980,10,6.2,5,5,32.0,77777,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-4.4,61,82300,647,1404,271,275,193,186,30100,19600,21000,4520,350,6.7,7,7,24.0,2743,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.1,87,82400,466,1404,288,67,0,67,7900,0,7900,2840,10,7.2,10,10,1.6,183,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-2.8,95,82600,240,1404,275,30,0,30,3500,0,3500,1180,360,7.2,10,10,0.4,61,9,999999999,60,0.0560,0,88,0.220,1.0,1.0 +1994,2,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-4.4,96,82900,27,667,266,2,0,2,300,0,300,80,350,8.2,10,10,0.8,120,9,999999999,60,0.0560,0,88,0.220,1.0,1.0 +1994,2,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.6,90,83000,0,0,263,0,0,0,0,0,0,0,360,10.3,10,10,1.2,244,9,999999999,60,0.0560,0,88,0.220,1.0,1.0 +1994,2,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.1,91,83100,0,0,260,0,0,0,0,0,0,0,20,11.8,10,10,0.6,183,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-6.7,91,83300,0,0,257,0,0,0,0,0,0,0,360,8.2,10,10,1.2,244,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-6.7,91,83400,0,0,257,0,0,0,0,0,0,0,360,7.2,10,10,1.6,244,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.2,87,83500,0,0,257,0,0,0,0,0,0,0,350,6.7,10,10,2.4,274,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.8,86,83600,0,0,255,0,0,0,0,0,0,0,20,6.7,10,10,2.4,274,9,999999999,60,0.0560,0,88,0.220,0.0,1.0 +1994,2,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.8,86,83700,0,0,255,0,0,0,0,0,0,0,20,3.6,10,10,9.6,1036,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-10.0,68,83800,0,0,254,0,0,0,0,0,0,0,320,3.1,10,10,12.8,1372,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-10.6,71,83800,0,0,238,0,0,0,0,0,0,0,290,1.5,9,8,32.0,2591,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-10.0,86,83900,0,0,237,0,0,0,0,0,0,0,160,2.1,10,9,32.0,3962,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-11.1,91,84000,0,0,226,0,0,0,0,0,0,0,160,2.6,10,8,32.0,6096,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-11.1,91,84000,0,0,222,0,0,0,0,0,0,0,170,1.5,7,7,32.0,6096,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.1,-12.8,86,84100,0,82,209,0,4,0,0,0,0,0,190,2.1,3,3,64.0,77777,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-11.1,91,84200,137,1404,212,58,238,34,5900,12100,4700,610,170,2.1,2,2,96.0,77777,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-8.9,86,84300,378,1404,220,192,588,33,20400,51700,6400,850,180,1.5,1,1,96.0,77777,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-10.0,59,84300,581,1404,230,389,821,49,41200,78300,8600,1220,180,3.1,1,1,96.0,77777,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-12.2,42,84400,730,1404,230,555,959,55,58600,94000,9500,1440,180,3.6,0,0,96.0,77777,9,999999999,60,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-13.9,34,84300,816,1404,230,633,985,60,66800,97400,9900,1610,190,5.2,0,0,96.0,77777,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-14.4,33,84300,831,1404,230,648,989,61,68200,97900,10000,1640,150,5.2,0,0,112.0,77777,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-15.6,27,84300,776,1404,232,598,975,58,63100,96000,9800,1530,180,3.6,0,0,112.0,77777,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-14.4,27,84300,653,1404,237,487,937,51,51600,90700,9200,1310,180,4.6,0,0,112.0,77777,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-12.8,33,84300,472,1404,237,328,854,40,34800,78700,8200,1020,170,3.6,0,0,112.0,77777,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-12.2,35,84300,246,1404,237,142,658,27,15100,51700,6000,640,190,3.1,0,0,96.0,77777,9,999999999,50,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-12.2,44,84400,30,690,228,11,146,4,1200,8100,800,140,220,3.1,0,0,96.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-11.7,48,84400,0,0,227,0,0,0,0,0,0,0,200,3.1,0,0,48.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-11.7,59,84400,0,0,219,0,0,0,0,0,0,0,200,3.6,0,0,48.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-13.3,56,84500,0,0,214,0,0,0,0,0,0,0,200,4.1,0,0,48.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-13.9,67,84600,0,0,205,0,0,0,0,0,0,0,150,2.1,0,0,48.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-15.0,58,84600,0,0,206,0,0,0,0,0,0,0,180,2.6,0,0,48.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-15.0,58,84600,0,0,206,0,0,0,0,0,0,0,160,2.6,0,0,48.0,77777,9,999999999,40,0.0550,0,88,0.220,0.0,1.0 +1994,2,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-15.6,45,84600,0,0,212,0,0,0,0,0,0,0,170,4.6,0,0,48.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-16.1,45,84500,0,0,210,0,0,0,0,0,0,0,190,3.1,0,0,48.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-16.7,42,84500,0,0,210,0,0,0,0,0,0,0,180,3.1,0,0,48.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-16.1,43,84500,0,0,212,0,0,0,0,0,0,0,190,4.1,0,0,48.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-16.1,45,84600,0,0,210,0,0,0,0,0,0,0,190,4.1,0,0,48.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-16.1,45,84600,0,0,210,0,0,0,0,0,0,0,190,4.6,0,0,48.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-16.7,41,84600,1,105,211,0,25,0,0,0,0,0,190,6.7,0,0,112.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-15.6,35,84600,143,1403,221,74,564,16,7800,37800,4000,400,190,5.2,0,0,128.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-14.4,31,84600,384,1403,232,261,848,29,27900,75000,7300,800,150,5.7,0,0,128.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-13.9,26,84600,587,1403,243,439,955,40,46800,91300,8500,1100,180,6.2,0,0,128.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-11.7,25,84600,737,1403,258,575,1004,48,61100,98500,9100,1340,180,4.6,0,0,128.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-11.7,20,84400,822,1403,268,653,1025,52,69200,101500,9500,1480,180,4.6,0,0,128.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-11.7,18,84300,838,1403,280,623,933,66,65600,92400,10200,1720,190,4.6,1,1,128.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-12.2,16,84200,782,1403,284,577,946,49,61200,93300,9000,1390,190,4.6,1,1,128.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-15.0,11,84200,659,1403,291,459,739,112,48200,72200,14100,2320,0,0.0,6,2,128.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-11.1,16,84100,478,1403,299,263,456,107,27700,42000,13300,2020,180,3.1,8,3,128.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-10.0,20,84100,251,1403,293,89,170,58,9400,12000,7300,1070,160,1.5,7,4,96.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-9.4,26,84000,32,713,280,10,70,7,1100,3000,1000,140,150,1.5,8,3,96.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-11.1,25,84000,0,0,269,0,0,0,0,0,0,0,200,3.1,5,2,48.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-10.0,30,84000,0,0,269,0,0,0,0,0,0,0,190,4.1,5,3,48.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-11.1,30,83900,0,0,263,0,0,0,0,0,0,0,80,1.5,4,4,48.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-12.2,28,83900,0,0,260,0,0,0,0,0,0,0,180,2.6,8,3,48.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-11.7,30,83800,0,0,256,0,0,0,0,0,0,0,210,4.1,2,2,48.0,77777,9,999999999,30,0.0560,0,88,0.220,0.0,1.0 +1994,2,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-13.3,24,83700,0,0,261,0,0,0,0,0,0,0,200,4.1,3,3,48.0,77777,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-13.3,24,83600,0,0,275,0,0,0,0,0,0,0,190,4.6,8,8,48.0,6706,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-12.2,29,83600,0,0,267,0,0,0,0,0,0,0,210,4.1,7,7,48.0,6706,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-13.3,24,83600,0,0,267,0,0,0,0,0,0,0,190,4.1,8,6,48.0,7010,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-13.9,24,83600,0,0,264,0,0,0,0,0,0,0,220,2.6,7,6,48.0,7010,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-11.7,34,83600,0,0,258,0,0,0,0,0,0,0,190,2.6,8,6,48.0,6706,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-12.2,32,83500,0,0,258,0,0,0,0,0,0,0,200,4.6,7,6,48.0,6706,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-11.7,35,83600,1,129,264,0,0,0,0,0,0,0,200,2.6,8,8,128.0,6706,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-11.7,34,83600,148,1403,258,50,36,46,5400,2400,5200,1040,200,5.7,7,6,128.0,6706,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-10.6,34,83600,390,1403,277,122,36,112,13400,3200,12500,2880,170,3.6,9,9,128.0,6706,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-11.7,27,83600,593,1403,285,269,60,243,29400,5900,26800,6300,160,3.1,9,9,128.0,6706,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-12.8,19,83600,743,1403,297,386,127,318,42200,12900,35300,8890,160,3.6,9,9,128.0,6706,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-16.7,10,83600,828,1403,298,414,312,230,44900,33100,25200,5600,10,2.1,9,7,112.0,6706,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-7.2,30,83600,844,1403,300,433,190,318,46700,19800,34800,8620,110,5.2,9,8,96.0,6096,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-7.8,28,83500,788,1403,289,425,397,202,44900,40400,22100,4580,120,5.2,9,4,104.0,77777,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-7.8,26,83600,665,1403,291,429,499,192,44500,49400,20900,4050,120,4.6,8,3,104.0,77777,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-8.3,26,83700,484,1403,281,288,521,108,30400,48200,13700,2040,130,6.2,7,1,104.0,77777,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-6.7,33,83800,257,1403,283,112,246,67,11500,17700,8300,1230,130,4.1,8,3,80.0,77777,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-6.7,43,83900,35,760,265,9,15,8,1000,600,1000,160,130,3.1,7,2,80.0,77777,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-5.6,53,84000,0,0,256,0,0,0,0,0,0,0,160,2.6,6,1,48.0,77777,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-5.6,55,84000,0,0,258,0,0,0,0,0,0,0,110,3.1,2,2,48.0,77777,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.7,54,84000,0,0,249,0,0,0,0,0,0,0,140,3.1,1,1,48.0,77777,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-8.3,47,84000,0,0,243,0,0,0,0,0,0,0,200,4.1,0,0,48.0,77777,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-7.8,54,84000,0,0,239,0,0,0,0,0,0,0,160,3.1,0,0,48.0,77777,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-7.8,54,84100,0,0,239,0,0,0,0,0,0,0,80,2.1,0,0,48.0,77777,9,999999999,40,0.0560,0,88,0.220,0.0,1.0 +1994,2,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-8.3,57,84100,0,0,235,0,0,0,0,0,0,0,140,3.1,0,0,48.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-8.3,59,84200,0,0,233,0,0,0,0,0,0,0,70,1.5,0,0,32.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-7.2,79,84200,0,0,227,0,0,0,0,0,0,0,350,2.6,0,0,32.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.7,86,84200,0,0,225,0,0,0,0,0,0,0,330,1.5,0,0,32.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.2,87,84200,0,0,223,0,0,0,0,0,0,0,180,1.5,0,0,32.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-7.8,75,84200,0,0,226,0,0,0,0,0,0,0,180,3.1,0,0,48.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-8.3,75,84200,2,175,224,0,6,0,0,0,0,0,150,2.1,0,0,112.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-8.9,54,84200,154,1402,234,68,344,30,6900,20100,4700,530,170,3.1,0,0,112.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-10.6,36,84200,396,1402,245,247,686,54,25500,60200,8400,1040,210,4.6,0,0,112.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-11.7,25,84100,599,1402,258,425,826,72,44600,79400,10600,1510,200,5.2,0,0,112.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-10.0,23,84100,749,1402,272,562,892,85,59600,88400,12200,1920,160,2.6,0,0,112.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-8.3,24,84000,835,1402,281,641,922,92,66800,91000,12400,1910,170,3.1,0,0,112.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-7.8,23,84000,850,1402,286,655,926,93,68200,91500,12500,1960,180,5.7,0,0,96.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-11.1,16,83900,794,1402,286,604,908,89,62900,89300,12100,1800,260,1.5,0,0,96.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-10.0,16,83900,671,1402,292,490,860,78,51700,84100,11300,1690,150,1.0,0,0,96.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-5.0,25,83900,490,1402,298,327,759,62,34000,70200,9400,1250,160,3.1,0,0,96.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-6.7,26,83900,262,1402,284,141,532,42,14700,39900,7200,770,150,2.6,0,0,96.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-6.1,35,83900,37,783,272,11,81,7,1200,3600,1000,140,160,3.1,0,0,96.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.1,39,84000,0,0,265,0,0,0,0,0,0,0,140,4.1,0,0,40.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-7.2,40,83900,0,0,258,0,0,0,0,0,0,0,190,3.6,0,0,40.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.1,51,84000,0,0,251,0,0,0,0,0,0,0,160,2.6,0,0,32.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.1,51,84000,0,0,262,0,0,0,0,0,0,0,130,3.6,3,3,40.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.1,53,83900,0,0,257,0,0,0,0,0,0,0,140,4.1,5,2,32.0,77777,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.8,44,83900,0,0,262,0,0,0,0,0,0,0,170,1.5,6,4,40.0,7620,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.1,57,83900,0,0,260,0,0,0,0,0,0,0,220,2.6,6,5,40.0,7620,9,999999999,40,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-8.9,38,83900,0,0,263,0,0,0,0,0,0,0,180,4.1,5,4,40.0,77777,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-12.2,23,83900,0,0,277,0,0,0,0,0,0,0,180,7.2,8,6,40.0,4572,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-12.8,22,83900,0,0,275,0,0,0,0,0,0,0,180,5.2,7,6,40.0,7620,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-12.2,24,83900,0,0,273,0,0,0,0,0,0,0,110,3.6,8,6,40.0,7620,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-13.9,19,83900,0,0,275,0,0,0,0,0,0,0,170,4.6,7,6,40.0,7620,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-12.8,23,83900,2,199,270,0,0,0,0,0,0,0,190,7.2,8,5,40.0,7620,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-14.4,18,83900,160,1401,277,47,31,43,5100,2100,4800,1010,190,8.2,10,6,96.0,7620,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-13.3,19,84000,402,1401,294,134,61,116,14600,5500,13000,3000,190,5.7,10,9,112.0,4877,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-11.7,18,84000,606,1401,308,179,4,177,20100,300,20000,6700,200,5.7,9,9,112.0,4877,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-11.1,18,84000,755,1401,299,339,292,182,37000,30700,20400,4110,220,7.7,8,6,112.0,6706,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-11.1,14,83900,841,1401,302,575,697,157,60300,69700,18300,3680,220,5.7,7,2,112.0,77777,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-12.2,11,83900,856,1401,316,487,423,228,51400,43400,24800,5530,210,4.6,9,4,112.0,77777,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-13.9,9,83800,801,1401,322,450,279,290,47600,29400,30700,7310,210,3.6,10,6,112.0,7620,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-15.6,7,83800,677,1401,322,414,555,145,44300,55400,17400,2980,340,1.5,10,5,112.0,77777,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-4.4,25,83800,495,1401,327,206,187,140,22500,17900,16100,3210,70,4.6,10,7,112.0,7620,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-3.9,33,83900,268,1401,307,116,154,86,12400,11700,10200,1850,110,4.6,10,6,96.0,4877,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-3.9,39,83900,40,806,301,8,3,8,900,200,900,210,110,3.6,10,7,80.0,4877,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-2.8,53,84000,0,0,285,0,0,0,0,0,0,0,130,3.1,6,6,40.0,7925,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.9,53,83900,0,0,277,0,0,0,0,0,0,0,140,3.1,7,5,32.0,7925,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.9,53,83900,0,0,279,0,0,0,0,0,0,0,160,2.1,9,6,32.0,4877,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.3,55,83900,0,0,283,0,0,0,0,0,0,0,180,2.1,10,7,32.0,4877,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-3.9,55,83800,0,0,285,0,0,0,0,0,0,0,200,2.6,10,8,32.0,7925,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-3.3,65,83800,0,0,269,0,0,0,0,0,0,0,90,1.5,10,5,32.0,77777,9,999999999,50,0.0570,0,88,0.220,0.0,1.0 +1994,2,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-6.7,41,83700,0,0,267,0,0,0,0,0,0,0,160,3.6,10,2,32.0,77777,9,999999999,50,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-5.0,58,83700,0,0,261,0,0,0,0,0,0,0,350,2.6,5,3,32.0,77777,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-3.9,76,83600,0,0,251,0,0,0,0,0,0,0,0,0.0,5,2,32.0,77777,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.9,69,83600,0,0,262,0,0,0,0,0,0,0,320,2.6,5,5,32.0,77777,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.3,73,83600,0,0,268,0,0,0,0,0,0,0,160,2.1,7,7,32.0,3962,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-5.6,53,83500,0,0,269,0,0,0,0,0,0,0,0,0.0,6,6,32.0,3962,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-3.9,67,83500,3,222,264,0,0,0,0,0,0,0,140,1.5,10,5,96.0,4572,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-4.4,55,83400,166,1401,272,45,50,39,4900,3000,4600,820,170,2.1,9,5,96.0,4877,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-8.9,24,83400,408,1401,309,198,60,180,21500,5500,19900,4090,180,5.2,10,9,112.0,7315,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-9.4,22,83300,612,1401,320,146,0,146,16700,0,16700,5910,190,4.1,10,10,112.0,3962,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-8.9,22,83200,762,1401,325,195,0,195,22500,0,22500,8200,190,5.7,10,10,112.0,3962,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-6.7,23,83100,847,1401,329,151,75,105,17400,8000,12600,2850,180,6.2,9,9,112.0,3962,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-6.7,20,82900,863,1401,325,465,57,430,50900,5900,47300,12370,170,4.1,9,7,112.0,6706,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-6.1,20,82700,807,1401,336,365,72,324,40100,7400,35800,9640,190,6.2,9,8,112.0,6706,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-4.4,22,82600,684,1401,335,319,284,180,34400,29300,20000,3950,170,7.2,7,7,112.0,6706,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-4.4,24,82500,501,1401,323,293,453,131,30500,42200,15300,2540,180,8.2,8,5,112.0,8534,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-3.9,26,82500,273,1401,321,116,178,81,12100,13200,9500,1590,180,6.7,6,5,112.0,7925,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-3.9,30,82500,43,829,307,11,26,10,1300,800,1200,160,180,5.2,3,3,112.0,77777,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-0.6,70,82500,0,0,273,0,0,0,0,0,0,0,340,1.5,2,2,48.0,77777,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-1.1,81,82400,0,0,265,0,0,0,0,0,0,0,100,1.0,3,3,32.0,77777,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.8,39,82300,0,0,289,0,0,0,0,0,0,0,190,5.2,1,1,32.0,77777,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-2.8,42,82200,0,0,292,0,0,0,0,0,0,0,150,5.7,3,3,48.0,77777,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-3.3,38,82100,0,0,298,0,0,0,0,0,0,0,140,4.1,6,4,48.0,7620,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-3.3,36,82100,0,0,301,0,0,0,0,0,0,0,170,6.7,6,4,48.0,7620,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-3.3,39,82000,0,0,293,0,0,0,0,0,0,0,160,8.2,3,3,48.0,77777,9,999999999,80,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-3.3,41,81900,0,0,296,0,0,0,0,0,0,0,150,4.6,5,5,48.0,77777,9,999999999,80,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-2.8,48,81800,0,0,300,0,0,0,0,0,0,0,70,3.1,8,8,48.0,4877,9,999999999,80,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-2.8,41,81700,0,0,304,0,0,0,0,0,0,0,150,8.8,10,7,48.0,4877,9,999999999,80,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.8,44,81700,0,0,305,0,0,0,0,0,0,0,130,6.7,9,8,48.0,4877,9,999999999,80,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-3.3,51,81700,0,0,282,0,0,0,0,0,0,0,0,0.0,7,5,48.0,7620,9,999999999,80,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-3.3,60,81700,4,268,269,1,32,0,0,0,0,0,170,3.6,3,3,96.0,77777,9,999999999,80,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.2,46,81700,172,1400,283,88,412,37,8900,25200,5800,640,200,3.6,1,1,96.0,77777,9,999999999,80,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-3.9,30,81700,414,1400,294,278,820,35,29600,73700,7700,910,200,6.7,0,0,96.0,77777,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-5.0,25,81700,618,1400,303,390,776,47,41300,74700,8200,1230,200,8.2,1,1,96.0,77777,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-4.4,27,81600,768,1400,319,444,466,188,47100,47300,21000,4180,190,7.2,6,6,96.0,3353,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-5.0,24,81500,854,1400,305,614,877,79,64200,86800,11100,1890,190,9.3,2,1,96.0,77777,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-6.7,22,81400,869,1400,316,454,434,184,49000,44700,21200,4430,200,10.3,6,6,96.0,6706,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-5.6,23,81500,813,1400,320,432,288,264,46100,30500,28400,6560,290,10.3,6,6,96.0,7315,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-7.2,20,81400,689,1400,315,447,666,118,46800,65500,14400,2480,190,2.1,5,5,96.0,77777,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-6.1,27,81500,507,1400,304,275,555,74,29000,51900,10100,1460,50,4.1,6,5,96.0,7620,9,999999999,69,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-5.0,35,81600,279,1400,305,102,190,64,10900,14300,8000,1190,340,6.7,8,8,96.0,3048,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-5.6,33,81700,46,852,293,15,60,12,1700,2300,1600,200,360,1.0,5,5,104.0,77777,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-5.0,40,81800,0,0,282,0,0,0,0,0,0,0,30,3.6,3,3,48.0,77777,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.3,55,81900,0,0,280,0,0,0,0,0,0,0,110,5.2,7,6,40.0,4572,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.7,66,82000,0,0,275,0,0,0,0,0,0,0,140,5.2,6,4,32.0,4572,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-1.7,69,82100,0,0,268,0,0,0,0,0,0,0,150,3.1,5,2,40.0,77777,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-2.2,66,82100,0,0,276,0,0,0,0,0,0,0,120,2.6,8,6,40.0,4572,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.8,65,82200,0,0,277,0,0,0,0,0,0,0,100,2.1,7,7,40.0,4267,9,999999999,60,0.0580,0,88,0.220,0.0,1.0 +1994,2,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-3.9,57,82200,0,0,278,0,0,0,0,0,0,0,90,4.1,7,7,40.0,2286,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.8,65,82300,0,0,274,0,0,0,0,0,0,0,60,3.1,8,6,40.0,1829,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.3,62,82300,0,0,271,0,0,0,0,0,0,0,100,6.2,7,5,40.0,2438,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-3.3,67,82400,0,0,263,0,0,0,0,0,0,0,0,0.0,4,3,40.0,77777,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-3.9,67,82400,0,0,249,0,0,0,0,0,0,0,150,1.5,0,0,40.0,77777,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-3.9,76,82500,0,0,253,0,0,0,0,0,0,0,130,2.6,3,3,40.0,77777,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-4.4,83,82600,5,292,245,0,2,0,0,0,0,0,130,2.6,2,2,40.0,77777,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.1,57,82600,178,1400,256,56,86,45,6100,5400,5400,950,190,2.6,4,3,96.0,77777,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-8.9,40,82600,421,1400,268,190,188,134,20600,17100,15400,3000,200,3.1,7,7,96.0,7010,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-8.9,34,82700,625,1400,269,330,368,165,35400,37400,18700,3520,230,2.1,8,4,96.0,77777,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-8.9,29,82700,775,1400,274,505,586,181,53900,59600,20800,4020,10,1.5,6,2,96.0,77777,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-9.4,27,82600,860,1400,278,583,656,179,60600,65400,20300,4210,10,2.6,4,3,96.0,77777,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-11.7,23,82600,875,1400,283,275,68,232,30300,6900,26000,7910,40,2.1,7,7,80.0,2134,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-8.9,34,82600,819,1400,296,168,0,168,19800,0,19800,7610,330,5.7,10,10,64.0,2134,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-7.2,40,82700,695,1400,298,136,0,136,15900,0,15900,5960,20,4.6,10,10,80.0,2134,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-10.6,27,82600,513,1400,277,270,424,115,28600,39800,13900,2200,360,3.6,6,6,96.0,3353,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-9.4,33,82700,284,1400,271,147,285,89,15300,21500,10900,1770,50,3.1,5,5,96.0,77777,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-3.3,65,82800,49,875,264,12,27,10,1300,900,1300,160,110,2.6,3,3,80.0,77777,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-4.4,66,82900,0,0,255,0,0,0,0,0,0,0,110,3.1,2,2,48.0,77777,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-3.3,76,83000,0,0,245,0,0,0,0,0,0,0,120,3.1,0,0,48.0,77777,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-3.9,79,83000,0,0,249,0,0,0,0,0,0,0,0,0.0,4,2,32.0,77777,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-3.9,79,83100,0,0,253,0,0,0,0,0,0,0,320,3.1,5,4,19.2,77777,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-2.8,91,83200,0,0,277,0,0,0,0,0,0,0,340,4.1,10,10,6.4,61,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.2,91,83200,0,0,280,0,0,0,0,0,0,0,350,4.1,10,10,8.0,91,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.8,87,83200,0,0,279,0,0,0,0,0,0,0,350,3.6,10,10,8.0,183,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-2.8,91,83300,0,0,277,0,0,0,0,0,0,0,20,3.1,10,10,6.4,91,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.8,87,83300,0,0,279,0,0,0,0,0,0,0,0,0.0,10,10,9.6,152,9,999999999,50,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-3.3,87,83300,0,0,256,0,0,0,0,0,0,0,230,2.1,6,6,9.6,396,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-4.4,83,83400,0,0,260,0,0,0,0,0,0,0,220,2.6,8,8,9.6,427,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.6,86,83400,0,0,230,0,0,0,0,0,0,0,0,0.0,0,0,9.6,77777,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.1,79,83500,6,315,236,1,54,0,0,0,0,0,200,2.1,1,1,11.2,77777,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.8,62,83600,184,1399,241,102,536,32,10200,36300,5400,560,190,4.1,2,2,64.0,77777,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-10.6,40,83600,427,1399,243,279,787,38,29600,71100,7800,960,170,3.1,1,1,80.0,77777,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-8.9,37,83600,631,1399,252,473,946,46,50200,91300,8900,1230,160,2.1,0,0,112.0,77777,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-12.2,26,83600,781,1399,253,609,993,54,64400,97900,9500,1480,140,2.6,0,0,112.0,77777,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-13.9,20,83600,867,1399,256,687,1014,58,72500,100700,9900,1640,130,2.1,0,0,112.0,77777,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-15.0,18,83500,882,1399,261,682,988,58,71900,98200,9800,1660,60,2.1,1,1,112.0,77777,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-12.8,21,83400,825,1399,270,607,810,129,64500,81600,16100,3060,50,4.1,7,2,112.0,77777,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-13.3,20,83400,701,1399,272,497,824,84,52400,80900,11700,1820,90,4.1,5,3,112.0,77777,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-12.2,23,83400,518,1399,280,212,287,105,22600,27100,12500,1990,70,5.2,7,7,112.0,3658,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-7.8,35,83500,289,1399,277,122,222,76,12900,17000,9400,1460,70,5.7,8,5,96.0,3658,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-6.7,45,83500,52,921,269,17,31,15,1900,1300,1800,310,70,6.2,7,5,96.0,6706,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-6.1,49,83500,0,0,270,0,0,0,0,0,0,0,100,8.8,8,6,48.0,3353,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.2,46,83500,0,0,267,0,0,0,0,0,0,0,140,4.6,7,6,40.0,2896,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-5.6,55,83500,0,0,267,0,0,0,0,0,0,0,200,4.1,8,6,32.0,2896,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.1,55,83600,0,0,255,0,0,0,0,0,0,0,170,2.6,2,2,32.0,77777,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.8,48,83600,0,0,245,0,0,0,0,0,0,0,160,4.1,0,0,32.0,77777,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.1,57,83500,0,0,245,0,0,0,0,0,0,0,180,3.6,0,0,32.0,77777,9,999999999,40,0.0590,0,88,0.220,0.0,1.0 +1994,2,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-6.1,60,83500,0,0,243,0,0,0,0,0,0,0,180,4.1,0,0,32.0,77777,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.1,66,83500,0,0,239,0,0,0,0,0,0,0,180,2.6,0,0,32.0,77777,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-5.6,72,83400,0,0,237,0,0,0,0,0,0,0,170,2.6,1,0,32.0,77777,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.1,76,83400,0,0,233,0,0,0,0,0,0,0,290,2.6,3,0,32.0,77777,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.7,82,83500,0,0,235,0,0,0,0,0,0,0,0,0.0,2,2,32.0,77777,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.7,86,83500,0,0,225,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.7,82,83500,8,361,232,1,37,1,0,0,0,0,300,1.5,1,1,32.0,77777,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-4.4,83,83500,190,1398,247,82,343,35,8400,22300,5300,630,310,3.1,3,3,16.0,77777,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-4.4,91,83500,434,1398,269,62,0,62,7300,0,7300,2600,320,2.6,10,10,4.0,122,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.9,87,83500,638,1398,274,97,0,97,11500,0,11500,4360,320,2.6,10,10,4.8,152,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-3.9,79,83400,788,1398,278,147,0,147,17400,0,17400,6720,360,3.6,10,10,8.0,305,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-4.4,69,83400,873,1398,282,197,0,197,23100,0,23100,8890,320,4.1,10,10,9.6,427,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-5.0,63,83300,888,1398,284,201,0,201,23600,0,23600,9100,320,3.6,10,10,11.2,549,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-4.4,66,83200,832,1398,285,187,0,187,21900,0,21900,8330,340,4.6,10,10,11.2,488,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-4.4,69,83200,707,1398,282,156,0,156,18100,0,18100,6690,340,5.2,10,10,9.6,488,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-4.4,69,83200,524,1398,282,110,0,110,12700,0,12700,4440,350,6.2,10,10,12.8,518,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-4.4,73,83200,295,1398,280,55,0,55,6300,0,6300,2060,340,6.2,10,10,6.4,457,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-2.8,95,83200,56,944,275,5,0,5,600,0,600,200,360,6.2,10,10,2.4,122,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.9,91,83200,0,0,271,0,0,0,0,0,0,0,320,7.2,10,10,3.2,122,9,999999999,50,0.0600,0,88,0.220,1.0,1.0 +1994,2,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-3.9,95,83200,0,0,269,0,0,0,0,0,0,0,340,7.7,10,10,2.0,183,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-2.8,95,83200,0,0,275,0,0,0,0,0,0,0,350,5.2,10,10,2.4,396,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-4.4,91,83300,0,0,269,0,0,0,0,0,0,0,10,5.2,10,10,1.6,183,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.6,90,83300,0,0,263,0,0,0,0,0,0,0,360,4.6,10,10,1.6,183,9,999999999,50,0.0600,0,88,0.220,1.0,1.0 +1994,2,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.1,91,83300,0,0,260,0,0,0,0,0,0,0,340,4.1,10,10,3.2,244,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.2,87,83300,0,0,245,0,0,0,0,0,0,0,350,3.6,10,8,6.4,1981,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-8.9,91,83200,0,0,229,0,0,0,0,0,0,0,330,2.6,10,6,6.4,1524,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-8.3,91,83200,0,0,243,0,0,0,0,0,0,0,330,2.1,10,9,8.0,1676,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-7.8,91,83200,0,0,252,0,0,0,0,0,0,0,320,2.1,10,10,4.8,274,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-7.8,91,83100,0,0,252,0,0,0,0,0,0,0,360,2.1,10,10,6.4,274,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-7.8,95,83100,0,0,250,0,0,0,0,0,0,0,360,2.1,10,10,4.8,1676,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-7.8,91,83100,9,384,252,0,0,0,0,0,0,0,360,2.1,10,10,1.6,274,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-7.8,91,83100,196,1398,252,23,0,23,2700,0,2700,900,360,2.6,10,10,1.6,274,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.2,91,83200,440,1398,255,76,0,76,8800,0,8800,3090,360,3.1,10,10,3.2,762,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.7,86,83200,644,1398,260,106,0,106,12500,0,12500,4720,360,2.6,10,10,4.8,274,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.7,79,83200,794,1398,264,139,0,139,16500,0,16500,6440,360,3.6,10,10,3.2,244,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.8,71,83100,880,1398,263,157,0,157,18800,0,18800,7440,360,3.1,10,10,11.2,366,9,999999999,50,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.8,71,83100,894,1398,263,192,0,192,22600,0,22600,8820,340,2.1,10,10,11.2,1829,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-7.8,68,83100,838,1398,265,177,0,177,20800,0,20800,8020,330,2.1,10,10,11.2,518,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-7.8,68,83100,713,1398,265,145,0,145,17000,0,17000,6350,350,2.6,10,10,11.2,549,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-8.3,68,83100,530,1398,263,98,0,98,11400,0,11400,4080,300,2.1,10,10,12.8,732,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-10.0,56,83200,300,1398,263,45,0,45,5200,0,5200,1770,360,1.0,10,10,16.0,732,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-7.2,79,83200,59,967,262,9,0,9,1100,0,1100,350,40,2.1,10,10,11.2,762,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.7,82,83300,0,0,262,0,0,0,0,0,0,0,40,2.6,10,10,8.0,853,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.2,83,83300,0,0,259,0,0,0,0,0,0,0,120,1.5,10,10,11.2,853,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,83400,0,0,256,0,0,0,0,0,0,0,130,2.1,10,10,12.8,884,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.2,87,83400,0,0,257,0,0,0,0,0,0,0,130,1.5,10,10,16.0,975,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,83400,0,0,256,0,0,0,0,0,0,0,0,0.0,10,10,16.0,914,9,999999999,40,0.0600,0,88,0.220,0.0,1.0 +1994,2,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-8.3,87,83400,0,0,245,0,0,0,0,0,0,0,170,1.5,9,9,12.8,762,9,999999999,30,0.0600,0,88,0.220,0.0,1.0 +1994,2,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-8.9,91,83400,0,0,232,0,0,0,0,0,0,0,140,1.5,7,7,16.0,457,9,999999999,30,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-10.6,86,83300,0,0,209,0,0,0,0,0,0,0,200,3.6,0,0,16.0,77777,9,999999999,30,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-10.6,86,83300,0,0,209,0,0,0,0,0,0,0,180,4.6,0,0,32.0,77777,9,999999999,30,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-12.8,78,83300,0,0,204,0,0,0,0,0,0,0,210,1.0,0,0,40.0,77777,9,999999999,30,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.1,-13.3,82,83400,0,0,200,0,0,0,0,0,0,0,150,2.6,0,0,40.0,77777,9,999999999,30,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.2,-13.9,86,83400,0,0,200,0,0,0,0,0,0,0,90,1.0,1,1,64.0,77777,9,999999999,30,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.7,-14.4,78,83400,11,407,198,1,11,1,0,0,0,0,190,1.5,0,0,96.0,77777,9,999999999,30,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-14.4,41,83400,203,1397,221,91,339,41,9200,22500,5900,720,290,5.2,1,0,96.0,77777,9,999999999,30,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-12.8,40,83400,447,1397,229,278,646,71,29000,58300,10300,1360,230,2.6,1,0,96.0,77777,9,999999999,30,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-13.3,35,83400,651,1397,233,462,795,91,47700,76800,11800,1810,230,4.1,0,0,96.0,77777,9,999999999,30,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-15.0,25,83400,801,1397,239,601,861,107,62800,85300,13700,2350,290,5.7,0,0,120.0,77777,9,999999999,30,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-14.4,25,83300,886,1397,241,680,891,115,71500,89000,14800,2750,310,6.7,0,0,112.0,77777,9,999999999,30,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-15.6,21,83200,901,1397,244,694,896,116,73000,89600,15000,2820,290,6.7,0,0,112.0,77777,9,999999999,30,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-14.4,22,83200,844,1397,249,640,876,111,67100,87200,14200,2540,240,6.2,0,0,112.0,77777,9,999999999,30,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-16.1,16,83100,719,1397,258,509,756,120,53600,74800,14900,2590,220,2.1,1,1,112.0,77777,9,999999999,30,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-15.0,18,83000,536,1397,272,315,499,123,33200,47400,15000,2380,260,3.1,6,5,112.0,6706,9,999999999,40,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-14.4,23,82900,306,1397,262,120,132,91,13000,10700,10600,1970,150,2.6,6,5,112.0,6706,9,999999999,40,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-14.4,23,82900,62,990,260,16,49,13,1800,1800,1700,210,290,4.6,5,4,112.0,77777,9,999999999,40,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-11.7,34,82900,0,0,250,0,0,0,0,0,0,0,320,4.6,5,2,48.0,77777,9,999999999,40,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-12.2,35,82900,0,0,254,0,0,0,0,0,0,0,350,3.6,8,6,48.0,4877,9,999999999,40,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-13.3,29,82900,0,0,260,0,0,0,0,0,0,0,130,3.1,7,7,48.0,4877,9,999999999,40,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-12.2,35,82800,0,0,254,0,0,0,0,0,0,0,200,1.5,8,6,48.0,4877,9,999999999,40,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-11.7,35,82800,0,0,256,0,0,0,0,0,0,0,190,3.1,6,6,48.0,4877,9,999999999,40,0.0610,0,88,0.220,0.0,1.0 +1994,2,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-11.7,28,82700,0,0,269,0,0,0,0,0,0,0,250,5.7,6,6,48.0,4877,9,999999999,40,0.0610,0,88,0.220,0.0,1.0 +1994,2,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-10.6,36,82600,0,0,259,0,0,0,0,0,0,0,330,3.6,6,5,48.0,6096,9,999999999,40,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-10.6,37,82600,0,0,259,0,0,0,0,0,0,0,240,3.1,6,6,48.0,4267,9,999999999,40,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-10.6,31,82600,0,0,278,0,0,0,0,0,0,0,220,3.1,8,8,48.0,4572,9,999999999,40,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-8.9,40,82500,0,0,268,0,0,0,0,0,0,0,270,2.6,7,7,48.0,4572,9,999999999,40,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-7.8,38,82500,0,0,289,0,0,0,0,0,0,0,290,2.6,10,9,48.0,4267,9,999999999,40,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.8,44,82500,0,0,270,0,0,0,0,0,0,0,80,3.6,9,7,48.0,4267,9,999999999,40,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-7.8,39,82500,13,454,273,3,8,2,0,0,0,0,240,3.6,8,6,96.0,6096,9,999999999,40,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-7.8,39,82500,209,1396,264,119,561,34,11900,40000,5900,610,260,2.1,2,2,96.0,77777,9,999999999,40,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-7.8,31,82500,453,1396,279,272,598,78,28300,54000,10700,1480,300,4.1,4,3,96.0,77777,9,999999999,40,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-8.3,25,82400,658,1396,287,389,521,144,41600,51800,17100,2940,350,2.6,7,2,112.0,77777,9,999999999,40,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-7.2,26,82400,808,1396,296,431,565,104,46400,57200,13100,2490,350,6.2,8,4,120.0,77777,9,999999999,40,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-6.7,25,82400,893,1396,296,648,798,138,69100,81000,17100,3520,310,1.5,7,2,120.0,77777,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-6.7,25,82200,907,1396,299,681,788,169,71600,79400,19900,4270,310,9.3,8,3,112.0,77777,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-6.1,26,82200,850,1396,304,577,717,140,61100,72300,16900,3380,270,12.4,7,4,112.0,77777,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-6.7,25,82200,725,1396,301,403,432,178,42600,43500,19900,3830,260,15.5,8,4,112.0,77777,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-6.1,26,82200,541,1396,299,343,674,81,36100,63900,11200,1620,290,8.2,7,2,112.0,77777,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-6.7,24,82200,311,1396,306,140,250,84,14800,19800,10300,1630,290,12.9,8,5,112.0,6706,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-6.7,26,82300,66,1012,294,23,137,14,2500,6700,2000,260,290,8.2,7,2,96.0,77777,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.1,29,82400,0,0,295,0,0,0,0,0,0,0,280,7.7,6,3,48.0,77777,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.2,75,82700,0,0,244,0,0,0,0,0,0,0,60,8.8,6,6,48.0,7620,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-11.7,71,83200,0,0,224,0,0,0,0,0,0,0,30,7.2,5,5,16.0,77777,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-13.3,70,83400,0,0,237,0,0,0,0,0,0,0,360,5.2,10,10,8.0,732,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-13.9,70,83500,0,0,234,0,0,0,0,0,0,0,360,3.1,10,10,8.0,884,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-13.9,67,83500,0,0,237,0,0,0,0,0,0,0,10,4.6,10,10,9.6,975,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-13.9,70,83600,0,0,210,0,0,0,0,0,0,0,360,3.1,2,2,11.2,77777,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-13.9,70,83500,0,0,212,0,0,0,0,0,0,0,110,2.6,3,3,16.0,77777,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-14.4,67,83500,0,0,207,0,0,0,0,0,0,0,110,3.6,1,1,24.0,77777,9,999999999,50,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-15.0,67,83500,0,0,204,0,0,0,0,0,0,0,160,3.1,1,1,32.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.1,-15.6,66,83600,0,0,202,0,0,0,0,0,0,0,120,4.6,1,1,32.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-11.1,-15.0,70,83700,0,0,203,0,0,0,0,0,0,0,90,4.1,1,1,40.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-15.0,67,83700,15,477,204,5,80,2,0,0,0,0,80,3.6,2,1,40.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-14.4,67,83900,216,1396,213,70,270,28,7300,18900,4400,530,90,4.1,8,4,80.0,7620,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-14.4,61,84000,460,1396,220,257,426,117,26800,38800,14000,2230,110,2.1,9,6,24.0,610,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-13.3,58,84000,664,1396,223,375,409,180,39100,40600,19800,3770,100,2.6,9,4,48.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-12.2,56,84000,814,1396,234,381,272,222,41300,28900,24400,5340,80,3.6,7,6,48.0,762,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-11.7,53,83900,899,1396,234,478,339,259,51800,36300,28300,6770,140,3.1,8,4,40.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-10.6,48,83900,913,1396,243,726,811,195,75600,81100,22400,4870,310,2.1,10,4,40.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-9.4,49,83800,856,1396,250,668,789,183,69300,78500,21000,4270,140,3.1,10,5,40.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-8.9,45,83700,731,1396,257,434,470,188,45700,47400,20900,4090,80,2.1,10,5,32.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-8.3,44,83700,547,1396,262,383,631,136,40200,60200,16500,2670,80,2.1,10,5,32.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-8.9,45,83600,316,1396,251,189,528,69,19200,41900,9600,1210,60,4.6,9,2,32.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-10.0,51,83700,70,1035,242,27,99,21,3000,4200,2700,370,80,5.2,8,3,32.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-11.1,53,83800,0,0,232,0,0,0,0,0,0,0,50,5.7,7,2,32.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-10.0,61,83800,0,0,234,0,0,0,0,0,0,0,330,3.6,8,3,32.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-10.6,61,83800,0,0,229,0,0,0,0,0,0,0,340,3.1,4,2,32.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-10.0,71,83800,0,0,223,0,0,0,0,0,0,0,360,2.6,1,1,32.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-10.6,71,83800,0,0,216,0,0,0,0,0,0,0,360,3.1,2,0,32.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-10.6,71,83800,0,0,220,0,0,0,0,0,0,0,60,1.5,3,1,32.0,77777,9,999999999,60,0.0620,0,88,0.220,0.0,1.0 +1994,2,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-10.0,75,83700,0,0,217,0,0,0,0,0,0,0,190,1.5,1,0,32.0,77777,9,999999999,60,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-10.0,71,83700,0,0,219,0,0,0,0,0,0,0,40,1.5,0,0,32.0,77777,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-10.0,75,83600,0,0,217,0,0,0,0,0,0,0,0,0.0,0,0,40.0,77777,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-9.4,79,83600,0,0,221,0,0,0,0,0,0,0,0,0.0,2,1,40.0,77777,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-9.4,82,83600,0,0,220,0,0,0,0,0,0,0,350,1.5,3,1,48.0,77777,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-9.4,82,83600,0,0,220,0,0,0,0,0,0,0,140,2.1,2,1,64.0,77777,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-8.9,83,83600,17,523,227,6,54,4,0,0,0,0,140,1.5,5,3,96.0,77777,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-8.3,65,83600,223,1395,241,95,173,67,9900,11400,8000,1300,80,1.5,6,4,96.0,7925,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.7,54,83700,467,1395,255,267,526,91,27500,47500,11500,1690,110,1.0,9,3,120.0,77777,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-4.4,45,83600,671,1395,276,465,711,123,48500,69400,15000,2540,0,0.0,7,2,112.0,77777,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-3.3,39,83600,821,1395,293,538,581,196,57400,59400,22300,4560,360,3.1,9,3,96.0,77777,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-2.2,32,83500,906,1395,310,664,773,162,70100,78000,19200,4120,10,2.1,9,2,96.0,77777,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-3.9,25,83300,920,1395,324,668,785,150,71000,79600,18300,3920,60,3.1,9,5,96.0,6706,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-3.9,25,83300,862,1395,324,499,560,152,52500,56300,17600,3690,50,3.6,9,5,96.0,6706,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-1.7,32,83200,737,1395,321,323,419,101,34400,41900,12200,2270,80,5.2,9,5,80.0,6706,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-1.1,31,83200,552,1395,325,324,435,151,33600,41500,17000,3000,80,5.7,9,4,80.0,77777,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-4.4,26,83200,322,1395,321,167,233,113,17300,18700,12900,2340,60,5.2,9,6,80.0,6706,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-0.6,55,83300,73,1058,294,20,72,15,2200,3100,2000,260,360,4.6,9,5,80.0,6706,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-1.1,72,83300,0,0,275,0,0,0,0,0,0,0,340,4.1,8,5,48.0,6706,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-2.2,71,83400,0,0,268,0,0,0,0,0,0,0,360,2.1,7,4,48.0,6706,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-2.8,73,83400,0,0,263,0,0,0,0,0,0,0,0,0.0,9,4,48.0,77777,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-2.8,73,83400,0,0,265,0,0,0,0,0,0,0,150,2.1,10,5,48.0,77777,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-2.8,73,83400,0,0,265,0,0,0,0,0,0,0,0,0.0,10,5,48.0,77777,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.8,79,83400,0,0,266,0,0,0,0,0,0,0,0,0.0,10,7,32.0,6096,9,999999999,69,0.0630,0,88,0.220,0.0,1.0 +1994,2,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-2.8,73,83300,0,0,288,0,0,0,0,0,0,0,0,0.0,10,10,32.0,6096,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-2.2,80,83300,0,0,279,0,0,0,0,0,0,0,160,2.6,10,9,32.0,6706,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.2,83,83200,0,0,277,0,0,0,0,0,0,0,160,2.1,10,9,32.0,6706,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.2,83,83200,0,0,271,0,0,0,0,0,0,0,210,2.1,10,8,40.0,6706,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.2,83,83200,0,0,266,0,0,0,0,0,0,0,190,2.1,10,7,48.0,7620,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.3,73,83200,0,0,286,0,0,0,0,0,0,0,160,2.6,10,10,48.0,4267,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-3.9,64,83100,19,546,282,3,3,2,0,0,0,0,170,2.1,9,9,96.0,4267,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-3.3,60,83200,229,1394,289,84,15,81,9000,500,8900,2350,180,3.1,9,9,112.0,4267,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-2.8,55,83200,474,1394,286,142,95,109,15600,9000,12500,2480,170,1.0,9,7,128.0,7315,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.2,48,83200,678,1394,303,178,92,133,19900,9500,15300,3280,140,2.6,9,8,120.0,4267,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-6.1,28,83100,828,1394,308,397,127,321,43500,13000,35800,9810,170,4.1,10,7,112.0,4267,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-6.1,24,83000,912,1394,314,603,583,221,64400,60200,24900,5680,130,2.6,9,6,112.0,7315,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-4.4,25,83000,926,1394,321,573,502,239,60900,51900,26300,6280,110,4.1,10,5,112.0,77777,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-7.8,18,82900,868,1394,319,595,615,212,63500,63300,23900,5180,100,1.5,10,5,112.0,77777,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-6.7,20,82800,743,1394,325,381,181,284,41000,18600,31100,7250,20,1.5,10,7,112.0,2896,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-5.0,26,82800,558,1394,324,208,129,156,22700,12700,17600,3660,320,5.7,10,8,112.0,2896,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-3.3,33,82900,327,1394,316,110,201,63,12000,16400,8100,1150,20,4.1,10,7,112.0,2743,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-2.8,37,82900,77,1081,324,23,11,22,2500,600,2500,540,50,3.1,10,9,112.0,2591,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-1.7,45,83000,0,0,326,0,0,0,0,0,0,0,10,3.1,10,10,48.0,2591,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-1.1,51,83000,0,0,298,0,0,0,0,0,0,0,360,2.6,8,6,48.0,7620,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.1,55,83100,0,0,297,0,0,0,0,0,0,0,360,3.1,10,7,32.0,2286,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-0.6,59,83100,0,0,315,0,0,0,0,0,0,0,30,4.6,10,10,32.0,1829,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,83200,0,0,311,0,0,0,0,0,0,0,60,3.1,10,10,32.0,1829,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-1.1,67,83300,0,0,296,0,0,0,0,0,0,0,340,2.6,10,9,32.0,975,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-0.6,75,83300,0,0,292,0,0,0,0,0,0,0,200,1.0,9,9,32.0,1341,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.0,76,83300,0,0,303,0,0,0,0,0,0,0,0,0.0,10,10,32.0,610,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.0,76,83300,0,0,303,0,0,0,0,0,0,0,10,2.1,10,10,32.0,884,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.0,85,83300,0,0,277,0,0,0,0,0,0,0,0,0.0,7,7,32.0,1676,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.0,92,83300,0,0,263,0,0,0,0,0,0,0,170,1.5,8,3,32.0,77777,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.0,92,83400,0,0,291,0,0,0,0,0,0,0,130,2.1,10,10,32.0,671,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.0,88,83400,22,592,286,3,1,3,0,0,0,0,190,2.1,10,9,12.8,2438,9,999999999,69,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,0.0,79,83500,236,1394,301,37,0,37,4300,0,4300,1400,210,2.6,10,10,12.8,1402,9,999999999,80,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,83500,480,1394,296,177,207,105,19100,19700,12300,2040,310,1.5,8,8,11.2,1280,9,999999999,80,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-0.6,51,83500,685,1394,305,286,217,179,30900,22500,19800,3930,350,2.6,7,7,16.0,1829,9,999999999,80,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.1,45,83500,834,1394,321,297,8,292,33500,800,33100,11350,30,4.1,9,9,32.0,1676,9,999999999,80,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,83500,919,1394,303,474,179,356,51300,18800,38900,10260,60,3.1,7,7,32.0,1372,9,999999999,80,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,83400,932,1394,308,455,175,338,49500,18400,37100,9850,60,5.7,8,8,32.0,1372,9,999999999,80,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,83400,874,1394,303,545,581,180,56800,58100,20200,4320,50,5.2,7,7,24.0,1372,9,999999999,80,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,83500,748,1394,308,160,0,160,18700,0,18700,7030,30,7.2,10,10,9.6,732,9,999999999,80,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-0.6,91,83700,564,1394,289,79,0,79,9400,0,9400,3500,350,7.7,10,10,0.6,61,9,999999999,80,0.0640,0,88,0.220,2.0,1.0 +1994,2,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.1,87,83800,332,1394,288,40,0,40,4800,0,4800,1650,360,5.7,10,10,1.6,61,9,999999999,80,0.0640,0,88,0.220,1.0,1.0 +1994,2,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-0.6,91,83900,81,1127,289,8,0,8,1000,0,1000,320,10,4.1,10,10,1.4,61,9,999999999,80,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.0,96,84000,0,0,289,0,0,0,0,0,0,0,320,3.1,10,10,4.0,61,9,999999999,80,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.0,96,84000,0,0,289,0,0,0,0,0,0,0,310,2.6,10,10,4.0,183,9,999999999,80,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.6,100,84000,0,0,290,0,0,0,0,0,0,0,280,2.6,10,10,4.8,274,9,999999999,80,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-0.5,96,84100,0,0,293,0,0,0,0,0,0,0,310,3.1,10,10,4.8,549,9,999999999,80,0.0640,0,88,0.220,0.0,1.0 +1994,2,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.7,96,84000,0,0,297,0,0,0,0,0,0,0,270,3.6,10,10,3.2,122,9,999999999,80,0.0640,0,88,0.220,1.0,1.0 +1994,2,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-2.9,96,84000,0,0,269,0,0,0,0,0,0,0,210,4.1,2,2,32.0,77777,9,999999999,80,0.0640,0,88,0.220,0.0,1.0 +1991,3,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-4.1,62,81500,0,0,285,0,0,0,0,0,0,0,210,4.7,9,7,32.0,7620,9,999999999,60,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-5.3,37,81500,0,0,292,0,0,0,0,0,0,0,290,5.2,9,8,32.0,7620,9,999999999,60,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-6.5,30,81500,0,0,278,0,0,0,0,0,0,0,290,5.7,9,2,32.0,77777,9,999999999,60,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-7.8,29,81500,0,0,291,0,0,0,0,0,0,0,280,6.2,9,6,32.0,7620,9,999999999,60,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-7.8,35,81500,0,0,283,0,0,0,0,0,0,0,250,2.6,9,7,32.0,7620,9,999999999,60,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-6.7,41,81600,0,0,284,0,0,0,0,0,0,0,160,3.1,9,8,32.0,7620,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.6,46,81600,24,615,281,5,9,5,0,0,0,0,220,4.6,9,7,64.0,5182,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.7,37,81700,241,1393,291,67,1,66,7300,0,7300,2160,210,4.6,9,8,96.0,5182,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-7.2,33,81700,485,1393,290,214,125,170,23000,11800,18800,3890,190,4.6,9,7,104.0,4572,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-5.6,29,81800,689,1393,305,406,579,119,42500,56900,14300,2510,210,4.1,8,6,104.0,4572,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-7.8,21,81800,839,1393,310,457,406,212,48400,41600,23300,5050,170,3.1,7,6,104.0,4572,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-7.2,19,81700,923,1393,313,686,792,161,72600,80100,19300,4200,160,2.6,6,3,96.0,77777,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-8.9,17,81700,937,1393,310,610,631,186,64000,63500,21200,4850,190,2.1,7,4,96.0,77777,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-8.3,18,81600,879,1393,332,565,253,405,60400,26300,43700,11310,10,4.6,10,9,96.0,2286,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-8.3,18,81700,753,1393,332,232,35,213,25500,3500,23600,6690,360,3.6,10,9,96.0,2591,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-8.3,20,81700,567,1393,336,151,0,151,17100,0,17100,5820,20,4.1,10,10,96.0,3353,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-7.2,23,81700,336,1393,333,65,0,65,7400,0,7400,2470,10,3.6,10,10,96.0,2286,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-6.7,25,81800,84,1126,331,12,0,12,1400,0,1400,460,20,4.1,10,10,48.0,2438,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-4.4,57,82000,0,0,294,0,0,0,0,0,0,0,60,5.7,10,10,19.2,2438,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.1,63,82200,0,0,265,0,0,0,0,0,0,0,30,5.7,10,8,19.2,2134,9,999999999,69,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.7,65,82300,0,0,273,0,0,0,0,0,0,0,60,4.6,10,10,24.0,610,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.7,72,82300,0,0,268,0,0,0,0,0,0,0,60,5.7,10,10,24.0,549,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.2,75,82300,0,0,264,0,0,0,0,0,0,0,90,4.1,10,10,24.0,518,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +1991,3,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.2,75,82300,0,0,264,0,0,0,0,0,0,0,110,5.2,10,10,24.0,610,9,999999999,80,0.0540,0,88,0.200,0.0,1.0 +1991,3,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-7.8,75,82300,0,0,261,0,0,0,0,0,0,0,120,3.6,10,10,19.2,549,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.8,79,82400,0,0,259,0,0,0,0,0,0,0,130,3.6,10,10,16.0,427,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.8,79,82300,0,0,259,0,0,0,0,0,0,0,110,3.6,10,10,16.0,427,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.8,79,82400,0,0,259,0,0,0,0,0,0,0,100,3.6,10,10,11.2,366,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.8,79,82400,0,0,259,0,0,0,0,0,0,0,80,2.1,10,10,9.6,305,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.8,79,82500,0,0,259,0,0,0,0,0,0,0,60,2.1,10,10,9.6,305,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.8,79,82500,26,638,259,2,0,2,300,0,300,80,60,2.6,10,10,9.6,305,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,82600,248,1392,249,97,38,90,10600,3000,10000,2030,60,1.5,10,9,8.0,732,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.2,75,82600,492,1392,264,99,0,99,11400,0,11400,3990,80,1.5,10,10,11.2,732,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.1,69,82600,696,1392,266,166,100,116,18800,10400,13600,2890,0,0.0,10,9,11.2,732,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.0,61,82700,846,1392,272,349,119,276,38000,12500,30400,7520,230,2.1,10,8,11.2,2438,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-5.6,55,82700,930,1392,267,499,449,198,54000,46500,22800,5160,0,0.0,10,6,11.2,7620,9,999999999,80,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-4.4,48,82700,943,1392,276,528,433,234,56300,44800,25900,6280,40,2.1,9,4,11.2,77777,9,999999999,69,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-4.4,43,82700,885,1392,285,473,413,210,50600,42600,23400,5220,130,1.5,10,5,11.2,77777,9,999999999,69,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-4.4,43,82800,758,1392,296,373,308,205,40300,32400,22600,4740,320,2.1,10,8,9.6,6096,9,999999999,69,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-5.0,43,82900,573,1392,299,230,67,202,25100,6500,22400,5450,350,4.1,10,9,12.8,6096,9,999999999,69,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-5.0,46,82900,341,1392,288,93,69,76,10300,5900,8800,1660,10,5.2,9,8,24.0,6096,9,999999999,69,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-5.0,54,83000,88,1149,262,28,132,18,3100,6000,2600,310,40,4.1,7,2,32.0,77777,9,999999999,69,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.0,61,83100,0,0,261,0,0,0,0,0,0,0,130,2.6,9,4,24.0,77777,9,999999999,69,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.6,58,83100,0,0,256,0,0,0,0,0,0,0,180,2.1,6,2,32.0,77777,9,999999999,69,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-5.6,60,83100,0,0,256,0,0,0,0,0,0,0,180,2.6,4,3,32.0,77777,9,999999999,69,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-5.6,55,83200,0,0,258,0,0,0,0,0,0,0,210,4.1,6,2,32.0,77777,9,999999999,69,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-5.6,53,83200,0,0,262,0,0,0,0,0,0,0,190,4.1,8,3,32.0,77777,9,999999999,69,0.0550,0,88,0.200,0.0,1.0 +1991,3,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-6.7,45,83200,0,0,254,0,0,0,0,0,0,0,270,5.2,1,0,32.0,77777,9,999999999,69,0.0550,0,88,0.200,0.0,1.0 +1991,3,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-7.8,33,83200,0,0,264,0,0,0,0,0,0,0,270,6.2,0,0,32.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.2,52,83300,0,0,244,0,0,0,0,0,0,0,230,3.6,0,0,32.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-8.3,46,83200,0,0,245,0,0,0,0,0,0,0,150,3.6,0,0,32.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-8.3,49,83300,0,0,241,0,0,0,0,0,0,0,200,1.5,0,0,32.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-9.4,29,83300,0,0,262,0,0,0,0,0,0,0,300,6.7,0,0,32.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-9.4,30,83400,0,0,260,0,0,0,0,0,0,0,300,3.6,0,0,32.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-8.3,42,83400,30,684,249,7,36,5,800,1200,700,80,180,1.0,0,0,112.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-9.4,24,83500,255,1392,273,127,434,47,13000,32000,7100,840,320,7.2,0,0,112.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-10.0,20,83500,499,1392,279,322,691,75,33900,64400,10800,1470,320,8.2,0,0,112.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-11.1,16,83500,703,1392,292,484,769,95,50300,75200,12200,1970,340,3.1,1,1,104.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-11.7,15,83500,852,1392,288,642,866,111,67300,86300,14300,2580,310,4.1,1,0,104.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-11.7,14,83500,936,1392,292,721,894,119,76000,89700,15500,3040,290,5.2,0,0,104.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-11.1,13,83500,949,1392,303,732,898,119,77400,90200,15600,3100,300,10.3,1,1,112.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-12.2,12,83400,890,1392,314,479,436,200,51600,45000,22700,4980,330,7.2,8,4,112.0,7620,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-12.2,11,83300,764,1392,316,387,462,133,42500,47100,16500,2870,290,3.1,6,4,112.0,7620,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-10.6,13,83200,578,1392,323,372,521,155,38700,50300,17700,3110,130,3.1,6,5,112.0,7620,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-13.3,11,83200,347,1392,318,115,78,96,12600,6700,10900,2100,280,6.7,7,6,96.0,7315,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-13.3,11,83200,92,1194,308,33,26,31,3600,1600,3500,720,280,10.3,4,4,96.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-11.7,14,83200,0,0,290,0,0,0,0,0,0,0,270,7.7,0,0,32.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-12.8,13,83300,0,0,301,0,0,0,0,0,0,0,290,6.7,5,3,32.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-8.3,22,83200,0,0,329,0,0,0,0,0,0,0,240,6.2,10,10,32.0,5486,9,999999999,50,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.7,27,83300,0,0,317,0,0,0,0,0,0,0,130,4.1,10,9,32.0,5486,9,999999999,50,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-6.7,26,83300,0,0,284,0,0,0,0,0,0,0,190,4.6,0,0,32.0,77777,9,999999999,50,0.0560,0,88,0.200,0.0,1.0 +1991,3,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-6.1,28,83300,0,0,300,0,0,0,0,0,0,0,270,6.7,6,4,32.0,5486,9,999999999,50,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-6.1,28,83200,0,0,285,0,0,0,0,0,0,0,260,7.7,0,0,32.0,77777,9,999999999,50,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-6.7,28,83200,0,0,280,0,0,0,0,0,0,0,290,5.2,0,0,32.0,77777,9,999999999,50,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-7.8,24,83200,0,0,283,0,0,0,0,0,0,0,280,5.7,0,0,32.0,77777,9,999999999,50,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-8.3,25,83200,0,0,278,0,0,0,0,0,0,0,270,3.6,0,0,32.0,77777,9,999999999,50,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-8.3,26,83200,0,0,274,0,0,0,0,0,0,0,310,3.1,0,0,32.0,77777,9,999999999,50,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-7.2,33,83200,0,0,268,0,0,0,0,0,0,0,270,4.1,0,0,32.0,77777,9,999999999,50,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-7.8,25,83200,33,707,281,13,182,4,1400,10200,900,140,240,8.8,1,0,112.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-6.7,23,83200,262,1391,297,141,592,30,15000,47400,6000,680,120,1.5,4,1,104.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-7.8,20,83200,506,1391,307,281,448,118,29600,42000,14300,2260,210,6.7,8,3,112.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-8.9,16,83200,710,1391,312,501,746,120,52700,73700,14900,2580,240,6.2,6,2,112.0,77777,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-10.0,14,83000,859,1391,322,276,313,83,30400,32200,10500,2140,290,2.6,8,5,96.0,6096,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-8.9,14,82900,943,1391,331,540,463,226,57900,47900,25300,6050,220,2.1,10,6,96.0,6096,9,999999999,60,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-8.9,13,82800,955,1391,336,599,534,232,64200,55300,26000,6330,270,2.1,10,6,96.0,6096,9,999999999,69,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-7.8,14,82700,896,1391,340,385,332,171,42200,34400,19900,4240,270,4.1,10,6,96.0,6096,9,999999999,69,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-5.6,18,82600,770,1391,354,409,190,303,43900,19600,33100,7870,310,5.2,10,9,96.0,6096,9,999999999,69,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-5.6,17,82600,584,1391,357,235,135,178,25500,13400,19900,4220,340,2.1,10,9,96.0,6096,9,999999999,69,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-6.7,17,82500,352,1391,353,159,120,128,16900,10200,14300,2810,230,3.6,10,9,80.0,6096,9,999999999,69,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-6.1,19,82600,96,1217,348,33,49,29,3600,2500,3400,600,250,7.2,10,9,48.0,6096,9,999999999,69,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-5.6,20,82600,0,0,356,0,0,0,0,0,0,0,270,6.2,10,10,32.0,6096,9,999999999,80,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-5.0,24,82400,0,0,349,0,0,0,0,0,0,0,220,5.2,10,10,32.0,6096,9,999999999,80,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-4.4,25,82400,0,0,349,0,0,0,0,0,0,0,220,8.8,10,10,48.0,4267,9,999999999,80,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-3.9,27,82300,0,0,347,0,0,0,0,0,0,0,230,7.2,10,10,48.0,4267,9,999999999,80,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-3.9,28,82300,0,0,345,0,0,0,0,0,0,0,220,7.2,10,10,48.0,4267,9,999999999,80,0.0560,0,88,0.200,0.0,1.0 +1991,3,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-3.9,28,82200,0,0,345,0,0,0,0,0,0,0,220,6.7,10,10,48.0,4267,9,999999999,89,0.0560,0,88,0.200,0.0,1.0 +1991,3,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-1.1,37,82200,0,0,345,0,0,0,0,0,0,0,220,7.2,10,10,32.0,3962,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-1.1,38,82100,0,0,343,0,0,0,0,0,0,0,200,6.2,10,10,32.0,3962,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,82000,0,0,319,0,0,0,0,0,0,0,210,7.2,10,7,32.0,7620,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-0.6,42,81900,0,0,322,0,0,0,0,0,0,0,190,6.7,9,8,32.0,7620,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-0.6,44,81900,0,0,326,0,0,0,0,0,0,0,200,7.2,10,9,32.0,3962,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-0.6,42,81800,0,0,338,0,0,0,0,0,0,0,200,7.2,10,10,32.0,3962,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.0,43,81900,36,753,341,4,0,4,500,0,500,160,210,7.2,10,10,112.0,2438,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.7,54,82000,269,1390,336,50,0,50,5700,0,5700,1860,230,6.7,10,10,32.0,2591,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-2.2,45,82100,513,1390,323,108,0,108,12400,0,12400,4350,260,4.1,10,10,32.0,2438,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.2,76,82100,717,1390,307,153,75,114,17400,7800,13300,2870,60,5.7,10,9,64.0,1372,9,999999999,89,0.0570,0,88,0.200,1.0,1.0 +1991,3,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.6,86,82100,866,1390,327,244,0,244,28100,0,28100,10380,50,4.6,10,10,40.0,3048,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,82100,949,1390,325,215,0,215,25400,0,25400,9920,50,5.7,10,10,48.0,2591,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.9,80,82000,962,1390,314,405,159,295,44600,16800,32900,8840,70,3.1,10,9,48.0,2591,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,2.2,89,82100,902,1390,306,204,0,204,24000,0,24000,9300,360,7.7,10,10,9.6,671,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.0,96,82200,775,1390,289,144,0,144,17000,0,17000,6580,360,5.2,10,10,0.8,305,9,999999999,89,0.0570,0,88,0.200,2.0,1.0 +1991,3,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.1,96,82200,589,1390,295,127,0,127,14700,0,14700,5250,80,1.5,10,10,16.0,1128,9,999999999,89,0.0570,0,88,0.200,2.0,1.0 +1991,3,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.1,92,82200,357,1390,297,70,0,70,8000,0,8000,2680,160,3.1,10,10,16.0,1250,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.1,92,82300,100,1240,297,15,0,15,1800,0,1800,560,210,2.6,10,10,16.0,1219,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.6,89,82300,0,0,297,0,0,0,0,0,0,0,190,4.6,10,10,16.0,3048,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.6,92,82400,0,0,294,0,0,0,0,0,0,0,240,2.6,10,10,24.0,3048,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.6,92,82300,0,0,294,0,0,0,0,0,0,0,180,2.1,10,10,32.0,3658,9,999999999,89,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.6,92,82400,0,0,286,0,0,0,0,0,0,0,110,1.5,10,9,32.0,3658,9,999999999,80,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.6,92,82400,0,0,286,0,0,0,0,0,0,0,180,1.5,9,9,32.0,1676,9,999999999,80,0.0570,0,88,0.200,0.0,1.0 +1991,3,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.2,74,82400,0,0,292,0,0,0,0,0,0,0,10,1.5,10,10,32.0,2438,9,999999999,80,0.0570,0,88,0.200,0.0,1.0 +1991,3,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.2,74,82400,0,0,292,0,0,0,0,0,0,0,0,0.0,10,10,32.0,2438,9,999999999,80,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-3.3,67,82500,0,0,290,0,0,0,0,0,0,0,80,2.6,10,10,32.0,2438,9,999999999,80,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-4.4,64,82500,0,0,287,0,0,0,0,0,0,0,150,2.1,10,10,32.0,2438,9,999999999,80,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.7,54,82500,0,0,259,0,0,0,0,0,0,0,60,1.5,7,5,32.0,7620,9,999999999,80,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.6,62,82600,0,0,254,0,0,0,0,0,0,0,70,1.5,6,3,32.0,77777,9,999999999,80,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-8.3,54,82700,0,0,253,0,0,0,0,0,0,0,0,0.0,6,6,32.0,3353,9,999999999,80,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.0,72,82700,40,776,264,10,20,9,1200,800,1100,180,80,1.5,8,8,64.0,1829,9,999999999,80,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.7,62,82800,276,1389,268,66,21,61,7200,1700,6800,1570,90,5.2,10,9,96.0,1524,9,999999999,80,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-8.9,51,82900,520,1389,265,173,66,148,19000,6300,16600,4100,120,3.1,10,9,16.0,1524,9,999999999,80,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-5.0,83,83000,724,1389,263,267,88,221,29300,8800,24700,6730,220,4.1,10,9,80.0,1219,9,999999999,69,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.7,60,83000,872,1389,255,578,437,303,61700,46600,32400,8030,230,3.6,8,5,96.0,1524,9,999999999,69,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.7,50,83000,955,1389,253,667,865,72,70000,86300,10500,2050,220,4.6,1,1,96.0,77777,9,999999999,69,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-7.8,42,82900,968,1389,256,752,983,67,79100,98200,10500,1990,320,3.1,1,1,96.0,77777,9,999999999,69,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-10.0,32,82900,908,1389,258,672,930,64,70800,92600,10000,1820,200,2.1,1,1,96.0,77777,9,999999999,69,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-14.4,20,82900,781,1389,258,513,696,121,54300,69800,15000,2780,250,2.6,1,1,96.0,77777,9,999999999,69,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-10.6,28,82900,594,1389,265,390,743,72,40900,71400,10300,1510,170,2.6,2,2,96.0,77777,9,999999999,60,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-7.8,42,82900,362,1389,262,204,500,73,20800,41900,9900,1310,160,5.7,3,3,96.0,77777,9,999999999,60,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-8.3,46,83000,104,1262,257,39,158,26,4200,7500,3500,460,170,5.7,5,4,80.0,77777,9,999999999,60,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.1,57,83100,0,0,260,0,0,0,0,0,0,0,160,2.6,6,5,48.0,7620,9,999999999,60,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.6,62,83100,0,0,260,0,0,0,0,0,0,0,130,1.5,7,6,32.0,7620,9,999999999,60,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.6,66,83100,0,0,256,0,0,0,0,0,0,0,120,2.1,8,5,32.0,7620,9,999999999,60,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-7.8,54,83100,0,0,254,0,0,0,0,0,0,0,110,2.6,6,5,32.0,7620,9,999999999,60,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-7.8,54,83100,0,0,263,0,0,0,0,0,0,0,110,3.1,8,8,24.0,7620,9,999999999,50,0.0580,0,88,0.200,0.0,1.0 +1991,3,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.1,69,83000,0,0,256,0,0,0,0,0,0,0,130,4.6,7,7,24.0,1402,9,999999999,50,0.0580,0,88,0.200,0.0,1.0 +1991,3,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-5.0,76,83000,0,0,275,0,0,0,0,0,0,0,130,3.6,10,10,32.0,2743,9,999999999,50,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-5.6,79,83000,0,0,257,0,0,0,0,0,0,0,0,0.0,8,8,32.0,7620,9,999999999,50,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-5.0,87,83000,0,0,248,0,0,0,0,0,0,0,290,3.6,7,6,32.0,7620,9,999999999,50,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-4.4,87,83000,0,0,258,0,0,0,0,0,0,0,340,3.6,10,8,32.0,2896,9,999999999,50,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.1,83,83100,0,0,248,0,0,0,0,0,0,0,360,4.1,7,7,32.0,7620,9,999999999,50,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.1,86,83100,0,0,250,0,0,0,0,0,0,0,360,2.6,9,8,32.0,7620,9,999999999,50,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.6,90,83200,44,822,242,15,72,12,1800,2700,1600,200,40,2.1,7,5,64.0,7620,9,999999999,40,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.0,91,83200,283,1389,253,113,155,81,11800,11700,9400,1580,120,1.5,8,8,24.0,1676,9,999999999,40,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-5.6,75,83200,527,1389,236,337,774,43,35700,72800,8000,1110,60,3.1,2,0,48.0,77777,9,999999999,40,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.2,52,83200,730,1389,244,563,978,49,59800,96000,9100,1360,0,0.0,0,0,48.0,77777,9,999999999,40,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-11.7,31,83200,879,1389,250,652,944,55,69000,93900,9400,1610,290,2.1,1,1,96.0,77777,9,999999999,40,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-12.8,28,83100,962,1389,249,729,968,58,77000,96700,9800,1800,290,3.6,1,1,96.0,77777,9,999999999,40,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-13.9,23,83000,974,1389,250,787,1035,61,83000,103500,10200,1890,190,3.1,0,0,96.0,77777,9,999999999,40,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-16.1,17,82900,914,1389,251,732,1024,58,77300,102100,9900,1720,250,5.2,0,0,96.0,77777,9,999999999,40,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-17.2,15,82900,786,1389,250,616,996,51,65200,98400,9300,1440,250,6.2,0,0,96.0,77777,9,999999999,40,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-18.3,14,82900,600,1389,249,447,938,42,47600,90100,8500,1150,300,6.2,0,0,96.0,77777,9,999999999,40,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-17.2,17,82900,367,1389,246,244,814,29,26100,71400,7100,790,300,7.2,0,0,96.0,77777,9,999999999,40,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-16.7,19,82900,109,1284,243,52,449,14,5800,29000,3200,360,300,7.2,0,0,80.0,77777,9,999999999,40,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-15.0,25,83000,0,0,239,0,0,0,0,0,0,0,280,4.1,0,0,48.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-15.6,24,83000,0,0,243,0,0,0,0,0,0,0,240,3.1,3,1,32.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-15.6,24,83000,0,0,243,0,0,0,0,0,0,0,260,5.2,2,1,32.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-15.6,24,83000,0,0,248,0,0,0,0,0,0,0,170,3.6,6,4,32.0,7620,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-11.7,40,83000,0,0,242,0,0,0,0,0,0,0,180,3.1,6,2,32.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-11.7,40,83100,0,0,239,0,0,0,0,0,0,0,210,3.1,3,1,32.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-12.8,35,83100,0,0,245,0,0,0,0,0,0,0,220,2.1,6,3,32.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-15.0,25,83100,0,0,246,0,0,0,0,0,0,0,300,6.2,4,2,32.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-15.0,26,83100,0,0,241,0,0,0,0,0,0,0,320,5.2,3,1,32.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-14.4,29,83200,0,0,235,0,0,0,0,0,0,0,300,3.1,1,0,32.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-15.0,27,83300,0,0,235,0,0,0,0,0,0,0,320,6.2,0,0,32.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-15.0,26,83300,0,0,237,0,0,0,0,0,0,0,310,8.2,0,0,48.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-15.0,25,83400,48,844,239,17,140,9,1900,6500,1500,170,310,6.2,0,0,80.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-15.0,22,83400,290,1388,245,170,631,38,17500,50900,6800,760,350,4.6,0,0,112.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-15.6,19,83500,534,1388,248,378,834,57,39800,78500,9500,1230,320,5.2,0,0,96.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-15.6,18,83500,737,1388,252,564,925,72,59100,90600,10800,1630,290,5.2,0,0,96.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-15.6,17,83500,885,1388,256,702,970,83,73300,96300,11700,2010,320,5.7,0,0,96.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-15.6,16,83500,968,1388,267,655,760,124,69100,76400,15600,3300,300,4.1,2,2,96.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-16.1,14,83500,980,1388,275,594,639,142,63800,65400,17400,4110,300,11.3,4,4,96.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-16.7,13,83400,920,1388,270,688,877,106,73300,88300,14600,2750,300,12.4,2,2,80.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-17.8,13,83500,792,1388,269,535,693,139,56200,69300,16600,3170,300,11.3,3,3,80.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-17.2,13,83600,605,1388,267,418,759,87,43000,72600,11300,1690,310,7.7,2,2,96.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-16.1,16,83700,372,1388,264,182,457,59,18900,39200,8400,1110,290,10.3,3,3,80.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-12.8,26,83800,113,1307,257,42,211,24,4400,11400,3400,430,300,8.2,2,2,64.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-13.9,24,83900,0,0,250,0,0,0,0,0,0,0,290,7.7,1,1,48.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-13.3,27,84000,0,0,249,0,0,0,0,0,0,0,300,6.2,1,1,32.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-13.3,28,84000,0,0,242,0,0,0,0,0,0,0,280,3.6,0,0,32.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-12.2,35,84100,0,0,237,0,0,0,0,0,0,0,230,1.5,0,0,32.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-12.2,40,84200,0,0,232,0,0,0,0,0,0,0,120,1.5,0,0,32.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-10.6,58,84200,0,0,224,0,0,0,0,0,0,0,170,1.5,0,0,32.0,77777,9,999999999,30,0.0590,0,88,0.200,0.0,1.0 +1991,3,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-12.8,42,84200,0,0,227,0,0,0,0,0,0,0,210,2.6,0,0,32.0,77777,9,999999999,30,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-13.3,42,84200,0,0,225,0,0,0,0,0,0,0,180,2.6,0,0,32.0,77777,9,999999999,30,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-12.8,46,84200,0,0,224,0,0,0,0,0,0,0,190,4.1,0,0,32.0,77777,9,999999999,30,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-13.3,46,84200,0,0,221,0,0,0,0,0,0,0,180,3.1,0,0,32.0,77777,9,999999999,30,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-15.0,37,84200,0,0,222,0,0,0,0,0,0,0,200,3.6,0,0,32.0,77777,9,999999999,30,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-15.6,34,84200,0,0,223,0,0,0,0,0,0,0,180,5.7,0,0,48.0,77777,9,999999999,30,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-15.6,34,84200,52,890,223,20,189,9,2200,10300,1600,210,180,5.2,0,0,80.0,77777,9,999999999,30,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-16.7,24,84200,297,1387,231,181,684,34,19100,56700,6900,760,210,4.6,0,0,112.0,77777,9,999999999,30,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-18.9,14,84200,541,1387,245,389,868,51,41100,82000,9100,1200,190,6.2,0,0,112.0,77777,9,999999999,30,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-18.9,11,84100,744,1387,256,574,950,64,60400,93200,10200,1570,180,5.7,0,0,112.0,77777,9,999999999,30,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-20.0,8,84100,892,1387,268,710,990,73,74400,98400,11000,1920,180,5.2,0,0,112.0,77777,9,999999999,30,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-20.6,6,84000,974,1387,278,786,1008,78,82300,100600,11400,2190,170,6.2,0,0,112.0,77777,9,999999999,30,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-18.9,7,83800,986,1387,286,796,1010,79,83400,100900,11500,2240,190,5.2,0,0,112.0,77777,9,999999999,30,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-18.9,7,83700,925,1387,284,740,996,75,77500,99200,11100,2020,170,6.7,0,0,112.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-18.3,7,83700,797,1387,287,601,922,71,63100,91000,10600,1720,160,6.7,1,0,112.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-16.7,9,83600,610,1387,286,446,860,67,46700,82500,10300,1390,170,8.8,3,0,112.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-16.7,10,83600,377,1387,280,242,729,44,25400,63900,7900,910,170,8.8,2,0,112.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-16.1,12,83500,118,1329,277,47,215,28,5000,10600,4100,500,160,7.7,6,1,96.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-15.0,14,83500,0,0,278,0,0,0,0,0,0,0,170,8.2,2,2,48.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-15.0,15,83500,0,0,276,0,0,0,0,0,0,0,170,6.2,3,3,32.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-14.4,18,83500,0,0,268,0,0,0,0,0,0,0,180,6.2,2,2,32.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-13.9,19,83500,0,0,269,0,0,0,0,0,0,0,150,4.6,6,3,32.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-16.1,15,83400,0,0,266,0,0,0,0,0,0,0,150,3.6,6,2,32.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +1991,3,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-16.7,14,83300,0,0,270,0,0,0,0,0,0,0,130,4.1,5,3,32.0,77777,9,999999999,40,0.0600,0,88,0.200,0.0,1.0 +1991,3,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-16.7,13,83200,0,0,272,0,0,0,0,0,0,0,190,6.2,3,3,32.0,77777,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-16.1,14,83200,0,0,272,0,0,0,0,0,0,0,180,4.1,4,2,32.0,77777,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-16.1,13,83100,0,0,277,0,0,0,0,0,0,0,190,5.2,3,3,32.0,77777,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-15.6,14,83100,0,0,273,0,0,0,0,0,0,0,170,4.1,5,2,32.0,77777,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-14.4,17,83100,0,0,277,0,0,0,0,0,0,0,180,3.1,8,4,32.0,77777,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-13.9,17,83100,0,0,282,0,0,0,0,0,0,0,180,3.6,9,5,32.0,7620,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-13.3,17,83100,56,913,285,15,36,12,1600,1300,1500,200,190,4.6,8,5,80.0,7620,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-12.2,17,83100,304,1386,291,136,142,104,14500,11500,12000,2260,180,4.6,7,4,96.0,7620,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-10.6,16,83100,548,1386,301,342,578,113,35100,54200,13700,2140,200,4.1,8,3,112.0,77777,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-10.6,13,83000,751,1386,310,497,663,138,52000,65800,16300,3020,190,4.1,7,2,112.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-10.6,13,83000,898,1386,318,661,706,203,68500,70400,22800,4970,180,4.6,8,3,112.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-9.4,13,82900,981,1386,317,761,928,105,79000,92500,13400,2500,260,5.2,4,1,112.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-9.4,13,82800,992,1386,320,714,819,128,75400,82400,16300,3510,260,7.7,4,1,112.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-8.3,13,82800,931,1386,328,639,682,181,67100,68700,20800,4730,280,6.7,7,2,96.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-7.8,14,82800,802,1386,331,532,613,177,55000,60600,19900,3920,240,4.6,8,3,96.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-8.3,14,82800,615,1386,323,403,629,124,41700,60300,14800,2440,280,4.6,7,2,96.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-7.2,16,82800,382,1386,325,195,410,82,20600,35200,10900,1500,260,5.7,8,3,96.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-6.1,21,82800,122,1352,319,41,72,34,4500,3900,4100,710,270,5.7,9,5,96.0,7620,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-6.1,25,82900,0,0,307,0,0,0,0,0,0,0,270,3.1,8,4,48.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-5.6,29,82900,0,0,295,0,0,0,0,0,0,0,230,5.2,7,2,32.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.1,29,82900,0,0,295,0,0,0,0,0,0,0,220,2.1,5,3,32.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.7,27,82800,0,0,292,0,0,0,0,0,0,0,190,4.1,5,2,32.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.1,29,82800,0,0,295,0,0,0,0,0,0,0,190,7.2,3,3,32.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +1991,3,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-5.6,32,82700,0,0,284,0,0,0,0,0,0,0,200,6.7,1,1,32.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +1991,3,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-4.4,39,82700,0,0,276,0,0,0,0,0,0,0,190,4.6,1,0,32.0,77777,9,999999999,80,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-4.4,37,82600,0,0,278,0,0,0,0,0,0,0,180,5.2,0,0,32.0,77777,9,999999999,80,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-4.4,39,82500,0,0,276,0,0,0,0,0,0,0,180,4.1,0,0,32.0,77777,9,999999999,80,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-4.4,43,82500,0,0,269,0,0,0,0,0,0,0,180,3.6,0,0,32.0,77777,9,999999999,80,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-4.4,39,82500,0,0,276,0,0,0,0,0,0,0,190,5.2,2,0,32.0,77777,9,999999999,80,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-4.4,45,82400,0,0,279,0,0,0,0,0,0,0,190,4.6,8,3,64.0,77777,9,999999999,80,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-3.9,49,82400,61,958,274,18,97,12,2100,4000,1800,200,120,2.6,6,2,96.0,77777,9,999999999,80,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-3.9,32,82400,311,1386,295,173,633,31,18400,53200,6400,760,180,4.6,3,1,96.0,77777,9,999999999,80,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-3.9,29,82400,555,1386,296,400,897,41,42600,85200,8300,1100,190,6.2,0,0,112.0,77777,9,999999999,69,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-5.0,23,82300,758,1386,310,528,857,59,55700,84300,9400,1530,160,3.6,3,1,112.0,77777,9,999999999,69,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-4.4,22,82200,905,1386,316,658,908,65,69300,90400,10000,1830,190,3.6,2,1,112.0,77777,9,999999999,69,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-5.0,21,82100,987,1386,325,685,695,190,72200,70300,22000,5390,280,2.1,5,4,104.0,77777,9,999999999,69,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-6.1,19,82000,998,1386,346,538,337,295,58600,36400,32300,8710,190,4.1,9,9,96.0,2743,9,999999999,69,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-6.7,17,81800,936,1386,333,695,764,179,73200,77100,20900,4730,250,2.1,5,5,96.0,77777,9,999999999,69,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-11.1,11,81800,808,1386,334,296,312,114,33300,32100,14500,2530,210,8.8,7,7,96.0,2896,9,999999999,69,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-10.0,15,81800,620,1386,328,329,135,269,36000,13500,30000,7010,230,6.2,9,8,96.0,2743,9,999999999,60,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-10.0,16,81700,387,1386,330,131,129,95,14400,11500,11200,2100,190,6.2,9,9,96.0,4267,9,999999999,60,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-7.8,21,81700,127,1374,335,28,0,28,3200,0,3200,960,210,7.2,10,10,64.0,4267,9,999999999,60,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.2,48,81900,0,0,318,0,0,0,0,0,0,0,300,12.9,10,10,24.0,2743,9,999999999,60,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.0,76,82100,0,0,303,0,0,0,0,0,0,0,340,7.7,10,10,24.0,1067,9,999999999,60,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.0,82,82200,0,0,299,0,0,0,0,0,0,0,350,6.2,10,10,24.0,823,9,999999999,60,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.1,69,82200,0,0,302,0,0,0,0,0,0,0,280,3.1,10,10,32.0,1981,9,999999999,50,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-1.1,67,82200,0,0,304,0,0,0,0,0,0,0,300,2.6,10,10,32.0,1981,9,999999999,50,0.0620,0,88,0.200,0.0,1.0 +1991,3,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,0.0,79,82400,0,0,301,0,0,0,0,0,0,0,10,8.2,10,10,32.0,1036,9,999999999,50,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-1.7,77,82500,0,0,292,0,0,0,0,0,0,0,10,6.7,10,10,32.0,1067,9,999999999,50,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-4.4,57,82500,0,0,294,0,0,0,0,0,0,0,10,8.8,10,10,32.0,1829,9,999999999,50,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-5.6,60,82600,0,0,258,0,0,0,0,0,0,0,360,6.2,4,4,32.0,77777,9,999999999,50,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.6,62,82700,0,0,251,0,0,0,0,0,0,0,360,4.1,2,2,32.0,77777,9,999999999,50,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.1,63,82900,0,0,245,0,0,0,0,0,0,0,310,1.5,1,1,32.0,77777,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.7,62,82900,0,0,246,0,0,0,0,0,0,0,20,3.6,2,2,64.0,77777,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.7,62,83000,66,1004,243,20,84,14,2200,3500,1900,240,360,4.1,1,1,96.0,77777,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.2,46,83100,318,1385,255,169,477,59,17300,38400,8500,1070,350,5.2,1,1,112.0,77777,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-8.3,33,83100,562,1385,261,380,739,80,39100,69900,10700,1550,350,5.2,0,0,112.0,77777,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-10.0,26,83100,764,1385,266,565,840,101,59000,83000,13100,2190,310,4.6,0,0,96.0,77777,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-12.2,19,83100,911,1385,268,702,892,115,74100,89400,15100,2880,310,4.6,0,0,96.0,77777,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-13.3,16,83100,993,1385,271,779,915,122,82600,92200,16300,3410,10,6.7,0,0,96.0,77777,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-14.4,15,83100,1003,1385,269,789,918,123,83700,92600,16500,3500,360,5.2,0,0,96.0,77777,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-15.0,14,83000,942,1385,269,722,872,129,75700,87300,16100,3250,350,6.2,2,0,96.0,77777,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-15.0,14,83000,813,1385,274,573,720,149,60000,72000,17600,3440,20,6.7,8,1,96.0,77777,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-14.4,16,83100,625,1385,274,361,506,132,38600,49900,16000,2640,50,4.6,7,2,88.0,77777,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-14.4,17,83100,392,1385,277,170,196,115,18000,17300,13100,2310,60,6.2,10,5,96.0,4877,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-10.6,31,83200,132,1385,268,41,70,35,4500,3700,4200,730,90,5.2,10,5,96.0,4572,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-8.3,42,83300,0,12,260,0,0,0,0,0,0,0,80,4.1,8,3,48.0,77777,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-8.3,44,83400,0,0,262,0,0,0,0,0,0,0,110,4.1,7,5,32.0,7620,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-8.3,46,83400,0,0,269,0,0,0,0,0,0,0,130,3.1,8,8,32.0,4267,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-8.9,47,83400,0,0,253,0,0,0,0,0,0,0,160,2.1,6,4,32.0,4267,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-8.9,47,83400,0,0,251,0,0,0,0,0,0,0,190,2.6,5,3,32.0,77777,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-8.3,52,83300,0,0,247,0,0,0,0,0,0,0,190,3.1,5,2,32.0,77777,9,999999999,40,0.0620,0,88,0.200,0.0,1.0 +1991,3,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-8.3,57,83300,0,0,240,0,0,0,0,0,0,0,200,2.1,2,1,32.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.8,62,83200,0,0,244,0,0,0,0,0,0,0,190,2.6,3,3,32.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-8.3,62,83200,0,0,239,0,0,0,0,0,0,0,200,2.1,2,2,32.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-8.3,65,83200,0,0,239,0,0,0,0,0,0,0,130,2.1,3,3,32.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-8.9,62,83300,0,0,237,0,0,0,0,0,0,0,200,2.1,2,2,32.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-8.9,62,83300,0,0,229,0,0,0,0,0,0,0,180,2.1,0,0,64.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-9.4,54,83400,71,1027,232,27,197,13,2900,9800,2200,250,200,2.6,0,0,96.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-10.6,31,83400,325,1384,253,196,658,41,20300,55200,7300,830,0,0.0,0,0,96.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-12.2,23,83400,569,1384,257,404,838,59,42400,79700,9600,1300,300,2.1,0,0,96.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-13.9,18,83400,771,1384,262,588,920,75,61600,90500,11000,1710,360,3.6,0,0,96.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-14.4,15,83400,918,1384,268,723,962,85,75500,95700,11800,2120,330,3.6,0,0,96.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-13.9,16,83300,999,1384,270,776,944,94,80700,94200,12500,2490,90,4.6,1,0,104.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-13.3,16,83300,1009,1384,276,772,936,89,80500,93500,12100,2470,60,4.6,1,1,96.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-13.3,16,83200,948,1384,276,703,877,102,72900,87300,13000,2350,60,3.1,1,1,96.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-12.8,17,83100,818,1384,276,520,684,115,55600,69200,14500,2770,60,3.6,2,1,96.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-12.8,17,83100,630,1384,276,416,626,130,42900,60200,15400,2570,100,3.1,3,1,80.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-10.6,22,83100,397,1384,277,233,630,52,24100,55600,8100,1030,100,4.1,2,1,64.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-9.4,28,83100,136,1384,276,54,201,35,5600,10200,4600,630,90,5.7,5,3,64.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-8.9,34,83200,0,35,261,0,1,0,0,0,0,0,90,4.1,2,1,32.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-8.9,38,83200,0,0,263,0,0,0,0,0,0,0,110,4.1,8,4,32.0,7010,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-8.3,44,83200,0,0,260,0,0,0,0,0,0,0,150,6.2,7,4,32.0,7010,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-7.8,46,83200,0,0,262,0,0,0,0,0,0,0,130,3.1,8,5,32.0,7010,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.8,48,83200,0,0,258,0,0,0,0,0,0,0,120,2.1,9,4,32.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.2,50,83100,0,0,259,0,0,0,0,0,0,0,180,3.6,9,4,32.0,77777,9,999999999,40,0.0630,0,88,0.200,0.0,1.0 +1991,3,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-8.3,46,83100,0,0,269,0,0,0,0,0,0,0,0,0.0,10,8,32.0,6096,9,999999999,40,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-10.0,38,83100,0,0,283,0,0,0,0,0,0,0,170,1.5,10,10,32.0,3048,9,999999999,40,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-7.8,52,83000,0,0,279,0,0,0,0,0,0,0,350,3.6,10,10,32.0,2438,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.8,62,83000,0,0,270,0,0,0,0,0,0,0,360,3.6,10,10,32.0,2134,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-7.8,65,82900,0,0,260,0,0,0,0,0,0,0,20,1.5,9,9,32.0,2134,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.2,75,82900,0,0,247,0,0,0,0,0,0,0,0,0.0,9,7,48.0,2134,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.7,75,82900,76,1072,266,14,0,14,1600,0,1600,520,10,2.1,10,10,80.0,6096,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-6.1,72,82900,333,1383,264,67,44,56,7300,3700,6400,1550,360,2.6,10,9,64.0,6706,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.7,62,82900,576,1383,275,144,0,144,16400,0,16400,5700,340,4.1,10,10,64.0,6706,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.7,50,82800,778,1383,279,375,106,315,41100,10800,35000,9260,330,2.6,10,9,64.0,6706,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-7.8,39,82700,924,1383,287,351,172,236,39000,18300,26800,6860,250,1.5,10,9,64.0,6706,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-10.0,26,82600,1005,1383,285,551,227,386,59900,24000,42400,12170,180,6.7,9,7,32.0,6706,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-10.6,26,82500,1015,1383,287,546,139,443,59900,14400,49300,15220,150,8.8,10,8,48.0,7620,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-9.4,27,82500,953,1383,288,612,464,292,64000,47900,30900,8160,160,9.8,10,7,32.0,6096,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-8.9,27,82400,823,1383,296,409,193,294,44400,20100,32400,7920,150,8.2,9,8,40.0,5486,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-8.9,28,82400,635,1383,283,275,174,195,30000,17600,21900,4730,170,7.7,10,5,48.0,5486,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-8.3,37,82400,402,1383,280,166,74,145,18200,6800,16200,3550,160,8.8,10,8,56.0,4877,9,999999999,50,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.2,46,82500,141,1383,270,52,39,48,5700,2600,5400,1060,160,9.3,10,7,64.0,4877,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.7,50,82500,0,58,279,0,0,0,0,0,0,0,130,4.1,10,9,32.0,4572,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-4.4,64,82600,0,0,263,0,0,0,0,0,0,0,160,6.2,10,5,24.0,77777,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-4.4,66,82700,0,0,257,0,0,0,0,0,0,0,150,4.1,3,3,32.0,77777,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-4.4,69,82700,0,0,253,0,0,0,0,0,0,0,210,4.1,7,2,32.0,77777,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-4.4,69,82700,0,0,261,0,0,0,0,0,0,0,190,4.6,8,6,32.0,1829,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +1991,3,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-4.4,73,82700,0,0,257,0,0,0,0,0,0,0,260,4.1,7,5,32.0,4877,9,999999999,60,0.0640,0,88,0.200,0.0,1.0 +1991,3,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-4.4,69,82700,0,0,282,0,0,0,0,0,0,0,250,3.6,10,10,24.0,701,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-3.9,76,82700,0,0,280,0,0,0,0,0,0,0,310,3.1,10,10,24.0,640,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-4.4,76,82700,0,0,278,0,0,0,0,0,0,0,340,3.1,10,10,24.0,610,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-4.4,80,82700,0,0,275,0,0,0,0,0,0,0,360,2.6,10,10,24.0,610,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.9,87,82700,0,0,274,0,0,0,0,0,0,0,360,2.6,10,10,24.0,640,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.9,87,82700,0,0,274,0,0,0,0,0,0,0,350,2.6,10,10,24.0,3048,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-3.9,83,82800,82,1095,276,13,0,13,1500,0,1500,490,80,2.1,10,10,8.0,671,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-3.9,76,82800,340,1383,280,69,0,69,7900,0,7900,2600,40,1.5,10,10,8.0,792,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-3.3,80,82800,583,1383,281,128,0,128,14800,0,14800,5260,350,2.6,10,10,8.0,427,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.9,69,82900,785,1383,285,177,0,177,20700,0,20700,7800,330,2.1,10,10,9.6,427,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-4.4,57,82800,931,1383,294,213,0,213,25100,0,25100,9790,10,3.6,10,10,9.6,792,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-4.4,51,82800,1011,1383,292,452,171,327,49700,18100,36300,10380,360,2.1,9,9,11.2,792,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.0,48,82800,1021,1383,292,288,27,267,31700,2700,29700,10230,80,2.6,9,9,11.2,2438,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-5.0,44,82700,958,1383,291,393,280,198,43800,30300,22800,5300,50,2.1,8,8,11.2,2438,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-5.0,44,82700,829,1383,286,472,326,277,50500,34600,29700,7040,340,4.1,10,7,11.2,6706,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-5.0,41,82700,640,1383,287,282,244,169,30400,25000,18800,3640,340,4.6,10,6,11.2,6096,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-5.6,44,82800,407,1383,280,142,176,90,15300,15800,10600,1710,330,3.6,10,6,11.2,6096,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-5.6,47,82800,145,1383,271,52,169,34,5400,8900,4400,610,320,3.6,8,4,11.2,77777,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-4.4,61,82900,0,81,271,0,2,0,0,0,0,0,10,2.6,9,7,16.0,6096,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-4.4,66,82900,0,0,257,0,0,0,0,0,0,0,330,2.6,6,3,24.0,77777,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.9,69,83000,0,0,267,0,0,0,0,0,0,0,350,2.6,9,7,24.0,2591,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-4.4,76,83000,0,0,251,0,0,0,0,0,0,0,350,2.1,3,3,24.0,77777,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-4.4,80,83000,0,0,238,0,0,0,0,0,0,0,0,0.0,0,0,19.2,77777,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-4.4,83,83000,0,0,237,0,0,0,0,0,0,0,330,2.6,0,0,19.2,77777,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-5.6,79,83000,0,0,262,0,0,0,0,0,0,0,360,2.1,10,9,11.2,6706,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-4.4,87,83000,0,0,263,0,0,0,0,0,0,0,30,1.5,10,9,9.6,6096,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-4.4,87,82900,0,0,271,0,0,0,0,0,0,0,360,2.6,10,10,8.0,2438,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.9,87,82900,0,0,274,0,0,0,0,0,0,0,360,2.1,10,10,8.0,183,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.9,87,82900,0,0,274,0,0,0,0,0,0,0,10,2.1,10,10,8.0,183,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.9,87,82900,0,0,256,0,0,0,0,0,0,0,80,1.5,7,7,8.0,183,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.9,87,82900,87,1140,274,10,0,10,1200,0,1200,390,40,2.1,10,10,4.8,152,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.9,87,82900,347,1382,274,42,0,42,5000,0,5000,1740,60,1.5,10,10,4.8,244,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-3.9,83,83000,590,1382,276,89,0,89,10600,0,10600,3950,120,3.6,10,10,4.8,244,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-3.9,79,83000,791,1382,278,133,0,133,15900,0,15900,6230,0,0.0,10,10,4.8,244,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.9,69,83000,937,1382,285,197,0,197,23400,0,23400,9240,0,0.0,10,10,6.4,427,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-3.9,67,82900,1017,1382,287,218,0,218,26000,0,26000,10370,100,1.5,10,10,9.6,488,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-3.9,64,82900,1026,1382,290,220,0,220,26200,0,26200,10480,30,2.6,10,10,9.6,610,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.9,59,82800,964,1382,294,204,0,204,24200,0,24200,9620,10,3.6,10,10,11.2,610,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.9,59,82800,834,1382,294,170,0,170,20100,0,20100,7790,360,4.1,10,10,11.2,610,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.9,59,82900,645,1382,294,121,0,121,14200,0,14200,5280,20,3.1,10,10,11.2,671,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-3.9,57,82900,411,1382,275,112,102,82,12500,9400,9700,1830,350,3.1,10,6,11.2,6096,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-3.9,62,83000,150,1382,270,53,20,51,5800,1400,5700,1130,20,3.1,10,6,11.2,6096,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.9,69,83100,1,104,260,0,0,0,0,0,0,0,360,3.1,10,4,11.2,77777,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-2.8,83,83100,0,0,258,0,0,0,0,0,0,0,20,2.1,10,5,16.0,77777,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.8,87,83200,0,0,252,0,0,0,0,0,0,0,40,1.5,4,3,11.2,77777,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-2.8,91,83300,0,0,248,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.3,96,83300,0,0,246,0,0,0,0,0,0,0,190,1.5,3,3,11.2,77777,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.9,91,83300,0,0,243,0,0,0,0,0,0,0,190,2.6,2,2,11.2,77777,9,999999999,60,0.0650,0,88,0.200,0.0,1.0 +1991,3,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.9,91,83300,0,0,243,0,0,0,0,0,0,0,200,2.1,2,2,11.2,77777,9,999999999,60,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-4.4,91,83300,0,0,233,0,0,0,0,0,0,0,140,1.5,1,0,11.2,77777,9,999999999,60,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.6,90,83300,0,0,228,0,0,0,0,0,0,0,130,2.6,0,0,9.6,77777,9,999999999,60,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-6.1,96,83300,0,0,224,0,0,0,0,0,0,0,150,2.1,0,0,11.2,77777,9,999999999,60,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.1,86,83400,0,0,228,0,0,0,0,0,0,0,170,1.5,0,0,16.0,77777,9,999999999,60,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.2,91,83500,0,0,221,0,0,0,0,0,0,0,190,1.5,0,0,24.0,77777,9,999999999,60,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.1,83,83500,93,1185,229,41,340,14,4500,21500,2700,350,140,1.5,0,0,48.0,77777,9,999999999,60,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-5.0,58,83500,354,1381,250,225,748,33,23900,65000,7200,830,170,2.1,1,0,80.0,77777,9,999999999,60,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-7.2,33,83600,597,1381,268,429,876,51,45400,84000,9000,1270,220,1.5,1,0,80.0,77777,9,999999999,60,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-10.6,21,83600,798,1381,273,616,962,60,65000,95100,9900,1600,290,4.1,0,0,80.0,77777,9,999999999,50,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-11.1,18,83600,943,1381,278,655,855,71,68800,85300,10300,2010,240,2.6,1,0,80.0,77777,9,999999999,50,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-13.3,14,83500,1023,1381,280,810,989,77,84800,99000,11300,2340,280,3.6,1,0,112.0,77777,9,999999999,50,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-13.3,13,83500,1032,1381,286,831,1015,72,87100,101600,11000,2280,80,2.6,0,0,96.0,77777,9,999999999,50,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-13.9,12,83400,969,1381,285,774,1004,69,81300,100300,10700,2040,340,3.1,0,0,96.0,77777,9,999999999,50,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-14.4,11,83400,839,1381,290,602,876,70,63200,86800,10300,1790,250,2.6,2,1,96.0,77777,9,999999999,50,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-15.6,10,83400,650,1381,298,382,541,127,39600,52500,14800,2570,20,3.1,8,4,96.0,7620,9,999999999,50,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-8.3,21,83400,416,1381,302,184,227,115,19500,20500,13300,2290,120,5.7,7,4,96.0,7620,9,999999999,50,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-7.8,26,83400,155,1381,279,74,446,24,7500,28800,4200,460,120,5.7,3,0,64.0,77777,9,999999999,50,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-7.2,30,83400,1,127,273,0,17,0,0,0,0,0,140,4.1,0,0,48.0,77777,9,999999999,50,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-5.6,38,83400,0,0,270,0,0,0,0,0,0,0,150,5.7,0,0,48.0,77777,9,999999999,50,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-5.0,44,83500,0,0,265,0,0,0,0,0,0,0,170,4.1,0,0,48.0,77777,9,999999999,50,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-5.6,49,83500,0,0,255,0,0,0,0,0,0,0,180,2.6,0,0,48.0,77777,9,999999999,50,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.1,53,83500,0,0,249,0,0,0,0,0,0,0,170,2.6,0,0,48.0,77777,9,999999999,40,0.0660,0,88,0.200,0.0,1.0 +1991,3,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.2,50,83400,0,0,246,0,0,0,0,0,0,0,170,2.1,0,0,48.0,77777,9,999999999,40,0.0660,0,88,0.200,0.0,1.0 +1991,3,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-7.8,57,83400,0,0,238,0,0,0,0,0,0,0,240,2.1,1,0,32.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-7.8,57,83400,0,0,238,0,0,0,0,0,0,0,180,2.6,1,0,32.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.8,62,83400,0,0,234,0,0,0,0,0,0,0,140,2.6,1,0,32.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-9.4,49,83400,0,0,236,0,0,0,0,0,0,0,250,3.6,2,0,32.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-9.4,52,83400,0,0,234,0,0,0,0,0,0,0,170,2.6,3,0,32.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-10.0,49,83400,0,0,233,0,0,0,0,0,0,0,140,3.1,0,0,64.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-10.0,41,83500,99,1208,242,43,321,17,4500,19000,2900,340,170,1.5,0,0,80.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-8.9,29,83500,361,1380,265,231,735,38,24400,64100,7500,880,0,0.0,0,0,96.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-12.8,14,83500,604,1380,282,442,885,55,46600,84900,9400,1320,0,0.0,0,0,96.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-13.3,13,83500,805,1380,286,592,893,71,62100,88200,10500,1740,240,2.6,1,0,96.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-13.3,12,83500,950,1380,296,631,763,106,67600,77100,14400,2900,270,2.6,1,1,96.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-12.8,11,83400,1029,1380,298,832,1007,81,87000,100700,11600,2440,270,2.6,0,0,96.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-12.8,10,83400,1037,1380,302,828,986,86,86300,98600,12000,2550,290,2.6,1,0,96.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-11.7,11,83400,974,1380,304,736,880,115,78500,88800,15600,3190,360,3.1,2,0,96.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-8.9,16,83400,844,1380,302,660,964,70,69200,95600,10600,1800,110,7.7,0,0,80.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-8.3,18,83400,655,1380,298,483,888,61,50800,86100,9800,1430,100,8.8,1,0,80.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-9.4,17,83400,421,1380,295,280,781,42,29600,70500,8100,990,110,7.7,0,0,64.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-9.4,19,83500,159,1380,288,78,465,24,7900,30400,4400,460,100,5.7,0,0,48.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-3.9,39,83500,2,150,278,0,14,0,0,0,0,0,90,4.6,0,0,32.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-3.3,47,83600,0,0,270,0,0,0,0,0,0,0,120,4.6,0,0,32.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-3.3,51,83600,0,0,266,0,0,0,0,0,0,0,160,2.6,0,0,32.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-2.8,53,83600,0,0,267,0,0,0,0,0,0,0,150,3.6,0,0,32.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.9,53,83500,0,0,261,0,0,0,0,0,0,0,150,5.2,0,0,32.0,77777,9,999999999,40,0.0670,0,88,0.200,0.0,1.0 +1991,3,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.6,46,83500,0,0,259,0,0,0,0,0,0,0,160,4.6,0,0,32.0,77777,9,999999999,50,0.0670,0,88,0.200,0.0,1.0 +1991,3,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-5.6,44,83500,0,0,262,0,0,0,0,0,0,0,170,6.2,0,0,32.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-6.7,38,83400,0,0,263,0,0,0,0,0,0,0,170,9.3,0,0,32.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-5.6,44,83300,0,0,262,0,0,0,0,0,0,0,180,7.7,0,0,32.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.9,53,83200,0,0,261,0,0,0,0,0,0,0,170,5.7,1,0,32.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.3,62,83200,0,0,256,0,0,0,0,0,0,0,170,3.1,1,0,32.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-4.4,61,83200,0,0,251,0,0,0,0,0,0,0,280,1.0,1,0,80.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-4.4,66,83200,106,1253,247,38,180,23,4100,8600,3400,400,0,0.0,1,0,80.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-3.9,57,83100,368,1379,257,215,587,58,22400,50300,8900,1090,330,1.5,1,0,80.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-3.3,47,83000,611,1379,270,428,783,81,44500,75400,11000,1640,340,2.1,0,0,64.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-3.3,38,82900,811,1379,283,607,855,104,63800,85000,13600,2370,180,7.2,1,0,64.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-1.1,41,82800,956,1379,293,746,914,112,77200,90900,14000,2440,160,9.8,0,0,80.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-5.0,26,82500,1035,1379,295,817,923,124,84300,92000,15000,2920,160,11.8,1,0,64.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-6.1,22,82300,1043,1379,298,824,925,124,85000,92300,15000,2970,160,11.8,1,0,48.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-6.1,21,82100,979,1379,307,762,913,113,78800,90900,14100,2550,160,13.4,1,1,48.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-6.1,21,82000,848,1379,309,583,781,102,61700,78200,13500,2450,160,12.4,1,1,48.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-3.3,28,81900,659,1379,319,420,566,150,44800,56300,17800,3080,160,11.3,5,5,48.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-3.3,34,81800,425,1379,308,204,375,88,21700,33500,11300,1630,160,14.4,5,5,48.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.8,35,81700,164,1379,296,60,208,35,6300,11900,4900,620,160,13.4,3,1,48.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-1.1,47,81700,2,172,293,0,1,0,0,0,0,0,160,11.8,6,2,32.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-0.6,51,81700,0,0,310,0,0,0,0,0,0,0,160,8.8,10,8,32.0,9144,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-1.1,49,81600,0,0,304,0,0,0,0,0,0,0,200,7.7,10,7,32.0,7620,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-2.2,45,81600,0,0,308,0,0,0,0,0,0,0,220,2.6,10,8,32.0,3353,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-1.1,49,81700,0,0,325,0,0,0,0,0,0,0,260,2.6,10,10,32.0,2134,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-3.3,44,81700,0,0,317,0,0,0,0,0,0,0,320,5.7,10,10,32.0,2134,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-6.7,30,81600,0,0,318,0,0,0,0,0,0,0,290,9.3,10,10,32.0,2743,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-10.0,22,81600,0,0,316,0,0,0,0,0,0,0,290,6.7,10,10,32.0,3048,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-10.0,23,81600,0,0,305,0,0,0,0,0,0,0,310,7.7,10,9,32.0,3353,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-10.0,23,81700,0,0,294,0,0,0,0,0,0,0,310,8.2,9,7,32.0,4572,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-11.1,21,81700,0,0,304,0,0,0,0,0,0,0,290,7.7,10,9,32.0,4267,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-11.1,22,81800,0,0,291,0,0,0,0,0,0,0,300,6.2,9,7,64.0,4267,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-11.1,22,81900,112,1275,295,30,28,28,3300,1700,3200,680,310,3.1,9,8,112.0,4267,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-10.6,22,81900,376,1379,288,149,250,81,16100,21800,10100,1520,290,3.6,7,5,112.0,4572,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-11.1,18,82000,618,1379,294,400,566,146,42300,55600,17300,2940,270,5.2,8,4,112.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-12.2,16,82000,818,1379,288,573,640,194,61300,65600,22300,4530,290,8.2,6,2,112.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-12.2,14,82000,962,1379,300,685,718,184,72200,72600,21400,5070,290,10.3,4,3,112.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-12.8,13,82000,1041,1379,303,478,419,161,51200,42900,18700,5170,260,8.8,5,5,112.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-12.8,12,82000,1048,1379,303,858,952,133,88200,94900,15900,3050,270,4.6,3,3,112.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-12.8,12,82000,984,1379,300,743,878,115,79200,88700,15700,3250,250,6.7,2,2,112.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-11.7,14,82100,853,1379,290,672,987,60,70800,98000,9900,1680,280,10.3,0,0,96.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-13.3,12,82100,664,1379,288,500,934,50,52900,90800,9100,1320,300,7.2,0,0,80.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-12.2,15,82100,430,1379,283,294,825,36,31200,74900,7800,940,300,8.8,0,0,64.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-12.2,16,82200,168,1379,278,87,543,21,9200,38300,4600,480,300,6.7,0,0,48.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-11.7,20,82200,3,195,270,0,30,0,0,0,0,0,290,5.7,0,0,48.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-11.7,21,82300,0,0,266,0,0,0,0,0,0,0,300,5.7,0,0,32.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-11.1,25,82300,0,0,260,0,0,0,0,0,0,0,280,4.6,0,0,32.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-12.2,23,82400,0,0,257,0,0,0,0,0,0,0,180,1.5,0,0,32.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-11.7,29,82400,0,0,250,0,0,0,0,0,0,0,60,1.5,0,0,32.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-11.7,30,82300,0,0,248,0,0,0,0,0,0,0,190,2.6,0,0,32.0,77777,9,999999999,50,0.0680,0,88,0.200,0.0,1.0 +1991,3,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-11.7,35,82300,0,0,240,0,0,0,0,0,0,0,190,2.1,4,0,32.0,77777,9,999999999,50,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-11.7,38,82300,0,0,240,0,0,0,0,0,0,0,290,1.5,6,1,32.0,77777,9,999999999,50,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-10.6,44,82300,0,0,243,0,0,0,0,0,0,0,130,2.1,7,2,32.0,77777,9,999999999,50,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-10.0,47,82300,0,0,246,0,0,0,0,0,0,0,140,2.6,6,3,32.0,77777,9,999999999,50,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-10.6,40,82300,0,0,253,0,0,0,0,0,0,0,190,1.5,7,5,32.0,7620,9,999999999,50,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-11.7,37,82300,0,0,248,0,0,0,0,0,0,0,170,1.5,10,3,80.0,77777,9,999999999,50,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-11.1,39,82300,119,1320,246,48,180,31,5000,8900,4100,560,130,1.5,7,2,96.0,77777,9,999999999,50,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-11.1,27,82300,383,1378,256,247,753,38,26200,66600,7600,910,190,3.1,0,0,96.0,77777,9,999999999,50,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-12.8,19,82300,624,1378,265,450,858,61,47300,82700,9700,1390,0,0.0,2,0,96.0,77777,9,999999999,50,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-11.1,19,82300,824,1378,287,461,485,171,50000,49800,20100,3970,40,2.1,8,3,96.0,77777,9,999999999,50,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-9.4,20,82200,968,1378,293,683,781,134,71500,78300,16400,3510,130,6.2,7,2,96.0,77777,9,999999999,60,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-9.4,19,82100,1046,1378,298,735,691,210,77400,69900,24100,6630,130,7.2,9,3,96.0,77777,9,999999999,60,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-9.4,17,82000,1054,1378,310,761,618,288,81000,64300,31700,9460,130,6.2,10,5,96.0,77777,9,999999999,60,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-10.0,18,81900,989,1378,329,224,0,224,26500,0,26500,10480,130,7.2,10,10,96.0,2591,9,999999999,60,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-8.9,21,81900,858,1378,328,192,0,192,22600,0,22600,8700,90,5.2,10,10,80.0,2591,9,999999999,60,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-7.8,25,81900,669,1378,324,145,0,145,16900,0,16900,6200,180,1.5,10,10,80.0,2743,9,999999999,60,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-5.6,31,81900,435,1378,315,90,0,89,10200,0,10200,3500,80,6.2,10,9,80.0,2743,9,999999999,69,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-7.2,28,82000,173,1378,296,77,132,60,7900,7400,7000,1190,90,3.6,10,6,64.0,7620,9,999999999,69,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-7.2,29,82000,3,218,294,0,4,0,0,0,0,0,60,3.1,9,6,48.0,7620,9,999999999,69,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-7.2,33,82000,0,0,295,0,0,0,0,0,0,0,110,3.1,8,8,32.0,3353,9,999999999,69,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.7,37,82000,0,0,306,0,0,0,0,0,0,0,90,2.6,10,10,24.0,2438,9,999999999,69,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-6.1,40,82000,0,0,289,0,0,0,0,0,0,0,330,2.1,9,8,24.0,3658,9,999999999,69,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-6.1,45,82000,0,0,278,0,0,0,0,0,0,0,320,2.6,7,7,24.0,2896,9,999999999,80,0.0690,0,88,0.200,0.0,1.0 +1991,3,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-0.6,81,82100,0,0,287,0,0,0,0,0,0,0,320,7.7,10,9,12.8,1676,9,999999999,80,0.0690,0,88,0.200,0.0,1.0 +1991,3,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.0,82,82200,0,0,284,0,0,0,0,0,0,0,310,6.7,9,8,24.0,2438,9,999999999,80,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.0,82,82200,0,0,299,0,0,0,0,0,0,0,330,6.2,10,10,11.2,244,9,999999999,80,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.0,82,82200,0,0,299,0,0,0,0,0,0,0,360,5.7,10,10,19.2,335,9,999999999,80,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.0,96,82300,0,0,289,0,0,0,0,0,0,0,340,4.6,10,10,4.8,366,9,999999999,89,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.0,96,82300,0,0,289,0,0,0,0,0,0,0,310,3.6,10,10,8.0,122,9,999999999,89,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.0,88,82400,0,0,294,0,0,0,0,0,0,0,20,2.1,10,10,32.0,244,9,999999999,80,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.0,85,82400,126,1366,282,29,27,27,3300,1500,3100,560,290,3.1,9,8,80.0,1829,9,999999999,80,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.0,76,82400,390,1377,276,223,510,79,22900,43900,10400,1430,330,2.1,5,4,80.0,77777,9,999999999,80,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-1.1,61,82400,631,1377,295,204,124,147,22600,12600,16800,3560,320,3.1,8,8,80.0,2896,9,999999999,80,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-2.2,52,82400,830,1377,286,495,511,187,53200,52500,21500,4400,20,4.1,5,4,96.0,77777,9,999999999,80,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-4.4,36,82400,974,1377,299,672,533,295,70500,55100,31400,8540,330,4.1,10,6,96.0,4267,9,999999999,69,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-9.4,24,82400,1052,1377,295,677,367,396,72600,39600,42300,13250,300,12.4,10,7,96.0,4267,9,999999999,69,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-10.0,21,82500,1059,1377,304,586,414,267,62900,43100,29600,8820,310,12.9,9,8,96.0,4267,9,999999999,69,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-10.6,18,82500,994,1377,305,440,305,219,47700,31700,24700,6380,310,11.8,7,7,96.0,6706,9,999999999,69,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-11.1,18,82600,863,1377,305,466,212,333,50400,22200,36500,9250,300,11.8,9,8,96.0,7620,9,999999999,69,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-11.1,19,82700,673,1377,294,379,307,229,40100,31600,24600,5290,300,13.4,7,6,96.0,7620,9,999999999,60,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-12.2,18,82800,439,1377,290,171,185,112,18300,17100,12800,2210,290,7.7,8,6,80.0,7620,9,999999999,60,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-11.7,20,82900,177,1377,282,59,194,34,6300,11600,4800,600,300,7.7,7,4,80.0,7620,9,999999999,60,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-10.0,26,83000,4,241,277,0,10,0,0,0,0,0,260,3.6,5,3,64.0,77777,9,999999999,60,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-10.6,25,83100,0,0,268,0,0,0,0,0,0,0,280,7.2,2,1,32.0,77777,9,999999999,60,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-10.6,25,83100,0,0,263,0,0,0,0,0,0,0,270,5.2,3,0,32.0,77777,9,999999999,50,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-10.0,28,83200,0,0,262,0,0,0,0,0,0,0,270,8.2,2,0,32.0,77777,9,999999999,50,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-10.0,29,83200,0,0,260,0,0,0,0,0,0,0,270,6.2,1,0,32.0,77777,9,999999999,50,0.0700,0,88,0.200,0.0,1.0 +1991,3,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-9.4,30,83300,0,0,260,0,0,0,0,0,0,0,280,5.7,0,0,32.0,77777,9,999999999,50,0.0700,0,88,0.200,0.0,1.0 +1991,3,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-10.6,27,83400,0,0,264,0,0,0,0,0,0,0,270,6.7,1,1,32.0,77777,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-11.1,27,83400,0,0,256,0,0,0,0,0,0,0,270,6.2,0,0,32.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-10.0,31,83400,0,0,255,0,0,0,0,0,0,0,270,5.2,0,0,32.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-9.4,37,83400,0,0,250,0,0,0,0,0,0,0,300,4.1,0,0,32.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-9.4,40,83500,0,0,246,0,0,0,0,0,0,0,130,2.6,0,0,32.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-8.9,43,83500,0,11,255,0,0,0,0,0,0,0,250,2.6,8,3,64.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-7.8,46,83600,133,1376,256,44,98,34,4600,4600,4100,620,210,4.1,7,2,96.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-7.8,35,83700,397,1376,273,171,236,103,18200,21000,12200,2020,210,4.6,5,3,96.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-10.6,22,83700,638,1376,288,380,455,169,39800,44900,18900,3490,160,4.1,7,5,96.0,9144,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-11.1,19,83700,837,1376,292,544,548,211,57800,56200,23600,5050,220,2.6,8,5,96.0,7620,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-12.2,16,83600,980,1376,281,763,837,166,81100,85200,20200,4790,230,2.6,5,0,112.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-12.8,14,83600,1057,1376,290,799,772,206,84400,78300,24100,6690,170,3.1,8,1,112.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-12.2,13,83600,1064,1376,301,769,749,189,81700,76300,22500,6280,240,2.6,7,2,112.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-11.7,13,83500,999,1376,307,703,624,250,75400,64900,28200,7420,110,2.6,9,3,112.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-12.8,12,83500,867,1376,308,548,316,348,57800,33600,36600,9530,150,2.1,9,5,96.0,9144,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-12.8,11,83400,678,1376,311,395,465,166,41800,46500,18800,3480,130,3.6,9,4,96.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-12.8,12,83400,444,1376,300,254,429,116,26400,38700,13900,2210,110,4.1,6,2,96.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-11.7,15,83400,182,1376,314,46,17,44,5100,1200,4900,1070,50,4.1,9,8,64.0,2743,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-9.4,20,83400,5,264,307,0,0,0,0,0,0,0,50,3.1,9,7,48.0,3353,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-8.9,22,83300,0,0,299,0,0,0,0,0,0,0,200,2.6,8,6,32.0,7620,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-7.2,30,83400,0,0,282,0,0,0,0,0,0,0,210,3.6,5,2,32.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-7.8,31,83500,0,0,273,0,0,0,0,0,0,0,190,3.6,3,1,32.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-7.8,36,83400,0,0,260,0,0,0,0,0,0,0,300,3.1,1,0,32.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-7.2,48,83400,0,0,248,0,0,0,0,0,0,0,110,1.5,1,0,32.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.2,46,83400,0,0,250,0,0,0,0,0,0,0,210,2.1,0,0,48.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.8,44,83400,0,0,249,0,0,0,0,0,0,0,200,2.6,0,0,48.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.8,49,83400,0,0,244,0,0,0,0,0,0,0,170,1.5,0,0,48.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-8.3,40,83400,0,0,251,0,0,0,0,0,0,0,230,3.1,0,0,48.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-8.3,44,83400,0,0,247,0,0,0,0,0,0,0,180,3.1,0,0,48.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.8,48,83400,0,57,245,0,7,0,0,0,0,0,100,2.1,0,0,64.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.2,46,83400,140,1375,250,67,462,20,7000,30800,3900,410,160,2.6,0,0,112.0,77777,9,999999999,40,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-7.8,28,83400,404,1375,274,270,792,38,28700,71000,7800,940,150,2.6,0,0,112.0,77777,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-8.9,19,83400,645,1375,289,482,916,53,51000,88700,9300,1340,180,5.2,0,0,112.0,77777,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-10.6,14,83400,843,1375,296,663,976,64,69700,96800,10200,1720,170,4.6,0,0,112.0,77777,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-12.2,10,83300,986,1375,306,794,1007,72,83300,100700,10900,2150,110,3.6,0,0,112.0,77777,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-12.2,10,83200,1063,1375,310,866,1021,76,90600,102300,11300,2490,340,2.6,0,0,112.0,77777,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-11.7,10,83100,1069,1375,316,871,1022,77,91200,102400,11400,2540,50,4.6,0,0,112.0,77777,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-11.1,10,83000,1004,1375,319,773,953,77,80900,95300,11200,2290,20,4.1,1,0,112.0,77777,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-11.1,10,83000,872,1375,325,633,864,85,66100,85700,11600,2020,360,1.5,3,1,112.0,77777,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-11.1,10,83000,682,1375,329,487,839,71,51100,81600,10500,1540,260,7.2,4,2,112.0,77777,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-11.7,10,83000,448,1375,327,226,230,151,23600,21300,16700,3180,260,5.2,8,4,112.0,77777,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-11.7,11,83000,186,1375,327,74,84,63,8000,5400,7200,1330,250,9.3,10,5,64.0,77777,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-13.9,10,83000,6,287,317,1,8,1,0,0,0,0,220,4.1,10,6,32.0,7620,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-11.7,15,83000,0,0,309,0,0,0,0,0,0,0,330,3.1,10,7,32.0,6706,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-11.1,17,83100,0,0,301,0,0,0,0,0,0,0,0,0.0,10,6,32.0,6706,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-11.1,18,83000,0,0,294,0,0,0,0,0,0,0,360,1.5,10,5,32.0,77777,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-12.8,17,83000,0,0,285,0,0,0,0,0,0,0,190,2.1,10,4,32.0,77777,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-11.7,20,83000,0,0,279,0,0,0,0,0,0,0,190,3.6,9,2,32.0,77777,9,999999999,50,0.0710,0,88,0.200,0.0,1.0 +1991,3,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-10.6,24,83000,0,0,274,0,0,0,0,0,0,0,200,4.6,6,2,32.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-11.1,24,82900,0,0,274,0,0,0,0,0,0,0,180,4.1,6,3,32.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-10.6,26,82800,0,0,261,0,0,0,0,0,0,0,230,2.6,2,0,32.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-11.1,26,82800,0,0,259,0,0,0,0,0,0,0,260,2.6,1,0,32.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-10.6,26,82800,0,0,266,0,0,0,0,0,0,0,240,3.1,4,1,32.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-10.6,31,82800,1,103,253,0,12,0,0,0,0,0,220,2.1,0,0,64.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-8.3,36,82800,147,1375,262,67,423,22,6800,26900,3900,430,150,2.6,1,1,112.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-9.4,21,82800,411,1375,294,160,305,69,17400,27100,9300,1250,300,2.6,8,4,96.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-11.1,17,82700,651,1375,296,453,625,156,47900,62100,18400,3210,0,0.0,7,4,96.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-10.0,15,82700,849,1375,312,567,638,173,59200,63800,19700,4110,190,2.6,9,4,96.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-10.0,12,82500,992,1375,329,728,786,161,77700,80200,19700,4760,210,5.2,10,5,96.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-11.4,10,82400,1068,1375,335,787,719,228,82600,72600,26000,7500,240,6.7,10,5,96.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-12.8,8,82300,1074,1375,345,598,461,237,65100,48200,27400,8040,180,6.2,10,7,96.0,7620,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-13.9,8,82300,1009,1375,344,684,322,447,72200,34600,46800,14550,240,6.2,10,8,96.0,7620,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-14.4,7,82200,877,1375,343,417,390,168,45600,40300,19800,4110,210,7.7,10,7,96.0,7620,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-16.7,6,82200,687,1375,347,183,39,164,20200,3800,18300,5150,260,9.8,10,9,96.0,7620,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-16.7,6,82300,452,1375,330,184,227,109,19700,21200,12700,2140,270,7.7,9,7,96.0,7620,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-16.7,7,82300,191,1375,327,69,43,63,7500,3200,7100,1430,260,4.6,10,8,96.0,7620,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-15.0,9,82400,7,309,308,1,14,1,0,0,0,0,220,4.1,5,4,64.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-14.4,12,82400,0,0,295,0,0,0,0,0,0,0,210,3.6,6,3,32.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-13.9,13,82500,0,0,286,0,0,0,0,0,0,0,180,3.6,4,1,32.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-10.6,19,82500,0,0,278,0,0,0,0,0,0,0,180,4.6,3,0,32.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-11.1,18,82500,0,0,278,0,0,0,0,0,0,0,180,3.1,2,0,32.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-8.9,29,82400,0,0,265,0,0,0,0,0,0,0,170,2.6,1,0,32.0,77777,9,999999999,50,0.0720,0,88,0.200,0.0,1.0 +1991,3,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-8.9,26,82400,0,0,271,0,0,0,0,0,0,0,230,3.1,0,0,32.0,77777,9,999999999,50,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.1,29,82300,0,0,283,0,0,0,0,0,0,0,220,9.8,0,0,32.0,77777,9,999999999,50,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-6.1,30,82300,0,0,281,0,0,0,0,0,0,0,220,9.3,0,0,32.0,77777,9,999999999,50,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-5.0,34,82400,0,0,279,0,0,0,0,0,0,0,230,6.7,0,0,32.0,77777,9,999999999,50,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-5.6,33,82300,0,0,277,0,0,0,0,0,0,0,210,6.2,0,0,32.0,77777,9,999999999,50,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-5.6,36,82400,1,126,272,0,5,0,0,0,0,0,230,5.2,0,0,80.0,77777,9,999999999,50,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-5.0,37,82400,154,1374,275,69,367,28,7100,21800,4600,500,240,3.1,0,0,96.0,77777,9,999999999,50,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-4.4,33,82400,418,1374,285,268,713,51,28000,64100,8400,1050,210,8.2,0,0,80.0,77777,9,999999999,60,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-4.4,29,82300,658,1374,306,438,633,135,45300,61400,15900,2730,220,6.7,3,3,96.0,77777,9,999999999,60,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-6.1,22,82300,856,1374,304,615,819,104,65000,82000,13800,2520,210,8.2,1,1,96.0,77777,9,999999999,60,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-7.2,19,82200,997,1374,305,758,913,94,78800,91100,12400,2510,240,7.7,1,1,96.0,77777,9,999999999,60,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-6.1,20,82100,1074,1374,316,817,797,194,86900,81200,23200,6590,200,6.7,2,2,96.0,77777,9,999999999,60,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-6.7,18,82000,1079,1374,326,449,227,271,49800,24700,30400,8970,210,7.2,6,5,96.0,7620,9,999999999,60,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-7.2,17,81800,1013,1374,330,587,320,350,63200,34500,37700,10940,190,4.6,7,6,96.0,2438,9,999999999,60,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-9.4,14,81800,881,1374,327,484,442,201,52100,45600,22800,5020,210,5.7,8,6,96.0,2438,9,999999999,60,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-7.2,22,81900,691,1374,338,180,0,180,20700,0,20700,7410,50,5.2,10,10,64.0,3048,9,999999999,69,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-7.8,21,81800,457,1374,335,85,0,85,9900,0,9900,3450,30,5.2,10,10,64.0,2591,9,999999999,69,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-3.9,35,81800,195,1374,329,28,0,28,3300,0,3300,1060,310,5.2,10,10,64.0,2591,9,999999999,69,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-2.2,43,81700,8,332,326,0,0,0,0,0,0,0,190,2.6,10,10,32.0,1829,9,999999999,69,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-1.7,48,81700,0,0,321,0,0,0,0,0,0,0,340,3.1,10,10,32.0,2134,9,999999999,69,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-1.7,48,81700,0,0,321,0,0,0,0,0,0,0,340,5.7,10,10,24.0,1829,9,999999999,69,0.0730,0,88,0.200,0.0,1.0 +1991,3,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.0,76,81700,0,0,303,0,0,0,0,0,0,0,340,8.8,10,10,1.6,366,9,999999999,69,0.0730,0,88,0.200,3.0,1.0 +1991,3,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.0,96,81800,0,0,289,0,0,0,0,0,0,0,320,10.3,10,10,1.2,91,9,999999999,80,0.0730,0,88,0.200,3.0,1.0 +1991,3,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.0,96,81900,0,0,289,0,0,0,0,0,0,0,330,8.2,10,10,1.2,122,9,999999999,80,0.0730,0,88,0.200,1.0,1.0 +1991,3,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-0.6,91,81900,0,0,289,0,0,0,0,0,0,0,350,7.2,10,10,32.0,152,9,999999999,80,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-0.6,95,82000,0,0,286,0,0,0,0,0,0,0,10,10.8,10,10,32.0,305,9,999999999,80,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.2,83,82200,0,0,284,0,0,0,0,0,0,0,30,7.2,10,10,32.0,2438,9,999999999,80,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-2.2,80,82300,0,0,287,0,0,0,0,0,0,0,50,2.1,10,10,19.2,1676,9,999999999,80,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.8,79,82500,0,0,284,0,0,0,0,0,0,0,0,0.0,10,10,32.0,1219,9,999999999,80,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-2.8,83,82600,2,172,281,0,0,0,0,0,0,0,70,2.6,10,10,32.0,6706,9,999999999,80,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-3.9,76,82700,161,1373,280,35,0,35,3900,0,3900,1200,100,3.1,10,10,48.0,6706,9,999999999,80,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-3.3,76,82800,425,1373,275,175,42,162,19100,3900,17900,3960,160,4.1,10,9,64.0,6706,9,999999999,80,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-2.8,73,82800,664,1373,270,380,370,200,40500,38100,22000,4480,170,4.1,7,7,96.0,6706,9,999999999,80,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.7,66,82900,862,1373,273,551,638,150,58200,64400,17700,3700,190,3.1,3,3,96.0,77777,9,999999999,69,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-2.8,42,82800,1003,1373,285,750,882,106,77800,88000,13400,2660,170,3.6,1,1,96.0,77777,9,999999999,69,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-7.2,29,82700,1079,1373,280,830,966,70,87100,96900,10700,2430,300,7.7,1,1,96.0,77777,9,999999999,69,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-8.3,25,82700,1084,1373,287,822,939,80,85900,94100,11400,2680,350,6.2,2,2,96.0,77777,9,999999999,69,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-7.2,29,82700,1018,1373,287,756,795,166,80700,81200,20400,5130,70,2.6,3,3,96.0,77777,9,999999999,69,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-8.3,23,82600,885,1373,292,647,881,78,67600,87600,11000,1990,220,5.2,2,2,96.0,77777,9,999999999,69,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-7.8,27,82600,695,1373,288,456,697,103,48400,69200,13300,2250,190,3.1,3,3,96.0,77777,9,999999999,60,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-10.6,22,82700,461,1373,281,235,515,62,24900,47400,8900,1230,180,2.6,2,2,96.0,77777,9,999999999,60,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-9.4,24,82700,200,1373,278,101,518,26,10400,37100,5000,530,300,6.7,1,1,96.0,77777,9,999999999,60,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-10.0,26,82800,9,378,264,2,62,1,0,0,0,0,270,6.2,0,0,64.0,77777,9,999999999,60,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-9.4,30,82900,0,0,260,0,0,0,0,0,0,0,300,6.2,0,0,48.0,77777,9,999999999,60,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-9.4,34,83000,0,0,259,0,0,0,0,0,0,0,310,4.1,1,1,112.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.8,44,83000,0,0,262,0,0,0,0,0,0,0,60,2.6,5,4,48.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-9.4,35,83000,0,0,260,0,0,0,0,0,0,0,270,2.1,2,2,48.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-9.4,38,83000,0,0,258,0,0,0,0,0,0,0,40,1.5,3,3,48.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.2,52,83000,0,0,244,0,0,0,0,0,0,0,150,2.6,0,0,48.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-4.4,73,82900,0,0,242,0,0,0,0,0,0,0,230,2.1,0,0,48.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.0,72,82900,0,0,240,0,0,0,0,0,0,0,180,2.6,0,0,48.0,77777,9,999999999,40,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-7.2,60,82900,0,0,238,0,0,0,0,0,0,0,170,3.1,0,0,48.0,77777,9,999999999,40,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-7.8,57,82900,0,0,238,0,0,0,0,0,0,0,200,4.1,0,0,48.0,77777,9,999999999,40,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.2,65,82900,3,194,234,0,14,0,0,0,0,0,200,3.1,0,0,96.0,77777,9,999999999,40,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-7.8,54,83000,168,1372,239,81,441,27,8100,29300,4600,500,180,3.1,0,0,128.0,77777,9,999999999,40,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-8.3,40,83000,432,1372,251,286,759,47,30100,68900,8400,1040,190,2.6,0,0,112.0,77777,9,999999999,40,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-10.6,26,83000,671,1372,261,498,886,65,52300,86100,10100,1490,360,2.1,0,0,112.0,77777,9,999999999,40,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-10.0,25,83000,868,1372,268,678,948,78,70900,94100,11200,1950,20,3.1,0,0,112.0,77777,9,999999999,40,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-9.4,25,83000,1009,1372,270,809,981,87,84300,98000,12000,2470,10,3.6,0,0,112.0,77777,9,999999999,40,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-8.9,25,82900,1084,1372,273,879,996,92,91500,99800,12500,2920,90,5.2,0,0,112.0,77777,9,999999999,40,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-10.6,20,82900,1089,1372,276,883,996,92,91900,99800,12500,2950,40,5.2,0,0,112.0,77777,9,999999999,40,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-11.7,19,82800,1023,1372,272,821,983,88,85600,98300,12100,2540,120,3.1,0,0,96.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-11.1,18,82800,890,1372,278,698,953,80,73000,94700,11400,2020,110,3.6,0,0,96.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-11.7,17,82800,700,1372,277,523,895,67,55000,87400,10300,1550,110,2.1,0,0,96.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-11.7,18,82800,465,1372,275,314,780,49,33100,71900,8600,1100,70,3.6,0,0,80.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-12.2,19,82900,204,1372,270,105,504,30,10700,36100,5300,580,100,2.6,0,0,64.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-8.9,29,82900,10,400,270,2,28,1,0,0,0,0,150,2.6,1,1,48.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-7.8,35,82900,0,0,262,0,0,0,0,0,0,0,190,2.1,0,0,32.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-10.0,26,82900,0,0,266,0,0,0,0,0,0,0,260,6.2,0,0,32.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-9.4,33,82900,0,0,256,0,0,0,0,0,0,0,200,3.1,0,0,32.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-8.3,39,82900,0,0,253,0,0,0,0,0,0,0,190,2.6,0,0,32.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.7,52,82800,0,0,246,0,0,0,0,0,0,0,180,2.6,0,0,32.0,77777,9,999999999,50,0.0740,0,88,0.200,0.0,1.0 +1991,3,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.2,50,82800,0,0,246,0,0,0,0,0,0,0,190,3.1,0,0,32.0,77777,9,999999999,50,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.7,54,82700,0,0,245,0,0,0,0,0,0,0,200,3.1,0,0,32.0,77777,9,999999999,50,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.8,48,82700,0,0,253,0,0,0,0,0,0,0,190,2.1,4,2,32.0,77777,9,999999999,50,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.2,50,82700,0,0,263,0,0,0,0,0,0,0,200,2.6,8,6,32.0,3962,9,999999999,50,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.7,50,82600,0,0,269,0,0,0,0,0,0,0,170,2.6,7,7,32.0,3962,9,999999999,50,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-7.2,44,82600,4,240,277,0,1,0,0,0,0,0,0,0.0,8,8,64.0,3962,9,999999999,50,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-7.8,42,82600,175,1371,272,51,64,42,5500,4000,5000,880,180,2.6,9,7,96.0,3962,9,999999999,50,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-7.2,41,82700,439,1371,296,112,0,112,12600,0,12600,4160,180,2.1,10,10,96.0,6096,9,999999999,50,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-7.8,35,82600,677,1371,302,186,0,186,21200,0,21200,7500,170,2.6,10,10,96.0,3048,9,999999999,50,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.7,37,82700,874,1371,297,450,217,312,49000,22800,34400,8760,70,3.1,10,9,80.0,1829,9,999999999,50,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-2.8,58,82800,1014,1371,303,231,0,231,27400,0,27400,10870,10,7.2,10,10,64.0,2743,9,999999999,60,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.3,55,82900,1089,1371,302,249,0,249,29700,0,29700,11830,40,7.7,10,10,16.0,2286,9,999999999,60,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-0.6,88,83000,1094,1371,291,175,0,175,21500,0,21500,8870,360,8.2,10,10,1.0,122,9,999999999,60,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-0.6,91,83100,1027,1371,289,164,0,164,20000,0,20000,8250,30,5.2,10,10,2.8,183,9,999999999,60,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-0.6,81,83100,894,1371,295,202,0,202,23800,0,23800,9250,30,5.7,10,10,19.2,914,9,999999999,60,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-2.8,63,83200,704,1371,298,155,0,155,18000,0,18000,6700,10,7.2,10,10,32.0,1829,9,999999999,60,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-3.9,62,83300,470,1371,284,160,34,148,17500,3200,16400,3920,10,8.2,10,9,48.0,4267,9,999999999,60,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.6,62,83500,208,1371,260,93,88,79,9800,6000,8900,1680,360,8.2,10,6,48.0,4267,9,999999999,60,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.7,60,83500,11,423,257,2,8,2,0,0,0,0,30,10.3,9,6,32.0,1829,9,999999999,60,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.1,66,83800,0,0,276,0,0,0,0,0,0,0,360,8.2,10,10,32.0,853,9,999999999,60,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-5.0,76,83800,0,0,275,0,0,0,0,0,0,0,10,6.7,10,10,6.4,914,9,999999999,60,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.9,91,83900,0,0,271,0,0,0,0,0,0,0,20,6.2,10,10,2.4,457,9,999999999,60,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-4.4,87,83900,0,0,271,0,0,0,0,0,0,0,20,4.1,10,10,3.2,610,9,999999999,60,0.0750,0,88,0.200,0.0,1.0 +1991,3,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.9,91,84000,0,0,271,0,0,0,0,0,0,0,0,0.0,10,10,8.0,1067,9,999999999,60,0.0750,0,88,0.200,0.0,1.0 +1991,3,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.9,91,84000,0,0,271,0,0,0,0,0,0,0,0,0.0,10,10,9.6,1250,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.9,87,84000,0,0,274,0,0,0,0,0,0,0,180,2.1,10,10,9.6,1829,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.9,91,83900,0,0,271,0,0,0,0,0,0,0,210,2.1,10,10,12.8,1829,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-4.4,91,83900,0,0,233,0,0,0,0,0,0,0,200,2.6,0,0,32.0,77777,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.0,91,83900,0,0,230,0,0,0,0,0,0,0,190,3.1,0,0,32.0,77777,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.1,86,84000,5,286,228,1,47,0,0,0,0,0,190,3.6,0,0,64.0,77777,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.7,72,84000,182,1371,233,96,559,22,10200,40400,4800,510,200,4.6,0,0,96.0,77777,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.7,60,84000,445,1371,240,305,824,37,32400,75400,7800,970,200,4.6,0,0,112.0,77777,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.1,53,84000,684,1371,249,515,929,51,54500,90700,9100,1350,190,4.6,0,0,112.0,77777,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-6.1,44,84000,880,1371,259,693,982,62,73000,97700,10100,1760,200,4.1,0,0,112.0,77777,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-8.3,29,84000,1020,1371,270,821,1010,69,86200,101100,10700,2200,230,1.5,0,0,104.0,77777,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-8.3,26,83900,1094,1371,276,890,1023,72,93200,102600,11100,2550,170,2.6,0,0,104.0,77777,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-9.4,21,83900,1098,1371,281,894,1024,73,93700,102700,11100,2600,260,2.1,0,0,96.0,77777,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-10.0,19,83900,1031,1371,283,833,1014,69,87400,101600,10800,2240,40,2.1,0,0,96.0,77777,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-8.9,20,83900,898,1371,286,711,988,63,74900,98400,10200,1800,60,3.6,0,0,96.0,77777,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-9.4,21,83900,708,1371,281,538,940,52,56900,92100,9200,1390,30,5.2,0,0,96.0,77777,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-10.0,20,84000,474,1371,281,330,843,39,35100,78100,8000,1020,70,3.1,0,0,96.0,77777,9,999999999,60,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-10.0,21,84000,213,1371,276,118,610,24,12600,46200,5400,570,60,2.1,0,0,96.0,77777,9,999999999,50,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-8.3,28,84000,12,445,272,4,81,1,0,0,0,0,60,1.5,0,0,48.0,77777,9,999999999,50,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.1,39,84100,0,0,265,0,0,0,0,0,0,0,100,3.1,0,0,32.0,77777,9,999999999,50,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.0,48,84200,0,0,260,0,0,0,0,0,0,0,150,2.6,0,0,32.0,77777,9,999999999,50,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-5.6,49,84200,0,0,255,0,0,0,0,0,0,0,180,2.6,0,0,32.0,77777,9,999999999,50,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-5.0,54,84300,0,0,254,0,0,0,0,0,0,0,190,3.6,0,0,32.0,77777,9,999999999,50,0.0760,0,88,0.200,0.0,1.0 +1991,3,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.6,58,84300,0,0,247,0,0,0,0,0,0,0,190,2.6,0,0,32.0,77777,9,999999999,50,0.0760,0,88,0.200,0.0,1.0 +1991,3,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-5.6,60,84300,0,0,246,0,0,0,0,0,0,0,170,2.1,0,0,32.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-5.6,60,84300,0,0,246,0,0,0,0,0,0,0,160,2.6,0,0,32.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.6,58,84200,0,0,247,0,0,0,0,0,0,0,180,4.6,0,0,32.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.1,55,84200,0,0,247,0,0,0,0,0,0,0,180,4.6,0,0,32.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.1,57,84200,0,0,245,0,0,0,0,0,0,0,190,3.1,0,0,32.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.7,54,84300,6,308,245,0,5,0,0,0,0,0,190,3.6,0,0,96.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-7.8,41,84300,189,1370,253,82,306,40,8300,19800,5600,700,200,5.2,0,0,96.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-7.8,31,84300,452,1370,268,281,634,72,29400,57700,10300,1390,190,3.6,0,0,96.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-7.8,25,84300,690,1370,281,493,783,99,51100,76400,12500,2010,150,3.1,0,0,112.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-9.4,18,84300,886,1370,290,675,860,119,70800,85900,15100,2870,170,2.1,0,0,112.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-10.0,15,84300,1025,1370,299,807,901,132,85400,90800,17200,3910,160,3.1,0,0,112.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-10.0,14,84200,1099,1370,304,877,919,138,90000,91800,16200,3590,170,3.6,0,0,112.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-10.0,13,84200,1103,1370,308,880,920,139,90500,91900,16300,3630,150,2.1,0,0,112.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-10.0,12,84100,1036,1370,310,817,904,133,86500,91200,17400,4010,200,2.1,0,0,112.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-10.0,12,84000,902,1370,315,691,866,121,72600,86600,15400,2980,80,1.5,0,0,112.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-10.0,12,84000,712,1370,315,514,794,101,53300,77700,12700,2080,120,4.6,0,0,112.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-9.4,13,84000,478,1370,311,304,655,75,31800,60500,10600,1460,120,4.1,0,0,96.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-8.9,15,84000,217,1370,305,100,355,44,10200,24500,6300,780,120,3.1,0,0,96.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-7.8,19,84000,14,468,296,2,11,2,0,0,0,0,150,4.6,1,0,64.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-7.8,22,84000,0,0,288,0,0,0,0,0,0,0,160,4.1,0,0,32.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.7,27,84100,0,0,282,0,0,0,0,0,0,0,180,7.2,1,0,32.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.2,-5.8,31,84100,0,0,283,0,0,0,0,0,0,0,180,6.5,3,1,32.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.7,-5.0,33,84000,0,0,278,0,0,0,0,0,0,0,170,5.7,5,1,32.0,77777,9,999999999,50,0.0770,0,88,0.200,0.0,1.0 +1991,3,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.3,-4.2,36,84000,0,0,273,0,0,0,0,0,0,0,190,5.0,4,1,32.0,77777,9,999999999,40,0.0770,0,88,0.200,0.0,1.0 +1999,4,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.9,-3.4,64,81400,0,0,296,0,0,0,0,0,0,0,340,4.3,9,9,16.0,6096,9,999999999,80,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.5,-2.6,75,81400,0,0,259,0,0,0,0,0,0,0,350,3.6,0,0,16.0,77777,9,999999999,80,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,-1.8,81,81300,0,0,254,0,0,0,0,0,0,0,350,2.8,0,0,16.0,77777,9,999999999,80,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.1,87,81400,0,0,264,0,0,0,0,0,0,0,30,2.1,5,5,16.0,77777,9,999999999,80,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.7,87,81900,0,0,285,0,0,0,0,0,0,0,30,3.1,10,10,16.0,6096,9,999999999,80,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.1,87,81600,8,354,288,0,0,0,0,0,0,0,40,4.1,10,10,16.0,244,9,999999999,80,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,-1.0,80,81800,196,1369,294,24,0,24,2800,0,2800,930,10,3.6,10,10,16.1,300,9,999999999,80,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-1.1,84,81800,459,1369,290,59,0,59,7000,0,7000,2550,30,4.1,10,10,16.0,305,9,999999999,80,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-1.1,81,81900,697,1369,293,87,0,87,10600,0,10600,4130,30,4.6,10,10,16.0,305,9,999999999,89,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.2,74,82000,892,1369,292,109,0,109,13500,0,13500,5510,10,5.7,10,10,16.0,366,9,999999999,89,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-1.7,77,82300,1031,1369,292,174,0,174,21200,0,21200,8690,20,5.7,10,10,16.0,366,9,999999999,89,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-2.2,71,82100,1105,1369,294,182,0,182,22300,0,22300,9190,20,4.1,10,10,16.0,427,9,999999999,89,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-2.2,71,82200,1108,1369,294,143,0,143,17800,0,17800,7460,360,3.6,10,10,16.0,488,9,999999999,89,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.1,75,82200,1040,1369,297,315,36,288,34800,3700,32000,11230,30,4.6,10,10,16.0,427,9,999999999,89,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.1,75,82300,907,1369,297,120,0,120,14700,0,14700,6030,20,3.6,10,10,16.0,427,9,999999999,89,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.1,75,82300,716,1369,297,88,0,88,10700,0,10700,4220,360,3.1,10,10,16.0,427,9,999999999,89,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-1.1,81,82400,482,1369,293,51,0,51,6200,0,6200,2280,350,2.6,10,10,2.4,488,9,999999999,89,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.1,87,82400,221,1369,288,20,0,20,2400,0,2400,820,350,3.6,10,10,1.6,274,9,999999999,89,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-1.1,96,82300,15,491,283,0,0,0,0,0,0,0,10,6.7,10,10,2.4,61,9,999999999,89,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-1.7,95,82400,0,0,280,0,0,0,0,0,0,0,20,7.7,10,10,2.4,122,9,999999999,89,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-2.2,96,82400,0,0,277,0,0,0,0,0,0,0,30,6.2,10,10,1.6,91,9,999999999,89,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.9,91,82400,0,0,271,0,0,0,0,0,0,0,10,7.2,10,10,8.0,91,9,999999999,89,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-4.4,91,82600,0,0,269,0,0,0,0,0,0,0,10,7.2,10,10,4.8,122,9,999999999,89,0.0730,0,88,0.190,0.0,1.0 +1999,4,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.0,91,82300,0,0,266,0,0,0,0,0,0,0,360,5.2,10,10,1.2,122,9,999999999,100,0.0730,0,88,0.190,0.0,1.0 +1999,4,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.0,-5.0,92,82300,0,0,265,0,0,0,0,0,0,0,360,5.1,10,10,1.2,15,9,999999999,100,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.0,-6.0,84,82400,0,0,264,0,0,0,0,0,0,0,360,4.6,10,10,4.0,450,9,999999999,100,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.0,95,82400,0,0,264,0,0,0,0,0,0,0,340,5.2,10,10,3.2,762,9,999999999,100,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-5.6,95,82400,0,0,261,0,0,0,0,0,0,0,350,5.7,10,10,3.2,91,9,999999999,100,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-5.6,95,82800,0,0,261,0,0,0,0,0,0,0,350,5.2,10,10,3.2,122,9,999999999,100,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-6.1,96,82500,10,376,258,0,0,0,0,0,0,0,10,4.6,10,10,3.2,122,9,999999999,100,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.0,-6.0,100,82400,203,1368,257,46,0,46,5200,0,5200,1590,10,4.6,10,10,3.2,120,9,999999999,100,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.1,91,82500,466,1368,260,81,0,81,9400,0,9400,3350,360,5.2,10,10,2.0,244,9,999999999,89,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9?9?9,-4.4,-6.1,86,82600,703,1368,263,107,0,107,12800,0,12800,4960,360,4.1,10,10,2.0,549,9,999999999,89,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.6,86,82600,897,1368,265,134,0,134,16300,0,16300,6620,10,3.1,10,10,2.4,549,9,999999999,89,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.6,86,82800,1036,1368,265,149,0,149,18300,0,18300,7620,50,4.6,10,10,2.4,549,9,999999999,89,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.7,75,82500,1109,1368,266,213,0,213,25800,0,25800,10500,40,3.6,10,10,16.0,396,9,999999999,89,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.7,75,82500,1112,1368,266,179,0,179,22000,0,22000,9080,40,2.6,10,10,14.4,488,9,999999999,89,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-7.2,72,82400,1045,1368,266,152,0,152,18700,0,18700,7770,360,3.6,10,10,16.0,579,9,999999999,89,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.7,79,82300,911,1368,264,120,0,120,14700,0,14700,6040,350,3.6,10,10,16.0,396,9,999999999,89,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.6,90,82300,720,1368,263,88,0,88,10700,0,10700,4230,40,4.1,10,10,0.8,183,9,999999999,80,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.6,90,82600,486,1368,263,56,0,56,6800,0,6800,2490,70,1.5,10,10,0.4,152,9,999999999,80,0.0740,0,88,0.190,1.0,1.0 +1999,4,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.0,92,82300,226,1368,260,20,0,20,2400,0,2400,820,70,2.1,10,10,2.4,1800,9,999999999,80,0.0740,0,88,0.190,1.0,1.0 +1999,4,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-6.7,91,82300,17,513,257,0,0,0,0,0,0,0,100,3.6,10,10,16.0,305,9,999999999,80,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.0,-7.0,92,82300,0,0,256,0,0,0,0,0,0,0,150,2.1,10,10,4.0,1500,9,999999999,80,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-6.7,95,82300,0,0,256,0,0,0,0,0,0,0,120,1.5,10,10,6.4,1524,9,999999999,80,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-7.8,91,82100,0,0,252,0,0,0,0,0,0,0,120,2.1,10,10,16.0,1524,9,999999999,80,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-7.2,96,82400,0,0,253,0,0,0,0,0,0,0,120,2.6,10,10,16.0,1402,9,999999999,80,0.0740,0,88,0.190,0.0,1.0 +1999,4,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.2,91,82000,0,0,255,0,0,0,0,0,0,0,100,2.6,10,10,16.0,1280,9,999999999,80,0.0740,0,88,0.190,0.0,1.0 +1999,4,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.2,91,81900,0,0,255,0,0,0,0,0,0,0,120,2.1,10,10,16.0,1158,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.2,91,81800,0,0,255,0,0,0,0,0,0,0,90,3.1,10,10,16.0,1036,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-9.4,96,81600,0,0,219,0,0,0,0,0,0,0,100,3.6,3,3,16.0,77777,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.0,-8.0,92,81700,0,0,244,0,0,0,0,0,0,0,100,4.1,9,9,16.1,660,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-7.8,91,81900,0,0,252,0,0,0,0,0,0,0,120,3.1,10,10,16.0,610,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-7.8,91,81700,12,422,252,0,0,0,0,0,0,0,60,2.1,10,10,11.2,244,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-6.7,91,81800,210,1367,257,22,0,22,2600,0,2600,880,0,0.0,10,10,11.2,549,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.7,86,81800,472,1367,253,52,0,52,6300,0,6300,2310,290,3.1,9,9,11.2,914,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.6,86,81800,709,1367,258,87,0,87,10600,0,10600,4160,320,3.6,9,9,11.2,914,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.1,79,81900,903,1367,260,121,0,121,14800,0,14800,6070,290,3.1,9,9,14.4,213,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.1,79,82000,1041,1367,260,335,24,317,39000,2200,37300,13900,240,2.1,9,9,12.8,6096,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-5.6,75,81900,1114,1367,264,456,84,387,50200,8700,43200,15680,190,2.6,9,9,11.2,6096,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.6,62,82000,1117,1367,273,602,270,381,65300,29300,41400,14230,150,2.1,9,9,16.0,6096,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-5.0,52,82100,1049,1367,287,608,346,341,65900,37400,37100,11190,90,3.6,9,9,16.0,6096,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-5.6,49,82200,915,1367,287,524,351,289,56600,37700,31300,7920,110,2.6,9,9,16.0,6096,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-3.9,57,82200,724,1367,288,401,335,222,42800,35000,24200,5170,120,4.6,9,9,16.0,6096,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-4.4,59,82100,491,1367,283,219,184,153,23800,17600,17400,3510,150,5.7,9,9,16.0,6706,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.7,48,82200,230,1367,281,129,371,67,13200,25400,8900,1240,160,3.6,9,9,16.0,6096,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.0,69,82200,18,536,271,0,0,0,0,0,0,0,150,3.1,9,9,16.0,6096,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-5.0,79,82200,0,0,265,0,0,0,0,0,0,0,110,3.1,9,9,16.0,6706,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-4.4,91,82200,0,0,247,0,0,0,0,0,0,0,120,3.6,5,5,16.0,77777,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.1,83,82400,0,0,237,0,0,0,0,0,0,0,160,2.6,2,2,16.0,77777,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.7,79,82100,0,0,239,0,0,0,0,0,0,0,220,1.5,3,3,16.0,77777,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.6,86,82100,0,0,237,0,0,0,0,0,0,0,200,1.5,2,2,16.0,77777,9,999999999,50,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-4.4,83,82200,0,0,245,0,0,0,0,0,0,0,230,5.7,2,2,16.0,77777,9,999999999,50,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.6,-5.2,80,82100,0,0,242,0,0,0,0,0,0,0,230,4.6,2,2,16.0,77777,9,999999999,50,0.0750,0,88,0.190,999.0,99.0 +1999,4,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.1,76,82100,0,0,241,0,0,0,0,0,0,0,230,3.6,2,2,16.0,77777,9,999999999,50,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.7,65,82200,0,0,265,0,0,0,0,0,0,0,220,4.6,9,9,16.0,6096,9,999999999,50,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-7.8,65,82400,0,0,260,0,0,0,0,0,0,0,160,3.6,9,9,16.0,3353,9,999999999,50,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-8.3,75,82100,14,467,251,0,0,0,0,0,0,0,150,2.6,9,9,16.0,6096,9,999999999,50,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.1,66,82400,217,1367,268,99,144,76,10600,10000,9000,1610,190,4.6,9,9,16.0,6096,9,999999999,50,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.6,62,82400,479,1367,273,301,534,113,31600,49500,14200,2150,210,3.1,9,9,16.0,2743,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.7,50,82500,715,1367,279,480,602,164,51200,60800,19300,3510,250,2.6,9,9,16.0,6096,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-6.7,43,82600,909,1367,288,676,783,154,71600,79400,18700,4060,200,2.1,9,9,16.0,6706,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-7.2,33,82400,1046,1367,301,825,869,158,85800,87000,19000,4640,150,3.6,9,9,16.0,6096,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-7.8,29,82700,1119,1367,305,863,854,162,90400,85800,19900,5660,150,5.7,9,9,16.0,7620,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-7.2,28,82600,1121,1367,311,811,695,239,85200,70300,27400,9000,160,7.2,9,9,16.0,7620,9,999999999,60,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-8.3,24,82600,1053,1367,315,794,776,195,84100,78900,23100,6400,180,6.7,9,9,16.0,7620,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-7.8,25,82600,919,1367,315,570,428,281,59500,44100,29800,7600,160,7.2,9,9,16.0,7620,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-5.0,35,82500,728,1367,320,318,118,256,35000,11900,28700,7650,180,11.8,10,10,16.0,7620,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-2.2,54,82300,495,1367,311,158,29,148,17400,2700,16400,4030,170,9.3,10,10,16.0,7620,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-2.2,63,82400,234,1367,301,65,37,59,7200,2900,6700,1460,160,9.3,10,10,16.0,7620,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-2.2,71,82300,20,558,294,0,0,0,0,0,0,0,160,6.7,10,10,16.0,7620,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-1.1,84,82300,0,0,290,0,0,0,0,0,0,0,160,4.6,10,10,16.0,7620,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-1.1,84,82300,0,0,282,0,0,0,0,0,0,0,160,3.6,9,9,16.0,3658,9,999999999,80,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.7,83,82200,0,0,280,0,0,0,0,0,0,0,140,3.1,9,9,16.0,3353,9,999999999,80,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-0.6,84,82300,0,0,293,0,0,0,0,0,0,0,160,2.1,10,10,16.0,1372,9,999999999,80,0.0750,0,88,0.190,0.0,1.0 +1999,4,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-0.6,88,82100,0,0,291,0,0,0,0,0,0,0,130,2.6,10,10,11.2,671,9,999999999,80,0.0750,0,88,0.190,0.0,1.0 +1999,4,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.1,87,82100,0,0,288,0,0,0,0,0,0,0,70,1.5,10,10,9.6,914,9,999999999,80,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.0,92,82000,0,0,286,0,0,0,0,0,0,0,10,3.1,10,10,3.2,30,9,999999999,80,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.1,91,82000,0,0,286,0,0,0,0,0,0,0,340,4.6,10,10,3.6,30,9,999999999,89,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9?9?9,0.0,-1.1,91,82100,0,0,286,0,0,0,0,0,0,0,340,8.2,10,10,3.6,30,9,999999999,89,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-0.6,95,82300,0,0,286,0,0,0,0,0,0,0,340,7.2,10,10,0.4,30,9,999999999,89,0.0760,0,88,0.190,1.0,1.0 +1999,4,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.1,91,82200,16,489,286,0,0,0,0,0,0,0,340,7.2,10,10,4.0,30,9,999999999,89,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.1,91,82300,224,1366,278,107,209,72,11000,13900,8700,1420,10,6.7,10,9,11.2,6096,9,999999999,89,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.1,91,82400,485,1366,278,241,178,178,25900,16900,19900,4080,360,3.6,10,9,14.4,6096,9,999999999,80,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-0.6,78,82500,721,1366,274,326,123,261,35800,12400,29200,7710,10,4.1,8,5,16.0,77777,9,999999999,80,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-1.7,58,82700,914,1366,284,733,789,203,76100,79000,23100,5190,20,8.2,7,5,16.0,77777,9,999999999,80,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-2.8,48,82600,1051,1366,289,844,972,94,87700,97300,12600,2800,10,4.6,8,5,16.0,77777,9,999999999,80,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-3.9,40,82700,1123,1366,293,905,956,117,93400,95700,14400,3660,10,4.1,8,5,16.0,77777,9,999999999,80,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-4.4,33,82800,1125,1366,302,918,935,146,94100,93400,16900,3980,10,4.6,8,5,16.0,77777,9,999999999,80,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.1,29,82900,1057,1366,300,841,962,95,87300,96300,12600,2840,350,2.6,7,5,16.0,77777,9,999999999,80,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-7.2,25,82900,923,1366,301,712,915,93,74000,91000,12400,2240,320,3.6,8,5,16.0,77777,9,999999999,69,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-7.2,25,82900,732,1366,301,522,765,111,55300,76500,14200,2490,0,0.0,7,5,16.0,77777,9,999999999,69,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-7.2,25,82600,499,1366,301,333,719,70,34300,66800,9800,1360,180,2.1,8,5,16.0,77777,9,999999999,69,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-4.4,37,82900,238,1366,294,135,515,46,13900,37100,7400,820,110,5.2,7,5,16.0,77777,9,999999999,69,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-3.3,53,82900,21,580,280,0,0,0,0,0,0,0,120,4.1,8,5,16.0,77777,9,999999999,69,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-3.9,55,82900,0,0,275,0,0,0,0,0,0,0,130,2.6,7,5,16.0,77777,9,999999999,69,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.8,70,82900,0,0,252,0,0,0,0,0,0,0,150,5.2,0,0,16.0,77777,9,999999999,69,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-2.8,73,82800,0,0,250,0,0,0,0,0,0,0,150,4.6,0,0,16.0,77777,9,999999999,69,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.3,73,83000,0,0,248,0,0,0,0,0,0,0,120,2.6,0,0,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.9,69,82700,0,0,247,0,0,0,0,0,0,0,190,3.1,0,0,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.8,65,82800,0,0,256,0,0,0,0,0,0,0,220,6.7,0,0,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-2.2,71,82700,0,0,254,0,0,0,0,0,0,0,230,6.2,0,0,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-3.3,65,82700,0,0,253,0,0,0,0,0,0,0,240,5.2,0,0,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-3.9,67,82700,0,0,249,0,0,0,0,0,0,0,260,3.1,0,0,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-4.4,66,83000,0,0,247,0,0,0,0,0,0,0,240,4.1,0,0,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-4.4,69,82800,18,535,259,0,0,0,0,0,0,0,270,3.1,6,5,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-3.3,67,83000,231,1365,267,136,377,72,13700,25800,9300,1350,250,3.6,6,5,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-2.2,61,83200,492,1365,278,342,717,84,35700,66500,11700,1620,360,3.6,6,5,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-2.8,48,83300,727,1365,282,565,891,90,59500,88000,12500,1990,270,3.6,2,2,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-3.9,36,83400,920,1365,295,707,911,92,73500,90600,12300,2230,210,2.1,3,3,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-7.2,22,83500,1056,1365,300,819,917,107,84700,91700,13500,3000,150,2.6,2,2,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-6.7,21,83400,1128,1365,315,893,926,126,91900,92600,15100,3830,90,4.1,6,5,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-5.6,20,83400,1129,1365,325,906,923,140,92900,92200,16300,3990,90,6.7,5,4,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-6.7,16,83300,1061,1365,330,853,920,136,90300,92900,17900,4330,170,9.3,3,3,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-8.3,13,83300,926,1365,328,713,915,90,74100,91100,12100,2230,180,9.3,2,2,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-7.2,15,83200,736,1365,332,555,865,87,58600,85700,12300,1960,170,8.8,3,3,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-10.0,12,82600,502,1365,323,349,771,64,36200,72100,9600,1300,280,5.2,2,2,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-7.8,16,83300,242,1365,322,136,548,39,13700,41500,6400,710,280,4.1,3,3,16.0,77777,9,999999999,60,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-5.0,27,83100,23,603,310,0,0,0,0,0,0,0,290,2.6,6,5,16.0,77777,9,999999999,69,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-3.9,31,83200,0,0,292,0,0,0,0,0,0,0,240,2.6,0,0,16.0,77777,9,999999999,69,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-4.4,31,83200,0,0,299,0,0,0,0,0,0,0,240,3.6,2,2,16.0,77777,9,999999999,69,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-3.9,36,83100,0,0,283,0,0,0,0,0,0,0,210,5.2,0,0,16.0,77777,9,999999999,69,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-6.1,32,83000,0,0,276,0,0,0,0,0,0,0,210,5.7,0,0,16.0,77777,9,999999999,69,0.0760,0,88,0.190,0.0,1.0 +1999,4,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-6.7,32,83000,0,0,273,0,0,0,0,0,0,0,200,7.2,0,0,16.0,77777,9,999999999,69,0.0760,0,88,0.190,0.0,1.0 +1999,4,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-7.8,31,83000,0,0,268,0,0,0,0,0,0,0,200,5.2,0,0,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.7,37,82900,0,0,265,0,0,0,0,0,0,0,210,3.6,0,0,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-7.2,31,83000,0,0,271,0,0,0,0,0,0,0,230,2.1,0,0,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-7.2,34,82900,0,0,267,0,0,0,0,0,0,0,240,3.1,0,0,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-6.7,43,83200,0,0,257,0,0,0,0,0,0,0,140,2.6,0,0,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-6.1,47,82900,21,557,255,0,0,0,0,0,0,0,90,2.1,0,0,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-3.9,45,83200,237,1364,270,153,469,72,15600,32700,9900,1350,150,2.1,0,0,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-3.3,33,83500,498,1364,292,370,792,81,37500,73000,10800,1450,110,5.2,0,0,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-6.1,23,83600,733,1364,309,558,860,95,58400,84900,12700,2070,100,7.2,4,3,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-6.1,21,83600,925,1364,313,700,880,102,72500,87500,13000,2310,100,6.2,4,2,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-5.0,19,83200,1061,1364,330,818,881,131,87000,89100,17500,4230,120,8.8,4,3,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-4.4,19,83600,1132,1364,332,911,956,115,93900,95700,14300,3730,110,9.8,4,2,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-6.1,15,83500,1133,1364,341,900,959,101,93200,96100,13100,3490,140,10.3,4,3,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-6.1,14,83400,1064,1364,349,836,944,97,86700,94500,12700,2920,140,12.9,9,5,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-7.2,13,83200,930,1364,348,736,957,81,76700,95400,11500,2150,130,11.8,9,5,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-7.8,13,83100,740,1364,339,561,871,87,59300,86400,12300,1970,150,13.4,9,5,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-7.8,14,82400,506,1364,337,354,783,63,37000,73400,9600,1290,140,14.9,9,5,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-5.6,20,82800,247,1364,327,142,566,39,14300,43100,6500,720,130,14.4,9,5,14.4,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-2.8,30,82600,25,625,337,0,0,0,0,0,0,0,130,8.8,10,9,16.0,6096,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-1.1,38,82400,0,0,333,0,0,0,0,0,0,0,130,8.2,10,9,16.0,6096,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-1.1,41,82200,0,0,328,0,0,0,0,0,0,0,160,12.9,10,9,16.0,6096,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,82000,0,0,321,0,0,0,0,0,0,0,160,9.8,10,9,16.0,6096,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-0.6,53,81900,0,0,296,0,0,0,0,0,0,0,200,5.2,9,5,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-0.6,51,81700,0,0,316,0,0,0,0,0,0,0,210,4.1,10,9,16.0,6096,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,-3.0,34,81700,0,0,309,0,0,0,0,0,0,0,240,7.7,9,5,16.1,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.2,46,81500,0,0,294,0,0,0,0,0,0,0,220,4.6,9,5,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-1.7,48,81400,0,0,312,0,0,0,0,0,0,0,260,5.7,10,9,16.0,2591,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-7.2,33,81500,0,0,310,0,0,0,0,0,0,0,290,13.9,10,10,16.0,1981,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-9.4,27,81500,0,0,307,0,0,0,0,0,0,0,280,12.9,10,10,16.0,1494,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-10.0,26,81600,24,602,296,0,0,0,0,0,0,0,280,11.3,10,9,16.0,2591,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-10.0,26,81700,244,1363,298,140,182,108,14800,13300,12400,2310,280,9.8,10,9,16.0,3962,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-10.0,24,81800,504,1363,303,87,0,87,10200,0,10200,3670,300,15.5,10,9,16.0,4267,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-9.4,22,82000,738,1363,311,464,399,248,49400,41800,26700,5940,280,16.0,10,9,16.0,6096,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-9.4,18,82200,930,1363,307,706,783,171,74500,79200,20300,4600,300,15.5,9,5,14.4,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-7.8,18,82100,1066,1363,319,843,911,129,86700,91000,15400,3270,300,12.9,9,5,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-8.9,16,82600,1137,1363,320,917,956,118,94500,95700,14500,3830,330,10.8,9,5,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-8.3,15,82700,1137,1363,318,894,941,107,92400,94300,13600,3650,320,9.3,4,2,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-8.3,15,82900,1068,1363,324,830,926,102,85900,92600,13100,3020,300,10.8,4,3,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-7.8,17,82900,934,1363,316,713,903,93,74100,89900,12300,2290,300,7.7,4,2,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-7.8,17,83000,743,1363,317,528,760,113,56000,76100,14400,2560,350,4.1,4,3,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-7.8,18,82700,510,1363,311,334,686,77,35100,64600,10900,1530,330,5.2,4,2,16.0,77777,9,999999999,69,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-7.8,19,83100,251,1363,309,142,530,45,14600,39300,7400,820,350,4.6,4,3,16.0,77777,9,999999999,60,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-6.7,29,82900,27,648,287,0,0,0,0,0,0,0,40,4.6,4,2,16.0,77777,9,999999999,60,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,82800,0,0,269,0,0,0,0,0,0,0,80,3.1,0,0,16.0,77777,9,999999999,60,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-0.6,78,82700,0,0,258,0,0,0,0,0,0,0,120,3.1,0,0,16.0,77777,9,999999999,60,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-0.6,84,82500,0,0,254,0,0,0,0,0,0,0,150,4.1,0,0,16.0,77777,9,999999999,60,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-0.6,84,82800,0,0,254,0,0,0,0,0,0,0,160,4.6,0,0,16.0,77777,9,999999999,60,0.0770,0,88,0.190,0.0,1.0 +1999,4,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-1.1,81,82500,0,0,254,0,0,0,0,0,0,0,170,5.2,0,0,16.0,77777,9,999999999,60,0.0770,0,88,0.190,0.0,1.0 +1999,4,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-1.1,84,82400,0,0,251,0,0,0,0,0,0,0,170,5.2,0,0,16.0,77777,9,999999999,60,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-3.9,83,82200,0,0,239,0,0,0,0,0,0,0,160,3.1,0,0,16.0,77777,9,999999999,60,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.7,83,82200,0,0,249,0,0,0,0,0,0,0,160,6.2,0,0,16.0,77777,9,999999999,60,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.8,79,82200,0,0,246,0,0,0,0,0,0,0,170,4.6,0,0,16.0,77777,9,999999999,60,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-1.7,77,82500,0,0,253,0,0,0,0,0,0,0,170,6.2,0,0,16.0,77777,9,999999999,60,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-1.7,80,82100,27,624,259,0,0,0,0,0,0,0,140,6.2,2,2,16.0,77777,9,999999999,60,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,82300,250,1362,269,167,476,80,16900,34000,10600,1510,150,8.2,0,0,16.0,77777,9,999999999,60,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,82500,510,1362,284,368,771,79,37500,71600,10600,1460,180,11.3,0,0,16.0,77777,9,999999999,60,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,82500,744,1362,308,570,865,96,59600,85500,12800,2110,170,11.8,3,3,16.0,77777,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-2.2,32,82400,935,1362,310,738,922,103,76400,91700,13200,2360,140,11.8,2,2,16.0,77777,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-3.3,26,81800,1071,1362,320,843,941,101,87300,94200,13100,3030,140,12.9,3,3,16.0,77777,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-7.8,17,82100,1141,1362,324,923,920,151,97700,92900,19700,5770,160,14.9,7,5,16.0,77777,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-9.4,15,82000,1141,1362,336,858,713,259,89900,71900,29500,10320,180,12.4,10,9,16.0,3048,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-7.8,18,82000,1072,1362,348,409,161,282,45600,17200,32000,9860,220,9.3,10,10,16.0,3048,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-9.4,16,81800,937,1362,333,639,582,237,68200,60300,26600,6480,250,7.2,10,9,16.0,3962,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-8.3,21,81800,747,1362,322,529,707,140,55200,70200,16600,3080,310,10.8,10,9,16.0,3962,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-10.6,19,81500,514,1362,314,360,594,136,37500,56100,16300,2660,290,10.3,10,9,16.0,3962,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-10.0,23,81800,255,1362,305,55,0,55,6200,0,6200,1970,270,12.4,10,9,16.0,3048,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-10.6,25,81800,29,670,295,0,0,0,0,0,0,0,280,8.2,10,9,16.0,2134,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-9.4,30,81800,0,0,292,0,0,0,0,0,0,0,310,7.2,10,9,16.0,2134,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-1.7,77,81700,0,0,292,0,0,0,0,0,0,0,340,2.1,10,10,14.4,1524,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-5.6,49,81700,0,0,295,0,0,0,0,0,0,0,0,0.0,10,10,16.0,3048,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-11.1,28,81900,0,0,293,0,0,0,0,0,0,0,260,7.2,10,10,16.0,2743,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-11.7,29,81700,0,0,280,0,0,0,0,0,0,0,270,8.8,10,9,16.0,4572,9,999999999,50,0.0780,0,88,0.190,0.0,1.0 +1999,4,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-13.9,24,81700,0,0,262,0,0,0,0,0,0,0,270,8.8,9,5,16.0,77777,9,999999999,50,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-16.1,19,81700,0,0,260,0,0,0,0,0,0,0,270,10.8,9,5,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-15.6,21,81700,0,0,258,0,0,0,0,0,0,0,280,16.0,9,5,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-15.6,21,81800,0,0,258,0,0,0,0,0,0,0,270,11.3,9,5,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-15.6,21,82000,0,0,258,0,0,0,0,0,0,0,270,11.3,9,5,16.0,6706,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-15.6,22,82100,30,669,256,0,0,0,0,0,0,0,270,8.8,9,5,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-15.0,20,82100,257,1362,265,174,508,78,17600,36800,10700,1460,270,9.8,9,5,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-14.4,20,82300,516,1362,284,381,662,129,38500,60800,15500,2330,270,9.8,10,9,16.0,6706,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-13.3,20,82500,750,1362,292,450,331,267,47700,34700,28500,6530,270,9.8,10,9,16.0,7315,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-14.4,16,82600,940,1362,298,687,734,178,72200,74200,20800,4850,290,8.8,10,9,16.0,7315,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-13.9,16,82600,1075,1362,301,787,718,218,82800,72800,25200,7490,300,11.3,10,9,16.0,6096,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-13.9,14,82800,1145,1362,308,923,914,152,97600,92300,19800,5880,310,10.8,10,9,16.0,6096,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-13.3,15,82900,1145,1362,309,906,947,107,93600,94900,13600,3740,320,12.9,10,9,16.0,6096,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-12.8,15,83000,1076,1362,312,853,956,96,88500,95700,12700,2980,320,8.2,10,9,16.0,6096,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-12.8,16,83000,941,1362,309,730,785,187,76700,79200,21800,5070,340,9.8,10,9,16.0,6096,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-11.7,17,83100,751,1362,293,292,88,243,32000,8900,27100,7520,360,8.8,9,5,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-12.2,18,82900,518,1362,288,361,594,134,37600,56200,16200,2610,10,11.3,9,5,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-12.8,19,83100,259,1362,281,149,565,41,15000,43800,6700,750,10,9.8,9,5,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-11.1,28,83100,31,692,269,0,0,0,0,0,0,0,10,6.2,9,5,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-11.1,33,83100,0,0,257,0,0,0,0,0,0,0,20,5.7,4,3,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-11.1,37,83100,0,0,248,0,0,0,0,0,0,0,0,0.0,4,2,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-11.7,42,83000,0,0,242,0,0,0,0,0,0,0,150,3.6,4,3,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-11.7,51,83400,0,0,232,0,0,0,0,0,0,0,150,4.1,4,2,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-10.6,48,83100,0,0,231,0,0,0,0,0,0,0,170,5.2,0,0,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-11.1,56,83000,0,0,223,0,0,0,0,0,0,0,150,3.6,0,0,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-11.7,53,83000,0,0,223,0,0,0,0,0,0,0,180,3.1,0,0,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-12.8,61,82900,0,0,213,0,0,0,0,0,0,0,160,3.6,0,0,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-10.6,78,82900,0,0,213,0,0,0,0,0,0,0,150,3.6,0,0,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-11.1,78,83600,0,0,211,0,0,0,0,0,0,0,150,3.1,0,0,16.0,77777,9,999999999,40,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-10.0,75,83100,33,714,217,0,81,0,0,0,0,0,150,4.1,0,0,16.0,77777,9,999999999,50,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-6.7,57,83500,263,1361,242,171,504,74,17100,36800,9900,1200,130,4.6,0,0,16.0,77777,9,999999999,50,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-6.7,43,83800,522,1361,265,358,693,92,37300,65100,12200,1790,110,5.2,2,2,16.0,77777,9,999999999,50,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-7.8,33,83900,755,1361,275,549,717,150,57100,71100,17600,3300,100,4.6,3,3,16.0,77777,9,999999999,50,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-7.2,30,84000,945,1361,282,750,880,137,78100,88000,16800,3480,120,5.2,2,2,16.0,77777,9,999999999,50,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.7,27,83700,1080,1361,294,867,971,94,89900,97200,12600,2980,130,6.2,3,3,16.0,77777,9,999999999,50,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-6.7,24,84100,1149,1361,306,947,980,117,97600,98200,14500,3980,100,6.2,9,5,16.0,77777,9,999999999,50,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-7.8,21,84100,1149,1361,309,930,977,103,96200,97900,13300,3710,60,3.1,9,5,16.0,77777,9,999999999,50,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-10.0,15,84100,1079,1361,317,853,824,198,90500,84000,23800,6940,130,4.6,9,5,16.0,77777,9,999999999,50,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-11.1,14,84000,945,1361,331,571,369,314,61500,39700,33900,9010,160,6.2,10,9,16.0,7620,9,999999999,60,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-10.0,15,84000,754,1361,335,568,742,155,58900,73400,18100,3380,150,6.7,10,9,16.0,7620,9,999999999,60,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-9.4,17,83400,522,1361,310,361,756,71,37300,71000,10100,1410,150,7.2,9,5,16.0,77777,9,999999999,60,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-7.8,23,84000,263,1361,320,154,577,42,15500,44900,6800,770,150,6.2,10,9,16.0,7315,9,999999999,60,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-7.8,30,83700,33,714,303,0,0,0,0,0,0,0,150,4.6,10,9,16.0,7315,9,999999999,60,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-6.7,32,83800,0,0,315,0,0,0,0,0,0,0,130,5.7,10,10,16.0,6096,9,999999999,60,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.1,39,83700,0,0,306,0,0,0,0,0,0,0,120,6.2,10,10,16.0,6096,9,999999999,60,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-6.1,36,83700,0,0,303,0,0,0,0,0,0,0,150,6.2,10,9,16.0,6096,9,999999999,60,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-7.2,48,83700,0,0,263,0,0,0,0,0,0,0,150,4.6,9,5,16.0,77777,9,999999999,60,0.0790,0,88,0.190,0.0,1.0 +1999,4,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.7,54,83300,0,0,259,0,0,0,0,0,0,0,160,4.6,9,5,16.0,77777,9,999999999,69,0.0790,0,88,0.190,0.0,1.0 +1999,4,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-7.2,57,83200,0,0,254,0,0,0,0,0,0,0,160,3.6,6,5,16.0,77777,9,999999999,69,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-6.7,46,83300,0,0,263,0,0,0,0,0,0,0,210,5.2,3,3,16.0,77777,9,999999999,69,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-6.1,49,83300,0,0,261,0,0,0,0,0,0,0,220,5.7,2,2,16.0,77777,9,999999999,69,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.1,55,83300,0,0,258,0,0,0,0,0,0,0,240,5.2,3,3,16.0,77777,9,999999999,69,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.1,55,83600,0,0,255,0,0,0,0,0,0,0,250,4.6,2,2,16.0,77777,9,999999999,69,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-5.6,60,83400,36,737,256,1,102,0,0,0,0,0,240,3.6,3,3,16.0,77777,9,999999999,69,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-3.9,51,83700,270,1360,272,178,564,66,17900,42100,9500,1120,250,4.6,2,2,16.0,77777,9,999999999,69,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-4.4,40,83800,528,1360,285,386,787,80,39500,73700,10800,1500,280,3.1,3,3,16.0,77777,9,999999999,69,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-4.4,34,83900,761,1360,292,581,876,90,61500,87100,12600,2070,320,2.1,2,2,16.0,77777,9,999999999,69,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-4.4,30,83900,950,1360,304,730,886,110,75500,88200,13700,2460,0,0.0,3,3,16.0,77777,9,999999999,69,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-3.9,25,83600,1084,1360,324,861,917,128,88500,91600,15300,3450,30,1.5,6,5,16.0,77777,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-4.4,20,84100,1153,1360,336,947,932,155,100200,94100,20200,6140,50,4.1,6,5,16.0,77777,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-5.0,17,84100,1153,1360,343,918,959,103,95000,96200,13300,3750,60,6.2,6,5,16.0,77777,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-5.0,17,84000,1083,1360,366,871,968,99,90300,96900,13000,3090,70,6.7,10,9,16.0,6096,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-6.1,15,83900,948,1360,365,753,838,168,79700,85100,20300,4680,70,8.2,10,9,16.0,6096,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-5.6,17,83800,758,1360,359,391,265,243,41800,27900,26200,5850,70,8.8,10,9,16.0,6096,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-4.4,19,83200,525,1360,359,191,75,162,20900,7200,18200,4460,50,9.3,10,9,16.0,6096,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-4.4,22,83700,267,1360,348,155,375,81,15700,27700,10300,1520,50,7.2,10,9,16.0,6096,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-5.6,25,83500,35,737,330,0,0,0,0,0,0,0,40,5.7,10,9,16.0,6096,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-6.1,25,83500,0,0,327,0,0,0,0,0,0,0,50,7.2,10,9,16.0,3353,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-4.4,33,83500,0,0,319,0,0,0,0,0,0,0,10,5.2,10,9,16.0,6096,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-2.2,45,83400,0,0,292,0,0,0,0,0,0,0,30,5.7,3,3,16.0,77777,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-1.1,57,83300,0,0,282,0,0,0,0,0,0,0,10,3.6,2,2,16.0,77777,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-1.1,57,83200,0,0,284,0,0,0,0,0,0,0,300,4.6,3,3,16.0,77777,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-2.2,58,83100,0,0,276,0,0,0,0,0,0,0,300,4.1,3,3,16.0,77777,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-1.1,59,83100,0,0,279,0,0,0,0,0,0,0,300,4.6,2,2,16.0,77777,9,999999999,80,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.7,66,83000,0,0,273,0,0,0,0,0,0,0,280,3.6,3,3,16.0,77777,9,999999999,89,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-2.2,66,82900,0,0,267,0,0,0,0,0,0,0,280,3.1,2,2,16.0,77777,9,999999999,89,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.7,66,83200,0,0,273,0,0,0,0,0,0,0,260,3.6,3,3,16.0,77777,9,999999999,89,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.7,66,83000,40,782,277,2,108,1,800,6200,400,40,250,4.6,5,5,16.0,77777,9,999999999,89,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.1,55,83200,276,1359,291,185,540,75,18400,40300,10200,1240,270,3.6,5,5,16.0,77777,9,999999999,89,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-1.1,44,83300,534,1359,305,385,736,95,40000,69500,12600,1860,320,5.7,5,5,16.0,77777,9,999999999,89,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.0,43,83400,766,1359,332,561,772,125,59300,77400,15600,2860,340,6.2,9,9,16.0,6096,9,999999999,89,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.8,44,83500,955,1359,329,717,710,218,74600,71100,24500,5920,320,7.2,5,5,16.0,77777,9,999999999,100,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,3.9,42,83100,1088,1359,345,334,66,281,36900,6700,31500,11680,10,7.7,7,7,16.0,2438,9,999999999,100,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,1.7,34,83500,1157,1359,361,607,246,396,65900,26700,43200,16410,20,9.3,9,9,16.0,6096,9,999999999,100,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,5.0,41,83500,1156,1359,368,798,563,318,85400,58800,35300,13810,40,8.8,9,9,16.0,1524,9,999999999,100,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,4.4,47,83300,1086,1359,353,544,221,367,59800,23500,40900,13160,20,5.7,9,9,16.0,1829,9,999999999,100,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,83100,951,1359,342,274,30,253,30200,3000,28100,9290,40,4.6,9,9,16.0,1524,9,999999999,100,0.0800,0,88,0.190,4.0,1.0 +1999,4,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,8.3,69,83200,761,1359,350,99,0,99,12100,0,12100,4790,50,3.1,9,9,16.0,6096,9,999999999,110,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,82800,529,1359,356,160,69,133,17600,6600,15000,3830,50,5.7,9,9,16.0,6096,9,999999999,110,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.0,55,83200,271,1359,346,160,381,84,16200,28400,10600,1580,50,4.6,9,9,16.0,2896,9,999999999,110,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,83000,37,759,312,2,112,2,900,6400,600,80,120,5.2,5,5,16.0,77777,9,999999999,110,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,82900,0,0,298,0,0,0,0,0,0,0,150,3.6,5,5,11.2,77777,9,999999999,110,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,83000,0,0,327,0,0,0,0,0,0,0,250,4.1,9,9,12.8,2743,9,999999999,120,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,83000,0,0,329,0,0,0,0,0,0,0,310,6.7,10,10,16.0,762,9,999999999,120,0.0800,0,88,0.190,0.0,1.0 +1999,4,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,82900,0,0,328,0,0,0,0,0,0,0,270,6.2,10,10,16.0,1006,9,999999999,120,0.0800,0,88,0.190,1.0,1.0 +1999,4,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,82900,0,0,324,0,0,0,0,0,0,0,10,6.2,10,10,12.8,1524,9,999999999,120,0.0800,0,88,0.190,1.0,1.0 +1999,4,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,82800,0,0,326,0,0,0,0,0,0,0,260,3.6,10,10,16.0,1158,9,999999999,120,0.0810,0,88,0.190,1.0,1.0 +1999,4,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,82900,0,0,325,0,0,0,0,0,0,0,330,6.7,10,10,11.2,1311,9,999999999,120,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.9,86,82900,0,0,317,0,0,0,0,0,0,0,340,8.2,10,10,16.0,1524,9,999999999,129,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,4.0,87,83000,0,0,317,0,0,0,0,0,0,0,340,9.3,10,10,12.9,300,9,999999999,129,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.3,89,83100,0,0,312,0,0,0,0,0,0,0,340,10.3,10,10,16.0,396,9,999999999,129,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.7,92,83000,43,804,300,3,77,2,700,4500,500,80,360,8.8,10,10,16.0,244,9,999999999,129,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.0,96,83100,282,1359,289,192,349,119,19500,26400,14000,2550,360,11.3,10,10,2.4,122,9,999999999,120,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,83300,540,1359,287,163,38,148,17900,3600,16500,4220,360,9.8,10,10,0.4,61,9,999999999,120,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,83400,771,1359,287,119,0,119,14300,0,14300,5650,360,10.3,10,10,0.4,61,9,999999999,120,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-0.6,95,83500,960,1359,286,121,0,121,15000,0,15000,6210,10,10.3,10,10,0.4,61,9,999999999,120,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-0.6,95,83800,1093,1359,286,210,6,206,25600,500,25200,10190,10,8.2,10,10,3.2,122,9,999999999,110,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,-1.0,80,83600,1161,1359,286,315,12,305,37500,1000,36600,14080,20,11.8,9,9,16.1,660,9,999999999,110,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-0.6,75,83700,1160,1359,292,566,192,402,62300,20500,44700,16470,10,11.3,9,9,16.0,762,9,999999999,110,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-2.8,63,83700,1089,1359,290,228,12,218,27500,1000,26700,10670,360,10.3,9,9,16.0,1128,9,999999999,110,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.3,62,83700,955,1359,295,440,161,327,48200,17000,36200,9950,10,8.2,10,10,16.0,1158,9,999999999,100,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-3.3,57,83700,765,1359,292,188,6,184,21800,500,21500,8000,30,7.7,9,9,16.0,1372,9,999999999,100,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-3.9,59,83800,533,1359,294,166,23,157,18700,1700,18000,5840,20,7.2,10,10,16.0,1433,9,999999999,100,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-2.2,71,83700,275,1359,294,43,0,43,5000,0,5000,1670,20,5.7,10,10,9.6,1036,9,999999999,89,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.8,70,83800,39,781,291,1,0,1,100,0,100,40,20,6.2,10,10,16.0,1676,9,999999999,89,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-3.3,67,83900,0,0,290,0,0,0,0,0,0,0,20,5.7,10,10,14.4,1067,9,999999999,89,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-3.9,67,83900,0,0,287,0,0,0,0,0,0,0,20,6.2,10,10,16.0,1676,9,999999999,89,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-2.8,83,83800,0,0,281,0,0,0,0,0,0,0,20,4.6,10,10,16.0,1433,9,999999999,80,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.2,91,83900,0,0,280,0,0,0,0,0,0,0,360,3.1,10,10,1.6,518,9,999999999,80,0.0810,0,88,0.190,0.0,1.0 +1999,4,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-2.0,92,83700,0,0,280,0,0,0,0,0,0,0,360,3.1,10,10,2.0,510,9,999999999,80,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-2.8,100,83700,0,0,272,0,0,0,0,0,0,0,50,5.2,10,10,1.6,305,9,999999999,69,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.3,96,83700,0,0,272,0,0,0,0,0,0,0,360,6.2,10,10,0.8,152,9,999999999,69,0.0810,0,88,0.190,1.0,1.0 +1999,4,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-4.4,96,83700,0,0,266,0,0,0,0,0,0,0,20,10.8,10,10,0.8,91,9,999999999,69,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.0,-4.0,100,83700,0,0,266,0,0,0,0,0,0,0,20,10.8,10,10,0.8,90,9,999999999,69,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-6.7,91,83700,0,0,257,0,0,0,0,0,0,0,20,4.6,10,10,14.4,792,9,999999999,60,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-8.3,71,83800,47,849,261,1,0,1,100,0,100,40,30,4.1,10,10,16.0,1524,9,999999999,60,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-7.8,75,83800,288,1358,254,54,0,54,6200,0,6200,2040,20,3.6,9,9,16.0,1524,9,999999999,60,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-9.4,59,83900,545,1358,256,92,0,92,10800,0,10800,3970,360,6.2,9,9,16.0,2743,9,999999999,60,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-9.4,54,84000,776,1358,246,296,43,272,32600,4400,30100,8420,310,6.2,5,5,16.0,77777,9,999999999,60,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-9.4,49,84000,964,1358,250,349,42,319,38400,4300,35400,11410,330,6.7,5,5,16.0,77777,9,999999999,60,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-11.7,37,84100,1097,1358,252,575,241,380,62300,26100,41200,13870,330,11.8,5,5,16.0,77777,9,999999999,60,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-12.8,31,84000,1165,1358,255,564,156,430,61800,16600,47500,17830,340,10.8,5,5,16.0,77777,9,999999999,50,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-11.1,34,84000,1163,1358,259,572,180,418,62800,19200,46400,17280,350,10.8,5,5,16.0,77777,9,999999999,50,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-11.0,36,83900,1093,1358,272,602,323,342,65800,35000,37500,12210,350,12.9,9,9,6.4,2400,9,999999999,50,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-10.0,38,83900,958,1358,260,240,30,219,26600,3000,24400,8270,340,10.3,5,5,16.0,77777,9,999999999,50,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-11.7,32,83900,768,1358,274,558,548,247,57600,55600,26100,5750,330,10.3,9,9,16.0,2591,9,999999999,50,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-12.2,32,83800,536,1358,261,99,0,99,11600,0,11600,4180,340,12.9,7,7,16.0,2438,9,999999999,50,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-12.2,33,83800,279,1358,254,70,11,68,7900,400,7800,2380,350,12.4,5,5,16.0,77777,9,999999999,50,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-8.9,51,83800,42,803,265,4,121,2,1000,7000,600,80,350,8.2,9,9,16.0,2896,9,999999999,40,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-8.3,54,83800,0,0,266,0,0,0,0,0,0,0,340,11.8,9,9,16.0,3048,9,999999999,40,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-8.3,57,83800,0,0,264,0,0,0,0,0,0,0,340,8.8,9,9,16.0,2743,9,999999999,40,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.7,75,83700,0,0,259,0,0,0,0,0,0,0,10,4.1,9,9,16.0,2438,9,999999999,40,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-7.2,72,83900,0,0,249,0,0,0,0,0,0,0,340,4.1,7,7,16.0,2438,9,999999999,40,0.0810,0,88,0.190,0.0,1.0 +1999,4,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-7.8,65,83700,0,0,245,0,0,0,0,0,0,0,320,5.7,5,5,16.0,77777,9,999999999,40,0.0810,0,88,0.190,0.0,1.0 +1999,4,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-9.4,59,83600,0,0,242,0,0,0,0,0,0,0,310,5.7,5,5,16.0,77777,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-10.6,51,83600,0,0,243,0,0,0,0,0,0,0,320,7.7,5,5,16.0,77777,9,999999999,30,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-9.4,65,83500,0,0,252,0,0,0,0,0,0,0,300,4.6,9,9,16.0,2743,9,999999999,30,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-11.1,56,83500,0,0,251,0,0,0,0,0,0,0,300,4.1,9,9,16.0,2743,9,999999999,30,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-11.7,56,83800,0,0,234,0,0,0,0,0,0,0,280,3.1,5,5,16.0,77777,9,999999999,30,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-12.2,53,83500,51,871,234,6,149,2,1200,8800,700,80,290,3.1,5,5,16.0,77777,9,999999999,30,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-10.6,51,83600,294,1357,243,196,572,72,19700,44200,10100,1230,210,3.6,5,5,16.0,77777,9,999999999,30,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-10.6,42,83700,551,1357,266,389,558,162,40100,53500,18400,3260,220,4.1,9,9,16.0,6096,9,999999999,30,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-12.2,33,83700,781,1357,269,335,98,279,36800,9900,31100,8620,350,5.2,9,9,16.0,6096,9,999999999,30,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-11.0,36,83700,969,1357,279,589,358,333,63400,38500,35900,9930,330,10.8,10,10,14.5,1440,9,999999999,30,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-10.6,36,83700,1101,1357,283,309,24,290,34200,2400,32200,12210,340,7.2,10,10,16.0,2438,9,999999999,30,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.6,66,83600,1168,1357,278,212,0,212,25900,0,25900,10570,220,7.7,10,10,16.0,2134,9,999999999,30,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.2,52,83600,1167,1357,282,244,0,244,29500,0,29500,11860,230,4.6,10,10,16.0,2286,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-3.9,83,83500,1096,1357,276,140,0,140,17500,0,17500,7320,140,4.6,10,10,12.8,1463,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.3,91,83600,961,1357,274,126,0,126,15600,0,15600,6440,30,7.7,10,10,0.8,183,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.0,-3.0,92,83500,771,1357,275,99,0,99,12100,0,12100,4820,30,7.7,10,10,0.8,180,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.1,66,83700,540,1357,276,99,0,99,11600,0,11600,4190,10,4.6,10,10,16.0,1494,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.6,68,83700,283,1357,269,35,0,35,4100,0,4100,1420,350,11.8,9,9,8.0,1311,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.2,65,83600,44,825,270,5,111,3,1000,6500,700,110,350,4.1,10,10,16.0,2438,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.2,63,83700,0,0,272,0,0,0,0,0,0,0,350,8.2,10,10,12.8,1463,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-9.4,54,83800,0,0,261,0,0,0,0,0,0,0,340,5.7,9,9,16.0,1829,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-8.3,62,83800,0,0,259,0,0,0,0,0,0,0,340,5.7,9,9,16.0,2591,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-8.9,65,84000,0,0,240,0,0,0,0,0,0,0,330,5.2,5,5,16.0,77777,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-8.3,79,83700,0,0,235,0,0,0,0,0,0,0,270,3.6,5,5,16.0,77777,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-9.4,79,83600,0,0,217,0,0,0,0,0,0,0,250,2.6,0,0,16.0,77777,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-9.4,79,83600,0,0,217,0,0,0,0,0,0,0,250,3.1,0,0,16.0,77777,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-8.9,78,83600,0,0,229,0,0,0,0,0,0,0,220,4.1,3,3,16.0,77777,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-9.4,79,83600,0,0,230,0,0,0,0,0,0,0,220,5.2,5,5,16.0,77777,9,999999999,40,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-10.6,74,83900,0,0,224,0,0,0,0,0,0,0,220,5.7,3,3,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-11.1,71,83600,55,915,227,7,112,4,1200,6700,800,150,220,6.2,5,5,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-10.0,68,83700,300,1356,230,203,398,114,20100,30900,13200,2230,210,6.2,3,3,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-8.3,62,83800,556,1356,239,346,445,163,35700,42800,18100,3280,210,6.2,2,2,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-8.9,49,83800,786,1356,238,532,606,180,57000,62000,21000,4110,200,6.2,0,0,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.8,44,83900,973,1356,249,703,697,202,73700,70300,23100,5750,210,5.2,0,0,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-12.2,28,83900,1105,1356,249,872,868,163,91200,87200,19900,5590,230,2.1,0,0,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-10.0,29,84100,1172,1356,260,946,956,118,97500,95800,14500,4350,220,3.1,0,0,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-9.4,27,84100,1170,1356,278,947,977,102,98000,98000,13300,3960,240,2.1,3,3,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-7.8,27,84100,1099,1356,293,894,980,98,92700,98200,12900,3210,270,2.6,5,5,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-7.8,25,84100,964,1356,298,760,957,78,79400,95600,11200,2220,290,2.6,5,5,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-7.2,24,84200,775,1356,303,591,879,88,62900,87700,12600,2070,320,4.1,5,5,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-6.7,24,83700,543,1356,306,390,793,72,40500,75200,10300,1450,270,1.5,5,5,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-5.0,30,84100,287,1356,303,172,607,44,17500,48700,7200,820,220,4.1,5,5,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.8,46,84000,47,848,292,5,135,3,1200,7900,800,110,210,5.7,5,5,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-3.3,49,83900,0,0,284,0,0,0,0,0,0,0,220,6.7,5,5,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-3.9,51,83800,0,0,279,0,0,0,0,0,0,0,200,7.7,5,5,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-3.9,51,83700,0,0,279,0,0,0,0,0,0,0,200,6.7,5,5,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-3.9,49,83600,0,0,281,0,0,0,0,0,0,0,210,6.7,5,5,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-3.9,49,83600,0,0,274,0,0,0,0,0,0,0,210,6.7,2,2,16.0,77777,9,999999999,50,0.0820,0,88,0.190,0.0,1.0 +1999,4,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-3.9,51,83600,0,0,272,0,0,0,0,0,0,0,210,7.7,2,2,16.0,77777,9,999999999,50,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-3.9,49,83500,0,0,277,0,0,0,0,0,0,0,210,6.2,3,3,16.0,77777,9,999999999,50,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-4.4,48,83500,0,0,272,0,0,0,0,0,0,0,230,5.2,2,2,16.0,77777,9,999999999,50,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.9,53,83500,0,0,277,0,0,0,0,0,0,0,240,5.2,5,5,16.0,77777,9,999999999,50,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-4.4,52,83600,0,0,274,0,0,0,0,0,0,0,250,4.6,5,5,16.0,77777,9,999999999,50,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-3.9,51,83600,59,937,279,8,166,3,1500,10000,900,120,240,5.7,5,5,16.0,77777,9,999999999,50,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-5.6,28,83900,306,1355,311,192,553,67,19500,43800,9600,1180,260,7.2,7,7,16.0,7620,9,999999999,50,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-6.1,22,84100,562,1355,335,408,789,81,42000,74900,10900,1580,270,8.2,9,9,16.0,7620,9,999999999,50,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-5.6,21,84200,791,1355,343,597,838,107,62400,83200,13700,2390,290,9.3,9,9,16.0,7620,9,999999999,60,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-5.6,19,84300,978,1355,349,754,885,114,77800,88200,14100,2630,310,8.2,9,9,16.0,7620,9,999999999,60,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-5.6,18,83700,1109,1355,354,884,917,132,90800,91700,15600,3770,300,6.7,9,9,16.0,7620,9,999999999,60,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-5.6,17,84200,1175,1355,357,940,871,182,97900,87400,22000,7560,290,5.2,9,9,16.0,7620,9,999999999,60,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-6.7,15,84200,1173,1355,358,834,605,309,89700,63200,34900,14230,290,6.2,9,9,16.0,7315,9,999999999,60,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-6.1,16,84200,1102,1355,359,637,323,374,69200,35000,40700,13810,290,4.1,9,9,16.0,7315,9,999999999,60,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-6.7,15,84200,967,1355,358,669,595,243,71600,61800,27400,7000,320,4.6,9,9,16.0,7315,9,999999999,60,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-6.1,16,84200,778,1355,362,304,83,257,33500,8400,28700,8080,340,4.6,9,9,16.0,7315,9,999999999,69,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-6.1,18,83700,547,1355,351,167,29,155,18300,2800,17200,4410,340,2.6,9,9,16.0,7315,9,999999999,69,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,-3.0,25,84200,291,1355,351,173,396,88,17600,30500,11000,1660,330,11.3,9,9,16.1,7200,9,999999999,69,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-3.3,25,84100,49,870,346,7,158,4,1500,9300,900,150,360,9.8,9,9,16.0,7315,9,999999999,69,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-2.2,36,83900,0,0,329,0,0,0,0,0,0,0,20,2.6,9,9,16.0,7315,9,999999999,69,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.2,37,83900,0,0,309,0,0,0,0,0,0,0,220,3.6,5,5,16.0,77777,9,999999999,69,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-1.1,44,83800,0,0,305,0,0,0,0,0,0,0,210,5.7,5,5,16.0,77777,9,999999999,80,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-0.6,51,83700,0,0,299,0,0,0,0,0,0,0,200,6.7,5,5,16.0,77777,9,999999999,80,0.0830,0,88,0.190,0.0,1.0 +1999,4,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-1.1,49,83700,0,0,298,0,0,0,0,0,0,0,200,7.7,5,5,16.0,77777,9,999999999,80,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-1.1,53,83600,0,0,311,0,0,0,0,0,0,0,210,6.7,9,9,16.0,7620,9,999999999,80,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.1,55,83500,0,0,291,0,0,0,0,0,0,0,210,6.7,5,5,16.0,77777,9,999999999,80,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.7,52,83500,0,0,290,0,0,0,0,0,0,0,220,6.7,5,5,16.0,77777,9,999999999,80,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-2.2,52,83500,0,0,288,0,0,0,0,0,0,0,220,6.2,5,5,16.0,77777,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-2.8,48,83700,0,0,289,0,0,0,0,0,0,0,210,7.2,5,5,16.0,77777,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.8,44,83600,63,960,294,11,205,3,1900,12400,1000,120,210,7.2,5,5,16.0,77777,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-1.7,42,83800,312,1355,305,207,640,60,21300,51500,9400,1080,210,7.2,5,5,16.0,77777,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.1,33,84000,567,1355,325,421,807,83,43300,76700,11100,1610,230,4.6,5,5,16.0,77777,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-5.0,19,84100,796,1355,335,603,844,107,63100,83800,13800,2410,300,3.6,5,5,16.0,77777,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-5.6,17,84100,982,1355,357,741,794,164,78900,81000,20000,4870,290,1.5,9,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-5.0,18,83600,1112,1355,360,748,525,316,79700,54700,34600,12330,270,2.1,9,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-5.0,16,84100,1179,1355,369,527,126,417,57900,13400,46200,17950,260,7.2,9,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-5.6,15,84100,1176,1355,368,864,653,295,90000,65500,32900,13180,340,4.1,9,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-5.0,14,84100,1105,1355,377,883,830,204,93800,84600,24600,7690,260,4.1,9,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-5.6,15,83900,971,1355,371,652,601,220,67800,60300,24500,6170,360,3.6,9,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-5.0,15,83900,781,1355,374,526,625,164,54500,62000,18700,3670,350,4.1,9,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-4.4,17,83200,550,1355,380,302,330,168,32100,32700,18800,3580,290,2.6,10,10,14.4,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-1.1,27,83700,294,1355,370,151,435,57,15500,34300,8100,1030,120,1.5,10,10,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.7,28,83600,52,892,361,5,0,5,600,0,600,200,180,3.1,10,10,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-2.8,26,83500,0,0,347,0,0,0,0,0,0,0,190,2.6,9,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-0.6,37,83400,0,0,339,0,0,0,0,0,0,0,180,4.1,9,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.0,44,83200,0,0,330,0,0,0,0,0,0,0,150,2.1,9,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-0.6,44,83200,0,0,326,0,0,0,0,0,0,0,80,3.6,9,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.0,52,83000,0,0,319,0,0,0,0,0,0,0,140,3.1,9,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.0,48,83100,0,0,325,0,0,0,0,0,0,0,250,3.1,10,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,83000,0,0,314,0,0,0,0,0,0,0,230,3.6,10,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-0.6,57,82900,0,0,309,0,0,0,0,0,0,0,210,3.1,10,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.2,46,83000,0,0,312,0,0,0,0,0,0,0,240,5.2,10,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-4.4,37,83000,0,0,312,0,0,0,0,0,0,0,230,2.1,10,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.8,44,83000,67,1004,311,7,14,6,800,500,800,90,220,1.5,10,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,83100,317,1354,326,111,41,102,12200,3500,11400,2500,210,3.6,10,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.1,35,83300,572,1354,339,245,112,198,26900,11000,22300,5450,190,3.1,10,9,16.0,6096,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.7,28,83300,800,1354,351,498,373,277,53100,39500,29700,7000,190,4.6,10,9,16.0,6096,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-2.2,24,83400,986,1354,358,785,842,170,83400,85800,20700,5070,280,2.6,10,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-3.3,21,82900,1116,1354,362,877,772,239,92200,78100,27700,9130,0,0.0,10,9,16.0,7620,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-2.2,23,83300,1182,1354,364,485,90,406,53500,9300,45400,18330,130,3.6,10,9,16.0,5486,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-1.7,21,83200,1179,1354,373,477,78,409,52700,8000,45600,18360,90,3.6,10,9,16.0,5486,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-3.3,19,83200,1108,1354,371,544,203,377,59800,21600,42000,14110,280,2.1,10,9,16.0,3353,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-2.8,20,83100,974,1354,369,131,0,131,16200,0,16200,6700,290,3.6,10,9,16.0,5486,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-0.6,25,83000,784,1354,369,149,0,149,17700,0,17700,6880,10,3.6,10,9,16.0,3353,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,0.0,29,82500,554,1354,372,120,0,120,13900,0,13900,4940,90,5.7,10,10,16.0,5486,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-0.6,30,82900,298,1354,365,49,0,49,5700,0,5700,1910,80,4.6,10,10,16.0,5486,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.0,36,82800,54,914,355,10,168,5,1700,10000,1100,180,360,3.1,10,10,16.0,3048,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-0.6,37,82700,0,0,349,0,0,0,0,0,0,0,40,3.1,10,10,16.0,2743,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,82500,0,0,341,0,0,0,0,0,0,0,110,2.1,10,10,16.0,3658,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-0.6,35,82500,0,0,351,0,0,0,0,0,0,0,170,8.8,10,10,16.0,2438,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,82300,0,0,341,0,0,0,0,0,0,0,170,7.7,10,10,16.0,2438,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-0.6,46,82300,0,0,324,0,0,0,0,0,0,0,240,3.1,10,9,16.0,4572,9,999999999,89,0.0830,0,88,0.190,0.0,1.0 +1999,4,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,82200,0,0,318,0,0,0,0,0,0,0,210,4.1,10,9,16.0,3353,9,999999999,89,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,3.9,71,82200,0,0,303,0,0,0,0,0,0,0,20,5.2,6,5,16.0,77777,9,999999999,89,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,82200,0,0,316,0,0,0,0,0,0,0,20,4.6,10,9,16.0,3658,9,999999999,89,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,2.8,82,82100,0,0,281,0,0,0,0,0,0,0,100,3.1,2,2,16.0,77777,9,999999999,89,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.3,82,82300,0,0,291,0,0,0,0,0,0,0,50,2.1,6,5,16.0,77777,9,999999999,89,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.8,86,82100,71,1026,286,0,0,0,0,0,0,0,150,3.1,6,5,16.0,77777,9,999999999,89,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,3.3,71,82300,323,1353,318,229,675,68,23400,54700,10300,1210,130,4.1,10,9,16.0,7620,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.0,50,82400,577,1353,322,427,806,82,44000,76900,11100,1620,90,3.6,10,9,16.0,7620,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,82500,805,1353,313,642,923,91,66600,91100,12300,1900,60,4.6,6,5,16.0,77777,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.8,32,82500,990,1353,334,778,945,85,81000,94400,11800,2420,90,4.6,10,9,16.0,7620,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-2.8,30,82200,1120,1353,339,902,844,202,96100,86200,24600,7930,30,5.2,10,9,16.0,7620,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-3.9,27,82400,1185,1353,338,770,475,353,81900,49600,38400,17140,20,3.6,10,9,16.0,7620,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-3.3,27,82400,1182,1353,341,756,503,315,81300,52600,35200,15060,360,4.6,10,9,16.0,6096,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-4.4,24,82400,1111,1353,343,696,430,342,73500,44800,36600,13410,40,3.6,10,9,16.0,6096,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-3.9,27,82400,976,1353,338,223,18,210,26600,1400,25500,9980,90,5.2,10,9,16.0,3353,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,-4.0,29,82300,787,1353,340,150,0,150,17800,0,17800,6930,110,5.7,10,10,16.1,2400,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-4.4,28,82100,557,1353,341,188,52,167,20700,5000,18600,4720,90,5.7,10,10,16.0,2743,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.2,37,82500,302,1353,336,31,0,31,3700,0,3700,1290,320,5.2,10,10,16.0,2286,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.9,80,82400,57,936,322,1,0,1,100,0,100,40,270,6.2,10,10,12.8,1128,9,999999999,100,0.0840,0,88,0.190,1.0,1.0 +1999,4,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.9,82,82300,0,0,320,0,0,0,0,0,0,0,270,3.6,10,10,16.0,1189,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.9,86,82200,0,0,317,0,0,0,0,0,0,0,280,3.1,10,10,16.0,975,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,4.4,92,82200,0,0,316,0,0,0,0,0,0,0,340,4.1,10,10,11.2,2896,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,82200,0,0,313,0,0,0,0,0,0,0,30,4.1,10,10,12.8,213,9,999999999,100,0.0840,0,88,0.190,0.0,1.0 +1999,4,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.3,93,82000,0,0,309,0,0,0,0,0,0,0,60,3.1,10,10,8.0,610,9,999999999,100,0.0840,0,88,0.190,3.0,1.0 +1999,4,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,2.8,93,82000,0,0,306,0,0,0,0,0,0,0,180,2.1,10,10,11.2,488,9,999999999,110,0.0840,0,88,0.190,1.0,1.0 +1999,4,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,3.0,100,81900,0,0,303,0,0,0,0,0,0,0,120,3.6,10,10,8.0,120,9,999999999,110,0.0840,0,88,0.190,3.0,1.0 +1999,4,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.1,92,82000,0,0,297,0,0,0,0,0,0,0,100,4.6,10,10,9.6,427,9,999999999,110,0.0840,0,88,0.190,2.0,1.0 +1999,4,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,81900,0,0,287,0,0,0,0,0,0,0,0,0.0,10,10,2.8,213,9,999999999,110,0.0840,0,88,0.190,2.0,1.0 +1999,4,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,82300,0,0,287,0,0,0,0,0,0,0,0,0.0,10,10,2.4,213,9,999999999,110,0.0840,0,88,0.190,2.0,1.0 +1999,4,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,82000,76,1071,287,0,0,0,0,0,0,0,310,2.1,10,10,0.8,152,9,999999999,110,0.0840,0,88,0.190,0.0,1.0 +1999,4,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-0.6,95,82100,329,1352,286,34,0,34,4100,0,4100,1440,290,2.1,10,10,0.8,91,9,999999999,110,0.0840,0,88,0.190,2.0,1.0 +1999,4,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,82200,582,1352,287,70,0,70,8500,0,8500,3220,330,1.5,10,10,0.4,91,9,999999999,110,0.0840,0,88,0.190,4.0,1.0 +1999,4,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,82100,809,1352,287,105,0,105,12800,0,12800,5170,330,1.5,10,10,0.4,90,9,999999999,110,0.0840,0,88,0.190,1.0,1.0 +1999,4,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9?9?9,0.6,0.0,96,82300,994,1352,289,126,0,126,15600,0,15600,6510,310,2.6,10,10,0.4,61,9,999999999,110,0.0840,0,88,0.190,1.0,1.0 +1999,4,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.6,89,82500,1123,1352,297,161,0,161,20000,0,20000,8310,350,4.1,10,10,0.8,122,9,999999999,110,0.0840,0,88,0.190,0.0,1.0 +1999,4,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9?9?9,1.7,0.6,92,82500,1189,1352,294,152,0,152,19100,0,19100,7950,290,4.6,10,10,0.8,122,9,999999999,110,0.0840,0,88,0.190,0.0,1.0 +1999,4,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.1,96,82500,1185,1352,295,220,0,220,26900,0,26900,10930,290,4.1,10,10,4.0,61,9,999999999,110,0.0840,0,88,0.190,0.0,1.0 +1999,4,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,1.0,93,82500,1114,1352,296,222,0,222,26900,0,26900,10900,290,4.1,10,10,0.8,60,9,999999999,110,0.0840,0,88,0.190,0.0,1.0 +1999,4,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.1,92,82700,979,1352,297,223,6,219,26500,500,26200,10330,290,3.6,10,10,4.8,305,9,999999999,110,0.0840,0,88,0.190,0.0,1.0 +1999,4,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.7,92,82800,791,1352,300,94,0,94,11600,0,11600,4650,280,3.1,10,10,4.8,183,9,999999999,110,0.0840,0,88,0.190,0.0,1.0 +1999,4,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,2.8,100,82900,561,1352,302,63,0,63,7700,0,7700,2900,280,3.6,10,10,0.8,152,9,999999999,110,0.0840,0,88,0.190,0.0,1.0 +1999,4,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.8,97,83000,306,1352,304,36,0,36,4300,0,4300,1480,320,1.5,10,10,4.0,274,9,999999999,110,0.0840,0,88,0.190,1.0,1.0 +1999,4,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.0,2.0,93,83000,60,958,302,4,0,4,500,0,500,160,70,10.3,10,10,6.4,90,9,999999999,110,0.0840,0,88,0.190,1.0,1.0 +1999,4,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.7,96,83100,0,0,298,0,0,0,0,0,0,0,70,9.3,10,10,6.4,91,9,999999999,110,0.0840,0,88,0.190,0.0,1.0 +1999,4,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.1,96,83200,0,0,295,0,0,0,0,0,0,0,70,8.2,10,10,6.4,122,9,999999999,110,0.0840,0,88,0.190,1.0,1.0 +1999,4,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,83300,0,0,292,0,0,0,0,0,0,0,80,6.7,10,10,8.0,122,9,999999999,110,0.0840,0,88,0.190,2.0,1.0 +1999,4,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,83500,0,0,287,0,0,0,0,0,0,0,70,1.5,10,10,3.2,122,9,999999999,110,0.0840,0,88,0.190,2.0,1.0 +1999,4,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,83400,0,0,287,0,0,0,0,0,0,0,320,1.5,10,10,1.6,152,9,999999999,110,0.0840,0,88,0.190,2.0,1.0 +1999,4,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-0.6,95,83500,0,0,286,0,0,0,0,0,0,0,0,0.0,10,10,1.6,152,9,999999999,110,0.0850,0,88,0.190,1.0,1.0 +1999,4,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-0.6,95,83400,0,0,286,0,0,0,0,0,0,0,20,2.6,10,10,1.6,274,9,999999999,110,0.0850,0,88,0.190,1.0,1.0 +1999,4,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.0,92,83400,0,0,286,0,0,0,0,0,0,0,20,2.6,10,10,1.6,270,9,999999999,110,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-0.6,100,83600,0,0,284,0,0,0,0,0,0,0,20,2.6,10,10,2.4,274,9,999999999,110,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-0.6,100,83800,0,0,284,0,0,0,0,0,0,0,40,2.6,10,10,2.0,91,9,999999999,110,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.0,-1.0,100,83500,80,1093,281,0,0,0,0,0,0,0,80,4.1,10,10,4.8,150,9,999999999,110,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-1.7,95,83700,334,1352,280,75,0,75,8500,0,8500,2770,70,7.2,10,10,1.6,152,9,999999999,110,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.8,87,83800,587,1352,279,77,0,77,9300,0,9300,3510,70,6.7,10,10,1.6,335,9,999999999,110,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.8,87,83800,814,1352,279,105,0,105,12900,0,12900,5180,70,5.2,10,10,1.6,305,9,999999999,110,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.2,91,83900,998,1352,280,133,0,133,16500,0,16500,6840,80,2.1,10,10,8.0,305,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-1.7,91,84000,1127,1352,282,148,0,148,18500,0,18500,7720,0,0.0,10,10,4.0,274,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.1,91,83900,1192,1352,286,182,0,182,22600,0,22600,9320,0,0.0,10,10,4.8,335,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.1,91,83900,1188,1352,286,208,0,208,25600,0,25600,10440,0,0.0,10,10,8.0,244,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.1,91,83800,1117,1352,286,292,12,283,34800,1000,34000,13200,0,0.0,10,10,9.6,640,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-1.0,86,83800,982,1352,290,252,6,247,29600,500,29200,11350,0,0.0,10,10,16.1,1110,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.2,74,83900,794,1352,292,150,0,150,17800,0,17800,6950,0,0.0,10,10,16.0,1067,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-0.6,88,83900,564,1352,291,68,0,68,8200,0,8200,3110,0,0.0,10,10,6.4,396,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-0.6,91,83800,309,1352,289,32,0,32,3900,0,3900,1340,0,0.0,10,10,4.8,335,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-0.6,91,83900,62,980,289,14,191,7,2200,11500,1400,230,0,0.0,10,10,4.8,274,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.1,87,83900,0,0,288,0,0,0,0,0,0,0,0,0.0,10,10,16.0,335,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-1.1,84,84000,0,0,290,0,0,0,0,0,0,0,0,0.0,10,10,11.2,305,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-1.1,84,84000,0,0,290,0,0,0,0,0,0,0,0,0.0,10,10,16.0,366,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-0.6,91,84000,0,0,289,0,0,0,0,0,0,0,150,1.5,10,10,16.0,610,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-0.6,91,83900,0,0,289,0,0,0,0,0,0,0,180,2.1,10,10,16.0,488,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-1.1,96,83700,0,0,275,0,0,0,0,0,0,0,130,2.6,10,9,16.0,1524,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.2,91,83700,0,0,257,0,0,0,0,0,0,0,130,3.1,6,5,16.0,77777,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.8,87,83600,0,0,250,0,0,0,0,0,0,0,130,3.1,2,2,16.0,77777,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.8,87,83600,0,0,252,0,0,0,0,0,0,0,140,3.1,3,3,16.0,77777,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-3.3,83,83600,0,0,256,0,0,0,0,0,0,0,70,1.5,6,5,16.0,77777,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.8,87,83600,85,1114,256,0,0,0,0,0,0,0,170,2.6,6,5,16.0,77777,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.2,83,83700,339,1351,261,240,688,67,24600,57000,10200,1210,0,0.0,6,5,16.0,77777,9,999999999,100,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-1.1,81,83700,592,1351,269,452,698,146,46100,66100,17100,2750,230,2.1,6,5,16.0,77777,9,999999999,110,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,0.0,79,83800,818,1351,292,536,421,280,57200,44700,30100,7170,210,1.5,10,9,16.0,914,9,999999999,110,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-0.6,72,83800,1002,1351,294,461,133,362,50300,14100,39800,11670,180,3.1,10,9,16.0,610,9,999999999,110,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.6,70,83700,1130,1351,303,463,90,387,51000,9300,43300,16310,190,2.6,10,9,16.0,671,9,999999999,110,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,1.1,67,83800,1195,1351,308,751,409,389,82400,44400,43000,18090,230,4.1,10,9,16.0,792,9,999999999,110,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,1.7,65,83800,1191,1351,314,482,78,414,53300,8000,46200,19000,150,4.6,10,9,16.0,853,9,999999999,110,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,2.8,68,83800,1120,1351,326,433,42,398,47700,4300,44100,16450,160,5.2,10,10,16.0,792,9,999999999,120,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,83600,985,1351,325,395,77,338,43400,7900,37700,12270,140,9.3,10,10,16.0,732,9,999999999,120,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,2.8,71,83600,797,1351,324,200,6,196,23200,500,22900,8590,160,7.2,10,10,16.0,884,9,999999999,120,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,3.3,79,83300,567,1351,320,89,0,89,10600,0,10600,3930,150,7.7,10,10,16.0,853,9,999999999,120,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.2,76,83400,313,1351,316,32,0,32,3900,0,3900,1340,140,5.2,10,10,16.0,853,9,999999999,120,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.2,82,83400,65,1002,311,10,83,7,1400,4200,1100,140,150,7.2,10,10,16.0,1280,9,999999999,120,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.8,89,83300,0,0,309,0,0,0,0,0,0,0,130,6.7,10,10,16.0,914,9,999999999,120,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,2.0,87,83300,0,0,306,0,0,0,0,0,0,0,140,8.7,10,10,16.1,840,9,999999999,129,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,2.8,93,83200,0,0,306,0,0,0,0,0,0,0,150,7.7,10,10,16.0,853,9,999999999,129,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,2.2,89,83200,0,0,306,0,0,0,0,0,0,0,150,6.7,10,10,16.0,853,9,999999999,129,0.0850,0,88,0.190,0.0,1.0 +1999,4,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.2,92,83000,0,0,303,0,0,0,0,0,0,0,160,4.6,10,10,16.0,884,9,999999999,129,0.0850,0,88,0.190,0.0,1.0 +1999,4,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.2,92,83000,0,0,303,0,0,0,0,0,0,0,160,3.6,10,10,16.0,884,9,999999999,129,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.1,92,82800,0,0,297,0,0,0,0,0,0,0,120,3.6,10,10,12.8,914,9,999999999,129,0.0860,0,88,0.190,2.0,1.0 +1999,4,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.6,92,82700,0,0,294,0,0,0,0,0,0,0,140,3.6,10,10,16.0,366,9,999999999,139,0.0860,0,88,0.190,1.0,1.0 +1999,4,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,82700,0,0,292,0,0,0,0,0,0,0,150,4.1,10,10,16.0,1067,9,999999999,139,0.0860,0,88,0.190,1.0,1.0 +1999,4,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.1,92,82800,0,0,297,0,0,0,0,0,0,0,240,3.1,10,10,8.0,914,9,999999999,139,0.0860,0,88,0.190,1.0,1.0 +1999,4,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,1.0,100,82600,89,1159,292,0,0,0,0,0,0,0,290,4.1,10,10,4.0,600,9,999999999,139,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9?9?9,0.6,0.0,96,82600,344,1350,289,156,187,109,16400,15700,12400,2190,270,4.1,10,10,4.0,61,9,999999999,139,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,0.0,93,82600,597,1350,291,90,0,90,10700,0,10700,4040,270,4.1,10,10,2.4,60,9,999999999,129,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.0,96,82600,822,1350,289,118,0,118,14300,0,14300,5760,290,2.1,10,10,5.6,122,9,999999999,129,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.2,92,82700,1005,1350,295,341,48,305,37600,4900,33900,11530,280,3.1,10,9,16.0,2134,9,999999999,129,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.8,86,82700,1133,1350,311,648,289,405,70300,31300,43900,16230,310,2.1,10,10,16.0,396,9,999999999,129,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,2.8,76,82700,1198,1350,310,679,294,417,74000,31900,45600,19750,340,2.1,10,9,16.0,427,9,999999999,129,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,2.2,68,82800,1194,1350,323,536,120,430,58900,12800,47600,19380,40,3.1,10,10,16.0,610,9,999999999,129,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,82700,1122,1350,325,433,48,393,47800,4900,43600,16350,90,3.1,10,10,16.0,914,9,999999999,129,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,3.3,71,82700,988,1350,318,538,286,329,58200,30900,35600,10070,90,2.6,10,9,16.0,1097,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.8,63,82800,800,1350,331,100,0,100,12300,0,12300,4930,50,2.6,10,10,16.0,3048,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,2.8,74,82600,571,1350,321,200,58,175,21900,5600,19500,4970,110,4.6,10,10,16.0,1036,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.3,76,82700,317,1350,313,123,143,90,13400,11900,10600,1960,170,4.1,10,9,16.0,2743,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.2,82,82600,68,1024,302,18,214,9,2600,13000,1700,270,160,4.6,10,9,16.0,6096,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,2.2,89,82600,0,0,297,0,0,0,0,0,0,0,120,1.5,10,9,16.0,6096,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,2.2,89,82700,0,0,281,0,0,0,0,0,0,0,200,3.1,10,5,16.0,77777,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.6,92,82500,0,0,270,0,0,0,0,0,0,0,170,3.1,10,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.0,92,82600,0,0,267,0,0,0,0,0,0,0,180,4.1,10,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-0.6,91,82300,0,0,265,0,0,0,0,0,0,0,150,2.6,10,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.1,87,82300,0,0,264,0,0,0,0,0,0,0,190,4.1,5,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.7,87,82200,0,0,262,0,0,0,0,0,0,0,160,3.1,5,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.7,83,82200,0,0,264,0,0,0,0,0,0,0,170,2.6,5,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.2,83,82100,0,0,261,0,0,0,0,0,0,0,170,2.1,5,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.8,87,82400,0,0,262,0,0,0,0,0,0,0,0,0.0,7,7,16.0,3353,9,999999999,100,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.7,83,82300,94,1181,280,0,0,0,0,0,0,0,200,2.1,9,9,16.0,2438,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,0.6,82,82400,349,1349,293,245,651,76,24900,54200,10900,1350,190,1.5,9,9,16.0,2743,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,3.0,76,82600,601,1349,312,416,660,121,43000,63400,14700,2400,290,5.7,9,9,16.1,5400,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.3,82,82600,826,1349,308,646,727,200,66500,71900,22400,4580,300,4.1,9,9,9.6,2743,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.9,76,82800,1009,1349,316,246,30,223,27200,3000,24900,8850,10,4.1,9,9,8.0,6096,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,4.4,73,82700,1136,1349,322,605,271,376,66000,29400,41200,15050,20,5.2,9,9,12.8,2438,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.8,57,83000,1200,1349,330,945,769,259,99700,77900,30200,12960,360,3.6,9,9,16.0,2286,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.3,59,83000,1196,1349,331,804,521,341,86000,54400,37600,17350,30,2.6,9,9,16.0,945,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.9,59,83100,1125,1349,334,796,651,251,83400,65800,28500,9870,50,4.6,9,9,16.0,6096,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.9,57,83000,990,1349,337,687,631,223,71700,63400,25000,6520,0,0.0,9,9,16.0,6096,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.9,57,83100,802,1349,337,416,254,265,44600,26900,28500,6650,10,3.1,9,9,16.0,6096,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.9,59,82800,574,1349,334,179,29,166,19600,2800,18400,4780,50,4.1,9,9,16.0,2896,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,3.9,61,83100,321,1349,331,32,0,32,3900,0,3900,1350,60,2.1,9,9,16.0,2896,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,3.9,66,83100,71,1046,326,11,64,8,1500,2800,1300,130,90,1.5,9,9,16.0,6096,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.9,80,82900,0,0,296,0,0,0,0,0,0,0,80,3.6,5,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,3.3,82,82900,0,0,291,0,0,0,0,0,0,0,160,4.1,5,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.8,86,82800,0,0,286,0,0,0,0,0,0,0,170,4.6,5,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.8,79,82900,0,0,290,0,0,0,0,0,0,0,180,5.2,5,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.8,79,82900,0,0,290,0,0,0,0,0,0,0,190,5.2,5,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,1.7,86,82800,0,0,280,0,0,0,0,0,0,0,180,4.6,5,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.1,79,82800,0,0,282,0,0,0,0,0,0,0,170,3.6,5,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,2.2,73,82900,0,0,292,0,0,0,0,0,0,0,200,6.2,5,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.1,70,82900,0,0,289,0,0,0,0,0,0,0,190,4.1,5,5,16.0,77777,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,1.1,65,83000,0,0,299,0,0,0,0,0,0,0,220,5.2,7,7,16.0,6096,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.7,61,83100,98,1225,319,0,0,0,0,0,0,0,210,4.6,9,9,16.0,6096,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.7,52,83200,354,1349,329,146,133,111,15800,11600,12700,2440,250,2.6,9,9,16.0,6096,9,999999999,110,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.8,54,83300,606,1349,333,166,6,163,18900,500,18700,6480,0,0.0,9,9,16.0,3658,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.3,51,83400,830,1349,341,339,104,275,37300,10600,30800,8970,220,3.6,9,9,16.0,6096,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.2,40,83600,1012,1349,351,726,593,279,77100,61700,30700,8820,290,2.1,9,9,16.0,6706,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.7,35,83100,1139,1349,358,938,850,218,99600,86600,26200,9070,0,0.0,9,9,16.0,6706,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.7,35,83500,1203,1349,358,842,565,337,90300,59000,37500,17600,360,2.1,9,9,16.0,6706,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,1.1,31,83500,1199,1349,363,983,869,208,101300,86700,24100,9330,0,0.0,9,9,16.0,6706,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,1.7,31,83500,1127,1349,369,901,789,240,94900,79900,27900,9560,110,4.6,9,9,16.0,6096,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,2.2,28,83500,993,1349,381,481,202,332,52800,21400,37000,10610,80,3.6,9,9,16.0,6706,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,2.8,34,83400,805,1349,368,255,24,241,29300,2100,28000,10030,60,4.6,9,9,16.0,2896,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,4.4,41,82900,577,1349,364,116,0,116,13500,0,13500,4910,40,3.6,9,9,16.0,2743,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,5.0,48,83300,324,1349,357,92,28,85,10100,2400,9500,2190,50,3.6,9,9,16.0,6096,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.6,64,83100,74,1068,339,10,0,10,1200,0,1200,390,60,4.6,9,9,16.0,6096,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.7,71,83200,0,0,337,0,0,0,0,0,0,0,90,5.2,9,9,16.0,6096,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.1,74,83100,0,0,332,0,0,0,0,0,0,0,110,7.2,9,9,16.0,6096,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.6,77,83100,0,0,325,0,0,0,0,0,0,0,150,6.2,9,9,16.0,6096,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,83100,0,0,322,0,0,0,0,0,0,0,250,5.7,9,9,16.0,6096,9,999999999,120,0.0860,0,88,0.190,0.0,1.0 +1999,4,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,83100,0,0,319,0,0,0,0,0,0,0,230,2.1,9,9,16.0,6096,9,999999999,129,0.0860,0,88,0.190,0.0,1.0 +1999,4,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,83000,0,0,315,0,0,0,0,0,0,0,220,3.6,9,9,16.0,6096,9,999999999,129,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,83000,0,0,315,0,0,0,0,0,0,0,190,4.1,9,9,16.0,7620,9,999999999,129,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,82900,0,0,293,0,0,0,0,0,0,0,210,3.6,6,5,14.4,77777,9,999999999,129,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.0,89,83000,0,0,313,0,0,0,0,0,0,0,180,3.4,9,9,14.4,6096,9,999999999,129,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,2.8,93,83100,0,0,298,0,0,0,0,0,0,0,150,3.1,9,9,11.2,6096,9,999999999,129,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.9,93,83000,103,1247,304,0,0,0,0,0,0,0,140,2.1,9,9,12.8,6096,9,999999999,129,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,83200,359,1348,319,113,20,108,12600,1100,12300,3680,150,4.6,9,9,16.0,6096,9,999999999,129,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,83300,610,1348,327,297,180,215,32100,18100,23900,5190,170,3.1,9,9,16.0,6096,9,999999999,129,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.7,77,83300,834,1348,342,267,31,248,29400,3100,27500,8290,140,4.6,10,10,16.0,6096,9,999999999,139,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.7,71,83400,1016,1348,347,580,272,375,62400,29300,40200,12180,150,3.6,10,10,16.0,6096,9,999999999,139,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,7.8,69,83100,1142,1348,334,333,30,307,36800,3100,34200,13670,130,5.7,7,7,16.0,6096,9,999999999,139,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.2,62,83400,1206,1348,351,424,24,402,49600,2300,47600,17320,130,1.5,9,9,16.0,975,9,999999999,139,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.9,62,83400,1202,1348,372,417,30,390,46100,3100,43300,18500,130,6.7,10,10,16.0,6096,9,999999999,139,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,8.9,64,83200,1130,1348,369,252,12,242,30400,1000,29600,11720,100,10.8,10,10,16.0,6096,9,999999999,139,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.3,60,83300,996,1348,361,550,339,299,60000,36600,32800,9120,140,11.8,9,9,16.0,6096,9,999999999,150,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.2,57,83200,808,1348,367,389,189,275,42300,19800,30500,7430,140,11.3,10,10,16.0,6096,9,999999999,150,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.9,77,82900,580,1348,355,68,0,68,8300,0,8300,3140,170,7.2,10,10,16.0,1981,9,999999999,150,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,83200,328,1348,339,32,0,32,3900,0,3900,1360,160,8.8,10,10,16.0,1524,9,999999999,150,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,83000,77,1090,334,14,109,9,1900,5700,1400,180,100,9.8,10,10,16.0,1341,9,999999999,150,0.0870,0,88,0.190,1.0,1.0 +1999,4,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.8,93,83100,0,0,335,0,0,0,0,0,0,0,110,14.4,10,10,12.8,1524,9,999999999,150,0.0870,0,88,0.190,1.0,1.0 +1999,4,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,83000,0,0,325,0,0,0,0,0,0,0,90,6.7,10,10,9.6,1158,9,999999999,160,0.0870,0,88,0.190,5.0,1.0 +1999,4,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,83000,0,0,330,0,0,0,0,0,0,0,120,9.8,10,10,16.0,2438,9,999999999,160,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,83000,0,0,330,0,0,0,0,0,0,0,130,6.7,10,10,16.0,1981,9,999999999,160,0.0870,0,88,0.190,0.0,1.0 +1999,4,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,83100,0,0,331,0,0,0,0,0,0,0,140,7.7,10,10,16.0,1676,9,999999999,160,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,83100,0,0,331,0,0,0,0,0,0,0,140,5.7,10,10,16.0,457,9,999999999,160,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,83100,0,0,331,0,0,0,0,0,0,0,150,9.8,10,10,16.0,457,9,999999999,160,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,4.4,89,83000,0,0,318,0,0,0,0,0,0,0,180,5.2,10,10,16.0,1829,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,82900,0,0,319,0,0,0,0,0,0,0,120,6.2,10,10,16.0,1433,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,4.4,89,83200,0,0,318,0,0,0,0,0,0,0,160,2.6,10,10,16.0,1981,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,4.4,92,83200,108,1269,307,0,0,0,0,0,0,0,130,3.1,9,9,16.0,4572,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.0,89,83300,364,1347,321,152,106,124,16400,9300,13900,2740,100,5.7,10,10,16.0,640,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,83400,614,1347,331,303,174,224,32700,17500,24800,5420,120,10.3,10,10,16.0,335,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,83500,838,1347,330,267,18,256,30700,1600,29700,10710,140,9.3,10,10,16.0,396,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.1,83,83500,1019,1347,333,315,18,302,36800,1600,35600,13390,140,9.3,10,10,16.0,518,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,83400,1145,1347,331,265,0,265,31800,0,31800,12630,140,8.2,10,10,9.6,488,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,83500,1208,1347,336,206,6,201,25500,500,25100,10170,130,11.3,10,10,16.0,549,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,83500,1204,1347,339,369,18,353,43700,1600,42200,15850,130,10.3,10,10,16.0,579,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,83500,1132,1347,342,298,12,288,35500,1000,34600,13430,140,10.8,10,10,16.0,640,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,83400,998,1347,322,126,0,126,15700,0,15700,6530,110,8.2,9,9,14.4,1250,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.8,93,83500,811,1347,335,256,24,241,29300,2100,28100,10080,110,9.8,10,10,16.0,427,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,83300,583,1347,334,121,0,121,14100,0,14100,5100,120,10.8,10,10,16.0,366,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.6,86,83500,331,1347,318,111,72,93,12100,6200,10600,2370,120,13.4,9,9,16.0,366,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,83500,80,1111,324,4,0,4,500,0,500,160,130,10.3,10,10,16.0,244,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,83600,0,0,322,0,0,0,0,0,0,0,140,9.3,10,10,12.8,244,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,83600,0,0,322,0,0,0,0,0,0,0,130,5.2,10,10,11.2,274,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,83600,0,0,322,0,0,0,0,0,0,0,140,5.7,10,10,11.2,274,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,83600,0,0,323,0,0,0,0,0,0,0,150,6.7,10,10,11.2,274,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.6,90,83600,0,0,324,0,0,0,0,0,0,0,140,6.7,10,10,16.0,792,9,999999999,170,0.0870,0,88,0.190,0.0,1.0 +1999,4,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,83600,0,0,322,0,0,0,0,0,0,0,130,9.3,10,10,16.0,671,9,999999999,170,0.0880,0,88,0.190,0.0,1.0 +1999,4,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,83500,0,0,322,0,0,0,0,0,0,0,130,6.2,10,10,16.0,732,9,999999999,170,0.0880,0,88,0.190,0.0,1.0 +1999,4,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,83600,0,0,323,0,0,0,0,0,0,0,140,5.2,10,10,11.2,274,9,999999999,170,0.0880,0,88,0.190,0.0,1.0 +1999,4,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,83500,0,0,322,0,0,0,0,0,0,0,130,8.2,10,10,8.0,274,9,999999999,170,0.0880,0,88,0.190,0.0,1.0 +1999,4,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,83500,0,0,322,0,0,0,0,0,0,0,130,7.2,10,10,11.2,610,9,999999999,170,0.0880,0,88,0.190,0.0,1.0 +1999,4,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.6,97,83600,112,1290,319,0,0,0,0,0,0,0,150,8.8,10,10,4.0,213,9,999999999,170,0.0880,0,88,0.190,0.0,1.0 +1999,4,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,83600,369,1347,322,56,0,56,6600,0,6600,2290,140,7.7,10,10,8.0,610,9,999999999,170,0.0880,0,88,0.190,0.0,1.0 +1999,4,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,4.4,89,83600,619,1347,318,76,0,76,9200,0,9200,3540,150,7.2,10,10,6.4,610,9,999999999,170,0.0880,0,88,0.190,2.0,1.0 +1999,4,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.0,89,83600,841,1347,321,111,0,111,13600,0,13600,5520,140,9.3,10,10,9.6,762,9,999999999,170,0.0880,0,88,0.190,1.0,1.0 +1999,4,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,6.0,93,83600,1022,1347,324,132,0,132,16400,0,16400,6850,130,6.7,10,10,16.1,1140,9,999999999,170,0.0880,0,88,0.190,0.0,1.0 +1999,4,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,83500,1148,1347,328,154,0,154,19300,0,19300,8020,120,7.7,10,10,8.0,457,9,999999999,170,0.0880,0,88,0.190,1.0,1.0 +1999,4,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,83500,1211,1347,328,170,0,170,21300,0,21300,8800,150,4.6,10,10,2.4,518,9,999999999,160,0.0880,0,88,0.190,6.0,1.0 +1999,4,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,83500,1206,1347,325,155,0,155,19500,0,19500,8110,220,5.7,10,10,2.4,610,9,999999999,160,0.0880,0,88,0.190,8.0,1.0 +1999,4,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,6.0,93,83400,1135,1347,324,146,0,146,18300,0,18300,7630,220,5.7,10,10,2.4,600,9,999999999,160,0.0880,0,88,0.190,9.0,1.0 +1999,4,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,4.0,100,83400,1001,1347,308,126,0,126,15700,0,15700,6530,280,4.6,10,10,3.2,540,9,999999999,160,0.0880,0,88,0.190,7.0,1.0 +1999,4,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,83400,814,1347,313,100,0,100,12300,0,12300,4970,300,3.6,10,10,3.2,518,9,999999999,160,0.0880,0,88,0.190,6.0,1.0 +1999,4,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,83400,586,1347,313,69,0,69,8400,0,8400,3190,340,3.1,10,10,1.6,427,9,999999999,160,0.0880,0,88,0.190,5.0,1.0 +1999,4,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,5.0,96,83300,335,1347,316,37,0,37,4400,0,4400,1560,310,5.2,10,10,0.4,213,9,999999999,160,0.0880,0,88,0.190,0.0,1.0 +1999,4,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,5.0,93,83200,84,1133,318,18,81,13,2200,3700,1900,220,310,5.1,10,10,5.2,210,9,999999999,160,0.0880,0,88,0.190,0.0,1.0 +1999,4,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,83400,0,0,313,0,0,0,0,0,0,0,270,4.1,10,10,11.2,122,9,999999999,150,0.0880,0,88,0.190,0.0,1.0 +1999,4,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,83400,0,0,301,0,0,0,0,0,0,0,280,2.1,9,9,11.2,366,9,999999999,150,0.0880,0,88,0.190,0.0,1.0 +1999,4,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.8,3.0,97,83400,0,0,298,0,0,0,0,0,0,0,0,2.0,9,9,11.2,427,9,999999999,150,0.0880,0,88,0.190,0.0,1.0 +1999,4,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.1,2.2,96,83400,0,0,302,0,0,0,0,0,0,0,0,1.9,10,10,11.2,853,9,999999999,150,0.0880,0,88,0.190,0.0,1.0 +1999,4,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.5,1.3,100,83300,0,0,299,0,0,0,0,0,0,0,100,1.8,10,10,9.6,884,9,999999999,150,0.0880,0,88,0.190,0.0,1.0 +1991,5,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.9,0.4,81,83800,0,0,256,0,0,0,0,0,0,0,210,1.8,0,0,32.0,77777,9,999999999,50,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.3,-0.4,84,83800,0,0,253,0,0,0,0,0,0,0,180,1.7,0,0,32.0,77777,9,999999999,50,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.2,80,83700,0,0,250,0,0,0,0,0,0,0,190,1.6,0,0,32.0,77777,9,999999999,50,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.2,83,83700,0,0,246,0,0,0,0,0,0,0,260,1.5,0,0,32.0,77777,9,999999999,40,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-2.8,73,83700,0,0,250,0,0,0,0,0,0,0,230,2.1,0,0,64.0,77777,9,999999999,40,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-3.3,70,83800,117,1335,249,50,327,21,5100,19500,3300,390,200,2.1,0,0,96.0,77777,9,999999999,40,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-2.8,58,83800,373,1346,262,238,702,43,24900,61900,7800,910,0,0.0,0,0,96.0,77777,9,999999999,50,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-2.2,54,83700,622,1346,269,456,851,62,47900,82200,9800,1410,310,2.1,0,0,96.0,77777,9,999999999,50,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.2,48,83700,845,1346,276,659,926,77,68900,91900,11100,1920,230,2.1,0,0,96.0,77777,9,999999999,50,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.1,45,83600,1025,1346,286,825,966,89,85900,96700,12200,2660,310,1.5,0,0,96.0,77777,9,999999999,50,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.6,45,83500,1151,1346,296,941,988,96,97800,99100,12800,3690,20,3.1,0,0,96.0,77777,9,999999999,50,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.1,40,83400,1213,1346,306,999,997,99,103600,100100,13100,4630,50,3.1,0,0,80.0,77777,9,999999999,50,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,0.6,35,83300,1209,1346,313,994,996,99,103100,100000,13100,4540,100,3.6,0,0,80.0,77777,9,999999999,50,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.0,28,83200,1137,1346,331,885,938,93,92100,94100,12400,3480,70,4.1,1,1,96.0,77777,9,999999999,60,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-1.1,27,83100,1003,1346,335,604,565,182,64000,57500,21100,5620,120,5.7,5,3,96.0,77777,9,999999999,60,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-2.2,23,83000,816,1346,341,592,741,143,62500,74600,17200,3430,100,4.6,7,4,96.0,77777,9,999999999,60,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-3.9,20,83000,589,1346,337,370,528,138,39200,51700,16500,2750,130,2.1,8,4,96.0,77777,9,999999999,60,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-1.7,25,83000,338,1346,346,148,53,134,16100,4700,14900,3120,140,2.1,9,7,96.0,7620,9,999999999,60,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-0.6,30,83000,87,1155,338,19,27,17,2200,1300,2100,350,190,3.1,9,6,80.0,7620,9,999999999,60,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.6,39,83100,0,0,321,0,0,0,0,0,0,0,300,3.6,7,4,48.0,77777,9,999999999,60,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.2,50,83100,0,0,311,0,0,0,0,0,0,0,90,1.5,8,3,32.0,77777,9,999999999,69,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.3,61,83000,0,0,298,0,0,0,0,0,0,0,270,2.1,2,1,32.0,77777,9,999999999,69,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-1.7,45,83000,0,0,283,0,0,0,0,0,0,0,190,2.6,1,0,32.0,77777,9,999999999,69,0.0890,0,88,0.200,0.0,1.0 +1991,5,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,1.7,65,83000,0,0,280,0,0,0,0,0,0,0,200,3.1,0,0,32.0,77777,9,999999999,69,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,1.1,65,83000,0,0,277,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,69,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,1.1,67,83000,0,0,275,0,0,0,0,0,0,0,260,2.6,0,0,32.0,77777,9,999999999,69,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-0.6,64,83100,0,0,269,0,0,0,0,0,0,0,330,5.2,0,0,32.0,77777,9,999999999,69,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.1,69,83100,0,0,262,0,0,0,0,0,0,0,340,4.6,0,0,32.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-1.7,69,83200,0,11,259,0,0,0,0,0,0,0,320,3.6,0,0,64.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-2.2,66,83200,122,1345,259,45,196,27,4700,9400,3800,480,340,4.6,0,0,96.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.3,55,83300,378,1345,262,222,577,60,23200,50200,9100,1140,350,5.2,0,0,80.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-2.2,56,83200,626,1345,267,436,751,86,45300,72700,11300,1750,340,5.2,0,0,64.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-1.1,57,83200,848,1345,273,639,841,108,67400,84200,14200,2620,360,4.6,0,0,64.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-1.1,51,83100,1028,1345,284,770,839,129,82000,84800,17000,4010,350,6.2,1,1,64.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,83100,1153,1345,289,914,911,132,94000,91200,15600,4460,340,5.2,1,1,64.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-0.6,44,83000,1216,1345,303,976,838,219,100500,83400,25000,10550,30,5.2,3,3,64.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-0.6,42,82900,1211,1345,311,936,724,284,98400,73100,32500,14890,320,4.1,6,5,64.0,6706,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-0.6,39,82800,1139,1345,318,715,494,297,77100,51600,33300,12640,340,6.2,8,6,32.0,6706,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-0.6,39,82600,1005,1345,315,599,426,281,63700,44300,30600,8820,350,6.2,7,5,16.0,6706,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-0.6,39,82600,819,1345,318,456,387,219,48100,39700,23900,5270,330,8.2,6,6,24.0,6706,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-0.6,44,82600,592,1345,311,362,493,145,38200,48300,16900,2910,330,5.2,6,6,24.0,1280,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-0.6,46,82600,342,1345,306,111,219,55,12000,18300,7400,970,350,7.2,5,5,24.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-0.6,53,82700,90,1177,302,25,25,23,2800,1200,2700,480,350,5.2,7,7,24.0,1372,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-1.7,54,82800,0,0,299,0,0,0,0,0,0,0,10,7.2,8,8,24.0,1067,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-2.2,61,83000,0,0,284,0,0,0,0,0,0,0,360,5.2,7,7,32.0,975,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-2.2,58,83100,0,0,306,0,0,0,0,0,0,0,20,5.2,10,10,32.0,1036,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.7,66,83100,0,0,302,0,0,0,0,0,0,0,40,3.6,10,10,32.0,671,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-1.1,72,83100,0,0,300,0,0,0,0,0,0,0,30,2.6,10,10,32.0,671,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-0.6,78,83100,0,0,298,0,0,0,0,0,0,0,340,2.1,10,10,32.0,640,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-1.1,78,83000,0,0,255,0,0,0,0,0,0,0,80,2.1,0,0,32.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-1.1,81,83000,0,0,254,0,0,0,0,0,0,0,110,2.1,0,0,32.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.1,87,83000,0,0,250,0,0,0,0,0,0,0,110,2.1,0,0,32.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.1,87,83000,0,34,250,0,0,0,0,0,0,0,100,2.1,0,0,32.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.7,83,83000,126,1344,249,45,167,29,4700,8200,3900,520,120,2.1,0,0,32.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-1.1,72,83000,382,1344,260,218,538,65,22600,46800,9300,1220,100,2.1,0,0,16.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-0.6,67,83000,630,1344,272,410,645,108,43000,63000,13500,2240,80,3.1,1,1,19.2,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.0,60,83000,852,1344,276,634,812,120,66300,80900,14900,2810,100,2.6,0,0,19.2,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.6,50,82900,1031,1344,295,755,808,135,79900,81500,17300,4180,10,2.1,1,1,19.2,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.1,43,82900,1156,1344,315,813,703,208,86900,71900,24900,9230,360,3.6,3,3,24.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-0.6,37,82800,1218,1344,327,528,160,382,58500,17100,42900,18660,80,6.2,7,7,19.2,6706,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.0,36,82700,1213,1344,345,421,84,346,46700,8600,38900,17140,80,6.7,9,9,24.0,3048,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-1.1,30,82700,1141,1344,336,439,134,325,48900,14400,36700,13120,90,7.7,9,7,24.0,7620,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-0.6,34,82600,1008,1344,337,559,225,390,60800,23800,42900,12740,90,6.2,9,8,24.0,3353,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-0.6,33,82700,821,1344,357,211,0,211,24500,0,24500,9250,90,6.7,10,10,24.0,3353,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.0,36,82700,595,1344,345,154,63,126,17000,6100,14300,3880,60,5.2,9,9,24.0,3353,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.0,40,82800,345,1344,337,109,34,100,11900,3000,11100,2550,60,5.2,9,9,32.0,3353,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.0,43,82800,93,1199,332,20,0,20,2300,0,2300,710,90,3.1,9,9,32.0,3353,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.0,50,83000,0,0,331,0,0,0,0,0,0,0,20,7.2,10,10,24.0,3353,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,83200,0,0,325,0,0,0,0,0,0,0,30,7.2,10,10,24.0,2438,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.2,76,83300,0,0,316,0,0,0,0,0,0,0,350,8.2,10,10,16.0,610,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.8,86,83400,0,0,311,0,0,0,0,0,0,0,350,5.2,10,10,16.0,732,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.3,89,83400,0,0,312,0,0,0,0,0,0,0,360,4.1,10,10,11.2,366,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.8,89,83400,0,0,309,0,0,0,0,0,0,0,30,4.1,10,10,16.0,305,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.8,86,83400,0,0,311,0,0,0,0,0,0,0,60,3.6,10,10,16.0,244,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.8,89,83400,0,0,309,0,0,0,0,0,0,0,70,3.1,10,10,16.0,213,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.8,89,83400,0,0,309,0,0,0,0,0,0,0,70,2.1,10,10,19.2,305,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.8,89,83400,0,56,309,0,0,0,0,0,0,0,70,3.1,10,10,19.2,305,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.8,89,83500,131,1344,309,15,0,15,1800,0,1800,580,350,2.1,10,10,19.2,244,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.8,86,83500,386,1344,311,60,0,60,7000,0,7000,2460,40,2.6,10,10,19.2,274,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.3,89,83500,634,1344,312,111,0,111,13100,0,13100,4940,20,2.6,10,10,19.2,244,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,2.8,82,83500,855,1344,314,158,0,158,18900,0,18900,7510,40,2.1,10,10,19.2,274,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,3.3,76,83500,1034,1344,322,195,0,195,23600,0,23600,9620,10,2.1,10,10,24.0,396,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,2.8,68,83500,1158,1344,326,263,0,263,31600,0,31600,12600,70,3.1,10,10,32.0,518,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,3.3,73,83600,1220,1344,325,278,0,278,33600,0,33600,13300,100,4.6,10,10,32.0,610,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.8,79,83600,1215,1344,316,277,0,277,33500,0,33500,13260,80,6.2,10,10,24.0,762,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.8,86,83600,1143,1344,311,259,0,259,31100,0,31100,12410,90,5.2,10,10,11.2,732,9,999999999,89,0.0890,0,88,0.200,1.0,1.0 +1991,5,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.2,92,83700,1010,1344,303,227,0,227,27000,0,27000,10790,60,6.2,10,10,16.0,549,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.8,89,83700,824,1344,309,181,0,181,21300,0,21300,8240,50,4.1,10,10,24.0,1372,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,2.8,93,83800,598,1344,306,104,0,104,12300,0,12300,4570,60,3.1,10,10,16.0,244,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,2.2,89,83900,349,1344,306,53,0,53,6200,0,6200,2150,20,2.6,10,10,16.0,244,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.8,97,83900,96,1221,304,11,0,11,1300,0,1300,430,360,3.1,10,10,8.0,335,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,2.2,96,84000,0,0,301,0,0,0,0,0,0,0,330,3.6,10,10,8.0,335,9,999999999,80,0.0890,0,88,0.200,1.0,1.0 +1991,5,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,2.2,96,84100,0,0,301,0,0,0,0,0,0,0,360,2.6,10,10,6.4,335,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.1,92,84100,0,0,297,0,0,0,0,0,0,0,360,3.1,10,10,6.4,152,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,84100,0,0,292,0,0,0,0,0,0,0,320,1.5,10,10,6.4,61,9,999999999,80,0.0890,0,88,0.200,1.0,1.0 +1991,5,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,84200,0,0,292,0,0,0,0,0,0,0,300,2.6,10,10,4.8,61,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,84200,0,0,292,0,0,0,0,0,0,0,300,2.1,10,10,4.8,213,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.1,96,84200,0,0,295,0,0,0,0,0,0,0,220,2.6,10,10,8.0,396,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.1,92,84200,0,0,297,0,0,0,0,0,0,0,0,0.0,10,10,11.2,1006,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.1,92,84200,0,0,297,0,0,0,0,0,0,0,0,0.0,10,10,11.2,1097,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.7,92,84200,0,78,300,0,0,0,0,0,0,0,170,1.0,10,10,8.0,975,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.7,92,84200,135,1343,300,20,0,20,2300,0,2300,740,190,1.5,10,10,8.0,488,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-0.6,78,84300,390,1343,298,75,0,75,8700,0,8700,2960,100,3.1,10,10,16.0,457,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.1,79,84300,637,1343,298,366,74,331,40000,7500,36400,8320,130,1.5,10,9,19.2,853,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,1.1,67,84200,858,1343,308,500,366,265,53900,39100,28900,6910,250,2.1,9,9,48.0,610,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.6,60,84200,1036,1343,301,693,607,224,72700,61300,25300,7260,330,2.1,7,7,64.0,853,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.6,54,84200,1161,1343,300,853,778,181,89100,78100,21500,7410,20,3.1,4,4,80.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,0.6,48,84100,1222,1343,302,928,883,124,95600,88500,14800,5650,330,2.6,2,2,96.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.6,45,84100,1217,1343,309,989,923,152,101200,92400,17300,6210,20,3.1,3,3,96.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.6,40,84000,1145,1343,314,895,912,117,92400,91400,14300,4120,40,3.6,2,2,80.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.0,38,84000,1012,1343,316,717,772,135,75800,77800,17000,4020,40,4.6,3,3,80.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-0.6,35,84000,827,1343,310,600,776,121,62200,77100,14700,2720,360,2.6,1,1,80.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-1.1,34,84000,601,1343,310,405,782,54,42600,75300,8900,1320,350,2.6,1,1,80.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.8,32,84000,352,1343,303,201,553,56,20900,47100,8600,1060,80,2.1,1,1,80.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.0,44,84000,100,1242,294,41,293,17,4300,17300,2800,340,90,3.1,1,0,80.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.0,52,84000,0,0,290,0,0,0,0,0,0,0,110,2.6,1,1,80.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.0,52,84100,0,0,284,0,0,0,0,0,0,0,120,1.5,3,0,32.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,84100,0,0,285,0,0,0,0,0,0,0,160,4.1,2,1,32.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-0.6,55,84000,0,0,283,0,0,0,0,0,0,0,200,2.1,3,1,32.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.1,55,84000,0,0,289,0,0,0,0,0,0,0,180,2.6,5,4,32.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.0,62,83900,0,0,288,0,0,0,0,0,0,0,200,4.1,5,4,32.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,0.6,68,83900,0,0,284,0,0,0,0,0,0,0,190,4.1,4,3,32.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.6,70,83900,0,0,275,0,0,0,0,0,0,0,190,4.1,2,1,32.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,83800,0,0,275,0,0,0,0,0,0,0,210,2.1,8,1,32.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.0,73,83900,1,123,274,0,2,0,0,0,0,0,320,2.1,7,2,64.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.1,79,83900,140,1342,271,47,153,31,4900,8000,4100,550,190,2.1,5,1,96.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.7,63,83900,394,1342,287,225,525,71,23300,46000,9800,1330,180,2.6,2,1,96.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.1,48,83900,641,1342,301,422,696,89,44900,68800,12000,1910,90,1.0,4,1,96.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.6,40,83800,861,1342,314,557,586,181,58100,58700,20400,4450,0,0.0,7,2,96.0,77777,9,999999999,80,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-3.3,25,83800,1039,1342,325,778,694,240,81200,69800,27000,7760,190,2.1,9,4,96.0,77777,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-2.8,25,83700,1163,1342,324,811,678,223,86300,69100,26300,10120,140,3.1,7,2,96.0,77777,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-3.9,21,83600,1224,1342,331,943,799,214,101300,81900,26500,12230,40,1.5,6,3,80.0,77777,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-2.8,21,83500,1219,1342,353,691,355,368,76300,38600,41200,18870,120,4.1,7,7,96.0,3962,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-4.4,18,83400,1148,1342,364,642,105,551,70500,11000,61100,22440,130,3.6,10,9,96.0,3962,9,999999999,89,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-3.3,20,83400,1015,1342,365,530,218,364,57900,23100,40300,12010,130,2.6,10,9,96.0,6706,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-2.8,21,83400,829,1342,373,176,0,176,20800,0,20800,8090,170,3.6,10,10,96.0,2896,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-1.1,27,83400,604,1342,368,119,0,119,13900,0,13900,5120,320,5.2,10,10,96.0,2743,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,0.0,32,83400,355,1342,363,59,0,59,6900,0,6900,2360,310,5.2,10,10,96.0,2743,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.1,37,83400,103,1264,359,16,0,16,1900,0,1900,600,50,2.6,10,10,64.0,2591,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.6,37,83500,0,0,356,0,0,0,0,0,0,0,50,2.6,10,10,32.0,2438,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.6,37,83500,0,0,356,0,0,0,0,0,0,0,20,1.5,10,10,32.0,2134,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.3,52,83600,0,0,348,0,0,0,0,0,0,0,160,5.2,10,10,32.0,1676,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.0,63,83500,0,0,345,0,0,0,0,0,0,0,130,5.2,10,10,32.0,1981,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,4.4,65,83500,0,0,339,0,0,0,0,0,0,0,140,5.7,10,10,32.0,3353,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,83400,0,0,309,0,0,0,0,0,0,0,120,3.1,10,6,32.0,8534,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,83400,0,0,300,0,0,0,0,0,0,0,130,3.1,9,4,32.0,77777,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,83300,0,0,297,0,0,0,0,0,0,0,130,2.6,10,3,32.0,77777,9,999999999,120,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,5.0,86,83300,0,0,295,0,0,0,0,0,0,0,150,1.5,10,4,32.0,77777,9,999999999,120,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,83400,1,145,319,0,0,0,0,0,0,0,130,1.5,10,10,64.0,3353,9,999999999,120,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,83400,144,1342,329,27,0,27,3100,0,3100,960,210,2.1,10,10,80.0,3353,9,999999999,120,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,83500,398,1342,328,72,28,63,7900,2500,7100,1830,230,1.5,10,9,80.0,3353,9,999999999,120,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.0,66,83500,644,1342,342,161,0,161,18500,0,18500,6660,310,2.6,10,10,64.0,3048,9,999999999,120,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.0,59,83500,864,1342,341,395,95,333,43300,9700,37000,10780,360,3.1,10,9,64.0,3353,9,999999999,120,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,4.4,51,83500,1042,1342,335,564,295,334,61300,31900,36500,11130,120,2.6,9,7,64.0,7620,9,999999999,120,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.3,39,83500,1165,1342,340,753,512,308,81200,53500,34600,14340,360,2.6,8,5,64.0,7620,9,999999999,120,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,1.1,32,83500,1226,1342,332,929,788,208,96300,78800,24100,10820,20,3.1,5,2,64.0,77777,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,1.1,31,83500,1221,1342,345,707,272,459,76800,29500,49900,24270,330,2.6,8,6,72.0,7620,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.6,29,83500,1150,1342,345,704,552,231,74700,56100,26500,10030,70,3.1,7,5,96.0,7620,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.2,31,83500,1017,1342,346,711,565,282,75600,58800,31000,9080,360,4.6,5,3,96.0,77777,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,0.0,26,83500,832,1342,347,493,472,200,52800,48600,22600,4840,40,2.6,5,4,80.0,77777,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,1.1,29,83500,607,1342,348,308,332,157,33200,33800,17900,3320,50,2.1,5,5,80.0,77777,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.6,29,83500,359,1342,336,182,460,59,18900,39300,8400,1110,10,3.1,2,2,80.0,77777,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,0.6,34,83600,107,1286,329,39,184,23,4000,9700,3100,410,40,3.6,3,3,96.0,77777,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.1,57,83700,0,0,330,0,0,0,0,0,0,0,100,5.2,5,5,32.0,77777,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.6,62,83800,0,0,317,0,0,0,0,0,0,0,130,4.1,3,3,32.0,77777,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.0,63,83800,0,0,299,0,0,0,0,0,0,0,190,1.5,0,0,32.0,77777,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.6,71,83800,0,0,295,0,0,0,0,0,0,0,200,3.1,0,0,32.0,77777,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,4.4,71,83800,0,0,289,0,0,0,0,0,0,0,200,2.6,0,0,32.0,77777,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,3.3,71,83700,0,0,283,0,0,0,0,0,0,0,170,2.6,0,0,48.0,77777,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,2.2,68,83700,0,0,280,0,0,0,0,0,0,0,180,2.1,0,0,48.0,77777,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,2.8,76,83700,0,0,276,0,0,0,0,0,0,0,180,2.1,0,0,48.0,77777,9,999999999,110,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,2.8,76,83700,0,0,276,0,0,0,0,0,0,0,210,2.6,3,0,48.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.8,79,83700,2,168,274,0,5,0,0,0,0,0,180,2.1,2,0,96.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,3.3,68,83700,148,1341,291,57,246,30,5800,14400,4200,530,200,2.6,3,1,112.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.3,54,83700,402,1341,305,235,543,72,24300,47900,9900,1350,210,3.6,2,1,112.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.1,36,83700,648,1341,314,452,775,78,47700,75900,11000,1700,210,5.7,1,0,112.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.6,29,83600,867,1341,332,625,825,92,65100,81900,12000,2110,180,5.2,1,1,112.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,0.6,25,83600,1044,1341,338,815,905,110,84300,90500,13700,3070,210,2.6,1,0,112.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-1.7,19,83500,1167,1341,347,915,916,117,94400,91800,14300,4440,140,3.6,2,1,112.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,-0.6,19,83400,1228,1341,349,989,924,142,101400,92500,16500,6370,170,4.6,3,0,112.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,-0.6,18,83300,1223,1341,363,904,770,201,94000,77100,23600,10390,130,5.2,5,2,112.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,0.0,19,83200,1151,1341,362,811,742,173,84900,74600,20800,6990,140,3.1,8,1,112.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,0.6,18,83100,1019,1341,371,752,794,148,78700,79700,18000,4360,130,4.6,7,1,112.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,1.1,20,83100,834,1341,366,582,719,135,61900,72800,16500,3340,150,8.2,8,1,112.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,1.1,20,83000,610,1341,366,413,613,133,42400,58900,15600,2610,150,7.7,7,1,96.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,0.6,20,83000,362,1341,360,190,378,88,19900,32200,11200,1630,150,12.4,6,1,80.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,0.6,22,82900,110,1308,357,38,144,26,4100,6900,3500,460,170,10.8,6,2,88.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,0.0,24,83000,0,0,349,0,0,0,0,0,0,0,170,7.2,5,3,48.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,1.7,30,83100,0,0,342,0,0,0,0,0,0,0,190,5.7,2,2,32.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.8,33,83100,0,0,344,0,0,0,0,0,0,0,190,10.8,3,3,32.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.2,34,83000,0,0,331,0,0,0,0,0,0,0,190,10.3,1,1,32.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.2,38,83000,0,0,323,0,0,0,0,0,0,0,170,9.3,1,1,32.0,77777,9,999999999,100,0.0890,0,88,0.200,0.0,1.0 +1991,5,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.8,42,82900,0,0,327,0,0,0,0,0,0,0,180,5.2,3,3,32.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.2,40,82900,0,0,323,0,0,0,0,0,0,0,160,5.2,2,2,32.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.2,42,82800,0,0,323,0,0,0,0,0,0,0,170,5.7,6,3,32.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.2,45,82800,0,0,315,0,0,0,0,0,0,0,180,4.6,7,2,32.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,2.8,51,82800,2,190,319,0,6,0,0,0,0,0,180,4.1,8,5,96.0,7620,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.8,44,82800,152,1341,336,59,73,50,6300,4300,5800,1050,160,4.1,9,7,96.0,4877,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.8,38,82800,406,1341,352,165,119,128,17800,10800,14500,2860,140,4.1,9,8,96.0,4877,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.9,35,82800,651,1341,361,200,190,108,22400,19700,12800,2190,170,4.1,9,7,96.0,4267,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.7,50,82800,869,1341,357,426,275,247,46300,29500,27200,6430,340,3.1,9,8,80.0,4572,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.2,45,82800,1046,1341,362,510,259,308,56000,28100,34000,10240,350,2.6,9,7,96.0,4572,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,-3.3,16,82700,1169,1341,377,608,199,434,66700,21200,48100,18790,190,8.2,9,8,96.0,7620,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,-3.9,14,82700,1230,1341,373,793,473,358,84900,49400,39400,21540,190,9.3,9,7,96.0,7620,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,-3.3,15,82600,1225,1341,380,685,219,485,75000,23300,53700,24480,190,10.3,9,8,96.0,7620,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,-3.3,15,82600,1153,1341,391,316,37,283,34900,3800,31600,13040,160,7.7,10,9,96.0,7620,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,-2.2,15,82600,1021,1341,390,512,266,310,56000,28800,34000,9920,170,10.3,9,8,96.0,7620,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,-2.8,13,82500,837,1341,384,462,506,146,48800,51100,16900,3590,160,9.8,9,5,80.0,6706,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,-2.8,13,82500,613,1341,387,295,358,131,31600,35400,15400,2620,170,10.8,8,6,80.0,7010,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,-5.0,12,82500,365,1341,380,157,280,81,16600,23900,10100,1490,180,9.8,9,7,80.0,5486,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,-4.4,13,82600,114,1329,371,30,49,26,3400,2600,3100,540,180,5.7,9,6,88.0,5182,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-3.3,16,82600,0,0,364,0,0,0,0,0,0,0,160,4.6,9,6,48.0,7620,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-1.7,21,82600,0,0,352,0,0,0,0,0,0,0,160,4.1,8,5,32.0,7620,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-2.8,21,82700,0,0,343,0,0,0,0,0,0,0,170,5.2,6,4,32.0,7620,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-3.3,21,82700,0,0,329,0,0,0,0,0,0,0,170,3.6,3,1,32.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-3.3,22,82800,0,0,324,0,0,0,0,0,0,0,170,3.1,1,1,32.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-3.3,25,82800,0,0,315,0,0,0,0,0,0,0,140,5.7,1,1,32.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-3.3,25,82800,0,0,315,0,0,0,0,0,0,0,150,5.2,1,1,32.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-3.3,27,82800,0,0,314,0,0,0,0,0,0,0,130,3.6,2,2,32.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-2.8,30,82800,0,0,313,0,0,0,0,0,0,0,150,3.1,3,3,32.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-2.8,30,82800,3,212,310,0,4,0,0,0,0,0,190,4.6,4,2,64.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.7,31,82900,156,1340,322,44,102,32,4700,5500,4100,560,160,5.2,8,4,96.0,7620,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.7,28,82900,409,1340,323,239,502,85,24400,44100,10900,1550,180,3.1,7,2,96.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-1.1,22,82900,654,1340,348,375,412,173,39300,41100,19200,3630,200,3.1,8,3,96.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,-3.3,16,82900,872,1340,355,614,713,150,65100,72200,18000,3860,160,3.6,5,2,96.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,-1.7,16,82900,1049,1340,371,685,634,189,72900,64700,22200,6450,250,2.6,5,3,96.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,-7.8,8,82800,1171,1340,370,876,820,159,92900,82900,20300,7040,220,8.2,4,2,96.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,0.6,17,82800,1232,1340,385,919,785,197,96000,78700,23400,10740,150,11.3,4,3,96.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,0.0,15,82800,1227,1340,384,969,938,110,100200,94100,13800,5380,150,12.4,2,2,96.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,0.0,15,82800,1155,1340,387,895,900,119,92400,90200,14500,4320,150,10.8,3,3,96.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,0.0,15,82700,1023,1340,384,704,670,193,74700,68100,22600,6220,160,11.3,4,2,96.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,-3.9,10,82700,839,1340,388,444,481,142,47000,48600,16500,3520,180,7.2,4,3,88.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,-7.8,8,82700,616,1340,370,391,633,100,41100,61800,12700,2080,170,7.2,7,2,80.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,1.1,19,82700,368,1340,378,190,358,91,19800,30700,11300,1690,160,10.3,9,3,80.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,3.3,24,82700,117,1329,368,39,127,28,4200,6200,3600,500,140,5.7,7,2,72.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,11.7,50,82900,0,0,363,0,0,0,0,0,0,0,130,13.9,4,1,48.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.1,53,83000,0,0,347,0,0,0,0,0,0,0,130,11.3,1,0,24.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,83100,0,0,342,0,0,0,0,0,0,0,150,11.3,0,0,16.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.2,61,83100,0,0,344,0,0,0,0,0,0,0,170,10.8,0,0,16.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.1,59,83100,0,0,339,0,0,0,0,0,0,0,160,10.3,0,0,19.2,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.1,61,83100,0,0,337,0,0,0,0,0,0,0,160,9.3,0,0,19.2,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,83200,0,0,332,0,0,0,0,0,0,0,160,8.8,0,0,19.2,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.0,63,83200,0,0,328,0,0,0,0,0,0,0,170,5.2,0,0,19.2,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.6,70,83300,0,0,330,0,0,0,0,0,0,0,170,6.2,1,1,19.2,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,83300,3,234,332,0,1,0,0,0,0,0,180,3.6,3,3,32.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,8.3,62,83400,160,1339,330,61,166,42,6500,9000,5400,780,190,5.2,5,2,80.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,7.2,50,83400,413,1339,334,218,455,78,22500,40300,10100,1450,190,5.2,5,1,96.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.2,42,83400,657,1339,347,429,650,110,45100,64000,13700,2330,150,4.1,4,1,96.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,5.0,31,83400,875,1339,348,652,791,135,67500,78600,16000,3130,180,3.6,3,0,96.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,1.7,22,83300,1051,1339,362,691,700,142,73100,70600,17600,4570,170,5.7,2,1,96.0,77777,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,-2.8,13,83200,1173,1339,359,934,902,144,95800,90200,16600,5080,180,7.7,0,0,112.0,77777,9,999999999,89,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,-7.8,8,83100,1234,1339,365,899,763,196,94000,76600,23300,10810,170,7.2,6,1,112.0,77777,9,999999999,89,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,-4.4,11,83100,1228,1339,373,880,771,173,93200,77800,21700,9510,150,7.2,3,1,112.0,77777,9,999999999,89,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,-5.0,10,83000,1157,1339,374,873,818,166,92000,82400,20600,6940,160,7.2,2,2,112.0,77777,9,999999999,89,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,-6.7,9,82900,1025,1339,378,722,678,202,76200,68800,23400,6510,160,10.3,4,4,112.0,77777,9,999999999,89,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,-7.2,9,82800,841,1339,375,575,633,177,60000,63300,20100,4260,160,7.7,4,4,112.0,77777,9,999999999,89,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,-5.6,10,82800,618,1339,374,396,587,125,41000,56800,14800,2510,150,5.7,3,3,112.0,77777,9,999999999,89,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,-5.6,11,82700,372,1339,368,180,378,75,19200,32600,10100,1360,160,5.2,2,2,96.0,77777,9,999999999,89,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,-7.8,10,82700,121,1339,360,37,111,27,3900,4900,3500,480,150,6.2,3,3,64.0,77777,9,999999999,89,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,-7.8,11,82800,0,11,344,0,0,0,0,0,0,0,160,3.6,1,1,32.0,77777,9,999999999,89,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-8.3,12,82900,0,0,333,0,0,0,0,0,0,0,160,2.6,1,1,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-6.7,15,82900,0,0,325,0,0,0,0,0,0,0,150,4.1,1,1,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-6.7,16,83000,0,0,317,0,0,0,0,0,0,0,190,2.6,0,0,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-5.6,20,83100,0,0,309,0,0,0,0,0,0,0,200,2.1,0,0,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-9.4,13,83100,0,0,314,0,0,0,0,0,0,0,190,6.2,0,0,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-12.8,10,83200,0,0,302,0,0,0,0,0,0,0,210,2.6,0,0,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-1.7,39,83300,0,0,292,0,0,0,0,0,0,0,40,4.1,0,0,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.2,41,83300,0,0,290,0,0,0,0,0,0,0,70,3.6,1,1,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-1.7,47,83400,4,257,286,0,31,0,0,0,0,0,130,2.1,1,1,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-0.6,44,83500,164,1339,291,83,500,22,8800,35200,4500,480,300,1.5,0,0,80.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,83500,416,1339,295,278,776,37,29500,70400,7600,950,70,1.5,0,0,80.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-0.6,37,83500,660,1339,308,464,839,51,49100,81800,8800,1350,150,3.1,1,1,96.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.7,28,83500,877,1339,319,668,923,63,70300,91900,9900,1800,340,2.1,1,1,96.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-6.7,17,83500,1053,1339,314,849,986,73,88900,98900,11000,2500,270,2.6,0,0,96.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-8.9,14,83500,1175,1339,312,962,1005,79,100500,101000,11600,3510,260,4.1,0,0,112.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-10.6,11,83500,1235,1339,320,999,995,80,104300,100100,11700,4400,310,2.6,1,1,112.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-11.7,10,83500,1230,1339,316,1013,1013,82,105700,101900,11900,4390,220,7.2,0,0,96.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-12.8,8,83500,1159,1339,317,948,1004,78,99000,100900,11500,3320,240,6.2,0,0,112.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-13.3,8,83500,1027,1339,318,827,984,72,86700,98600,10900,2370,260,5.7,0,0,112.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-13.3,8,83500,844,1339,318,660,947,62,69400,94100,9900,1730,290,5.2,0,0,112.0,77777,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-12.8,8,83500,621,1339,322,459,882,50,48600,85400,8900,1300,210,5.2,0,0,112.0,77777,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-11.7,10,83500,375,1339,316,245,752,35,26000,66700,7400,890,50,3.6,0,0,112.0,77777,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-10.6,12,83500,124,1339,310,58,426,18,6000,27600,3500,380,50,4.1,0,0,112.0,77777,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-9.4,17,83600,0,33,295,0,4,0,0,0,0,0,80,2.6,0,0,80.0,77777,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-9.4,19,83700,0,0,286,0,0,0,0,0,0,0,120,3.1,0,0,48.0,77777,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-8.9,22,83700,0,0,280,0,0,0,0,0,0,0,120,3.1,0,0,48.0,77777,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-8.3,25,83700,0,0,278,0,0,0,0,0,0,0,190,2.1,0,0,32.0,77777,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-7.2,29,83800,0,0,275,0,0,0,0,0,0,0,230,3.1,0,0,32.0,77777,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-5.6,41,83800,0,0,266,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-5.6,42,83800,0,0,264,0,0,0,0,0,0,0,190,1.5,0,0,32.0,77777,9,999999999,50,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.7,37,83800,0,0,265,0,0,0,0,0,0,0,160,1.5,0,0,32.0,77777,9,999999999,50,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-7.2,35,83800,0,0,264,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,50,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-6.1,44,83800,5,279,264,1,32,0,0,0,0,0,160,2.1,1,1,48.0,77777,9,999999999,50,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-6.1,33,83800,167,1338,279,81,447,25,8200,30100,4500,490,170,4.1,1,1,80.0,77777,9,999999999,50,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-8.3,21,83800,419,1338,292,261,681,48,27500,61900,8100,1020,170,4.1,1,1,96.0,77777,9,999999999,50,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-7.8,18,83800,662,1338,307,457,710,106,48300,70200,13500,2270,220,4.1,1,1,96.0,77777,9,999999999,50,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-6.7,17,83600,879,1338,320,662,908,65,69600,90400,10000,1840,230,2.1,1,1,112.0,77777,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-7.8,13,83600,1055,1338,331,810,933,74,84800,93600,10900,2530,140,5.2,1,1,112.0,77777,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-6.7,13,83500,1177,1338,340,891,923,79,93100,92800,11300,3540,180,4.1,1,1,112.0,77777,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,-5.6,12,83400,1237,1338,357,969,882,153,99100,88300,17300,7050,170,4.1,2,2,112.0,77777,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,-6.1,11,83300,1231,1338,354,946,900,117,97600,90300,14300,5780,150,6.2,5,1,112.0,77777,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,-7.2,9,83100,1160,1338,372,860,738,219,91600,75300,26100,9990,180,7.2,6,4,112.0,8534,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,-7.2,9,83000,1029,1338,378,683,468,323,71900,48600,34400,10820,160,6.2,8,6,112.0,8534,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,-2.8,16,83000,846,1338,389,376,99,314,41400,10100,35000,10150,140,8.2,10,9,96.0,6096,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,-2.8,16,82900,624,1338,378,193,75,158,21200,7300,17800,4820,160,13.9,9,8,64.0,5182,9,999999999,60,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-2.2,20,82900,378,1338,362,142,151,99,15500,13500,11700,2200,170,12.4,9,7,96.0,5182,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-1.1,22,82900,128,1338,348,55,205,36,5700,10100,4700,660,190,8.2,6,3,80.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-0.6,25,83000,0,56,340,0,4,0,0,0,0,0,170,5.2,5,2,48.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-0.6,26,83000,0,0,332,0,0,0,0,0,0,0,180,4.6,4,1,32.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-0.6,29,83000,0,0,319,0,0,0,0,0,0,0,180,4.1,0,0,32.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-1.7,27,83000,0,0,321,0,0,0,0,0,0,0,200,3.1,3,1,32.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.1,29,83000,0,0,324,0,0,0,0,0,0,0,200,3.1,2,2,32.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-1.1,34,82900,0,0,314,0,0,0,0,0,0,0,200,3.1,2,2,32.0,77777,9,999999999,69,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-0.6,41,82900,0,0,308,0,0,0,0,0,0,0,240,2.6,3,3,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-0.6,46,82900,0,0,294,0,0,0,0,0,0,0,180,2.1,1,1,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-0.6,53,82900,0,0,285,0,0,0,0,0,0,0,150,2.1,1,1,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.0,62,82900,5,301,283,0,13,0,0,0,0,0,160,1.5,2,2,48.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,2.8,49,82900,171,1337,317,68,177,45,7000,10500,5600,820,150,1.5,8,3,96.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,0.6,33,82900,422,1337,337,208,179,151,22300,16500,17100,3400,190,4.1,9,5,96.0,7620,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.0,28,82900,665,1337,344,351,326,189,37800,33800,21000,4200,210,4.1,9,5,96.0,7620,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-0.6,23,82800,882,1337,357,506,494,180,55200,51200,21400,4580,230,3.1,9,6,96.0,7620,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,-2.8,16,82800,1057,1337,370,541,213,373,59400,22600,41500,13120,230,5.2,9,6,96.0,7620,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,-5.6,11,82700,1178,1337,374,845,696,231,89900,70900,27200,11170,210,6.7,10,4,96.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,-6.7,9,82600,1239,1337,384,897,701,248,95600,71400,29300,15290,210,8.8,10,6,96.0,8534,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,-11.1,6,82500,1233,1337,382,697,362,363,77300,39400,40900,19930,190,7.2,9,7,96.0,8534,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,-12.8,6,82500,1162,1337,380,629,294,373,69000,31900,41100,16280,200,9.8,9,8,32.0,7620,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,-11.7,6,82400,1031,1337,366,731,611,260,78700,63700,29500,8600,220,7.2,9,5,96.0,7620,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,-11.7,6,82400,848,1337,366,560,591,186,58400,59000,20900,4490,220,4.1,8,4,80.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,-7.2,9,82400,626,1337,368,384,571,116,40000,55600,13900,2380,170,8.2,7,2,80.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,-3.3,14,82300,381,1337,369,207,368,102,21400,31900,12300,1920,140,7.2,6,3,80.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,3.9,28,82300,131,1337,361,48,183,30,5000,9300,4100,530,150,6.7,5,2,80.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,1.7,28,82300,0,78,351,0,2,0,0,0,0,0,160,4.6,4,3,48.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,3.3,34,82300,0,0,337,0,0,0,0,0,0,0,170,4.1,4,1,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.9,41,82400,0,0,335,0,0,0,0,0,0,0,210,2.1,6,3,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-0.6,32,82400,0,0,328,0,0,0,0,0,0,0,160,2.1,7,4,32.0,6706,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-3.3,23,82500,0,0,355,0,0,0,0,0,0,0,30,1.5,10,9,32.0,6706,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-2.2,28,82500,0,0,326,0,0,0,0,0,0,0,280,3.1,5,4,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-1.1,30,82600,0,0,327,0,0,0,0,0,0,0,360,3.6,6,4,32.0,7620,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.1,35,82600,0,0,315,0,0,0,0,0,0,0,0,0.0,4,3,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-1.1,38,82600,0,0,307,0,0,0,0,0,0,0,40,2.6,4,2,32.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-0.6,42,82700,6,323,306,1,13,0,0,0,0,0,360,3.6,3,3,48.0,77777,9,999999999,80,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,1.1,42,82700,174,1337,310,78,373,29,8000,23900,4900,530,20,3.1,1,1,96.0,77777,9,999999999,89,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.2,38,82800,425,1337,331,239,487,84,24600,43500,10800,1560,10,6.2,3,3,96.0,77777,9,999999999,89,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,3.3,37,82700,668,1337,348,345,121,284,37700,12200,31600,7860,360,8.2,6,6,96.0,1402,9,999999999,89,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.0,49,82800,884,1337,364,194,0,194,23000,0,23000,9020,10,6.2,10,10,80.0,1250,9,999999999,89,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,82800,1058,1337,366,237,0,237,28400,0,28400,11370,360,7.7,10,10,64.0,1036,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,8.3,62,82800,1180,1337,368,267,0,267,32200,0,32200,12810,10,9.3,10,10,48.0,762,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.3,64,82800,1240,1337,365,281,0,281,34000,0,34000,13480,350,7.2,10,10,32.0,792,9,999999999,100,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,4.4,68,82900,1234,1337,336,280,0,280,33900,0,33900,13430,250,7.2,10,10,9.6,884,9,999999999,100,0.0900,0,88,0.200,1.0,1.0 +1991,5,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.6,83,83100,1164,1337,329,263,0,263,31700,0,31700,12620,200,6.2,10,10,6.4,884,9,999999999,110,0.0900,0,88,0.200,3.0,1.0 +1991,5,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,82900,1033,1337,334,231,0,231,27600,0,27600,11050,290,5.7,10,10,96.0,2438,9,999999999,110,0.0900,0,88,0.200,2.0,1.0 +1991,5,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.1,64,82800,850,1337,326,434,367,200,46600,37900,22500,4950,260,7.7,7,6,96.0,7620,9,999999999,110,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.6,55,82900,629,1337,327,381,470,159,40100,46600,18200,3270,230,4.1,5,4,80.0,77777,9,999999999,110,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.9,47,82900,384,1337,330,143,212,82,15500,18900,10000,1540,310,2.1,5,5,96.0,77777,9,999999999,120,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.1,66,83000,134,1337,318,42,85,33,4400,4100,4000,600,40,5.7,6,4,80.0,7620,9,999999999,120,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.6,71,83100,1,100,315,0,1,0,0,0,0,0,70,3.1,7,6,48.0,3962,9,999999999,120,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,4.4,65,83200,0,0,323,0,0,0,0,0,0,0,70,3.1,8,8,32.0,1981,9,999999999,120,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.6,69,83200,0,0,321,0,0,0,0,0,0,0,10,5.2,10,7,24.0,1006,9,999999999,129,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.1,74,83200,0,0,325,0,0,0,0,0,0,0,340,3.1,10,8,24.0,975,9,999999999,129,0.0900,0,88,0.200,0.0,1.0 +1991,5,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,83300,0,0,339,0,0,0,0,0,0,0,290,3.1,10,10,32.0,671,9,999999999,129,0.0900,0,88,0.200,0.0,1.0 +1991,5,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.1,83,83200,0,0,333,0,0,0,0,0,0,0,340,3.1,10,10,24.0,518,9,999999999,139,0.0910,0,88,0.200,3.0,1.0 +1991,5,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,83300,0,0,332,0,0,0,0,0,0,0,40,4.1,10,10,24.0,671,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,83300,0,0,328,0,0,0,0,0,0,0,20,3.1,10,10,9.6,305,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.8,97,83300,0,0,332,0,0,0,0,0,0,0,340,2.6,10,10,9.6,305,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.8,97,83300,7,345,332,0,0,0,0,0,0,0,310,2.1,10,10,2.4,152,9,999999999,150,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,83300,177,1336,328,24,0,24,2800,0,2800,920,290,3.6,10,10,9.6,427,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,83300,428,1336,328,64,0,64,7600,0,7600,2700,320,3.6,10,10,8.0,305,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,83400,670,1336,326,95,0,95,11500,0,11500,4440,340,6.2,10,10,9.6,152,9,999999999,139,0.0910,0,88,0.200,1.0,1.0 +1991,5,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,83500,886,1336,325,191,0,191,22600,0,22600,8920,350,4.1,10,10,11.2,457,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,83500,1060,1336,328,235,0,235,28200,0,28200,11300,340,3.1,10,10,32.0,1219,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.8,83,83500,1181,1336,333,484,204,303,54000,22200,34300,13730,330,2.1,9,9,48.0,7010,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,83500,1241,1336,348,280,0,280,33900,0,33900,13440,300,3.1,10,10,48.0,1981,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.8,65,83500,1236,1336,339,883,596,331,95400,62400,37600,20730,310,3.1,9,7,64.0,1524,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.7,58,83500,1165,1336,353,401,149,271,45300,16000,31300,11710,10,3.6,9,9,80.0,1036,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,6.1,50,83400,1035,1336,348,342,224,168,38400,23500,20200,5480,360,3.1,7,7,64.0,2134,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.6,48,83400,852,1336,338,449,467,151,47500,47200,17300,3790,350,5.2,6,4,64.0,7620,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.8,65,83400,632,1336,335,396,513,153,41900,50900,17800,3140,20,6.2,9,6,80.0,2743,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.2,69,83500,387,1336,336,101,176,50,11300,15500,6800,880,30,6.7,9,8,48.0,2743,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.2,71,83600,138,1336,324,37,4,36,4000,0,4000,1170,360,3.6,9,6,48.0,2743,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.8,80,83700,1,122,336,0,0,0,0,0,0,0,350,2.6,10,9,32.0,1219,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.2,77,83800,0,0,335,0,0,0,0,0,0,0,350,2.1,10,9,32.0,1372,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.3,93,83800,0,0,338,0,0,0,0,0,0,0,330,2.1,10,10,6.4,792,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,83800,0,0,327,0,0,0,0,0,0,0,310,2.1,10,9,16.0,1097,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.1,80,83800,0,0,308,0,0,0,0,0,0,0,270,1.5,5,5,32.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.8,90,83700,0,0,328,0,0,0,0,0,0,0,0,0.0,10,9,32.0,1494,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.1,80,83700,0,0,326,0,0,0,0,0,0,0,0,0.0,10,9,24.0,1402,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.1,83,83700,0,0,306,0,0,0,0,0,0,0,20,2.1,5,5,32.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,83600,0,0,293,0,0,0,0,0,0,0,40,1.5,2,2,32.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,83700,8,367,315,1,1,0,0,0,0,0,0,0.0,8,8,40.0,1372,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,83800,181,1336,308,78,81,67,8300,5200,7600,1410,80,2.1,6,6,48.0,1372,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.6,69,83800,431,1336,297,266,643,58,27500,58400,8600,1150,0,0.0,1,0,64.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.1,64,83800,672,1336,315,450,712,92,46900,69700,11800,1930,280,1.5,2,2,64.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,83700,888,1336,320,647,768,136,69200,78300,17000,3630,310,2.6,3,3,80.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.6,55,83700,1062,1336,336,500,246,304,55000,26700,33700,10430,0,0.0,7,7,64.0,975,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.6,53,83700,1183,1336,335,884,644,313,92000,64500,34800,15070,30,2.1,6,6,32.0,975,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.6,46,83700,1243,1336,343,932,802,185,98100,80800,22800,10980,60,2.6,5,5,24.0,77777,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.6,46,83700,1237,1336,343,839,594,288,88400,60000,32600,17610,50,4.1,5,5,19.2,77777,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,5.6,42,83600,1167,1336,351,658,434,278,71700,45500,31900,13180,50,3.1,5,5,19.2,77777,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,5.6,40,83600,1036,1336,356,736,628,248,76700,63100,27600,8030,30,2.6,6,6,24.0,1676,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,5.0,39,83500,855,1336,350,577,569,212,61600,58700,24000,5300,70,2.6,5,4,32.0,77777,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,5.6,42,83500,634,1336,364,250,127,190,27400,12900,21200,4650,40,3.1,8,8,24.0,1981,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.7,50,83500,390,1336,364,72,30,63,7900,2700,7100,1820,340,3.1,9,9,24.0,2134,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,6.7,52,83500,141,1336,354,32,18,30,3500,1200,3400,740,10,3.1,9,8,24.0,1981,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,6.1,50,83600,1,145,348,0,0,0,0,0,0,0,70,3.1,9,7,24.0,1981,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.2,57,83700,0,0,349,0,0,0,0,0,0,0,70,3.6,10,8,24.0,1981,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.8,65,83700,0,0,339,0,0,0,0,0,0,0,100,4.6,7,7,24.0,1829,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,83700,0,0,337,0,0,0,0,0,0,0,110,6.7,8,8,24.0,1981,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,7.2,67,83800,0,0,346,0,0,0,0,0,0,0,120,5.2,10,9,32.0,1981,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.3,72,83700,0,0,347,0,0,0,0,0,0,0,120,5.2,9,9,32.0,1981,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.9,75,83800,0,0,348,0,0,0,0,0,0,0,140,3.6,9,9,32.0,1676,9,999999999,110,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.9,77,83800,0,0,345,0,0,0,0,0,0,0,110,2.6,10,9,32.0,1676,9,999999999,110,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.9,77,83700,0,0,355,0,0,0,0,0,0,0,100,5.2,10,10,32.0,1676,9,999999999,110,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.9,80,83800,9,389,330,1,0,1,0,0,0,0,120,4.6,9,7,48.0,1829,9,999999999,110,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,83800,184,1335,327,52,34,47,5700,2400,5300,1140,130,5.2,6,5,64.0,7620,9,999999999,110,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,9.4,69,83800,433,1335,328,225,324,119,23900,30100,14100,2380,130,4.1,4,2,64.0,77777,9,999999999,110,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.9,62,83800,675,1335,336,437,460,204,45300,46000,22000,4410,140,4.1,8,3,64.0,77777,9,999999999,110,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,8.3,56,83800,889,1335,343,617,519,271,64700,53500,29000,7220,150,6.2,10,4,64.0,77777,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,8.9,51,83700,1063,1335,352,673,505,270,72500,52700,30400,9630,160,4.1,8,3,64.0,77777,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,8.9,47,83700,1184,1335,360,829,590,306,89800,61700,34900,15500,160,4.1,10,4,96.0,77777,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,6.7,35,83600,1244,1335,366,864,456,439,90800,47500,46500,29100,130,3.1,10,3,96.0,77777,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,6.7,32,83500,1239,1335,376,906,668,286,95500,67500,32800,17650,140,6.7,10,4,96.0,77777,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,7.2,32,83400,1168,1335,377,836,620,293,87300,62300,32700,13490,160,12.9,9,3,96.0,77777,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,6.7,30,83400,1038,1335,376,665,530,253,71900,55300,28800,8510,130,11.3,10,2,96.0,77777,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,10.6,39,83300,857,1335,385,540,518,207,57800,53400,23500,5180,160,10.3,10,3,64.0,77777,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,11.7,41,83300,637,1335,372,431,555,166,45300,55100,19000,3450,140,6.2,10,0,56.0,77777,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,11.1,39,83200,393,1335,372,219,386,106,22700,33800,12800,2000,130,7.7,9,0,56.0,77777,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,12.4,40,83200,144,1335,386,51,91,41,5300,4600,4800,770,150,6.7,7,1,72.0,77777,9,999999999,120,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,83400,2,167,329,0,0,0,0,0,0,0,340,5.7,6,0,32.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,83500,0,0,324,0,0,0,0,0,0,0,310,3.1,4,0,16.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,83500,0,0,319,0,0,0,0,0,0,0,340,3.1,0,0,11.2,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,83500,0,0,319,0,0,0,0,0,0,0,30,2.1,0,0,16.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,83600,0,0,319,0,0,0,0,0,0,0,310,1.5,0,0,9.6,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,12.2,96,83600,0,0,311,0,0,0,0,0,0,0,10,2.1,0,0,9.6,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.7,75,83600,0,0,325,0,0,0,0,0,0,0,200,4.1,0,0,9.6,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,83600,0,0,332,0,0,0,0,0,0,0,180,7.2,0,0,24.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.1,67,83600,0,0,356,0,0,0,0,0,0,0,190,6.7,9,7,24.0,7620,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.6,67,83700,9,389,343,1,7,1,0,0,0,0,180,3.6,8,4,40.0,7620,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.6,67,83700,187,1335,337,84,318,39,8500,20700,5600,690,180,3.6,2,2,48.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.6,61,83800,436,1335,340,271,661,55,28200,60400,8500,1130,190,4.1,1,1,64.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.0,51,83800,677,1335,350,460,763,73,49200,75500,10900,1670,200,4.6,1,1,64.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,7.8,36,83700,891,1335,357,678,877,91,70400,87200,12100,2190,170,3.6,0,0,64.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,5.6,27,83700,1065,1335,377,801,779,179,85800,79800,22000,6430,160,6.2,2,2,96.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,1.1,18,83600,1185,1335,375,891,880,109,92200,88300,13600,4620,160,7.2,1,1,96.0,77777,9,999999999,129,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,0.0,15,83600,1245,1335,379,914,860,112,94500,86300,13800,6090,170,7.7,1,1,96.0,77777,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,-0.6,14,83500,1240,1335,383,865,777,143,93600,79100,20000,8730,150,8.2,3,1,96.0,77777,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,2.8,17,83400,1170,1335,396,878,774,199,94300,79400,24600,9520,160,8.2,6,2,96.0,77777,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,1.1,18,83400,1040,1335,412,440,120,346,48400,12800,38400,11910,170,13.4,9,9,96.0,7620,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,3.9,31,83500,859,1335,384,309,83,255,34000,8400,28600,8730,140,7.7,10,9,64.0,2134,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,7.2,38,83500,639,1335,402,130,0,130,15200,0,15200,5650,130,10.8,10,10,80.0,2134,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.9,32,83700,396,1335,381,161,65,141,17500,6000,15800,3520,230,5.7,10,9,64.0,2286,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,5.0,39,83800,148,1335,373,41,12,40,4500,800,4400,950,170,3.6,10,9,80.0,4267,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,6.1,43,83800,2,189,372,0,0,0,0,0,0,0,120,2.1,10,9,32.0,3962,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,5.0,40,83800,0,0,381,0,0,0,0,0,0,0,150,6.2,10,10,24.0,1829,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.1,46,83900,0,0,377,0,0,0,0,0,0,0,180,3.1,10,10,24.0,1981,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.6,45,83800,0,0,376,0,0,0,0,0,0,0,180,2.6,10,10,24.0,3962,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.1,48,83700,0,0,350,0,0,0,0,0,0,0,190,4.1,10,7,32.0,3962,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.1,48,83700,0,0,364,0,0,0,0,0,0,0,190,4.1,10,9,32.0,4572,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.1,48,83600,0,0,364,0,0,0,0,0,0,0,160,3.6,10,9,32.0,4572,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.6,46,83600,0,0,363,0,0,0,0,0,0,0,190,4.1,10,9,32.0,4267,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.6,48,83500,0,0,371,0,0,0,0,0,0,0,180,5.2,10,10,32.0,4267,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.9,41,83500,10,411,371,1,0,1,0,0,0,0,180,6.2,10,10,64.0,7620,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.9,41,83500,189,1334,353,61,37,56,6700,2700,6300,1320,190,6.2,9,8,80.0,7315,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,5.0,39,83600,438,1334,360,262,242,182,27900,22400,20500,4120,190,7.2,9,7,80.0,7315,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.0,35,83600,679,1334,364,371,489,122,38900,48300,14300,2600,200,5.2,8,6,80.0,7315,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.6,36,83600,893,1334,365,492,445,194,53400,46100,22500,5050,190,3.6,7,6,80.0,6706,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,6.1,33,83500,1066,1334,373,637,535,209,67400,54400,23900,7420,200,4.6,8,5,80.0,6706,9,999999999,139,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,5.0,28,83500,1187,1334,388,627,346,319,67600,36200,35300,16390,160,5.7,10,7,80.0,6706,9,999999999,150,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,7.2,37,83500,1246,1334,405,358,0,358,42600,0,42600,16210,180,7.2,10,10,80.0,7620,9,999999999,150,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,3.3,30,83600,1241,1334,383,340,97,249,38800,10500,29000,13570,190,4.1,10,9,80.0,7620,9,999999999,150,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,6.7,38,83500,1171,1334,387,356,133,239,40500,14300,27900,10530,260,4.6,10,9,80.0,3658,9,999999999,150,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.7,40,83400,1041,1334,382,485,118,393,53400,12200,43900,14970,230,2.6,10,9,80.0,7620,9,999999999,150,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.7,40,83400,861,1334,392,242,0,242,28100,0,28100,10520,180,2.6,10,10,80.0,8534,9,999999999,150,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.9,32,83500,641,1334,391,175,0,175,20000,0,20000,7080,190,8.2,10,10,80.0,8534,9,999999999,150,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,5.0,39,83400,399,1334,365,56,61,38,6500,5500,4800,650,210,4.6,10,8,80.0,8534,9,999999999,150,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.1,46,83400,151,1334,343,70,293,37,7000,17000,5100,630,200,2.6,4,4,64.0,77777,9,999999999,150,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,6.7,52,83400,2,211,342,0,4,0,0,0,0,0,150,2.6,6,5,48.0,8534,9,999999999,160,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.0,46,83400,0,0,337,0,0,0,0,0,0,0,200,3.1,10,4,32.0,77777,9,999999999,160,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,5.0,48,83300,0,0,332,0,0,0,0,0,0,0,180,1.5,10,3,32.0,77777,9,999999999,160,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,5.0,48,83300,0,0,367,0,0,0,0,0,0,0,160,1.5,10,10,32.0,8534,9,999999999,160,0.0910,0,88,0.200,0.0,1.0 +1991,5,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.6,55,83300,0,0,349,0,0,0,0,0,0,0,150,2.1,10,9,32.0,5182,9,999999999,160,0.0910,0,88,0.200,0.0,1.0 +1991,5,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.6,55,83300,0,0,359,0,0,0,0,0,0,0,230,1.5,10,10,32.0,5182,9,999999999,160,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,83300,0,0,356,0,0,0,0,0,0,0,220,2.1,10,10,32.0,4877,9,999999999,160,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,83200,0,0,356,0,0,0,0,0,0,0,210,2.1,10,10,32.0,4572,9,999999999,160,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.6,55,83200,0,0,359,0,0,0,0,0,0,0,310,1.5,10,10,32.0,5486,9,999999999,160,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,6.1,59,83200,11,433,340,1,4,1,0,0,0,0,250,1.5,10,8,80.0,4877,9,999999999,160,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,7.2,67,83200,192,1334,346,58,47,52,6400,3400,5900,1250,340,2.6,10,9,80.0,7620,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.3,60,83300,441,1334,338,243,494,80,25200,44700,10400,1510,330,1.5,8,4,96.0,77777,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,8.3,54,83300,681,1334,380,179,0,179,20600,0,20600,7440,0,0.0,10,10,64.0,7620,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,8.3,45,83300,894,1334,376,575,477,255,60700,49300,27600,6810,330,2.1,10,8,64.0,7620,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,7.8,41,83200,1067,1334,375,563,213,392,61600,22600,43400,14090,330,2.1,10,7,64.0,7620,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,7.2,35,83200,1188,1334,388,779,232,572,84100,24500,62200,26380,280,1.5,9,8,64.0,7620,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,3.9,24,83200,1247,1334,392,750,558,228,80500,57100,26900,15040,50,2.1,7,7,64.0,7620,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,3.3,23,83100,1242,1334,398,732,204,542,79700,21600,59500,29760,90,4.6,9,8,80.0,7620,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.1,18,83100,1173,1334,390,942,758,275,98900,76500,31500,13000,0,0.0,6,6,80.0,7620,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,1.1,20,83100,1043,1334,392,320,62,271,35300,6300,30400,11000,360,5.2,8,8,80.0,7620,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,5.6,31,83100,863,1334,409,189,0,189,22300,0,22300,8750,300,4.1,10,10,80.0,2438,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,6.7,44,83200,644,1334,386,167,0,167,19200,0,19200,6860,200,4.6,10,10,80.0,8534,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,5.6,39,83100,402,1334,388,93,0,93,10600,0,10600,3540,230,3.1,10,10,80.0,4267,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,7.2,47,83100,154,1334,384,27,0,27,3100,0,3100,980,210,2.1,10,10,64.0,8534,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.8,54,83100,3,233,376,0,0,0,0,0,0,0,180,2.6,10,10,48.0,8534,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,7.8,56,83100,0,0,355,0,0,0,0,0,0,0,150,2.6,10,8,32.0,8534,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.2,56,83200,0,0,370,0,0,0,0,0,0,0,180,2.6,10,10,32.0,8534,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.2,60,83100,0,0,364,0,0,0,0,0,0,0,210,1.5,10,10,32.0,3048,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,6.7,52,83100,0,0,342,0,0,0,0,0,0,0,20,3.1,6,5,32.0,7620,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,83100,0,0,366,0,0,0,0,0,0,0,70,1.5,10,10,32.0,4267,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.2,64,83200,0,0,349,0,0,0,0,0,0,0,0,0.0,10,9,32.0,7620,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,7.2,67,83200,0,0,318,0,0,0,0,0,0,0,160,1.5,6,2,32.0,77777,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,83100,0,0,319,0,0,0,0,0,0,0,210,1.5,9,5,32.0,6706,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.8,72,83100,12,455,331,2,0,1,0,0,0,0,210,2.6,10,7,80.0,4572,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.2,62,83200,195,1333,344,45,22,41,4900,1600,4600,1040,240,1.5,9,8,96.0,4267,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.2,56,83200,443,1333,342,235,333,125,25100,31100,14700,2520,220,2.6,7,6,96.0,2896,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,7.8,52,83200,682,1333,361,348,218,236,37800,22400,26300,5930,290,2.6,8,8,88.0,2743,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,8.3,52,83300,896,1333,358,529,255,358,57300,26800,39300,10460,360,9.3,7,7,80.0,2591,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,8.3,58,83300,1069,1333,341,704,525,283,75600,54800,31600,10290,30,6.7,5,4,80.0,77777,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,9.4,52,83400,1189,1333,358,743,584,221,79300,59700,26000,11310,20,4.1,5,5,80.0,77777,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.8,45,83400,1249,1333,356,872,698,218,93900,71600,26700,14530,50,2.1,4,4,64.0,77777,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.2,41,83300,1243,1333,354,926,742,233,99100,75900,28200,15070,350,2.6,2,2,64.0,77777,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,7.2,35,83200,1174,1333,369,855,678,258,90300,68700,29700,12340,100,4.1,3,3,64.0,77777,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,6.1,35,83300,1045,1333,389,238,88,168,27300,9500,19800,5830,310,1.5,9,9,96.0,7620,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,6.7,31,83200,865,1333,386,283,207,148,31900,22300,17500,3600,40,3.1,8,6,80.0,7620,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,6.1,38,83200,646,1333,394,122,0,122,14400,0,14400,5400,20,6.2,10,10,64.0,1981,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.0,75,83400,404,1333,364,64,0,64,7500,0,7500,2650,340,7.2,10,10,48.0,2134,9,999999999,179,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,83400,157,1333,360,27,0,27,3100,0,3100,980,360,5.2,10,10,9.6,2286,9,999999999,179,0.0920,0,88,0.200,13.0,1.0 +1991,5,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,83500,3,255,350,0,0,0,0,0,0,0,330,3.1,10,9,32.0,2438,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.1,89,83700,0,0,358,0,0,0,0,0,0,0,330,2.6,10,10,24.0,1981,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.7,90,83700,0,0,361,0,0,0,0,0,0,0,10,2.6,10,10,24.0,1981,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.1,89,83700,0,0,335,0,0,0,0,0,0,0,360,2.1,10,7,32.0,3658,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.1,93,83700,0,0,345,0,0,0,0,0,0,0,350,2.1,9,9,24.0,1829,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,83700,0,0,354,0,0,0,0,0,0,0,360,2.1,10,10,24.0,1676,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,83700,0,0,314,0,0,0,0,0,0,0,180,1.5,2,2,24.0,77777,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,83700,0,0,331,0,0,0,0,0,0,0,190,2.6,8,8,16.0,3962,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,83600,0,0,329,0,0,0,0,0,0,0,130,2.1,10,7,16.0,4267,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,83700,13,455,322,2,3,2,0,0,0,0,120,2.1,10,5,40.0,4267,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,83800,197,1332,327,71,60,62,7600,4000,7000,1310,90,3.1,7,6,48.0,4267,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,9.4,80,83800,445,1332,346,73,35,61,8000,3200,7000,1840,90,3.6,10,9,24.0,975,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.9,75,83800,684,1332,348,189,62,157,20800,6100,17700,5040,110,2.1,10,9,16.0,1067,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,83800,897,1332,357,390,147,291,42800,15500,32300,8510,350,2.6,10,9,16.0,1128,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.0,67,83800,1070,1332,350,652,374,351,71000,40500,38400,12510,10,2.6,9,7,16.0,1219,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.0,65,83700,1190,1332,358,790,292,528,84600,31600,56300,26350,10,3.1,10,8,16.0,671,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.6,65,83700,1250,1332,379,281,0,281,34100,0,34100,13510,10,4.1,10,10,16.0,792,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.6,70,83700,1244,1332,374,280,0,280,34000,0,34000,13460,10,5.2,10,10,16.0,1097,9,999999999,170,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.6,70,83600,1175,1332,363,438,138,316,49000,14800,35900,14110,20,3.1,10,9,19.2,1372,9,999999999,160,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,9.4,86,83600,1046,1332,350,230,0,230,27600,0,27600,11070,360,5.2,10,10,12.8,1372,9,999999999,160,0.0920,0,88,0.200,5.0,1.0 +1991,5,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.8,72,83500,867,1332,354,184,0,184,21800,0,21800,8580,90,4.1,10,10,19.2,2286,9,999999999,160,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.8,60,83500,649,1332,350,318,112,264,34900,11200,29400,7340,90,3.1,10,8,24.0,3658,9,999999999,160,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,83600,407,1332,339,107,23,99,11600,2100,11000,2720,190,3.1,10,7,32.0,3353,9,999999999,160,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,8.9,72,83700,160,1332,360,25,0,25,2900,0,2900,930,180,2.6,10,10,32.0,2591,9,999999999,160,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,9.4,77,83800,4,255,358,0,0,0,0,0,0,0,160,1.5,10,10,32.0,2896,9,999999999,160,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.9,75,83900,0,0,357,0,0,0,0,0,0,0,160,2.6,10,10,32.0,2896,9,999999999,160,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.9,75,83900,0,0,357,0,0,0,0,0,0,0,200,5.2,10,10,11.2,1829,9,999999999,160,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.9,83,83900,0,0,350,0,0,0,0,0,0,0,150,2.6,10,10,11.2,1524,9,999999999,160,0.0920,0,88,0.200,0.0,1.0 +1991,5,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,10.0,93,83900,0,0,348,0,0,0,0,0,0,0,200,1.5,10,10,24.0,2286,9,999999999,160,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,9.4,89,83900,0,0,347,0,0,0,0,0,0,0,190,1.5,10,10,24.0,2286,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.9,86,83900,0,0,337,0,0,0,0,0,0,0,0,0.0,10,9,24.0,2896,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,83800,0,0,342,0,0,0,0,0,0,0,180,2.1,10,10,32.0,2896,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.7,77,83800,0,0,342,0,0,0,0,0,0,0,200,3.6,10,10,24.0,2896,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,83800,14,477,331,2,1,2,0,0,0,0,220,2.6,10,9,19.2,1676,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,83800,199,1332,331,26,10,24,2800,700,2700,650,230,2.6,10,9,80.0,2134,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.8,77,83800,447,1332,326,186,118,146,20100,11100,16400,3310,240,2.6,10,7,88.0,1829,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,83900,686,1332,345,302,138,231,32900,14200,25600,5810,340,3.1,8,8,80.0,1829,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,9.4,72,83900,898,1332,337,610,472,291,63500,48700,30700,7920,360,4.1,10,6,48.0,1676,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.0,69,83900,1071,1332,360,209,109,121,24600,11900,15000,3930,310,3.1,10,9,64.0,1676,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.8,60,83900,1191,1332,358,547,169,396,60500,18100,44300,18470,310,3.1,10,9,64.0,1676,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,6.1,50,83900,1250,1332,361,434,161,283,49200,17600,32600,16870,80,1.5,9,9,96.0,3048,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.1,45,83800,1245,1332,356,818,542,310,89100,56800,35900,20720,270,2.1,9,7,96.0,7620,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,5.6,42,83700,1176,1332,364,426,172,274,47900,18800,31300,12260,340,1.5,9,8,96.0,7620,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,6.1,40,83600,1048,1332,364,721,436,378,78000,47200,40800,13120,230,1.5,7,7,96.0,7620,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,5.6,40,83500,868,1332,350,555,630,144,59000,63900,17200,3730,240,3.6,8,4,80.0,7620,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,3.9,36,83600,651,1332,372,214,65,182,23500,6400,20400,5540,360,4.1,9,9,80.0,1981,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.1,45,83500,410,1332,343,221,374,106,23000,33300,12800,2000,360,4.1,6,3,64.0,77777,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.8,58,83600,163,1332,347,56,50,50,6100,3100,5700,1050,340,2.1,10,7,64.0,2591,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.0,75,83700,5,277,354,0,1,0,0,0,0,0,100,2.6,10,9,32.0,2134,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,83800,0,0,351,0,0,0,0,0,0,0,190,2.1,9,9,32.0,2134,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.3,72,83800,0,0,323,0,0,0,0,0,0,0,200,2.1,3,3,32.0,77777,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,9.4,83,83800,0,0,306,0,0,0,0,0,0,0,10,1.5,0,0,32.0,77777,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,83700,0,0,304,0,0,0,0,0,0,0,260,2.1,0,0,32.0,77777,9,999999999,150,0.0920,0,88,0.200,0.0,1.0 +1991,5,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.9,89,83700,0,0,298,0,0,0,0,0,0,0,180,1.5,0,0,32.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.8,86,83600,0,0,295,0,0,0,0,0,0,0,160,1.5,0,0,32.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,83600,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,7.2,96,83600,0,0,285,0,0,0,0,0,0,0,0,0.0,0,0,24.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,83600,14,499,287,3,54,2,0,0,0,0,190,1.5,0,0,96.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,83600,201,1331,294,103,488,29,10500,35200,5200,570,190,2.6,0,0,88.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.7,69,83600,449,1331,303,294,735,46,31000,67600,8200,1070,160,2.1,0,0,88.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.7,58,83600,687,1331,315,500,846,63,52500,82700,9800,1520,220,1.5,0,0,80.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.7,48,83500,900,1331,327,689,906,77,72100,90300,11000,2070,190,1.5,0,0,96.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,5.6,37,83500,1072,1331,339,845,941,87,88000,94300,11900,2940,120,2.1,0,0,112.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,6.7,37,83400,1192,1331,354,896,776,201,93000,77600,23300,9390,60,2.6,1,1,112.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,5.0,30,83300,1251,1331,362,910,802,156,97800,81400,21100,10160,220,3.1,2,2,112.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,4.4,27,83300,1246,1331,371,894,812,133,91800,81400,15400,7030,140,3.1,3,3,112.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,5.0,29,83200,1178,1331,368,874,837,134,89900,83800,15600,5130,140,4.6,4,2,112.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,5.0,29,83100,1049,1331,369,612,513,207,64700,52100,23500,7110,80,3.1,8,3,112.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,4.4,26,83000,870,1331,370,635,762,137,67800,77500,17000,3580,130,2.1,7,2,112.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,5.0,28,83000,653,1331,374,425,622,119,44400,61000,14400,2490,120,5.2,6,3,112.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,5.6,31,83000,412,1331,366,228,471,81,23400,41700,10400,1500,130,3.1,7,2,96.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,6.7,38,83000,166,1331,363,52,148,33,5500,8700,4400,580,130,3.1,8,4,80.0,9144,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.2,48,83200,5,300,370,0,1,0,0,0,0,0,320,2.1,9,9,32.0,2438,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.3,60,83300,0,0,371,0,0,0,0,0,0,0,110,2.1,10,10,32.0,1981,9,999999999,150,0.0930,0,88,0.200,1.0,1.0 +1991,5,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.2,57,83300,0,0,340,0,0,0,0,0,0,0,270,2.1,6,6,32.0,9144,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,83300,0,0,334,0,0,0,0,0,0,0,360,2.6,5,4,32.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,83300,0,0,324,0,0,0,0,0,0,0,120,3.1,2,2,32.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.3,80,83300,0,0,312,0,0,0,0,0,0,0,140,2.1,2,2,32.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.9,83,83300,0,0,316,0,0,0,0,0,0,0,180,2.1,3,3,32.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.9,89,83300,0,0,308,0,0,0,0,0,0,0,0,0.0,2,2,32.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,9.4,96,83300,0,0,302,0,0,0,0,0,0,0,200,2.6,3,1,24.0,77777,9,999999999,160,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,83200,15,499,310,2,8,2,0,0,0,0,120,1.5,5,4,80.0,77777,9,999999999,160,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.9,80,83200,204,1331,305,98,419,34,10100,28800,5700,620,180,2.6,0,0,96.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.8,62,83200,450,1331,316,287,683,56,30000,62900,8700,1160,200,2.6,0,0,96.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.1,45,83200,688,1331,329,485,785,79,51600,77600,11300,1790,220,3.1,1,0,96.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.6,36,83200,901,1331,352,630,787,97,67900,79600,13900,2650,210,2.6,2,2,96.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,4.4,28,83100,1073,1331,368,813,795,172,84500,79600,20200,5610,100,3.1,3,3,96.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.8,26,83100,1193,1331,376,585,205,401,64600,21900,45000,18830,120,2.1,9,7,96.0,4267,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,6.7,34,83000,1252,1331,396,510,122,395,56700,13100,44400,22780,350,5.2,10,9,96.0,2591,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,83100,1247,1331,370,866,601,302,91000,60600,34100,19830,10,5.2,7,7,96.0,2438,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,6.7,37,83000,1179,1331,371,739,512,286,80600,53600,33000,14340,70,5.2,8,6,96.0,9144,9,999999999,139,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,6.7,38,83000,1051,1331,366,620,482,239,67500,50400,27700,8290,90,4.6,6,5,96.0,9144,9,999999999,139,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,7.2,35,83000,872,1331,374,551,542,195,59500,56100,22700,4960,180,2.1,6,5,96.0,9144,9,999999999,139,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,8.3,41,82900,655,1331,373,338,386,148,36100,38600,17100,3070,50,5.2,7,6,96.0,9144,9,999999999,139,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,8.3,49,83000,415,1331,369,193,179,137,20800,16500,15700,3080,60,6.2,9,8,96.0,9144,9,999999999,139,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,8.9,54,83100,169,1331,349,76,135,59,7800,7600,6900,1170,130,2.1,6,4,96.0,9144,9,999999999,139,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,9.4,64,83100,6,322,337,1,7,1,0,0,0,0,350,1.5,4,3,64.0,77777,9,999999999,139,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,9.4,69,83200,0,0,328,0,0,0,0,0,0,0,50,2.1,2,2,32.0,77777,9,999999999,129,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,8.9,72,83300,0,0,318,0,0,0,0,0,0,0,350,2.1,1,1,32.0,77777,9,999999999,129,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,83400,0,0,310,0,0,0,0,0,0,0,350,2.1,1,1,32.0,77777,9,999999999,129,0.0930,0,88,0.200,0.0,1.0 +1991,5,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,9.4,86,83400,0,0,321,0,0,0,0,0,0,0,350,1.5,5,5,32.0,77777,9,999999999,129,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,83400,0,0,334,0,0,0,0,0,0,0,30,1.5,8,8,32.0,1097,9,999999999,129,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,83500,0,0,346,0,0,0,0,0,0,0,10,2.1,9,9,32.0,945,9,999999999,129,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,9.4,86,83500,0,0,350,0,0,0,0,0,0,0,70,2.1,10,10,32.0,792,9,999999999,129,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,9.4,86,83600,0,0,350,0,0,0,0,0,0,0,340,1.5,10,10,24.0,975,9,999999999,129,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,83600,16,521,353,2,0,2,0,0,0,0,10,1.0,10,10,24.0,975,9,999999999,120,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,83700,206,1331,353,33,0,33,3800,0,3800,1240,350,2.1,10,10,14.4,610,9,999999999,129,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,9.4,80,83700,452,1331,346,186,61,165,20300,5800,18400,4220,360,2.1,10,9,24.0,762,9,999999999,129,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.0,75,83700,690,1331,354,378,232,258,40900,23800,28500,6510,60,1.5,10,9,12.8,1097,9,999999999,129,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.9,70,83600,902,1331,363,201,0,201,23800,0,23800,9380,0,0.0,10,10,12.8,671,9,999999999,129,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,9.4,62,83600,1074,1331,365,488,68,433,53700,7000,48000,16900,120,3.1,10,9,12.8,1006,9,999999999,129,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,9.4,58,83600,1193,1331,363,535,281,283,60200,30700,32700,13470,130,3.6,8,8,24.0,1036,9,999999999,129,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,8.9,49,83500,1253,1331,360,944,663,319,98900,66600,36000,21570,160,3.1,5,5,48.0,77777,9,999999999,129,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,10.0,46,83400,1248,1331,376,803,565,273,85100,57300,31200,18170,120,4.1,6,6,40.0,1524,9,999999999,139,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,8.9,40,83300,1180,1331,376,890,724,248,94300,73500,29000,12260,110,3.1,5,5,80.0,77777,9,999999999,139,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,7.2,35,83200,1052,1331,374,514,388,207,56800,40600,24600,7150,130,5.2,5,5,80.0,77777,9,999999999,139,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,5.6,28,83200,874,1331,381,565,649,138,60200,66000,16800,3620,120,4.1,4,4,80.0,77777,9,999999999,139,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,5.0,27,83100,657,1331,387,336,354,161,35600,35400,18100,3370,150,5.7,8,6,80.0,7620,9,999999999,139,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,10.0,46,83100,418,1331,369,256,556,81,26300,49500,10800,1500,310,4.1,5,4,80.0,77777,9,999999999,139,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.0,56,83200,172,1331,353,68,253,36,7200,15100,5300,640,310,4.1,5,4,80.0,77777,9,999999999,139,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.1,70,83300,7,344,338,1,27,0,0,0,0,0,310,2.6,2,2,64.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,83400,0,0,326,0,0,0,0,0,0,0,290,2.1,1,1,32.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,83400,0,0,321,0,0,0,0,0,0,0,270,2.1,1,1,32.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,83400,0,0,323,0,0,0,0,0,0,0,300,2.1,1,1,32.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,83400,0,0,312,0,0,0,0,0,0,0,310,1.5,0,0,32.0,77777,9,999999999,150,0.0930,0,88,0.200,0.0,1.0 +1991,5,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.1,93,83400,0,0,328,0,0,0,0,0,0,0,290,2.1,10,6,32.0,274,9,999999999,150,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,83400,0,0,368,0,0,0,0,0,0,0,300,1.5,10,10,19.2,244,9,999999999,150,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,83500,0,0,368,0,0,0,0,0,0,0,320,1.5,10,10,19.2,213,9,999999999,160,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,83500,0,0,368,0,0,0,0,0,0,0,330,1.5,10,10,19.2,152,9,999999999,160,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,83500,17,521,360,1,0,1,0,0,0,0,10,1.5,10,10,32.0,305,9,999999999,160,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,9.4,77,83600,207,1330,358,28,0,28,3300,0,3300,1090,350,1.5,10,10,32.0,366,9,999999999,160,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,83700,453,1330,362,75,0,75,8800,0,8800,3150,10,1.5,10,10,48.0,366,9,999999999,160,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.1,72,83700,691,1330,347,336,323,168,36700,33800,19100,3690,0,0.0,6,6,48.0,3658,9,999999999,150,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,83600,903,1330,343,642,756,129,67200,75600,15700,3230,80,1.5,2,2,24.0,77777,9,999999999,150,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.1,59,83500,1074,1330,346,843,938,85,87900,94100,11800,2920,30,2.1,1,1,24.0,77777,9,999999999,150,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.6,51,83500,1194,1330,354,906,908,91,94300,91200,12200,4260,10,3.1,1,1,24.0,77777,9,999999999,150,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,9.4,42,83400,1254,1330,369,898,706,232,96300,72200,28100,16090,80,4.1,3,3,24.0,77777,9,999999999,150,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,10.0,41,83300,1249,1330,371,946,909,92,98300,91400,12300,5450,50,4.6,2,2,24.0,77777,9,999999999,150,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,10.6,39,83200,1181,1330,391,685,582,167,74500,60200,21000,8510,330,2.6,5,5,24.0,77777,9,999999999,139,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,10.6,40,83100,1053,1330,384,790,812,146,83300,81800,18300,4770,20,3.6,4,4,48.0,77777,9,999999999,139,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,12.2,55,83100,876,1330,367,593,602,196,61700,60200,21900,4920,30,6.2,5,3,16.0,77777,9,999999999,139,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.2,59,83100,659,1330,370,417,590,124,43500,57900,14700,2600,30,8.2,7,6,16.0,9144,9,999999999,139,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.2,61,83200,420,1330,377,192,99,160,20900,9200,18000,3970,40,4.1,8,8,16.0,1676,9,999999999,139,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.1,59,83300,175,1330,351,81,343,36,8200,21700,5400,640,50,3.1,4,2,19.2,77777,9,999999999,139,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,9.4,58,83400,7,344,363,1,2,0,0,0,0,0,60,2.1,8,8,16.0,3658,9,999999999,139,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.9,67,83600,0,0,366,0,0,0,0,0,0,0,50,5.7,10,10,11.2,1097,9,999999999,129,0.0940,0,88,0.200,0.0,1.0 +1991,5,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.9,83,83800,0,0,350,0,0,0,0,0,0,0,50,5.2,10,10,8.0,1097,9,999999999,129,0.0940,0,88,0.200,6.0,1.0 +1991,5,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,8.3,80,83800,0,0,349,0,0,0,0,0,0,0,80,2.1,10,10,11.2,1524,9,999999999,129,0.0940,0,88,0.200,2.0,1.0 +1991,5,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,9.4,83,83800,0,0,336,0,0,0,0,0,0,0,230,2.1,10,8,32.0,8534,9,999999999,129,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,9.4,89,83800,0,0,307,0,0,0,0,0,0,0,340,2.1,1,1,32.0,77777,9,999999999,129,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.9,89,83700,0,0,298,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,129,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.3,89,83700,0,0,295,0,0,0,0,0,0,0,260,1.5,0,0,32.0,77777,9,999999999,120,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.9,97,83600,0,0,293,0,0,0,0,0,0,0,200,1.5,0,0,32.0,77777,9,999999999,120,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,8.3,96,83600,18,543,291,3,11,3,0,0,0,0,180,1.5,0,0,48.0,77777,9,999999999,120,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,8.3,86,83700,209,1330,298,91,298,44,9600,19800,6500,780,190,2.6,0,0,80.0,77777,9,999999999,120,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.3,72,83700,455,1330,309,275,580,76,28600,53200,10400,1470,180,2.1,0,0,96.0,77777,9,999999999,120,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.8,60,83600,692,1330,319,483,725,105,51200,72300,13600,2320,200,2.6,0,0,96.0,77777,9,999999999,120,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,7.2,47,83500,903,1330,333,676,806,128,70800,80700,15800,3220,190,2.1,0,0,96.0,77777,9,999999999,120,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.8,44,83400,1075,1330,348,791,799,145,83800,80700,18400,5020,120,2.6,1,1,96.0,77777,9,999999999,120,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,6.7,37,83300,1195,1330,354,905,813,174,95400,81900,21600,8560,190,2.1,1,1,96.0,77777,9,999999999,120,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,5.6,33,83200,1254,1330,356,943,829,160,101000,84100,21500,10670,120,2.6,1,1,96.0,77777,9,999999999,120,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,6.1,32,83100,1250,1330,370,988,794,241,105600,81100,29200,16380,160,3.1,3,3,96.0,77777,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,5.0,29,83000,1182,1330,368,886,811,165,93900,81900,20900,7790,130,2.6,2,2,96.0,77777,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,4.4,27,82900,1055,1330,373,533,306,289,58700,33200,32300,9810,160,3.6,4,4,96.0,77777,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,7.2,33,82900,877,1330,380,556,298,359,58900,31800,37900,10160,340,6.2,5,5,96.0,77777,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,6.1,31,82800,662,1330,373,410,516,153,43700,51700,18000,3190,50,3.1,3,3,96.0,77777,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,9.4,44,82700,422,1330,362,204,419,70,21200,37700,9200,1340,360,5.2,2,2,96.0,77777,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,7.2,53,82700,177,1330,329,69,205,41,7100,12400,5500,730,50,4.1,3,1,96.0,77777,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.8,67,82800,8,366,311,1,4,1,0,0,0,0,330,2.1,0,0,64.0,77777,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.2,64,82800,0,0,311,0,0,0,0,0,0,0,330,2.1,0,0,32.0,77777,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.7,64,82900,0,0,307,0,0,0,0,0,0,0,300,1.5,0,0,32.0,77777,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.2,71,82900,0,0,303,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.2,71,82800,0,0,303,0,0,0,0,0,0,0,350,2.1,0,0,48.0,77777,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,82700,0,0,297,0,0,0,0,0,0,0,170,2.1,0,0,48.0,77777,9,999999999,100,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,82700,0,0,294,0,0,0,0,0,0,0,220,2.1,0,0,48.0,77777,9,999999999,100,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,82600,0,0,291,0,0,0,0,0,0,0,170,2.1,2,0,48.0,77777,9,999999999,100,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,82600,0,0,302,0,0,0,0,0,0,0,190,1.5,6,3,48.0,77777,9,999999999,100,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.1,83,82500,18,565,298,3,7,3,0,0,0,0,200,2.1,6,2,96.0,77777,9,999999999,100,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.0,66,82500,211,1329,309,82,159,57,8700,10400,7000,1070,220,2.1,4,3,96.0,77777,9,999999999,100,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.1,40,82500,456,1329,316,255,398,118,26600,36600,14000,2260,200,2.1,7,2,96.0,77777,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-1.7,27,82400,693,1329,334,477,579,175,50500,58300,20100,3770,180,2.6,8,5,96.0,7620,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.2,31,82300,904,1329,352,599,559,218,64400,57900,24900,5840,340,3.6,7,5,80.0,7620,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,4.4,32,82300,1076,1329,357,717,533,285,77000,55600,31900,10610,350,4.1,6,3,80.0,77777,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,5.0,31,82200,1195,1329,369,702,511,242,74600,52000,27700,12770,350,2.1,7,5,80.0,7620,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,-2.2,16,82100,1255,1329,365,957,773,227,102900,79200,27900,15950,40,3.6,3,3,80.0,77777,9,999999999,110,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,-4.4,12,82000,1251,1329,364,1011,889,174,107400,89800,22600,11260,170,2.1,2,2,80.0,77777,9,999999999,120,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,-3.9,12,81900,1183,1329,377,910,865,139,93300,86600,16100,5380,160,5.2,3,3,64.0,77777,9,999999999,120,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,2.8,20,81900,1056,1329,382,767,714,199,81400,72700,23500,7000,330,5.2,6,2,64.0,77777,9,999999999,120,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,8.9,40,81900,879,1329,390,488,316,278,52700,33900,30200,7490,320,5.7,8,8,32.0,7620,9,999999999,120,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,9.4,42,81800,664,1329,382,276,171,191,30400,17600,21600,4750,340,6.2,9,7,32.0,7620,9,999999999,120,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,9.4,44,81900,425,1329,369,221,325,117,23500,30000,13900,2330,350,2.6,8,4,64.0,77777,9,999999999,129,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,8.9,51,82000,180,1329,348,66,176,42,6900,10800,5400,750,340,2.6,6,2,80.0,77777,9,999999999,129,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.0,58,82100,9,388,340,1,6,1,0,0,0,0,360,5.2,1,1,32.0,77777,9,999999999,129,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,8.3,56,82100,0,0,333,0,0,0,0,0,0,0,350,2.1,2,1,32.0,77777,9,999999999,129,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.8,62,82400,0,0,322,0,0,0,0,0,0,0,300,2.1,1,1,32.0,77777,9,999999999,129,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.1,51,82400,0,0,345,0,0,0,0,0,0,0,320,1.5,7,7,32.0,1219,9,999999999,139,0.0940,0,88,0.200,0.0,1.0 +1991,5,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.1,55,82400,0,0,353,0,0,0,0,0,0,0,330,2.1,9,9,32.0,1036,9,999999999,139,0.0940,0,88,0.200,0.0,1.0 +1991,5,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.6,51,82500,0,0,347,0,0,0,0,0,0,0,350,1.5,8,8,32.0,975,9,999999999,139,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,6.7,62,82500,0,0,348,0,0,0,0,0,0,0,350,2.6,9,9,32.0,975,9,999999999,139,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.1,57,82500,0,0,360,0,0,0,0,0,0,0,30,2.1,10,10,32.0,975,9,999999999,139,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,6.7,62,82600,0,0,358,0,0,0,0,0,0,0,350,2.1,10,10,32.0,1128,9,999999999,139,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.7,64,82700,19,565,345,4,4,4,0,0,0,0,360,2.1,9,9,80.0,1463,9,999999999,150,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.7,60,82800,212,1329,338,85,72,74,9200,5000,8400,1570,340,3.1,7,7,80.0,5182,9,999999999,150,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,82800,457,1329,349,188,67,165,20600,6300,18400,4250,10,3.6,8,8,80.0,5182,9,999999999,150,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.1,51,82800,694,1329,345,355,359,167,37700,36200,18800,3580,350,3.6,7,7,64.0,7620,9,999999999,150,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,6.7,45,82800,905,1329,355,506,340,274,55000,36600,30000,7550,360,4.1,8,6,64.0,7620,9,999999999,150,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.0,56,82900,1076,1329,363,577,440,220,63600,46100,26200,8090,360,3.1,7,7,64.0,4572,9,999999999,160,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,9.4,52,82900,1196,1329,379,661,188,491,72100,20000,54100,23410,350,3.1,9,9,64.0,7620,9,999999999,160,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.0,51,82900,1256,1329,386,698,271,441,76400,29500,48600,28230,360,2.1,9,9,48.0,4267,9,999999999,160,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.6,49,82900,1252,1329,384,896,479,444,94200,49900,47100,31580,10,3.1,10,8,32.0,7620,9,999999999,160,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.7,59,82900,1184,1329,371,671,391,322,72200,40900,35700,16670,20,5.2,10,7,32.0,7620,9,999999999,160,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.1,61,82900,1057,1329,370,516,274,298,56900,29700,33200,10210,50,4.6,10,8,40.0,1219,9,999999999,170,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,10.6,57,82900,881,1329,366,454,253,286,49000,27100,31000,7760,60,4.6,9,7,40.0,2134,9,999999999,170,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,82900,665,1329,366,244,60,213,26700,6000,23700,6380,10,5.7,10,9,32.0,2134,9,999999999,170,0.0950,0,88,0.200,1.0,1.0 +1991,5,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,82900,427,1329,373,88,0,88,10100,0,10100,3490,40,2.6,10,10,24.0,1676,9,999999999,170,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,83100,183,1329,374,32,0,32,3700,0,3700,1170,20,2.1,10,10,19.2,1676,9,999999999,170,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.8,93,83100,10,410,365,1,0,1,0,0,0,0,350,3.1,10,10,16.0,488,9,999999999,179,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,83200,0,0,367,0,0,0,0,0,0,0,340,1.5,10,10,12.8,305,9,999999999,179,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.3,12.2,80,83100,0,0,343,0,0,0,0,0,0,0,300,1.3,10,7,9.6,427,9,999999999,179,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.3,12.2,93,83200,0,0,349,0,0,0,0,0,0,0,10,1.1,8,8,24.0,2743,9,999999999,179,0.0950,0,88,0.200,0.0,1.0 +1991,5,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.2,12.2,93,83300,0,0,323,0,0,0,0,0,0,0,300,0.9,2,1,24.0,77777,9,999999999,179,0.0950,0,88,0.200,0.0,1.0 +1994,6,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.1,12.2,93,83700,0,0,342,0,0,0,0,0,0,0,350,0.6,7,7,11.2,183,9,999999999,160,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,12.2,96,83700,0,0,365,0,0,0,0,0,0,0,330,0.4,10,10,11.2,244,9,999999999,160,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.0,12.2,93,83700,0,0,365,0,0,0,0,0,0,0,320,0.2,10,10,11.2,244,9,999999999,160,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.2,89,83700,0,0,354,0,0,0,0,0,0,0,0,0.0,9,9,19.2,488,9,999999999,160,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,12.2,96,83800,20,587,321,4,23,4,0,0,0,0,0,0.0,2,2,24.0,77777,9,999999999,160,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,83700,214,1328,335,98,318,47,10300,21400,6900,840,230,2.6,3,3,24.0,77777,9,999999999,160,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,83700,458,1328,338,250,519,71,26300,47900,9700,1390,210,1.5,1,1,24.0,77777,9,999999999,160,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.8,70,83700,695,1328,343,470,740,83,49800,73200,11400,1860,170,2.1,1,1,24.0,77777,9,999999999,160,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.2,57,83700,906,1328,355,675,843,101,70100,83900,12800,2320,0,0.0,1,1,24.0,77777,9,999999999,160,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,13.3,53,83700,1077,1328,367,805,750,197,85800,76600,23600,7300,10,2.6,4,1,24.0,77777,9,999999999,160,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.2,46,83600,1196,1328,377,881,790,169,93200,79700,21200,8460,360,2.6,5,2,24.0,77777,9,999999999,160,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,9.4,34,83600,1256,1328,380,911,799,154,98000,81200,21000,10510,350,3.1,3,1,24.0,77777,9,999999999,160,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,5.0,24,83600,1252,1328,377,958,884,124,98600,88700,14800,7040,340,2.6,1,1,32.0,77777,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,6.7,25,83600,1185,1328,387,892,865,120,92000,86700,14500,5010,20,4.1,1,1,64.0,77777,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,3.3,19,83500,1059,1328,383,820,888,112,84800,88800,13900,3280,120,2.6,1,1,64.0,77777,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,3.9,20,83500,883,1328,386,630,800,98,67600,80800,13900,2610,130,2.6,1,1,64.0,77777,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,5.6,24,83500,668,1328,388,462,654,133,48100,64100,15800,2780,130,3.1,2,2,64.0,77777,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,8.3,30,83500,430,1328,390,241,503,78,25000,45300,10300,1470,130,3.1,3,3,64.0,77777,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,10.0,39,83600,186,1328,395,46,95,33,5000,5800,4200,570,110,5.7,7,7,80.0,3962,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.0,49,83600,11,432,388,2,3,2,0,0,0,0,40,8.2,9,9,48.0,2286,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.1,61,83900,0,0,389,0,0,0,0,0,0,0,50,4.6,10,10,16.0,2134,9,999999999,170,0.1020,0,88,0.190,1.0,1.0 +1994,6,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,9.4,54,83900,0,0,368,0,0,0,0,0,0,0,70,5.7,8,8,32.0,2134,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,84000,0,0,376,0,0,0,0,0,0,0,360,2.6,10,10,32.0,2743,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.1,70,84000,0,0,377,0,0,0,0,0,0,0,150,3.6,10,10,48.0,2896,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.6,70,84000,0,0,374,0,0,0,0,0,0,0,130,4.1,10,10,48.0,3048,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.6,70,83900,0,0,363,0,0,0,0,0,0,0,160,4.6,10,9,48.0,6096,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,84000,0,0,365,0,0,0,0,0,0,0,210,3.1,9,9,48.0,3353,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,84000,0,0,350,0,0,0,0,0,0,0,160,2.6,7,7,64.0,6096,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,84000,20,587,348,3,0,3,0,0,0,0,210,2.6,8,8,80.0,6096,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,84100,215,1328,359,55,22,51,6000,1700,5700,1280,230,2.1,9,9,96.0,2896,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.1,65,84200,459,1328,355,221,290,120,23600,27500,14100,2390,190,2.6,6,6,80.0,6096,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.6,55,84200,695,1328,362,377,395,170,40100,39900,19200,3650,260,2.6,5,5,80.0,77777,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,10.6,48,84100,906,1328,367,475,377,217,51100,39100,24300,5830,320,2.1,3,3,72.0,77777,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,11.7,50,84100,1077,1328,368,781,761,164,81700,76400,19600,5540,330,3.6,2,2,72.0,77777,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,11.1,49,84100,1197,1328,377,615,338,309,66500,35400,34600,16820,350,2.1,6,6,72.0,1524,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,12.2,48,84100,1257,1328,384,983,723,298,103600,73000,34300,20990,10,3.1,5,5,56.0,77777,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,11.7,42,84000,1253,1328,406,865,461,429,91300,48100,45800,30880,10,2.6,8,8,56.0,2134,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,10.0,41,84000,1186,1328,403,423,107,327,47300,11500,37000,15190,60,4.6,9,9,56.0,3658,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.3,83,84100,1060,1328,377,231,0,231,27700,0,27700,11170,120,6.2,10,10,24.0,1524,9,999999999,170,0.1020,0,88,0.190,5.0,1.0 +1994,6,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,84000,884,1328,363,493,328,275,53500,35200,30000,7440,140,6.7,9,7,64.0,3658,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.2,63,84000,670,1328,374,170,26,156,18600,2600,17300,4960,120,3.6,9,8,64.0,4267,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.7,57,84000,432,1328,370,210,216,139,22000,20000,15500,2870,150,4.1,6,6,64.0,7620,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.7,63,84100,188,1328,355,76,83,65,8200,5500,7500,1370,160,5.2,6,4,80.0,7620,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.3,75,84100,11,432,362,1,0,1,0,0,0,0,130,5.2,7,7,48.0,3658,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.8,73,84200,0,0,367,0,0,0,0,0,0,0,100,4.1,8,8,40.0,1829,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,84200,0,0,370,0,0,0,0,0,0,0,120,5.2,9,9,40.0,1372,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.3,83,84200,0,0,377,0,0,0,0,0,0,0,110,6.2,10,10,40.0,1829,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,84200,0,0,352,0,0,0,0,0,0,0,150,4.1,6,6,40.0,4267,9,999999999,170,0.1020,0,88,0.190,0.0,1.0 +1994,6,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,84100,0,0,333,0,0,0,0,0,0,0,160,3.6,2,2,40.0,77777,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,84100,0,0,324,0,0,0,0,0,0,0,180,3.1,1,1,32.0,77777,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,84100,0,0,324,0,0,0,0,0,0,0,180,2.1,1,1,32.0,77777,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.7,90,84100,0,0,319,0,0,0,0,0,0,0,160,2.6,1,1,32.0,77777,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,84100,21,586,318,4,27,3,0,0,0,0,220,1.5,1,1,56.0,77777,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.3,86,84100,216,1328,331,97,306,47,10200,20700,6800,840,300,2.6,3,1,72.0,77777,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,84100,460,1328,368,57,0,57,6800,0,6800,2500,350,2.6,10,10,0.8,61,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,84000,696,1328,346,443,487,188,46700,49100,20900,4090,330,3.1,8,3,4.8,77777,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,14.4,75,84000,907,1328,361,549,405,272,59700,43600,29900,7500,350,3.1,10,5,6.4,77777,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,14.4,63,84000,1077,1328,375,760,631,248,79700,63600,27900,9010,350,3.1,10,5,9.6,77777,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,14.4,55,83900,1197,1328,384,839,646,256,88800,65600,29600,13640,340,3.1,9,4,11.2,77777,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,13.9,48,83800,1257,1328,392,542,366,195,58900,37700,23000,14100,0,0.0,9,4,12.8,77777,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,12.2,38,83800,1254,1328,428,679,159,528,74000,16900,58100,31110,0,0.0,9,9,16.0,3658,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,9.4,30,83700,1187,1328,430,463,97,375,51200,10400,41900,17480,50,2.1,9,9,16.0,3658,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,13.9,40,83600,1061,1328,421,631,440,279,67800,45900,31000,10060,170,6.2,7,7,24.0,7620,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,13.9,54,83600,886,1328,409,355,89,296,39100,9100,33100,10150,170,7.7,9,9,24.0,3658,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.9,57,83600,672,1328,388,268,161,186,29500,16600,21100,4650,180,8.8,9,7,48.0,2134,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,14.4,61,83700,434,1328,392,185,192,122,19700,17900,13800,2450,190,5.7,9,8,48.0,2134,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.0,68,83600,191,1328,376,56,73,45,6100,4900,5400,950,160,6.7,7,6,80.0,8230,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.0,68,83600,12,454,370,2,7,1,0,0,0,0,160,6.2,5,4,48.0,77777,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,14.4,70,83600,0,0,346,0,0,0,0,0,0,0,160,4.1,0,0,40.0,77777,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,14.4,75,83600,0,0,341,0,0,0,0,0,0,0,170,4.6,0,0,40.0,77777,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.9,78,83600,0,0,342,0,0,0,0,0,0,0,180,2.1,1,1,40.0,77777,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.3,83,83600,0,0,333,0,0,0,0,0,0,0,150,2.1,1,1,40.0,77777,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,83500,0,0,321,0,0,0,0,0,0,0,190,2.1,0,0,40.0,77777,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,83500,0,0,320,0,0,0,0,0,0,0,310,1.5,0,0,40.0,77777,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,83500,0,0,317,0,0,0,0,0,0,0,300,1.5,1,0,40.0,77777,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,83500,0,0,322,0,0,0,0,0,0,0,170,2.1,6,2,40.0,77777,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,83500,21,608,325,4,2,4,0,0,0,0,190,2.6,9,4,96.0,6096,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,83600,217,1327,344,62,36,56,6800,2700,6300,1380,210,2.1,9,7,96.0,6096,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.6,61,83500,461,1327,367,96,40,82,10600,3700,9300,2430,220,3.1,9,8,80.0,3962,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,9.4,47,83500,696,1327,374,313,190,213,34300,19600,23900,5400,200,3.1,9,7,112.0,3962,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,7.2,33,83500,907,1327,383,449,392,181,49200,40700,21400,4810,190,3.6,8,6,112.0,7010,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,1.7,18,83500,1078,1327,390,608,426,261,65900,44500,29600,9750,250,2.1,7,5,112.0,6706,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,1.7,18,83500,1197,1327,396,623,321,333,69300,35000,37700,16440,270,1.5,8,6,112.0,6096,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,0.0,15,83500,1258,1327,396,504,320,200,57400,33700,25400,14510,140,3.6,7,5,112.0,6096,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,0.6,15,83400,1254,1327,397,797,439,381,85100,45900,41700,27590,120,4.1,6,4,112.0,6096,9,999999999,160,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,-1.1,12,83300,1188,1327,393,864,669,266,91300,67700,30500,13630,80,3.6,4,2,112.0,77777,9,999999999,160,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,-2.2,11,83300,1062,1327,399,759,646,241,79500,65200,27200,8460,90,4.6,4,3,112.0,77777,9,999999999,160,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-1.7,11,83200,887,1327,405,620,590,226,66300,61000,25500,5940,90,4.1,4,4,96.0,77777,9,999999999,160,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,-1.7,12,83200,673,1327,397,450,583,154,48100,58600,18300,3240,120,4.1,4,4,64.0,77777,9,999999999,160,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,0.0,14,83200,436,1327,403,106,72,82,11800,6800,9600,1850,80,3.1,6,6,64.0,6096,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,0.0,16,83200,193,1327,390,51,53,43,5600,3600,5100,910,120,3.6,5,5,80.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,3.9,27,83300,13,476,364,2,2,1,0,0,0,0,130,4.1,2,2,48.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,5.0,31,83300,0,0,363,0,0,0,0,0,0,0,0,0.0,3,3,32.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,3.9,28,83400,0,0,356,0,0,0,0,0,0,0,80,4.1,1,1,32.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,5.6,40,83400,0,0,348,0,0,0,0,0,0,0,190,1.5,3,3,32.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.8,58,83500,0,0,337,0,0,0,0,0,0,0,350,5.2,4,4,40.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.8,58,83600,0,0,327,0,0,0,0,0,0,0,320,3.6,1,1,40.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.8,60,83600,0,0,325,0,0,0,0,0,0,0,310,4.6,1,1,40.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.2,60,83600,0,0,315,0,0,0,0,0,0,0,300,3.1,0,0,40.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,7.8,69,83600,0,0,309,0,0,0,0,0,0,0,180,2.1,0,0,40.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.8,74,83700,22,608,304,5,32,4,0,0,0,0,180,2.1,0,0,112.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.2,56,83700,218,1327,320,105,397,39,10700,28100,6100,710,200,4.1,0,0,96.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,5.6,42,83800,461,1327,331,292,656,64,30200,60500,9100,1260,200,3.6,0,0,96.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,5.6,34,83700,697,1327,346,498,782,87,52500,77200,11900,1920,220,2.1,0,0,96.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,6.1,29,83700,907,1327,363,688,852,105,73600,86000,14700,2850,230,1.5,0,0,96.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,6.7,28,83700,1078,1327,369,844,893,118,87100,89300,14400,3530,10,1.5,0,0,96.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,3.9,21,83700,1198,1327,374,941,896,132,96800,89800,15500,5620,110,4.1,1,0,96.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,2.8,18,83600,1258,1327,378,1002,912,136,102800,91400,15900,7840,130,4.1,1,0,96.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,4.4,20,83600,1255,1327,390,943,856,133,96900,85800,15500,7570,100,6.2,2,1,96.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,3.9,18,83500,1189,1327,392,888,823,150,95100,83500,20100,7470,120,5.7,3,1,96.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,3.3,18,83500,1064,1327,392,782,827,119,80700,82700,14300,3410,140,5.7,2,1,96.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,4.4,19,83400,888,1327,402,656,826,103,70200,83300,14300,2730,130,5.7,3,3,96.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,6.1,23,83400,675,1327,395,473,690,121,49500,68100,14800,2590,120,5.7,2,2,96.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,7.2,25,83400,438,1327,397,231,369,109,24200,33600,13100,2060,140,7.7,4,3,80.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,6.7,28,83400,195,1327,388,88,183,61,9200,11400,7500,1180,150,6.7,4,4,80.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,7.2,32,83400,14,475,380,2,7,2,0,0,0,0,140,3.6,6,4,80.0,6096,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,8.3,37,83400,0,0,369,0,0,0,0,0,0,0,130,5.2,5,2,40.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,8.3,38,83400,0,0,370,0,0,0,0,0,0,0,150,6.7,6,3,40.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.2,41,83400,0,0,350,0,0,0,0,0,0,0,150,5.2,1,1,40.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,6.7,39,83400,0,0,349,0,0,0,0,0,0,0,160,5.7,1,1,40.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,6.7,44,83400,0,0,335,0,0,0,0,0,0,0,150,4.1,0,0,40.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,6.1,40,83300,0,0,337,0,0,0,0,0,0,0,150,6.2,0,0,40.0,77777,9,999999999,160,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.1,39,83300,0,0,339,0,0,0,0,0,0,0,160,5.7,0,0,40.0,77777,9,999999999,160,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.2,41,83300,0,0,350,0,0,0,0,0,0,0,160,8.8,1,1,40.0,77777,9,999999999,160,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,7.8,41,83300,22,608,361,5,30,4,0,0,0,0,180,6.2,3,3,72.0,77777,9,999999999,160,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.8,47,83400,219,1326,336,107,417,38,11000,29600,6100,690,170,2.6,0,0,80.0,77777,9,999999999,160,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,7.8,41,83400,462,1326,346,294,670,61,30600,61900,9000,1230,240,3.1,0,0,96.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,7.2,33,83300,697,1326,359,499,793,82,52900,78500,11600,1850,190,5.2,0,0,96.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,5.6,24,83200,907,1326,373,688,861,99,71400,85700,12700,2320,190,6.2,0,0,96.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,3.3,18,83200,1078,1326,381,844,901,112,87300,90200,13900,3460,160,5.7,0,0,96.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,-2.2,11,83200,1198,1326,382,954,923,120,98300,92600,14600,5310,210,6.2,0,0,112.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-4.4,9,83100,1258,1326,389,957,879,123,98600,88200,14700,7320,170,5.2,1,1,112.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-0.6,12,83000,1255,1326,407,933,803,173,99300,81200,22300,11690,130,7.2,3,3,112.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,0.0,12,82900,1189,1326,414,927,797,212,99400,81600,26100,11130,150,7.2,5,5,112.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,-5.6,7,82800,1065,1326,412,575,431,228,63000,45100,26700,8200,170,7.7,6,5,112.0,7620,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-5.6,8,82800,890,1326,411,501,363,257,54600,39000,28400,6910,180,6.7,9,7,112.0,4877,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,-2.2,11,82800,677,1326,409,280,146,206,30700,15000,23000,5170,280,4.1,8,6,112.0,8230,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,2.8,18,82800,440,1326,403,215,206,147,23300,19300,16900,3330,220,3.6,6,5,112.0,8230,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,6.7,30,82800,197,1326,380,91,235,55,9200,15100,7000,1010,180,3.1,3,3,112.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,1.1,22,82800,14,497,360,2,15,2,0,0,0,0,180,3.1,2,2,64.0,77777,9,999999999,120,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,1.7,27,82900,0,0,346,0,0,0,0,0,0,0,200,3.6,1,1,40.0,77777,9,999999999,120,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.6,28,82900,0,0,334,0,0,0,0,0,0,0,240,1.5,1,1,40.0,77777,9,999999999,120,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-3.9,19,82900,0,0,331,0,0,0,0,0,0,0,190,3.1,3,1,40.0,77777,9,999999999,120,0.1030,0,88,0.190,0.0,1.0 +1994,6,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-2.8,22,82900,0,0,328,0,0,0,0,0,0,0,180,4.1,2,1,40.0,77777,9,999999999,110,0.1030,0,88,0.190,0.0,1.0 +1994,6,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,0.0,32,82900,0,0,353,0,0,0,0,0,0,0,140,3.6,10,9,40.0,7010,9,999999999,110,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,0.0,33,82900,0,0,351,0,0,0,0,0,0,0,160,2.1,10,9,40.0,7010,9,999999999,110,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.1,36,82900,0,0,335,0,0,0,0,0,0,0,200,3.1,6,6,40.0,7010,9,999999999,110,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.1,40,82900,0,0,336,0,0,0,0,0,0,0,280,2.1,8,8,40.0,7010,9,999999999,100,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-0.6,32,83000,23,608,330,4,18,4,0,0,0,0,180,4.1,5,5,72.0,77777,9,999999999,100,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-0.6,27,83000,219,1326,343,74,186,43,7800,12700,5700,760,210,3.6,5,5,96.0,77777,9,999999999,100,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-0.6,22,83000,462,1326,354,194,261,103,21000,24900,12400,2000,220,5.7,5,4,96.0,77777,9,999999999,100,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,0.0,19,83100,697,1326,353,507,815,78,54000,80800,11500,1790,220,2.6,0,0,96.0,77777,9,999999999,100,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,0.0,16,83100,907,1326,366,698,880,95,72500,87600,12400,2300,220,1.5,0,0,112.0,77777,9,999999999,100,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,-5.0,10,83100,1078,1326,365,849,907,112,87900,90800,13900,3460,310,3.6,1,0,112.0,77777,9,999999999,110,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,-6.1,9,83100,1198,1326,376,905,829,155,96600,84000,20600,8000,140,3.6,5,1,112.0,77777,9,999999999,110,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,-6.1,8,83000,1258,1326,379,964,867,140,98800,86900,16100,8060,40,2.6,4,1,112.0,77777,9,999999999,110,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,-5.0,9,83000,1256,1326,398,984,864,165,105100,87500,22100,11270,170,4.6,4,4,112.0,77777,9,999999999,110,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,-5.6,8,82900,1190,1326,397,725,534,245,76900,54300,28100,12790,170,3.6,4,4,112.0,77777,9,999999999,110,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-6.1,8,82900,1066,1326,399,625,542,189,66700,55400,22100,6870,140,4.1,4,4,112.0,77777,9,999999999,110,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,-5.0,9,82800,891,1326,392,571,613,159,60500,62100,18600,4220,350,2.1,6,4,112.0,8534,9,999999999,110,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,-5.0,9,82800,678,1326,401,483,649,151,49900,63400,17400,3110,320,3.1,6,5,112.0,8534,9,999999999,110,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,-1.7,13,82800,442,1326,391,183,207,114,19600,19400,13100,2250,350,5.2,5,5,112.0,77777,9,999999999,110,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,0.0,19,82900,200,1326,371,56,113,38,6000,7200,4900,670,360,3.6,4,4,112.0,77777,9,999999999,110,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,3.9,25,83000,15,519,376,3,21,2,0,0,0,0,50,6.2,3,3,80.0,77777,9,999999999,110,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,9.4,44,83200,0,0,362,0,0,0,0,0,0,0,10,4.6,2,2,40.0,77777,9,999999999,120,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.0,49,83200,0,0,361,0,0,0,0,0,0,0,60,4.1,3,3,32.0,77777,9,999999999,120,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,7.8,48,83400,0,0,333,0,0,0,0,0,0,0,10,6.2,0,0,32.0,77777,9,999999999,120,0.1040,0,88,0.190,0.0,1.0 +1994,6,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.1,53,83500,0,0,317,0,0,0,0,0,0,0,230,3.1,0,0,32.0,77777,9,999999999,120,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.1,57,83500,0,0,312,0,0,0,0,0,0,0,360,3.1,0,0,40.0,77777,9,999999999,120,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.6,53,83500,0,0,314,0,0,0,0,0,0,0,350,1.5,0,0,40.0,77777,9,999999999,120,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.0,57,83600,0,0,306,0,0,0,0,0,0,0,300,2.1,0,0,40.0,77777,9,999999999,120,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.0,57,83600,0,0,306,0,0,0,0,0,0,0,0,0.0,0,0,40.0,77777,9,999999999,120,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.1,71,83700,23,630,298,6,53,4,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,120,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.1,53,83800,220,1326,317,111,457,35,11500,32700,6100,650,40,2.6,0,0,80.0,77777,9,999999999,120,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,3.3,37,83900,463,1326,326,301,702,56,31600,65200,8800,1170,30,2.6,0,0,80.0,77777,9,999999999,120,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.3,33,83900,697,1326,333,506,818,75,52800,80000,10700,1630,40,2.1,0,0,80.0,77777,9,999999999,120,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,3.3,32,83800,907,1326,336,695,882,91,72300,87800,12100,2270,70,2.1,0,0,80.0,77777,9,999999999,120,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,4.4,31,83800,1078,1326,345,851,920,102,88200,92100,13100,3300,180,2.1,0,0,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,6.1,32,83800,1198,1326,355,960,941,110,99300,94400,13800,5030,100,2.1,0,0,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,6.1,29,83700,1259,1326,370,951,883,112,98200,88700,13800,6860,130,3.6,1,1,96.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,5.0,25,83600,1256,1326,383,945,794,192,99400,79900,23500,12900,170,4.1,3,3,96.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,8.3,32,83600,1191,1326,390,857,627,293,89800,63100,33000,15130,90,5.7,5,5,96.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,9.4,33,83600,1067,1326,394,613,486,222,67500,50900,26500,8030,130,5.7,4,4,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,10.0,36,83500,892,1326,389,615,754,107,65500,76000,14300,2820,130,6.2,4,4,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,8.3,30,83500,680,1326,390,408,565,118,42900,55900,14200,2540,140,3.6,3,3,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,7.2,26,83600,444,1326,390,248,459,94,26400,42100,12300,1750,0,0.0,2,2,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,8.9,36,83600,201,1326,379,83,287,39,8400,19500,5500,700,50,5.7,3,3,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,7.2,38,83700,16,519,355,3,24,2,0,0,0,0,60,4.6,2,1,64.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.6,59,83900,0,0,337,0,0,0,0,0,0,0,60,7.2,0,0,32.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,84000,0,0,328,0,0,0,0,0,0,0,120,6.2,0,0,32.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,9.4,62,84200,0,0,339,0,0,0,0,0,0,0,120,3.1,3,3,40.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.9,70,84200,0,0,325,0,0,0,0,0,0,0,340,2.1,2,2,40.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,1.7,47,84300,0,0,306,0,0,0,0,0,0,0,30,7.2,1,1,40.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.1,50,84300,0,0,298,0,0,0,0,0,0,0,320,3.1,1,1,40.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.7,61,84400,0,0,293,0,0,0,0,0,0,0,350,2.1,2,2,40.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,2.8,71,84400,0,0,295,0,0,0,0,0,0,0,0,0.0,4,4,40.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,2.8,74,84400,23,630,295,4,0,4,0,0,0,0,0,0.0,5,5,40.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-0.6,39,84400,220,1325,313,91,102,74,9800,7300,8600,1580,150,2.1,4,4,72.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-1.7,30,84400,463,1325,318,247,351,124,25700,32500,14300,2390,240,2.1,2,2,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-2.8,26,84400,697,1325,309,432,531,152,46400,53700,18100,3240,160,2.1,1,0,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-3.3,24,84300,907,1325,313,651,681,185,68400,68700,21300,4940,140,3.6,0,0,96.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.0,28,84200,1078,1325,325,811,740,209,86100,75400,24700,7780,150,5.2,0,0,96.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,0.6,26,84100,1198,1325,335,924,773,225,98800,79000,27300,12230,140,5.7,0,0,96.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.8,28,84000,1259,1325,343,982,788,233,105400,80600,28600,17080,90,4.1,0,0,96.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.8,26,83900,1257,1325,348,980,788,232,105100,80700,28500,16780,150,3.6,0,0,96.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,4.4,25,83900,1191,1325,368,888,721,239,94400,73400,28300,12590,100,3.6,1,1,96.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,5.0,28,83800,1067,1325,377,659,456,291,70500,47600,32200,10720,60,3.6,6,4,80.0,7010,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,4.4,26,83800,894,1325,402,269,122,186,30300,13000,21500,5440,70,4.1,9,9,80.0,3962,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,4.4,27,83800,681,1325,399,167,41,146,18400,4000,16400,4740,50,3.6,9,9,80.0,3962,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.8,26,83900,446,1325,363,231,330,120,24700,31000,14200,2400,80,5.2,4,3,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.6,36,83900,203,1325,352,79,88,66,8600,6000,7600,1400,110,5.2,2,2,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.7,47,83900,17,541,336,2,0,2,0,0,0,0,120,4.6,1,1,64.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,7.8,56,84000,0,0,324,0,0,0,0,0,0,0,130,3.6,0,0,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.8,60,84000,0,0,319,0,0,0,0,0,0,0,130,3.1,0,0,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.2,60,84000,0,0,315,0,0,0,0,0,0,0,160,2.1,0,0,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.8,67,84000,0,0,311,0,0,0,0,0,0,0,220,2.6,0,0,32.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.7,66,84000,0,0,305,0,0,0,0,0,0,0,320,1.5,0,0,32.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.0,61,84100,0,0,301,0,0,0,0,0,0,0,330,2.6,0,0,32.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.9,63,84200,0,0,293,0,0,0,0,0,0,0,340,3.1,0,0,32.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,1.1,54,84200,0,0,288,0,0,0,0,0,0,0,330,2.1,0,0,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.6,52,84200,23,629,287,7,89,4,0,0,0,0,330,1.5,0,0,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.6,40,84300,220,1325,304,118,534,29,12100,40100,5500,590,0,0.0,0,0,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-0.6,32,84300,463,1325,312,309,756,45,32600,70100,8200,1090,360,2.6,0,0,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-0.6,29,84300,697,1325,319,513,859,61,54000,84200,9600,1520,70,2.6,0,0,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,0.6,27,84200,907,1325,330,701,916,74,73500,91400,10800,2060,0,0.0,0,0,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,0.0,24,84200,1078,1325,335,855,949,83,89200,95200,11700,2920,70,2.6,0,0,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,0.0,23,84200,1198,1325,340,964,967,89,100300,97200,12200,4330,60,3.1,0,0,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,0.0,21,84100,1259,1325,359,960,823,177,101800,83100,22700,12290,0,0.0,2,2,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,0.0,19,84000,1257,1325,368,910,820,131,93400,82200,15300,7660,30,2.1,3,3,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,0.0,19,83900,1192,1325,367,898,831,150,96200,84300,20200,7620,70,3.6,5,2,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,0.0,18,83900,1068,1325,379,863,879,153,90700,88500,19200,5180,350,2.1,5,5,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,0.0,17,83800,895,1325,373,636,783,107,67800,78900,14400,2830,220,1.5,2,2,96.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,0.0,17,83800,683,1325,368,473,797,62,49700,77900,9500,1510,120,3.1,1,1,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,1.1,20,83800,447,1325,371,272,603,68,28500,55400,9800,1330,120,3.1,2,2,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,1.1,22,83800,205,1325,366,108,458,37,11100,31500,6200,670,60,4.1,3,3,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,1.1,24,83900,17,541,355,4,55,2,0,0,0,0,60,3.1,2,2,64.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.2,31,83900,0,0,338,0,0,0,0,0,0,0,120,2.1,1,1,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.3,35,83900,0,0,328,0,0,0,0,0,0,0,120,3.1,0,0,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,4.4,44,83800,0,0,320,0,0,0,0,0,0,0,120,2.1,0,0,40.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,5.6,50,83800,0,0,318,0,0,0,0,0,0,0,170,3.6,0,0,32.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.0,46,83800,0,0,320,0,0,0,0,0,0,0,180,3.1,0,0,32.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.0,69,83700,0,0,321,0,0,0,0,0,0,0,230,2.1,0,0,32.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,8.9,72,83800,0,0,312,0,0,0,0,0,0,0,320,3.6,0,0,32.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,4.4,55,83800,0,0,305,0,0,0,0,0,0,0,310,3.1,0,0,24.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,6.1,68,83900,24,629,300,6,67,4,0,0,0,0,330,1.5,0,0,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.7,60,83900,221,1325,318,107,393,41,10900,27900,6300,740,300,1.5,1,1,64.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,5.6,50,83900,463,1325,318,302,712,53,31800,66300,8700,1130,350,2.1,1,0,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.8,36,83900,697,1325,325,509,835,69,53300,81700,10200,1600,350,1.5,0,0,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,3.3,32,83900,907,1325,336,697,896,84,72800,89300,11500,2200,10,2.6,0,0,96.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,3.9,29,83900,1078,1325,347,852,931,94,88500,93300,12500,3160,30,3.6,0,0,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,5.6,29,83800,1198,1325,360,962,951,101,99600,95500,13100,4750,40,2.6,0,0,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,4.4,23,83800,1259,1325,369,1018,960,104,105200,96500,13400,6530,40,3.1,0,0,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,3.9,21,83700,1257,1325,381,968,912,102,100200,91600,13100,6360,120,3.1,1,1,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,2.8,18,83600,1192,1325,397,932,829,185,97600,83300,22500,9060,120,2.6,3,3,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,2.2,16,83600,1069,1325,395,764,742,165,79800,74400,19600,5480,100,2.1,2,2,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,2.2,17,83500,896,1325,396,521,543,154,55400,55200,18000,4140,360,4.1,3,3,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,2.2,16,83500,684,1325,403,431,428,210,44700,42900,22500,4600,360,4.1,5,4,80.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,3.3,21,83500,449,1325,392,177,364,54,19000,33800,7500,1090,100,3.6,6,5,80.0,9144,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,7.8,29,83500,207,1325,395,91,110,74,9800,7600,8600,1570,160,4.1,6,5,80.0,9144,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,8.9,35,83600,18,563,388,4,24,3,0,0,0,0,200,5.7,6,5,64.0,9144,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,4.4,29,83500,0,0,362,0,0,0,0,0,0,0,170,4.1,2,2,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,5.6,33,83600,0,0,356,0,0,0,0,0,0,0,190,5.2,1,1,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,3.3,30,83500,0,0,348,0,0,0,0,0,0,0,170,3.1,1,1,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.2,43,83500,0,0,338,0,0,0,0,0,0,0,190,4.6,0,0,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.8,33,83500,0,0,330,0,0,0,0,0,0,0,180,5.2,0,0,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,3.9,40,83500,0,0,330,0,0,0,0,0,0,0,190,5.2,2,1,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.9,41,83500,0,0,328,0,0,0,0,0,0,0,190,4.6,3,1,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.9,44,83500,0,0,327,0,0,0,0,0,0,0,180,3.1,4,2,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,1.7,34,83400,24,629,336,6,18,5,0,0,0,0,200,4.1,6,3,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,2.2,30,83500,221,1325,346,97,301,47,10200,20700,6800,840,210,4.1,5,2,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,2.8,27,83500,463,1325,352,257,526,73,26900,48700,9900,1430,190,4.6,4,1,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,2.2,20,83400,697,1325,376,466,651,123,48900,64600,14900,2680,200,5.7,4,2,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,3.3,19,83400,907,1325,395,613,711,127,64400,71200,15500,3240,180,5.2,3,3,128.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,2.2,15,83300,1078,1325,401,803,832,125,82700,83200,14800,3630,200,5.2,2,2,128.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,0.0,12,83300,1198,1325,411,795,663,195,85900,68200,24100,10720,170,3.1,5,3,128.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,-0.6,11,83200,1259,1325,419,873,668,237,93500,68300,28400,17480,190,4.1,7,5,128.0,7620,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,-1.7,10,83200,1257,1325,433,473,221,262,53800,24200,30800,16730,210,5.7,10,8,112.0,7620,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,-2.2,10,83100,1193,1325,426,482,226,278,54300,24700,32000,13440,190,2.6,9,7,112.0,5486,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,1.7,14,83200,1070,1325,432,722,273,502,77900,28800,54600,18340,350,6.2,9,8,96.0,5486,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,0.6,14,83200,897,1325,446,245,0,245,28600,0,28600,10900,360,3.1,10,10,96.0,3658,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,1.7,17,83200,686,1325,434,178,0,178,20500,0,20500,7460,60,4.1,10,10,96.0,4572,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,2.8,19,83200,451,1325,429,105,0,105,12000,0,12000,4090,120,2.1,10,10,96.0,4572,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,3.9,23,83200,209,1325,422,39,0,39,4500,0,4500,1430,150,2.1,10,10,96.0,4572,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,3.3,23,83300,19,563,418,3,0,3,0,0,0,0,160,4.1,10,10,56.0,4572,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,3.3,27,83300,0,0,373,0,0,0,0,0,0,0,150,2.1,6,6,40.0,4572,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,4.4,36,83300,0,0,346,0,0,0,0,0,0,0,180,1.5,2,2,40.0,77777,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,5.0,40,83300,0,0,337,0,0,0,0,0,0,0,190,3.6,1,1,40.0,77777,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,4.4,38,83300,0,0,336,0,0,0,0,0,0,0,320,1.5,1,1,40.0,77777,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.6,46,83300,0,0,330,0,0,0,0,0,0,0,210,2.1,1,1,40.0,77777,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,6.1,50,83300,0,0,328,0,0,0,0,0,0,0,190,3.1,1,1,40.0,77777,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,5.6,50,83300,0,0,325,0,0,0,0,0,0,0,230,3.1,2,1,40.0,77777,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.0,51,83300,0,0,319,0,0,0,0,0,0,0,210,3.1,4,1,64.0,77777,9,999999999,150,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.0,51,83300,24,629,319,6,61,4,0,0,0,0,210,3.6,4,1,96.0,77777,9,999999999,150,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,3.9,38,83200,221,1324,326,112,444,38,11500,31700,6300,700,200,3.6,5,0,96.0,77777,9,999999999,150,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.0,35,83200,463,1324,340,299,673,64,30900,62100,9200,1270,220,3.6,5,0,96.0,77777,9,999999999,150,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,2.8,21,83200,697,1324,380,444,574,142,46200,56500,16400,3020,190,7.2,5,3,112.0,77777,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,3.3,18,83200,907,1324,394,646,751,132,67500,75100,16000,3320,210,4.6,6,2,112.0,77777,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-1.1,11,83200,1077,1324,406,738,686,180,79200,70300,21900,6790,210,2.1,9,3,112.0,77777,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,-0.6,11,83100,1198,1324,406,901,826,154,96400,83700,20500,8000,90,1.5,7,2,112.0,77777,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,-0.6,11,83100,1259,1324,416,889,664,258,94800,67600,30400,18980,180,2.1,9,3,112.0,77777,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.6,0.0,11,83000,1258,1324,426,1002,780,260,106600,79400,31100,18950,360,3.1,10,4,112.0,77777,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.6,-1.1,10,82900,1193,1324,428,708,462,291,77200,48400,33500,15800,270,2.6,10,5,112.0,77777,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.6,0.0,11,82800,1071,1324,430,649,524,226,68500,53100,25500,8210,280,2.1,10,5,112.0,77777,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,-0.6,11,82800,898,1324,438,298,262,120,34000,27300,15400,3080,300,4.6,8,8,104.0,4877,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,-1.1,11,82800,687,1324,443,225,14,218,25600,1200,24900,8590,310,3.6,9,9,96.0,6096,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,0.0,12,82800,452,1324,439,175,57,155,19100,5400,17300,4050,320,2.6,9,9,96.0,6096,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,0.0,14,82800,210,1324,435,43,0,43,4900,0,4900,1540,50,2.1,10,10,96.0,6096,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,2.2,22,82800,19,585,394,3,4,3,0,0,0,0,130,2.6,9,8,56.0,6096,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,1.1,21,82800,0,0,366,0,0,0,0,0,0,0,170,3.6,7,2,40.0,77777,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,0.6,20,82800,0,0,372,0,0,0,0,0,0,0,190,4.6,8,4,40.0,6096,9,999999999,139,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,-2.2,17,82800,0,0,371,0,0,0,0,0,0,0,180,2.6,7,6,40.0,6096,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-1.7,19,82700,0,0,355,0,0,0,0,0,0,0,200,3.6,5,3,40.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,-3.3,16,82600,0,0,358,0,0,0,0,0,0,0,180,4.1,8,3,40.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-2.2,18,82500,0,0,351,0,0,0,0,0,0,0,160,4.1,7,2,40.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-1.1,22,82500,0,0,350,0,0,0,0,0,0,0,160,3.1,8,4,40.0,7620,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-2.2,18,82500,0,0,365,0,0,0,0,0,0,0,160,4.1,7,6,64.0,7620,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-1.1,20,82500,24,629,364,5,4,5,0,0,0,0,160,4.1,10,6,96.0,7925,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,0.6,23,82500,221,1324,367,91,156,65,9500,10500,7800,1250,170,4.1,10,6,96.0,7925,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,2.2,20,82500,462,1324,389,247,304,140,26100,28900,16000,2880,170,3.6,10,6,96.0,7925,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,1.1,17,82600,696,1324,399,384,298,227,41000,31100,24600,5300,180,3.6,9,6,96.0,7925,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,-3.9,10,82600,906,1324,414,522,304,314,56200,32600,33800,8900,220,3.6,8,8,112.0,6401,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-3.9,9,82500,1077,1324,409,427,241,231,48100,26300,26700,8060,240,2.1,7,6,112.0,6401,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,-4.4,8,82500,1197,1324,432,522,231,312,58300,25200,35400,15480,350,2.1,8,8,112.0,6401,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,36.1,-4.4,7,82500,1259,1324,426,910,649,292,96100,65600,33500,21370,210,6.2,5,5,112.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,36.1,-4.4,7,82500,1258,1324,426,850,567,311,92900,59400,36300,23270,300,3.1,6,5,128.0,8230,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.6,-4.4,7,82500,1194,1324,423,946,809,217,101500,82800,26700,11690,180,5.7,5,5,128.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,36.7,-4.4,7,82400,1071,1324,422,740,659,206,78500,67100,24100,7570,200,2.6,3,3,128.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,36.7,-3.9,7,82400,899,1324,419,633,749,125,66500,75000,15500,3170,300,2.1,2,2,128.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.6,-4.4,7,82400,688,1324,420,359,414,144,38800,41800,17000,3040,310,4.6,8,4,112.0,8534,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,-1.1,11,82500,453,1324,415,247,476,84,25600,43500,10700,1590,330,5.2,7,4,112.0,8534,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,0.0,12,82500,212,1324,411,89,162,63,9300,10600,7600,1210,360,3.6,6,4,96.0,7620,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,6.7,26,82700,20,585,394,4,17,4,0,0,0,0,70,4.1,6,4,80.0,7620,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,8.3,35,82900,0,0,379,0,0,0,0,0,0,0,60,7.2,3,3,48.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,2.8,29,83200,0,0,341,0,0,0,0,0,0,0,10,6.2,0,0,40.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.2,32,83300,0,0,336,0,0,0,0,0,0,0,360,3.1,1,1,40.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.2,36,83300,0,0,326,0,0,0,0,0,0,0,350,2.6,1,1,40.0,77777,9,999999999,129,0.1040,0,88,0.190,0.0,1.0 +1994,6,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.8,42,83300,0,0,319,0,0,0,0,0,0,0,340,2.1,1,1,40.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,2.2,40,83300,0,0,319,0,0,0,0,0,0,0,350,2.1,1,1,40.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,3.9,57,83200,0,0,306,0,0,0,0,0,0,0,360,1.5,1,1,40.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,4.4,61,83200,0,0,304,0,0,0,0,0,0,0,110,1.5,3,1,64.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.9,59,83300,24,629,298,8,108,3,0,0,0,0,0,0.0,0,0,96.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.6,48,83300,220,1324,327,113,496,30,11600,37100,5400,610,230,2.1,1,1,96.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,5.0,41,83300,462,1324,338,270,596,61,28600,55500,9200,1220,90,1.0,2,2,96.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,9.4,50,83300,696,1324,355,419,479,167,44600,48400,19200,3590,50,3.1,3,3,88.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.0,49,83300,906,1324,367,520,582,121,56200,59700,15200,3390,150,2.6,5,5,80.0,77777,9,999999999,129,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.0,47,83300,1077,1324,370,614,577,144,66900,59700,18200,5520,50,5.2,5,5,72.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,10.0,44,83200,1197,1324,366,916,861,137,94100,86200,15900,5800,20,2.1,2,2,72.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,10.0,39,83200,1259,1324,365,1021,985,84,106400,99100,12000,5520,190,2.1,0,0,64.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,10.6,38,83100,1258,1324,371,1020,984,84,106200,99000,12000,5490,70,2.1,0,0,64.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,7.8,23,82900,1194,1324,393,963,976,81,100400,98100,11700,3990,140,6.2,0,0,64.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,7.2,22,82900,1072,1324,395,852,958,76,89200,96100,11100,2730,140,5.7,0,0,64.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,6.7,20,82800,900,1324,408,695,926,65,73000,92400,10100,1900,180,6.2,1,1,64.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,10.6,30,82800,689,1324,398,476,789,65,50000,77200,9700,1550,350,7.2,1,1,64.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,10.6,32,82800,455,1324,385,306,773,40,32400,71500,7800,1030,310,5.2,0,0,56.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,10.6,34,82900,213,1324,380,115,556,26,12200,42500,5400,600,330,3.1,0,0,48.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,10.6,42,82900,21,585,363,6,97,3,0,0,0,0,280,3.1,0,0,40.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,10.6,48,83000,0,0,352,0,0,0,0,0,0,0,0,0.0,0,0,40.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.7,61,83100,0,0,340,0,0,0,0,0,0,0,150,2.6,0,0,40.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.7,59,83100,0,0,343,0,0,0,0,0,0,0,230,2.6,0,0,40.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,83200,0,0,335,0,0,0,0,0,0,0,240,2.1,0,0,40.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,83300,0,0,331,0,0,0,0,0,0,0,340,4.1,0,0,24.0,77777,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,83400,0,0,380,0,0,0,0,0,0,0,330,5.2,10,10,24.0,396,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,83500,0,0,380,0,0,0,0,0,0,0,340,4.6,10,10,24.0,427,9,999999999,139,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,83500,0,0,369,0,0,0,0,0,0,0,340,5.2,10,9,24.0,640,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,83600,24,629,373,3,0,3,0,0,0,0,350,4.6,10,10,24.0,853,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,83700,220,1324,376,27,0,27,3200,0,3200,1070,360,4.1,10,10,19.2,366,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.3,83,83700,462,1324,377,72,0,72,8500,0,8500,3070,360,3.6,10,10,19.2,305,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,83800,696,1324,373,121,0,121,14400,0,14400,5550,40,4.6,10,10,16.0,305,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.2,75,83800,905,1324,379,197,0,197,23400,0,23400,9270,30,5.2,10,10,19.2,427,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,83800,1076,1324,362,620,243,421,67500,25800,46500,15560,30,2.6,7,7,24.0,914,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,11.7,53,83700,1197,1324,386,620,350,303,67300,36700,34100,16760,340,3.6,8,8,24.0,914,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,11.7,51,83700,1259,1324,360,973,903,114,100500,90700,14000,7060,340,4.6,1,1,24.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,11.7,45,83600,1258,1324,364,1011,941,116,104300,94500,14300,7120,360,2.1,0,0,24.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,11.1,38,83500,1195,1324,375,953,931,112,98400,93400,13900,5060,40,4.1,0,0,19.2,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,11.7,35,83500,1073,1324,387,842,909,105,87200,91000,13300,3320,80,4.6,0,0,24.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,11.1,32,83400,901,1324,396,545,636,112,57900,64000,14200,2960,120,6.2,1,1,24.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,11.7,32,83400,690,1324,392,497,805,76,53000,79800,11300,1750,60,6.2,0,0,32.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,11.7,34,83400,456,1324,389,293,687,56,30600,63600,8700,1160,30,6.2,0,0,32.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.2,45,83500,214,1324,368,106,437,35,10900,30900,6000,650,340,7.2,0,0,32.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,12.2,50,83500,21,607,359,5,46,3,0,0,0,0,320,8.2,0,0,40.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.3,55,83600,0,0,358,0,0,0,0,0,0,0,300,7.2,0,0,40.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.3,59,83600,0,0,353,0,0,0,0,0,0,0,330,4.1,0,0,40.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.3,63,83700,0,0,348,0,0,0,0,0,0,0,280,2.1,0,0,40.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,83700,0,0,340,0,0,0,0,0,0,0,300,2.1,0,0,40.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.8,73,83700,0,0,334,0,0,0,0,0,0,0,310,3.1,0,0,32.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,83800,0,0,331,0,0,0,0,0,0,0,330,2.1,0,0,32.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.3,83,83800,0,0,327,0,0,0,0,0,0,0,320,2.1,0,0,24.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,83900,0,0,333,0,0,0,0,0,0,0,350,3.1,6,3,16.0,77777,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,15.6,100,83900,23,629,377,2,0,2,0,0,0,0,340,2.6,10,10,2.4,61,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,15.6,100,84000,220,1323,377,22,0,22,2600,0,2600,890,350,3.1,10,10,4.0,61,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.6,90,84100,461,1323,386,83,0,83,9700,0,9700,3450,360,3.1,10,10,9.6,549,9,999999999,150,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.0,78,84200,695,1323,383,275,73,237,30200,7300,26400,7140,60,2.6,10,9,12.8,762,9,999999999,160,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.0,68,84100,905,1323,380,490,394,220,52600,40800,24700,5930,70,3.1,7,7,14.4,792,9,999999999,160,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.9,57,84100,1076,1323,384,635,371,333,69600,40300,36800,12080,20,2.6,8,6,14.4,792,9,999999999,160,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,14.4,57,84100,1197,1323,383,830,627,263,87800,63600,30200,14170,10,4.1,7,5,17.6,7010,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,14.4,55,84100,1259,1323,386,864,430,454,94600,46700,50000,30460,60,5.2,5,5,19.2,77777,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,14.4,54,84100,1258,1323,379,925,794,169,98600,80400,22000,11890,50,3.1,2,2,19.2,77777,9,999999999,170,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,14.4,45,84100,1195,1323,398,873,743,201,94000,76300,25000,10950,10,4.1,3,3,32.0,77777,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,15.0,47,84000,1073,1323,402,736,607,244,77300,61300,27500,8860,70,5.7,4,4,40.0,77777,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,13.9,45,84000,901,1323,398,723,795,182,76000,80200,21300,4840,80,3.1,4,4,48.0,77777,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,14.4,45,84000,691,1323,404,449,579,147,46600,56900,16900,3090,50,2.1,5,5,48.0,77777,9,999999999,179,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,14.4,48,84000,457,1323,398,188,66,165,20500,6200,18400,4260,120,3.1,5,5,32.0,77777,9,999999999,189,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,15.6,58,84000,216,1323,391,80,173,52,8500,11500,6700,960,110,6.2,5,5,32.0,77777,9,999999999,189,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,15.0,60,84000,22,607,387,4,3,4,0,0,0,0,110,3.1,6,6,32.0,7620,9,999999999,189,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.0,66,84100,0,0,409,0,0,0,0,0,0,0,130,2.1,10,10,24.0,7620,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,14.4,66,84100,0,0,405,0,0,0,0,0,0,0,150,2.1,10,10,24.0,7620,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,14.4,66,84100,0,0,405,0,0,0,0,0,0,0,50,2.1,10,10,24.0,7620,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,14.4,73,84000,0,0,377,0,0,0,0,0,0,0,110,2.6,10,8,24.0,7010,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,14.4,73,84000,0,0,367,0,0,0,0,0,0,0,160,1.5,10,6,24.0,7010,9,999999999,209,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.0,81,84000,0,0,345,0,0,0,0,0,0,0,360,1.5,6,1,24.0,77777,9,999999999,209,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,84000,0,0,338,0,0,0,0,0,0,0,0,0.0,3,1,24.0,77777,9,999999999,209,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.6,90,84000,0,0,345,0,0,0,0,0,0,0,260,1.5,5,2,24.0,77777,9,999999999,220,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.6,93,84000,23,628,346,4,7,4,0,0,0,0,0,0.0,4,3,12.8,77777,9,999999999,220,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.7,93,84000,219,1323,390,28,0,28,3300,0,3300,1100,350,3.1,10,10,6.4,244,9,999999999,220,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.7,93,84100,460,1323,390,54,0,54,6500,0,6500,2390,320,3.6,10,10,4.8,152,9,999999999,220,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.7,81,84100,694,1323,402,114,0,114,13600,0,13600,5280,320,3.1,10,10,9.6,335,9,999999999,220,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.1,66,84100,904,1323,383,512,513,161,54200,52100,18600,4370,260,2.6,5,5,11.2,77777,9,999999999,209,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,15.6,58,84000,1075,1323,369,799,802,147,84500,80900,18600,5150,320,1.5,1,0,11.2,77777,9,999999999,209,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,16.1,48,84000,1196,1323,396,747,609,195,80600,62600,23800,10710,350,2.6,1,1,12.8,77777,9,999999999,209,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,16.1,40,83900,1259,1323,428,707,423,305,77500,44400,35200,23050,330,3.6,5,5,16.0,77777,9,999999999,209,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,15.6,47,83900,1258,1323,433,712,176,544,77600,18700,59800,33400,300,6.2,9,9,16.0,1676,9,999999999,209,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.2,78,83900,1195,1323,409,266,0,266,32200,0,32200,12830,350,2.1,10,10,11.2,1676,9,999999999,209,0.1030,0,88,0.190,13.0,1.0 +1994,6,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,8.3,39,83900,1074,1323,406,293,0,293,34600,0,34600,13480,360,3.1,10,10,32.0,3353,9,999999999,209,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,8.3,38,83900,902,1323,409,238,0,238,27800,0,27800,10700,20,6.2,10,10,32.0,3353,9,999999999,209,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.6,68,84000,692,1323,410,170,0,170,19700,0,19700,7260,230,4.6,10,10,32.0,10668,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,12.8,53,83900,458,1323,413,97,0,97,11200,0,11200,3890,270,3.1,10,10,48.0,10668,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,14.4,63,84000,217,1323,409,42,0,42,4800,0,4800,1530,160,2.1,10,10,48.0,10668,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.9,63,84000,22,606,405,4,0,4,0,0,0,0,150,5.2,10,10,40.0,3048,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.7,55,84100,0,0,382,0,0,0,0,0,0,0,180,5.2,9,8,40.0,7620,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.7,61,84100,0,0,368,0,0,0,0,0,0,0,180,6.2,10,7,40.0,7620,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.2,63,84200,0,0,374,0,0,0,0,0,0,0,180,7.2,10,8,40.0,7620,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.7,61,84100,0,0,368,0,0,0,0,0,0,0,190,4.1,10,7,40.0,7620,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,84000,0,0,355,0,0,0,0,0,0,0,200,3.6,7,5,40.0,7620,9,999999999,189,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.1,59,83900,0,0,360,0,0,0,0,0,0,0,180,4.1,8,5,40.0,7620,9,999999999,189,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.1,63,83900,0,0,345,0,0,0,0,0,0,0,170,3.6,4,2,40.0,77777,9,999999999,189,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,83800,0,0,346,0,0,0,0,0,0,0,150,3.6,5,3,48.0,77777,9,999999999,189,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.0,63,83800,23,628,345,5,36,4,0,0,0,0,160,2.6,4,4,96.0,77777,9,999999999,189,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.1,63,83900,218,1323,349,112,414,43,11400,29100,6600,770,270,1.5,3,3,112.0,77777,9,999999999,189,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.1,53,83900,460,1323,354,271,620,55,28400,57500,8400,1160,290,2.6,1,1,112.0,77777,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.1,45,84000,694,1323,368,468,741,79,49800,73400,11200,1810,310,1.5,1,1,112.0,77777,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.2,45,84000,903,1323,368,683,870,89,71200,86600,11900,2240,340,2.6,0,0,112.0,77777,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,12.2,41,84000,1075,1323,383,771,771,144,81700,77900,18300,5060,350,2.6,1,1,112.0,77777,9,999999999,200,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,11.7,34,84000,1196,1323,402,914,772,215,98000,79100,26300,11730,340,2.6,2,2,112.0,77777,9,999999999,209,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,9.4,27,83900,1258,1323,409,865,736,164,92500,74600,21400,11620,350,4.6,3,3,112.0,77777,9,999999999,209,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,8.3,23,83900,1258,1323,417,780,527,278,82600,53500,31700,20450,10,3.1,6,4,112.0,6096,9,999999999,209,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,8.3,23,83900,1196,1323,436,664,363,336,71400,38000,37000,18610,40,4.6,8,8,112.0,6096,9,999999999,220,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,9.4,27,83900,1074,1323,424,698,546,254,75900,57100,29400,9480,330,7.7,7,7,64.0,3962,9,999999999,220,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,9.4,29,83900,903,1323,424,589,494,251,62400,51100,27500,6830,340,9.8,8,8,64.0,3962,9,999999999,220,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,9.4,29,83900,693,1323,418,308,288,157,33800,30200,18000,3420,310,8.2,7,7,64.0,5486,9,999999999,220,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,12.2,50,84100,459,1323,415,109,0,109,12400,0,12400,4250,140,5.2,10,10,64.0,5486,9,999999999,229,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.9,61,84100,218,1323,397,35,18,32,3900,1400,3600,860,110,3.1,9,9,64.0,3658,9,999999999,229,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.8,59,84100,23,628,384,4,8,3,0,0,0,0,200,3.6,8,8,48.0,7620,9,999999999,229,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.8,63,84200,0,0,365,0,0,0,0,0,0,0,200,2.6,7,5,40.0,7620,9,999999999,240,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,84200,0,0,360,0,0,0,0,0,0,0,150,4.1,8,5,40.0,7620,9,999999999,240,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.3,73,84200,0,0,360,0,0,0,0,0,0,0,180,2.1,6,6,40.0,3658,9,999999999,240,0.1030,0,88,0.190,0.0,1.0 +1994,6,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,84100,0,0,363,0,0,0,0,0,0,0,210,2.1,6,6,40.0,3962,9,999999999,240,0.1030,0,88,0.190,0.0,1.0 +1994,6,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,84100,0,0,355,0,0,0,0,0,0,0,150,2.1,6,6,40.0,7620,9,999999999,250,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,84100,0,0,349,0,0,0,0,0,0,0,180,2.1,5,5,40.0,77777,9,999999999,250,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,84100,0,0,332,0,0,0,0,0,0,0,180,2.1,3,1,40.0,77777,9,999999999,250,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,84100,0,0,340,0,0,0,0,0,0,0,190,1.5,5,5,40.0,77777,9,999999999,250,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,84100,23,628,337,4,2,4,0,0,0,0,190,2.1,5,4,96.0,77777,9,999999999,259,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,84200,218,1323,356,78,113,60,8600,8100,7200,1280,190,1.5,5,5,104.0,77777,9,999999999,259,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,11.7,51,84200,459,1323,388,157,104,121,17300,9900,13800,2760,220,1.5,8,8,96.0,4267,9,999999999,259,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,11.1,43,84200,693,1323,388,406,469,160,43400,47400,18600,3420,340,2.1,7,6,96.0,7620,9,999999999,259,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,12.2,43,84200,903,1323,393,544,425,254,57600,44000,27600,6920,320,3.1,6,5,96.0,7620,9,999999999,270,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,12.2,39,84200,1074,1323,398,603,454,233,66000,47500,27400,8650,40,3.1,5,4,96.0,77777,9,999999999,270,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,11.1,35,84200,1195,1323,400,899,670,294,94400,67500,33300,15660,340,2.6,4,4,96.0,77777,9,999999999,270,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,11.1,34,84200,1258,1323,402,928,683,278,98400,69300,32300,20450,60,4.1,4,4,80.0,77777,9,999999999,270,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,11.7,35,84200,1258,1323,413,615,218,408,68000,23700,45300,27170,60,3.1,6,6,64.0,7620,9,999999999,279,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,11.1,34,84100,1196,1323,414,747,392,392,82100,42600,43500,19820,60,6.2,7,7,56.0,3048,9,999999999,279,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,11.7,37,84000,1075,1323,418,666,334,394,72000,36200,42600,14620,80,5.2,10,8,56.0,3048,9,999999999,279,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,14.4,68,84100,904,1323,403,189,0,189,22500,0,22500,8960,340,10.3,10,10,24.0,1829,9,999999999,279,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.1,90,84200,694,1323,390,135,0,135,15900,0,15900,6070,360,5.2,10,10,24.0,1829,9,999999999,290,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.1,87,84300,460,1323,392,76,0,76,8900,0,8900,3200,340,5.2,10,10,24.0,1829,9,999999999,290,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.0,81,84300,219,1323,391,35,0,35,4100,0,4100,1330,300,2.1,10,10,24.0,1219,9,999999999,290,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,84300,23,628,389,4,0,4,0,0,0,0,260,4.1,10,10,19.2,3048,9,999999999,290,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,84300,0,0,389,0,0,0,0,0,0,0,180,2.6,10,10,19.2,3658,9,999999999,300,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,84300,0,0,389,0,0,0,0,0,0,0,130,2.6,10,10,24.0,3048,9,999999999,300,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,84200,0,0,389,0,0,0,0,0,0,0,150,2.6,10,10,24.0,4572,9,999999999,300,0.1020,0,88,0.190,0.0,1.0 +1994,6,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.6,90,84200,0,0,357,0,0,0,0,0,0,0,80,2.6,9,6,32.0,4572,9,999999999,300,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,84200,0,0,353,0,0,0,0,0,0,0,350,3.1,10,5,19.2,77777,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.6,93,84200,0,0,383,0,0,0,0,0,0,0,340,4.1,10,10,9.6,183,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,84200,0,0,382,0,0,0,0,0,0,0,350,1.5,10,10,9.6,244,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,15.0,96,84100,0,0,340,0,0,0,0,0,0,0,170,1.5,6,3,12.8,77777,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,14.4,90,84200,22,606,345,4,7,3,0,0,0,0,160,1.5,5,4,16.0,77777,9,999999999,320,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,84200,217,1322,357,76,76,64,8300,5400,7400,1360,190,2.1,6,6,12.8,3353,9,999999999,320,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,84200,458,1322,381,123,79,96,13700,7600,11100,2190,190,3.1,9,9,9.6,732,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.9,65,84100,692,1322,363,382,469,136,41500,47400,16600,2860,150,2.1,3,3,11.2,77777,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,14.4,61,84100,902,1322,368,634,755,119,66900,75800,15100,3090,70,2.6,4,2,16.0,77777,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,14.4,54,84000,1073,1322,383,702,669,159,76000,68900,19900,6020,210,2.1,6,3,19.2,77777,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,14.4,48,84000,1195,1322,388,870,733,207,93500,75200,25500,11290,130,3.6,7,2,24.0,77777,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,12.8,41,83900,1258,1322,396,946,805,180,100300,81300,22800,12590,320,2.1,8,3,24.0,77777,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,12.8,42,83900,1258,1322,403,723,276,460,79100,30000,50500,30940,0,0.0,7,6,24.0,9144,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,14.4,47,83800,1196,1322,416,569,298,298,63700,32500,34200,14730,110,5.2,9,8,24.0,6706,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,14.4,48,83800,1075,1322,422,429,137,317,47600,14600,35700,11700,100,2.6,9,9,32.0,3658,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,17.2,66,83800,904,1322,404,402,217,254,44000,23400,28000,6940,230,1.5,10,8,32.0,3658,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,15.6,58,83700,695,1322,399,337,367,144,36400,37100,16900,3050,130,2.6,10,7,32.0,3658,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,17.2,66,83800,461,1322,425,117,0,117,13300,0,13300,4480,200,3.1,10,10,32.0,3658,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.1,81,83800,220,1322,398,38,0,38,4400,0,4400,1420,170,6.7,10,10,24.0,1676,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.0,81,83900,23,628,391,3,0,3,0,0,0,0,200,3.6,10,10,32.0,3658,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,83900,0,0,363,0,0,0,0,0,0,0,230,2.1,7,7,32.0,3658,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,83900,0,0,359,0,0,0,0,0,0,0,180,2.6,8,6,32.0,7620,9,999999999,309,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,14.4,84,83900,0,0,360,0,0,0,0,0,0,0,190,2.6,7,7,32.0,7620,9,999999999,300,0.1020,0,88,0.190,0.0,1.0 +1994,6,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,83700,0,0,366,0,0,0,0,0,0,0,170,2.1,8,8,40.0,3353,9,999999999,300,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.9,78,83700,0,0,368,0,0,0,0,0,0,0,170,2.6,8,8,40.0,3353,9,999999999,300,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.3,75,83700,0,0,362,0,0,0,0,0,0,0,180,2.1,7,7,40.0,3658,9,999999999,300,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.3,75,83700,0,0,367,0,0,0,0,0,0,0,200,2.1,8,8,40.0,3658,9,999999999,300,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,83700,0,0,359,0,0,0,0,0,0,0,130,1.5,7,7,40.0,3658,9,999999999,300,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,83600,22,606,351,6,5,5,0,0,0,0,190,2.1,8,5,112.0,7315,9,999999999,300,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.8,73,83600,216,1322,354,81,201,48,8500,13600,6300,860,200,3.6,7,5,112.0,7315,9,999999999,300,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,12.2,55,83600,457,1322,370,194,319,84,21000,29600,10800,1550,190,3.6,6,4,104.0,9754,9,999999999,300,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.2,45,83700,691,1322,386,343,445,110,36300,44300,13100,2420,140,1.5,7,4,96.0,9754,9,999999999,290,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,13.3,47,83700,901,1322,408,402,208,260,43800,22400,28600,7100,30,7.7,8,8,80.0,2896,9,999999999,290,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,11.7,48,83800,1073,1322,414,243,0,243,29100,0,29100,11680,40,5.2,10,10,80.0,2286,9,999999999,290,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,14.4,75,83900,1194,1322,393,272,0,272,32900,0,32900,13060,320,5.7,10,10,16.0,1829,9,999999999,290,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.8,59,83900,1258,1322,403,288,0,288,35000,0,35000,13810,330,4.1,10,10,80.0,2743,9,999999999,290,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.8,59,83800,1258,1322,384,322,106,220,37000,11500,26100,13540,210,3.1,8,8,80.0,3658,9,999999999,290,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,14.4,57,83800,1196,1322,387,532,330,234,59400,34700,28000,12840,130,2.1,6,6,40.0,9144,9,999999999,279,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,12.2,43,83700,1076,1322,393,794,774,163,83000,77700,19600,5560,0,0.0,6,5,40.0,6706,9,999999999,279,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,12.8,50,83700,905,1322,392,488,361,241,52000,37400,26400,6550,50,3.1,9,7,40.0,3658,9,999999999,279,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,12.2,48,83700,695,1322,387,438,527,161,46900,53200,18800,3450,40,4.1,8,6,40.0,3962,9,999999999,279,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.2,61,83800,462,1322,371,144,135,97,16100,13000,11500,2210,30,4.1,7,7,40.0,3658,9,999999999,279,0.1020,0,88,0.190,1.0,1.0 +1994,6,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.9,68,83900,220,1322,366,64,75,52,7100,5400,6200,1110,10,4.1,5,5,64.0,77777,9,999999999,270,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,14.4,84,83900,24,628,344,6,45,4,0,0,0,0,300,3.1,2,2,64.0,77777,9,999999999,270,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,84000,0,0,332,0,0,0,0,0,0,0,270,3.1,0,0,40.0,77777,9,999999999,270,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,14.4,86,84000,0,0,331,0,0,0,0,0,0,0,0,0.0,0,0,40.0,77777,9,999999999,270,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.8,73,84100,0,0,375,0,0,0,0,0,0,0,30,3.6,9,9,40.0,1341,9,999999999,270,0.1020,0,88,0.190,0.0,1.0 +1994,6,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,84000,0,0,358,0,0,0,0,0,0,0,20,3.6,7,7,32.0,1280,9,999999999,259,0.1020,0,88,0.190,0.0,1.0 +1994,6,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,84100,0,0,352,0,0,0,0,0,0,0,40,3.1,7,7,32.0,1463,9,999999999,259,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,84100,0,0,332,0,0,0,0,0,0,0,0,0.0,3,3,32.0,77777,9,999999999,259,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.2,89,84000,0,0,316,0,0,0,0,0,0,0,100,1.5,0,0,32.0,77777,9,999999999,259,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.7,93,84100,0,0,310,0,0,0,0,0,0,0,110,2.1,0,0,32.0,77777,9,999999999,259,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.7,97,84100,22,606,314,5,34,3,0,0,0,0,110,1.5,1,1,64.0,77777,9,999999999,250,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,84200,215,1322,324,103,406,37,10600,28600,6000,680,110,1.5,0,0,64.0,77777,9,999999999,250,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.2,70,84100,456,1322,333,286,655,59,29700,60500,8800,1200,130,1.5,0,0,64.0,77777,9,999999999,250,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.7,63,84100,690,1322,338,486,776,81,51600,76800,11500,1830,0,0.0,0,0,64.0,77777,9,999999999,240,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.7,57,84100,900,1322,346,672,844,98,69900,84000,12600,2300,100,3.1,0,0,64.0,77777,9,999999999,240,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,11.1,48,84100,1072,1322,356,827,884,110,85600,88500,13700,3400,130,3.6,0,0,64.0,77777,9,999999999,240,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,9.4,37,84000,1194,1322,364,937,907,118,96700,91000,14400,5250,120,1.5,0,0,64.0,77777,9,999999999,229,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,6.7,28,84000,1257,1322,369,995,917,122,102400,92000,14700,7420,360,2.6,0,0,80.0,77777,9,999999999,229,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,6.1,24,83900,1258,1322,384,955,877,120,98400,88000,14500,7370,320,1.5,1,1,80.0,77777,9,999999999,220,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,3.9,20,83900,1196,1322,402,710,335,407,77900,36400,44900,20720,320,5.2,6,6,80.0,4877,9,999999999,220,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,3.9,17,83800,1076,1322,417,558,402,230,61200,42100,26900,8580,70,2.6,5,5,80.0,77777,9,999999999,220,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,3.3,17,83700,905,1322,407,582,605,167,61500,61300,19400,4520,40,4.1,4,4,80.0,77777,9,999999999,209,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,4.4,21,83800,696,1322,408,421,178,327,44800,18200,35300,8310,20,7.2,7,7,80.0,3658,9,999999999,209,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,5.6,25,83800,462,1322,396,213,97,179,23300,9200,20100,4540,60,4.1,6,6,80.0,6401,9,999999999,209,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,7.2,30,83800,221,1322,379,109,364,48,11000,25600,6800,840,170,3.1,2,2,80.0,77777,9,999999999,200,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,8.3,37,83900,24,650,382,5,8,5,0,0,0,0,20,5.2,8,6,80.0,4572,9,999999999,200,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,6.1,33,83900,0,0,364,0,0,0,0,0,0,0,40,6.2,2,2,48.0,77777,9,999999999,189,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.2,43,84000,0,0,344,0,0,0,0,0,0,0,170,1.5,1,1,48.0,77777,9,999999999,189,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,8.3,54,84000,0,0,340,0,0,0,0,0,0,0,190,2.1,2,2,48.0,77777,9,999999999,189,0.1010,0,88,0.190,0.0,1.0 +1994,6,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,8.9,56,83900,0,0,344,0,0,0,0,0,0,0,320,2.1,3,3,40.0,77777,9,999999999,179,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.0,65,84000,0,0,340,0,0,0,0,0,0,0,90,2.1,3,3,40.0,77777,9,999999999,179,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.0,69,83900,0,0,327,0,0,0,0,0,0,0,150,2.1,1,1,48.0,77777,9,999999999,179,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,83900,0,0,314,0,0,0,0,0,0,0,110,2.6,0,0,48.0,77777,9,999999999,170,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.0,77,83900,0,0,314,0,0,0,0,0,0,0,200,3.6,1,0,64.0,77777,9,999999999,170,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.0,75,84000,21,606,316,6,74,3,0,0,0,0,190,3.1,0,0,96.0,77777,9,999999999,170,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,9.4,62,84000,214,1322,325,111,505,30,11400,37400,5400,600,220,3.6,0,0,112.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,8.9,51,84000,455,1322,337,299,734,47,31600,67800,8200,1090,200,3.6,0,0,112.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,8.3,39,84000,689,1322,352,501,841,63,52700,82300,9700,1530,200,2.6,0,0,112.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,8.3,31,83900,899,1322,371,689,899,77,72000,89600,11000,2090,210,4.6,0,0,112.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,5.0,21,83900,1071,1322,380,844,934,87,87900,93600,11900,2980,360,2.1,0,0,112.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,-3.3,10,83900,1193,1322,378,954,953,93,99100,95700,12500,4440,350,3.1,0,0,112.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,-1.7,11,83900,1257,1322,383,1012,962,96,104900,96700,12800,6140,360,3.1,0,0,112.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-3.3,10,83800,1258,1322,391,933,877,98,96700,88100,12700,6290,360,3.1,1,1,112.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-2.2,10,83800,1196,1322,395,911,906,91,94700,91000,12200,4420,10,3.1,1,1,112.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,-1.7,10,83700,1076,1322,408,800,769,174,83100,77000,20400,5830,340,2.1,3,3,112.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,-1.1,11,83700,906,1322,400,656,847,75,68600,84500,10600,2080,40,3.1,1,1,112.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,0.0,13,83600,696,1322,395,476,785,62,50000,76900,9400,1530,40,2.6,1,1,112.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,2.2,16,83600,463,1322,408,195,246,109,21100,23500,12900,2130,130,2.6,5,5,112.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,3.3,18,83600,222,1322,398,105,362,45,10800,25600,6500,800,130,2.1,3,3,112.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,3.9,23,83600,24,650,378,6,39,5,0,0,0,0,200,4.1,4,2,80.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,4.4,26,83700,0,0,374,0,0,0,0,0,0,0,190,4.1,3,3,48.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,6.1,31,83600,0,0,369,0,0,0,0,0,0,0,180,4.1,7,2,48.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,7.2,37,83600,0,0,366,0,0,0,0,0,0,0,180,4.1,6,3,48.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.8,45,83600,0,0,350,0,0,0,0,0,0,0,190,3.1,2,2,48.0,77777,9,999999999,160,0.1010,0,88,0.190,0.0,1.0 +1994,6,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.8,45,83600,0,0,350,0,0,0,0,0,0,0,180,2.6,5,2,48.0,77777,9,999999999,150,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,6.1,40,83500,0,0,351,0,0,0,0,0,0,0,180,3.1,3,3,48.0,77777,9,999999999,150,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,6.7,45,83500,0,0,343,0,0,0,0,0,0,0,180,3.1,4,2,48.0,77777,9,999999999,150,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,5.6,43,83500,0,0,345,0,0,0,0,0,0,0,190,1.0,5,4,48.0,77777,9,999999999,150,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.6,46,83600,21,584,340,5,26,4,0,0,0,0,200,2.1,5,4,96.0,77777,9,999999999,150,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,6.1,38,83600,213,1322,359,94,302,46,9900,20300,6700,820,150,2.1,4,4,96.0,77777,9,999999999,150,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,6.1,30,83600,454,1322,379,209,359,85,22500,33200,11100,1570,220,2.6,4,4,96.0,77777,9,999999999,150,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,4.4,21,83700,688,1322,397,425,575,126,44600,56900,14900,2710,20,2.6,4,4,96.0,77777,9,999999999,150,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,-0.6,13,83700,898,1322,399,592,589,192,61900,59200,21600,5050,30,3.1,4,4,96.0,77777,9,999999999,150,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,-5.0,9,83800,1070,1322,398,592,545,150,64200,56200,18600,5670,10,6.2,4,4,96.0,77777,9,999999999,150,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-3.9,9,83800,1193,1322,393,894,864,114,92300,86700,13900,5110,40,3.6,2,1,96.0,77777,9,999999999,150,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,-3.3,9,83700,1257,1322,396,930,831,140,95400,83300,16100,8170,20,3.1,3,1,96.0,77777,9,999999999,150,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-1.1,11,83700,1258,1322,397,922,845,118,95100,84800,14200,7270,130,4.1,2,1,96.0,77777,9,999999999,139,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,0.6,12,83600,1196,1322,405,895,852,123,92100,85400,14700,5450,70,6.7,3,1,96.0,77777,9,999999999,139,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,0.6,12,83600,1076,1322,408,808,817,142,85800,82600,18400,5040,70,4.1,2,1,96.0,77777,9,999999999,139,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.0,0.6,11,83600,906,1322,403,692,874,93,72000,87000,12200,2290,110,5.2,0,0,96.0,77777,9,999999999,139,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,2.2,14,83600,697,1322,397,504,810,77,53800,80400,11400,1780,90,5.2,0,0,96.0,77777,9,999999999,139,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,3.3,16,83600,463,1322,392,300,694,57,31400,64400,8800,1190,70,6.7,0,0,96.0,77777,9,999999999,139,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,2.8,18,83600,222,1322,381,112,452,36,11600,32400,6100,670,50,5.2,0,0,96.0,77777,9,999999999,139,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,2.8,21,83700,24,650,367,6,54,4,0,0,0,0,60,3.6,0,0,96.0,77777,9,999999999,139,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,3.9,26,83800,0,0,355,0,0,0,0,0,0,0,100,2.1,0,0,48.0,77777,9,999999999,139,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,5.0,33,83800,0,0,346,0,0,0,0,0,0,0,120,2.1,0,0,48.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,4.4,31,83800,0,0,345,0,0,0,0,0,0,0,80,2.1,0,0,48.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.2,48,83800,0,0,330,0,0,0,0,0,0,0,90,2.1,3,0,48.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,8.3,52,83700,0,0,331,0,0,0,0,0,0,0,150,1.5,3,0,48.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,8.3,56,83700,0,0,326,0,0,0,0,0,0,0,180,2.6,1,0,48.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,8.3,58,83600,0,0,324,0,0,0,0,0,0,0,150,2.6,0,0,48.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.3,64,83600,0,0,317,0,0,0,0,0,0,0,170,1.5,0,0,64.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,8.9,72,83700,20,584,312,4,25,3,0,0,0,0,170,2.1,1,0,96.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,9.4,54,83700,211,1322,335,99,357,42,10100,24800,6200,750,210,2.1,2,0,96.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,6.7,39,83700,452,1322,357,233,417,90,25000,38500,11800,1670,240,2.1,3,3,96.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,7.8,35,83700,687,1322,359,489,771,88,51300,76000,11800,1920,0,0.0,0,0,96.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,7.2,30,83600,897,1322,367,679,843,107,72500,85000,14700,2850,0,0.0,0,0,96.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,8.9,28,83500,1069,1322,386,837,885,121,86400,88500,14600,3530,140,3.1,0,0,96.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,6.7,18,83500,1192,1322,409,950,909,129,97600,91100,15300,5510,130,3.1,0,0,96.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,36.1,1.1,11,83400,1256,1322,410,1009,920,134,103600,92300,15700,7900,110,3.1,0,0,96.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,37.2,-1.1,9,83400,1258,1322,412,1010,920,134,103700,92300,15700,7980,180,2.6,0,0,96.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,38.3,1.1,10,83300,1196,1322,421,954,910,130,98100,91200,15400,5650,180,3.1,0,0,96.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,38.9,-1.1,8,83300,1076,1322,421,843,886,121,86900,88600,14600,3600,180,2.1,0,0,96.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,40.0,-2.2,7,83200,906,1322,426,687,845,108,73400,85300,14800,2910,80,2.1,0,0,96.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,39.4,-3.9,6,83200,697,1322,420,498,775,89,52400,76500,12000,1960,310,4.1,0,0,96.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,38.3,-5.6,6,83200,464,1322,411,293,649,66,31000,60400,9800,1310,260,5.2,0,0,96.0,77777,9,999999999,129,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,36.1,-3.9,7,83300,222,1322,402,107,393,41,11000,28000,6300,740,260,4.1,0,0,96.0,77777,9,999999999,139,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-3.3,10,83300,25,650,383,5,34,4,0,0,0,0,260,3.1,0,0,80.0,77777,9,999999999,139,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,-2.2,13,83300,0,0,368,0,0,0,0,0,0,0,240,2.1,0,0,48.0,77777,9,999999999,139,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,1.1,20,83400,0,0,359,0,0,0,0,0,0,0,200,3.1,0,0,48.0,77777,9,999999999,139,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,-0.6,18,83400,0,0,355,0,0,0,0,0,0,0,200,3.1,0,0,48.0,77777,9,999999999,139,0.1000,0,88,0.190,0.0,1.0 +1994,6,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,0.0,19,83500,0,0,353,0,0,0,0,0,0,0,300,2.6,0,0,48.0,77777,9,999999999,139,0.1000,0,88,0.190,0.0,1.0 +1994,6,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,0.6,23,83600,0,0,343,0,0,0,0,0,0,0,100,3.1,0,0,48.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,1.7,30,83600,0,0,332,0,0,0,0,0,0,0,140,3.6,0,0,32.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.6,28,83700,0,0,338,0,0,0,0,0,0,0,110,2.6,2,2,32.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,3.3,38,83800,0,0,340,0,0,0,0,0,0,0,170,2.1,4,4,48.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,4.4,47,83900,19,584,325,3,4,3,0,0,0,0,170,1.5,4,2,80.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.9,35,84000,210,1322,349,86,179,57,9000,11700,7100,1070,170,3.6,6,3,88.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,1.7,25,84000,451,1322,351,238,422,94,25400,38900,12100,1750,140,3.6,2,1,88.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,-1.7,17,84000,685,1322,350,469,678,117,49400,67300,14400,2540,60,3.6,1,0,96.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,-0.6,18,84000,896,1322,355,658,759,143,70300,77400,17700,3890,130,5.2,1,0,96.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,2.2,20,84000,1069,1322,364,801,790,162,83800,79300,19500,5440,130,7.2,1,0,96.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,2.8,19,84000,1191,1322,375,930,828,183,97500,83300,22400,9050,130,4.6,2,0,96.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,1.7,16,83900,1256,1322,389,954,807,187,100700,81300,23300,12880,160,4.6,3,1,96.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,2.2,14,83900,1257,1322,407,928,783,183,98200,79000,22900,12780,70,2.1,2,2,96.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,1.1,13,83800,1196,1322,415,869,724,213,93300,74200,26000,11700,50,4.6,3,3,96.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,0.6,12,83800,1077,1322,411,786,723,197,83800,73800,23600,7400,110,3.1,2,2,96.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,1.1,13,83800,906,1322,415,589,589,185,61800,59400,21000,4960,80,3.6,3,3,96.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,1.1,12,83800,697,1322,414,467,552,175,49500,55700,20000,3780,50,4.1,2,2,96.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,0.0,12,83800,464,1322,417,243,346,121,25300,32100,14100,2320,360,5.2,4,4,96.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,0.6,14,83800,223,1322,406,79,127,57,8300,8600,6900,1060,30,5.2,4,4,96.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,0.6,16,83900,25,650,391,4,2,4,0,0,0,0,80,5.2,5,4,64.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,2.2,20,84000,0,0,382,0,0,0,0,0,0,0,120,4.1,4,4,48.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,5.6,30,84000,0,0,372,0,0,0,0,0,0,0,120,3.6,3,3,48.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,6.1,34,84000,0,0,374,0,0,0,0,0,0,0,120,2.1,6,6,48.0,3962,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,6.7,44,84000,0,0,349,0,0,0,0,0,0,0,330,2.1,4,3,40.0,77777,9,999999999,139,0.0990,0,88,0.190,0.0,1.0 +1994,6,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,0.6,27,84000,0,0,345,0,0,0,0,0,0,0,350,4.1,3,3,48.0,77777,9,999999999,139,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.0,27,84100,0,0,333,0,0,0,0,0,0,0,330,5.2,1,1,48.0,77777,9,999999999,139,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-0.6,29,84200,0,0,319,0,0,0,0,0,0,0,340,5.2,0,0,48.0,77777,9,999999999,139,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-0.6,32,84200,0,0,312,0,0,0,0,0,0,0,340,3.1,0,0,64.0,77777,9,999999999,139,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.0,38,84300,19,562,303,5,49,3,0,0,0,0,320,1.5,0,0,96.0,77777,9,999999999,139,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,1.1,34,84300,208,1322,318,104,452,33,10800,31600,5800,610,340,2.1,0,0,96.0,77777,9,999999999,139,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,1.1,28,84400,450,1322,331,291,701,53,30700,64800,8600,1120,360,3.1,0,0,96.0,77777,9,999999999,139,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,0.0,24,84400,684,1322,344,468,748,81,49600,73900,11300,1820,10,3.1,1,1,96.0,77777,9,999999999,139,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.2,25,84400,895,1322,354,648,823,91,67500,81900,11900,2230,20,3.1,1,1,96.0,77777,9,999999999,139,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,1.7,22,84300,1068,1322,366,800,801,153,84200,80700,19000,5210,0,0.0,2,2,96.0,77777,9,999999999,139,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.1,18,84300,1191,1322,380,778,590,245,82500,60000,28300,13030,0,0.0,3,3,96.0,77777,9,999999999,139,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,1.7,16,84200,1255,1322,392,946,834,154,96800,83500,17300,8650,40,4.1,2,2,96.0,77777,9,999999999,139,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,2.2,15,84100,1257,1322,405,998,862,177,105900,87100,22900,12410,300,2.1,3,3,96.0,77777,9,999999999,139,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,1.7,13,84000,1196,1322,409,906,868,119,93300,87100,14400,5340,360,7.2,2,2,96.0,77777,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,2.2,13,84000,1077,1322,423,825,738,224,87200,74900,26100,8310,320,6.7,4,4,96.0,77777,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,2.2,14,84000,907,1322,424,463,475,137,49700,48600,16300,3810,350,5.7,6,6,96.0,4267,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,2.2,15,84000,698,1322,415,396,447,160,42400,45200,18500,3430,30,4.1,6,6,96.0,4877,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,1.7,16,84000,464,1322,413,164,141,114,18000,13500,13300,2600,40,4.1,7,7,96.0,4572,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,1.1,16,84000,223,1322,404,89,112,70,9600,8000,8200,1490,80,4.1,6,6,96.0,4572,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,2.2,20,84100,25,650,385,6,18,6,0,0,0,0,140,3.1,5,5,64.0,77777,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,3.3,24,84100,0,0,375,0,0,0,0,0,0,0,140,3.6,4,4,40.0,77777,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,3.9,29,84100,0,0,354,0,0,0,0,0,0,0,130,3.1,1,1,40.0,77777,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,5.0,36,84100,0,0,345,0,0,0,0,0,0,0,160,1.0,1,1,40.0,77777,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.7,40,84100,0,0,347,0,0,0,0,0,0,0,170,2.6,1,1,40.0,77777,9,999999999,160,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.1,39,84000,0,0,339,0,0,0,0,0,0,0,160,4.6,0,0,40.0,77777,9,999999999,160,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,5.6,37,84000,0,0,339,0,0,0,0,0,0,0,210,3.1,0,0,40.0,77777,9,999999999,160,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.7,47,84000,0,0,330,0,0,0,0,0,0,0,170,2.1,0,0,40.0,77777,9,999999999,160,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.1,48,84000,0,0,324,0,0,0,0,0,0,0,200,2.1,0,0,64.0,77777,9,999999999,160,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.6,46,84000,18,562,323,4,42,3,0,0,0,0,190,3.6,0,0,96.0,77777,9,999999999,160,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.1,39,84000,207,1322,354,95,211,62,9900,13700,7800,1190,210,3.1,3,3,112.0,77777,9,999999999,160,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,5.6,32,84000,448,1322,363,251,448,99,26600,41200,12700,1860,220,3.6,2,2,112.0,77777,9,999999999,160,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,6.1,27,84000,683,1322,384,372,443,143,40200,44700,17000,3010,190,3.6,3,3,112.0,77777,9,999999999,160,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,5.6,23,84000,894,1322,391,663,851,87,69100,84700,11700,2190,190,2.1,2,2,112.0,77777,9,999999999,160,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,2.8,17,84000,1067,1322,421,171,62,121,20100,6700,14700,4400,10,2.6,8,8,96.0,3962,9,999999999,160,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-1.1,11,84000,1190,1322,421,703,396,346,75300,41400,38000,18840,360,3.6,7,7,96.0,4267,9,999999999,160,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-1.1,11,83900,1255,1322,409,922,676,280,97700,68500,32500,20270,160,1.0,4,4,96.0,77777,9,999999999,160,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,0.6,12,83800,1257,1322,418,947,762,222,102000,78200,27500,16480,350,5.2,4,4,80.0,77777,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,1.1,13,83800,1196,1322,415,866,813,129,89000,81500,15100,5620,350,3.6,3,3,96.0,77777,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,1.7,13,83700,1077,1322,420,740,451,372,77400,46900,39100,14360,180,3.6,4,4,96.0,77777,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,4.4,18,83700,907,1322,430,339,133,248,37700,14100,28000,7370,180,6.2,8,8,96.0,3658,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,7.8,29,83900,698,1322,419,175,62,142,19300,6100,16100,4690,10,8.2,9,9,80.0,3658,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,6.7,28,83800,464,1322,406,241,65,218,26300,6300,24100,5170,70,4.6,8,8,96.0,4877,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,7.8,33,83800,223,1322,392,42,31,37,4600,2400,4200,980,120,4.1,7,7,96.0,4877,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,7.2,34,83800,25,650,375,6,20,5,0,0,0,0,160,3.6,4,4,64.0,77777,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,7.2,37,83800,0,0,363,0,0,0,0,0,0,0,190,6.2,2,2,40.0,77777,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,7.2,37,83800,0,0,366,0,0,0,0,0,0,0,190,5.7,3,3,40.0,77777,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,6.1,33,83800,0,0,359,0,0,0,0,0,0,0,180,2.6,1,1,40.0,77777,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.7,40,83800,0,0,347,0,0,0,0,0,0,0,200,3.1,1,1,40.0,77777,9,999999999,150,0.0980,0,88,0.190,0.0,1.0 +1994,6,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,7.2,47,83700,0,0,333,0,0,0,0,0,0,0,160,3.1,0,0,40.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,5.6,42,83700,0,0,331,0,0,0,0,0,0,0,170,2.1,0,0,40.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.6,45,83800,0,0,326,0,0,0,0,0,0,0,140,2.6,0,0,40.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.6,45,83800,0,0,326,0,0,0,0,0,0,0,200,3.1,0,0,64.0,77777,9,999999999,139,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.9,37,83800,18,540,329,4,42,3,0,0,0,0,190,5.2,0,0,112.0,77777,9,999999999,139,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,4.4,33,83900,205,1321,340,101,436,33,10400,30300,5700,610,170,3.6,0,0,112.0,77777,9,999999999,139,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,5.6,30,83900,447,1321,357,287,690,54,30100,63600,8600,1130,180,2.1,0,0,112.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,5.0,23,83900,681,1321,372,490,809,73,52500,80200,11100,1690,210,3.6,0,0,112.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,0.6,15,83900,892,1321,381,680,874,89,70800,87000,11900,2210,210,1.5,0,0,112.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-0.6,12,83800,1066,1321,398,790,850,104,81800,85100,13100,3260,80,2.1,1,1,112.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,-1.7,10,83800,1189,1321,408,611,544,122,67000,55600,16800,6400,280,3.1,3,3,112.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.0,-2.8,9,83700,1254,1321,411,991,913,124,102000,91600,14900,7390,340,8.2,2,2,112.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,-1.7,10,83700,1256,1321,414,879,765,152,94900,77800,20800,10820,310,2.6,4,3,112.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.6,-0.6,10,83600,1196,1321,418,873,796,151,93400,80800,20200,7900,10,5.2,4,2,112.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,36.1,-0.6,10,83600,1077,1321,425,645,561,188,69000,57400,22100,7100,310,5.2,6,3,112.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,36.7,-1.7,9,83600,907,1321,430,631,669,171,66500,67700,20000,4630,310,4.1,5,4,112.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.0,-1.7,9,83600,698,1321,424,431,492,171,45800,49700,19500,3690,350,4.1,5,5,112.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-0.6,12,83600,464,1321,410,233,372,102,24700,34600,12600,1920,50,4.1,4,4,96.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,-0.6,13,83600,223,1321,404,58,109,39,6300,7500,5000,680,60,3.6,6,5,96.0,8534,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,0.6,17,83700,25,650,399,6,24,5,0,0,0,0,140,2.6,7,7,64.0,3658,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,1.1,17,83700,0,0,392,0,0,0,0,0,0,0,170,5.7,5,5,40.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.5,2.0,20,83700,0,0,374,0,0,0,0,0,0,0,150,5.3,2,2,40.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.7,2.8,25,83700,0,0,355,0,0,0,0,0,0,0,190,4.8,0,0,40.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1994,6,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.9,3.7,27,83700,0,0,368,0,0,0,0,0,0,0,190,4.4,5,5,40.0,77777,9,999999999,150,0.0970,0,88,0.190,0.0,1.0 +1991,7,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.0,4.6,56,83800,0,0,339,0,0,0,0,0,0,0,180,3.9,0,0,32.0,77777,9,999999999,160,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.2,5.5,54,83800,0,0,339,0,0,0,0,0,0,0,170,3.5,1,1,32.0,77777,9,999999999,150,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.4,6.3,64,83900,0,0,331,0,0,0,0,0,0,0,130,3.0,1,1,32.0,77777,9,999999999,150,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.2,57,83900,0,0,334,0,0,0,0,0,0,0,100,2.6,5,4,48.0,77777,9,999999999,150,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,6.7,62,84000,17,540,316,3,12,2,0,0,0,0,90,2.6,1,1,80.0,77777,9,999999999,150,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.7,54,84100,204,1321,320,92,334,40,9300,22800,5800,710,250,1.5,0,0,112.0,77777,9,999999999,150,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.1,45,84100,445,1321,329,273,608,68,28700,55800,9800,1330,300,2.1,0,0,112.0,77777,9,999999999,150,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.9,32,84100,680,1321,339,476,744,93,49700,73000,12000,1970,40,2.1,0,0,112.0,77777,9,999999999,150,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,3.9,31,84100,891,1321,342,667,820,114,70700,82400,15000,2960,70,3.1,0,0,112.0,77777,9,999999999,150,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,5.0,30,84000,1065,1321,351,825,864,128,84900,86300,15200,3560,50,2.1,0,0,112.0,77777,9,999999999,160,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,6.1,31,84000,1188,1321,357,938,889,138,96300,89000,16000,5650,80,3.1,0,0,112.0,77777,9,999999999,160,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,5.6,27,83900,1254,1321,365,998,901,143,102300,90300,16500,8150,100,3.6,0,0,112.0,77777,9,999999999,160,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,4.4,23,83800,1256,1321,369,1000,901,143,102500,90300,16500,8290,120,4.1,0,0,112.0,77777,9,999999999,160,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,4.4,20,83800,1196,1321,380,944,890,138,96900,89100,16000,5840,100,5.7,0,0,112.0,77777,9,999999999,160,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,3.3,19,83700,1076,1321,378,835,866,129,85900,86600,15300,3690,70,3.1,0,0,112.0,77777,9,999999999,160,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,3.3,19,83700,907,1321,395,637,677,172,67200,68500,20100,4660,50,3.1,3,3,96.0,77777,9,999999999,160,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,3.9,19,83700,698,1321,395,455,608,134,47500,60100,15800,2890,60,4.1,5,2,96.0,77777,9,999999999,160,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,3.3,20,83700,464,1321,409,172,51,154,18800,4800,17100,4090,60,4.1,8,8,96.0,3658,9,999999999,170,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,5.6,27,83800,222,1321,390,67,104,49,7100,7100,5900,890,30,6.2,6,6,96.0,3658,9,999999999,170,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,5.0,28,83900,24,650,384,4,8,4,0,0,0,0,20,3.6,6,6,64.0,3658,9,999999999,170,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,5.6,34,84000,0,0,358,0,0,0,0,0,0,0,360,2.1,2,2,32.0,77777,9,999999999,170,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,6.7,44,84000,0,0,335,0,0,0,0,0,0,0,170,1.5,0,0,32.0,77777,9,999999999,170,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,6.1,40,84000,0,0,354,0,0,0,0,0,0,0,350,3.1,4,4,32.0,77777,9,999999999,170,0.0890,0,88,0.200,0.0,1.0 +1991,7,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.7,40,84100,0,0,358,0,0,0,0,0,0,0,40,3.1,4,4,32.0,77777,9,999999999,170,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.8,54,84100,0,0,340,0,0,0,0,0,0,0,340,2.6,3,3,32.0,77777,9,999999999,170,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.2,56,84100,0,0,331,0,0,0,0,0,0,0,360,4.1,2,2,32.0,77777,9,999999999,179,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.2,62,84200,0,0,313,0,0,0,0,0,0,0,350,4.1,0,0,32.0,77777,9,999999999,179,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.2,64,84200,0,0,311,0,0,0,0,0,0,0,330,1.5,0,0,32.0,77777,9,999999999,179,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,6.7,60,84300,16,540,312,4,48,2,0,0,0,0,350,1.5,0,0,96.0,77777,9,999999999,179,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.8,54,84300,202,1321,326,100,452,31,10100,32600,5200,590,10,1.5,0,0,96.0,77777,9,999999999,179,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,7.8,48,84300,444,1321,333,285,700,50,30100,64700,8400,1070,30,3.1,0,0,112.0,77777,9,999999999,179,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.8,44,84300,679,1321,341,483,771,87,50800,75900,11700,1890,30,2.1,4,0,96.0,77777,9,999999999,179,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,9.4,45,84300,890,1321,372,588,568,204,63500,58900,23700,5370,20,4.1,8,6,96.0,3353,9,999999999,179,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,10.6,48,84300,1064,1321,364,716,682,166,77100,70100,20500,6130,70,3.1,2,2,96.0,77777,9,999999999,189,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,10.6,43,84200,1188,1321,367,883,853,116,91100,85600,14100,5070,50,4.1,1,1,96.0,77777,9,999999999,189,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.1,42,84200,1253,1321,373,953,897,102,98700,90100,13100,6320,60,1.5,1,1,64.0,77777,9,999999999,189,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,11.1,38,84100,1256,1321,391,857,682,209,92700,70100,26000,15460,20,1.5,3,3,64.0,77777,9,999999999,189,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,10.6,35,84100,1195,1321,389,897,852,126,92400,85400,14900,5530,20,3.6,2,2,64.0,77777,9,999999999,189,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,10.0,31,84000,1076,1321,401,820,854,124,84500,85400,14800,3630,80,3.6,3,3,64.0,77777,9,999999999,189,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,9.4,29,83900,907,1321,399,658,824,92,68400,82100,12000,2280,70,3.6,2,2,64.0,77777,9,999999999,189,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,8.9,31,83900,698,1321,400,391,397,181,41300,40100,20100,3930,10,5.7,5,5,64.0,77777,9,999999999,189,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,8.3,29,84000,464,1321,389,290,553,96,29800,50500,12100,1790,40,6.2,2,2,64.0,77777,9,999999999,200,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,7.8,31,84000,222,1321,384,102,335,45,10300,23700,6300,800,30,4.6,3,3,64.0,77777,9,999999999,200,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,7.2,33,84000,24,650,388,5,37,4,0,0,0,0,360,3.6,7,7,48.0,2438,9,999999999,200,0.0890,0,88,0.200,0.0,1.0 +1991,7,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.2,65,84100,0,0,390,0,0,0,0,0,0,0,280,3.1,10,10,24.0,2438,9,999999999,200,0.0890,0,88,0.200,4.0,1.0 +1991,7,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,84200,0,0,357,0,0,0,0,0,0,0,130,2.6,7,7,32.0,2591,9,999999999,200,0.0890,0,88,0.200,11.0,1.0 +1991,7,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,84300,0,0,382,0,0,0,0,0,0,0,260,6.2,10,10,6.4,1829,9,999999999,200,0.0890,0,88,0.200,3.0,1.0 +1991,7,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.9,87,84300,0,0,354,0,0,0,0,0,0,0,180,3.1,7,7,32.0,2896,9,999999999,200,0.0890,0,88,0.200,1.0,1.0 +1991,7,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,14.4,90,84300,0,0,351,0,0,0,0,0,0,0,210,1.5,6,6,32.0,7620,9,999999999,200,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,14.4,90,84300,0,0,360,0,0,0,0,0,0,0,180,1.5,8,8,32.0,2743,9,999999999,200,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.9,90,84300,0,0,344,0,0,0,0,0,0,0,190,1.5,5,5,32.0,77777,9,999999999,209,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.3,86,84300,0,0,341,0,0,0,0,0,0,0,160,3.1,5,4,48.0,77777,9,999999999,209,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,84400,16,518,325,4,56,2,0,0,0,0,100,1.5,1,1,80.0,77777,9,999999999,209,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.3,83,84400,200,1321,327,103,498,27,10500,36100,5100,550,150,2.6,0,0,88.0,77777,9,999999999,209,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.8,73,84400,442,1321,334,288,731,43,30400,67200,7900,1050,230,1.5,0,0,80.0,77777,9,999999999,209,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.2,63,84400,677,1321,341,488,838,59,51400,81900,9400,1480,320,1.5,0,0,80.0,77777,9,999999999,200,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,11.1,49,84300,889,1321,353,675,897,72,70800,89400,10600,1990,190,1.0,0,0,80.0,77777,9,999999999,200,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,11.1,48,84300,1063,1321,356,830,931,81,86700,93400,11400,2800,180,2.1,0,0,88.0,77777,9,999999999,200,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,11.1,43,84200,1187,1321,370,880,884,85,91600,88800,11700,4060,140,1.5,1,1,80.0,77777,9,999999999,200,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,11.1,40,84200,1252,1321,376,962,921,88,100000,92600,12000,5590,70,2.1,1,1,80.0,77777,9,999999999,200,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,10.6,38,84100,1255,1321,383,973,933,87,101300,93800,12000,5630,110,3.1,2,2,80.0,77777,9,999999999,200,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,10.0,34,84100,1195,1321,392,877,780,171,92700,78700,21400,8730,140,4.1,3,3,80.0,77777,9,999999999,189,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,7.2,27,84000,1076,1321,388,795,808,137,84800,81800,18100,4910,300,3.1,2,2,80.0,77777,9,999999999,189,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,6.7,25,84000,906,1321,418,532,413,249,56600,42700,27200,6810,30,4.1,8,8,80.0,2591,9,999999999,189,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,7.2,29,84000,697,1321,395,397,452,158,42500,45700,18400,3380,50,3.1,6,6,80.0,9144,9,999999999,189,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,6.1,29,84000,464,1321,399,152,167,94,16700,16000,11100,1790,30,3.6,8,8,80.0,9144,9,999999999,189,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,6.7,31,84000,222,1321,390,87,50,78,9400,3900,8800,1790,40,3.1,7,7,80.0,9144,9,999999999,189,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,11.7,51,84100,24,628,378,5,40,4,0,0,0,0,0,0.0,6,6,48.0,9144,9,999999999,179,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.0,49,84100,0,0,346,0,0,0,0,0,0,0,360,2.6,0,0,32.0,77777,9,999999999,179,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.6,59,84100,0,0,337,0,0,0,0,0,0,0,190,1.5,0,0,32.0,77777,9,999999999,179,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.6,59,84100,0,0,337,0,0,0,0,0,0,0,290,1.5,0,0,32.0,77777,9,999999999,179,0.0880,0,88,0.200,0.0,1.0 +1991,7,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.6,65,84100,0,0,329,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,179,0.0880,0,88,0.200,0.0,1.0 +1991,7,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,9.4,62,84100,0,0,325,0,0,0,0,0,0,0,330,2.1,0,0,32.0,77777,9,999999999,170,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,84100,0,0,320,0,0,0,0,0,0,0,180,2.1,0,0,32.0,77777,9,999999999,170,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.6,78,84000,0,0,316,0,0,0,0,0,0,0,200,2.6,0,0,32.0,77777,9,999999999,170,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.9,67,84000,0,0,317,0,0,0,0,0,0,0,200,2.6,0,0,32.0,77777,9,999999999,170,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,8.9,72,84000,15,518,312,2,16,2,0,0,0,0,210,2.6,0,0,112.0,77777,9,999999999,170,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,8.9,60,84000,199,1321,325,89,331,39,9000,22400,5700,700,190,4.1,0,0,104.0,77777,9,999999999,170,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,8.9,51,84100,440,1321,337,269,608,66,28200,55700,9700,1290,200,3.1,0,0,96.0,77777,9,999999999,160,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,7.2,38,84100,675,1321,348,472,745,91,49300,73100,11900,1940,190,3.1,0,0,96.0,77777,9,999999999,160,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,6.1,30,84000,887,1321,360,663,822,111,70400,82700,14800,2890,240,3.1,0,0,96.0,77777,9,999999999,160,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,4.4,22,84000,1061,1321,372,822,867,126,84800,86700,15000,3500,320,1.5,0,0,112.0,77777,9,999999999,160,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,-2.2,12,83900,1186,1321,374,936,893,135,96200,89400,15800,5520,170,2.1,0,0,112.0,77777,9,999999999,150,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,-0.6,13,83900,1252,1321,389,850,722,165,90800,73200,21300,11300,140,2.1,1,1,112.0,77777,9,999999999,150,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,0.0,13,83800,1255,1321,395,952,854,140,97600,85600,16100,8100,340,3.1,1,1,112.0,77777,9,999999999,150,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-1.1,12,83700,1195,1321,394,944,896,134,97100,89800,15700,5720,350,2.1,1,1,112.0,77777,9,999999999,150,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-0.6,12,83700,1076,1321,398,779,804,124,80300,80400,14700,3630,140,2.6,1,1,112.0,77777,9,999999999,150,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-0.6,12,83600,906,1321,398,655,747,142,70000,76300,17600,3930,230,1.5,1,1,112.0,77777,9,999999999,139,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-1.1,11,83600,697,1321,397,479,707,105,50800,70600,13500,2340,110,2.1,1,1,112.0,77777,9,999999999,139,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,0.0,14,83600,463,1321,395,270,493,97,28800,45800,12800,1820,120,2.1,2,2,112.0,77777,9,999999999,139,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,2.8,18,83600,221,1321,400,62,129,40,6700,8800,5200,700,80,3.1,4,4,112.0,77777,9,999999999,139,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,2.8,22,83600,24,628,373,5,24,4,0,0,0,0,110,2.1,2,2,80.0,77777,9,999999999,129,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,3.9,26,83700,0,0,361,0,0,0,0,0,0,0,130,2.1,1,1,32.0,77777,9,999999999,129,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,5.0,30,83600,0,0,351,0,0,0,0,0,0,0,160,2.6,0,0,32.0,77777,9,999999999,129,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,4.4,31,83600,0,0,345,0,0,0,0,0,0,0,190,3.1,0,0,32.0,77777,9,999999999,129,0.0870,0,88,0.200,0.0,1.0 +1991,7,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,3.9,33,83600,0,0,337,0,0,0,0,0,0,0,180,4.1,0,0,32.0,77777,9,999999999,129,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,5.0,41,83600,0,0,328,0,0,0,0,0,0,0,180,2.6,0,0,32.0,77777,9,999999999,120,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,3.3,34,83500,0,0,331,0,0,0,0,0,0,0,180,3.6,0,0,32.0,77777,9,999999999,120,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,3.3,34,83500,0,0,331,0,0,0,0,0,0,0,170,3.6,0,0,32.0,77777,9,999999999,120,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,2.8,34,83500,0,0,328,0,0,0,0,0,0,0,210,4.1,0,0,40.0,77777,9,999999999,120,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.2,34,83500,14,495,324,3,34,2,0,0,0,0,190,2.1,0,0,104.0,77777,9,999999999,110,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.3,31,83600,197,1321,338,96,419,33,9800,28500,5600,610,190,3.1,0,0,104.0,77777,9,999999999,110,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,3.9,26,83600,438,1321,355,281,685,54,29400,62900,8600,1120,200,2.6,0,0,96.0,77777,9,999999999,120,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,4.4,23,83600,674,1321,369,486,809,74,52000,80000,11100,1700,180,2.1,0,0,104.0,77777,9,999999999,120,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,5.0,20,83600,886,1321,387,678,876,90,70500,87100,12000,2200,210,2.6,0,0,104.0,77777,9,999999999,120,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,1.7,13,83500,1060,1321,396,837,915,102,86700,91600,13100,3190,190,2.1,0,0,104.0,77777,9,999999999,120,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,0.6,12,83500,1185,1321,405,898,881,107,92800,88400,13400,4760,120,2.1,1,1,104.0,77777,9,999999999,120,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.0,1.7,12,83500,1251,1321,422,954,733,259,101500,74600,30700,18430,340,5.2,3,3,112.0,77777,9,999999999,120,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,0.6,12,83500,1254,1321,411,982,820,202,102600,82300,24300,13650,340,3.6,2,2,112.0,77777,9,999999999,120,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.0,0.6,11,83500,1194,1321,421,856,657,262,90600,66600,30200,14100,310,6.2,3,3,112.0,77777,9,999999999,120,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,36.1,1.1,11,83400,1076,1321,423,704,691,141,74800,69900,17800,5010,310,7.7,2,2,112.0,77777,9,999999999,120,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,0.6,12,83400,906,1321,425,555,410,273,58300,42400,29200,7520,310,2.6,6,6,96.0,4572,9,999999999,120,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,1.7,13,83400,697,1321,429,185,94,136,20900,9800,15700,3450,30,2.6,6,6,96.0,4572,9,999999999,129,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,1.1,13,83400,463,1321,415,299,643,74,31400,59500,10500,1450,50,3.6,3,3,80.0,77777,9,999999999,129,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,0.6,13,83500,221,1321,396,106,373,44,10800,26400,6400,780,40,2.6,2,1,64.0,77777,9,999999999,129,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,2.8,21,83500,23,628,364,6,48,4,0,0,0,0,120,2.6,2,0,64.0,77777,9,999999999,129,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,5.0,29,83500,0,0,368,0,0,0,0,0,0,0,90,2.6,2,2,48.0,77777,9,999999999,129,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,3.3,24,83500,0,0,372,0,0,0,0,0,0,0,250,3.1,3,3,32.0,77777,9,999999999,129,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,5.6,32,83500,0,0,372,0,0,0,0,0,0,0,260,2.6,5,5,32.0,77777,9,999999999,129,0.0870,0,88,0.200,0.0,1.0 +1991,7,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,6.7,42,83500,0,0,352,0,0,0,0,0,0,0,0,0.0,3,3,32.0,77777,9,999999999,129,0.0870,0,88,0.200,0.0,1.0 +1991,7,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,6.1,42,83500,0,0,348,0,0,0,0,0,0,0,170,1.5,3,3,32.0,77777,9,999999999,129,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,4.4,40,83500,0,0,327,0,0,0,0,0,0,0,190,2.1,0,0,32.0,77777,9,999999999,129,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,4.4,43,83500,0,0,322,0,0,0,0,0,0,0,170,2.1,0,0,32.0,77777,9,999999999,139,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,3.9,42,83600,0,0,319,0,0,0,0,0,0,0,210,2.6,0,0,48.0,77777,9,999999999,139,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.8,39,83600,14,473,318,2,9,2,0,0,0,0,190,3.1,0,0,96.0,77777,9,999999999,139,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,3.3,34,83600,194,1321,331,83,282,42,8800,18100,6100,750,180,2.1,0,0,112.0,77777,9,999999999,139,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,3.3,29,83700,436,1321,350,248,533,72,25900,48500,9900,1390,220,3.6,1,1,112.0,77777,9,999999999,139,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,3.9,25,83600,672,1321,372,432,583,135,44900,57200,15700,2830,220,2.6,2,2,112.0,77777,9,999999999,139,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,5.6,24,83600,885,1321,413,130,26,112,14400,2600,12700,4330,200,3.1,8,8,112.0,5486,9,999999999,139,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,3.3,18,83600,1059,1321,412,574,130,470,63200,13500,52300,17830,200,2.1,7,7,112.0,3962,9,999999999,139,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,1.7,13,83500,1184,1321,426,842,596,308,91200,62400,35200,16310,130,1.5,5,5,112.0,77777,9,999999999,150,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.0,1.1,12,83500,1250,1321,428,691,288,418,76100,31300,46300,26860,160,2.1,6,5,112.0,7620,9,999999999,150,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,0.6,13,83500,1254,1321,427,507,114,398,56300,12200,44700,24060,90,5.7,8,8,112.0,4267,9,999999999,150,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,1.7,14,83500,1194,1321,425,443,169,290,49800,18400,33100,14250,250,5.7,7,7,112.0,4572,9,999999999,150,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,1.7,13,83500,1075,1321,448,508,111,417,55900,11500,46600,16610,230,5.2,9,9,96.0,3353,9,999999999,150,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,3.3,17,83600,905,1321,418,590,459,275,62000,47400,29400,7580,320,7.2,9,7,96.0,3353,9,999999999,150,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,3.3,17,83500,696,1321,428,333,180,238,36200,18600,26400,6050,40,5.2,8,8,96.0,4877,9,999999999,160,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,5.0,22,83700,462,1321,409,259,271,165,27200,25700,18200,3530,330,6.2,7,7,96.0,4877,9,999999999,160,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,5.6,24,83600,220,1321,399,82,26,77,8900,2000,8500,1770,200,2.1,8,6,96.0,4877,9,999999999,160,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,6.1,26,83600,23,628,393,4,6,4,0,0,0,0,60,4.6,7,5,64.0,7620,9,999999999,160,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,6.7,32,83700,0,0,376,0,0,0,0,0,0,0,330,1.5,5,4,32.0,77777,9,999999999,160,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,7.2,34,83700,0,0,368,0,0,0,0,0,0,0,210,3.1,2,2,32.0,77777,9,999999999,160,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,7.2,35,83700,0,0,369,0,0,0,0,0,0,0,200,1.5,4,3,32.0,77777,9,999999999,160,0.0860,0,88,0.200,0.0,1.0 +1991,7,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.2,41,83700,0,0,354,0,0,0,0,0,0,0,200,1.5,4,2,32.0,77777,9,999999999,170,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.2,43,83700,0,0,349,0,0,0,0,0,0,0,160,3.1,2,2,32.0,77777,9,999999999,170,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,6.7,44,83600,0,0,349,0,0,0,0,0,0,0,190,3.1,3,3,32.0,77777,9,999999999,170,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.7,47,83600,0,0,340,0,0,0,0,0,0,0,190,3.6,2,2,32.0,77777,9,999999999,170,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,5.6,39,83700,0,0,356,0,0,0,0,0,0,0,180,2.1,6,5,48.0,3048,9,999999999,170,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,5.6,39,83700,13,473,363,2,1,1,0,0,0,0,220,3.6,7,7,96.0,4572,9,999999999,170,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.1,39,83800,192,1321,373,33,6,32,3800,0,3800,1190,350,3.1,8,8,104.0,3658,9,999999999,179,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.8,44,83800,434,1321,383,111,39,98,12200,3600,11000,2770,140,1.0,9,9,112.0,3962,9,999999999,179,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,9.4,45,83900,670,1321,383,264,34,247,29600,3100,28000,9120,10,5.7,9,8,104.0,3353,9,999999999,179,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,9.4,40,84000,883,1321,377,512,538,152,54300,54600,17800,4030,360,7.7,7,4,64.0,77777,9,999999999,179,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,10.0,40,84100,1058,1321,378,775,678,233,81600,68600,26600,8210,360,7.7,3,3,48.0,77777,9,999999999,189,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,10.6,42,84200,1183,1321,375,860,816,130,88500,81800,15200,5340,360,6.2,5,2,48.0,77777,9,999999999,189,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,10.6,42,84200,1249,1321,378,902,714,227,97000,73100,27700,16110,360,5.2,8,3,48.0,77777,9,999999999,189,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,10.6,38,84200,1253,1321,390,914,658,290,96600,66600,33300,20760,360,5.7,7,4,64.0,77777,9,999999999,200,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,10.0,34,84200,1193,1321,413,484,126,370,53800,13500,41600,17860,30,5.2,8,8,48.0,7620,9,999999999,200,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,9.4,37,84200,1075,1321,394,790,665,249,82800,67100,28100,9090,0,0.0,7,7,48.0,4572,9,999999999,200,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.1,45,84200,905,1321,396,510,290,311,54900,31100,33500,8800,210,4.6,9,8,48.0,4572,9,999999999,200,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,11.7,45,84200,696,1321,408,234,97,182,25800,10100,20500,4620,230,4.1,10,9,48.0,4572,9,999999999,209,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.7,46,84200,462,1321,397,260,336,143,27500,31900,16400,2960,210,2.6,9,8,48.0,7620,9,999999999,209,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,11.7,50,84200,219,1321,385,87,43,79,9400,3300,8800,1790,180,4.1,10,7,48.0,7620,9,999999999,209,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,11.7,51,84200,23,606,388,5,3,5,0,0,0,0,180,3.1,10,8,48.0,7620,9,999999999,220,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,11.7,53,84200,0,0,380,0,0,0,0,0,0,0,200,3.1,10,7,32.0,7620,9,999999999,220,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.7,57,84200,0,0,380,0,0,0,0,0,0,0,120,3.1,10,8,32.0,7620,9,999999999,220,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.7,57,84200,0,0,357,0,0,0,0,0,0,0,130,5.7,7,2,32.0,77777,9,999999999,220,0.0860,0,88,0.200,0.0,1.0 +1991,7,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,84200,0,0,376,0,0,0,0,0,0,0,150,6.2,10,8,32.0,7620,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,84100,0,0,366,0,0,0,0,0,0,0,140,5.2,8,6,32.0,7620,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.1,59,84000,0,0,351,0,0,0,0,0,0,0,160,5.2,7,2,32.0,77777,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.6,59,84000,0,0,370,0,0,0,0,0,0,0,160,6.2,9,8,32.0,7620,9,999999999,240,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.1,65,83900,0,0,359,0,0,0,0,0,0,0,160,3.6,9,7,32.0,7620,9,999999999,240,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.1,70,83900,12,451,359,3,5,3,0,0,0,0,270,2.6,9,8,48.0,6096,9,999999999,240,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,84000,190,1321,362,39,53,32,4400,3600,3900,680,220,1.5,9,7,64.0,6096,9,999999999,240,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.7,63,84000,432,1321,371,56,53,38,6500,5100,4800,860,180,2.1,9,8,80.0,6096,9,999999999,240,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.2,59,84000,669,1321,374,309,239,188,33300,24800,20700,4190,280,3.1,9,7,80.0,6096,9,999999999,240,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.2,53,83900,881,1321,408,248,0,248,28800,0,28800,10910,340,2.6,10,10,80.0,6096,9,999999999,240,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,12.8,52,83900,1057,1321,389,631,516,218,66600,52400,24700,7720,360,4.1,10,7,64.0,6096,9,999999999,240,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.2,46,83900,1182,1321,390,850,524,381,90100,54600,41100,20220,320,4.6,9,6,48.0,6096,9,999999999,240,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,11.7,41,83900,1249,1321,403,810,414,418,85700,43200,44800,30330,340,3.1,10,7,48.0,4267,9,999999999,240,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,11.7,36,83800,1252,1321,421,626,165,469,68800,17600,52100,28190,310,4.1,9,8,64.0,4267,9,999999999,240,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,10.6,32,83700,1193,1321,412,688,428,301,74700,44800,34200,16500,120,2.1,7,6,48.0,7620,9,999999999,240,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,10.6,38,83800,1074,1321,428,245,0,245,29400,0,29400,11760,260,6.2,10,10,48.0,2896,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.8,63,83700,904,1321,386,483,136,389,53000,14000,43300,12820,170,6.7,9,9,64.0,4572,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,13.9,55,83700,695,1321,397,309,156,227,33700,16100,25200,5760,230,4.6,8,8,80.0,4572,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,13.9,55,83700,461,1321,373,282,592,75,29500,54700,10400,1460,240,3.1,6,2,80.0,77777,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.8,55,83700,218,1321,376,85,174,56,9000,11700,7000,1040,160,3.6,8,5,80.0,7620,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.3,61,83700,22,606,378,4,10,4,0,0,0,0,160,3.6,9,7,32.0,7620,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.8,59,83700,0,0,384,0,0,0,0,0,0,0,210,7.2,10,8,32.0,3658,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.1,61,83800,0,0,355,0,0,0,0,0,0,0,320,5.7,6,4,32.0,7620,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.6,61,83700,0,0,351,0,0,0,0,0,0,0,310,2.1,5,4,32.0,77777,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.6,65,83700,0,0,329,0,0,0,0,0,0,0,190,3.1,0,0,32.0,77777,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,83600,0,0,339,0,0,0,0,0,0,0,170,3.6,2,2,32.0,77777,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,83600,0,0,342,0,0,0,0,0,0,0,190,3.6,3,3,32.0,77777,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,83500,0,0,323,0,0,0,0,0,0,0,190,3.1,0,0,48.0,77777,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.6,72,83500,0,0,328,0,0,0,0,0,0,0,190,3.1,1,1,32.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.6,72,83600,11,451,328,3,55,1,0,0,0,0,200,3.1,1,1,96.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.6,61,83600,188,1321,340,90,420,31,9400,28000,5400,570,200,2.6,1,1,96.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.6,51,83600,430,1321,354,278,735,39,29500,67300,7600,990,210,1.5,1,1,96.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,10.0,41,83700,667,1321,375,370,578,78,40000,57900,10700,1750,80,2.1,3,3,96.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,9.4,36,83700,880,1321,379,632,802,98,67900,81000,13900,2610,80,1.5,2,2,96.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,8.9,32,83700,1055,1321,391,710,723,132,75800,73200,17200,4530,40,5.2,3,3,96.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,9.4,32,83700,1181,1321,391,658,641,85,68600,64400,10900,3970,60,5.2,2,2,96.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,10.0,33,83700,1248,1321,398,942,860,130,96900,86300,15300,7350,350,4.1,4,4,96.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,10.6,33,83600,1252,1321,405,991,765,265,105200,77800,31400,18910,350,4.6,5,5,96.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,10.0,33,83600,1192,1321,401,968,887,167,102600,89600,21600,8450,10,4.6,5,5,80.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,10.6,32,83500,1074,1321,405,549,340,273,59300,35500,30400,10240,80,2.6,4,4,64.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,10.0,33,83500,904,1321,405,542,432,246,57600,44700,26900,6700,10,5.2,8,6,64.0,6096,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,10.6,34,83500,695,1321,426,353,188,254,38200,19300,28000,6450,180,5.2,9,9,32.0,3658,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.6,76,83600,460,1321,390,150,57,130,16400,5300,14600,3570,300,5.7,10,9,24.0,2286,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,14.4,78,83700,217,1321,390,38,0,38,4400,0,4400,1420,340,5.2,10,10,16.0,2286,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,83700,22,606,364,5,17,5,0,0,0,0,90,3.1,8,8,32.0,1676,9,999999999,220,0.0850,0,88,0.200,2.0,1.0 +1991,7,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,83700,0,0,351,0,0,0,0,0,0,0,270,2.1,5,5,32.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,83800,0,0,354,0,0,0,0,0,0,0,210,2.1,8,6,32.0,4267,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,15.0,96,83800,0,0,337,0,0,0,0,0,0,0,90,1.5,2,2,32.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,15.0,96,83800,0,0,326,0,0,0,0,0,0,0,240,1.5,0,0,32.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,14.4,93,83700,0,0,326,0,0,0,0,0,0,0,250,1.5,0,0,32.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.9,93,83600,0,0,322,0,0,0,0,0,0,0,200,2.1,0,0,32.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.9,93,83600,0,0,329,0,0,0,0,0,0,0,160,2.1,1,1,32.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,83600,0,0,326,0,0,0,0,0,0,0,190,2.6,1,1,32.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.9,97,83600,11,429,320,3,62,1,0,0,0,0,180,2.6,0,0,64.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.9,90,83600,186,1322,325,95,508,24,10000,37300,4800,540,190,2.1,0,0,96.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.9,76,83600,428,1322,337,279,744,38,29600,68000,7500,980,200,2.6,0,0,96.0,77777,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.8,59,83600,665,1322,356,456,803,51,48100,78400,8600,1360,220,2.1,1,1,112.0,77777,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,12.2,50,83600,878,1322,366,629,852,63,66200,84900,9700,1830,190,3.1,1,1,112.0,77777,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,11.1,39,83600,1054,1322,384,698,726,119,75400,73800,16400,4170,70,1.5,2,2,112.0,77777,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,9.4,30,83600,1180,1322,400,824,655,239,87600,66700,27900,12200,160,2.1,3,3,112.0,77777,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,8.3,27,83500,1247,1322,408,899,805,139,92200,80700,15900,7660,340,2.1,5,5,96.0,77777,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,7.8,28,83500,1251,1322,413,747,246,513,81600,26100,56800,30620,240,4.1,8,8,96.0,3962,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,7.2,25,83500,1192,1322,412,780,533,300,84900,55800,34500,16360,160,2.1,7,7,96.0,4267,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,8.3,26,83500,1073,1322,411,889,866,185,91700,86400,21400,6030,170,4.6,5,5,88.0,77777,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,13.3,53,83600,903,1322,405,285,42,256,31400,4300,28500,9190,360,3.6,9,9,64.0,1981,9,999999999,240,0.0850,0,88,0.200,2.0,1.0 +1991,7,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,13.9,54,83500,694,1322,383,465,681,108,49400,67900,13700,2390,90,4.6,5,4,80.0,77777,9,999999999,240,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,12.8,52,83500,459,1322,372,284,610,72,29800,56400,10200,1410,120,3.1,4,2,80.0,77777,9,999999999,240,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.3,55,83500,216,1322,393,85,74,73,9100,5200,8300,1550,130,2.1,8,8,80.0,4267,9,999999999,240,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,12.8,53,83600,21,584,387,5,20,4,0,0,0,0,130,1.5,7,7,48.0,3353,9,999999999,240,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.2,57,83600,0,0,383,0,0,0,0,0,0,0,220,1.5,8,8,32.0,3353,9,999999999,240,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.6,51,83700,0,0,371,0,0,0,0,0,0,0,170,5.2,7,6,32.0,3353,9,999999999,240,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.1,54,83700,0,0,369,0,0,0,0,0,0,0,190,3.6,8,6,32.0,3353,9,999999999,240,0.0850,0,88,0.200,0.0,1.0 +1991,7,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.6,55,83700,0,0,370,0,0,0,0,0,0,0,180,3.1,10,7,32.0,7620,9,999999999,240,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,83700,0,0,377,0,0,0,0,0,0,0,180,2.1,10,9,32.0,7620,9,999999999,240,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,83700,0,0,369,0,0,0,0,0,0,0,200,3.1,8,8,32.0,7620,9,999999999,250,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,83800,0,0,349,0,0,0,0,0,0,0,350,3.1,6,5,32.0,7620,9,999999999,250,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,14.4,86,83900,0,0,371,0,0,0,0,0,0,0,350,3.1,10,9,32.0,3048,9,999999999,250,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,84000,10,407,366,1,4,1,0,0,0,0,300,2.1,9,9,48.0,3658,9,999999999,250,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.7,67,84000,183,1322,366,37,54,29,4100,3600,3600,610,310,3.1,9,8,64.0,3353,9,999999999,250,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.1,61,84000,426,1322,365,85,120,46,9700,11200,6100,800,290,2.1,7,7,64.0,3353,9,999999999,240,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.1,54,84000,663,1322,387,305,84,262,33300,8400,29100,7450,260,4.1,9,9,96.0,3048,9,999999999,240,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.0,47,84000,877,1322,373,428,233,273,46300,25000,29700,7350,260,1.5,7,6,96.0,7620,9,999999999,240,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,11.1,43,84000,1052,1322,379,757,734,172,81300,75300,21200,6170,230,2.6,4,3,96.0,77777,9,999999999,240,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,10.0,37,84000,1178,1322,380,888,834,144,91100,83500,16500,5530,120,1.5,2,2,96.0,77777,9,999999999,240,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,9.4,36,84000,1246,1322,374,980,926,106,101300,93000,13500,6250,190,1.5,1,1,96.0,77777,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,8.3,31,84000,1250,1322,390,843,684,196,91600,70500,24700,14050,70,2.6,4,4,96.0,77777,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,7.8,30,84000,1191,1322,416,440,110,340,49100,11800,38400,16280,340,2.6,9,9,80.0,3962,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,8.3,30,84000,1072,1322,419,347,123,247,39100,13200,28400,9080,290,2.1,9,9,80.0,4267,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,8.3,30,84000,902,1322,410,418,85,359,45800,8700,39900,12040,290,2.1,10,8,80.0,4267,9,999999999,229,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,9.4,32,84000,693,1322,409,249,174,158,27400,18200,17800,3450,250,3.1,9,7,80.0,3962,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,9.4,36,84000,458,1322,392,190,163,134,20800,15500,15400,3060,260,3.1,9,6,80.0,7315,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,9.4,41,84000,214,1322,380,78,140,55,8200,9300,6700,1020,200,5.2,9,6,80.0,7315,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.6,49,84000,20,584,368,4,6,4,0,0,0,0,190,3.1,9,4,64.0,77777,9,999999999,220,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.0,51,84100,0,0,355,0,0,0,0,0,0,0,170,3.1,5,2,32.0,77777,9,999999999,209,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,9.4,52,84100,0,0,338,0,0,0,0,0,0,0,170,3.1,0,0,32.0,77777,9,999999999,209,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.0,56,84100,0,0,347,0,0,0,0,0,0,0,200,2.6,5,2,32.0,77777,9,999999999,209,0.0850,0,88,0.200,0.0,1.0 +1991,7,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.0,56,84100,0,0,350,0,0,0,0,0,0,0,180,3.1,3,3,32.0,77777,9,999999999,209,0.0850,0,88,0.200,0.0,1.0 +1991,7,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.0,60,84100,0,0,337,0,0,0,0,0,0,0,180,4.1,3,1,32.0,77777,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.0,63,84100,0,0,334,0,0,0,0,0,0,0,170,3.1,1,1,32.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.6,70,84100,0,0,324,0,0,0,0,0,0,0,160,2.1,0,0,32.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.0,69,84200,0,0,321,0,0,0,0,0,0,0,180,2.6,2,0,64.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,84200,9,408,332,1,7,1,0,0,0,0,210,2.6,5,3,96.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.6,67,84200,181,1322,327,81,339,34,8200,22000,5200,610,230,4.1,0,0,96.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,10.6,57,84200,424,1322,339,259,625,58,26700,56700,8500,1150,240,2.6,0,0,96.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,11.7,53,84300,661,1322,351,461,760,81,48700,74700,11200,1780,190,1.5,0,0,96.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,10.6,42,84300,875,1322,363,652,834,99,69800,84200,14000,2610,130,2.1,0,0,80.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,10.6,36,84300,1051,1322,386,716,653,196,76100,66600,23000,6920,0,0.0,2,2,96.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,7.2,25,84300,1177,1322,400,828,664,236,88100,67600,27700,11940,80,2.1,3,3,80.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,6.7,24,84200,1245,1322,402,1012,865,197,106100,86900,24100,12590,150,3.6,4,4,80.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,10.0,31,84200,1249,1322,422,479,262,231,53800,27600,27700,16500,350,5.7,8,8,64.0,2591,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,8.9,29,84100,1190,1322,414,772,564,264,81600,57200,30000,13940,100,6.2,7,7,48.0,3962,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.3,55,84200,1072,1322,413,238,0,238,28600,0,28600,11480,320,7.7,10,10,9.6,2134,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.8,73,84400,902,1322,385,195,0,195,23200,0,23200,9180,20,8.2,10,10,24.0,2286,9,999999999,209,0.0840,0,88,0.200,2.0,1.0 +1991,7,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,84500,692,1322,369,358,45,335,39300,4700,36800,10780,280,2.6,10,9,32.0,2896,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,14.4,84,84500,457,1322,374,69,24,60,7600,2200,6800,1830,150,3.6,10,9,48.0,2896,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,84500,213,1322,364,59,17,56,6400,1300,6200,1380,220,5.2,9,8,64.0,2896,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,84600,20,584,346,5,8,5,0,0,0,0,220,4.1,9,4,48.0,77777,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,84700,0,0,358,0,0,0,0,0,0,0,150,2.1,8,8,32.0,3048,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,84600,0,0,348,0,0,0,0,0,0,0,190,3.1,6,6,32.0,3048,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.1,75,84600,0,0,336,0,0,0,0,0,0,0,190,2.6,3,3,32.0,77777,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.1,75,84500,0,0,328,0,0,0,0,0,0,0,200,2.6,2,1,32.0,77777,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,84400,0,0,327,0,0,0,0,0,0,0,160,1.5,2,2,32.0,77777,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,84400,0,0,315,0,0,0,0,0,0,0,100,4.1,1,0,32.0,77777,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,84400,0,0,314,0,0,0,0,0,0,0,130,3.1,1,0,32.0,77777,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,84400,0,0,309,0,0,0,0,0,0,0,210,1.5,0,0,32.0,77777,9,999999999,220,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.6,93,84400,9,386,305,1,23,1,0,0,0,0,140,2.1,0,0,64.0,77777,9,999999999,220,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.7,84,84500,178,1322,317,83,389,30,8500,25300,5100,550,280,1.5,0,0,24.0,77777,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,84500,421,1322,329,263,665,51,27600,60500,8200,1060,210,1.5,0,0,9.6,77777,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,84500,659,1322,340,465,792,70,49800,78200,10700,1610,210,1.5,0,0,9.6,77777,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.8,59,84500,873,1322,349,655,860,86,68200,85500,11600,2120,120,1.5,0,0,80.0,77777,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.7,46,84500,1050,1322,362,813,900,98,84400,90100,12700,3050,280,1.5,0,0,96.0,77777,9,999999999,209,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.1,42,84400,1176,1322,366,927,923,106,96000,92600,13400,4570,220,3.1,0,0,96.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,9.4,34,84400,1244,1322,373,989,934,110,102200,93800,13800,6350,140,2.6,0,0,96.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,8.9,31,84300,1248,1322,385,915,856,107,94700,86000,13300,6380,0,0.0,1,1,96.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,7.8,28,84200,1189,1322,392,848,657,257,89800,66700,29700,13550,110,2.1,3,3,80.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,8.3,28,84200,1071,1322,392,746,692,185,79800,70800,22300,6890,150,4.1,2,2,80.0,77777,9,999999999,200,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,7.8,28,84200,901,1322,392,564,586,164,59600,59400,19100,4430,130,3.1,5,3,96.0,77777,9,999999999,189,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,7.8,28,84100,691,1322,402,318,169,230,34700,17400,25600,5820,110,3.6,7,6,96.0,9144,9,999999999,189,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,9.4,34,84100,455,1322,389,221,309,114,23700,29300,13600,2250,110,2.6,5,3,96.0,77777,9,999999999,189,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,9.4,36,84100,211,1322,379,103,338,49,10800,22700,7100,880,120,2.6,5,2,80.0,77777,9,999999999,189,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,10.6,45,84200,19,562,364,4,34,3,0,0,0,0,160,3.1,3,1,48.0,77777,9,999999999,189,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,11.1,49,84200,0,0,353,0,0,0,0,0,0,0,180,4.6,0,0,32.0,77777,9,999999999,179,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.8,61,84200,0,0,347,0,0,0,0,0,0,0,160,6.2,0,0,32.0,77777,9,999999999,179,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.7,59,84200,0,0,343,0,0,0,0,0,0,0,180,7.2,0,0,32.0,77777,9,999999999,179,0.0840,0,88,0.200,0.0,1.0 +1991,7,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.7,63,84200,0,0,338,0,0,0,0,0,0,0,180,6.7,0,0,32.0,77777,9,999999999,179,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,84200,0,0,335,0,0,0,0,0,0,0,170,4.6,0,0,32.0,77777,9,999999999,179,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.7,67,84100,0,0,333,0,0,0,0,0,0,0,180,2.6,0,0,32.0,77777,9,999999999,170,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.1,70,84100,0,0,327,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,170,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.1,75,84100,0,0,322,0,0,0,0,0,0,0,180,2.1,0,0,32.0,77777,9,999999999,170,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,84100,8,364,317,2,53,1,0,0,0,0,200,1.5,0,0,80.0,77777,9,999999999,170,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.1,67,84100,176,1322,329,90,504,23,9500,36400,4700,510,210,2.6,0,0,112.0,77777,9,999999999,170,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.6,55,84100,419,1322,342,275,751,37,29200,68400,7500,960,210,2.6,0,0,112.0,77777,9,999999999,160,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,9.4,44,84100,657,1322,351,479,859,51,50500,83800,8800,1350,220,4.1,0,0,112.0,77777,9,999999999,160,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,8.3,36,84100,871,1322,360,668,917,64,70300,91400,10000,1830,190,3.6,0,0,112.0,77777,9,999999999,160,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,8.9,32,84000,1048,1322,374,827,951,73,86700,95400,10900,2540,150,3.1,0,0,112.0,77777,9,999999999,160,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,7.2,25,84000,1175,1322,381,941,970,79,98300,97500,11500,3680,130,1.5,0,0,112.0,77777,9,999999999,160,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,6.1,23,83900,1243,1322,382,1003,980,82,104700,98600,11800,5000,180,4.6,0,0,112.0,77777,9,999999999,160,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,5.0,20,83900,1247,1322,387,1008,980,82,105000,98600,11800,5120,180,4.1,0,0,112.0,77777,9,999999999,150,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,2.2,15,83800,1188,1322,388,955,973,79,99700,97800,11500,3850,190,5.2,0,0,104.0,77777,9,999999999,150,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,2.8,16,83800,1070,1322,392,848,956,74,88800,95900,11000,2670,170,3.1,0,0,104.0,77777,9,999999999,150,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,2.2,15,83700,900,1322,388,696,926,65,73100,92400,10100,1900,150,5.2,0,0,104.0,77777,9,999999999,150,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,4.4,19,83700,690,1322,388,509,873,53,53700,85600,9000,1410,160,7.2,0,0,96.0,77777,9,999999999,150,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,5.0,21,83700,454,1322,380,306,776,39,32400,71800,7700,1020,150,6.7,0,0,96.0,77777,9,999999999,150,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,6.1,25,83700,210,1322,374,114,559,25,12000,42600,5300,590,170,6.2,0,0,96.0,77777,9,999999999,139,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,6.7,30,83700,18,562,371,5,81,3,0,0,0,0,150,5.2,1,1,64.0,77777,9,999999999,139,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,6.1,32,83800,0,0,355,0,0,0,0,0,0,0,160,8.2,0,0,32.0,77777,9,999999999,139,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,6.7,34,83800,0,0,353,0,0,0,0,0,0,0,170,6.2,0,0,32.0,77777,9,999999999,139,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,7.2,38,83800,0,0,348,0,0,0,0,0,0,0,160,5.2,0,0,32.0,77777,9,999999999,139,0.0840,0,88,0.200,0.0,1.0 +1991,7,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.8,44,83700,0,0,341,0,0,0,0,0,0,0,150,3.1,0,0,32.0,77777,9,999999999,139,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.8,47,83700,0,0,336,0,0,0,0,0,0,0,190,1.5,0,0,32.0,77777,9,999999999,129,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,9.4,60,83700,0,0,328,0,0,0,0,0,0,0,200,2.6,0,0,32.0,77777,9,999999999,129,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,9.4,64,83700,0,0,323,0,0,0,0,0,0,0,310,1.5,0,0,32.0,77777,9,999999999,129,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,9.4,72,83800,0,0,315,0,0,0,0,0,0,0,160,2.1,0,0,32.0,77777,9,999999999,129,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,83800,7,342,313,1,23,0,0,0,0,0,160,2.1,0,0,96.0,77777,9,999999999,129,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,8.9,56,83800,173,1322,330,82,401,29,8400,25700,5000,530,200,1.5,0,0,112.0,77777,9,999999999,129,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,8.3,44,83800,417,1322,344,265,685,49,27800,62300,8200,1030,200,2.6,0,0,112.0,77777,9,999999999,129,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,8.3,36,83800,655,1322,360,470,812,68,49300,79000,10100,1520,0,0.0,0,0,112.0,77777,9,999999999,129,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,8.3,31,83800,870,1322,371,663,880,84,69200,87500,11500,2090,0,0.0,0,0,112.0,77777,9,999999999,129,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,8.3,27,83800,1047,1322,382,823,919,95,85500,92000,12500,2980,0,0.0,0,0,112.0,77777,9,999999999,139,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,7.2,23,83800,1174,1322,389,938,941,103,97300,94400,13200,4440,140,1.5,0,0,112.0,77777,9,999999999,139,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,6.1,18,83700,1242,1322,410,952,902,104,98500,90600,13200,6010,50,2.6,1,1,112.0,77777,9,999999999,139,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,5.6,17,83600,1247,1322,412,946,847,146,96800,84900,16600,7880,110,3.1,1,1,112.0,77777,9,999999999,139,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.0,3.3,14,83600,1188,1322,425,725,469,303,78700,49100,34500,16230,70,3.6,3,3,96.0,77777,9,999999999,139,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.6,0.6,11,83600,1069,1322,414,840,921,95,87300,92300,12500,3130,50,2.6,1,1,88.0,77777,9,999999999,139,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,36.1,2.2,12,83500,899,1322,419,637,814,83,66400,81100,11200,2160,10,4.1,1,1,96.0,77777,9,999999999,150,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.6,0.0,11,83500,688,1322,419,453,692,92,47300,68100,11800,1980,20,7.2,2,2,96.0,77777,9,999999999,150,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,8.3,26,83600,452,1322,405,214,329,101,22700,30300,12300,1900,10,8.2,3,3,80.0,77777,9,999999999,150,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,7.8,29,83600,208,1322,385,94,374,35,9700,26000,5600,640,10,5.2,2,2,80.0,77777,9,999999999,150,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,8.9,36,83700,17,540,379,4,30,3,0,0,0,0,40,1.5,3,3,64.0,77777,9,999999999,150,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,9.4,42,83800,0,0,354,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,150,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.6,53,83800,0,0,345,0,0,0,0,0,0,0,200,1.5,0,0,32.0,77777,9,999999999,150,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,10.6,57,83900,0,0,339,0,0,0,0,0,0,0,160,1.5,0,0,32.0,77777,9,999999999,160,0.0840,0,88,0.200,0.0,1.0 +1991,7,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.6,59,83900,0,0,337,0,0,0,0,0,0,0,90,2.1,0,0,32.0,77777,9,999999999,160,0.0840,0,88,0.200,0.0,1.0 +1991,7,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,83900,0,0,332,0,0,0,0,0,0,0,130,2.1,0,0,32.0,77777,9,999999999,160,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.7,75,83900,0,0,325,0,0,0,0,0,0,0,140,1.5,0,0,32.0,77777,9,999999999,160,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.6,72,83900,0,0,322,0,0,0,0,0,0,0,130,2.1,0,0,32.0,77777,9,999999999,160,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.6,78,83900,0,0,316,0,0,0,0,0,0,0,130,1.5,0,0,32.0,77777,9,999999999,160,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.0,69,83900,6,342,327,0,2,0,0,0,0,0,180,1.5,1,1,96.0,77777,9,999999999,170,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.0,58,84000,170,1322,333,66,199,40,6800,11800,5300,720,180,2.1,1,0,96.0,77777,9,999999999,170,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,9.4,47,84000,414,1322,345,236,515,75,24500,46000,10100,1410,200,2.1,0,0,96.0,77777,9,999999999,170,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,8.9,36,84000,653,1322,364,440,676,106,46400,66800,13400,2270,210,1.5,0,0,96.0,77777,9,999999999,170,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,8.9,30,84000,868,1322,380,629,751,136,67200,76500,16900,3570,320,1.5,1,0,96.0,77777,9,999999999,170,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,7.8,25,84000,1045,1322,387,792,805,155,82900,80900,18900,4950,80,1.5,1,0,96.0,77777,9,999999999,170,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,7.8,24,84000,1172,1322,390,910,837,167,96100,84500,21100,7770,270,4.1,1,0,96.0,77777,9,999999999,170,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,7.8,21,84000,1241,1322,409,929,813,165,99100,82300,21700,10550,350,5.2,1,1,96.0,77777,9,999999999,170,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,3.3,15,83900,1246,1322,406,954,762,235,102100,77900,28600,16220,340,4.6,1,1,96.0,77777,9,999999999,170,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,2.2,13,83900,1187,1322,416,869,784,165,92200,79200,20900,8150,280,2.6,2,2,96.0,77777,9,999999999,170,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,4.4,15,83900,1068,1322,423,679,514,263,73500,53700,30000,9700,340,3.1,3,3,96.0,77777,9,999999999,179,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,2.8,14,83900,897,1322,424,598,533,236,63800,55200,26300,6340,340,2.6,7,4,80.0,6096,9,999999999,179,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,7.8,23,83900,687,1322,419,354,111,296,38700,11200,32900,8330,310,6.2,6,5,80.0,6096,9,999999999,179,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,6.1,21,83900,451,1322,411,239,424,94,25500,39100,12100,1750,300,5.2,4,4,80.0,77777,9,999999999,179,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,7.8,28,83900,206,1322,398,66,55,58,7200,3800,6600,1230,280,4.1,8,5,80.0,7620,9,999999999,179,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,8.3,33,83900,17,518,378,3,4,3,0,0,0,0,210,3.1,4,2,64.0,77777,9,999999999,179,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,8.9,37,84000,0,0,376,0,0,0,0,0,0,0,170,2.1,3,3,32.0,77777,9,999999999,179,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,9.4,42,83900,0,0,354,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,179,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,9.4,44,83900,0,0,366,0,0,0,0,0,0,0,180,2.6,5,3,32.0,77777,9,999999999,179,0.0850,0,88,0.200,0.0,1.0 +1991,7,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,9.4,47,83900,0,0,352,0,0,0,0,0,0,0,200,2.6,2,1,32.0,77777,9,999999999,179,0.0850,0,88,0.200,0.0,1.0 +1991,7,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,8.9,46,83900,0,0,356,0,0,0,0,0,0,0,180,3.1,4,2,32.0,77777,9,999999999,179,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.8,45,83900,0,0,345,0,0,0,0,0,0,0,190,2.1,3,1,32.0,77777,9,999999999,189,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.8,47,83900,0,0,336,0,0,0,0,0,0,0,200,3.1,1,0,32.0,77777,9,999999999,189,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.8,50,83900,0,0,331,0,0,0,0,0,0,0,190,2.6,1,0,48.0,77777,9,999999999,189,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,8.3,54,83900,6,320,329,0,14,0,0,0,0,0,200,2.6,0,0,96.0,77777,9,999999999,189,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,8.3,47,83900,168,1322,339,75,348,31,7700,21900,4900,560,190,2.6,0,0,96.0,77777,9,999999999,189,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,8.3,39,83900,412,1322,352,253,643,53,26300,58100,8200,1080,200,3.1,0,0,96.0,77777,9,999999999,189,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,8.3,32,83900,650,1322,368,456,777,74,48500,76400,10900,1660,210,1.5,0,0,96.0,77777,9,999999999,200,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,8.9,30,83900,866,1322,380,647,849,91,67400,84300,12000,2140,120,1.5,0,0,96.0,77777,9,999999999,200,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,7.8,24,83900,1044,1322,390,807,890,104,83600,89100,13200,3100,0,0.0,0,0,96.0,77777,9,999999999,200,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,6.7,20,83900,1171,1322,400,921,914,112,95300,91700,13900,4640,0,0.0,0,0,96.0,77777,9,999999999,200,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,6.1,17,83800,1239,1322,416,955,897,114,98600,90000,14000,6350,30,2.1,1,1,96.0,77777,9,999999999,209,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,6.1,18,83700,1244,1322,413,985,925,114,101700,92900,14100,6530,50,2.6,1,1,96.0,77777,9,999999999,209,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.6,6.7,17,83600,1186,1322,433,919,805,197,95600,80600,23200,9330,90,3.6,3,3,96.0,77777,9,999999999,209,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.6,6.7,17,83600,1067,1322,436,705,593,226,74300,60100,25700,8160,100,3.6,4,4,96.0,77777,9,999999999,209,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,36.1,5.6,15,83500,896,1322,438,583,602,175,61400,60800,20100,4650,120,2.6,4,4,64.0,77777,9,999999999,220,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,5.0,18,83500,685,1322,430,259,128,193,28600,13200,21700,4870,360,4.1,7,7,64.0,3048,9,999999999,220,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,9.4,30,83600,449,1322,421,226,104,191,24700,9900,21400,4660,310,5.2,8,8,64.0,3658,9,999999999,220,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,10.0,37,83700,204,1322,398,46,87,33,5100,5600,4200,570,330,6.7,7,7,64.0,3658,9,999999999,220,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.1,45,83800,16,518,396,2,6,2,0,0,0,0,330,4.6,9,8,32.0,3353,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,11.1,46,83800,0,0,387,0,0,0,0,0,0,0,340,2.1,7,7,32.0,3658,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,10.0,40,83800,0,0,398,0,0,0,0,0,0,0,310,3.6,9,8,32.0,3658,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.1,45,83800,0,0,386,0,0,0,0,0,0,0,0,0.0,7,6,32.0,7620,9,999999999,229,0.0860,0,88,0.200,0.0,1.0 +1991,7,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,10.6,45,83700,0,0,382,0,0,0,0,0,0,0,190,1.5,8,6,32.0,7620,9,999999999,240,0.0860,0,88,0.200,0.0,1.0 +1991,7,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.7,55,83700,0,0,372,0,0,0,0,0,0,0,200,2.1,8,6,32.0,7620,9,999999999,240,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.1,54,83600,0,0,356,0,0,0,0,0,0,0,180,2.6,4,2,32.0,77777,9,999999999,240,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,83500,0,0,349,0,0,0,0,0,0,0,130,1.5,3,1,32.0,77777,9,999999999,240,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.1,59,83500,0,0,357,0,0,0,0,0,0,0,200,3.1,4,4,32.0,77777,9,999999999,250,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.1,63,83600,5,298,349,0,2,0,0,0,0,0,200,2.1,3,3,48.0,77777,9,999999999,250,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.6,53,83600,165,1322,356,60,203,35,6300,11900,4900,620,200,2.1,2,2,96.0,77777,9,999999999,250,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,11.1,48,83600,409,1322,371,225,358,114,23200,31900,13400,2170,180,2.6,3,3,96.0,77777,9,999999999,250,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.1,42,83600,648,1322,385,340,436,126,36900,43700,15500,2570,190,2.1,4,4,96.0,77777,9,999999999,250,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,10.6,34,83600,864,1322,399,561,598,170,58900,60200,19500,4320,140,2.1,4,4,96.0,77777,9,999999999,250,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,10.0,30,83600,1042,1322,400,753,740,169,80800,75900,20900,5910,80,2.6,2,2,96.0,77777,9,999999999,259,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,8.3,23,83600,1170,1322,414,856,709,229,91200,72300,27100,11260,80,4.6,3,3,96.0,77777,9,999999999,259,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,7.2,22,83600,1238,1322,419,724,423,328,78500,44300,37000,22160,70,5.2,5,5,96.0,77777,9,999999999,259,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,7.2,22,83600,1243,1322,431,632,344,308,69000,36100,35000,21350,0,0.0,8,8,96.0,4267,9,999999999,259,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,7.8,21,83500,1184,1322,418,879,756,202,94700,77600,25000,10590,60,2.1,4,2,96.0,77777,9,999999999,259,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,7.2,22,83500,1066,1322,434,377,236,186,42200,24800,22200,6700,350,5.2,8,8,96.0,4267,9,999999999,259,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,10.6,34,83500,895,1322,426,294,25,277,33900,2200,32400,11880,360,7.7,9,9,80.0,3048,9,999999999,259,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,11.1,38,83600,684,1322,420,280,105,225,30700,10500,25200,6790,20,5.2,10,9,80.0,3353,9,999999999,259,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,15.0,61,83700,447,1322,404,95,25,86,10400,2300,9600,2510,30,3.1,10,9,80.0,2743,9,999999999,270,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.9,61,83600,202,1322,408,38,0,38,4300,0,4300,1390,160,2.1,10,10,80.0,3048,9,999999999,270,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.9,61,83700,15,496,397,2,0,2,0,0,0,0,220,2.6,10,9,64.0,3353,9,999999999,270,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.9,61,83900,0,0,388,0,0,0,0,0,0,0,50,2.1,8,8,32.0,2286,9,999999999,270,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,83900,0,0,363,0,0,0,0,0,0,0,90,2.1,7,5,32.0,3658,9,999999999,270,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.1,61,83800,0,0,352,0,0,0,0,0,0,0,150,2.1,3,3,32.0,77777,9,999999999,270,0.0870,0,88,0.200,0.0,1.0 +1991,7,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,83800,0,0,337,0,0,0,0,0,0,0,230,1.5,2,1,32.0,77777,9,999999999,270,0.0870,0,88,0.200,0.0,1.0 +1991,7,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.8,73,83800,0,0,334,0,0,0,0,0,0,0,120,3.1,1,0,32.0,77777,9,999999999,270,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.2,75,83700,0,0,343,0,0,0,0,0,0,0,120,2.6,4,3,32.0,77777,9,999999999,279,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,83600,0,0,335,0,0,0,0,0,0,0,140,2.1,2,1,32.0,77777,9,999999999,279,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,83700,0,0,343,0,0,0,0,0,0,0,170,1.5,8,3,32.0,77777,9,999999999,279,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,83700,5,276,340,1,17,0,0,0,0,0,0,0.0,7,2,80.0,77777,9,999999999,279,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.3,73,83800,162,1323,351,58,178,36,6100,10300,4800,640,200,1.5,8,3,96.0,77777,9,999999999,279,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.8,59,83800,407,1323,361,214,435,80,22900,38900,11000,1460,0,0.0,5,2,96.0,77777,9,999999999,279,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.9,57,83800,646,1323,374,391,631,83,42000,62800,11300,1820,120,1.5,5,3,64.0,77777,9,999999999,279,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,12.2,48,83800,862,1323,374,601,705,142,64000,71600,17300,3680,140,2.6,7,2,80.0,77777,9,999999999,270,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,12.2,41,83800,1040,1323,392,720,766,117,77700,77900,16300,3980,70,2.1,6,3,80.0,77777,9,999999999,270,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,12.2,37,83700,1168,1323,397,742,591,220,79300,60400,25800,10790,110,3.1,6,2,96.0,77777,9,999999999,270,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,11.7,32,83600,1237,1323,412,891,720,217,95900,73900,26700,14330,140,1.5,8,4,96.0,77777,9,999999999,270,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,10.6,27,83600,1242,1323,427,718,457,289,78900,47900,33800,19850,180,2.1,9,6,80.0,9144,9,999999999,270,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,10.0,28,83500,1183,1323,432,746,476,320,80500,49800,35900,16870,0,0.0,9,8,80.0,4267,9,999999999,270,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,9.4,31,83500,1064,1323,439,302,0,302,35600,0,35600,13740,250,6.2,10,10,64.0,4267,9,999999999,270,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.7,43,83500,893,1323,412,474,73,424,51900,7600,46800,13450,140,5.2,10,9,80.0,3353,9,999999999,259,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,10.6,35,83500,682,1323,407,311,243,185,33600,25300,20500,4130,130,4.1,10,7,96.0,3658,9,999999999,259,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.7,43,83700,445,1323,423,90,0,90,10400,0,10400,3620,250,8.2,10,10,64.0,2286,9,999999999,259,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.1,87,83700,200,1323,381,69,27,65,7500,2000,7200,1510,350,5.2,10,9,80.0,2438,9,999999999,259,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.0,76,83800,14,474,397,2,0,2,0,0,0,0,50,1.5,10,10,64.0,3658,9,999999999,259,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,83800,0,0,357,0,0,0,0,0,0,0,210,4.6,5,4,32.0,77777,9,999999999,259,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,14.4,75,83800,0,0,374,0,0,0,0,0,0,0,200,5.7,8,8,32.0,4267,9,999999999,250,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.3,68,83700,0,0,362,0,0,0,0,0,0,0,180,3.1,6,5,32.0,4267,9,999999999,250,0.0880,0,88,0.200,0.0,1.0 +1991,7,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.8,68,83700,0,0,362,0,0,0,0,0,0,0,200,3.6,8,6,32.0,7620,9,999999999,250,0.0880,0,88,0.200,0.0,1.0 +1991,7,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.8,68,83600,0,0,372,0,0,0,0,0,0,0,200,3.6,9,8,32.0,3962,9,999999999,250,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.2,65,83600,0,0,362,0,0,0,0,0,0,0,200,2.1,7,6,32.0,7620,9,999999999,250,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,83600,0,0,343,0,0,0,0,0,0,0,170,1.0,3,3,32.0,77777,9,999999999,250,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,83700,0,0,326,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,250,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,83700,4,254,327,0,10,0,0,0,0,0,0,0.0,3,1,80.0,77777,9,999999999,240,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.3,75,83800,159,1323,341,68,288,34,6900,17500,4900,600,210,2.6,2,1,96.0,77777,9,999999999,250,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.8,59,83800,404,1323,364,192,411,66,20000,36600,8800,1260,220,2.1,4,3,96.0,77777,9,999999999,250,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,12.2,48,83800,644,1323,374,409,634,100,43200,62600,12700,2140,220,3.1,4,2,96.0,77777,9,999999999,250,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,11.7,41,83800,860,1323,389,546,611,149,57900,61900,17600,3830,170,2.6,4,3,96.0,77777,9,999999999,250,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,11.1,35,83800,1039,1323,387,650,651,139,68900,65700,17200,4510,90,3.1,2,1,96.0,77777,9,999999999,250,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,9.4,27,83800,1167,1323,409,795,596,269,83700,60200,30400,12900,40,2.1,5,3,96.0,77777,9,999999999,259,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,8.3,26,83800,1236,1323,419,730,463,297,79900,48500,34400,19710,350,2.6,7,7,96.0,9144,9,999999999,259,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,8.3,24,83800,1241,1323,414,804,641,202,87000,66000,25000,13660,30,2.1,9,4,96.0,77777,9,999999999,259,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,8.9,26,83700,1182,1323,419,859,640,287,90200,64500,32400,14510,60,5.2,9,6,80.0,9144,9,999999999,259,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,8.9,28,83700,1063,1323,433,450,119,354,49600,12700,39300,12800,50,5.2,9,9,64.0,4572,9,999999999,259,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.0,76,83900,892,1323,386,242,60,201,26700,6000,22600,7390,260,7.2,10,9,19.2,2591,9,999999999,270,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.7,84,84000,680,1323,388,285,38,265,31200,3800,29200,7650,330,2.6,10,9,24.0,2591,9,999999999,270,0.0900,0,88,0.200,1.0,1.0 +1991,7,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.2,87,84000,443,1323,400,83,0,83,9600,0,9600,3390,220,4.1,10,10,24.0,2743,9,999999999,270,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,14.4,70,84000,197,1323,399,29,0,29,3400,0,3400,1110,280,3.6,10,10,72.0,2896,9,999999999,270,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.0,76,84100,13,474,386,2,1,2,0,0,0,0,240,4.6,10,9,32.0,2896,9,999999999,270,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.6,81,84200,0,0,366,0,0,0,0,0,0,0,180,3.1,8,6,32.0,4267,9,999999999,279,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.0,78,84200,0,0,362,0,0,0,0,0,0,0,170,3.1,6,5,32.0,4267,9,999999999,279,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,84100,0,0,353,0,0,0,0,0,0,0,170,2.1,5,4,32.0,77777,9,999999999,279,0.0900,0,88,0.200,0.0,1.0 +1991,7,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.3,73,84100,0,0,360,0,0,0,0,0,0,0,180,2.6,7,6,32.0,7620,9,999999999,279,0.0900,0,88,0.200,0.0,1.0 +1991,7,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.9,84,84000,0,0,341,0,0,0,0,0,0,0,210,1.5,2,2,32.0,77777,9,999999999,279,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.3,80,83900,0,0,336,0,0,0,0,0,0,0,200,1.5,3,1,32.0,77777,9,999999999,279,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.9,84,83900,0,0,341,0,0,0,0,0,0,0,200,2.1,2,2,32.0,77777,9,999999999,290,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,83900,0,0,355,0,0,0,0,0,0,0,200,4.1,8,6,32.0,7620,9,999999999,290,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,83900,3,254,354,0,1,0,0,0,0,0,220,1.5,7,6,80.0,5486,9,999999999,290,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.8,73,83900,156,1323,348,55,124,40,5800,6700,5000,730,210,2.1,8,3,96.0,77777,9,999999999,290,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.8,61,83900,401,1323,375,115,130,75,12500,11800,8900,1380,190,1.5,9,7,96.0,8230,9,999999999,290,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.8,59,84000,641,1323,384,290,144,220,31500,14700,24400,5420,350,3.1,9,8,96.0,4267,9,999999999,290,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,13.3,53,84000,858,1323,372,609,686,164,64100,69200,19200,4150,50,2.6,7,2,96.0,77777,9,999999999,290,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,12.8,44,84000,1037,1323,390,760,696,213,80100,70600,24600,7200,30,3.1,5,3,96.0,77777,9,999999999,279,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,12.2,38,84000,1165,1323,404,793,545,313,85600,57000,35300,15410,30,2.6,6,5,96.0,7620,9,999999999,279,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,10.6,31,84000,1234,1323,426,717,370,371,76700,38700,40500,24620,360,3.1,8,8,96.0,4267,9,999999999,279,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,10.6,30,84000,1240,1323,423,626,363,285,68800,38100,33000,19270,10,4.6,7,7,96.0,4267,9,999999999,279,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,10.6,32,84000,1181,1323,432,417,2,415,48700,200,48500,17660,360,4.6,9,9,96.0,4267,9,999999999,279,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,9.4,30,83900,1062,1323,415,506,294,270,56300,32000,30600,9300,360,5.2,7,7,80.0,4267,9,999999999,279,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,11.1,35,83900,890,1323,427,409,53,373,44900,5500,41200,12220,310,3.1,9,9,80.0,4267,9,999999999,279,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,11.7,41,83900,679,1323,418,321,59,290,35100,6000,32000,8140,220,3.6,10,9,96.0,4267,9,999999999,279,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,9.4,39,84000,441,1323,417,95,0,95,10900,0,10900,3760,300,6.2,10,10,80.0,4267,9,999999999,279,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,10.6,46,84000,195,1323,398,48,23,44,5200,1700,4900,1100,310,6.7,10,9,88.0,3962,9,999999999,270,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,10.6,48,84000,12,452,395,1,0,1,0,0,0,0,230,3.1,10,9,48.0,3962,9,999999999,270,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.2,53,84100,0,0,383,0,0,0,0,0,0,0,200,4.1,10,7,32.0,4267,9,999999999,270,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,12.2,57,84000,0,0,367,0,0,0,0,0,0,0,180,2.6,6,4,32.0,4267,9,999999999,270,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.1,54,84000,0,0,363,0,0,0,0,0,0,0,190,2.1,6,4,32.0,4267,9,999999999,270,0.0910,0,88,0.200,0.0,1.0 +1991,7,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.1,54,84000,0,0,387,0,0,0,0,0,0,0,170,1.5,10,9,32.0,3962,9,999999999,270,0.0910,0,88,0.200,0.0,1.0 +1991,7,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,84000,0,0,376,0,0,0,0,0,0,0,180,2.1,9,8,32.0,3962,9,999999999,270,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.7,61,83900,0,0,364,0,0,0,0,0,0,0,190,2.1,7,6,32.0,3962,9,999999999,270,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,84000,0,0,359,0,0,0,0,0,0,0,180,1.5,8,6,32.0,3353,9,999999999,259,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.2,70,84000,0,0,374,0,0,0,0,0,0,0,0,0.0,9,9,32.0,3658,9,999999999,259,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.2,70,84100,3,232,366,0,0,0,0,0,0,0,220,2.1,9,8,80.0,3962,9,999999999,259,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,84200,153,1323,377,31,32,28,3500,1900,3300,590,200,2.1,9,9,96.0,3962,9,999999999,259,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.8,63,84200,399,1323,386,128,33,118,14000,3000,13100,3110,180,2.1,10,9,96.0,3658,9,999999999,270,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.2,59,84300,639,1323,389,262,73,227,28800,7300,25300,6540,220,2.1,10,9,96.0,2896,9,999999999,270,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,11.7,51,84300,856,1323,397,341,112,269,37500,11800,29900,7630,350,5.2,10,9,96.0,2896,9,999999999,270,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.3,55,84300,1035,1323,413,293,0,293,34400,0,34400,13300,10,5.7,10,10,96.0,4267,9,999999999,270,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,13.9,52,84300,1164,1323,411,499,168,351,55500,18000,39600,15550,320,4.1,10,9,64.0,4267,9,999999999,270,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,14.4,48,84200,1233,1323,422,712,299,432,77900,32500,47600,25450,10,3.6,9,9,48.0,4572,9,999999999,270,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,13.3,40,84200,1238,1323,412,583,143,449,64200,15300,49900,25220,320,3.1,8,6,48.0,7620,9,999999999,270,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,16.1,84,84300,1179,1323,395,269,0,269,32500,0,32500,12910,280,9.3,10,10,32.0,1006,9,999999999,279,0.0940,0,88,0.200,2.0,1.0 +1991,7,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,84200,1060,1323,384,240,0,240,28700,0,28700,11520,310,9.3,10,10,9.6,1036,9,999999999,279,0.0940,0,88,0.200,3.0,1.0 +1991,7,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,84300,889,1323,382,198,0,198,23500,0,23500,9230,340,7.7,10,10,6.4,1067,9,999999999,279,0.0940,0,88,0.200,3.0,1.0 +1991,7,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,15.6,97,84400,677,1323,380,146,0,146,17100,0,17100,6390,360,7.2,10,10,12.8,1067,9,999999999,279,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.9,93,84500,439,1323,372,87,0,87,10100,0,10100,3510,360,3.6,10,10,9.6,1981,9,999999999,279,0.0940,0,88,0.200,3.0,1.0 +1991,7,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,14.4,96,84500,192,1323,373,22,0,22,2600,0,2600,870,10,3.6,10,10,6.4,152,9,999999999,279,0.0940,0,88,0.200,2.0,1.0 +1991,7,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,14.4,96,84600,11,430,362,1,2,1,0,0,0,0,50,3.6,10,9,11.2,152,9,999999999,290,0.0940,0,88,0.200,2.0,1.0 +1991,7,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,84700,0,0,368,0,0,0,0,0,0,0,360,2.1,10,10,8.0,2743,9,999999999,290,0.0940,0,88,0.200,1.0,1.0 +1991,7,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,13.3,96,84600,0,0,366,0,0,0,0,0,0,0,340,2.1,10,10,19.2,2591,9,999999999,290,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.9,97,84600,0,0,369,0,0,0,0,0,0,0,320,2.6,10,10,11.2,244,9,999999999,290,0.0940,0,88,0.200,0.0,1.0 +1991,7,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,84600,0,0,368,0,0,0,0,0,0,0,350,1.5,10,10,16.0,792,9,999999999,290,0.0940,0,88,0.200,0.0,1.0 +1991,7,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,84600,0,0,368,0,0,0,0,0,0,0,350,2.1,10,10,12.8,792,9,999999999,290,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,84500,0,0,368,0,0,0,0,0,0,0,310,1.5,10,10,12.8,549,9,999999999,290,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,84600,0,0,368,0,0,0,0,0,0,0,340,1.5,10,10,12.8,549,9,999999999,300,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,13.3,96,84500,0,0,366,0,0,0,0,0,0,0,280,1.5,10,10,6.4,488,9,999999999,300,0.0950,0,88,0.200,1.0,1.0 +1991,7,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,84600,3,210,368,0,0,0,0,0,0,0,50,3.6,10,10,11.2,488,9,999999999,300,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,12.8,97,84600,150,1323,362,24,0,24,2800,0,2800,880,60,2.6,10,10,9.6,427,9,999999999,290,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,12.2,93,84600,396,1323,361,45,0,45,5400,0,5400,1950,60,2.6,10,10,9.6,152,9,999999999,290,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.8,93,84700,637,1323,365,86,0,86,10400,0,10400,4010,50,3.1,10,10,12.8,183,9,999999999,290,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,84700,854,1323,367,180,0,180,21400,0,21400,8400,60,2.6,10,10,19.2,488,9,999999999,279,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,84700,1033,1323,367,189,0,189,23000,0,23000,9410,60,2.6,10,10,9.6,305,9,999999999,279,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.8,93,84700,1162,1323,365,181,0,181,22500,0,22500,9270,50,2.6,10,10,4.0,183,9,999999999,279,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,84600,1232,1323,371,276,0,276,33500,0,33500,13300,60,3.6,10,10,11.2,457,9,999999999,270,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,84600,1237,1323,376,277,0,277,33600,0,33600,13350,20,3.6,10,10,24.0,488,9,999999999,270,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,84600,1178,1323,380,262,0,262,31700,0,31700,12640,60,2.6,10,10,24.0,488,9,999999999,259,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,84500,1059,1323,356,591,183,444,64100,19400,48600,15940,60,3.6,10,7,24.0,853,9,999999999,259,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,84500,887,1323,376,188,0,188,22300,0,22300,8850,30,2.6,10,10,24.0,671,9,999999999,259,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,84500,674,1323,376,133,0,133,15700,0,15700,5920,50,2.6,10,10,16.0,853,9,999999999,250,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,84400,436,1323,374,74,0,74,8700,0,8700,3070,70,2.6,10,10,24.0,427,9,999999999,250,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,84500,189,1323,363,41,33,36,4500,2400,4100,930,90,2.1,9,9,32.0,1067,9,999999999,240,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,84500,11,430,352,1,0,1,0,0,0,0,120,1.5,8,8,32.0,1676,9,999999999,240,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,84600,0,0,347,0,0,0,0,0,0,0,80,2.1,7,7,32.0,1067,9,999999999,240,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,84500,0,0,349,0,0,0,0,0,0,0,80,1.5,8,8,24.0,1067,9,999999999,229,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,84500,0,0,368,0,0,0,0,0,0,0,120,1.5,10,10,24.0,914,9,999999999,229,0.0950,0,88,0.200,0.0,1.0 +1991,7,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,84400,0,0,367,0,0,0,0,0,0,0,140,1.5,10,10,32.0,640,9,999999999,229,0.0950,0,88,0.200,0.0,1.0 +1991,7,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.2,89,84400,0,0,347,0,0,0,0,0,0,0,130,1.5,8,8,32.0,3353,9,999999999,220,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.2,89,84300,0,0,364,0,0,0,0,0,0,0,120,1.5,10,10,32.0,914,9,999999999,220,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,84300,0,0,367,0,0,0,0,0,0,0,130,1.5,10,10,32.0,1006,9,999999999,209,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,84300,0,0,367,0,0,0,0,0,0,0,0,0.0,10,10,24.0,1097,9,999999999,209,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,84300,2,188,370,0,0,0,0,0,0,0,0,0.0,10,10,24.0,1097,9,999999999,209,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,84300,147,1324,371,25,0,25,2900,0,2900,910,360,1.5,10,10,24.0,1219,9,999999999,209,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,84300,393,1324,376,63,0,63,7400,0,7400,2590,0,0.0,10,10,24.0,1189,9,999999999,209,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.7,67,84400,634,1324,373,294,62,264,32200,6200,29200,7260,10,2.1,10,9,24.0,1219,9,999999999,209,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.7,67,84400,852,1324,384,178,0,178,21100,0,21100,8320,10,1.5,10,10,24.0,1158,9,999999999,209,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,84300,1032,1324,387,225,0,225,27000,0,27000,10850,40,3.1,10,10,24.0,853,9,999999999,220,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,84300,1161,1324,395,257,0,257,31100,0,31100,12410,50,3.1,10,10,24.0,1372,9,999999999,220,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.7,63,84300,1230,1324,390,275,0,275,33400,0,33400,13250,80,3.1,10,10,24.0,1036,9,999999999,220,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.2,63,84300,1236,1324,393,276,0,276,33500,0,33500,13310,350,4.1,10,10,24.0,914,9,999999999,220,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.8,70,84300,1177,1324,388,261,0,261,31600,0,31600,12600,310,3.1,10,10,11.2,792,9,999999999,220,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.9,84,84200,1057,1324,381,231,0,231,27700,0,27700,11170,300,3.1,10,10,16.0,2134,9,999999999,229,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,84200,885,1324,381,234,0,234,27300,0,27300,10470,270,3.1,10,10,48.0,3658,9,999999999,229,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,84200,672,1324,387,165,0,165,19100,0,19100,6990,280,3.1,10,10,24.0,3658,9,999999999,229,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,84200,434,1324,363,141,84,114,15500,7900,12900,2580,200,2.1,9,7,24.0,3658,9,999999999,229,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,84100,186,1324,372,52,48,45,5700,3200,5200,950,190,2.1,9,9,24.0,3658,9,999999999,229,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,84200,10,408,365,1,0,1,0,0,0,0,0,0.0,10,9,32.0,3658,9,999999999,240,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,84300,0,0,364,0,0,0,0,0,0,0,150,2.1,9,9,32.0,3658,9,999999999,240,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,84200,0,0,365,0,0,0,0,0,0,0,0,0.0,9,9,32.0,3658,9,999999999,240,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,84200,0,0,339,0,0,0,0,0,0,0,200,2.6,5,5,32.0,77777,9,999999999,240,0.0960,0,88,0.200,0.0,1.0 +1991,7,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,84200,0,0,337,0,0,0,0,0,0,0,140,2.1,7,5,32.0,7620,9,999999999,250,0.0960,0,88,0.200,0.0,1.0 +1991,7,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.7,93,84100,0,0,321,0,0,0,0,0,0,0,170,2.1,5,2,24.0,77777,9,999999999,250,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.1,89,84100,0,0,316,0,0,0,0,0,0,0,150,1.5,4,1,24.0,77777,9,999999999,250,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.1,93,84100,0,0,317,0,0,0,0,0,0,0,170,1.5,4,2,24.0,77777,9,999999999,250,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.1,93,84100,0,0,321,0,0,0,0,0,0,0,130,1.5,3,3,24.0,77777,9,999999999,250,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,11.1,93,84100,2,165,326,0,1,0,0,0,0,0,190,2.1,5,5,11.2,77777,9,999999999,259,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.1,89,84200,144,1324,340,33,97,23,3600,5300,3100,400,190,1.5,8,8,16.0,4267,9,999999999,250,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,84100,390,1324,346,110,71,89,12200,6500,10300,1980,200,2.1,7,7,16.0,4267,9,999999999,250,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.1,67,84100,632,1324,362,385,155,311,42100,15700,34600,8050,220,3.1,8,8,16.0,4267,9,999999999,250,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,84100,850,1324,354,550,693,105,58400,69600,13600,2620,260,2.6,2,2,24.0,77777,9,999999999,250,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.6,49,84100,1030,1324,365,741,780,134,78700,78800,17300,4290,60,2.1,3,3,32.0,77777,9,999999999,250,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,11.1,49,84000,1159,1324,371,945,864,188,98400,86600,22500,8050,300,2.6,4,4,32.0,77777,9,999999999,250,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,11.1,46,84000,1229,1324,383,828,418,439,90500,45400,48300,25350,300,3.1,6,6,24.0,7620,9,999999999,250,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.7,43,84000,1234,1324,392,1002,810,246,106800,82600,29700,15810,120,3.1,7,6,19.2,7620,9,999999999,240,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.0,49,83900,1175,1324,380,525,108,429,58000,11100,48000,19850,150,5.7,9,8,19.2,1524,9,999999999,240,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,84100,1055,1324,360,166,0,166,20400,0,20400,8470,150,6.2,10,10,0.4,183,9,999999999,240,0.0980,0,88,0.200,34.0,1.0 +1991,7,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.3,73,84000,883,1324,378,308,100,241,34200,10600,27100,6990,160,3.1,9,9,64.0,3048,9,999999999,240,0.0980,0,88,0.200,12.0,1.0 +1991,7,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.3,63,83900,670,1324,368,405,518,143,43600,52100,17200,2980,110,3.6,5,5,80.0,77777,9,999999999,240,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.7,61,84000,431,1324,374,229,87,201,25000,8200,22300,4680,180,2.1,8,8,80.0,7620,9,999999999,240,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.2,65,84000,183,1324,380,41,108,26,4500,6800,3600,450,290,2.6,9,9,64.0,7620,9,999999999,240,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.1,67,84000,9,386,370,1,1,1,0,0,0,0,210,3.1,9,9,32.0,2591,9,999999999,229,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.1,75,84100,0,0,333,0,0,0,0,0,0,0,220,2.1,4,2,32.0,77777,9,999999999,229,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.2,89,84000,0,0,329,0,0,0,0,0,0,0,150,1.5,3,3,32.0,77777,9,999999999,229,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,84000,0,0,326,0,0,0,0,0,0,0,150,2.6,1,1,32.0,77777,9,999999999,229,0.0980,0,88,0.200,0.0,1.0 +1991,7,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,84000,0,0,323,0,0,0,0,0,0,0,190,2.1,1,1,32.0,77777,9,999999999,229,0.0980,0,88,0.200,0.0,1.0 +1991,7,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,84000,0,0,315,0,0,0,0,0,0,0,140,1.5,0,0,32.0,77777,9,999999999,229,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,83900,0,0,312,0,0,0,0,0,0,0,150,1.5,0,0,32.0,77777,9,999999999,229,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,83900,0,0,313,0,0,0,0,0,0,0,160,1.5,3,1,32.0,77777,9,999999999,220,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,83900,0,0,317,0,0,0,0,0,0,0,180,2.1,2,2,40.0,77777,9,999999999,220,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.0,89,83900,1,143,310,0,1,0,0,0,0,0,120,1.5,3,1,80.0,77777,9,999999999,220,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,84000,141,1324,314,55,234,30,5600,13400,4100,530,250,1.0,0,0,104.0,77777,9,999999999,220,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.1,70,84000,388,1324,327,224,557,61,23400,49100,9000,1170,0,0.0,1,0,96.0,77777,9,999999999,220,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.0,56,84000,629,1324,342,389,638,85,41500,63100,11400,1830,150,1.5,2,1,96.0,77777,9,999999999,220,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.0,47,84000,848,1324,349,622,747,143,66000,75700,17400,3630,160,1.5,6,0,96.0,77777,9,999999999,220,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,10.6,43,84000,1028,1324,372,682,626,196,72300,63700,22800,6540,220,1.5,7,2,96.0,77777,9,999999999,220,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,8.9,34,84000,1157,1324,385,777,468,368,82400,48800,39600,17730,80,2.6,5,3,80.0,77777,9,999999999,220,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,8.9,36,84000,1227,1324,393,792,593,242,84500,60500,28300,15010,50,2.6,7,7,80.0,9144,9,999999999,209,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,9.4,36,84000,1233,1324,412,363,107,262,41200,11500,30400,14320,80,3.1,9,9,80.0,9144,9,999999999,209,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,8.9,36,83900,1173,1324,408,557,203,377,61700,21700,42500,17090,240,6.2,10,9,48.0,9144,9,999999999,209,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,84200,1053,1324,369,232,0,232,27800,0,27800,11190,350,8.8,10,10,32.0,1981,9,999999999,209,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,9.4,50,84100,881,1324,393,235,0,235,27400,0,27400,10470,50,4.1,10,10,64.0,3658,9,999999999,209,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,9.4,49,84100,668,1324,377,240,162,158,26700,16700,18200,3940,130,4.6,9,8,64.0,4572,9,999999999,209,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.0,51,84000,428,1324,372,203,147,155,21800,13600,17400,3500,170,3.1,9,7,96.0,7620,9,999999999,209,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,84000,180,1324,376,54,22,51,5900,1600,5700,1210,140,2.1,9,8,96.0,7620,9,999999999,209,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,84100,8,364,357,1,1,1,0,0,0,0,360,2.1,9,7,48.0,7620,9,999999999,209,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,84100,0,0,348,0,0,0,0,0,0,0,180,1.5,9,6,32.0,7620,9,999999999,209,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,84100,0,0,342,0,0,0,0,0,0,0,150,2.1,9,5,32.0,7620,9,999999999,200,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,84100,0,0,334,0,0,0,0,0,0,0,190,2.1,8,3,32.0,77777,9,999999999,200,0.0990,0,88,0.200,0.0,1.0 +1991,7,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.7,87,84100,0,0,321,0,0,0,0,0,0,0,130,1.5,2,1,32.0,77777,9,999999999,200,0.0990,0,88,0.200,0.0,1.0 +1991,7,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.7,90,84100,0,0,323,0,0,0,0,0,0,0,210,1.5,4,2,32.0,77777,9,999999999,200,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,84200,0,0,317,0,0,0,0,0,0,0,0,0.0,3,1,32.0,77777,9,999999999,200,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,84200,0,0,309,0,0,0,0,0,0,0,230,2.1,0,0,32.0,77777,9,999999999,200,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,84200,0,0,315,0,0,0,0,0,0,0,210,1.5,1,1,40.0,77777,9,999999999,200,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,84200,1,121,312,0,4,0,0,0,0,0,190,1.5,1,1,96.0,77777,9,999999999,200,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,9.4,74,84200,138,1324,313,58,312,25,5900,17900,4000,450,210,2.1,0,0,96.0,77777,9,999999999,200,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,9.4,60,84300,385,1324,328,233,638,48,24300,56700,7800,990,190,2.1,0,0,96.0,77777,9,999999999,189,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.0,51,84300,627,1324,344,434,774,68,46400,75900,10400,1530,220,1.5,1,0,96.0,77777,9,999999999,189,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,9.4,42,84300,846,1324,360,607,750,127,64900,76300,16000,3260,300,1.0,1,1,96.0,77777,9,999999999,189,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,10.0,41,84300,1026,1324,366,759,858,95,79000,85900,12300,2840,100,2.1,1,1,96.0,77777,9,999999999,189,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,9.4,35,84300,1156,1324,382,861,825,141,92500,83800,19200,6340,20,3.1,2,2,88.0,77777,9,999999999,189,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,8.9,33,84300,1226,1324,394,693,468,259,76700,49100,31100,16140,30,4.6,5,5,96.0,77777,9,999999999,189,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,9.4,33,84300,1231,1324,394,986,851,195,103300,85500,23700,11390,50,4.1,4,4,96.0,77777,9,999999999,179,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,8.9,31,84300,1172,1324,400,721,513,267,79100,53800,31400,13300,50,4.1,5,5,96.0,77777,9,999999999,179,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,8.3,29,84300,1052,1324,399,676,609,192,72000,62100,22500,6770,30,3.6,5,5,96.0,77777,9,999999999,179,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,8.3,29,84300,879,1324,396,614,697,151,65100,70700,18100,3970,50,3.1,4,4,96.0,77777,9,999999999,179,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,8.3,29,84200,665,1324,384,454,751,77,48200,74000,11000,1730,350,2.1,1,1,96.0,77777,9,999999999,179,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,8.9,33,84200,425,1324,379,252,619,53,26300,56400,8200,1090,350,3.1,1,1,96.0,77777,9,999999999,170,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,10.0,37,84300,177,1324,368,82,389,30,8400,25200,5100,550,0,0.0,0,0,96.0,77777,9,999999999,170,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,8.9,38,84300,7,342,374,1,6,0,0,0,0,0,60,1.5,3,3,48.0,77777,9,999999999,170,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,11.1,51,84400,0,0,362,0,0,0,0,0,0,0,120,1.5,2,2,32.0,77777,9,999999999,170,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.2,63,84400,0,0,355,0,0,0,0,0,0,0,0,0.0,3,3,32.0,77777,9,999999999,170,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.7,63,84400,0,0,349,0,0,0,0,0,0,0,210,3.1,2,2,32.0,77777,9,999999999,170,0.1010,0,88,0.200,0.0,1.0 +1991,7,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.1,63,84400,0,0,334,0,0,0,0,0,0,0,120,2.1,0,0,32.0,77777,9,999999999,160,0.1010,0,88,0.200,0.0,1.0 +1991,7,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.1,67,84400,0,0,329,0,0,0,0,0,0,0,160,2.6,0,0,32.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.7,75,84400,0,0,325,0,0,0,0,0,0,0,160,1.5,0,0,32.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.1,75,84300,0,0,322,0,0,0,0,0,0,0,160,1.5,0,0,32.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,84300,0,0,319,0,0,0,0,0,0,0,190,2.1,0,0,40.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.6,78,84400,1,121,316,0,1,0,0,0,0,0,200,2.1,0,0,64.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.0,65,84400,135,1325,326,50,191,30,5200,9900,4200,530,190,2.6,0,0,96.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,10.0,54,84400,382,1325,338,218,536,63,22700,46900,9100,1190,200,3.1,0,0,112.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,10.6,48,84400,624,1325,352,423,704,91,44900,69400,12200,1940,200,2.1,0,0,104.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,10.0,37,84400,844,1325,368,620,793,114,65100,79300,14500,2740,160,2.1,0,0,104.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,8.3,29,84400,1024,1325,377,785,845,131,83500,85400,17300,4160,90,1.5,0,0,104.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,7.2,25,84400,1154,1325,383,904,874,142,92700,87400,16400,4920,0,0.0,0,0,104.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,6.7,23,84400,1224,1325,386,968,888,147,99200,88900,16800,6860,100,5.2,0,0,104.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,5.6,20,84300,1229,1325,390,973,889,148,99700,89000,16900,7090,80,3.1,0,0,104.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,5.6,20,84300,1170,1325,390,906,864,143,93000,86500,16400,5260,70,4.1,1,0,104.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,5.6,20,84300,1050,1325,397,766,760,164,79800,76200,19400,5180,160,3.6,1,1,104.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,5.6,19,84200,876,1325,401,616,754,117,64900,75600,14800,2930,70,4.1,1,1,96.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,6.1,21,84200,662,1325,398,430,672,94,45900,66800,12400,2060,70,3.6,1,1,96.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,6.1,22,84200,422,1325,392,237,524,69,24700,47300,9600,1320,100,4.1,1,1,96.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,7.8,27,84200,174,1325,386,64,205,37,6700,12400,5100,660,100,3.1,1,1,96.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,8.9,36,84300,6,320,376,0,4,0,0,0,0,0,120,3.6,2,2,48.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,8.9,38,84300,0,0,365,0,0,0,0,0,0,0,130,3.6,1,1,32.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,9.4,39,84300,0,0,373,0,0,0,0,0,0,0,150,5.2,2,2,32.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,9.4,42,84300,0,0,360,0,0,0,0,0,0,0,180,4.6,1,1,32.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,9.4,47,84300,0,0,345,0,0,0,0,0,0,0,180,3.1,0,0,32.0,77777,9,999999999,160,0.1020,0,88,0.200,0.0,1.0 +1991,7,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,9.4,52,84300,0,0,338,0,0,0,0,0,0,0,180,3.6,0,0,32.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.0,58,84300,0,0,333,0,0,0,0,0,0,0,210,2.6,0,0,32.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.0,65,84300,0,0,326,0,0,0,0,0,0,0,190,2.1,0,0,32.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,9.4,62,84300,0,0,325,0,0,0,0,0,0,0,220,1.5,0,0,32.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,9.4,62,84300,0,99,325,0,0,0,0,0,0,0,180,3.1,7,0,72.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.0,65,84300,131,1325,326,48,174,30,4900,8900,4100,530,200,2.6,1,0,104.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.0,53,84300,379,1325,341,213,507,68,22000,44100,9400,1270,220,3.1,2,0,112.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,8.9,40,84300,622,1325,355,420,700,92,44600,68900,12300,1950,200,3.1,0,0,104.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,8.9,33,84300,841,1325,372,618,791,115,64800,79000,14500,2740,190,2.6,0,0,96.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,6.7,24,84300,1022,1325,383,783,843,132,83200,85200,17300,4170,200,1.5,0,0,104.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,4.4,19,84300,1152,1325,388,902,872,143,92500,87200,16500,4900,60,2.1,0,0,96.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,0.0,13,84200,1222,1325,388,967,886,149,99000,88700,17000,6850,60,3.6,0,0,104.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,0.6,12,84200,1228,1325,402,933,849,147,95700,85000,16700,6990,30,4.6,1,1,104.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,1.1,13,84100,1168,1325,403,915,876,142,93800,87700,16400,5200,130,1.5,1,1,104.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,1.7,13,84100,1048,1325,409,743,745,154,77900,74900,18600,4930,360,4.6,2,2,104.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,1.7,14,84000,874,1325,410,606,623,195,63100,62400,21900,4910,40,3.6,3,3,112.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,2.8,15,84000,660,1325,408,428,594,132,44500,58200,15500,2740,30,4.1,2,2,112.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,2.2,16,84000,419,1325,399,211,331,106,22000,29700,12600,2000,30,2.1,5,3,112.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,3.9,20,83900,170,1325,389,64,166,43,6800,9500,5600,790,30,2.6,6,2,112.0,77777,9,999999999,160,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,10.0,43,84000,6,298,372,0,2,0,0,0,0,0,130,2.6,3,3,64.0,77777,9,999999999,150,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,9.4,45,84000,0,0,355,0,0,0,0,0,0,0,180,2.6,1,1,32.0,77777,9,999999999,150,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,6.7,34,84000,0,0,359,0,0,0,0,0,0,0,200,4.1,1,1,32.0,77777,9,999999999,150,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,6.7,37,84000,0,0,348,0,0,0,0,0,0,0,180,3.1,0,0,32.0,77777,9,999999999,150,0.1040,0,88,0.200,0.0,1.0 +1991,7,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.7,40,84100,0,0,340,0,0,0,0,0,0,0,170,3.6,0,0,32.0,77777,9,999999999,150,0.1040,0,88,0.200,0.0,1.0 +1991,7,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.1,39,84000,0,0,339,0,0,0,0,0,0,0,180,4.1,0,0,32.0,77777,9,999999999,150,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,6.1,42,84000,0,0,334,0,0,0,0,0,0,0,190,3.1,1,0,32.0,77777,9,999999999,150,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,5.6,39,84000,0,0,336,0,0,0,0,0,0,0,180,3.1,1,0,32.0,77777,9,999999999,150,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.7,47,84000,0,0,330,0,0,0,0,0,0,0,200,2.6,1,0,48.0,77777,9,999999999,150,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.7,50,84100,0,77,325,0,1,0,0,0,0,0,200,3.1,3,0,80.0,77777,9,999999999,150,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.2,45,84100,128,1325,342,46,189,28,4900,9500,3900,500,200,3.1,2,1,112.0,77777,9,999999999,150,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,8.3,41,84100,376,1325,356,201,475,66,20800,41300,9100,1240,190,4.1,3,1,96.0,77777,9,999999999,160,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,8.3,33,84100,619,1325,373,408,687,87,43500,67700,11800,1860,210,3.6,1,1,96.0,77777,9,999999999,160,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,7.8,27,84100,839,1325,389,475,578,108,51300,59100,13800,2790,210,2.6,1,1,104.0,77777,9,999999999,160,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,6.7,21,84100,1020,1325,394,781,856,121,80500,85500,14600,3090,360,2.6,1,0,104.0,77777,9,999999999,160,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,5.6,18,84100,1150,1325,416,719,485,297,77700,50700,33600,13780,20,4.1,3,3,96.0,77777,9,999999999,160,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,4.4,17,84000,1221,1325,417,988,762,285,104000,77000,33000,16860,360,2.6,5,5,96.0,77777,9,999999999,170,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,9.4,42,84200,1226,1325,397,744,274,490,80600,29700,53100,28140,210,3.1,9,9,64.0,2743,9,999999999,170,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,7.8,28,84100,1166,1325,407,726,219,532,78500,23200,58100,23630,90,3.1,7,7,96.0,2438,9,999999999,170,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,6.1,22,84000,1045,1325,411,663,422,329,69800,43900,35100,11640,120,3.1,6,6,80.0,7620,9,999999999,170,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,7.8,27,84100,872,1325,425,220,19,207,25800,1500,24800,9460,50,6.2,9,9,96.0,2743,9,999999999,170,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,7.8,28,84000,657,1325,413,243,120,183,26700,12300,20600,4540,190,3.6,9,8,80.0,2743,9,999999999,179,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,8.3,31,84100,416,1325,401,172,115,136,18600,10600,15300,3060,200,5.2,9,7,80.0,2896,9,999999999,179,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,7.8,31,84200,167,1325,404,45,18,43,5000,1300,4800,1040,260,2.1,9,8,80.0,3048,9,999999999,179,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,8.9,37,84100,5,276,390,0,0,0,0,0,0,0,240,1.5,7,7,64.0,4267,9,999999999,179,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,9.4,44,84200,0,0,366,0,0,0,0,0,0,0,180,3.1,4,3,32.0,77777,9,999999999,179,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,9.4,49,84200,0,0,354,0,0,0,0,0,0,0,220,2.6,2,2,32.0,77777,9,999999999,189,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,9.4,50,84200,0,0,347,0,0,0,0,0,0,0,190,4.1,1,1,32.0,77777,9,999999999,189,0.1060,0,88,0.200,0.0,1.0 +1991,7,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.0,56,84200,0,0,342,0,0,0,0,0,0,0,230,2.1,1,1,32.0,77777,9,999999999,189,0.1060,0,88,0.200,0.0,1.0 +1991,7,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.0,58,84200,0,0,340,0,0,0,0,0,0,0,160,2.6,1,1,32.0,77777,9,999999999,189,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,9.4,58,84200,0,0,337,0,0,0,0,0,0,0,180,3.1,4,1,32.0,77777,9,999999999,189,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,8.9,58,84200,0,0,333,0,0,0,0,0,0,0,210,3.1,2,1,32.0,77777,9,999999999,200,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.9,62,84200,0,0,328,0,0,0,0,0,0,0,220,2.1,5,1,32.0,77777,9,999999999,200,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,8.9,64,84300,0,55,330,0,0,0,0,0,0,0,220,2.1,9,2,64.0,77777,9,999999999,200,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.0,65,84300,125,1326,326,48,199,29,5000,9800,4100,520,180,2.1,3,0,96.0,77777,9,999999999,200,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.1,63,84400,373,1326,334,217,577,55,22800,50400,8600,1060,350,2.6,0,0,96.0,77777,9,999999999,200,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.1,54,84400,617,1326,345,422,737,79,44200,71600,10800,1670,340,3.1,0,0,96.0,77777,9,999999999,200,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,11.1,48,84400,837,1326,356,617,821,98,65800,82500,13600,2460,360,2.6,0,0,96.0,77777,9,999999999,200,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.7,43,84400,1018,1326,367,781,869,113,80700,86800,13900,3010,320,2.6,0,0,96.0,77777,9,999999999,189,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,11.1,38,84300,1149,1326,382,860,853,120,88600,85500,14400,4430,140,1.5,1,1,80.0,77777,9,999999999,189,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,11.1,33,84300,1219,1326,402,889,701,244,94700,71400,28900,14450,150,2.1,3,3,80.0,77777,9,999999999,189,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,9.4,27,84200,1224,1326,405,953,889,132,98000,89100,15500,6400,190,3.1,2,2,80.0,77777,9,999999999,189,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,8.9,23,84200,1164,1326,421,841,769,165,88900,77600,20600,7390,50,2.1,3,3,96.0,77777,9,999999999,189,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,5.6,18,84100,1043,1326,422,688,498,296,73300,51900,32400,10340,110,2.6,5,4,96.0,77777,9,999999999,189,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,6.1,18,84100,869,1326,426,401,317,193,43400,32800,21900,4910,130,4.6,5,4,96.0,77777,9,999999999,189,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,8.9,26,84100,654,1326,412,384,275,248,41400,28000,27600,6150,210,4.6,5,4,96.0,77777,9,999999999,189,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,8.3,25,84100,413,1326,408,193,402,68,20100,36000,8900,1300,180,4.6,6,3,96.0,77777,9,999999999,189,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,7.8,27,84100,163,1326,394,63,149,45,6600,8300,5600,840,180,4.1,7,2,80.0,77777,9,999999999,189,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,8.3,31,84100,4,254,387,0,1,0,0,0,0,0,210,3.6,6,3,64.0,77777,9,999999999,179,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,9.4,39,84100,0,0,373,0,0,0,0,0,0,0,180,3.6,2,2,32.0,77777,9,999999999,179,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.5,9.7,35,84100,0,0,373,0,0,0,0,0,0,0,180,3.8,3,3,32.0,77777,9,999999999,179,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,10.1,38,84100,0,0,366,0,0,0,0,0,0,0,160,4.1,2,2,32.0,77777,9,999999999,179,0.1070,0,88,0.200,0.0,1.0 +1991,7,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.8,10.4,40,84100,0,0,365,0,0,0,0,0,0,0,160,4.3,6,3,32.0,77777,9,999999999,179,0.1070,0,88,0.200,0.0,1.0 +2001,8,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.9,10.7,73,83800,0,0,364,0,0,0,0,0,0,0,220,4.5,6,4,16.0,77777,9,999999999,220,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.0,75,83800,0,0,360,0,0,0,0,0,0,0,200,4.7,5,4,16.0,77777,9,999999999,229,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.2,11.4,63,83900,0,0,354,0,0,0,0,0,0,0,210,5.0,4,3,16.0,77777,9,999999999,229,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,83900,0,0,352,0,0,0,0,0,0,0,210,5.2,5,4,16.0,77777,9,999999999,240,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.1,59,83800,0,11,363,0,0,0,0,0,0,0,220,4.6,8,6,16.0,6096,9,999999999,240,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.3,75,84200,119,1326,354,0,0,0,0,0,0,0,20,2.6,10,5,16.0,4267,9,999999999,250,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.3,63,84300,368,1326,376,182,249,113,19200,21800,13100,2270,290,2.1,8,7,16.0,4267,9,999999999,250,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.1,78,84400,612,1326,382,131,0,131,15200,0,15200,5590,300,4.1,8,8,16.0,4267,9,999999999,259,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.7,73,84500,833,1326,386,208,6,204,24300,500,24000,9150,320,4.1,9,7,16.0,6706,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.7,73,84500,1015,1326,381,656,460,303,69400,47800,32700,10000,320,4.1,7,6,16.0,6706,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,10.0,36,84100,1145,1326,400,828,681,238,87600,69200,27600,10620,20,4.6,7,7,16.0,77777,9,999999999,279,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.0,12.0,39,84700,1216,1326,400,947,866,151,96800,86700,17100,6640,40,3.6,6,5,16.1,77777,9,999999999,279,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.0,9.0,30,84700,1221,1326,401,932,815,179,98100,82100,22300,10020,30,3.6,5,5,16.1,77777,9,999999999,290,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.0,10.0,32,84700,1161,1326,406,869,688,266,91400,69500,30400,12390,50,2.1,7,6,16.1,77777,9,999999999,290,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.0,11.0,33,84700,1039,1326,424,357,95,282,39800,10200,31800,9790,70,3.6,9,8,16.1,3000,9,999999999,300,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.0,11.0,33,84600,865,1326,424,101,0,101,12500,0,12500,5150,90,4.1,10,8,16.1,3000,9,999999999,309,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,12.2,42,84100,649,1326,410,178,12,172,20400,900,20000,7060,310,6.7,8,8,16.0,1500,9,999999999,309,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,15.0,78,84400,407,1326,376,256,510,99,26800,45400,12900,1850,340,9.3,9,8,16.1,3000,9,999999999,320,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.0,73,84500,157,1326,371,70,415,21,7200,27600,4000,430,290,3.6,8,6,16.1,4200,9,999999999,320,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,84500,3,232,372,0,0,0,0,0,0,0,130,1.5,9,8,16.1,2100,9,999999999,329,0.0790,0,88,0.190,999.0,99.0 +2001,8,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,16.0,88,84400,0,0,366,0,0,0,0,0,0,0,150,3.1,9,7,16.1,6000,9,999999999,329,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,16.0,83,84500,0,0,385,0,0,0,0,0,0,0,200,5.7,9,9,16.1,2100,9,999999999,340,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.0,84,84300,0,0,388,0,0,0,0,0,0,0,290,2.6,10,10,16.0,1800,9,999999999,340,0.0790,0,88,0.190,0.0,1.0 +2001,8,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,14.0,73,84400,0,0,374,0,0,0,0,0,0,0,190,3.6,9,8,16.1,1500,9,999999999,329,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,14.0,73,84300,0,0,382,0,0,0,0,0,0,0,210,5.1,9,9,16.1,2100,9,999999999,320,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,14.4,78,84300,0,0,379,0,0,0,0,0,0,0,200,4.6,10,9,16.0,3353,9,999999999,309,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,84200,0,0,351,0,0,0,0,0,0,0,180,4.1,8,4,16.0,6096,9,999999999,300,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,84200,0,0,353,0,0,0,0,0,0,0,140,3.1,9,5,16.0,6096,9,999999999,290,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.3,75,84100,0,11,349,0,0,0,0,0,0,0,210,3.1,6,3,16.0,77777,9,999999999,279,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.9,73,84500,116,1326,347,0,0,0,0,0,0,0,200,3.6,2,1,16.0,77777,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.6,76,84500,365,1326,359,238,578,79,24300,49100,10800,1420,210,1.5,2,2,16.0,77777,9,999999999,259,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,15.0,61,84600,610,1326,367,434,782,73,45700,76100,10600,1580,220,4.1,1,1,16.0,77777,9,999999999,250,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,15.0,56,84700,831,1326,384,632,848,99,67100,85100,13700,2450,250,3.1,3,3,16.0,77777,9,999999999,240,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,15.6,51,84800,1013,1326,397,795,926,86,82700,92700,11800,2620,280,2.6,3,3,16.0,77777,9,999999999,229,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,16.1,51,84100,1144,1326,403,896,940,83,93200,94400,11700,3430,310,4.1,4,4,16.0,77777,9,999999999,220,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,16.1,46,84800,1214,1326,415,965,962,83,100500,96700,11800,4350,10,3.6,5,5,16.0,77777,9,999999999,229,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,16.1,42,84800,1219,1326,429,961,929,105,99300,93300,13400,5320,330,5.2,7,6,16.0,77777,9,999999999,250,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,15.0,40,84700,1159,1326,417,904,759,239,95700,77200,28100,11140,310,7.2,6,4,16.0,6706,9,999999999,259,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.3,59,84600,1037,1326,388,127,0,127,15900,0,15900,6660,140,7.7,9,8,8.0,2134,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,14.4,59,84600,862,1326,395,107,0,107,13200,0,13200,5410,90,3.6,8,8,16.0,2744,9,999999999,290,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.1,66,84100,646,1326,391,70,0,70,8600,0,8600,3350,170,2.6,7,7,16.0,3353,9,999999999,300,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,15.6,54,84600,404,1326,391,98,0,98,11100,0,11100,3690,180,4.1,3,3,16.0,6096,9,999999999,309,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.1,68,84500,153,1326,377,69,208,45,7000,11500,5700,830,180,7.2,4,4,16.0,6096,9,999999999,329,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.9,63,84400,2,210,366,0,0,0,0,0,0,0,190,5.7,3,3,16.0,77777,9,999999999,340,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,14.4,75,84300,0,0,356,0,0,0,0,0,0,0,190,4.1,3,3,16.0,77777,9,999999999,350,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,14.4,68,84300,0,0,364,0,0,0,0,0,0,0,220,5.7,3,3,16.0,77777,9,999999999,370,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.3,65,84000,0,0,345,0,0,0,0,0,0,0,220,6.2,0,0,16.0,77777,9,999999999,379,0.0790,0,88,0.190,0.0,1.0 +2001,8,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.3,73,84100,0,0,337,0,0,0,0,0,0,0,190,4.1,0,0,16.0,77777,9,999999999,370,0.0790,0,88,0.190,0.0,1.0 +2001,8,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,84000,0,0,331,0,0,0,0,0,0,0,190,4.6,0,0,16.0,77777,9,999999999,359,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,84000,0,0,331,0,0,0,0,0,0,0,170,3.1,0,0,16.0,77777,9,999999999,350,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.2,70,84200,0,0,333,0,0,0,0,0,0,0,190,3.6,0,0,16.0,77777,9,999999999,340,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,84100,0,0,323,0,0,0,0,0,0,0,170,2.6,0,0,16.0,77777,9,999999999,340,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.1,67,83900,0,0,344,0,0,0,0,0,0,0,240,5.2,3,3,16.0,77777,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,84100,113,1316,329,0,0,0,0,0,0,0,230,3.6,0,0,16.0,77777,9,999999999,320,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.9,70,84200,362,1327,343,239,671,56,24300,58100,8500,1040,270,4.6,0,0,16.0,77777,9,999999999,309,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,14.4,63,84400,607,1327,354,448,820,72,47200,79800,10700,1560,310,3.1,0,0,16.0,77777,9,999999999,300,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,13.3,51,84400,828,1327,363,632,891,75,66100,88400,10800,1890,280,2.6,0,0,16.0,77777,9,999999999,290,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,12.8,42,84500,1011,1327,393,770,902,81,80300,90300,11300,2520,340,2.1,3,3,16.0,77777,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,12.8,38,83900,1142,1327,401,877,898,102,90700,90100,13000,3920,30,1.5,3,3,16.0,77777,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,10.6,30,84500,1212,1327,408,947,926,99,98000,93000,12900,4930,90,2.1,3,3,16.0,77777,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,11.7,30,84500,1217,1327,415,955,917,112,98500,92000,13900,5510,170,3.1,3,3,16.0,77777,9,999999999,290,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,10.0,26,84500,1157,1327,416,904,921,100,93700,92400,12900,4050,130,1.5,3,3,16.0,77777,9,999999999,309,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,8.9,24,84400,1034,1327,417,806,929,80,84100,93100,11300,2610,80,4.1,3,3,16.0,77777,9,999999999,320,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,7.8,21,84400,859,1327,419,645,853,91,67000,84700,12000,2110,60,2.1,3,3,16.0,77777,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,6.7,20,83500,643,1327,424,456,801,68,47800,77700,10100,1500,140,2.1,5,5,16.0,77777,9,999999999,340,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,10.0,26,84300,400,1327,419,249,673,46,26200,60600,7900,980,0,0.0,4,4,16.0,77777,9,999999999,350,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,12.8,38,84100,149,1327,405,68,419,21,6900,27300,3900,430,150,3.6,4,4,16.0,77777,9,999999999,359,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,12.8,42,84000,2,166,393,0,0,0,0,0,0,0,190,5.7,4,3,16.0,77777,9,999999999,370,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,11.1,39,84000,0,0,391,0,0,0,0,0,0,0,210,7.2,6,4,16.0,77777,9,999999999,379,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,10.6,39,84000,0,0,391,0,0,0,0,0,0,0,210,8.2,7,5,16.0,77777,9,999999999,390,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.1,42,83400,0,0,385,0,0,0,0,0,0,0,210,6.7,7,4,16.0,77777,9,999999999,400,0.0800,0,88,0.190,0.0,1.0 +2001,8,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,10.6,42,83800,0,0,375,0,0,0,0,0,0,0,220,5.2,3,2,16.0,6096,9,999999999,390,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,10.6,48,83700,0,0,364,0,0,0,0,0,0,0,180,5.7,2,2,16.0,77777,9,999999999,390,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.6,53,83600,0,0,351,0,0,0,0,0,0,0,170,3.6,1,1,16.0,77777,9,999999999,379,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.1,61,83500,0,0,337,0,0,0,0,0,0,0,170,4.1,0,0,16.0,77777,9,999999999,370,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.6,59,83500,0,0,337,0,0,0,0,0,0,0,200,3.1,0,0,16.0,77777,9,999999999,370,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.0,51,83300,0,0,344,0,0,0,0,0,0,0,230,4.6,0,0,16.0,77777,9,999999999,359,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,83600,109,1294,342,0,0,0,0,0,0,0,250,4.6,0,0,16.0,77777,9,999999999,359,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.8,55,83700,359,1327,355,240,652,63,24800,55800,9700,1170,330,4.6,0,0,16.0,77777,9,999999999,350,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,13.9,54,83900,604,1327,380,414,652,116,43000,63100,14200,2340,290,3.6,3,3,16.0,77777,9,999999999,340,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,13.3,44,84000,826,1327,394,606,812,100,64300,81400,13600,2450,350,4.6,3,3,16.0,77777,9,999999999,340,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,11.1,32,84100,1009,1327,411,751,842,110,77600,84100,13600,2910,360,6.7,5,5,16.0,77777,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,11.7,34,83500,1140,1327,412,828,729,200,88600,74700,24300,8860,20,7.2,5,5,16.0,77777,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,13.9,37,84100,1210,1327,419,941,890,128,96700,89200,15200,5820,80,4.6,6,5,16.0,77777,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,12.8,33,84200,1215,1327,427,955,923,108,98600,92700,13600,5310,50,3.6,6,6,16.0,77777,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,11.7,30,84100,1154,1327,425,916,873,155,97200,88300,20300,6750,40,4.1,7,6,16.0,77777,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,12.2,30,84200,1032,1327,454,558,292,331,60900,31600,36200,11050,100,3.6,9,9,16.0,3353,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,11.7,29,84200,856,1327,441,594,604,204,63800,62400,23500,5130,130,1.5,9,8,16.0,3658,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,11.7,29,83400,639,1327,434,182,18,174,20900,1400,20200,7060,150,3.1,9,7,16.0,3658,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,12.8,35,84100,396,1327,432,44,0,44,5300,0,5300,1910,130,4.1,8,8,16.0,3658,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,13.9,42,84000,145,1327,406,60,167,42,6300,8500,5400,790,130,2.6,6,5,16.0,3658,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,13.9,44,84000,1,144,407,0,0,0,0,0,0,0,170,1.5,6,6,16.0,3658,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,13.3,44,84000,0,0,403,0,0,0,0,0,0,0,190,2.6,7,6,16.0,3658,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,12.8,45,83900,0,0,397,0,0,0,0,0,0,0,230,4.1,6,6,16.0,3658,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,13.3,48,83900,0,0,405,0,0,0,0,0,0,0,220,7.7,8,8,16.0,3353,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.8,48,83900,0,0,401,0,0,0,0,0,0,0,200,5.2,8,8,16.0,3048,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,11.1,43,83800,0,0,388,0,0,0,0,0,0,0,220,4.1,7,6,16.0,77777,9,999999999,320,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,11.1,48,83800,0,0,374,0,0,0,0,0,0,0,250,5.2,6,4,16.0,77777,9,999999999,320,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,11.7,51,83800,0,0,369,0,0,0,0,0,0,0,230,6.2,5,3,16.0,6096,9,999999999,309,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.7,55,83800,0,0,360,0,0,0,0,0,0,0,230,5.2,3,2,16.0,6096,9,999999999,309,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.7,55,83600,0,0,360,0,0,0,0,0,0,0,240,4.6,2,2,16.0,6096,9,999999999,300,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.7,55,84000,106,1272,360,0,0,0,0,0,0,0,250,4.6,3,2,16.0,6096,9,999999999,300,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,12.8,50,84200,356,1327,370,217,462,93,22500,39100,12000,1730,240,4.1,2,1,16.0,6096,9,999999999,290,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,11.7,38,84400,601,1327,390,394,615,114,40900,59500,13900,2300,300,2.1,2,2,16.0,77777,9,999999999,290,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,10.6,31,84500,823,1327,404,600,751,133,63700,76000,16500,3290,0,0.0,3,3,16.0,77777,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,8.9,25,84600,1006,1327,421,739,781,145,77400,78500,17700,4280,310,2.6,6,6,16.0,77777,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,8.3,21,83900,1137,1327,438,859,856,123,88300,85700,14700,4300,10,4.6,7,7,16.0,77777,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,9.4,24,84700,1208,1327,428,922,872,128,94900,87400,15100,5760,50,5.7,5,5,16.0,77777,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,9.4,23,84700,1213,1327,431,931,857,146,95200,85800,16700,6380,50,5.2,5,5,16.0,77777,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,9.4,23,84700,1152,1327,431,886,879,122,91300,88100,14700,4490,70,4.6,5,5,16.0,77777,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,8.3,21,84700,1029,1327,432,788,888,99,81800,88800,12800,2910,90,3.1,5,5,16.0,77777,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,8.3,21,84700,853,1327,432,639,876,74,66700,87100,10700,1930,40,3.6,5,5,16.0,77777,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,7.2,20,83900,636,1327,427,450,795,69,48000,78100,10600,1560,50,2.1,8,5,16.0,77777,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,10.0,26,84700,392,1327,429,238,547,77,24500,47800,10400,1420,40,3.6,7,6,16.0,77777,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,12.2,37,84500,140,1327,411,43,119,30,4600,6000,3900,530,40,3.1,8,6,16.0,77777,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,10.6,35,84600,1,122,402,0,0,0,0,0,0,0,320,6.7,7,6,16.0,77777,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,10.0,34,84600,0,0,402,0,0,0,0,0,0,0,340,4.6,6,6,16.0,77777,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,10.6,38,84500,0,0,393,0,0,0,0,0,0,0,320,3.6,5,5,16.0,77777,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,10.0,39,84100,0,0,395,0,0,0,0,0,0,0,220,4.6,8,7,16.0,77777,9,999999999,240,0.0800,0,88,0.190,0.0,1.0 +2001,8,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,10.6,45,84400,0,0,376,0,0,0,0,0,0,0,200,6.7,4,4,16.0,77777,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,10.0,43,84400,0,0,357,0,0,0,0,0,0,0,220,6.2,1,0,16.0,77777,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,10.0,43,84400,0,0,363,0,0,0,0,0,0,0,220,6.7,2,1,16.0,77777,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,10.0,44,84400,0,0,372,0,0,0,0,0,0,0,220,5.2,5,4,16.0,77777,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.6,49,84400,0,0,371,0,0,0,0,0,0,0,250,3.1,6,5,16.0,77777,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.1,53,84200,0,0,359,0,0,0,0,0,0,0,260,2.6,4,2,16.0,7620,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,11.7,53,84400,103,1250,375,0,0,0,0,0,0,0,280,3.6,7,6,16.0,6706,9,999999999,290,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,11.7,51,84500,352,1328,378,161,172,115,17400,15000,13400,2540,280,4.1,6,6,16.0,6706,9,999999999,300,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.8,48,84700,599,1328,387,380,491,158,39800,48300,18000,3220,290,5.2,5,5,16.0,6706,9,999999999,309,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,12.8,45,84800,821,1328,387,548,586,185,59100,60300,21700,4440,300,3.6,3,3,16.0,7620,9,999999999,309,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.0,13.0,37,84900,1004,1328,415,733,733,177,77900,74800,21200,5640,30,3.6,6,6,16.1,7500,9,999999999,320,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,12.2,31,84300,1135,1328,416,797,651,239,84200,66100,27500,10280,50,3.6,3,3,16.0,7620,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,10.6,27,85000,1206,1328,420,886,739,213,95000,75700,26100,11900,140,4.6,3,3,16.0,77777,9,999999999,320,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,10.6,25,85000,1211,1328,426,908,785,190,94900,78800,22800,9930,150,6.2,3,3,16.0,77777,9,999999999,300,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,10.6,27,84800,1149,1328,427,863,795,173,90400,80000,21000,7220,130,7.7,7,6,16.0,7620,9,999999999,290,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,12.8,38,84800,1026,1328,416,759,667,243,79200,67100,27200,7820,230,10.3,8,7,16.0,4267,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,13.0,56,84500,850,1328,390,207,18,196,24400,1400,23500,8950,270,8.2,9,8,16.0,2896,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.0,54,84300,632,1328,393,70,0,70,8600,0,8600,3330,40,6.7,10,8,16.0,2400,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.0,73,84600,388,1328,389,39,0,39,4700,0,4700,1700,300,2.1,10,9,16.0,3300,9,999999999,250,0.0800,0,88,0.190,1.0,1.0 +2001,8,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,16.0,73,84600,136,1328,388,55,155,39,5700,7500,5000,730,270,3.6,10,8,16.0,3353,9,999999999,240,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.0,70,84700,1,100,380,0,0,0,0,0,0,0,320,3.1,10,6,16.0,3658,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.0,75,84600,0,0,375,0,0,0,0,0,0,0,0,0.0,9,6,16.0,6096,9,999999999,220,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.0,76,84500,0,0,364,0,0,0,0,0,0,0,240,5.7,9,5,16.0,6096,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.0,64,84300,0,0,368,0,0,0,0,0,0,0,0,0.0,9,6,16.0,6096,9,999999999,200,0.0800,0,88,0.190,0.0,1.0 +2001,8,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.0,69,84400,0,0,367,0,0,0,0,0,0,0,180,4.1,9,7,16.0,77777,9,999999999,200,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.0,62,84400,0,0,361,0,0,0,0,0,0,0,200,6.7,7,5,16.0,77777,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,12.0,62,84400,0,0,358,0,0,0,0,0,0,0,200,4.1,5,4,16.0,77777,9,999999999,220,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.0,60,84400,0,0,358,0,0,0,0,0,0,0,210,6.2,3,3,16.0,77777,9,999999999,220,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.0,67,84400,0,0,336,0,0,0,0,0,0,0,180,3.6,2,1,16.0,77777,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,84200,0,0,334,0,0,0,0,0,0,0,180,3.6,1,1,16.0,77777,9,999999999,240,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.7,59,84600,100,1229,343,0,0,0,0,0,0,0,230,2.6,0,0,16.0,77777,9,999999999,240,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.2,59,84500,349,1328,346,210,496,80,21400,41400,10500,1410,250,4.6,0,0,16.0,77777,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.8,55,84600,596,1328,361,429,765,85,44300,73600,11200,1700,250,2.6,2,1,16.0,77777,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.8,47,84700,819,1328,384,581,727,132,61700,73600,16300,3250,260,2.6,3,3,16.0,77777,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,11.7,38,84800,1002,1328,394,771,854,125,82000,86300,16700,3810,0,0.0,3,3,16.0,77777,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,10.6,28,84100,1133,1328,414,890,910,111,91800,91200,13800,4000,130,5.2,3,3,16.0,77777,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,8.9,23,84800,1204,1328,421,916,848,147,93800,84900,16700,6100,120,5.7,3,3,16.0,77777,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,8.9,24,84700,1208,1328,417,949,893,135,97400,89500,15800,5940,160,4.6,3,3,16.0,77777,9,999999999,290,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,8.9,22,84700,1147,1328,427,880,753,228,93300,76700,27000,10200,150,5.7,4,3,16.0,77777,9,999999999,300,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,8.9,22,84600,1024,1328,427,391,155,272,43700,16600,30900,9210,130,8.2,4,4,16.0,77777,9,999999999,309,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,8.3,22,84600,847,1328,423,576,562,217,61300,57900,24400,5420,150,6.7,5,4,16.0,77777,9,999999999,320,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,8.3,25,83700,628,1328,414,439,765,76,46200,74700,10800,1650,160,4.6,5,5,16.0,77777,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,8.3,26,84400,384,1328,408,242,698,40,25500,62300,7500,950,130,7.2,4,4,16.0,77777,9,999999999,340,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,8.3,29,84300,132,1328,396,53,345,20,5500,21300,3400,400,140,5.7,4,4,16.0,77777,9,999999999,340,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,8.3,36,84200,0,77,378,0,0,0,0,0,0,0,150,4.6,4,4,16.0,77777,9,999999999,350,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,6.7,37,84200,0,0,363,0,0,0,0,0,0,0,160,5.2,3,3,16.0,77777,9,999999999,359,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,7.2,38,84100,0,0,363,0,0,0,0,0,0,0,180,6.2,3,3,16.0,77777,9,999999999,370,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,7.2,39,83700,0,0,346,0,0,0,0,0,0,0,160,6.2,0,0,16.0,77777,9,999999999,379,0.0800,0,88,0.190,0.0,1.0 +2001,8,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,6.7,38,84000,0,0,352,0,0,0,0,0,0,0,200,5.7,1,1,16.0,77777,9,999999999,359,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.8,42,83900,0,0,344,0,0,0,0,0,0,0,190,7.2,1,0,16.0,77777,9,999999999,350,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.8,47,83700,0,0,342,0,0,0,0,0,0,0,180,6.2,1,1,16.0,77777,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,7.8,48,83700,0,0,345,0,0,0,0,0,0,0,180,5.7,2,2,16.0,77777,9,999999999,309,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.2,43,83700,0,0,338,0,0,0,0,0,0,0,190,4.6,0,0,16.0,77777,9,999999999,300,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,7.8,52,83500,0,0,328,0,0,0,0,0,0,0,280,4.1,0,0,16.0,77777,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,8.9,52,83700,97,1207,349,0,0,0,0,0,0,0,220,3.6,3,3,16.0,77777,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,8.9,46,83900,346,1329,360,211,511,78,21500,42500,10400,1380,240,5.7,3,3,16.0,77777,9,999999999,240,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.1,45,84000,593,1329,376,423,753,86,43600,72400,11300,1700,260,4.1,3,3,16.0,77777,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,10.0,36,84100,816,1329,383,607,849,85,63300,84100,11500,1950,290,2.1,2,2,16.0,77777,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,10.0,33,84100,1000,1329,401,746,848,106,77100,84700,13200,2810,330,2.1,6,5,16.0,77777,9,999999999,189,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,9.4,27,83400,1131,1329,409,816,730,193,87500,74800,23600,8320,0,0.0,3,3,16.0,77777,9,999999999,179,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,9.4,25,84100,1201,1329,415,874,715,226,93300,73100,27100,12320,210,2.6,3,3,16.0,77777,9,999999999,179,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,8.3,23,84100,1206,1329,416,937,869,146,95800,87000,16700,6140,240,1.5,4,3,16.0,77777,9,999999999,179,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,8.3,21,84100,1144,1329,426,857,777,186,89000,77800,21800,7460,260,2.6,4,4,16.0,77777,9,999999999,189,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,7.2,22,84000,1021,1329,419,776,852,121,80000,85100,14600,3070,290,3.1,6,5,16.0,77777,9,999999999,189,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,10.0,26,84000,843,1329,422,599,728,136,63700,73800,16700,3440,310,7.2,6,4,16.0,77777,9,999999999,189,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,8.3,24,83200,625,1329,417,433,759,75,45600,74100,10700,1630,330,8.8,5,5,16.0,77777,9,999999999,200,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,11.7,39,83900,379,1329,398,236,501,93,24700,43500,12300,1730,350,8.2,9,5,16.0,6706,9,999999999,200,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,9.4,35,83900,127,1329,400,12,0,12,1400,0,1400,470,220,6.2,9,7,16.0,6706,9,999999999,200,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,10.6,46,83800,0,55,384,0,0,0,0,0,0,0,200,5.7,8,7,16.0,3658,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,10.6,48,83800,0,0,381,0,0,0,0,0,0,0,260,3.6,8,7,16.0,4267,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.6,49,83900,0,0,384,0,0,0,0,0,0,0,330,4.6,9,8,16.0,4267,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.2,61,83900,0,0,367,0,0,0,0,0,0,0,10,11.8,7,6,16.0,77777,9,999999999,220,0.0800,0,88,0.190,0.0,1.0 +2001,8,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.3,73,83800,0,0,364,0,0,0,0,0,0,0,360,7.2,8,7,16.0,77777,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,83900,0,0,381,0,0,0,0,0,0,0,360,5.2,9,9,16.0,2438,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,12.2,65,83900,0,0,380,0,0,0,0,0,0,0,330,6.2,9,9,16.0,2591,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,84000,0,0,377,0,0,0,0,0,0,0,10,3.6,10,9,16.0,2438,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,84000,0,0,387,0,0,0,0,0,0,0,350,6.2,10,10,16.0,2591,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.8,73,84000,0,0,385,0,0,0,0,0,0,0,20,5.2,10,10,16.0,2286,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,84200,93,1185,383,0,0,0,0,0,0,0,20,6.2,10,10,16.0,488,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,84200,343,1329,384,49,0,49,5800,0,5800,2010,40,6.7,10,10,16.0,396,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.9,87,84300,590,1329,378,69,0,69,8400,0,8400,3210,60,6.7,10,10,12.8,396,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,84400,813,1329,374,98,0,98,12100,0,12100,4900,50,6.7,10,10,11.2,305,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,84400,997,1329,373,120,0,120,15000,0,15000,6270,20,5.7,10,10,16.0,366,9,999999999,200,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,84300,1129,1329,367,142,0,142,17800,0,17800,7450,10,6.2,10,10,11.2,427,9,999999999,200,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.8,90,84400,1199,1329,368,194,0,194,24100,0,24100,9870,330,4.6,10,10,11.2,671,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.0,63,84500,1204,1329,379,281,6,275,33900,500,33400,13180,350,5.2,10,10,11.2,1067,9,999999999,220,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,9.4,60,84400,1142,1329,378,194,6,188,23800,500,23400,9550,340,3.1,10,10,11.2,914,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,9.4,56,84400,1018,1329,384,431,113,344,47300,12000,38100,11550,350,3.1,10,10,11.2,1372,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,8.3,50,84400,840,1329,367,263,24,248,30400,2100,29000,10580,0,0.0,8,8,16.0,1676,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,8.3,50,84100,621,1329,385,235,47,213,25800,4700,23600,6110,0,0.0,10,10,16.0,1676,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,8.3,50,84400,375,1329,385,82,0,82,9400,0,9400,3130,210,2.6,10,10,16.0,1676,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,9.4,56,84400,122,1329,384,6,0,6,800,0,800,250,220,3.6,10,10,16.0,1676,9,999999999,290,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.1,67,84400,0,11,349,0,0,0,0,0,0,0,230,3.1,5,5,16.0,6096,9,999999999,300,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,84400,0,0,360,0,0,0,0,0,0,0,230,3.1,8,8,16.0,1676,9,999999999,309,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,84300,0,0,345,0,0,0,0,0,0,0,230,2.6,6,6,16.0,77777,9,999999999,320,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,84100,0,0,328,0,0,0,0,0,0,0,150,2.6,7,5,11.2,77777,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,84200,0,0,343,0,0,0,0,0,0,0,160,3.6,9,8,12.8,3353,9,999999999,329,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,84200,0,0,333,0,0,0,0,0,0,0,160,3.1,8,5,16.0,3658,9,999999999,320,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,84100,0,0,325,0,0,0,0,0,0,0,110,2.6,4,2,16.0,3658,9,999999999,320,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.6,78,84000,0,0,338,0,0,0,0,0,0,0,120,3.6,8,6,16.0,77777,9,999999999,320,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,83900,0,0,330,0,0,0,0,0,0,0,150,3.6,6,4,16.0,77777,9,999999999,320,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.6,84,83900,0,0,328,0,0,0,0,0,0,0,90,2.1,5,4,16.0,6706,9,999999999,309,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,84000,90,1163,333,0,0,0,0,0,0,0,0,0.0,5,5,16.0,6706,9,999999999,309,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,84100,340,1330,355,33,0,33,4000,0,4000,1410,240,3.6,9,8,16.0,3048,9,999999999,309,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,84200,587,1330,351,69,0,69,8400,0,8400,3210,280,4.6,9,8,16.0,3048,9,999999999,309,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.1,75,84200,811,1330,362,157,0,157,18700,0,18700,7340,280,4.6,9,9,16.0,3048,9,999999999,309,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,84300,995,1330,362,645,466,295,68100,48400,31800,9320,310,3.1,7,7,16.0,77777,9,999999999,300,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,11.7,53,84000,1126,1330,369,822,718,213,87500,73300,25300,8970,320,2.6,6,4,16.0,7620,9,999999999,300,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,11.7,50,84500,1197,1330,381,892,697,263,94200,70600,30400,13880,320,3.6,7,6,16.0,7620,9,999999999,290,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,11.1,48,84400,1201,1330,377,513,120,405,56800,12800,45100,19590,0,0.0,7,5,16.0,7620,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.7,43,84400,1139,1330,383,428,72,367,47400,7400,41000,16230,230,2.6,4,3,16.0,7620,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,11.1,39,84400,1014,1330,397,736,619,262,78900,64500,29600,8500,110,2.6,6,6,16.0,6706,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,10.6,38,84400,836,1330,401,458,308,264,49400,32900,28700,6820,110,2.1,9,7,16.0,4572,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,11.7,53,83800,617,1330,405,69,0,69,8400,0,8400,3260,20,10.8,10,10,16.0,18410,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.0,53,84300,371,1330,375,38,0,38,4600,0,4600,1640,250,10.8,9,8,8.0,18349,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,84100,118,1318,373,26,72,20,2900,3300,2600,340,0,0.0,10,9,16.0,18288,9,999999999,240,0.0800,0,88,0.190,1.0,1.0 +2001,8,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,84200,0,0,374,0,0,0,0,0,0,0,160,2.6,9,9,16.0,3048,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.9,87,84100,0,0,367,0,0,0,0,0,0,0,160,5.7,10,9,16.0,3048,9,999999999,220,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.3,86,84000,0,0,344,0,0,0,0,0,0,0,160,6.2,5,5,16.0,77777,9,999999999,220,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.3,86,83900,0,0,335,0,0,0,0,0,0,0,180,5.7,2,2,16.0,7620,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,84000,0,0,323,0,0,0,0,0,0,0,200,4.6,0,0,16.0,77777,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,83900,0,0,321,0,0,0,0,0,0,0,210,4.6,0,0,16.0,77777,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,83800,0,0,318,0,0,0,0,0,0,0,220,4.6,0,0,16.0,77777,9,999999999,220,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,83800,0,0,318,0,0,0,0,0,0,0,220,3.6,0,0,16.0,77777,9,999999999,220,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.1,89,83800,0,0,320,0,0,0,0,0,0,0,210,2.1,2,2,16.0,77777,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,83800,0,0,328,0,0,0,0,0,0,0,240,2.6,4,4,4.8,77777,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,12.8,93,84000,87,1142,365,0,0,0,0,0,0,0,270,2.1,10,10,0.1,30,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,14.4,96,84100,336,1330,355,115,40,105,12600,3500,11700,2630,280,3.1,8,8,0.4,30,9,999999999,240,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,84200,584,1330,359,389,536,153,40800,52400,17700,3090,260,3.1,6,6,4.8,77777,9,999999999,240,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.3,63,84300,808,1330,368,595,776,122,61500,76900,14700,2690,260,5.7,5,5,14.4,77777,9,999999999,240,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,13.3,55,84400,992,1330,374,759,884,97,78600,88300,12600,2670,270,3.1,3,3,16.0,77777,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.1,42,84500,1124,1330,382,865,904,99,89600,90700,12800,3630,120,2.1,3,3,16.0,77777,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,10.0,35,84500,1194,1330,396,929,920,101,96200,92400,13000,4610,140,3.6,5,5,16.0,77777,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,7.2,26,84500,1198,1330,397,913,821,171,96300,82800,21500,8570,130,3.6,5,4,16.0,77777,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,5.6,22,84600,1136,1330,404,874,831,163,92100,83700,20400,6550,110,5.2,6,5,16.0,7620,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,5.6,22,84500,1011,1330,412,661,512,271,70700,53300,30000,8760,120,4.1,8,7,16.0,7620,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,4.4,22,84500,833,1330,400,564,633,167,59000,63500,19200,4040,40,2.1,7,6,16.0,7620,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,8.9,33,83800,612,1330,409,378,525,136,40400,51900,16400,2740,310,7.7,9,8,16.0,3658,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,8.9,32,84500,366,1330,397,181,336,89,19000,28800,11100,1650,360,2.1,5,5,16.0,7620,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,8.9,38,84300,113,1297,374,43,255,21,4500,13800,3300,380,290,3.6,3,3,16.0,77777,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,10.6,46,84300,0,0,376,0,0,0,0,0,0,0,240,2.6,5,5,16.0,77777,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.6,49,84300,0,0,371,0,0,0,0,0,0,0,230,4.1,5,5,16.0,77777,9,999999999,290,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.0,51,84200,0,0,359,0,0,0,0,0,0,0,210,5.2,3,3,16.0,77777,9,999999999,290,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,9.4,49,84200,0,0,343,0,0,0,0,0,0,0,210,6.7,0,0,16.0,77777,9,999999999,290,0.0800,0,88,0.190,0.0,1.0 +2001,8,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,9.4,56,84000,0,0,333,0,0,0,0,0,0,0,180,4.6,0,0,16.0,77777,9,999999999,290,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,8.9,58,83900,0,0,327,0,0,0,0,0,0,0,190,5.2,0,0,16.0,77777,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,8.9,52,83900,0,0,335,0,0,0,0,0,0,0,190,7.2,0,0,16.0,77777,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,8.3,52,83900,0,0,331,0,0,0,0,0,0,0,200,6.7,0,0,16.0,77777,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.3,60,83900,0,0,321,0,0,0,0,0,0,0,200,4.1,0,0,16.0,77777,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,8.3,58,83800,0,0,324,0,0,0,0,0,0,0,230,2.6,0,0,16.0,77777,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.9,62,84000,84,1120,322,0,0,0,0,0,0,0,270,3.6,0,0,16.0,77777,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,9.4,54,84200,333,1330,342,215,535,81,21700,43700,10800,1400,290,3.6,1,1,16.0,77777,9,999999999,240,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,10.0,44,84400,581,1330,366,397,711,86,42000,69100,11800,1780,300,4.1,2,2,16.0,77777,9,999999999,240,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,10.0,43,84500,806,1330,363,582,776,111,60800,77200,14000,2540,320,2.6,1,1,16.0,77777,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,10.6,40,84600,990,1330,373,727,788,140,76300,79200,17300,4020,350,2.1,1,1,16.0,77777,9,999999999,220,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,10.6,34,84700,1122,1330,396,853,856,129,87600,85700,15200,4140,10,5.2,3,3,16.0,77777,9,999999999,220,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,11.1,34,84700,1192,1330,399,935,914,114,96400,91700,14100,4950,50,5.7,3,3,16.0,77777,9,999999999,220,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,9.4,29,84800,1196,1330,403,925,881,131,95000,88300,15400,5480,10,4.6,3,3,16.0,77777,9,999999999,220,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,7.2,24,84800,1133,1330,409,880,909,104,91000,91100,13200,3830,20,7.2,5,5,16.0,77777,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,8.3,26,84700,1008,1330,405,753,810,138,79300,81600,17400,4130,80,2.6,3,3,16.0,77777,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,6.1,22,84800,829,1330,402,592,710,149,62400,71600,17800,3650,60,4.1,3,3,16.0,77777,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,6.1,22,84000,608,1330,408,362,420,170,37800,41400,18800,3500,20,4.1,5,5,16.0,77777,9,999999999,240,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,5.6,23,84700,361,1330,398,214,610,48,22100,53100,7700,960,30,4.6,5,4,16.0,77777,9,999999999,240,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,12.8,45,84600,108,1275,393,39,295,15,4300,17800,2700,320,70,5.7,5,5,16.0,77777,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,13.3,51,84600,0,0,385,0,0,0,0,0,0,0,50,6.7,5,5,16.0,77777,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.0,66,84600,0,0,373,0,0,0,0,0,0,0,80,8.2,5,4,16.0,77777,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.0,73,84500,0,0,371,0,0,0,0,0,0,0,80,6.2,6,6,16.0,77777,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.0,78,84300,0,0,394,0,0,0,0,0,0,0,70,5.2,10,10,16.0,2896,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,84500,0,0,369,0,0,0,0,0,0,0,40,5.2,8,8,16.0,3048,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,14.4,86,84400,0,0,382,0,0,0,0,0,0,0,10,3.1,10,10,16.0,3048,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.9,87,84400,0,0,347,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,240,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.9,90,84300,0,0,344,0,0,0,0,0,0,0,310,4.1,5,5,16.0,77777,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,14.4,90,84300,0,0,334,0,0,0,0,0,0,0,290,2.1,2,1,14.4,77777,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,84300,0,0,336,0,0,0,0,0,0,0,290,2.1,4,3,9.6,6706,9,999999999,220,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.9,90,84300,81,1098,342,0,0,0,0,0,0,0,300,1.5,4,4,9.6,6706,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,14.4,84,84500,330,1331,347,216,395,118,21600,32200,13600,2290,290,1.5,3,3,11.2,6600,9,999999999,209,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.9,70,84600,578,1331,357,258,137,198,27900,13700,22000,4730,90,2.1,3,3,11.2,6706,9,999999999,200,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,14.4,63,84700,803,1331,361,576,672,169,59900,67000,19400,3930,100,3.1,1,1,16.0,77777,9,999999999,189,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,14.4,57,84700,987,1331,377,721,775,144,75300,77700,17500,4070,100,3.6,4,3,16.0,77777,9,999999999,189,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,15.6,47,84200,1119,1331,406,835,808,153,88200,81600,19400,5910,110,7.2,4,4,16.0,77777,9,999999999,179,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,13.9,41,84800,1189,1331,406,856,601,317,92300,62900,36000,16640,90,5.2,4,4,16.0,6706,9,999999999,189,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.0,8.0,38,84500,1193,1331,388,513,108,416,56500,11500,46200,19590,250,4.1,9,8,8.0,2400,9,999999999,189,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.2,81,84500,1130,1331,387,792,538,334,84300,56100,36500,14450,10,6.7,9,8,16.0,2438,9,999999999,200,0.0800,0,88,0.190,5.0,1.0 +2001,8,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,15.7,56,84500,1004,1331,402,121,0,121,15100,0,15100,6330,100,4.6,8,7,16.0,7315,9,999999999,209,0.0800,0,88,0.190,1.0,1.0 +2001,8,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,13.3,48,84500,825,1331,394,452,319,254,48800,34000,27700,6460,240,7.7,9,6,16.0,6706,9,999999999,220,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.0,10.0,44,84500,604,1331,399,64,0,64,7900,0,7900,3020,250,8.2,9,9,16.1,2700,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,11.4,50,84300,356,1331,388,38,0,38,4600,0,4600,1620,10,2.1,10,8,16.0,6096,9,999999999,229,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.2,59,84300,103,1231,374,37,174,24,4100,8300,3400,420,210,5.2,9,7,16.0,6096,9,999999999,240,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.9,68,84300,0,0,379,0,0,0,0,0,0,0,220,6.7,9,8,16.0,3658,9,999999999,250,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.3,65,84300,0,0,379,0,0,0,0,0,0,0,200,4.1,9,8,16.0,3658,9,999999999,259,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.7,61,84200,0,0,368,0,0,0,0,0,0,0,240,3.1,8,7,16.0,6096,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,83900,0,0,354,0,0,0,0,0,0,0,170,3.6,10,6,16.0,6096,9,999999999,270,0.0800,0,88,0.190,0.0,1.0 +2001,8,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,84000,0,0,372,0,0,0,0,0,0,0,180,3.6,10,9,16.0,3353,9,999999999,279,0.0800,0,88,0.190,0.0,1.0 +2001,8,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.7,67,83900,0,0,366,0,0,0,0,0,0,0,150,3.6,10,8,16.0,3353,9,999999999,290,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.2,70,84000,0,0,360,0,0,0,0,0,0,0,190,1.5,10,7,16.0,77777,9,999999999,290,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.9,78,83900,0,0,362,0,0,0,0,0,0,0,140,2.1,10,7,16.0,6096,9,999999999,300,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.8,70,83800,0,0,388,0,0,0,0,0,0,0,220,3.6,10,10,16.0,3048,9,999999999,300,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,83600,0,0,364,0,0,0,0,0,0,0,240,3.6,9,8,16.0,4572,9,999999999,309,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.9,84,83800,78,1076,357,0,0,0,0,0,0,0,280,3.6,8,7,16.0,4267,9,999999999,309,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,83900,326,1331,363,209,443,100,21300,36100,12400,1890,280,3.6,9,7,11.2,3658,9,999999999,320,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.0,76,84000,576,1331,378,251,119,200,27200,11900,22100,4770,300,3.6,9,8,11.2,3658,9,999999999,320,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.9,63,84000,800,1331,379,491,379,263,52700,40300,28400,6620,340,4.6,9,7,16.0,4267,9,999999999,329,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.3,59,84100,985,1331,388,304,55,263,33600,5600,29400,10110,350,3.6,9,8,16.0,4267,9,999999999,340,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,13.3,51,83600,1117,1331,393,804,567,327,85600,59100,35800,13590,350,4.6,9,7,16.0,6706,9,999999999,340,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,12.8,52,84100,1187,1331,404,443,72,379,49000,7400,42400,18050,30,6.7,9,9,16.0,3962,9,999999999,340,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.8,48,84100,1190,1331,422,304,12,294,36600,1000,35700,13850,340,5.7,10,10,16.0,3048,9,999999999,329,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,10.0,44,84000,1127,1331,398,487,102,400,53700,10500,44800,17090,320,6.7,9,9,16.0,2438,9,999999999,320,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,10.0,43,84000,1001,1331,392,327,24,309,38000,2200,36400,13560,290,2.6,9,8,16.0,3353,9,999999999,320,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,10.6,40,84000,821,1331,395,100,0,100,12300,0,12300,5000,310,6.7,9,7,16.0,6096,9,999999999,309,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.0,66,83500,599,1331,409,249,117,197,27100,11800,21800,4750,250,6.7,10,10,16.0,6096,9,999999999,300,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.3,61,83900,351,1331,374,212,496,81,21500,41400,10600,1420,230,7.2,7,6,16.0,6096,9,999999999,300,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.8,63,83900,99,1209,386,23,51,20,2700,2200,2500,340,300,10.3,9,9,16.0,2438,9,999999999,290,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,83800,0,0,371,0,0,0,0,0,0,0,300,6.2,9,9,16.0,2134,9,999999999,290,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,83800,0,0,368,0,0,0,0,0,0,0,280,7.2,9,8,16.0,3353,9,999999999,279,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.1,65,83800,0,0,373,0,0,0,0,0,0,0,250,6.2,10,9,16.0,3353,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.2,72,83600,0,0,371,0,0,0,0,0,0,0,290,5.7,10,9,16.0,2896,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.1,63,83800,0,0,386,0,0,0,0,0,0,0,290,5.2,10,10,16.0,2591,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,83800,0,0,387,0,0,0,0,0,0,0,260,5.7,10,10,16.0,3353,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.7,70,83800,0,0,370,0,0,0,0,0,0,0,260,4.6,9,9,16.0,77777,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.6,65,83800,0,0,346,0,0,0,0,0,0,0,250,5.2,5,4,16.0,6096,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.6,70,83800,0,0,346,0,0,0,0,0,0,0,240,4.1,8,6,16.0,6096,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.6,70,83700,0,0,350,0,0,0,0,0,0,0,250,3.6,8,7,16.0,6096,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.6,70,83900,75,1054,350,0,0,0,0,0,0,0,250,3.6,7,7,16.0,6706,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.0,58,84000,323,1332,350,134,121,105,14500,10200,12000,2290,270,4.1,4,4,16.0,6706,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,8.9,49,84200,572,1332,354,384,587,131,39300,55700,15300,2510,300,4.6,3,3,16.0,6706,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,8.3,38,84300,798,1332,370,544,642,158,56800,64200,18300,3690,340,6.2,3,3,16.0,6096,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,8.3,36,84400,982,1332,385,563,303,339,60800,32700,36600,10530,360,7.2,6,6,16.0,6706,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,8.3,33,83800,1114,1332,388,680,392,351,74500,42600,38800,13700,30,5.7,5,5,16.0,6096,9,999999999,270,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,6.7,30,84400,1184,1332,389,892,727,244,94500,73900,28600,12240,40,5.2,8,6,16.0,6096,9,999999999,259,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,6.0,30,84300,1188,1332,404,656,300,388,72000,32600,42800,18580,60,2.6,9,9,16.1,3000,9,999999999,250,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.6,59,84200,1124,1332,370,188,6,183,23200,500,22800,9300,270,8.8,9,8,16.0,2438,9,999999999,240,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.6,49,84400,997,1332,374,126,0,126,15700,0,15700,6550,360,5.7,7,6,16.0,6096,9,999999999,229,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.6,55,84300,817,1332,362,463,307,274,49600,32700,29500,7030,70,5.7,7,5,16.0,6706,9,999999999,220,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.0,53,84300,595,1332,383,154,6,151,17600,400,17400,6120,90,3.6,9,9,16.0,6706,9,999999999,209,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,10.0,54,84300,346,1332,358,127,117,97,13900,10200,11200,2130,170,3.6,5,5,16.0,6706,9,999999999,189,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,9.4,50,84300,94,1188,361,30,173,18,3400,9100,2600,330,210,3.6,6,5,16.0,6706,9,999999999,179,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.0,58,84200,0,0,350,0,0,0,0,0,0,0,220,3.1,5,4,16.0,3658,9,999999999,170,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,8.9,56,84200,0,0,352,0,0,0,0,0,0,0,220,3.1,8,6,16.0,6706,9,999999999,160,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.0,65,84100,0,0,366,0,0,0,0,0,0,0,270,3.6,9,9,16.0,7620,9,999999999,150,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.1,72,83900,0,0,347,0,0,0,0,0,0,0,260,3.6,8,6,16.0,6096,9,999999999,139,0.0790,0,88,0.190,0.0,1.0 +2001,8,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.1,72,84100,0,0,344,0,0,0,0,0,0,0,260,3.6,5,5,16.0,6096,9,999999999,139,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,10.6,67,84100,0,0,366,0,0,0,0,0,0,0,230,3.6,9,9,16.0,3048,9,999999999,139,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.6,72,84100,0,0,336,0,0,0,0,0,0,0,210,4.6,3,3,16.0,6096,9,999999999,139,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,84000,0,0,318,0,0,0,0,0,0,0,200,4.1,1,0,16.0,77777,9,999999999,129,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,10.0,80,84000,0,0,317,0,0,0,0,0,0,0,120,2.1,1,1,16.0,6096,9,999999999,129,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,83900,0,0,327,0,0,0,0,0,0,0,100,2.6,5,5,16.0,6096,9,999999999,129,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.0,83,84000,73,1033,330,0,0,0,0,0,0,0,190,2.6,6,6,16.0,77777,9,999999999,129,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,10.6,70,84200,320,1332,346,194,539,65,19900,43900,9300,1170,130,2.1,7,6,16.0,77777,9,999999999,129,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,9.4,56,84300,569,1332,352,399,724,88,41900,70000,12000,1800,0,0.0,5,5,16.0,77777,9,999999999,120,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.0,51,84500,795,1332,359,563,666,165,58700,66400,19000,3810,290,2.1,4,3,16.0,77777,9,999999999,120,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,11.1,49,84600,980,1332,371,418,103,342,46000,10600,38200,12500,330,4.6,5,4,16.0,77777,9,999999999,120,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,10.6,48,84000,1112,1332,370,476,109,385,52400,11600,42700,14970,0,0.0,4,4,16.0,6706,9,999999999,120,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,10.0,41,84500,1182,1332,378,862,637,295,90000,64000,33100,14390,30,2.1,4,4,16.0,6706,9,999999999,110,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,8.9,35,84500,1185,1332,388,907,839,159,96300,84900,20700,7580,10,1.5,5,5,16.0,6706,9,999999999,110,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,8.9,35,84500,1121,1332,392,844,801,169,88300,80500,20500,6370,360,2.1,7,6,16.0,6706,9,999999999,110,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,10.0,39,84400,994,1332,390,683,577,251,73300,60100,28400,7780,340,1.5,8,6,16.0,6706,9,999999999,100,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,8.3,32,84600,813,1332,405,317,106,252,34800,11100,28000,6880,330,10.3,9,8,16.0,3300,9,999999999,100,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,6.1,35,83800,590,1332,375,355,437,161,37100,42800,18100,3270,20,10.3,7,7,16.0,6096,9,999999999,89,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,6.7,37,84400,341,1332,363,183,483,59,18900,40600,8500,1100,70,3.1,3,3,16.0,77777,9,999999999,89,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.2,45,84300,89,1144,352,28,277,11,3600,17400,2200,310,50,2.1,4,4,16.0,77777,9,999999999,80,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,9.4,62,84300,0,0,342,0,0,0,0,0,0,0,170,3.1,5,4,16.0,77777,9,999999999,80,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,9.4,60,84400,0,0,350,0,0,0,0,0,0,0,210,3.6,7,6,16.0,6706,9,999999999,69,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.7,75,84300,0,0,365,0,0,0,0,0,0,0,320,1.5,9,9,16.0,2134,9,999999999,69,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,84100,0,0,317,0,0,0,0,0,0,0,240,4.1,0,0,16.0,77777,9,999999999,60,0.0790,0,88,0.190,0.0,1.0 +2001,8,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,84200,0,0,319,0,0,0,0,0,0,0,230,4.6,0,0,16.0,77777,9,999999999,69,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,84100,0,0,318,0,0,0,0,0,0,0,220,6.2,0,0,16.0,77777,9,999999999,80,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.9,67,84000,0,0,317,0,0,0,0,0,0,0,210,7.2,0,0,16.0,77777,9,999999999,80,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.3,64,84000,0,0,317,0,0,0,0,0,0,0,220,5.2,0,0,16.0,77777,9,999999999,89,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.3,72,83900,0,0,309,0,0,0,0,0,0,0,220,4.6,0,0,16.0,77777,9,999999999,89,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.8,77,83900,0,0,302,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,84000,70,1011,318,0,0,0,0,0,0,0,260,3.6,3,3,16.0,77777,9,999999999,110,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,9.4,69,84200,316,1333,331,187,500,68,19000,40400,9400,1210,260,3.1,3,3,16.0,77777,9,999999999,110,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,8.9,54,84400,566,1333,346,399,743,83,41100,70800,10900,1620,280,3.1,3,3,16.0,77777,9,999999999,120,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,6.7,38,84600,792,1333,360,590,850,84,61500,84000,11500,1870,350,4.1,3,3,16.0,77777,9,999999999,120,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,5.6,33,84700,977,1333,364,734,873,93,76300,87200,12200,2540,10,2.1,3,3,16.0,77777,9,999999999,129,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,4.4,26,84100,1109,1333,379,829,832,134,88700,84400,18300,5150,30,4.1,5,5,16.0,77777,9,999999999,139,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,4.4,23,84800,1179,1333,391,880,799,171,92600,80500,21200,7840,20,5.2,5,5,16.0,77777,9,999999999,139,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,5.6,25,84700,1182,1333,386,925,893,131,95000,89500,15500,5130,20,5.2,3,3,16.0,77777,9,999999999,129,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,3.9,21,84700,1117,1333,390,879,944,86,91500,94700,11900,3230,10,6.2,3,3,16.0,77777,9,999999999,129,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,5.0,23,84700,990,1333,391,763,911,85,79500,91100,11700,2480,310,5.2,3,3,16.0,77777,9,999999999,129,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,3.3,20,84700,808,1333,389,590,810,98,62600,81100,13300,2350,40,5.7,3,3,16.0,77777,9,999999999,129,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,1.7,18,83900,585,1333,390,402,698,95,42300,67700,12500,1950,10,6.2,5,5,16.0,77777,9,999999999,129,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,2.2,20,84600,336,1333,379,172,388,74,18100,32200,10000,1350,30,4.1,3,3,16.0,77777,9,999999999,120,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.8,26,84500,85,1122,363,27,207,15,3300,10700,2400,280,50,2.6,3,3,16.0,77777,9,999999999,120,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.2,25,84500,0,0,362,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,120,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.2,31,84400,0,0,346,0,0,0,0,0,0,0,150,1.5,3,3,16.0,77777,9,999999999,120,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,2.2,33,84300,0,0,338,0,0,0,0,0,0,0,170,3.1,2,2,16.0,77777,9,999999999,110,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.9,37,84100,0,0,329,0,0,0,0,0,0,0,220,4.6,0,0,16.0,77777,9,999999999,110,0.0790,0,88,0.190,0.0,1.0 +2001,8,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,5.0,41,84200,0,0,328,0,0,0,0,0,0,0,210,5.7,0,0,16.0,77777,9,999999999,120,0.0790,0,88,0.190,0.0,1.0 +2001,8,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.0,43,84200,0,0,325,0,0,0,0,0,0,0,210,5.7,0,0,16.0,77777,9,999999999,120,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.6,46,84100,0,0,323,0,0,0,0,0,0,0,210,5.7,0,0,16.0,77777,9,999999999,120,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.6,46,84100,0,0,323,0,0,0,0,0,0,0,220,6.7,0,0,16.0,77777,9,999999999,129,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.6,51,84000,0,0,316,0,0,0,0,0,0,0,210,6.7,0,0,16.0,77777,9,999999999,129,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.0,51,84000,0,0,313,0,0,0,0,0,0,0,220,2.6,0,0,16.0,77777,9,999999999,129,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,5.6,51,84100,67,1011,316,0,0,0,0,0,0,0,220,4.1,0,0,16.0,77777,9,999999999,129,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,5.6,43,84200,313,1333,328,196,582,60,20200,47200,9100,1090,230,5.2,0,0,16.0,77777,9,999999999,139,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.0,35,84400,563,1333,340,393,719,88,41300,69300,12000,1790,250,5.7,0,0,16.0,77777,9,999999999,139,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,5.0,29,84500,789,1333,354,564,764,111,58800,75800,13800,2480,260,4.1,0,0,16.0,77777,9,999999999,139,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,5.0,25,84600,974,1333,383,690,709,171,73300,72200,20400,5130,230,2.6,3,3,16.0,77777,9,999999999,150,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,-1.1,13,83900,1106,1333,392,779,712,187,83500,73000,22800,7450,330,3.6,3,3,16.0,77777,9,999999999,150,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,-0.6,14,84600,1176,1333,392,831,685,226,88500,69900,26700,11010,320,2.6,3,3,16.0,77777,9,999999999,160,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,-0.6,13,84600,1179,1333,398,841,665,252,88900,67500,29100,12280,300,3.1,3,3,16.0,77777,9,999999999,160,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-0.6,12,84600,1114,1333,404,797,693,216,84500,70600,25400,8670,290,3.6,3,3,16.0,77777,9,999999999,160,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,0.0,13,84500,986,1333,405,700,696,183,74000,70800,21500,5570,230,2.1,3,3,16.0,77777,9,999999999,170,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,-0.6,12,84400,804,1333,401,556,691,138,58700,69600,16600,3310,170,2.1,3,3,16.0,77777,9,999999999,170,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,0.0,13,83500,581,1333,398,385,709,76,40200,68200,10400,1570,110,3.6,2,2,16.0,77777,9,999999999,179,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,2.2,19,84200,331,1333,391,190,553,53,19800,46200,8300,1000,130,2.1,5,5,16.0,77777,9,999999999,179,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,2.2,22,84100,80,1100,383,24,230,11,3000,13400,2000,250,160,4.1,6,6,16.0,77777,9,999999999,189,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.8,28,84000,0,0,363,0,0,0,0,0,0,0,170,4.6,5,5,16.0,7620,9,999999999,189,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,2.8,27,84000,0,0,363,0,0,0,0,0,0,0,200,5.2,4,4,16.0,77777,9,999999999,200,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,2.8,26,84000,0,0,369,0,0,0,0,0,0,0,210,6.2,5,5,16.0,77777,9,999999999,200,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,2.8,29,83500,0,0,341,0,0,0,0,0,0,0,210,6.2,0,0,16.0,77777,9,999999999,209,0.0780,0,88,0.190,0.0,1.0 +2001,8,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.3,31,83800,0,0,338,0,0,0,0,0,0,0,220,6.7,0,0,16.0,77777,9,999999999,200,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,3.3,32,83700,0,0,336,0,0,0,0,0,0,0,220,6.7,0,0,16.0,77777,9,999999999,200,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.8,32,83700,0,0,333,0,0,0,0,0,0,0,230,5.7,0,0,16.0,77777,9,999999999,189,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.8,33,83600,0,0,330,0,0,0,0,0,0,0,220,6.7,0,0,16.0,77777,9,999999999,189,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.8,32,83600,0,0,333,0,0,0,0,0,0,0,220,6.7,0,0,16.0,77777,9,999999999,189,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.8,33,83500,0,0,330,0,0,0,0,0,0,0,220,6.7,0,0,16.0,77777,9,999999999,179,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,2.8,33,83700,64,989,330,11,195,4,1900,11900,1100,150,220,6.7,0,0,16.0,77777,9,999999999,179,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,3.3,29,83900,309,1334,343,197,584,62,20200,47000,9300,1110,220,7.2,0,0,16.0,77777,9,999999999,170,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,3.3,22,84100,560,1334,365,372,625,109,38500,59600,13500,2140,220,6.2,0,0,16.0,77777,9,999999999,170,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,2.8,18,84200,786,1334,381,564,765,113,58700,75800,13900,2490,220,4.1,0,0,16.0,77777,9,999999999,160,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,0.6,14,84300,972,1334,403,709,776,143,74000,77800,17300,3900,230,3.1,3,3,16.0,77777,9,999999999,160,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-1.7,11,83500,1104,1334,409,860,905,109,88800,90600,13600,3600,0,0.0,4,4,16.0,77777,9,999999999,160,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,-2.8,9,84300,1173,1334,416,916,878,143,93900,87900,16500,5160,40,2.6,4,4,16.0,77777,9,999999999,150,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,-3.3,9,84300,1175,1334,422,787,545,306,85100,57000,34700,15100,90,2.6,8,6,16.0,7620,9,999999999,150,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,-4.4,8,84300,1110,1334,425,744,520,310,79500,54300,34200,12550,130,4.1,10,7,16.0,7620,9,999999999,150,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-0.6,12,84300,982,1334,422,241,18,228,28700,1500,27600,10740,70,3.6,9,7,16.0,3962,9,999999999,150,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,2.8,20,84200,800,1334,415,300,53,268,33000,5400,29700,8620,30,7.7,10,9,16.0,2286,9,999999999,150,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,3.9,22,83600,576,1334,425,211,41,193,23100,4000,21400,5410,70,8.2,10,10,16.0,2438,9,999999999,150,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,2.8,21,84200,325,1334,394,101,55,88,11100,4700,10000,2270,80,5.7,9,7,16.0,3962,9,999999999,150,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,3.9,26,84100,76,1056,383,22,143,15,2700,7200,2100,280,140,5.7,9,7,16.0,3962,9,999999999,150,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,3.3,29,84000,0,0,371,0,0,0,0,0,0,0,170,4.1,9,7,16.0,3962,9,999999999,139,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,4.4,30,84000,0,0,368,0,0,0,0,0,0,0,320,4.1,8,5,16.0,6096,9,999999999,139,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,3.9,31,84000,0,0,384,0,0,0,0,0,0,0,20,1.5,9,9,16.0,6096,9,999999999,139,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.0,35,83700,0,0,364,0,0,0,0,0,0,0,260,2.1,9,6,16.0,6096,9,999999999,139,0.0780,0,88,0.190,0.0,1.0 +2001,8,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.6,36,83800,0,0,365,0,0,0,0,0,0,0,200,5.2,10,6,16.0,6096,9,999999999,139,0.0780,0,88,0.190,0.0,1.0 +2001,8,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,5.0,40,83700,0,0,347,0,0,0,0,0,0,0,170,2.1,9,4,16.0,6096,9,999999999,150,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,4.4,34,83700,0,0,355,0,0,0,0,0,0,0,200,4.6,9,4,16.0,6096,9,999999999,150,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,3.9,33,83700,0,0,354,0,0,0,0,0,0,0,220,6.7,7,4,16.0,6096,9,999999999,150,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,3.9,33,83700,0,0,357,0,0,0,0,0,0,0,210,6.7,6,5,16.0,6096,9,999999999,160,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.3,33,83400,0,0,351,0,0,0,0,0,0,0,210,7.2,6,4,16.0,3962,9,999999999,160,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.3,33,83700,62,967,348,10,153,5,1700,9300,1100,180,200,5.7,6,3,16.0,7620,9,999999999,170,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,3.9,29,83800,306,1334,368,199,476,89,20300,37800,11600,1670,220,7.2,6,5,16.0,6706,9,999999999,170,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,3.9,25,84000,557,1334,382,330,382,171,35200,38100,19200,3660,220,7.2,6,5,16.0,6706,9,999999999,170,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,3.3,19,84100,783,1334,404,492,508,194,52500,52000,21900,4490,230,6.2,7,6,16.0,6706,9,999999999,179,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,3.3,18,84100,969,1334,412,640,503,274,67900,52200,29900,8180,210,7.2,8,7,16.0,6096,9,999999999,179,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,4.4,20,83400,1101,1334,414,359,84,289,40100,9000,32600,10980,220,6.7,9,7,16.0,6096,9,999999999,179,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,3.9,18,84100,1170,1334,411,759,475,341,81000,49600,37400,16590,240,2.1,8,5,16.0,6096,9,999999999,189,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,3.9,18,84100,1172,1334,411,829,599,301,89600,62700,34400,14650,260,2.1,8,5,16.0,6096,9,999999999,200,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.0,5.0,24,83800,1107,1334,405,316,30,291,35000,3100,32400,12620,280,20.6,9,8,2.8,2400,9,999999999,209,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,6.7,30,83900,978,1334,393,201,0,201,24100,0,24100,9690,10,5.7,8,7,16.0,6096,9,999999999,220,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,7.2,31,83800,795,1334,390,150,0,150,17900,0,17900,7000,10,6.2,7,6,16.0,6096,9,999999999,220,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,6.1,29,83300,570,1334,393,347,325,208,36400,32500,22500,4660,240,3.1,9,7,16.0,6096,9,999999999,229,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,10.0,40,83800,320,1334,384,73,0,73,8300,0,8300,2680,250,5.2,7,5,16.0,6096,9,999999999,240,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.0,8.0,36,83800,71,1034,387,17,75,13,2000,3200,1800,220,260,7.7,9,7,16.0,3600,9,999999999,250,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,8.9,43,83700,0,0,379,0,0,0,0,0,0,0,230,4.1,9,7,16.0,3658,9,999999999,259,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,8.9,44,83600,0,0,390,0,0,0,0,0,0,0,310,3.1,10,9,16.0,3353,9,999999999,270,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,8.3,42,83500,0,0,389,0,0,0,0,0,0,0,280,3.1,10,9,16.0,6096,9,999999999,270,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,6.7,45,83300,0,0,347,0,0,0,0,0,0,0,180,4.1,5,3,16.0,6096,9,999999999,279,0.0770,0,88,0.190,0.0,1.0 +2001,8,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,7.2,50,83400,0,0,347,0,0,0,0,0,0,0,160,3.6,7,5,16.0,6096,9,999999999,270,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.7,40,83500,0,0,360,0,0,0,0,0,0,0,300,3.6,7,5,16.0,6096,9,999999999,270,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.2,48,83300,0,0,350,0,0,0,0,0,0,0,250,2.1,8,5,16.0,6096,9,999999999,259,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.2,45,83500,0,0,355,0,0,0,0,0,0,0,270,2.6,9,5,16.0,77777,9,999999999,250,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,6.7,45,83500,0,0,359,0,0,0,0,0,0,0,220,3.6,9,7,16.0,6096,9,999999999,240,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,5.6,42,83200,0,0,354,0,0,0,0,0,0,0,210,6.2,8,6,16.0,6706,9,999999999,229,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.1,46,83500,59,946,343,8,135,4,1400,8100,900,150,210,4.1,6,4,16.0,6096,9,999999999,229,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,6.1,38,83600,302,1335,362,174,437,75,18100,34600,10300,1380,230,5.7,6,5,16.0,6096,9,999999999,220,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,7.2,34,83800,554,1335,375,366,595,119,37700,56300,14300,2280,250,3.6,4,4,16.0,6096,9,999999999,209,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,8.9,34,83900,780,1335,391,525,624,160,54800,62100,18300,3640,330,3.1,5,5,16.0,6096,9,999999999,200,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,6.7,28,83900,966,1335,395,672,667,188,70800,67600,21800,5480,330,2.1,6,6,16.0,6706,9,999999999,189,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,7.2,28,83300,1098,1335,409,674,410,336,71300,42700,36100,13220,320,3.1,8,8,16.0,6706,9,999999999,179,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,5.6,24,83900,1167,1335,422,868,763,199,93100,78300,24500,9440,260,3.1,9,9,16.0,6706,9,999999999,179,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,6.1,23,83900,1169,1335,405,883,821,162,93300,82900,20600,7200,290,3.1,5,5,16.0,77777,9,999999999,179,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,5.6,21,83900,1103,1335,407,814,747,195,86900,76400,23600,7640,330,2.1,5,5,16.0,77777,9,999999999,170,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,5.0,20,83900,974,1335,434,676,649,202,71000,65600,23100,5920,360,2.1,9,9,16.0,6706,9,999999999,170,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,5.6,20,83900,791,1335,438,555,738,117,59200,74700,14900,2810,30,5.2,9,9,16.0,6706,9,999999999,170,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,6.1,24,83900,565,1335,426,378,575,134,40000,55900,16300,2650,360,5.2,9,9,16.0,3353,9,999999999,160,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,8.3,29,83900,314,1335,423,41,0,41,4900,0,4900,1680,10,6.7,9,9,16.0,3658,9,999999999,160,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,7.8,32,83800,67,990,410,12,55,10,1600,2300,1400,170,10,3.6,9,9,16.0,6706,9,999999999,150,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,8.3,36,83800,0,0,404,0,0,0,0,0,0,0,10,3.1,9,9,16.0,4267,9,999999999,150,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,8.3,36,83800,0,0,404,0,0,0,0,0,0,0,240,3.6,9,9,16.0,6706,9,999999999,150,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,8.3,42,83700,0,0,389,0,0,0,0,0,0,0,270,1.5,9,9,16.0,6706,9,999999999,139,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,7.2,39,83500,0,0,380,0,0,0,0,0,0,0,220,5.2,8,8,16.0,6096,9,999999999,139,0.0770,0,88,0.190,0.0,1.0 +2001,8,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.8,44,83700,0,0,383,0,0,0,0,0,0,0,220,6.2,9,9,16.0,6096,9,999999999,139,0.0770,0,88,0.190,0.0,1.0 +2001,8,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.8,45,83600,0,0,359,0,0,0,0,0,0,0,220,6.7,5,5,16.0,77777,9,999999999,150,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.2,43,83600,0,0,352,0,0,0,0,0,0,0,230,5.2,3,3,16.0,77777,9,999999999,150,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,7.2,50,83500,0,0,339,0,0,0,0,0,0,0,240,4.6,3,2,16.0,77777,9,999999999,150,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,7.2,50,83500,0,0,347,0,0,0,0,0,0,0,240,3.1,8,5,16.0,6096,9,999999999,160,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.7,47,83400,0,0,352,0,0,0,0,0,0,0,200,2.6,7,6,16.0,5486,9,999999999,160,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.8,50,83700,57,924,345,7,75,4,1000,4300,800,110,220,4.1,5,3,16.0,6706,9,999999999,160,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.2,43,83800,299,1336,358,157,253,101,16400,20000,11900,2040,220,4.1,7,5,16.0,6706,9,999999999,170,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,7.8,44,83900,551,1336,365,183,19,175,20500,1500,19900,6450,220,5.2,8,6,16.0,6706,9,999999999,170,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,8.3,42,84000,778,1336,371,289,61,253,31700,6200,28100,8060,270,3.6,7,6,16.0,6706,9,999999999,170,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,7.2,33,84100,963,1336,380,653,552,254,69700,57300,28300,7460,0,0.0,7,5,16.0,6706,9,999999999,179,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,6.1,27,83600,1095,1336,394,718,543,271,77600,56700,30900,10430,20,5.2,8,6,16.0,6706,9,999999999,179,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,6.1,25,84200,1164,1336,396,740,511,294,80200,53500,33500,13870,40,5.2,6,5,16.0,6706,9,999999999,189,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,6.1,25,84200,1166,1336,396,745,486,321,80100,50800,35700,15280,30,5.2,7,5,16.0,6706,9,999999999,209,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,6.1,26,84100,1099,1336,393,597,287,360,65100,31100,39400,13570,120,2.6,8,5,16.0,6706,9,999999999,220,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,6.1,26,84100,970,1336,407,315,42,285,34800,4300,31700,10630,130,1.5,10,8,16.0,3353,9,999999999,229,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,6.1,26,84100,786,1336,416,139,0,139,16600,0,16600,6540,200,3.6,10,9,16.0,3353,9,999999999,240,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.0,49,83600,560,1336,399,63,0,63,7700,0,7700,2910,190,9.8,10,10,16.0,3658,9,999999999,259,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,9.4,47,84000,308,1336,366,27,0,27,3300,0,3300,1150,210,5.7,9,5,16.0,3658,9,999999999,270,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,8.9,47,83900,63,968,363,14,99,11,1900,4800,1600,210,240,6.2,9,5,16.0,6096,9,999999999,279,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,9.4,50,83900,0,0,361,0,0,0,0,0,0,0,230,6.2,7,5,16.0,6096,9,999999999,300,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,10.0,54,83900,0,0,362,0,0,0,0,0,0,0,240,4.6,8,6,16.0,6096,9,999999999,309,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,9.4,54,83900,0,0,376,0,0,0,0,0,0,0,200,4.6,9,9,16.0,3048,9,999999999,320,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.0,53,83700,0,0,394,0,0,0,0,0,0,0,300,3.6,10,10,16.0,2896,9,999999999,329,0.0760,0,88,0.190,0.0,1.0 +2001,8,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.1,65,83800,0,0,373,0,0,0,0,0,0,0,0,0.0,10,9,16.0,2743,9,999999999,320,0.0760,0,88,0.190,0.0,1.0 +2001,8,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.7,70,83700,0,0,350,0,0,0,0,0,0,0,280,4.6,8,5,16.0,3962,9,999999999,309,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.7,75,83700,0,0,344,0,0,0,0,0,0,0,290,3.6,10,5,16.0,6096,9,999999999,300,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.7,75,83700,0,0,351,0,0,0,0,0,0,0,300,3.1,9,7,16.0,6096,9,999999999,290,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.1,72,83700,0,0,344,0,0,0,0,0,0,0,260,2.1,8,5,16.0,77777,9,999999999,279,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,83700,0,0,341,0,0,0,0,0,0,0,200,2.6,9,6,16.0,6096,9,999999999,270,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,83800,54,902,336,7,171,2,1500,10200,800,80,200,2.1,10,6,16.0,6096,9,999999999,259,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.0,60,84000,295,1336,351,194,604,60,19800,47800,9200,1070,240,4.1,9,5,16.0,7620,9,999999999,250,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.0,53,84100,548,1336,365,367,545,143,38400,52500,16800,2830,40,1.5,9,6,16.0,6706,9,999999999,240,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,10.6,57,84100,775,1336,366,322,92,269,35400,9300,30000,8430,70,2.1,10,7,16.0,3962,9,999999999,229,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,11.1,57,84200,960,1336,370,171,0,171,20700,0,20700,8420,90,2.1,9,7,16.0,3962,9,999999999,220,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,11.7,55,83800,1092,1336,369,526,187,373,57900,19900,41600,13930,140,2.6,7,5,16.0,6706,9,999999999,209,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,10.6,45,84200,1161,1336,373,831,631,282,87000,63500,31600,12690,140,4.1,4,3,16.0,6706,9,999999999,220,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,8.3,35,84200,1162,1336,382,888,839,157,94200,84800,20200,6830,0,0.0,4,4,16.0,6706,9,999999999,229,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,7.8,30,84200,1095,1336,387,837,854,135,89400,86600,18200,4960,100,4.6,3,3,16.0,6706,9,999999999,240,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,6.7,26,84100,965,1336,394,675,642,210,70600,64700,23700,6020,150,3.1,4,4,16.0,6706,9,999999999,250,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,5.6,24,84100,781,1336,395,488,508,190,52000,52000,21600,4380,230,3.1,4,4,14.4,7315,9,999999999,250,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,6.1,24,83400,555,1336,417,298,307,171,31700,30600,19000,3660,320,3.6,8,8,16.0,7315,9,999999999,259,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,6.7,26,84100,303,1336,391,162,460,58,16700,36800,8300,1050,10,4.1,3,3,16.0,77777,9,999999999,270,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,7.2,35,83900,59,924,369,13,158,8,2000,8900,1400,190,20,3.1,3,3,16.0,77777,9,999999999,279,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,7.2,38,83900,0,0,363,0,0,0,0,0,0,0,130,2.1,3,3,16.0,77777,9,999999999,279,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,6.7,38,84000,0,0,366,0,0,0,0,0,0,0,180,4.6,5,5,16.0,77777,9,999999999,290,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,6.7,45,83900,0,0,352,0,0,0,0,0,0,0,150,2.6,5,5,16.0,77777,9,999999999,300,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.8,45,83500,0,0,339,0,0,0,0,0,0,0,220,6.2,0,0,16.0,77777,9,999999999,309,0.0750,0,88,0.190,0.0,1.0 +2001,8,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,7.8,45,83800,0,0,339,0,0,0,0,0,0,0,210,6.2,0,0,16.0,77777,9,999999999,300,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.2,45,83800,0,0,335,0,0,0,0,0,0,0,220,6.7,0,0,16.0,77777,9,999999999,290,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,6.1,43,83700,0,0,332,0,0,0,0,0,0,0,220,7.2,0,0,16.0,77777,9,999999999,279,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,5.6,46,83600,0,0,323,0,0,0,0,0,0,0,230,6.2,0,0,16.0,77777,9,999999999,270,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.0,43,83600,0,0,325,0,0,0,0,0,0,0,220,7.7,0,0,16.0,77777,9,999999999,259,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.0,46,83400,0,0,320,0,0,0,0,0,0,0,230,6.2,0,0,16.0,77777,9,999999999,250,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,0.0,32,83600,52,880,315,6,151,2,1300,9000,700,80,220,6.2,0,0,16.0,77777,9,999999999,240,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.0,27,83800,292,1337,327,186,558,64,18900,43700,9300,1120,230,4.6,0,0,16.0,77777,9,999999999,229,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,0.0,20,84000,544,1337,350,368,658,99,38200,62600,12700,1950,230,5.2,0,0,16.0,77777,9,999999999,220,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,0.0,17,84100,772,1337,363,553,765,110,57400,75700,13600,2400,250,4.6,0,0,16.0,77777,9,999999999,209,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,0.0,14,84300,957,1337,393,672,691,176,71100,70200,20700,5080,310,3.6,3,3,16.0,77777,9,999999999,200,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,-0.6,12,83500,1089,1337,401,780,712,198,83000,72700,23600,7450,340,4.1,3,3,16.0,77777,9,999999999,189,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-1.1,12,84200,1158,1337,403,886,872,129,91100,87300,15200,4600,350,3.1,3,3,16.0,77777,9,999999999,179,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,-1.1,12,84200,1159,1337,400,924,863,174,96800,86800,21400,7290,10,2.1,3,3,16.0,77777,9,999999999,170,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-1.1,12,84200,1092,1337,409,679,424,332,71900,44200,35700,12800,20,1.5,6,5,16.0,77777,9,999999999,160,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-1.1,12,84200,961,1337,406,606,476,263,64400,49400,28800,7710,30,1.5,5,4,16.0,7315,9,999999999,150,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-1.1,12,84100,776,1337,413,410,277,248,43900,29300,26800,6080,50,1.5,8,6,16.0,7315,9,999999999,139,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,-0.6,13,83300,549,1337,413,131,0,131,15000,0,15000,5290,60,5.7,9,7,16.0,7315,9,999999999,129,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,-0.6,15,84100,297,1337,393,94,44,84,10300,3700,9400,2110,70,3.6,8,5,16.0,4267,9,999999999,120,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,1.7,18,84000,54,902,387,1,0,1,100,0,100,40,80,2.1,5,4,16.0,4267,9,999999999,110,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.0,2.0,20,84000,0,0,401,0,0,0,0,0,0,0,10,9.3,9,8,16.1,3000,9,999999999,100,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.7,19,84000,0,0,401,0,0,0,0,0,0,0,110,1.5,9,8,16.0,3353,9,999999999,89,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,2.2,22,84000,0,0,402,0,0,0,0,0,0,0,70,3.6,10,9,16.0,3962,9,999999999,80,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,2.8,24,83600,0,0,374,0,0,0,0,0,0,0,270,6.2,8,5,16.0,3962,9,999999999,69,0.0750,0,88,0.190,0.0,1.0 +2001,8,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,2.2,20,84000,0,0,411,0,0,0,0,0,0,0,350,4.1,10,9,16.0,3353,9,999999999,80,0.0750,0,88,0.190,0.0,1.0 +2001,8,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,3.3,27,83900,0,0,367,0,0,0,0,0,0,0,260,3.1,8,4,16.0,7315,9,999999999,89,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,5.0,33,83800,0,0,366,0,0,0,0,0,0,0,280,3.6,8,5,16.0,7315,9,999999999,89,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.2,45,83800,0,0,355,0,0,0,0,0,0,0,20,4.1,5,5,16.0,3962,9,999999999,100,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,9.4,52,83800,0,0,358,0,0,0,0,0,0,0,20,3.6,6,5,16.0,77777,9,999999999,110,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.1,63,83700,0,0,367,0,0,0,0,0,0,0,240,3.1,9,8,16.0,3353,9,999999999,110,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.6,55,84000,49,858,375,1,0,1,100,0,100,40,230,5.7,9,8,16.0,3353,9,999999999,120,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,4.4,29,84100,288,1337,384,27,0,27,3300,0,3300,1130,130,4.6,8,8,16.0,3048,9,999999999,129,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.8,42,84100,541,1337,378,64,0,64,7800,0,7800,2910,170,5.7,8,8,16.0,3048,9,999999999,129,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.0,8.0,43,84200,768,1337,367,92,0,92,11300,0,11300,4530,110,12.3,8,6,14.5,4200,9,999999999,139,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,7.8,42,84200,954,1337,367,178,0,178,21400,0,21400,8690,190,7.2,8,6,16.0,4267,9,999999999,139,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,7.8,41,83900,1086,1337,370,266,18,251,31800,1500,30600,11980,170,10.8,8,6,16.0,6706,9,999999999,150,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,7.2,33,84300,1155,1337,377,625,289,375,68500,31400,41300,16070,150,10.3,4,4,16.0,6706,9,999999999,150,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,6.7,30,84400,1155,1337,383,811,617,276,84800,62200,31000,12160,150,9.3,5,4,16.0,6706,9,999999999,150,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,6.1,28,84400,1088,1337,387,761,627,249,79600,63200,28000,9100,160,7.2,6,5,16.0,6706,9,999999999,160,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,5.6,26,84400,957,1337,384,406,101,334,44700,10400,37300,11920,140,6.7,3,3,16.0,6096,9,999999999,160,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,3.9,22,84400,771,1337,387,531,619,173,54900,61200,19500,3830,130,5.2,3,3,16.0,6096,9,999999999,160,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,5.0,24,84400,544,1337,391,360,707,72,37400,67200,10000,1460,140,6.7,8,5,16.0,77777,9,999999999,160,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,5.0,26,84300,291,1337,380,169,620,34,17700,51000,6600,720,150,5.7,3,3,16.0,77777,9,999999999,160,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.9,32,84100,51,858,354,7,117,4,1200,6900,800,150,140,4.1,3,3,16.0,77777,9,999999999,170,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,3.3,38,84100,0,0,323,0,0,0,0,0,0,0,140,6.2,0,0,16.0,77777,9,999999999,170,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.3,39,84000,0,0,321,0,0,0,0,0,0,0,180,5.2,0,0,16.0,77777,9,999999999,170,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,4.4,44,84100,0,0,330,0,0,0,0,0,0,0,180,4.6,2,2,16.0,77777,9,999999999,170,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.0,51,83900,0,0,313,0,0,0,0,0,0,0,180,5.2,0,0,16.0,77777,9,999999999,170,0.0740,0,88,0.190,0.0,1.0 +2001,8,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,4.4,43,84000,0,0,322,0,0,0,0,0,0,0,190,4.6,0,0,16.0,77777,9,999999999,170,0.0740,0,88,0.190,0.0,1.0 +2001,8,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.0,43,84000,0,0,325,0,0,0,0,0,0,0,210,6.2,0,0,16.0,77777,9,999999999,170,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,4.4,43,84000,0,0,322,0,0,0,0,0,0,0,210,5.7,0,0,16.0,77777,9,999999999,170,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,4.4,46,83900,0,0,317,0,0,0,0,0,0,0,190,4.1,0,0,16.0,77777,9,999999999,170,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.9,41,83900,0,0,321,0,0,0,0,0,0,0,220,6.7,0,0,16.0,77777,9,999999999,170,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,3.3,42,83800,0,0,316,0,0,0,0,0,0,0,210,6.7,0,0,16.0,77777,9,999999999,170,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.9,46,83900,47,836,314,4,99,2,900,5800,500,80,220,5.2,0,0,12.8,77777,9,999999999,170,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,4.4,40,84100,285,1338,327,162,402,76,16700,30900,10100,1400,220,7.2,0,0,16.0,77777,9,999999999,170,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,5.0,34,84300,538,1338,350,383,772,72,39700,73200,10300,1450,200,4.1,1,1,16.0,77777,9,999999999,170,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,4.4,25,84500,765,1338,368,560,827,86,59700,82600,12300,2040,210,4.1,1,1,16.0,77777,9,999999999,170,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,0.0,15,84600,951,1338,371,691,794,125,72900,79900,16000,3420,190,3.6,0,0,16.0,77777,9,999999999,170,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,-1.7,12,83800,1083,1338,385,780,742,178,83600,76100,21900,6640,210,4.6,1,1,16.0,77777,9,999999999,170,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,-1.7,11,84600,1151,1338,400,843,775,175,88200,77900,21000,7120,210,1.5,3,3,16.0,77777,9,999999999,170,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-1.1,12,84600,1151,1338,403,870,833,151,92400,84300,19700,6360,210,2.6,3,3,16.0,77777,9,999999999,160,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,-0.6,11,84500,1083,1338,410,831,884,113,85700,88500,13900,3440,80,4.6,3,3,16.0,77777,9,999999999,160,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,-0.6,11,84500,952,1338,410,720,874,97,74700,87200,12600,2460,50,2.6,3,3,16.0,77777,9,999999999,160,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,0.0,12,84500,766,1338,411,564,861,70,59100,84900,10300,1710,10,3.1,3,3,16.0,77777,9,999999999,160,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-1.1,11,83600,538,1338,413,370,787,52,38900,74600,8800,1230,80,2.1,6,5,16.0,77777,9,999999999,160,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,3.9,20,84300,285,1338,402,159,586,34,16600,47900,6400,710,150,6.7,6,6,16.0,77777,9,999999999,160,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,3.9,24,84200,47,836,381,6,124,3,1100,7200,700,110,170,5.2,4,4,16.0,77777,9,999999999,150,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,3.9,27,84100,0,0,367,0,0,0,0,0,0,0,170,5.2,3,3,16.0,77777,9,999999999,150,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,4.4,32,84000,0,0,342,0,0,0,0,0,0,0,160,5.2,0,0,16.0,77777,9,999999999,150,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,5.6,32,84000,0,0,351,0,0,0,0,0,0,0,180,6.7,0,0,16.0,77777,9,999999999,150,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.1,39,83700,0,0,346,0,0,0,0,0,0,0,170,6.7,2,1,16.0,77777,9,999999999,150,0.0730,0,88,0.190,0.0,1.0 +2001,8,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,6.7,42,83900,0,0,344,0,0,0,0,0,0,0,170,5.7,1,1,16.0,77777,9,999999999,150,0.0730,0,88,0.190,0.0,1.0 +2001,8,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,6.1,38,83900,0,0,342,0,0,0,0,0,0,0,190,7.7,0,0,16.0,77777,9,999999999,150,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,6.1,39,83900,0,0,339,0,0,0,0,0,0,0,210,6.2,0,0,16.0,77777,9,999999999,150,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.1,46,83800,0,0,327,0,0,0,0,0,0,0,240,6.2,0,0,16.0,77777,9,999999999,150,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,6.1,46,83800,0,0,327,0,0,0,0,0,0,0,230,7.2,0,0,16.0,77777,9,999999999,150,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,5.0,46,83700,0,0,320,0,0,0,0,0,0,0,230,6.2,0,0,16.0,77777,9,999999999,150,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,4.4,44,83800,45,814,320,4,104,2,900,6100,600,80,220,3.6,0,0,16.0,77777,9,999999999,150,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,5.6,37,84100,281,1338,339,181,445,88,18400,33900,11300,1660,230,2.6,0,0,16.0,77777,9,999999999,150,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,5.6,32,84200,534,1338,358,348,584,114,35700,54800,13800,2170,240,4.1,1,1,16.0,77777,9,999999999,150,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,5.0,25,84300,762,1338,383,514,674,129,54200,67600,15600,2960,240,3.6,3,3,16.0,77777,9,999999999,150,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,4.4,20,84400,948,1338,399,666,722,154,71100,73700,18800,4440,200,2.1,3,3,16.0,77777,9,999999999,150,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,2.2,15,83700,1080,1338,405,767,694,206,81400,70700,24200,7520,160,4.1,3,3,16.0,77777,9,999999999,160,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,-0.6,12,84400,1148,1338,410,874,860,135,89700,86100,15700,4510,130,5.2,4,4,16.0,77777,9,999999999,160,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,0.6,12,84400,1148,1338,418,894,779,224,94900,79400,26700,9790,110,4.1,5,4,16.0,77777,9,999999999,170,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,0.6,12,84300,1079,1338,415,339,72,281,37500,7300,31600,11790,110,5.7,3,3,16.0,77777,9,999999999,170,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,-0.6,12,84200,947,1338,407,474,184,343,51700,19500,37900,10510,160,6.2,4,4,16.0,77777,9,999999999,179,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,1.1,14,84200,761,1338,414,420,289,255,44800,30500,27400,6240,150,5.7,6,6,16.0,77777,9,999999999,179,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,2.2,15,83300,533,1338,414,109,0,109,12600,0,12600,4530,160,8.2,5,5,16.0,77777,9,999999999,189,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,0.6,17,84100,279,1338,395,153,378,75,15800,28800,9800,1380,160,6.7,8,6,16.0,6706,9,999999999,189,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,0.6,18,84000,43,792,383,2,0,2,300,0,300,80,170,8.2,6,5,16.0,6706,9,999999999,200,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,-1.1,18,83900,0,0,372,0,0,0,0,0,0,0,180,7.2,6,5,16.0,6706,9,999999999,200,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,-2.8,16,83900,0,0,361,0,0,0,0,0,0,0,190,8.2,3,3,16.0,6706,9,999999999,209,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-3.3,16,83800,0,0,361,0,0,0,0,0,0,0,190,9.3,5,5,16.0,77777,9,999999999,209,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,-1.7,19,83500,0,0,354,0,0,0,0,0,0,0,180,9.3,2,2,16.0,77777,9,999999999,220,0.0720,0,88,0.190,0.0,1.0 +2001,8,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,2.2,28,83700,0,0,351,0,0,0,0,0,0,0,170,9.3,2,2,16.0,6096,9,999999999,220,0.0720,0,88,0.190,0.0,1.0 +2001,8,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,2.2,28,83600,0,0,351,0,0,0,0,0,0,0,160,7.2,2,2,16.0,6096,9,999999999,220,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,2.2,30,83500,0,0,341,0,0,0,0,0,0,0,160,6.2,2,1,16.0,6096,9,999999999,229,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.2,31,83500,0,0,338,0,0,0,0,0,0,0,160,6.2,1,1,16.0,77777,9,999999999,229,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.2,31,83500,0,0,338,0,0,0,0,0,0,0,210,5.2,1,1,16.0,77777,9,999999999,229,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.2,36,83300,0,0,333,0,0,0,0,0,0,0,180,5.7,3,3,16.0,77777,9,999999999,229,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.2,34,83500,42,792,338,2,15,1,200,700,200,20,260,3.1,3,3,16.0,77777,9,999999999,240,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,4.4,37,83600,277,1339,349,100,70,86,11000,5800,9800,2090,290,6.2,5,4,16.0,77777,9,999999999,240,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,4.4,32,83700,531,1339,357,355,584,123,36300,54500,14600,2290,280,5.7,3,3,16.0,77777,9,999999999,240,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,3.9,29,83800,759,1339,362,540,753,112,57500,75900,14400,2610,300,4.6,3,3,16.0,77777,9,999999999,240,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,3.9,24,83900,945,1339,378,647,667,175,68300,67700,20500,4940,310,4.1,3,3,16.0,77777,9,999999999,240,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,3.9,21,83300,1077,1339,390,767,706,199,81600,72000,23600,7220,280,2.6,3,3,16.0,77777,9,999999999,250,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,2.2,16,84000,1144,1339,403,831,631,291,86600,63300,32400,12250,250,2.6,5,4,16.0,77777,9,999999999,250,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,1.7,15,84000,1144,1339,411,411,120,309,46000,12900,35000,12670,300,1.5,9,6,16.0,77777,9,999999999,250,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,6.1,21,84000,1075,1339,415,684,454,319,72500,47300,34500,11740,350,8.8,9,6,16.0,7620,9,999999999,259,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,2.2,15,84000,943,1339,420,468,184,338,51100,19400,37300,10300,350,7.2,10,7,16.0,7315,9,999999999,259,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,2.8,18,83900,756,1339,403,447,366,240,47900,38600,26100,5780,300,5.2,8,5,16.0,7315,9,999999999,259,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,3.3,21,83200,527,1339,400,114,0,114,13200,0,13200,4660,280,8.8,9,7,16.0,7315,9,999999999,270,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,2.8,21,83800,272,1339,412,156,426,70,16200,32100,9700,1280,240,6.2,10,9,16.0,6706,9,999999999,270,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,2.8,24,83700,39,770,396,3,122,1,900,7000,500,40,190,3.6,10,9,16.0,6706,9,999999999,270,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.3,33,83500,0,0,374,0,0,0,0,0,0,0,160,4.6,10,9,16.0,6706,9,999999999,279,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,4.4,33,83600,0,0,360,0,0,0,0,0,0,0,210,4.6,7,5,16.0,77777,9,999999999,279,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.3,35,83400,0,0,348,0,0,0,0,0,0,0,180,4.1,8,5,16.0,77777,9,999999999,279,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.3,31,83200,0,0,359,0,0,0,0,0,0,0,210,6.2,7,5,16.0,77777,9,999999999,290,0.0710,0,88,0.190,0.0,1.0 +2001,8,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.3,33,83300,0,0,353,0,0,0,0,0,0,0,210,6.7,8,5,16.0,77777,9,999999999,279,0.0710,0,88,0.190,0.0,1.0 +2001,8,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,3.3,34,83300,0,0,350,0,0,0,0,0,0,0,210,7.7,5,5,16.0,77777,9,999999999,279,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.8,36,83200,0,0,336,0,0,0,0,0,0,0,220,6.7,2,2,16.0,77777,9,999999999,279,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,2.8,37,83100,0,0,323,0,0,0,0,0,0,0,210,6.2,0,0,16.0,77777,9,999999999,279,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,2.8,37,83200,0,0,323,0,0,0,0,0,0,0,210,6.2,0,0,16.0,77777,9,999999999,279,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.8,38,83000,0,0,339,0,0,0,0,0,0,0,210,5.7,5,5,16.0,77777,9,999999999,279,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.8,39,83200,40,770,337,2,87,1,700,5000,400,40,230,5.7,5,5,16.0,77777,9,999999999,279,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,3.9,37,83400,274,1340,343,166,420,80,16900,31700,10500,1490,220,6.2,3,3,16.0,77777,9,999999999,270,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,4.4,28,83600,528,1340,374,356,679,88,37200,64400,11800,1740,240,4.6,5,5,16.0,77777,9,999999999,270,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,3.3,23,83700,756,1340,384,541,766,108,56200,75600,13400,2320,270,2.1,5,5,16.0,77777,9,999999999,270,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,2.8,19,83800,942,1340,397,666,734,149,71200,75000,18300,4260,180,1.5,5,5,16.0,77777,9,999999999,270,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,1.7,15,83100,1073,1340,408,761,712,190,81200,72700,22800,6860,90,3.1,5,5,16.0,77777,9,999999999,270,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,0.6,13,83900,1141,1340,412,807,673,232,85300,68400,26900,9870,50,7.2,5,5,16.0,77777,9,999999999,259,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,0.6,13,83800,1140,1340,412,822,695,229,87000,70700,26700,9730,50,5.7,5,5,16.0,77777,9,999999999,259,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,1.7,14,83900,1071,1340,441,801,824,140,84800,83200,18100,4750,60,5.7,9,9,16.0,7620,9,999999999,259,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,0.6,14,83800,938,1340,433,679,690,195,71100,69600,22300,5360,30,5.7,9,9,16.0,7620,9,999999999,259,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,2.2,17,83800,750,1340,426,386,242,250,42100,25100,27900,6520,50,11.3,9,9,16.0,4200,9,999999999,250,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,1.1,17,83100,521,1340,406,233,121,186,25100,11800,20500,4340,80,7.7,8,8,16.0,4267,9,999999999,250,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,2.2,20,83800,266,1340,411,95,91,77,10300,7100,8900,1660,120,2.1,9,9,16.0,6706,9,999999999,250,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,3.3,27,83700,36,726,391,2,77,1,600,4400,300,40,170,5.7,9,9,16.0,6706,9,999999999,240,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,3.9,30,83600,0,0,386,0,0,0,0,0,0,0,180,5.7,9,9,16.0,6706,9,999999999,240,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,4.4,32,83600,0,0,384,0,0,0,0,0,0,0,180,4.6,9,9,16.0,6706,9,999999999,240,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.9,35,83600,0,0,375,0,0,0,0,0,0,0,20,4.6,9,9,16.0,6706,9,999999999,229,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,8.3,47,83300,0,0,373,0,0,0,0,0,0,0,10,5.7,8,8,16.0,6706,9,999999999,229,0.0700,0,88,0.190,0.0,1.0 +2001,8,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,9.4,54,83500,0,0,376,0,0,0,0,0,0,0,40,6.7,9,9,16.0,6096,9,999999999,229,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,8.3,56,83500,0,0,366,0,0,0,0,0,0,0,20,4.6,10,9,16.0,6096,9,999999999,220,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.2,57,83500,0,0,357,0,0,0,0,0,0,0,350,3.6,10,9,16.0,6096,9,999999999,209,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.2,60,83500,0,0,354,0,0,0,0,0,0,0,360,4.1,10,9,16.0,6096,9,999999999,209,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,6.7,62,83500,0,0,323,0,0,0,0,0,0,0,10,4.6,3,3,16.0,77777,9,999999999,200,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.7,64,83600,0,0,318,0,0,0,0,0,0,0,20,3.1,2,2,16.0,77777,9,999999999,189,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.7,66,83600,38,748,321,2,88,1,700,5100,400,40,0,0.0,4,4,16.0,7620,9,999999999,189,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.7,58,83800,270,1340,334,167,449,76,17100,33700,10300,1410,360,1.5,6,5,16.0,77777,9,999999999,179,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,7.2,53,83800,524,1340,342,364,698,90,37900,66000,12100,1770,0,0.0,6,5,16.0,77777,9,999999999,179,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.8,50,83900,753,1340,350,508,674,129,53600,67400,15600,2930,40,1.5,6,5,16.0,77777,9,999999999,170,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,8.3,45,84000,939,1340,362,654,704,160,69500,71700,19200,4510,80,1.5,6,5,16.0,77777,9,999999999,160,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,9.4,44,83600,1070,1340,372,780,766,167,81100,76700,19700,5360,120,3.6,6,5,16.0,77777,9,999999999,160,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,10.0,41,84000,1137,1340,381,825,733,201,88100,75000,24300,8550,190,4.6,6,5,16.0,77777,9,999999999,160,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,10.0,35,84100,1136,1340,396,870,851,147,92500,86100,19300,5890,120,3.6,6,5,16.0,77777,9,999999999,160,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,9.4,32,84100,1066,1340,424,789,729,208,83500,74100,24400,7320,130,6.2,10,9,16.0,7315,9,999999999,160,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,9.4,36,84000,933,1340,424,485,238,319,53100,25200,35500,9610,230,9.8,10,10,12.8,3048,9,999999999,160,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.3,54,83800,745,1340,383,88,0,88,10800,0,10800,4310,250,10.8,10,9,16.0,2286,9,999999999,160,0.0700,0,88,0.190,1.0,1.0 +2001,8,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,5.6,28,83400,515,1340,392,57,0,57,6900,0,6900,2590,130,6.7,9,7,16.0,6706,9,999999999,160,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,10.6,48,84000,260,1340,395,145,396,69,15000,29200,9400,1270,210,4.1,10,9,16.0,3353,9,999999999,160,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,8.3,49,83900,33,704,356,0,0,0,0,0,0,0,170,5.2,7,5,16.0,6706,9,999999999,160,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,8.9,51,83900,0,0,360,0,0,0,0,0,0,0,220,6.2,8,6,16.0,6706,9,999999999,160,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,8.3,47,83800,0,0,381,0,0,0,0,0,0,0,210,9.8,9,9,16.0,2438,9,999999999,160,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.2,45,83800,0,0,376,0,0,0,0,0,0,0,200,9.8,10,9,16.0,6096,9,999999999,150,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.8,47,83500,0,0,356,0,0,0,0,0,0,0,240,4.6,6,5,16.0,77777,9,999999999,150,0.0700,0,88,0.190,0.0,1.0 +2001,8,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,7.2,53,83600,0,0,334,0,0,0,0,0,0,0,200,2.1,2,2,16.0,6096,9,999999999,170,0.0700,0,88,0.190,0.0,1.0 +2001,8,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.7,58,83500,0,0,321,0,0,0,0,0,0,0,110,4.6,1,1,16.0,77777,9,999999999,179,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.1,51,83500,0,0,319,0,0,0,0,0,0,0,170,5.2,0,0,16.0,77777,9,999999999,189,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.1,55,83500,0,0,314,0,0,0,0,0,0,0,180,4.6,0,0,16.0,77777,9,999999999,209,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.8,60,83600,0,0,319,0,0,0,0,0,0,0,180,2.1,0,0,16.0,77777,9,999999999,220,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.0,72,83500,0,0,329,0,0,0,0,0,0,0,200,3.1,3,2,16.0,77777,9,999999999,229,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,83600,36,726,335,1,18,1,300,1000,200,30,250,5.2,5,4,16.0,6706,9,999999999,250,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,9.4,62,83700,266,1341,345,103,99,83,11100,7700,9600,1790,260,4.1,7,5,16.0,6706,9,999999999,259,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,9.4,56,83800,521,1341,352,336,478,150,34800,45400,17100,2970,260,4.1,6,5,16.0,6706,9,999999999,270,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,8.9,49,83900,749,1341,360,350,141,271,37900,14600,29800,7060,300,2.6,6,5,16.0,3962,9,999999999,279,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,7.2,38,84000,935,1341,369,552,370,294,59900,39800,32000,8380,330,2.1,6,5,16.0,3962,9,999999999,300,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,7.2,33,83500,1067,1341,383,600,296,365,65200,32000,39600,12860,10,2.1,8,6,16.0,7620,9,999999999,309,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,7.8,32,84000,1134,1341,387,807,589,308,86600,61500,34400,13080,50,2.6,8,5,16.0,6706,9,999999999,309,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,8.3,32,84000,1132,1341,390,351,36,321,38900,3700,35800,14120,30,2.6,7,5,16.0,3962,9,999999999,300,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,7.2,30,84000,1062,1341,392,129,0,129,16200,0,16200,6780,0,0.0,9,6,16.0,3962,9,999999999,300,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,7.2,31,83900,928,1341,390,479,232,318,52400,24500,35400,9530,230,8.2,8,6,16.0,3962,9,999999999,300,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,7.2,30,84000,739,1341,389,132,0,132,15700,0,15700,6090,290,4.6,7,5,16.0,4267,9,999999999,300,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,8.3,37,83400,509,1341,413,72,0,72,8600,0,8600,3160,320,5.2,10,10,16.0,3048,9,999999999,290,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,8.9,41,83900,253,1341,396,47,0,47,5400,0,5400,1760,240,5.7,9,9,16.0,3353,9,999999999,290,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,8.9,47,83800,29,659,360,0,0,0,0,0,0,0,190,5.7,4,4,16.0,6706,9,999999999,290,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,8.9,49,83800,0,0,357,0,0,0,0,0,0,0,210,7.2,5,4,16.0,6706,9,999999999,279,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,9.4,58,83700,0,0,347,0,0,0,0,0,0,0,180,4.6,5,4,16.0,6096,9,999999999,279,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.9,8.1,60,83600,0,0,344,0,0,0,0,0,0,0,160,4.4,5,5,16.0,77777,9,999999999,279,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.9,62,83400,0,0,339,0,0,0,0,0,0,0,180,4.2,5,5,16.0,77777,9,999999999,279,0.0680,0,88,0.190,0.0,1.0 +2001,8,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.2,5.6,56,83600,0,0,328,0,0,0,0,0,0,0,190,4.0,4,3,16.0,6096,9,999999999,279,0.0680,0,88,0.190,0.0,1.0 +2005,9,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.3,4.4,40,83800,0,0,309,0,0,0,0,0,0,0,220,3.7,0,0,16.0,77777,9,999999999,139,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.4,3.1,56,83700,0,0,304,0,0,0,0,0,0,0,190,3.5,0,0,16.0,77777,9,999999999,129,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.6,1.9,45,83700,0,0,299,0,0,0,0,0,0,0,260,3.3,0,0,16.0,77777,9,999999999,120,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,0.6,46,83700,0,0,294,0,0,0,0,0,0,0,270,3.1,0,0,16.0,77777,9,999999999,110,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,1.1,56,83700,0,0,286,0,0,0,0,0,0,0,250,4.1,0,0,16.0,77777,9,999999999,110,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,1.7,56,83700,34,704,289,1,102,0,0,0,0,0,230,4.1,0,0,16.0,77777,9,999999999,100,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,1.7,44,84000,262,1342,305,179,595,63,18100,44300,9400,1080,250,3.1,0,0,16.0,77777,9,999999999,100,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,0.6,34,83800,517,1342,316,372,749,83,39000,70800,11700,1650,310,2.1,0,0,16.0,77777,9,999999999,89,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,0.0,28,84200,746,1342,325,555,846,84,59100,84300,12200,1970,0,0.0,0,0,16.0,77777,9,999999999,89,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,0.0,23,84300,932,1342,340,711,855,116,75400,86100,15400,3130,0,0.0,0,0,16.0,77777,9,999999999,89,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,0.0,21,83800,1063,1342,360,829,929,92,86200,93100,12300,2930,0,0.0,3,3,16.0,77777,9,999999999,89,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,0.6,19,84400,1130,1342,374,898,956,91,93300,95900,12300,3400,50,1.5,3,3,16.0,77777,9,999999999,100,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,-0.6,16,84400,1128,1342,381,893,959,85,93000,96300,11900,3240,90,4.1,3,3,16.0,77777,9,999999999,110,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,-1.7,14,83600,1057,1342,380,812,872,123,83600,87100,14800,3300,80,5.7,3,3,16.0,77777,9,999999999,110,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,-2.8,12,84300,923,1342,386,713,903,90,74100,90000,12100,2270,90,3.1,3,3,16.0,77777,9,999999999,110,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,-3.9,11,84300,733,1342,385,545,872,67,57100,85700,10100,1620,90,4.1,4,4,16.0,77777,9,999999999,120,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,-5.6,9,83500,503,1342,388,349,778,57,36800,73400,9300,1220,70,3.1,5,5,16.0,77777,9,999999999,120,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,-2.2,15,84200,247,1342,370,142,625,27,15000,49700,5900,650,70,2.6,3,3,16.0,77777,9,999999999,120,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,4.4,34,84000,26,637,352,0,0,0,0,0,0,0,170,3.6,3,3,16.0,77777,9,999999999,129,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,4.4,38,83600,0,0,336,0,0,0,0,0,0,0,100,3.6,1,1,16.0,77777,9,999999999,129,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,5.0,43,83900,0,0,325,0,0,0,0,0,0,0,170,5.2,0,0,16.0,77777,9,999999999,129,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,3.9,40,83900,0,0,338,0,0,0,0,0,0,0,170,4.1,3,3,16.0,77777,9,999999999,129,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,3.9,40,83700,0,0,335,0,0,0,0,0,0,0,230,3.6,2,2,16.0,77777,9,999999999,129,0.0670,0,88,0.210,999.0,99.0 +2005,9,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,2.8,39,83800,0,0,318,0,0,0,0,0,0,0,230,3.1,0,0,16.0,77777,9,999999999,120,0.0670,0,88,0.210,999.0,99.0 +2005,9,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,3.3,41,83900,0,0,319,0,0,0,0,0,0,0,240,4.6,0,0,16.0,77777,9,999999999,120,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,4.4,49,83700,0,0,318,0,0,0,0,0,0,0,260,4.1,1,1,16.0,77777,9,999999999,120,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,4.4,51,83800,0,0,316,0,0,0,0,0,0,0,270,3.1,1,1,16.0,77777,9,999999999,120,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,5.0,53,83800,0,0,321,0,0,0,0,0,0,0,240,3.1,2,2,16.0,77777,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,6.1,62,83800,0,0,317,0,0,0,0,0,0,0,160,7.2,2,2,16.0,77777,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,5.6,57,83900,32,682,309,0,99,0,0,0,0,0,250,3.6,0,0,16.0,6096,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,7.8,54,84100,259,1342,340,172,625,51,17500,46900,8500,910,260,2.6,3,3,16.0,7315,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,8.3,49,83900,514,1342,364,358,668,102,37000,62400,13000,1950,290,1.5,7,7,16.0,6706,9,999999999,120,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,7.8,40,84300,742,1342,370,582,883,92,61300,87600,12700,2080,320,1.5,5,5,16.0,77777,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,6.7,30,84500,929,1342,385,692,819,124,72800,82200,15800,3250,350,1.5,5,5,16.0,77777,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,5.0,23,83800,1059,1342,391,774,754,177,82700,77200,21600,6200,20,2.6,3,3,16.0,77777,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,3.3,18,84600,1126,1342,401,867,890,119,89400,89100,14400,3930,50,3.1,3,3,16.0,77777,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,-0.6,12,84600,1124,1342,401,875,923,101,90700,92500,13000,3570,50,3.1,3,3,16.0,77777,9,999999999,139,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,-2.2,11,83700,1052,1342,408,847,938,110,87600,93800,13800,3130,70,6.2,5,5,16.0,77777,9,999999999,139,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,-3.9,10,84400,917,1342,397,707,790,165,74700,80100,19800,4470,0,0.0,5,5,16.0,77777,9,999999999,150,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,-3.3,10,84500,728,1342,400,407,312,237,43400,32700,25600,5630,120,5.2,4,4,16.0,77777,9,999999999,160,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,3.3,19,83600,497,1342,398,292,426,134,30400,40000,15500,2610,160,6.7,5,5,16.0,77777,9,999999999,170,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,1.7,18,84300,240,1342,384,128,422,53,13000,30500,7600,920,160,6.2,3,3,16.0,77777,9,999999999,179,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,4.4,28,84200,23,593,368,0,0,0,0,0,0,0,170,6.2,3,3,16.0,77777,9,999999999,179,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,3.9,33,83800,0,0,351,0,0,0,0,0,0,0,180,5.7,3,3,16.0,77777,9,999999999,189,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,3.9,38,84000,0,0,341,0,0,0,0,0,0,0,160,6.2,3,3,16.0,77777,9,999999999,189,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,3.9,37,84100,0,0,349,0,0,0,0,0,0,0,190,4.6,5,5,16.0,77777,9,999999999,179,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,5.0,40,83800,0,0,350,0,0,0,0,0,0,0,190,6.2,5,5,16.0,77777,9,999999999,179,0.0660,0,88,0.210,999.0,99.0 +2005,9,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,5.6,46,83900,0,0,323,0,0,0,0,0,0,0,170,5.7,0,0,16.0,77777,9,999999999,170,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,5.6,48,83800,0,0,327,0,0,0,0,0,0,0,160,5.2,1,1,16.0,77777,9,999999999,170,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,4.4,36,83800,0,0,349,0,0,0,0,0,0,0,180,6.7,3,3,16.0,77777,9,999999999,170,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,83800,0,0,329,0,0,0,0,0,0,0,150,5.2,4,4,16.0,77777,9,999999999,160,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,83800,0,0,329,0,0,0,0,0,0,0,180,4.6,4,4,16.0,77777,9,999999999,150,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,5.0,48,83800,0,0,334,0,0,0,0,0,0,0,210,1.5,4,4,16.0,4877,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,83800,30,660,327,0,0,0,0,0,0,0,240,4.6,3,3,16.0,77777,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,5.0,40,84100,255,1343,337,173,642,51,17700,47900,8600,910,240,4.6,1,1,16.0,6706,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,4.4,30,83900,510,1343,363,366,782,68,37900,73500,10000,1370,240,6.2,3,3,16.0,7620,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,3.9,25,84500,739,1343,376,542,809,96,56800,80100,12700,2120,300,3.1,3,3,16.0,77777,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,1.7,18,84500,925,1343,390,686,807,129,71800,80900,16000,3310,230,1.5,4,4,16.0,77777,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,1.7,16,83800,1056,1343,405,799,857,123,82200,85600,14700,3280,150,3.6,5,5,16.0,77777,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,0.6,13,84600,1122,1343,415,886,914,120,91200,91500,14600,3890,130,2.1,5,5,16.0,77777,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,-2.8,10,84500,1119,1343,414,762,581,276,82400,60700,31600,11150,100,4.6,6,6,16.0,7620,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,-1.7,10,83600,1048,1343,418,840,854,173,86800,85200,20100,5150,80,4.6,5,5,16.0,77777,9,999999999,129,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,-0.6,12,84400,912,1343,413,638,630,209,66300,63000,23300,5430,120,5.7,5,5,16.0,77777,9,999999999,150,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,0.6,15,84300,722,1343,407,461,524,179,48900,53000,20400,3910,130,5.7,7,6,16.0,77777,9,999999999,160,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,0.6,15,83500,490,1343,408,302,546,102,31000,50300,12600,1910,170,7.2,7,7,16.0,6096,9,999999999,170,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,1.7,19,84200,233,1343,387,127,546,32,13000,41500,5800,640,190,7.2,7,5,16.0,3962,9,999999999,170,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,2.8,25,84000,21,548,372,0,0,0,0,0,0,0,210,4.1,6,5,16.0,3962,9,999999999,170,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,2.2,34,83600,0,0,344,0,0,0,0,0,0,0,190,4.1,7,5,16.0,3962,9,999999999,170,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,1.7,33,83800,0,0,343,0,0,0,0,0,0,0,190,5.7,7,5,16.0,3962,9,999999999,160,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,0.6,35,83700,0,0,351,0,0,0,0,0,0,0,190,4.6,9,9,16.0,3962,9,999999999,160,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,0.6,31,83600,0,0,346,0,0,0,0,0,0,0,190,5.7,7,7,16.0,6706,9,999999999,160,0.0660,0,88,0.210,999.0,99.0 +2005,9,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,1.7,38,83600,0,0,320,0,0,0,0,0,0,0,180,4.6,1,1,16.0,77777,9,999999999,160,0.0660,0,88,0.210,999.0,99.0 +2005,9,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,3.3,30,83800,0,0,356,0,0,0,0,0,0,0,210,6.7,4,3,16.0,77777,9,999999999,160,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,3.9,35,83600,0,0,349,0,0,0,0,0,0,0,190,5.2,4,3,16.0,6096,9,999999999,160,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,4.4,41,83600,0,0,341,0,0,0,0,0,0,0,250,4.6,5,4,16.0,6096,9,999999999,170,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,4.4,41,83700,0,0,339,0,0,0,0,0,0,0,240,4.6,4,3,16.0,6096,9,999999999,179,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,4.4,41,83600,0,0,341,0,0,0,0,0,0,0,220,5.2,4,4,16.0,6706,9,999999999,200,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,4.4,44,83700,28,661,339,0,0,0,0,0,0,0,230,4.1,5,5,16.0,5486,9,999999999,189,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,5.0,37,83900,251,1344,353,165,624,48,16900,46400,8200,860,230,4.1,4,4,16.0,77777,9,999999999,189,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,5.0,31,83600,507,1344,366,367,801,64,38300,75300,9800,1320,240,3.1,4,4,16.0,77777,9,999999999,189,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,4.4,25,84300,736,1344,385,543,828,88,57300,82200,12200,2000,320,2.6,5,5,16.0,77777,9,999999999,189,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,3.3,21,84300,922,1344,392,718,916,88,74700,91300,11900,2250,30,4.6,5,5,16.0,77777,9,999999999,189,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,3.9,20,83700,1052,1344,405,823,935,89,85600,93600,12100,2810,20,3.1,6,6,16.0,77777,9,999999999,189,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,3.9,19,84400,1118,1344,413,855,890,113,88300,89100,13900,3730,10,4.6,7,7,16.0,77777,9,999999999,189,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,2.8,17,84300,1115,1344,410,839,845,136,89700,85700,18400,5170,70,4.1,7,6,16.0,77777,9,999999999,189,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,3.3,18,83500,1043,1344,404,817,908,111,84500,90800,13800,3070,40,2.1,5,5,16.0,77777,9,999999999,189,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,3.3,17,84200,907,1344,407,689,879,94,71500,87500,12300,2250,360,1.5,5,4,16.0,77777,9,999999999,179,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,3.3,17,84200,716,1344,410,537,841,88,56600,83200,12200,1960,330,2.6,5,5,16.0,77777,9,999999999,179,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,3.3,18,83400,484,1344,407,321,678,77,33700,63100,10900,1510,40,2.6,6,5,16.0,77777,9,999999999,179,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,4.4,22,84100,227,1344,391,130,590,30,13400,44500,5800,610,340,6.7,4,4,16.0,77777,9,999999999,179,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,5.6,29,84000,18,526,375,0,0,0,0,0,0,0,330,4.6,3,3,16.0,77777,9,999999999,179,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,6.1,32,83500,0,0,373,0,0,0,0,0,0,0,360,4.1,5,4,16.0,4267,9,999999999,179,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,6.1,32,84000,0,0,376,0,0,0,0,0,0,0,310,4.6,6,5,16.0,77777,9,999999999,179,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,6.1,32,84000,0,0,398,0,0,0,0,0,0,0,280,3.6,10,9,16.0,3658,9,999999999,179,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,6.7,33,83500,0,0,391,0,0,0,0,0,0,0,320,1.5,9,8,16.0,3658,9,999999999,179,0.0650,0,88,0.210,999.0,99.0 +2005,9,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,6.7,38,83800,0,0,345,0,0,0,0,0,0,0,240,3.6,0,0,16.0,3658,9,999999999,179,0.0650,0,88,0.210,999.0,99.0 +2005,9,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,7.8,47,83700,0,0,336,0,0,0,0,0,0,0,230,5.7,0,0,16.0,77777,9,999999999,179,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,7.2,43,83500,0,0,371,0,0,0,0,0,0,0,220,4.6,8,8,16.0,3353,9,999999999,179,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,7.2,50,83600,0,0,347,0,0,0,0,0,0,0,230,5.2,5,5,16.0,6096,9,999999999,189,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,6.7,50,83600,0,0,344,0,0,0,0,0,0,0,230,4.6,5,5,16.0,6096,9,999999999,189,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,6.7,54,83500,0,0,351,0,0,0,0,0,0,0,240,3.6,8,8,16.0,3353,9,999999999,200,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,6.7,54,83700,26,639,339,0,0,0,0,0,0,0,240,4.1,5,5,16.0,4267,9,999999999,200,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,6.1,46,83800,247,1344,346,167,360,101,17100,25600,12400,2130,230,4.6,5,5,16.0,4267,9,999999999,189,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,5.6,33,83600,503,1344,364,195,177,128,20900,17200,14400,2580,240,5.2,3,3,16.0,77777,9,999999999,189,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,4.4,24,84200,732,1344,382,536,638,188,56700,64700,21400,4160,310,2.6,3,3,16.0,77777,9,999999999,179,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,3.9,21,84300,918,1344,390,674,734,171,71000,74300,20100,4610,10,3.1,3,3,16.0,77777,9,999999999,179,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,2.2,17,83700,1048,1344,399,830,917,113,85700,91700,14000,3120,60,4.1,4,4,16.0,77777,9,999999999,170,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,2.2,16,84300,1114,1344,406,837,824,153,88400,83100,19300,5640,270,3.1,5,5,16.0,77777,9,999999999,179,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,2.8,18,84300,1111,1344,407,815,671,260,85300,67600,29300,9910,310,2.1,6,6,16.0,4267,9,999999999,179,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,2.2,16,83500,1038,1344,414,379,125,282,42200,13400,31800,9580,260,3.1,7,7,16.0,4572,9,999999999,179,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,2.2,16,84300,902,1344,417,546,374,295,58900,40100,31900,8130,200,2.1,7,7,16.0,4572,9,999999999,179,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,2.2,15,84300,710,1344,415,126,0,126,15000,0,15000,5760,150,5.7,7,6,16.0,7620,9,999999999,189,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,2.2,17,83500,478,1344,407,331,545,136,34100,50600,16100,2650,180,4.6,9,7,16.0,7620,9,999999999,189,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,3.9,22,84200,220,1344,393,104,343,48,10600,23900,6600,840,250,2.1,6,6,16.0,7620,9,999999999,189,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,5.6,29,84200,16,482,378,0,0,0,0,0,0,0,330,4.6,5,4,16.0,7620,9,999999999,179,0.0640,0,88,0.210,0.0,1.0 +2005,9,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,5.0,35,83700,0,0,361,0,0,0,0,0,0,0,100,4.1,5,5,16.0,7620,9,999999999,170,0.0640,0,88,0.210,0.0,3.0 +2005,9,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,5.0,40,83900,0,0,350,0,0,0,0,0,0,0,140,3.1,5,5,16.0,77777,9,999999999,170,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,5.6,37,84000,0,0,359,0,0,0,0,0,0,0,180,5.2,5,5,16.0,77777,9,999999999,160,0.0640,0,88,0.210,999.0,99.0 +2005,9,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.1,45,83700,0,0,348,0,0,0,0,0,0,0,270,3.6,5,5,16.0,77777,9,999999999,160,0.0640,0,88,0.210,0.0,6.0 +2005,9,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,6.7,40,84000,0,0,340,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,150,0.0640,0,88,0.210,999.0,99.0 +2005,9,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,7.2,52,83800,0,0,331,0,0,0,0,0,0,0,220,3.1,1,1,16.0,77777,9,999999999,150,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,7.2,56,83700,0,0,320,0,0,0,0,0,0,0,230,3.1,0,0,16.0,77777,9,999999999,150,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,7.2,52,83800,0,0,325,0,0,0,0,0,0,0,210,4.6,0,0,16.0,77777,9,999999999,160,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,6.7,54,83800,0,0,336,0,0,0,0,0,0,0,230,4.6,4,4,16.0,77777,9,999999999,170,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,6.1,48,83900,0,0,343,0,0,0,0,0,0,0,330,3.1,5,5,16.0,77777,9,999999999,189,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,7.2,57,84100,25,616,334,0,0,0,0,0,0,0,330,5.2,4,4,16.0,6096,9,999999999,189,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,6.7,55,84200,244,1345,339,169,398,96,16600,28100,11500,1870,330,6.2,6,6,16.0,4267,9,999999999,189,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,6.1,46,84200,499,1345,359,260,246,168,27300,23800,18400,3590,310,6.2,8,8,16.0,4267,9,999999999,189,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,6.7,45,84500,728,1345,373,398,258,258,43200,26700,28700,6630,300,4.6,10,9,16.0,3048,9,999999999,189,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,6.7,38,84600,914,1345,387,388,97,322,42700,9900,35900,11040,20,3.6,10,9,16.0,2743,9,999999999,189,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,6.7,37,84200,1045,1345,390,415,54,373,45700,5600,41400,14270,30,4.6,9,9,16.0,2134,9,999999999,189,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,6.7,38,84500,1110,1345,387,140,0,140,17500,0,17500,7340,50,2.6,9,9,16.0,3048,9,999999999,200,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,8.3,41,84600,1106,1345,384,893,779,250,93500,78600,28700,9440,30,5.7,8,8,16.0,4267,9,999999999,200,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,8.3,36,84100,1033,1345,385,735,585,284,78300,60900,31400,9400,10,4.1,6,6,16.0,4267,9,999999999,200,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,8.9,36,84600,896,1345,385,273,36,249,30100,3600,27700,8800,30,4.1,5,5,16.0,4267,9,999999999,220,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,8.9,36,84600,704,1345,379,317,135,246,34400,13900,27100,6240,60,2.1,3,3,16.0,77777,9,999999999,229,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,8.3,36,84000,471,1345,381,309,493,136,31900,45600,15900,2650,80,3.6,6,5,16.0,77777,9,999999999,240,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,8.9,41,84600,213,1345,382,24,0,24,2900,0,2900,960,140,5.2,7,7,16.0,4572,9,999999999,229,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,8.9,46,84500,13,460,387,0,0,0,0,0,0,0,170,2.6,9,9,16.0,3300,9,999999999,229,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,11.1,61,84100,0,0,370,0,0,0,0,0,0,0,180,3.6,8,8,16.0,3658,9,999999999,220,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,10.6,61,84400,0,0,375,0,0,0,0,0,0,0,200,3.1,10,9,16.0,3658,9,999999999,220,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,10.6,67,84300,0,0,366,0,0,0,0,0,0,0,190,3.1,10,9,16.0,3962,9,999999999,209,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,10.0,77,84100,0,0,344,0,0,0,0,0,0,0,180,3.1,9,8,16.0,3962,9,999999999,209,0.0630,0,88,0.210,999.0,99.0 +2005,9,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,10.0,77,84200,0,0,324,0,0,0,0,0,0,0,190,4.1,2,2,16.0,77777,9,999999999,200,0.0630,0,88,0.210,999.0,99.0 +2005,9,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,84200,0,0,332,0,0,0,0,0,0,0,170,4.6,3,3,16.0,6096,9,999999999,200,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,10.0,75,84000,0,0,337,0,0,0,0,0,0,0,150,3.1,6,6,16.0,6096,9,999999999,200,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.6,75,84000,0,0,350,0,0,0,0,0,0,0,240,3.1,8,8,16.0,3353,9,999999999,200,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,10.0,83,84000,0,0,339,0,0,0,0,0,0,0,40,2.1,8,8,16.0,3353,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,10.6,78,83900,0,0,348,0,0,0,0,0,0,0,250,3.1,8,8,16.0,3353,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,10.6,80,84100,23,594,333,0,0,0,0,0,0,0,240,2.6,5,5,16.0,77777,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,11.1,72,84200,240,1346,338,171,531,76,16800,37000,10200,1190,260,4.1,3,3,16.0,77777,9,999999999,200,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,11.1,59,84000,496,1346,354,362,784,72,37100,72900,10200,1380,260,4.6,3,3,16.0,77777,9,999999999,200,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,10.6,48,84500,725,1346,367,517,736,119,54500,73400,14800,2650,270,3.6,3,3,16.0,77777,9,999999999,200,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,10.6,42,84600,911,1346,378,725,916,103,75000,91100,13200,2310,300,3.6,3,3,16.0,77777,9,999999999,189,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,10.6,36,84000,1041,1346,396,774,815,142,81500,82100,17900,4420,350,2.6,5,5,16.0,77777,9,999999999,189,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,8.3,27,84700,1106,1346,409,849,884,121,87500,88400,14600,3700,40,4.1,6,6,16.0,77777,9,999999999,189,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,5.6,21,84700,1101,1346,419,821,821,147,86800,82900,18800,5270,80,5.7,7,7,16.0,77777,9,999999999,189,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,2.8,17,83800,1028,1346,406,810,919,106,83800,91800,13400,2910,20,6.2,4,4,16.0,77777,9,999999999,189,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,2.2,15,84600,891,1346,408,688,908,85,71600,90300,11700,2120,30,2.6,4,4,16.0,77777,9,999999999,189,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,1.1,14,84600,698,1346,410,530,864,81,56200,85400,11800,1820,40,3.1,5,5,16.0,77777,9,999999999,200,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,0.6,15,83700,465,1346,403,303,693,64,31300,63800,9300,1260,40,2.1,5,5,16.0,77777,9,999999999,200,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,1.7,18,84400,206,1346,390,109,533,27,11200,38900,5200,550,50,3.6,5,5,16.0,77777,9,999999999,200,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,5.6,32,84200,11,415,367,0,0,0,0,0,0,0,150,4.1,3,3,16.0,77777,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,8.9,40,83800,0,0,374,0,0,0,0,0,0,0,120,3.1,4,4,16.0,6096,9,999999999,220,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,11.1,48,84200,0,0,399,0,0,0,0,0,0,0,130,6.2,9,9,16.0,3353,9,999999999,220,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,11.7,59,84100,0,0,385,0,0,0,0,0,0,0,130,6.7,9,9,16.0,6096,9,999999999,220,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,11.1,57,83800,0,0,363,0,0,0,0,0,0,0,160,6.2,5,5,16.0,77777,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,11.7,61,84000,0,0,358,0,0,0,0,0,0,0,190,7.2,4,4,16.0,77777,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,11.7,65,83900,0,0,350,0,0,0,0,0,0,0,260,4.1,3,3,16.0,77777,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,11.1,67,83800,0,0,349,0,0,0,0,0,0,0,260,3.1,5,5,16.0,6096,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,11.7,70,83800,0,0,347,0,0,0,0,0,0,0,310,2.6,4,4,16.0,77777,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,10.6,80,83700,0,0,330,0,0,0,0,0,0,0,290,2.6,4,4,16.0,77777,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,11.1,70,83700,0,0,344,0,0,0,0,0,0,0,270,2.6,5,4,16.0,6096,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.1,77,83800,21,572,342,0,0,0,0,0,0,0,250,3.1,6,6,16.0,3658,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,11.1,59,84000,236,1346,363,162,629,52,16400,45100,8500,910,240,3.6,6,6,16.0,3658,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,10.0,43,83800,492,1346,386,362,797,70,37200,74100,10100,1360,290,2.1,7,7,16.0,3658,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,11.7,45,84200,721,1346,400,498,712,115,52600,71100,14400,2560,270,2.6,8,8,16.0,6706,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,10.0,35,84300,907,1346,404,649,637,218,67100,63500,24100,5550,0,0.0,8,7,16.0,3962,9,999999999,200,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,8.3,28,83700,1037,1346,417,396,139,289,44000,14800,32600,9790,340,1.5,8,8,16.0,6706,9,999999999,200,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,8.3,24,84400,1102,1346,432,873,823,198,93000,84100,24000,7540,310,4.1,8,8,16.0,6706,9,999999999,209,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,6.1,20,84400,1097,1346,421,827,791,181,85500,79000,20900,6010,320,3.6,7,6,16.0,3900,9,999999999,220,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,7.8,23,83500,1023,1346,435,513,221,345,56400,23500,38500,11470,320,4.6,9,8,16.0,3962,9,999999999,229,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,6.1,19,84300,885,1346,427,642,546,282,66800,56200,29800,7450,330,3.1,8,6,16.0,3962,9,999999999,240,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.0,6.0,20,84200,692,1346,427,93,0,93,11300,0,11300,4400,230,5.2,8,7,16.0,6096,9,999999999,240,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,6.7,24,83400,458,1346,420,111,0,111,12600,0,12600,4270,270,6.2,8,8,16.0,3962,9,999999999,240,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,6.1,25,84100,199,1346,404,23,0,23,2700,0,2700,910,290,3.6,9,7,16.0,3962,9,999999999,240,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,7.2,33,83900,9,370,383,0,0,0,0,0,0,0,0,0.0,9,6,16.0,3962,9,999999999,240,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,8.3,37,83400,0,0,387,0,0,0,0,0,0,0,0,0.0,7,7,16.0,3353,9,999999999,229,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,7.8,35,83900,0,0,403,0,0,0,0,0,0,0,210,5.2,9,9,16.0,3658,9,999999999,240,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,7.8,35,83800,0,0,403,0,0,0,0,0,0,0,240,7.2,9,9,16.0,3353,9,999999999,240,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,8.9,40,83300,0,0,390,0,0,0,0,0,0,0,230,6.7,8,8,16.0,3658,9,999999999,240,0.0620,0,88,0.210,999.0,99.0 +2005,9,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,9.4,42,83600,0,0,388,0,0,0,0,0,0,0,220,6.7,10,8,16.0,3658,9,999999999,229,0.0620,0,88,0.210,999.0,99.0 +2005,9,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,9.4,42,83500,0,0,382,0,0,0,0,0,0,0,220,5.2,7,7,16.0,3658,9,999999999,229,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,8.9,43,83200,0,0,368,0,0,0,0,0,0,0,210,5.7,5,4,16.0,3658,9,999999999,229,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,8.9,47,83300,0,0,349,0,0,0,0,0,0,0,210,6.7,2,1,16.0,77777,9,999999999,220,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,8.3,60,83100,0,0,321,0,0,0,0,0,0,0,180,3.6,0,0,16.0,77777,9,999999999,220,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,8.9,51,83100,0,0,343,0,0,0,0,0,0,0,220,6.2,1,1,16.0,77777,9,999999999,220,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,8.9,56,83300,20,550,344,0,0,0,0,0,0,0,240,3.6,3,3,16.0,77777,9,999999999,209,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,8.9,44,83500,232,1347,363,164,507,77,16500,35100,10500,1460,220,4.1,3,3,16.0,77777,9,999999999,209,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,8.9,36,83200,488,1347,379,356,779,73,36400,72100,10200,1380,230,3.1,3,3,16.0,77777,9,999999999,200,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,7.8,29,83700,718,1347,389,531,829,88,55900,82000,12100,1960,260,4.1,3,3,16.0,77777,9,999999999,200,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,7.8,29,83700,903,1347,389,643,631,218,66400,62900,24100,5520,330,2.6,3,3,16.0,77777,9,999999999,209,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,7.2,26,83100,1033,1347,400,390,133,288,43400,14200,32400,9690,320,1.5,5,5,16.0,77777,9,999999999,209,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,6.7,22,83700,1097,1347,420,825,709,245,86400,71600,27900,9020,310,4.6,7,7,16.0,6096,9,999999999,209,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,5.6,19,83700,1092,1347,425,791,713,212,83800,72500,24800,7820,260,3.1,9,7,16.0,6096,9,999999999,220,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,5.6,21,82900,1018,1347,419,676,525,278,72000,54600,30600,8900,210,2.6,9,7,16.0,6096,9,999999999,220,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,5.6,21,83600,879,1347,431,244,24,229,28500,2000,27200,10180,160,3.1,10,9,16.0,3353,9,999999999,229,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,7.8,35,83500,686,1347,395,180,6,177,20700,500,20500,7370,270,9.8,9,8,16.0,3048,9,999999999,250,0.0610,0,88,0.210,0.0,1.0 +2005,9,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,7.2,32,82900,451,1347,391,60,0,60,7200,0,7200,2590,280,5.2,7,7,16.0,3048,9,999999999,259,0.0610,0,88,0.210,0.0,1.0 +2005,9,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,9.4,40,83400,193,1347,394,15,0,15,1800,0,1800,610,220,3.1,10,8,16.0,3658,9,999999999,250,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,10.6,49,83200,8,348,378,0,0,0,0,0,0,0,200,3.1,9,7,16.0,3658,9,999999999,240,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.2,61,82900,0,0,385,0,0,0,0,0,0,0,130,3.1,10,9,16.0,3048,9,999999999,229,0.0610,0,88,0.210,0.0,3.0 +2005,9,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,8.9,47,83100,0,0,384,0,0,0,0,0,0,0,180,3.1,9,9,16.0,3962,9,999999999,229,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,8.9,46,83100,0,0,387,0,0,0,0,0,0,0,200,6.7,9,9,16.0,3962,9,999999999,220,0.0610,0,88,0.210,999.0,99.0 +2005,9,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,8.3,42,82800,0,0,375,0,0,0,0,0,0,0,210,6.7,7,7,16.0,3962,9,999999999,220,0.0610,0,88,0.210,0.0,6.0 +2005,9,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,7.2,39,83000,0,0,370,0,0,0,0,0,0,0,190,6.7,8,6,16.0,6096,9,999999999,209,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,7.8,42,82900,0,0,364,0,0,0,0,0,0,0,240,2.6,10,5,16.0,3962,9,999999999,200,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,7.2,39,82600,0,0,366,0,0,0,0,0,0,0,220,9.3,9,5,16.0,3962,9,999999999,179,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,6.7,39,82900,0,0,384,0,0,0,0,0,0,0,210,8.8,10,9,16.0,3962,9,999999999,179,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,6.7,39,82900,0,0,363,0,0,0,0,0,0,0,210,10.3,10,5,16.0,6096,9,999999999,179,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,6.1,38,82600,0,0,365,0,0,0,0,0,0,0,200,8.8,10,6,16.0,4267,9,999999999,179,0.0610,0,88,0.210,0.0,24.0 +2005,9,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,6.1,40,83000,18,528,357,0,0,0,0,0,0,0,200,7.7,8,5,16.0,4267,9,999999999,150,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,6.7,34,83200,228,1348,381,31,0,31,3600,0,3600,1210,240,7.7,9,7,16.0,4267,9,999999999,129,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,6.1,33,82900,485,1348,376,138,0,138,15500,0,15500,5100,320,4.6,6,6,16.0,7620,9,999999999,100,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,5.0,31,83400,714,1348,372,306,98,253,33500,9900,28200,7550,320,3.6,6,6,16.0,7620,9,999999999,100,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,5.0,29,83400,900,1348,374,579,443,283,60500,45600,29900,7600,280,2.1,4,4,16.0,7620,9,999999999,100,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,0.6,16,82900,1029,1348,391,762,766,175,81200,78300,21200,5700,240,5.2,4,4,16.0,7620,9,999999999,89,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,-0.6,15,83500,1093,1348,384,843,866,139,89600,87600,18400,4920,190,3.1,3,3,16.0,77777,9,999999999,89,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,-0.6,14,83600,1087,1348,392,779,683,227,82100,69200,26100,8210,140,4.1,3,3,16.0,77777,9,999999999,89,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,-2.2,11,82800,1013,1348,399,769,859,121,82000,86900,16500,3700,190,4.6,3,3,16.0,77777,9,999999999,89,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,-3.3,10,83500,873,1348,394,647,849,95,67100,84300,12400,2130,240,4.6,3,3,16.0,77777,9,999999999,100,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,-3.9,9,83600,680,1348,396,490,798,86,51300,78400,11700,1860,170,2.6,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,-3.9,10,82800,445,1348,397,301,759,50,31700,69800,8600,1070,100,3.6,6,5,16.0,77777,9,999999999,110,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,-2.2,14,83400,186,1348,379,96,517,25,9900,36300,4900,510,140,5.2,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,-1.7,17,83300,6,303,363,0,0,0,0,0,0,0,150,5.2,3,3,16.0,77777,9,999999999,120,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,-1.1,24,82800,0,0,328,0,0,0,0,0,0,0,160,5.2,0,0,16.0,77777,9,999999999,120,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,0.6,28,83200,0,0,328,0,0,0,0,0,0,0,170,4.6,0,0,16.0,77777,9,999999999,110,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,1.7,27,83200,0,0,350,0,0,0,0,0,0,0,220,5.2,2,2,16.0,77777,9,999999999,100,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,2.2,28,82900,0,0,355,0,0,0,0,0,0,0,210,6.2,3,3,16.0,77777,9,999999999,89,0.0610,0,88,0.210,999.0,99.0 +2005,9,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,2.2,31,83200,0,0,332,0,0,0,0,0,0,0,220,5.7,0,0,16.0,77777,9,999999999,89,0.0610,0,88,0.210,999.0,99.0 +2005,9,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,1.7,30,83100,0,0,332,0,0,0,0,0,0,0,220,6.7,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,1.1,28,83000,0,0,331,0,0,0,0,0,0,0,210,6.7,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,1.1,34,83100,0,0,318,0,0,0,0,0,0,0,230,4.1,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,1.1,35,83100,0,0,316,0,0,0,0,0,0,0,260,2.6,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,0.6,36,83100,0,0,324,0,0,0,0,0,0,0,230,4.1,3,3,16.0,77777,9,999999999,69,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,0.6,37,83200,17,506,308,0,0,0,0,0,0,0,220,3.6,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,-0.6,26,83500,224,1348,346,158,498,75,15900,33800,10200,1420,210,4.6,5,5,16.0,77777,9,999999999,69,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,-0.6,21,83200,481,1348,342,328,730,67,33800,67600,9600,1310,210,5.2,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,-1.1,18,83800,710,1348,351,512,768,106,54300,76700,13800,2360,190,2.1,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,-0.6,17,83800,896,1348,360,630,680,177,66000,68500,20400,4570,160,3.1,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,-1.1,14,83200,1025,1348,367,768,797,161,79600,79700,18900,4610,140,7.2,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,-2.2,12,83800,1089,1348,371,855,944,91,88800,94600,12300,3050,110,4.1,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,-3.9,10,83800,1083,1348,388,838,947,77,87700,95000,11200,2700,110,3.1,3,3,16.0,77777,9,999999999,100,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,-3.3,10,83000,1007,1348,394,786,937,84,81900,93700,11700,2490,120,1.5,3,3,16.0,77777,9,999999999,110,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,-3.9,9,83800,868,1348,400,663,896,85,69100,89000,11600,2050,120,3.6,4,4,16.0,77777,9,999999999,120,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,-4.4,9,83700,673,1348,399,495,833,78,52400,82000,11300,1730,160,6.7,5,5,16.0,77777,9,999999999,129,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,-3.9,10,82900,438,1348,394,290,689,65,29600,62300,9300,1230,100,7.7,5,5,16.0,77777,9,999999999,129,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,-5.6,11,83500,179,1348,375,80,398,27,8100,27300,4500,520,100,4.6,7,6,16.0,77777,9,999999999,139,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,-3.9,18,83300,5,258,353,0,0,0,0,0,0,0,140,4.1,7,6,16.0,77777,9,999999999,150,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,-1.1,23,83000,0,0,358,0,0,0,0,0,0,0,140,4.1,8,7,16.0,77777,9,999999999,150,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,-1.1,22,83300,0,0,374,0,0,0,0,0,0,0,180,6.2,9,9,16.0,6706,9,999999999,150,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,-1.1,22,83300,0,0,374,0,0,0,0,0,0,0,280,5.2,9,9,16.0,6706,9,999999999,150,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,1.1,29,83000,0,0,355,0,0,0,0,0,0,0,260,4.6,7,7,16.0,6706,9,999999999,150,0.0600,0,88,0.210,999.0,99.0 +2005,9,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,1.1,30,83200,0,0,337,0,0,0,0,0,0,0,270,4.6,2,2,16.0,77777,9,999999999,139,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,1.1,34,83100,0,0,318,0,0,0,0,0,0,0,250,3.1,0,0,16.0,77777,9,999999999,139,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,1.7,35,83000,0,0,319,0,0,0,0,0,0,0,240,3.1,0,0,16.0,77777,9,999999999,129,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,1.1,35,83100,0,0,316,0,0,0,0,0,0,0,250,3.1,0,0,16.0,77777,9,999999999,129,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,1.1,29,83200,0,0,328,0,0,0,0,0,0,0,30,1.5,0,0,16.0,77777,9,999999999,129,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,0.6,43,83100,0,0,312,0,0,0,0,0,0,0,110,2.1,3,3,16.0,77777,9,999999999,129,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,0.0,48,83000,16,483,302,0,0,0,0,0,0,0,170,4.6,3,3,16.0,77777,9,999999999,120,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,0.6,33,83400,220,1349,332,139,456,64,13700,30900,8700,1030,160,2.6,3,3,16.0,77777,9,999999999,110,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,2.2,29,83200,477,1349,352,321,705,72,33800,65500,10600,1420,120,3.6,3,3,16.0,77777,9,999999999,100,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,1.7,23,83700,706,1349,365,512,780,103,52900,76400,12900,2120,170,2.6,3,3,16.0,77777,9,999999999,100,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,-1.1,17,83700,892,1349,369,649,789,126,67700,78800,15500,3060,220,3.6,3,3,16.0,77777,9,999999999,89,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,-2.8,15,83100,1021,1349,373,750,784,154,77900,78500,18400,4440,0,0.0,5,5,16.0,77777,9,999999999,89,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,-5.0,11,83600,1084,1349,370,831,884,119,85700,88400,14400,3440,0,0.0,3,3,16.0,77777,9,999999999,89,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,-9.4,7,83600,1078,1349,371,797,809,149,83900,81500,18600,4960,320,1.5,3,3,16.0,77777,9,999999999,89,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,-11.7,5,82800,1002,1349,376,774,895,108,80100,89300,13600,2760,280,1.5,4,4,16.0,77777,9,999999999,100,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,-11.7,5,83500,862,1349,376,652,819,127,67600,81500,15400,2940,240,3.6,3,3,16.0,77777,9,999999999,100,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,-10.0,6,83500,667,1349,382,440,557,164,46600,55700,19000,3440,310,3.1,3,3,16.0,77777,9,999999999,100,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,-5.0,11,82800,431,1349,378,294,529,124,30200,47600,15000,2380,10,5.2,5,5,16.0,77777,9,999999999,110,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,-5.6,12,83500,172,1349,363,14,0,14,1700,0,1700,570,10,5.2,3,3,16.0,77777,9,999999999,110,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,-1.7,20,83400,3,236,355,0,0,0,0,0,0,0,360,4.1,5,5,16.0,77777,9,999999999,110,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,-1.7,21,83000,0,0,352,0,0,0,0,0,0,0,10,4.6,5,5,16.0,4267,9,999999999,110,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,2.2,38,83200,0,0,336,0,0,0,0,0,0,0,50,5.7,5,5,16.0,77777,9,999999999,110,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,1.7,42,83200,0,0,325,0,0,0,0,0,0,0,70,6.2,5,5,16.0,77777,9,999999999,110,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,1.1,45,83200,0,0,317,0,0,0,0,0,0,0,120,4.6,5,5,16.0,77777,9,999999999,110,0.0600,0,88,0.210,999.0,99.0 +2005,9,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,0.0,43,83300,0,0,313,0,0,0,0,0,0,0,120,2.6,5,5,16.0,77777,9,999999999,110,0.0600,0,88,0.210,999.0,99.0 +2005,9,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,-1.1,47,83200,0,0,296,0,0,0,0,0,0,0,150,4.6,3,3,16.0,77777,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,-2.2,52,83400,0,0,272,0,0,0,0,0,0,0,170,4.6,0,0,16.0,77777,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-3.9,40,83100,0,0,281,0,0,0,0,0,0,0,130,4.6,1,1,16.0,77777,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-5.0,35,83200,0,0,283,0,0,0,0,0,0,0,120,5.2,1,1,16.0,77777,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,-4.4,40,83500,0,0,283,0,0,0,0,0,0,0,110,4.1,2,2,16.0,77777,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-3.3,42,83300,14,461,296,0,0,0,0,0,0,0,90,5.2,6,6,16.0,3658,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,-2.2,40,83600,217,1350,322,119,437,49,12000,30100,7200,850,110,5.7,9,9,16.0,77777,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,-2.8,35,83600,473,1350,336,256,324,142,27100,30800,16200,2930,100,5.7,10,10,16.0,3048,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-3.9,29,83800,702,1350,317,240,37,220,26300,3700,24400,6700,70,5.2,6,6,16.0,6706,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-3.9,26,83900,888,1350,324,465,243,305,50800,25600,33900,8760,90,6.2,6,6,16.0,77777,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,-4.4,22,83600,1016,1350,334,731,670,225,76400,67500,25400,6920,90,5.7,6,6,16.0,77777,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,-4.4,19,83900,1079,1350,345,794,769,177,85000,78800,21800,6410,120,5.2,7,7,16.0,77777,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,-4.4,19,83900,1073,1350,348,820,899,104,84900,90000,13200,3150,60,2.6,8,7,16.0,77777,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,-3.9,19,83400,996,1350,347,739,806,143,77300,80900,17500,4010,0,0.0,7,6,16.0,7620,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,-3.9,20,83900,856,1350,359,651,736,184,67800,73600,21000,4450,30,5.7,9,9,16.0,3048,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,-1.1,26,83800,661,1350,350,277,106,225,30400,10600,25200,6560,70,6.2,8,7,16.0,4267,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,-1.7,27,83400,424,1350,341,64,0,64,7500,0,7500,2680,80,3.6,7,7,16.0,2591,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.1,36,83800,165,1350,352,17,0,17,2000,0,2000,670,60,4.6,10,9,16.0,2591,9,999999999,139,0.0590,0,88,0.210,0.0,1.0 +2005,9,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,1.1,37,83800,2,191,349,0,0,0,0,0,0,0,320,7.7,9,9,16.0,2743,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.1,71,83600,0,0,334,0,0,0,0,0,0,0,10,5.2,9,9,16.0,3353,9,999999999,129,0.0590,0,88,0.210,0.0,3.0 +2005,9,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,6.1,71,83800,0,0,334,0,0,0,0,0,0,0,10,4.6,9,9,16.0,3353,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,6.1,74,83800,0,0,332,0,0,0,0,0,0,0,10,2.6,9,9,16.0,2134,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,83700,0,0,317,0,0,0,0,0,0,0,40,3.6,7,7,16.0,2438,9,999999999,129,0.0590,0,88,0.210,0.0,1.0 +2005,9,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,83700,0,0,336,0,0,0,0,0,0,0,180,3.6,10,10,16.0,2134,9,999999999,129,0.0590,0,88,0.210,0.0,1.0 +2005,9,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,83500,0,0,318,0,0,0,0,0,0,0,150,5.7,8,8,16.0,1341,9,999999999,120,0.0590,0,88,0.210,0.0,1.0 +2005,9,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.1,80,83500,0,0,319,0,0,0,0,0,0,0,170,5.7,8,8,16.0,2896,9,999999999,120,0.0590,0,88,0.210,0.0,3.0 +2005,9,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,4.4,73,83500,0,0,302,0,0,0,0,0,0,0,180,6.2,4,4,16.0,77777,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,3.9,71,83500,0,0,292,0,0,0,0,0,0,0,180,6.7,1,1,16.0,77777,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,3.9,74,83500,0,0,289,0,0,0,0,0,0,0,160,7.2,1,1,16.0,77777,9,999999999,139,0.0590,0,88,0.210,0.0,6.0 +2005,9,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,3.3,68,83500,13,439,286,0,0,0,0,0,0,0,180,8.8,0,0,16.0,77777,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,3.3,61,83500,213,1351,293,143,508,63,14100,33700,8800,1010,180,8.2,0,0,16.0,77777,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.8,44,83500,469,1351,324,345,789,70,35300,72400,10000,1320,190,12.4,3,3,16.0,77777,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,2.8,37,83900,699,1351,337,539,873,87,56700,86000,12100,1900,180,10.3,3,3,16.0,77777,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,2.8,33,83900,884,1351,344,650,759,152,68800,76900,18300,3930,190,8.2,3,3,16.0,77777,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,2.8,31,83300,1012,1351,355,737,785,148,77000,78700,17900,4230,170,10.8,5,5,16.0,77777,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,1.7,27,83800,1075,1351,363,788,763,179,84200,78100,21900,6400,160,8.2,7,6,16.0,5486,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,1.1,27,83700,1068,1351,353,808,689,262,84000,69100,29200,8820,220,4.6,7,5,16.0,3962,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,2.2,32,83200,991,1351,356,145,0,145,17800,0,17800,7370,290,8.8,9,7,16.0,4877,9,999999999,150,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,4.0,54,83600,850,1351,340,102,0,102,12600,0,12600,5130,210,10.8,10,9,16.1,2400,9,999999999,150,0.0590,0,88,0.210,0.0,1.0 +2005,9,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.8,44,83700,654,1351,349,76,0,76,9300,0,9300,3600,220,5.2,10,9,16.0,2743,9,999999999,150,0.0590,0,88,0.210,0.0,1.0 +2005,9,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.0,51,83400,417,1351,344,138,57,121,15200,5200,13600,3200,250,4.6,8,8,16.0,3962,9,999999999,160,0.0590,0,88,0.210,0.0,1.0 +2005,9,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,5.0,57,83600,157,1351,319,61,198,38,6300,11100,5000,680,240,6.2,3,3,16.0,77777,9,999999999,150,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,5.6,71,83600,2,169,308,0,0,0,0,0,0,0,210,3.1,3,3,16.0,77777,9,999999999,150,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,5.0,80,83500,0,0,297,0,0,0,0,0,0,0,180,3.6,3,3,16.0,6706,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,5.0,68,83500,0,0,312,0,0,0,0,0,0,0,210,5.2,5,5,16.0,77777,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,5.0,74,83500,0,0,307,0,0,0,0,0,0,0,230,4.6,5,5,16.0,77777,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,83500,0,0,304,0,0,0,0,0,0,0,220,5.7,3,3,16.0,77777,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.9,66,83500,0,0,291,0,0,0,0,0,0,0,210,5.2,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.3,63,83500,0,0,290,0,0,0,0,0,0,0,220,5.7,0,0,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,2.8,68,83600,0,0,283,0,0,0,0,0,0,0,240,4.6,0,0,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,1.7,63,83600,0,0,282,0,0,0,0,0,0,0,240,5.2,0,0,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,0.6,56,83600,0,0,283,0,0,0,0,0,0,0,230,4.6,0,0,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,0.0,54,83700,0,0,282,0,0,0,0,0,0,0,220,5.2,0,0,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,0.0,58,83700,12,417,278,0,0,0,0,0,0,0,230,6.2,0,0,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,0.0,46,83900,209,1351,291,134,458,63,13200,30100,8600,1000,230,6.7,0,0,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,0.6,39,83800,465,1351,306,309,668,78,32200,61400,11000,1500,220,6.7,0,0,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,-0.6,28,84300,695,1351,321,480,719,109,50700,71400,13900,2380,220,4.6,0,0,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,-5.0,17,84400,880,1351,326,618,711,154,65300,71900,18400,3950,250,2.6,0,0,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,-6.7,13,83800,1008,1351,346,719,736,168,76600,75200,20400,5250,270,2.6,3,3,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,-6.7,12,84300,1070,1351,351,812,866,125,83600,86500,14900,3360,210,3.1,3,3,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,-7.2,11,84300,1062,1351,353,802,893,99,83200,89400,12800,3000,140,3.6,3,3,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,-7.8,10,83600,985,1351,355,750,895,96,77900,89400,12500,2550,110,3.1,3,3,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,-7.2,10,84200,844,1351,358,633,854,99,67300,85700,13700,2440,140,3.6,3,3,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,-7.2,10,84200,648,1351,358,465,797,83,48700,77700,11400,1750,120,4.1,3,3,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,-6.7,11,83500,411,1351,353,271,731,48,28400,65900,8300,1010,130,5.7,2,2,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,-6.7,14,84100,150,1351,338,70,449,20,7400,30800,4000,440,120,4.1,3,3,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,-3.3,24,83900,1,124,327,0,0,0,0,0,0,0,180,5.2,3,3,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,-2.2,29,83600,0,0,308,0,0,0,0,0,0,0,170,5.7,0,0,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,-0.6,30,83900,0,0,316,0,0,0,0,0,0,0,170,6.7,0,0,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,0.0,34,83800,0,0,310,0,0,0,0,0,0,0,170,8.2,0,0,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,0.0,40,83700,0,0,300,0,0,0,0,0,0,0,170,6.2,0,0,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,0.6,45,83600,0,0,296,0,0,0,0,0,0,0,160,5.2,0,0,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,1.7,44,83700,0,0,305,0,0,0,0,0,0,0,180,4.6,0,0,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,2.2,58,83600,0,0,289,0,0,0,0,0,0,0,190,3.6,0,0,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,1.1,43,83600,0,0,302,0,0,0,0,0,0,0,210,5.7,0,0,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,0.6,48,83500,0,0,298,0,0,0,0,0,0,0,240,4.6,1,1,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,0.6,48,83600,0,0,307,0,0,0,0,0,0,0,240,4.6,5,4,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,0.0,44,83600,11,394,314,0,0,0,0,0,0,0,230,5.2,7,6,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-0.6,35,83800,205,1352,325,114,461,44,11500,31000,6800,770,220,6.2,8,6,16.0,6706,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,-0.6,28,83700,461,1352,340,287,414,146,29300,37900,16400,2870,240,5.2,9,5,16.0,6706,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,-2.2,20,84100,691,1352,352,260,68,225,28500,6800,25100,6740,240,3.1,9,5,16.0,6706,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,-2.2,20,84100,876,1352,355,427,158,325,46400,16600,35700,9230,200,2.1,8,5,16.0,6706,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,-5.0,13,83600,1003,1352,364,496,181,361,54100,19200,39900,11650,170,2.1,6,5,16.0,6706,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,-5.6,12,84200,1065,1352,374,242,12,233,29000,1000,28300,11200,150,2.1,7,7,16.0,6706,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,-6.7,10,84100,1057,1352,376,321,18,307,37600,1600,36300,13750,120,2.1,6,6,16.0,6706,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,-7.2,9,83200,980,1352,369,471,173,345,51400,18300,38100,10830,90,3.6,4,4,16.0,6706,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,-7.2,9,83900,838,1352,372,588,658,179,61100,65700,20300,4240,110,5.2,3,3,16.0,77777,9,999999999,110,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,-6.1,10,83800,641,1352,384,459,808,75,48500,79000,10900,1640,110,6.2,7,7,16.0,77777,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,-4.4,13,83000,404,1352,371,265,498,116,27200,43800,14100,2210,110,5.7,6,5,16.0,77777,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,-3.3,15,83600,143,1352,366,10,0,10,1200,0,1200,400,50,4.6,6,5,16.0,77777,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,-3.3,15,83600,0,79,369,0,0,0,0,0,0,0,120,4.1,6,6,16.0,77777,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,-2.2,21,83000,0,0,344,0,0,0,0,0,0,0,50,5.2,3,3,16.0,77777,9,999999999,110,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,-2.2,22,83400,0,0,341,0,0,0,0,0,0,0,330,4.1,3,3,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,-1.7,26,83400,0,0,337,0,0,0,0,0,0,0,280,4.6,6,5,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-2.2,31,83200,0,0,316,0,0,0,0,0,0,0,240,3.6,3,3,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-2.2,30,83300,0,0,318,0,0,0,0,0,0,0,260,2.1,3,3,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,-2.2,32,83200,0,0,301,0,0,0,0,0,0,0,230,3.6,0,0,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,-3.3,31,83200,0,0,295,0,0,0,0,0,0,0,230,3.6,0,0,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-3.9,31,83100,0,0,292,0,0,0,0,0,0,0,230,4.1,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,-4.4,29,83100,0,0,294,0,0,0,0,0,0,0,210,3.6,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,-5.6,32,83100,0,0,279,0,0,0,0,0,0,0,180,3.6,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-4.4,37,83000,9,372,278,0,0,0,0,0,0,0,200,4.1,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,-4.4,24,83300,201,1353,305,127,449,61,12600,28900,8300,970,240,2.6,0,0,16.0,77777,9,999999999,60,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,-5.0,15,83200,457,1353,333,318,759,60,32900,69700,9300,1200,180,3.6,0,0,16.0,77777,9,999999999,60,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,-7.8,10,83700,687,1353,354,467,658,132,48600,64700,15700,2780,220,3.1,2,2,16.0,77777,9,999999999,60,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,-9.4,8,83800,871,1353,358,689,954,73,72100,94800,10800,1920,200,2.6,3,3,16.0,77777,9,999999999,60,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,-8.9,8,83100,999,1353,361,799,978,75,83500,97900,11100,2290,170,4.1,2,2,16.0,77777,9,999999999,60,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,-9.4,8,83800,1061,1353,351,855,986,80,89200,98800,11500,2640,190,1.5,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,-11.1,6,83700,1052,1353,372,832,982,66,87300,98500,10500,2290,200,4.6,3,3,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,-11.7,5,82900,974,1353,373,755,931,84,78800,93000,11600,2350,270,1.5,3,3,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,-11.7,5,83700,831,1353,379,627,895,75,65500,88700,10800,1860,340,3.6,3,3,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,-11.7,5,83700,634,1353,376,464,843,68,48600,81500,10300,1460,30,5.2,3,3,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,-10.6,6,82800,397,1353,375,263,740,46,27600,66100,8200,970,30,6.2,6,5,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,-8.9,10,83500,136,1353,346,59,396,20,6100,24700,3600,400,20,4.6,3,3,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,-7.2,15,83400,0,56,316,0,0,0,0,0,0,0,20,4.1,0,0,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,-7.2,16,83000,0,0,311,0,0,0,0,0,0,0,30,3.6,0,0,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,-7.2,14,83400,0,0,321,0,0,0,0,0,0,0,330,5.7,0,0,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,-6.7,18,83300,0,0,309,0,0,0,0,0,0,0,360,6.2,0,0,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-6.7,20,83200,0,0,300,0,0,0,0,0,0,0,20,4.6,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,-6.1,27,83200,0,0,287,0,0,0,0,0,0,0,330,3.6,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-5.0,28,83200,0,0,300,0,0,0,0,0,0,0,250,3.6,2,2,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,-3.3,34,83300,0,0,300,0,0,0,0,0,0,0,290,3.6,2,2,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,-1.1,42,83200,0,0,290,0,0,0,0,0,0,0,260,4.1,0,0,16.0,6706,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,1.1,47,83300,0,0,297,0,0,0,0,0,0,0,290,3.6,0,0,16.0,6706,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,0.6,52,83400,0,0,293,0,0,0,0,0,0,0,250,3.6,1,1,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,1.7,54,83400,8,350,297,0,0,0,0,0,0,0,300,4.1,1,1,16.0,6706,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,1.1,43,83600,197,1354,302,130,469,62,12800,29800,8500,970,350,1.5,0,0,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,6.1,53,83500,453,1354,323,296,568,105,30100,50900,13000,1890,40,2.6,1,1,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,6.7,52,83800,683,1354,329,468,695,116,49100,68600,14400,2480,50,2.1,1,1,16.0,7620,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,6.1,42,83900,867,1354,357,625,753,141,66300,76300,17300,3590,60,3.6,6,6,16.0,7620,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,5.0,35,83500,994,1354,358,775,857,143,80900,85900,17600,3970,80,2.6,6,4,16.0,7620,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,3.9,27,84000,1056,1354,373,697,565,255,75200,59000,29100,8650,90,3.1,7,5,16.0,7620,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,1.1,22,83900,1047,1354,372,730,671,210,77000,68000,24200,6900,60,4.6,5,5,16.0,7620,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,-1.1,16,83200,968,1354,378,534,298,321,57800,32100,34700,9540,80,5.2,4,4,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,-1.1,15,84000,825,1354,390,604,741,151,63500,74400,18000,3610,90,7.2,7,6,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,-1.1,15,83900,628,1354,391,447,796,77,46900,77400,10900,1640,60,6.7,8,7,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,-1.7,17,83200,389,1354,368,243,676,48,25300,60000,8000,990,60,6.2,6,5,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,-1.7,21,83800,129,1354,352,57,381,21,5800,23100,3600,400,40,5.2,6,5,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,-1.7,24,83800,0,11,342,0,0,0,0,0,0,0,10,6.2,6,5,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,6.7,48,83400,0,0,347,0,0,0,0,0,0,0,40,5.7,6,5,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,8.9,56,83800,0,0,349,0,0,0,0,0,0,0,50,6.2,6,5,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,10.0,65,83700,0,0,345,0,0,0,0,0,0,0,60,4.6,6,5,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,9.4,74,83500,0,0,332,0,0,0,0,0,0,0,360,1.5,6,5,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,7.2,64,83700,0,0,329,0,0,0,0,0,0,0,300,4.1,6,5,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,7.2,67,83700,0,0,326,0,0,0,0,0,0,0,270,1.5,9,5,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,6.7,69,83700,0,0,333,0,0,0,0,0,0,0,260,2.6,10,8,16.0,6706,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,5.6,66,83600,0,0,309,0,0,0,0,0,0,0,250,3.6,4,2,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,3.3,56,83700,0,0,310,0,0,0,0,0,0,0,310,2.6,4,3,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.4,68,83900,0,0,309,0,0,0,0,0,0,0,350,2.6,9,5,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.9,93,83900,7,350,341,0,0,0,0,0,0,0,0,0.0,10,10,0.2,61,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,9.4,92,84000,192,1354,345,84,213,54,8600,13400,6700,990,0,0.0,10,10,0.4,30,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,10.6,86,84100,449,1354,357,82,0,82,9500,0,9500,3350,250,2.6,10,10,0.4,152,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,10.6,70,84400,678,1354,343,254,62,223,27900,6200,24800,6610,190,2.1,9,5,9.6,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,9.4,56,84500,863,1354,347,625,680,190,64800,67900,21500,4600,130,2.1,4,3,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,4.4,32,84100,990,1354,342,731,815,134,76900,81900,16800,3770,50,3.6,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,2.8,25,84700,1051,1354,351,788,860,119,81200,85900,14400,3140,60,2.6,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,1.1,20,84700,1041,1354,357,778,850,122,83200,86100,16700,3910,100,4.1,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,-2.8,13,84000,962,1354,359,749,907,103,77600,90400,13200,2500,70,2.1,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,-3.9,12,84700,819,1354,373,620,901,74,64900,89200,10800,1830,0,0.0,4,2,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,-4.4,12,84700,621,1354,373,452,824,73,47600,80200,10800,1580,70,2.6,4,3,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,-5.0,11,84000,382,1354,366,237,641,55,24200,56200,8300,1050,90,3.1,4,2,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,-4.4,15,84600,122,1321,337,53,357,21,5600,21700,3500,400,90,2.6,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,-3.3,23,84500,0,0,316,0,0,0,0,0,0,0,140,4.1,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,-2.8,26,84100,0,0,309,0,0,0,0,0,0,0,170,5.2,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,1.1,36,84400,0,0,324,0,0,0,0,0,0,0,170,5.2,4,2,16.0,77777,9,999999999,60,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,3.9,41,84400,0,0,335,0,0,0,0,0,0,0,180,6.7,4,3,16.0,77777,9,999999999,60,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,4.4,47,84100,0,0,334,0,0,0,0,0,0,0,180,5.7,9,5,16.0,77777,9,999999999,60,0.0580,0,88,0.210,999.0,99.0 +2005,9,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,5.0,46,84300,0,0,331,0,0,0,0,0,0,0,240,3.6,3,2,16.0,77777,9,999999999,60,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,84200,0,0,323,0,0,0,0,0,0,0,210,4.6,2,2,16.0,77777,9,999999999,60,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,4.4,57,84100,0,0,309,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,60,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,4.4,57,84000,0,0,309,0,0,0,0,0,0,0,230,3.1,1,1,16.0,77777,9,999999999,60,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,3.9,55,84000,0,0,308,0,0,0,0,0,0,0,230,4.1,1,1,16.0,77777,9,999999999,60,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,3.9,57,84100,0,0,306,0,0,0,0,0,0,0,230,4.6,1,1,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,2.8,53,84200,7,328,299,0,0,0,0,0,0,0,240,2.1,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,2.2,38,84500,188,1355,317,123,445,61,12100,27600,8200,940,240,2.1,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,0.6,27,84200,445,1355,330,298,672,76,30900,61000,10800,1450,240,5.7,0,0,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,0.0,21,84800,674,1355,351,468,696,121,49000,68400,14800,2550,240,4.1,1,1,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,-3.3,13,84900,859,1355,368,619,759,136,65700,77000,16800,3430,150,2.1,2,2,16.0,77777,9,999999999,69,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,-6.7,9,84200,985,1355,375,694,700,184,73300,71000,21500,5430,150,2.1,4,3,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,-8.9,7,84900,1046,1355,387,752,715,198,79500,72700,23200,6520,160,2.1,4,4,16.0,77777,9,999999999,80,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,-10.6,6,84900,1036,1355,384,695,617,222,72800,62300,25100,7060,160,3.1,4,4,16.0,7620,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,-10.0,6,84000,956,1355,384,731,841,136,76400,84200,16800,3570,160,5.2,2,2,16.0,7620,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,-9.4,6,84800,813,1355,385,586,800,105,61500,79700,13600,2430,130,4.1,2,2,16.0,7620,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,-9.4,6,84700,614,1355,380,419,561,164,43800,55200,18700,3360,110,3.6,3,3,16.0,6706,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,-7.2,8,83800,375,1355,397,125,67,106,13700,6000,12000,2760,130,4.6,8,8,16.0,6706,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,-6.1,12,84500,115,1299,366,20,0,20,2300,0,2300,730,140,4.1,7,6,16.0,6706,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,-5.0,17,84300,0,0,343,0,0,0,0,0,0,0,150,4.1,6,4,16.0,6706,9,999999999,110,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,-4.4,19,83900,0,0,338,0,0,0,0,0,0,0,150,3.6,7,4,16.0,3962,9,999999999,110,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,-3.3,22,84100,0,0,337,0,0,0,0,0,0,0,160,4.6,7,5,16.0,6706,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,-2.8,26,83900,0,0,328,0,0,0,0,0,0,0,180,3.6,7,5,16.0,77777,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,-2.2,24,83900,0,0,338,0,0,0,0,0,0,0,220,6.2,8,5,16.0,77777,9,999999999,150,0.0580,0,88,0.210,999.0,99.0 +2005,9,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,-2.8,23,83900,0,0,338,0,0,0,0,0,0,0,240,4.6,8,5,16.0,77777,9,999999999,160,0.0580,0,88,0.210,999.0,99.0 +2005,9,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,-2.2,24,83900,0,0,338,0,0,0,0,0,0,0,220,4.6,8,5,16.0,6096,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,-2.8,22,83800,0,0,343,0,0,0,0,0,0,0,220,5.7,10,6,16.0,6096,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,-2.2,23,83800,0,0,341,0,0,0,0,0,0,0,220,4.6,9,5,16.0,77777,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,-2.2,23,83800,0,0,341,0,0,0,0,0,0,0,220,5.2,9,4,16.0,77777,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,-2.2,23,83600,0,0,339,0,0,0,0,0,0,0,220,5.2,9,4,16.0,6096,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,-2.2,22,83900,6,305,349,0,0,0,0,0,0,0,210,5.2,8,6,16.0,6096,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,-1.1,25,83900,184,1356,342,88,185,63,9100,10900,7600,1250,200,6.2,5,4,16.0,3962,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,-0.6,22,83600,441,1356,353,179,96,148,19600,9000,16700,3820,220,7.7,3,3,16.0,4877,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,1.1,18,84200,670,1356,380,469,616,163,49600,61600,19000,3410,220,6.7,3,3,16.0,77777,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,2.2,17,84300,854,1356,403,594,662,175,61900,66300,20000,4240,210,6.2,10,6,16.0,6096,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,2.2,17,83500,981,1356,403,428,121,340,46800,12800,37500,10660,200,8.2,10,6,16.0,4877,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,2.2,17,84100,1041,1356,403,224,6,220,26900,500,26500,10610,180,7.2,10,6,16.0,4877,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,2.2,17,84100,1030,1356,407,226,0,226,27000,0,27000,10800,180,5.2,10,7,16.0,3900,9,999999999,179,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,8.3,39,83500,950,1356,395,151,0,151,18400,0,18400,7510,260,10.3,10,9,6.4,3353,9,999999999,179,0.0570,0,88,0.210,0.0,3.0 +2005,9,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,7.2,34,83900,806,1356,385,96,0,96,11800,0,11800,4770,320,5.2,10,7,16.0,3962,9,999999999,189,0.0570,0,88,0.210,0.0,1.0 +2005,9,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,6.1,27,83900,607,1356,398,247,99,202,27000,9700,22700,5730,310,4.1,9,7,16.0,3962,9,999999999,200,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,5.6,28,83300,368,1356,392,148,163,104,16200,14400,12200,2300,10,1.5,9,7,16.0,4877,9,999999999,200,0.0570,0,88,0.210,0.0,6.0 +2005,9,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,5.0,29,83800,109,1254,382,8,0,8,1000,0,1000,320,0,0.0,9,7,16.0,3962,9,999999999,200,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,5.6,36,83800,0,0,375,0,0,0,0,0,0,0,100,3.6,10,8,16.0,3048,9,999999999,189,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,6.7,40,83500,0,0,374,0,0,0,0,0,0,0,60,7.7,9,8,16.0,3048,9,999999999,189,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,5.6,42,83800,0,0,382,0,0,0,0,0,0,0,40,7.7,10,10,16.0,3600,9,999999999,200,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,9.4,60,83800,0,0,368,0,0,0,0,0,0,0,30,6.7,10,9,16.0,3962,9,999999999,209,0.0570,0,88,0.210,999.0,99.0 +2005,9,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,10.0,69,83600,0,0,347,0,0,0,0,0,0,0,60,2.6,9,7,16.0,6096,9,999999999,229,0.0570,0,88,0.210,0.0,1.0 +2005,9,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,83600,0,0,353,0,0,0,0,0,0,0,150,3.1,10,9,16.0,2896,9,999999999,229,0.0570,0,88,0.210,0.0,1.0 +2005,9,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.6,78,83700,0,0,348,0,0,0,0,0,0,0,200,2.1,9,8,16.0,2743,9,999999999,229,0.0570,0,88,0.210,0.0,1.0 +2005,9,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.0,75,83600,0,0,354,0,0,0,0,0,0,0,170,4.1,10,9,16.0,2896,9,999999999,229,0.0570,0,88,0.210,0.0,3.0 +2005,9,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,83600,0,0,344,0,0,0,0,0,0,0,170,5.7,9,7,16.0,3962,9,999999999,209,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,10.0,75,83600,0,0,364,0,0,0,0,0,0,0,140,3.6,10,10,16.0,4267,9,999999999,200,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,9.4,80,83600,0,0,329,0,0,0,0,0,0,0,50,3.6,9,6,16.0,4572,9,999999999,179,0.0570,0,88,0.210,0.0,6.0 +2005,9,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,9.4,86,83600,5,283,328,0,0,0,0,0,0,0,70,3.1,9,7,16.0,4267,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,10.0,83,83700,180,1357,330,64,16,62,7000,300,6900,1810,90,5.2,7,6,16.0,4267,9,999999999,160,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.6,75,83700,437,1357,335,172,83,145,18800,7700,16300,3750,90,6.2,4,4,16.0,4267,9,999999999,160,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,10.0,69,84000,666,1357,353,476,616,172,50000,61500,19700,3620,90,6.2,8,8,16.0,396,9,999999999,150,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,10.6,63,84100,850,1357,364,536,474,239,56500,48700,25900,5940,50,6.2,8,8,16.0,1524,9,999999999,150,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,8.9,52,83800,976,1357,368,570,344,322,61600,37100,34900,9630,60,5.7,8,8,16.0,1524,9,999999999,150,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,8.9,47,84200,1036,1357,376,770,751,194,81400,76400,22900,6250,60,5.7,9,8,16.0,1524,9,999999999,160,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,8.3,42,84100,1025,1357,381,718,647,228,75000,65200,25700,7050,50,4.6,9,8,16.0,1524,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,6.7,37,83500,944,1357,382,418,125,330,45600,13200,36300,9950,70,5.7,8,8,16.0,1981,9,999999999,179,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,6.1,34,84000,800,1357,384,203,12,196,23600,1000,23100,8590,40,7.7,8,8,16.0,2438,9,999999999,189,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,7.2,39,83900,601,1357,388,80,0,80,9600,0,9600,3660,200,6.2,9,9,16.0,2100,9,999999999,200,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,10.0,60,83500,361,1357,364,38,0,38,4600,0,4600,1620,280,6.2,8,8,16.0,3962,9,999999999,209,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,10.0,65,83900,102,1210,352,5,0,5,600,0,600,210,260,4.1,7,7,12.8,3658,9,999999999,209,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,10.6,72,83800,0,0,338,0,0,0,0,0,0,0,280,2.1,4,4,14.4,6096,9,999999999,200,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,9.4,72,83600,0,0,325,0,0,0,0,0,0,0,0,0.0,2,2,16.0,3962,9,999999999,189,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,7.2,69,83700,0,0,343,0,0,0,0,0,0,0,170,3.6,9,9,16.0,6096,9,999999999,179,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,6.7,74,83600,0,0,316,0,0,0,0,0,0,0,0,0.0,5,5,16.0,77777,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,6.1,74,83500,0,0,313,0,0,0,0,0,0,0,170,4.1,5,5,16.0,77777,9,999999999,170,0.0570,0,88,0.210,999.0,99.0 +2005,9,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,7.2,77,83500,0,0,312,0,0,0,0,0,0,0,190,3.1,3,3,16.0,77777,9,999999999,160,0.0570,0,88,0.210,999.0,99.0 +2005,9,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.7,80,83400,0,0,294,0,0,0,0,0,0,0,190,3.6,0,0,16.0,77777,9,999999999,160,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,7.8,77,83500,0,0,302,0,0,0,0,0,0,0,210,4.1,0,0,16.0,77777,9,999999999,150,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,7.2,77,83400,0,0,312,0,0,0,0,0,0,0,210,4.1,3,3,16.0,77777,9,999999999,150,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,6.7,83,83300,0,0,304,0,0,0,0,0,0,0,260,3.1,3,3,16.0,77777,9,999999999,150,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.7,80,83400,0,0,309,0,0,0,0,0,0,0,230,2.6,4,4,16.0,77777,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,6.7,83,83400,4,260,304,0,0,0,0,0,0,0,230,2.6,3,3,16.0,77777,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,7.8,77,83500,176,1357,302,118,458,59,11600,27300,8000,900,300,1.5,0,0,16.0,77777,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,8.3,67,83400,433,1357,333,292,616,96,29800,54600,12400,1730,0,0.0,5,5,16.0,77777,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,7.2,52,83700,662,1357,339,456,678,125,47500,66300,15100,2590,360,2.1,3,3,16.0,77777,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,6.1,42,83800,845,1357,354,581,693,149,61300,69900,17700,3650,0,0.0,5,5,16.0,77777,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,5.0,30,83300,971,1357,379,707,779,148,73300,77800,17500,3850,60,2.1,7,7,16.0,77777,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,2.2,21,83900,1030,1357,382,739,745,172,78800,76100,20900,5550,110,3.1,5,5,16.0,6706,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,0.6,17,83900,1019,1357,392,748,695,225,78200,70000,25500,6880,0,0.0,7,6,16.0,6706,9,999999999,150,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,0.6,17,83000,938,1357,397,354,77,300,38900,7900,33500,10590,50,2.1,8,7,16.0,6706,9,999999999,160,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,1.1,17,83700,793,1357,392,360,136,280,39100,14200,30800,7460,90,5.7,6,5,16.0,6706,9,999999999,170,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,1.7,19,83700,594,1357,395,257,99,213,28100,9800,23800,5870,80,6.2,7,7,16.0,6706,9,999999999,170,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,2.2,22,83600,354,1357,402,161,234,100,17000,19900,11800,1970,80,7.7,9,9,16.0,6706,9,999999999,170,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,3.3,25,83500,96,1188,378,34,155,24,3900,7200,3300,420,0,0.0,7,6,16.0,6706,9,999999999,170,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,2.2,31,83300,0,0,349,0,0,0,0,0,0,0,160,4.6,4,4,16.0,6706,9,999999999,160,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,4.4,32,82900,0,0,357,0,0,0,0,0,0,0,230,7.2,3,3,16.0,4572,9,999999999,160,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,5.0,43,83300,0,0,365,0,0,0,0,0,0,0,240,4.6,9,9,16.0,6706,9,999999999,150,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,5.6,48,83200,0,0,360,0,0,0,0,0,0,0,260,4.1,9,9,16.0,6706,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,83000,0,0,338,0,0,0,0,0,0,0,220,3.6,7,7,16.0,6706,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,5.0,49,83100,0,0,316,0,0,0,0,0,0,0,260,3.1,0,0,16.0,77777,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,4.4,51,83000,0,0,310,0,0,0,0,0,0,0,250,2.6,0,0,16.0,77777,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,3.9,59,83000,0,0,311,0,0,0,0,0,0,0,210,2.6,3,3,16.0,77777,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,2.8,51,82900,0,0,317,0,0,0,0,0,0,0,0,0.0,6,4,16.0,6096,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.9,47,83000,0,0,330,0,0,0,0,0,0,0,0,0.0,10,5,16.0,6096,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,5.6,55,83000,0,0,330,0,0,0,0,0,0,0,0,0.0,9,5,16.0,6096,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,5.6,66,82900,3,238,320,0,0,0,0,0,0,0,10,3.6,9,6,16.0,4267,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,6.1,66,83100,172,1358,320,13,0,13,1600,0,1600,530,350,2.6,9,5,16.0,4267,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,6.7,71,83100,429,1358,321,45,0,45,5400,0,5400,1980,10,4.1,9,6,16.0,4267,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,7.2,69,83200,657,1358,331,107,0,107,12700,0,12700,4850,10,3.1,9,7,16.0,3962,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,8.3,62,83400,841,1358,341,498,359,276,53500,38200,29800,7120,10,2.1,10,6,16.0,6096,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,8.3,56,83100,966,1358,349,378,54,339,41600,5500,37600,12000,340,3.6,9,6,16.0,4267,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,8.9,52,83400,1025,1358,376,376,30,353,43300,2900,41100,14840,50,2.6,9,9,16.0,6096,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,9.4,50,83400,1014,1358,374,469,156,352,51300,16500,38900,11440,20,3.1,10,8,16.0,6096,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,10.0,49,83000,932,1358,374,643,620,217,66800,62000,24100,5690,20,2.6,10,7,16.0,6096,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,8.9,47,83400,787,1358,366,539,627,175,55700,62000,19700,3890,20,3.6,7,6,16.0,6096,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,10.6,53,83400,587,1358,368,315,291,188,33300,29300,20600,4110,70,3.6,7,6,16.0,4267,9,999999999,150,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,11.1,61,82900,347,1358,370,203,479,80,21200,39900,11000,1470,50,3.6,9,8,16.0,6706,9,999999999,160,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,10.6,72,83300,90,1143,344,30,257,14,3700,15100,2400,300,40,3.1,7,6,16.0,6706,9,999999999,160,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,9.4,77,83200,0,0,336,0,0,0,0,0,0,0,30,3.1,8,7,16.0,6706,9,999999999,160,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,8.9,83,83100,0,0,333,0,0,0,0,0,0,0,60,2.1,9,8,16.0,6706,9,999999999,170,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,8.9,86,83200,0,0,337,0,0,0,0,0,0,0,90,3.6,9,9,16.0,6706,9,999999999,160,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,9.4,86,83200,0,0,340,0,0,0,0,0,0,0,80,4.1,9,9,16.0,4267,9,999999999,160,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,8.9,83,83200,0,0,333,0,0,0,0,0,0,0,80,3.6,9,8,16.0,1128,9,999999999,160,0.0580,0,88,0.210,999.0,99.0 +2005,9,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,9.4,83,83300,0,0,353,0,0,0,0,0,0,0,30,3.6,10,10,16.0,305,9,999999999,170,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,9.4,89,83200,0,0,347,0,0,0,0,0,0,0,60,3.6,10,10,9.6,183,9,999999999,170,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,9.4,92,83200,0,0,345,0,0,0,0,0,0,0,30,2.6,10,10,0.8,61,9,999999999,170,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.4,96,83200,0,0,342,0,0,0,0,0,0,0,10,3.1,10,10,0.8,30,9,999999999,170,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,83200,0,0,337,0,0,0,0,0,0,0,10,3.6,10,10,0.4,30,9,999999999,170,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,8.3,96,83300,0,0,335,0,0,0,0,0,0,0,30,2.6,10,10,0.0,30,9,999999999,160,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,8.3,96,83400,3,215,335,0,0,0,0,0,0,0,30,3.1,10,10,0.0,30,9,999999999,150,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,83400,168,1359,331,41,0,41,4600,0,4600,1360,20,2.6,10,10,0.0,90,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,8.3,96,83500,424,1359,335,60,0,60,7100,0,7100,2530,40,2.6,10,10,3.2,61,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.3,89,83600,653,1359,341,107,0,107,12700,0,12700,4830,0,0.0,10,10,4.8,61,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,7.8,69,83700,836,1359,346,345,122,270,37800,12800,29900,7410,30,2.6,9,9,16.0,518,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,7.2,56,83400,961,1359,339,570,344,326,61400,37000,35100,9600,60,2.1,5,5,16.0,77777,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,7.2,50,83700,1020,1359,347,733,691,213,76900,69800,24300,6550,80,2.6,5,5,16.0,77777,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,7.2,43,83800,1008,1359,358,747,838,124,79400,84600,16400,3670,110,2.6,5,5,16.0,77777,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,6.7,38,83200,926,1359,363,684,840,109,72700,84700,14800,2910,90,3.1,4,4,16.0,77777,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,6.1,35,83800,780,1359,365,539,722,123,57100,72600,15300,2860,50,3.6,4,4,16.0,77777,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,5.6,34,83800,580,1359,367,415,804,71,43500,77300,10400,1490,100,5.2,5,5,16.0,77777,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,5.6,35,83300,339,1359,364,206,628,49,21100,53200,7700,940,50,3.6,5,5,16.0,77777,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,5.0,44,83800,84,1099,337,22,171,12,2700,9000,2000,230,80,3.6,3,3,16.0,77777,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,4.4,51,83800,0,0,323,0,0,0,0,0,0,0,110,3.1,3,3,16.0,77777,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,4.4,51,83600,0,0,323,0,0,0,0,0,0,0,110,1.5,3,3,16.0,77777,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,3.3,61,83900,0,0,302,0,0,0,0,0,0,0,100,2.6,2,2,16.0,77777,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,7.8,83,83900,0,0,310,0,0,0,0,0,0,0,90,4.6,3,3,16.0,77777,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,7.2,86,83900,0,0,301,0,0,0,0,0,0,0,80,3.6,2,2,16.0,77777,9,999999999,110,0.0580,0,88,0.210,999.0,99.0 +2005,9,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,6.7,90,83800,0,0,299,0,0,0,0,0,0,0,70,3.1,3,3,16.0,77777,9,999999999,110,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,6.1,96,83800,0,0,294,0,0,0,0,0,0,0,50,2.6,4,4,9.6,210,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,7.8,97,84000,0,0,332,0,0,0,0,0,0,0,100,3.6,10,10,0.8,61,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,7.2,96,83900,0,0,297,0,0,0,0,0,0,0,180,4.1,3,3,11.2,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,5.6,97,83800,0,0,277,0,0,0,0,0,0,0,170,3.6,0,0,12.8,77777,9,999999999,110,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,5.0,96,84100,0,0,286,0,0,0,0,0,0,0,180,3.6,3,3,12.8,77777,9,999999999,110,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,5.0,93,84000,2,193,276,0,0,0,0,0,0,0,210,3.1,0,0,14.4,77777,9,999999999,110,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,6.1,86,84200,163,1360,298,100,500,39,10000,30000,6400,660,180,3.1,3,3,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,3.9,55,84200,420,1360,318,303,805,53,31400,72600,8900,1080,130,4.1,4,4,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,0.0,34,84500,648,1360,324,464,796,83,48400,77600,11400,1750,120,7.2,3,3,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,2.2,34,84600,831,1360,331,582,742,127,61900,75100,15900,3120,140,7.2,1,1,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,3.3,32,84100,956,1360,336,676,737,156,72000,75100,19000,4440,130,7.2,0,0,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,2.8,24,84700,1015,1360,353,757,835,132,79900,84100,17000,3880,110,3.1,0,0,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,0.0,19,84600,1002,1360,355,747,874,101,77400,87300,12900,2660,100,2.1,0,0,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,-0.6,17,83800,920,1360,360,689,876,95,71600,87200,12400,2260,80,3.1,0,0,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,-1.7,15,84500,774,1360,361,555,816,90,58900,81300,12500,2100,50,1.5,0,0,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,4.4,25,84500,573,1360,363,399,792,64,42200,76300,9900,1390,120,6.7,0,0,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,5.0,28,83700,332,1360,374,200,648,41,20800,55000,7300,840,160,8.2,4,3,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,4.4,34,84300,78,1077,337,20,209,9,2700,12300,1800,220,170,4.6,0,0,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,5.0,39,84300,0,0,333,0,0,0,0,0,0,0,220,4.1,0,0,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,4.4,43,83800,0,0,322,0,0,0,0,0,0,0,180,6.2,0,0,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,4.4,47,84000,0,0,329,0,0,0,0,0,0,0,190,5.7,4,3,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,2.8,41,84000,0,0,326,0,0,0,0,0,0,0,190,5.7,4,2,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,2.2,38,83700,0,0,331,0,0,0,0,0,0,0,190,4.1,4,3,16.0,77777,9,999999999,89,0.0580,0,88,0.210,999.0,99.0 +2005,9,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,2.8,39,83800,0,0,334,0,0,0,0,0,0,0,200,5.7,5,4,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,2.8,39,83800,0,0,332,0,0,0,0,0,0,0,220,3.1,3,3,16.0,77777,9,999999999,100,0.0580,0,88,0.210,999.0,99.0 +2005,9,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,2.8,41,83600,0,0,321,0,0,0,0,0,0,0,270,4.1,1,1,16.0,77777,9,999999999,110,0.0580,0,88,0.210,999.0,99.0 +2005,9,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.8,44,83600,0,0,311,0,0,0,0,0,0,0,230,5.2,0,0,16.0,77777,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,2.2,38,83700,0,0,317,0,0,0,0,0,0,0,220,6.2,0,0,16.0,77777,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,1.1,42,83600,0,0,314,0,0,0,0,0,0,0,220,3.6,2,2,16.0,77777,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,1.1,36,83800,2,170,324,0,0,0,0,0,0,0,240,4.6,2,2,16.0,77777,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,0.0,31,83900,159,1361,328,103,309,66,10000,17100,8000,1280,200,3.6,3,2,16.0,77777,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,0.0,24,83700,416,1361,358,152,110,118,16500,10100,13400,2640,200,4.1,6,6,16.0,77777,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,0.0,19,84300,644,1361,384,437,562,171,45800,55700,19400,3560,230,4.6,9,7,16.0,6706,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,0.6,19,84300,827,1361,383,365,128,287,39700,13400,31600,7820,240,5.7,7,6,16.0,6706,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,1.7,18,83600,951,1361,390,577,374,314,62200,40200,33900,9080,200,4.6,4,4,16.0,6706,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,-0.6,14,84200,1009,1361,392,782,847,151,81200,84800,18200,4190,220,5.2,3,3,16.0,6706,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,-0.6,13,84100,996,1361,402,753,814,155,77900,81300,18200,4150,190,1.5,6,5,16.0,6096,9,999999999,150,0.0580,0,88,0.210,999.0,99.0 +2005,9,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,0.0,15,83300,914,1361,396,550,369,301,59200,39600,32500,8340,160,5.2,8,5,16.0,6096,9,999999999,160,0.0580,0,88,0.210,999.0,99.0 +2005,9,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,7.8,36,83900,767,1361,392,140,0,140,16600,0,16600,6460,170,3.1,9,8,16.0,3353,9,999999999,170,0.0580,0,88,0.210,0.0,1.0 +2005,9,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,3.3,23,83800,566,1361,391,356,367,203,37300,36500,22100,4520,170,3.1,10,7,16.0,4267,9,999999999,170,0.0580,0,88,0.210,0.0,1.0 +2005,9,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,3.9,27,83200,325,1361,381,111,83,91,12100,7000,10400,1990,170,2.6,9,7,16.0,3353,9,999999999,170,0.0580,0,88,0.210,0.0,6.0 +2005,9,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,12.0,72,83800,73,1032,370,6,0,6,700,0,700,240,330,6.7,10,9,16.0,2134,9,999999999,189,0.0580,0,88,0.210,0.0,1.0 +2005,9,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,83700,0,0,355,0,0,0,0,0,0,0,70,4.1,9,8,16.0,3300,9,999999999,200,0.0580,0,88,0.210,0.0,1.0 +2005,9,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,83500,0,0,359,0,0,0,0,0,0,0,330,6.7,10,9,16.0,2896,9,999999999,220,0.0580,0,88,0.210,0.0,3.0 +2005,9,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,83600,0,0,369,0,0,0,0,0,0,0,230,1.5,10,10,16.0,3048,9,999999999,220,0.0580,0,88,0.210,0.0,1.0 +2005,9,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,83600,0,0,367,0,0,0,0,0,0,0,250,3.1,10,10,16.0,2438,9,999999999,229,0.0580,0,88,0.210,0.0,1.0 +2005,9,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,83500,0,0,369,0,0,0,0,0,0,0,220,4.6,10,10,16.0,2591,9,999999999,229,0.0580,0,88,0.210,0.0,6.0 +2005,9,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.8,87,83400,0,0,361,0,0,0,0,0,0,0,220,5.7,10,9,16.0,2743,9,999999999,229,0.0580,0,88,0.210,0.0,1.0 +2005,9,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,83500,0,0,368,0,0,0,0,0,0,0,230,7.2,10,10,16.0,2286,9,999999999,229,0.0580,0,88,0.210,0.0,1.0 +2005,9,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.0,75,83500,0,0,364,0,0,0,0,0,0,0,240,4.6,10,10,16.0,2438,9,999999999,229,0.0580,0,88,0.210,0.0,3.0 +2005,9,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,10.0,83,83700,0,0,356,0,0,0,0,0,0,0,20,9.3,10,10,16.0,2134,9,999999999,220,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,5.0,74,83600,0,0,325,0,0,0,0,0,0,0,20,9.3,10,9,16.0,1676,9,999999999,220,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.0,77,84100,0,0,322,0,0,0,0,0,0,0,360,6.2,10,9,16.0,1524,9,999999999,209,0.0580,0,88,0.210,0.0,6.0 +2005,9,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,4.4,76,84100,1,147,328,0,0,0,0,0,0,0,360,3.1,10,10,16.0,823,9,999999999,200,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,4.4,76,84200,155,1361,328,91,235,64,9200,12200,7800,1320,360,6.2,10,10,16.0,671,9,999999999,200,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,84300,411,1361,325,61,0,61,7200,0,7200,2540,360,3.1,10,10,4.8,5182,9,999999999,189,0.0580,0,88,0.210,0.0,3.0 +2005,9,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.6,86,84300,639,1361,311,74,0,74,9000,0,9000,3480,350,4.6,8,8,16.0,457,9,999999999,189,0.0580,0,88,0.210,0.0,1.0 +2005,9,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,84400,822,1361,327,109,0,109,13300,0,13300,5360,10,5.1,10,10,16.1,600,9,999999999,179,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,3.9,66,84400,946,1361,319,279,18,266,32400,1600,31300,11730,30,4.6,8,8,16.0,1219,9,999999999,170,0.0580,0,88,0.210,0.0,6.0 +2005,9,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,3.9,61,84500,1004,1361,324,382,48,346,42000,4900,38400,12660,40,3.1,8,8,16.0,732,9,999999999,170,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,3.3,56,84400,990,1361,326,545,299,327,58900,32200,35400,9940,40,3.1,8,8,16.0,853,9,999999999,170,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,3.3,56,84300,907,1361,326,260,30,240,28700,3000,26700,8540,10,3.1,8,8,16.0,1036,9,999999999,160,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,3.3,56,84400,760,1361,326,291,83,245,32000,8400,27400,7640,360,1.5,8,8,16.0,1097,9,999999999,150,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,3.3,54,84500,559,1361,329,164,12,159,18500,900,18100,6060,100,2.1,8,8,16.0,1097,9,999999999,139,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,3.3,56,84300,318,1361,315,83,11,80,9300,500,9100,2830,160,3.1,5,5,16.0,77777,9,999999999,129,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,2.8,66,84300,68,1010,300,15,101,11,1900,5000,1600,210,150,2.1,4,4,16.0,77777,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,3.3,76,84300,0,0,291,0,0,0,0,0,0,0,170,3.6,3,3,16.0,77777,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,3.3,79,84200,0,0,289,0,0,0,0,0,0,0,180,4.1,3,3,16.0,77777,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,3.3,79,84300,0,0,289,0,0,0,0,0,0,0,180,4.6,3,3,16.0,77777,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.8,86,84100,0,0,279,0,0,0,0,0,0,0,170,4.1,2,2,16.0,77777,9,999999999,110,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,2.2,89,84100,0,0,265,0,0,0,0,0,0,0,160,4.6,0,0,16.0,77777,9,999999999,110,0.0580,0,88,0.210,999.0,99.0 +2005,9,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,3.3,93,83900,0,0,268,0,0,0,0,0,0,0,180,3.6,0,0,16.0,77777,9,999999999,120,0.0580,0,88,0.210,999.0,99.0 +2005,9,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,4.4,82,84000,0,0,280,0,0,0,0,0,0,0,210,5.2,0,0,16.0,77777,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,3.9,86,83900,0,0,280,0,0,0,0,0,0,0,220,3.1,1,1,16.0,77777,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,4.4,89,83800,0,0,276,0,0,0,0,0,0,0,230,3.6,1,0,16.0,77777,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,4.4,82,83800,0,0,285,0,0,0,0,0,0,0,220,4.1,1,1,16.0,77777,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,83800,0,0,283,0,0,0,0,0,0,0,230,2.6,2,1,16.0,6096,9,999999999,110,0.0590,0,88,0.210,0.0,24.0 +2005,9,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,3.9,82,83800,1,125,292,0,0,0,0,0,0,0,270,1.5,4,4,16.0,6096,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,4.4,85,83800,151,1362,292,16,0,16,1900,0,1900,620,0,0.0,4,4,16.0,6096,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,4.4,85,83700,407,1362,290,130,52,114,14200,4700,12800,3020,270,1.5,4,3,16.0,6096,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,6.1,83,83900,635,1362,298,425,401,237,44500,40900,25400,5500,0,0.0,4,2,14.4,6096,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,6.7,69,83900,817,1362,318,166,0,166,19600,0,19600,7620,170,2.6,8,4,16.0,6096,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,4.4,44,84100,941,1362,342,459,187,329,50000,19800,36400,9850,250,3.1,8,6,16.0,6096,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,3.3,34,84100,998,1362,350,636,457,300,66900,47400,32100,9170,210,3.1,6,5,16.0,6096,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,3.9,32,84000,985,1362,362,350,108,272,38900,11500,30500,8520,250,2.6,7,6,16.0,6096,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,-2.2,19,83300,901,1362,364,625,602,225,66600,62200,25300,5860,140,2.1,8,7,16.0,3962,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,-2.2,18,83900,754,1362,365,358,189,253,38900,19600,28100,6570,70,3.1,9,6,16.0,4267,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,-2.2,20,83800,552,1362,362,243,110,198,26600,10700,22200,5320,70,3.1,9,7,16.0,4267,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,-1.1,23,83200,311,1362,358,91,22,86,10000,1900,9500,2170,70,3.1,7,7,16.0,3962,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,3.9,42,83600,63,965,341,11,77,8,1400,3800,1200,160,40,3.1,10,6,16.0,4572,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,1.7,39,83600,0,0,328,0,0,0,0,0,0,0,150,2.6,7,4,16.0,4572,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,2.2,45,83200,0,0,323,0,0,0,0,0,0,0,160,4.1,6,5,16.0,4572,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,2.2,45,83500,0,0,343,0,0,0,0,0,0,0,230,3.6,9,9,16.0,6706,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,2.2,48,83400,0,0,337,0,0,0,0,0,0,0,230,3.6,9,9,16.0,6096,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,2.8,54,83200,0,0,321,0,0,0,0,0,0,0,220,3.1,7,7,16.0,6096,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,3.9,59,83200,0,0,311,0,0,0,0,0,0,0,250,2.6,3,3,14.4,77777,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,4.4,65,83100,0,0,299,0,0,0,0,0,0,0,270,3.1,1,1,11.2,77777,9,999999999,100,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,4.4,65,83100,0,0,299,0,0,0,0,0,0,0,240,4.1,1,1,14.4,77777,9,999999999,100,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,3.9,61,83000,0,0,301,0,0,0,0,0,0,0,240,4.1,1,1,16.0,6096,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,3.3,54,83100,0,0,299,0,0,0,0,0,0,0,220,5.7,0,0,16.0,6096,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,3.3,54,83000,0,0,299,0,0,0,0,0,0,0,230,5.7,0,0,16.0,6096,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,2.8,54,83200,1,102,297,0,0,0,0,0,0,0,230,5.2,0,0,16.0,77777,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,2.8,47,83300,146,1363,306,98,412,53,9500,22200,7100,790,220,5.7,0,0,16.0,77777,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,1.7,33,83100,402,1363,324,260,641,71,27000,56300,10300,1330,240,5.2,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,-2.2,20,83700,630,1363,335,452,760,100,47600,74300,13100,2080,250,4.1,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,-2.2,17,83800,812,1363,347,538,529,221,56600,54100,24200,5240,280,2.6,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,-4.4,12,83100,936,1363,352,670,737,163,71000,74800,19500,4460,310,1.5,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,-6.1,10,83800,993,1363,358,733,835,123,77700,84200,16200,3530,340,3.6,0,0,16.0,77777,9,999999999,120,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,-5.6,10,83800,979,1363,374,746,910,91,77600,90800,12200,2430,40,5.7,3,3,16.0,77777,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,-5.6,10,83000,895,1363,374,676,899,84,70400,89400,11600,2090,320,3.6,3,3,16.0,77777,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,-2.8,12,83800,747,1363,384,531,804,89,56100,79800,12200,2020,330,3.1,3,3,16.0,77777,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,-2.8,13,83700,545,1363,381,375,778,62,39500,74200,9700,1330,340,3.6,3,3,16.0,77777,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,-2.8,14,83000,303,1363,378,177,602,42,18100,49500,7000,820,20,3.1,5,5,16.0,77777,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,-2.8,17,83600,58,920,341,11,154,6,1800,9200,1100,200,360,2.1,0,0,16.0,77777,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,-2.2,18,83600,0,0,340,0,0,0,0,0,0,0,50,1.5,0,0,16.0,77777,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,-2.8,19,83100,0,0,334,0,0,0,0,0,0,0,360,1.5,0,0,16.0,77777,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,-2.8,21,83500,0,0,340,0,0,0,0,0,0,0,50,2.1,3,3,16.0,77777,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,-2.1,23,83400,0,0,324,0,0,0,0,0,0,0,190,2.5,0,0,16.0,77777,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.7,-1.6,31,83100,0,0,322,0,0,0,0,0,0,0,230,2.8,0,0,16.0,77777,9,999999999,139,0.0590,0,88,0.210,999.0,99.0 +2005,9,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.1,-1.0,40,83100,0,0,320,0,0,0,0,0,0,0,230,3.2,0,0,16.0,77777,9,999999999,129,0.0590,0,88,0.210,999.0,99.0 +2000,10,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.5,-0.5,39,83100,0,0,334,0,0,0,0,0,0,0,190,3.5,9,4,16.0,6096,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.9,0.0,39,83000,0,0,332,0,0,0,0,0,0,0,200,3.9,9,4,16.0,6096,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.2,0.5,39,83000,0,0,329,0,0,0,0,0,0,0,200,4.2,9,4,16.0,6096,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,1.1,37,83000,0,0,327,0,0,0,0,0,0,0,210,4.6,8,4,16.0,6096,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,1.1,40,82900,0,0,322,0,0,0,0,0,0,0,190,3.1,8,4,16.0,7620,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,1.1,39,83100,0,80,322,0,0,0,0,0,0,0,190,5.2,8,3,16.0,7620,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.2,34,83300,141,1365,341,17,0,17,2000,0,2000,650,190,5.2,7,4,16.0,6706,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,2.8,30,83400,397,1365,358,285,766,61,28900,67400,9200,1120,200,2.6,7,5,16.0,6706,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,1.7,23,83600,625,1365,370,486,834,103,51000,81300,13600,2130,270,6.2,7,5,16.0,6096,9,999999999,139,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,1.1,20,83600,807,1365,375,551,523,241,57400,53400,25800,5740,270,5.7,7,4,16.0,6706,9,999999999,139,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,0.6,18,82900,930,1365,380,670,749,158,71000,76100,19000,4290,210,5.2,7,4,16.0,6706,9,999999999,150,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,0.0,19,83500,986,1365,371,763,841,153,78900,83900,18100,4010,240,2.6,6,4,16.0,6706,9,999999999,139,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,1.1,18,83500,972,1365,383,746,874,122,79000,88000,16100,3370,350,4.1,6,4,16.0,6706,9,999999999,139,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,0.6,18,83400,888,1365,383,659,846,107,69800,85000,14400,2700,230,3.6,5,4,16.0,7315,9,999999999,139,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,0.6,17,83400,739,1365,385,503,662,143,52400,65500,16800,3110,250,2.1,4,3,16.0,7315,9,999999999,139,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,1.7,18,83400,537,1365,387,363,609,123,37100,56700,14700,2280,150,4.1,5,4,16.0,77777,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,3.3,23,82700,295,1365,384,144,344,69,15000,26700,9200,1260,130,4.1,10,5,16.0,77777,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.9,32,83200,52,876,354,6,28,5,800,1100,700,80,160,3.1,4,3,16.0,77777,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,2.2,29,83200,0,0,352,0,0,0,0,0,0,0,360,2.6,4,3,16.0,77777,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-1.1,21,83300,0,0,356,0,0,0,0,0,0,0,260,4.6,5,4,16.0,77777,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-1.7,21,83300,0,0,347,0,0,0,0,0,0,0,270,3.1,5,3,16.0,77777,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-2.2,22,83200,0,0,346,0,0,0,0,0,0,0,190,2.6,10,5,16.0,77777,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.0,36,83000,0,0,326,0,0,0,0,0,0,0,160,3.6,10,5,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.2,42,83100,0,0,310,0,0,0,0,0,0,0,40,9.3,1,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,5.6,74,83000,0,0,292,0,0,0,0,0,0,0,50,4.6,0,0,16.0,77777,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,5.0,74,83000,0,0,289,0,0,0,0,0,0,0,280,1.5,0,0,16.0,77777,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.0,82,82900,0,0,283,0,0,0,0,0,0,0,240,3.6,0,0,16.0,77777,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,5.0,80,83000,0,0,285,0,0,0,0,0,0,0,250,2.1,0,0,16.0,6706,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,83200,0,0,288,0,0,0,0,0,0,0,0,0.0,1,0,16.0,77777,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.9,93,82900,0,57,282,0,0,0,0,0,0,0,150,2.6,3,3,16.0,77777,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.7,77,83200,137,1365,311,0,0,0,0,0,0,0,80,2.1,4,4,16.0,77777,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.7,66,83200,393,1365,321,286,793,57,29200,69700,9100,1080,0,0.0,5,4,16.0,77777,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,83400,620,1365,334,440,711,116,45700,68800,14400,2340,30,2.1,5,4,16.0,77777,9,999999999,139,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,7.8,50,83500,802,1365,348,628,913,90,65200,90000,12200,1880,70,2.6,6,4,16.0,77777,9,999999999,139,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,6.7,42,83100,925,1365,357,714,906,98,74000,90100,12800,2290,100,2.1,6,5,16.0,7315,9,999999999,139,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,6.1,34,83600,981,1365,370,751,890,110,77600,88700,13700,2600,30,3.6,6,5,16.0,7315,9,999999999,150,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,6.1,30,83600,966,1365,385,734,832,144,76200,83100,17300,3710,50,3.1,8,6,16.0,7315,9,999999999,160,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,5.0,25,83700,881,1365,389,624,738,146,66100,74800,17700,3730,70,4.1,7,5,16.0,7315,9,999999999,170,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,3.3,21,83700,732,1365,386,536,821,94,56100,81000,12500,2050,90,4.1,6,4,16.0,77777,9,999999999,179,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,1.7,20,83600,530,1365,382,389,823,68,40400,77700,10100,1380,100,1.5,5,4,16.0,77777,9,999999999,189,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,5.6,30,82900,288,1365,378,174,663,34,18400,54700,6800,750,110,2.6,6,5,16.0,77777,9,999999999,200,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,3.9,30,83600,48,853,362,6,129,4,1300,7600,800,150,0,0.0,6,4,16.0,77777,9,999999999,209,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,8.9,56,83400,0,0,347,0,0,0,0,0,0,0,290,2.6,4,4,16.0,77777,9,999999999,220,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,8.9,60,83300,0,0,341,0,0,0,0,0,0,0,260,4.6,4,4,16.0,77777,9,999999999,229,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,8.9,64,83300,0,0,339,0,0,0,0,0,0,0,260,4.1,6,5,16.0,77777,9,999999999,240,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,7.8,56,83200,0,0,343,0,0,0,0,0,0,0,250,4.6,6,5,16.0,77777,9,999999999,250,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,83000,0,0,324,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,259,0.0600,0,88,0.200,0.0,1.0 +2000,10,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.3,72,83100,0,0,309,0,0,0,0,0,0,0,270,3.1,0,0,16.0,77777,9,999999999,250,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.8,74,83000,0,0,304,0,0,0,0,0,0,0,240,3.6,0,0,16.0,77777,9,999999999,240,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.2,77,83000,0,0,304,0,0,0,0,0,0,0,230,5.2,1,1,16.0,77777,9,999999999,229,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.7,66,83000,0,0,311,0,0,0,0,0,0,0,220,5.7,1,1,16.0,77777,9,999999999,220,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.6,64,83000,0,0,302,0,0,0,0,0,0,0,240,4.6,0,0,16.0,77777,9,999999999,209,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.0,63,83000,0,0,299,0,0,0,0,0,0,0,210,5.7,0,0,16.0,77777,9,999999999,209,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.9,55,83100,0,34,316,0,0,0,0,0,0,0,210,5.2,3,3,16.0,77777,9,999999999,200,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,5.0,59,83300,133,1366,319,0,0,0,0,0,0,0,360,3.1,4,4,16.0,77777,9,999999999,189,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,4.4,53,83400,388,1366,329,163,111,131,17500,9900,14700,2910,300,2.1,6,6,16.0,3658,9,999999999,179,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,5.6,43,83500,615,1366,342,447,668,145,45600,63700,16900,2780,210,2.1,3,3,16.0,77777,9,999999999,170,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,5.6,37,83600,797,1366,359,635,955,76,66300,94300,11100,1790,120,2.1,5,5,16.0,77777,9,999999999,160,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,4.4,32,83100,919,1366,360,707,900,100,73300,89500,12900,2280,60,4.6,4,4,16.0,77777,9,999999999,150,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,3.9,30,83600,975,1366,365,757,817,172,80200,83000,20700,4960,130,3.6,5,5,16.0,6096,9,999999999,150,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,3.9,27,83600,960,1366,381,622,437,314,67100,47000,34000,9120,30,3.1,8,7,16.0,6096,9,999999999,150,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.2,45,83600,875,1366,362,254,30,235,28000,3000,26100,8140,10,13.4,8,7,16.0,3658,9,999999999,139,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,7.8,54,83600,726,1366,366,396,283,245,42100,29600,26300,5830,30,13.4,9,9,16.0,3048,9,999999999,139,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,7.2,53,83600,523,1366,362,314,475,132,32900,45100,15600,2570,40,7.2,9,9,16.0,3048,9,999999999,139,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,6.7,58,83500,281,1366,346,150,466,54,15300,35900,7900,970,30,9.3,8,8,16.0,3048,9,999999999,139,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,6.7,66,83700,44,808,326,4,66,3,800,3600,600,80,70,4.1,6,6,16.0,6096,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.1,74,83600,0,0,313,0,0,0,0,0,0,0,110,3.6,5,5,16.0,6096,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,83600,0,0,310,0,0,0,0,0,0,0,160,4.6,5,5,16.0,6096,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,83500,0,0,329,0,0,0,0,0,0,0,170,4.6,9,9,16.0,6096,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.1,74,83500,0,0,332,0,0,0,0,0,0,0,170,6.7,9,9,16.0,6096,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.6,69,83500,0,0,326,0,0,0,0,0,0,0,150,5.7,8,8,16.0,6096,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,4.4,61,83400,0,0,328,0,0,0,0,0,0,0,130,5.7,8,8,16.0,2743,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,5.0,63,83300,0,0,328,0,0,0,0,0,0,0,150,5.2,9,8,16.0,3048,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,5.6,71,83300,0,0,324,0,0,0,0,0,0,0,150,5.2,9,8,16.0,3048,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,6.7,77,83300,0,0,325,0,0,0,0,0,0,0,220,4.1,9,8,16.0,3048,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,83200,0,0,323,0,0,0,0,0,0,0,280,3.6,9,9,16.0,3048,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,83200,0,0,325,0,0,0,0,0,0,0,250,5.2,10,10,12.8,30,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.0,7.0,100,83200,0,11,325,0,0,0,0,0,0,0,280,4.1,10,10,4.8,60,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,7.2,96,83300,128,1367,329,0,0,0,0,0,0,0,280,5.2,10,10,5.6,61,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.8,97,83300,383,1367,332,86,0,86,9800,0,9800,3240,280,4.1,10,10,4.0,61,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.8,90,83400,610,1367,337,156,0,156,17800,0,17800,6270,270,4.1,10,10,3.2,183,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.3,83,83400,791,1367,346,212,6,208,24400,500,24200,8890,280,4.6,10,10,9.6,244,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,8.3,77,83200,914,1367,334,565,387,306,60800,41500,32900,8470,330,3.6,8,8,11.2,6096,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.3,72,83300,969,1367,334,636,481,294,66700,49800,31300,8540,350,3.1,8,7,12.8,6096,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,8.3,62,83300,954,1367,345,343,60,301,37800,6100,33500,10710,320,2.1,8,7,12.8,6096,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.9,62,83300,868,1367,348,340,48,310,37400,4900,34300,10100,290,1.5,9,7,12.8,6096,9,999999999,150,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,8.9,60,83300,719,1367,351,323,124,258,35000,12800,28300,6550,250,1.5,9,7,12.8,6096,9,999999999,150,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,8.9,62,83300,516,1367,354,167,35,154,18300,3300,17100,4240,220,2.1,9,8,12.8,3353,9,999999999,160,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,8.9,64,82900,273,1367,346,26,0,26,3100,0,3100,1080,190,5.2,7,7,12.8,3048,9,999999999,160,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.3,64,83300,40,786,335,1,0,1,100,0,100,40,200,2.1,8,5,16.0,3658,9,999999999,170,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.2,57,83300,0,0,367,0,0,0,0,0,0,0,200,4.1,10,10,16.0,2896,9,999999999,170,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.8,39,83300,0,0,344,0,0,0,0,0,0,0,220,2.6,9,7,16.0,6096,9,999999999,179,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,3.3,49,83200,0,0,354,0,0,0,0,0,0,0,230,2.1,10,10,16.0,6096,9,999999999,179,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,5.0,57,83200,0,0,353,0,0,0,0,0,0,0,270,3.1,10,10,16.0,6096,9,999999999,189,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,9.2,88,83000,0,0,347,0,0,0,0,0,0,0,30,1.5,10,10,8.0,3353,9,999999999,189,0.0610,0,88,0.200,0.0,1.0 +2000,10,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.9,97,83200,0,0,338,0,0,0,0,0,0,0,10,7.7,10,10,0.4,30,9,999999999,189,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,8.9,100,83300,0,0,336,0,0,0,0,0,0,0,20,7.2,10,10,3.6,30,9,999999999,189,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,8.0,100,83300,0,0,331,0,0,0,0,0,0,0,10,6.7,10,10,8.9,150,9,999999999,189,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,7.2,96,83400,0,0,329,0,0,0,0,0,0,0,20,6.2,10,10,2.4,183,9,999999999,200,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,83400,0,0,323,0,0,0,0,0,0,0,30,6.7,10,10,2.4,91,9,999999999,200,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,83600,0,0,322,0,0,0,0,0,0,0,30,7.2,10,10,11.2,152,9,999999999,200,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.0,89,83500,0,0,306,0,0,0,0,0,0,0,50,4.6,8,8,11.2,213,9,999999999,200,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.0,89,83600,124,1356,321,0,0,0,0,0,0,0,60,4.6,10,10,11.2,244,9,999999999,200,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,83600,379,1368,313,47,0,47,5600,0,5600,1980,30,5.2,10,10,5.2,91,9,999999999,200,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,83700,606,1368,313,81,0,81,9700,0,9700,3700,60,5.2,10,10,1.2,91,9,999999999,200,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,4.4,100,83700,786,1368,310,109,0,109,13200,0,13200,5270,40,5.7,10,10,1.2,152,9,999999999,200,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,83800,908,1368,313,130,0,130,15900,0,15900,6480,40,5.7,10,10,1.2,152,9,999999999,200,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,83700,963,1368,310,133,0,133,16300,0,16300,6740,30,6.2,10,10,1.2,152,9,999999999,189,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,3.3,96,83700,948,1368,307,166,0,166,20000,0,20000,8100,50,6.7,10,10,1.2,152,9,999999999,189,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,2.2,96,83700,862,1368,301,231,12,223,26800,1000,26200,9800,60,6.7,10,10,1.2,152,9,999999999,179,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.7,96,83800,712,1368,298,189,6,186,21700,500,21500,7740,70,6.7,10,10,3.2,213,9,999999999,170,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,1.1,96,83800,509,1368,295,130,6,128,14800,400,14600,4940,60,6.2,10,10,3.2,152,9,999999999,170,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.6,100,84000,266,1368,290,56,0,56,6400,0,6400,2030,60,5.2,10,10,2.8,152,9,999999999,160,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,0.0,100,83900,36,741,287,1,0,1,100,0,100,40,60,3.1,10,10,3.2,396,9,999999999,150,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-0.6,100,83900,0,0,284,0,0,0,0,0,0,0,70,3.1,10,10,3.2,122,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-0.6,100,84000,0,0,284,0,0,0,0,0,0,0,100,3.1,10,10,3.2,122,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-1.1,96,84000,0,0,283,0,0,0,0,0,0,0,100,1.5,10,10,3.2,244,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-0.6,100,84000,0,0,284,0,0,0,0,0,0,0,0,0.0,10,10,3.2,183,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-0.6,95,84200,0,0,286,0,0,0,0,0,0,0,0,0.0,10,10,3.2,122,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-0.6,100,84000,0,0,284,0,0,0,0,0,0,0,0,0.0,10,10,3.2,122,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-1.1,100,84000,0,0,281,0,0,0,0,0,0,0,0,0.0,10,10,3.2,122,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-1.1,100,84000,0,0,281,0,0,0,0,0,0,0,0,0.0,10,10,3.2,122,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-1.7,95,84000,0,0,280,0,0,0,0,0,0,0,0,0.0,10,10,3.2,122,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-1.7,95,84000,0,0,280,0,0,0,0,0,0,0,0,0.0,10,10,3.2,122,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-1.7,95,84200,0,0,280,0,0,0,0,0,0,0,0,0.0,10,10,4.8,183,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.2,91,84100,0,0,280,0,0,0,0,0,0,0,0,0.0,10,10,4.0,305,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.2,91,84100,120,1334,280,0,0,0,0,0,0,0,0,0.0,10,10,4.0,335,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.2,91,84100,374,1369,280,102,0,102,11400,0,11400,3600,0,0.0,10,10,4.0,396,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-1.7,91,84200,601,1369,282,170,0,170,19300,0,19300,6590,0,0.0,10,10,4.0,244,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-1.1,96,84200,781,1369,283,212,0,212,24400,0,24400,8940,0,0.0,10,10,3.2,183,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-0.6,91,84300,903,1369,289,211,6,207,24800,500,24500,9480,0,0.0,10,10,4.0,274,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.0,96,84200,958,1369,289,194,0,194,23200,0,23200,9250,0,0.0,10,10,4.0,274,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.0,92,84200,941,1369,291,160,0,160,19300,0,19300,7840,0,0.0,10,10,9.6,213,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,84100,855,1369,292,150,0,150,18000,0,18000,7140,50,4.1,10,10,12.8,152,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.6,92,84200,705,1369,294,150,0,150,17500,0,17500,6550,50,3.6,10,10,14.4,213,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,84200,502,1369,292,104,0,104,12000,0,12000,4210,50,4.6,10,10,9.6,213,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,84200,259,1369,292,43,0,43,5000,0,5000,1640,30,4.6,10,10,4.8,213,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,84300,33,696,292,0,0,0,0,0,0,0,50,4.6,10,10,8.0,152,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.6,100,84300,0,0,290,0,0,0,0,0,0,0,60,4.6,10,10,8.0,183,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.6,100,84400,0,0,290,0,0,0,0,0,0,0,60,3.6,10,10,9.6,274,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,0.6,100,84400,0,0,290,0,0,0,0,0,0,0,70,4.1,10,10,4.8,122,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,84400,0,0,292,0,0,0,0,0,0,0,70,3.6,10,10,6.4,122,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,84500,0,0,292,0,0,0,0,0,0,0,110,3.6,10,10,9.6,1036,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,84500,0,0,292,0,0,0,0,0,0,0,140,4.1,10,10,11.2,1097,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.0,92,84500,0,0,291,0,0,0,0,0,0,0,150,2.6,10,10,14.4,1097,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.0,92,84500,0,0,291,0,0,0,0,0,0,0,170,2.1,10,10,16.0,1097,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.6,92,84500,0,0,294,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1219,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.6,92,84500,0,0,294,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1341,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.6,92,84600,0,0,294,0,0,0,0,0,0,0,0,0.0,10,10,16.0,1280,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,0.6,96,84500,0,0,292,0,0,0,0,0,0,0,70,3.1,10,10,2.4,305,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,1.1,100,84600,115,1312,292,0,0,0,0,0,0,0,90,3.1,10,10,4.0,1158,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,1.1,92,84700,369,1369,297,71,0,71,8200,0,8200,2760,100,3.1,10,10,16.0,1158,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,1.1,85,84700,596,1369,302,150,0,150,17100,0,17100,6010,110,2.6,10,10,16.0,1158,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-2.8,60,84800,776,1369,300,186,0,186,21600,0,21600,8100,0,0.0,10,10,16.0,1219,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-2.2,61,84700,897,1369,303,180,0,180,21400,0,21400,8470,110,2.6,10,10,16.0,1128,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-2.2,58,84800,952,1369,306,188,0,188,22500,0,22500,8990,80,2.6,10,10,16.0,1128,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-2.8,55,84700,935,1369,305,201,6,197,23900,500,23600,9270,0,0.0,10,10,16.0,1128,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-2.2,56,84700,849,1369,308,156,0,156,18600,0,18600,7350,80,1.5,10,10,16.0,1128,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-0.6,64,84700,699,1369,310,156,0,156,18100,0,18100,6720,80,4.1,10,10,16.0,1189,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.1,64,84700,495,1369,307,125,0,125,14200,0,14200,4790,80,3.6,10,10,16.0,1250,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.1,64,84600,252,1369,307,38,0,38,4400,0,4400,1470,100,3.6,10,10,16.0,1311,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-0.6,70,84700,29,673,305,0,0,0,0,0,0,0,120,4.1,10,10,16.0,1372,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.0,76,84700,0,0,303,0,0,0,0,0,0,0,110,3.1,10,10,16.0,1433,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.0,76,84700,0,0,303,0,0,0,0,0,0,0,180,2.6,10,10,16.0,1494,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-2.2,71,84600,0,0,286,0,0,0,0,0,0,0,170,3.6,9,9,16.0,1494,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-1.7,77,84600,0,0,268,0,0,0,0,0,0,0,160,4.6,5,5,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-1.1,78,84600,0,0,271,0,0,0,0,0,0,0,140,4.6,5,5,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.1,75,84600,0,0,297,0,0,0,0,0,0,0,150,5.2,10,10,16.0,1128,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.7,71,84500,0,0,283,0,0,0,0,0,0,0,150,5.2,8,8,16.0,1128,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.7,71,84500,0,0,283,0,0,0,0,0,0,0,150,4.1,8,8,16.0,1128,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.2,68,84400,0,0,296,0,0,0,0,0,0,0,160,6.2,10,10,16.0,1128,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.7,71,84400,0,0,297,0,0,0,0,0,0,0,160,5.7,10,10,16.0,1067,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-2.2,71,84500,0,0,294,0,0,0,0,0,0,0,160,5.7,10,10,16.0,1067,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.2,74,84400,0,0,278,0,0,0,0,0,0,0,160,5.2,8,8,16.0,1067,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-1.1,78,84400,111,1290,281,0,0,0,0,0,0,0,160,4.6,8,8,16.0,1006,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.1,69,84500,365,1370,275,182,256,114,19100,22000,13200,2300,170,6.2,4,4,16.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.1,64,84500,591,1370,292,442,731,126,45400,69600,15300,2440,160,4.1,8,8,16.0,914,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-1.1,59,84600,771,1370,286,565,682,180,58100,67100,20300,3870,210,3.1,5,5,16.0,77777,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,84400,892,1370,308,708,918,108,74900,92200,14700,2720,160,3.1,8,8,16.0,975,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.6,54,84600,946,1370,302,763,950,105,78900,94500,13500,2400,150,4.6,5,5,16.0,77777,9,999999999,50,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.6,50,84500,929,1370,307,739,939,100,76500,93400,13000,2300,140,7.7,5,5,16.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.0,48,84500,842,1370,302,651,910,89,67600,90100,12100,1970,150,6.2,3,3,16.0,77777,9,999999999,60,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.0,48,84500,692,1370,302,499,808,90,52100,79200,12000,1910,150,6.7,3,3,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.0,50,84500,488,1370,299,332,744,66,34300,68900,9600,1300,180,6.2,3,3,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,84200,245,1370,289,148,610,38,14900,46400,6600,710,170,4.6,4,2,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,84300,26,628,267,0,0,0,0,0,0,0,160,5.7,0,0,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.0,82,84200,0,0,259,0,0,0,0,0,0,0,130,4.1,0,0,16.0,77777,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-0.6,88,84000,0,0,252,0,0,0,0,0,0,0,140,3.1,0,0,16.0,77777,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-0.6,88,84000,0,0,260,0,0,0,0,0,0,0,160,2.6,4,2,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.0,82,84000,0,0,270,0,0,0,0,0,0,0,180,5.7,4,3,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.0,85,84100,0,0,265,0,0,0,0,0,0,0,190,5.7,4,2,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-0.6,84,83800,0,0,254,0,0,0,0,0,0,0,170,4.1,0,0,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,0.0,88,83800,0,0,255,0,0,0,0,0,0,0,190,5.2,0,0,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-0.6,81,83800,0,0,256,0,0,0,0,0,0,0,200,4.6,0,0,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-0.6,84,83700,0,0,254,0,0,0,0,0,0,0,250,2.6,0,0,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.7,87,83600,0,0,247,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.1,91,83900,0,0,247,0,0,0,0,0,0,0,200,2.6,0,0,16.0,77777,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.7,87,83600,0,0,247,0,0,0,0,0,0,0,210,3.1,0,0,16.0,77777,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-0.6,88,83700,107,1268,252,0,0,0,0,0,0,0,230,2.1,0,0,16.0,77777,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,0.0,79,83900,360,1371,261,246,730,54,25000,62600,8600,1010,260,1.5,0,0,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.1,70,84000,586,1371,272,443,887,63,46400,84800,10100,1350,0,0.0,0,0,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.2,61,84000,766,1371,287,591,908,83,61600,89300,11600,1760,30,1.5,0,0,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,2.8,53,83700,886,1371,312,646,791,133,66800,78600,15800,3070,60,2.1,3,3,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.2,44,84100,940,1371,321,702,835,128,73500,83700,16000,3270,90,2.1,3,3,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,2.2,38,84000,923,1371,331,698,850,124,73100,85100,15700,3120,90,3.6,3,3,16.0,77777,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,1.1,32,84000,836,1371,335,651,916,90,67600,90600,12200,1960,80,4.1,3,3,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,0.0,30,84000,685,1371,334,527,919,66,55200,89500,10300,1520,90,4.6,3,3,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-1.1,27,84000,481,1371,332,341,818,53,35800,75800,9100,1140,70,4.1,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,0.6,35,83300,238,1371,327,142,629,32,14500,47800,6200,640,10,2.1,3,3,16.0,77777,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,0.6,43,83700,23,606,312,0,0,0,0,0,0,0,340,4.1,3,3,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,0.6,52,83600,0,0,300,0,0,0,0,0,0,0,60,1.5,3,3,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,0.6,56,83500,0,0,295,0,0,0,0,0,0,0,210,3.1,3,3,16.0,77777,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.7,73,83300,0,0,285,0,0,0,0,0,0,0,160,4.6,3,3,16.0,77777,9,999999999,150,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.2,76,83200,0,0,282,0,0,0,0,0,0,0,200,3.6,2,2,16.0,77777,9,999999999,160,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.2,76,83200,0,0,273,0,0,0,0,0,0,0,230,4.1,0,0,16.0,77777,9,999999999,160,0.0610,0,88,0.200,0.0,1.0 +2000,10,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.7,76,83100,0,0,271,0,0,0,0,0,0,0,250,2.6,0,0,16.0,77777,9,999999999,160,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.1,73,83000,0,0,270,0,0,0,0,0,0,0,220,2.1,0,0,16.0,77777,9,999999999,160,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.0,85,82800,0,0,256,0,0,0,0,0,0,0,200,3.1,0,0,16.0,77777,9,999999999,150,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.6,79,82800,0,0,263,0,0,0,0,0,0,0,210,4.6,0,0,16.0,77777,9,999999999,150,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-1.1,84,82700,0,0,251,0,0,0,0,0,0,0,190,3.1,0,0,16.0,77777,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,83000,0,0,269,0,0,0,0,0,0,0,200,3.6,0,0,16.0,77777,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-0.6,75,82800,0,0,260,0,0,0,0,0,0,0,210,2.1,0,0,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.6,70,83000,103,1246,270,0,0,0,0,0,0,0,220,2.6,0,0,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.1,58,83100,355,1372,283,263,712,79,26800,59100,11400,1390,250,1.5,0,0,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.7,50,83300,581,1372,296,437,831,83,44900,79200,11200,1620,220,1.5,0,0,16.0,77777,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.2,42,83400,760,1372,323,585,847,114,60200,83200,14000,2350,180,1.5,3,3,16.0,77777,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,2.2,33,82900,881,1372,341,696,967,73,72800,96100,10900,1920,150,2.6,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,1.7,28,83500,934,1372,349,733,950,84,76400,94600,11700,2180,110,2.1,3,3,16.0,77777,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,1.7,26,83400,916,1372,356,739,981,81,77000,97700,11600,2100,80,3.6,3,3,16.0,77777,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-0.6,21,83400,829,1372,359,650,922,91,67600,91100,12300,1940,100,4.6,4,4,16.0,77777,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,0.0,21,83400,678,1372,365,498,837,83,52300,82100,11600,1790,100,5.2,6,5,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,0.0,23,83300,474,1372,357,325,760,61,33700,70200,9300,1230,140,8.8,4,4,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,0.6,28,82600,231,1372,347,128,583,29,13500,45200,5800,630,150,8.8,5,5,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,1.1,36,83100,20,560,330,0,0,0,0,0,0,0,150,7.7,4,4,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.8,47,83000,0,0,312,0,0,0,0,0,0,0,150,6.7,1,1,16.0,77777,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.2,45,83000,0,0,305,0,0,0,0,0,0,0,160,9.3,0,0,16.0,77777,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,2.8,51,82900,0,0,311,0,0,0,0,0,0,0,160,8.2,2,2,16.0,77777,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.8,61,82700,0,0,302,0,0,0,0,0,0,0,160,7.2,3,3,16.0,77777,9,999999999,150,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.2,52,82700,0,0,306,0,0,0,0,0,0,0,190,6.7,2,2,16.0,77777,9,999999999,150,0.0610,0,88,0.200,0.0,1.0 +2000,10,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.7,45,82800,0,0,302,0,0,0,0,0,0,0,190,8.8,0,0,16.0,77777,9,999999999,150,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.1,48,82800,0,0,295,0,0,0,0,0,0,0,180,6.2,0,0,16.0,77777,9,999999999,150,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,0.6,43,82800,0,0,299,0,0,0,0,0,0,0,190,8.2,0,0,16.0,77777,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.0,40,82800,0,0,300,0,0,0,0,0,0,0,210,7.2,0,0,16.0,77777,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.7,63,82700,0,0,282,0,0,0,0,0,0,0,300,4.1,0,0,16.0,77777,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.2,82,82900,0,0,269,0,0,0,0,0,0,0,280,1.5,0,0,16.0,77777,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.2,76,82800,0,0,273,0,0,0,0,0,0,0,290,3.1,0,0,16.0,77777,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,2.8,74,82900,99,1224,290,0,0,0,0,0,0,0,300,1.5,3,3,16.0,77777,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,3.9,63,83000,350,1373,306,225,588,74,22900,48800,10400,1320,310,3.6,3,3,16.0,77777,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,3.9,53,83200,576,1373,318,424,826,76,44000,78900,10800,1540,340,1.5,3,3,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,5.0,43,83300,755,1373,339,579,884,91,61000,87700,12600,2050,10,3.1,3,3,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,0.6,24,82900,875,1373,355,652,858,104,69200,86100,14100,2590,150,7.2,3,3,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,1.1,22,83400,928,1373,364,696,847,121,73100,85000,15500,3090,150,8.8,3,3,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,1.1,21,83300,910,1373,369,703,927,86,73200,92200,11800,2130,140,7.7,3,3,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,-2.8,14,83300,823,1373,373,610,880,80,63500,87000,11200,1870,190,7.2,3,3,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,-2.8,14,83300,672,1373,370,504,866,79,53100,84900,11400,1730,190,8.8,3,3,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,-3.3,14,83400,467,1373,366,319,759,59,33100,69900,9200,1200,200,7.7,3,3,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,-1.7,18,82700,224,1373,379,122,565,30,12600,42100,5700,600,180,8.2,8,8,16.0,7620,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-1.1,22,83300,18,538,350,0,0,0,0,0,0,0,180,8.8,6,4,16.0,7620,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-1.7,22,83400,0,0,350,0,0,0,0,0,0,0,190,7.7,8,5,16.0,6096,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-1.1,24,83300,0,0,345,0,0,0,0,0,0,0,200,7.7,8,4,16.0,6096,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-0.6,27,83300,0,0,364,0,0,0,0,0,0,0,210,7.2,9,9,16.0,5486,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-0.6,28,83100,0,0,361,0,0,0,0,0,0,0,240,5.7,9,9,16.0,6096,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,0.6,39,82900,0,0,336,0,0,0,0,0,0,0,170,1.5,8,8,16.0,6096,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,2.8,54,82900,0,0,312,0,0,0,0,0,0,0,70,2.6,10,4,16.0,6096,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.8,61,82800,0,0,305,0,0,0,0,0,0,0,80,2.6,10,4,16.0,6096,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,2.8,68,82700,0,0,297,0,0,0,0,0,0,0,80,3.1,10,4,16.0,6096,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.8,61,82900,0,0,305,0,0,0,0,0,0,0,350,2.6,7,4,16.0,6096,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.8,66,82900,0,0,305,0,0,0,0,0,0,0,280,4.1,6,6,16.0,6096,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,2.8,63,83000,0,0,300,0,0,0,0,0,0,0,270,2.6,3,3,16.0,6096,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,2.8,68,82900,0,0,295,0,0,0,0,0,0,0,230,3.1,3,3,16.0,77777,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.8,61,83100,95,1202,302,0,0,0,0,0,0,0,210,1.5,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,2.8,57,83200,345,1373,307,258,675,88,25900,54900,12100,1490,270,2.6,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,2.2,47,83300,571,1373,316,390,602,139,41000,58300,16700,2750,260,2.1,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.8,46,83300,749,1373,321,579,859,109,59800,84400,13600,2260,320,1.5,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,3.3,41,83100,869,1373,332,671,894,103,71100,89700,14100,2550,330,2.6,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,3.3,34,83400,922,1373,345,739,944,103,76500,93800,13300,2280,340,2.6,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.3,31,83500,904,1373,353,709,927,97,73600,92100,12800,2190,50,5.7,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,2.2,28,83500,816,1373,355,632,916,86,65800,90500,11800,1890,60,4.6,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,2.2,27,83400,665,1373,357,497,860,80,52300,84200,11400,1730,60,5.7,3,3,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,1.7,27,83400,460,1373,357,308,724,64,31600,66100,9400,1240,50,6.7,4,4,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,1.7,33,82800,218,1373,343,117,546,30,12000,40200,5600,590,360,6.2,5,5,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,2.0,41,83200,16,492,328,0,0,0,0,0,0,0,280,6.2,5,5,16.1,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.8,46,83300,0,0,324,0,0,0,0,0,0,0,260,5.7,4,4,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,2.8,51,83300,0,0,319,0,0,0,0,0,0,0,290,4.1,5,5,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.1,50,83300,0,0,302,0,0,0,0,0,0,0,320,6.2,2,2,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,1.7,54,83300,0,0,304,0,0,0,0,0,0,0,330,4.6,3,3,16.0,77777,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.7,61,83300,0,0,293,0,0,0,0,0,0,0,0,0.0,2,2,16.0,77777,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.6,70,83100,0,0,284,0,0,0,0,0,0,0,140,3.6,4,4,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.0,85,82900,0,0,270,0,0,0,0,0,0,0,130,3.1,4,4,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.6,85,82900,0,0,273,0,0,0,0,0,0,0,150,4.6,4,4,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,1.7,86,83000,0,0,278,0,0,0,0,0,0,0,160,4.1,4,4,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,1.7,89,83000,0,0,276,0,0,0,0,0,0,0,150,3.1,4,4,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.7,83,83300,0,0,278,0,0,0,0,0,0,0,180,4.6,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.6,89,83100,0,0,270,0,0,0,0,0,0,0,160,2.1,4,4,16.0,77777,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.7,83,83200,91,1180,278,0,0,0,0,0,0,0,200,2.1,3,3,16.0,77777,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,2.2,63,83400,340,1374,299,105,7,104,11700,400,11600,3450,180,3.1,4,4,16.0,77777,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.2,56,83500,566,1374,304,322,317,191,33900,31500,20900,4190,170,3.1,3,3,16.0,7620,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,1.7,45,83600,744,1374,315,521,579,207,54500,58500,22700,4620,120,4.6,3,3,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-0.6,35,83300,864,1374,318,653,804,146,69000,81200,17800,3620,130,5.2,3,3,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-6.1,19,83700,916,1374,329,630,619,216,67600,64100,24700,5650,250,3.6,6,6,16.0,4572,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-3.9,24,83700,898,1374,326,544,377,297,58400,40400,32000,8040,260,3.1,5,5,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-6.7,19,83700,810,1374,318,609,797,138,64200,80000,16900,3240,280,2.6,3,3,16.0,77777,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-9.4,15,83600,658,1374,317,497,871,78,52300,85200,11300,1690,290,2.1,4,4,16.0,77777,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-9.4,14,83700,454,1374,320,312,769,57,32400,70400,9100,1160,310,3.6,4,4,16.0,77777,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-8.9,19,83200,211,1374,319,115,574,27,12200,43300,5500,580,350,2.1,8,8,16.0,7620,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-1.1,44,83500,13,470,308,0,0,0,0,0,0,0,110,4.6,7,6,16.0,7620,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-0.6,57,83400,0,0,289,0,0,0,0,0,0,0,140,3.1,4,4,16.0,7620,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.0,62,83300,0,0,288,0,0,0,0,0,0,0,140,1.5,4,4,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,83300,0,0,285,0,0,0,0,0,0,0,140,2.1,5,5,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.1,64,83200,0,0,275,0,0,0,0,0,0,0,160,4.1,2,2,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-1.1,61,83400,0,0,280,0,0,0,0,0,0,0,190,5.7,3,3,16.0,77777,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.1,64,83200,0,0,278,0,0,0,0,0,0,0,240,3.1,3,3,16.0,77777,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-2.8,51,83300,0,0,280,0,0,0,0,0,0,0,220,3.6,3,3,16.0,77777,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-3.3,49,83300,0,0,280,0,0,0,0,0,0,0,210,5.2,3,3,16.0,77777,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-3.9,55,83200,0,0,270,0,0,0,0,0,0,0,10,2.6,3,3,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-4.4,48,83300,0,0,274,0,0,0,0,0,0,0,310,2.6,3,3,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-4.4,59,83500,0,0,263,0,0,0,0,0,0,0,160,3.1,3,3,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.6,66,83200,0,0,252,0,0,0,0,0,0,0,130,2.6,3,3,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.8,70,83500,87,1157,263,0,0,0,0,0,0,0,110,1.5,3,3,16.0,77777,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,83800,336,1375,292,236,718,60,23500,59600,8900,1000,120,3.6,3,3,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.1,45,83900,560,1375,298,391,703,104,40600,66700,13300,2030,110,5.7,3,3,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-1.7,37,83900,739,1375,309,515,628,177,54700,63600,20500,3870,90,4.6,4,4,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.2,33,83900,858,1375,313,628,774,144,66400,78200,17500,3550,120,6.2,4,4,16.0,6706,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-3.9,28,83900,910,1375,312,623,667,181,65300,67100,20700,4640,110,2.6,4,3,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-5.0,24,83800,891,1375,327,638,658,210,65900,65400,23300,5110,100,3.6,8,7,16.0,77777,9,999999999,69,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-5.0,24,83800,803,1375,336,431,291,260,46100,30800,28000,6450,80,2.6,10,9,16.0,3048,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-4.4,27,83800,652,1375,335,254,76,217,27800,7500,24200,6260,180,5.7,9,9,16.0,2438,9,999999999,80,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-3.9,29,83900,447,1375,325,66,0,66,7800,0,7800,2780,290,5.7,9,8,16.0,2134,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-3.3,31,83500,204,1375,319,20,0,20,2400,0,2400,800,260,2.6,7,7,16.0,2743,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.1,45,83900,11,424,314,0,0,0,0,0,0,0,360,4.6,8,8,16.0,3048,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-1.1,51,83800,0,0,306,0,0,0,0,0,0,0,20,4.6,8,8,16.0,3048,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.1,55,83700,0,0,302,0,0,0,0,0,0,0,20,3.6,8,8,16.0,3048,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-1.1,51,83800,0,0,306,0,0,0,0,0,0,0,0,0.0,8,8,16.0,3048,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-1.1,53,83700,0,0,311,0,0,0,0,0,0,0,0,0.0,10,9,16.0,3353,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-1.1,57,83800,0,0,295,0,0,0,0,0,0,0,250,1.5,7,7,16.0,3048,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-0.6,59,83700,0,0,289,0,0,0,0,0,0,0,280,1.5,5,5,16.0,6096,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-0.6,72,83600,0,0,276,0,0,0,0,0,0,0,190,4.1,4,4,16.0,6096,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.2,68,83500,0,0,268,0,0,0,0,0,0,0,230,2.1,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-3.9,79,83300,0,0,251,0,0,0,0,0,0,0,200,2.1,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-3.9,79,83400,0,0,251,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-2.8,83,83800,0,0,244,0,0,0,0,0,0,0,140,2.1,0,0,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.8,70,83600,0,0,252,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-2.2,63,83700,83,1135,261,0,0,0,0,0,0,0,230,2.1,0,0,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-1.7,56,83800,331,1376,270,213,580,73,21600,47000,10300,1280,220,3.1,0,0,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,83900,555,1376,286,398,759,91,41700,72300,12400,1810,210,4.1,0,0,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-1.1,41,83900,733,1376,293,528,665,173,54200,64900,19500,3580,230,2.6,0,0,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-1.7,35,83900,852,1376,299,665,913,98,69000,90300,12800,2020,250,2.6,0,0,16.0,77777,9,999999999,89,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.7,31,83900,904,1376,319,708,932,94,73600,92600,12500,2170,270,2.1,3,3,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.7,28,83900,885,1376,327,673,873,110,71100,87500,14600,2720,290,2.6,4,3,16.0,77777,9,999999999,100,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-0.6,27,84000,797,1376,338,608,904,84,63400,89100,11700,1830,40,4.1,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.0,28,84000,645,1376,339,474,800,98,48600,77100,12300,1880,90,5.7,3,3,16.0,77777,9,999999999,110,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,0.6,31,83900,440,1376,339,280,670,65,29400,60700,9900,1260,140,5.7,5,5,16.0,77777,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.0,34,83400,197,1376,329,101,485,31,10200,34200,5200,580,190,5.2,8,5,16.0,77777,9,999999999,120,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.7,40,83700,10,401,302,0,0,0,0,0,0,0,190,4.6,3,3,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-0.6,46,83800,0,0,294,0,0,0,0,0,0,0,260,3.6,1,1,16.0,77777,9,999999999,129,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-1.1,47,83700,0,0,283,0,0,0,0,0,0,0,220,3.6,0,0,16.0,77777,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.6,54,83700,0,0,285,0,0,0,0,0,0,0,190,6.7,0,0,16.0,77777,9,999999999,139,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,1.1,65,83600,0,0,277,0,0,0,0,0,0,0,160,4.1,0,0,16.0,77777,9,999999999,150,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.6,76,83600,0,0,265,0,0,0,0,0,0,0,170,3.1,0,0,16.0,77777,9,999999999,150,0.0610,0,88,0.200,0.0,1.0 +2000,10,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.7,73,83500,0,0,273,0,0,0,0,0,0,0,190,4.6,0,0,16.0,77777,9,999999999,150,0.0610,0,88,0.200,0.0,1.0 +2000,10,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.1,73,83400,0,0,270,0,0,0,0,0,0,0,230,2.1,0,0,16.0,77777,9,999999999,139,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,0.6,79,83300,0,0,263,0,0,0,0,0,0,0,180,4.6,0,0,16.0,77777,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,1.7,76,83400,0,0,271,0,0,0,0,0,0,0,210,4.6,0,0,16.0,77777,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.1,79,83300,0,0,266,0,0,0,0,0,0,0,220,4.6,0,0,16.0,77777,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.6,73,83600,0,0,268,0,0,0,0,0,0,0,220,5.2,0,0,16.0,77777,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,0.0,79,83500,0,0,261,0,0,0,0,0,0,0,270,3.6,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.6,70,83700,80,1113,270,0,0,0,0,0,0,0,240,2.6,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.6,58,83900,326,1377,281,198,542,69,20100,43800,9700,1220,210,3.6,0,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.0,44,84000,550,1377,294,392,784,78,40300,74000,10700,1510,70,2.6,0,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.0,40,84100,728,1377,300,554,854,102,57500,83800,13000,2120,0,0.0,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-1.1,31,83800,846,1377,309,672,931,97,69600,92100,12800,2000,120,3.6,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-1.7,28,84200,898,1377,313,702,962,73,73500,95700,10900,1950,110,4.6,1,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-2.2,25,84200,879,1377,317,673,897,98,69700,88900,12800,2110,100,4.1,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-3.3,22,84200,790,1377,318,562,785,110,58400,77600,13700,2390,110,3.6,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-3.9,21,84100,638,1377,317,473,752,123,49000,72900,15100,2480,140,4.6,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-3.9,21,84100,433,1377,317,254,452,111,26400,40600,13600,2100,130,4.1,0,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-3.3,27,83700,191,1377,314,91,406,35,9400,26600,5700,630,110,3.6,4,2,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-3.9,35,84000,8,356,291,0,0,0,0,0,0,0,110,2.6,1,1,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-3.3,44,83900,0,0,287,0,0,0,0,0,0,0,160,5.2,3,3,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-3.9,47,83800,0,0,268,0,0,0,0,0,0,0,150,4.1,1,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-3.9,49,83800,0,0,266,0,0,0,0,0,0,0,170,2.6,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-3.3,60,83700,0,0,258,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.7,61,83900,0,0,265,0,0,0,0,0,0,0,290,3.1,0,0,16.0,77777,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-1.1,61,83700,0,0,268,0,0,0,0,0,0,0,210,2.6,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.1,69,83700,0,0,262,0,0,0,0,0,0,0,270,3.1,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.1,69,83700,0,0,262,0,0,0,0,0,0,0,260,4.1,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-2.2,66,83700,0,0,259,0,0,0,0,0,0,0,240,4.1,0,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.8,65,83700,0,0,256,0,0,0,0,0,0,0,260,3.6,0,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-3.3,57,84100,0,0,260,0,0,0,0,0,0,0,250,3.6,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-2.2,63,84000,0,0,261,0,0,0,0,0,0,0,220,3.6,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-1.7,58,84100,76,1091,268,0,0,0,0,0,0,0,220,5.2,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-1.1,47,84400,321,1377,283,232,744,58,23000,60800,8800,960,220,5.2,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-2.2,36,84500,545,1377,294,400,853,61,41900,80600,9900,1270,240,3.6,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-2.2,31,84700,722,1377,303,542,848,96,56500,83400,12600,2040,300,3.1,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.0,34,84200,841,1377,310,628,822,125,64900,81400,15000,2750,350,2.6,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,1.7,34,84700,892,1377,322,690,920,93,71700,91300,12400,2120,40,4.1,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-0.6,28,84600,873,1377,321,673,933,80,70200,92600,11400,1970,50,3.1,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-1.1,25,84600,784,1377,326,568,832,93,60000,82800,12700,2140,50,3.1,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-2.2,22,84700,632,1377,327,467,852,75,49100,82800,11000,1610,60,3.1,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-2.8,21,84600,427,1377,324,288,748,55,29800,67400,8800,1100,90,2.6,0,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-2.2,26,84500,184,1377,315,90,418,34,9200,26900,5600,610,110,2.1,0,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-3.3,30,84400,7,333,297,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-2.8,38,84300,0,0,286,0,0,0,0,0,0,0,140,3.1,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-2.8,42,84200,0,0,280,0,0,0,0,0,0,0,150,4.1,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-2.8,38,84200,0,0,286,0,0,0,0,0,0,0,180,4.1,0,0,16.0,77777,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-2.8,55,83900,0,0,264,0,0,0,0,0,0,0,160,3.6,0,0,16.0,77777,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,84000,0,0,280,0,0,0,0,0,0,0,200,5.2,0,0,16.0,77777,9,999999999,129,0.0600,0,88,0.200,0.0,1.0 +2000,10,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-0.6,55,84000,0,0,277,0,0,0,0,0,0,0,200,3.6,0,0,16.0,77777,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-0.6,55,84000,0,0,277,0,0,0,0,0,0,0,210,5.2,0,0,16.0,77777,9,999999999,120,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.0,58,83900,0,0,278,0,0,0,0,0,0,0,210,6.2,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,83900,0,0,280,0,0,0,0,0,0,0,200,6.2,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.0,58,83900,0,0,278,0,0,0,0,0,0,0,200,5.7,0,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,1.1,63,84100,0,0,279,0,0,0,0,0,0,0,200,5.2,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,1.7,68,84000,0,0,277,0,0,0,0,0,0,0,200,4.6,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,1.7,61,84100,73,1068,284,0,0,0,0,0,0,0,200,5.2,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,1.1,48,84200,316,1378,295,200,598,63,20500,47900,9400,1130,210,5.2,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-1.1,33,84300,539,1378,306,400,841,70,41600,79500,10300,1410,230,4.1,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-1.7,26,84500,717,1378,318,516,659,173,52900,64000,19500,3510,210,3.6,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-2.2,21,84500,835,1378,330,622,822,122,64300,81400,14800,2690,240,3.1,0,0,16.0,77777,9,999999999,60,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-4.4,15,84400,886,1378,337,684,914,95,71000,90700,12600,2110,240,2.1,0,0,16.0,77777,9,999999999,60,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,-5.6,12,84400,866,1378,343,661,891,99,68500,88200,12900,2060,180,2.1,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,-8.3,10,84300,777,1378,342,596,909,82,62100,89400,11500,1770,130,1.5,0,0,16.0,77777,9,999999999,69,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,-7.8,10,84300,625,1378,345,461,863,68,48200,83100,10400,1430,70,3.6,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,-7.2,11,84300,420,1378,341,287,764,53,29800,68600,8700,1070,120,2.1,0,0,16.0,77777,9,999999999,80,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-6.1,15,83600,178,1378,325,89,465,28,8900,31500,4800,520,80,2.6,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-2.2,27,84000,5,287,312,0,0,0,0,0,0,0,170,6.2,0,0,16.0,77777,9,999999999,89,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-2.8,26,84000,0,0,309,0,0,0,0,0,0,0,180,6.7,0,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-3.3,36,83700,0,0,286,0,0,0,0,0,0,0,180,3.6,0,0,16.0,77777,9,999999999,100,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-3.9,37,83600,0,0,280,0,0,0,0,0,0,0,170,3.6,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-2.8,34,83700,0,0,293,0,0,0,0,0,0,0,210,5.7,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-2.8,38,83600,0,0,286,0,0,0,0,0,0,0,220,4.6,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-3.3,35,83500,0,0,288,0,0,0,0,0,0,0,240,3.6,0,0,16.0,77777,9,999999999,110,0.0600,0,88,0.200,0.0,1.0 +2000,10,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-3.3,41,83400,0,0,279,0,0,0,0,0,0,0,240,4.1,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-4.4,37,83400,0,0,278,0,0,0,0,0,0,0,230,3.6,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-5.0,35,83400,0,0,277,0,0,0,0,0,0,0,220,5.2,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-5.0,31,83400,0,0,284,0,0,0,0,0,0,0,220,4.1,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-5.6,33,83500,0,0,277,0,0,0,0,0,0,0,200,5.7,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-6.1,32,83500,0,0,276,0,0,0,0,0,0,0,210,5.7,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-5.6,30,83600,69,1023,293,9,55,7,1300,2400,1100,120,200,6.7,3,2,16.0,77777,9,999999999,100,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-3.9,30,83800,311,1379,304,134,155,99,14400,12700,11600,2150,220,5.7,3,2,16.0,77777,9,999999999,100,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-3.9,24,83900,534,1379,308,401,673,139,40400,61800,16400,2480,210,5.7,0,0,16.0,77777,9,999999999,100,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-3.9,19,84000,711,1379,331,504,647,169,53400,65100,19700,3610,180,2.1,1,1,16.0,77777,9,999999999,100,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-5.6,15,83500,829,1379,342,647,913,96,67100,90200,12700,1940,140,1.5,3,3,16.0,77777,9,999999999,100,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-5.0,15,84000,880,1379,351,672,902,95,69800,89400,12500,2090,90,2.6,5,4,16.0,7620,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-4.4,15,83900,860,1379,354,614,694,180,63900,69300,20500,4290,50,3.6,4,4,16.0,7620,9,999999999,120,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-5.0,15,83900,771,1379,353,544,778,108,56500,76700,13400,2310,90,4.6,5,5,16.0,7620,9,999999999,129,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-5.0,15,83900,619,1379,354,406,552,158,42600,54200,18200,3220,70,5.7,6,6,16.0,7620,9,999999999,139,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,-5.0,15,83800,414,1379,354,126,34,115,13700,3100,12800,3040,90,6.2,7,6,16.0,7620,9,999999999,150,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-3.9,21,83300,172,1379,349,51,74,42,5600,4600,5000,880,80,4.1,8,8,16.0,7620,9,999999999,160,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-4.4,24,83700,4,264,323,0,0,0,0,0,0,0,80,3.6,7,5,16.0,3658,9,999999999,170,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-3.9,26,83700,0,0,328,0,0,0,0,0,0,0,120,3.1,7,7,16.0,3658,9,999999999,189,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-4.4,27,83700,0,0,314,0,0,0,0,0,0,0,80,5.2,4,4,16.0,3658,9,999999999,200,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-5.6,27,83600,0,0,307,0,0,0,0,0,0,0,90,2.1,5,5,16.0,3658,9,999999999,209,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-5.6,25,83600,0,0,318,0,0,0,0,0,0,0,160,3.6,7,7,16.0,3658,9,999999999,220,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-3.9,30,83600,0,0,314,0,0,0,0,0,0,0,50,4.6,7,6,16.0,3658,9,999999999,229,0.0590,0,88,0.200,0.0,1.0 +2000,10,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-3.9,36,83600,0,0,311,0,0,0,0,0,0,0,50,3.6,8,8,16.0,3048,9,999999999,220,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.8,46,83600,0,0,302,0,0,0,0,0,0,0,50,3.6,8,8,16.0,3048,9,999999999,209,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.2,48,83600,0,0,292,0,0,0,0,0,0,0,280,2.6,5,5,16.0,77777,9,999999999,200,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-2.2,52,83600,0,0,283,0,0,0,0,0,0,0,280,3.1,3,3,16.0,77777,9,999999999,189,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-2.2,54,83600,0,0,281,0,0,0,0,0,0,0,280,3.1,3,3,16.0,77777,9,999999999,179,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.1,55,83800,0,0,275,0,0,0,0,0,0,0,340,2.6,0,0,16.0,77777,9,999999999,170,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-1.7,69,83600,0,0,259,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,160,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-1.1,61,83700,66,1000,268,12,227,3,2100,13800,1100,120,260,2.1,0,0,16.0,77777,9,999999999,150,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,0.0,54,83900,305,1380,282,203,670,54,20200,54100,8200,910,0,0.0,0,0,16.0,77777,9,999999999,139,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,0.0,48,84000,529,1380,289,374,755,83,39100,71300,11700,1640,40,1.5,0,0,16.0,77777,9,999999999,129,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.0,43,84000,705,1380,296,536,891,79,55900,86900,11300,1610,70,1.5,0,0,16.0,77777,9,999999999,120,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,0.0,38,84000,823,1380,316,628,925,75,65700,91500,10900,1820,90,2.6,3,3,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,0.6,36,84000,874,1380,324,666,902,93,69200,89400,12400,2060,100,4.1,3,3,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,0.0,30,84000,854,1380,334,678,963,81,70800,95400,11500,1930,110,4.1,3,3,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,0.0,28,84000,764,1380,339,584,939,62,61400,92500,10000,1580,100,5.7,3,3,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-0.6,25,83900,612,1380,343,455,857,73,47700,82900,10800,1550,110,6.7,3,3,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-1.7,24,83900,407,1380,339,265,694,60,27100,61400,8900,1120,120,9.8,3,3,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-2.8,25,83300,165,1380,324,86,473,29,8500,31000,4800,510,140,6.7,2,2,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.2,33,83700,3,218,298,0,0,0,0,0,0,0,140,6.2,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-2.8,42,83500,0,0,280,0,0,0,0,0,0,0,150,5.7,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.8,46,83300,0,0,275,0,0,0,0,0,0,0,150,6.2,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-1.1,44,83400,0,0,288,0,0,0,0,0,0,0,160,6.2,0,0,16.0,77777,9,999999999,120,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-2.2,48,83200,0,0,276,0,0,0,0,0,0,0,160,4.1,0,0,16.0,77777,9,999999999,120,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,83100,0,0,290,0,0,0,0,0,0,0,170,9.3,0,0,16.0,77777,9,999999999,120,0.0590,0,88,0.200,0.0,1.0 +2000,10,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,83100,0,0,290,0,0,0,0,0,0,0,170,9.3,0,0,16.0,77777,9,999999999,120,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-1.1,44,83000,0,0,288,0,0,0,0,0,0,0,160,6.2,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-1.1,42,83000,0,0,290,0,0,0,0,0,0,0,180,8.2,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-1.1,55,82800,0,0,275,0,0,0,0,0,0,0,280,3.1,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-0.6,72,82600,0,0,262,0,0,0,0,0,0,0,270,3.6,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-0.6,72,82900,0,0,262,0,0,0,0,0,0,0,240,3.1,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,82700,0,0,267,0,0,0,0,0,0,0,260,3.6,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.0,70,82800,62,978,267,10,159,4,1600,9600,1000,150,260,2.1,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.6,58,83000,300,1381,281,187,489,81,19300,38000,11000,1500,270,3.1,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,0.6,45,83100,523,1381,296,360,662,109,37000,61500,13600,2050,260,3.1,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,0.0,32,83300,700,1381,315,504,794,101,52100,77400,12700,2040,270,2.6,0,0,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-1.1,24,82800,817,1381,342,585,732,150,61300,73300,17800,3490,320,1.5,3,3,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-0.6,22,83200,868,1381,353,666,860,124,69200,85500,15200,2840,10,4.1,3,3,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-1.1,20,83200,847,1381,356,643,903,87,66900,89400,11900,1960,350,5.7,3,3,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,-2.8,17,83100,758,1381,354,555,873,74,58000,85800,10700,1690,350,4.1,3,3,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,-3.9,16,83100,606,1381,355,432,821,71,45500,79400,10500,1520,340,2.6,5,5,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,-5.0,17,83100,401,1381,349,245,489,102,25400,42700,12900,1920,160,7.7,6,6,16.0,77777,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-1.7,25,82500,159,1381,352,42,34,38,4600,2300,4300,920,150,9.3,9,8,16.0,6096,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-2.2,29,83000,2,196,329,0,0,0,0,0,0,0,140,5.7,8,6,16.0,6096,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-2.8,32,83000,0,0,315,0,0,0,0,0,0,0,120,5.2,6,5,16.0,6096,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,2.8,47,83000,0,0,322,0,0,0,0,0,0,0,150,6.7,5,4,16.0,6096,9,999999999,110,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,5.6,57,82900,0,0,339,0,0,0,0,0,0,0,160,8.2,9,8,16.0,3353,9,999999999,120,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,5.6,64,82800,0,0,331,0,0,0,0,0,0,0,150,6.7,8,8,16.0,3353,9,999999999,120,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,6.7,74,82800,0,0,319,0,0,0,0,0,0,0,180,5.2,8,6,16.0,6096,9,999999999,120,0.0590,0,88,0.200,0.0,1.0 +2000,10,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.1,77,82700,0,0,308,0,0,0,0,0,0,0,140,3.1,5,4,16.0,77777,9,999999999,120,0.0590,0,88,0.200,0.0,1.0 +2000,10,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,82700,0,0,306,0,0,0,0,0,0,0,120,5.7,5,4,16.0,77777,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,82700,0,0,304,0,0,0,0,0,0,0,100,3.6,8,6,16.0,77777,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,82800,0,0,299,0,0,0,0,0,0,0,100,3.1,6,5,16.0,6096,9,999999999,139,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,6.1,100,82800,0,0,286,0,0,0,0,0,0,0,140,3.1,3,2,16.0,6096,9,999999999,139,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,83000,0,0,292,0,0,0,0,0,0,0,260,4.6,5,4,16.0,3658,9,999999999,150,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.9,93,83000,0,0,289,0,0,0,0,0,0,0,310,1.5,8,6,16.0,6096,9,999999999,150,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.1,96,83200,59,956,323,5,8,4,600,400,500,80,310,1.5,10,10,0.4,91,9,999999999,160,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,4.4,85,83300,295,1381,321,94,27,89,10400,2300,9900,2170,360,10.3,10,10,12.8,244,9,999999999,160,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,3.9,89,83400,518,1381,315,69,0,69,8200,0,8200,3040,360,7.2,10,10,16.0,274,9,999999999,170,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,5.0,100,83500,694,1381,314,91,0,91,11000,0,11000,4280,350,8.2,10,10,4.0,152,9,999999999,170,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,5.0,96,83600,811,1381,316,100,0,100,12300,0,12300,4920,320,7.7,10,10,3.2,152,9,999999999,179,0.0580,0,88,0.200,4.0,1.0 +2000,10,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,5.0,100,83600,862,1381,314,109,0,109,13400,0,13400,5430,340,8.2,10,10,4.8,152,9,999999999,179,0.0580,0,88,0.200,1.0,1.0 +2000,10,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,83700,841,1381,313,106,0,106,13000,0,13000,5250,330,6.2,10,10,4.8,152,9,999999999,170,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,83800,752,1381,313,92,0,92,11200,0,11200,4450,320,7.2,10,10,14.4,152,9,999999999,170,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,83900,599,1381,313,71,0,71,8600,0,8600,3270,340,5.7,10,10,2.4,152,9,999999999,170,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,4.4,100,84000,395,1381,310,40,0,40,4800,0,4800,1730,350,5.7,10,10,2.4,152,9,999999999,170,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,4.4,100,84100,153,1381,310,14,0,14,1700,0,1700,550,330,6.7,10,10,2.4,152,9,999999999,170,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,84100,2,173,310,0,0,0,0,0,0,0,330,4.6,10,10,12.8,457,9,999999999,170,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,3.9,100,84200,0,0,308,0,0,0,0,0,0,0,300,5.2,10,10,4.0,152,9,999999999,160,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,3.9,100,84200,0,0,308,0,0,0,0,0,0,0,330,5.2,10,10,4.0,152,9,999999999,160,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,3.9,100,84300,0,0,308,0,0,0,0,0,0,0,340,4.6,10,10,4.0,122,9,999999999,160,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,3.9,100,84300,0,0,308,0,0,0,0,0,0,0,310,4.1,10,10,4.0,152,9,999999999,160,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,3.9,100,84300,0,0,308,0,0,0,0,0,0,0,330,3.6,10,10,4.0,213,9,999999999,160,0.0580,0,88,0.200,0.0,1.0 +2000,10,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,3.9,100,84300,0,0,308,0,0,0,0,0,0,0,350,2.6,10,10,4.0,396,9,999999999,150,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,84200,0,0,310,0,0,0,0,0,0,0,10,2.6,10,10,11.2,213,9,999999999,139,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,3.9,100,84200,0,0,308,0,0,0,0,0,0,0,20,2.6,10,10,11.2,213,9,999999999,139,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,84200,0,0,310,0,0,0,0,0,0,0,20,1.5,10,10,9.6,152,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,84300,0,0,310,0,0,0,0,0,0,0,0,0.0,10,10,9.6,244,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,84300,0,0,310,0,0,0,0,0,0,0,0,0.0,10,10,11.2,244,9,999999999,120,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.9,97,84300,0,0,310,0,0,0,0,0,0,0,90,1.5,10,10,11.2,183,9,999999999,110,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.9,93,84300,56,933,312,2,0,2,300,0,300,80,90,1.5,10,10,9.6,183,9,999999999,110,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.4,96,84300,290,1382,313,52,0,52,6000,0,6000,1970,80,2.6,10,10,9.6,183,9,999999999,100,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,84500,513,1382,319,97,0,97,11300,0,11300,4010,170,2.6,10,10,11.2,244,9,999999999,100,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,5.6,86,84500,689,1382,318,291,67,258,31900,6700,28600,7350,150,2.1,10,9,14.4,305,9,999999999,89,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,5.6,80,84300,806,1382,323,318,48,289,34800,4900,32000,8950,120,2.1,9,9,16.0,457,9,999999999,89,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,84400,856,1382,329,333,42,307,36600,4300,33900,9820,70,2.6,10,9,16.0,457,9,999999999,89,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.8,77,84400,835,1382,339,389,149,298,42100,15600,32700,8100,80,5.2,9,9,16.0,579,9,999999999,100,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.3,74,84400,746,1382,337,452,410,230,48300,43000,25100,5420,90,5.2,9,8,16.0,1128,9,999999999,100,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,8.9,77,84300,593,1382,345,235,94,194,25700,9200,21700,5420,70,6.7,10,9,16.0,1219,9,999999999,110,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,7.8,67,84300,388,1382,349,79,0,79,9000,0,9000,3040,240,4.6,10,9,16.0,1402,9,999999999,110,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,84000,147,1382,336,13,0,13,1600,0,1600,510,260,5.7,10,10,16.0,6096,9,999999999,120,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,84200,1,127,308,0,0,0,0,0,0,0,280,4.1,9,7,14.4,6096,9,999999999,120,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,84200,0,0,307,0,0,0,0,0,0,0,280,3.6,10,7,14.4,6096,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,84200,0,0,319,0,0,0,0,0,0,0,210,1.5,10,9,12.8,3048,9,999999999,129,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,84200,0,0,313,0,0,0,0,0,0,0,140,3.6,8,7,16.0,6096,9,999999999,139,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,84100,0,0,324,0,0,0,0,0,0,0,190,5.2,10,9,16.0,3048,9,999999999,139,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,83900,0,0,313,0,0,0,0,0,0,0,170,4.6,10,7,16.0,6096,9,999999999,150,0.0580,0,88,0.200,0.0,1.0 +2000,10,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,83900,0,0,322,0,0,0,0,0,0,0,160,3.1,10,9,16.0,3048,9,999999999,150,0.0580,0,88,0.200,0.0,1.0 +2000,10,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,83900,0,0,325,0,0,0,0,0,0,0,180,3.1,10,9,16.0,2743,9,999999999,139,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,83800,0,0,325,0,0,0,0,0,0,0,140,4.6,10,9,16.0,2743,9,999999999,139,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.8,93,83700,0,0,326,0,0,0,0,0,0,0,140,3.1,10,9,16.0,2438,9,999999999,139,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,83600,0,0,313,0,0,0,0,0,0,0,120,4.6,9,7,16.0,6096,9,999999999,139,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,7.2,96,83600,0,0,308,0,0,0,0,0,0,0,110,3.6,9,7,16.0,6096,9,999999999,129,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,5.6,100,83600,0,0,317,0,0,0,0,0,0,0,260,4.1,10,10,0.4,30,9,999999999,129,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,6.1,100,83600,53,910,320,1,0,1,100,0,100,40,270,5.7,10,10,0.3,30,9,999999999,129,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,6.7,100,83700,285,1383,323,35,0,35,4100,0,4100,1410,260,4.1,10,10,0.3,30,9,999999999,129,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,7.2,100,83700,507,1383,326,251,213,173,27100,20500,19600,3990,270,2.6,10,10,2.0,30,9,999999999,120,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,7.0,93,83700,683,1383,314,136,0,136,15900,0,15900,5950,250,3.1,8,8,4.8,150,9,999999999,120,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,83600,800,1383,319,567,635,198,60100,64800,22500,4550,260,3.6,5,5,4.8,77777,9,999999999,120,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.2,69,83700,850,1383,324,666,890,117,69300,88500,14800,2670,310,3.1,5,5,4.8,77777,9,999999999,120,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.2,62,83700,829,1383,331,637,909,90,66200,89800,12200,1920,310,3.6,5,5,4.8,77777,9,999999999,129,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,6.7,55,83700,739,1383,334,554,914,64,58200,89700,10100,1570,310,3.1,4,4,9.6,77777,9,999999999,129,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.2,57,83600,587,1383,337,426,738,111,44000,70500,14000,2180,10,3.1,5,5,9.6,77777,9,999999999,129,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.8,60,83600,382,1383,338,213,430,93,22100,36900,11900,1730,310,4.6,5,5,12.8,77777,9,999999999,139,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,7.8,69,83200,141,1383,327,66,261,39,6700,13500,5300,710,290,4.6,9,5,12.8,77777,9,999999999,139,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,7.2,77,83500,1,104,312,0,0,0,0,0,0,0,270,2.1,3,3,16.0,77777,9,999999999,139,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,83500,0,0,309,0,0,0,0,0,0,0,290,2.1,4,3,16.0,77777,9,999999999,150,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,6.7,80,83500,0,0,306,0,0,0,0,0,0,0,300,3.1,3,3,16.0,77777,9,999999999,150,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,83400,0,0,289,0,0,0,0,0,0,0,260,2.6,0,0,16.0,77777,9,999999999,150,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,83400,0,0,298,0,0,0,0,0,0,0,240,2.6,3,3,16.0,77777,9,999999999,150,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,2.8,93,83300,0,0,277,0,0,0,0,0,0,0,140,1.5,3,3,16.0,77777,9,999999999,160,0.0570,0,88,0.200,0.0,1.0 +2000,10,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,3.3,93,83200,0,0,279,0,0,0,0,0,0,0,150,3.1,3,3,14.4,77777,9,999999999,160,0.0570,0,88,0.200,0.0,1.0 +2000,10,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,3.3,96,83100,0,0,277,0,0,0,0,0,0,0,150,1.5,3,3,16.0,77777,9,999999999,150,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.8,97,83000,0,0,275,0,0,0,0,0,0,0,150,4.1,3,3,16.0,77777,9,999999999,150,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,4.4,89,83100,0,0,276,0,0,0,0,0,0,0,180,4.6,0,0,16.0,77777,9,999999999,150,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,1.7,79,83100,0,0,269,0,0,0,0,0,0,0,200,4.6,0,0,16.0,77777,9,999999999,150,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,0.6,73,83200,0,0,279,0,0,0,0,0,0,0,200,5.7,3,3,16.0,77777,9,999999999,139,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-0.6,64,83200,0,0,280,0,0,0,0,0,0,0,200,5.2,3,3,16.0,77777,9,999999999,139,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-0.6,62,83200,50,888,282,5,120,3,1100,7000,700,110,200,5.2,3,3,16.0,77777,9,999999999,139,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,0.0,56,83300,280,1384,292,176,454,84,17900,34100,11000,1580,210,5.2,3,3,16.0,77777,9,999999999,139,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-0.6,44,83500,502,1384,303,349,745,78,36600,69500,11300,1530,210,4.6,3,3,16.0,77777,9,999999999,139,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-1.7,35,83500,677,1384,316,532,929,75,55500,90200,11100,1540,270,2.1,5,5,16.0,77777,9,999999999,129,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-2.8,30,83200,794,1384,320,598,919,69,62700,90700,10400,1700,150,1.5,5,5,16.0,77777,9,999999999,129,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-1.7,29,83600,843,1384,329,623,860,98,66200,86100,13500,2370,70,3.6,5,5,16.0,77777,9,999999999,129,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-3.3,26,83500,823,1384,320,631,927,78,65900,91600,11200,1840,30,2.1,3,3,16.0,77777,9,999999999,129,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-4.4,23,83500,733,1384,321,543,831,101,56300,81600,12900,2120,350,1.5,4,3,16.0,77777,9,999999999,129,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-3.3,24,83500,581,1384,327,381,615,122,39100,58300,14600,2340,50,2.6,4,4,16.0,77777,9,999999999,129,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-3.3,27,83500,376,1384,322,256,576,99,26500,49100,13100,1860,0,0.0,5,5,16.0,77777,9,999999999,129,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.7,33,83100,135,1384,331,26,0,26,3000,0,3000,910,200,1.5,9,8,16.0,3048,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,0.0,44,83400,0,81,311,0,0,0,0,0,0,0,240,2.6,5,5,16.0,77777,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.1,45,83400,0,0,298,0,0,0,0,0,0,0,290,3.6,3,3,16.0,77777,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.7,43,83300,0,0,297,0,0,0,0,0,0,0,280,2.6,3,3,16.0,77777,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.7,43,83400,0,0,297,0,0,0,0,0,0,0,250,3.1,3,3,16.0,77777,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-1.7,54,83200,0,0,288,0,0,0,0,0,0,0,210,2.1,5,5,16.0,6096,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-1.7,63,83200,0,0,277,0,0,0,0,0,0,0,0,0.0,4,4,16.0,6096,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-1.7,56,83100,0,0,281,0,0,0,0,0,0,0,210,3.6,3,3,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-1.1,78,82900,0,0,267,0,0,0,0,0,0,0,170,5.2,3,3,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-2.2,61,83000,0,0,274,0,0,0,0,0,0,0,200,5.2,3,3,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-3.3,51,83100,0,0,266,0,0,0,0,0,0,0,210,5.7,0,0,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.3,55,83000,0,0,262,0,0,0,0,0,0,0,210,5.2,0,0,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-3.9,53,83200,0,0,261,0,0,0,0,0,0,0,210,6.2,0,0,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-3.9,55,83100,0,0,259,0,0,0,0,0,0,0,220,6.2,0,0,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-3.3,57,83200,47,865,260,5,168,2,1300,9800,800,80,220,5.7,0,0,16.0,77777,9,999999999,89,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-2.8,48,83400,275,1385,273,195,670,62,19700,50400,9700,1070,230,4.6,0,0,16.0,77777,9,999999999,89,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-1.7,43,83500,496,1385,285,364,846,59,38000,78900,9600,1230,240,4.6,0,0,16.0,77777,9,999999999,89,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-2.2,37,83600,672,1385,291,506,850,92,52400,82700,12100,1880,240,2.6,0,0,16.0,77777,9,999999999,80,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.0,40,83300,788,1385,300,611,962,61,64200,94900,10000,1600,260,2.1,0,0,16.0,77777,9,999999999,80,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,0.0,36,83600,837,1385,308,642,914,87,66800,90400,11900,1930,110,2.6,0,0,16.0,77777,9,999999999,80,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-1.1,30,83600,817,1385,311,607,843,108,63400,83700,13800,2430,100,2.1,0,0,16.0,77777,9,999999999,89,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-3.3,25,83600,727,1385,322,508,801,86,53600,79100,11900,1910,80,1.5,3,3,16.0,77777,9,999999999,89,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-3.9,22,83600,575,1385,326,414,837,65,43600,80300,10100,1390,70,3.1,3,3,16.0,77777,9,999999999,89,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-3.3,24,83600,370,1385,325,241,700,53,24600,60400,8400,1010,60,3.1,3,3,16.0,77777,9,999999999,89,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-0.6,39,83200,130,1385,315,50,270,25,5100,14700,3800,450,60,3.6,5,5,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,0.0,52,83400,0,35,297,0,0,0,0,0,0,0,40,3.6,3,3,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,83500,0,0,296,0,0,0,0,0,0,0,60,2.1,3,3,16.0,77777,9,999999999,100,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.0,60,83300,0,0,281,0,0,0,0,0,0,0,80,2.1,1,1,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.0,67,83200,0,0,278,0,0,0,0,0,0,0,190,3.6,3,2,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-0.6,55,83300,0,0,283,0,0,0,0,0,0,0,210,5.7,1,1,16.0,77777,9,999999999,110,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.6,65,83300,0,0,280,0,0,0,0,0,0,0,210,6.2,1,1,16.0,77777,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-1.1,64,83200,0,0,275,0,0,0,0,0,0,0,200,4.6,2,2,16.0,77777,9,999999999,120,0.0560,0,88,0.200,0.0,1.0 +2000,10,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.1,69,83100,0,0,275,0,0,0,0,0,0,0,130,2.6,7,4,16.0,77777,9,999999999,129,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-1.1,61,83200,0,0,273,0,0,0,0,0,0,0,190,4.6,1,1,16.0,77777,9,999999999,129,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.1,69,83100,0,0,273,0,0,0,0,0,0,0,190,1.5,4,3,16.0,77777,9,999999999,139,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-0.6,78,83100,0,0,269,0,0,0,0,0,0,0,180,2.1,5,3,16.0,77777,9,999999999,150,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-0.6,62,83400,0,0,282,0,0,0,0,0,0,0,210,3.6,5,3,16.0,77777,9,999999999,150,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.0,73,83300,0,0,274,0,0,0,0,0,0,0,240,2.1,4,2,16.0,7620,9,999999999,160,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,0.6,76,83300,44,843,270,3,82,2,700,4700,500,80,220,2.6,3,1,16.0,7620,9,999999999,170,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,0.6,60,83600,270,1385,284,143,347,75,14600,25600,9600,1390,240,1.5,2,1,16.0,7620,9,999999999,170,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-0.6,49,83700,491,1385,293,308,571,105,31500,52100,13000,1930,0,0.0,4,2,16.0,7620,9,999999999,179,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,1.7,52,83700,666,1385,308,422,440,209,44800,45300,23000,4720,70,2.1,5,4,16.0,7620,9,999999999,189,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.3,52,83500,782,1385,312,542,732,127,57200,73400,15600,2910,90,2.1,3,2,16.0,7620,9,999999999,189,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,5.6,53,83800,831,1385,327,545,577,197,58100,59200,22400,4650,100,4.1,4,3,16.0,7620,9,999999999,189,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,5.6,50,83700,811,1385,335,607,819,126,64300,82500,15900,2970,80,3.6,5,4,16.0,7620,9,999999999,189,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,6.7,54,83600,721,1385,336,548,730,167,56200,71100,19100,3420,60,6.7,5,4,16.0,7620,9,999999999,189,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,7.2,57,83600,568,1385,340,228,99,187,25000,9600,21000,5140,50,5.2,9,6,16.0,7620,9,999999999,189,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,7.8,65,83600,364,1385,332,73,0,73,8400,0,8400,2790,360,6.2,9,5,16.0,6706,9,999999999,189,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.8,72,83200,124,1385,337,46,124,35,4800,5500,4300,650,280,5.2,9,8,16.0,6706,9,999999999,189,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,83500,0,12,312,0,0,0,0,0,0,0,290,5.2,7,5,12.8,6706,9,999999999,179,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,83500,0,0,306,0,0,0,0,0,0,0,0,0.0,10,4,12.8,6096,9,999999999,179,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.1,89,83400,0,0,299,0,0,0,0,0,0,0,220,1.5,10,4,9.6,6096,9,999999999,179,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.7,86,83400,0,0,304,0,0,0,0,0,0,0,240,1.5,9,4,11.2,6096,9,999999999,179,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,83200,0,0,290,0,0,0,0,0,0,0,140,2.1,9,4,8.0,6096,9,999999999,179,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.6,97,83200,0,0,310,0,0,0,0,0,0,0,150,3.1,10,9,8.0,3353,9,999999999,179,0.0550,0,88,0.200,0.0,1.0 +2000,10,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,83100,0,0,290,0,0,0,0,0,0,0,130,3.1,8,4,11.2,3658,9,999999999,179,0.0550,0,88,0.200,0.0,1.0 +2000,10,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.1,86,83100,0,0,301,0,0,0,0,0,0,0,160,4.6,10,4,16.0,3658,9,999999999,170,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.1,80,83100,0,0,305,0,0,0,0,0,0,0,180,4.1,8,4,16.0,6096,9,999999999,170,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.1,80,83100,0,0,305,0,0,0,0,0,0,0,170,4.1,9,4,16.0,6096,9,999999999,170,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,6.1,83,83000,0,0,308,0,0,0,0,0,0,0,160,2.6,10,6,16.0,6096,9,999999999,160,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,83000,0,0,322,0,0,0,0,0,0,0,0,0.0,10,9,16.0,2438,9,999999999,160,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,83000,0,0,315,0,0,0,0,0,0,0,120,3.6,10,8,16.0,2438,9,999999999,160,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,8.3,93,83100,41,820,321,1,0,1,100,0,100,40,140,3.6,10,8,16.0,3353,9,999999999,150,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,8.9,93,83100,264,1386,320,54,0,54,6100,0,6100,1960,130,3.6,9,7,16.0,5486,9,999999999,150,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,83000,486,1386,304,105,0,105,12000,0,12000,4160,250,3.6,9,5,8.0,6096,9,999999999,139,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.2,79,83100,660,1386,321,227,12,221,25400,1000,24900,8190,270,2.6,10,7,9.6,6096,9,999999999,139,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,7.2,74,82900,776,1386,331,268,30,251,30400,2700,28800,9890,280,2.1,9,8,11.2,3353,9,999999999,139,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,7.8,62,83100,826,1386,338,103,0,103,12600,0,12600,5080,220,3.1,9,6,16.0,6096,9,999999999,139,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,82900,805,1386,339,295,72,253,32400,7300,28200,8050,310,5.7,10,7,9.6,6096,9,999999999,129,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,7.8,74,82800,715,1386,325,160,12,154,18700,900,18200,6690,300,4.6,8,6,9.6,6096,9,999999999,129,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,7.8,72,82800,563,1386,331,239,129,187,25900,12700,20700,4400,360,4.1,10,7,9.6,6096,9,999999999,129,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.7,64,82800,358,1386,332,190,349,100,19600,29100,12000,1880,110,5.2,9,7,16.0,6096,9,999999999,120,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.7,69,82500,119,1375,349,54,236,33,5600,11400,4600,600,250,4.1,10,10,16.0,6096,9,999999999,120,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,7.2,83,82700,0,0,318,0,0,0,0,0,0,0,280,3.6,8,7,16.0,7620,9,999999999,120,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,7.3,87,82600,0,0,315,0,0,0,0,0,0,0,270,3.4,9,7,16.0,6858,9,999999999,120,0.0540,0,88,0.200,999.0,99.0 +2000,10,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,82600,0,0,315,0,0,0,0,0,0,0,260,3.1,9,7,16.0,6096,9,999999999,110,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,7.2,89,82600,0,0,307,0,0,0,0,0,0,0,320,2.1,9,5,16.0,6096,9,999999999,110,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,82700,0,0,322,0,0,0,0,0,0,0,340,3.1,10,9,16.0,2134,9,999999999,110,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.7,97,82600,0,0,326,0,0,0,0,0,0,0,350,2.1,10,10,16.0,2134,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,7.2,96,82600,0,0,329,0,0,0,0,0,0,0,360,3.1,10,10,16.0,1219,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,8.3,100,82500,0,0,332,0,0,0,0,0,0,0,310,5.7,10,10,4.0,30,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,8.3,100,82500,0,0,332,0,0,0,0,0,0,0,310,5.2,10,10,4.0,30,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,8.3,100,82500,0,0,332,0,0,0,0,0,0,0,310,3.1,10,10,5.6,30,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.8,97,82500,0,0,332,0,0,0,0,0,0,0,260,3.1,10,10,0.8,1402,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,82600,0,0,331,0,0,0,0,0,0,0,290,2.1,10,10,16.0,1981,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,82700,0,0,331,0,0,0,0,0,0,0,0,0.0,10,10,11.2,2316,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,82700,38,774,316,1,6,1,200,200,200,20,80,3.1,9,9,16.0,3353,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,6.7,93,82900,259,1387,319,91,28,86,10000,2300,9500,2010,100,2.6,9,9,16.0,2438,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,6.7,90,82900,480,1387,315,141,0,141,15800,0,15800,5070,130,3.1,8,8,16.0,2438,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.7,83,83000,655,1387,320,234,43,214,25700,4300,23700,6180,130,3.6,8,8,16.0,2591,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,6.7,69,83100,770,1387,321,530,611,189,56100,62100,21500,4230,160,3.6,5,5,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.3,44,83100,820,1387,330,599,830,107,62700,82500,13700,2430,290,3.1,4,4,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,1.1,32,83200,799,1387,338,583,843,96,61500,83900,13000,2210,260,5.2,4,4,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-3.3,23,83200,709,1387,330,485,771,89,50700,75800,11800,1910,270,4.6,3,3,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-3.9,22,83200,557,1387,326,380,766,71,39500,72700,10200,1440,280,2.1,3,3,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-3.3,24,83200,352,1387,327,228,725,43,23700,62300,7800,880,290,4.1,3,3,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-2.2,31,82900,113,1352,321,46,328,20,4900,19400,3200,380,270,3.6,5,5,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-2.2,36,83200,0,0,306,0,0,0,0,0,0,0,280,3.1,3,3,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-1.7,54,83000,0,0,272,0,0,0,0,0,0,0,110,3.1,0,0,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-3.9,31,83300,0,0,297,0,0,0,0,0,0,0,0,0.0,1,1,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-0.6,67,83000,0,0,267,0,0,0,0,0,0,0,150,3.6,1,0,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.1,70,83000,0,0,278,0,0,0,0,0,0,0,160,3.6,1,1,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.8,79,83000,0,0,274,0,0,0,0,0,0,0,160,4.1,0,0,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,0.6,70,82900,0,0,279,0,0,0,0,0,0,0,210,4.6,3,2,16.0,77777,9,999999999,100,0.0540,0,88,0.200,0.0,1.0 +2000,10,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-1.1,67,82800,0,0,275,0,0,0,0,0,0,0,220,3.6,4,3,16.0,77777,9,999999999,100,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-1.7,58,82800,0,0,279,0,0,0,0,0,0,0,230,3.1,4,3,16.0,77777,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-1.7,63,82800,0,0,277,0,0,0,0,0,0,0,210,3.6,6,4,16.0,77777,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-2.2,61,82800,0,0,276,0,0,0,0,0,0,0,210,4.1,7,4,16.0,77777,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-1.7,77,83000,0,0,266,0,0,0,0,0,0,0,190,3.1,7,4,16.0,77777,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-2.2,63,82900,0,0,274,0,0,0,0,0,0,0,210,5.2,9,4,16.0,7620,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-1.7,69,82900,36,752,272,1,20,1,300,1100,200,30,240,3.6,8,4,16.0,77777,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-0.6,67,83000,254,1388,275,101,106,82,10900,7900,9500,1760,240,3.6,4,2,16.0,6706,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.6,63,83200,475,1388,282,360,660,133,37100,60600,16200,2580,270,5.2,1,1,16.0,6706,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.9,68,83200,649,1388,298,507,924,74,53000,89200,11100,1480,260,3.1,2,2,16.0,77777,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,5.0,66,83000,765,1388,309,549,781,117,58100,78300,14900,2660,310,1.5,3,3,16.0,77777,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,4.4,59,83200,814,1388,318,611,787,148,64100,78700,17700,3420,0,0.0,6,5,16.0,6706,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,3.9,55,83200,793,1388,308,459,341,264,49000,36000,28300,6520,250,2.1,1,1,16.0,6706,9,999999999,89,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.9,47,83200,703,1388,318,513,765,124,53600,75400,15300,2640,170,2.1,1,1,16.0,6706,9,999999999,100,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,3.3,44,83300,551,1388,314,379,742,83,39800,70700,11600,1670,80,2.6,1,0,16.0,77777,9,999999999,100,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.3,45,83200,347,1388,333,194,482,73,19700,39700,9800,1300,10,3.1,6,6,16.0,77777,9,999999999,100,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,3.9,59,83200,108,1307,334,45,248,26,4800,12900,3700,450,350,4.6,9,9,16.0,6706,9,999999999,110,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,2.8,58,83100,0,0,309,0,0,0,0,0,0,0,330,3.1,5,5,16.0,6706,9,999999999,110,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.3,66,83100,0,0,300,0,0,0,0,0,0,0,300,3.6,4,3,16.0,77777,9,999999999,110,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.3,66,83100,0,0,305,0,0,0,0,0,0,0,280,2.1,5,5,16.0,77777,9,999999999,110,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,2.8,71,83000,0,0,300,0,0,0,0,0,0,0,220,3.1,6,6,16.0,77777,9,999999999,120,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.2,76,82800,0,0,290,0,0,0,0,0,0,0,220,4.1,5,5,16.0,77777,9,999999999,120,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,2.2,76,82800,0,0,285,0,0,0,0,0,0,0,200,4.6,3,3,16.0,77777,9,999999999,120,0.0530,0,88,0.200,0.0,1.0 +2000,10,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,1.7,73,82700,0,0,273,0,0,0,0,0,0,0,220,4.1,0,0,16.0,77777,9,999999999,120,0.0530,0,88,0.200,0.0,1.0 +2000,10,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.1,79,82700,0,0,266,0,0,0,0,0,0,0,220,2.6,0,0,16.0,77777,9,999999999,110,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,1.1,79,82600,0,0,266,0,0,0,0,0,0,0,240,3.1,0,0,16.0,77777,9,999999999,110,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.6,85,82500,0,0,259,0,0,0,0,0,0,0,240,3.6,0,0,16.0,77777,9,999999999,100,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,0.6,85,82600,0,0,259,0,0,0,0,0,0,0,230,4.1,0,0,16.0,77777,9,999999999,100,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,0.0,85,82800,0,0,256,0,0,0,0,0,0,0,240,4.1,0,0,16.0,6096,9,999999999,100,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.1,89,82700,0,0,285,0,0,0,0,0,0,0,270,2.6,8,8,16.0,183,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.8,89,82700,33,729,309,1,56,0,0,0,0,0,360,3.1,10,10,16.0,244,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,2.8,89,82800,249,1388,309,168,318,111,17000,22200,13000,2420,10,4.1,10,10,16.0,244,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.3,89,82800,469,1388,312,191,107,154,20500,10100,17100,3500,360,2.1,10,10,12.8,183,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,4.0,93,82800,643,1388,313,195,6,192,22000,500,21800,7380,320,3.6,10,10,1.6,120,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.9,93,82800,759,1388,312,106,0,106,12800,0,12800,5040,340,2.1,10,10,2.4,122,9,999999999,69,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,5.0,93,82700,808,1388,318,97,0,97,11900,0,11900,4780,20,2.1,10,10,2.8,120,9,999999999,69,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.0,5.0,93,82700,787,1388,318,94,0,94,11500,0,11500,4600,0,0.0,10,10,2.8,90,9,999999999,69,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,5.0,96,82600,697,1388,316,108,0,108,12900,0,12900,4960,280,1.5,10,10,1.6,183,9,999999999,69,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,82600,545,1388,319,76,0,76,9100,0,9100,3350,260,3.6,10,10,9.6,183,9,999999999,69,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,5.6,93,82500,341,1388,307,63,0,63,7200,0,7200,2430,100,3.1,9,8,11.2,2896,9,999999999,69,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,82300,104,1284,319,8,0,8,1000,0,1000,320,310,2.6,10,10,14.4,1981,9,999999999,60,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,5.0,96,82400,0,0,308,0,0,0,0,0,0,0,270,2.6,9,9,9.6,3048,9,999999999,60,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,5.0,96,82400,0,0,316,0,0,0,0,0,0,0,260,6.2,10,10,9.6,549,9,999999999,60,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,2.2,89,82300,0,0,306,0,0,0,0,0,0,0,310,11.3,10,10,12.8,762,9,999999999,60,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,1.1,89,82300,0,0,300,0,0,0,0,0,0,0,300,8.8,10,10,11.2,579,9,999999999,60,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.2,-0.4,92,82200,0,0,291,0,0,0,0,0,0,0,60,7.8,10,10,16.0,1219,9,999999999,60,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.3,-2.0,92,82300,0,0,283,0,0,0,0,0,0,0,170,6.7,10,10,16.0,1981,9,999999999,60,0.0520,0,88,0.200,0.0,1.0 +2000,10,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.9,-3.6,89,82200,0,0,275,0,0,0,0,0,0,0,170,5.7,10,10,16.0,2896,9,999999999,50,0.0520,0,88,0.200,0.0,1.0 +2002,11,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.4,-5.1,91,83600,0,0,268,0,0,0,0,0,0,0,0,4.6,10,10,4.0,1158,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2002,11,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.7,91,83600,0,0,260,0,0,0,0,0,0,0,20,3.6,10,10,4.8,1250,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2002,11,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.6,-8.3,91,83700,0,0,252,0,0,0,0,0,0,0,80,2.5,10,10,14.4,1128,9,999999999,80,0.0520,0,88,0.200,0.0,1.0 +2002,11,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.3,-10.0,86,83700,0,0,244,0,0,0,0,0,0,0,90,1.5,10,10,16.0,945,9,999999999,80,0.0520,0,88,0.200,999.0,99.0 +2002,11,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-9.4,91,84000,0,0,245,0,0,0,0,0,0,0,90,1.5,10,10,9.6,1067,9,999999999,80,0.0520,0,88,0.200,0.0,6.0 +2002,11,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-9.4,91,83700,0,0,245,0,0,0,0,0,0,0,90,1.5,10,10,14.4,1128,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2002,11,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-9.4,91,83700,32,729,245,0,17,0,0,0,0,0,120,2.1,10,10,11.2,1067,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2002,11,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-8.9,91,83700,246,1388,240,103,99,86,11100,7300,9800,1840,120,3.1,10,9,11.2,1067,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2002,11,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-8.3,87,83800,466,1388,245,57,0,57,6800,0,6800,2480,110,2.6,10,9,16.0,3962,9,999999999,80,0.0520,0,88,0.200,999.0,99.0 +2002,11,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-8.3,83,83800,640,1388,233,91,0,91,10900,0,10900,4150,120,3.6,10,5,16.0,77777,9,999999999,80,0.0520,0,88,0.200,999.0,99.0 +2002,11,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.7,86,83900,756,1388,247,187,0,187,21600,0,21600,7960,80,4.1,10,8,16.0,701,9,999999999,80,0.0520,0,88,0.200,0.0,6.0 +2002,11,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.3,-5.0,87,83700,805,1388,261,139,0,139,16600,0,16600,6500,110,4.1,10,9,16.0,640,9,999999999,80,0.0520,0,88,0.200,999.0,99.0 +2002,11,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-6.1,91,83600,783,1388,260,100,0,100,12200,0,12200,4850,360,6.2,10,10,1.6,701,9,999999999,89,0.0520,0,88,0.200,999.0,99.0 +2002,11,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-6.1,100,83500,694,1388,256,131,0,131,15400,0,15400,5800,10,5.7,10,10,2.0,91,9,999999999,89,0.0520,0,88,0.200,999.0,99.0 +2002,11,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-7.8,91,83500,542,1388,252,87,0,87,10300,0,10300,3750,10,5.7,10,10,2.0,30,9,999999999,89,0.0520,0,88,0.200,999.0,99.0 +2002,11,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-7.2,96,83500,338,1388,253,67,0,67,7700,0,7700,2540,360,4.1,10,10,2.0,30,9,999999999,89,0.0520,0,88,0.200,999.0,99.0 +2002,11,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-7.8,95,83700,101,1284,250,16,0,16,1900,0,1900,590,340,3.6,10,10,0.4,30,9,999999999,89,0.0520,0,88,0.200,0.0,6.0 +2002,11,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-7.8,95,83500,0,0,250,0,0,0,0,0,0,0,340,1.5,10,10,0.4,30,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2002,11,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-7.8,95,83500,0,0,250,0,0,0,0,0,0,0,340,2.1,10,10,0.4,30,9,999999999,89,0.0520,0,88,0.200,0.0,1.0 +2002,11,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-7.8,91,83400,0,0,252,0,0,0,0,0,0,0,0,0.0,10,10,0.4,30,9,999999999,100,0.0520,0,88,0.200,0.0,1.0 +2002,11,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-7.8,91,83400,0,0,252,0,0,0,0,0,0,0,0,0.0,10,10,0.4,30,9,999999999,100,0.0520,0,88,0.200,999.0,99.0 +2002,11,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-7.2,96,83300,0,0,253,0,0,0,0,0,0,0,0,0.0,10,10,1.2,30,9,999999999,100,0.0520,0,88,0.200,999.0,99.0 +2002,11,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-7.8,91,83500,0,0,252,0,0,0,0,0,0,0,0,0.0,10,10,1.2,91,9,999999999,100,0.0520,0,88,0.200,0.0,6.0 +2002,11,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-7.2,91,83200,0,0,255,0,0,0,0,0,0,0,0,0.0,10,10,1.2,91,9,999999999,100,0.0520,0,88,0.200,999.0,99.0 +2002,11,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-7.2,91,83200,0,0,255,0,0,0,0,0,0,0,50,1.5,10,10,1.2,91,9,999999999,100,0.0510,0,88,0.200,999.0,99.0 +2002,11,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-6.7,95,83200,0,0,256,0,0,0,0,0,0,0,0,0.0,10,10,2.4,91,9,999999999,100,0.0510,0,88,0.200,999.0,99.0 +2002,11,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-6.7,95,83100,0,0,256,0,0,0,0,0,0,0,10,1.5,10,10,1.6,91,9,999999999,89,0.0510,0,88,0.200,999.0,99.0 +2002,11,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-7.2,91,83100,0,0,255,0,0,0,0,0,0,0,0,0.0,10,10,1.6,91,9,999999999,89,0.0510,0,88,0.200,999.0,99.0 +2002,11,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.2,91,83300,0,0,255,0,0,0,0,0,0,0,0,0.0,10,10,1.6,91,9,999999999,89,0.0510,0,88,0.200,0.0,6.0 +2002,11,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-6.7,95,83000,0,0,256,0,0,0,0,0,0,0,180,1.5,10,10,1.6,91,9,999999999,89,0.0510,0,88,0.200,999.0,99.0 +2002,11,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-6.7,95,83000,29,683,256,0,0,0,0,0,0,0,0,0.0,10,10,0.8,61,9,999999999,89,0.0510,0,88,0.200,999.0,99.0 +2002,11,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-6.7,91,83000,241,1389,257,28,0,28,3300,0,3300,1120,0,0.0,10,10,0.8,61,9,999999999,100,0.0510,0,88,0.200,0.0,1.0 +2002,11,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-5.6,95,83000,461,1389,261,106,0,106,12100,0,12100,4080,0,0.0,10,10,2.4,61,9,999999999,89,0.0510,0,88,0.200,0.0,1.0 +2002,11,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.6,90,83100,635,1389,263,137,0,137,15900,0,15900,5770,0,0.0,10,10,2.0,61,9,999999999,89,0.0510,0,88,0.200,0.0,1.0 +2002,11,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.6,90,83200,750,1389,263,106,0,106,12800,0,12800,5020,0,0.0,10,10,0.8,122,9,999999999,89,0.0510,0,88,0.200,0.0,6.0 +2002,11,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.4,-5.6,90,83000,799,1389,263,121,0,121,14600,0,14600,5760,30,2.1,10,10,2.4,122,9,999999999,89,0.0510,0,88,0.200,999.0,99.0 +2002,11,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.4,-5.6,90,83000,778,1389,263,147,0,147,17400,0,17400,6700,20,1.5,10,10,2.4,183,9,999999999,89,0.0510,0,88,0.200,999.0,99.0 +2002,11,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-5.6,86,83000,688,1389,265,222,24,210,25100,2000,24100,8150,0,0.0,10,10,2.4,244,9,999999999,80,0.0510,0,88,0.200,999.0,99.0 +2002,11,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-5.0,83,83000,536,1389,263,211,88,177,23100,8500,19800,4770,20,3.1,9,9,2.4,3048,9,999999999,89,0.0510,0,88,0.200,999.0,99.0 +2002,11,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-5.0,83,83100,333,1389,248,139,184,95,14700,15100,11000,1870,10,3.1,6,5,2.4,77777,9,999999999,89,0.0510,0,88,0.200,999.0,99.0 +2002,11,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.6,86,83200,97,1239,243,29,180,16,3200,9400,2400,300,330,4.1,6,5,2.4,77777,9,999999999,89,0.0510,0,88,0.200,0.0,6.0 +2002,11,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-7.8,71,83200,0,0,256,0,0,0,0,0,0,0,280,3.6,9,9,2.4,3048,9,999999999,89,0.0510,0,88,0.200,999.0,99.0 +2002,11,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-5.6,82,83300,0,0,268,0,0,0,0,0,0,0,0,0.0,10,10,2.4,1433,9,999999999,80,0.0510,0,88,0.200,0.0,1.0 +2002,11,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-5.0,87,83300,0,0,268,0,0,0,0,0,0,0,270,2.1,10,10,6.4,1494,9,999999999,80,0.0510,0,88,0.200,0.0,1.0 +2002,11,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-4.4,91,83300,0,0,269,0,0,0,0,0,0,0,260,2.1,10,10,0.8,274,9,999999999,69,0.0510,0,88,0.200,0.0,1.0 +2002,11,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-3.9,95,83300,0,0,269,0,0,0,0,0,0,0,0,0.0,10,10,1.6,396,9,999999999,69,0.0510,0,88,0.200,0.0,1.0 +2002,11,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-5.6,95,83500,0,0,261,0,0,0,0,0,0,0,70,2.1,10,10,1.6,213,9,999999999,69,0.0510,0,88,0.200,2.0,6.0 +2002,11,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-6.1,96,83200,0,0,258,0,0,0,0,0,0,0,180,2.6,10,10,3.2,914,9,999999999,60,0.0510,0,88,0.200,0.0,1.0 +2002,11,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.0,95,83300,0,0,264,0,0,0,0,0,0,0,170,2.1,10,10,2.4,549,9,999999999,60,0.0510,0,88,0.200,0.0,1.0 +2002,11,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.0,95,83300,0,0,264,0,0,0,0,0,0,0,0,0.0,10,10,3.2,518,9,999999999,60,0.0510,0,88,0.200,0.0,1.0 +2002,11,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-5.6,95,83300,0,0,261,0,0,0,0,0,0,0,150,1.5,10,10,4.8,823,9,999999999,60,0.0510,0,88,0.200,0.0,1.0 +2002,11,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.0,95,83400,0,0,257,0,0,0,0,0,0,0,230,1.5,9,9,1.6,335,9,999999999,69,0.0510,0,88,0.200,0.0,1.0 +2002,11,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.0,95,83700,0,0,264,0,0,0,0,0,0,0,220,3.1,10,10,4.8,914,9,999999999,69,0.0510,0,88,0.200,0.0,6.0 +2002,11,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-7.2,96,83400,0,0,232,0,0,0,0,0,0,0,220,5.7,5,5,4.8,77777,9,999999999,60,0.0510,0,88,0.200,999.0,99.0 +2002,11,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.8,-8.3,96,83400,27,660,227,0,0,0,0,0,0,0,210,5.7,5,5,11.2,77777,9,999999999,60,0.0510,0,88,0.200,999.0,99.0 +2002,11,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-8.3,87,83500,236,1390,225,48,0,48,5400,0,5400,1720,210,4.6,2,2,16.0,77777,9,999999999,50,0.0510,0,88,0.200,999.0,99.0 +2002,11,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-7.8,83,83600,455,1390,232,57,0,57,6800,0,6800,2460,200,5.2,3,3,16.0,77777,9,999999999,50,0.0510,0,88,0.200,999.0,99.0 +2002,11,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-5.6,79,83700,629,1390,241,78,0,78,9400,0,9400,3600,210,3.6,2,2,16.0,77777,9,999999999,50,0.0510,0,88,0.200,999.0,99.0 +2002,11,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.1,66,83900,744,1390,249,112,0,112,13400,0,13400,5250,200,3.1,3,3,16.0,77777,9,999999999,40,0.0510,0,88,0.200,0.0,6.0 +2002,11,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-8.9,47,83900,793,1390,240,163,0,163,19200,0,19200,7340,190,2.6,0,0,16.0,77777,9,999999999,40,0.0510,0,88,0.200,999.0,99.0 +2002,11,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-11.7,34,83800,772,1390,252,335,114,272,36800,11500,30400,8250,180,2.6,3,3,16.0,77777,9,999999999,40,0.0510,0,88,0.200,999.0,99.0 +2002,11,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.7,-11.1,34,83800,682,1390,252,284,83,244,31200,8300,27100,6990,170,3.6,2,2,16.0,77777,9,999999999,40,0.0510,0,88,0.200,999.0,99.0 +2002,11,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-14.4,24,83800,531,1390,254,221,117,176,23900,11400,19500,4090,140,3.1,3,3,16.0,77777,9,999999999,40,0.0510,0,88,0.200,999.0,99.0 +2002,11,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-12.2,32,83800,328,1390,249,158,346,76,16500,27900,9900,1390,140,2.6,2,2,16.0,77777,9,999999999,30,0.0510,0,88,0.200,999.0,99.0 +2002,11,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-11.1,51,83700,92,1216,237,33,232,18,3800,11900,2800,330,150,3.6,3,3,16.0,77777,9,999999999,30,0.0510,0,88,0.200,0.0,6.0 +2002,11,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-10.6,56,83600,0,0,225,0,0,0,0,0,0,0,180,5.2,0,0,16.0,77777,9,999999999,30,0.0510,0,88,0.200,999.0,99.0 +2002,11,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.3,-11.1,51,83700,0,0,227,0,0,0,0,0,0,0,180,5.2,0,0,16.0,77777,9,999999999,30,0.0510,0,88,0.200,999.0,99.0 +2002,11,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-11.1,59,83500,0,0,221,0,0,0,0,0,0,0,170,5.2,0,0,16.0,77777,9,999999999,30,0.0510,0,88,0.200,999.0,99.0 +2002,11,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-11.7,61,83400,0,0,217,0,0,0,0,0,0,0,170,3.6,0,0,16.0,77777,9,999999999,30,0.0510,0,88,0.200,999.0,99.0 +2002,11,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.2,-11.1,71,83300,0,0,214,0,0,0,0,0,0,0,170,5.2,0,0,16.0,77777,9,999999999,30,0.0510,0,88,0.200,999.0,99.0 +2002,11,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-11.7,64,83500,0,0,215,0,0,0,0,0,0,0,160,4.1,0,0,16.0,77777,9,999999999,30,0.0510,0,88,0.200,0.0,6.0 +2002,11,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-10.0,75,83100,0,0,217,0,0,0,0,0,0,0,160,3.1,0,0,16.0,77777,9,999999999,30,0.0510,0,88,0.200,999.0,99.0 +2002,11,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-8.9,71,83000,0,0,228,0,0,0,0,0,0,0,240,3.1,1,1,16.0,77777,9,999999999,30,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-8.9,71,83000,0,0,235,0,0,0,0,0,0,0,190,2.1,5,4,16.0,77777,9,999999999,30,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-8.9,65,82900,0,0,240,0,0,0,0,0,0,0,200,2.6,7,5,16.0,77777,9,999999999,40,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-7.8,65,82900,0,0,245,0,0,0,0,0,0,0,260,3.1,8,5,16.0,6096,9,999999999,50,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-7.2,79,83000,0,0,242,0,0,0,0,0,0,0,260,2.1,10,6,16.0,6096,9,999999999,50,0.0500,0,88,0.200,0.0,6.0 +2002,11,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-8.3,83,82700,0,0,233,0,0,0,0,0,0,0,220,2.1,8,5,16.0,6096,9,999999999,50,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-7.8,79,82700,25,637,236,0,0,0,0,0,0,0,270,4.1,10,4,16.0,6096,9,999999999,60,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.4,-7.2,79,82700,231,1391,240,68,0,68,7500,0,7500,2150,280,3.6,9,5,16.0,6706,9,999999999,60,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.3,-7.2,72,82700,450,1391,244,114,0,114,12900,0,12900,4240,270,1.5,8,5,14.4,6096,9,999999999,60,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.2,-6.7,68,82600,623,1391,249,91,0,91,10900,0,10900,4100,270,3.1,7,5,16.0,3962,9,999999999,69,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.1,66,82600,739,1391,253,156,0,156,18200,0,18200,6850,230,2.6,9,5,16.0,4572,9,999999999,69,0.0500,0,88,0.200,0.0,6.0 +2002,11,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-7.2,52,82500,787,1391,274,145,0,145,17200,0,17200,6660,270,2.1,9,9,16.0,4572,9,999999999,69,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,-7.8,42,82600,766,1391,266,371,197,262,40300,20400,29000,6790,300,3.1,5,5,16.0,77777,9,999999999,69,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,-6.1,49,82500,677,1391,270,409,486,172,43000,48400,19400,3610,340,3.6,7,6,16.0,6706,9,999999999,69,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-5.6,53,82500,525,1391,272,302,484,118,31900,45900,14500,2270,350,2.6,9,7,16.0,6706,9,999999999,69,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-6.7,52,82400,322,1391,261,152,284,86,16100,23000,10700,1660,250,3.1,8,5,16.0,6706,9,999999999,60,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.7,52,82500,88,1194,266,10,0,10,1200,0,1200,390,320,2.1,7,7,16.0,6706,9,999999999,60,0.0500,0,88,0.200,0.0,6.0 +2002,11,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-6.7,52,82600,0,0,261,0,0,0,0,0,0,0,230,2.6,8,5,16.0,3658,9,999999999,50,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-5.0,66,82600,0,0,261,0,0,0,0,0,0,0,180,2.1,9,6,16.0,3658,9,999999999,50,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-5.0,76,82600,0,0,246,0,0,0,0,0,0,0,70,2.1,5,2,16.0,6096,9,999999999,50,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-4.4,80,82600,0,0,251,0,0,0,0,0,0,0,140,1.5,5,4,16.0,6096,9,999999999,50,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-6.1,69,82700,0,0,249,0,0,0,0,0,0,0,160,4.1,6,4,16.0,6096,9,999999999,50,0.0500,0,88,0.200,999.0,99.0 +2002,11,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-8.3,52,82800,0,0,247,0,0,0,0,0,0,0,50,3.6,3,2,16.0,77777,9,999999999,40,0.0500,0,88,0.200,0.0,6.0 +2002,11,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-7.8,59,82700,0,0,240,0,0,0,0,0,0,0,100,1.5,1,1,16.0,6096,9,999999999,50,0.0500,0,88,0.200,999.0,99.0 +2002,11,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.1,-8.9,51,82700,0,0,247,0,0,0,0,0,0,0,20,3.6,3,3,16.0,6096,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.1,-8.3,54,82700,0,0,245,0,0,0,0,0,0,0,340,3.6,2,2,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.1,-8.9,51,82700,0,0,241,0,0,0,0,0,0,0,230,2.6,1,1,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.1,-8.3,54,82800,0,0,260,0,0,0,0,0,0,0,230,3.6,8,8,16.0,3048,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-9.4,68,83000,0,0,234,0,0,0,0,0,0,0,140,1.5,4,4,16.0,77777,9,999999999,50,0.0490,0,88,0.200,0.0,6.0 +2002,11,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.3,-9.4,59,82800,0,0,238,0,0,0,0,0,0,0,160,3.1,3,3,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.2,-8.9,56,82900,23,614,243,0,0,0,0,0,0,0,190,2.1,3,3,16.0,77777,9,999999999,40,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-7.8,49,83200,225,1391,254,128,312,78,12800,20900,9400,1490,230,3.1,3,3,16.0,77777,9,999999999,40,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-7.2,46,83300,445,1391,261,186,101,153,20300,9400,17300,3880,240,3.1,3,3,16.0,77777,9,999999999,40,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-6.7,43,83400,618,1391,257,268,98,224,29300,9700,25000,6160,210,3.1,0,0,16.0,77777,9,999999999,40,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-7.8,33,83300,733,1391,275,387,242,259,41900,24900,28700,6590,270,3.6,3,3,16.0,77777,9,999999999,40,0.0490,0,88,0.200,0.0,6.0 +2002,11,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,-8.9,27,83500,782,1391,281,491,475,223,51200,48200,24000,5110,270,4.6,3,3,16.0,77777,9,999999999,40,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-8.3,28,83500,761,1391,283,547,783,118,57900,78300,14900,2660,290,3.6,3,3,16.0,77777,9,999999999,40,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,-8.3,26,83600,671,1391,281,495,865,75,52300,84800,11200,1660,290,3.1,1,1,16.0,77777,9,999999999,40,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-8.9,23,83700,520,1391,278,377,845,60,39600,79600,9700,1260,330,2.1,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,-9.4,23,83700,317,1391,275,199,723,34,21100,61000,7100,790,0,0.0,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.7,37,83400,84,1171,265,33,361,12,4200,22300,2500,320,100,2.6,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,0.0,6.0 +2002,11,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-4.4,52,83600,0,0,259,0,0,0,0,0,0,0,140,3.1,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-4.4,64,83500,0,0,248,0,0,0,0,0,0,0,170,4.6,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-5.0,56,83600,0,0,252,0,0,0,0,0,0,0,190,3.1,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,-6.7,46,83600,0,0,261,0,0,0,0,0,0,0,230,4.1,2,2,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-7.8,41,83600,0,0,271,0,0,0,0,0,0,0,220,5.7,7,6,16.0,77777,9,999999999,60,0.0490,0,88,0.200,999.0,99.0 +2002,11,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-7.2,44,83600,0,0,265,0,0,0,0,0,0,0,210,7.2,7,4,16.0,77777,9,999999999,60,0.0490,0,88,0.200,0.0,6.0 +2002,11,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-7.8,39,83500,0,0,269,0,0,0,0,0,0,0,210,7.2,8,4,16.0,77777,9,999999999,60,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-7.2,43,83600,0,0,267,0,0,0,0,0,0,0,220,6.2,8,4,16.0,6096,9,999999999,60,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,-6.7,46,83500,0,0,268,0,0,0,0,0,0,0,220,5.2,6,5,16.0,6096,9,999999999,60,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-7.2,43,83500,0,0,269,0,0,0,0,0,0,0,220,5.7,6,5,16.0,77777,9,999999999,60,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-7.2,43,83600,0,0,262,0,0,0,0,0,0,0,200,5.2,2,2,16.0,77777,9,999999999,60,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-7.8,38,83700,0,0,266,0,0,0,0,0,0,0,240,7.7,3,2,16.0,77777,9,999999999,69,0.0490,0,88,0.200,0.0,6.0 +2002,11,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-8.3,39,83700,0,0,253,0,0,0,0,0,0,0,240,5.2,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,-7.8,42,83800,21,592,251,0,0,0,0,0,0,0,230,5.7,0,0,16.0,77777,9,999999999,60,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-6.0,45,83900,220,1392,258,140,394,78,14000,26100,9800,1490,0,0.0,0,0,16.1,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-6.7,37,84000,439,1392,265,329,728,99,33500,64200,13100,1770,140,2.1,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-4.4,37,84100,612,1392,278,438,767,100,46000,74200,13200,2040,130,2.6,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-7.8,22,83900,727,1392,288,556,902,83,58800,89200,12000,1860,130,3.1,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,0.0,6.0 +2002,11,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,-8.3,19,84200,776,1392,294,594,944,65,62200,93000,10200,1630,120,4.1,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-6.1,21,84200,755,1392,301,582,956,62,61200,94000,10000,1560,110,5.2,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,-7.2,19,84200,666,1392,302,506,924,62,53100,89600,10000,1450,140,4.1,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,-7.2,19,84200,515,1392,302,371,839,59,38900,78900,9600,1240,120,6.2,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-3.9,29,84100,312,1392,296,203,738,37,21400,62000,7500,800,120,4.6,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.8,44,83800,81,1148,277,29,355,10,3900,21800,2300,290,130,2.6,1,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,0.0,6.0 +2002,11,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.8,55,83800,0,0,264,0,0,0,0,0,0,0,160,6.2,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-2.8,58,83800,0,0,262,0,0,0,0,0,0,0,150,5.7,0,0,16.0,77777,9,999999999,50,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-3.3,60,83800,0,0,258,0,0,0,0,0,0,0,170,5.2,0,0,16.0,77777,9,999999999,40,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-5.0,44,83800,0,0,265,0,0,0,0,0,0,0,240,7.2,0,0,16.0,77777,9,999999999,40,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-5.0,44,83800,0,0,265,0,0,0,0,0,0,0,220,7.7,0,0,16.0,77777,9,999999999,40,0.0490,0,88,0.200,999.0,99.0 +2002,11,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.6,46,83700,0,0,259,0,0,0,0,0,0,0,210,8.2,0,0,16.0,77777,9,999999999,30,0.0490,0,88,0.200,0.0,6.0 +2002,11,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-6.7,38,83500,0,0,263,0,0,0,0,0,0,0,210,8.8,0,0,16.0,77777,9,999999999,30,0.0490,0,88,0.200,999.0,99.0 +2002,11,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-7.2,38,83400,0,0,260,0,0,0,0,0,0,0,210,7.7,0,0,16.0,77777,9,999999999,30,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-7.8,36,83400,0,0,260,0,0,0,0,0,0,0,210,7.7,0,0,16.0,77777,9,999999999,30,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-8.9,31,83400,0,0,261,0,0,0,0,0,0,0,210,8.8,0,0,16.0,77777,9,999999999,30,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-9.4,31,83300,0,0,258,0,0,0,0,0,0,0,210,8.2,0,0,16.0,77777,9,999999999,20,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-10.0,29,83400,0,0,260,0,0,0,0,0,0,0,200,8.2,0,0,16.0,77777,9,999999999,20,0.0480,0,88,0.200,0.0,6.0 +2002,11,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-10.6,27,83400,0,0,259,0,0,0,0,0,0,0,210,8.8,0,0,16.0,77777,9,999999999,20,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,-11.1,24,83400,19,569,263,0,0,0,0,0,0,0,210,8.2,0,0,16.0,77777,9,999999999,20,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-10.0,24,83500,215,1393,284,112,265,71,11600,17100,8900,1410,210,7.7,5,4,16.0,77777,9,999999999,20,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-9.4,19,83600,434,1393,300,280,507,121,28800,45300,14600,2320,220,8.2,6,4,16.0,77777,9,999999999,20,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-8.3,18,83600,607,1393,316,340,350,187,36100,35300,20600,4090,220,5.7,10,5,16.0,6706,9,999999999,20,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-7.8,17,83100,722,1393,319,369,212,259,39900,21700,28600,6540,220,5.7,10,4,16.0,6706,9,999999999,20,0.0480,0,88,0.200,0.0,6.0 +2002,11,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,-11.7,11,83500,770,1393,322,279,42,255,30600,4200,28200,7830,250,5.7,10,4,16.0,6706,9,999999999,30,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,-8.3,16,83400,750,1393,321,176,6,173,20500,500,20200,7470,340,2.6,9,4,16.0,6706,9,999999999,30,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,-8.3,15,83300,661,1393,323,295,160,219,32000,16200,24300,5370,10,3.6,8,4,16.0,6706,9,999999999,40,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,-7.8,18,83200,510,1393,317,134,6,132,15200,400,15000,5010,10,2.6,6,4,16.0,6706,9,999999999,40,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-5.0,24,83100,308,1393,318,42,0,42,4900,0,4900,1680,140,2.6,6,4,16.0,6706,9,999999999,40,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-4.4,32,82700,77,1126,315,4,0,4,500,0,500,160,180,2.6,9,8,16.0,6096,9,999999999,50,0.0480,0,88,0.200,0.0,6.0 +2002,11,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,-6.1,28,82900,0,0,302,0,0,0,0,0,0,0,170,4.1,7,5,16.0,6096,9,999999999,50,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,-6.7,26,82900,0,0,304,0,0,0,0,0,0,0,210,3.1,9,6,16.0,6096,9,999999999,50,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,-6.7,27,82800,0,0,294,0,0,0,0,0,0,0,260,2.1,7,3,16.0,6096,9,999999999,50,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,-6.1,31,82700,0,0,290,0,0,0,0,0,0,0,310,2.6,4,3,16.0,6096,9,999999999,60,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,-8.3,20,82800,0,0,307,0,0,0,0,0,0,0,270,2.1,7,5,16.0,6096,9,999999999,60,0.0480,0,88,0.200,999.0,99.0 +2002,11,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-10.0,24,82600,0,0,286,0,0,0,0,0,0,0,210,5.2,8,5,16.0,6096,9,999999999,60,0.0480,0,88,0.200,0.0,6.0 +2002,11,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-10.6,24,82400,0,0,281,0,0,0,0,0,0,0,220,2.6,8,5,16.0,6096,9,999999999,69,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-9.4,27,82400,0,0,282,0,0,0,0,0,0,0,240,5.2,6,5,16.0,77777,9,999999999,69,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,-10.0,26,82300,0,0,275,0,0,0,0,0,0,0,210,5.7,4,3,16.0,77777,9,999999999,80,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-7.8,35,82200,0,0,270,0,0,0,0,0,0,0,220,3.6,3,2,16.0,77777,9,999999999,80,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-8.9,35,82100,0,0,268,0,0,0,0,0,0,0,230,3.6,5,4,16.0,77777,9,999999999,89,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-6.1,37,82300,0,0,281,0,0,0,0,0,0,0,270,5.2,4,4,16.0,77777,9,999999999,89,0.0480,0,88,0.200,0.0,6.0 +2002,11,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-5.0,46,82200,0,0,274,0,0,0,0,0,0,0,240,4.1,3,3,16.0,77777,9,999999999,89,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-6.1,51,82100,17,546,262,0,0,0,0,0,0,0,0,0.0,3,3,16.0,77777,9,999999999,80,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-3.9,36,82400,210,1393,300,134,237,98,13500,14900,11200,2150,220,5.2,7,5,16.0,6706,9,999999999,80,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-0.6,51,82300,428,1393,299,65,0,65,7600,0,7600,2700,140,2.6,8,5,16.0,6706,9,999999999,89,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-0.6,41,82300,601,1393,316,72,0,72,8700,0,8700,3310,160,4.1,7,6,16.0,6706,9,999999999,100,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-5.0,24,82100,716,1393,318,338,188,241,36700,19300,26700,6070,190,5.7,5,4,16.0,6706,9,999999999,110,0.0480,0,88,0.200,0.0,6.0 +2002,11,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,-5.0,23,82400,765,1393,320,466,397,248,49700,41700,26800,5970,240,2.6,7,4,16.0,4572,9,999999999,110,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,-4.4,21,82400,744,1393,331,141,0,141,16600,0,16600,6340,270,6.7,4,4,16.0,4572,9,999999999,110,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,-2.8,24,82500,655,1393,330,312,207,214,33800,21000,23900,5230,340,6.7,3,3,16.0,6706,9,999999999,110,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,-2.8,27,82400,505,1393,320,354,629,125,35800,57100,15000,2230,300,12.4,3,3,16.0,77777,9,999999999,100,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-2.8,30,82400,303,1393,320,197,620,62,20100,48600,9500,1100,310,10.3,6,5,16.0,77777,9,999999999,80,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-2.8,34,82000,74,1103,310,20,199,11,2600,11200,1800,250,330,6.7,9,5,16.0,77777,9,999999999,69,0.0480,0,88,0.200,0.0,6.0 +2002,11,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,-3.3,36,82300,0,0,306,0,0,0,0,0,0,0,310,3.1,8,6,16.0,6706,9,999999999,80,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,-3.3,34,82300,0,0,308,0,0,0,0,0,0,0,330,2.1,8,5,16.0,6706,9,999999999,89,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-2.8,48,81900,0,0,287,0,0,0,0,0,0,0,160,4.1,7,4,16.0,6096,9,999999999,89,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-1.1,59,81800,0,0,284,0,0,0,0,0,0,0,170,6.2,8,4,16.0,6096,9,999999999,100,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-2.8,44,81800,0,0,296,0,0,0,0,0,0,0,200,7.2,8,6,16.0,5486,9,999999999,100,0.0480,0,88,0.200,999.0,99.0 +2002,11,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-2.8,41,81800,0,0,298,0,0,0,0,0,0,0,230,4.1,6,5,16.0,77777,9,999999999,100,0.0480,0,88,0.200,0.0,6.0 +2002,11,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-1.7,52,81600,0,0,296,0,0,0,0,0,0,0,200,5.7,9,7,16.0,77777,9,999999999,100,0.0480,0,88,0.200,999.0,99.0 +2002,11,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-0.6,57,81600,0,0,297,0,0,0,0,0,0,0,200,6.2,9,7,16.0,5486,9,999999999,100,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-0.6,57,81600,0,0,297,0,0,0,0,0,0,0,200,2.6,9,7,16.0,5486,9,999999999,100,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-0.6,51,81700,0,0,291,0,0,0,0,0,0,0,250,5.7,2,2,16.0,77777,9,999999999,100,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-1.7,48,81700,0,0,287,0,0,0,0,0,0,0,220,7.2,2,2,16.0,77777,9,999999999,100,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-0.6,62,81700,0,0,271,0,0,0,0,0,0,0,210,6.2,0,0,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,6.0 +2002,11,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-0.6,64,81500,0,0,280,0,0,0,0,0,0,0,210,8.2,3,3,16.0,77777,9,999999999,100,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-1.1,59,81600,15,500,286,0,0,0,0,0,0,0,220,7.7,5,5,16.0,77777,9,999999999,100,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,0.0,54,81800,205,1394,299,116,283,74,11500,18000,8800,1420,270,7.7,5,5,16.0,77777,9,999999999,100,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,1.1,50,81900,423,1394,305,281,546,115,29000,48400,14300,2190,240,2.6,3,3,16.0,77777,9,999999999,100,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,-0.6,37,82000,596,1394,315,289,184,210,31100,18300,23300,5000,250,4.6,3,3,16.0,77777,9,999999999,100,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-3.3,28,81800,711,1394,331,344,145,270,37000,14800,29500,6780,280,4.6,8,8,16.0,77777,9,999999999,100,0.0470,0,88,0.200,0.0,6.0 +2002,11,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-2.8,34,82000,759,1394,329,370,144,291,39800,14800,31700,7510,300,7.7,9,9,16.0,2896,9,999999999,100,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,82000,739,1394,321,359,149,279,38600,15300,30500,7110,280,10.3,9,9,16.0,1829,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2002,11,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,1.7,63,81900,650,1394,309,306,142,240,33000,14300,26300,5850,70,3.1,8,8,16.0,4877,9,999999999,100,0.0470,0,88,0.200,0.0,1.0 +2002,11,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,1.1,54,81900,500,1394,323,230,145,178,24700,13800,19800,4090,40,2.6,9,9,16.0,2134,9,999999999,89,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,0.6,60,82000,298,1394,313,117,133,88,12600,10700,10300,1900,10,4.6,9,9,16.0,2896,9,999999999,80,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-2.2,52,82100,70,1080,313,12,27,11,1400,1000,1400,180,290,6.7,10,10,16.0,3048,9,999999999,80,0.0470,0,88,0.200,0.0,6.0 +2002,11,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-2.8,53,82100,0,0,299,0,0,0,0,0,0,0,290,5.2,9,9,16.0,3353,9,999999999,80,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-3.9,53,82100,0,0,279,0,0,0,0,0,0,0,270,4.1,7,6,16.0,3962,9,999999999,69,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-5.0,50,82000,0,0,284,0,0,0,0,0,0,0,230,7.2,8,8,16.0,1981,9,999999999,69,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-6.7,45,82100,0,0,265,0,0,0,0,0,0,0,270,4.1,3,3,16.0,77777,9,999999999,69,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-6.7,45,82000,0,0,265,0,0,0,0,0,0,0,270,7.7,3,3,16.0,77777,9,999999999,60,0.0470,0,88,0.200,999.0,99.0 +2002,11,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-8.3,37,82200,0,0,255,0,0,0,0,0,0,0,270,7.2,0,0,16.0,77777,9,999999999,60,0.0470,0,88,0.200,0.0,6.0 +2002,11,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-8.3,39,82100,0,0,258,0,0,0,0,0,0,0,280,6.2,1,1,16.0,77777,9,999999999,50,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.7,-8.3,44,82000,0,0,247,0,0,0,0,0,0,0,300,2.6,0,0,16.0,77777,9,999999999,50,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.1,-7.8,57,82000,0,0,242,0,0,0,0,0,0,0,220,3.6,1,1,16.0,77777,9,999999999,50,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,-6.7,46,82200,0,0,252,0,0,0,0,0,0,0,270,6.2,0,0,16.0,77777,9,999999999,40,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-7.8,48,82200,0,0,245,0,0,0,0,0,0,0,290,4.1,0,0,16.0,77777,9,999999999,40,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.8,49,82400,0,0,244,0,0,0,0,0,0,0,250,4.1,0,0,16.0,77777,9,999999999,40,0.0470,0,88,0.200,0.0,6.0 +2002,11,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-9.4,43,82300,0,0,253,0,0,0,0,0,0,0,250,5.2,3,3,16.0,77777,9,999999999,40,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-9.4,43,82300,14,477,255,0,0,0,0,0,0,0,270,3.1,4,4,16.0,77777,9,999999999,40,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,-8.9,38,82500,200,1395,263,96,90,83,10100,5900,9300,1760,230,3.6,4,4,16.0,77777,9,999999999,40,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-10.0,28,82700,418,1395,277,188,146,144,20200,13200,16200,3220,270,6.7,6,5,16.0,77777,9,999999999,40,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,-11.1,24,82700,590,1395,281,289,154,224,31000,15200,24600,5320,280,5.2,10,6,16.0,3658,9,999999999,40,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-11.1,23,82600,705,1395,283,344,151,267,37000,15400,29200,6690,290,4.1,8,6,16.0,3962,9,999999999,50,0.0470,0,88,0.200,0.0,6.0 +2002,11,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-11.7,22,82700,754,1395,282,370,150,288,39800,15400,31400,7400,0,0.0,6,6,16.0,6706,9,999999999,50,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-12.2,19,82700,734,1395,279,353,143,277,38000,14700,30200,7040,330,1.5,3,3,16.0,3962,9,999999999,50,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-11.7,20,82800,645,1395,289,306,148,238,33000,14900,26100,5790,290,2.1,6,6,16.0,6096,9,999999999,60,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-11.7,20,82700,495,1395,289,225,134,177,24100,12700,19600,4060,260,3.6,6,6,16.0,3962,9,999999999,50,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-10.0,24,82700,294,1395,288,116,116,92,12600,9200,10600,1990,310,4.6,8,6,16.0,3962,9,999999999,50,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-9.4,29,82600,67,1058,283,11,30,10,1400,1100,1300,160,290,5.7,7,7,16.0,3962,9,999999999,50,0.0470,0,88,0.200,0.0,6.0 +2002,11,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-9.4,31,82700,0,0,276,0,0,0,0,0,0,0,300,4.6,7,6,16.0,3962,9,999999999,50,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-8.9,35,82800,0,0,270,0,0,0,0,0,0,0,330,1.5,7,5,16.0,3962,9,999999999,50,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-9.4,35,82700,0,0,265,0,0,0,0,0,0,0,0,0.0,4,4,16.0,6096,9,999999999,50,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.7,-8.3,44,82700,0,0,262,0,0,0,0,0,0,0,150,2.6,5,5,16.0,77777,9,999999999,50,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-6.7,48,82700,0,0,265,0,0,0,0,0,0,0,190,4.1,5,5,16.0,6096,9,999999999,50,0.0470,0,88,0.200,999.0,99.0 +2002,11,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-8.3,49,82900,0,0,258,0,0,0,0,0,0,0,170,3.6,6,6,16.0,6096,9,999999999,60,0.0470,0,88,0.200,0.0,6.0 +2002,11,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-8.9,47,82600,0,0,257,0,0,0,0,0,0,0,180,3.6,6,6,16.0,6096,9,999999999,60,0.0470,0,88,0.200,999.0,99.0 +2002,11,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-8.9,45,82700,0,0,259,0,0,0,0,0,0,0,250,3.6,7,6,16.0,77777,9,999999999,60,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-8.9,47,82700,0,0,260,0,0,0,0,0,0,0,220,5.2,8,7,16.0,77777,9,999999999,60,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-8.9,49,82700,0,0,258,0,0,0,0,0,0,0,260,4.6,8,7,16.0,6096,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-10.0,49,82700,0,0,247,0,0,0,0,0,0,0,250,3.6,5,5,16.0,77777,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-9.4,54,83100,0,0,240,0,0,0,0,0,0,0,0,0.0,2,2,16.0,6096,9,999999999,40,0.0460,0,88,0.200,0.0,6.0 +2002,11,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-10.0,45,82900,0,0,248,0,0,0,0,0,0,0,280,3.1,3,3,16.0,6096,9,999999999,40,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.1,-10.0,47,82900,12,454,252,0,0,0,0,0,0,0,280,3.1,6,6,16.0,6706,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,-8.3,40,83200,195,1395,266,98,159,76,10000,9600,8700,1570,290,2.1,5,5,16.0,6706,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-7.8,39,83400,412,1395,281,232,433,104,24200,38100,12900,1960,360,2.1,8,8,16.0,6706,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-8.9,34,83500,585,1395,288,361,534,136,38100,51800,16300,2690,40,5.7,9,9,16.0,3353,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-6.1,45,83500,700,1395,289,501,782,107,52900,77500,13900,2310,50,6.7,9,9,16.0,2286,9,999999999,50,0.0460,0,88,0.200,0.0,6.0 +2002,11,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-4.4,46,83600,749,1395,287,509,704,130,53400,69900,15700,2850,40,7.2,7,7,16.0,6096,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-5.0,48,83600,728,1395,292,447,454,209,46500,45600,22500,4590,30,6.2,9,9,16.0,3353,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-5.0,46,83700,640,1395,278,312,207,216,33700,20900,24100,5240,30,5.2,6,5,16.0,3962,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-3.9,53,83700,490,1395,277,219,163,162,23700,15500,18200,3710,20,6.2,5,5,16.0,6096,9,999999999,60,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-4.4,52,83800,289,1395,280,74,11,72,8300,400,8200,2490,30,5.2,7,7,16.0,6096,9,999999999,60,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-2.2,77,83800,64,1035,275,12,93,9,1600,4500,1300,180,50,4.6,8,8,16.0,2438,9,999999999,69,0.0460,0,88,0.200,0.0,6.0 +2002,11,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-2.8,73,83900,0,0,275,0,0,0,0,0,0,0,0,0.0,8,8,16.0,1676,9,999999999,60,0.0460,0,88,0.200,0.0,1.0 +2002,11,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-3.9,72,83900,0,0,256,0,0,0,0,0,0,0,230,4.1,3,3,16.0,77777,9,999999999,60,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-3.3,80,83800,0,0,243,0,0,0,0,0,0,0,230,4.1,0,0,16.0,77777,9,999999999,60,0.0460,0,88,0.200,0.0,3.0 +2002,11,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-3.9,83,83800,0,0,239,0,0,0,0,0,0,0,210,6.2,0,0,16.0,77777,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.1,-4.4,76,83900,0,0,241,0,0,0,0,0,0,0,210,6.7,0,0,16.0,77777,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-4.4,80,84100,0,0,238,0,0,0,0,0,0,0,200,5.7,0,0,16.0,77777,9,999999999,50,0.0460,0,88,0.200,0.0,6.0 +2002,11,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.4,-6.7,82,83800,0,0,227,0,0,0,0,0,0,0,200,5.2,0,0,16.0,77777,9,999999999,40,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-7.8,65,83900,0,0,232,0,0,0,0,0,0,0,210,5.7,0,0,16.0,77777,9,999999999,40,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-8.9,59,83800,0,0,231,0,0,0,0,0,0,0,210,5.7,0,0,16.0,77777,9,999999999,40,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.3,-10.0,56,83900,0,0,228,0,0,0,0,0,0,0,210,6.7,0,0,16.0,77777,9,999999999,30,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-11.1,53,83800,0,0,225,0,0,0,0,0,0,0,210,6.2,0,0,16.0,77777,9,999999999,30,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-11.7,51,84200,0,0,225,0,0,0,0,0,0,0,200,6.7,0,0,16.0,77777,9,999999999,30,0.0460,0,88,0.200,0.0,6.0 +2002,11,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-11.1,59,83800,0,0,221,0,0,0,0,0,0,0,200,5.2,0,0,16.0,77777,9,999999999,30,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-12.8,46,84000,11,430,224,0,0,0,0,0,0,0,210,6.2,0,0,16.0,77777,9,999999999,30,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.1,-11.7,40,84100,190,1396,234,111,275,74,11400,16300,9200,1530,210,7.2,0,0,16.0,77777,9,999999999,30,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-11.1,33,84300,407,1396,246,291,612,112,30000,53500,14300,2130,210,5.7,0,0,16.0,77777,9,999999999,40,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-12.8,22,84400,580,1396,257,375,565,139,39400,54700,16600,2750,220,5.2,0,0,16.0,77777,9,999999999,40,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-14.4,17,84200,695,1396,261,470,733,104,49700,72600,13400,2240,210,3.6,0,0,16.0,77777,9,999999999,40,0.0460,0,88,0.200,0.0,6.0 +2002,11,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-15.6,14,84400,744,1396,266,527,806,96,55000,79400,12500,2070,250,3.1,0,0,16.0,77777,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,-16.1,13,84300,723,1396,273,523,848,82,55300,83800,11800,1840,280,3.1,1,1,16.0,77777,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,-16.1,11,84300,635,1396,279,459,876,59,48300,84500,9600,1380,270,4.6,1,1,16.0,77777,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,-16.1,12,84200,486,1396,272,337,814,52,35400,75300,9000,1130,200,1.5,0,0,16.0,77777,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,-15.6,12,84200,285,1396,278,166,670,29,17600,55000,6400,710,0,0.0,1,1,16.0,77777,9,999999999,50,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-15.6,14,83800,62,1012,280,13,196,6,2000,11700,1300,200,170,2.1,6,5,16.0,77777,9,999999999,50,0.0460,0,88,0.200,0.0,6.0 +2002,11,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-15.6,19,84000,0,0,265,0,0,0,0,0,0,0,200,4.6,6,5,16.0,77777,9,999999999,60,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-14.4,21,83900,0,0,259,0,0,0,0,0,0,0,230,4.6,2,2,16.0,77777,9,999999999,69,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-13.9,19,83900,0,0,258,0,0,0,0,0,0,0,260,5.2,0,0,16.0,77777,9,999999999,80,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-13.9,26,83700,0,0,252,0,0,0,0,0,0,0,180,3.6,2,2,16.0,77777,9,999999999,80,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-13.3,25,83700,0,0,263,0,0,0,0,0,0,0,210,6.2,6,5,16.0,77777,9,999999999,89,0.0460,0,88,0.200,999.0,99.0 +2002,11,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-15.0,20,83700,0,0,265,0,0,0,0,0,0,0,210,6.2,6,5,16.0,77777,9,999999999,100,0.0460,0,88,0.200,0.0,6.0 +2002,11,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-13.9,20,83600,0,0,287,0,0,0,0,0,0,0,210,7.7,9,9,16.0,5486,9,999999999,100,0.0460,0,88,0.200,999.0,99.0 +2002,11,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-12.2,23,83600,0,0,291,0,0,0,0,0,0,0,200,4.6,9,9,16.0,5486,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +2002,11,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-9.4,27,83500,0,0,299,0,0,0,0,0,0,0,210,6.7,9,9,16.0,5486,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +2002,11,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,-8.3,31,83400,0,0,298,0,0,0,0,0,0,0,180,5.2,9,9,16.0,5486,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +2002,11,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,-7.8,30,83400,0,0,303,0,0,0,0,0,0,0,200,7.7,9,9,16.0,5486,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +2002,11,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-7.2,30,83300,0,0,300,0,0,0,0,0,0,0,210,7.7,8,8,16.0,5486,9,999999999,100,0.0450,0,88,0.200,0.0,6.0 +2002,11,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-6.7,32,83400,0,0,289,0,0,0,0,0,0,0,260,4.1,5,5,16.0,77777,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +2002,11,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-7.8,33,83300,9,407,296,0,0,0,0,0,0,0,320,2.6,9,9,16.0,6706,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +2002,11,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-6.7,45,83200,185,1397,285,34,0,34,3900,0,3900,1220,140,1.5,9,9,16.0,6096,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +2002,11,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-6.1,44,83400,402,1397,291,58,0,58,6800,0,6800,2400,310,3.6,9,9,16.0,6706,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +2002,11,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,-6.1,35,83500,574,1397,305,263,166,195,28500,16400,21700,4600,0,0.0,9,9,16.0,6096,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +2002,11,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-5.6,29,83300,689,1397,314,213,18,204,24100,1500,23400,7980,20,7.2,8,8,16.0,6706,9,999999999,100,0.0450,0,88,0.200,0.0,6.0 +2002,11,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,-5.6,28,83500,738,1397,323,230,12,224,26200,1000,25600,8860,50,6.2,9,9,16.0,3962,9,999999999,110,0.0450,0,88,0.200,999.0,99.0 +2002,11,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,-4.4,31,83400,718,1397,313,147,0,147,17200,0,17200,6440,70,5.2,10,7,16.0,3962,9,999999999,110,0.0450,0,88,0.200,999.0,99.0 +2002,11,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-3.9,29,83400,631,1397,314,289,195,200,31300,19600,22400,4830,80,6.2,8,5,16.0,3962,9,999999999,110,0.0450,0,88,0.200,999.0,99.0 +2002,11,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,-4.4,31,83300,481,1397,306,53,0,53,6400,0,6400,2350,90,4.6,7,5,16.0,3962,9,999999999,110,0.0450,0,88,0.200,999.0,99.0 +2002,11,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-4.4,34,83200,281,1397,299,28,0,28,3400,0,3400,1160,110,3.6,7,5,16.0,3962,9,999999999,110,0.0450,0,88,0.200,999.0,99.0 +2002,11,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-4.4,36,83100,59,989,323,6,0,6,700,0,700,240,290,1.5,10,10,16.0,3353,9,999999999,120,0.0450,0,88,0.200,0.0,6.0 +2002,11,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-4.4,34,83200,0,0,317,0,0,0,0,0,0,0,0,0.0,10,9,16.0,2743,9,999999999,120,0.0450,0,88,0.200,999.0,99.0 +2002,11,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-3.3,44,83300,0,0,317,0,0,0,0,0,0,0,140,2.6,10,10,16.0,1463,9,999999999,120,0.0450,0,88,0.200,0.0,1.0 +2002,11,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.0,60,83300,0,0,318,0,0,0,0,0,0,0,120,4.6,10,10,16.0,1676,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,11,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,0.0,62,83400,0,0,316,0,0,0,0,0,0,0,100,3.1,10,10,16.0,1128,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,11,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.0,-1.0,69,83200,0,0,303,0,0,0,0,0,0,0,80,1.5,10,10,16.1,1800,9,999999999,110,0.0450,0,88,0.200,0.0,1.0 +2002,11,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,2.2,92,83300,0,0,303,0,0,0,0,0,0,0,130,3.6,10,10,16.0,1524,9,999999999,110,0.0450,0,88,0.200,0.0,6.0 +2002,11,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,1.7,92,83100,0,0,286,0,0,0,0,0,0,0,180,3.1,8,8,16.0,2591,9,999999999,110,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,1.7,92,83200,0,0,286,0,0,0,0,0,0,0,220,3.1,8,8,16.0,2591,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,1.7,92,83100,0,0,300,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2438,9,999999999,89,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,1.7,92,83200,0,0,300,0,0,0,0,0,0,0,240,3.1,10,10,16.0,2743,9,999999999,89,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,0.6,100,83100,0,0,276,0,0,0,0,0,0,0,60,4.1,8,8,12.8,3048,9,999999999,89,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-0.6,88,83400,0,0,277,0,0,0,0,0,0,0,10,2.1,8,8,16.0,2896,9,999999999,80,0.0450,0,88,0.200,0.0,6.0 +2002,11,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-0.6,88,83200,0,0,291,0,0,0,0,0,0,0,330,3.1,10,10,16.0,1829,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.7,-1.1,81,83300,8,384,279,0,0,0,0,0,0,0,290,2.1,8,8,16.0,2896,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,0.0,92,83400,180,1397,277,58,0,58,6300,0,6300,1720,240,3.6,8,8,16.0,2743,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,0.0,79,83500,397,1397,286,286,696,87,29000,59600,12000,1540,320,2.6,8,8,16.0,2591,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-0.6,70,83600,569,1397,290,402,603,156,41700,58000,18000,3120,40,2.6,8,8,16.0,2591,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-0.6,70,83600,684,1397,290,169,12,163,19500,900,19000,6800,60,3.1,8,8,16.0,2438,9,999999999,69,0.0450,0,88,0.200,0.0,6.0 +2002,11,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,0.0,62,83600,733,1397,307,546,716,169,56000,69800,19300,3480,90,3.1,9,9,16.0,2591,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-1.7,56,83500,713,1397,296,482,627,161,49500,61000,18300,3280,0,0.0,8,8,16.0,2286,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-3.9,43,83500,626,1397,294,346,314,204,36500,31800,22200,4550,70,3.1,7,7,16.0,6096,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,-3.9,45,83400,477,1397,288,336,627,121,35000,57700,15200,2320,50,2.1,6,6,16.0,6096,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-3.9,49,83400,277,1397,284,138,411,56,14000,31100,7800,990,80,4.1,6,6,16.0,6096,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.8,65,83300,56,967,277,11,161,5,1600,9500,1000,180,70,4.1,7,7,16.0,6096,9,999999999,69,0.0450,0,88,0.200,0.0,6.0 +2002,11,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.7,-1.1,81,83300,0,0,285,0,0,0,0,0,0,0,100,3.6,9,9,16.0,2743,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-1.7,83,83300,0,0,269,0,0,0,0,0,0,0,130,3.1,9,7,16.0,3962,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-1.7,87,83300,0,0,264,0,0,0,0,0,0,0,160,3.6,8,6,16.0,3962,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-2.2,80,83200,0,0,266,0,0,0,0,0,0,0,170,4.6,8,6,16.0,3962,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.2,83,83200,0,0,277,0,0,0,0,0,0,0,160,3.6,10,9,16.0,2743,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.2,83,83400,0,0,277,0,0,0,0,0,0,0,170,3.1,10,9,16.0,2743,9,999999999,69,0.0450,0,88,0.200,0.0,6.0 +2002,11,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.8,79,83100,0,0,276,0,0,0,0,0,0,0,170,4.1,9,9,16.0,2896,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.8,79,83100,0,0,276,0,0,0,0,0,0,0,200,4.6,10,9,16.0,3048,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-3.3,80,83100,0,0,273,0,0,0,0,0,0,0,0,0.0,10,9,16.0,2743,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.8,79,83200,0,0,276,0,0,0,0,0,0,0,0,0.0,10,9,16.0,2134,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.2,83,83200,0,0,277,0,0,0,0,0,0,0,30,2.6,10,9,16.0,2134,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.7,87,83500,0,0,285,0,0,0,0,0,0,0,320,2.1,10,10,16.0,1341,9,999999999,80,0.0450,0,88,0.200,0.0,6.0 +2002,11,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-4.4,61,83500,0,0,289,0,0,0,0,0,0,0,350,6.2,10,10,16.0,1829,9,999999999,80,0.0450,0,88,0.200,0.0,1.0 +2002,11,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-3.9,64,83600,7,361,282,0,0,0,0,0,0,0,350,5.7,10,9,16.0,1219,9,999999999,69,0.0450,0,88,0.200,0.0,1.0 +2002,11,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.8,70,83700,175,1398,283,24,0,24,2800,0,2800,910,350,5.2,9,9,16.0,1372,9,999999999,69,0.0450,0,88,0.200,0.0,1.0 +2002,11,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.2,74,83800,392,1398,278,228,339,132,23700,29700,15300,2740,350,7.2,8,8,16.0,1311,9,999999999,69,0.0450,0,88,0.200,0.0,1.0 +2002,11,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.1,75,83900,564,1398,283,119,0,119,13700,0,13700,4880,360,6.7,8,8,16.0,1067,9,999999999,69,0.0450,0,88,0.200,0.0,1.0 +2002,11,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-2.2,66,84000,679,1398,284,301,152,227,32600,15500,25100,5600,10,7.2,8,8,16.0,579,9,999999999,69,0.0450,0,88,0.200,0.0,6.0 +2002,11,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.7,61,84000,728,1398,292,158,0,158,18400,0,18400,6860,360,7.2,8,8,16.0,1219,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-2.8,58,84000,709,1398,294,176,6,173,20300,500,20100,7240,10,6.7,9,9,16.0,1189,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-3.3,51,84100,622,1398,285,402,556,154,42200,54500,17900,3120,10,4.6,6,6,16.0,6096,9,999999999,60,0.0450,0,88,0.200,999.0,99.0 +2002,11,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,-1.1,75,84000,473,1398,273,293,644,74,30600,59000,10500,1430,70,4.1,5,5,16.0,77777,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,-1.7,71,84000,273,1398,272,151,585,36,15500,46300,6400,720,110,1.5,5,5,16.0,77777,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.2,74,84100,54,967,268,7,41,6,1000,1600,900,100,210,3.1,5,5,16.0,77777,9,999999999,69,0.0450,0,88,0.200,0.0,6.0 +2002,11,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-2.8,68,84100,0,0,267,0,0,0,0,0,0,0,220,2.6,4,4,16.0,1829,9,999999999,60,0.0450,0,88,0.200,999.0,99.0 +2002,11,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.8,79,84000,0,0,257,0,0,0,0,0,0,0,210,4.6,3,3,16.0,77777,9,999999999,60,0.0450,0,88,0.200,999.0,99.0 +2002,11,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-2.8,83,84000,0,0,256,0,0,0,0,0,0,0,200,5.2,4,4,16.0,77777,9,999999999,60,0.0450,0,88,0.200,999.0,99.0 +2002,11,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-3.3,80,83900,0,0,248,0,0,0,0,0,0,0,200,6.2,1,1,16.0,77777,9,999999999,60,0.0450,0,88,0.200,999.0,99.0 +2002,11,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.1,-3.9,79,83900,0,0,246,0,0,0,0,0,0,0,200,5.2,1,1,16.0,77777,9,999999999,50,0.0450,0,88,0.200,999.0,99.0 +2002,11,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-7.2,79,84100,0,0,227,0,0,0,0,0,0,0,170,4.1,0,0,16.0,77777,9,999999999,40,0.0450,0,88,0.200,0.0,6.0 +2002,11,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.6,-7.2,87,83600,0,0,223,0,0,0,0,0,0,0,170,4.1,1,0,16.0,77777,9,999999999,40,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-7.2,69,83700,0,0,232,0,0,0,0,0,0,0,210,6.2,0,0,16.0,77777,9,999999999,40,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-7.8,65,83700,0,0,236,0,0,0,0,0,0,0,210,6.2,1,1,16.0,77777,9,999999999,40,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-9.4,57,83700,0,0,230,0,0,0,0,0,0,0,220,6.7,0,0,16.0,77777,9,999999999,40,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.2,-10.0,51,83700,0,0,232,0,0,0,0,0,0,0,220,6.2,0,0,16.0,77777,9,999999999,40,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-11.1,44,83900,0,0,233,0,0,0,0,0,0,0,200,7.2,0,0,16.0,77777,9,999999999,40,0.0450,0,88,0.200,0.0,6.0 +2002,11,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.2,-11.1,46,83600,0,0,231,0,0,0,0,0,0,0,210,6.7,0,0,16.0,77777,9,999999999,40,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.2,-11.7,44,83700,6,315,240,0,0,0,0,0,0,0,210,6.2,3,3,16.0,77777,9,999999999,50,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-11.1,37,83800,170,1399,251,61,0,61,6600,0,6600,1710,220,5.7,3,3,16.0,77777,9,999999999,50,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-8.9,34,83900,386,1399,267,273,673,86,27700,57100,11800,1520,230,3.6,3,3,16.0,77777,9,999999999,50,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-11.1,21,84100,559,1399,283,357,603,115,36700,56600,13900,2180,270,6.2,3,3,16.0,77777,9,999999999,50,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-11.7,17,83800,674,1399,289,446,661,126,46300,64500,15100,2590,270,4.1,3,3,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,6.0 +2002,11,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-11.7,16,84200,723,1399,298,540,842,103,55700,82300,13000,2100,280,4.6,4,4,16.0,7620,9,999999999,60,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,-11.7,14,84100,704,1399,303,500,818,86,52400,80300,11800,1860,280,6.2,3,3,16.0,7620,9,999999999,60,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,-12.2,13,84000,617,1399,307,408,704,96,42900,68300,12600,1970,300,7.7,5,5,16.0,7620,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-13.3,13,84000,469,1399,306,298,667,73,31100,61000,10500,1410,280,6.7,7,6,16.0,7620,9,999999999,60,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,-15.0,13,83900,270,1399,300,159,551,52,16200,41400,8200,930,280,6.2,9,8,16.0,6706,9,999999999,60,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-15.6,13,83500,52,944,290,9,186,4,1600,10800,1000,150,270,4.6,7,7,16.0,7620,9,999999999,60,0.0450,0,88,0.200,0.0,6.0 +2002,11,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-14.4,19,83600,0,0,273,0,0,0,0,0,0,0,230,4.6,8,6,16.0,7620,9,999999999,60,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-13.9,23,83500,0,0,267,0,0,0,0,0,0,0,210,4.6,9,6,16.0,7620,9,999999999,60,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-13.9,22,83400,0,0,260,0,0,0,0,0,0,0,220,5.7,2,2,16.0,77777,9,999999999,60,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-13.3,24,83300,0,0,255,0,0,0,0,0,0,0,200,6.2,2,1,16.0,6706,9,999999999,60,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-11.1,27,83200,0,0,265,0,0,0,0,0,0,0,210,6.7,3,2,16.0,6706,9,999999999,50,0.0450,0,88,0.200,999.0,99.0 +2002,11,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-11.7,26,83200,0,0,264,0,0,0,0,0,0,0,210,7.2,3,2,16.0,77777,9,999999999,50,0.0450,0,88,0.200,0.0,6.0 +2002,11,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-13.3,22,83000,0,0,267,0,0,0,0,0,0,0,220,7.2,6,4,16.0,6706,9,999999999,50,0.0450,0,88,0.200,999.0,99.0 +2002,11,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-11.7,26,83000,0,0,267,0,0,0,0,0,0,0,210,6.2,6,3,16.0,6706,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-9.4,27,83100,0,0,280,0,0,0,0,0,0,0,210,6.7,8,4,16.0,6706,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-8.9,31,83000,0,0,276,0,0,0,0,0,0,0,230,5.2,10,5,16.0,6706,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-8.9,30,83000,0,0,276,0,0,0,0,0,0,0,200,2.6,10,4,16.0,6706,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-8.9,29,83000,0,0,281,0,0,0,0,0,0,0,210,4.6,10,5,16.0,6706,9,999999999,69,0.0440,0,88,0.200,0.0,6.0 +2002,11,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-9.4,24,83200,0,0,287,0,0,0,0,0,0,0,230,1.5,10,4,16.0,6096,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-9.4,34,83000,5,292,267,0,0,0,0,0,0,0,180,4.1,8,4,16.0,6096,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,-8.3,40,83000,165,1399,266,37,0,37,4100,0,4100,1250,160,5.2,6,5,16.0,6096,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-6.7,43,83000,381,1399,274,192,334,101,19900,28500,12000,1900,170,3.1,7,6,16.0,6096,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,-6.1,31,83200,554,1399,292,317,443,141,33100,42400,16300,2780,80,5.2,5,4,16.0,6096,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-10.6,17,83000,669,1399,301,383,370,206,40800,38000,22600,4630,70,6.2,5,5,16.0,7620,9,999999999,69,0.0440,0,88,0.200,0.0,6.0 +2002,11,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-11.1,14,83300,719,1399,308,522,752,134,54300,74000,16200,2840,90,7.2,4,4,16.0,7620,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-12.8,12,83200,699,1399,303,505,806,101,52000,78400,12700,2020,90,7.7,3,3,16.0,7620,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-15.0,10,83200,613,1399,303,390,621,117,40400,59600,14200,2310,90,5.7,6,3,16.0,7620,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-13.9,11,83100,465,1399,313,298,592,100,30300,53100,12600,1820,120,5.2,9,7,16.0,7620,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-13.3,13,83100,266,1399,306,113,218,72,12000,15900,8900,1380,40,2.6,10,6,16.0,7315,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-12.8,16,82800,50,921,300,1,0,1,100,0,100,40,90,3.1,8,8,16.0,7315,9,999999999,69,0.0440,0,88,0.200,0.0,6.0 +2002,11,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-10.6,23,82900,0,0,283,0,0,0,0,0,0,0,90,3.1,9,4,16.0,4267,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-8.3,28,83100,0,0,298,0,0,0,0,0,0,0,80,4.1,10,8,16.0,3048,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-8.9,30,83000,0,0,295,0,0,0,0,0,0,0,150,3.1,10,9,16.0,4267,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-7.2,37,83100,0,0,303,0,0,0,0,0,0,0,60,4.6,10,10,16.0,3048,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,-6.1,35,83100,0,0,314,0,0,0,0,0,0,0,340,8.2,10,10,16.0,1981,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-6.1,37,83200,0,0,300,0,0,0,0,0,0,0,360,3.1,9,9,16.0,2134,9,999999999,60,0.0440,0,88,0.200,0.0,6.0 +2002,11,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-7.2,33,83100,0,0,301,0,0,0,0,0,0,0,250,5.2,10,9,16.0,3048,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-6.7,38,83200,0,0,295,0,0,0,0,0,0,0,350,4.1,9,9,16.0,2743,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-6.7,40,83200,0,0,293,0,0,0,0,0,0,0,360,2.6,9,9,16.0,3048,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-6.7,48,83200,0,0,275,0,0,0,0,0,0,0,70,3.1,8,8,16.0,2134,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-6.7,54,83200,0,0,257,0,0,0,0,0,0,0,60,3.6,4,4,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-8.3,59,83600,0,0,243,0,0,0,0,0,0,0,150,3.1,3,3,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,6.0 +2002,11,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.2,-7.2,65,83300,0,0,244,0,0,0,0,0,0,0,150,3.1,3,3,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.2,-6.1,72,83400,4,268,245,0,0,0,0,0,0,0,170,3.1,3,3,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-5.6,60,83600,160,1400,256,64,0,64,6800,0,6800,1670,170,3.1,3,3,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-6.1,47,83800,376,1400,266,245,726,49,25300,63100,8200,970,130,3.6,3,3,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-7.2,37,83900,549,1400,276,364,708,85,38100,67200,11700,1690,130,3.6,4,4,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-7.8,32,83900,664,1400,282,471,710,133,48700,68800,15900,2680,140,4.1,10,5,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,6.0 +2002,11,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,-8.3,29,83800,714,1400,284,370,271,232,39400,28100,25000,5410,170,2.1,4,4,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-9.4,22,83900,695,1400,291,505,758,127,52600,74300,15500,2660,200,3.1,5,4,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,-11.1,18,83900,609,1400,292,447,822,88,45900,78500,11600,1700,250,1.5,4,4,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,-11.1,18,84000,461,1400,299,298,696,67,30300,63100,9500,1260,250,1.5,7,6,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-11.1,19,84000,263,1400,298,154,637,34,15900,49800,6500,680,250,2.6,9,7,16.0,7315,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-11.7,21,83800,48,898,288,5,7,5,600,300,600,100,260,4.1,10,7,16.0,7315,9,999999999,40,0.0440,0,88,0.200,0.0,6.0 +2002,11,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-12.2,23,84000,0,0,289,0,0,0,0,0,0,0,270,2.6,10,9,16.0,7315,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,-11.1,24,84100,0,0,295,0,0,0,0,0,0,0,270,4.1,10,9,16.0,6706,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-11.7,24,84000,0,0,292,0,0,0,0,0,0,0,260,3.1,10,9,16.0,6096,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-11.7,25,83900,0,0,283,0,0,0,0,0,0,0,210,3.6,10,8,16.0,6096,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-13.3,21,83800,0,0,282,0,0,0,0,0,0,0,240,3.6,10,8,16.0,6096,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-12.2,26,83700,0,0,274,0,0,0,0,0,0,0,210,6.2,10,7,16.0,6096,9,999999999,50,0.0440,0,88,0.200,0.0,6.0 +2002,11,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-14.4,20,83700,0,0,284,0,0,0,0,0,0,0,230,6.7,10,9,16.0,6096,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-12.8,22,83700,0,0,288,0,0,0,0,0,0,0,250,5.7,10,9,16.0,6096,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,-11.7,23,83700,0,0,294,0,0,0,0,0,0,0,270,6.2,10,9,16.0,6096,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,-11.1,24,83700,0,0,295,0,0,0,0,0,0,0,290,5.7,10,9,16.0,6096,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-11.1,29,83600,0,0,267,0,0,0,0,0,0,0,290,5.2,7,5,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-11.7,25,83700,0,0,273,0,0,0,0,0,0,0,280,6.2,8,5,16.0,77777,9,999999999,60,0.0440,0,88,0.200,0.0,6.0 +2002,11,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-13.9,21,83800,0,0,269,0,0,0,0,0,0,0,250,6.7,7,5,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-12.2,26,83800,3,245,262,0,0,0,0,0,0,0,260,6.2,3,3,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-11.1,27,83900,155,1400,272,40,0,40,4400,0,4400,1290,10,2.1,7,5,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,-10.0,26,84100,371,1400,279,253,624,87,25600,52000,11700,1510,60,4.1,8,5,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,-10.0,25,84100,544,1400,282,345,592,114,35300,55200,13800,2140,100,1.5,6,4,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-10.0,22,84000,659,1400,288,440,686,116,45900,66900,14300,2390,140,2.1,4,4,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,6.0 +2002,11,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,-10.0,20,84100,709,1400,293,516,860,78,54600,84900,11500,1750,180,3.1,4,4,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,-11.1,17,84100,691,1400,296,500,872,68,52300,84800,10300,1520,220,1.5,4,4,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,-11.1,16,84100,605,1400,306,424,828,65,44900,80100,10200,1420,290,3.6,6,6,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-10.6,16,84100,457,1400,306,324,829,52,34000,75800,9200,1080,320,5.2,5,5,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-11.1,17,84100,259,1400,296,158,690,29,16700,55100,6400,670,280,5.2,3,3,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-10.6,22,83800,46,899,288,8,224,3,1700,12900,1000,110,290,3.6,8,5,16.0,77777,9,999999999,69,0.0440,0,88,0.200,0.0,6.0 +2002,11,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,-9.4,26,84000,0,0,285,0,0,0,0,0,0,0,260,4.1,6,5,16.0,77777,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-8.3,32,84000,0,0,277,0,0,0,0,0,0,0,250,3.6,5,4,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-7.8,38,83900,0,0,271,0,0,0,0,0,0,0,250,3.1,4,4,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-7.2,40,83900,0,0,279,0,0,0,0,0,0,0,250,3.6,7,7,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-6.7,40,84000,0,0,274,0,0,0,0,0,0,0,270,3.6,4,4,16.0,6706,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-8.3,39,84000,0,0,264,0,0,0,0,0,0,0,230,4.6,3,3,16.0,77777,9,999999999,89,0.0440,0,88,0.200,0.0,6.0 +2002,11,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-7.8,39,83900,0,0,271,0,0,0,0,0,0,0,220,6.2,5,5,16.0,6706,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-6.7,40,83900,0,0,282,0,0,0,0,0,0,0,230,5.2,8,7,16.0,6706,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-6.1,40,84000,0,0,289,0,0,0,0,0,0,0,230,4.1,8,8,16.0,2591,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-5.6,41,84000,0,0,298,0,0,0,0,0,0,0,250,3.1,9,9,16.0,2591,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-6.1,42,84100,0,0,287,0,0,0,0,0,0,0,230,3.6,8,8,16.0,2438,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-6.1,44,84200,0,0,299,0,0,0,0,0,0,0,210,4.1,10,10,16.0,2438,9,999999999,80,0.0440,0,88,0.200,0.0,6.0 +2002,11,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-5.6,47,84200,0,0,283,0,0,0,0,0,0,0,210,4.1,9,8,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.7,-5.6,55,84100,3,222,260,0,0,0,0,0,0,0,190,3.1,3,3,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-5.6,53,84200,151,1401,262,123,642,53,11900,34700,8200,790,160,3.1,3,3,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-3.9,40,84500,367,1401,288,262,761,62,26200,64600,9200,1060,160,2.6,3,3,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,-4.4,32,84600,539,1401,287,378,783,76,38900,73400,10500,1460,220,2.6,0,0,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-4.4,29,84300,654,1401,294,453,777,89,46900,75200,11600,1790,280,1.5,0,0,16.0,77777,9,999999999,80,0.0440,0,88,0.200,0.0,6.0 +2002,11,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-3.9,27,84600,705,1401,301,510,854,78,54000,84200,11400,1740,330,4.1,0,0,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-3.9,27,84500,686,1401,301,476,782,91,49400,76200,11900,1880,40,5.2,0,0,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-3.9,26,84500,601,1401,303,418,816,67,44200,78700,10200,1440,20,5.7,0,0,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-3.9,27,84500,454,1401,307,318,823,50,33400,75100,9000,1070,60,4.6,1,1,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-3.9,29,84400,256,1401,296,144,646,25,15300,51500,5800,640,30,2.1,0,0,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-3.9,33,84100,45,876,297,7,217,3,1600,12400,1000,110,0,0.0,2,2,16.0,77777,9,999999999,89,0.0440,0,88,0.200,0.0,6.0 +2002,11,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-3.9,36,84400,0,0,283,0,0,0,0,0,0,0,140,1.5,0,0,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,-3.9,42,84400,0,0,274,0,0,0,0,0,0,0,160,2.6,0,0,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-6.7,48,84100,0,0,250,0,0,0,0,0,0,0,160,4.6,0,0,16.0,77777,9,999999999,100,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-3.9,49,84200,0,0,266,0,0,0,0,0,0,0,180,4.6,0,0,16.0,77777,9,999999999,100,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-3.9,51,84100,0,0,263,0,0,0,0,0,0,0,180,4.6,0,0,16.0,77777,9,999999999,100,0.0440,0,88,0.200,999.0,99.0 +2002,11,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-4.4,48,84100,0,0,263,0,0,0,0,0,0,0,200,6.2,0,0,16.0,77777,9,999999999,89,0.0440,0,88,0.200,0.0,6.0 +2002,11,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-6.1,55,83800,0,0,247,0,0,0,0,0,0,0,180,3.6,0,0,16.0,77777,9,999999999,100,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-5.0,63,83800,0,0,246,0,0,0,0,0,0,0,180,2.6,0,0,16.0,77777,9,999999999,100,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-4.4,64,83900,0,0,248,0,0,0,0,0,0,0,180,3.1,0,0,16.0,77777,9,999999999,100,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-3.9,55,84100,0,0,275,0,0,0,0,0,0,0,230,2.6,5,5,16.0,77777,9,999999999,100,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-2.8,63,84100,0,0,283,0,0,0,0,0,0,0,230,4.6,8,8,16.0,2438,9,999999999,110,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-3.9,62,84300,0,0,278,0,0,0,0,0,0,0,240,6.2,8,8,16.0,2286,9,999999999,110,0.0440,0,88,0.200,0.0,6.0 +2002,11,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-3.9,62,84100,0,0,266,0,0,0,0,0,0,0,230,6.2,4,4,16.0,77777,9,999999999,110,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,-3.9,59,84100,2,199,266,0,0,0,0,0,0,0,220,6.2,3,3,16.0,77777,9,999999999,110,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-3.3,53,84400,146,1402,275,98,609,35,9500,36600,5600,470,220,5.2,3,3,16.0,77777,9,999999999,100,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-2.2,45,84500,362,1402,280,233,691,53,23600,59000,8300,990,230,4.1,0,0,16.0,77777,9,999999999,100,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-2.2,36,84600,534,1402,294,365,771,70,37800,72400,10100,1390,240,3.1,0,0,16.0,77777,9,999999999,100,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-1.1,35,84300,650,1402,302,453,795,83,47200,77100,11300,1720,320,4.6,0,0,16.0,77777,9,999999999,89,0.0440,0,88,0.200,0.0,6.0 +2002,11,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,-1.1,35,84700,700,1402,302,492,806,87,51400,79000,11800,1860,40,3.6,0,0,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-0.6,34,84700,682,1402,320,476,806,82,49900,78900,11400,1760,20,3.6,3,3,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-0.6,35,84600,597,1402,318,407,786,71,42700,75600,10300,1490,40,3.6,3,3,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,-0.6,37,84500,451,1402,302,292,736,54,30400,67100,8700,1110,40,4.1,0,0,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-0.6,38,84500,253,1402,306,134,563,32,13900,43500,5900,650,0,0.0,1,1,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-0.6,41,84500,43,853,313,6,170,3,1300,9700,800,110,0,0.0,5,5,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-1.7,48,84300,0,0,278,0,0,0,0,0,0,0,140,1.5,0,0,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-3.3,57,84200,0,0,260,0,0,0,0,0,0,0,160,3.6,0,0,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.7,61,84100,0,0,265,0,0,0,0,0,0,0,170,4.1,0,0,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-2.8,63,84000,0,0,258,0,0,0,0,0,0,0,190,4.1,0,0,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-3.9,69,83700,0,0,247,0,0,0,0,0,0,0,180,4.1,0,0,16.0,77777,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-2.2,68,84000,0,0,257,0,0,0,0,0,0,0,190,4.6,0,0,16.0,77777,9,999999999,60,0.0440,0,88,0.200,0.0,6.0 +2002,11,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.7,-2.8,70,83600,0,0,252,0,0,0,0,0,0,0,190,5.2,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-2.8,68,83500,0,0,259,0,0,0,0,0,0,0,190,4.6,1,1,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-2.8,53,83600,0,0,276,0,0,0,0,0,0,0,210,7.7,2,2,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-3.9,51,83600,0,0,268,0,0,0,0,0,0,0,210,8.2,1,1,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-5.0,46,83500,0,0,262,0,0,0,0,0,0,0,210,7.7,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-6.1,42,83600,0,0,261,0,0,0,0,0,0,0,220,8.8,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,6.0 +2002,11,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-7.8,33,83600,0,0,264,0,0,0,0,0,0,0,210,8.2,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-8.3,32,83600,2,175,263,0,0,0,0,0,0,0,210,8.8,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-8.9,26,83700,141,1402,271,102,532,48,9900,28000,7100,730,220,8.2,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-8.3,20,83900,357,1402,301,218,614,61,22500,51500,9300,1130,220,6.2,3,2,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,-8.3,15,84000,529,1402,326,326,500,136,33900,47300,16000,2660,200,5.7,6,4,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-8.3,13,83400,645,1402,333,491,783,129,50700,75600,15800,2570,250,3.6,5,3,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,6.0 +2002,11,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,-10.0,10,84000,696,1402,342,474,638,156,48600,61900,17800,3130,270,8.2,7,5,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,-10.0,10,83900,678,1402,345,517,848,105,52700,81900,13000,2000,290,9.3,9,6,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,-8.3,13,83800,593,1402,336,441,692,147,44700,64900,17100,2710,310,5.2,9,5,16.0,7620,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,-8.3,14,83800,447,1402,331,169,104,136,18300,9600,15300,3070,320,2.6,10,4,16.0,6706,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,-9.4,13,83800,250,1402,327,103,206,66,10900,14500,8200,1250,360,4.1,9,4,16.0,6096,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-8.3,15,83300,41,853,335,2,0,2,300,0,300,80,320,9.3,7,7,16.0,6706,9,999999999,50,0.0440,0,88,0.200,0.0,6.0 +2002,11,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,-7.2,19,83800,0,0,318,0,0,0,0,0,0,0,320,7.2,9,4,16.0,6096,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,-7.8,27,83600,0,0,293,0,0,0,0,0,0,0,40,5.2,10,5,16.0,4267,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-7.2,27,83700,0,0,294,0,0,0,0,0,0,0,30,4.6,8,4,16.0,4267,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,-4.4,43,83500,0,0,285,0,0,0,0,0,0,0,90,4.6,6,5,16.0,4267,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-5.0,48,83400,0,0,278,0,0,0,0,0,0,0,120,4.1,7,6,16.0,4267,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-4.4,48,83700,0,0,281,0,0,0,0,0,0,0,160,2.1,10,6,16.0,6096,9,999999999,80,0.0440,0,88,0.200,0.0,6.0 +2002,11,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-3.9,47,83600,0,0,283,0,0,0,0,0,0,0,270,3.1,9,5,16.0,3962,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-5.0,48,83500,0,0,281,0,0,0,0,0,0,0,270,2.6,7,7,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-3.3,57,83500,0,0,278,0,0,0,0,0,0,0,300,2.6,7,6,16.0,6096,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-2.8,68,83400,0,0,271,0,0,0,0,0,0,0,50,2.6,7,6,16.0,6096,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-3.9,69,83300,0,0,264,0,0,0,0,0,0,0,90,3.1,8,6,16.0,6096,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-3.3,80,83600,0,0,273,0,0,0,0,0,0,0,130,5.2,10,9,16.0,6096,9,999999999,89,0.0440,0,88,0.200,0.0,6.0 +2002,11,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.8,79,83200,0,0,270,0,0,0,0,0,0,0,180,3.1,10,8,16.0,6096,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-3.3,80,83200,1,152,260,0,0,0,0,0,0,0,100,1.5,10,6,16.0,6096,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-2.8,76,83200,137,1403,263,15,0,15,1800,0,1800,580,120,3.1,8,5,16.0,6096,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,0.0,65,83400,352,1403,287,189,376,94,19400,31100,11600,1760,150,4.6,7,5,16.0,6096,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,0.0,54,83500,525,1403,305,240,173,175,25900,16700,19600,4050,180,6.7,8,7,16.0,6096,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-0.6,53,83400,641,1403,307,384,437,184,39800,43000,20100,3830,270,3.6,9,8,16.0,6706,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-1.1,49,83300,692,1403,301,449,656,125,46900,64300,15000,2610,280,5.2,6,6,16.0,6706,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-1.1,49,83200,674,1403,304,435,651,121,45400,63600,14600,2500,300,1.5,8,7,16.0,7620,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-1.1,45,83100,590,1403,305,350,514,133,37100,49900,16000,2620,340,3.6,8,6,16.0,7620,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,-1.1,44,83100,444,1403,308,254,498,96,26900,44900,12600,1790,340,2.1,6,6,16.0,77777,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-1.7,47,83000,248,1403,295,138,497,50,14100,35900,7700,880,320,3.1,5,4,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-1.7,56,82800,40,830,286,2,0,2,300,0,300,80,310,5.2,6,5,16.0,77777,9,999999999,80,0.0440,0,88,0.200,0.0,6.0 +2002,11,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-2.2,63,82900,0,0,276,0,0,0,0,0,0,0,290,5.2,5,5,16.0,77777,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-2.8,63,82900,0,0,271,0,0,0,0,0,0,0,280,5.2,4,4,16.0,77777,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-2.8,76,82900,0,0,261,0,0,0,0,0,0,0,300,6.7,4,4,16.0,77777,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-5.6,72,82800,0,0,237,0,0,0,0,0,0,0,300,6.7,0,0,16.0,77777,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.2,-6.7,68,82700,0,0,239,0,0,0,0,0,0,0,310,8.8,1,1,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.8,62,83100,0,0,257,0,0,0,0,0,0,0,310,6.2,8,8,16.0,762,9,999999999,80,0.0440,0,88,0.200,0.0,6.0 +2002,11,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-7.8,59,82800,0,0,272,0,0,0,0,0,0,0,320,6.2,10,10,16.0,701,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-7.8,59,82800,0,0,272,0,0,0,0,0,0,0,330,6.7,10,10,16.0,488,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.2,-8.3,59,82900,0,0,269,0,0,0,0,0,0,0,350,7.2,10,10,16.0,549,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.3,-8.9,62,83000,0,0,264,0,0,0,0,0,0,0,20,7.7,10,10,16.0,671,9,999999999,89,0.0440,0,88,0.200,999.0,99.0 +2002,11,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.0,84,83000,0,0,260,0,0,0,0,0,0,0,350,7.7,10,10,14.5,840,9,999999999,89,0.0440,0,88,0.200,0.0,1.0 +2002,11,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-6.1,96,83600,0,0,258,0,0,0,0,0,0,0,360,5.7,10,10,14.4,884,9,999999999,89,0.0440,0,88,0.200,0.0,1.0 +2002,11,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-6.1,96,83200,0,0,258,0,0,0,0,0,0,0,40,3.6,10,10,14.4,244,9,999999999,89,0.0440,0,88,0.200,0.0,1.0 +2002,11,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-6.7,95,83300,1,105,249,0,0,0,0,0,0,0,30,3.1,9,9,12.8,1158,9,999999999,89,0.0440,0,88,0.200,0.0,1.0 +2002,11,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.0,-7.0,92,83400,132,1403,256,16,0,16,1900,0,1900,610,60,4.6,10,10,4.8,330,9,999999999,80,0.0440,0,88,0.200,0.0,1.0 +2002,11,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-6.7,91,83500,348,1403,257,99,6,97,10900,300,10900,3310,50,4.1,10,10,2.4,244,9,999999999,80,0.0440,0,88,0.200,0.0,1.0 +2002,11,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.1,91,83600,520,1403,260,220,142,167,23800,13700,18700,3860,70,4.1,10,10,2.4,457,9,999999999,80,0.0440,0,88,0.200,0.0,1.0 +2002,11,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-7.2,79,83900,636,1403,262,158,0,158,18100,0,18100,6380,90,3.1,10,10,16.0,457,9,999999999,80,0.0440,0,88,0.200,0.0,6.0 +2002,11,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.4,-6.7,82,83500,687,1403,262,103,0,103,12300,0,12300,4720,70,1.5,10,10,14.4,701,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-6.7,79,83500,671,1403,264,141,0,141,16400,0,16400,6020,30,2.6,10,10,16.0,640,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-7.2,75,83500,587,1403,264,124,0,124,14300,0,14300,5120,60,2.6,10,10,16.0,823,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-7.2,75,83600,441,1403,264,48,0,48,5800,0,5800,2090,90,3.1,10,10,16.0,640,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-8.3,68,83600,245,1403,263,53,0,53,6000,0,6000,1870,0,0.0,10,10,16.0,701,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.1,83,83800,39,830,265,4,74,3,700,4200,500,110,80,2.6,10,10,14.4,823,9,999999999,80,0.0440,0,88,0.200,0.0,1.0 +2002,11,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.6,90,83700,0,0,263,0,0,0,0,0,0,0,110,3.6,10,10,4.8,762,9,999999999,69,0.0440,0,88,0.200,0.0,1.0 +2002,11,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-5.6,95,83700,0,0,261,0,0,0,0,0,0,0,110,3.6,10,10,3.2,762,9,999999999,69,0.0440,0,88,0.200,0.0,1.0 +2002,11,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.1,91,83700,0,0,260,0,0,0,0,0,0,0,110,4.6,10,10,2.0,366,9,999999999,69,0.0440,0,88,0.200,0.0,1.0 +2002,11,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.0,-7.0,92,83600,0,0,256,0,0,0,0,0,0,0,110,4.6,10,10,0.8,150,9,999999999,69,0.0440,0,88,0.200,0.0,1.0 +2002,11,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-6.1,96,83600,0,0,258,0,0,0,0,0,0,0,110,4.1,10,10,0.8,457,9,999999999,69,0.0440,0,88,0.200,0.0,1.0 +2002,11,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.8,86,83900,0,0,255,0,0,0,0,0,0,0,110,4.6,10,10,0.8,183,9,999999999,69,0.0440,0,88,0.200,1.0,6.0 +2002,11,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-6.7,95,83500,0,0,256,0,0,0,0,0,0,0,100,4.1,10,10,0.8,244,9,999999999,69,0.0440,0,88,0.200,0.0,1.0 +2002,11,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-6.7,95,83500,0,0,256,0,0,0,0,0,0,0,120,5.2,10,10,0.8,396,9,999999999,69,0.0440,0,88,0.200,0.0,1.0 +2002,11,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.2,91,83400,0,0,255,0,0,0,0,0,0,0,130,5.7,10,10,1.6,396,9,999999999,69,0.0440,0,88,0.200,0.0,1.0 +2002,11,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.8,86,83300,0,0,255,0,0,0,0,0,0,0,140,5.7,10,10,4.8,945,9,999999999,69,0.0440,0,88,0.200,0.0,1.0 +2002,11,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-7.8,91,83300,0,0,252,0,0,0,0,0,0,0,160,4.6,10,10,9.6,1829,9,999999999,69,0.0440,0,88,0.200,0.0,1.0 +2002,11,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-6.7,100,83600,0,0,253,0,0,0,0,0,0,0,240,5.7,10,10,11.2,91,9,999999999,69,0.0440,0,88,0.200,2.0,6.0 +2002,11,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-7.8,91,83300,0,0,252,0,0,0,0,0,0,0,270,4.6,10,10,7.2,91,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-7.2,-9.4,82,83300,0,82,249,0,0,0,0,0,0,0,300,5.2,10,10,7.2,30,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-7.8,95,83300,128,1404,250,0,0,0,0,0,0,0,300,4.6,10,10,2.0,61,9,999999999,69,0.0440,0,88,0.200,0.0,1.0 +2002,11,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.2,-7.2,100,83400,343,1404,251,84,0,84,9400,0,9400,2990,280,2.6,10,10,0.4,30,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-6.7,100,83400,516,1404,253,60,0,60,7200,0,7200,2670,220,4.6,10,10,5.2,91,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.2,87,83600,632,1404,234,486,644,195,49900,63100,21400,4080,220,6.2,4,4,9.6,77777,9,999999999,50,0.0440,0,88,0.200,0.0,6.0 +2002,11,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-6.1,83,83300,683,1404,239,529,957,61,55500,93000,10100,1450,220,4.1,3,3,11.2,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.3,-6.1,79,83200,667,1404,241,511,728,164,52000,69700,18800,3160,220,3.6,3,3,11.2,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-6.1,69,83200,583,1404,247,113,0,113,13100,0,13100,4750,230,2.6,3,3,12.8,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-5.6,72,83200,438,1404,248,233,255,153,24200,23300,16900,3250,190,3.6,3,3,12.8,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-6.1,69,83300,243,1404,247,146,464,65,14500,32400,8900,1060,0,0.0,3,3,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-7.8,91,83500,38,807,228,4,171,2,1200,9600,700,80,80,4.1,3,3,12.8,77777,9,999999999,40,0.0440,0,88,0.200,0.0,6.0 +2002,11,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.8,-8.9,91,83200,0,0,214,0,0,0,0,0,0,0,150,3.6,0,0,14.4,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.2,-10.0,78,83300,0,0,215,0,0,0,0,0,0,0,150,3.6,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.3,-12.8,67,83400,0,0,209,0,0,0,0,0,0,0,160,4.6,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.4,-10.6,58,83700,0,0,224,0,0,0,0,0,0,0,60,2.1,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.2,-11.1,71,83600,0,0,214,0,0,0,0,0,0,0,40,7.2,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-12.8,74,84000,0,0,210,0,0,0,0,0,0,0,60,3.6,1,1,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,6.0 +2002,11,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-10.6,-13.3,78,83500,0,0,202,0,0,0,0,0,0,0,110,3.1,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.1,-13.9,78,83600,0,0,200,0,0,0,0,0,0,0,170,3.1,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.4,-16.7,81,83400,0,0,188,0,0,0,0,0,0,0,140,4.1,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-14.4,-16.7,81,83400,0,0,188,0,0,0,0,0,0,0,170,4.6,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-13.9,-16.7,77,83400,0,0,193,0,0,0,0,0,0,0,160,3.6,1,1,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.6,-17.8,81,84100,0,0,183,0,0,0,0,0,0,0,160,3.6,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,6.0 +2002,11,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.1,-18.3,81,83400,0,0,185,0,0,0,0,0,0,0,150,3.6,1,1,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-16.1,-18.3,81,83500,0,59,182,0,0,0,0,0,0,0,160,5.7,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-15.6,-17.8,81,83600,123,1404,183,0,0,0,0,0,0,0,150,4.1,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-11.1,-13.9,78,83800,338,1404,200,245,807,49,24900,67600,8500,920,140,4.1,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-8.3,-11.7,74,84000,511,1404,210,381,897,53,40000,83700,9400,1170,110,5.2,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-11.7,67,84300,628,1404,214,480,936,60,50400,90100,10000,1370,130,4.6,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,0.0,6.0 +2002,11,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-8.9,65,84100,680,1404,227,523,951,61,54900,92400,10000,1450,130,3.1,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.2,-11.1,46,84100,663,1404,231,506,794,129,52400,77100,15800,2610,0,0.0,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-16.1,28,84100,580,1404,228,339,431,160,35100,41600,17800,3220,140,2.1,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-14.4,33,84000,436,1404,230,259,549,88,26500,48500,11400,1600,110,2.6,0,0,16.0,77777,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.3,-10.6,53,83900,241,1404,228,141,533,49,14300,38000,7800,860,120,2.1,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-11.1,62,83900,37,808,227,0,0,0,0,0,0,0,160,2.6,2,2,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,6.0 +2002,11,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.7,-13.3,56,83800,0,0,214,0,0,0,0,0,0,0,170,4.1,0,0,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.8,-14.4,55,83800,0,0,214,0,0,0,0,0,0,0,280,3.6,1,1,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-9.4,-14.4,64,83800,0,0,217,0,0,0,0,0,0,0,190,2.6,6,5,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-10.0,71,83700,0,0,228,0,0,0,0,0,0,0,200,6.2,4,3,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-10.0,71,83700,0,0,237,0,0,0,0,0,0,0,210,6.2,8,7,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-10.0,68,83800,0,0,236,0,0,0,0,0,0,0,200,4.1,6,6,16.0,77777,9,999999999,30,0.0440,0,88,0.200,0.0,6.0 +2002,11,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-7.8,-12.8,64,83400,0,0,223,0,0,0,0,0,0,0,180,3.6,6,5,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-11.7,61,83400,0,0,230,0,0,0,0,0,0,0,190,4.6,7,5,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-11.7,56,83500,0,0,232,0,0,0,0,0,0,0,240,4.6,6,4,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-11.7,51,83400,0,0,234,0,0,0,0,0,0,0,210,6.2,4,3,16.0,77777,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.4,-11.7,53,83400,0,0,227,0,0,0,0,0,0,0,210,7.2,1,1,16.0,6706,9,999999999,30,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-12.2,50,83600,0,0,236,0,0,0,0,0,0,0,210,7.2,5,5,16.0,4572,9,999999999,40,0.0440,0,88,0.200,0.0,6.0 +2002,11,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.4,-12.2,50,83400,0,0,241,0,0,0,0,0,0,0,200,8.2,7,7,16.0,6706,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.2,-11.1,46,83500,0,35,250,0,0,0,0,0,0,0,210,7.2,7,7,16.0,4572,9,999999999,40,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-11.1,44,83700,119,1405,249,0,0,0,0,0,0,0,210,6.2,6,6,16.0,4572,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-10.0,45,83700,334,1405,254,238,809,45,25000,68800,8600,830,230,5.2,6,6,16.0,4572,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-8.3,46,83800,507,1405,269,381,755,108,39000,69100,13900,1990,250,2.6,8,8,16.0,2743,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-7.8,46,83800,624,1405,268,398,547,154,41800,53600,17900,3120,290,3.1,7,7,16.0,5486,9,999999999,60,0.0440,0,88,0.200,0.0,6.0 +2002,11,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-8.3,36,83900,676,1405,275,517,855,104,52800,82500,12900,1980,300,1.5,6,6,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-10.0,29,83900,660,1405,278,506,949,58,53200,91900,9800,1400,20,2.6,6,6,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-10.0,29,83900,577,1405,273,429,910,54,45200,86600,9500,1260,130,2.6,4,4,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,-10.6,25,83900,433,1405,281,312,844,50,32700,76300,9100,1030,0,0.0,6,6,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,-9.4,28,84000,239,1405,280,141,672,26,14900,52400,6000,620,0,0.0,5,5,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-6.1,49,83800,36,808,268,0,0,0,0,0,0,0,100,1.5,5,5,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,6.0 +2002,11,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-4.4,73,83800,0,0,253,0,0,0,0,0,0,0,120,4.1,3,3,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.7,-4.4,80,83800,0,0,249,0,0,0,0,0,0,0,120,3.1,3,3,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-5.0,83,83800,0,0,234,0,0,0,0,0,0,0,150,4.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-5.6,86,83800,0,0,230,0,0,0,0,0,0,0,150,5.2,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-5.6,79,83800,0,0,234,0,0,0,0,0,0,0,160,5.7,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,999.0,99.0 +2002,11,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.7,82,84100,0,0,227,0,0,0,0,0,0,0,170,4.6,0,0,16.0,77777,9,999999999,50,0.0440,0,88,0.200,0.0,6.0 +2002,11,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-7.2,83,83700,0,0,225,0,0,0,0,0,0,0,160,4.1,0,0,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-5.0,-6.7,86,83600,0,0,225,0,0,0,0,0,0,0,170,4.6,0,0,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-6.7,79,83700,0,0,229,0,0,0,0,0,0,0,180,4.6,0,0,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.3,-7.2,72,83700,0,0,230,0,0,0,0,0,0,0,200,4.1,0,0,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-8.3,68,83600,0,0,227,0,0,0,0,0,0,0,170,2.6,0,0,16.0,77777,9,999999999,60,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.8,59,84000,0,0,235,0,0,0,0,0,0,0,200,6.2,0,0,16.0,77777,9,999999999,60,0.0440,0,88,0.200,0.0,6.0 +2002,11,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.1,-8.3,54,83900,0,0,237,0,0,0,0,0,0,0,210,7.2,0,0,16.0,77777,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-8.3,52,83900,0,12,243,0,0,0,0,0,0,0,210,7.7,1,1,16.0,77777,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-7.8,48,84000,115,1405,245,0,0,0,0,0,0,0,210,8.8,0,0,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-6.1,45,84200,330,1405,257,239,804,50,24200,66600,8500,920,210,8.2,0,0,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,-4.4,40,84300,503,1405,279,375,898,53,39500,83500,9500,1160,210,6.2,1,1,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-3.9,33,84000,620,1405,293,474,936,59,49700,89900,9900,1350,220,3.6,1,1,16.0,77777,9,999999999,80,0.0440,0,88,0.200,0.0,6.0 +2002,11,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.8,-3.9,30,84400,672,1405,300,517,951,60,54300,92300,10000,1430,0,0.0,1,1,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,-2.2,32,84400,657,1405,301,500,943,57,52500,91300,9700,1380,100,1.5,0,0,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-2.2,31,84300,574,1405,308,423,904,52,44600,86000,9300,1240,120,2.1,1,1,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-1.7,31,84300,431,1405,312,301,838,43,31800,75800,8400,1000,130,3.1,1,1,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,0.0,43,84200,237,1405,296,136,661,24,14400,51400,5700,600,110,3.6,0,0,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,0.0,60,83800,35,785,292,0,0,0,0,0,0,0,170,4.1,6,5,16.0,77777,9,999999999,80,0.0440,0,88,0.200,0.0,6.0 +2002,11,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-1.1,61,83900,0,0,280,0,0,0,0,0,0,0,170,5.2,3,3,16.0,77777,9,999999999,80,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-1.7,66,83800,0,0,270,0,0,0,0,0,0,0,180,4.6,2,2,16.0,77777,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-2.2,61,83700,0,0,263,0,0,0,0,0,0,0,210,4.6,0,0,16.0,77777,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-5.0,43,83800,0,0,266,0,0,0,0,0,0,0,210,7.7,0,0,16.0,77777,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.4,48,83600,0,0,263,0,0,0,0,0,0,0,220,5.7,0,0,16.0,77777,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-4.4,48,83700,0,0,263,0,0,0,0,0,0,0,230,5.7,0,0,16.0,77777,9,999999999,69,0.0440,0,88,0.200,0.0,6.0 +2002,11,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-4.4,52,83400,0,0,270,0,0,0,0,0,0,0,230,6.2,3,3,16.0,77777,9,999999999,69,0.0440,0,88,0.200,999.0,99.0 +2002,11,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-4.4,55,83300,0,0,257,0,0,0,0,0,0,0,210,6.2,0,0,16.0,77777,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-5.0,46,83300,0,0,271,0,0,0,0,0,0,0,210,7.2,2,2,16.0,77777,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-5.6,44,83200,0,0,262,0,0,0,0,0,0,0,210,7.2,0,0,16.0,77777,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-6.1,42,83200,0,0,261,0,0,0,0,0,0,0,210,8.2,0,0,16.0,77777,9,999999999,60,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-6.1,40,83300,0,0,263,0,0,0,0,0,0,0,210,7.7,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.200,0.0,6.0 +2002,11,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-6.7,37,83400,0,0,265,0,0,0,0,0,0,0,210,7.7,0,0,16.0,77777,9,999999999,50,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-6.7,37,83400,0,0,281,0,0,0,0,0,0,0,210,8.2,6,5,16.0,77777,9,999999999,50,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-6.7,37,83400,111,1394,281,0,0,0,0,0,0,0,210,7.7,6,5,16.0,77777,9,999999999,50,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-5.6,33,83600,325,1406,293,233,805,45,23700,66800,8200,870,230,5.7,6,5,16.0,77777,9,999999999,50,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,-5.6,28,83800,499,1406,305,376,898,56,39400,83300,9700,1160,240,2.6,6,5,16.0,77777,9,999999999,60,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-3.3,30,83400,616,1406,310,468,930,59,49200,89200,9900,1350,50,2.6,3,3,16.0,77777,9,999999999,60,0.0450,0,88,0.200,0.0,6.0 +2002,11,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-2.8,34,83700,669,1406,303,511,945,60,53700,91600,9900,1430,80,6.2,2,2,16.0,77777,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-2.8,32,83800,654,1406,310,500,943,59,52500,91200,9900,1400,90,7.2,3,3,16.0,77777,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-2.8,34,83700,572,1406,303,423,874,66,44400,83500,10300,1390,60,6.7,2,2,16.0,77777,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-3.3,33,83800,429,1406,305,285,751,55,29500,67400,8800,1090,60,5.2,3,3,16.0,77777,9,999999999,69,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-2.2,41,83700,235,1406,294,140,617,37,14200,45800,6500,670,60,4.6,2,2,16.0,77777,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-2.2,61,83600,34,785,274,0,0,0,0,0,0,0,60,4.6,3,3,16.0,77777,9,999999999,80,0.0450,0,88,0.200,0.0,6.0 +2002,11,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-2.2,71,83600,0,0,268,0,0,0,0,0,0,0,70,4.1,4,4,16.0,77777,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,-3.3,62,83700,0,0,273,0,0,0,0,0,0,0,60,6.2,10,6,16.0,77777,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-3.9,69,83600,0,0,267,0,0,0,0,0,0,0,60,3.1,10,7,16.0,77777,9,999999999,89,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-4.4,66,83600,0,0,257,0,0,0,0,0,0,0,110,2.1,3,3,16.0,77777,9,999999999,89,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-1.1,-5.0,72,83500,0,0,240,0,0,0,0,0,0,0,160,4.1,0,0,16.0,77777,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.1,69,83900,0,0,242,0,0,0,0,0,0,0,160,4.6,1,1,16.0,77777,9,999999999,80,0.0450,0,88,0.200,0.0,6.0 +2002,11,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-7.2,69,83500,0,0,237,0,0,0,0,0,0,0,160,3.6,1,1,16.0,77777,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.3,-7.8,68,83400,0,0,230,0,0,0,0,0,0,0,150,3.6,0,0,16.0,77777,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.3,-8.9,62,83500,0,0,229,0,0,0,0,0,0,0,170,3.6,0,0,16.0,77777,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.2,-10.0,51,83500,0,0,232,0,0,0,0,0,0,0,150,2.6,0,0,16.0,77777,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.9,-9.4,62,83500,0,0,227,0,0,0,0,0,0,0,180,5.2,0,0,16.0,77777,9,999999999,80,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-10.0,65,83900,0,0,222,0,0,0,0,0,0,0,170,5.2,0,0,16.0,77777,9,999999999,80,0.0450,0,88,0.200,0.0,6.0 +2002,11,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-10.0,71,83500,0,0,219,0,0,0,0,0,0,0,160,4.1,0,0,16.0,77777,9,999999999,89,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-6.1,-10.6,67,83600,0,0,218,0,0,0,0,0,0,0,130,4.1,0,0,16.0,77777,9,999999999,89,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-4.4,-9.4,65,83700,107,1371,225,0,0,0,0,0,0,0,140,3.6,0,0,16.0,6706,9,999999999,89,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-9.4,43,84000,321,1406,247,234,813,47,23700,67000,8300,880,130,3.6,1,1,16.0,6706,9,999999999,89,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.8,-11.1,32,84100,494,1406,248,370,892,54,38800,82700,9500,1150,130,4.6,0,0,16.0,6706,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-10.0,31,84000,612,1406,264,468,936,59,49100,89700,9900,1340,120,4.6,2,2,16.0,6706,9,999999999,100,0.0450,0,88,0.200,0.0,6.0 +2002,11,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,-7.8,35,84100,665,1406,267,511,951,59,53700,92200,9900,1410,180,2.6,1,1,16.0,6706,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-7.2,33,84000,651,1406,282,494,937,58,51900,90600,9800,1390,230,3.1,4,4,16.0,77777,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,-7.8,32,84000,569,1406,284,423,691,142,42800,64200,16700,2580,300,1.5,7,6,16.0,6706,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,-6.7,33,84000,427,1406,285,153,81,128,16700,7400,14500,3320,0,0.0,5,4,16.0,6706,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.8,-5.6,36,84000,233,1406,281,136,397,70,13800,27100,9300,1310,80,1.5,2,2,16.0,77777,9,999999999,89,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.1,39,83700,33,785,281,0,0,0,0,0,0,0,20,1.5,5,5,16.0,77777,9,999999999,89,0.0450,0,88,0.200,0.0,6.0 +2002,11,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-6.7,52,83800,0,0,246,0,0,0,0,0,0,0,40,2.6,0,0,16.0,77777,9,999999999,89,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-6.1,55,83800,0,0,247,0,0,0,0,0,0,0,90,2.1,0,0,16.0,77777,9,999999999,89,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-6.7,52,83700,0,0,246,0,0,0,0,0,0,0,180,3.1,0,0,16.0,77777,9,999999999,89,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.6,-7.2,52,83600,0,0,244,0,0,0,0,0,0,0,210,6.2,0,0,16.0,77777,9,999999999,89,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.3,-7.0,51,83400,0,0,252,0,0,0,0,0,0,0,210,5.8,1,1,16.0,77777,9,999999999,89,0.0450,0,88,0.200,999.0,99.0 +2002,11,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,-7.0,59,83600,0,0,264,0,0,0,0,0,0,0,190,5.3,5,5,16.0,77777,9,999999999,89,0.0450,0,88,0.200,0.0,6.0 +2002,11,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.7,-6.9,57,83300,0,0,272,0,0,0,0,0,0,0,190,4.9,10,7,16.0,77777,9,999999999,100,0.0450,0,88,0.200,999.0,99.0 +1994,12,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.5,-6.8,50,83500,0,0,255,0,0,0,0,0,0,0,190,4.4,3,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.2,-6.7,39,83500,0,0,258,0,0,0,0,0,0,0,200,4.0,0,0,40.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.9,-6.7,42,83500,0,0,260,0,0,0,0,0,0,0,180,3.5,0,0,40.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-6.7,38,83400,0,0,263,0,0,0,0,0,0,0,180,3.1,0,0,40.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-6.7,46,83400,0,0,252,0,0,0,0,0,0,0,180,2.1,0,0,40.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-6.7,43,83400,0,0,257,0,0,0,0,0,0,0,170,3.1,1,0,40.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-7.8,35,83400,0,0,273,0,0,0,0,0,0,0,170,4.6,3,3,120.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-7.8,31,83400,103,1348,273,41,252,22,4300,12800,3300,390,210,4.1,2,1,120.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-7.2,25,83400,317,1407,289,182,595,48,18500,48800,7400,880,190,5.2,3,1,120.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-7.8,18,83400,491,1407,299,333,817,48,35200,75700,8700,1110,190,5.2,1,0,112.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,-7.2,16,83400,608,1407,314,434,872,57,45800,83600,9500,1330,210,4.1,1,0,120.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-7.8,13,83300,662,1407,320,474,878,60,49900,85000,9700,1420,310,2.1,1,0,120.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,-6.1,15,83200,648,1407,327,470,891,59,49500,86100,9700,1390,340,3.6,1,0,120.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,-6.7,15,83200,567,1407,319,407,884,51,43100,83900,9100,1230,10,4.1,0,0,120.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,-6.1,17,83200,425,1407,317,284,802,42,30100,72300,8200,990,40,4.6,0,0,120.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-5.0,21,83200,232,1407,309,129,607,29,13700,46800,5900,620,80,3.6,0,0,104.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-5.0,26,83200,33,762,295,11,137,5,1200,7500,900,170,50,3.1,0,0,104.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-5.0,35,83200,0,0,277,0,0,0,0,0,0,0,130,3.1,0,0,80.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-4.4,45,83200,0,0,267,0,0,0,0,0,0,0,120,2.1,0,0,48.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-4.4,45,83200,0,0,267,0,0,0,0,0,0,0,170,3.1,0,0,48.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.0,48,83200,0,0,260,0,0,0,0,0,0,0,180,3.6,0,0,48.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-5.6,49,83200,0,0,255,0,0,0,0,0,0,0,190,1.5,0,0,48.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-6.1,45,83100,0,0,257,0,0,0,0,0,0,0,180,4.6,0,0,48.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.7,48,83000,0,0,250,0,0,0,0,0,0,0,210,1.5,0,0,48.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.7,50,83000,0,0,248,0,0,0,0,0,0,0,170,1.5,0,0,48.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.1,57,83000,0,0,245,0,0,0,0,0,0,0,160,2.1,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.1,66,83000,0,0,239,0,0,0,0,0,0,0,130,2.1,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.8,44,83000,0,0,249,0,0,0,0,0,0,0,190,3.1,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.8,49,82900,0,0,244,0,0,0,0,0,0,0,120,2.6,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.2,65,82900,0,0,234,0,0,0,0,0,0,0,0,0.0,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-9.4,38,82900,0,0,248,0,0,0,0,0,0,0,170,4.1,0,0,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-8.9,37,82900,99,1325,252,47,452,13,5200,28200,3000,330,190,4.1,0,0,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-8.9,28,82900,313,1407,267,201,785,26,21500,66000,6700,710,200,4.1,0,0,112.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-9.4,21,83000,487,1407,285,333,830,45,35200,76800,8500,1080,190,3.6,1,1,112.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-10.0,16,82900,605,1407,298,429,885,48,45400,84800,8800,1230,200,3.1,1,1,112.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-12.8,11,82900,659,1407,301,464,852,65,48800,82400,10000,1450,120,2.1,1,1,112.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-13.9,9,82800,645,1407,307,461,912,43,49100,88200,8500,1190,30,1.5,1,1,112.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-12.8,11,82800,565,1407,316,406,751,104,42100,71000,13500,2020,310,5.2,5,5,112.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,-11.7,12,82800,423,1407,319,282,659,84,29000,57800,11500,1530,10,4.6,5,5,112.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-11.7,13,82900,231,1407,300,135,672,25,14400,51800,5800,600,20,3.6,1,1,112.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-11.1,18,83000,32,762,285,12,183,4,1400,10100,900,140,360,2.6,1,1,112.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-11.1,18,83000,0,0,280,0,0,0,0,0,0,0,270,3.1,0,0,80.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-9.4,28,83100,0,0,286,0,0,0,0,0,0,0,260,2.6,7,7,48.0,4267,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-8.9,34,83100,0,0,267,0,0,0,0,0,0,0,150,3.1,8,3,48.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-8.9,37,83200,0,0,261,0,0,0,0,0,0,0,160,3.6,5,2,48.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-7.8,46,83100,0,0,258,0,0,0,0,0,0,0,160,2.1,3,3,48.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.8,49,83200,0,0,263,0,0,0,0,0,0,0,180,3.1,7,7,48.0,4267,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-9.4,37,83200,0,0,275,0,0,0,0,0,0,0,150,2.1,8,8,48.0,4267,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-10.6,31,83100,0,0,270,0,0,0,0,0,0,0,140,2.1,6,6,48.0,5486,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-10.6,36,83200,0,0,253,0,0,0,0,0,0,0,230,1.5,2,2,48.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-11.1,32,83200,0,0,259,0,0,0,0,0,0,0,190,4.1,3,3,48.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-11.1,34,83200,0,0,249,0,0,0,0,0,0,0,200,3.1,1,1,48.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-11.7,30,83200,0,0,252,0,0,0,0,0,0,0,150,3.6,1,1,48.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-11.1,32,83300,0,0,257,0,0,0,0,0,0,0,310,1.5,2,2,48.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-11.1,34,83300,0,0,249,0,0,0,0,0,0,0,0,0.0,1,1,96.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-10.0,36,83400,96,1302,252,33,169,21,3500,8500,2800,380,240,1.5,1,1,112.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-9.4,27,83400,309,1408,271,162,509,50,16800,40700,7800,930,200,4.1,1,1,112.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-10.0,20,83400,483,1408,284,297,670,66,30500,61500,9300,1280,190,3.6,2,1,112.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-11.1,15,83300,602,1408,301,347,496,135,36800,48300,16100,2680,200,3.1,8,3,112.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-11.7,14,83200,656,1408,302,443,634,148,45500,60800,17000,2890,120,3.1,7,2,112.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-11.7,14,83200,643,1408,303,417,537,172,43600,52900,19300,3550,90,3.1,8,3,112.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-11.1,14,83100,563,1408,302,352,588,117,36200,55200,14100,2220,110,2.6,7,2,112.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-11.1,14,83100,422,1408,310,229,441,96,24000,39000,12300,1790,350,3.6,9,4,112.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-7.8,23,83100,229,1408,305,95,103,78,10200,7300,9000,1660,350,3.1,10,6,96.0,7620,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-7.8,28,83100,32,763,308,11,1,11,1300,0,1300,390,340,2.1,10,9,80.0,7925,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.1,39,83100,0,0,298,0,0,0,0,0,0,0,170,1.5,10,9,48.0,7925,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.7,37,83100,0,0,306,0,0,0,0,0,0,0,150,1.0,10,10,48.0,7925,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-6.7,43,83100,0,0,288,0,0,0,0,0,0,0,180,1.5,10,9,48.0,7925,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-5.6,53,83100,0,0,282,0,0,0,0,0,0,0,210,1.5,10,9,48.0,7925,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-5.6,53,83100,0,0,290,0,0,0,0,0,0,0,130,1.5,10,10,48.0,7925,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-4.4,64,83100,0,0,287,0,0,0,0,0,0,0,150,3.1,10,10,48.0,4877,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-6.1,49,83100,0,0,292,0,0,0,0,0,0,0,160,2.1,10,10,48.0,4877,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-5.0,56,83000,0,0,291,0,0,0,0,0,0,0,170,2.1,10,10,48.0,4877,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-5.6,51,83000,0,0,293,0,0,0,0,0,0,0,140,2.6,10,10,48.0,4572,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-4.4,59,83000,0,0,291,0,0,0,0,0,0,0,120,2.6,10,10,48.0,4572,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-4.4,55,83000,0,0,288,0,0,0,0,0,0,0,120,3.1,9,9,48.0,5486,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-4.4,57,83000,0,0,272,0,0,0,0,0,0,0,230,1.5,6,6,48.0,5486,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-4.4,64,83000,0,0,266,0,0,0,0,0,0,0,160,2.6,6,6,48.0,5486,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-6.7,46,83100,0,0,268,0,0,0,0,0,0,0,180,2.6,9,5,112.0,5486,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-5.6,53,83200,92,1279,266,30,56,25,3100,2200,2900,450,110,2.1,5,5,112.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-5.0,37,83300,305,1408,289,204,691,54,20300,55400,8300,900,120,2.6,4,4,112.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-6.7,24,83400,480,1408,301,271,509,97,27800,46100,12000,1790,340,2.6,4,3,112.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-6.1,23,83300,598,1408,306,430,783,97,45100,75300,13000,1950,300,5.7,2,2,112.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-7.8,18,83300,653,1408,315,407,540,156,43000,53400,18100,3190,160,2.1,3,3,112.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-7.2,19,83200,640,1408,312,457,813,87,47400,78400,11600,1740,130,2.6,2,2,112.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-7.8,18,83200,561,1408,314,313,536,100,32600,50700,12300,1950,160,2.1,4,4,104.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-2.2,43,83200,420,1408,297,193,359,86,20500,31800,11000,1580,70,8.2,4,4,104.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-2.2,54,83400,229,1408,283,64,139,41,6900,9300,5400,720,80,7.7,4,4,104.0,77777,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-2.2,66,83500,32,763,272,11,117,6,1200,5900,1000,150,60,5.2,4,4,80.0,77777,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-3.9,76,83600,0,0,253,0,0,0,0,0,0,0,10,5.2,3,3,48.0,77777,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.6,68,83700,0,0,269,0,0,0,0,0,0,0,360,4.1,9,9,40.0,488,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.1,76,83700,0,0,269,0,0,0,0,0,0,0,20,2.6,10,10,32.0,6096,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-5.6,79,83700,0,0,270,0,0,0,0,0,0,0,30,2.6,10,10,32.0,396,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.9,91,83700,0,0,271,0,0,0,0,0,0,0,80,2.6,10,10,24.0,305,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-3.9,95,83600,0,0,269,0,0,0,0,0,0,0,70,2.1,10,10,16.0,213,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.9,91,83600,0,0,271,0,0,0,0,0,0,0,350,2.6,10,10,9.6,183,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.9,91,83600,0,0,264,0,0,0,0,0,0,0,100,1.5,10,9,6.4,61,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-3.9,95,83500,0,0,269,0,0,0,0,0,0,0,360,1.5,10,10,4.8,61,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-3.9,100,83500,0,0,267,0,0,0,0,0,0,0,350,1.5,10,10,0.6,30,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-3.9,100,83500,0,0,267,0,0,0,0,0,0,0,340,2.1,10,10,0.6,30,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-3.9,100,83500,0,0,267,0,0,0,0,0,0,0,0,0.0,10,10,0.8,30,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-3.9,100,83500,0,0,267,0,0,0,0,0,0,0,100,1.5,10,10,1.2,30,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-3.9,95,83500,0,0,262,0,0,0,0,0,0,0,0,0.0,10,9,3.2,61,9,999999999,80,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-3.3,100,83500,89,1256,270,11,0,11,1300,0,1300,420,0,0.0,10,10,2.8,61,9,999999999,80,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-2.8,100,83500,302,1409,272,46,0,46,5300,0,5300,1800,70,1.5,10,10,4.0,183,9,999999999,80,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-2.2,100,83500,476,1409,275,75,0,75,8800,0,8800,3140,10,3.1,10,10,1.6,122,9,999999999,80,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.3,91,83500,595,1409,274,96,0,96,11300,0,11300,4200,40,2.6,10,10,2.4,152,9,999999999,80,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.2,83,83300,650,1409,284,126,0,126,14700,0,14700,5430,30,2.1,10,10,6.4,244,9,999999999,89,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-2.2,77,83200,638,1409,289,184,0,184,20800,0,20800,7080,80,4.1,10,10,9.6,6096,9,999999999,89,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-1.7,69,83200,559,1409,277,344,562,121,36600,53900,15100,2340,360,4.6,10,6,16.0,6096,9,999999999,89,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.2,74,83200,419,1409,278,158,125,121,17200,11400,13800,2700,320,4.6,10,8,12.8,7315,9,999999999,89,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.8,79,83200,228,1409,266,84,71,72,9000,5000,8200,1530,350,4.6,10,7,14.4,7315,9,999999999,89,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-3.3,83,83300,31,763,271,4,6,4,500,200,500,80,360,3.6,10,9,11.2,4267,9,999999999,89,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.9,87,83400,0,0,274,0,0,0,0,0,0,0,350,2.6,10,10,9.6,4267,9,999999999,100,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.9,91,83400,0,0,264,0,0,0,0,0,0,0,310,2.1,10,9,9.6,4267,9,999999999,100,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.3,91,83400,0,0,274,0,0,0,0,0,0,0,0,0.0,10,10,9.6,366,9,999999999,100,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.9,91,83400,0,0,264,0,0,0,0,0,0,0,0,0.0,10,9,9.6,4267,9,999999999,100,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.9,91,83400,0,0,271,0,0,0,0,0,0,0,0,0.0,10,10,8.0,366,9,999999999,100,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-3.9,91,83400,0,0,271,0,0,0,0,0,0,0,0,0.0,10,10,8.0,366,9,999999999,110,0.0460,0,88,0.220,0.0,1.0 +1994,12,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-4.4,96,83400,0,0,238,0,0,0,0,0,0,0,0,0.0,2,2,8.0,77777,9,999999999,110,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-4.4,96,83300,0,0,238,0,0,0,0,0,0,0,40,1.5,2,2,8.0,77777,9,999999999,110,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-4.4,91,83300,0,0,261,0,0,0,0,0,0,0,0,0.0,10,9,8.0,4572,9,999999999,110,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-4.4,87,83200,0,0,271,0,0,0,0,0,0,0,40,2.6,10,10,9.6,3658,9,999999999,110,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-4.4,87,83200,0,0,271,0,0,0,0,0,0,0,60,1.5,10,10,9.6,2438,9,999999999,120,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.9,87,83100,0,0,274,0,0,0,0,0,0,0,360,1.5,10,10,9.6,2286,9,999999999,120,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.9,87,83100,0,0,274,0,0,0,0,0,0,0,360,2.6,10,10,9.6,2134,9,999999999,110,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.9,87,83100,0,0,274,0,0,0,0,0,0,0,60,2.6,10,10,8.0,1676,9,999999999,110,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-3.9,83,83000,86,1233,276,13,0,13,1500,0,1500,490,360,2.6,10,10,6.4,244,9,999999999,110,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-2.8,91,83000,298,1409,277,45,0,45,5200,0,5200,1760,20,1.5,10,10,1.0,152,9,999999999,110,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-2.2,96,83000,473,1409,277,75,0,75,8800,0,8800,3130,360,2.1,10,10,0.8,122,9,999999999,100,0.0460,0,88,0.220,1.0,1.0 +1994,12,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-2.8,91,82900,592,1409,277,114,0,114,13300,0,13300,4810,70,2.6,10,10,1.2,244,9,999999999,100,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.8,87,82900,648,1409,279,125,0,125,14600,0,14600,5390,360,4.1,10,10,4.8,366,9,999999999,100,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-3.3,80,82900,636,1409,281,147,0,147,16900,0,16900,6040,350,2.6,10,10,11.2,427,9,999999999,89,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-3.9,79,82900,558,1409,278,128,0,128,14700,0,14700,5110,320,2.1,10,10,16.0,671,9,999999999,89,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.8,87,83000,418,1409,279,78,0,78,9000,0,9000,3080,360,3.6,10,10,16.0,396,9,999999999,89,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.8,87,83100,227,1409,279,48,0,48,5400,0,5400,1690,90,1.5,10,10,16.0,427,9,999999999,89,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-2.8,87,83200,31,763,279,4,0,4,500,0,500,160,140,1.5,10,10,12.8,335,9,999999999,80,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-2.8,83,83200,0,0,274,0,0,0,0,0,0,0,150,2.6,9,9,12.8,366,9,999999999,80,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-2.8,91,83200,0,0,252,0,0,0,0,0,0,0,170,2.1,4,4,11.2,77777,9,999999999,80,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-2.8,95,83300,0,0,248,0,0,0,0,0,0,0,130,2.6,3,3,11.2,77777,9,999999999,80,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-3.9,95,83400,0,0,238,0,0,0,0,0,0,0,160,1.5,1,1,11.2,77777,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-3.9,95,83400,0,0,233,0,0,0,0,0,0,0,160,2.6,0,0,11.2,77777,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.0,95,83400,0,0,229,0,0,0,0,0,0,0,110,3.1,0,0,11.2,77777,9,999999999,69,0.0460,0,88,0.220,0.0,1.0 +1994,12,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.1,91,83500,0,0,226,0,0,0,0,0,0,0,130,2.1,0,0,16.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.7,82,83500,0,0,227,0,0,0,0,0,0,0,130,2.6,0,0,40.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,83500,0,0,226,0,0,0,0,0,0,0,170,2.1,1,1,40.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.2,65,83500,0,0,244,0,0,0,0,0,0,0,190,3.6,6,3,40.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.8,62,83500,0,0,241,0,0,0,0,0,0,0,190,1.5,5,2,40.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-8.3,59,83500,0,0,243,0,0,0,0,0,0,0,160,4.1,5,3,40.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-8.3,46,83500,0,0,253,0,0,0,0,0,0,0,150,5.2,4,2,40.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-8.3,42,83500,0,0,264,0,0,0,0,0,0,0,150,5.2,8,5,96.0,6706,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-7.8,42,83500,83,1210,272,21,28,19,2300,1300,2200,390,150,4.6,9,7,112.0,6706,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-7.2,43,83500,295,1409,279,93,85,76,10200,6800,8800,1640,110,3.1,8,8,112.0,6706,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.6,46,83500,469,1409,291,165,58,145,18000,5400,16200,3810,130,4.1,9,9,112.0,4877,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-4.4,46,83400,589,1409,298,126,66,99,14300,6600,11500,2340,150,4.6,9,9,96.0,4572,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-5.6,31,83300,645,1409,300,358,468,144,38100,46200,16900,2910,180,7.2,7,6,96.0,6706,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-1.7,66,83200,634,1409,277,289,246,178,30900,25000,19600,3860,350,5.2,8,5,112.0,6706,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-1.7,71,83100,556,1409,266,366,666,103,38000,62700,13100,1990,350,4.6,2,2,64.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-2.2,74,83100,417,1409,264,223,440,93,23500,38800,12000,1730,360,5.2,3,3,48.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-1.7,77,83100,227,1409,266,91,229,54,9400,15400,6900,980,10,3.1,4,4,16.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-2.2,83,83200,31,763,259,11,19,10,1200,700,1200,210,350,2.1,6,4,16.0,3962,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.7,83,83300,0,0,264,0,0,0,0,0,0,0,310,3.1,7,5,16.0,3962,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-1.7,83,83400,0,0,264,0,0,0,0,0,0,0,340,3.1,5,5,16.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-1.7,91,83500,0,0,253,0,0,0,0,0,0,0,330,4.6,2,2,16.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-2.8,83,83600,0,0,281,0,0,0,0,0,0,0,340,7.7,10,10,16.0,396,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-3.3,87,83700,0,0,276,0,0,0,0,0,0,0,360,5.7,10,10,16.0,427,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-4.4,83,83800,0,0,273,0,0,0,0,0,0,0,360,4.6,10,10,16.0,488,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-4.4,83,83900,0,0,273,0,0,0,0,0,0,0,350,4.1,10,10,16.0,305,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-5.6,82,83900,0,0,268,0,0,0,0,0,0,0,360,6.2,10,10,12.8,335,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.6,86,83900,0,0,265,0,0,0,0,0,0,0,360,5.2,10,10,9.6,305,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.6,86,84000,0,0,265,0,0,0,0,0,0,0,350,3.6,10,10,9.6,305,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.6,86,84000,0,0,265,0,0,0,0,0,0,0,360,4.6,10,10,9.6,274,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.1,86,84000,0,0,263,0,0,0,0,0,0,0,10,3.6,10,10,8.0,274,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.1,86,84000,0,0,263,0,0,0,0,0,0,0,20,2.6,10,10,9.6,1463,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.1,86,84100,0,0,263,0,0,0,0,0,0,0,50,2.6,10,10,9.6,1402,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.7,82,84100,80,1210,262,12,0,12,1400,0,1400,450,60,2.6,10,10,9.6,1402,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.7,82,84100,291,1410,255,67,24,62,7400,2000,6900,1620,80,2.6,10,9,6.4,427,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.7,75,84100,466,1410,266,101,0,101,11500,0,11500,3930,10,1.5,10,10,6.4,427,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.7,72,84100,586,1410,252,184,47,164,20200,4600,18300,4690,80,2.1,7,7,16.0,1280,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-7.2,69,84100,643,1410,255,367,318,222,38700,32300,23900,5060,70,3.6,8,8,19.2,2134,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-7.2,69,84000,632,1410,268,142,0,142,16400,0,16400,5870,70,3.1,10,10,19.2,1676,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.8,62,84000,555,1410,262,243,69,215,26500,6700,23800,5540,350,1.5,10,9,19.2,1280,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-7.2,69,84000,416,1410,251,167,206,106,17800,18500,12300,2080,50,2.6,10,7,19.2,1524,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-7.8,65,84100,226,1410,254,113,69,102,12300,5400,11400,2070,0,0.0,8,8,19.2,3048,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.1,79,84100,31,764,239,12,85,9,1400,3500,1200,170,160,3.6,5,2,19.2,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.7,79,84100,0,0,239,0,0,0,0,0,0,0,190,3.1,3,3,19.2,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.1,86,84100,0,0,232,0,0,0,0,0,0,0,240,3.1,1,1,19.2,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.8,79,84100,0,0,224,0,0,0,0,0,0,0,200,3.1,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-8.3,83,84100,0,0,220,0,0,0,0,0,0,0,190,4.1,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-9.4,79,84100,0,0,217,0,0,0,0,0,0,0,180,4.1,0,0,32.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-11.1,71,84100,0,0,214,0,0,0,0,0,0,0,170,3.1,0,0,32.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-12.2,71,84100,0,0,210,0,0,0,0,0,0,0,200,3.1,0,0,32.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-13.3,67,84000,0,0,207,0,0,0,0,0,0,0,150,4.1,0,0,48.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-16.1,49,84000,0,0,207,0,0,0,0,0,0,0,180,4.6,0,0,48.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-16.7,49,84000,0,0,204,0,0,0,0,0,0,0,170,4.1,0,0,48.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-16.1,52,83900,0,0,205,0,0,0,0,0,0,0,170,4.1,0,0,48.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-16.7,51,83900,0,0,203,0,0,0,0,0,0,0,180,3.6,0,0,48.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-16.7,51,83900,0,0,209,0,0,0,0,0,0,0,190,4.6,2,2,48.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-17.8,46,83900,0,0,211,0,0,0,0,0,0,0,180,4.1,3,3,96.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-17.2,45,83900,77,1187,212,30,208,16,3200,10000,2500,300,180,4.1,5,2,112.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-16.1,39,83900,288,1410,224,149,461,55,15300,35500,8000,980,210,3.1,3,3,112.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-16.7,30,83900,463,1410,226,291,714,56,30400,65300,8800,1140,190,5.2,1,1,112.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-17.8,22,83800,584,1410,240,387,637,123,39800,60100,14800,2340,200,4.6,3,3,112.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-16.7,20,83700,641,1410,249,463,820,90,47800,78900,11800,1770,180,4.1,2,2,112.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-21.1,11,83600,631,1410,255,360,590,95,37900,57400,12100,1960,30,1.5,3,3,112.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-19.4,14,83500,554,1410,252,377,679,110,38900,63600,13800,2090,290,4.1,6,2,112.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-17.8,16,83600,415,1410,254,231,552,68,24000,48600,9600,1280,300,9.8,3,3,96.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-13.9,26,83600,226,1410,250,115,460,41,11800,32200,6600,740,330,5.2,4,2,96.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-17.2,21,83700,31,764,245,8,61,6,1000,2600,800,120,310,8.2,4,3,96.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-11.7,42,83800,0,0,232,0,0,0,0,0,0,0,330,3.6,1,0,32.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-14.4,34,83900,0,0,232,0,0,0,0,0,0,0,320,2.6,1,1,32.0,77777,9,999999999,20,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-17.2,26,83900,0,0,230,0,0,0,0,0,0,0,300,3.6,1,1,32.0,77777,9,999999999,20,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-16.7,28,84000,0,0,226,0,0,0,0,0,0,0,310,4.1,0,0,32.0,77777,9,999999999,20,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-15.6,39,84100,0,0,218,0,0,0,0,0,0,0,350,3.1,0,0,32.0,77777,9,999999999,20,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-15.6,41,84200,0,0,216,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,20,0.0450,0,88,0.220,0.0,1.0 +1994,12,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-15.0,48,84200,0,0,213,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,20,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-13.9,58,84200,0,0,210,0,0,0,0,0,0,0,130,1.0,0,0,48.0,77777,9,999999999,20,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-14.4,61,84200,0,0,206,0,0,0,0,0,0,0,0,0.0,0,0,48.0,77777,9,999999999,20,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-13.9,64,84300,0,0,207,0,0,0,0,0,0,0,110,2.1,0,0,48.0,77777,9,999999999,20,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-15.0,58,84300,0,0,206,0,0,0,0,0,0,0,180,2.6,0,0,48.0,77777,9,999999999,20,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-15.0,60,84300,0,0,204,0,0,0,0,0,0,0,170,3.1,0,0,48.0,77777,9,999999999,20,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-15.0,67,84400,0,0,200,0,0,0,0,0,0,0,130,2.6,0,0,48.0,77777,9,999999999,20,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-15.6,57,84500,0,0,204,0,0,0,0,0,0,0,160,4.1,0,0,128.0,77777,9,999999999,20,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-16.1,45,84600,74,1164,210,33,359,10,3700,21600,2200,280,170,4.6,0,0,777.7,77777,9,999999999,20,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-16.1,37,84500,285,1411,217,179,758,26,19100,62100,6500,680,150,6.2,0,0,777.7,77777,9,999999999,20,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-15.0,31,84500,460,1411,229,322,870,38,34300,79800,8100,980,150,4.1,1,0,777.7,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-15.6,23,84400,581,1411,240,431,935,45,45700,89100,8800,1170,150,5.7,1,0,777.7,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-15.6,19,84300,639,1411,248,487,974,46,51800,94100,9000,1230,150,3.1,0,0,120.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-15.6,20,84200,629,1411,246,478,970,45,50800,93500,8900,1210,330,3.1,0,0,120.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-15.6,20,84200,553,1411,246,409,939,41,43500,88900,8500,1100,350,3.1,0,0,120.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-11.7,31,84100,415,1411,246,287,864,33,30700,77600,7700,880,350,5.2,0,0,96.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-10.6,37,84100,226,1411,243,133,685,23,14200,52500,5700,580,330,4.6,0,0,88.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-10.0,49,84100,31,764,233,12,192,4,1400,10500,900,140,310,2.6,0,0,88.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-10.0,56,84000,0,0,228,0,0,0,0,0,0,0,310,2.1,0,0,32.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-10.0,65,84000,0,0,222,0,0,0,0,0,0,0,0,0.0,1,0,32.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-10.0,61,84000,0,0,234,0,0,0,0,0,0,0,160,2.1,5,3,32.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-10.0,65,83900,0,0,240,0,0,0,0,0,0,0,160,2.1,9,7,32.0,6706,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-10.0,68,83800,0,0,233,0,0,0,0,0,0,0,190,2.1,8,5,32.0,6706,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-10.0,68,83700,0,0,238,0,0,0,0,0,0,0,120,2.1,10,7,32.0,6706,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-9.4,75,83600,0,0,241,0,0,0,0,0,0,0,0,0.0,10,8,32.0,6706,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-10.0,68,83500,0,0,254,0,0,0,0,0,0,0,0,0.0,10,10,32.0,6706,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-10.0,75,83400,0,0,250,0,0,0,0,0,0,0,290,1.5,10,10,32.0,6706,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-9.4,75,83300,0,0,253,0,0,0,0,0,0,0,200,1.5,10,10,32.0,6096,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-10.0,68,83200,0,0,254,0,0,0,0,0,0,0,170,1.5,10,10,32.0,5486,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-10.0,68,83000,0,0,254,0,0,0,0,0,0,0,120,2.1,10,10,32.0,5486,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-8.9,71,82900,0,0,258,0,0,0,0,0,0,0,140,2.1,10,10,32.0,4572,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-9.4,72,82800,0,0,255,0,0,0,0,0,0,0,340,1.5,10,10,64.0,4572,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-9.4,68,82700,72,1141,250,17,14,16,1900,800,1800,400,340,2.1,9,9,112.0,4572,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-10.0,59,82600,282,1411,254,83,0,83,9100,0,9100,2680,60,1.5,10,9,112.0,3658,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-9.4,59,82700,458,1411,264,121,0,121,13600,0,13600,4420,330,5.7,10,10,112.0,4572,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-10.6,44,82600,579,1411,264,191,66,163,20900,6400,18200,4630,10,2.6,10,9,112.0,4572,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-10.0,47,82600,637,1411,264,425,315,282,45100,31400,30900,6820,70,3.1,10,9,96.0,3962,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-10.6,34,82600,628,1411,277,215,103,169,23600,10400,18900,4060,150,2.1,10,9,96.0,3962,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-11.7,22,82500,552,1411,273,349,651,94,36400,61500,12200,1840,310,2.6,5,2,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-12.2,19,82600,415,1411,300,109,56,92,11900,5000,10400,2520,310,7.7,9,9,96.0,3962,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-15.0,16,82800,226,1411,274,94,206,60,9800,13600,7600,1140,280,8.2,7,4,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-14.4,21,82900,31,764,264,10,46,8,1100,1500,1100,130,310,9.8,4,4,80.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-13.9,23,83000,0,0,262,0,0,0,0,0,0,0,310,8.8,4,4,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-13.9,26,83100,0,0,242,0,0,0,0,0,0,0,300,2.6,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-14.4,25,83200,0,0,241,0,0,0,0,0,0,0,290,4.1,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-12.8,36,83200,0,0,233,0,0,0,0,0,0,0,110,2.1,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-12.8,42,83300,0,0,227,0,0,0,0,0,0,0,0,0.0,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-11.7,53,83400,0,0,223,0,0,0,0,0,0,0,140,2.6,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-12.2,56,83400,0,0,218,0,0,0,0,0,0,0,110,2.6,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-12.8,55,83500,0,0,216,0,0,0,0,0,0,0,160,2.1,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-12.8,58,83500,0,0,214,0,0,0,0,0,0,0,110,3.1,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-13.3,53,83600,0,0,216,0,0,0,0,0,0,0,160,2.6,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-13.3,61,83600,0,0,210,0,0,0,0,0,0,0,150,2.6,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-13.3,61,83700,0,0,210,0,0,0,0,0,0,0,0,0.0,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-15.6,45,83700,0,0,212,0,0,0,0,0,0,0,180,3.1,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-14.4,50,83800,0,0,213,0,0,0,0,0,0,0,190,3.1,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-13.3,48,83800,69,1117,229,18,89,12,2000,3600,1700,200,160,3.6,3,3,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-13.3,33,83800,279,1411,242,133,477,39,14000,36900,6700,730,160,3.6,2,2,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-12.8,26,83900,455,1411,259,312,686,91,32100,61300,12200,1670,190,3.1,3,3,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-13.3,19,83800,577,1411,271,395,775,78,40900,73500,10700,1530,150,3.1,2,2,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-13.9,17,83700,635,1411,277,375,610,100,39400,59300,12600,2060,150,6.7,3,3,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-13.9,17,83600,627,1411,275,419,716,101,44000,69400,13100,2060,160,7.7,2,2,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-13.3,17,83500,551,1411,280,299,427,132,31400,40700,15400,2580,140,8.2,3,3,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-13.3,18,83500,415,1411,275,238,576,69,24800,50600,9800,1300,140,5.2,4,2,112.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-12.8,21,83500,226,1411,272,106,409,41,11000,28600,6300,740,140,3.1,5,3,96.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.8,44,83600,32,764,266,8,27,6,800,900,800,100,360,1.0,6,6,64.0,5486,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.8,48,83600,0,0,262,0,0,0,0,0,0,0,250,1.0,8,6,32.0,7010,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-8.3,49,83500,0,0,253,0,0,0,0,0,0,0,160,1.5,5,4,32.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-8.3,57,83500,0,0,245,0,0,0,0,0,0,0,170,2.6,3,3,32.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-9.4,54,83500,0,0,244,0,0,0,0,0,0,0,120,1.5,4,4,32.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-10.0,54,83500,0,0,242,0,0,0,0,0,0,0,90,2.1,4,4,32.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-10.0,56,83500,0,0,240,0,0,0,0,0,0,0,350,1.0,4,4,32.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-8.3,68,83500,0,0,241,0,0,0,0,0,0,0,290,2.1,6,5,32.0,5182,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-7.8,75,83400,0,0,240,0,0,0,0,0,0,0,200,2.6,5,5,32.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-8.9,65,83400,0,0,245,0,0,0,0,0,0,0,200,2.1,7,7,32.0,4267,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-8.9,65,83400,0,0,243,0,0,0,0,0,0,0,170,1.5,6,6,32.0,3962,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-8.3,68,83300,0,0,246,0,0,0,0,0,0,0,180,2.1,10,7,32.0,4267,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-8.3,68,83300,0,0,243,0,0,0,0,0,0,0,220,1.5,8,6,32.0,3353,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-8.3,79,83300,0,0,226,0,0,0,0,0,0,0,0,0.0,1,1,32.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-8.9,78,83300,0,0,224,0,0,0,0,0,0,0,100,2.1,3,1,48.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-8.3,75,83300,67,1118,228,25,227,12,2800,12400,2000,260,160,2.1,1,1,96.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-8.3,54,83300,276,1412,242,147,553,39,15000,43500,6500,750,0,0.0,1,1,96.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-8.3,42,83300,452,1412,254,286,742,48,30300,67900,8400,1030,340,1.5,1,1,96.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-7.8,39,83200,575,1412,260,396,825,60,41700,78300,9600,1290,20,2.1,1,1,96.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-7.2,35,83100,634,1412,269,438,847,57,46200,81600,9400,1350,10,3.1,1,1,88.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-6.7,35,83000,626,1412,279,412,697,103,43200,67500,13200,2100,20,2.6,3,3,88.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-6.7,35,82900,551,1412,276,349,716,70,36400,67600,9900,1410,10,3.1,2,2,80.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-7.2,34,82900,415,1412,280,237,316,144,24600,28200,16300,3040,60,4.1,4,4,64.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-6.7,43,82900,227,1412,270,105,202,73,10900,13400,8800,1450,350,6.2,4,4,80.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.1,53,82900,32,765,266,8,26,7,900,700,900,110,350,5.2,6,6,64.0,3658,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.6,66,83000,0,0,256,0,0,0,0,0,0,0,360,2.1,7,5,32.0,6096,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.6,68,83100,0,0,256,0,0,0,0,0,0,0,350,1.5,6,6,32.0,3962,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-6.1,72,83100,0,0,243,0,0,0,0,0,0,0,0,0.0,2,2,32.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.7,75,83100,0,0,241,0,0,0,0,0,0,0,320,2.6,3,3,32.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-5.6,72,83100,0,0,257,0,0,0,0,0,0,0,360,2.6,7,7,32.0,1036,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-5.6,72,83100,0,0,261,0,0,0,0,0,0,0,360,2.1,8,8,32.0,975,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-5.6,82,83100,0,0,240,0,0,0,0,0,0,0,140,2.6,2,2,32.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.7,82,83000,0,0,235,0,0,0,0,0,0,0,190,2.1,7,2,24.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-7.2,79,83100,0,0,237,0,0,0,0,0,0,0,180,1.5,10,3,24.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.8,79,83100,0,0,232,0,0,0,0,0,0,0,210,1.5,7,2,24.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-8.3,79,83100,0,0,226,0,0,0,0,0,0,0,210,2.6,3,1,24.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-8.9,83,83100,0,0,222,0,0,0,0,0,0,0,180,2.1,2,1,24.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-9.4,79,83100,0,0,221,0,0,0,0,0,0,0,170,2.6,3,1,24.0,77777,9,999999999,60,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-8.3,79,83100,0,0,229,0,0,0,0,0,0,0,160,3.1,5,2,80.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-8.3,75,83200,65,1094,233,18,57,15,2000,2000,1900,250,180,2.1,8,3,80.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.8,59,83300,273,1412,243,133,370,61,13900,27400,8600,1100,190,4.1,7,2,96.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-8.3,42,83300,450,1412,260,284,614,88,29200,54800,11700,1620,220,3.6,4,3,80.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-9.4,29,83300,573,1412,271,363,690,83,38400,66100,11400,1680,0,0.0,2,2,80.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-11.1,25,83300,632,1412,272,406,608,134,41800,58200,15700,2610,320,4.1,3,3,96.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-13.9,19,83200,625,1412,265,443,845,69,47000,81900,10500,1500,310,9.3,1,1,112.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-15.0,17,83300,551,1412,264,352,740,63,37000,70200,9500,1330,320,8.2,1,1,112.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-15.0,18,83300,415,1412,260,233,562,68,24300,49400,9700,1280,320,8.2,1,1,112.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-15.6,19,83400,227,1412,254,115,481,37,11900,33900,6400,680,320,7.7,1,1,96.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-15.0,25,83400,32,765,239,10,96,6,1100,4100,900,120,340,4.6,0,0,80.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-15.0,27,83500,0,0,235,0,0,0,0,0,0,0,320,2.6,0,0,48.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-14.4,30,83500,0,0,233,0,0,0,0,0,0,0,150,2.6,0,0,40.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-13.9,38,83500,0,0,226,0,0,0,0,0,0,0,150,2.1,0,0,40.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-14.4,38,83600,0,0,224,0,0,0,0,0,0,0,150,2.6,0,0,40.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-16.1,34,83600,0,0,221,0,0,0,0,0,0,0,160,2.6,0,0,40.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-16.7,32,83600,0,0,227,0,0,0,0,0,0,0,160,3.1,2,2,40.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-16.7,32,83500,0,0,230,0,0,0,0,0,0,0,190,4.1,4,3,48.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-17.2,28,83500,0,0,233,0,0,0,0,0,0,0,180,3.6,8,3,48.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-16.7,30,83500,0,0,229,0,0,0,0,0,0,0,180,4.6,2,2,48.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-16.7,35,83500,0,0,226,0,0,0,0,0,0,0,140,2.1,3,3,48.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-17.2,35,83500,0,0,214,0,0,0,0,0,0,0,190,3.1,0,0,48.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-16.7,41,83400,0,0,220,0,0,0,0,0,0,0,140,2.6,4,3,48.0,77777,9,999999999,20,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-16.1,47,83400,0,0,212,0,0,0,0,0,0,0,140,1.5,2,1,48.0,77777,9,999999999,20,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-16.7,39,83400,0,0,222,0,0,0,0,0,0,0,170,3.1,8,3,80.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-16.1,43,83400,63,1071,223,20,41,17,2100,1400,2000,290,320,1.5,9,4,96.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-13.9,41,83400,271,1412,232,114,214,73,12000,15700,9000,1400,260,1.5,8,3,96.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-13.3,32,83400,448,1412,244,270,564,91,27700,50100,11700,1660,340,3.1,5,2,80.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-15.6,23,83400,571,1412,250,329,544,108,34000,51400,13100,2090,300,2.1,4,3,80.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-14.4,23,83400,631,1412,255,404,620,127,41800,59500,15100,2500,350,3.1,7,2,80.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-15.6,18,83300,624,1412,263,418,706,106,43800,68200,13500,2140,10,4.1,4,3,96.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-13.9,20,83200,550,1412,256,385,820,65,40400,77700,10000,1350,360,3.1,0,0,96.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-13.3,21,83200,415,1412,263,255,666,59,26100,58900,8700,1110,310,10.3,1,1,96.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-13.3,21,83300,228,1412,265,115,419,48,11800,29100,7000,840,300,10.3,2,2,80.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-12.8,25,83300,33,788,261,9,40,7,1000,1300,1000,120,300,8.8,3,3,80.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-13.3,26,83400,0,0,254,0,0,0,0,0,0,0,280,6.2,2,2,48.0,77777,9,999999999,30,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-12.8,29,83500,0,0,247,0,0,0,0,0,0,0,280,5.7,1,1,40.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-12.8,31,83500,0,0,241,0,0,0,0,0,0,0,290,6.2,0,0,40.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-13.3,30,83600,0,0,238,0,0,0,0,0,0,0,290,6.2,0,0,40.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-13.3,33,83600,0,0,239,0,0,0,0,0,0,0,190,4.1,1,1,40.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-14.4,40,83600,0,0,237,0,0,0,0,0,0,0,150,2.6,6,6,40.0,4572,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-14.4,41,83600,0,0,225,0,0,0,0,0,0,0,180,3.6,1,1,40.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-15.0,41,83600,0,0,218,0,0,0,0,0,0,0,170,3.1,0,0,48.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-15.0,41,83600,0,0,218,0,0,0,0,0,0,0,170,4.1,0,0,48.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-15.0,39,83600,0,0,220,0,0,0,0,0,0,0,180,4.6,0,0,48.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-15.6,35,83600,0,0,221,0,0,0,0,0,0,0,180,5.2,0,0,48.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-15.6,39,83500,0,0,218,0,0,0,0,0,0,0,180,3.1,0,0,48.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-15.0,48,83600,0,0,213,0,0,0,0,0,0,0,170,2.6,0,0,48.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-14.4,50,83700,0,0,213,0,0,0,0,0,0,0,0,0.0,0,0,80.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-15.0,41,83700,61,1048,218,22,174,11,2300,8100,1800,210,190,2.6,0,0,112.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-13.9,30,83700,268,1412,236,148,577,39,15100,44900,6600,740,220,3.1,1,0,112.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-12.8,25,83700,446,1412,255,282,689,64,28800,61900,9200,1200,190,4.6,3,1,112.0,77777,9,999999999,40,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-11.7,20,83600,569,1412,277,353,598,112,36500,56400,13600,2150,200,2.6,6,2,112.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-11.1,18,83500,630,1412,290,400,670,101,42000,65000,12900,2070,150,2.1,6,3,112.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-10.0,19,83500,624,1412,298,336,419,151,35400,41100,17200,3050,360,4.6,7,4,112.0,8230,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-8.9,23,83500,550,1412,292,317,439,145,32900,41800,16500,2860,310,12.9,6,4,112.0,8230,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-8.3,26,83500,416,1412,290,234,458,100,24500,40200,12600,1870,330,7.7,7,4,112.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-7.8,27,83500,229,1412,291,80,97,65,8800,6900,7600,1380,310,10.3,8,4,96.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-7.8,30,83500,34,789,284,7,23,6,800,600,800,90,310,5.7,7,4,80.0,7620,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-7.8,30,83600,0,0,286,0,0,0,0,0,0,0,260,2.6,8,5,48.0,7620,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-8.3,26,83700,0,0,293,0,0,0,0,0,0,0,280,9.8,9,6,40.0,7620,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-8.3,26,83700,0,0,293,0,0,0,0,0,0,0,290,11.3,9,6,40.0,7620,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-7.8,29,83700,0,0,291,0,0,0,0,0,0,0,290,7.2,9,6,40.0,7620,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-7.8,31,83800,0,0,286,0,0,0,0,0,0,0,290,5.2,8,6,40.0,7620,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-7.2,37,83800,0,0,276,0,0,0,0,0,0,0,270,6.2,7,4,40.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-7.8,41,83800,0,0,264,0,0,0,0,0,0,0,210,4.1,6,3,40.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-8.3,44,83900,0,0,262,0,0,0,0,0,0,0,150,2.1,5,5,48.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-8.9,51,83900,0,0,253,0,0,0,0,0,0,0,200,4.1,6,6,48.0,4572,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-9.4,47,83900,0,0,267,0,0,0,0,0,0,0,180,3.6,9,9,48.0,4572,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-9.4,47,83900,0,0,252,0,0,0,0,0,0,0,160,4.1,10,5,48.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-10.0,45,84000,0,0,251,0,0,0,0,0,0,0,200,2.1,6,5,48.0,3658,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-10.0,49,84000,0,0,252,0,0,0,0,0,0,0,220,3.6,7,7,48.0,3962,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-10.0,41,84100,0,0,265,0,0,0,0,0,0,0,250,4.1,8,8,80.0,3962,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-9.4,43,84200,59,1048,255,18,89,12,1900,3500,1700,200,190,3.6,7,4,80.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-9.4,31,84200,266,1413,276,89,46,80,9700,3700,9000,1910,190,5.7,9,6,80.0,6401,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-8.3,26,84300,444,1413,295,192,282,104,20700,26000,12500,2030,120,3.1,9,6,80.0,6401,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-8.9,22,84300,568,1413,308,234,215,147,25100,21300,16400,3050,160,3.6,9,8,80.0,6401,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-7.8,22,84200,629,1413,305,351,508,125,37800,50000,15400,2480,130,2.6,7,5,80.0,6401,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-7.8,21,84100,623,1413,305,405,613,134,41600,58500,15700,2590,140,2.1,8,4,80.0,6401,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-6.1,26,84100,551,1413,299,332,571,109,34200,53400,13300,2070,40,2.1,5,2,80.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.1,29,84100,416,1413,297,218,426,93,23000,37500,11900,1730,80,2.6,6,4,80.0,6401,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-5.6,33,84100,230,1413,291,109,150,85,11700,10600,9900,1810,100,2.6,6,4,80.0,5486,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-6.1,39,84100,34,789,279,11,46,9,1200,1500,1200,150,90,3.1,8,4,80.0,5486,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.2,46,84200,0,0,258,0,0,0,0,0,0,0,360,2.1,7,2,48.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.7,52,84200,0,0,257,0,0,0,0,0,0,0,190,1.5,3,3,40.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.7,60,84200,0,0,245,0,0,0,0,0,0,0,120,2.6,1,1,40.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.7,62,84200,0,0,239,0,0,0,0,0,0,0,150,2.6,0,0,40.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-7.8,54,84200,0,0,239,0,0,0,0,0,0,0,170,2.1,0,0,40.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.8,59,84200,0,0,235,0,0,0,0,0,0,0,190,2.6,0,0,40.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.8,59,84200,0,0,235,0,0,0,0,0,0,0,190,4.1,0,0,40.0,77777,9,999999999,50,0.0460,0,88,0.220,0.0,1.0 +1994,12,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-7.8,59,84100,0,0,235,0,0,0,0,0,0,0,160,2.1,0,0,40.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.8,71,84100,0,0,228,0,0,0,0,0,0,0,180,1.5,0,0,40.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-8.3,54,84100,0,0,237,0,0,0,0,0,0,0,170,2.1,0,0,40.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-8.3,52,84000,0,0,239,0,0,0,0,0,0,0,180,4.1,0,0,48.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-8.9,51,84000,0,0,237,0,0,0,0,0,0,0,170,3.1,0,0,48.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-9.4,54,83900,0,0,232,0,0,0,0,0,0,0,180,3.6,0,0,48.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-9.4,59,83900,0,0,233,0,0,0,0,0,0,0,190,3.1,1,1,80.0,77777,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-10.0,39,83900,58,1024,248,24,260,9,2600,15100,1700,250,180,4.6,1,1,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-9.4,31,83900,264,1413,267,135,505,40,14000,38000,6900,740,220,2.6,2,2,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-10.0,22,83800,442,1413,279,291,827,32,31100,75300,7400,890,190,4.1,1,1,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-11.7,15,83800,567,1413,291,394,876,43,41900,83200,8400,1130,190,3.1,1,1,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-11.7,12,83600,628,1413,305,444,898,44,47200,86500,8500,1190,210,2.6,1,1,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-13.3,10,83500,623,1413,312,456,854,80,47600,82200,11200,1630,180,2.6,2,2,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,-14.4,9,83400,551,1413,313,403,846,73,41800,79700,10500,1440,130,3.1,3,3,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,-14.4,9,83400,417,1413,313,280,783,49,29300,70000,8600,1010,100,3.1,2,2,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-13.9,10,83400,231,1413,302,124,575,30,12800,42900,5700,600,80,3.1,1,1,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-12.8,16,83300,35,812,281,11,149,5,1300,8200,900,170,70,1.5,1,1,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-13.3,19,83300,0,0,262,0,0,0,0,0,0,0,110,3.6,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-13.3,20,83300,0,0,260,0,0,0,0,0,0,0,180,3.6,0,0,40.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-11.7,30,83200,0,0,248,0,0,0,0,0,0,0,210,2.6,0,0,40.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-11.7,30,83200,0,0,248,0,0,0,0,0,0,0,150,3.1,0,0,40.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-11.7,27,83200,0,0,254,0,0,0,0,0,0,0,190,3.6,0,0,40.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-11.7,30,83100,0,0,256,0,0,0,0,0,0,0,140,2.6,2,2,40.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-11.7,32,83100,0,0,254,0,0,0,0,0,0,0,320,2.6,3,3,40.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-11.1,36,83100,0,0,247,0,0,0,0,0,0,0,160,3.1,3,1,40.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-11.1,34,83100,0,0,244,0,0,0,0,0,0,0,190,3.1,1,0,40.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-11.7,28,83100,0,0,252,0,0,0,0,0,0,0,330,3.6,0,0,40.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-10.0,51,83100,0,0,232,0,0,0,0,0,0,0,190,2.1,0,0,40.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-7.8,33,83200,0,0,264,0,0,0,0,0,0,0,300,13.9,0,0,32.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-12.2,24,83300,0,0,255,0,0,0,0,0,0,0,290,10.3,0,0,32.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-15.6,18,83300,0,0,252,0,0,0,0,0,0,0,280,11.8,0,0,64.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-13.3,23,83200,56,1025,267,19,69,15,2100,2600,1900,260,270,9.8,5,5,80.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-11.1,26,83200,262,1413,284,43,37,36,4900,2800,4300,770,310,11.3,8,8,64.0,3962,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-10.6,25,83300,440,1413,285,126,174,71,13800,16000,8800,1300,310,9.3,7,7,64.0,3962,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-9.4,25,83300,565,1413,284,355,624,105,36800,58900,13100,2030,290,6.7,5,4,80.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-9.4,25,83300,628,1413,279,393,582,135,42000,57200,16500,2700,290,11.8,2,2,80.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-8.9,25,83300,623,1413,285,454,774,112,47200,74600,14200,2240,290,11.3,3,3,80.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-9.4,25,83300,551,1413,279,363,710,86,38100,67300,11800,1710,300,7.7,2,2,80.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-8.3,29,83300,418,1413,281,203,446,71,21100,39200,9400,1330,300,11.8,3,3,80.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-17.2,14,83400,233,1413,259,121,470,43,12400,33200,6900,770,290,9.3,1,1,80.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-16.1,18,83500,36,813,254,10,87,6,1100,3700,900,120,280,7.7,1,1,80.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-15.6,22,83500,0,0,242,0,0,0,0,0,0,0,280,3.6,0,0,48.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-16.7,19,83600,0,0,243,0,0,0,0,0,0,0,250,1.5,0,0,40.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-16.7,20,83600,0,0,247,0,0,0,0,0,0,0,200,2.1,2,2,40.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-16.7,19,83700,0,0,253,0,0,0,0,0,0,0,250,4.1,3,3,40.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-17.2,18,83700,0,0,250,0,0,0,0,0,0,0,250,4.1,2,2,40.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-17.2,19,83800,0,0,240,0,0,0,0,0,0,0,260,3.1,0,0,40.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-16.7,21,83800,0,0,237,0,0,0,0,0,0,0,250,3.6,0,0,40.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-16.7,24,83700,0,0,231,0,0,0,0,0,0,0,220,3.1,0,0,48.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-16.7,29,83700,0,0,224,0,0,0,0,0,0,0,170,2.1,0,0,48.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-15.6,39,83700,0,0,218,0,0,0,0,0,0,0,150,2.1,0,0,40.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-18.9,27,83700,0,0,217,0,0,0,0,0,0,0,160,1.5,0,0,40.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-17.2,32,83700,0,0,218,0,0,0,0,0,0,0,160,2.1,0,0,40.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-16.7,32,83800,0,0,220,0,0,0,0,0,0,0,190,3.6,0,0,48.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-16.7,30,83800,0,0,222,0,0,0,0,0,0,0,190,3.1,0,0,48.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-16.1,31,83800,54,1001,224,18,138,11,2000,6300,1600,210,170,2.1,0,0,96.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-14.4,24,83900,260,1413,243,142,560,39,14400,43000,6500,720,200,3.6,0,0,96.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-12.8,21,83900,439,1413,261,287,750,54,29900,67700,8800,1090,190,3.1,0,0,96.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-11.1,19,83900,564,1413,275,397,832,65,41800,79200,10100,1370,140,2.1,0,0,96.0,77777,9,999999999,30,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-10.6,17,83800,627,1413,284,454,864,70,48000,83800,10700,1510,80,1.5,0,0,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-10.0,18,83800,623,1413,288,450,862,70,47600,83500,10600,1510,360,2.1,0,0,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-9.4,19,83700,552,1413,286,357,744,66,37400,70500,9700,1360,60,2.6,1,0,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-8.9,20,83800,419,1413,286,259,687,54,26700,61200,8500,1070,360,4.6,1,0,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-8.9,22,83800,234,1413,280,122,504,38,12600,36000,6600,700,50,4.1,1,0,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-8.9,31,83800,37,813,261,11,93,7,1200,4000,1100,140,110,2.6,0,0,80.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-8.9,37,83900,0,0,252,0,0,0,0,0,0,0,180,2.6,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-8.3,40,83900,0,0,251,0,0,0,0,0,0,0,150,2.6,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-8.9,43,84000,0,0,244,0,0,0,0,0,0,0,140,2.1,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-8.9,43,84000,0,0,244,0,0,0,0,0,0,0,170,2.6,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-9.4,47,84000,0,0,238,0,0,0,0,0,0,0,150,2.1,1,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-8.9,56,84100,0,0,233,0,0,0,0,0,0,0,140,2.6,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-10.0,41,84100,0,0,242,0,0,0,0,0,0,0,160,4.1,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-10.6,44,84100,0,0,235,0,0,0,0,0,0,0,180,1.5,0,0,40.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-10.6,46,84100,0,0,233,0,0,0,0,0,0,0,180,2.1,0,0,40.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-10.6,46,84100,0,0,233,0,0,0,0,0,0,0,150,2.1,0,0,40.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-11.7,44,84100,0,0,230,0,0,0,0,0,0,0,200,2.6,0,0,40.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-12.2,42,84100,0,0,230,0,0,0,0,0,0,0,170,2.1,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-12.8,40,84100,0,0,229,0,0,0,0,0,0,0,150,2.1,0,0,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-11.1,49,84100,0,0,229,0,0,0,0,0,0,0,150,2.1,0,0,64.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-11.1,37,84200,53,978,240,20,195,9,2200,10400,1600,210,180,3.1,0,0,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-10.6,31,84200,258,1414,253,148,634,32,15600,50300,6400,670,200,5.2,0,0,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-10.0,24,84300,437,1414,270,294,807,44,31100,73100,8400,1010,210,4.1,0,0,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-10.0,18,84200,564,1414,285,404,881,53,42700,83500,9300,1240,180,4.1,0,0,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-13.3,11,84200,627,1414,293,461,910,57,48600,87500,9600,1340,150,3.1,0,0,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,-13.9,10,84200,623,1414,297,457,908,57,48300,87200,9600,1340,290,1.5,0,0,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-13.9,10,84100,553,1414,294,395,876,52,41700,82700,9200,1220,90,3.6,0,0,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,-14.4,10,84200,420,1414,294,279,795,43,29600,71400,8200,980,70,2.1,0,0,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-13.9,11,84200,236,1414,290,130,587,32,13300,44000,6000,630,160,1.5,1,0,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-13.3,16,84200,38,836,276,13,87,9,1400,3700,1200,170,130,2.1,5,1,80.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-12.2,23,84200,0,0,264,0,0,0,0,0,0,0,130,2.1,4,1,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-11.7,27,84300,0,0,258,0,0,0,0,0,0,0,180,2.1,3,1,48.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-12.8,25,84300,0,0,251,0,0,0,0,0,0,0,180,3.6,2,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-11.7,29,84400,0,0,254,0,0,0,0,0,0,0,180,3.6,4,1,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-12.2,30,84400,0,0,250,0,0,0,0,0,0,0,190,3.6,2,1,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-11.7,31,84400,0,0,246,0,0,0,0,0,0,0,190,3.6,3,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-12.2,29,84400,0,0,247,0,0,0,0,0,0,0,180,4.1,1,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-12.2,30,84400,0,0,245,0,0,0,0,0,0,0,170,1.5,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-12.2,31,84500,0,0,243,0,0,0,0,0,0,0,180,4.1,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-12.2,30,84400,0,0,245,0,0,0,0,0,0,0,190,5.2,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-13.9,26,84400,0,0,243,0,0,0,0,0,0,0,200,4.6,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-13.9,28,84500,0,0,240,0,0,0,0,0,0,0,190,4.1,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-11.7,40,84600,0,0,239,0,0,0,0,0,0,0,150,3.1,1,1,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-12.2,38,84700,0,0,241,0,0,0,0,0,0,0,170,2.1,2,2,64.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-11.7,37,84700,52,978,248,19,116,13,2000,5200,1700,240,190,1.5,4,3,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-11.1,28,84800,256,1414,263,132,522,37,13400,40000,6100,700,200,2.1,2,2,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-11.7,22,84900,436,1414,264,304,883,32,32600,80100,7700,880,180,3.6,0,0,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-11.7,18,84800,563,1414,275,415,946,38,44200,89800,8300,1060,210,2.6,0,0,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-13.3,15,84700,627,1414,277,472,970,42,50300,93500,8700,1160,230,2.1,0,0,112.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-12.2,15,84600,624,1414,283,469,969,41,49900,93300,8600,1140,60,1.0,0,0,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-11.7,16,84500,554,1414,283,407,943,38,43500,89300,8300,1050,140,2.6,0,0,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-11.1,17,84500,422,1414,284,288,855,33,30800,77000,7700,890,80,3.6,1,0,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-11.1,17,84500,238,1414,287,127,586,28,13400,45500,5700,630,110,1.5,3,1,96.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-10.6,23,84500,39,837,269,16,204,6,1800,11400,1200,190,80,1.5,4,0,80.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-10.0,35,84600,0,0,249,0,0,0,0,0,0,0,110,2.6,3,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-10.6,36,84600,0,0,245,0,0,0,0,0,0,0,110,3.1,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-11.1,41,84600,0,0,236,0,0,0,0,0,0,0,130,2.6,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-10.0,47,84600,0,0,236,0,0,0,0,0,0,0,140,3.1,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-11.1,44,84500,0,0,233,0,0,0,0,0,0,0,180,2.1,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-11.1,41,84500,0,0,236,0,0,0,0,0,0,0,190,3.1,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-11.7,40,84500,0,0,234,0,0,0,0,0,0,0,150,2.6,0,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-11.7,42,84400,0,0,232,0,0,0,0,0,0,0,150,3.1,3,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-11.1,53,84300,0,0,225,0,0,0,0,0,0,0,160,3.1,2,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-11.1,42,84300,0,0,235,0,0,0,0,0,0,0,170,3.1,3,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-12.2,42,84300,0,0,230,0,0,0,0,0,0,0,270,1.5,6,0,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-12.2,48,84200,0,0,228,0,0,0,0,0,0,0,230,1.5,9,1,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-10.0,65,84200,0,0,227,0,0,0,0,0,0,0,160,2.6,9,1,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-10.0,59,84200,0,0,230,0,0,0,0,0,0,0,150,2.1,10,1,32.0,77777,9,999999999,40,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-9.4,59,84200,51,954,264,11,0,11,1300,0,1300,400,160,2.1,10,10,80.0,7620,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-8.3,52,84200,255,1414,276,69,0,69,7600,0,7600,2270,180,1.5,10,10,96.0,7620,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-9.4,38,84200,435,1414,286,123,0,123,13700,0,13700,4340,190,1.5,10,10,96.0,6706,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-9.4,34,84100,562,1414,293,162,0,162,18200,0,18200,6020,340,1.5,10,10,96.0,6706,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-8.9,31,84000,627,1414,301,181,0,181,20400,0,20400,6910,340,1.5,10,10,64.0,6706,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-10.0,26,83900,624,1414,307,181,0,181,20400,0,20400,6890,330,1.5,10,10,56.0,6096,9,999999999,50,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-10.6,23,83900,555,1414,308,159,0,159,17900,0,17900,5900,290,1.0,10,10,56.0,6096,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-10.6,23,83800,423,1414,308,119,0,119,13300,0,13300,4190,360,1.0,10,10,64.0,5486,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-10.0,28,83800,240,1414,302,65,0,65,7200,0,7200,2120,130,1.5,10,10,64.0,5486,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-10.0,31,83800,40,860,286,6,8,6,800,300,700,120,90,2.1,10,9,64.0,5486,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-8.9,41,83800,0,0,284,0,0,0,0,0,0,0,80,1.5,10,10,24.0,5486,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-8.3,47,83800,0,0,281,0,0,0,0,0,0,0,180,1.5,10,10,24.0,5182,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-9.4,41,83800,0,0,281,0,0,0,0,0,0,0,120,2.1,10,10,24.0,5182,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-8.3,47,83700,0,0,281,0,0,0,0,0,0,0,140,1.5,10,10,24.0,4267,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.8,48,83700,0,0,283,0,0,0,0,0,0,0,160,2.1,10,10,32.0,4267,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-8.3,44,83600,0,0,285,0,0,0,0,0,0,0,0,0.0,10,10,32.0,4267,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-8.9,29,83500,0,0,306,0,0,0,0,0,0,0,130,5.2,10,10,32.0,3658,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-7.8,32,83500,0,0,307,0,0,0,0,0,0,0,150,4.6,10,10,32.0,3962,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-6.7,35,83500,0,0,283,0,0,0,0,0,0,0,170,5.7,10,5,32.0,77777,9,999999999,80,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-7.8,39,83500,0,0,271,0,0,0,0,0,0,0,340,4.1,10,5,32.0,77777,9,999999999,80,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-8.9,51,83500,0,0,249,0,0,0,0,0,0,0,330,2.6,10,4,32.0,77777,9,999999999,80,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-8.3,54,83500,0,0,245,0,0,0,0,0,0,0,0,0.0,10,2,32.0,77777,9,999999999,80,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.8,62,83600,0,0,246,0,0,0,0,0,0,0,140,2.1,5,4,32.0,77777,9,999999999,80,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.8,62,83600,0,0,250,0,0,0,0,0,0,0,170,3.1,9,6,48.0,3048,9,999999999,80,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-7.8,57,83600,50,955,261,20,46,18,2200,1400,2100,310,170,2.6,9,8,80.0,3353,9,999999999,80,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-7.8,41,83600,253,1414,268,123,227,82,12700,16000,9900,1640,200,3.6,9,5,72.0,7620,9,999999999,80,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-8.3,30,83700,434,1414,281,231,481,83,23800,42500,10600,1530,180,3.1,8,4,80.0,7620,9,999999999,80,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-7.2,25,83600,562,1414,307,200,198,120,21600,19600,13800,2390,190,3.1,7,7,96.0,4572,9,999999999,80,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,-5.6,26,83500,627,1414,321,339,221,241,36400,22000,26600,5800,0,0.0,8,8,96.0,4572,9,999999999,80,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-5.6,22,83400,625,1414,319,166,195,79,18600,19300,10000,1510,130,2.1,5,5,96.0,77777,9,999999999,80,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-5.0,24,83400,556,1414,318,359,656,101,37300,61800,12900,1960,90,4.6,4,4,96.0,77777,9,999999999,80,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-5.0,24,83500,425,1414,309,252,656,55,26100,58600,8400,1090,70,5.2,2,2,96.0,77777,9,999999999,80,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-5.0,26,83400,242,1414,308,138,522,49,14100,37200,7700,860,80,4.1,3,3,96.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-5.0,31,83500,41,884,290,16,158,8,1700,8100,1300,190,130,1.5,1,1,80.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-6.7,35,83500,0,0,267,0,0,0,0,0,0,0,340,2.1,0,0,48.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-6.7,38,83500,0,0,263,0,0,0,0,0,0,0,10,2.1,0,0,32.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.1,53,83500,0,0,254,0,0,0,0,0,0,0,120,2.1,1,1,24.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.7,54,83600,0,0,249,0,0,0,0,0,0,0,0,0.0,1,1,24.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.1,55,83600,0,0,252,0,0,0,0,0,0,0,200,2.6,1,1,32.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.6,58,83600,0,0,260,0,0,0,0,0,0,0,210,3.1,4,4,32.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-5.6,55,83500,0,0,260,0,0,0,0,0,0,0,180,3.1,3,3,32.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-6.1,60,83500,0,0,253,0,0,0,0,0,0,0,150,2.1,3,3,32.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-5.6,66,83600,0,0,249,0,0,0,0,0,0,0,180,2.1,2,2,32.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-5.6,68,83600,0,0,252,0,0,0,0,0,0,0,120,3.1,5,4,32.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-6.7,68,83600,0,0,247,0,0,0,0,0,0,0,150,2.6,5,4,32.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.1,66,83600,0,0,256,0,0,0,0,0,0,0,170,2.6,6,6,32.0,2743,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.1,53,83600,0,0,266,0,0,0,0,0,0,0,170,2.6,7,6,48.0,2743,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.1,51,83600,0,0,268,0,0,0,0,0,0,0,180,4.6,6,6,64.0,2743,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-6.1,47,83600,49,955,272,13,67,9,1400,2500,1300,150,190,4.1,6,6,112.0,2743,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-6.1,40,83700,252,1414,289,113,52,104,12300,4200,11600,2220,190,4.1,8,8,128.0,2743,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-6.1,35,83800,434,1414,291,202,287,114,21500,26100,13500,2270,190,4.6,6,6,120.0,2743,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-6.1,28,83700,562,1414,302,282,512,79,29900,48900,10400,1600,190,3.6,5,5,120.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,-6.7,21,83600,627,1414,315,332,373,166,35600,37800,18800,3540,200,2.6,5,5,120.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-7.8,18,83600,626,1414,320,388,654,98,40800,63500,12600,2010,140,1.5,6,6,112.0,2591,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-6.7,20,83500,558,1414,310,396,838,65,41600,79600,10100,1360,100,3.1,2,2,112.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-6.1,24,83500,427,1414,311,202,358,94,21300,31800,11700,1750,140,4.1,5,5,112.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-5.0,25,83500,244,1414,318,56,109,37,6100,7600,4800,640,130,4.6,6,6,112.0,3048,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,-5.0,30,83600,43,884,306,11,62,8,1300,2200,1200,130,130,4.6,6,6,96.0,3048,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-5.0,34,83600,0,0,302,0,0,0,0,0,0,0,120,5.2,7,7,48.0,3353,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-5.0,37,83600,0,0,302,0,0,0,0,0,0,0,130,4.1,8,8,48.0,3353,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-5.6,38,83700,0,0,289,0,0,0,0,0,0,0,200,3.6,6,6,48.0,3353,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,-5.6,41,83700,0,0,292,0,0,0,0,0,0,0,160,2.6,8,8,48.0,3353,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-6.1,40,83800,0,0,282,0,0,0,0,0,0,0,0,0.0,6,6,48.0,3353,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-6.7,45,83800,0,0,272,0,0,0,0,0,0,0,190,3.1,6,6,48.0,3353,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-6.7,46,83800,0,0,268,0,0,0,0,0,0,0,170,2.1,5,5,48.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.7,52,83800,0,0,261,0,0,0,0,0,0,0,190,3.1,5,5,48.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.7,52,83800,0,0,271,0,0,0,0,0,0,0,200,2.6,8,8,48.0,3353,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-6.1,55,83800,0,0,267,0,0,0,0,0,0,0,200,3.6,7,7,48.0,3353,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.1,53,83800,0,0,274,0,0,0,0,0,0,0,210,3.1,8,8,48.0,3353,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.1,53,83800,0,0,269,0,0,0,0,0,0,0,200,3.6,7,7,48.0,3353,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-6.7,48,83800,0,0,281,0,0,0,0,0,0,0,190,4.1,9,9,48.0,3353,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.7,50,83900,0,0,269,0,0,0,0,0,0,0,180,3.6,7,7,64.0,3353,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.2,46,83900,48,931,274,7,6,7,800,300,800,190,190,4.6,8,8,80.0,3353,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-6.7,45,83900,251,1414,267,117,312,62,12200,22100,8200,1130,190,4.1,4,4,80.0,77777,9,999999999,69,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-6.7,34,83900,433,1414,274,263,721,42,27800,65200,7800,990,190,4.1,1,1,96.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-5.6,31,83900,562,1414,286,388,869,43,41300,82400,8400,1130,170,2.1,1,1,96.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-5.6,27,83700,628,1414,295,442,899,43,47100,86600,8400,1180,200,1.5,1,1,96.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-5.6,25,83600,627,1414,300,439,893,43,46700,86000,8400,1180,60,2.1,1,1,96.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-5.6,25,83600,559,1414,300,387,849,51,40900,80400,9000,1210,360,1.5,1,1,96.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,-6.1,23,83600,429,1414,302,273,746,47,28800,67300,8300,990,350,2.1,1,1,96.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,-6.1,24,83600,246,1414,299,133,603,28,14100,47300,5800,640,50,2.1,1,1,96.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-6.1,33,83600,44,908,279,18,223,7,2000,12600,1400,210,360,2.6,1,1,64.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.8,-6.1,35,83700,0,0,284,0,0,0,0,0,0,0,60,1.5,3,3,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-6.1,42,83700,0,0,261,0,0,0,0,0,0,0,170,2.1,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-6.7,41,83700,0,0,258,0,0,0,0,0,0,0,150,3.1,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.2,-7.2,46,83700,0,0,250,0,0,0,0,0,0,0,180,3.1,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-7.2,48,83700,0,0,248,0,0,0,0,0,0,0,180,2.6,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.2,52,83800,0,0,244,0,0,0,0,0,0,0,190,3.6,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-7.2,48,83700,0,0,248,0,0,0,0,0,0,0,160,4.1,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.8,48,83600,0,0,245,0,0,0,0,0,0,0,180,4.6,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-8.3,49,83600,0,0,241,0,0,0,0,0,0,0,170,3.1,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-7.8,49,83600,0,0,244,0,0,0,0,0,0,0,170,4.1,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-9.4,43,83600,0,0,242,0,0,0,0,0,0,0,170,4.1,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-9.4,47,83600,0,0,238,0,0,0,0,0,0,0,170,3.1,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-9.4,59,83700,0,0,229,0,0,0,0,0,0,0,340,1.0,0,0,64.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-9.4,65,83800,0,0,225,0,0,0,0,0,0,0,230,2.1,0,0,128.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-8.9,56,83800,47,931,233,15,117,9,1600,5200,1400,170,190,3.6,0,0,112.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.8,48,83900,250,1415,245,133,536,38,13500,40600,6200,700,180,4.1,0,0,112.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-7.2,38,84000,432,1415,260,278,733,54,28900,65900,8700,1080,170,2.6,0,0,112.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-7.8,29,84000,562,1415,272,390,819,65,41100,77900,10000,1360,170,3.1,0,0,112.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-8.3,24,83900,628,1415,281,449,853,70,47500,82700,10600,1510,160,3.1,0,0,112.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-8.9,20,83800,628,1415,286,449,853,70,47500,82700,10600,1510,90,2.6,0,0,112.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,-8.3,21,83700,561,1415,287,389,818,65,41000,77800,10000,1360,90,4.6,0,0,112.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,-7.8,23,83700,431,1415,286,277,732,54,28800,65700,8700,1080,100,5.7,0,0,112.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-7.8,26,83800,249,1415,279,132,534,38,13400,40400,6200,700,80,5.2,0,0,112.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-6.1,36,83800,46,931,270,14,114,9,1600,5100,1300,170,90,3.1,0,0,64.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-6.7,40,83900,0,0,261,0,0,0,0,0,0,0,90,3.1,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-6.7,46,83900,0,0,252,0,0,0,0,0,0,0,160,2.6,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.7,50,83900,0,0,248,0,0,0,0,0,0,0,140,2.1,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-6.7,54,84000,0,0,245,0,0,0,0,0,0,0,150,2.1,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-7.2,65,84000,0,0,234,0,0,0,0,0,0,0,130,2.6,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-7.2,69,83900,0,0,232,0,0,0,0,0,0,0,150,3.1,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-7.2,72,83900,0,0,230,0,0,0,0,0,0,0,160,2.1,0,0,48.0,77777,9,999999999,60,0.0450,0,88,0.220,0.0,1.0 +1994,12,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.8,71,83900,0,0,228,0,0,0,0,0,0,0,170,2.1,0,0,40.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-7.8,75,83900,0,0,226,0,0,0,0,0,0,0,170,2.6,0,0,40.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-7.8,71,83800,0,0,228,0,0,0,0,0,0,0,180,2.6,0,0,48.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-7.8,75,83800,0,0,226,0,0,0,0,0,0,0,0,0.0,0,0,48.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.8,86,83800,0,0,221,0,0,0,0,0,0,0,170,2.1,0,0,48.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.8,79,83800,0,0,224,0,0,0,0,0,0,0,200,1.5,0,0,48.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-8.3,79,83800,0,0,222,0,0,0,0,0,0,0,220,2.6,0,0,96.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-8.3,65,83800,46,931,230,19,265,6,2200,15100,1400,200,160,2.6,0,0,112.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-7.8,48,83900,249,1415,245,149,717,23,16000,56600,5900,610,180,2.1,0,0,112.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-7.2,38,83800,432,1415,265,277,756,46,29300,68300,8300,1020,220,2.6,1,1,112.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,-8.3,30,83700,562,1415,273,397,902,38,42300,85600,8100,1050,200,2.6,1,1,112.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-8.3,25,83500,629,1415,284,430,809,70,45500,78500,10500,1510,300,1.5,1,1,112.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-8.3,24,83400,630,1415,286,432,872,44,46000,84000,8400,1190,350,2.6,1,1,112.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-6.1,29,83400,563,1415,295,384,704,104,39900,66400,13300,2010,10,4.6,3,3,80.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,-5.6,30,83400,434,1415,293,266,691,54,27700,62100,8500,1080,360,5.7,2,2,80.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.9,-4.4,37,83400,251,1415,290,130,484,44,13400,35400,7100,800,360,5.2,3,3,80.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-5.6,42,83400,48,931,269,15,160,7,1700,8500,1300,170,10,3.1,1,1,64.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.7,-6.1,53,83400,0,0,249,0,0,0,0,0,0,0,320,2.1,1,0,48.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-5.6,62,83400,0,0,243,0,0,0,0,0,0,0,170,1.5,0,0,48.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.6,58,83400,0,0,247,0,0,0,0,0,0,0,180,3.1,0,0,32.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-6.1,63,83400,0,0,241,0,0,0,0,0,0,0,170,2.6,0,0,32.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-6.1,66,83400,0,0,239,0,0,0,0,0,0,0,150,2.6,0,0,32.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.7,-6.1,69,83400,0,0,237,0,0,0,0,0,0,0,160,1.5,0,0,32.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-6.1,72,83300,0,0,235,0,0,0,0,0,0,0,200,2.1,0,0,32.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-6.1,79,83200,0,0,231,0,0,0,0,0,0,0,180,2.1,0,0,32.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.8,-6.1,76,83200,0,0,233,0,0,0,0,0,0,0,200,1.5,0,0,32.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.7,79,83200,0,0,233,0,0,0,0,0,0,0,130,2.6,3,1,40.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-7.8,79,83200,0,0,232,0,0,0,0,0,0,0,350,2.1,2,2,32.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.7,86,83300,0,0,235,0,0,0,0,0,0,0,0,0.0,5,3,32.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.7,86,83300,0,0,233,0,0,0,0,0,0,0,180,1.5,4,2,32.0,77777,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.7,79,83300,0,0,245,0,0,0,0,0,0,0,0,0.0,8,6,80.0,6096,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-6.7,79,83300,46,908,257,11,10,11,1300,500,1200,280,120,1.5,10,9,88.0,6096,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.0,61,83300,249,1415,286,63,0,63,7000,0,7000,2120,120,1.5,10,10,88.0,6096,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-6.1,47,83400,432,1415,286,161,26,153,17600,1900,17000,4880,0,0.0,9,9,112.0,6096,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-7.2,40,83300,562,1415,289,314,57,291,34200,5700,31900,6690,0,0.0,9,9,112.0,6096,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.7,-7.8,32,83300,630,1415,307,179,0,179,20200,0,20200,6880,80,2.1,10,10,112.0,6096,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.6,-3.9,49,83300,631,1415,307,143,0,143,16500,0,16500,5890,10,6.7,10,10,96.0,2438,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-4.4,51,83300,565,1415,301,127,0,127,14600,0,14600,5100,350,3.1,10,10,96.0,2896,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-5.0,46,83300,436,1415,288,245,174,192,26000,15800,21100,4320,330,2.6,10,8,96.0,2896,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,4.4,-5.0,48,83300,254,1415,281,108,100,90,11500,7400,10200,1930,0,0.0,9,7,64.0,2896,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-5.6,49,83300,50,955,287,16,7,16,1800,400,1800,390,150,3.6,10,9,48.0,6096,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-4.4,55,83400,0,0,296,0,0,0,0,0,0,0,130,2.1,10,10,32.0,3048,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.9,-5.0,50,83500,0,0,298,0,0,0,0,0,0,0,130,2.1,10,10,32.0,2743,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.3,-5.0,52,83500,0,0,295,0,0,0,0,0,0,0,200,2.1,10,10,32.0,2743,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.8,-5.0,54,83500,0,0,293,0,0,0,0,0,0,0,70,5.2,10,10,24.0,2286,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-3.3,73,83600,0,0,268,0,0,0,0,0,0,0,70,3.1,10,7,24.0,3658,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.6,-2.2,80,83600,0,0,287,0,0,0,0,0,0,0,360,3.6,10,10,16.0,1402,9,999999999,69,0.0440,0,88,0.220,0.0,1.0 +1994,12,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.7,87,83600,0,0,285,0,0,0,0,0,0,0,350,3.6,10,10,9.6,305,9,999999999,69,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,0.0,-1.1,91,83600,0,0,286,0,0,0,0,0,0,0,360,3.1,10,10,8.0,274,9,999999999,69,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-0.6,-1.1,96,83600,0,0,283,0,0,0,0,0,0,0,360,3.6,10,10,6.4,122,9,999999999,69,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-1.1,-1.7,95,83600,0,0,280,0,0,0,0,0,0,0,20,4.1,10,10,4.0,152,9,999999999,69,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-2.2,-3.9,87,83500,0,0,274,0,0,0,0,0,0,0,30,4.6,10,10,6.4,152,9,999999999,69,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.6,86,83600,0,0,265,0,0,0,0,0,0,0,10,5.2,10,10,9.6,152,9,999999999,69,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.7,82,83600,0,0,262,0,0,0,0,0,0,0,360,4.1,10,10,8.0,152,9,999999999,69,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.6,90,83600,0,0,263,0,0,0,0,0,0,0,330,4.6,10,10,3.2,152,9,999999999,69,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.0,95,83600,45,908,264,4,0,4,500,0,500,160,330,3.6,10,10,1.6,122,9,999999999,69,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.0,95,83600,248,1415,264,26,0,26,3100,0,3100,1050,360,4.1,10,10,3.2,152,9,999999999,69,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-4.4,96,83600,432,1415,266,54,0,54,6400,0,6400,2300,350,4.6,10,10,1.6,183,9,999999999,69,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-4.4,91,83600,563,1415,269,76,0,76,9100,0,9100,3370,360,3.6,10,10,3.2,183,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.0,91,83500,631,1415,266,89,0,89,10600,0,10600,4020,360,3.1,10,10,3.2,183,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.0,91,83400,633,1415,266,89,0,89,10600,0,10600,4020,350,3.1,10,10,1.6,152,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.3,-5.0,87,83400,567,1415,268,77,0,77,9200,0,9200,3420,350,3.1,10,10,4.8,152,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.0,91,83400,439,1415,266,55,0,55,6500,0,6500,2350,360,4.6,10,10,6.4,152,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.0,91,83500,257,1415,266,32,0,32,3800,0,3800,1270,360,4.1,10,10,3.2,213,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.0,91,83500,52,979,266,6,0,6,700,0,700,240,40,3.1,10,10,3.2,213,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.9,-5.6,86,83500,0,0,265,0,0,0,0,0,0,0,30,2.6,10,10,1.6,183,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-5.6,90,83600,0,0,263,0,0,0,0,0,0,0,20,2.1,10,10,3.2,183,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-4.4,-6.1,86,83600,0,0,263,0,0,0,0,0,0,0,40,2.6,10,10,6.4,1006,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.0,-6.1,91,83600,0,0,260,0,0,0,0,0,0,0,60,4.1,10,10,3.2,610,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-5.6,-7.8,83,83600,0,0,256,0,0,0,0,0,0,0,60,4.1,10,10,6.4,610,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.1,-7.8,86,83600,0,0,255,0,0,0,0,0,0,0,70,5.2,10,10,4.8,914,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-6.7,-8.3,87,83700,0,0,252,0,0,0,0,0,0,0,50,3.1,10,10,4.8,1676,9,999999999,60,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.2,-8.9,86,83600,0,0,249,0,0,0,0,0,0,0,60,3.6,10,10,4.8,1676,9,999999999,50,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-7.8,-9.4,87,83700,0,0,247,0,0,0,0,0,0,0,30,3.1,10,10,4.0,1524,9,999999999,50,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-10.6,86,83800,0,0,241,0,0,0,0,0,0,0,30,3.6,10,10,4.8,914,9,999999999,50,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-10.6,86,83800,0,0,241,0,0,0,0,0,0,0,40,3.1,10,10,6.4,975,9,999999999,50,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-11.1,86,83800,0,0,239,0,0,0,0,0,0,0,80,3.6,10,10,4.8,975,9,999999999,50,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-11.1,86,83800,0,0,239,0,0,0,0,0,0,0,80,3.1,10,10,2.0,457,9,999999999,50,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-11.1,86,83900,0,0,239,0,0,0,0,0,0,0,50,2.6,10,10,4.0,762,9,999999999,50,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-11.7,86,84000,45,908,230,9,10,8,1000,400,1000,160,20,2.6,9,9,6.4,1981,9,999999999,50,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.9,-11.1,82,84000,248,1415,229,91,86,76,9800,6300,8700,1620,80,3.1,10,8,2.4,671,9,999999999,50,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-11.7,74,84100,432,1415,227,239,206,176,25400,18700,19700,3950,60,3.1,10,7,6.4,1372,9,999999999,50,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-12.8,74,84100,564,1415,216,387,717,101,40200,67800,13100,1970,50,3.1,5,4,9.6,77777,9,999999999,40,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-12.8,67,84000,633,1415,220,414,644,125,42800,61900,15000,2470,80,3.6,4,4,19.2,77777,9,999999999,40,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-13.3,64,84000,635,1415,220,271,229,168,29100,23300,18600,3600,40,3.6,4,4,19.2,77777,9,999999999,40,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-8.3,-12.8,67,84000,569,1415,222,378,652,115,38900,61300,14100,2190,120,3.1,5,5,16.0,77777,9,999999999,40,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-9.4,-12.8,74,84000,441,1415,220,197,144,152,21200,13200,17000,3420,70,3.6,6,6,16.0,457,9,999999999,40,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.0,-13.3,74,84100,260,1415,220,80,209,41,8600,15200,5800,720,80,2.6,7,7,19.2,701,9,999999999,40,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-10.6,-13.3,78,84100,54,979,222,14,36,12,1600,1200,1500,200,80,2.6,8,8,16.0,488,9,999999999,40,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-12.8,-14.4,86,84200,0,0,201,0,0,0,0,0,0,0,100,3.1,2,2,24.0,77777,9,999999999,30,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.9,-15.6,86,84200,0,0,194,0,0,0,0,0,0,0,140,2.1,1,1,24.0,77777,9,999999999,30,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-13.3,-15.0,86,84200,0,0,196,0,0,0,0,0,0,0,190,2.1,5,1,24.0,77777,9,999999999,30,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-15.0,-16.7,85,84200,0,0,194,0,0,0,0,0,0,0,120,2.1,3,3,16.0,77777,9,999999999,30,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-16.1,-17.8,85,84100,0,0,186,0,0,0,0,0,0,0,110,2.6,1,1,16.0,77777,9,999999999,30,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-18.3,-20.0,85,84100,0,0,174,0,0,0,0,0,0,0,320,2.1,0,0,12.8,77777,9,999999999,30,0.0440,0,88,0.220,0.0,1.0 +1994,12,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-19.4,-21.7,80,84100,0,0,173,0,0,0,0,0,0,0,0,0.0,1,1,9.6,77777,9,999999999,30,0.0440,0,88,0.220,0.0,1.0 diff --git a/example_files/weather/USA_CO_Denver.Intl.AP.725650_TMY3.stat b/example_files/weather/USA_CO_Denver.Intl.AP.725650_TMY3.stat new file mode 100644 index 00000000..b0bc1378 --- /dev/null +++ b/example_files/weather/USA_CO_Denver.Intl.AP.725650_TMY3.stat @@ -0,0 +1,554 @@ + -EnergyPlus Weather Converter V7.2.0.007 + Statistics for USA_CO_Denver.Intl.AP.725650_TMY3 + Location -- Denver Intl Ap CO USA + {N 39° 49'} {W 104° 39'} {GMT -7.0 Hours} + Elevation -- 1650m above sea level + Standard Pressure at Elevation -- 83011Pa + Data Source -- TMY3 + + WMO Station 725650 + + - Displaying Design Conditions from "Climate Design Data 2009 ASHRAE Handbook" + - ASHRAE design conditions are carefully generated from a period of record + - (typically 30 years) to be representative of that location and to be suitable + - for use in heating/cooling load calculations. + + Design Stat ColdestMonth DB996 DB990 DP996 HR_DP996 DB_DP996 DP990 HR_DP990 DB_DP990 WS004c DB_WS004c WS010c DB_WS010c WS_DB996 WD_DB996 + Units {} {°C} {°C} {°C} {} {°C} {°C} {} {°C} {m/s} {°C} {m/s} {°C} {m/s} {deg} + Heating 12 -17.4 -14 -21.5 0.7 -11.7 -18.9 0.9 -6.9 14.1 1.8 12 2.4 3.3 160 + + Design Stat HottestMonth DBR DB004 WB_DB004 DB010 WB_DB010 DB020 WB_DB020 WB004 DB_WB004 WB010 DB_WB010 WB020 DB_WB020 WS_DB004 WD_DB004 DP004 HR_DP004 DB_DP004 DP010 HR_DP010 DB_DP010 DP020 HR_DP020 DB_DP020 EN004 DB_EN004 EN010 DB_EN010 EN020 DB_EN020 #Hrs_8-4_&_DB-12.8/20.6 + Units {} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {m/s} {deg} {°C} {} {°C} {°C} {} {°C} {°C} {} {°C} {kJ/kg} {°C} {kJ/kg} {°C} {kJ/kg} {°C} {} + Cooling 7 15.2 34.6 15.7 33.2 15.6 31.8 15.4 18.3 27.3 17.6 27 17 26.5 4.2 80 16 14 19.9 15.2 13.2 19.7 14.1 12.3 19.6 58.3 27 55.9 26.9 53.8 26.3 722 + + Design Stat WS010 WS025 WS050 WBmax DBmin_mean DBmax_mean DBmin_stddev DBmax_stddev DBmin05years DBmax05years DBmin10years DBmax10years DBmin20years DBmax20years DBmin50years DBmax50years + Units {m/s} {m/s} {m/s} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} + Extremes 11.9 10.4 8.8 20.7 -22.7 37.1 2.8 1.3 -24.7 38 -26.3 38.8 -27.9 39.5 -29.9 40.5 + + - Displaying Monthly Design Conditions "Climate Design Data 2009 ASHRAE Handbook" + - Monthly Optical Sky Depth Beam (taub) and Diffuse (taud) + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + taub (beam) 0.251 0.276 0.303 0.368 0.382 0.399 0.424 0.399 0.341 0.302 0.267 0.248 + taud (diffuse) 2.579 2.375 2.299 2.046 2.082 2.073 2.012 2.116 2.324 2.427 2.522 2.615 + + taub = Clear Sky Optical Depth for Beam Irradiance + taud = Clear Sky Optical Depth for Diffuse Irradiance + + - Monthly Solar Irradiance Wh/m˛ (noon on 21st of month) + ib (beam) 943 952 954 904 895 877 851 864 900 907 908 921 + id (diffuse) 78 105 122 165 162 163 172 151 117 98 82 72 + + ib = Clear Sky Noon Beam Normal Irradiance on 21st Day + id = Clear Sky Noon Diffuse Horizontal Irradiance on 21st Day + + - Monthly Drybulb and Mean Coincident Wetbulb Temperatures °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Drybulb 0.4% 18.4 19.4 23.3 26.0 31.7 34.6 37.3 35.2 33.6 28.5 22.9 17.8 + Coincident Wetbulb 0.4% 6.1 6.3 8.3 9.5 14.1 15.1 16.1 15.8 15.2 11.9 8.3 6.0 + Drybulb 2.0% 15.1 16.4 20.2 23.7 28.8 32.8 35.5 33.6 31.4 26.4 20.0 14.3 + Coincident Wetbulb 2.0% 4.7 5.3 7.3 9.1 13.1 14.7 15.9 15.7 14.4 11.0 7.4 4.7 + Drybulb 5.0% 12.2 13.4 17.7 21.6 26.5 31.2 33.9 32.1 29.3 23.6 17.1 11.5 + Coincident Wetbulb 5.0% 3.5 3.9 6.3 8.5 12.4 14.6 15.9 15.7 13.6 10.0 6.5 3.3 + Drybulb 10.% 9.2 10.3 14.9 18.9 23.8 29.0 32.4 30.4 27.1 20.5 13.8 8.8 + Coincident Wetbulb 10.% 2.2 2.3 5.2 7.7 11.8 14.4 15.9 15.8 13.1 9.0 5.0 2.1 + + Drybulb 0.4% = 0.4% Monthly Design Drybulb Temperature + Coincident Wetbulb 0.4% = 0.4% Monthly Mean Coincident Wetbulb Temperature + Drybulb 2.0% = 2.0% Monthly Design Drybulb Temperature + Coincident Wetbulb 2.0% = 2.0% Monthly Mean Coincident Wetbulb Temperature + Drybulb 5.0% = 5.0% Monthly Design Drybulb Temperature + Coincident Wetbulb 5.0% = 5.0% Monthly Mean Coincident Wetbulb Temperature + Drybulb 10.% = 10.% Monthly Design Drybulb Temperature + Coincident Wetbulb 10.% = 10.% Monthly Mean Coincident Wetbulb Temperature + + - Monthly Drybulb and Wetbulb Daily Ranges delta°C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Drybulb 13.2 13.3 14.3 14.0 14.4 15.2 15.2 14.8 15.0 14.3 13.4 12.6 + Drybulb range - DB 5% 16.7 17.5 18.4 18.1 17.9 18.3 17.2 17.1 17.3 18.2 17.6 15.8 + Wetbulb range - DB 5% 9.0 9.2 9.0 8.0 6.7 6.0 5.0 5.0 5.8 7.6 8.7 8.7 + + Drybulb = Mean Daily Dry Bulb Temperature Range + Drybulb range - DB 5% = Mean Daily Dry Bulb Temperature Range Coincident with 5% Design Dry Bulb Temperature + Wetbulb range - DB 5% = Mean Daily Wet Bulb Temperature Range Coincident with 5% Design Dry Bulb Temperature + + - Displaying Heating/Cooling Degree Days/Hours from "Climate Design Data 2009 ASHRAE Handbook" + - Monthly Standard Heating/Cooling Degree Days/Hours + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + HDD base 10°C 304 262 187 91 19 1 0 0 9 62 191 309 + HDD base 18.3°C 561 493 433 298 149 41 3 5 77 248 427 567 + + CDD base 10°C 2 2 13 43 142 277 427 384 226 76 13 1 + CDD base 18.3°C 0 0 0 1 14 66 171 131 44 4 0 0 + + CDH base 23.3°C 0 0 3 26 268 931 1979 1384 594 102 2 0 + CDH base 26.7°C 0 0 0 2 78 398 1016 615 217 17 0 0 + + - 1606 annual (standard) cooling degree-days (10°C baseline) + - 1434 annual (standard) heating degree-days (10°C baseline) + + - 432 annual (standard) cooling degree-days (18.3°C baseline) + - 3301 annual (standard) heating degree-days (18.3°C baseline) + + - Monthly Statistics for Dry Bulb temperatures °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 16.7 18.3 21.1 22.8 30.6 40.0 36.1 34.4 33.9 28.3 21.1 21.1 + Day:Hour 23:14 16:15 25:13 19:14 19:14 26:16 5:15 19:12 3:14 1:15 22:12 1:13 + + Minimum -18.0 -15.6 -6.1 -8.9 0.0 7.2 11.7 11.7 3.9 -1.9 -16.1 -19.4 + Day:Hour 1:01 8:23 17:06 3:03 1:04 9:05 13:05 17:05 28:23 31:24 26:06 31:24 + + Daily Avg 0.8 -0.1 6.1 5.8 15.5 23.1 22.3 22.6 19.2 10.0 2.9 1.4 + + - Maximum Dry Bulb temperature of 40.0°C on Jun 26 + - Minimum Dry Bulb temperature of -19.4°C on Dec 31 + + - Monthly Statistics for Extreme Dry Bulb temperatures °C + #Days Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Max >= 32 15 11 12 3 + Max <= 0 2 1 1 5 4 + Min <= 0 29 25 19 18 1 6 20 28 + Min <=-18 1 1 + + - Monthly Statistics for Dew Point temperatures °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum -2.0 0.6 5.6 8.9 13.3 17.2 17.2 17.2 12.8 9.2 2.2 -1.1 + Day:Hour 27:08 28:21 5:11 28:13 18:20 18:14 20:18 13:14 27:24 4:23 13:23 30:01 + + Minimum -20.6 -20.6 -20.6 -16.1 -13.3 -6.1 -2.2 -4.4 -11.7 -9.4 -18.3 -21.7 + Day:Hour 11:17 1:06 9:12 10:02 12:15 7:11 4:11 19:14 12:14 13:15 26:06 31:24 + + Daily Avg -10.4 -8.9 -7.9 -2.5 3.8 6.6 9.5 8.3 3.0 1.3 -7.0 -9.1 + + - Maximum Dew Point temperature of 17.2°C on Jun 18 + - Minimum Dew Point temperature of -21.7°C on Dec 31 + + - Average Hourly Statistics for Dry Bulb temperatures °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 -2.8 -2.8 2.5 2.7 11.2 17.5 17.6 18.9 14.7 6.7 0.2 -1.7 + 1:01- 2:00 -2.8 -3.3 2.4 2.3 10.9 16.9 17.0 18.4 14.1 6.5 0.3 -2.3 + 2:01- 3:00 -3.0 -3.7 2.0 1.8 10.2 16.0 16.3 17.8 13.7 6.3 0.3 -2.2 + 3:01- 4:00 -3.4 -3.9 1.6 1.4 9.6 15.3 15.8 17.3 13.3 5.6 -0.3 -2.6 + 4:01- 5:00 -3.7 -4.4 1.5 1.2 9.3 14.9 15.4 16.9 12.7 5.5 -0.5 -2.9 + 5:01- 6:00 -3.6 -5.0 1.0 1.1 10.4 17.4 17.2 17.0 12.3 4.9 -0.6 -3.2 + 6:01- 7:00 -3.7 -5.2 1.5 3.1 12.4 19.8 19.5 19.2 14.7 6.1 -0.8 -2.8 + 7:01- 8:00 -2.4 -3.4 4.3 4.8 14.4 22.2 21.8 21.4 17.5 8.1 0.5 -1.9 + 8:01- 9:00 -0.0 -0.9 6.4 6.2 16.0 24.3 24.0 23.4 19.9 10.0 2.8 1.1 + 9:01-10:00 2.5 1.7 8.1 7.6 17.7 26.0 25.8 25.3 22.0 11.9 5.2 3.9 + 10:01-11:00 4.9 3.5 9.9 8.9 19.2 27.5 27.4 27.1 24.0 13.7 6.6 6.2 + 11:01-12:00 6.2 5.3 10.9 9.9 20.3 28.9 28.3 28.2 25.6 15.1 7.7 7.9 + 12:01-13:00 7.2 6.0 11.7 10.7 20.7 29.6 28.6 28.8 26.4 16.1 8.2 8.5 + 13:01-14:00 7.5 6.1 11.9 11.1 21.3 30.2 28.8 28.7 26.8 16.3 8.6 8.5 + 14:01-15:00 7.3 5.9 12.0 10.9 21.1 30.5 28.0 28.5 26.8 16.5 8.4 8.0 + 15:01-16:00 6.3 5.3 11.5 10.7 21.0 29.8 26.9 28.0 26.5 16.0 7.4 6.8 + 16:01-17:00 4.5 3.8 10.5 10.0 20.4 28.9 26.7 27.0 25.1 14.0 4.9 4.2 + 17:01-18:00 2.7 1.8 9.0 8.8 19.1 27.8 25.2 25.5 22.3 11.5 3.4 2.3 + 18:01-19:00 1.2 0.1 7.2 6.6 17.6 25.9 23.7 23.3 19.5 10.0 2.4 1.3 + 19:01-20:00 0.3 -1.1 5.8 5.6 15.6 23.7 22.0 21.7 17.8 9.4 1.5 0.4 + 20:01-21:00 -0.5 -1.5 5.0 4.6 14.6 22.1 20.7 21.1 17.1 8.7 1.3 -0.4 + 21:01-22:00 -1.4 -1.8 4.2 3.9 13.5 20.8 19.9 20.4 16.4 8.0 1.2 -1.1 + 22:01-23:00 -2.1 -1.9 3.5 3.2 12.8 19.8 19.3 19.7 15.6 7.3 0.7 -1.8 + 23:01-24:00 -2.1 -1.9 2.7 2.9 12.3 18.5 18.5 19.2 15.2 6.9 0.3 -1.9 + Max Hour 14 14 15 14 14 15 14 13 14 15 14 14 + Min Hour 5 7 6 6 5 5 5 5 6 6 7 6 + + - Average Hourly Statistics for Dew Point temperatures °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 -10.6 -9.3 -6.7 -2.3 4.5 7.8 10.4 8.8 4.9 1.6 -7.2 -8.9 + 1:01- 2:00 -10.8 -9.5 -6.9 -2.4 4.3 7.9 10.3 8.7 4.7 1.4 -7.1 -9.1 + 2:01- 3:00 -11.2 -9.8 -7.0 -2.7 4.4 7.9 10.2 8.7 4.5 1.4 -7.3 -9.2 + 3:01- 4:00 -11.1 -9.8 -7.2 -3.1 4.4 7.7 10.0 8.7 3.9 1.1 -7.5 -9.7 + 4:01- 5:00 -11.2 -9.9 -7.3 -3.5 4.4 7.6 9.9 8.6 3.9 1.1 -7.6 -9.7 + 5:01- 6:00 -11.3 -10.5 -7.5 -3.5 4.4 7.9 10.1 8.9 4.1 0.8 -8.0 -9.7 + 6:01- 7:00 -11.5 -10.6 -7.2 -2.8 4.1 7.5 10.2 9.2 4.2 1.6 -8.1 -10.0 + 7:01- 8:00 -11.0 -10.3 -7.2 -2.7 4.1 7.0 10.0 9.5 4.3 2.0 -7.4 -9.7 + 8:01- 9:00 -10.6 -10.0 -8.1 -2.9 4.2 6.7 9.8 9.2 3.7 1.9 -6.5 -9.1 + 9:01-10:00 -10.1 -9.8 -8.2 -2.9 3.9 6.0 9.5 8.7 3.2 2.0 -6.4 -9.0 + 10:01-11:00 -9.7 -9.6 -8.6 -3.0 2.9 5.2 8.5 7.9 2.1 1.8 -6.7 -9.2 + 11:01-12:00 -10.0 -9.5 -9.3 -3.1 2.4 4.5 8.1 7.5 1.3 1.6 -6.8 -9.5 + 12:01-13:00 -10.2 -9.4 -9.5 -3.1 2.2 4.5 7.9 6.8 0.2 1.4 -6.9 -9.5 + 13:01-14:00 -10.6 -8.8 -9.8 -3.0 1.9 4.6 7.5 7.0 -0.3 0.7 -7.1 -9.3 + 14:01-15:00 -10.6 -8.6 -10.0 -3.1 1.9 4.3 7.5 6.9 -0.1 0.6 -7.1 -8.8 + 15:01-16:00 -10.3 -7.5 -9.8 -2.8 2.4 4.5 8.1 6.9 0.1 0.4 -6.7 -8.7 + 16:01-17:00 -10.0 -7.5 -9.5 -2.8 2.7 5.3 8.7 7.0 0.8 1.0 -6.4 -8.4 + 17:01-18:00 -10.1 -7.2 -8.9 -2.3 3.4 6.0 9.3 8.0 1.7 1.3 -6.4 -8.3 + 18:01-19:00 -10.1 -7.1 -7.7 -1.7 4.2 6.9 9.7 8.5 2.7 1.4 -6.4 -8.4 + 19:01-20:00 -9.8 -7.3 -7.3 -1.4 4.9 7.4 10.3 8.8 3.7 1.1 -6.5 -8.6 + 20:01-21:00 -9.9 -7.7 -6.9 -1.2 4.9 7.8 10.7 8.7 3.9 1.3 -6.4 -8.7 + 21:01-22:00 -9.8 -8.1 -6.7 -1.3 5.0 8.1 10.5 8.5 4.4 1.2 -6.5 -8.8 + 22:01-23:00 -10.1 -8.3 -6.8 -1.6 4.8 7.7 10.5 8.7 4.5 1.7 -7.1 -8.9 + 23:01-24:00 -10.2 -8.7 -6.5 -1.7 4.9 8.2 10.5 8.8 4.6 1.5 -7.5 -9.2 + Max Hour 11 19 24 21 22 24 21 8 1 10 19 18 + Min Hour 7 7 15 5 14 15 15 13 14 16 7 7 + + - Monthly Statistics for Relative Humidity % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 96 100 96 100 97 100 97 96 100 100 100 100 + Day:Hour 7:05 28:21 5:15 2:07 4:19 17:05 10:05 11:07 25:04 4:06 1:14 5:03 + + Minimum 6 7 6 12 6 6 11 8 5 10 10 9 + Day:Hour 22:14 16:15 9:12 6:17 14:13 26:17 4:17 19:14 12:14 18:14 17:14 2:13 + + Daily Avg 47 54 41 62 53 42 50 45 41 61 52 49 + + - Average Hourly Relative Humidity % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 58 62 53 73 68 57 66 55 55 73 60 58 + 1:01- 2:00 57 63 53 73 68 59 67 56 57 73 59 60 + 2:01- 3:00 56 64 54 74 70 63 70 58 57 73 58 59 + 3:01- 4:00 58 65 55 74 73 64 70 59 56 75 59 58 + 4:01- 5:00 58 67 54 73 74 66 72 60 58 75 61 59 + 5:01- 6:00 57 67 55 74 69 58 65 61 60 76 60 60 + 6:01- 7:00 56 67 54 69 60 50 57 55 53 75 59 58 + 7:01- 8:00 53 60 46 63 54 42 49 50 46 68 57 55 + 8:01- 9:00 46 51 38 58 49 37 43 44 40 61 53 47 + 9:01-10:00 41 43 34 53 44 32 38 39 34 56 47 41 + 10:01-11:00 36 39 29 50 39 29 34 33 27 50 42 35 + 11:01-12:00 32 36 26 47 35 26 31 31 23 46 40 31 + 12:01-13:00 31 34 25 45 35 24 30 28 21 43 38 31 + 13:01-14:00 29 36 24 45 33 24 30 29 20 42 36 31 + 14:01-15:00 30 37 23 46 34 24 34 29 21 42 37 34 + 15:01-16:00 32 41 24 46 34 26 37 29 21 42 40 36 + 16:01-17:00 37 46 26 48 36 28 38 32 24 48 48 42 + 17:01-18:00 42 53 29 52 41 31 43 36 30 55 52 47 + 18:01-19:00 46 59 36 60 46 36 46 42 37 60 55 50 + 19:01-20:00 49 63 41 65 54 41 51 47 43 61 58 52 + 20:01-21:00 50 63 44 69 57 44 56 48 45 64 58 54 + 21:01-22:00 54 63 47 71 61 48 58 50 49 66 58 56 + 22:01-23:00 56 62 49 73 63 50 59 53 52 71 58 59 + 23:01-24:00 56 62 53 74 65 55 62 54 54 71 59 58 + Max Hour 5 6 6 4 5 5 5 6 6 6 5 6 + Min Hour 14 13 15 13 14 15 13 13 14 15 14 14 + + - Monthly Indicators for Precipitation/Moisture (kPa) + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0.3 0.3 0.3 0.5 0.7 0.9 1.1 1.0 0.6 0.7 0.4 0.3 + + - Monthly Statistics for Wind Chill/Heat Index temperatures °C ** + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Minimum WC -25 -27 -16 -21 -6 8 -3 -12 -30 -20 + Day:Hour 29:02 8:07 29:19 15:04 4:15 9:03 28:23 31:24 26:07 31:22 + + Average WC -6 -6 -2 -4 3 8 3 1 -5 -4 + Avg Del WC 6 4 5 7 3 1 5 5 6 4 + # Hours WC 619 559 504 505 128 1 60 361 573 607 + + Maximum HI 29 31 + Day:Hour 18:11 2:13 + + Average HI 28 28 + Avg Del HI 0 0 + # Hours HI 6 7 + + - **WindChill/HeatIndex Temps -- statistics...only those different from Air Temps + + - Monthly Wind Direction % {N=0 or 360,E=90,S=180,W=270} + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + North 16 23 15 22 23 20 16 14 12 13 13 20 + NorthEast 5 7 7 7 9 10 10 7 11 8 7 5 + East 6 7 5 7 8 7 7 5 9 10 7 7 + SouthEast 7 11 8 14 11 14 11 7 8 10 9 11 + South 19 28 27 17 27 26 27 16 19 19 16 35 + SouthWest 24 9 13 11 11 11 17 24 19 15 26 8 + West 16 6 11 11 3 4 5 15 15 16 14 3 + NorthWest 7 9 14 11 9 10 6 11 7 8 8 10 + + - Monthly Statistics for Wind Speed m/s + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 11.3 15.5 14.4 16.0 13.9 10.3 9.3 20.6 12.4 13.4 12.4 13.9 + Day:Hour 25:16 24:15 19:17 8:09 10:20 20:16 22:14 20:14 14:08 3:14 8:15 19:05 + + Minimum 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 + Day:Hour 1:01 2:05 2:10 3:07 1:07 1:04 3:20 3:18 1:09 2:05 1:20 2:06 + + Daily Avg 3.8 3.5 4.4 5.3 3.8 3.4 3.0 4.5 4.1 3.8 4.2 3.2 + + - Maximum Wind Speed of 20.6 m/s on Aug 20 + - Minimum Wind Speed of 0.0 m/s on Jan 1 + + - Average Hourly Statistics for Wind Speed m/s + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 4.1 3.0 4.0 4.6 2.8 3.1 2.6 5.2 4.2 3.9 4.5 2.7 + 1:01- 2:00 4.1 2.8 4.3 4.8 2.7 3.0 2.5 4.8 4.2 4.2 4.3 2.7 + 2:01- 3:00 3.9 2.9 4.3 5.1 2.6 2.7 2.4 4.9 4.5 3.7 4.5 3.0 + 3:01- 4:00 4.0 2.8 3.7 5.2 2.6 2.5 2.2 4.4 4.2 3.3 4.6 2.9 + 4:01- 5:00 3.9 2.6 3.3 4.5 2.4 2.3 2.1 4.0 4.1 3.4 4.8 2.8 + 5:01- 6:00 3.5 2.7 3.1 4.6 2.9 2.7 2.3 3.8 4.1 3.2 4.9 2.8 + 6:01- 7:00 3.5 2.8 3.3 4.9 3.0 2.9 2.2 4.3 4.1 3.3 4.6 3.0 + 7:01- 8:00 3.8 3.2 3.4 5.5 3.2 2.8 2.4 4.0 4.4 3.5 4.4 3.1 + 8:01- 9:00 3.8 3.1 3.7 5.7 3.2 3.1 2.5 3.9 3.5 3.2 4.0 3.4 + 9:01-10:00 3.7 3.4 3.8 5.5 3.4 3.2 2.5 3.3 3.3 2.9 4.0 3.6 + 10:01-11:00 3.5 3.9 4.1 5.4 4.1 3.1 2.7 4.0 3.7 3.2 4.1 3.1 + 11:01-12:00 3.3 3.8 5.0 5.9 4.5 3.5 3.2 4.2 3.5 3.4 4.0 3.2 + 12:01-13:00 4.0 4.2 5.3 5.8 5.1 3.3 3.4 3.6 3.5 3.7 4.1 3.5 + 13:01-14:00 4.3 4.7 5.3 6.1 5.2 4.4 3.9 5.2 3.9 4.2 3.9 4.0 + 14:01-15:00 4.0 4.6 5.6 5.8 5.6 4.2 4.4 4.6 3.8 4.7 3.7 5.1 + 15:01-16:00 4.0 4.6 5.4 6.0 5.3 4.7 4.4 5.1 4.7 4.8 3.1 4.3 + 16:01-17:00 3.7 4.7 6.0 5.9 5.8 4.6 4.2 5.8 4.7 4.7 3.6 3.7 + 17:01-18:00 3.8 4.0 6.0 6.3 5.3 4.2 4.2 4.8 4.0 4.1 3.6 3.0 + 18:01-19:00 3.8 4.1 5.0 5.7 4.2 4.3 3.7 4.6 3.9 4.0 3.6 2.6 + 19:01-20:00 3.5 3.4 4.6 5.4 3.9 4.3 2.8 4.7 4.1 4.0 3.9 2.9 + 20:01-21:00 3.7 2.9 4.3 4.8 3.5 3.8 2.8 4.5 4.7 4.0 4.3 3.1 + 21:01-22:00 3.8 3.1 3.7 4.9 3.8 3.8 2.9 4.8 4.7 4.0 5.0 2.6 + 22:01-23:00 3.6 3.2 3.6 4.6 3.1 3.1 3.0 5.3 4.4 3.7 4.7 2.8 + 23:01-24:00 4.2 3.0 4.0 4.4 3.1 3.1 2.6 5.0 4.1 4.2 4.6 2.7 + Max Hour 14 14 17 18 17 16 16 17 22 16 22 15 + Min Hour 12 5 6 24 5 5 5 10 10 10 16 19 + + - Average Hourly Statistics for Wind Direction ° {N=0 or 360,E=90,S=180,W=270} + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 207 190 194 197 178 205 191 200 207 161 199 165 + 1:01- 2:00 198 184 188 198 159 233 179 211 201 179 188 183 + 2:01- 3:00 205 163 223 201 134 226 186 204 202 182 179 175 + 3:01- 4:00 200 200 226 191 175 186 178 201 190 179 189 184 + 4:01- 5:00 214 188 199 179 179 177 174 197 206 175 194 149 + 5:01- 6:00 194 145 174 190 211 211 206 207 206 175 212 174 + 6:01- 7:00 203 183 167 168 161 230 182 242 212 201 199 155 + 7:01- 8:00 192 189 193 225 196 163 180 223 203 183 185 185 + 8:01- 9:00 200 178 205 224 224 150 181 241 202 185 200 169 + 9:01-10:00 218 194 185 181 195 147 139 224 145 171 172 197 + 10:01-11:00 194 189 198 147 173 200 124 128 149 185 170 165 + 11:01-12:00 155 187 197 169 153 174 176 136 135 144 173 179 + 12:01-13:00 162 181 196 161 152 176 163 139 131 146 167 182 + 13:01-14:00 165 175 185 184 139 130 148 160 132 156 160 212 + 14:01-15:00 127 185 213 176 185 172 194 173 149 140 144 220 + 15:01-16:00 116 191 170 165 176 183 164 137 147 149 130 174 + 16:01-17:00 149 187 169 164 150 168 161 157 114 180 182 202 + 17:01-18:00 133 185 186 175 182 160 175 157 138 187 183 208 + 18:01-19:00 180 199 174 159 169 154 160 159 162 175 185 192 + 19:01-20:00 184 175 207 138 190 150 154 176 138 185 170 166 + 20:01-21:00 185 187 191 156 185 140 195 199 168 192 178 165 + 21:01-22:00 196 195 186 139 202 145 169 199 177 176 184 164 + 22:01-23:00 194 202 183 167 193 169 191 192 188 160 182 178 + 23:01-24:00 192 170 185 196 217 209 166 194 197 175 189 172 + Max Hour 10 23 4 8 9 2 6 7 7 7 6 15 + Min Hour 16 6 7 20 3 14 11 11 17 15 16 5 + + - Monthly Statistics for Liquid Precipitation mm + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Total 0 9 12 101 41 20 89 9 0 5 5 1 + Max Hourly 0 2 3 9 13 13 34 5 0 4 2 1 + + - Monthly Statistics for Albedo + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Average 0.220 0.220 0.200 0.190 0.200 0.190 0.200 0.190 0.210 0.200 0.200 0.220 + + - Monthly Statistics for Solar Radiation (Direct Normal, Diffuse, Global Horizontal) Wh/m˛ + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Direct Avg 4827 4599 5915 4459 5804 7329 6550 6113 6158 5182 3943 4066 + + Direct Max 8300 8650 10874 9918 12067 11119 12109 10621 10041 8390 7547 7546 + Day 22 1 30 7 12 10 14 3 1 10 6 10 + + Diffuse Avg 738 1108 1373 2018 2358 2099 2199 1974 1617 1123 972 695 + + Global Avg 2503 3168 4658 4788 6327 7268 6716 5989 5175 3685 2465 2078 + - Maximum Direct Normal Solar of 12109 Wh/m˛ on Jul 14 + + - Average Hourly Statistics for Direct Normal Solar Radiation Wh/m˛ + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0 + 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0 + 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0 + 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0 + 4:01- 5:00 0 0 0 0 7 30 15 0 0 0 0 0 + 5:01- 6:00 0 0 3 34 160 274 250 42 7 0 0 0 + 6:01- 7:00 0 12 157 300 371 420 457 379 381 29 1 0 + 7:01- 8:00 126 224 400 371 443 570 557 509 461 358 130 113 + 8:01- 9:00 406 416 534 382 538 666 626 569 547 503 432 333 + 9:01-10:00 538 482 631 465 537 674 691 596 568 529 416 474 + 10:01-11:00 613 519 663 464 569 690 696 615 577 636 456 538 + 11:01-12:00 655 618 700 449 571 738 663 695 679 649 523 570 + 12:01-13:00 642 574 669 457 568 669 583 636 683 610 531 552 + 13:01-14:00 633 573 616 424 524 621 516 574 598 599 493 602 + 14:01-15:00 572 496 538 366 417 580 441 402 554 537 460 470 + 15:01-16:00 438 415 459 272 407 510 345 371 461 440 406 332 + 16:01-17:00 200 232 342 219 337 421 300 289 414 284 97 80 + 17:01-18:00 5 40 194 205 237 278 266 289 229 7 0 0 + 18:01-19:00 0 0 9 52 116 172 131 146 0 0 0 0 + 19:01-20:00 0 0 0 0 2 19 13 0 0 0 0 0 + 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0 + 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0 + 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0 + 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0 + Max Hour* 12 12 12 10* 12 12 11* 12 13 12 13 14 + Min Hour 1 1 1 1 1 1 1 1 1 1 1 1 + + - Average Hourly Statistics for Diffuse Horizontal Solar Radiation Wh/m˛ + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0 + 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0 + 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0 + 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0 + 4:01- 5:00 0 0 0 0 1 4 1 0 0 0 0 0 + 5:01- 6:00 0 0 0 1 37 44 31 1 0 0 0 0 + 6:01- 7:00 0 1 18 76 87 77 63 78 57 2 0 0 + 7:01- 8:00 11 32 62 113 144 122 120 113 93 76 45 13 + 8:01- 9:00 47 75 103 167 180 146 134 144 139 111 84 53 + 9:01-10:00 85 103 130 186 214 169 159 180 186 146 121 78 + 10:01-11:00 98 145 148 214 254 197 190 211 211 137 152 97 + 11:01-12:00 114 137 163 244 242 192 223 212 174 136 141 117 + 12:01-13:00 115 175 170 251 262 230 243 220 186 150 135 105 + 13:01-14:00 102 153 173 234 239 221 256 217 185 129 138 95 + 14:01-15:00 84 124 156 204 246 222 223 225 155 121 98 81 + 15:01-16:00 59 97 130 164 191 172 223 174 130 82 53 49 + 16:01-17:00 23 59 84 110 144 148 178 118 81 32 6 7 + 17:01-18:00 0 8 34 51 86 106 105 64 21 0 0 0 + 18:01-19:00 0 0 0 3 30 46 47 15 0 0 0 0 + 19:01-20:00 0 0 0 0 0 3 2 0 0 0 0 0 + 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0 + 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0 + 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0 + 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0 + Max Hour* 13 13 14 13 13 13 14 15 11* 13 11* 12 + Min Hour 1 1 1 1 1 1 1 1 1 1 1 1 + + - Average Hourly Statistics for Global Horizontal Solar Radiation Wh/m˛ + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0 + 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0 + 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0 + 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0 + 4:01- 5:00 0 0 0 0 1 5 1 0 0 0 0 0 + 5:01- 6:00 0 0 0 2 58 89 64 2 0 0 0 0 + 6:01- 7:00 0 1 33 140 204 223 207 170 119 2 0 0 + 7:01- 8:00 18 57 167 262 364 420 396 331 254 162 62 20 + 8:01- 9:00 125 190 334 383 534 600 545 485 423 314 200 118 + 9:01-10:00 262 306 494 513 638 716 705 620 559 429 282 230 + 10:01-11:00 360 417 602 586 755 820 807 726 644 531 367 316 + 11:01-12:00 429 502 679 627 770 893 846 830 714 562 406 374 + 12:01-13:00 430 519 668 640 787 866 792 787 726 541 399 352 + 13:01-14:00 385 473 604 572 696 781 719 702 623 472 354 333 + 14:01-15:00 290 355 483 460 569 692 579 525 504 372 253 221 + 15:01-16:00 162 238 347 316 451 518 457 401 351 223 131 104 + 16:01-17:00 40 100 188 193 303 367 333 248 210 76 10 11 + 17:01-18:00 0 10 58 90 155 201 195 137 50 1 0 0 + 18:01-19:00 0 0 0 5 43 74 67 26 0 0 0 0 + 19:01-20:00 0 0 0 0 0 4 3 0 0 0 0 0 + 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0 + 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0 + 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0 + 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0 + Max Hour 13 13 12 13 13 12 12 12 13 12 12 12 + Min Hour 1 1 1 1 1 1 1 1 1 1 1 1 + + - Average Hourly Statistics for Total Sky Cover % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 36 46 50 68 53 34 32 46 33 47 53 39 + 1:01- 2:00 39 45 49 60 47 33 30 39 39 45 56 39 + 2:01- 3:00 36 47 46 59 48 29 24 35 34 43 53 43 + 3:01- 4:00 39 46 43 65 57 36 33 34 34 42 51 42 + 4:01- 5:00 40 46 44 69 60 37 36 39 43 41 51 42 + 5:01- 6:00 37 43 47 74 55 40 29 42 40 46 48 40 + 6:01- 7:00 42 43 46 74 53 40 29 43 42 49 50 49 + 7:01- 8:00 45 46 45 77 55 34 33 42 45 47 50 52 + 8:01- 9:00 43 49 45 77 55 31 34 43 46 45 52 52 + 9:01-10:00 44 48 44 78 55 34 29 51 49 48 53 47 + 10:01-11:00 45 52 44 79 56 37 32 52 49 48 54 45 + 11:01-12:00 41 48 44 85 57 35 42 52 50 52 50 45 + 12:01-13:00 45 54 46 85 60 40 50 56 55 52 51 45 + 13:01-14:00 44 59 50 89 64 46 54 64 54 51 50 41 + 14:01-15:00 45 62 55 88 71 48 56 68 56 55 50 45 + 15:01-16:00 47 67 60 90 71 53 68 70 59 57 50 45 + 16:01-17:00 48 68 61 89 75 55 66 78 64 70 62 46 + 17:01-18:00 41 64 61 88 72 55 66 70 54 54 54 42 + 18:01-19:00 41 58 55 91 68 51 69 66 49 52 54 37 + 19:01-20:00 44 57 57 84 65 50 67 64 45 49 46 35 + 20:01-21:00 48 55 54 80 64 37 50 65 58 53 40 39 + 21:01-22:00 47 57 55 76 55 34 44 66 61 55 46 37 + 22:01-23:00 47 54 49 74 54 36 40 54 54 51 47 42 + 23:01-24:00 45 50 46 71 51 34 38 50 35 46 53 36 + Max Hour 17 17 18 19 17 17 19 17 17 17 17 8 + Min Hour 3 6 4 3 2 3 3 4 1 5 21 20 + + - Average Hourly Statistics for Opaque Sky Cover % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 35 41 43 64 49 27 27 38 28 40 48 33 + 1:01- 2:00 35 39 44 56 44 27 23 30 35 38 51 34 + 2:01- 3:00 34 38 38 56 41 24 19 27 29 37 49 36 + 3:01- 4:00 33 39 35 63 45 27 26 26 28 37 46 33 + 4:01- 5:00 33 38 37 66 49 28 26 32 35 36 46 34 + 5:01- 6:00 29 38 38 71 46 33 23 35 37 41 43 34 + 6:01- 7:00 30 36 37 71 41 34 25 37 38 45 44 38 + 7:01- 8:00 30 39 37 75 45 27 27 39 42 44 45 45 + 8:01- 9:00 32 43 36 74 44 26 26 38 41 42 46 44 + 9:01-10:00 32 41 32 74 44 25 24 46 43 45 45 41 + 10:01-11:00 31 43 31 75 45 27 26 47 45 46 46 40 + 11:01-12:00 32 36 30 78 48 25 38 47 47 47 46 39 + 12:01-13:00 33 40 35 80 50 35 45 50 50 48 47 39 + 13:01-14:00 31 42 39 84 52 40 51 55 49 47 44 34 + 14:01-15:00 30 45 43 83 56 42 55 61 50 51 45 38 + 15:01-16:00 32 47 46 85 55 49 63 60 53 53 42 37 + 16:01-17:00 32 53 47 83 59 50 60 72 58 64 56 38 + 17:01-18:00 31 49 42 83 56 52 58 61 47 48 46 34 + 18:01-19:00 34 46 40 86 51 49 59 58 43 46 44 34 + 19:01-20:00 34 47 42 81 55 45 57 56 41 44 38 30 + 20:01-21:00 40 45 44 77 53 33 44 56 55 47 36 35 + 21:01-22:00 41 48 41 73 48 27 38 61 58 51 41 34 + 22:01-23:00 40 46 38 69 49 34 33 44 49 46 41 39 + 23:01-24:00 40 43 37 67 47 29 31 44 31 42 46 34 + Max Hour 22 17 17 19 17 18 16 17 17 17 17 8 + Min Hour 6 12 12 2 7 3 3 4 1 5 21 20 + + - Monthly Calculated "undisturbed" Ground Temperatures** °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0.5 m 0.4 2.3 6.2 9.8 16.7 20.3 21.3 19.4 15.2 9.9 4.7 1.3 + 2.0 m 3.1 3.6 5.7 8.2 13.5 16.8 18.5 18.1 15.7 12.1 8.0 4.7 + 4.0 m 5.9 5.5 6.5 7.9 11.4 14.0 15.7 16.1 15.0 12.9 10.1 7.6 + + - **These ground temperatures should NOT BE USED in the GroundTemperatures object to compute building floor losses. + - The temperatures for 0.5 m depth can be used for GroundTemperatures:Surface. + - The temperatures for 4.0 m depth can be used for GroundTemperatures:Deep. + - Calculations use a standard soil diffusivity of 2.3225760E-03 {m**2/day} + + - Heating/Cooling Degree Days/Hours calculated from this weather file. + - Heating/Cooling Degree Days/Hours from design conditions shown earlier in this report. + - Monthly Weather File Heating/Cooling Degree Days/Hours + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + HDD base 10C 286 282 133 143 12 0 0 0 1 51 215 266 + HDD base 18C 534 506 368 365 97 1 6 1 36 250 453 514 + + CDD base 10C 0 0 13 18 182 393 380 391 276 53 2 0 + CDD base 18C 0 0 0 0 19 153 138 144 71 3 0 0 + + CDH base 20C 0 0 4 20 728 3150 2717 2691 1772 206 2 1 + CDH base 23C 0 0 0 0 305 1964 1615 1551 981 68 0 0 + CDH base 27C 0 0 0 0 39 881 632 572 315 3 0 0 + + - 1707 annual (wthr file) cooling degree-days (10°C baseline) + - 1387 annual (wthr file) heating degree-days (10°C baseline) + + - 529 annual (wthr file) cooling degree-days (18°C baseline) + - 3129 annual (wthr file) heating degree-days (18°C baseline) + + - Climate type "BSk" (Köppen classification)** + - Mid-latitude dry semiarid (e.g. Great Plains of USA, lat. 15-60°N) + - Unbearably hot dry periods in summer, but passive cooling is possible + - **Note that the Köppen classification shown here is derived algorithmically from the source weather data. + - It may not be indicative of the long term climate for this location. + + - Climate type "5B" (ASHRAE Standard 196-2006 Climate Zone)** + - Cool - Dry, Probable Köppen classification=BSk/H, Semiarid Mid Latitude/Highlands + - **Note that the ASHRAE classification shown here is derived algorithmically from the source weather data. + - It may not be indicative of the long term climate for this location. + + - Typical/Extreme Period Determination + + - Summer is Jun:Aug + Extreme Summer Week (nearest maximum temperature for summer) + Extreme Hot Week Period selected: Jun 22:Jun 28, Maximum Temp= 40.00°C, Deviation=|15.304|°C + Typical Summer Week (nearest average temperature for summer) + Typical Week Period selected: Jun 8:Jun 14, Average Temp= 22.65°C, Deviation=| 0.200|°C + + - Winter is Dec:Feb + Extreme Winter Week (nearest minimum temperature for winter) + Extreme Cold Week Period selected: Jan 27:Feb 2, Minimum Temp= -19.40°C, Deviation=|14.507|°C + Typical Winter Week (nearest average temperature for winter) + Typical Week Period selected: Jan 6:Jan 12, Average Temp= 0.75°C, Deviation=| 0.476|°C + + - Autumn is Sep:Nov + Typical Autumn Week (nearest average temperature for autumn) + Typical Week Period selected: Oct 13:Oct 19, Average Temp= 10.69°C, Deviation=| 0.157|°C + + - Spring is Mar:May + Typical Spring Week (nearest average temperature for spring) + Typical Week Period selected: Apr 26:May 2, Average Temp= 9.18°C, Deviation=| 0.623|°C diff --git a/example_files/weather/USA_FL_MacDill.AFB.747880_TMY3.ddy b/example_files/weather/USA_FL_MacDill.AFB.747880_TMY3.ddy new file mode 100644 index 00000000..c4f9cc0d --- /dev/null +++ b/example_files/weather/USA_FL_MacDill.AFB.747880_TMY3.ddy @@ -0,0 +1,536 @@ + ! The following Location and Design Day data are produced as possible from the indicated data source. + ! Wind Speeds follow the indicated design conditions rather than traditional values (6.7 m/s heating, 3.35 m/s cooling) + ! No special attempts at re-creating or determining missing data parts (e.g. Wind speed or direction) + ! are done. Therefore, you should look at the data and fill in any incorrect values as you desire. + + Site:Location, + Macdill Afb_FL_USA Design_Conditions, !- Location Name + 27.85, !- Latitude {N+ S-} + -82.52, !- Longitude {W- E+} + -5.00, !- Time Zone Relative to GMT {GMT+/-} + 8.00; !- Elevation {m} + + ! WMO=747880 Time Zone=NAE: (GMT-05:00) Eastern Time (US & Canada) + ! Data Source=ASHRAE 2009 Annual Design Conditions + RunPeriodControl:DaylightSavingTime, + 2nd Sunday in March, !- StartDate + 2nd Sunday in November; !- EndDate + + ! Using Design Conditions from "Climate Design Data 2009 ASHRAE Handbook" + ! Macdill Afb_FL_USA Extreme Annual Wind Speeds, 1%=8.4m/s, 2.5%=7.4m/s, 5%=6.6m/s + ! Macdill Afb_FL_USA Extreme Annual Temperatures, Max Drybulb=0.8°C Min Drybulb=35.5°C + + ! Macdill Afb_FL_USA Annual Heating Design Conditions Wind Speed=2.5m/s Wind Dir=10 + ! Coldest Month=JAN + ! Macdill Afb_FL_USA Annual Heating 99.6%, MaxDB=4.6°C + SizingPeriod:DesignDay, + Macdill Afb Ann Htg 99.6% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 4.6, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 4.6, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 10, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Macdill Afb_FL_USA Annual Heating 99%, MaxDB=6.8°C + SizingPeriod:DesignDay, + Macdill Afb Ann Htg 99% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 6.8, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 6.8, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 10, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Macdill Afb_FL_USA Annual Humidification 99.6% Design Conditions DP=>MCDB, DP=-4.9°C + SizingPeriod:DesignDay, + Macdill Afb Ann Hum_n 99.6% Condns DP=>MCDB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 7.9, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + -4.9, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 10, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Macdill Afb_FL_USA Annual Humidification 99% Design Conditions DP=>MCDB, DP=-2.1°C + SizingPeriod:DesignDay, + Macdill Afb Ann Hum_n 99% Condns DP=>MCDB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 10.6, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + -2.1, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 10, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Macdill Afb_FL_USA Annual Heating Wind 99.6% Design Conditions WS=>MCDB, WS=9.1m/s + SizingPeriod:DesignDay, + Macdill Afb Ann Htg Wind 99.6% Condns WS=>MCDB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 16.5, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 16.5, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 9.1, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 10, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Macdill Afb_FL_USA Annual Heating Wind 99% Design Conditions WS=>MCDB, WS=8.3m/s + SizingPeriod:DesignDay, + Macdill Afb Ann Htg Wind 99% Condns WS=>MCDB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 17, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 17, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 8.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 10, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Macdill Afb Annual Cooling Design Conditions Wind Speed=3.1m/s Wind Dir=270 + ! Hottest Month=AUG + ! Macdill Afb_FL_USA Annual Cooling (DB=>MWB) .4%, MaxDB=33.9°C MWB=25.1°C + SizingPeriod:DesignDay, + Macdill Afb Ann Clg .4% Condns DB=>MWB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 33.9, !- Maximum Dry-Bulb Temperature {C} + 7.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 25.1, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 3.1, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.491, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.016; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Macdill Afb_FL_USA Annual Cooling (DB=>MWB) 1%, MaxDB=33.1°C MWB=24.9°C + SizingPeriod:DesignDay, + Macdill Afb Ann Clg 1% Condns DB=>MWB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 33.1, !- Maximum Dry-Bulb Temperature {C} + 7.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 24.9, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 3.1, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.491, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.016; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Macdill Afb_FL_USA Annual Cooling (DB=>MWB) 2%, MaxDB=32.6°C MWB=24.9°C + SizingPeriod:DesignDay, + Macdill Afb Ann Clg 2% Condns DB=>MWB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 32.6, !- Maximum Dry-Bulb Temperature {C} + 7.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 24.9, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 3.1, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.491, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.016; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Macdill Afb_FL_USA Annual Cooling (WB=>MDB) .4%, MDB=30.6°C WB=27.2°C + SizingPeriod:DesignDay, + Macdill Afb Ann Clg .4% Condns WB=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 30.6, !- Maximum Dry-Bulb Temperature {C} + 7.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 27.2, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 3.1, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.491, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.016; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Macdill Afb_FL_USA Annual Cooling (WB=>MDB) 1%, MDB=30.6°C WB=26.7°C + SizingPeriod:DesignDay, + Macdill Afb Ann Clg 1% Condns WB=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 30.6, !- Maximum Dry-Bulb Temperature {C} + 7.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 26.7, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 3.1, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.491, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.016; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Macdill Afb_FL_USA Annual Cooling (WB=>MDB) 2%, MDB=30.4°C WB=26.2°C + SizingPeriod:DesignDay, + Macdill Afb Ann Clg 2% Condns WB=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 30.4, !- Maximum Dry-Bulb Temperature {C} + 7.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 26.2, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 3.1, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.491, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.016; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Macdill Afb_FL_USA Annual Cooling (DP=>MDB) .4%, MDB=28.6°C DP=26.2°C HR=0.0217 + SizingPeriod:DesignDay, + Macdill Afb Ann Clg .4% Condns DP=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 28.6, !- Maximum Dry-Bulb Temperature {C} + 7.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + 26.2, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 3.1, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.491, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.016; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Macdill Afb_FL_USA Annual Cooling (DP=>MDB) 1%, MDB=28.5°C DP=25.6°C HR=0.0209 + SizingPeriod:DesignDay, + Macdill Afb Ann Clg 1% Condns DP=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 28.5, !- Maximum Dry-Bulb Temperature {C} + 7.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + 25.6, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 3.1, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.491, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.016; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Macdill Afb_FL_USA Annual Cooling (DP=>MDB) 2%, MDB=28.3°C DP=25.1°C HR=0.0202 + SizingPeriod:DesignDay, + Macdill Afb Ann Clg 2% Condns DP=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 28.3, !- Maximum Dry-Bulb Temperature {C} + 7.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + 25.1, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 3.1, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.491, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.016; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Macdill Afb_FL_USA Annual Cooling (Enthalpy=>MDB) .4%, MDB=30.6°C Enthalpy=85100.0J/kg + SizingPeriod:DesignDay, + Macdill Afb Ann Clg .4% Condns Enth=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 30.6, !- Maximum Dry-Bulb Temperature {C} + 7.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Enthalpy, !- Humidity Condition Type + , !- Wetbulb or Dewpoint at Maximum Dry-Bulb + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + 85100.0, !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 3.1, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.491, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.016; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Macdill Afb_FL_USA Annual Cooling (Enthalpy=>MDB) 1%, MDB=30.6°C Enthalpy=82700.0J/kg + SizingPeriod:DesignDay, + Macdill Afb Ann Clg 1% Condns Enth=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 30.6, !- Maximum Dry-Bulb Temperature {C} + 7.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Enthalpy, !- Humidity Condition Type + , !- Wetbulb or Dewpoint at Maximum Dry-Bulb + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + 82700.0, !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 3.1, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.491, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.016; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Macdill Afb_FL_USA Annual Cooling (Enthalpy=>MDB) 2%, MDB=30.2°C Enthalpy=81100.0J/kg + SizingPeriod:DesignDay, + Macdill Afb Ann Clg 2% Condns Enth=>MDB, !- Name + 8, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 30.2, !- Maximum Dry-Bulb Temperature {C} + 7.9, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Enthalpy, !- Humidity Condition Type + , !- Wetbulb or Dewpoint at Maximum Dry-Bulb + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + 81100.0, !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 101229., !- Barometric Pressure {Pa} + 3.1, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 270, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.491, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 2.016; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + diff --git a/example_files/weather/USA_FL_MacDill.AFB.747880_TMY3.epw b/example_files/weather/USA_FL_MacDill.AFB.747880_TMY3.epw new file mode 100644 index 00000000..6bf5a494 --- /dev/null +++ b/example_files/weather/USA_FL_MacDill.AFB.747880_TMY3.epw @@ -0,0 +1,8768 @@ +LOCATION,Macdill Afb,FL,USA,TMY3,747880,27.85,-82.52,-5.0,8.0 +DESIGN CONDITIONS,1,Climate Design Data 2009 ASHRAE Handbook,,Heating,1,4.6,6.8,-4.9,2.5,7.9,-2.1,3.2,10.6,9.1,16.5,8.3,17,2.5,10,Cooling,8,7.9,33.9,25.1,33.1,24.9,32.6,24.9,27.2,30.6,26.7,30.6,26.2,30.4,3.1,270,26.2,21.7,28.6,25.6,20.9,28.5,25.1,20.2,28.3,85.1,30.6,82.7,30.6,81.1,30.2,560,Extremes,8.4,7.4,6.6,29.4,0.8,35.5,2.8,1,-1.2,36.2,-2.9,36.8,-4.5,37.3,-6.5,38 +TYPICAL/EXTREME PERIODS,6,Summer - Week Nearest Max Temperature For Period,Extreme,7/15,7/21,Summer - Week Nearest Average Temperature For Period,Typical,9/ 9,9/15,Winter - Week Nearest Min Temperature For Period,Extreme,1/22,1/28,Winter - Week Nearest Average Temperature For Period,Typical,3/ 5,3/11,Autumn - Week Nearest Average Temperature For Period,Typical,11/26,12/ 2,Spring - Week Nearest Average Temperature For Period,Typical,4/22,4/28 +GROUND TEMPERATURES,3,.5,,,,18.18,15.96,15.35,15.88,18.88,22.24,25.40,27.68,28.35,27.28,24.69,21.42,2,,,,20.18,18.10,17.10,17.07,18.65,20.95,23.42,25.54,26.63,26.43,24.97,22.73,4,,,,21.48,19.86,18.87,18.57,19.15,20.49,22.15,23.78,24.88,25.14,24.51,23.20 +HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +COMMENTS 1,Custom/User Format -- WMO#747880; NREL TMY Data Set (2008); Period of Record 1973-2005 (Generally) +COMMENTS 2, -- Ground temps produced with a standard soil diffusivity of 2.3225760E-03 {m**2/day} +DATA PERIODS,1,1,Data,Sunday, 1/ 1,12/31 +2001,1,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,14.0,82,102000,0,0,354,0,0,0,0,0,0,0,40,2.6,6,6,777.7,12898,9,999999999,100,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,14.0,82,102000,0,0,354,0,0,0,0,0,0,0,50,3.1,6,6,777.7,12136,9,999999999,100,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,14.0,82,102000,0,0,354,0,0,0,0,0,0,0,50,2.6,6,6,777.7,11375,9,999999999,100,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,13.0,77,102000,0,0,353,0,0,0,0,0,0,0,20,1.5,6,6,777.7,10614,9,999999999,100,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,14.0,88,102000,0,0,350,0,0,0,0,0,0,0,80,3.1,6,6,777.7,9852,9,999999999,100,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,13.0,82,102000,0,0,353,0,0,0,0,0,0,0,70,2.6,7,7,777.7,9091,9,999999999,100,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,14.0,82,102000,0,0,383,0,0,0,0,0,0,0,70,3.1,10,10,777.7,8330,9,999999999,110,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,14.0,88,102000,52,884,367,5,129,2,1131,7657,649,80,50,2.1,9,9,777.7,7568,9,999999999,110,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,14.0,73,102000,302,1415,393,176,515,66,17841,39884,9291,1145,60,4.6,10,10,777.7,6807,9,999999999,110,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.0,14.0,68,102000,542,1415,374,334,581,111,34290,54035,13514,2085,70,4.1,7,7,777.7,6045,9,999999999,110,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.0,15.0,64,102000,728,1415,391,466,598,157,49784,60251,18668,3327,80,3.6,8,8,777.7,5284,9,999999999,110,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,15.0,57,102000,847,1415,402,615,846,107,64487,84235,13867,2460,60,2.6,8,8,777.7,4523,9,999999999,120,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,15.0,54,102000,891,1415,428,651,931,63,68465,92530,9967,1747,350,2.6,10,10,777.7,3761,9,999999999,120,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,13.0,45,102000,857,1415,431,610,866,83,63515,85679,11416,1908,280,1.5,10,10,777.7,3000,9,999999999,120,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,15.0,54,102100,747,1415,428,516,841,70,53988,82371,10314,1610,270,2.1,10,10,777.7,4500,9,999999999,129,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,15.0,54,102100,569,1415,428,359,664,90,37480,63253,11929,1793,270,1.5,10,10,777.7,5527,9,999999999,129,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,17.0,65,102100,335,1415,413,173,437,68,17519,35379,9095,1207,300,1.0,9,9,777.7,6553,9,999999999,139,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.0,17.0,83,102100,76,1073,391,18,175,10,2491,10191,1719,235,350,2.1,9,9,777.7,7522,9,999999999,150,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,17.0,88,102100,0,0,397,0,0,0,0,0,0,0,320,2.1,10,10,777.7,0,9,999999999,150,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,16.0,83,102100,0,0,396,0,0,0,0,0,0,0,310,1.5,10,10,777.7,0,9,999999999,160,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,17.0,88,102100,0,0,397,0,0,0,0,0,0,0,330,1.0,10,10,777.7,0,9,999999999,160,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,16.0,83,102100,0,0,396,0,0,0,0,0,0,0,80,3.1,10,10,777.7,0,9,999999999,170,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,17.0,94,102100,0,0,392,0,0,0,0,0,0,0,60,2.6,10,10,777.7,0,9,999999999,179,0.0720,0,88,0.140,999.0,99.0 +2001,1,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,17.0,100,102100,0,0,386,0,0,0,0,0,0,0,80,3.1,10,10,777.7,0,9,999999999,179,0.0720,0,88,0.140,999.0,99.0 +2001,1,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,16.0,88,102100,0,0,390,0,0,0,0,0,0,0,90,2.6,10,10,777.7,0,9,999999999,189,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,15.0,88,102100,0,0,384,0,0,0,0,0,0,0,90,3.1,10,10,777.7,0,9,999999999,189,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,15.0,94,102100,0,0,379,0,0,0,0,0,0,0,70,2.6,10,10,777.7,0,9,999999999,189,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,16.0,94,102100,0,0,385,0,0,0,0,0,0,0,60,3.1,10,10,777.7,0,9,999999999,189,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,15.0,88,102100,0,0,384,0,0,0,0,0,0,0,10,1.0,10,10,777.7,0,9,999999999,189,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,15.0,94,102100,0,0,379,0,0,0,0,0,0,0,70,1.0,10,10,777.7,150,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,15.0,94,102100,0,0,351,0,0,0,0,0,0,0,60,2.6,9,6,777.7,1350,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,14.0,94,102100,51,884,345,2,8,2,300,300,300,30,60,3.1,9,6,777.7,1500,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,15.0,83,102100,301,1415,389,88,34,81,9700,2800,9100,2020,70,3.6,10,10,777.7,240,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.0,16.0,78,102100,542,1415,363,286,294,173,30100,28700,19100,3720,70,3.1,3,3,777.7,77777,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,17.0,65,102100,728,1415,380,272,55,243,29800,5500,26900,7190,110,1.5,2,2,777.7,77777,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,16.0,57,102000,848,1415,398,385,157,291,41900,16400,32000,7870,140,3.1,9,6,777.7,900,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,15.0,51,101800,893,1415,402,290,48,259,31900,4900,28800,8720,180,1.5,9,6,777.7,1200,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,14.0,48,101700,859,1415,391,475,311,286,50800,33000,30600,7370,250,2.6,3,3,777.7,77777,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,14.0,45,101700,750,1415,406,159,0,159,18600,0,18600,6950,290,1.5,9,6,777.7,900,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,14.0,48,101700,572,1415,400,134,0,134,15300,0,15300,5340,330,1.5,9,6,777.7,900,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,14.0,48,101700,339,1415,400,173,366,85,17900,29700,10800,1580,310,1.0,9,6,777.7,450,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.0,12.6,55,101700,78,1073,397,19,162,11,2500,8400,1900,210,290,1.0,9,9,777.7,2085,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.0,11.2,57,101800,0,0,384,0,0,0,0,0,0,0,350,1.4,9,9,777.7,3449,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,9.8,63,101800,0,0,359,0,0,0,0,0,0,0,360,2.0,8,8,777.7,7004,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,9.5,61,101900,0,0,353,0,0,0,0,0,0,0,350,1.9,7,7,777.7,8338,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.0,8.1,68,101900,0,0,337,0,0,0,0,0,0,0,30,1.9,7,7,777.7,9073,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.0,6.7,70,101900,0,0,323,0,0,0,0,0,0,0,40,3.4,6,6,777.7,10689,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.0,5.3,68,102000,0,0,314,0,0,0,0,0,0,0,40,1.8,5,5,777.7,12305,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,3.9,66,102100,0,0,306,0,0,0,0,0,0,0,60,2.3,4,4,777.7,13921,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.0,1.5,63,102200,0,0,292,0,0,0,0,0,0,0,70,1.8,3,3,777.7,15537,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.0,0.2,66,102200,0,0,283,0,0,0,0,0,0,0,60,1.1,3,3,777.7,17152,9,999999999,179,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.0,-0.2,64,102300,0,0,280,0,0,0,0,0,0,0,350,1.7,2,2,777.7,18769,9,999999999,170,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.0,-1.6,66,102400,0,0,267,0,0,0,0,0,0,0,0,0.0,1,1,777.7,20384,9,999999999,170,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-3.0,63,102400,0,0,257,0,0,0,0,0,0,0,20,2.1,0,0,11.3,77777,9,999999999,160,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-3.0,67,102500,0,0,264,0,0,0,0,0,0,0,20,3.6,3,3,11.3,77777,9,999999999,160,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-3.0,59,102600,50,861,269,4,151,1,1200,9000,600,40,40,4.1,2,2,11.3,77777,9,999999999,150,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-3.0,55,102700,301,1415,276,186,619,53,19000,48600,8700,960,30,5.1,3,3,11.3,77777,9,999999999,150,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,102700,541,1415,286,349,706,77,36700,66900,11000,1540,40,5.7,2,2,11.3,77777,9,999999999,150,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-2.0,42,102800,729,1415,297,511,843,75,53300,82300,10800,1610,40,4.1,3,3,11.3,77777,9,999999999,139,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-3.0,34,102800,849,1415,307,603,852,89,62600,84200,11900,1920,30,4.1,5,4,11.3,77777,9,999999999,139,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-4.0,31,102600,895,1415,311,634,781,138,67300,79100,17100,3470,330,2.6,9,6,11.3,7500,9,999999999,129,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-2.0,32,102600,862,1415,322,534,538,205,56800,55200,23100,4910,300,3.1,9,6,11.3,7500,9,999999999,129,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-4.0,29,102400,753,1415,315,482,598,162,51500,60500,19200,3490,310,2.1,9,6,11.3,3000,9,999999999,129,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,0.0,44,102400,576,1415,315,279,227,186,30200,22400,21000,4380,300,4.1,9,6,11.3,4500,9,999999999,129,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.0,0.5,48,102300,342,1415,320,113,72,95,12300,6200,10800,2400,300,3.9,10,8,11.3,4500,9,999999999,129,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,1.0,57,102300,81,1097,318,18,111,12,2200,5800,1700,230,300,3.6,10,9,11.3,4500,9,999999999,129,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,0.0,53,102300,0,0,317,0,0,0,0,0,0,0,310,4.6,10,9,11.3,3600,9,999999999,129,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,0.0,57,102300,0,0,313,0,0,0,0,0,0,0,330,4.1,10,9,11.3,3600,9,999999999,129,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,1.0,61,102400,0,0,314,0,0,0,0,0,0,0,330,2.6,10,9,11.3,3600,9,999999999,129,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,102400,0,0,315,0,0,0,0,0,0,0,330,3.1,10,9,11.3,3600,9,999999999,129,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,1.0,61,102400,0,0,314,0,0,0,0,0,0,0,330,3.6,10,9,11.3,3600,9,999999999,129,0.0710,0,88,0.140,999.0,99.0 +2001,1,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,0.0,57,102300,0,0,313,0,0,0,0,0,0,0,350,3.6,10,9,11.3,3600,9,999999999,129,0.0710,0,88,0.140,999.0,99.0 +2001,1,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,102300,0,0,300,0,0,0,0,0,0,0,340,3.1,10,7,11.3,3600,9,999999999,129,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-2.0,55,102300,0,0,296,0,0,0,0,0,0,0,350,2.6,10,8,11.3,3600,9,999999999,120,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-2.0,64,102200,0,0,270,0,0,0,0,0,0,0,360,2.6,5,2,11.3,77777,9,999999999,120,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,102200,0,0,256,0,0,0,0,0,0,0,350,2.1,0,0,11.3,77777,9,999999999,110,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,102200,0,0,252,0,0,0,0,0,0,0,10,3.1,0,0,11.3,77777,9,999999999,100,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-6.0,52,102300,0,0,250,0,0,0,0,0,0,0,30,2.6,0,0,11.3,77777,9,999999999,100,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-5.0,61,102300,0,0,248,0,0,0,0,0,0,0,20,3.1,0,0,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,102400,50,861,257,4,132,1,1000,7800,600,40,10,1.0,3,1,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,102400,300,1415,259,177,551,60,18100,42900,8900,1060,10,4.1,0,0,11.3,77777,9,999999999,80,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-3.0,48,102500,542,1415,272,370,788,67,38500,74200,9900,1360,360,4.6,0,0,11.3,77777,9,999999999,69,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-3.0,44,102500,730,1415,276,511,849,72,53500,82900,10500,1590,360,5.7,0,0,11.3,77777,9,999999999,69,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-3.0,39,102400,851,1415,284,615,901,72,64400,89200,10600,1800,330,4.1,0,0,11.3,77777,9,999999999,60,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-2.0,42,102300,897,1415,285,646,889,80,67300,88200,11200,1970,290,4.6,0,0,11.3,77777,9,999999999,60,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-4.0,36,102200,864,1415,283,622,890,76,65000,88200,10900,1870,290,5.1,0,0,11.3,77777,9,999999999,60,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.3,-3.9,35,102200,756,1415,284,522,836,74,54600,81900,10600,1650,300,5.1,0,0,11.3,77777,9,999999999,60,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-4.0,36,102200,579,1415,283,360,677,82,38000,65000,11300,1670,310,5.1,0,0,11.3,77777,9,999999999,60,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-3.0,44,102200,346,1415,276,193,606,44,19900,51300,7300,880,310,4.6,0,0,11.3,77777,9,999999999,60,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-3.0,51,102200,83,1120,273,22,248,9,3100,15500,1900,280,320,2.6,3,1,11.3,77777,9,999999999,50,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,102300,0,0,265,0,0,0,0,0,0,0,360,2.2,0,0,11.3,77777,9,999999999,50,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.0,64,102300,0,0,266,0,0,0,0,0,0,0,30,1.9,0,0,11.3,77777,9,999999999,50,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-2.0,68,102300,0,0,258,0,0,0,0,0,0,0,70,1.5,0,0,11.3,77777,9,999999999,50,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,102300,0,0,263,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,50,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,102300,0,0,262,0,0,0,0,0,0,0,40,2.1,0,0,11.3,77777,9,999999999,50,0.0700,0,88,0.140,999.0,99.0 +2001,1,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,102200,0,0,263,0,0,0,0,0,0,0,30,1.0,0,0,11.3,77777,9,999999999,50,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,102200,0,0,271,0,0,0,0,0,0,0,350,2.1,0,0,11.3,77777,9,999999999,50,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,102100,0,0,259,0,0,0,0,0,0,0,30,1.5,0,0,11.3,77777,9,999999999,50,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,0.0,87,102100,0,0,256,0,0,0,0,0,0,0,50,2.1,0,0,11.3,77777,9,999999999,60,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,102100,0,0,252,0,0,0,0,0,0,0,40,2.1,0,0,11.3,77777,9,999999999,60,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,102100,0,0,252,0,0,0,0,0,0,0,60,2.6,0,0,11.3,77777,9,999999999,69,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,102100,0,0,248,0,0,0,0,0,0,0,50,2.1,0,0,11.3,77777,9,999999999,69,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,0.0,93,102100,0,0,252,0,0,0,0,0,0,0,70,1.5,0,0,11.3,77777,9,999999999,69,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,0.0,100,102100,50,861,257,4,144,1,1100,8500,600,40,100,1.5,2,2,11.3,77777,9,999999999,80,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,102200,300,1415,275,186,606,57,19000,47300,8900,1020,120,1.8,0,0,11.3,77777,9,999999999,80,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,0.0,53,102200,542,1415,283,349,707,77,36700,67000,11000,1540,140,2.1,0,0,11.3,77777,9,999999999,80,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-2.0,37,102200,730,1415,293,505,800,90,52800,78700,12000,1940,150,3.1,0,0,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-1.0,35,102100,852,1415,312,609,864,87,63400,85400,11800,1920,170,3.1,2,2,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,3.0,47,101900,899,1415,320,652,907,74,68200,90100,10800,1910,150,2.6,3,3,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,5.0,55,101800,867,1415,327,610,830,100,64600,83100,13500,2410,160,3.6,5,5,11.3,77777,9,999999999,100,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,7.0,59,101700,759,1415,329,522,842,69,54700,82600,10200,1620,200,5.7,3,3,11.3,77777,9,999999999,100,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.0,63,101600,582,1415,316,376,724,77,38900,68800,10400,1530,220,4.6,0,0,11.3,77777,9,999999999,100,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,8.0,67,101600,349,1415,325,184,506,58,19000,42100,8500,1070,220,5.1,3,3,11.3,77777,9,999999999,110,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,101500,86,1120,311,23,240,10,3200,15100,1900,300,240,4.1,2,2,11.3,77777,9,999999999,110,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,101500,0,0,301,0,0,0,0,0,0,0,230,3.1,0,0,11.3,77777,9,999999999,110,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,101500,0,0,305,0,0,0,0,0,0,0,210,4.1,0,0,11.3,77777,9,999999999,120,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,101500,0,0,315,0,0,0,0,0,0,0,210,3.1,3,3,11.3,77777,9,999999999,120,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,101500,0,0,325,0,0,0,0,0,0,0,210,2.6,5,5,11.3,77777,9,999999999,120,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,101600,0,0,326,0,0,0,0,0,0,0,240,1.5,5,5,11.3,77777,9,999999999,129,0.0700,0,88,0.140,999.0,99.0 +2001,1,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,101500,0,0,312,0,0,0,0,0,0,0,230,1.0,2,2,11.3,77777,9,999999999,129,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,11.0,88,101500,0,0,311,0,0,0,0,0,0,0,270,1.3,0,0,11.3,77777,9,999999999,129,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,10.0,100,101400,0,0,297,0,0,0,0,0,0,0,310,1.5,0,0,11.3,77777,9,999999999,129,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,101400,0,0,302,0,0,0,0,0,0,0,310,1.5,0,0,11.3,77777,9,999999999,129,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,101500,0,0,301,0,0,0,0,0,0,0,320,1.5,0,0,11.3,77777,9,999999999,120,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,101400,0,0,301,0,0,0,0,0,0,0,300,1.5,0,0,11.3,77777,9,999999999,120,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,101500,0,0,307,0,0,0,0,0,0,0,210,0.5,0,0,11.3,77777,9,999999999,120,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,101500,0,0,317,0,0,0,0,0,0,0,310,0.5,2,2,11.3,77777,9,999999999,110,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,101600,49,861,306,4,143,1,1100,8500,600,40,360,2.1,0,0,11.3,77777,9,999999999,110,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,101700,300,1415,302,186,607,57,19000,47300,8900,1020,360,2.1,0,0,11.3,77777,9,999999999,110,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.0,44,101700,542,1415,329,335,594,106,34400,55400,13100,2010,340,2.1,5,5,11.3,77777,9,999999999,100,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,5.0,48,101700,731,1415,328,453,550,168,48100,55400,19400,3590,270,3.6,2,2,11.3,77777,9,999999999,100,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,2.0,39,101700,854,1415,314,535,568,191,57300,58300,22000,4510,260,3.1,0,0,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,0.0,30,101700,901,1415,321,592,691,150,62500,69800,17900,3770,290,3.6,0,0,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,-1.0,27,101600,870,1415,319,570,693,142,60200,69900,17000,3460,330,4.1,0,0,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,-1.0,29,101500,762,1415,315,528,842,73,55200,82600,10600,1660,310,4.6,0,0,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,0.0,34,101600,586,1415,312,387,782,62,41000,75200,9800,1350,320,4.1,0,0,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.0,41,101600,353,1415,310,199,585,52,20700,49100,8400,980,320,3.1,0,0,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,101600,89,1144,295,26,275,10,3500,17400,2100,300,310,2.1,0,0,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,101600,0,0,288,0,0,0,0,0,0,0,300,2.1,0,0,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,101600,0,0,276,0,0,0,0,0,0,0,320,1.0,0,0,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,101600,0,0,281,0,0,0,0,0,0,0,300,1.0,0,0,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,101700,0,0,276,0,0,0,0,0,0,0,340,1.0,0,0,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,101700,0,0,276,0,0,0,0,0,0,0,320,1.0,0,0,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,101600,0,0,272,0,0,0,0,0,0,0,70,1.5,0,0,11.3,77777,9,999999999,89,0.0700,0,88,0.140,999.0,99.0 +2001,1,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,101600,0,0,267,0,0,0,0,0,0,0,50,1.0,0,0,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,101600,0,0,272,0,0,0,0,0,0,0,50,1.5,0,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,101500,0,0,262,0,0,0,0,0,0,0,40,1.5,0,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,101600,0,0,267,0,0,0,0,0,0,0,40,1.5,0,0,9.7,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,3.0,100,101600,0,0,262,0,0,0,0,0,0,0,60,1.5,0,0,9.7,77777,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,101600,0,0,267,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,5.0,100,101700,0,0,272,0,0,0,0,0,0,0,70,2.1,0,0,9.7,77777,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,4.0,100,101700,49,861,267,3,108,1,900,6400,500,40,60,2.1,2,0,9.7,77777,9,999999999,120,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,101800,299,1415,296,169,462,70,16900,35500,9400,1190,140,3.1,3,0,11.3,77777,9,999999999,120,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,8.0,72,101800,543,1415,313,342,650,91,35500,61100,12000,1780,140,2.6,5,1,11.3,77777,9,999999999,129,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,6.0,55,101800,732,1415,320,511,830,80,54200,82100,11600,1810,150,3.1,5,1,11.3,77777,9,999999999,129,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,6.0,48,101800,855,1415,334,616,883,80,64200,87400,11200,1880,160,2.6,9,2,11.3,7500,9,999999999,129,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,10.0,56,101600,903,1415,343,652,895,79,68100,88900,11100,1980,260,2.1,5,1,11.3,77777,9,999999999,139,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,11.0,60,101600,873,1415,344,611,818,104,64400,81800,13800,2490,220,2.1,5,1,11.3,77777,9,999999999,150,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,11.0,60,101500,766,1415,344,523,818,78,55900,81500,11600,1830,200,3.1,5,1,11.3,77777,9,999999999,150,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,101500,590,1415,342,388,753,73,40400,72000,10300,1500,220,5.1,5,1,11.3,77777,9,999999999,160,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,101500,357,1415,339,195,558,53,20300,47000,8400,1000,230,3.6,9,3,11.3,7500,9,999999999,170,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,101500,92,1167,322,25,190,13,3100,10200,2200,250,230,2.6,5,1,11.3,77777,9,999999999,170,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,12.0,94,101600,0,0,325,0,0,0,0,0,0,0,250,2.1,9,3,11.3,7500,9,999999999,179,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,101600,0,0,317,0,0,0,0,0,0,0,230,1.5,9,2,11.3,7500,9,999999999,189,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,101600,0,0,315,0,0,0,0,0,0,0,230,1.5,9,3,11.3,7500,9,999999999,189,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,101600,0,0,317,0,0,0,0,0,0,0,200,0.5,9,2,11.3,7500,9,999999999,200,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,101600,0,0,321,0,0,0,0,0,0,0,190,1.0,9,3,9.7,7500,9,999999999,209,0.0690,0,88,0.140,999.0,99.0 +2001,1,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,101600,0,0,317,0,0,0,0,0,0,0,210,2.1,9,2,6.4,7500,9,999999999,220,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,101500,0,0,331,0,0,0,0,0,0,0,210,2.6,9,5,3.2,7500,9,999999999,220,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,101500,0,0,331,0,0,0,0,0,0,0,180,3.1,9,5,4.0,7500,9,999999999,229,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,101500,0,0,331,0,0,0,0,0,0,0,210,2.6,9,5,3.2,7500,9,999999999,229,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,101300,0,0,331,0,0,0,0,0,0,0,150,4.1,9,5,9.7,7500,9,999999999,229,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,101300,0,0,357,0,0,0,0,0,0,0,180,2.6,10,9,11.3,990,9,999999999,229,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,101300,0,0,319,0,0,0,0,0,0,0,170,3.1,3,1,11.3,77777,9,999999999,240,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.1,13.1,100,101400,0,0,327,0,0,0,0,0,0,0,170,2.9,6,3,11.3,14750,9,999999999,240,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,101400,49,861,337,4,85,2,800,5000,500,80,170,2.6,9,5,11.3,7500,9,999999999,240,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,15.0,94,101400,300,1415,348,187,366,109,19200,28100,13200,2270,200,3.6,9,5,11.3,2100,9,999999999,240,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,18.0,100,101500,543,1415,382,63,0,63,7600,0,7600,2830,230,4.6,10,9,11.3,2100,9,999999999,250,0.0690,0,88,0.140,0.0,3.0 +2001,1,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,18.0,94,101400,734,1415,387,84,0,84,10300,0,10300,4040,220,6.2,10,9,11.3,1200,9,999999999,250,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,101500,857,1415,382,118,0,118,14300,0,14300,5760,260,4.6,10,9,2.4,300,9,999999999,250,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,18.0,100,101300,906,1415,361,181,0,181,21400,0,21400,8420,230,3.1,9,5,11.3,3000,9,999999999,250,0.0690,0,88,0.140,12.0,6.0 +2001,1,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,19.0,100,101300,876,1415,367,100,0,100,12300,0,12300,5010,240,3.1,9,5,11.3,2400,9,999999999,250,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,101200,769,1415,382,108,0,108,13000,0,13000,5120,220,3.6,10,9,11.3,1050,9,999999999,240,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,17.0,100,101200,593,1415,376,81,0,81,9700,0,9700,3620,240,2.6,10,9,11.3,450,9,999999999,229,0.0690,0,88,0.140,13.0,3.0 +2001,1,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,101300,361,1415,361,105,22,99,11500,1900,11000,2530,240,3.1,9,5,11.3,1200,9,999999999,220,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101300,95,1191,355,14,0,14,1700,0,1700,530,240,2.1,9,5,11.3,1200,9,999999999,209,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,16.0,100,101300,0,0,349,0,0,0,0,0,0,0,270,2.1,9,5,6.4,2400,9,999999999,200,0.0690,0,88,0.140,13.0,6.0 +2001,1,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,101400,0,0,369,0,0,0,0,0,0,0,300,2.6,10,9,9.7,1200,9,999999999,189,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,101400,0,0,369,0,0,0,0,0,0,0,290,1.5,10,9,11.3,1200,9,999999999,189,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,101500,0,0,343,0,0,0,0,0,0,0,320,3.1,9,5,11.3,1500,9,999999999,179,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,101500,0,0,343,0,0,0,0,0,0,0,310,2.6,9,5,11.3,7500,9,999999999,170,0.0690,0,88,0.140,999.0,99.0 +2001,1,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,101600,0,0,337,0,0,0,0,0,0,0,330,3.6,9,5,11.3,7500,9,999999999,160,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,101600,0,0,326,0,0,0,0,0,0,0,330,3.6,5,3,11.3,77777,9,999999999,150,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,101600,0,0,312,0,0,0,0,0,0,0,350,6.2,2,1,11.3,77777,9,999999999,139,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.0,82,101700,0,0,299,0,0,0,0,0,0,0,350,6.7,3,1,11.3,77777,9,999999999,139,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,6.0,81,101700,0,0,306,0,0,0,0,0,0,0,350,5.1,9,5,11.3,7500,9,999999999,129,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,101800,0,0,288,0,0,0,0,0,0,0,360,6.2,3,1,11.3,77777,9,999999999,120,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,101800,0,0,282,0,0,0,0,0,0,0,360,5.7,2,1,11.3,77777,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,2.0,81,102000,0,0,274,0,0,0,0,0,0,0,360,3.6,3,1,11.3,77777,9,999999999,100,0.0690,0,88,0.140,26.0,24.0 +2001,1,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,102000,49,861,274,3,107,1,900,6300,500,40,360,3.6,2,1,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,102100,300,1415,282,169,462,71,17000,35500,9500,1210,350,4.6,3,1,11.3,77777,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,102200,544,1415,290,349,694,81,36600,65700,11300,1610,330,4.1,2,1,11.3,77777,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,102200,735,1415,299,512,830,78,54400,82200,11500,1780,330,5.1,3,1,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,102200,859,1415,299,610,846,94,64900,84800,13200,2300,320,6.7,2,1,11.3,77777,9,999999999,60,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,0.0,47,102200,908,1415,296,652,877,87,67900,87100,11800,2060,300,6.2,3,1,11.3,77777,9,999999999,50,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,0.0,47,102100,879,1415,296,623,842,98,66200,84500,13600,2420,300,6.2,2,1,11.3,77777,9,999999999,60,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,0.0,47,102100,773,1415,326,523,795,87,55300,78900,12100,1990,320,7.2,10,9,11.3,7500,9,999999999,60,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,1.0,54,102100,597,1415,323,394,765,69,41300,73500,10100,1460,310,6.2,10,9,11.3,7500,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,0.0,57,102100,364,1415,313,196,486,70,20000,40600,9500,1260,320,7.2,10,9,11.3,7500,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,102200,98,1191,308,31,227,16,3700,12200,2700,300,330,5.7,10,9,11.3,7500,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-1.0,60,102300,0,0,282,0,0,0,0,0,0,0,330,5.1,5,3,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-1.0,60,102400,0,0,279,0,0,0,0,0,0,0,350,4.1,5,2,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-1.0,60,102400,0,0,282,0,0,0,0,0,0,0,360,4.1,5,3,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-2.0,59,102500,0,0,274,0,0,0,0,0,0,0,10,4.6,5,2,11.3,77777,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.0,50,102500,0,0,275,0,0,0,0,0,0,0,10,4.6,5,3,11.3,77777,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,102500,0,0,268,0,0,0,0,0,0,0,20,3.6,5,2,11.3,77777,9,999999999,120,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,102500,0,0,256,0,0,0,0,0,0,0,20,3.1,2,0,11.3,77777,9,999999999,129,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,102500,0,0,252,0,0,0,0,0,0,0,20,3.1,3,0,11.3,77777,9,999999999,120,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,102500,0,0,252,0,0,0,0,0,0,0,20,3.1,0,0,11.3,77777,9,999999999,120,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,102500,0,0,252,0,0,0,0,0,0,0,20,3.1,0,0,11.3,77777,9,999999999,120,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-4.0,67,102500,0,0,248,0,0,0,0,0,0,0,10,2.6,2,0,11.3,77777,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,102700,0,0,256,0,0,0,0,0,0,0,10,2.6,3,0,11.3,77777,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-4.0,58,102600,0,0,256,0,0,0,0,0,0,0,20,3.1,2,0,11.3,77777,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,102700,49,861,259,3,94,2,900,5500,500,80,10,2.6,5,0,11.3,77777,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-5.0,46,102800,300,1415,267,169,407,82,17300,31300,10600,1530,30,4.6,9,1,11.3,7500,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-4.0,44,102800,545,1415,276,328,569,108,33700,53100,13200,2050,40,5.1,9,1,11.3,7500,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-3.0,41,102800,736,1415,280,499,751,106,52900,74900,13700,2350,50,5.1,2,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-2.0,39,102700,861,1415,289,579,695,154,60700,69800,18100,3670,40,5.1,3,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-2.0,35,102500,911,1415,297,671,877,104,71200,88100,14300,2620,70,5.1,2,0,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-3.0,30,102400,882,1415,300,605,705,164,63400,70800,19100,3970,50,3.6,3,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-3.0,28,102300,776,1415,304,489,635,140,51200,63100,16400,3090,70,4.6,2,0,11.3,77777,9,999999999,120,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-4.0,26,102300,601,1415,303,372,625,106,38700,59800,13200,2100,80,3.1,3,0,11.3,77777,9,999999999,129,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-3.0,28,102400,368,1415,304,191,481,65,19700,40600,9000,1190,60,3.1,2,0,11.3,77777,9,999999999,139,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-1.0,43,102400,101,1214,290,32,213,17,3700,11500,2700,320,350,2.1,3,0,11.3,77777,9,999999999,150,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,102500,0,0,287,0,0,0,0,0,0,0,320,3.1,2,0,11.3,77777,9,999999999,160,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,102500,0,0,287,0,0,0,0,0,0,0,330,3.1,3,0,11.3,77777,9,999999999,179,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,102500,0,0,283,0,0,0,0,0,0,0,330,2.6,2,0,11.3,77777,9,999999999,189,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,102500,0,0,295,0,0,0,0,0,0,0,40,1.0,10,3,11.3,4500,9,999999999,200,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,5.0,66,102400,0,0,306,0,0,0,0,0,0,0,50,4.6,10,2,11.3,4500,9,999999999,209,0.0690,0,88,0.140,999.0,99.0 +2001,1,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.9,5.1,72,102400,0,0,297,0,0,0,0,0,0,0,50,3.1,5,1,11.3,13250,9,999999999,220,0.0690,0,88,0.140,999.0,99.0 +2001,1,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,102400,0,0,288,0,0,0,0,0,0,0,50,1.5,0,0,11.3,77777,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.0,76,102300,0,0,293,0,0,0,0,0,0,0,60,2.6,0,0,11.3,77777,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,6.0,81,102400,0,0,289,0,0,0,0,0,0,0,30,1.5,0,0,11.3,77777,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,6.0,81,102300,0,0,289,0,0,0,0,0,0,0,50,3.1,0,0,11.3,77777,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,6.0,87,102300,0,0,285,0,0,0,0,0,0,0,60,5.1,0,0,11.3,77777,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,102300,0,0,286,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,102300,0,0,299,0,0,0,0,0,0,0,60,4.6,3,3,11.3,77777,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,102400,49,860,300,4,127,1,1000,7500,500,40,60,4.1,2,2,11.3,77777,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,9.0,87,102400,301,1414,318,178,552,60,18100,43000,8900,1060,60,4.6,5,5,11.3,77777,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,102400,546,1414,333,349,682,85,36600,64500,11600,1680,70,4.1,5,5,11.3,77777,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,10.0,59,102400,738,1414,352,499,745,108,52800,74300,13900,2390,70,2.6,5,5,11.3,77777,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,10.0,56,102300,864,1414,364,535,496,231,56300,50800,25100,5610,120,3.6,9,7,11.3,7500,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,9.0,46,102200,914,1414,379,653,805,131,67600,80100,15700,3040,170,3.3,9,8,11.3,7500,9,999999999,200,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,9.0,46,102200,885,1414,365,623,825,105,65800,82600,13900,2550,210,2.9,5,5,11.3,77777,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,9.0,43,102100,780,1414,364,535,830,75,55800,81600,10700,1700,260,2.6,3,3,11.3,77777,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,11.0,56,102100,605,1414,353,394,743,76,41100,71300,10500,1550,220,4.1,2,2,11.3,77777,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,11.0,60,102100,372,1414,358,216,655,43,22500,56900,7500,890,230,4.1,5,5,11.3,77777,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,11.0,72,102000,105,1238,335,35,313,13,4400,20200,2600,350,230,1.5,2,2,11.3,77777,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,102000,0,0,329,0,0,0,0,0,0,0,230,1.0,3,3,11.3,77777,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,102000,0,0,315,0,0,0,0,0,0,0,160,1.5,2,2,11.3,77777,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,102100,0,0,319,0,0,0,0,0,0,0,10,0.5,3,3,11.3,77777,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,102000,0,0,316,0,0,0,0,0,0,0,120,0.5,2,2,11.3,77777,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,102000,0,0,306,0,0,0,0,0,0,0,130,2.3,0,0,11.3,77777,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,11.0,88,101900,0,0,329,0,0,0,0,0,0,0,130,4.1,5,5,11.3,77777,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.0,11.4,90,101900,0,0,342,0,0,0,0,0,0,0,140,3.4,8,8,11.3,12500,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,12.0,94,101800,0,0,360,0,0,0,0,0,0,0,140,2.6,10,10,11.3,3000,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,101800,0,0,365,0,0,0,0,0,0,0,150,2.1,10,10,11.3,3000,9,999999999,200,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,13.0,100,101800,0,0,361,0,0,0,0,0,0,0,130,1.5,10,10,11.3,2100,9,999999999,200,0.0680,0,88,0.140,0.0,3.0 +2001,1,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,101800,0,0,361,0,0,0,0,0,0,0,140,1.5,10,10,11.3,1500,9,999999999,189,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,101800,0,0,351,0,0,0,0,0,0,0,130,2.6,9,9,11.3,2400,9,999999999,179,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,13.0,100,101800,0,0,351,0,0,0,0,0,0,0,120,2.1,9,9,11.3,1200,9,999999999,170,0.0680,0,88,0.140,1.0,6.0 +2001,1,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,13.0,94,101800,49,860,356,2,18,2,400,900,300,40,130,2.1,9,9,11.3,1200,9,999999999,160,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,15.0,94,101800,301,1414,348,107,76,90,11500,6100,10200,1950,150,2.6,5,5,11.3,77777,9,999999999,160,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,17.0,94,101800,547,1414,360,342,525,138,35700,49900,16300,2710,210,4.6,5,5,11.3,77777,9,999999999,150,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,17.0,88,101800,740,1414,386,356,183,260,38500,18800,28600,6590,240,5.7,9,9,11.3,900,9,999999999,139,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.0,78,101800,866,1414,390,504,399,259,54300,42500,28200,6570,310,3.6,9,9,11.3,900,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.0,73,101700,917,1414,358,586,601,195,60800,60000,21800,4810,310,5.7,2,2,11.3,77777,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.0,73,101700,889,1414,362,635,807,126,65800,80200,15200,2860,320,6.2,3,3,11.3,77777,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,14.0,73,101700,784,1414,352,529,688,147,55200,68300,17200,3240,320,5.1,2,2,11.3,77777,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,101700,609,1414,350,319,322,180,33900,32400,19900,3900,310,5.1,3,3,11.3,77777,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,101700,376,1414,365,178,336,88,18600,28500,10900,1630,330,6.2,9,9,11.3,900,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,101700,108,1261,353,26,60,21,2900,2700,2600,360,320,4.6,9,9,11.3,900,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,101800,0,0,353,0,0,0,0,0,0,0,330,4.6,9,9,11.3,600,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.0,10.6,85,101800,0,0,348,0,0,0,0,0,0,0,330,4.6,9,9,11.3,586,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.3,10.3,88,101800,0,0,344,0,0,0,0,0,0,0,340,4.7,9,9,11.3,573,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.5,9.8,89,101800,0,0,333,0,0,0,0,0,0,0,340,4.7,9,8,11.3,559,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.9,9.5,91,101800,0,0,330,0,0,0,0,0,0,0,350,4.8,9,8,11.3,545,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.2,9.0,92,101800,0,0,326,0,0,0,0,0,0,0,350,4.8,9,8,11.3,532,9,999999999,139,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.6,8.4,92,101800,0,0,317,0,0,0,0,0,0,0,360,4.9,9,7,11.3,518,9,999999999,139,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.1,8.0,93,101800,0,0,315,0,0,0,0,0,0,0,360,4.9,9,7,11.3,505,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.4,7.4,93,101800,0,0,311,0,0,0,0,0,0,0,10,5.0,9,7,11.3,491,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.9,6.9,93,101800,0,0,308,0,0,0,0,0,0,0,10,5.0,9,7,11.3,477,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.7,6.8,94,101800,0,0,304,0,0,0,0,0,0,0,20,5.1,9,6,11.3,464,9,999999999,120,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,101800,0,0,300,0,0,0,0,0,0,0,20,5.1,9,6,11.3,450,9,999999999,120,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,6.0,87,101800,0,0,329,0,0,0,0,0,0,0,30,4.1,10,10,11.3,450,9,999999999,120,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,6.0,87,101800,49,860,329,1,0,1,100,0,100,40,30,5.1,10,10,11.3,450,9,999999999,120,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,6.0,87,101800,302,1414,329,62,0,62,7000,0,7000,2270,340,3.6,10,10,11.3,450,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,7.0,87,102200,548,1414,334,112,0,112,12900,0,12900,4570,310,3.1,10,10,11.3,450,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.0,82,102200,742,1414,339,123,0,123,14600,0,14600,5630,310,3.1,10,10,11.3,450,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,8.0,82,102200,868,1414,345,205,6,202,24000,500,23700,8980,330,2.6,10,10,11.3,600,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,8.0,72,102100,920,1414,329,339,84,284,37300,8600,31700,9620,330,3.1,9,6,11.3,600,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,8.0,67,102100,892,1414,330,488,293,303,52100,31200,32400,8060,10,3.1,5,5,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,102000,787,1414,336,558,771,127,58800,77100,15700,2880,40,4.6,5,5,11.3,77777,9,999999999,120,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,9.0,63,102000,613,1414,332,406,778,67,42800,75200,10100,1450,60,4.6,2,2,11.3,77777,9,999999999,120,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,9.0,63,102000,381,1414,336,222,651,46,23000,56700,7700,940,30,3.6,3,3,11.3,77777,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,101900,111,1285,329,37,307,13,4400,20000,2600,350,30,1.5,2,2,11.3,77777,9,999999999,139,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,9.0,82,102000,0,0,304,0,0,0,0,0,0,0,340,1.5,0,0,11.3,77777,9,999999999,139,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,102000,0,0,295,0,0,0,0,0,0,0,350,2.1,0,0,11.3,77777,9,999999999,150,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,102000,0,0,295,0,0,0,0,0,0,0,340,2.1,0,0,11.3,77777,9,999999999,160,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,102100,0,0,291,0,0,0,0,0,0,0,360,2.6,0,0,11.3,77777,9,999999999,170,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.6,7.9,95,102100,0,0,295,0,0,0,0,0,0,0,360,2.5,1,1,11.3,77777,9,999999999,170,0.0680,0,88,0.140,999.0,99.0 +2001,1,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.2,7.8,97,102100,0,0,287,0,0,0,0,0,0,0,340,2.3,0,0,11.3,77777,9,999999999,179,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.8,7.5,98,102100,0,0,309,0,0,0,0,0,0,0,290,1.1,8,7,11.3,2305,9,999999999,189,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.5,7.4,99,102100,0,0,312,0,0,0,0,0,0,0,250,2.6,9,8,11.3,5073,9,999999999,189,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.0,7.0,100,102100,0,0,305,0,0,0,0,0,0,0,200,1.4,8,7,11.3,4391,9,999999999,189,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.8,6.8,100,102100,0,0,308,0,0,0,0,0,0,0,180,1.8,9,8,11.3,3559,9,999999999,179,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.8,6.8,100,102100,0,0,303,0,0,0,0,0,0,0,160,2.6,8,7,11.3,5727,9,999999999,179,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.4,6.4,100,102100,0,0,301,0,0,0,0,0,0,0,150,1.5,9,7,11.3,5945,9,999999999,179,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.3,7.3,100,102200,0,0,306,0,0,0,0,0,0,0,120,1.9,9,7,11.3,6464,9,999999999,179,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,5.6,100,102200,49,860,297,4,143,1,1100,8500,600,40,80,1.7,9,7,11.3,6982,9,999999999,179,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,102200,303,1414,327,187,614,55,19200,48200,8800,990,40,2.6,9,7,11.3,7500,9,999999999,179,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.7,10.5,86,102200,550,1414,334,370,744,80,39000,70600,11400,1600,50,5.8,9,7,11.3,7568,9,999999999,179,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.9,10.5,75,102200,744,1414,344,512,745,118,53900,74100,14800,2590,60,5.8,9,7,11.3,7636,9,999999999,179,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.2,10.0,63,102200,871,1414,355,548,532,219,58000,54600,24300,5320,50,4.8,9,7,11.3,11304,9,999999999,179,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.9,4.0,37,102200,923,1414,356,659,799,135,68100,79400,16000,3140,70,4.3,9,7,11.3,7472,9,999999999,179,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.0,6.8,42,102200,896,1414,365,594,687,157,62500,69200,18500,3890,40,1.9,9,7,11.3,7540,9,999999999,179,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.6,4.7,35,102100,791,1414,365,501,623,151,52200,61800,17400,3340,30,0.8,9,7,11.3,11508,9,999999999,179,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.4,7.6,46,102100,617,1414,363,379,568,131,40500,55600,16100,2600,50,4.0,9,7,11.3,7676,9,999999999,189,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.9,5.9,43,102100,385,1414,358,213,568,58,22200,49000,8800,1100,50,3.5,9,7,11.3,8644,9,999999999,189,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.4,8.8,74,102100,115,1284,335,35,222,17,4000,12400,2800,320,70,5.7,9,7,11.3,11712,9,999999999,189,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.3,8.9,80,102100,0,0,330,0,0,0,0,0,0,0,70,6.8,9,7,11.3,11780,9,999999999,200,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.4,8.9,79,102100,0,0,331,0,0,0,0,0,0,0,60,4.2,9,7,11.3,11848,9,999999999,200,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.7,10.1,96,102100,0,0,324,0,0,0,0,0,0,0,40,5.3,9,7,11.3,7416,9,999999999,200,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.7,10.7,100,102100,0,0,325,0,0,0,0,0,0,0,40,3.3,9,7,11.3,7484,9,999999999,200,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.4,10.4,100,102100,0,0,323,0,0,0,0,0,0,0,40,2.4,9,7,11.3,7552,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.2,10.2,100,102100,0,0,322,0,0,0,0,0,0,0,40,1.8,9,7,11.3,7020,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,10.0,100,102100,0,0,321,0,0,0,0,0,0,0,30,0.9,9,7,11.3,7088,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.8,9.8,100,102100,0,0,320,0,0,0,0,0,0,0,30,1.9,9,7,11.3,5956,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,9.4,100,102100,0,0,318,0,0,0,0,0,0,0,30,1.5,9,7,11.3,7224,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.3,9.3,100,102100,0,0,317,0,0,0,0,0,0,0,10,3.2,9,7,11.3,7892,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.5,9.5,100,102100,0,0,312,0,0,0,0,0,0,0,20,0.6,8,5,11.3,7960,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.2,9.2,100,102100,0,0,317,0,0,0,0,0,0,0,30,0.2,10,7,11.3,8028,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.7,9.7,100,102100,0,0,313,0,0,0,0,0,0,0,20,1.2,9,5,11.3,8096,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.3,10.3,100,102100,50,860,323,3,35,2,500,2000,400,60,30,1.8,10,7,11.3,7564,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.5,11.4,93,102100,304,1414,334,142,152,109,15100,12100,12500,2360,50,4.4,10,7,11.3,7182,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,12.1,73,102000,551,1414,356,286,338,154,30500,33200,17500,3220,60,5.5,10,7,11.3,6800,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.8,11.0,57,102000,746,1414,369,421,372,224,45000,38900,24400,5220,50,4.5,10,7,11.3,6868,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,11.6,55,102000,874,1414,365,616,725,166,64400,72600,19300,3970,60,4.5,9,4,11.3,7236,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.5,9.5,46,102000,926,1414,376,647,799,122,67700,79900,15200,2970,60,4.5,10,7,11.3,6044,9,999999999,259,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.7,9.0,39,102000,899,1414,386,636,813,117,66600,81200,14700,2790,70,4.5,10,7,11.3,6082,9,999999999,259,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.6,9.1,42,102000,795,1414,373,507,659,135,53300,65800,16100,3050,70,4.5,9,5,11.3,6240,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.2,9.2,43,102000,621,1414,379,385,620,111,40000,59700,13600,2220,80,4.4,10,7,11.3,7508,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,9.2,46,102000,389,1414,373,233,703,38,24500,62100,7400,910,80,4.4,10,7,11.3,6976,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.2,9.8,62,102000,119,1308,355,41,335,13,4800,22000,2700,360,80,3.9,10,7,11.3,7644,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.5,12.7,83,102000,0,0,350,0,0,0,0,0,0,0,60,2.4,10,7,11.3,8912,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.5,12.7,83,102000,0,0,350,0,0,0,0,0,0,0,70,2.9,10,7,11.3,6430,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.1,11.7,75,102000,0,0,351,0,0,0,0,0,0,0,70,3.6,10,7,11.3,6723,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,10.1,65,102000,0,0,353,0,0,0,0,0,0,0,60,2.6,10,7,11.3,7016,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.3,10.7,69,102000,0,0,351,0,0,0,0,0,0,0,40,1.1,10,7,11.3,7084,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.8,11.2,74,102000,0,0,349,0,0,0,0,0,0,0,40,1.7,10,7,11.3,6402,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.5,11.6,78,102000,0,0,339,0,0,0,0,0,0,0,50,1.7,9,4,11.3,6770,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.1,12.1,82,102000,0,0,340,0,0,0,0,0,0,0,40,1.3,9,5,11.3,7288,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.7,12.5,87,102000,0,0,336,0,0,0,0,0,0,0,30,0.8,9,4,11.3,7356,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.5,13.0,91,102000,0,0,345,0,0,0,0,0,0,0,40,1.4,10,7,11.3,6824,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.5,13.8,96,102000,0,0,346,0,0,0,0,0,0,0,30,1.4,10,7,11.3,7042,9,999999999,259,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,101900,0,0,337,0,0,0,0,0,0,0,40,1.5,9,5,9.7,7500,9,999999999,259,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,102000,0,0,324,0,0,0,0,0,0,0,60,2.6,2,1,9.7,77777,9,999999999,270,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,102000,50,860,330,4,130,1,1000,7700,600,40,70,2.6,3,1,11.3,77777,9,999999999,270,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,102000,305,1414,335,177,551,58,18100,43300,8800,1040,60,3.6,2,1,11.3,77777,9,999999999,279,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,16.0,83,102100,553,1414,350,377,781,70,39100,73800,10100,1410,70,3.1,3,1,11.3,77777,9,999999999,290,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,17.0,69,102000,748,1414,382,518,806,90,54400,79600,12100,1980,140,3.6,5,4,11.3,77777,9,999999999,290,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,16.0,61,102000,877,1414,386,598,744,135,63500,75300,16600,3340,150,3.6,5,4,11.3,77777,9,999999999,300,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,16.0,57,101900,929,1414,391,635,721,159,67000,72900,18900,4120,160,3.1,5,4,11.3,77777,9,999999999,300,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,15.0,51,101700,903,1414,395,500,323,293,53600,34500,31500,7800,140,2.6,5,4,11.3,77777,9,999999999,300,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,14.0,45,101700,799,1414,399,559,742,138,58700,74100,16600,3130,160,2.6,5,4,11.3,77777,9,999999999,290,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,14.0,50,101700,625,1414,389,418,785,69,44100,76100,10300,1490,160,2.1,5,4,11.3,77777,9,999999999,290,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,17.0,69,101700,393,1414,382,214,490,77,21900,42000,10200,1390,240,3.6,5,4,11.3,77777,9,999999999,290,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.0,78,101800,122,1331,368,45,271,22,5000,15100,3500,400,320,2.6,9,5,11.3,7500,9,999999999,279,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,101900,0,0,358,0,0,0,0,0,0,0,330,3.6,9,5,11.3,7500,9,999999999,279,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,16.0,94,101900,0,0,354,0,0,0,0,0,0,0,320,2.6,9,5,11.3,7500,9,999999999,270,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,16.0,94,102000,0,0,354,0,0,0,0,0,0,0,330,2.1,9,5,11.3,7500,9,999999999,270,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,102000,0,0,358,0,0,0,0,0,0,0,40,3.1,9,5,11.3,7500,9,999999999,259,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,102000,0,0,358,0,0,0,0,0,0,0,50,1.5,9,5,11.3,7500,9,999999999,259,0.0680,0,88,0.140,999.0,99.0 +2001,1,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,16.0,94,101900,0,0,340,0,0,0,0,0,0,0,30,1.3,3,1,11.3,77777,9,999999999,259,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101900,0,0,352,0,0,0,0,0,0,0,20,1.2,5,4,11.3,77777,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,101900,0,0,346,0,0,0,0,0,0,0,360,1.0,5,4,11.3,77777,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101800,0,0,355,0,0,0,0,0,0,0,40,2.1,9,5,11.3,2100,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101800,0,0,355,0,0,0,0,0,0,0,50,3.1,9,5,11.3,1800,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,101800,0,0,335,0,0,0,0,0,0,0,60,3.1,3,1,11.3,77777,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,101800,0,0,335,0,0,0,0,0,0,0,80,3.1,2,1,11.3,77777,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,16.0,100,101900,0,0,346,0,0,0,0,0,0,0,50,2.6,5,4,11.3,77777,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101900,51,860,352,3,51,2,600,3000,400,80,80,3.1,5,4,11.3,77777,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,102100,306,1414,382,142,213,95,14700,16600,11100,1900,70,3.6,10,9,11.3,1800,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.0,83,102100,555,1414,391,209,75,180,23000,7200,20100,4880,80,3.1,10,9,11.3,1800,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,18.0,78,101900,751,1414,381,259,24,246,29200,2200,28000,9420,110,2.6,9,5,11.3,1800,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,17.0,69,102000,880,1414,385,249,12,241,28700,1000,28000,10290,150,2.1,9,5,11.3,1800,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,17.0,61,101900,933,1414,395,296,24,280,34000,2200,32600,11800,270,2.6,9,5,11.3,1800,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.0,65,101800,907,1414,397,506,311,306,54100,33200,32700,8240,260,2.1,9,5,11.3,2100,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,17.0,61,101700,804,1414,395,519,665,140,54500,66400,16600,3180,280,2.6,9,5,11.3,2100,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,17.0,61,101700,630,1414,395,380,463,173,39400,45400,19200,3550,300,2.6,9,5,11.3,2100,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,17.0,65,101700,397,1414,390,107,28,99,11700,2500,11000,2630,330,2.6,9,5,11.3,2100,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,17.0,73,101800,126,1355,380,43,148,30,4700,7500,3900,530,330,2.6,9,5,11.3,2100,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.0,88,101800,0,0,371,0,0,0,0,0,0,0,320,2.1,9,5,11.3,2100,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,18.0,94,101800,0,0,366,0,0,0,0,0,0,0,330,2.1,9,5,11.3,2100,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,18.0,94,101800,0,0,366,0,0,0,0,0,0,0,330,1.0,9,5,11.3,2100,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,17.0,94,101800,0,0,360,0,0,0,0,0,0,0,320,1.5,9,5,11.3,2100,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,101800,0,0,361,0,0,0,0,0,0,0,350,1.5,9,5,11.3,1500,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.0,88,101800,0,0,371,0,0,0,0,0,0,0,40,1.5,9,5,11.3,2100,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,17.0,88,101700,0,0,372,0,0,0,0,0,0,0,60,3.1,9,7,11.3,1800,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,17.0,88,101700,0,0,378,0,0,0,0,0,0,0,70,3.1,9,8,11.3,1800,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.0,88,101600,0,0,378,0,0,0,0,0,0,0,80,3.1,9,7,11.3,1800,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,18.0,94,101600,0,0,398,0,0,0,0,0,0,0,140,2.3,10,10,11.3,1800,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101700,0,0,362,0,0,0,0,0,0,0,190,1.5,9,7,11.3,2100,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101700,0,0,368,0,0,0,0,0,0,0,90,1.5,9,8,11.3,2100,9,999999999,259,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101700,0,0,362,0,0,0,0,0,0,0,120,2.1,9,7,11.3,2100,9,999999999,259,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101800,51,860,368,3,25,2,400,1200,300,40,130,2.1,9,8,11.3,2100,9,999999999,270,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,18.0,94,101800,308,1413,373,115,103,92,12400,8300,10500,1990,130,2.1,9,7,11.3,2100,9,999999999,279,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,18.0,78,101900,557,1413,395,335,456,154,34600,43500,17400,3070,150,2.1,9,8,11.3,2100,9,999999999,279,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,18.0,73,101900,753,1413,394,363,183,265,39200,18800,29200,6770,160,2.6,9,7,11.3,1800,9,999999999,290,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,18.0,69,101800,883,1413,406,454,242,303,49400,25400,33500,8400,240,2.6,9,8,11.3,2100,9,999999999,300,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.0,69,101700,936,1413,406,478,246,314,52100,25900,34800,9080,240,2.6,9,7,11.3,2100,9,999999999,300,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.0,65,101600,911,1413,411,306,54,271,33700,5500,30100,9200,240,2.6,9,8,11.3,2100,9,999999999,300,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,19.0,74,101600,808,1413,401,462,374,248,49500,39500,26900,6050,240,6.2,9,7,11.3,2100,9,999999999,290,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.0,65,101500,634,1413,411,413,685,104,43200,66500,13200,2120,220,5.7,9,8,11.3,7500,9,999999999,279,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.0,83,101600,402,1413,390,229,621,52,23600,54700,8000,1030,230,5.1,9,7,11.3,7500,9,999999999,270,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,19.0,88,101600,130,1378,391,47,335,16,5200,21200,3000,350,230,3.1,9,8,11.3,7500,9,999999999,259,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.0,88,101600,0,0,378,0,0,0,0,0,0,0,210,3.1,9,7,11.3,7500,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,18.0,94,101600,0,0,379,0,0,0,0,0,0,0,200,2.1,9,8,11.3,7500,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,101600,0,0,368,0,0,0,0,0,0,0,200,1.5,9,7,11.3,7500,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,101700,0,0,355,0,0,0,0,0,0,0,170,2.1,3,3,11.3,77777,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,101700,0,0,352,0,0,0,0,0,0,0,180,2.1,2,2,11.3,77777,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101600,0,0,349,0,0,0,0,0,0,0,200,2.1,3,3,11.3,77777,9,999999999,200,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,17.4,99,101600,0,0,355,0,0,0,0,0,0,0,190,2.4,4,4,11.3,77777,9,999999999,189,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,101600,0,0,361,0,0,0,0,0,0,0,180,2.6,5,5,11.3,77777,9,999999999,200,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,101600,0,0,361,0,0,0,0,0,0,0,180,2.6,5,5,8.0,77777,9,999999999,200,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,19.0,100,101500,0,0,400,0,0,0,0,0,0,0,180,3.1,10,10,3.2,150,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,19.0,100,101500,0,0,367,0,0,0,0,0,0,0,190,3.6,5,5,8.0,77777,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,19.0,100,101500,0,0,370,0,0,0,0,0,0,0,170,3.1,9,6,9.7,90,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,101500,0,0,364,0,0,0,0,0,0,0,180,3.1,9,6,9.7,90,9,999999999,220,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,19.0,100,101500,52,860,367,4,139,1,1100,8300,600,40,170,3.1,5,5,9.7,77777,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,101500,309,1413,378,185,570,60,18900,44900,9000,1070,170,3.6,5,5,11.3,77777,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,101600,559,1413,379,384,800,66,40100,76000,10000,1370,180,5.1,2,2,11.3,77777,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.7,20.0,75,101600,756,1413,395,538,885,62,56400,86900,9800,1550,210,5.1,4,4,11.3,77777,9,999999999,240,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,20.0,70,101600,886,1413,405,641,889,82,66900,88200,11400,1970,230,5.1,5,5,11.3,77777,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,101500,940,1413,399,678,877,92,70400,87200,12200,2190,220,8.2,5,5,11.3,77777,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,101400,915,1413,399,648,831,108,68600,83400,14400,2710,230,7.7,5,5,11.3,77777,9,999999999,259,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,101400,812,1413,399,571,855,78,59600,84300,11000,1780,230,6.2,5,5,11.3,77777,9,999999999,270,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.0,69,101400,638,1413,388,435,826,60,45600,79600,9500,1380,210,6.2,2,2,11.3,77777,9,999999999,279,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,19.0,74,101300,406,1413,387,240,497,96,25000,43300,12500,1790,200,5.1,3,3,11.3,77777,9,999999999,290,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,19.0,78,101300,134,1401,387,27,41,23,3000,2300,2800,480,210,5.7,5,5,11.3,77777,9,999999999,300,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,20.0,88,101400,0,0,383,0,0,0,0,0,0,0,190,5.1,5,5,11.3,77777,9,999999999,309,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,20.0,88,101400,0,0,383,0,0,0,0,0,0,0,190,5.1,5,5,11.3,77777,9,999999999,320,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,101400,0,0,383,0,0,0,0,0,0,0,190,4.6,9,6,11.3,7500,9,999999999,329,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,101400,0,0,383,0,0,0,0,0,0,0,170,3.1,9,6,11.3,7500,9,999999999,340,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,101400,0,0,383,0,0,0,0,0,0,0,180,3.6,9,6,11.3,7500,9,999999999,350,0.0680,0,88,0.140,999.0,99.0 +2001,1,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,101400,0,0,413,0,0,0,0,0,0,0,180,3.6,10,10,11.3,1200,9,999999999,359,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,101400,0,0,402,0,0,0,0,0,0,0,200,3.6,9,9,11.3,1050,9,999999999,370,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,101300,0,0,402,0,0,0,0,0,0,0,220,5.1,9,9,11.3,1050,9,999999999,359,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,101200,0,0,402,0,0,0,0,0,0,0,210,5.1,9,9,11.3,900,9,999999999,350,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101300,0,0,355,0,0,0,0,0,0,0,320,4.6,5,5,11.3,77777,9,999999999,350,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101400,0,0,355,0,0,0,0,0,0,0,330,2.6,5,5,11.3,77777,9,999999999,340,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101500,0,0,376,0,0,0,0,0,0,0,290,2.6,9,9,11.3,2400,9,999999999,329,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,17.0,100,101600,0,0,386,0,0,0,0,0,0,0,290,3.1,10,10,11.3,1500,9,999999999,329,0.0680,0,88,0.140,0.0,6.0 +2001,1,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101700,53,883,386,2,27,2,400,1300,400,40,290,4.6,10,10,9.7,900,9,999999999,320,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,15.0,100,101800,311,1413,373,97,110,73,10700,9000,8700,1580,300,5.7,10,10,11.3,750,9,999999999,309,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,14.0,94,101900,561,1413,372,91,0,91,10700,0,10700,3920,300,5.7,10,10,11.3,450,9,999999999,300,0.0680,0,88,0.140,0.0,3.0 +2001,1,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,13.0,94,102000,759,1413,366,123,0,123,14700,0,14700,5680,320,7.7,10,10,11.3,900,9,999999999,300,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,102000,889,1413,364,118,0,118,14400,0,14400,5840,300,7.2,10,10,11.3,900,9,999999999,290,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.0,10.0,82,102000,944,1413,357,194,6,190,23000,500,22700,8920,320,6.2,10,10,11.3,900,9,999999999,279,0.0680,0,88,0.140,0.0,6.0 +2001,1,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,9.0,77,102000,919,1413,356,106,0,106,13100,0,13100,5370,320,6.7,10,10,11.3,900,9,999999999,270,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,8.0,67,102000,816,1413,350,114,0,114,13800,0,13800,5490,310,8.7,9,9,11.3,1500,9,999999999,250,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,7.0,67,102000,643,1413,325,278,147,211,30100,14800,23400,5110,310,7.2,5,5,11.3,77777,9,999999999,229,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,6.0,62,102100,411,1413,324,211,401,94,22100,35100,11900,1750,310,6.7,5,5,11.3,77777,9,999999999,209,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,5.0,66,102100,138,1401,314,52,262,26,5400,15000,3900,470,320,5.1,5,5,11.3,77777,9,999999999,189,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.4,5.1,70,102200,0,0,311,0,0,0,0,0,0,0,320,5.4,5,5,11.3,77777,9,999999999,170,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,102300,0,0,309,0,0,0,0,0,0,0,310,5.7,5,5,11.3,77777,9,999999999,150,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,102300,0,0,309,0,0,0,0,0,0,0,320,4.6,5,5,11.3,77777,9,999999999,129,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,102400,0,0,299,0,0,0,0,0,0,0,320,4.1,3,3,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,102400,0,0,292,0,0,0,0,0,0,0,350,4.1,2,2,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.8,3.2,78,102500,0,0,286,0,0,0,0,0,0,0,350,3.9,2,2,3.5,77777,9,999999999,80,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.8,2.2,78,102500,0,0,281,0,0,0,0,0,0,0,360,3.8,2,2,0.2,77777,9,999999999,60,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.8,1.3,78,102500,0,0,279,0,0,0,0,0,0,0,360,3.6,3,3,0.2,77777,9,999999999,60,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.7,0.4,79,102500,0,0,274,0,0,0,0,0,0,0,360,3.4,3,3,0.1,77777,9,999999999,60,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.7,-0.5,79,102500,0,0,269,0,0,0,0,0,0,0,10,3.3,3,3,3.5,77777,9,999999999,60,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,102500,0,0,266,0,0,0,0,0,0,0,10,3.1,3,3,11.3,77777,9,999999999,60,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-2.0,79,102500,0,0,250,0,0,0,0,0,0,0,360,4.1,0,0,11.3,77777,9,999999999,60,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.0,-2.0,79,102500,0,0,250,0,0,0,0,0,0,0,20,2.6,0,0,11.3,77777,9,999999999,60,0.0680,0,88,0.140,1.0,24.0 +2001,1,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,102700,53,883,254,5,158,1,1300,9500,700,40,20,2.6,0,0,11.3,77777,9,999999999,60,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-2.0,64,102700,313,1413,273,193,631,53,19900,50400,8700,970,360,4.6,3,3,11.3,77777,9,999999999,60,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-3.0,51,102800,563,1413,277,383,775,73,39700,73400,10300,1460,40,3.1,2,2,11.3,77777,9,999999999,60,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-4.0,47,102900,761,1413,283,537,867,69,56300,85100,10300,1630,350,3.1,5,5,11.3,77777,9,999999999,60,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-4.0,41,102800,892,1413,291,623,780,128,64500,77500,15300,2910,310,2.3,5,5,11.3,77777,9,999999999,60,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-4.0,38,102700,948,1413,322,678,835,115,71500,83900,15000,2960,270,1.5,10,10,11.3,7500,9,999999999,69,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-2.0,45,102600,923,1413,304,636,705,174,66700,71000,20200,4420,180,3.1,9,7,11.3,7500,9,999999999,69,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-2.0,42,102500,821,1413,313,514,582,175,55300,59600,20600,3990,260,2.1,9,8,11.3,7500,9,999999999,69,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-3.0,36,102500,647,1413,311,343,328,192,36500,33400,21100,4240,230,2.1,9,7,11.3,7500,9,999999999,80,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,1.0,57,102600,415,1413,327,221,498,74,22800,43600,9900,1370,300,2.6,10,10,11.3,7500,9,999999999,80,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,1.0,61,102600,142,1413,323,49,273,22,5100,15600,3600,410,320,3.1,10,10,11.3,7500,9,999999999,80,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,102600,0,12,304,0,0,0,0,0,0,0,340,1.5,9,8,11.3,7500,9,999999999,89,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,102700,0,0,289,0,0,0,0,0,0,0,340,2.6,5,5,11.3,77777,9,999999999,89,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,102700,0,0,288,0,0,0,0,0,0,0,340,2.6,5,5,11.3,77777,9,999999999,89,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,102700,0,0,285,0,0,0,0,0,0,0,360,3.1,5,5,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,1.0,75,102700,0,0,284,0,0,0,0,0,0,0,360,2.1,5,5,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,1.0,81,102600,0,0,280,0,0,0,0,0,0,0,360,2.6,5,5,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,1.0,75,102600,0,0,282,0,0,0,0,0,0,0,10,2.6,5,4,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,102500,0,0,283,0,0,0,0,0,0,0,20,2.6,5,4,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,102500,0,0,288,0,0,0,0,0,0,0,20,3.1,5,4,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,2.0,75,102500,0,0,289,0,0,0,0,0,0,0,30,2.6,9,5,11.3,7500,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,102500,0,0,288,0,0,0,0,0,0,0,360,2.1,9,5,11.3,7500,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,102500,0,0,287,0,0,0,0,0,0,0,350,3.6,9,5,11.3,1200,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,0.0,61,102500,0,0,291,0,0,0,0,0,0,0,350,2.6,9,5,11.3,1500,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,0.0,53,102400,54,883,288,5,124,2,1100,7400,600,80,50,6.7,3,1,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-1.0,46,102600,315,1412,291,184,487,75,18500,38100,10000,1280,10,5.6,2,1,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,0.0,44,102600,566,1412,310,306,343,168,32400,33900,18800,3580,330,4.6,5,4,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,1.0,44,102500,764,1412,306,518,653,163,53400,64200,18600,3460,340,4.1,2,1,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.0,41,102400,896,1412,316,641,846,102,68000,84900,13900,2540,310,3.6,3,1,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.0,44,102300,952,1412,317,690,895,84,71800,89100,11500,2160,300,6.7,2,1,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.0,44,102200,927,1412,317,672,891,85,70000,88600,11600,2100,300,5.7,3,1,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,2.0,44,102200,825,1412,311,589,891,66,61700,88100,10100,1690,310,6.2,2,1,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,2.0,47,102200,652,1412,307,442,821,61,46300,79300,9600,1410,310,5.1,3,1,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,1.0,47,102200,419,1412,302,261,725,45,27500,65100,8100,960,310,6.2,2,1,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,1.0,54,102200,146,1412,293,56,378,17,5800,24200,3300,370,320,4.6,3,1,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,102200,0,35,290,0,0,0,0,0,0,0,320,4.1,0,0,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,102200,0,0,290,0,0,0,0,0,0,0,330,5.1,0,0,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,3.0,66,102200,0,0,286,0,0,0,0,0,0,0,330,4.1,0,0,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,102200,0,0,291,0,0,0,0,0,0,0,320,4.1,0,0,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,102200,0,0,287,0,0,0,0,0,0,0,330,4.1,0,0,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,102200,0,0,288,0,0,0,0,0,0,0,350,4.6,0,0,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,102100,0,0,284,0,0,0,0,0,0,0,340,4.6,0,0,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,102100,0,0,280,0,0,0,0,0,0,0,350,3.6,0,0,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,102000,0,0,297,0,0,0,0,0,0,0,340,3.1,5,5,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,102100,0,0,301,0,0,0,0,0,0,0,320,4.1,5,5,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,102200,0,0,303,0,0,0,0,0,0,0,340,4.1,9,6,11.3,1350,9,999999999,89,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,102200,0,0,295,0,0,0,0,0,0,0,340,4.1,5,5,11.3,77777,9,999999999,89,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,102200,0,0,275,0,0,0,0,0,0,0,330,4.1,0,0,11.3,77777,9,999999999,89,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,102200,55,883,279,6,133,2,1200,8000,700,80,330,5.4,0,0,11.3,77777,9,999999999,89,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,102300,317,1412,300,201,513,86,20700,40400,11600,1610,320,6.7,3,3,11.3,77777,9,999999999,89,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,102300,569,1412,300,355,612,108,36700,57800,13300,2080,310,4.6,0,0,11.3,77777,9,999999999,89,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,5.0,55,102300,767,1412,322,505,671,139,52800,66600,16400,3050,300,5.1,3,3,11.3,77777,9,999999999,89,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,5.0,55,102200,900,1412,327,492,308,295,52700,32900,31700,7850,300,6.2,5,5,11.3,77777,9,999999999,89,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,3.0,47,102100,956,1412,307,690,781,159,73000,79200,19200,4280,320,6.7,0,0,11.3,77777,9,999999999,89,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.0,41,102000,932,1412,310,678,903,80,70700,89800,11200,2060,300,6.2,0,0,11.3,77777,9,999999999,89,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,2.0,44,102000,830,1412,319,589,873,74,61600,86300,10700,1780,300,6.2,3,3,11.3,77777,9,999999999,89,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,2.0,44,102000,656,1412,316,437,774,75,45900,75400,10700,1620,320,5.1,2,2,11.3,77777,9,999999999,89,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,1.0,41,102000,424,1412,318,252,669,50,26200,60000,8100,1030,320,6.7,3,3,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,3.0,54,102000,150,1412,308,61,395,18,6200,25500,3500,380,310,4.6,2,2,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,102100,0,59,308,0,0,0,0,0,0,0,310,5.1,3,3,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,102200,0,0,302,0,0,0,0,0,0,0,320,4.1,2,2,11.3,77777,9,999999999,100,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,102200,0,0,304,0,0,0,0,0,0,0,330,3.1,3,3,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,102200,0,0,288,0,0,0,0,0,0,0,330,2.1,0,0,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,102200,0,0,288,0,0,0,0,0,0,0,330,2.1,0,0,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,102200,0,0,301,0,0,0,0,0,0,0,320,2.1,5,5,11.3,77777,9,999999999,110,0.0680,0,88,0.140,999.0,99.0 +2001,1,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,102100,0,0,288,0,0,0,0,0,0,0,340,1.5,5,2,11.3,77777,9,999999999,120,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,102100,0,0,275,0,0,0,0,0,0,0,360,2.1,3,0,11.3,77777,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,102100,0,0,275,0,0,0,0,0,0,0,360,2.1,2,0,11.3,77777,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,102200,0,0,296,0,0,0,0,0,0,0,350,2.1,5,3,11.3,77777,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,102100,0,0,291,0,0,0,0,0,0,0,40,2.1,9,2,11.3,5400,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,102200,0,0,289,0,0,0,0,0,0,0,340,1.5,9,3,11.3,5400,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,3.0,81,102200,0,0,283,0,0,0,0,0,0,0,80,0.5,5,2,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,2.0,87,102300,56,906,265,6,135,2,1200,8100,700,80,340,2.1,3,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,4.0,58,102400,319,1412,299,183,513,67,18600,40700,9400,1180,300,2.4,2,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,1.0,41,102500,571,1412,304,383,737,83,40300,70600,11600,1680,260,2.6,0,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-2.0,30,102500,771,1412,305,544,854,76,56800,83800,10900,1690,290,3.1,0,0,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,-1.0,29,102400,903,1412,315,647,864,92,67200,85700,12200,2090,320,3.6,0,0,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,3.0,39,102300,960,1412,320,696,889,89,72300,88500,11900,2230,210,3.6,0,0,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,4.0,42,102200,936,1412,321,678,891,85,70600,88600,11600,2120,310,5.1,0,0,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,5.0,45,102200,834,1412,322,589,861,78,61400,85100,11000,1830,320,5.7,0,0,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,4.0,45,102200,661,1412,316,442,786,73,46800,76800,10700,1600,310,4.6,0,0,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,102300,428,1412,313,262,687,53,27200,61600,8400,1070,320,4.1,0,0,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,102300,155,1412,300,61,398,18,6500,27200,3600,430,310,1.5,0,0,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.4,5.0,69,102300,0,82,294,0,0,0,0,0,0,0,310,1.5,0,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,102300,0,0,288,0,0,0,0,0,0,0,310,1.5,0,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,6.0,81,102300,0,0,289,0,0,0,0,0,0,0,280,1.5,0,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,7.0,87,102300,0,0,290,0,0,0,0,0,0,0,280,2.1,3,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,102300,0,0,281,0,0,0,0,0,0,0,290,2.1,0,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,102300,0,0,280,0,0,0,0,0,0,0,300,1.5,0,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,9.0,100,102300,0,0,292,0,0,0,0,0,0,0,300,1.5,0,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,102200,0,0,291,0,0,0,0,0,0,0,300,1.5,0,0,11.3,77777,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,102200,0,0,296,0,0,0,0,0,0,0,300,1.5,0,0,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,102200,0,0,295,0,0,0,0,0,0,0,330,2.6,0,0,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,7.0,87,102300,0,0,290,0,0,0,0,0,0,0,330,2.1,0,0,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,7.0,87,102300,0,0,290,0,0,0,0,0,0,0,340,2.6,0,0,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,7.0,87,102400,0,0,290,0,0,0,0,0,0,0,320,3.1,0,0,11.3,77777,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,7.0,87,102500,58,906,290,6,165,2,1500,10000,800,80,330,2.6,0,0,11.3,77777,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,7.0,71,102600,321,1411,302,200,614,60,20500,49200,9300,1080,330,3.6,0,0,11.3,77777,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,6.0,59,102600,574,1411,310,376,668,103,39000,63400,13100,2010,330,3.1,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,4.0,45,102600,774,1411,316,550,866,73,57500,85100,10600,1680,310,4.1,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.8,4.1,43,102500,907,1411,320,654,876,88,67900,87000,11800,2070,320,4.6,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,4.0,42,102500,964,1411,321,696,877,95,72200,87300,12400,2300,320,5.1,0,0,11.3,77777,9,999999999,60,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,3.0,39,102300,941,1411,320,690,921,74,72200,91700,10800,2010,310,5.7,0,0,11.3,77777,9,999999999,60,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,4.0,42,102300,839,1411,321,601,897,66,63100,88800,10100,1710,320,6.7,0,0,11.3,77777,9,999999999,60,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,3.0,42,102300,666,1411,315,454,834,59,47700,80800,9400,1410,320,4.6,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,102400,433,1411,308,268,710,49,28000,64100,8300,1020,300,5.1,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,4.0,58,102400,159,1411,299,66,434,17,7000,29900,3600,430,310,4.6,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,2.0,54,102500,1,82,293,0,0,0,0,0,0,0,330,3.6,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,2.0,57,102500,0,0,289,0,0,0,0,0,0,0,320,3.1,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.1,2.6,64,102600,0,0,286,0,0,0,0,0,0,0,330,3.1,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,102600,0,0,282,0,0,0,0,0,0,0,340,2.6,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,102600,0,0,282,0,0,0,0,0,0,0,10,4.1,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,102600,0,0,276,0,0,0,0,0,0,0,10,3.6,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,102600,0,0,278,0,0,0,0,0,0,0,40,5.1,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,102600,0,0,278,0,0,0,0,0,0,0,40,5.1,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,102600,0,0,278,0,0,0,0,0,0,0,30,6.2,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-1.0,56,102600,0,0,274,0,0,0,0,0,0,0,40,4.6,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-1.0,56,102500,0,0,274,0,0,0,0,0,0,0,40,4.6,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-1.0,60,102600,0,0,270,0,0,0,0,0,0,0,30,3.6,0,0,11.3,77777,9,999999999,69,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-1.0,56,102700,0,0,290,0,0,0,0,0,0,0,40,2.6,5,5,11.3,77777,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-1.0,56,102700,59,929,307,6,118,3,1200,7100,700,120,40,3.6,9,9,11.3,7500,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,1.0,61,102700,324,1411,323,182,430,83,18800,34300,10900,1540,50,5.7,10,10,11.3,7500,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,1.0,50,102700,577,1411,309,347,537,127,36800,51800,15500,2480,60,5.7,5,5,11.3,77777,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,2.0,47,102700,777,1411,319,543,781,112,57800,78400,14400,2560,90,4.1,5,5,9.7,77777,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,2.0,39,102700,911,1411,333,604,653,181,63000,65500,20600,4500,150,3.6,5,5,9.7,77777,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-1.0,31,102500,968,1411,329,684,757,163,72400,76800,19500,4450,160,2.1,5,5,9.7,77777,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,1.0,34,102400,945,1411,336,625,670,175,65700,67600,20200,4580,270,3.1,5,5,9.7,77777,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,1.0,32,102400,843,1411,361,526,594,170,54700,59200,19200,3920,310,3.6,9,9,9.7,7500,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,1.0,32,102400,670,1411,361,427,593,144,45500,59000,17400,2940,320,2.6,9,9,9.7,7500,9,999999999,80,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,3.0,47,102400,437,1411,325,209,273,124,22100,24900,14300,2510,320,4.1,5,5,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,3.0,54,102400,163,1411,335,60,302,25,6200,18400,4100,460,310,3.1,9,9,11.3,7500,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,102500,1,106,307,0,0,0,0,0,0,0,320,2.6,5,5,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,4.0,71,102500,0,0,304,0,0,0,0,0,0,0,330,2.1,5,5,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,102500,0,0,299,0,0,0,0,0,0,0,350,2.6,5,5,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,3.0,76,102600,0,0,294,0,0,0,0,0,0,0,20,2.1,5,5,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,102500,0,0,292,0,0,0,0,0,0,0,50,1.5,2,2,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,102500,0,0,291,0,0,0,0,0,0,0,10,2.1,3,3,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,102500,0,0,295,0,0,0,0,0,0,0,60,2.6,5,5,11.3,77777,9,999999999,89,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,102400,0,0,318,0,0,0,0,0,0,0,30,2.1,9,9,11.3,7500,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,102400,0,0,308,0,0,0,0,0,0,0,330,2.1,9,9,11.3,7500,9,999999999,100,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,102400,0,0,308,0,0,0,0,0,0,0,350,1.5,9,9,11.3,7500,9,999999999,110,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,102400,0,0,304,0,0,0,0,0,0,0,40,1.8,9,9,11.3,7500,9,999999999,120,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,102500,0,0,313,0,0,0,0,0,0,0,80,2.1,9,9,11.3,7500,9,999999999,129,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,2.0,81,102500,0,0,302,0,0,0,0,0,0,0,100,1.5,9,9,11.3,7500,9,999999999,139,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,4.0,81,102500,60,929,322,4,17,4,600,600,600,60,50,2.1,10,10,11.3,7500,9,999999999,139,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.0,76,102600,326,1411,338,113,61,98,12300,5200,11100,2410,120,1.0,10,10,11.3,7500,9,999999999,150,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,5.0,55,102600,580,1411,356,333,424,158,34500,40800,17700,3170,160,1.5,10,10,11.3,7500,9,999999999,160,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,5.0,48,102600,781,1411,366,479,494,204,50300,50100,22400,4590,160,2.1,10,10,11.3,7500,9,999999999,170,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,7.0,49,102600,915,1411,379,548,471,241,57800,48500,26300,6190,240,2.1,10,10,11.3,7500,9,999999999,170,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,7.0,46,102600,972,1411,384,630,595,218,67800,61700,25100,5940,240,2.1,10,10,11.3,7500,9,999999999,179,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,7.0,43,102500,950,1411,390,519,299,317,55700,32100,34000,8890,170,2.6,10,10,11.3,7500,9,999999999,179,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,8.0,52,102400,848,1411,380,326,89,272,35800,9000,30400,8740,210,3.1,10,10,11.3,7500,9,999999999,179,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,6.0,45,102400,675,1411,378,153,0,153,17700,0,17700,6410,320,2.1,10,10,11.3,7500,9,999999999,179,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,8.0,59,102400,442,1411,370,159,91,131,17500,8400,14800,3430,320,1.0,10,10,11.3,7500,9,999999999,170,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,102400,167,1411,366,47,63,40,5200,3800,4700,840,180,2.6,10,10,11.3,7500,9,999999999,170,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,9.0,72,102500,1,129,351,0,0,0,0,0,0,0,280,1.5,9,9,11.3,7500,9,999999999,170,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,9.0,82,102500,0,0,341,0,0,0,0,0,0,0,340,2.1,9,9,11.3,7500,9,999999999,170,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,102500,0,0,338,0,0,0,0,0,0,0,350,2.1,9,9,11.3,7500,9,999999999,160,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,102600,0,0,312,0,0,0,0,0,0,0,20,1.8,5,5,11.3,77777,9,999999999,160,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,102600,0,0,312,0,0,0,0,0,0,0,50,1.5,5,5,11.3,77777,9,999999999,160,0.0690,0,88,0.140,999.0,99.0 +2001,1,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,102500,0,0,300,0,0,0,0,0,0,0,50,1.0,2,2,11.3,77777,9,999999999,160,0.0690,0,88,0.140,999.0,99.0 +2001,1,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,102500,0,0,308,0,0,0,0,0,0,0,50,1.5,5,5,11.3,77777,9,999999999,160,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,102500,0,0,303,0,0,0,0,0,0,0,40,2.1,5,5,11.3,77777,9,999999999,160,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,102500,0,0,295,0,0,0,0,0,0,0,40,2.4,2,2,11.3,77777,9,999999999,160,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,102500,0,0,309,0,0,0,0,0,0,0,40,2.6,3,3,11.3,77777,9,999999999,160,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.0,82,102500,0,0,304,0,0,0,0,0,0,0,50,2.6,2,2,11.3,77777,9,999999999,160,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.0,76,102500,0,0,306,0,0,0,0,0,0,0,80,1.5,3,3,11.3,77777,9,999999999,160,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,102600,0,0,293,0,0,0,0,0,0,0,40,1.5,2,2,11.3,77777,9,999999999,160,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,102600,62,929,326,6,49,4,800,2500,700,80,40,1.5,9,8,11.3,7500,9,999999999,160,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,7.0,67,102700,329,1410,354,147,170,107,15800,14100,12500,2330,50,2.6,10,10,11.3,7500,9,999999999,170,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,9.0,63,102700,583,1410,371,333,412,162,34500,39700,18000,3260,60,4.6,10,10,11.3,7500,9,999999999,170,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,9.0,49,102700,785,1410,392,537,726,131,56400,72500,15900,2950,100,3.6,10,10,11.3,7500,9,999999999,170,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,8.0,46,102600,919,1410,391,641,792,124,67000,79100,15300,2980,100,3.6,10,10,11.3,7500,9,999999999,170,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,8.0,46,102600,977,1410,391,690,817,122,72700,82100,15600,3220,120,2.1,10,10,11.3,7500,9,999999999,170,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,7.0,38,102500,954,1410,400,678,831,114,71800,83600,15000,2980,260,3.1,10,10,11.3,7500,9,999999999,170,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,7.0,36,102400,853,1410,406,595,808,105,62600,80600,13700,2460,270,2.6,10,10,11.3,7500,9,999999999,170,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,7.0,36,102400,680,1410,406,438,681,109,46000,66900,13700,2290,290,2.1,10,10,11.3,7500,9,999999999,179,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,9.0,43,102400,447,1410,403,225,364,109,23400,32700,13000,2060,320,1.5,10,10,11.3,7500,9,999999999,179,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,10.0,59,102500,171,1410,383,55,175,33,5800,10100,4500,580,320,3.1,10,10,11.3,7500,9,999999999,179,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,11.0,72,102500,1,153,350,0,0,0,0,0,0,0,330,2.1,9,7,11.3,7500,9,999999999,179,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.0,77,102500,0,0,351,0,0,0,0,0,0,0,320,2.1,9,8,11.3,7500,9,999999999,179,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,102500,0,0,325,0,0,0,0,0,0,0,350,2.0,2,2,11.3,77777,9,999999999,189,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,102500,0,0,334,0,0,0,0,0,0,0,20,1.8,5,5,11.3,77777,9,999999999,189,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,102500,0,0,335,0,0,0,0,0,0,0,40,1.7,9,7,11.3,7500,9,999999999,189,0.0700,0,88,0.140,999.0,99.0 +2001,1,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,102400,0,0,340,0,0,0,0,0,0,0,70,1.5,9,8,11.3,7500,9,999999999,189,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,102400,0,0,347,0,0,0,0,0,0,0,110,2.6,9,9,11.3,7500,9,999999999,200,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,11.0,88,102300,0,0,349,0,0,0,0,0,0,0,100,2.1,9,9,11.3,7500,9,999999999,189,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,11.0,88,102300,0,0,329,0,0,0,0,0,0,0,80,2.1,5,5,11.3,77777,9,999999999,189,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,12.0,94,102200,0,0,330,0,0,0,0,0,0,0,60,2.1,5,5,11.3,77777,9,999999999,189,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,12.0,94,102300,0,0,330,0,0,0,0,0,0,0,50,2.1,5,5,11.3,77777,9,999999999,179,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,102300,0,0,317,0,0,0,0,0,0,0,70,2.1,2,2,9.7,77777,9,999999999,179,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,102300,0,0,345,0,0,0,0,0,0,0,90,2.6,9,9,9.7,7500,9,999999999,179,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,13.0,94,102300,63,952,336,8,189,2,1700,11600,900,80,90,2.1,5,5,11.3,77777,9,999999999,179,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,102300,332,1410,372,206,645,54,21400,52800,8900,1000,110,3.1,9,9,11.3,7500,9,999999999,170,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,14.0,68,102400,587,1410,388,395,630,132,40300,59300,15600,2480,110,4.6,9,9,11.3,7500,9,999999999,170,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,14.0,60,102300,788,1410,398,414,281,256,44100,29600,27500,6240,130,4.1,9,9,11.3,7500,9,999999999,170,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,13.0,57,102200,923,1410,397,610,610,209,65500,63100,24000,5350,150,5.1,9,9,11.3,7500,9,999999999,170,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,12.0,53,102100,981,1410,396,599,499,251,63700,51700,27600,7010,170,4.6,9,9,11.3,7500,9,999999999,160,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,13.0,53,102000,959,1410,403,608,562,224,65100,58200,25400,6020,190,4.1,9,9,11.3,7500,9,999999999,170,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,13.0,53,101900,858,1410,403,561,654,162,58700,65500,18700,3830,190,4.1,9,9,11.3,7500,9,999999999,170,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,12.0,50,101900,684,1410,401,395,411,194,42200,42400,21600,4320,200,3.1,9,9,11.3,7500,9,999999999,170,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,13.0,57,101900,451,1410,397,195,188,135,21200,17500,15600,3040,200,2.6,9,9,11.3,7500,9,999999999,170,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.0,64,101900,176,1410,386,76,283,41,7900,16600,5900,740,190,3.1,9,9,11.3,7500,9,999999999,179,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,13.0,68,101800,2,176,381,0,0,0,0,0,0,0,180,3.6,9,9,11.3,7500,9,999999999,179,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,13.0,68,101800,0,0,360,0,0,0,0,0,0,0,170,3.1,5,5,11.3,77777,9,999999999,179,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,14.0,73,101800,0,0,356,0,0,0,0,0,0,0,150,3.6,3,3,11.3,77777,9,999999999,189,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,14.0,77,101700,0,0,347,0,0,0,0,0,0,0,140,3.6,2,2,11.3,77777,9,999999999,189,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,15.0,83,101700,0,0,352,0,0,0,0,0,0,0,150,4.6,3,3,11.3,77777,9,999999999,189,0.0700,0,88,0.140,999.0,99.0 +2001,1,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,15.0,88,101700,0,0,344,0,0,0,0,0,0,0,140,5.1,2,2,11.3,77777,9,999999999,189,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,15.0,88,101700,0,0,352,0,0,0,0,0,0,0,140,3.1,5,5,11.3,77777,9,999999999,200,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,15.0,88,101600,0,0,373,0,0,0,0,0,0,0,150,3.6,9,9,11.3,1500,9,999999999,200,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,16.0,94,101700,0,0,375,0,0,0,0,0,0,0,150,3.1,9,9,11.3,1500,9,999999999,209,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,16.0,94,101600,0,0,375,0,0,0,0,0,0,0,140,2.6,9,9,11.3,1500,9,999999999,220,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,16.0,94,101600,0,0,375,0,0,0,0,0,0,0,130,2.6,9,9,11.3,1500,9,999999999,220,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,17.0,94,101600,0,0,381,0,0,0,0,0,0,0,160,3.1,9,9,11.3,7500,9,999999999,229,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101600,0,0,376,0,0,0,0,0,0,0,180,4.1,9,9,11.3,7500,9,999999999,229,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101600,65,952,376,6,33,5,900,1400,800,80,170,3.6,9,9,11.3,7500,9,999999999,240,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.0,88,101700,335,1410,404,137,108,111,14700,9000,12500,2420,180,3.6,10,10,11.3,7500,9,999999999,250,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.0,83,101700,590,1410,405,208,37,192,22700,3600,21200,5310,200,4.1,9,9,11.3,7500,9,999999999,250,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,18.0,73,101700,792,1410,421,336,110,274,36900,11100,30600,8360,220,5.1,10,10,11.3,7500,9,999999999,259,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,18.0,78,101600,927,1410,415,243,12,235,28300,1000,27600,10420,220,5.7,10,10,11.3,7500,9,999999999,270,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,18.0,78,101500,986,1410,415,224,6,220,26500,500,26200,10220,210,6.7,10,10,11.3,7500,9,999999999,270,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,18.0,78,101400,963,1410,415,112,0,112,13900,0,13900,5740,210,6.2,10,10,11.3,3000,9,999999999,270,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,18.0,78,101400,862,1410,415,97,0,97,12000,0,12000,4860,210,5.7,10,10,11.3,3000,9,999999999,279,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,19.0,74,101300,689,1410,428,313,176,226,33900,17900,25100,5590,210,6.2,10,10,11.3,7500,9,999999999,279,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.0,83,101400,456,1410,405,281,519,112,29200,47000,14000,2130,220,6.7,9,9,11.3,7500,9,999999999,279,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,19.0,88,101400,180,1410,399,56,142,38,6000,8100,5000,680,210,5.7,9,9,11.3,3000,9,999999999,279,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,19.0,88,101500,2,176,399,0,0,0,0,0,0,0,200,4.6,9,9,11.3,3000,9,999999999,279,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,19.0,94,101500,0,0,394,0,0,0,0,0,0,0,200,3.6,9,9,11.3,2400,9,999999999,279,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,101500,0,0,401,0,0,0,0,0,0,0,200,3.6,9,9,11.3,2400,9,999999999,290,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,101600,0,0,406,0,0,0,0,0,0,0,210,3.1,10,10,11.3,360,9,999999999,290,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,101600,0,0,406,0,0,0,0,0,0,0,210,2.6,10,10,11.3,360,9,999999999,290,0.0700,0,88,0.140,999.0,99.0 +2001,1,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,101600,0,0,406,0,0,0,0,0,0,0,240,2.6,10,10,11.3,360,9,999999999,290,0.0700,0,88,0.140,999.0,99.0 +2001,1,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,19.0,100,101600,0,0,400,0,0,0,0,0,0,0,250,2.6,10,10,11.3,300,9,999999999,290,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,101600,0,0,393,0,0,0,0,0,0,0,250,1.5,10,10,9.7,300,9,999999999,300,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,19.0,100,101500,0,0,400,0,0,0,0,0,0,0,230,1.5,10,10,9.7,300,9,999999999,300,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,19.0,100,101500,0,0,400,0,0,0,0,0,0,0,220,1.5,10,10,9.7,300,9,999999999,309,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,101500,0,0,393,0,0,0,0,0,0,0,250,2.1,10,10,9.7,300,9,999999999,309,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,101600,0,0,382,0,0,0,0,0,0,0,220,2.6,9,9,11.3,7500,9,999999999,309,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,19.0,100,101600,0,0,389,0,0,0,0,0,0,0,180,3.1,9,9,11.3,7500,9,999999999,320,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,19.0,100,101700,67,975,400,2,0,2,300,0,300,80,160,1.5,10,10,11.3,300,9,999999999,320,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,19.0,88,101800,338,1409,399,51,0,51,5900,0,5900,2030,180,3.6,9,9,11.3,300,9,999999999,329,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,20.0,88,101800,593,1409,418,187,19,179,21000,1500,20400,6640,200,4.6,10,10,11.3,450,9,999999999,329,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,20.0,78,101800,796,1409,417,233,12,226,26600,1000,26100,9290,210,4.6,9,9,11.3,450,9,999999999,340,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,101700,931,1409,412,286,24,270,33000,2100,31600,11520,230,5.1,9,9,11.3,450,9,999999999,340,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.0,78,101600,990,1409,424,448,144,346,48800,15200,38000,10540,230,5.7,9,9,11.3,2400,9,999999999,350,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,101500,968,1409,423,360,48,327,39600,4900,36200,11290,230,6.2,9,9,11.3,7500,9,999999999,340,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,101500,867,1409,423,470,309,279,50300,32900,30000,7200,220,6.2,9,9,11.3,7500,9,999999999,340,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,101500,694,1409,423,439,576,154,46700,57600,18200,3200,230,6.2,9,9,11.3,7500,9,999999999,340,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,101600,460,1409,412,281,634,73,29300,57500,10400,1400,230,5.1,9,9,11.3,7500,9,999999999,329,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.0,83,101700,184,1409,405,81,454,22,8400,31400,4300,460,210,4.6,9,9,11.3,7500,9,999999999,329,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,101800,3,200,401,0,0,0,0,0,0,0,240,2.6,9,9,11.3,3600,9,999999999,320,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,101800,0,0,412,0,0,0,0,0,0,0,230,2.6,10,10,11.3,1050,9,999999999,320,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,19.0,94,101700,0,0,394,0,0,0,0,0,0,0,250,3.6,9,9,11.3,3600,9,999999999,320,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.6,100,101700,0,0,368,0,0,0,0,0,0,0,220,3.3,5,5,11.3,77777,9,999999999,309,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,18.1,100,101800,0,0,387,0,0,0,0,0,0,0,220,3.0,9,9,11.3,2400,9,999999999,309,0.0710,0,88,0.140,999.0,99.0 +2001,1,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.7,100,101800,0,0,383,0,0,0,0,0,0,0,220,2.7,9,9,9.7,1800,9,999999999,309,0.0710,0,88,0.140,999.0,99.0 +1996,2,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.7,17.3,100,101600,0,0,390,0,0,0,0,0,0,0,190,2.3,10,10,9.7,30,9,999999999,240,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.1,16.9,100,101600,0,0,387,0,0,0,0,0,0,0,190,2.0,10,10,9.7,30,9,999999999,240,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.6,16.4,100,101600,0,0,383,0,0,0,0,0,0,0,180,1.7,10,10,9.7,30,9,999999999,240,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,16.0,100,101600,0,0,380,0,0,0,0,0,0,0,170,1.4,10,10,9.7,30,9,999999999,240,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.3,16.3,100,101600,0,0,382,0,0,0,0,0,0,0,170,1.4,10,10,9.7,30,9,999999999,240,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,16.1,100,101600,0,0,380,0,0,0,0,0,0,0,160,1.5,10,10,0.2,30,9,999999999,240,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,16.1,100,101700,0,0,380,0,0,0,0,0,0,0,160,1.0,10,10,0.1,30,9,999999999,240,0.0710,0,88,0.130,0.0,6.0 +1996,2,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,16.1,100,101800,67,974,380,6,0,6,700,0,700,240,140,1.5,10,10,0.2,30,9,999999999,240,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,16.1,100,101800,338,1409,380,40,0,40,4800,0,4800,1650,110,1.0,10,10,0.2,30,9,999999999,240,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,17.2,100,101900,594,1409,388,82,0,82,9800,0,9800,3670,130,1.0,10,10,0.4,60,9,999999999,240,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.2,97,102000,797,1409,390,117,0,117,14100,0,14100,5560,120,1.0,10,10,0.6,60,9,999999999,229,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.7,93,101900,932,1409,397,140,0,140,17000,0,17000,6900,120,1.0,10,10,6.4,180,9,999999999,229,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.7,81,101800,991,1409,384,569,357,317,61400,38400,34300,9240,160,1.0,9,7,9.7,330,9,999999999,229,0.0710,0,88,0.130,0.0,6.0 +1996,2,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.3,69,101700,969,1409,388,599,546,223,64400,56600,25400,6080,270,1.0,3,3,11.3,77777,9,999999999,229,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,18.3,60,101600,868,1409,396,595,790,108,62700,78900,13900,2550,220,2.5,2,2,11.3,77777,9,999999999,229,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.7,66,101600,695,1409,387,394,582,106,41600,57500,13100,2270,200,2.0,3,3,11.3,77777,9,999999999,229,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,16.6,66,101700,461,1409,376,238,489,77,24700,44300,10100,1460,190,3.6,2,2,11.3,77777,9,999999999,229,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.1,73,101700,185,1409,368,49,138,31,5300,8400,4200,540,210,1.5,3,3,11.3,77777,9,999999999,229,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,15.5,81,101700,3,200,353,0,10,0,0,0,0,0,220,1.0,2,2,11.3,77777,9,999999999,229,0.0710,0,88,0.130,0.0,6.0 +1996,2,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,15.5,87,101700,0,0,351,0,0,0,0,0,0,0,220,1.0,3,3,11.3,77777,9,999999999,229,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,101800,0,0,349,0,0,0,0,0,0,0,220,1.0,2,2,11.3,77777,9,999999999,229,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,101800,0,0,352,0,0,0,0,0,0,0,180,1.0,3,3,11.3,77777,9,999999999,229,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.8,16.8,94,101800,0,0,353,0,0,0,0,0,0,0,170,1.2,3,3,11.3,77777,9,999999999,229,0.0710,0,88,0.130,999.0,99.0 +1996,2,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,16.7,95,101700,0,0,351,0,0,0,0,0,0,0,170,1.4,3,3,11.3,77777,9,999999999,229,0.0710,0,88,0.130,999.0,99.0 +1996,2,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.2,16.5,96,101700,0,0,350,0,0,0,0,0,0,0,160,1.6,3,3,11.3,77777,9,999999999,229,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.2,16.4,95,101700,0,0,350,0,0,0,0,0,0,0,150,1.8,3,3,11.3,77777,9,999999999,220,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,16.2,95,101700,0,0,345,0,0,0,0,0,0,0,140,1.9,2,2,11.3,77777,9,999999999,220,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.8,16.0,95,101600,0,0,344,0,0,0,0,0,0,0,140,2.1,2,2,11.3,77777,9,999999999,220,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.8,15.9,94,101600,0,0,344,0,0,0,0,0,0,0,130,2.3,2,2,11.3,77777,9,999999999,220,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,15.5,93,101600,0,0,342,0,0,0,0,0,0,0,120,2.5,2,2,11.3,77777,9,999999999,220,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.6,15.5,93,101600,0,0,346,0,0,0,0,0,0,0,120,2.5,3,3,11.3,77777,9,999999999,220,0.0720,0,88,0.130,0.0,6.0 +1996,2,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,101500,69,974,352,19,75,14,2200,3300,1900,240,140,4.6,2,2,11.3,77777,9,999999999,229,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,18.3,87,101600,341,1408,387,111,73,93,12100,6300,10600,2360,150,5.1,9,8,11.3,77777,9,999999999,229,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,18.8,79,101600,598,1408,376,369,658,90,38900,63500,11900,1830,150,5.1,2,2,11.3,77777,9,999999999,240,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,18.8,66,101500,801,1408,394,520,646,152,54300,64200,17600,3410,160,5.6,3,3,11.3,77777,9,999999999,240,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,18.3,60,101400,937,1408,396,642,790,116,67800,79300,14900,2940,160,7.7,2,2,11.3,77777,9,999999999,250,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,17.2,51,101300,996,1408,407,631,717,124,66700,72100,15600,3370,170,6.6,3,3,11.3,77777,9,999999999,250,0.0720,0,88,0.130,0.0,6.0 +1996,2,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,17.2,53,101100,974,1408,400,671,780,131,70300,78100,16100,3370,170,6.6,2,2,11.3,77777,9,999999999,259,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.8,64,101000,873,1408,418,410,196,288,44700,20600,31900,7940,180,8.2,9,8,11.3,77777,9,999999999,259,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.8,68,101000,699,1408,406,336,298,188,36200,30900,20800,4180,180,8.2,9,7,11.3,3900,9,999999999,270,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.8,71,101100,466,1408,409,169,103,135,18400,9700,15200,3060,180,5.1,9,8,11.3,3600,9,999999999,270,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,18.8,79,101200,189,1408,394,54,43,48,5900,3100,5500,1160,180,5.6,9,7,11.3,2400,9,999999999,279,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,101200,4,223,398,0,0,0,0,0,0,0,180,6.1,9,8,11.3,3000,9,999999999,279,0.0720,0,88,0.130,0.0,6.0 +1996,2,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,101200,0,0,388,0,0,0,0,0,0,0,200,5.1,9,7,11.3,2700,9,999999999,290,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.0,93,101300,0,0,393,0,0,0,0,0,0,0,200,5.1,9,8,9.7,480,9,999999999,290,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,20.0,91,101200,0,0,389,0,0,0,0,0,0,0,190,5.1,9,7,9.7,450,9,999999999,300,0.0720,0,88,0.130,4.0,6.0 +1996,2,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.5,20.2,92,101200,0,0,389,0,0,0,0,0,0,0,200,4.8,9,7,9.7,563,9,999999999,309,0.0720,0,88,0.130,999.0,99.0 +1996,2,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,20.0,94,101200,0,0,386,0,0,0,0,0,0,0,200,4.6,9,7,9.7,675,9,999999999,309,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.5,19.7,95,101200,0,0,379,0,0,0,0,0,0,0,210,4.3,9,6,9.7,788,9,999999999,320,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.2,19.5,96,101100,0,0,377,0,0,0,0,0,0,0,210,4.1,9,6,9.7,900,9,999999999,320,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.8,19.2,96,101100,0,0,374,0,0,0,0,0,0,0,220,3.8,9,6,9.7,1013,9,999999999,329,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.5,19.0,97,101100,0,0,373,0,0,0,0,0,0,0,220,3.5,9,6,9.7,1125,9,999999999,329,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.2,18.8,98,101100,0,0,368,0,0,0,0,0,0,0,230,3.3,9,5,9.7,1238,9,999999999,340,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.3,97,101000,0,0,365,0,0,0,0,0,0,0,230,3.0,9,5,11.3,1350,9,999999999,340,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.3,93,101200,0,0,390,0,0,0,0,0,0,0,250,4.1,10,9,11.3,2100,9,999999999,350,0.0720,0,88,0.130,21.0,24.0 +1996,2,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,15.0,93,101400,71,997,369,14,4,13,1500,200,1400,340,320,5.6,10,9,11.3,150,9,999999999,340,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,13.8,90,101500,345,1408,364,64,22,59,7100,1900,6600,1630,330,5.6,10,9,8.0,150,9,999999999,329,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.3,90,101600,601,1408,361,188,128,134,20900,12900,15400,3190,320,5.6,10,9,11.3,300,9,999999999,320,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,12.2,87,101600,805,1408,357,119,62,83,13900,6600,10100,2180,320,5.6,10,9,11.3,300,9,999999999,309,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,11.6,87,101600,941,1408,353,427,194,297,46800,20500,33000,8650,320,6.1,10,9,11.3,300,9,999999999,300,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,101600,1000,1408,350,491,100,419,53800,10400,46500,14090,310,5.6,10,9,11.3,300,9,999999999,290,0.0720,0,88,0.130,0.0,6.0 +1996,2,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,10.5,83,101600,979,1408,349,373,77,319,41000,7900,35500,11190,320,4.6,10,9,11.3,300,9,999999999,279,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,10.5,83,101600,878,1408,349,314,7,309,35500,700,35000,12080,330,6.1,10,9,11.3,300,9,999999999,270,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,9.4,80,101700,704,1408,345,310,77,271,33900,7700,30000,7630,320,5.1,10,9,11.3,360,9,999999999,259,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,9.4,83,101700,470,1408,343,176,112,139,19200,10500,15600,3150,320,6.1,10,9,11.3,360,9,999999999,250,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,8.8,80,101900,193,1408,342,45,16,42,4800,1100,4700,1050,320,5.1,10,9,11.3,420,9,999999999,240,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.1,8.3,83,101900,4,246,336,0,0,0,0,0,0,0,330,5.1,10,9,11.3,450,9,999999999,229,0.0720,0,88,0.130,0.0,6.0 +1996,2,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,7.7,80,102000,0,0,336,0,0,0,0,0,0,0,320,4.6,10,9,11.3,450,9,999999999,220,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,7.7,80,102100,0,0,336,0,0,0,0,0,0,0,320,6.1,10,9,11.3,480,9,999999999,209,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,7.2,80,102200,0,0,332,0,0,0,0,0,0,0,330,5.1,10,9,11.3,480,9,999999999,200,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.4,7.0,79,102200,0,0,332,0,0,0,0,0,0,0,330,5.4,10,9,11.3,495,9,999999999,189,0.0720,0,88,0.130,999.0,99.0 +1996,2,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.1,6.5,78,102300,0,0,330,0,0,0,0,0,0,0,330,5.6,10,9,11.3,510,9,999999999,179,0.0720,0,88,0.130,999.0,99.0 +1996,2,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.6,5.8,77,102300,0,0,327,0,0,0,0,0,0,0,330,5.9,10,9,11.3,525,9,999999999,170,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,5.3,76,102400,0,0,334,0,0,0,0,0,0,0,330,6.1,10,10,11.3,540,9,999999999,160,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.1,4.7,74,102400,0,0,332,0,0,0,0,0,0,0,330,6.4,10,10,11.3,555,9,999999999,150,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.8,4.1,72,102400,0,0,330,0,0,0,0,0,0,0,330,6.7,10,10,11.3,570,9,999999999,139,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.6,3.5,70,102500,0,0,328,0,0,0,0,0,0,0,330,6.9,10,10,11.3,585,9,999999999,129,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,2.7,68,102500,0,0,326,0,0,0,0,0,0,0,330,7.2,10,10,11.3,600,9,999999999,120,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,2.7,68,102500,0,0,326,0,0,0,0,0,0,0,330,6.6,10,10,11.3,600,9,999999999,110,0.0730,0,88,0.130,0.0,6.0 +1996,2,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,0.5,65,102800,73,1021,296,27,22,25,2900,1300,2800,600,320,6.1,9,7,11.3,600,9,999999999,110,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,-0.6,60,102900,348,1408,300,117,154,78,12500,12900,9300,1470,330,5.1,9,8,11.3,630,9,999999999,110,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-0.6,57,103000,605,1408,297,224,189,143,24300,19100,16100,2960,330,6.1,9,7,11.3,690,9,999999999,100,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,-1.2,57,103000,809,1408,299,290,88,239,31900,8900,26800,7640,330,7.7,9,8,11.3,840,9,999999999,100,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,-1.2,57,103000,945,1408,294,450,109,376,49400,11200,41800,12290,330,7.2,9,7,11.3,840,9,999999999,100,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,-2.3,46,103000,1005,1408,290,719,832,125,76100,83700,16100,3450,330,5.1,3,3,11.3,77777,9,999999999,89,0.0730,0,88,0.130,0.0,6.0 +1996,2,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-1.7,48,102900,983,1408,287,711,822,136,74300,82300,16600,3510,320,6.6,2,2,11.3,77777,9,999999999,89,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-4.5,41,103000,882,1408,283,579,637,179,60400,63700,20300,4300,330,6.6,3,3,11.3,77777,9,999999999,89,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-4.5,45,103000,709,1408,289,330,239,210,35400,24800,22800,4780,340,5.6,9,7,11.3,2400,9,999999999,80,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,-3.9,49,103000,475,1408,291,161,86,132,17700,8000,14900,3570,320,5.1,9,8,11.3,2400,9,999999999,80,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-3.4,53,103100,197,1408,285,46,93,33,5000,5700,4200,570,340,6.1,9,7,11.3,2400,9,999999999,80,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,-3.4,53,103200,5,270,290,0,4,0,0,0,0,0,320,6.1,9,8,11.3,2400,9,999999999,69,0.0730,0,88,0.130,0.0,6.0 +1996,2,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,-5.6,48,103300,0,0,266,0,0,0,0,0,0,0,340,6.1,2,2,11.3,77777,9,999999999,69,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.3,-5.6,49,103300,0,0,266,0,0,0,0,0,0,0,350,5.1,3,3,11.3,77777,9,999999999,69,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-10.0,36,103500,0,0,255,0,0,0,0,0,0,0,360,5.1,2,2,11.3,77777,9,999999999,69,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.8,-9.7,38,103500,0,0,254,0,0,0,0,0,0,0,360,4.9,2,2,11.3,77777,9,999999999,60,0.0730,0,88,0.130,999.0,99.0 +1996,2,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,1.1,-9.8,40,103500,0,0,252,0,0,0,0,0,0,0,360,4.7,2,2,11.3,77777,9,999999999,60,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,0.3,-9.9,42,103500,0,0,245,0,0,0,0,0,0,0,360,4.5,1,1,11.3,77777,9,999999999,60,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-0.3,-9.9,44,103600,0,0,243,0,0,0,0,0,0,0,360,4.4,1,1,11.3,77777,9,999999999,50,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.0,-10.1,46,103600,0,0,240,0,0,0,0,0,0,0,360,4.2,1,1,11.3,77777,9,999999999,50,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-1.6,-10.2,48,103600,0,0,238,0,0,0,0,0,0,0,360,4.0,1,1,11.3,77777,9,999999999,50,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,-2.1,-10.3,49,103600,0,0,232,0,0,0,0,0,0,0,360,3.8,0,0,11.3,77777,9,999999999,40,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-2.8,-10.6,51,103600,0,0,229,0,0,0,0,0,0,0,360,3.6,0,0,11.3,77777,9,999999999,40,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,-3.4,-9.5,59,103700,0,0,228,0,0,0,0,0,0,0,10,4.6,0,0,11.3,77777,9,999999999,40,0.0730,0,88,0.130,0.0,6.0 +1996,2,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-3.4,-8.9,62,103700,75,1020,229,29,201,14,3100,10300,2300,270,10,5.1,0,0,11.3,77777,9,999999999,40,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,-0.6,-8.4,51,103700,352,1407,239,210,663,44,21800,56600,7600,890,20,5.1,0,0,11.3,77777,9,999999999,40,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-6.7,52,103700,609,1407,246,429,842,64,45000,80600,10000,1370,30,5.6,0,0,11.3,77777,9,999999999,40,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.9,-7.8,39,103700,813,1407,255,613,922,80,64100,90900,11400,1800,50,5.7,0,0,11.2,77777,9,999999999,50,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-7.8,33,103600,950,1407,275,683,751,176,72000,75800,20600,4650,20,5.1,3,3,11.3,77777,9,999999999,50,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.7,-7.3,31,103600,1010,1407,279,689,744,155,73700,76000,19000,4560,30,4.6,2,2,11.3,77777,9,999999999,50,0.0730,0,88,0.130,0.0,6.0 +1996,2,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-6.2,33,103400,988,1407,274,771,967,91,80300,96400,12300,2360,40,5.1,0,0,11.3,77777,9,999999999,50,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-5.0,33,103300,887,1407,282,677,939,85,70700,93100,11800,2010,360,4.1,0,0,11.3,77777,9,999999999,50,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,-4.5,32,103200,714,1407,287,519,881,72,54400,85900,10700,1570,20,5.1,0,0,11.3,77777,9,999999999,60,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,-3.9,33,103300,479,1407,287,313,760,54,32900,70300,8900,1130,20,5.1,0,0,11.3,77777,9,999999999,60,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,-2.8,43,103200,202,1407,291,85,308,41,8700,20300,5700,720,20,3.6,3,3,11.3,77777,9,999999999,60,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.7,-1.7,51,103300,5,293,285,0,16,0,0,0,0,0,10,2.0,2,2,11.3,77777,9,999999999,60,0.0730,0,88,0.130,0.0,6.0 +1996,2,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-1.7,56,103300,0,0,270,0,0,0,0,0,0,0,360,2.0,0,0,11.3,77777,9,999999999,69,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-1.2,59,103300,0,0,270,0,0,0,0,0,0,0,10,2.5,0,0,11.3,77777,9,999999999,69,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,-1.2,61,103300,0,0,268,0,0,0,0,0,0,0,360,2.5,0,0,11.3,77777,9,999999999,69,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.4,-0.9,63,103300,0,0,273,0,0,0,0,0,0,0,360,2.4,1,1,11.3,19400,9,999999999,69,0.0730,0,88,0.130,999.0,99.0 +1996,2,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.9,-0.9,65,103300,0,0,275,0,0,0,0,0,0,0,360,2.3,2,2,11.3,16800,9,999999999,69,0.0730,0,88,0.130,999.0,99.0 +1996,2,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-1.1,67,103300,0,0,275,0,0,0,0,0,0,0,360,2.1,3,3,11.3,14200,9,999999999,80,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.1,-1.1,68,103200,0,0,278,0,0,0,0,0,0,0,360,2.0,5,5,11.3,11600,9,999999999,80,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.7,-1.2,69,103200,0,0,279,0,0,0,0,0,0,0,360,1.9,6,6,11.3,9000,9,999999999,80,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.4,-1.3,70,103200,0,0,281,0,0,0,0,0,0,0,360,1.8,7,7,11.3,6400,9,999999999,80,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.1,-1.4,71,103200,0,0,284,0,0,0,0,0,0,0,360,1.6,8,8,11.3,3800,9,999999999,80,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.7,-1.7,72,103200,0,0,288,0,0,0,0,0,0,0,360,1.5,9,9,11.3,1200,9,999999999,89,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.8,-3.4,57,103200,0,0,271,0,0,0,0,0,0,0,360,1.5,3,3,11.3,77777,9,999999999,89,0.0740,0,88,0.130,0.0,6.0 +1996,2,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.4,-3.9,53,103300,77,1043,293,25,38,22,2800,1900,2600,460,360,2.0,9,9,11.3,3000,9,999999999,89,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-2.8,48,103300,355,1407,285,195,453,80,20400,37600,10900,1470,20,4.1,3,3,11.3,77777,9,999999999,89,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,-2.3,45,103300,613,1407,289,389,660,101,40800,63700,12900,2040,20,5.1,2,2,11.3,77777,9,999999999,89,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,-1.2,44,103300,818,1407,300,540,698,134,57100,70100,16200,3120,30,5.1,3,3,11.3,77777,9,999999999,89,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,1.1,48,103300,955,1407,304,665,798,123,70000,80000,15500,3140,50,5.1,2,2,11.3,77777,9,999999999,89,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,1.1,43,103100,1014,1407,315,726,736,195,76500,74400,22600,5640,50,4.1,3,3,11.2,77777,9,999999999,100,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,1.7,38,103000,993,1407,325,697,806,127,73500,81000,16100,3420,30,3.1,2,2,11.2,77777,9,999999999,100,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,0.5,32,102900,892,1407,318,665,895,97,69100,88700,12700,2080,20,4.1,0,0,11.3,77777,9,999999999,100,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,1.6,35,102900,718,1407,329,488,734,113,51500,72800,14200,2450,30,3.6,2,2,11.3,77777,9,999999999,100,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,2.7,38,102900,484,1407,334,268,511,92,27600,46600,11600,1720,20,4.6,3,3,11.3,77777,9,999999999,100,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,3.3,44,102900,206,1407,324,89,325,41,9000,21600,5800,720,30,4.1,2,2,11.3,77777,9,999999999,100,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,3.3,39,102900,6,293,335,0,9,0,0,0,0,0,10,2.0,3,3,11.3,77777,9,999999999,100,0.0740,0,88,0.130,0.0,6.0 +1996,2,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,3.8,49,103000,0,0,309,0,0,0,0,0,0,0,20,2.0,0,0,11.3,77777,9,999999999,100,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,3.8,51,103000,0,0,307,0,0,0,0,0,0,0,20,3.0,0,0,11.3,77777,9,999999999,100,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,3.8,53,103000,0,0,304,0,0,0,0,0,0,0,50,4.1,0,0,11.3,77777,9,999999999,100,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.9,4.2,55,103000,0,0,303,0,0,0,0,0,0,0,50,4.0,0,0,11.3,77777,9,999999999,110,0.0740,0,88,0.130,999.0,99.0 +1996,2,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.3,4.2,58,103000,0,0,301,0,0,0,0,0,0,0,50,4.0,1,0,11.3,77777,9,999999999,110,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.6,4.1,60,102900,0,0,298,0,0,0,0,0,0,0,40,3.9,1,0,11.3,77777,9,999999999,110,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.1,4.2,62,102900,0,0,296,0,0,0,0,0,0,0,40,3.9,2,0,11.3,77777,9,999999999,110,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.5,4.1,65,102800,0,0,293,0,0,0,0,0,0,0,40,3.8,2,0,11.3,77777,9,999999999,110,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.9,4.0,67,102800,0,0,290,0,0,0,0,0,0,0,40,3.7,2,0,11.3,77777,9,999999999,110,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,4.1,69,102800,0,0,289,0,0,0,0,0,0,0,30,3.7,3,0,11.3,77777,9,999999999,110,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,3.8,71,102700,0,0,286,0,0,0,0,0,0,0,30,3.6,3,0,11.3,77777,9,999999999,110,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.7,3.8,76,102800,0,0,281,0,0,0,0,0,0,0,30,4.1,2,0,11.3,77777,9,999999999,110,0.0740,0,88,0.130,0.0,6.0 +1996,2,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,4.4,74,102800,80,1043,286,26,93,19,2800,4200,2500,330,30,4.1,3,0,11.3,77777,9,999999999,120,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,5.0,64,102900,359,1406,299,191,494,65,19700,41300,9100,1190,30,5.1,2,0,11.3,77777,9,999999999,120,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,6.1,62,102900,617,1406,320,388,545,148,40900,53400,17300,2980,30,4.6,9,3,11.3,2100,9,999999999,120,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,6.6,55,102900,822,1406,317,576,779,121,61500,78600,15300,2870,30,5.1,2,0,11.3,77777,9,999999999,120,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,7.2,48,102800,959,1406,330,707,828,142,73300,82500,16900,3460,50,4.1,3,0,11.3,77777,9,999999999,129,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,10.5,54,102700,1019,1406,353,719,662,240,74700,66200,26600,6790,20,3.6,9,2,11.3,1800,9,999999999,129,0.0740,0,88,0.130,0.0,6.0 +1996,2,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,7.2,52,102600,998,1406,339,690,751,157,73700,76600,19200,4530,20,4.1,9,3,11.3,1800,9,999999999,129,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,7.2,52,102500,897,1406,325,631,787,129,65500,78200,15500,2960,30,3.6,2,0,11.3,77777,9,999999999,129,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,8.8,52,102400,723,1406,334,493,735,114,52000,72900,14300,2480,330,3.0,3,0,11.3,77777,9,999999999,139,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,6.6,43,102400,488,1406,334,293,610,81,30500,56100,11000,1560,320,2.5,2,0,11.3,77777,9,999999999,139,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,8.8,50,102400,210,1406,351,71,135,50,7400,8600,6200,920,350,1.5,9,3,11.3,1500,9,999999999,139,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,8.8,52,102400,7,316,345,1,3,1,0,0,0,0,0,0.0,9,2,11.3,1500,9,999999999,150,0.0740,0,88,0.130,0.0,6.0 +1996,2,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,9.4,60,102500,0,0,328,0,0,0,0,0,0,0,70,1.5,3,0,11.3,77777,9,999999999,150,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,8.8,62,102500,0,0,333,0,0,0,0,0,0,0,330,1.0,9,2,11.3,1500,9,999999999,150,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,8.8,64,102500,0,0,319,0,0,0,0,0,0,0,0,0.0,3,0,11.3,77777,9,999999999,150,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.3,9.2,67,102500,0,0,319,0,0,0,0,0,0,0,10,0.4,3,0,11.3,77777,9,999999999,160,0.0740,0,88,0.130,999.0,99.0 +1996,2,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.8,9.2,69,102500,0,0,317,0,0,0,0,0,0,0,10,0.8,2,0,11.3,77777,9,999999999,160,0.0740,0,88,0.130,999.0,99.0 +1996,2,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.2,9.1,71,102400,0,0,314,0,0,0,0,0,0,0,20,1.1,2,0,11.3,77777,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.9,9.2,73,102400,0,0,313,0,0,0,0,0,0,0,30,1.5,2,0,11.3,77777,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.4,9.1,75,102400,0,0,310,0,0,0,0,0,0,0,30,1.9,1,0,11.3,77777,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.0,9.0,77,102400,0,0,309,0,0,0,0,0,0,0,40,2.3,1,0,11.3,77777,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.7,9.1,79,102400,0,0,307,0,0,0,0,0,0,0,40,2.6,0,0,11.3,77777,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,8.8,80,102400,0,0,305,0,0,0,0,0,0,0,50,3.0,0,0,11.3,77777,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.6,8.8,83,102400,0,0,302,0,0,0,0,0,0,0,50,2.5,0,0,11.3,77777,9,999999999,179,0.0750,0,88,0.130,0.0,6.0 +1996,2,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,9.4,83,102400,82,1066,316,29,149,18,3100,7700,2500,330,30,1.5,2,2,11.3,77777,9,999999999,179,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,10.0,70,102400,363,1406,334,205,491,78,20800,40800,10300,1380,60,2.5,3,3,11.3,77777,9,999999999,179,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,10.0,58,102500,622,1406,333,421,798,67,44600,77400,10200,1470,70,2.5,0,0,11.3,77777,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,10.5,54,102500,827,1406,342,600,878,83,62600,86700,11500,1850,160,2.0,0,0,11.3,77777,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,9.4,46,102400,964,1406,359,625,752,109,66800,75900,14500,2940,200,1.5,2,2,11.3,77777,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,8.3,40,102300,1024,1406,367,699,749,153,75000,76700,19000,4630,250,2.0,3,3,11.3,77777,9,999999999,170,0.0750,0,88,0.130,0.0,6.0 +1996,2,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,8.8,40,102100,1003,1406,367,699,766,152,74800,78300,18800,4440,280,1.5,2,2,11.3,77777,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,7.7,38,102100,902,1406,366,446,414,180,48500,42800,21000,4460,260,1.5,3,3,11.3,77777,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,5.6,32,102100,728,1406,363,469,726,93,49100,71300,12000,1980,270,2.1,2,2,11.2,77777,9,999999999,170,0.0750,0,88,0.130,4.0,6.0 +1996,2,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,5.6,35,102000,493,1406,359,297,566,98,30500,51700,12300,1820,270,1.0,3,3,11.2,77777,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,8.3,50,102100,214,1406,334,103,448,34,10600,30900,5900,620,290,2.1,0,0,11.2,77777,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,9.4,67,102100,8,340,320,1,27,1,0,0,0,0,250,2.1,0,0,11.2,77777,9,999999999,170,0.0750,0,88,0.130,1.0,6.0 +1996,2,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,9.4,64,102100,0,0,323,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,9.4,77,102200,0,0,310,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,10.0,84,102200,0,0,308,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.5,10.1,85,102100,0,0,308,0,0,0,0,0,0,0,20,0.2,0,0,11.3,77777,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.9,9.9,88,102100,0,0,305,0,0,0,0,0,0,0,30,0.3,0,0,11.3,77777,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.3,9.6,89,102100,0,0,302,0,0,0,0,0,0,0,50,0.5,0,0,11.3,77777,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.9,9.5,91,102000,0,0,300,0,0,0,0,0,0,0,70,0.7,0,0,11.3,77777,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.5,9.2,92,102000,0,0,298,0,0,0,0,0,0,0,80,0.8,0,0,11.3,77777,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.9,93,102000,0,0,296,0,0,0,0,0,0,0,100,1.0,0,0,11.2,77777,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,8.3,96,102000,0,0,291,0,0,0,0,0,0,0,360,1.0,0,0,11.2,77777,9,999999999,150,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,9.4,93,102000,0,0,298,0,0,0,0,0,0,0,150,3.0,0,0,9.7,77777,9,999999999,150,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,9.4,96,102100,0,0,296,0,0,0,0,0,0,0,30,1.0,2,0,11.3,77777,9,999999999,150,0.0750,0,88,0.130,0.0,6.0 +1996,2,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,8.8,96,102100,85,1089,293,32,180,18,3400,9400,2600,330,70,1.5,3,0,11.3,77777,9,999999999,150,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.1,77,102100,367,1405,320,210,613,50,21600,52700,7800,970,140,2.0,2,0,11.3,77777,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,8.8,54,102100,626,1405,338,409,690,101,42900,66900,13000,2070,150,3.0,9,1,11.3,1800,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.1,77,102100,831,1405,320,603,864,91,64300,86500,12900,2190,140,2.0,2,0,11.3,77777,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,7.2,39,102100,969,1405,345,719,885,108,74500,88000,13600,2400,160,4.6,3,0,11.3,77777,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,7.2,39,102000,1029,1405,345,774,911,106,80200,90900,13400,2670,200,5.6,2,0,11.3,77777,9,999999999,160,0.0750,0,88,0.130,0.0,6.0 +1996,2,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,7.7,39,101900,1008,1405,349,754,895,112,78100,89200,13900,2600,210,5.1,3,0,11.3,77777,9,999999999,160,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,9.4,44,101900,907,1405,351,658,869,97,68400,86200,12600,2130,200,4.6,2,0,11.2,77777,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,9.4,47,101800,733,1405,345,513,815,88,54000,80400,12000,1930,200,4.1,3,0,11.2,77777,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,10.6,57,101800,497,1405,345,287,570,85,29800,52600,11200,1630,210,4.6,9,1,11.2,1320,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,12.2,65,101900,218,1405,345,96,287,51,9900,19000,7000,920,210,3.1,9,1,11.2,990,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,12.2,70,101900,9,363,340,2,13,1,0,0,0,0,210,3.1,9,1,11.2,1050,9,999999999,170,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,13.9,87,101900,0,0,334,0,0,0,0,0,0,0,200,2.1,9,1,11.2,1500,9,999999999,179,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,13.9,90,101900,0,0,325,0,0,0,0,0,0,0,200,1.0,2,0,11.2,77777,9,999999999,179,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.9,87,101900,0,0,327,0,0,0,0,0,0,0,230,1.5,0,0,11.2,77777,9,999999999,179,0.0750,0,88,0.130,1.0,6.0 +1996,2,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.8,14.0,89,101900,0,0,326,0,0,0,0,0,0,0,210,1.4,0,0,11.2,77777,9,999999999,179,0.0750,0,88,0.130,999.0,99.0 +1996,2,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.1,13.7,91,101900,0,0,323,0,0,0,0,0,0,0,190,1.4,1,0,11.2,77777,9,999999999,179,0.0750,0,88,0.130,999.0,99.0 +1996,2,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,13.4,94,101900,0,0,319,0,0,0,0,0,0,0,160,1.3,1,0,11.2,77777,9,999999999,179,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.9,13.2,96,101900,0,0,317,0,0,0,0,0,0,0,140,1.3,1,0,11.2,77777,9,999999999,189,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.3,12.8,97,101900,0,0,314,0,0,0,0,0,0,0,120,1.2,1,0,11.2,77777,9,999999999,189,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,12.5,98,101900,0,0,311,0,0,0,0,0,0,0,100,1.1,2,0,11.2,77777,9,999999999,189,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.3,12.2,99,101900,0,0,309,0,0,0,0,0,0,0,70,1.1,2,0,11.2,77777,9,999999999,189,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,11.7,100,101900,0,0,306,0,0,0,0,0,0,0,50,1.0,2,0,8.0,77777,9,999999999,189,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,11.7,97,101900,0,0,308,0,0,0,0,0,0,0,120,1.0,3,0,8.0,77777,9,999999999,189,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,14.4,84,102000,88,1089,333,30,125,20,3300,5800,2800,350,150,1.5,2,0,11.2,77777,9,999999999,200,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.6,90,102000,371,1405,334,197,499,65,20400,42300,9100,1200,0,0.0,3,0,11.2,77777,9,999999999,200,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.6,76,102000,630,1405,359,388,592,122,40200,57000,14500,2420,0,0.0,9,2,11.2,77777,9,999999999,200,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,15.0,68,102100,836,1405,367,531,570,192,56900,58400,22000,4490,350,1.0,9,3,11.3,77777,9,999999999,200,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,14.4,64,102000,974,1405,365,671,666,209,70000,66800,23500,5600,340,4.1,9,2,11.3,77777,9,999999999,200,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,14.4,61,101900,1034,1405,372,660,608,212,69200,61300,23900,6290,350,3.6,9,3,11.3,77777,9,999999999,200,0.0760,0,88,0.130,0.0,6.0 +1996,2,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,13.8,57,101800,1013,1405,370,696,717,178,73700,72800,21000,5200,350,3.6,9,2,11.3,77777,9,999999999,209,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,14.4,59,101900,912,1405,374,564,547,208,60500,56500,23700,5270,330,2.0,9,3,11.3,77777,9,999999999,209,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,15.0,66,101900,737,1405,366,438,575,136,45700,56800,15800,2920,310,2.0,9,2,11.3,77777,9,999999999,209,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,14.4,64,101800,502,1405,369,253,427,101,27100,39900,12800,1900,310,2.5,9,3,11.3,77777,9,999999999,209,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,13.8,73,101900,222,1405,351,86,182,58,9200,11900,7300,1090,350,1.0,9,2,11.3,77777,9,999999999,209,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9?9?9,17.2,14.4,84,101900,10,363,347,1,3,1,0,0,0,0,350,0.5,9,3,11.3,77777,9,999999999,209,0.0760,0,88,0.130,0.0,6.0 +1996,2,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.5,13.8,90,101900,0,0,335,0,0,0,0,0,0,0,290,1.0,9,2,11.3,77777,9,999999999,220,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.1,14.4,90,101900,0,0,342,0,0,0,0,0,0,0,280,0.5,9,3,11.3,77777,9,999999999,220,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.5,15.0,97,101900,0,0,326,0,0,0,0,0,0,0,340,0.5,2,0,11.3,77777,9,999999999,220,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.4,15.1,98,101900,0,0,332,0,0,0,0,0,0,0,350,0.6,3,1,11.3,19438,9,999999999,220,0.0760,0,88,0.130,999.0,99.0 +1996,2,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.1,14.8,98,101900,0,0,335,0,0,0,0,0,0,0,350,0.6,4,2,11.3,16875,9,999999999,220,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.6,14.4,99,101900,0,0,335,0,0,0,0,0,0,0,360,0.7,5,3,11.3,14313,9,999999999,220,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,14.2,99,101800,0,0,339,0,0,0,0,0,0,0,10,0.8,6,5,11.3,11750,9,999999999,229,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.1,13.8,98,101800,0,0,340,0,0,0,0,0,0,0,10,0.8,6,6,11.3,9188,9,999999999,229,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.8,13.5,98,101800,0,0,342,0,0,0,0,0,0,0,20,0.9,7,7,11.3,6625,9,999999999,229,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.6,13.2,97,101800,0,0,347,0,0,0,0,0,0,0,20,0.9,8,8,11.3,4063,9,999999999,229,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,12.7,96,101700,0,0,352,0,0,0,0,0,0,0,30,1.0,9,9,8.0,1500,9,999999999,229,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,12.7,96,101800,0,0,324,0,0,0,0,0,0,0,120,1.0,2,2,8.0,77777,9,999999999,229,0.0760,0,88,0.130,0.0,6.0 +1996,2,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,13.8,100,101900,91,1112,331,30,30,28,3400,1500,3200,580,140,1.0,3,3,8.0,77777,9,999999999,229,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,101900,375,1404,348,195,468,69,20000,39700,9300,1260,160,2.0,2,2,11.3,77777,9,999999999,229,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.6,81,101900,635,1404,363,391,532,151,41400,52400,17600,3060,190,2.5,3,3,11.3,77777,9,999999999,229,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,16.6,71,101900,841,1404,371,590,781,122,61100,77300,14600,2650,170,4.6,2,2,11.3,77777,9,999999999,220,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,15.0,56,101900,979,1404,384,653,564,260,69300,58400,28500,7300,240,4.6,3,3,11.3,77777,9,999999999,220,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,15.5,56,101700,1039,1404,417,229,140,124,26500,15200,15200,3460,240,5.1,9,9,11.3,1350,9,999999999,220,0.0760,0,88,0.130,0.0,6.0 +1996,2,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,15.0,62,101700,1018,1404,415,214,0,214,25500,0,25500,10150,250,3.6,10,10,11.3,1500,9,999999999,220,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,16.1,68,101600,916,1404,414,188,0,188,22300,0,22300,8750,220,3.6,10,10,11.3,1500,9,999999999,209,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,16.1,68,101600,742,1404,402,279,87,233,30700,8700,26000,7080,220,3.0,9,9,11.3,6600,9,999999999,209,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,16.1,71,101600,506,1404,399,124,53,105,13700,5000,11900,3050,230,3.6,9,9,11.3,6600,9,999999999,209,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.1,73,101600,226,1404,368,98,307,48,10300,20700,6900,860,260,2.5,3,3,11.3,77777,9,999999999,209,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.5,84,101600,11,386,350,1,8,1,0,0,0,0,240,2.5,2,2,11.3,77777,9,999999999,200,0.0760,0,88,0.130,0.0,6.0 +1996,2,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.1,87,101600,0,0,355,0,0,0,0,0,0,0,230,1.5,3,3,11.3,77777,9,999999999,200,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,15.0,90,101600,0,0,342,0,0,0,0,0,0,0,240,2.0,2,2,11.3,77777,9,999999999,200,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,101700,0,0,352,0,0,0,0,0,0,0,270,2.0,3,3,11.3,77777,9,999999999,200,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.7,90,101700,0,0,352,0,0,0,0,0,0,0,290,2.6,2,2,11.2,77777,9,999999999,189,0.0760,0,88,0.130,999.0,99.0 +1996,2,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,101700,0,0,352,0,0,0,0,0,0,0,280,3.6,3,3,11.3,77777,9,999999999,189,0.0760,0,88,0.130,999.0,99.0 +1996,2,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.5,90,101700,0,0,349,0,0,0,0,0,0,0,290,5.1,3,3,11.3,77777,9,999999999,189,0.0770,0,88,0.130,0.0,6.0 +1996,2,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,12.2,75,101800,0,0,339,0,0,0,0,0,0,0,300,5.6,2,2,11.3,77777,9,999999999,189,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,8.3,62,101800,0,0,319,0,0,0,0,0,0,0,320,5.6,0,0,11.3,77777,9,999999999,179,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.2,42,101800,0,0,310,0,0,0,0,0,0,0,330,5.1,0,0,11.3,77777,9,999999999,179,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,2.2,45,101900,0,0,305,0,0,0,0,0,0,0,340,5.1,0,0,11.3,77777,9,999999999,179,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,1.1,45,101900,0,0,299,0,0,0,0,0,0,0,340,5.1,0,0,11.3,77777,9,999999999,179,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,1.7,49,102000,0,0,298,0,0,0,0,0,0,0,340,5.1,0,0,11.2,77777,9,999999999,170,0.0770,0,88,0.130,5.0,6.0 +1996,2,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,0.6,45,102100,94,1135,296,28,62,23,3100,2700,2800,400,340,5.1,0,0,11.2,77777,9,999999999,170,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-1.7,35,102100,380,1404,299,192,420,78,20300,35900,10600,1420,360,6.7,0,0,11.2,77777,9,999999999,170,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,-3.3,27,102200,639,1404,304,404,627,118,42000,60700,14300,2380,340,4.1,0,0,11.2,77777,9,999999999,160,0.0770,0,88,0.130,4.0,6.0 +1996,2,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-3.4,27,102200,845,1404,304,587,731,147,61900,73400,17500,3490,330,6.6,0,0,11.3,77777,9,999999999,160,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-2.8,28,102100,983,1404,305,714,783,164,75800,79600,19800,4620,330,5.1,0,0,11.3,77777,9,999999999,150,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,-2.3,29,102100,1044,1404,307,770,804,172,82100,82000,20900,5340,340,5.1,0,0,11.3,77777,9,999999999,150,0.0770,0,88,0.130,0.0,6.0 +1996,2,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,-1.2,31,102100,1023,1404,319,754,771,191,79500,78100,22400,5640,320,5.6,2,2,11.3,77777,9,999999999,139,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,0.0,36,102100,921,1404,308,658,764,157,69700,77300,18800,4060,330,5.6,0,0,11.3,77777,9,999999999,139,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,0.0,37,102100,747,1404,315,462,569,159,49600,57600,18900,3420,330,5.6,2,2,11.3,77777,9,999999999,139,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,1.1,43,102100,511,1404,315,268,425,114,28400,39900,13900,2180,310,3.6,3,3,11.3,77777,9,999999999,129,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,1.1,48,102100,230,1404,304,85,152,60,9000,10200,7300,1130,340,4.1,2,2,11.3,77777,9,999999999,129,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.5,1.6,54,102100,12,409,303,1,0,1,0,0,0,0,320,3.0,3,3,11.3,77777,9,999999999,120,0.0770,0,88,0.130,0.0,6.0 +1996,2,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,2.8,61,102200,0,0,299,0,0,0,0,0,0,0,330,4.1,2,2,11.2,77777,9,999999999,120,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,1.6,50,102300,0,0,295,0,0,0,0,0,0,0,330,6.1,0,0,11.3,77777,9,999999999,110,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,1.6,52,102400,0,0,293,0,0,0,0,0,0,0,330,5.1,0,0,11.3,77777,9,999999999,110,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.5,1.2,52,102400,0,0,290,0,0,0,0,0,0,0,340,4.7,0,0,11.3,77777,9,999999999,100,0.0770,0,88,0.130,999.0,99.0 +1996,2,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.7,0.5,53,102400,0,0,286,0,0,0,0,0,0,0,340,4.3,0,0,11.3,77777,9,999999999,100,0.0770,0,88,0.130,999.0,99.0 +1996,2,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.8,-0.4,52,102500,0,0,282,0,0,0,0,0,0,0,350,3.9,0,0,11.3,77777,9,999999999,100,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.1,-1.1,52,102500,0,0,278,0,0,0,0,0,0,0,360,3.6,0,0,11.3,77777,9,999999999,89,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.3,-1.9,51,102500,0,0,274,0,0,0,0,0,0,0,360,3.2,0,0,11.3,77777,9,999999999,89,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.5,-2.7,50,102600,0,0,270,0,0,0,0,0,0,0,10,2.8,0,0,11.3,77777,9,999999999,80,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.8,-3.5,49,102600,0,0,267,0,0,0,0,0,0,0,10,2.4,0,0,11.3,77777,9,999999999,80,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.5,48,102600,0,0,263,0,0,0,0,0,0,0,20,2.0,0,0,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,3.8,-4.5,52,102700,0,0,258,0,0,0,0,0,0,0,360,2.0,0,0,11.3,77777,9,999999999,69,0.0780,0,88,0.130,0.0,6.0 +1996,2,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,-5.0,44,102700,97,1158,276,36,201,19,3800,10800,2900,350,20,2.5,3,3,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,-5.6,36,102700,384,1403,281,218,531,72,22400,45400,9900,1320,20,4.1,2,2,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,-6.2,31,102800,644,1403,290,384,552,131,41300,54600,16100,2630,20,3.6,3,3,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,-6.7,26,102800,850,1403,294,582,771,114,60800,76700,14100,2590,330,2.5,2,2,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-7.3,23,102700,988,1403,301,731,827,148,75800,82500,17500,3740,330,3.0,3,3,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,-7.3,22,102600,1049,1403,300,820,939,117,84700,93700,14400,2860,320,2.5,2,2,11.3,77777,9,999999999,69,0.0780,0,88,0.130,0.0,6.0 +1996,2,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.9,-6.1,23,102500,1028,1403,309,757,804,168,80700,82000,20500,5080,280,2.6,3,3,11.2,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-5.0,24,102400,926,1403,309,582,700,119,61200,70100,14700,2960,250,2.1,2,2,11.2,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-5.6,23,102300,751,1403,312,515,705,137,53800,69800,16300,2980,250,1.5,3,3,11.2,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-5.0,24,102300,515,1403,312,331,538,133,34400,50500,15800,2590,240,1.0,2,2,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,1.1,45,102300,234,1403,312,104,151,79,11200,10800,9400,1680,240,3.6,3,3,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.8,0.0,54,102300,13,433,291,2,23,1,0,0,0,0,290,2.5,2,2,11.3,77777,9,999999999,69,0.0780,0,88,0.130,0.0,6.0 +1996,2,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-1.2,54,102400,0,0,286,0,0,0,0,0,0,0,310,2.0,3,3,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,-0.6,60,102400,0,0,282,0,0,0,0,0,0,0,310,2.0,2,2,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,0.0,63,102400,0,0,285,0,0,0,0,0,0,0,310,2.0,3,3,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.0,1.1,66,102300,0,0,288,0,0,0,0,0,0,0,300,2.2,3,3,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.1,1.8,69,102300,0,0,286,0,0,0,0,0,0,0,290,2.4,2,2,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,2.4,72,102200,0,0,287,0,0,0,0,0,0,0,280,2.6,2,2,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.5,3.1,74,102200,0,0,289,0,0,0,0,0,0,0,270,2.8,2,2,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.6,3.7,76,102100,0,0,286,0,0,0,0,0,0,0,250,3.0,1,1,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.8,4.4,79,102100,0,0,288,0,0,0,0,0,0,0,240,3.2,1,1,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.1,5.1,81,102000,0,0,284,0,0,0,0,0,0,0,230,3.4,0,0,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,5.5,83,102000,0,0,285,0,0,0,0,0,0,0,220,3.6,0,0,11.3,77777,9,999999999,69,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,6.1,80,102000,0,0,290,0,0,0,0,0,0,0,220,4.1,0,0,11.3,77777,9,999999999,69,0.0780,0,88,0.130,0.0,6.0 +1996,2,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.8,86,102000,100,1157,295,43,315,16,4600,19100,2900,340,0,0.0,0,0,11.2,77777,9,999999999,80,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,8.3,77,102000,388,1403,310,222,636,46,23200,55900,7700,950,0,0.0,3,1,11.2,77777,9,999999999,89,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.3,64,102000,649,1403,317,462,878,56,48800,84900,9400,1370,190,4.1,0,0,11.2,77777,9,999999999,89,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.7,8.9,60,101900,855,1403,331,582,772,110,61000,76900,13900,2550,210,4.1,3,1,11.2,77777,9,999999999,100,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,8.9,58,101900,993,1403,333,711,897,76,74600,89600,10900,2180,210,6.2,2,1,11.2,77777,9,999999999,110,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,10.0,58,101700,1054,1403,340,759,895,86,79200,89500,11700,2550,210,7.7,3,1,11.3,77777,9,999999999,110,0.0780,0,88,0.130,0.0,6.0 +1996,2,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,10.0,56,101600,1033,1403,353,707,684,203,74400,69200,23300,6060,210,7.7,9,4,11.2,1170,9,999999999,120,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,11.1,61,101500,931,1403,343,652,846,90,67900,84100,11900,2170,210,7.7,3,1,11.3,77777,9,999999999,129,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,11.1,65,101500,756,1403,349,465,542,172,49600,54900,19900,3750,220,6.6,9,4,11.3,990,9,999999999,129,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,11.1,70,101500,519,1403,343,318,592,98,32800,54900,12400,1860,220,6.1,9,4,11.3,960,9,999999999,139,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,11.6,75,101500,238,1403,331,117,489,34,11900,36700,5700,650,220,5.1,2,1,11.3,77777,9,999999999,150,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,12.2,81,101500,14,432,340,3,16,3,0,0,0,0,190,4.1,9,4,11.3,1350,9,999999999,150,0.0780,0,88,0.130,0.0,6.0 +1996,2,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.2,83,101500,0,0,337,0,0,0,0,0,0,0,200,5.1,9,4,11.3,4800,9,999999999,160,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.2,83,101500,0,0,337,0,0,0,0,0,0,0,190,5.1,9,4,11.3,4800,9,999999999,170,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,12.7,83,101500,0,0,340,0,0,0,0,0,0,0,190,4.1,9,4,11.3,4800,9,999999999,170,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.7,13.2,85,101500,0,0,342,0,0,0,0,0,0,0,190,3.9,8,4,11.3,6950,9,999999999,179,0.0780,0,88,0.130,999.0,99.0 +1996,2,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.6,13.4,87,101500,0,0,341,0,0,0,0,0,0,0,190,3.6,8,4,11.3,9100,9,999999999,189,0.0780,0,88,0.130,999.0,99.0 +1996,2,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.5,13.5,88,101400,0,0,341,0,0,0,0,0,0,0,190,3.4,7,4,11.3,11250,9,999999999,189,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.6,13.7,88,101400,0,0,342,0,0,0,0,0,0,0,190,3.1,6,4,11.3,13400,9,999999999,200,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.5,13.7,89,101400,0,0,339,0,0,0,0,0,0,0,180,2.9,5,3,11.3,15550,9,999999999,209,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.5,13.8,90,101300,0,0,339,0,0,0,0,0,0,0,180,2.6,5,3,11.3,17700,9,999999999,209,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.6,14.0,90,101300,0,0,339,0,0,0,0,0,0,0,180,2.4,4,3,11.3,19850,9,999999999,220,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,13.9,90,101300,0,0,339,0,0,0,0,0,0,0,180,2.1,3,3,11.2,77777,9,999999999,229,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,14.4,90,101300,0,0,355,0,0,0,0,0,0,0,200,4.1,9,7,11.3,2100,9,999999999,229,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,15.0,90,101300,104,1180,363,20,21,19,2400,1100,2300,390,180,4.1,9,8,9.7,2400,9,999999999,240,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.5,90,101300,393,1402,361,126,198,71,13800,17500,8900,1300,210,2.0,9,7,11.3,2400,9,999999999,240,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.6,93,101400,653,1402,383,139,0,139,16100,0,16100,5890,220,1.5,10,10,8.0,1200,9,999999999,240,0.0790,0,88,0.130,3.0,6.0 +1996,2,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.1,93,101400,860,1402,386,188,0,188,22100,0,22100,8500,210,2.0,10,10,8.0,900,9,999999999,250,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.6,96,101300,998,1402,368,327,149,221,36700,15900,25400,6810,190,4.1,9,8,4.8,900,9,999999999,250,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.6,96,101200,1059,1402,363,644,458,297,68100,47600,32100,9570,170,4.1,9,7,9.7,2100,9,999999999,250,0.0790,0,88,0.130,9.0,6.0 +1996,2,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,101100,1038,1402,375,487,256,297,53200,27700,32600,9080,190,5.1,9,8,9.7,1500,9,999999999,259,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,101100,936,1402,365,444,191,316,48400,20100,34900,9190,200,4.1,9,7,11.3,1500,9,999999999,259,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,101100,760,1402,371,213,154,129,23800,16300,15000,2770,190,3.6,9,8,11.3,1350,9,999999999,259,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,16.7,93,101000,524,1402,366,173,221,90,19100,21600,11000,1710,180,4.1,9,7,11.2,1500,9,999999999,270,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,101000,242,1402,371,62,62,51,6800,4600,6000,1090,200,3.0,9,8,11.3,1350,9,999999999,270,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,16.6,93,101000,15,456,365,4,6,4,0,0,0,0,180,3.0,9,7,11.3,1500,9,999999999,270,0.0790,0,88,0.130,0.0,6.0 +1996,2,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.6,96,101000,0,0,350,0,0,0,0,0,0,0,170,4.6,3,3,11.3,77777,9,999999999,279,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.6,96,101100,0,0,346,0,0,0,0,0,0,0,180,4.6,2,2,9.7,77777,9,999999999,279,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.1,93,101100,0,0,368,0,0,0,0,0,0,0,210,4.1,9,8,9.7,1350,9,999999999,279,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.3,16.3,94,101100,0,0,368,0,0,0,0,0,0,0,220,4.1,9,8,9.7,1238,9,999999999,290,0.0790,0,88,0.130,999.0,99.0 +1996,2,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.2,16.2,94,101100,0,0,376,0,0,0,0,0,0,0,230,4.1,9,9,9.7,1125,9,999999999,290,0.0790,0,88,0.130,999.0,99.0 +1996,2,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.9,16.0,94,101100,0,0,374,0,0,0,0,0,0,0,240,4.1,9,9,9.7,1013,9,999999999,290,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.9,15.9,94,101000,0,0,374,0,0,0,0,0,0,0,260,4.1,10,9,9.7,900,9,999999999,300,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.8,15.7,93,101000,0,0,373,0,0,0,0,0,0,0,270,4.1,10,9,9.7,788,9,999999999,300,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,15.5,93,101000,0,0,383,0,0,0,0,0,0,0,280,4.1,10,10,9.7,675,9,999999999,300,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,15.4,92,101000,0,0,383,0,0,0,0,0,0,0,290,4.1,10,10,9.7,563,9,999999999,309,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,15.0,90,101000,0,0,382,0,0,0,0,0,0,0,300,4.1,10,10,11.3,450,9,999999999,309,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,101100,0,0,360,0,0,0,0,0,0,0,310,7.2,9,9,11.3,1800,9,999999999,309,0.0800,0,88,0.130,10.0,24.0 +1996,2,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,10.0,78,101200,107,1203,351,32,27,30,3600,1700,3400,720,300,5.6,9,9,11.3,900,9,999999999,300,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,9.4,75,101300,397,1401,351,152,39,141,16600,3500,15600,3440,300,5.1,9,9,11.3,2700,9,999999999,290,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,8.8,69,101400,658,1401,353,227,65,197,25000,6400,22000,5780,300,5.6,9,9,11.3,3000,9,999999999,290,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,6.6,59,101400,865,1401,326,550,636,158,57900,63900,18300,3810,300,6.1,3,3,11.3,77777,9,999999999,279,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,6.1,60,101400,1003,1401,319,694,771,141,72400,77200,17000,3750,290,6.6,2,2,11.3,77777,9,999999999,270,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.8,3.8,51,101400,1064,1401,320,711,627,234,74200,63100,26200,7290,320,7.2,3,3,11.3,77777,9,999999999,259,0.0800,0,88,0.130,0.0,6.0 +1996,2,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-0.6,35,101300,1043,1401,314,714,726,173,76000,74100,20800,5370,280,5.6,2,2,11.3,77777,9,999999999,250,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,0.5,40,101300,940,1401,316,446,348,212,48000,36000,23800,5580,280,9.7,3,3,11.3,77777,9,999999999,240,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,2.8,53,101400,765,1401,335,190,187,87,21600,19100,11200,1820,290,8.7,9,9,11.2,1500,9,999999999,229,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,3.9,57,101400,528,1401,337,206,90,172,22600,8600,19300,4610,290,8.7,9,9,11.2,1500,9,999999999,220,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,0.0,46,101500,246,1401,301,114,323,57,11900,22800,7800,1030,300,12.3,2,2,11.2,77777,9,999999999,209,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,0.6,54,101600,16,479,297,3,16,2,0,0,0,0,280,10.8,3,3,11.2,77777,9,999999999,200,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.9,-2.2,45,101600,0,0,289,0,0,0,0,0,0,0,280,8.7,2,2,11.2,77777,9,999999999,189,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-3.4,42,101800,0,0,289,0,0,0,0,0,0,0,320,9.2,3,3,11.3,77777,9,999999999,179,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-5.6,38,101900,0,0,279,0,0,0,0,0,0,0,350,6.6,2,2,11.3,77777,9,999999999,170,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-5.2,40,101900,0,0,277,0,0,0,0,0,0,0,350,6.0,2,2,11.3,77777,9,999999999,160,0.0800,0,88,0.130,999.0,99.0 +1996,2,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.9,-5.2,43,101900,0,0,274,0,0,0,0,0,0,0,350,5.5,2,2,11.3,77777,9,999999999,150,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.0,-5.3,45,101900,0,0,271,0,0,0,0,0,0,0,350,4.9,2,2,11.3,77777,9,999999999,139,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-5.2,47,102000,0,0,271,0,0,0,0,0,0,0,360,4.3,3,3,11.3,77777,9,999999999,129,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.7,-5.3,49,102000,0,0,268,0,0,0,0,0,0,0,360,3.7,3,3,11.3,77777,9,999999999,120,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.0,-5.4,51,102000,0,0,265,0,0,0,0,0,0,0,360,3.2,3,3,11.3,77777,9,999999999,110,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.4,-5.3,54,102000,0,0,263,0,0,0,0,0,0,0,360,2.6,3,3,11.3,77777,9,999999999,100,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-5.6,56,102000,0,0,260,0,0,0,0,0,0,0,360,2.0,3,3,11.3,77777,9,999999999,100,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,1.1,-5.6,58,102100,0,0,247,0,0,0,0,0,0,0,360,1.5,0,0,11.3,77777,9,999999999,89,0.0800,0,88,0.130,0.0,6.0 +1996,2,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.2,-5.6,53,102200,111,1226,262,45,122,34,4800,5600,4300,620,10,2.0,3,3,11.3,77777,9,999999999,89,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,-6.7,43,102200,402,1401,256,248,701,46,25900,62300,8000,960,10,4.1,0,0,11.3,77777,9,999999999,89,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,-5.0,44,102200,663,1401,264,470,853,66,49400,82600,10100,1460,10,5.1,0,0,11.3,77777,9,999999999,89,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-4.5,41,102200,870,1401,280,564,672,146,59600,67800,17400,3580,350,3.6,2,2,11.3,77777,9,999999999,89,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,-3.4,41,102200,1009,1401,291,798,930,128,84300,93600,16700,3550,350,2.0,3,3,11.3,77777,9,999999999,89,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-2.3,41,102100,1069,1401,294,802,881,129,85400,89000,17200,4010,320,4.1,2,2,11.3,77777,9,999999999,89,0.0800,0,88,0.130,0.0,6.0 +1996,2,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,-2.3,43,102000,1047,1401,294,782,827,163,80900,82500,19000,4480,340,4.1,3,3,11.3,77777,9,999999999,100,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-0.6,47,102000,945,1401,296,688,837,122,72300,83900,15500,3100,310,4.1,2,2,11.2,77777,9,999999999,100,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-1.2,45,101900,769,1401,298,485,643,131,51000,64100,15700,2920,330,4.6,3,3,11.3,77777,9,999999999,100,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,-0.6,49,101900,532,1401,293,335,685,74,35400,64800,10600,1480,330,3.6,2,2,11.3,77777,9,999999999,100,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-0.6,53,101900,250,1401,291,113,272,65,11700,19300,8200,1190,320,3.6,3,3,11.3,77777,9,999999999,100,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.5,0.0,68,101800,17,479,278,4,42,3,0,0,0,0,290,3.6,2,2,11.3,77777,9,999999999,100,0.0800,0,88,0.130,0.0,6.0 +1996,2,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,0.0,68,101800,0,0,281,0,0,0,0,0,0,0,280,2.5,3,3,11.3,77777,9,999999999,100,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,1.1,73,101800,0,0,279,0,0,0,0,0,0,0,290,2.5,2,2,11.3,77777,9,999999999,110,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,1.6,76,101800,0,0,271,0,0,0,0,0,0,0,260,3.0,0,0,11.3,77777,9,999999999,110,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.7,2.4,79,101800,0,0,272,0,0,0,0,0,0,0,270,2.6,0,0,11.3,77777,9,999999999,110,0.0800,0,88,0.130,999.0,99.0 +1996,2,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,2.8,82,101800,0,0,272,0,0,0,0,0,0,0,290,2.3,0,0,11.3,77777,9,999999999,110,0.0800,0,88,0.130,999.0,99.0 +1996,2,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.5,3.2,85,101700,0,0,272,0,0,0,0,0,0,0,300,1.9,0,0,11.3,77777,9,999999999,110,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,3.7,88,101700,0,0,273,0,0,0,0,0,0,0,310,1.5,0,0,11.3,77777,9,999999999,110,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.5,4.0,90,101700,0,0,273,0,0,0,0,0,0,0,320,1.1,0,0,11.3,77777,9,999999999,110,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.5,4.4,93,101700,0,0,273,0,0,0,0,0,0,0,340,0.8,0,0,11.3,77777,9,999999999,120,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,4.8,95,101600,0,0,274,0,0,0,0,0,0,0,350,0.4,0,0,11.3,77777,9,999999999,120,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.6,5.0,96,101600,0,0,274,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,120,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.7,6.1,96,101600,0,0,292,0,0,0,0,0,0,0,60,1.0,3,3,11.2,77777,9,999999999,120,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,6.7,97,101700,115,1248,291,36,101,26,3900,4800,3400,450,90,1.0,2,2,11.2,77777,9,999999999,120,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,9.4,86,101700,407,1400,317,216,425,93,22700,37200,11900,1730,90,1.5,3,3,11.2,77777,9,999999999,120,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,9.4,72,101800,668,1400,341,311,257,188,33300,26400,20700,4150,30,1.5,9,7,11.3,7200,9,999999999,120,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,7.7,60,101800,875,1400,332,652,779,165,68400,78200,19400,4000,240,1.5,3,3,11.3,77777,9,999999999,129,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,8.3,58,101700,1014,1400,334,713,758,164,76100,77300,19900,4870,200,2.5,2,2,11.3,77777,9,999999999,129,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,7.2,47,101600,1074,1400,347,799,819,170,82600,81700,19700,4890,240,2.5,3,3,11.3,77777,9,999999999,129,0.0810,0,88,0.130,0.0,6.0 +1996,2,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,6.6,43,101500,1052,1400,345,750,768,172,80000,78400,20900,5440,200,3.0,2,2,11.3,77777,9,999999999,129,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,8.3,50,101500,950,1400,348,607,598,200,63200,60000,22400,5230,210,3.6,3,3,11.2,77777,9,999999999,129,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,7.7,50,101500,774,1400,342,517,697,131,54400,69500,15800,2940,220,2.5,2,2,11.3,77777,9,999999999,129,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,6.7,48,101500,536,1400,327,330,629,88,34400,59200,11600,1730,290,2.1,0,0,11.2,77777,9,999999999,129,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,6.1,53,101500,254,1400,317,115,345,52,12100,24800,7600,930,330,4.1,0,0,11.2,77777,9,999999999,129,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,6.6,66,101600,18,502,318,3,9,3,0,0,0,0,330,2.5,3,3,11.3,77777,9,999999999,139,0.0810,0,88,0.130,0.0,6.0 +1996,2,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,6.6,71,101600,0,0,310,0,0,0,0,0,0,0,320,1.5,2,2,11.3,77777,9,999999999,139,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,6.6,71,101700,0,0,300,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,139,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.6,7.8,83,101700,0,0,297,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,139,0.0810,0,88,0.130,4.0,6.0 +1996,2,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.9,8.5,85,101700,0,0,305,0,0,0,0,0,0,0,10,0.3,1,1,11.2,19438,9,999999999,139,0.0810,0,88,0.130,999.0,99.0 +1996,2,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.8,8.9,88,101700,0,0,309,0,0,0,0,0,0,0,20,0.5,2,2,11.2,16875,9,999999999,139,0.0810,0,88,0.130,999.0,99.0 +1996,2,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.7,9.2,90,101700,0,0,312,0,0,0,0,0,0,0,30,0.8,3,3,11.2,14313,9,999999999,139,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.9,9.6,92,101700,0,0,318,0,0,0,0,0,0,0,40,1.1,5,5,11.2,11750,9,999999999,150,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.9,9.8,93,101700,0,0,321,0,0,0,0,0,0,0,50,1.3,6,6,11.2,9188,9,999999999,150,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.9,10.1,95,101700,0,0,325,0,0,0,0,0,0,0,60,1.6,7,7,11.2,6625,9,999999999,150,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.1,10.5,96,101700,0,0,332,0,0,0,0,0,0,0,70,1.8,8,8,11.2,4063,9,999999999,150,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,10.6,97,101700,0,0,339,0,0,0,0,0,0,0,80,2.1,9,9,8.0,1500,9,999999999,150,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,9.4,96,101800,0,0,306,0,0,0,0,0,0,0,90,2.5,2,2,6.4,77777,9,999999999,150,0.0820,0,88,0.130,0.0,6.0 +1996,2,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,11.1,93,101800,119,1271,321,42,237,20,4500,13500,3200,370,100,3.0,3,3,11.3,77777,9,999999999,160,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,11.6,83,101900,412,1400,328,226,616,45,23900,55200,7600,960,110,3.6,2,2,11.3,77777,9,999999999,160,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,10.5,63,101900,673,1400,345,462,625,161,48900,62200,18800,3340,130,3.0,3,3,11.3,77777,9,999999999,160,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,8.8,47,101900,880,1400,353,537,703,94,57500,70700,12900,2380,150,3.6,2,2,11.3,77777,9,999999999,170,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,7.7,41,101800,1019,1400,361,717,769,157,76800,78600,19400,4730,130,3.0,3,3,11.3,77777,9,999999999,170,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,7.2,38,101800,1079,1400,360,778,842,128,83000,85200,17100,4080,130,4.1,2,2,11.3,77777,9,999999999,170,0.0820,0,88,0.130,0.0,6.0 +1996,2,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,9.4,49,101600,1057,1400,358,746,865,92,77700,86500,12100,2670,210,5.1,3,3,11.3,77777,9,999999999,179,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,7.8,41,101600,955,1400,358,634,720,143,67900,73400,17600,3930,210,5.1,2,2,11.2,77777,9,999999999,179,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,9.4,49,101600,778,1400,358,527,707,133,55400,70500,16000,2990,210,5.1,3,3,11.3,77777,9,999999999,179,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,9.4,49,101600,540,1400,354,319,625,77,33600,59300,10700,1550,200,4.6,2,2,11.3,77777,9,999999999,189,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,11.1,65,101500,258,1400,346,91,196,55,9800,14100,7200,1000,200,4.1,3,3,11.2,77777,9,999999999,189,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.6,75,101500,20,525,336,6,63,3,0,0,0,0,200,2.5,2,2,11.3,77777,9,999999999,189,0.0820,0,88,0.130,0.0,6.0 +1996,2,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,11.6,78,101500,0,0,336,0,0,0,0,0,0,0,170,1.5,3,3,11.3,77777,9,999999999,200,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.1,77,101500,0,0,330,0,0,0,0,0,0,0,170,2.0,2,2,11.3,77777,9,999999999,200,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,11.1,81,101500,0,0,317,0,0,0,0,0,0,0,90,2.0,0,0,11.3,77777,9,999999999,200,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.6,11.5,82,101600,0,0,318,0,0,0,0,0,0,0,90,2.2,0,0,11.3,77777,9,999999999,200,0.0820,0,88,0.130,999.0,99.0 +1996,2,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.5,11.6,83,101600,0,0,318,0,0,0,0,0,0,0,100,2.4,1,0,11.3,77777,9,999999999,209,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.3,11.6,84,101600,0,0,317,0,0,0,0,0,0,0,100,2.6,1,0,11.3,77777,9,999999999,209,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,11.7,84,101600,0,0,324,0,0,0,0,0,0,0,110,2.8,1,1,11.3,77777,9,999999999,209,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,11.7,84,101600,0,0,324,0,0,0,0,0,0,0,110,3.0,1,1,11.3,77777,9,999999999,220,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,11.7,84,101600,0,0,324,0,0,0,0,0,0,0,110,3.2,2,1,11.3,77777,9,999999999,220,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.5,11.8,84,101600,0,0,324,0,0,0,0,0,0,0,120,3.4,2,1,11.3,77777,9,999999999,220,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,11.6,83,101600,0,0,323,0,0,0,0,0,0,0,120,3.6,2,1,11.3,77777,9,999999999,229,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,12.7,83,101600,0,0,343,0,0,0,0,0,0,0,120,4.6,9,5,11.3,4500,9,999999999,229,0.0820,0,88,0.130,0.0,6.0 +1996,2,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.8,80,101700,123,1271,352,56,19,54,6100,1300,6000,1140,120,4.1,9,5,11.3,2400,9,999999999,229,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,14.4,81,101700,417,1399,355,194,204,133,20900,18500,15400,2970,130,4.1,9,5,11.3,2700,9,999999999,240,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,15.0,79,101800,678,1399,383,176,44,154,19300,4300,17200,4810,140,2.5,10,9,11.3,2400,9,999999999,240,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.5,75,101800,885,1399,390,171,70,127,19700,7500,15000,3540,150,2.5,10,9,11.3,1800,9,999999999,240,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,17.2,71,101700,1024,1399,406,345,133,247,38500,14200,28100,7840,190,2.5,10,9,11.3,1800,9,999999999,250,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,17.7,69,101700,1084,1399,390,567,450,218,62200,47000,25700,7240,190,5.6,9,5,11.3,1800,9,999999999,250,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.2,69,101600,1062,1399,387,707,628,230,74000,63200,25800,7180,200,5.1,9,5,11.3,2100,9,999999999,250,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,17.2,62,101500,959,1399,381,651,760,129,68200,76100,15800,3290,200,6.1,3,1,11.3,77777,9,999999999,250,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,16.7,66,101500,783,1399,386,463,464,203,48800,47100,22300,4590,200,5.7,9,5,11.2,2100,9,999999999,259,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.7,76,101500,545,1399,375,275,135,222,30000,13200,24900,5620,200,3.1,9,5,11.2,1800,9,999999999,259,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,16.6,78,101600,262,1399,372,68,61,57,7500,4700,6700,1220,200,2.0,9,5,11.3,77777,9,999999999,259,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,16.6,87,101600,21,548,363,5,3,5,600,100,600,130,210,1.0,9,5,11.3,77777,9,999999999,270,0.0820,0,88,0.130,0.0,6.0 +1996,2,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,16.6,87,101700,0,0,363,0,0,0,0,0,0,0,190,0.5,9,5,11.3,2100,9,999999999,270,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.6,90,101600,0,0,347,0,0,0,0,0,0,0,200,1.0,3,1,11.3,77777,9,999999999,270,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.2,97,101700,0,0,345,0,0,0,0,0,0,0,160,1.5,2,1,9.7,77777,9,999999999,270,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.8,17.6,99,101700,0,0,350,0,0,0,0,0,0,0,170,1.4,3,2,9.7,19550,9,999999999,279,0.0820,0,88,0.130,999.0,99.0 +1996,2,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.7,17.6,99,101700,0,0,353,0,0,0,0,0,0,0,170,1.4,4,3,9.7,17100,9,999999999,279,0.0820,0,88,0.130,999.0,99.0 +1996,2,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,17.5,100,101700,0,0,355,0,0,0,0,0,0,0,180,1.3,5,4,9.7,14650,9,999999999,279,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,17.5,100,101700,0,0,358,0,0,0,0,0,0,0,180,1.3,6,5,9.7,12200,9,999999999,290,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.4,17.4,100,101700,0,0,357,0,0,0,0,0,0,0,190,1.2,6,5,9.7,9750,9,999999999,290,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.3,17.3,100,101700,0,0,360,0,0,0,0,0,0,0,190,1.1,7,6,9.7,7300,9,999999999,290,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.3,17.3,100,101700,0,0,364,0,0,0,0,0,0,0,200,1.1,8,7,9.7,4850,9,999999999,290,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,17.2,100,101600,0,0,369,0,0,0,0,0,0,0,200,1.0,9,8,2.8,2400,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.6,96,101700,0,0,363,0,0,0,0,0,0,0,190,1.5,9,7,1.2,2400,9,999999999,300,0.0830,0,88,0.130,0.0,6.0 +1996,2,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.6,17.5,99,101800,127,1293,390,22,0,22,2500,0,2500,800,240,1.0,10,10,0.8,77777,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.3,97,101800,422,1398,398,79,0,79,9100,0,9100,3130,310,1.0,10,10,2.4,420,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,101900,683,1398,385,375,234,260,40300,23700,28600,6430,330,1.0,9,8,4.8,1800,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.8,76,101900,890,1398,397,334,196,209,36800,21000,23300,5240,220,1.0,9,7,9.7,1800,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.3,71,101900,1029,1398,385,750,795,165,80200,81200,20200,5040,210,3.0,3,3,9.7,77777,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,18.8,74,101700,1089,1398,399,571,349,299,62800,37800,33200,9880,210,4.6,9,7,11.3,1800,9,999999999,300,0.0830,0,88,0.130,0.0,6.0 +1996,2,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.3,62,101600,1067,1398,397,779,805,164,80700,80400,19200,4720,210,4.6,3,3,11.3,77777,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,18.3,64,101600,964,1398,390,681,871,81,71300,86900,11200,2180,210,4.1,2,2,11.2,77777,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.3,69,101600,787,1398,388,491,584,162,51000,57800,18300,3560,210,3.6,3,3,11.3,77777,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.3,74,101600,549,1398,396,289,134,236,31500,13100,26400,5870,240,4.1,9,7,11.3,2100,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.8,81,101600,266,1398,377,126,301,68,12900,22000,8700,1250,220,1.5,3,3,11.3,77777,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.7,90,101700,22,548,375,6,5,5,600,200,600,130,210,0.5,9,7,11.3,77777,9,999999999,300,0.0830,0,88,0.130,0.0,6.0 +1996,2,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.7,96,101600,0,0,375,0,0,0,0,0,0,0,0,0.0,9,8,11.3,77777,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.7,96,101700,0,0,369,0,0,0,0,0,0,0,0,0.0,9,7,8.0,77777,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.6,96,101700,0,0,350,0,0,0,0,0,0,0,0,0.0,3,3,4.8,77777,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,17.1,98,101700,0,0,352,0,0,0,0,0,0,0,340,0.1,4,3,4.8,19276,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.4,17.3,99,101600,0,0,354,0,0,0,0,0,0,0,330,0.3,5,4,4.8,16553,9,999999999,300,0.0830,0,88,0.130,999.0,99.0 +1996,2,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.3,17.3,100,101600,0,0,354,0,0,0,0,0,0,0,310,0.4,6,4,4.8,13829,9,999999999,300,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,17.5,100,101600,0,0,358,0,0,0,0,0,0,0,300,0.5,7,5,4.8,11105,9,999999999,300,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,17.5,100,101600,0,0,358,0,0,0,0,0,0,0,280,0.6,7,5,4.8,8381,9,999999999,300,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,17.5,100,101600,0,0,358,0,0,0,0,0,0,0,260,0.8,8,5,4.8,5658,9,999999999,300,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.7,17.7,100,101600,0,0,362,0,0,0,0,0,0,0,250,0.9,9,6,4.8,2934,9,999999999,300,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.7,100,101600,0,0,362,0,0,0,0,0,0,0,230,1.0,10,6,0.4,210,9,999999999,300,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,17.2,97,101600,0,0,362,0,0,0,0,0,0,0,230,1.0,10,6,1.6,120,9,999999999,300,0.0840,0,88,0.130,0.0,6.0 +1996,2,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.7,100,101700,132,1316,362,47,93,38,5000,4600,4500,700,190,1.0,10,6,1.6,120,9,999999999,300,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.7,93,101700,427,1398,368,178,237,106,19100,21600,12500,2080,190,1.0,10,6,4.8,30,9,999999999,300,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,101700,688,1398,361,375,318,218,39900,32800,23600,4990,210,2.0,10,6,2.0,120,9,999999999,290,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.7,78,101700,896,1398,357,650,875,89,67800,86800,11900,2070,180,2.5,3,0,11.3,77777,9,999999999,290,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.3,71,101600,1034,1398,381,705,652,223,73800,65600,25100,6630,230,3.6,9,2,11.3,77777,9,999999999,290,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,17.2,60,101600,1094,1398,392,786,725,218,82900,73400,25200,7350,230,3.0,9,3,11.3,77777,9,999999999,290,0.0840,0,88,0.130,0.0,6.0 +1996,2,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.3,62,101500,1072,1398,407,512,282,295,56200,30600,32700,9490,240,2.0,10,6,11.3,77777,9,999999999,279,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,17.7,64,101500,969,1398,400,650,450,338,69700,48300,36100,9830,240,2.0,10,6,11.3,77777,9,999999999,279,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.7,66,101400,791,1398,397,451,550,139,47400,54900,16200,3150,220,1.5,10,6,11.3,77777,9,999999999,279,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.3,71,101400,553,1398,394,260,362,116,27600,34700,13900,2240,210,2.5,10,6,11.3,77777,9,999999999,279,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.3,84,101500,269,1398,367,124,351,57,13100,25900,8100,1030,230,3.0,9,2,11.3,77777,9,999999999,279,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.7,87,101500,24,571,350,7,78,4,900,4000,700,100,240,0.5,3,0,11.3,77777,9,999999999,270,0.0840,0,88,0.130,0.0,6.0 +1996,2,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,101600,0,0,341,0,0,0,0,0,0,0,210,0.5,2,0,11.2,77777,9,999999999,270,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.2,97,101600,0,0,338,0,0,0,0,0,0,0,0,0.0,3,0,8.0,77777,9,999999999,270,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,17.2,100,101600,0,0,336,0,0,0,0,0,0,0,0,0.0,2,0,2.4,77777,9,999999999,270,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.3,17.3,100,101600,0,0,343,0,0,0,0,0,0,0,20,0.1,3,1,2.4,19254,9,999999999,259,0.0840,0,88,0.130,999.0,99.0 +1996,2,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,17.0,100,101600,0,0,349,0,0,0,0,0,0,0,40,0.1,4,3,2.4,16508,9,999999999,259,0.0840,0,88,0.130,999.0,99.0 +1996,2,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,16.7,100,101600,0,0,350,0,0,0,0,0,0,0,60,0.2,5,4,2.4,13761,9,999999999,259,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,16.7,100,101500,0,0,353,0,0,0,0,0,0,0,80,0.3,6,5,2.4,11015,9,999999999,259,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.5,16.5,100,101500,0,0,355,0,0,0,0,0,0,0,100,0.3,7,6,2.4,8269,9,999999999,259,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.3,16.3,100,101500,0,0,363,0,0,0,0,0,0,0,120,0.4,8,8,2.4,5523,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.3,16.3,100,101500,0,0,371,0,0,0,0,0,0,0,140,0.4,9,9,2.4,2776,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,16.1,100,101500,0,0,380,0,0,0,0,0,0,0,160,0.5,10,10,0.4,30,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,16.1,100,101600,0,0,380,0,0,0,0,0,0,0,180,1.5,10,10,0.1,30,9,999999999,250,0.0850,0,88,0.130,0.0,6.0 +1996,2,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,16.1,100,101600,136,1339,380,13,0,13,1600,0,1600,510,180,1.0,10,10,0.4,30,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,16.6,100,101700,432,1397,384,55,0,55,6500,0,6500,2340,180,0.5,10,10,0.4,60,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,17.2,100,101700,694,1397,377,338,76,300,37000,7700,33100,8130,180,1.0,9,9,3.2,120,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.7,84,101700,901,1397,364,594,739,116,62300,73900,14500,2820,250,1.0,2,2,9.7,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,17.7,69,101700,1039,1397,384,751,657,262,80400,68300,29400,8130,210,3.0,3,3,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,17.7,66,101600,1099,1397,383,802,853,131,85700,86300,17500,4350,200,3.0,2,2,11.3,77777,9,999999999,250,0.0850,0,88,0.130,0.0,6.0 +1996,2,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,18.3,64,101500,1077,1397,394,759,753,179,81100,76900,21600,5940,210,3.0,3,3,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,17.7,62,101500,973,1397,389,685,804,124,72200,80800,15800,3290,220,4.6,2,2,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.7,66,101500,796,1397,387,393,351,192,42900,37200,21600,4460,210,3.6,3,3,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.2,76,101600,557,1397,369,332,620,85,34900,59100,11300,1700,220,2.0,2,2,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.2,76,101600,273,1397,372,100,205,60,10700,15200,7700,1100,220,2.0,3,3,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.6,84,101600,25,594,357,7,58,4,800,2500,600,80,220,0.5,2,2,11.3,77777,9,999999999,250,0.0850,0,88,0.130,0.0,6.0 +1996,2,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,16.6,87,101600,0,0,343,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.2,90,101700,0,0,343,0,0,0,0,0,0,0,230,0.5,0,0,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,101700,0,0,341,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,17.2,95,101700,0,0,340,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.4,16.9,97,101700,0,0,343,0,0,0,0,0,0,0,0,0.0,1,1,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.8,16.5,98,101700,0,0,340,0,0,0,0,0,0,0,0,0.0,1,1,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.4,16.2,99,101700,0,0,338,0,0,0,0,0,0,0,0,0.0,1,1,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.8,15.7,99,101800,0,0,334,0,0,0,0,0,0,0,0,0.0,1,1,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.3,15.3,100,101800,0,0,336,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.9,14.9,100,101800,0,0,334,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,14.4,100,101800,0,0,331,0,0,0,0,0,0,0,0,0.0,2,2,3.2,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,15.0,100,101800,0,0,373,0,0,0,0,0,0,0,0,0.0,10,10,0.3,210,9,999999999,250,0.0850,0,88,0.130,0.0,6.0 +1996,2,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.7,100,101900,141,1361,391,27,0,27,3100,0,3100,960,0,0.0,10,10,3.2,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,19.4,96,102000,437,1396,367,239,504,81,24600,44900,10600,1500,240,2.0,3,3,8.0,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,19.4,90,102000,699,1396,369,424,643,102,45000,63800,13000,2210,240,2.0,2,2,8.0,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.4,20.0,76,102000,906,1396,390,539,564,172,56500,56700,19600,4330,230,3.0,3,3,8.0,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.4,19.4,74,102000,1044,1396,403,729,478,371,78400,51600,39700,11920,230,2.5,9,7,8.0,600,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.7,18.8,58,101900,1104,1396,406,740,739,155,77600,74300,18700,4970,310,4.1,3,3,11.3,77777,9,999999999,250,0.0850,0,88,0.130,0.0,6.0 +1996,2,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.8,60,101800,1081,1396,399,759,754,175,81200,77100,21300,5890,320,3.0,2,2,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,18.8,66,101800,978,1396,394,676,731,164,71800,74300,19600,4610,310,3.0,3,3,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,19.4,69,101800,800,1396,391,497,687,103,53400,69500,13400,2450,310,3.6,2,2,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,19.4,74,101800,561,1396,389,317,449,136,33300,43100,15900,2670,320,3.0,3,3,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,18.8,79,101900,277,1396,376,132,346,63,13800,25900,8600,1140,300,2.0,2,2,11.3,77777,9,999999999,250,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,18.3,87,101900,26,593,368,6,24,5,700,800,700,80,300,1.5,3,3,11.3,77777,9,999999999,250,0.0850,0,88,0.130,0.0,6.0 +1996,2,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,102000,0,0,362,0,0,0,0,0,0,0,310,1.0,2,2,11.3,77777,9,999999999,240,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.7,93,102000,0,0,359,0,0,0,0,0,0,0,310,0.5,3,3,11.3,77777,9,999999999,240,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.7,96,102100,0,0,353,0,0,0,0,0,0,0,310,0.5,2,2,11.3,77777,9,999999999,240,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,17.7,98,102000,0,0,355,0,0,0,0,0,0,0,320,0.4,3,3,11.3,19254,9,999999999,240,0.0850,0,88,0.130,999.0,99.0 +1996,2,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.4,17.3,99,102000,0,0,354,0,0,0,0,0,0,0,320,0.4,4,4,11.3,16508,9,999999999,240,0.0850,0,88,0.130,999.0,99.0 +1996,2,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.8,16.8,100,102000,0,0,354,0,0,0,0,0,0,0,330,0.3,5,5,11.3,13761,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.4,16.4,100,102000,0,0,354,0,0,0,0,0,0,0,340,0.3,6,6,11.3,11015,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.8,15.8,100,102000,0,0,355,0,0,0,0,0,0,0,340,0.2,7,7,11.3,8269,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.3,15.3,100,102000,0,0,357,0,0,0,0,0,0,0,350,0.1,8,8,11.3,5523,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.9,14.9,100,102000,0,0,363,0,0,0,0,0,0,0,350,0.1,9,9,11.3,2776,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,14.4,100,102000,0,0,370,0,0,0,0,0,0,0,0,0.0,10,10,0.1,30,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,14.4,100,102000,0,0,370,0,0,0,0,0,0,0,0,0.0,10,10,0.1,30,9,999999999,240,0.0860,0,88,0.130,0.0,6.0 +1996,2,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,16.6,100,102100,146,1384,384,17,0,17,2000,0,2000,660,0,0.0,10,10,0.2,30,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,17.2,100,102100,442,1396,388,50,0,50,6000,0,6000,2170,0,0.0,10,10,0.6,30,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.6,96,102200,704,1396,387,94,0,94,11400,0,11400,4410,20,1.0,10,10,2.4,90,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.2,97,102200,911,1396,390,130,0,130,15800,0,15800,6440,20,2.0,10,10,4.8,150,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.2,84,102100,1049,1396,392,338,139,232,37900,14900,26600,7610,60,2.0,9,9,6.4,150,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.2,73,102100,1109,1396,372,816,817,166,85000,81800,19700,5280,80,2.0,2,2,6.4,77777,9,999999999,240,0.0860,0,88,0.130,0.0,6.0 +1996,2,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,17.7,64,102000,1086,1396,390,699,556,266,75200,58000,30000,9020,10,0.5,3,3,9.7,77777,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,16.6,58,101900,982,1396,388,640,629,197,67100,63400,22400,5460,230,2.5,2,2,11.3,77777,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,15.0,49,101900,804,1396,395,528,677,138,55700,67800,16500,3170,200,1.0,3,3,11.3,77777,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,14.4,45,101800,565,1396,394,331,531,116,35400,51200,14600,2240,290,0.5,2,2,11.3,77777,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.7,71,101900,280,1396,366,132,389,54,13500,29700,7500,960,210,2.0,0,0,11.3,77777,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,17.2,81,101900,28,616,363,6,17,5,700,500,700,80,320,1.5,2,2,11.3,77777,9,999999999,240,0.0860,0,88,0.130,0.0,6.0 +1996,2,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,16.6,87,102000,0,0,343,0,0,0,0,0,0,0,310,1.0,0,0,11.3,77777,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.6,90,102000,0,0,340,0,0,0,0,0,0,0,320,1.0,0,0,11.3,77777,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,102000,0,0,337,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.4,16.1,92,102000,0,0,336,0,0,0,0,0,0,0,350,0.1,0,0,11.3,77777,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,15.8,94,102000,0,0,339,0,0,0,0,0,0,0,330,0.3,1,1,11.3,77777,9,999999999,240,0.0860,0,88,0.130,999.0,99.0 +1996,2,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,15.4,96,102000,0,0,335,0,0,0,0,0,0,0,320,0.4,1,1,11.3,77777,9,999999999,240,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.5,15.1,97,102000,0,0,332,0,0,0,0,0,0,0,300,0.5,1,1,11.3,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.9,14.6,98,101900,0,0,329,0,0,0,0,0,0,0,290,0.6,1,1,11.3,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,14.2,99,101900,0,0,331,0,0,0,0,0,0,0,270,0.8,2,2,11.3,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.9,13.9,100,101900,0,0,328,0,0,0,0,0,0,0,260,0.9,2,2,11.3,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,13.3,100,101900,0,0,325,0,0,0,0,0,0,0,240,1.0,2,2,4.8,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,8.8,77,102000,0,12,345,0,0,0,0,0,0,0,0,0.0,9,9,0.1,240,9,999999999,229,0.0870,0,88,0.130,0.0,6.0 +1996,2,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,15.5,100,102000,151,1395,337,62,312,29,6400,18100,4400,520,0,0.0,2,2,2.4,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,18.3,100,102000,447,1395,384,115,49,99,12600,4500,11200,2770,0,0.0,9,9,2.4,1200,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,18.3,87,102000,709,1395,364,436,640,110,46100,63500,13700,2390,0,0.0,2,2,6.4,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,17.7,64,102000,917,1395,374,679,915,77,71000,91000,11000,2020,270,1.0,0,0,9.7,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,16.6,56,102000,1055,1395,391,765,868,109,79300,86700,13600,2870,210,2.5,2,2,9.7,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,14.4,48,101900,1114,1395,392,769,810,122,79400,81000,14500,3420,240,2.5,3,3,11.3,77777,9,999999999,229,0.0870,0,88,0.130,0.0,6.0 +1996,2,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,16.1,53,101800,1091,1395,393,769,827,122,82600,83900,16800,4060,230,3.0,2,2,11.3,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,17.2,58,101700,987,1395,395,665,749,135,69700,75100,16400,3560,220,3.0,3,3,11.3,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,17.2,60,101700,808,1395,388,478,664,93,50700,66200,12200,2180,220,2.5,2,2,11.3,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.7,66,101700,569,1395,371,379,796,54,39900,75600,9000,1260,220,2.5,0,0,11.3,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.2,69,101700,284,1395,365,154,586,35,16000,47100,6400,720,220,2.0,0,0,11.3,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,17.2,81,101700,29,639,367,9,75,5,1000,3300,800,100,240,0.5,3,3,11.3,77777,9,999999999,229,0.0870,0,88,0.130,0.0,6.0 +1996,2,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.2,84,101800,0,0,361,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.2,90,101800,0,0,343,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,229,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,101900,0,0,338,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,240,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.9,17.1,95,101900,0,0,346,0,0,0,0,0,0,0,0,0.0,1,1,11.3,19261,9,999999999,240,0.0870,0,88,0.130,999.0,99.0 +1996,2,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.8,17.3,97,101900,0,0,350,0,0,0,0,0,0,0,0,0.0,3,2,11.3,16523,9,999999999,240,0.0870,0,88,0.130,999.0,99.0 +1996,2,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.6,17.3,98,101800,0,0,349,0,0,0,0,0,0,0,0,0.0,4,2,11.3,13784,9,999999999,240,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.7,17.5,99,101800,0,0,353,0,0,0,0,0,0,0,0,0.0,5,3,11.3,11045,9,999999999,240,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.7,17.6,99,101800,0,0,356,0,0,0,0,0,0,0,0,0.0,6,4,11.3,8306,9,999999999,240,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.7,17.7,100,101800,0,0,359,0,0,0,0,0,0,0,0,0.0,8,5,11.3,5568,9,999999999,240,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.8,17.8,100,101800,0,0,360,0,0,0,0,0,0,0,0,0.0,9,5,11.3,2829,9,999999999,240,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,17.7,100,101800,0,0,362,0,0,0,0,0,0,0,0,0.0,10,6,2.0,90,9,999999999,240,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,17.7,100,101800,0,35,350,0,0,0,0,0,0,0,0,0.0,9,2,2.4,90,9,999999999,240,0.0880,0,88,0.130,0.0,6.0 +1996,2,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.7,96,101900,156,1394,356,57,100,46,6000,5200,5400,880,0,0.0,9,3,3.2,180,9,999999999,229,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.8,90,101900,453,1394,358,241,385,115,25000,34900,13600,2190,0,0.0,9,2,8.0,180,9,999999999,229,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.3,84,101900,715,1394,371,431,542,153,46200,54600,18200,3230,180,0.5,9,3,11.3,360,9,999999999,229,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,17.7,73,101900,922,1394,363,662,821,119,69700,82200,15100,2960,180,3.6,2,0,11.3,77777,9,999999999,229,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.7,71,101800,1060,1394,366,784,849,139,82800,85500,17600,4190,180,5.1,3,0,11.3,77777,9,999999999,229,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,17.2,64,101700,1119,1394,370,808,836,136,86100,84600,18000,4710,180,1.0,2,0,11.3,77777,9,999999999,220,0.0880,0,88,0.130,0.0,6.0 +1996,2,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,17.2,60,101600,1095,1394,376,822,865,142,87000,87200,18200,4600,230,3.0,3,0,11.3,77777,9,999999999,220,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,17.7,60,101600,991,1394,380,727,846,125,76800,85100,16100,3420,230,2.5,2,0,11.3,77777,9,999999999,220,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,18.3,64,101500,812,1394,377,566,776,114,58900,76800,14000,2480,220,4.1,3,0,11.3,77777,9,999999999,220,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.3,69,101600,572,1394,372,363,682,83,38400,65500,11400,1690,220,3.0,2,0,11.3,77777,9,999999999,220,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,17.7,73,101600,288,1394,363,143,433,54,14700,33500,7800,970,240,3.6,3,0,11.3,77777,9,999999999,220,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,17.7,84,101600,31,639,352,8,41,6,1000,1500,900,100,240,1.0,2,0,11.3,77777,9,999999999,209,0.0880,0,88,0.130,0.0,6.0 +1996,2,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.7,87,101600,0,0,350,0,0,0,0,0,0,0,240,0.5,3,0,11.3,77777,9,999999999,209,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,101600,0,0,347,0,0,0,0,0,0,0,230,0.5,2,0,11.3,77777,9,999999999,209,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.7,93,101600,0,0,344,0,0,0,0,0,0,0,280,1.0,0,0,11.3,77777,9,999999999,209,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,101600,0,0,359,0,0,0,0,0,0,0,300,1.0,9,2,2.8,90,9,999999999,209,0.0880,0,88,0.130,999.0,99.0 +1996,2,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,101600,0,0,371,0,0,0,0,0,0,0,300,1.0,10,6,6.4,150,9,999999999,209,0.0880,0,88,0.130,999.0,99.0 +1996,2,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.3,93,101600,0,0,401,0,0,0,0,0,0,0,280,1.0,10,10,6.4,150,9,999999999,200,0.0890,0,88,0.130,0.0,6.0 +1996,2,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.2,18.3,95,101600,0,0,400,0,0,0,0,0,0,0,270,1.0,10,10,6.4,138,9,999999999,200,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,18.2,95,101600,0,0,399,0,0,0,0,0,0,0,250,1.0,10,10,6.4,126,9,999999999,200,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.7,18.1,96,101600,0,0,397,0,0,0,0,0,0,0,240,1.0,10,10,6.4,114,9,999999999,200,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.6,18.0,96,101600,0,0,396,0,0,0,0,0,0,0,220,1.0,10,10,6.4,102,9,999999999,200,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.7,96,101500,0,0,394,0,0,0,0,0,0,0,210,1.0,10,10,4.0,90,9,999999999,189,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,17.7,93,101500,0,58,378,0,1,0,0,0,0,0,210,1.0,9,8,3.2,210,9,999999999,189,0.0890,0,88,0.130,0.0,6.0 +1996,2,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,101600,161,1394,375,56,74,47,6000,4400,5500,980,230,1.0,9,7,3.2,150,9,999999999,200,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.7,87,101700,458,1394,384,183,150,133,19800,14100,15200,3010,190,1.0,9,8,4.0,180,9,999999999,200,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,18.3,87,101700,720,1394,381,372,283,225,39600,29500,24400,5220,210,1.5,9,7,6.4,300,9,999999999,200,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.3,79,101700,927,1394,396,522,150,422,57200,15600,46900,13210,180,3.0,9,8,8.0,300,9,999999999,209,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.3,71,101600,1065,1394,381,646,679,127,68900,68700,16300,3970,210,2.5,2,2,8.0,77777,9,999999999,209,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.3,66,101500,1124,1394,391,766,782,134,81700,79200,17700,4710,220,4.1,3,3,11.3,77777,9,999999999,209,0.0890,0,88,0.130,0.0,6.0 +1996,2,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.3,66,101400,1100,1394,387,807,936,67,84800,93900,10400,2380,230,6.1,2,2,11.3,77777,9,999999999,220,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.3,66,101400,995,1394,412,391,217,235,43200,23500,26400,6650,230,6.6,9,8,11.3,77777,9,999999999,220,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.3,69,101400,817,1394,402,301,180,195,33400,18900,22300,5200,210,4.6,9,7,11.3,77777,9,999999999,229,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.8,74,101400,576,1394,385,361,714,66,38100,68400,9700,1400,210,4.6,3,3,11.3,77777,9,999999999,229,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,18.8,84,101400,291,1394,388,155,295,93,16100,22600,11400,1860,230,4.6,9,7,11.3,77777,9,999999999,229,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,18.3,87,101500,32,662,387,12,13,11,1300,500,1300,230,250,1.5,9,8,11.3,77777,9,999999999,240,0.0890,0,88,0.130,0.0,6.0 +1996,2,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.2,87,101500,0,0,374,0,0,0,0,0,0,0,260,1.0,9,7,11.3,77777,9,999999999,329,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,101600,0,0,362,0,0,0,0,0,0,0,240,1.0,3,3,11.3,77777,9,999999999,329,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.0,100,101600,0,0,355,0,0,0,0,0,0,0,0,1.4,2,2,9.7,77777,9,999999999,329,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.3,96,101600,0,0,355,0,0,0,0,0,0,0,0,1.8,3,3,8.0,77777,9,999999999,340,0.0890,0,88,0.130,999.0,99.0 +1996,2,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.7,15.6,98,101600,0,0,354,0,0,0,0,0,0,0,20,2.2,4,4,8.0,18338,9,999999999,340,0.0890,0,88,0.130,999.0,99.0 +1996,3,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.2,14.9,84,101400,0,0,385,0,0,0,0,0,0,0,40,2.5,10,10,8.0,506,9,999999999,340,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.6,14.2,84,101400,0,0,381,0,0,0,0,0,0,0,50,2.9,10,10,8.0,465,9,999999999,350,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.1,13.5,84,101300,0,0,377,0,0,0,0,0,0,0,50,3.3,10,10,8.0,424,9,999999999,350,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.5,12.8,84,101300,0,0,373,0,0,0,0,0,0,0,50,3.7,10,10,8.0,383,9,999999999,350,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.6,12.9,84,101300,0,0,374,0,0,0,0,0,0,0,50,3.7,10,10,8.0,341,9,999999999,359,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,12.7,83,101200,0,0,373,0,0,0,0,0,0,0,50,3.6,10,10,11.3,300,9,999999999,359,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.6,13.3,86,101200,1,104,374,0,0,0,0,0,0,0,40,4.1,10,10,9.6,300,9,999999999,359,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,12.7,93,101200,172,1392,365,20,0,20,2400,0,2400,770,360,3.6,10,10,4.8,240,9,999999999,359,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.6,12.6,94,101300,469,1392,363,73,0,73,8600,0,8600,3070,20,4.1,10,10,3.2,300,9,999999999,370,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,12.2,93,101300,731,1392,361,105,0,105,12600,0,12600,4930,20,3.6,10,10,4.8,180,9,999999999,370,0.0900,0,88,0.120,2.0,6.0 +1996,3,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,12.2,90,101300,938,1392,364,140,0,140,17000,0,17000,6940,20,3.6,10,10,9.7,150,9,999999999,370,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,12.7,90,101200,1075,1392,368,163,0,163,20000,0,20000,8280,30,5.1,10,10,9.7,180,9,999999999,370,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,12.7,83,101100,1134,1392,373,173,0,173,21300,0,21300,8820,40,4.1,10,10,2.8,150,9,999999999,370,0.0900,0,88,0.120,3.0,6.0 +1996,3,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,13.3,81,101000,1109,1392,380,202,0,202,24500,0,24500,10010,50,4.1,10,10,6.4,210,9,999999999,370,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,13.8,84,100900,1004,1392,380,181,0,181,21800,0,21800,8840,30,2.5,10,10,4.8,300,9,999999999,370,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,13.8,84,100800,824,1392,380,145,0,145,17300,0,17300,6790,30,3.6,10,10,4.8,300,9,999999999,370,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.8,80,100800,584,1392,383,96,0,96,11300,0,11300,4180,30,4.6,10,10,4.0,390,9,999999999,370,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,14.4,84,100800,298,1392,384,49,0,49,5700,0,5700,1890,20,2.0,10,10,4.8,2400,9,999999999,370,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,14.4,93,100900,35,685,375,4,0,4,500,0,500,160,360,2.0,10,10,4.8,390,9,999999999,370,0.0900,0,88,0.120,1.0,6.0 +1996,3,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,13.8,96,100900,0,0,369,0,0,0,0,0,0,0,10,2.5,10,10,6.4,1500,9,999999999,370,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,13.3,93,101100,0,0,368,0,0,0,0,0,0,0,360,3.0,10,10,8.0,1500,9,999999999,370,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,101100,0,0,368,0,0,0,0,0,0,0,50,2.0,10,10,3.2,900,9,999999999,370,0.0900,0,88,0.120,3.0,6.0 +1996,3,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.7,13.7,94,101100,0,0,370,0,0,0,0,0,0,0,60,2.1,10,10,3.2,825,9,999999999,379,0.0900,0,88,0.120,999.0,99.0 +1996,3,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.7,13.9,95,101100,0,0,371,0,0,0,0,0,0,0,60,2.3,10,10,3.2,750,9,999999999,379,0.0900,0,88,0.120,999.0,99.0 +1996,3,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.8,14.0,95,101100,0,0,371,0,0,0,0,0,0,0,70,2.4,10,10,3.2,675,9,999999999,379,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.8,13.9,94,101100,0,0,371,0,0,0,0,0,0,0,70,2.5,10,10,3.2,600,9,999999999,379,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,14.1,94,101100,0,0,372,0,0,0,0,0,0,0,80,2.6,10,10,3.2,525,9,999999999,379,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,14.2,95,101100,0,0,372,0,0,0,0,0,0,0,80,2.8,10,10,3.2,450,9,999999999,379,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.2,14.2,94,101100,0,0,373,0,0,0,0,0,0,0,90,2.9,10,10,3.2,375,9,999999999,379,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.8,93,101100,0,0,372,0,0,0,0,0,0,0,90,3.0,10,10,8.0,300,9,999999999,379,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.9,93,101100,1,128,372,0,0,0,0,0,0,0,90,1.0,10,10,8.0,300,9,999999999,379,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,13.8,96,101300,177,1392,369,23,0,23,2700,0,2700,880,120,1.0,10,10,11.3,300,9,999999999,370,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.8,93,101300,474,1392,372,93,0,93,10700,0,10700,3740,0,0.0,10,10,8.0,1500,9,999999999,359,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,14.4,93,101500,736,1392,375,130,0,130,15400,0,15400,5910,360,1.0,10,10,11.3,300,9,999999999,350,0.0910,0,88,0.120,0.0,6.0 +1996,3,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.8,93,101500,943,1392,372,171,0,171,20500,0,20500,8230,360,2.0,10,10,11.3,300,9,999999999,340,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,13.3,87,101400,1080,1392,374,198,0,198,24000,0,24000,9770,360,3.0,10,10,11.3,300,9,999999999,329,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,12.2,81,101400,1138,1392,373,210,0,210,25500,0,25500,10400,360,2.5,10,10,11.3,300,9,999999999,320,0.0910,0,88,0.120,0.0,6.0 +1996,3,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,12.2,75,101300,1114,1392,360,588,260,380,63700,28100,41100,13640,360,4.1,9,8,11.3,600,9,999999999,309,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,11.6,70,101300,1008,1392,341,689,717,169,73300,73000,20200,5010,360,1.0,2,2,11.3,77777,9,999999999,300,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,10.5,54,101300,828,1392,356,582,695,168,60600,69200,19300,3860,330,2.5,3,3,11.3,77777,9,999999999,300,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,11.6,65,101400,587,1392,346,353,579,108,36600,55300,13200,2130,330,6.1,2,2,11.3,77777,9,999999999,290,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,10.0,67,101500,301,1392,337,87,250,32,9200,20200,4800,630,320,5.1,3,3,11.3,77777,9,999999999,279,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.0,75,101500,37,707,341,7,15,6,800,500,800,90,280,4.1,9,7,11.3,77777,9,999999999,270,0.0910,0,88,0.120,0.0,6.0 +1996,3,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,10.0,84,101500,0,0,339,0,0,0,0,0,0,0,260,2.0,9,8,11.3,77777,9,999999999,259,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,8.8,80,101700,0,0,315,0,0,0,0,0,0,0,320,1.5,2,2,11.3,77777,9,999999999,250,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,8.3,80,101700,0,0,315,0,0,0,0,0,0,0,320,2.0,3,3,11.3,77777,9,999999999,240,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.7,8.2,79,101700,0,0,315,0,0,0,0,0,0,0,330,2.3,3,3,11.3,77777,9,999999999,229,0.0910,0,88,0.120,999.0,99.0 +1996,3,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.5,7.8,78,101800,0,0,314,0,0,0,0,0,0,0,330,2.5,3,3,11.3,77777,9,999999999,220,0.0910,0,88,0.120,999.0,99.0 +1996,3,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.4,7.3,76,101900,0,0,313,0,0,0,0,0,0,0,340,2.8,3,3,11.3,77777,9,999999999,209,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.2,6.7,74,101900,0,0,311,0,0,0,0,0,0,0,340,3.1,3,3,11.3,77777,9,999999999,200,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.2,6.4,72,102000,0,0,308,0,0,0,0,0,0,0,350,3.3,2,2,11.3,77777,9,999999999,189,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.0,5.9,71,102000,0,0,307,0,0,0,0,0,0,0,350,3.6,2,2,11.3,77777,9,999999999,179,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.0,5.4,68,102100,0,0,306,0,0,0,0,0,0,0,360,3.8,2,2,11.3,77777,9,999999999,170,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,4.4,65,102200,0,0,303,0,0,0,0,0,0,0,360,4.1,2,2,11.2,77777,9,999999999,160,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.5,3.3,61,102200,2,151,305,0,3,0,0,0,0,0,360,3.0,3,3,11.3,77777,9,999999999,150,0.0920,0,88,0.120,0.0,24.0 +1996,3,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,1.6,48,102300,182,1391,307,73,241,41,7600,14500,5700,730,360,4.1,2,2,11.3,77777,9,999999999,150,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,1.6,42,102400,480,1391,320,211,349,90,22600,32300,11500,1670,360,6.1,3,3,11.3,77777,9,999999999,150,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,-2.3,25,102500,742,1391,327,497,742,101,51700,72900,12700,2130,360,5.1,2,2,11.3,77777,9,999999999,150,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,-2.3,22,102500,948,1391,338,652,633,221,67700,63200,24500,5720,360,6.6,3,3,11.3,77777,9,999999999,150,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,-1.7,24,102500,1085,1391,333,768,793,149,80700,79800,18300,4670,10,8.2,2,2,11.3,77777,9,999999999,150,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,0.0,24,102400,1143,1391,351,827,772,192,88500,79000,23400,7440,40,6.1,3,3,11.3,77777,9,999999999,139,0.0920,0,88,0.120,0.0,6.0 +1996,3,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,-1.2,21,102300,1118,1391,349,785,835,113,81200,83500,13800,3380,20,5.1,2,2,11.3,77777,9,999999999,139,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,0.5,22,102300,1012,1391,360,698,704,186,73900,71400,21700,5490,30,5.1,3,3,11.3,77777,9,999999999,139,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,-0.6,21,102300,832,1391,352,525,664,127,55800,67100,15600,3050,60,6.6,2,2,11.3,77777,9,999999999,139,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,0.5,24,102300,591,1391,355,367,480,163,38100,46600,18300,3300,60,5.6,3,3,11.3,77777,9,999999999,139,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,0.0,24,102300,305,1391,346,151,381,68,15900,29800,9300,1240,60,4.6,2,2,11.3,77777,9,999999999,139,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,1.1,30,102400,38,707,340,8,22,7,1000,700,900,110,80,3.0,3,3,11.3,77777,9,999999999,129,0.0920,0,88,0.120,0.0,6.0 +1996,3,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,1.6,34,102500,0,0,332,0,0,0,0,0,0,0,80,4.1,2,2,11.3,77777,9,999999999,129,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,3.3,41,102600,0,0,318,0,0,0,0,0,0,0,80,4.6,0,0,11.3,77777,9,999999999,129,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,2.2,39,102600,0,0,315,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,129,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.1,3.1,42,102600,0,0,316,0,0,0,0,0,0,0,60,4.4,0,0,11.3,77777,9,999999999,129,0.0920,0,88,0.120,999.0,99.0 +1996,3,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.9,3.7,44,102700,0,0,316,0,0,0,0,0,0,0,50,4.2,0,0,11.3,77777,9,999999999,129,0.0920,0,88,0.120,999.0,99.0 +1996,3,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.6,4.1,46,102700,0,0,315,0,0,0,0,0,0,0,50,4.0,0,0,11.3,77777,9,999999999,129,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.3,4.5,48,102700,0,0,314,0,0,0,0,0,0,0,50,3.8,0,0,11.3,77777,9,999999999,120,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.2,5.2,51,102700,0,0,314,0,0,0,0,0,0,0,40,3.6,0,0,11.3,77777,9,999999999,120,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,5.6,53,102700,0,0,314,0,0,0,0,0,0,0,40,3.4,0,0,11.3,77777,9,999999999,120,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.9,6.1,56,102700,0,0,314,0,0,0,0,0,0,0,30,3.2,0,0,11.3,77777,9,999999999,120,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,6.1,57,102700,0,0,312,0,0,0,0,0,0,0,30,3.0,0,0,11.3,77777,9,999999999,120,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,5.5,55,102800,2,174,321,0,5,0,0,0,0,0,30,3.6,2,2,11.3,77777,9,999999999,120,0.0930,0,88,0.120,0.0,6.0 +1996,3,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,6.1,53,102800,188,1390,330,81,200,53,8400,11800,6800,1010,30,4.1,3,3,11.3,77777,9,999999999,120,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,7.2,48,102900,485,1390,330,304,693,62,31600,64100,9200,1240,50,5.1,0,0,11.3,77777,9,999999999,120,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,8.8,44,102900,747,1390,347,530,827,86,56200,82000,12100,1950,50,6.1,0,0,11.3,77777,9,999999999,120,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,8.8,40,102800,953,1390,355,715,893,102,74200,88900,13100,2360,60,7.7,0,0,11.3,77777,9,999999999,129,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,7.7,34,102800,1090,1390,375,698,650,189,74500,66300,22300,6490,60,8.7,3,3,11.3,77777,9,999999999,129,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,5.5,28,102700,1148,1390,374,849,819,172,88600,82100,20500,6070,70,9.2,2,2,11.3,77777,9,999999999,129,0.0930,0,88,0.120,0.0,6.0 +1996,3,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,6.1,29,102600,1123,1390,378,768,712,192,81900,72800,23000,7080,70,6.6,3,3,11.3,77777,9,999999999,139,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,6.1,29,102500,1016,1390,375,710,775,143,74300,77700,17300,3930,50,7.7,2,2,11.3,77777,9,999999999,139,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,6.1,29,102500,836,1390,378,473,515,163,51500,53000,19600,3790,80,7.2,3,3,11.3,77777,9,999999999,139,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,7.2,33,102500,594,1390,370,368,638,95,38600,61500,12300,1920,80,6.1,2,2,11.3,77777,9,999999999,139,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,7.2,35,102600,308,1390,369,142,342,66,14900,26900,9000,1190,70,6.1,3,3,11.3,77777,9,999999999,150,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,7.7,41,102600,40,730,357,11,65,8,1400,2500,1200,130,70,5.6,2,2,11.3,77777,9,999999999,150,0.0930,0,88,0.120,0.0,6.0 +1996,3,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,9.4,49,102700,0,0,343,0,0,0,0,0,0,0,60,4.6,0,0,11.3,77777,9,999999999,150,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,10.0,54,102700,0,0,349,0,0,0,0,0,0,0,60,4.1,2,2,11.3,77777,9,999999999,150,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,10.5,60,102700,0,0,334,0,0,0,0,0,0,0,70,3.0,0,0,11.3,77777,9,999999999,160,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.2,11.1,63,102700,0,0,334,0,0,0,0,0,0,0,70,3.1,0,0,11.3,77777,9,999999999,160,0.0930,0,88,0.120,999.0,99.0 +1996,3,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.8,11.4,66,102600,0,0,332,0,0,0,0,0,0,0,70,3.3,0,0,11.3,77777,9,999999999,160,0.0930,0,88,0.120,999.0,99.0 +1996,3,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.4,11.6,69,102600,0,0,331,0,0,0,0,0,0,0,70,3.4,0,0,11.3,77777,9,999999999,160,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,11.7,71,102500,0,0,329,0,0,0,0,0,0,0,70,3.6,0,0,11.3,77777,9,999999999,170,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,12.1,74,102500,0,0,328,0,0,0,0,0,0,0,60,3.7,0,0,11.3,77777,9,999999999,170,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.4,12.3,77,102500,0,0,327,0,0,0,0,0,0,0,60,3.8,0,0,11.3,77777,9,999999999,170,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.1,12.5,79,102400,0,0,326,0,0,0,0,0,0,0,60,4.0,0,0,11.3,77777,9,999999999,170,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,12.2,81,102400,0,0,323,0,0,0,0,0,0,0,60,4.1,0,0,9.7,77777,9,999999999,179,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,11.6,78,102400,3,197,336,0,0,0,0,0,0,0,70,4.1,3,3,11.3,77777,9,999999999,179,0.0940,0,88,0.120,0.0,6.0 +1996,3,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,11.6,70,102400,193,1389,341,67,144,47,7100,8700,5900,870,90,4.6,2,2,11.3,77777,9,999999999,179,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,12.2,59,102400,491,1389,361,257,370,126,26800,34400,14600,2430,90,6.1,3,3,11.3,77777,9,999999999,179,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,12.7,51,102400,752,1389,372,356,416,130,39000,42300,16100,2780,100,7.2,2,2,11.3,77777,9,999999999,189,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,12.7,46,102400,959,1389,384,655,664,197,68600,66800,22400,5290,110,6.6,3,3,11.3,77777,9,999999999,189,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,13.8,45,102300,1095,1389,390,781,724,210,82600,73500,24500,7220,110,6.1,2,2,11.3,77777,9,999999999,189,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.7,12.7,40,102200,1152,1389,398,827,741,212,88000,75500,25100,8360,130,5.1,3,3,11.3,77777,9,999999999,189,0.0940,0,88,0.120,0.0,6.0 +1996,3,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,12.7,40,102100,1127,1389,394,829,768,205,88100,78300,24400,7610,130,3.6,2,2,11.3,77777,9,999999999,200,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,13.8,44,102000,1020,1389,397,651,579,225,67900,58200,25000,6590,200,2.5,3,3,11.3,77777,9,999999999,200,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,15.0,50,101900,840,1389,389,469,476,181,50600,48900,20900,4260,210,3.6,2,2,11.3,77777,9,999999999,200,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,15.0,50,101900,598,1389,393,323,434,136,34200,42300,16000,2700,210,3.0,3,3,11.3,77777,9,999999999,200,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,15.0,58,101900,311,1389,377,126,275,65,13400,21800,8500,1170,210,2.0,2,2,11.3,77777,9,999999999,209,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,16.1,73,102000,41,729,368,9,11,9,1100,500,1100,190,210,2.0,3,3,11.3,77777,9,999999999,209,0.0940,0,88,0.120,0.0,6.0 +1996,3,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,16.1,76,102000,0,0,362,0,0,0,0,0,0,0,200,0.5,2,2,11.3,77777,9,999999999,209,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.6,84,102000,0,0,361,0,0,0,0,0,0,0,0,0.0,3,3,11.3,77777,9,999999999,220,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.6,81,102000,0,0,360,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,220,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.1,17.1,83,102000,0,0,361,0,0,0,0,0,0,0,20,0.5,2,2,11.3,77777,9,999999999,220,0.0940,0,88,0.120,999.0,99.0 +1996,3,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.9,17.4,86,101900,0,0,360,0,0,0,0,0,0,0,40,1.0,2,2,11.3,77777,9,999999999,220,0.0940,0,88,0.120,999.0,99.0 +1996,3,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.7,17.5,87,101900,0,0,355,0,0,0,0,0,0,0,50,1.5,1,1,11.3,77777,9,999999999,229,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.5,17.5,88,101800,0,0,354,0,0,0,0,0,0,0,70,2.1,1,1,11.3,77777,9,999999999,229,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.4,17.8,90,101800,0,0,354,0,0,0,0,0,0,0,90,2.6,1,1,11.3,77777,9,999999999,229,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.3,17.9,92,101700,0,0,353,0,0,0,0,0,0,0,110,3.1,1,1,11.3,77777,9,999999999,229,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.2,18.0,93,101700,0,0,346,0,0,0,0,0,0,0,120,3.6,0,0,11.3,77777,9,999999999,240,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.7,93,101600,0,0,344,0,0,0,0,0,0,0,140,4.1,0,0,11.3,77777,9,999999999,240,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,17.7,93,101600,4,220,344,0,10,0,0,0,0,0,140,6.1,0,0,11.3,77777,9,999999999,240,0.0950,0,88,0.120,0.0,6.0 +1996,3,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.2,84,101600,199,1389,349,89,376,35,9100,25000,5500,630,150,5.1,0,0,11.3,77777,9,999999999,240,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,18.8,90,101700,497,1389,360,287,622,64,30400,58300,9500,1280,160,5.1,2,1,11.3,77777,9,999999999,240,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,19.4,74,101600,758,1389,380,484,717,92,51000,71000,12100,2060,160,4.6,3,1,11.3,77777,9,999999999,240,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,19.4,69,101700,964,1389,386,672,824,100,69800,82100,12700,2390,180,4.1,2,1,11.3,77777,9,999999999,240,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,19.4,67,101700,1100,1389,389,612,616,123,65700,62500,16000,4210,200,5.1,3,1,11.3,77777,9,999999999,240,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,19.4,62,101600,1157,1389,395,826,855,113,85400,85600,13800,3750,200,6.1,2,1,11.3,77777,9,999999999,240,0.0950,0,88,0.120,0.0,6.0 +1996,3,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,19.4,65,101500,1131,1389,392,783,815,119,80900,81500,14300,3590,200,6.6,3,1,11.3,77777,9,999999999,240,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.8,64,101500,1024,1389,388,706,816,104,73300,81500,13000,2690,200,6.1,2,1,11.3,77777,9,999999999,250,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,19.4,67,101400,843,1389,389,551,745,99,58500,74500,13100,2380,190,7.2,3,1,11.3,77777,9,999999999,250,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.4,71,101400,601,1389,383,367,665,79,39100,64800,11000,1650,190,6.1,2,1,11.3,77777,9,999999999,250,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,19.4,76,101400,315,1389,377,134,377,48,13900,30500,7000,900,210,5.1,3,1,11.3,77777,9,999999999,250,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,101400,43,752,369,12,70,8,1300,3300,1100,160,190,4.1,2,1,11.3,77777,9,999999999,250,0.0950,0,88,0.120,0.0,6.0 +1996,3,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,101500,0,0,357,0,0,0,0,0,0,0,180,2.0,0,0,11.3,77777,9,999999999,250,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,19.4,93,101500,0,0,354,0,0,0,0,0,0,0,190,1.5,0,0,11.3,77777,9,999999999,250,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,101500,0,0,357,0,0,0,0,0,0,0,160,2.0,0,0,11.3,77777,9,999999999,250,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,19.8,91,101400,0,0,365,0,0,0,0,0,0,0,160,2.3,1,1,11.3,77777,9,999999999,250,0.0950,0,88,0.120,999.0,99.0 +1996,3,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,20.0,92,101400,0,0,370,0,0,0,0,0,0,0,160,2.5,2,2,11.3,77777,9,999999999,250,0.0950,0,88,0.120,999.0,99.0 +1996,3,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.2,20.1,93,101400,0,0,374,0,0,0,0,0,0,0,160,2.8,3,3,11.3,77777,9,999999999,250,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.2,20.1,93,101300,0,0,379,0,0,0,0,0,0,0,160,3.1,5,5,11.3,77777,9,999999999,250,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,20.3,94,101300,0,0,383,0,0,0,0,0,0,0,150,3.3,6,6,11.3,77777,9,999999999,250,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,20.3,94,101300,0,0,388,0,0,0,0,0,0,0,150,3.6,7,7,11.3,77777,9,999999999,250,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.4,20.4,94,101200,0,0,395,0,0,0,0,0,0,0,150,3.8,8,8,11.3,77777,9,999999999,250,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.0,93,101200,0,0,401,0,0,0,0,0,0,0,150,4.1,9,9,11.3,77777,9,999999999,250,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.5,96,101200,5,243,402,0,0,0,0,0,0,0,150,2.5,9,9,11.3,90,9,999999999,250,0.0960,0,88,0.120,0.0,6.0 +1996,3,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.8,87,101300,204,1388,400,46,22,42,5000,1600,4700,1060,160,2.5,9,9,11.3,77777,9,999999999,250,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,101300,502,1388,385,282,481,108,30000,45100,13600,2050,150,2.0,3,3,11.3,77777,9,999999999,259,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,21.1,77,101300,763,1388,393,503,652,144,52500,64700,16900,3170,170,6.1,2,2,11.3,77777,9,999999999,259,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101300,969,1388,400,619,601,199,64800,60500,22400,5430,200,5.6,3,3,11.3,77777,9,999999999,259,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,21.1,77,101200,1105,1388,393,798,759,194,85100,77400,23200,6890,210,6.1,2,2,11.3,77777,9,999999999,259,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,21.1,77,101200,1162,1388,397,615,414,269,66900,43300,30600,11010,210,6.1,3,3,11.3,77777,9,999999999,259,0.0960,0,88,0.120,0.0,6.0 +1996,3,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,21.1,77,101100,1135,1388,427,503,179,357,55600,19100,39900,13360,200,6.6,9,9,11.3,77777,9,999999999,270,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,101100,1028,1388,433,268,0,268,31500,0,31500,12170,200,7.2,10,10,11.3,77777,9,999999999,270,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.1,85,101000,847,1388,429,211,0,211,24500,0,24500,9250,200,8.2,10,10,11.3,77777,9,999999999,270,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.5,82,101000,605,1388,417,261,188,178,28400,18800,20100,4260,200,7.2,9,9,11.3,77777,9,999999999,270,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.5,87,101000,318,1388,411,73,35,65,8000,2900,7300,1740,190,6.1,9,9,11.3,77777,9,999999999,270,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,20.5,87,101000,45,775,422,7,0,7,900,0,900,270,180,6.1,10,10,11.3,2400,9,999999999,279,0.0960,0,88,0.120,0.0,6.0 +1996,3,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101000,0,0,423,0,0,0,0,0,0,0,190,5.6,10,10,11.3,1800,9,999999999,279,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,101200,0,0,400,0,0,0,0,0,0,0,290,6.1,10,10,11.3,1500,9,999999999,279,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.0,87,101300,0,0,385,0,0,0,0,0,0,0,330,8.2,10,10,11.3,300,9,999999999,279,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,14.4,86,101300,0,0,371,0,0,0,0,0,0,0,330,7.9,10,9,11.3,319,9,999999999,279,0.0960,0,88,0.120,999.0,99.0 +1996,3,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.9,13.5,86,101400,0,0,366,0,0,0,0,0,0,0,330,7.7,10,9,11.3,338,9,999999999,290,0.0960,0,88,0.120,999.0,99.0 +1996,3,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,12.5,85,101400,0,0,353,0,0,0,0,0,0,0,330,7.4,10,8,11.3,356,9,999999999,290,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.2,11.5,84,101500,0,0,342,0,0,0,0,0,0,0,340,7.2,10,7,11.3,375,9,999999999,290,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.6,10.7,83,101600,0,0,334,0,0,0,0,0,0,0,340,6.9,9,6,11.3,394,9,999999999,290,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,9.6,81,101600,0,0,330,0,0,0,0,0,0,0,340,6.6,9,6,11.3,413,9,999999999,290,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.2,8.6,79,101700,0,0,323,0,0,0,0,0,0,0,340,6.4,9,5,11.3,431,9,999999999,300,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,7.2,77,101700,0,0,314,0,0,0,0,0,0,0,340,6.1,9,4,11.3,450,9,999999999,300,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.5,6.6,77,101800,5,266,311,0,3,0,0,0,0,0,340,6.1,9,4,11.3,480,9,999999999,300,0.0970,0,88,0.120,3.0,24.0 +1996,3,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,6.1,74,101900,210,1387,310,83,149,61,8700,9500,7300,1170,350,3.6,9,4,11.3,3000,9,999999999,290,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.4,68,102000,508,1387,297,300,676,52,31900,63700,8500,1140,350,5.1,2,1,11.3,77777,9,999999999,279,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,4.4,63,102100,769,1387,301,481,688,100,51700,69400,13100,2320,340,5.6,3,1,11.3,77777,9,999999999,270,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,3.8,59,102100,974,1387,303,674,844,81,70500,84200,11100,2230,340,6.1,2,1,11.3,77777,9,999999999,259,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,2.7,51,102100,1110,1387,307,784,860,96,81500,86100,12400,3080,330,6.1,3,1,11.3,77777,9,999999999,250,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,2.7,51,102100,1166,1387,307,859,912,91,89300,91500,12200,3390,330,6.1,2,1,11.3,77777,9,999999999,240,0.0970,0,88,0.120,0.0,6.0 +1996,3,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,2.2,47,102100,1140,1387,309,826,887,97,85900,88900,12600,3310,340,6.1,3,1,11.3,77777,9,999999999,229,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,1.6,45,102100,1032,1387,318,681,662,188,72100,67300,21900,5780,340,5.6,9,4,11.3,77777,9,999999999,220,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,0.0,42,102100,851,1387,313,508,490,207,54100,50300,23200,4980,340,6.1,9,4,11.3,77777,9,999999999,209,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-1.7,37,102100,608,1387,309,284,339,135,30200,33200,15600,2690,340,6.1,9,4,11.3,77777,9,999999999,200,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,-1.7,40,102200,321,1387,295,174,572,41,17900,47700,6900,820,340,6.1,3,1,11.3,77777,9,999999999,189,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,102300,46,774,292,14,88,9,1600,4200,1300,180,350,5.1,2,1,11.3,77777,9,999999999,179,0.0970,0,88,0.120,0.0,6.0 +1996,3,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,0.5,54,102400,0,0,290,0,0,0,0,0,0,0,350,5.1,3,1,11.3,77777,9,999999999,170,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,0.5,56,102500,0,0,288,0,0,0,0,0,0,0,360,4.6,2,1,11.3,77777,9,999999999,160,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,-5.6,36,102600,0,0,272,0,0,0,0,0,0,0,360,2.0,0,0,11.3,77777,9,999999999,160,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-6.2,38,102600,0,0,265,0,0,0,0,0,0,0,360,2.2,0,0,11.3,77777,9,999999999,150,0.0970,0,88,0.120,999.0,99.0 +1996,3,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.4,-6.2,40,102700,0,0,263,0,0,0,0,0,0,0,360,2.4,0,0,11.3,77777,9,999999999,139,0.0970,0,88,0.120,999.0,99.0 +1996,3,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.6,-6.3,42,102700,0,0,265,0,0,0,0,0,0,0,360,2.6,1,1,11.3,77777,9,999999999,129,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.9,-6.5,44,102700,0,0,262,0,0,0,0,0,0,0,10,2.8,1,1,11.3,77777,9,999999999,120,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,3.3,-6.5,46,102700,0,0,259,0,0,0,0,0,0,0,10,3.0,1,1,11.3,77777,9,999999999,110,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.7,-6.6,47,102800,0,0,257,0,0,0,0,0,0,0,10,3.2,1,1,11.3,77777,9,999999999,100,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,2.1,-6.7,49,102800,0,0,258,0,0,0,0,0,0,0,10,3.4,2,2,11.3,77777,9,999999999,89,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-7.3,50,102800,0,0,254,0,0,0,0,0,0,0,10,3.6,2,2,11.3,77777,9,999999999,80,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.1,-8.3,46,102900,7,289,269,1,0,1,0,0,0,0,10,4.1,9,8,11.2,77777,9,999999999,69,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.6,-8.4,44,102900,216,1386,267,78,73,67,8400,5000,7700,1420,20,3.6,9,7,11.3,77777,9,999999999,69,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.8,-7.3,41,103000,513,1386,267,327,633,92,33900,58900,12000,1770,10,5.6,3,3,11.3,77777,9,999999999,69,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,-6.2,38,103000,774,1386,287,287,170,192,31800,17800,21900,5000,20,4.6,9,7,11.3,77777,9,999999999,69,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-5.6,35,103000,979,1386,301,589,162,474,64600,16900,52600,15270,20,5.1,9,8,11.3,77777,9,999999999,80,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,-5.0,33,102900,1115,1386,305,659,232,472,71300,24500,51500,17120,10,4.1,9,7,11.3,77777,9,999999999,80,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.6,-3.9,32,102800,1171,1386,318,660,349,365,72300,37900,40200,14680,50,4.6,9,8,11.3,77777,9,999999999,80,0.0980,0,88,0.120,0.0,6.0 +1996,3,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,-4.5,30,102800,1144,1386,315,677,409,339,71700,42600,36400,13480,10,4.1,9,7,11.3,77777,9,999999999,80,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,-5.0,27,102800,1036,1386,321,548,292,330,59500,31500,35900,10380,330,3.0,9,8,11.3,7500,9,999999999,80,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-5.0,26,102700,854,1386,319,450,375,218,47700,38500,23900,5290,350,4.1,9,7,11.3,7500,9,999999999,89,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-5.0,26,102700,611,1386,324,319,271,199,33700,27400,21600,4410,350,2.0,9,8,11.3,7500,9,999999999,89,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,-2.3,37,102800,324,1386,315,98,51,86,10700,4400,9700,2190,350,4.1,9,7,11.3,7500,9,999999999,89,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.8,-2.3,45,102800,48,797,292,10,14,10,1300,600,1200,210,350,3.0,3,3,11.3,77777,9,999999999,89,0.0980,0,88,0.120,0.0,6.0 +1996,3,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-3.4,42,102900,0,0,286,0,0,0,0,0,0,0,360,2.0,2,2,11.3,77777,9,999999999,89,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,-2.8,46,102900,0,0,287,0,0,0,0,0,0,0,360,2.0,3,3,11.3,77777,9,999999999,100,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,-2.8,50,102900,0,0,279,0,0,0,0,0,0,0,20,5.1,2,2,11.3,77777,9,999999999,100,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-2.2,52,102900,0,0,283,0,0,0,0,0,0,0,20,4.8,3,3,11.3,19344,9,999999999,100,0.0980,0,88,0.120,999.0,99.0 +1996,3,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.5,-1.9,54,102800,0,0,285,0,0,0,0,0,0,0,20,4.6,4,4,11.3,16688,9,999999999,100,0.0980,0,88,0.120,999.0,99.0 +1996,3,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.3,-1.7,56,102800,0,0,284,0,0,0,0,0,0,0,20,4.3,5,4,11.3,14031,9,999999999,100,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,-1.6,57,102800,0,0,286,0,0,0,0,0,0,0,20,4.1,6,5,11.3,11375,9,999999999,100,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,-1.3,58,102800,0,0,289,0,0,0,0,0,0,0,20,3.8,6,6,11.3,8719,9,999999999,110,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.0,-1.1,60,102800,0,0,292,0,0,0,0,0,0,0,20,3.5,7,7,11.3,6063,9,999999999,110,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.9,-0.9,61,102800,0,0,292,0,0,0,0,0,0,0,20,3.3,8,7,11.3,3406,9,999999999,110,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,-1.2,61,102800,0,0,294,0,0,0,0,0,0,0,20,3.0,9,8,11.3,750,9,999999999,110,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.6,0.5,65,102800,8,335,316,0,0,0,0,0,0,0,20,5.1,10,10,11.3,750,9,999999999,110,0.0990,0,88,0.120,0.0,6.0 +1996,3,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,1.1,65,102800,221,1386,304,41,30,36,4500,2200,4100,950,10,2.0,9,8,11.3,1800,9,999999999,120,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,2.2,65,102800,519,1386,305,199,67,173,21700,6400,19300,4610,10,5.1,9,7,11.3,2100,9,999999999,120,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,3.8,63,102800,780,1386,338,158,0,158,18600,0,18600,7110,10,5.1,10,10,11.3,2100,9,999999999,129,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,5.5,59,102800,984,1386,353,209,0,209,24900,0,24900,9880,20,5.1,10,10,11.3,2100,9,999999999,129,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,7.2,58,102700,1119,1386,349,498,181,352,55000,19300,39400,12870,20,5.1,9,8,11.3,77777,9,999999999,129,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,7.7,57,102600,1175,1386,370,255,0,255,30700,0,30700,12250,20,5.6,10,10,11.3,750,9,999999999,139,0.0990,0,88,0.120,0.0,6.0 +1996,3,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,8.3,62,102500,1148,1386,368,248,0,248,29800,0,29800,11930,20,4.6,10,10,11.3,870,9,999999999,139,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.3,64,102500,1040,1386,365,222,0,222,26500,0,26500,10600,10,5.6,10,10,11.3,900,9,999999999,139,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.3,64,102400,858,1386,365,178,0,178,21000,0,21000,8180,20,6.1,10,10,11.3,1200,9,999999999,150,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,8.3,69,102500,614,1386,359,118,0,118,13800,0,13800,5060,10,4.1,10,10,11.3,900,9,999999999,150,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,8.3,72,102500,327,1386,357,51,0,51,5900,0,5900,2020,20,4.6,10,10,11.3,870,9,999999999,150,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,7.2,71,102500,50,797,350,7,0,7,900,0,900,280,20,7.7,10,10,11.3,660,9,999999999,160,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,6.1,71,102500,0,0,343,0,0,0,0,0,0,0,10,6.6,10,10,11.3,660,9,999999999,160,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,6.1,74,102500,0,0,340,0,0,0,0,0,0,0,10,6.1,10,10,11.3,660,9,999999999,170,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,6.1,74,102500,0,0,340,0,0,0,0,0,0,0,360,3.6,10,10,11.3,660,9,999999999,170,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.2,6.2,76,102500,0,0,339,0,0,0,0,0,0,0,360,3.7,10,10,11.3,615,9,999999999,170,0.0990,0,88,0.120,999.0,99.0 +1996,3,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.7,6.0,78,102400,0,0,337,0,0,0,0,0,0,0,360,3.7,10,10,11.3,570,9,999999999,179,0.0990,0,88,0.120,999.0,99.0 +1996,3,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.2,5.7,79,102300,0,0,334,0,0,0,0,0,0,0,360,3.8,10,10,11.3,525,9,999999999,179,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.6,5.3,80,102300,0,0,331,0,0,0,0,0,0,0,10,3.9,10,10,11.3,480,9,999999999,179,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.2,5.2,81,102200,0,0,329,0,0,0,0,0,0,0,10,3.9,10,10,11.3,435,9,999999999,189,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.8,4.9,82,102100,0,0,326,0,0,0,0,0,0,0,10,4.0,10,10,11.3,390,9,999999999,189,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.4,4.6,82,102100,0,0,324,0,0,0,0,0,0,0,10,4.0,10,10,11.3,345,9,999999999,200,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,3.8,82,102000,0,0,320,0,0,0,0,0,0,0,10,4.1,10,10,11.3,300,9,999999999,200,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.6,3.8,82,102000,9,358,320,0,0,0,0,0,0,0,10,5.1,10,10,11.3,300,9,999999999,200,0.1000,0,88,0.120,0.0,6.0 +1996,3,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,5.0,83,102000,227,1385,326,32,0,32,3700,0,3700,1230,10,2.5,10,10,11.3,300,9,999999999,200,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.6,5.0,90,102100,525,1385,321,88,0,88,10300,0,10300,3740,10,4.1,10,10,11.3,300,9,999999999,200,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.1,5.0,93,102100,785,1385,319,168,0,168,19700,0,19700,7490,350,5.7,10,10,11.2,1800,9,999999999,200,0.1000,0,88,0.120,1.0,6.0 +1996,3,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.5,4.4,93,102100,989,1385,315,181,0,181,21800,0,21800,8810,10,5.1,10,10,8.0,300,9,999999999,200,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,5.0,93,102100,1124,1385,319,207,0,207,25100,0,25100,10260,10,5.1,10,10,8.0,300,9,999999999,200,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.1,93,101900,1179,1385,325,218,0,218,26600,0,26600,10800,360,5.1,10,10,9.7,210,9,999999999,189,0.1000,0,88,0.120,6.0,6.0 +1996,3,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,7.2,93,101800,1152,1385,331,213,0,213,25900,0,25900,10550,360,4.1,10,10,11.3,210,9,999999999,189,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,7.2,90,101700,1043,1385,334,192,0,192,23200,0,23200,9430,360,5.1,10,10,11.3,210,9,999999999,189,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,7.7,83,101700,861,1385,342,155,0,155,18500,0,18500,7320,360,4.1,10,10,11.3,300,9,999999999,189,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,8.3,80,101700,618,1385,348,127,0,127,14800,0,14800,5370,360,5.1,10,10,11.3,510,9,999999999,189,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,8.3,75,101700,330,1385,354,60,0,60,6900,0,6900,2310,360,4.1,10,10,11.3,690,9,999999999,189,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,8.3,72,101700,51,819,357,6,0,6,700,0,700,240,360,4.1,10,10,11.3,720,9,999999999,179,0.1000,0,88,0.120,0.0,6.0 +1996,3,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,3.3,57,101900,0,0,307,0,0,0,0,0,0,0,360,4.6,2,2,11.3,77777,9,999999999,179,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,3.3,56,101900,0,0,310,0,0,0,0,0,0,0,360,4.6,3,3,11.2,77777,9,999999999,179,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,1.6,52,102000,0,0,303,0,0,0,0,0,0,0,360,5.1,2,2,11.3,77777,9,999999999,179,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.8,1.5,53,102000,0,0,301,0,0,0,0,0,0,0,360,4.8,2,2,11.3,77777,9,999999999,179,0.1000,0,88,0.120,999.0,99.0 +1996,3,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.3,1.1,53,102000,0,0,299,0,0,0,0,0,0,0,360,4.5,2,2,11.3,77777,9,999999999,179,0.1000,0,88,0.120,999.0,99.0 +1996,3,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.8,0.6,53,102000,0,0,292,0,0,0,0,0,0,0,360,4.1,1,1,11.3,77777,9,999999999,170,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.2,0.0,53,102000,0,0,289,0,0,0,0,0,0,0,10,3.8,1,1,11.3,77777,9,999999999,170,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.8,-0.3,53,102000,0,0,287,0,0,0,0,0,0,0,10,3.5,1,1,11.3,77777,9,999999999,170,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.4,-0.8,52,102000,0,0,285,0,0,0,0,0,0,0,10,3.2,1,1,11.3,77777,9,999999999,170,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.0,-1.3,51,102000,0,0,278,0,0,0,0,0,0,0,10,2.8,0,0,11.3,77777,9,999999999,170,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,-2.3,50,102000,0,0,273,0,0,0,0,0,0,0,10,2.5,0,0,11.3,77777,9,999999999,170,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,6.6,-2.8,50,102000,10,381,271,1,9,1,0,0,0,0,10,3.6,0,0,11.3,77777,9,999999999,170,0.1010,0,88,0.120,0.0,6.0 +1996,3,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,-2.3,45,102100,233,1384,280,104,341,46,10500,24200,6500,810,10,2.5,0,0,11.3,77777,9,999999999,160,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,-1.2,42,102100,530,1384,290,328,644,81,34500,60900,11100,1610,10,3.0,0,0,11.3,77777,9,999999999,160,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,0.5,41,102200,790,1384,314,470,580,139,49500,58000,16300,3170,10,3.6,3,3,11.3,77777,9,999999999,160,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,1.6,40,102200,995,1384,309,739,847,130,77900,85200,16500,3580,300,5.1,0,0,11.3,77777,9,999999999,160,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,3.3,42,102100,1129,1384,316,861,882,141,91600,89200,18600,5050,270,3.6,0,0,11.3,77777,9,999999999,150,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,2.7,38,102100,1184,1384,320,912,895,146,93500,89500,16800,4610,290,4.6,0,0,11.3,77777,9,999999999,150,0.1010,0,88,0.120,0.0,6.0 +1996,3,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,-1.2,28,102100,1156,1384,316,887,889,144,94500,90000,19100,5520,310,4.1,0,0,11.3,77777,9,999999999,150,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,-1.7,26,101900,1047,1384,317,788,864,134,83400,87100,17300,4040,310,5.1,0,0,11.3,77777,9,999999999,150,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,1.6,35,101900,864,1384,333,599,727,145,63400,73400,17500,3580,310,5.1,3,3,11.3,77777,9,999999999,139,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,2.2,41,101900,621,1384,322,350,471,139,37300,46400,16400,2790,310,5.1,2,2,11.3,77777,9,999999999,139,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,2.7,45,101900,333,1384,321,90,137,57,9900,11300,7100,1020,320,4.6,3,3,11.3,77777,9,999999999,139,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,3.3,53,102000,53,842,311,13,37,11,1500,1300,1400,180,320,3.6,2,2,11.3,77777,9,999999999,139,0.1010,0,88,0.120,0.0,6.0 +1996,3,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,2.7,52,102000,0,0,312,0,0,0,0,0,0,0,340,3.6,3,3,11.3,77777,9,999999999,129,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,5.0,69,102100,0,0,304,0,0,0,0,0,0,0,340,2.5,2,2,11.3,77777,9,999999999,129,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,6.1,80,102100,0,0,303,0,0,0,0,0,0,0,350,2.5,3,3,11.3,77777,9,999999999,129,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.2,6.4,83,102100,0,0,303,0,0,0,0,0,0,0,350,2.3,3,3,11.3,77777,9,999999999,129,0.1010,0,88,0.120,999.0,99.0 +1996,3,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.8,6.4,85,102100,0,0,301,0,0,0,0,0,0,0,360,2.1,3,3,11.3,77777,9,999999999,120,0.1010,0,88,0.120,999.0,99.0 +1996,3,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.3,6.3,87,102100,0,0,299,0,0,0,0,0,0,0,360,1.9,3,3,11.3,77777,9,999999999,120,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.8,6.2,90,102100,0,0,296,0,0,0,0,0,0,0,10,1.8,3,3,11.3,77777,9,999999999,120,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.5,6.3,92,102100,0,0,292,0,0,0,0,0,0,0,10,1.6,2,2,11.3,77777,9,999999999,120,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.1,6.1,93,102100,0,0,290,0,0,0,0,0,0,0,10,1.4,2,2,11.3,77777,9,999999999,110,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.8,6.0,95,102100,0,0,289,0,0,0,0,0,0,0,20,1.2,2,2,11.3,77777,9,999999999,110,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.1,5.5,96,102100,0,0,286,0,0,0,0,0,0,0,20,1.0,2,2,11.3,77777,9,999999999,110,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,5.0,3.8,92,102200,12,403,282,3,38,1,0,0,0,0,20,1.0,3,3,11.3,77777,9,999999999,110,0.1020,0,88,0.120,0.0,6.0 +1996,3,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.7,86,102300,238,1383,304,123,478,41,12700,34500,6800,750,20,1.0,2,2,11.3,77777,9,999999999,110,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,6.1,62,102300,536,1383,320,322,628,78,33900,59600,10800,1560,40,2.5,3,3,11.3,77777,9,999999999,110,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,4.4,49,102400,796,1383,312,588,903,68,61700,89100,10300,1690,70,2.0,0,0,11.3,77777,9,999999999,110,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,0.5,32,102300,1000,1383,318,771,955,80,80600,95400,11400,2310,50,1.5,0,0,11.3,77777,9,999999999,110,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,-1.2,25,102300,1133,1383,325,891,980,88,92900,98300,12100,3100,240,3.0,0,0,11.3,77777,9,999999999,110,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,1.6,30,102200,1188,1383,329,941,989,91,97900,99300,12400,3620,250,2.5,0,0,11.3,77777,9,999999999,110,0.1020,0,88,0.120,0.0,6.0 +1996,3,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,-1.7,21,102100,1160,1383,332,915,985,89,95300,98800,12200,3310,240,2.0,0,0,11.3,77777,9,999999999,110,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,-1.2,22,102100,1050,1383,333,816,964,83,85200,96500,11700,2550,240,3.0,0,0,16.1,77777,9,999999999,110,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,3.3,34,102000,868,1383,331,652,923,73,68400,91600,10700,1880,320,3.0,0,0,16.1,77777,9,999999999,110,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,2.2,34,102000,624,1383,324,436,841,57,46000,81000,9300,1360,320,4.6,0,0,11.3,77777,9,999999999,110,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,3.3,42,102100,336,1383,316,197,657,37,20700,56000,7100,790,320,4.1,0,0,11.3,77777,9,999999999,110,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.8,3.8,51,102100,55,842,307,20,172,9,2200,9700,1600,210,330,2.5,0,0,11.3,77777,9,999999999,110,0.1020,0,88,0.120,0.0,6.0 +1996,3,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,5.5,59,102100,0,0,306,0,0,0,0,0,0,0,330,2.5,0,0,11.3,77777,9,999999999,120,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,5.5,64,102200,0,0,302,0,0,0,0,0,0,0,360,1.0,0,0,11.3,77777,9,999999999,120,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,5.5,68,102200,0,0,297,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,120,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.9,5.9,71,102200,0,0,297,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,120,0.1020,0,88,0.120,999.0,99.0 +1996,3,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.4,6.1,75,102200,0,0,295,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,120,0.1020,0,88,0.120,999.0,99.0 +1996,3,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,6.2,77,102200,0,0,293,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.5,6.2,80,102100,0,0,291,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.2,6.4,83,102100,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.7,6.4,85,102100,0,0,288,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.4,6.5,88,102100,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,6.1,90,102100,0,0,284,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.3,7.2,93,102100,13,426,287,2,2,2,0,0,0,0,0,0.0,0,0,9.7,77777,9,999999999,120,0.1030,0,88,0.120,0.0,6.0 +1996,3,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,10.0,86,102200,244,1383,306,99,231,58,10300,16300,7400,1050,0,0.0,0,0,9.7,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,10.0,75,102200,541,1383,316,318,534,109,32800,50000,13200,2070,30,1.5,0,0,9.7,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,10.0,63,102300,801,1383,328,547,686,150,57400,68500,17600,3420,90,1.5,0,0,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,10.0,53,102200,1005,1383,352,694,661,214,72700,66600,24200,6190,100,1.0,2,2,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,6.1,34,102200,1138,1383,349,858,806,194,91700,82400,23700,7540,170,1.0,0,0,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,5.0,30,102100,1192,1383,353,908,821,200,93800,81900,23000,7920,270,2.5,0,0,11.3,77777,9,999999999,120,0.1030,0,88,0.120,0.0,6.0 +1996,3,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,4.4,28,102100,1163,1383,352,882,814,197,94500,83300,24200,8180,270,3.0,0,0,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,3.3,25,102000,1054,1383,354,780,782,184,83000,79700,22100,5950,260,2.5,0,0,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,9.4,43,102000,871,1383,368,571,546,228,60600,56200,25100,5660,210,4.1,3,3,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,7.2,38,102000,627,1383,360,341,479,124,36800,47300,15300,2470,250,3.0,2,2,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,9.4,52,102000,339,1383,352,120,160,81,12800,13300,9600,1540,230,2.0,3,3,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,9.4,64,102000,56,864,333,13,12,13,1500,700,1500,340,0,0.0,2,2,11.3,77777,9,999999999,120,0.1030,0,88,0.120,0.0,6.0 +1996,3,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,102000,0,0,332,0,0,0,0,0,0,0,0,0.0,3,3,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,9.4,77,102000,0,0,310,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,10.5,86,102100,0,0,309,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.4,10.7,89,102000,0,0,308,0,0,0,0,0,0,0,20,0.3,0,0,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.9,10.6,92,102000,0,0,305,0,0,0,0,0,0,0,30,0.5,0,0,11.3,77777,9,999999999,120,0.1030,0,88,0.120,999.0,99.0 +1996,3,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.4,10.3,93,102000,0,0,303,0,0,0,0,0,0,0,50,0.8,0,0,11.3,77777,9,999999999,120,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.8,10.0,95,102000,0,0,300,0,0,0,0,0,0,0,60,1.0,0,0,11.3,77777,9,999999999,120,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.4,10.0,97,101900,0,0,299,0,0,0,0,0,0,0,80,1.3,0,0,11.3,77777,9,999999999,120,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,9.7,98,101900,0,0,297,0,0,0,0,0,0,0,90,1.5,0,0,11.3,77777,9,999999999,120,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.6,9.5,99,101900,0,0,295,0,0,0,0,0,0,0,110,1.8,0,0,11.3,77777,9,999999999,120,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,8.8,100,101900,0,0,291,0,0,0,0,0,0,0,120,2.0,0,0,11.3,77777,9,999999999,120,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,9.4,100,101900,15,449,306,2,14,2,0,0,0,0,120,1.0,3,3,11.3,77777,9,999999999,110,0.1040,0,88,0.120,0.0,6.0 +1996,3,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,10.5,89,102000,250,1382,317,104,293,50,10900,21000,7100,890,130,1.5,2,2,11.3,77777,9,999999999,120,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,8.8,62,102000,547,1382,336,343,595,107,35400,55900,13200,2050,140,0.5,3,3,11.3,77777,9,999999999,120,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,9.4,52,102100,806,1382,349,566,803,98,59900,80000,13000,2270,250,0.5,2,2,11.3,77777,9,999999999,120,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,9.4,47,102000,1009,1382,360,533,377,257,57000,39200,28300,7720,240,1.5,3,3,11.2,77777,9,999999999,120,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,12.2,55,102000,1142,1382,363,834,858,125,86100,85800,14900,3830,200,1.5,2,2,11.3,77777,9,999999999,120,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.2,53,101900,1196,1382,369,760,592,247,80300,60000,28200,11110,180,5.1,3,3,11.3,77777,9,999999999,129,0.1040,0,88,0.120,0.0,6.0 +1996,3,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,12.7,55,101800,1167,1382,366,858,786,194,92100,80500,23800,8160,180,5.1,2,2,11.3,77777,9,999999999,129,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,13.8,61,101700,1057,1382,368,688,615,217,72300,62200,24600,6940,210,5.1,3,3,11.3,77777,9,999999999,129,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,12.7,59,101600,874,1382,361,576,702,132,61500,71300,16300,3340,200,5.1,2,2,11.3,77777,9,999999999,129,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,13.3,61,101600,630,1382,365,404,631,116,42000,61100,14100,2340,200,5.1,3,3,11.3,77777,9,999999999,129,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.3,65,101600,342,1382,356,166,406,65,17000,33500,8700,1180,210,4.1,2,2,11.3,77777,9,999999999,139,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.8,80,101600,58,864,347,16,49,13,1800,1800,1700,210,210,3.6,3,3,11.3,77777,9,999999999,139,0.1040,0,88,0.120,0.0,6.0 +1996,3,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.8,80,101600,0,0,343,0,0,0,0,0,0,0,210,2.5,2,2,11.3,77777,9,999999999,139,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,14.4,90,101600,0,0,342,0,0,0,0,0,0,0,210,1.5,3,3,11.3,77777,9,999999999,139,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,14.4,93,101600,0,0,336,0,0,0,0,0,0,0,200,2.5,2,2,11.3,77777,9,999999999,139,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.6,14.7,94,101600,0,0,337,0,0,0,0,0,0,0,200,2.4,2,2,11.3,77777,9,999999999,139,0.1040,0,88,0.120,999.0,99.0 +1996,3,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.4,14.7,96,101600,0,0,336,0,0,0,0,0,0,0,200,2.3,2,2,11.3,77777,9,999999999,150,0.1040,0,88,0.120,999.0,99.0 +1996,3,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.2,14.6,96,101500,0,0,330,0,0,0,0,0,0,0,190,2.1,1,1,11.3,77777,9,999999999,150,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,14.5,97,101500,0,0,329,0,0,0,0,0,0,0,190,2.0,1,1,11.3,77777,9,999999999,150,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,14.6,97,101500,0,0,329,0,0,0,0,0,0,0,190,1.9,1,1,11.3,77777,9,999999999,150,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.9,14.4,97,101500,0,0,329,0,0,0,0,0,0,0,190,1.8,1,1,11.3,77777,9,999999999,150,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.8,14.3,97,101400,0,0,322,0,0,0,0,0,0,0,180,1.6,0,0,11.3,77777,9,999999999,160,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,13.8,96,101400,0,0,320,0,0,0,0,0,0,0,180,1.5,0,0,11.3,77777,9,999999999,160,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.8,13.3,97,101500,17,472,327,3,24,2,0,0,0,0,140,1.5,2,2,4.8,77777,9,999999999,160,0.1060,0,88,0.120,0.0,6.0 +1996,3,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,15.0,90,101600,256,1381,345,126,375,57,13200,27100,8200,1030,110,1.5,3,3,9.7,77777,9,999999999,160,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.1,87,101600,553,1381,351,315,545,97,32800,51600,12100,1900,140,2.0,2,2,11.3,77777,9,999999999,160,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,16.1,76,101700,812,1381,385,300,201,182,33100,21400,20500,4250,150,2.0,9,8,11.3,77777,9,999999999,160,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,16.1,68,101600,1014,1381,388,429,126,336,47000,13400,37200,10720,200,3.0,9,7,11.3,77777,9,999999999,160,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,16.1,64,101600,1147,1381,400,718,336,439,77400,36400,47100,17380,210,4.1,9,8,11.3,77777,9,999999999,160,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,14.4,61,101500,1200,1381,385,512,230,312,57000,25000,35100,13410,210,4.6,9,7,11.3,77777,9,999999999,160,0.1060,0,88,0.120,0.0,6.0 +1996,3,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,13.3,55,101500,1171,1381,373,767,672,197,82200,68800,23700,8380,210,5.6,3,3,11.3,77777,9,999999999,150,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,10.5,49,101400,1061,1381,361,753,830,115,77800,82900,14000,3030,210,5.1,2,2,11.3,77777,9,999999999,150,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,8.3,40,101400,877,1381,367,597,737,128,63800,74900,16100,3260,210,5.1,3,3,11.3,77777,9,999999999,150,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,7.7,39,101400,633,1381,360,333,523,93,35200,51200,11700,1950,210,5.1,2,2,11.3,77777,9,999999999,150,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,12.2,65,101400,345,1381,353,171,224,115,17800,18700,13100,2350,200,3.6,3,3,11.3,77777,9,999999999,150,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.8,80,101400,60,886,359,14,7,13,1500,400,1500,340,200,3.6,9,7,11.3,77777,9,999999999,150,0.1060,0,88,0.120,0.0,6.0 +1996,3,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,13.8,86,101400,0,0,360,0,0,0,0,0,0,0,200,2.5,9,8,11.3,77777,9,999999999,150,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,13.8,86,101400,0,0,354,0,0,0,0,0,0,0,200,2.5,9,7,11.3,77777,9,999999999,150,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,15.0,93,101400,0,0,343,0,0,0,0,0,0,0,190,1.5,3,3,11.3,77777,9,999999999,150,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.2,15.3,94,101400,0,0,346,0,0,0,0,0,0,0,180,1.6,4,4,11.3,77777,9,999999999,150,0.1060,0,88,0.120,999.0,99.0 +1996,3,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.1,15.3,95,101300,0,0,348,0,0,0,0,0,0,0,180,1.8,5,5,11.3,77777,9,999999999,150,0.1060,0,88,0.120,999.0,99.0 +1996,3,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,15.2,95,101300,0,0,348,0,0,0,0,0,0,0,170,1.9,5,5,11.3,77777,9,999999999,150,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.9,15.1,95,101300,0,0,350,0,0,0,0,0,0,0,170,2.0,6,6,11.3,77777,9,999999999,150,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.9,15.2,96,101300,0,0,355,0,0,0,0,0,0,0,160,2.1,7,7,11.3,77777,9,999999999,150,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.8,15.0,95,101200,0,0,359,0,0,0,0,0,0,0,150,2.3,8,8,11.3,77777,9,999999999,150,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.9,14.9,94,101200,0,0,360,0,0,0,0,0,0,0,150,2.4,8,8,11.3,77777,9,999999999,150,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,14.4,93,101200,0,0,365,0,0,0,0,0,0,0,140,2.5,9,9,11.3,77777,9,999999999,139,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,15.0,97,101200,19,495,340,4,26,3,0,0,0,0,150,2.5,3,3,11.3,77777,9,999999999,139,0.1070,0,88,0.120,0.0,6.0 +1996,3,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,15.5,87,101200,262,1380,348,123,418,44,12700,31500,6800,810,150,3.0,2,2,11.3,77777,9,999999999,150,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.6,84,101200,558,1380,361,351,433,176,37200,42900,19800,3790,150,2.5,3,3,11.3,77777,9,999999999,160,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,16.6,68,101200,817,1380,373,566,779,105,59500,77500,13500,2400,160,3.0,2,2,11.3,77777,9,999999999,160,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,14.4,52,101200,1019,1380,386,556,481,200,61000,50200,23900,6010,180,2.5,3,3,11.3,77777,9,999999999,170,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,17.2,62,101200,1151,1380,386,791,729,182,85100,74800,22400,7390,200,5.1,2,2,11.3,77777,9,999999999,170,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.3,66,101100,1204,1380,391,748,611,215,80000,62400,25400,10080,200,7.7,3,3,11.3,77777,9,999999999,179,0.1070,0,88,0.120,0.0,6.0 +1996,3,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.7,66,101100,1174,1380,383,889,897,125,91600,89800,15000,4230,200,5.1,2,2,11.3,77777,9,999999999,189,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.7,66,101000,1064,1380,387,762,708,215,80200,71700,24700,7000,200,5.1,3,3,11.3,77777,9,999999999,189,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.2,69,100900,880,1380,377,599,755,118,62800,75400,14600,2810,190,5.1,2,2,11.3,77777,9,999999999,200,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.2,69,100900,636,1380,381,322,429,124,34700,42500,15100,2480,200,5.1,3,3,11.3,77777,9,999999999,200,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.7,78,100900,348,1380,369,178,456,63,18300,38000,8700,1150,200,2.5,2,2,11.3,77777,9,999999999,209,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,17.2,81,100900,61,886,367,17,82,12,2000,3500,1800,200,180,1.5,3,3,11.3,77777,9,999999999,220,0.1070,0,88,0.120,0.0,6.0 +1996,3,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.2,78,100900,0,0,366,0,0,0,0,0,0,0,170,1.5,2,2,11.3,77777,9,999999999,220,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.2,78,101000,0,0,370,0,0,0,0,0,0,0,150,1.5,3,3,11.3,77777,9,999999999,229,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.2,87,101000,0,0,358,0,0,0,0,0,0,0,140,1.5,2,2,11.3,77777,9,999999999,229,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.8,17.8,88,100900,0,0,364,0,0,0,0,0,0,0,150,1.6,3,3,11.3,19306,9,999999999,240,0.1070,0,88,0.120,999.0,99.0 +1996,3,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.9,18.2,90,100900,0,0,368,0,0,0,0,0,0,0,150,1.6,4,4,11.3,16613,9,999999999,250,0.1070,0,88,0.120,999.0,99.0 +1996,3,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.9,18.5,92,100900,0,0,368,0,0,0,0,0,0,0,160,1.7,5,4,11.3,13919,9,999999999,250,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.0,18.7,92,100800,0,0,372,0,0,0,0,0,0,0,160,1.8,6,5,11.3,11225,9,999999999,259,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.3,19.1,93,100800,0,0,377,0,0,0,0,0,0,0,170,1.8,6,6,11.3,8531,9,999999999,259,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.4,19.3,93,100800,0,0,382,0,0,0,0,0,0,0,170,1.9,7,7,11.3,5838,9,999999999,270,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.7,19.6,93,100700,0,0,384,0,0,0,0,0,0,0,180,1.9,8,7,11.3,3144,9,999999999,279,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,19.4,93,100700,0,0,389,0,0,0,0,0,0,0,180,2.0,9,8,11.3,450,9,999999999,279,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,20.0,93,100700,21,517,387,4,3,4,500,100,500,110,180,4.6,9,7,11.3,77777,9,999999999,290,0.1080,0,88,0.120,0.0,6.0 +1996,3,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,100700,267,1379,419,48,0,48,5500,0,5500,1800,180,5.6,10,10,11.3,77777,9,999999999,290,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.5,84,100700,564,1379,426,130,0,130,14900,0,14900,5240,180,7.2,10,10,11.3,77777,9,999999999,290,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,100700,822,1379,411,300,188,188,33000,20000,21100,4450,190,6.1,9,8,11.3,77777,9,999999999,290,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,19.4,74,100800,1024,1379,431,271,0,271,31800,0,31800,12280,190,6.1,10,10,11.3,77777,9,999999999,290,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,19.4,74,100700,1156,1379,410,465,214,286,51800,23300,32300,10960,190,6.1,9,8,11.3,2400,9,999999999,290,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,100600,1208,1379,398,535,270,299,59900,29400,34000,13130,190,7.7,9,7,11.3,2400,9,999999999,290,0.1080,0,88,0.120,0.0,6.0 +1996,3,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.0,79,100600,1178,1379,407,574,305,313,63700,33200,35200,12760,190,5.6,9,8,11.3,2400,9,999999999,290,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,100400,1067,1379,404,584,380,289,62200,39600,31500,9720,180,6.6,9,7,11.3,2400,9,999999999,290,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,100400,883,1379,411,429,179,315,46700,18800,34700,8880,180,6.1,9,8,11.3,2400,9,999999999,290,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.0,82,100400,638,1379,398,281,287,148,30600,29400,16900,3110,210,5.1,9,7,11.3,77777,9,999999999,290,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.0,82,100400,350,1379,425,55,0,55,6400,0,6400,2200,200,4.1,10,10,11.3,1800,9,999999999,290,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,20.0,91,100400,63,908,415,10,0,10,1200,0,1200,390,200,5.1,10,10,11.3,600,9,999999999,290,0.1080,0,88,0.120,0.0,6.0 +1996,3,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,20.6,93,100400,0,0,417,0,0,0,0,0,0,0,190,5.1,10,10,11.2,600,9,999999999,290,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.0,91,100400,0,0,415,0,0,0,0,0,0,0,200,4.1,10,10,8.0,360,9,999999999,290,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.0,91,100600,0,0,415,0,0,0,0,0,0,0,200,4.1,10,10,8.0,360,9,999999999,290,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,19.5,89,100600,0,0,402,0,0,0,0,0,0,0,210,4.5,9,9,8.0,3065,9,999999999,290,0.1080,0,88,0.120,999.0,99.0 +1996,3,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.8,18.7,88,100600,0,0,390,0,0,0,0,0,0,0,220,4.9,8,8,8.0,5770,9,999999999,290,0.1080,0,88,0.120,999.0,99.0 +1996,3,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.3,17.7,85,100700,0,0,380,0,0,0,0,0,0,0,230,5.3,7,7,8.0,8475,9,999999999,290,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.7,16.7,83,100700,0,0,371,0,0,0,0,0,0,0,240,5.6,6,6,8.0,11180,9,999999999,290,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.3,16.0,81,100700,0,0,365,0,0,0,0,0,0,0,250,6.0,5,5,8.0,13885,9,999999999,290,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.9,15.0,78,100700,0,0,359,0,0,0,0,0,0,0,260,6.4,4,4,8.0,16590,9,999999999,290,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.5,14.1,76,100800,0,0,353,0,0,0,0,0,0,0,270,6.8,3,3,8.0,19295,9,999999999,290,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,12.7,73,100800,0,0,344,0,0,0,0,0,0,0,280,7.2,2,2,11.3,77777,9,999999999,290,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.6,10.5,67,100900,23,563,340,5,27,4,600,900,600,70,280,5.1,3,3,11.3,77777,9,999999999,290,0.1090,0,88,0.120,0.0,6.0 +1996,3,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,10.0,65,101100,273,1379,336,103,286,47,11200,21500,6900,830,280,6.1,2,2,11.3,77777,9,999999999,290,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,9.4,58,101100,569,1379,344,347,597,100,36100,56900,12600,1980,280,6.1,3,3,11.3,77777,9,999999999,279,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,7.7,52,101200,827,1379,339,547,663,149,57500,66500,17500,3520,290,7.2,2,2,11.3,77777,9,999999999,270,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,7.2,48,101300,1029,1379,370,561,94,491,61600,9800,54300,16720,290,7.2,9,9,11.3,77777,9,999999999,270,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,7.7,54,101300,1160,1379,365,418,104,330,46400,11100,37000,13080,290,7.7,9,9,11.3,77777,9,999999999,259,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,6.1,45,101300,1212,1379,379,329,0,329,39000,0,39000,15000,300,8.2,10,10,11.3,77777,9,999999999,250,0.1090,0,88,0.120,0.0,6.0 +1996,3,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,3.3,41,101300,1181,1379,367,320,0,320,37900,0,37900,14600,300,7.7,10,10,11.3,77777,9,999999999,250,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,5.5,45,101300,1070,1379,376,286,0,286,33600,0,33600,13030,300,7.7,10,10,11.3,77777,9,999999999,240,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,5.5,46,101400,886,1379,363,300,166,192,33100,17800,21600,4780,290,7.7,9,9,11.3,77777,9,999999999,229,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,5.5,48,101400,641,1379,360,135,44,114,14900,4300,12900,3640,300,7.7,9,9,11.3,77777,9,999999999,229,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,101400,353,1379,351,101,42,90,11000,3700,10100,2350,280,7.7,9,9,11.3,77777,9,999999999,220,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.8,4.4,53,101400,65,908,345,23,18,22,2600,1100,2500,540,290,7.7,9,9,11.3,77777,9,999999999,209,0.1090,0,88,0.120,0.0,6.0 +1996,3,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,5.0,55,101500,0,0,345,0,0,0,0,0,0,0,300,6.1,9,9,11.3,77777,9,999999999,209,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,6.1,57,101500,0,0,350,0,0,0,0,0,0,0,290,8.2,9,9,11.3,77777,9,999999999,200,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,5.5,57,101500,0,0,346,0,0,0,0,0,0,0,280,5.1,9,9,11.3,77777,9,999999999,189,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.7,5.5,58,101600,0,0,338,0,0,0,0,0,0,0,290,5.0,8,8,11.3,77777,9,999999999,189,0.1090,0,88,0.120,999.0,99.0 +1996,3,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.4,5.3,58,101600,0,0,337,0,0,0,0,0,0,0,300,4.9,8,8,11.3,77777,9,999999999,179,0.1090,0,88,0.120,999.0,99.0 +1996,3,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.1,4.9,57,101600,0,0,330,0,0,0,0,0,0,0,300,4.7,7,7,11.3,77777,9,999999999,170,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,4.5,57,101600,0,0,324,0,0,0,0,0,0,0,310,4.6,6,6,11.3,77777,9,999999999,170,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.6,4.3,57,101600,0,0,320,0,0,0,0,0,0,0,320,4.5,5,5,11.3,77777,9,999999999,160,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.3,3.9,56,101600,0,0,318,0,0,0,0,0,0,0,330,4.4,5,5,11.3,77777,9,999999999,150,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.2,3.5,55,101600,0,0,315,0,0,0,0,0,0,0,330,4.2,4,4,11.3,77777,9,999999999,150,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,2.7,54,101600,0,0,309,0,0,0,0,0,0,0,340,4.1,3,3,11.3,77777,9,999999999,139,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.2,58,101700,25,586,299,5,3,4,500,100,500,110,350,2.0,2,2,11.3,77777,9,999999999,129,0.1100,0,88,0.120,0.0,6.0 +1996,3,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,2.7,51,101700,279,1378,314,103,186,65,11000,14100,8100,1210,310,2.5,3,3,11.3,77777,9,999999999,129,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.3,45,101700,575,1378,321,299,414,126,31800,40200,15000,2470,270,3.0,2,2,11.3,77777,9,999999999,129,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,3.8,44,101700,832,1378,355,244,21,231,28100,1800,27000,9810,280,5.1,9,9,11.3,1350,9,999999999,129,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,5.0,50,101700,1033,1378,354,603,300,377,64700,32400,40400,12190,300,5.1,9,9,11.3,1350,9,999999999,129,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,6.1,46,101600,1164,1378,366,348,85,275,39000,9100,31300,11000,270,5.1,9,9,11.3,1350,9,999999999,129,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,5.5,45,101500,1216,1378,365,565,104,473,62300,10800,52700,21280,270,8.2,9,9,11.3,1350,9,999999999,129,0.1100,0,88,0.120,0.0,6.0 +1996,3,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,6.6,50,101400,1185,1378,364,576,252,359,63300,27400,39700,15150,280,11.3,9,9,11.3,1200,9,999999999,129,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,3.8,41,101400,1073,1378,332,710,616,230,74500,62200,25900,7600,280,10.2,2,2,11.3,77777,9,999999999,129,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,4.4,43,101400,889,1378,361,302,120,224,33500,12700,25300,6340,270,11.3,9,9,11.3,1350,9,999999999,129,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,1.1,36,101300,644,1378,324,371,492,141,39600,48800,16800,2860,280,9.2,2,2,11.3,77777,9,999999999,129,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,5.0,55,101400,356,1378,321,164,247,100,17300,21000,11900,1970,290,8.7,3,3,11.3,77777,9,999999999,129,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,6.1,64,101400,67,930,341,15,0,15,1700,0,1700,550,300,10.2,9,9,11.3,1200,9,999999999,129,0.1100,0,88,0.120,0.0,6.0 +1996,3,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,6.1,66,101500,0,0,339,0,0,0,0,0,0,0,300,7.2,9,9,11.3,2400,9,999999999,129,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.8,6.6,86,101600,0,0,333,0,0,0,0,0,0,0,280,7.2,10,10,4.8,900,9,999999999,129,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.8,6.6,86,101600,0,0,324,0,0,0,0,0,0,0,290,7.7,9,9,11.3,1020,9,999999999,129,0.1100,0,88,0.120,2.0,6.0 +1996,3,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.2,6.4,83,101700,0,0,325,0,0,0,0,0,0,0,300,7.6,9,9,11.3,1080,9,999999999,129,0.1100,0,88,0.120,999.0,99.0 +1996,3,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.3,6.0,80,101700,0,0,325,0,0,0,0,0,0,0,310,7.4,9,9,11.3,1140,9,999999999,129,0.1100,0,88,0.120,999.0,99.0 +1996,3,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,5.4,76,101700,0,0,325,0,0,0,0,0,0,0,310,7.3,9,9,11.3,1200,9,999999999,129,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.5,4.8,72,101700,0,0,325,0,0,0,0,0,0,0,320,7.2,9,9,11.3,1260,9,999999999,129,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.7,4.4,70,101700,0,0,325,0,0,0,0,0,0,0,330,7.0,9,9,11.3,1320,9,999999999,129,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.9,3.8,66,101700,0,0,326,0,0,0,0,0,0,0,340,6.9,9,9,11.3,1380,9,999999999,129,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.1,3.2,62,101700,0,0,326,0,0,0,0,0,0,0,340,6.7,9,9,11.3,1440,9,999999999,129,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,2.2,58,101700,0,0,324,0,0,0,0,0,0,0,350,6.6,9,9,11.3,1500,9,999999999,129,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,2.7,60,101700,28,608,325,4,11,4,500,300,500,60,320,6.6,9,9,11.3,1500,9,999999999,129,0.1120,0,88,0.120,2.0,24.0 +1996,3,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,2.2,56,101800,285,1377,327,95,74,79,10200,5900,9000,1700,340,6.1,9,9,11.3,1500,9,999999999,129,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,1.6,52,101800,580,1377,329,215,80,181,23600,7800,20300,5090,330,5.6,9,9,11.3,1500,9,999999999,129,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,1.6,48,101900,837,1377,334,189,18,178,22300,1400,21400,8110,320,5.6,9,9,11.3,1500,9,999999999,120,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,1.6,48,101900,1038,1377,334,260,115,173,29800,12400,20400,5690,310,5.1,9,9,11.3,1500,9,999999999,120,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,2.2,47,101800,1168,1377,340,422,109,329,46900,11700,37000,13290,310,6.1,9,9,11.3,1350,9,999999999,120,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,3.3,53,101700,1220,1377,338,555,127,441,60700,13500,48700,20010,300,5.1,9,9,11.3,1410,9,999999999,120,0.1120,0,88,0.120,0.0,6.0 +1996,3,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,3.8,51,101600,1188,1377,344,241,136,123,28300,14300,15900,5430,280,4.1,9,9,11.3,1320,9,999999999,120,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,3.8,46,101600,1076,1377,327,745,824,101,77400,82400,12700,2990,310,6.1,3,3,11.3,77777,9,999999999,120,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,3.8,49,101600,891,1377,347,388,130,303,42300,13700,33400,8610,280,6.1,9,9,11.3,1290,9,999999999,120,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,5.0,55,101500,647,1377,345,274,112,221,30000,11100,24800,6310,280,7.2,9,9,11.3,1260,9,999999999,120,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,5.0,55,101500,359,1377,318,208,478,83,21800,40200,11300,1530,270,5.6,2,2,11.3,77777,9,999999999,120,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,6.1,62,101500,69,929,344,14,11,13,1500,600,1500,340,260,5.1,9,9,11.3,1200,9,999999999,120,0.1120,0,88,0.120,0.0,6.0 +1996,3,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,7.2,67,101500,0,0,318,0,0,0,0,0,0,0,270,4.1,2,2,11.3,77777,9,999999999,120,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,6.6,62,101600,0,0,323,0,0,0,0,0,0,0,280,3.6,3,3,11.3,77777,9,999999999,120,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,8.3,72,101700,0,0,319,0,0,0,0,0,0,0,310,4.6,2,2,11.3,77777,9,999999999,120,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,8.2,74,101700,0,0,317,0,0,0,0,0,0,0,320,4.0,2,2,11.3,77777,9,999999999,120,0.1120,0,88,0.120,999.0,99.0 +1996,3,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.0,7.8,75,101700,0,0,313,0,0,0,0,0,0,0,320,3.5,2,2,11.3,77777,9,999999999,120,0.1120,0,88,0.120,999.0,99.0 +1996,3,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.1,7.3,77,101700,0,0,309,0,0,0,0,0,0,0,330,2.9,2,2,11.3,77777,9,999999999,120,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.3,6.7,78,101700,0,0,308,0,0,0,0,0,0,0,340,2.3,3,3,11.3,77777,9,999999999,120,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.7,6.4,80,101700,0,0,305,0,0,0,0,0,0,0,340,1.7,3,3,11.3,77777,9,999999999,120,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,5.9,81,101700,0,0,301,0,0,0,0,0,0,0,350,1.2,3,3,11.3,77777,9,999999999,120,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.3,5.4,82,101700,0,0,298,0,0,0,0,0,0,0,350,0.6,3,3,11.3,77777,9,999999999,120,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,4.4,82,101700,0,0,292,0,0,0,0,0,0,0,0,0.0,3,3,11.3,77777,9,999999999,120,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,5.0,68,101800,30,631,304,9,72,5,1000,3200,800,100,270,1.0,2,2,11.2,77777,9,999999999,120,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,6.6,64,101900,290,1376,321,148,465,50,15300,36500,7600,920,280,1.0,3,3,11.3,77777,9,999999999,120,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,5.0,53,101900,586,1376,321,373,660,92,39200,63600,12100,1870,10,1.5,2,2,11.3,77777,9,999999999,120,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,2.2,39,101900,842,1376,328,513,520,194,55000,53400,22200,4640,360,2.5,3,3,11.3,77777,9,999999999,120,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,2.2,38,102000,1043,1376,327,573,580,133,62300,59800,16800,4370,350,2.5,2,2,11.3,77777,9,999999999,120,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,2.2,35,101900,1172,1376,336,692,456,303,74500,47700,33800,13200,340,4.1,3,3,11.3,77777,9,999999999,120,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,2.2,34,101900,1223,1376,324,969,974,102,100400,97800,13300,4450,320,4.1,0,0,11.3,77777,9,999999999,120,0.1130,0,88,0.120,0.0,6.0 +1996,3,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,2.7,35,101800,1191,1376,325,940,969,101,97600,97200,13200,3990,310,4.1,0,0,11.3,77777,9,999999999,120,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,3.3,36,101700,1079,1376,328,839,949,94,87200,95000,12500,2910,320,4.6,0,0,11.3,77777,9,999999999,120,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,3.8,38,101700,894,1376,340,653,834,111,69100,83600,14600,2770,310,4.6,3,3,11.3,77777,9,999999999,120,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,3.8,41,101700,649,1376,332,434,708,100,45900,69500,13000,2110,320,4.1,2,2,11.3,77777,9,999999999,110,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,3.3,44,101800,361,1376,327,169,373,71,18000,31500,9700,1290,320,3.6,3,3,11.3,77777,9,999999999,110,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,4.4,57,101700,70,952,313,25,129,16,2700,6600,2200,300,310,2.5,2,2,11.3,77777,9,999999999,110,0.1130,0,88,0.120,0.0,6.0 +1996,3,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,5.5,66,101800,0,0,312,0,0,0,0,0,0,0,300,2.0,3,3,11.3,77777,9,999999999,110,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,5.5,66,101900,0,0,336,0,0,0,0,0,0,0,290,1.5,9,9,11.3,77777,9,999999999,110,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,5.5,66,101900,0,0,312,0,0,0,0,0,0,0,320,1.0,3,3,11.3,77777,9,999999999,110,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.4,6.1,70,101900,0,0,312,0,0,0,0,0,0,0,330,0.9,3,3,11.3,77777,9,999999999,110,0.1130,0,88,0.120,999.0,99.0 +1996,3,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.0,6.4,73,102000,0,0,307,0,0,0,0,0,0,0,330,0.8,2,2,11.3,77777,9,999999999,110,0.1130,0,88,0.120,999.0,99.0 +1996,3,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.5,6.6,77,102000,0,0,305,0,0,0,0,0,0,0,340,0.6,2,2,11.3,77777,9,999999999,110,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,6.7,80,102000,0,0,303,0,0,0,0,0,0,0,340,0.5,2,2,11.3,77777,9,999999999,110,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.7,7.1,84,102000,0,0,298,0,0,0,0,0,0,0,350,0.4,1,1,11.3,77777,9,999999999,110,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.3,7.3,87,102000,0,0,297,0,0,0,0,0,0,0,350,0.3,1,1,11.3,77777,9,999999999,110,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.0,7.5,90,102100,0,0,290,0,0,0,0,0,0,0,360,0.1,0,0,11.3,77777,9,999999999,110,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,7.2,93,102100,0,0,287,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,110,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,6.6,96,102100,33,653,282,11,124,5,1300,7100,900,170,0,0.0,0,0,11.3,77777,9,999999999,110,0.1140,0,88,0.120,0.0,6.0 +1996,3,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,10.0,86,102200,296,1375,316,140,464,40,14700,37100,6700,760,0,0.0,2,2,11.3,77777,9,999999999,110,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,13.3,81,102200,591,1375,343,352,609,90,37100,58900,11700,1840,20,2.5,3,3,11.3,77777,9,999999999,110,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,12.7,73,102200,847,1375,344,568,702,135,60300,71000,16500,3310,30,4.1,2,2,11.3,77777,9,999999999,110,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,11.6,61,102300,1047,1375,355,590,620,118,63400,62900,15400,3730,70,3.0,3,3,11.3,77777,9,999999999,110,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,14.4,59,102200,1177,1375,371,889,908,112,92000,91000,13900,4070,30,4.1,2,2,11.3,77777,9,999999999,120,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,3.8,34,102200,1227,1375,348,926,856,162,98400,86500,21000,7830,40,4.6,3,3,11.3,77777,9,999999999,120,0.1140,0,88,0.120,0.0,6.0 +1996,3,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,3.3,32,102100,1195,1375,347,881,882,114,91000,88400,14000,4350,60,1.5,2,2,11.3,77777,9,999999999,120,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,5.5,36,102000,1082,1375,356,755,769,150,79400,77400,18400,4790,80,2.5,3,3,11.3,77777,9,999999999,120,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,4.4,31,102000,897,1375,356,634,820,99,67900,82600,13900,2570,70,2.0,2,2,11.3,77777,9,999999999,129,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,-1.2,19,102000,652,1375,358,404,564,136,41700,54600,15700,2730,50,2.5,3,3,11.3,77777,9,999999999,129,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,1.6,26,102000,364,1375,394,86,0,86,9700,0,9700,3150,350,1.0,10,10,11.3,77777,9,999999999,129,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,6.6,50,102100,72,974,374,12,0,12,1400,0,1400,460,340,1.0,10,10,11.3,77777,9,999999999,129,0.1140,0,88,0.120,0.0,6.0 +1996,3,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,7.7,57,102100,0,0,370,0,0,0,0,0,0,0,350,1.0,10,10,11.3,77777,9,999999999,129,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,7.2,62,102200,0,0,361,0,0,0,0,0,0,0,350,1.5,10,10,11.3,77777,9,999999999,139,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,5.0,43,102200,0,0,375,0,0,0,0,0,0,0,50,1.0,10,10,11.3,77777,9,999999999,139,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.7,5.9,46,102200,0,0,366,0,0,0,0,0,0,0,50,1.3,9,9,11.3,77777,9,999999999,139,0.1140,0,88,0.120,999.0,99.0 +1996,3,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,6.6,49,102200,0,0,358,0,0,0,0,0,0,0,50,1.7,8,8,11.3,77777,9,999999999,139,0.1140,0,88,0.120,999.0,99.0 +1996,3,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.2,7.1,51,102200,0,0,351,0,0,0,0,0,0,0,50,2.0,7,7,11.3,77777,9,999999999,139,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,7.6,54,102200,0,0,351,0,0,0,0,0,0,0,60,2.3,7,7,11.3,77777,9,999999999,150,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.9,8.3,57,102200,0,0,347,0,0,0,0,0,0,0,60,2.6,6,6,11.3,77777,9,999999999,150,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,8.8,60,102200,0,0,344,0,0,0,0,0,0,0,60,2.9,5,5,11.3,77777,9,999999999,150,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.6,9.3,62,102200,0,0,341,0,0,0,0,0,0,0,60,3.3,4,4,11.3,77777,9,999999999,150,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,9.4,64,102200,0,0,337,0,0,0,0,0,0,0,60,3.6,3,3,11.3,77777,9,999999999,160,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,9.4,67,102200,36,676,331,8,7,7,800,400,800,190,70,4.1,2,2,11.3,77777,9,999999999,160,0.1150,0,88,0.120,0.0,6.0 +1996,3,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,9.4,64,102300,302,1375,345,115,52,103,12500,4400,11500,2440,70,4.1,9,6,11.3,3600,9,999999999,160,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,10.5,60,102300,596,1375,345,359,525,131,38200,51300,15900,2590,70,4.1,2,2,11.3,77777,9,999999999,160,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,11.1,48,102300,852,1375,370,554,567,202,59300,58300,23000,4900,120,5.1,3,3,11.3,77777,9,999999999,160,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,11.1,48,102300,1051,1375,367,722,708,180,76900,72300,21500,5870,120,5.1,2,2,11.3,77777,9,999999999,170,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,10.5,44,102300,1180,1375,373,860,705,254,90600,71400,29200,11060,120,6.6,3,3,11.3,77777,9,999999999,170,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,10.5,44,102200,1230,1375,369,872,718,230,93200,73300,27400,11960,90,5.1,2,2,11.3,77777,9,999999999,170,0.1150,0,88,0.120,0.0,6.0 +1996,3,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,10.5,39,102100,1198,1375,384,854,681,260,90000,68900,29800,11940,110,5.1,3,3,11.3,77777,9,999999999,170,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,10.5,38,102000,1085,1375,383,771,709,211,81500,72000,24500,7270,90,5.1,2,2,11.3,77777,9,999999999,170,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,9.4,35,102000,900,1375,386,562,577,184,58700,57900,20700,4630,90,4.1,3,3,11.3,77777,9,999999999,170,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,9.4,34,102000,654,1375,384,375,466,152,39700,46300,17600,3120,90,4.6,2,2,11.3,77777,9,999999999,179,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,8.3,34,102000,366,1375,381,168,305,86,17500,25800,10600,1590,90,3.6,3,3,11.3,77777,9,999999999,179,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,9.4,43,102000,74,974,365,20,35,17,2200,1700,2100,350,120,2.0,2,2,11.3,77777,9,999999999,179,0.1150,0,88,0.120,0.0,6.0 +1996,3,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,13.3,73,102100,0,0,351,0,0,0,0,0,0,0,210,2.5,3,3,11.3,77777,9,999999999,179,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,12.2,63,102100,0,0,352,0,0,0,0,0,0,0,90,1.5,2,2,11.3,77777,9,999999999,179,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,12.2,65,102200,0,0,353,0,0,0,0,0,0,0,90,1.5,3,3,11.3,77777,9,999999999,189,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.6,12.8,69,102200,0,0,352,0,0,0,0,0,0,0,90,1.6,3,3,11.3,77777,9,999999999,189,0.1150,0,88,0.120,999.0,99.0 +1996,3,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.2,13.1,72,102200,0,0,351,0,0,0,0,0,0,0,90,1.6,3,3,11.3,77777,9,999999999,189,0.1150,0,88,0.120,999.0,99.0 +1996,3,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.7,13.3,75,102100,0,0,348,0,0,0,0,0,0,0,90,1.7,3,3,11.3,77777,9,999999999,189,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.2,13.4,78,102100,0,0,346,0,0,0,0,0,0,0,100,1.8,3,3,11.3,77777,9,999999999,189,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.9,13.7,81,102100,0,0,342,0,0,0,0,0,0,0,100,1.8,2,2,11.3,77777,9,999999999,200,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.5,13.9,85,102100,0,0,340,0,0,0,0,0,0,0,100,1.9,2,2,11.3,77777,9,999999999,200,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.2,14.1,87,102000,0,0,339,0,0,0,0,0,0,0,100,1.9,2,2,11.3,77777,9,999999999,200,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,13.8,90,102000,0,0,335,0,0,0,0,0,0,0,100,2.0,2,2,11.3,77777,9,999999999,200,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.8,86,102000,38,698,341,9,20,8,1000,600,1000,130,110,3.0,3,3,11.3,77777,9,999999999,200,0.1170,0,88,0.120,0.0,6.0 +1996,3,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.0,81,102100,307,1374,350,129,311,59,13700,24600,8200,1060,110,4.1,2,2,11.3,77777,9,999999999,209,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,15.0,68,102100,602,1374,367,369,567,120,38100,54300,14300,2360,120,4.6,3,3,11.3,77777,9,999999999,209,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,14.4,56,102100,857,1374,376,582,680,157,61200,68400,18400,3830,130,5.6,2,2,11.3,77777,9,999999999,209,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,13.8,48,102000,1056,1374,388,735,657,230,77000,66200,26000,7370,130,6.1,3,3,11.3,77777,9,999999999,220,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,13.8,47,101900,1184,1374,387,833,751,185,86800,75200,21700,7480,150,4.1,2,2,11.3,77777,9,999999999,220,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.7,14.4,44,101800,1234,1374,400,913,746,243,97100,75900,28700,12790,170,3.6,3,3,11.3,77777,9,999999999,220,0.1170,0,88,0.120,0.0,6.0 +1996,3,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,15.0,49,101800,1201,1374,391,853,754,194,91900,77400,24000,9220,210,5.6,2,2,11.3,77777,9,999999999,229,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,15.5,52,101800,1088,1374,393,724,704,167,78000,72300,20600,5930,230,6.6,3,3,11.3,77777,9,999999999,229,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,16.1,62,101800,902,1374,378,588,671,146,62400,68100,17600,3810,220,6.6,2,2,11.3,77777,9,999999999,229,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,16.1,64,101900,657,1374,380,428,541,169,45000,53800,19200,3520,220,5.6,3,3,11.3,77777,9,999999999,229,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,16.1,71,101900,369,1374,367,183,377,81,19200,32100,10600,1490,220,5.1,2,2,11.3,77777,9,999999999,240,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,16.1,76,102000,76,996,365,22,34,19,2400,1700,2300,390,230,3.0,3,3,11.3,77777,9,999999999,240,0.1170,0,88,0.120,0.0,6.0 +1996,3,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.6,81,102000,0,0,377,0,0,0,0,0,0,0,270,2.0,9,7,11.3,2400,9,999999999,240,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,14.4,70,102200,0,0,380,0,0,0,0,0,0,0,350,5.1,9,8,11.3,1500,9,999999999,250,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.8,67,102200,0,0,373,0,0,0,0,0,0,0,360,2.0,9,7,11.3,2400,9,999999999,250,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.9,14.4,71,102200,0,0,369,0,0,0,0,0,0,0,360,1.8,8,6,11.3,4850,9,999999999,250,0.1170,0,88,0.120,999.0,99.0 +1996,3,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.6,14.7,73,102100,0,0,368,0,0,0,0,0,0,0,360,1.5,8,6,11.3,7300,9,999999999,259,0.1170,0,88,0.120,999.0,99.0 +1996,3,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.3,14.9,76,102100,0,0,364,0,0,0,0,0,0,0,360,1.3,7,5,11.3,9750,9,999999999,259,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.9,15.0,78,102100,0,0,359,0,0,0,0,0,0,0,360,1.0,6,4,11.3,12200,9,999999999,259,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.7,15.4,81,102100,0,0,356,0,0,0,0,0,0,0,360,0.8,5,3,11.3,14650,9,999999999,270,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.5,15.6,83,102100,0,0,355,0,0,0,0,0,0,0,360,0.5,5,3,11.3,17100,9,999999999,270,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.3,15.8,85,102000,0,0,351,0,0,0,0,0,0,0,360,0.3,4,2,11.3,19550,9,999999999,270,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,15.5,87,102000,0,0,343,0,0,0,0,0,0,0,0,0.0,3,1,11.3,77777,9,999999999,270,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,16.1,93,102000,41,721,341,10,16,9,1200,700,1100,190,120,1.0,2,1,11.3,77777,9,999999999,279,0.1180,0,88,0.120,1.0,24.0 +1996,3,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.2,84,102000,313,1373,356,138,264,78,14300,21000,9600,1440,130,2.0,3,1,11.3,77777,9,999999999,279,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.7,71,102000,607,1373,373,361,532,126,38700,52300,15600,2500,150,1.5,2,1,11.3,77777,9,999999999,279,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,17.7,62,102000,862,1373,384,560,653,150,59200,65900,17700,3700,140,3.6,3,1,11.3,77777,9,999999999,279,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,16.6,52,102000,1060,1373,391,692,669,175,74000,68400,21000,5840,140,3.6,2,1,11.3,77777,9,999999999,279,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.3,16.6,49,102000,1188,1373,437,730,171,582,78500,18000,62900,24720,140,3.6,10,9,11.3,77777,9,999999999,279,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,15.5,43,101900,1237,1373,442,436,88,357,48300,9000,40100,17580,160,2.0,10,9,11.3,77777,9,999999999,279,0.1180,0,88,0.120,0.0,6.0 +1996,3,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,14.4,39,101900,1204,1373,416,764,569,265,80500,57500,29900,12450,260,3.0,9,4,11.3,77777,9,999999999,279,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,17.7,69,101900,1090,1373,387,731,527,312,77600,54900,33900,11180,330,4.6,9,4,11.3,7500,9,999999999,279,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,17.2,58,101900,905,1373,399,580,578,198,62700,59800,23100,5080,320,5.1,9,4,11.3,77777,9,999999999,279,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,17.2,60,101900,659,1373,395,392,231,281,41900,23300,30700,6920,310,5.1,9,4,11.3,77777,9,999999999,279,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,17.7,69,101900,371,1373,387,121,82,98,13100,7200,11200,2160,320,2.0,9,4,11.3,77777,9,999999999,279,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,17.7,78,102000,78,995,401,18,1,17,2000,0,2000,620,340,2.0,10,9,11.3,77777,9,999999999,279,0.1180,0,88,0.120,0.0,6.0 +1996,3,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.7,81,102100,0,0,398,0,0,0,0,0,0,0,360,3.0,10,9,11.3,77777,9,999999999,279,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.7,78,102100,0,0,401,0,0,0,0,0,0,0,20,2.5,10,9,11.3,1500,9,999999999,279,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.2,78,102100,0,0,398,0,0,0,0,0,0,0,20,2.5,10,9,11.3,1500,9,999999999,279,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,17.6,80,102100,0,0,398,0,0,0,0,0,0,0,30,2.6,10,9,11.3,4063,9,999999999,279,0.1180,0,88,0.120,999.0,99.0 +1996,3,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.9,17.8,82,102100,0,0,389,0,0,0,0,0,0,0,40,2.6,10,8,11.3,6625,9,999999999,279,0.1180,0,88,0.120,999.0,99.0 +1996,3,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.6,17.9,85,102100,0,0,387,0,0,0,0,0,0,0,50,2.7,10,8,11.3,9188,9,999999999,279,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.3,17.8,86,102000,0,0,386,0,0,0,0,0,0,0,70,2.8,10,8,11.3,11750,9,999999999,279,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.2,18.0,87,102000,0,0,379,0,0,0,0,0,0,0,80,2.8,9,7,11.3,14313,9,999999999,279,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.0,18.1,89,102000,0,0,379,0,0,0,0,0,0,0,90,2.9,9,7,11.3,16875,9,999999999,279,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.9,18.1,89,102000,0,0,374,0,0,0,0,0,0,0,100,2.9,9,6,11.3,19438,9,999999999,290,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,102000,0,0,371,0,0,0,0,0,0,0,110,3.0,9,6,11.3,77777,9,999999999,290,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.3,90,102000,44,766,404,8,0,8,1000,0,1000,310,100,3.0,10,10,11.3,77777,9,999999999,290,0.1190,0,88,0.120,0.0,6.0 +1996,3,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.8,87,102000,319,1372,411,57,0,57,6600,0,6600,2190,100,5.1,10,10,11.3,77777,9,999999999,290,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,102100,612,1372,419,139,0,139,16000,0,16000,5760,130,2.5,10,10,11.3,3600,9,999999999,290,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,102100,867,1372,424,219,0,219,25500,0,25500,9680,150,2.5,10,10,11.3,3600,9,999999999,300,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.0,69,102000,1064,1372,441,280,0,280,33000,0,33000,12830,130,4.6,10,10,11.3,77777,9,999999999,300,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,18.8,62,101900,1192,1372,443,320,0,320,38000,0,38000,14650,130,3.6,10,10,11.3,77777,9,999999999,309,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,18.3,60,101900,1240,1372,442,267,0,267,32300,0,32300,12880,120,2.5,10,10,11.3,2700,9,999999999,309,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,18.3,57,101800,1207,1372,448,259,0,259,31300,0,31300,12500,120,3.0,10,10,11.3,2700,9,999999999,309,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,18.3,55,101700,1093,1372,452,231,0,231,27700,0,27700,11160,120,6.1,10,10,11.3,2700,9,999999999,320,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,17.7,53,101700,907,1372,451,185,0,185,22000,0,22000,8690,150,4.1,10,10,11.3,2700,9,999999999,320,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,101700,662,1372,424,123,0,123,14500,0,14500,5430,220,5.1,10,10,11.3,1350,9,999999999,329,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,18.8,79,101700,374,1372,420,71,0,71,8200,0,8200,2770,220,3.0,10,10,11.3,3600,9,999999999,329,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.8,81,101800,80,1018,417,13,0,13,1500,0,1500,500,210,3.6,10,10,11.3,1350,9,999999999,340,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,102000,0,0,394,0,0,0,0,0,0,0,270,6.6,10,10,6.4,1020,9,999999999,340,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.7,96,102000,0,0,394,0,0,0,0,0,0,0,240,5.6,10,10,8.0,1800,9,999999999,340,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.3,97,102000,0,0,398,0,0,0,0,0,0,0,150,6.1,10,10,8.0,1800,9,999999999,350,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,18.6,98,102000,0,0,388,0,0,0,0,0,0,0,150,5.7,9,9,8.0,4325,9,999999999,350,0.1190,0,88,0.120,999.0,99.0 +1996,3,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,18.6,98,102000,0,0,380,0,0,0,0,0,0,0,150,5.2,8,8,8.0,6850,9,999999999,359,0.1190,0,88,0.120,999.0,99.0 +1996,3,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.9,18.5,98,101900,0,0,373,0,0,0,0,0,0,0,150,4.8,7,7,8.0,9375,9,999999999,359,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.9,18.4,97,101900,0,0,373,0,0,0,0,0,0,0,160,4.3,7,7,8.0,11900,9,999999999,359,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,18.5,97,101900,0,0,370,0,0,0,0,0,0,0,160,3.9,6,6,8.0,14425,9,999999999,370,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,18.3,96,101900,0,0,366,0,0,0,0,0,0,0,160,3.4,5,5,8.0,16950,9,999999999,370,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.1,18.2,95,101900,0,0,364,0,0,0,0,0,0,0,160,3.0,4,4,8.0,19475,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.7,93,101900,0,0,359,0,0,0,0,0,0,0,160,2.5,3,3,11.3,77777,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,17.7,84,101900,47,789,364,14,39,12,1600,1400,1500,200,160,3.6,2,2,11.3,77777,9,999999999,390,0.1210,0,88,0.120,0.0,6.0 +1996,3,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.7,84,101900,324,1371,367,151,354,67,16000,28700,9200,1210,160,3.6,3,3,11.3,77777,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.8,81,102000,617,1371,373,367,545,122,38100,52500,14400,2430,160,4.1,2,2,11.3,77777,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,19.4,74,102000,871,1371,419,342,66,300,37600,6700,33300,9850,160,5.6,9,9,11.3,3300,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,20.0,67,101900,1069,1371,398,711,762,117,76700,77400,16200,3900,160,3.0,2,2,11.3,77777,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,20.5,65,101900,1196,1371,408,870,784,186,90700,78600,22000,7870,210,2.5,3,3,11.3,77777,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,19.4,62,101800,1244,1371,435,687,126,572,75600,13200,63600,26520,210,4.1,9,9,11.3,77777,9,999999999,379,0.1210,0,88,0.120,0.0,6.0 +1996,3,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,19.4,62,101700,1210,1371,435,409,156,271,46000,17000,31000,12090,220,8.7,9,9,11.3,77777,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.0,69,101700,1096,1371,429,545,344,270,58800,35900,30000,9720,220,10.2,9,9,11.3,77777,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.5,71,101600,909,1371,430,268,15,258,31000,1300,30200,11180,220,9.7,9,9,11.3,77777,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.5,82,101600,664,1371,417,180,68,146,19700,6700,16500,4600,220,7.7,9,9,11.3,77777,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.0,85,101700,376,1371,422,60,0,60,7000,0,7000,2420,220,5.6,10,10,11.3,2400,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,16.6,93,101900,81,1017,390,13,0,13,1500,0,1500,500,330,5.1,10,10,6.4,1200,9,999999999,379,0.1210,0,88,0.120,11.0,6.0 +1996,3,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,101800,0,0,394,0,0,0,0,0,0,0,360,3.0,10,10,11.3,2700,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,101800,0,0,394,0,0,0,0,0,0,0,120,4.6,10,10,11.3,2700,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,17.7,93,101700,0,0,397,0,0,0,0,0,0,0,120,5.1,10,10,11.3,2700,9,999999999,379,0.1210,0,88,0.120,11.0,6.0 +1996,3,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.7,17.9,95,101700,0,0,386,0,0,0,0,0,0,0,120,4.7,9,9,11.3,5113,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.4,17.8,96,101700,0,0,376,0,0,0,0,0,0,0,120,4.2,8,8,11.3,7525,9,999999999,379,0.1210,0,88,0.120,999.0,99.0 +1996,3,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.1,17.6,97,101700,0,0,368,0,0,0,0,0,0,0,120,3.8,7,7,11.3,9938,9,999999999,379,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.8,17.3,97,101700,0,0,362,0,0,0,0,0,0,0,120,3.3,6,6,11.3,12350,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.6,17.2,98,101700,0,0,358,0,0,0,0,0,0,0,120,2.9,5,5,11.3,14763,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.3,17.0,98,101700,0,0,353,0,0,0,0,0,0,0,120,2.4,4,4,11.3,17175,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.2,16.8,97,101700,0,0,350,0,0,0,0,0,0,0,120,2.0,3,3,11.3,19588,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,16.1,97,101700,0,0,343,0,0,0,0,0,0,0,120,1.5,2,2,11.3,77777,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,16.6,93,101700,51,811,352,14,65,10,1600,2700,1400,170,130,3.6,3,3,11.3,77777,9,999999999,370,0.1220,0,88,0.120,13.0,24.0 +1996,3,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,101700,330,1371,358,148,347,65,15800,28300,9000,1170,160,5.1,2,2,11.3,77777,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.8,87,101800,622,1371,372,346,475,130,37100,46900,15700,2600,180,4.1,3,3,11.3,77777,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,18.8,79,101800,876,1371,376,565,713,109,59700,71400,13900,2680,210,2.0,2,2,11.3,77777,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,19.4,74,101800,1073,1371,389,759,762,163,79100,76300,19200,5000,190,2.5,3,3,11.3,77777,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,19.4,76,101800,1199,1371,382,868,814,156,92400,82300,20100,6970,200,6.6,2,2,11.3,77777,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101700,1247,1371,393,891,747,211,95800,76600,26000,11940,200,4.1,3,3,11.3,77777,9,999999999,370,0.1220,0,88,0.120,0.0,6.0 +1996,3,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.4,71,101700,1212,1371,389,870,827,139,89400,82800,16000,5240,330,2.0,2,2,11.3,77777,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.8,60,101600,1098,1371,425,663,496,266,71700,51800,30100,9630,320,4.6,9,8,11.3,77777,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,18.8,62,101500,912,1371,415,501,463,193,54400,48000,22400,4990,320,5.1,9,7,11.3,77777,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.8,64,101500,666,1371,418,282,216,176,30300,22300,19500,3840,330,5.1,9,8,11.3,7500,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.3,71,101600,379,1371,399,108,125,73,11700,11000,8700,1350,300,4.1,9,7,11.3,7500,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,18.3,82,101600,83,1039,373,34,37,31,3700,1900,3600,640,300,3.0,3,3,11.3,77777,9,999999999,370,0.1220,0,88,0.120,0.0,6.0 +1996,3,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,18.8,84,101600,0,0,370,0,0,0,0,0,0,0,320,1.0,2,2,11.3,77777,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.8,87,101600,0,0,372,0,0,0,0,0,0,0,0,0.0,3,3,11.3,77777,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.8,87,101600,0,0,368,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.2,19.2,88,101600,0,0,372,0,0,0,0,0,0,0,0,0.0,3,3,11.3,19550,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,19.3,89,101600,0,0,375,0,0,0,0,0,0,0,0,0.0,4,4,11.3,17100,9,999999999,370,0.1220,0,88,0.120,999.0,99.0 +1996,3,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,19.3,90,101600,0,0,375,0,0,0,0,0,0,0,0,0.0,5,4,11.3,14650,9,999999999,370,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.9,19.2,90,101600,0,0,377,0,0,0,0,0,0,0,0,0.0,6,5,11.3,12200,9,999999999,370,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.9,19.3,91,101600,0,0,380,0,0,0,0,0,0,0,0,0.0,6,6,11.3,9750,9,999999999,370,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.8,19.3,91,101600,0,0,384,0,0,0,0,0,0,0,0,0.0,7,7,11.3,7300,9,999999999,370,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.9,19.3,91,101500,0,0,385,0,0,0,0,0,0,0,0,0.0,8,7,11.3,4850,9,999999999,370,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,18.8,90,101500,0,0,388,0,0,0,0,0,0,0,0,0.0,9,8,11.3,2400,9,999999999,370,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,18.3,87,101600,54,833,364,15,54,12,1700,2200,1600,200,50,2.0,2,2,11.3,77777,9,999999999,370,0.1240,0,88,0.120,0.0,6.0 +1996,3,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,18.3,82,101500,335,1370,373,175,442,67,17900,36300,9000,1200,80,3.6,3,3,11.3,77777,9,999999999,370,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,18.3,76,101500,627,1370,393,341,385,164,35700,38000,18300,3370,90,3.6,9,7,11.3,77777,9,999999999,370,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.3,69,101500,881,1370,408,328,226,183,36500,24300,20900,4530,140,3.6,9,8,11.3,77777,9,999999999,359,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,18.8,66,101500,1077,1370,409,569,299,334,62100,32400,36600,11380,100,2.0,9,7,11.3,4500,9,999999999,359,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.0,61,101400,1203,1370,433,638,149,506,69200,15800,55300,22370,150,3.6,9,8,11.3,4500,9,999999999,359,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,20.0,57,101300,1250,1370,461,345,0,345,41000,0,41000,15690,170,2.5,10,10,11.3,4800,9,999999999,359,0.1240,0,88,0.120,0.0,6.0 +1996,3,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,20.0,63,101200,1215,1370,451,335,0,335,39800,0,39800,15240,200,3.0,10,10,11.3,4800,9,999999999,359,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.0,69,101200,1100,1370,441,241,0,241,28900,0,28900,11570,230,4.6,10,10,11.3,2400,9,999999999,359,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,19.4,69,101000,914,1370,437,197,0,197,23300,0,23300,9170,210,5.1,10,10,11.3,2400,9,999999999,359,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.4,71,101000,669,1370,434,137,0,137,16000,0,16000,5950,190,4.1,10,10,11.3,2400,9,999999999,359,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,101000,381,1370,431,69,0,69,8000,0,8000,2730,200,4.1,10,10,11.3,2400,9,999999999,359,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,101200,85,1039,401,9,0,9,1100,0,1100,360,320,4.1,10,10,9.7,300,9,999999999,350,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.3,97,101400,0,0,398,0,0,0,0,0,0,0,330,3.0,10,10,9.7,300,9,999999999,350,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.3,97,101500,0,0,398,0,0,0,0,0,0,0,300,1.0,10,10,9.7,900,9,999999999,350,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,18.3,97,101400,0,0,398,0,0,0,0,0,0,0,210,1.0,10,10,9.7,900,9,999999999,350,0.1240,0,88,0.120,22.0,6.0 +1996,3,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.7,18.4,98,101300,0,0,386,0,0,0,0,0,0,0,200,1.0,9,9,9.7,3538,9,999999999,350,0.1240,0,88,0.120,999.0,99.0 +1996,3,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.3,18.2,99,101300,0,0,376,0,0,0,0,0,0,0,180,1.0,8,8,9.7,6175,9,999999999,350,0.1240,0,88,0.120,999.0,99.0 +1996,3,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.9,17.9,100,101300,0,0,368,0,0,0,0,0,0,0,170,1.0,7,7,9.7,8813,9,999999999,350,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,17.5,100,101300,0,0,361,0,0,0,0,0,0,0,160,1.0,6,6,9.7,11450,9,999999999,350,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.3,17.3,100,101200,0,0,357,0,0,0,0,0,0,0,140,1.0,5,5,9.7,14088,9,999999999,350,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,17.0,100,101200,0,0,352,0,0,0,0,0,0,0,130,1.0,4,4,9.7,16725,9,999999999,340,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,16.7,100,101200,0,0,347,0,0,0,0,0,0,0,110,1.0,3,3,9.7,19363,9,999999999,340,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,16.1,100,101200,0,0,341,0,0,0,0,0,0,0,100,1.0,2,2,4.8,77777,9,999999999,340,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,17.7,100,101200,57,856,353,21,74,16,2300,3100,2100,280,90,1.0,3,3,6.4,77777,9,999999999,340,0.1250,0,88,0.120,23.0,24.0 +1996,3,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,101200,341,1369,358,185,515,56,19100,43000,8400,1040,90,2.0,2,2,8.0,77777,9,999999999,340,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.2,78,101300,632,1369,370,367,592,93,38800,58100,11900,1960,120,4.6,3,3,11.3,77777,9,999999999,340,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,17.2,71,101300,885,1369,374,527,608,133,56300,61900,16200,3440,130,4.1,2,2,11.3,77777,9,999999999,350,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,17.2,67,101200,1081,1369,383,603,465,236,65900,48600,27400,8190,150,2.0,3,3,11.3,77777,9,999999999,350,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,18.3,64,101200,1206,1369,423,325,111,227,37100,12000,26500,10120,140,1.5,9,9,11.3,3000,9,999999999,350,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,17.7,64,101100,1253,1369,432,342,0,342,40700,0,40700,15600,240,1.0,10,10,11.3,5400,9,999999999,350,0.1250,0,88,0.120,0.0,6.0 +1996,3,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.3,66,101100,1218,1369,433,332,0,332,39400,0,39400,15150,270,1.0,10,10,11.3,5400,9,999999999,350,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.3,74,101100,1103,1369,423,298,0,298,35100,0,35100,13620,340,1.0,10,10,11.3,3900,9,999999999,359,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.3,74,101000,916,1369,423,241,0,241,28100,0,28100,10710,340,0.5,10,10,11.3,3900,9,999999999,359,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.8,76,101100,671,1369,423,166,0,166,19100,0,19100,6890,350,0.5,10,10,11.3,3900,9,999999999,359,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.3,97,101200,384,1369,398,54,0,54,6400,0,6400,2240,340,4.1,10,10,3.2,300,9,999999999,359,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.3,93,101000,87,1061,401,13,0,13,1500,0,1500,500,130,1.5,10,10,11.3,900,9,999999999,359,0.1250,0,88,0.120,22.0,6.0 +1996,3,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,101000,0,0,393,0,0,0,0,0,0,0,150,5.1,9,9,11.3,1200,9,999999999,370,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.7,84,101100,0,0,406,0,0,0,0,0,0,0,180,3.0,10,10,11.3,1500,9,999999999,370,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.0,90,101100,0,0,407,0,0,0,0,0,0,0,190,3.2,10,10,11.3,1500,9,999999999,370,0.1250,0,88,0.120,0.0,6.0 +1996,3,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.6,18.2,91,101100,0,0,407,0,0,0,0,0,0,0,200,3.5,10,10,11.3,1335,9,999999999,370,0.1250,0,88,0.120,999.0,99.0 +1996,3,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.7,18.5,92,101000,0,0,397,0,0,0,0,0,0,0,210,3.7,10,9,11.3,1170,9,999999999,370,0.1250,0,88,0.120,999.0,99.0 +1996,4,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.8,18.8,92,101000,0,0,398,0,0,0,0,0,0,0,220,4.0,10,9,11.3,1005,9,999999999,370,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.9,19.1,92,101000,0,0,391,0,0,0,0,0,0,0,240,4.2,10,8,11.3,840,9,999999999,379,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.9,19.3,92,101000,0,0,391,0,0,0,0,0,0,0,250,4.5,9,8,11.3,675,9,999999999,379,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,19.6,92,101000,0,0,386,0,0,0,0,0,0,0,260,4.7,9,7,11.3,510,9,999999999,379,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,19.7,91,101000,0,0,387,0,0,0,0,0,0,0,270,4.4,9,7,11.3,345,9,999999999,379,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,101000,0,0,381,0,0,0,0,0,0,0,280,4.1,9,6,11.3,180,9,999999999,379,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,19.4,93,101000,61,878,397,13,2,13,1500,0,1500,480,310,4.1,10,9,11.3,270,9,999999999,390,0.1260,0,88,0.110,0.0,6.0 +1996,4,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,19.4,93,101100,346,1368,397,92,40,81,10000,3500,9100,2150,300,4.6,10,9,11.3,570,9,999999999,379,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.2,84,101100,637,1368,392,226,49,203,24800,4800,22500,5890,310,4.6,10,9,11.3,960,9,999999999,359,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.6,84,101200,889,1368,388,424,79,372,46500,8100,41200,11810,320,6.1,10,9,11.3,240,9,999999999,350,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.2,76,101200,1085,1368,381,596,392,285,63900,40900,31400,10110,330,4.6,9,6,11.3,2400,9,999999999,340,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.2,76,101200,1210,1368,381,628,374,298,68200,39100,33500,14910,290,5.6,9,6,11.3,1500,9,999999999,329,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.6,75,101200,1256,1368,378,773,506,308,84100,53000,35300,18480,300,7.2,9,6,11.3,1500,9,999999999,320,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,15.0,71,101100,1220,1368,373,714,420,338,76500,43900,37200,17660,300,7.2,9,6,11.3,7500,9,999999999,309,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,13.8,70,101100,1105,1368,366,457,212,285,50600,23000,31900,10020,310,7.2,9,6,11.3,900,9,999999999,300,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,12.7,73,101100,918,1368,356,376,237,217,41600,25500,24400,5700,310,7.7,9,6,11.3,540,9,999999999,290,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,12.2,72,101100,673,1368,353,317,296,172,34400,30600,19300,3750,310,7.7,9,6,11.3,600,9,999999999,279,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,11.1,72,101100,386,1368,364,74,26,67,8200,2300,7500,1900,300,7.7,10,9,11.3,720,9,999999999,270,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,10.5,72,101200,89,1060,343,22,9,21,2400,600,2300,530,310,6.6,9,6,11.3,690,9,999999999,259,0.1260,0,88,0.110,0.0,6.0 +1996,4,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,10.0,70,101200,0,0,343,0,0,0,0,0,0,0,300,6.1,9,6,11.3,720,9,999999999,250,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,9.4,67,101300,0,0,342,0,0,0,0,0,0,0,320,7.7,9,6,11.3,900,9,999999999,240,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,10.0,70,101400,0,0,343,0,0,0,0,0,0,0,330,6.1,9,6,11.3,960,9,999999999,229,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.3,9.7,69,101400,0,0,341,0,0,0,0,0,0,0,330,6.1,9,6,11.3,968,9,999999999,220,0.1260,0,88,0.110,999.0,99.0 +1996,4,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.1,9.3,68,101400,0,0,340,0,0,0,0,0,0,0,330,6.1,9,6,11.3,975,9,999999999,209,0.1260,0,88,0.110,999.0,99.0 +1996,4,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.7,8.8,68,101400,0,0,335,0,0,0,0,0,0,0,330,6.1,9,5,11.3,983,9,999999999,200,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.5,8.5,67,101400,0,0,333,0,0,0,0,0,0,0,330,6.1,9,5,11.3,990,9,999999999,189,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.3,8.0,66,101400,0,0,332,0,0,0,0,0,0,0,330,6.1,9,5,11.3,998,9,999999999,179,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.1,7.5,64,101400,0,0,330,0,0,0,0,0,0,0,330,6.1,9,5,11.3,1005,9,999999999,170,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.9,7.1,64,101500,0,0,326,0,0,0,0,0,0,0,330,6.1,9,4,11.3,1013,9,999999999,160,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,6.6,62,101500,0,0,325,0,0,0,0,0,0,0,330,6.1,9,4,11.3,1020,9,999999999,150,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.8,6.6,62,101500,64,900,325,17,17,15,1800,800,1800,310,340,4.1,9,4,11.3,990,9,999999999,139,0.1280,0,88,0.110,0.0,6.0 +1996,4,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,6.6,62,101600,352,1367,325,136,210,82,14600,17800,10000,1550,340,5.1,9,4,11.3,810,9,999999999,139,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,6.1,60,101700,642,1367,325,338,303,195,36000,31000,21400,4330,360,3.0,9,4,11.3,900,9,999999999,139,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,6.6,53,101700,894,1367,326,643,819,107,68300,82300,14300,2720,340,4.1,2,1,11.3,77777,9,999999999,139,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,6.1,50,101800,1088,1367,327,785,823,130,84000,83400,17500,4450,360,4.1,3,1,11.3,77777,9,999999999,139,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,7.2,50,101800,1213,1367,334,880,844,131,90600,84500,15300,5150,340,4.6,2,1,11.3,77777,9,999999999,139,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,8.3,50,101700,1259,1367,340,922,843,145,94500,84400,16500,6670,300,5.1,3,1,11.3,77777,9,999999999,139,0.1280,0,88,0.110,0.0,6.0 +1996,4,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,8.8,52,101700,1223,1367,334,955,917,134,98100,91900,15800,5420,280,5.1,0,0,11.3,77777,9,999999999,139,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,10.0,57,101600,1107,1367,342,793,817,131,85000,82800,17700,4680,280,5.1,3,1,11.3,77777,9,999999999,139,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,10.0,58,101600,921,1367,340,663,821,110,70500,82700,14700,2880,320,5.1,2,1,11.3,77777,9,999999999,139,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,9.4,56,101600,675,1367,339,436,676,102,46200,66900,13100,2200,330,6.1,3,1,11.3,77777,9,999999999,139,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,10.0,63,101700,388,1367,328,220,566,59,23000,49500,8900,1130,320,4.6,0,0,11.3,77777,9,999999999,139,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,9.4,64,101700,91,1082,323,31,142,19,3400,6900,2800,330,330,4.1,0,0,11.3,77777,9,999999999,139,0.1280,0,88,0.110,0.0,6.0 +1996,4,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,101800,0,0,318,0,0,0,0,0,0,0,360,3.0,0,0,11.3,77777,9,999999999,139,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,10.0,75,101900,0,0,316,0,0,0,0,0,0,0,350,4.1,0,0,11.3,77777,9,999999999,139,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,10.0,78,101900,0,0,313,0,0,0,0,0,0,0,20,2.0,0,0,11.3,77777,9,999999999,139,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.6,9.9,78,101900,0,0,312,0,0,0,0,0,0,0,20,2.1,0,0,11.3,77777,9,999999999,139,0.1280,0,88,0.110,999.0,99.0 +1996,4,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.5,9.7,78,101900,0,0,317,0,0,0,0,0,0,0,20,2.1,1,1,11.3,77777,9,999999999,139,0.1280,0,88,0.110,999.0,99.0 +1996,4,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.0,9.4,79,102000,0,0,315,0,0,0,0,0,0,0,20,2.2,1,1,11.3,77777,9,999999999,139,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,9.3,79,102000,0,0,318,0,0,0,0,0,0,0,30,2.3,2,2,11.3,77777,9,999999999,139,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.6,9.0,79,102000,0,0,317,0,0,0,0,0,0,0,30,2.3,2,2,11.3,77777,9,999999999,139,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.5,8.8,78,102000,0,0,316,0,0,0,0,0,0,0,30,2.4,2,2,11.3,77777,9,999999999,139,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.3,8.6,78,102000,0,0,318,0,0,0,0,0,0,0,30,2.4,3,3,11.3,77777,9,999999999,139,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,8.3,77,102000,0,0,318,0,0,0,0,0,0,0,30,2.5,3,3,11.3,77777,9,999999999,139,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,9.4,72,102000,68,922,325,19,76,13,2100,3400,1800,220,50,3.6,2,2,11.3,77777,9,999999999,139,0.1290,0,88,0.110,0.0,6.0 +1996,4,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,8.3,60,102100,357,1367,335,148,283,74,15700,23800,9500,1350,50,4.1,3,3,11.3,77777,9,999999999,139,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,10.5,58,102100,647,1367,347,444,774,77,46800,75600,10900,1660,50,4.6,2,2,11.3,77777,9,999999999,150,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,11.1,51,102200,898,1367,365,591,736,107,62800,74000,14100,2740,80,3.6,3,3,11.3,77777,9,999999999,150,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,11.1,46,102200,1092,1367,370,791,790,159,82800,79300,19200,5210,80,3.0,2,2,11.3,77777,9,999999999,150,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,10.5,42,102100,1216,1367,378,838,795,130,86200,79600,15100,5210,150,3.0,3,3,11.3,77777,9,999999999,160,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,10.5,40,102100,1261,1367,378,934,838,160,99800,84900,21200,9280,160,2.5,2,2,11.3,77777,9,999999999,160,0.1290,0,88,0.110,0.0,6.0 +1996,4,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,11.1,40,102000,1225,1367,385,913,793,202,94800,79300,23500,9530,140,4.1,3,3,11.3,77777,9,999999999,160,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,10.0,39,101900,1109,1367,409,484,168,347,53400,17900,38800,12800,170,3.0,9,9,11.3,77777,9,999999999,170,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,10.5,38,101900,923,1367,416,418,295,218,46100,31800,24600,5760,120,1.5,9,9,11.3,77777,9,999999999,170,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,11.1,39,101800,677,1367,417,158,85,115,17800,8800,13400,2850,60,2.0,9,9,11.3,77777,9,999999999,170,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,11.1,42,101800,391,1367,382,198,480,61,20700,42000,8700,1160,320,2.5,3,3,11.3,77777,9,999999999,170,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.8,67,101800,93,1082,357,27,111,18,3100,5400,2600,310,320,4.1,2,2,11.3,77777,9,999999999,179,0.1290,0,88,0.110,0.0,6.0 +1996,4,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,12.8,68,101900,0,0,354,0,0,0,0,0,0,0,320,2.1,3,3,11.2,77777,9,999999999,179,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,11.6,63,101900,0,0,348,0,0,0,0,0,0,0,10,2.5,2,2,11.3,77777,9,999999999,179,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,11.1,65,102000,0,0,346,0,0,0,0,0,0,0,10,2.0,3,3,11.3,77777,9,999999999,189,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.6,11.6,68,101900,0,0,346,0,0,0,0,0,0,0,20,2.1,3,3,11.3,77777,9,999999999,189,0.1290,0,88,0.110,999.0,99.0 +1996,4,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,12.1,71,101900,0,0,346,0,0,0,0,0,0,0,30,2.3,3,3,11.3,77777,9,999999999,189,0.1290,0,88,0.110,999.0,99.0 +1996,4,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.1,12.4,74,101900,0,0,341,0,0,0,0,0,0,0,40,2.4,3,2,11.3,77777,9,999999999,200,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,12.9,77,101800,0,0,341,0,0,0,0,0,0,0,60,2.5,3,2,11.3,77777,9,999999999,200,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.9,13.3,79,101800,0,0,341,0,0,0,0,0,0,0,70,2.6,2,2,11.3,77777,9,999999999,200,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,13.6,82,101800,0,0,341,0,0,0,0,0,0,0,80,2.8,2,2,11.3,77777,9,999999999,200,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.6,14.1,85,101800,0,0,336,0,0,0,0,0,0,0,90,2.9,2,1,11.3,77777,9,999999999,209,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,14.4,87,101700,0,0,337,0,0,0,0,0,0,0,100,3.0,2,1,11.3,77777,9,999999999,209,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,101800,72,967,340,19,12,18,2100,700,2000,450,120,3.0,3,1,11.3,77777,9,999999999,209,0.1310,0,88,0.110,0.0,6.0 +1996,4,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,15.0,76,101800,362,1366,350,154,246,89,16500,21200,10900,1710,140,4.6,2,1,11.3,77777,9,999999999,220,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,15.0,66,101900,652,1366,361,373,454,156,39500,45200,17900,3220,150,4.1,3,1,11.3,77777,9,999999999,220,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,13.8,54,101900,902,1366,371,583,588,195,60800,58900,21800,4930,140,4.1,2,1,11.3,77777,9,999999999,220,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,13.8,54,101900,1096,1366,382,618,387,308,65900,40300,33400,11300,180,1.0,9,4,11.3,1500,9,999999999,220,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.0,54,101800,1219,1366,390,833,545,346,89200,56900,38200,18180,180,2.0,9,4,11.3,1800,9,999999999,220,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,15.0,54,101800,1264,1366,390,778,485,329,84200,50800,37100,20760,240,1.0,9,4,11.3,1800,9,999999999,229,0.1310,0,88,0.110,0.0,6.0 +1996,4,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,15.5,52,101700,1227,1366,396,698,389,348,74700,40600,38100,18850,240,2.0,9,4,11.3,1800,9,999999999,229,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,16.1,54,101700,1112,1366,385,769,641,247,80700,64700,27900,9070,200,4.1,3,1,11.3,77777,9,999999999,229,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,16.6,60,101600,925,1366,380,605,608,194,63300,61100,21900,5070,190,4.1,2,1,11.3,77777,9,999999999,229,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,16.6,60,101600,679,1366,380,411,514,155,43800,51500,18100,3240,200,4.6,3,1,11.3,77777,9,999999999,240,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,16.6,66,101600,393,1366,371,175,277,95,18700,24600,11600,1830,200,4.1,2,1,11.3,77777,9,999999999,240,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.2,78,101600,95,1104,361,27,19,25,2900,1200,2800,620,200,3.0,3,1,11.3,77777,9,999999999,240,0.1310,0,88,0.110,0.0,6.0 +1996,4,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.2,84,101600,0,0,356,0,0,0,0,0,0,0,210,2.5,2,1,11.3,77777,9,999999999,240,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.2,87,101700,0,0,353,0,0,0,0,0,0,0,200,2.0,3,1,11.3,77777,9,999999999,240,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,101700,0,0,344,0,0,0,0,0,0,0,240,1.5,2,1,11.3,77777,9,999999999,250,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.7,16.7,94,101700,0,0,344,0,0,0,0,0,0,0,220,1.4,2,1,11.3,77777,9,999999999,250,0.1310,0,88,0.110,999.0,99.0 +1996,4,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.8,16.8,94,101700,0,0,349,0,0,0,0,0,0,0,200,1.4,2,2,11.3,77777,9,999999999,250,0.1310,0,88,0.110,999.0,99.0 +1996,4,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,16.7,95,101700,0,0,348,0,0,0,0,0,0,0,170,1.3,2,2,11.3,77777,9,999999999,250,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,16.8,96,101700,0,0,348,0,0,0,0,0,0,0,150,1.3,3,2,11.3,77777,9,999999999,259,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,16.7,95,101700,0,0,348,0,0,0,0,0,0,0,130,1.2,3,2,11.3,77777,9,999999999,259,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.6,16.7,94,101700,0,0,352,0,0,0,0,0,0,0,110,1.1,3,3,11.3,77777,9,999999999,259,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.6,16.7,94,101700,0,0,352,0,0,0,0,0,0,0,80,1.1,3,3,11.3,77777,9,999999999,259,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,101600,0,0,352,0,0,0,0,0,0,0,60,1.0,3,3,9.7,77777,9,999999999,259,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,17.2,97,101700,76,990,349,26,130,16,2800,6800,2200,300,40,1.5,2,2,9.7,77777,9,999999999,270,0.1320,0,88,0.110,0.0,6.0 +1996,4,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.7,87,101700,367,1365,365,170,429,55,17800,36900,7900,1050,50,2.5,3,3,8.0,77777,9,999999999,270,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,17.7,76,101700,657,1365,372,441,720,95,46900,71100,12600,2040,150,3.0,2,2,11.3,77777,9,999999999,270,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.7,71,101700,906,1365,402,550,373,302,59100,40000,32500,8300,180,1.5,9,8,11.3,77777,9,999999999,270,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.5,56,101800,1099,1365,384,771,755,163,80700,75800,19500,5410,180,1.5,2,2,11.3,77777,9,999999999,270,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,15.5,52,101700,1222,1365,393,839,783,137,86100,78400,15700,5530,220,2.0,3,3,11.3,77777,9,999999999,270,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,15.0,47,101700,1267,1365,395,920,849,132,94600,85100,15400,6620,220,3.0,2,2,11.3,77777,9,999999999,270,0.1320,0,88,0.110,0.0,6.0 +1996,4,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,14.4,45,101600,1230,1365,398,818,710,177,86100,71500,21500,8820,210,4.1,3,3,11.3,77777,9,999999999,270,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,17.2,56,101600,1114,1365,394,776,760,156,81700,76500,19100,5450,210,4.6,2,2,11.3,77777,9,999999999,270,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,17.7,60,101500,927,1365,396,620,713,136,66600,72800,17000,3730,210,5.1,3,3,11.3,77777,9,999999999,270,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.3,74,101500,682,1365,411,337,248,213,36000,25700,23100,4860,210,2.5,10,9,11.3,77777,9,999999999,270,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.3,74,101500,395,1365,411,99,38,88,10900,3400,9900,2420,210,2.5,10,9,11.3,77777,9,999999999,279,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,17.7,78,101500,97,1103,401,18,6,17,1900,400,1900,440,270,2.0,10,9,11.3,77777,9,999999999,279,0.1320,0,88,0.110,0.0,6.0 +1996,4,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.7,84,101600,0,0,395,0,0,0,0,0,0,0,330,1.5,10,9,11.3,77777,9,999999999,279,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.7,84,101600,0,0,395,0,0,0,0,0,0,0,0,0.0,10,9,11.3,77777,9,999999999,279,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,101600,0,0,389,0,0,0,0,0,0,0,0,0.0,10,9,11.3,77777,9,999999999,279,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.2,17.6,90,101600,0,0,388,0,0,0,0,0,0,0,20,0.3,10,9,11.3,77777,9,999999999,279,0.1320,0,88,0.110,999.0,99.0 +1996,4,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,17.5,91,101500,0,0,387,0,0,0,0,0,0,0,40,0.6,10,9,11.3,77777,9,999999999,279,0.1320,0,88,0.110,999.0,99.0 +1996,4,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.6,17.2,92,101500,0,0,384,0,0,0,0,0,0,0,60,0.9,10,9,11.3,77777,9,999999999,279,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.4,17.1,92,101500,0,0,383,0,0,0,0,0,0,0,80,1.3,10,9,11.3,77777,9,999999999,279,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.2,16.8,92,101400,0,0,382,0,0,0,0,0,0,0,100,1.6,9,9,11.3,77777,9,999999999,279,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,16.6,92,101400,0,0,380,0,0,0,0,0,0,0,120,1.9,9,9,11.3,77777,9,999999999,279,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.8,16.4,92,101400,0,0,379,0,0,0,0,0,0,0,140,2.2,9,9,11.3,77777,9,999999999,279,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.1,90,101300,0,0,378,0,0,0,0,0,0,0,160,2.5,9,9,11.3,77777,9,999999999,279,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,17.2,90,101300,79,1012,385,18,0,18,2100,0,2100,650,140,2.0,9,9,11.3,77777,9,999999999,279,0.1340,0,88,0.110,0.0,6.0 +1996,4,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.2,84,101400,372,1364,403,66,0,66,7600,0,7600,2610,170,0.5,10,10,11.3,1350,9,999999999,290,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.7,78,101400,661,1364,401,161,49,137,17700,4800,15400,4350,180,1.0,9,9,11.3,4500,9,999999999,290,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,17.2,73,101500,911,1364,404,232,81,177,26200,8600,20400,5140,230,1.5,9,9,11.3,4500,9,999999999,290,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.3,69,101400,1103,1364,429,287,0,287,34000,0,34000,13260,160,1.0,10,10,11.3,7500,9,999999999,300,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.8,76,101400,1225,1364,423,327,0,327,39000,0,39000,15020,190,3.6,10,10,11.3,3900,9,999999999,300,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,18.8,74,101300,1269,1364,426,272,0,272,33100,0,33100,13140,200,2.5,10,10,11.3,2400,9,999999999,309,0.1340,0,88,0.110,0.0,6.0 +1996,4,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.8,74,101300,1232,1364,426,263,0,263,31900,0,31900,12720,210,2.0,10,10,11.3,2400,9,999999999,309,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.8,76,101200,1116,1364,423,233,0,233,28100,0,28100,11320,180,2.0,10,10,11.3,2400,9,999999999,309,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,101100,929,1364,424,184,0,184,22000,0,22000,8760,180,4.1,10,10,11.3,2400,9,999999999,320,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,101100,684,1364,424,122,0,122,14400,0,14400,5480,210,3.0,10,10,11.3,2400,9,999999999,320,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,19.4,82,101100,398,1364,421,70,0,70,8100,0,8100,2810,210,2.5,10,10,11.3,2400,9,999999999,320,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,101000,99,1125,419,18,0,18,2100,0,2100,670,210,2.0,10,10,11.3,2400,9,999999999,329,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,101000,0,0,419,0,0,0,0,0,0,0,180,2.5,10,10,11.3,2400,9,999999999,329,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,101000,0,0,419,0,0,0,0,0,0,0,210,3.0,10,10,11.3,2400,9,999999999,329,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.1,20.1,88,101000,0,0,418,0,0,0,0,0,0,0,230,2.8,10,10,11.3,2363,9,999999999,340,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.8,19.9,89,101000,0,0,416,0,0,0,0,0,0,0,240,2.6,10,10,11.3,2325,9,999999999,340,0.1340,0,88,0.110,999.0,99.0 +1996,4,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.6,19.6,88,101000,0,0,415,0,0,0,0,0,0,0,260,2.4,10,10,11.3,2288,9,999999999,340,0.1340,0,88,0.110,999.0,99.0 +1996,4,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,19.1,88,101000,0,0,411,0,0,0,0,0,0,0,270,2.3,10,10,11.3,2250,9,999999999,350,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.8,18.9,89,101000,0,0,398,0,0,0,0,0,0,0,290,2.1,10,9,11.3,2213,9,999999999,350,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.5,18.4,88,101000,0,0,396,0,0,0,0,0,0,0,300,1.9,10,9,11.3,2175,9,999999999,350,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.2,18.0,87,101000,0,0,394,0,0,0,0,0,0,0,320,1.7,10,9,11.3,2138,9,999999999,359,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.7,87,101000,0,0,392,0,0,0,0,0,0,0,330,1.5,10,9,11.3,2100,9,999999999,359,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,101100,0,0,389,0,0,0,0,0,0,0,330,3.0,10,9,11.3,2100,9,999999999,359,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,17.2,90,101200,83,1034,385,21,4,20,2300,0,2300,710,320,3.6,10,9,11.3,330,9,999999999,370,0.1350,0,88,0.110,0.0,6.0 +1996,4,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.1,87,101300,378,1363,381,107,21,101,12000,1200,11600,3600,340,3.6,10,9,11.3,360,9,999999999,359,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.5,84,101400,666,1363,381,211,54,184,23100,5300,20500,5600,330,3.0,10,9,11.3,390,9,999999999,359,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,15.5,81,101400,914,1363,383,338,36,314,37200,3700,34700,10690,320,3.6,10,9,11.3,1800,9,999999999,359,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,15.5,73,101400,1106,1363,374,479,145,361,52800,15500,40200,13300,340,2.0,9,6,11.3,2400,9,999999999,359,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.1,73,101300,1228,1363,377,769,557,268,81300,56400,30400,14200,320,4.1,9,6,11.3,7500,9,999999999,350,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,15.0,68,101300,1272,1363,376,789,464,355,84700,48500,39400,23550,320,3.0,9,6,11.3,7500,9,999999999,350,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,15.0,66,101200,1234,1363,379,777,456,364,82900,47600,39700,20440,310,4.1,9,6,11.3,7500,9,999999999,350,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,14.4,66,101200,1118,1363,375,659,277,431,70800,30000,46200,16530,320,2.5,9,6,11.3,77777,9,999999999,350,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,13.8,63,101200,930,1363,366,582,419,296,62900,45000,32100,8280,320,4.1,3,3,11.3,77777,9,999999999,340,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,12.7,63,101200,686,1363,355,388,509,132,42100,51200,16300,2730,330,3.0,2,2,11.3,77777,9,999999999,340,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,12.2,65,101200,400,1363,353,137,197,79,14900,17700,9700,1470,330,3.6,3,3,11.3,77777,9,999999999,340,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.6,10.5,67,101200,101,1125,337,29,47,24,3200,2500,2900,500,320,2.0,2,2,11.3,77777,9,999999999,329,0.1350,0,88,0.110,0.0,6.0 +1996,4,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,10.5,72,101300,0,0,335,0,0,0,0,0,0,0,320,2.0,3,3,11.3,77777,9,999999999,329,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,10.5,72,101400,0,0,332,0,0,0,0,0,0,0,340,1.5,2,2,11.3,77777,9,999999999,329,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.8,11.4,75,101400,0,0,337,0,0,0,0,0,0,0,340,1.3,3,3,11.3,19325,9,999999999,329,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,11.9,77,101400,0,0,342,0,0,0,0,0,0,0,350,1.1,4,4,11.3,16650,9,999999999,320,0.1350,0,88,0.110,999.0,99.0 +1996,4,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.1,12.4,79,101400,0,0,343,0,0,0,0,0,0,0,350,0.9,5,4,11.3,13975,9,999999999,320,0.1350,0,88,0.110,999.0,99.0 +1996,4,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,12.7,81,101400,0,0,345,0,0,0,0,0,0,0,350,0.8,6,5,11.3,11300,9,999999999,320,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.2,13.3,83,101400,0,0,350,0,0,0,0,0,0,0,350,0.6,6,6,11.3,8625,9,999999999,320,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.3,13.6,84,101400,0,0,355,0,0,0,0,0,0,0,360,0.4,7,7,11.3,5950,9,999999999,309,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.4,14.0,86,101400,0,0,356,0,0,0,0,0,0,0,360,0.2,8,7,11.3,3275,9,999999999,309,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,14.4,87,101400,0,0,363,0,0,0,0,0,0,0,0,0.0,9,8,11.3,600,9,999999999,309,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.0,87,101400,0,0,361,0,0,0,0,0,0,0,90,1.0,9,7,11.3,390,9,999999999,309,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,15.0,84,101500,87,1056,369,24,31,21,2600,1600,2500,440,80,2.0,9,8,11.3,450,9,999999999,300,0.1370,0,88,0.110,0.0,6.0 +1996,4,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,14.4,78,101500,383,1362,366,156,73,136,17100,6600,15300,3340,30,2.0,9,7,11.3,900,9,999999999,300,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.0,81,101500,670,1362,391,128,0,128,15000,0,15000,5650,360,1.0,10,10,9.7,900,9,999999999,300,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,15.0,84,101500,918,1362,388,189,0,189,22500,0,22500,8910,360,1.0,10,10,9.7,2100,9,999999999,309,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,16.1,84,101500,1110,1362,395,236,0,236,28400,0,28400,11420,60,0.5,10,10,9.7,2100,9,999999999,309,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.6,90,101700,1231,1362,393,265,0,265,32100,0,32100,12800,290,2.0,10,10,8.0,2100,9,999999999,309,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.2,81,101400,1274,1362,406,276,0,276,33500,0,33500,13310,150,3.0,10,10,8.0,2100,9,999999999,309,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.2,84,101400,1236,1362,403,267,0,267,32400,0,32400,12880,160,2.0,10,10,8.0,2100,9,999999999,309,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.2,84,101300,1119,1362,403,238,0,238,28600,0,28600,11520,190,1.0,10,10,11.3,2100,9,999999999,309,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,15.5,66,101300,932,1362,387,471,351,230,50400,36400,25400,6230,220,2.0,9,7,11.3,2100,9,999999999,309,0.1370,0,88,0.110,0.0,6.0 +1996,4,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,16.6,78,101300,687,1362,385,278,179,187,30500,18400,21200,4670,330,2.0,9,8,11.3,77777,9,999999999,309,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,15.0,76,101300,402,1362,372,145,192,89,15700,17300,10600,1690,330,2.5,9,7,11.3,3000,9,999999999,309,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,13.9,78,101300,103,1147,368,23,15,21,2500,900,2400,540,330,2.1,9,8,11.2,77777,9,999999999,309,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.8,78,101300,0,0,362,0,0,0,0,0,0,0,340,1.0,9,7,11.3,77777,9,999999999,309,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,13.3,81,101300,0,0,361,0,0,0,0,0,0,0,360,0.5,9,8,11.3,77777,9,999999999,309,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.8,13.7,82,101300,0,0,363,0,0,0,0,0,0,0,360,0.5,9,8,11.3,19381,9,999999999,320,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.9,13.8,82,101300,0,0,371,0,0,0,0,0,0,0,350,0.5,9,9,11.3,16763,9,999999999,320,0.1370,0,88,0.110,999.0,99.0 +1996,4,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,13.7,81,101300,0,0,372,0,0,0,0,0,0,0,350,0.5,9,9,11.3,14144,9,999999999,320,0.1370,0,88,0.110,999.0,99.0 +1996,4,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.9,13.6,81,101300,0,0,371,0,0,0,0,0,0,0,350,0.5,10,9,11.3,11525,9,999999999,320,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.9,13.6,81,101300,0,0,371,0,0,0,0,0,0,0,340,0.5,10,9,11.3,8906,9,999999999,320,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,13.5,80,101300,0,0,382,0,0,0,0,0,0,0,340,0.5,10,10,11.3,6288,9,999999999,320,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.1,13.4,79,101300,0,0,382,0,0,0,0,0,0,0,330,0.5,10,10,11.3,3669,9,999999999,320,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.3,78,101300,0,0,383,0,0,0,0,0,0,0,330,0.5,10,10,11.3,1050,9,999999999,320,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,12.7,75,101300,0,0,382,0,0,0,0,0,0,0,350,1.0,10,10,11.3,1050,9,999999999,320,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,101300,91,1078,383,15,0,15,1800,0,1800,570,350,1.5,10,10,11.3,1050,9,999999999,320,0.1380,0,88,0.110,0.0,24.0 +1996,4,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.3,78,101300,388,1362,383,72,0,72,8300,0,8300,2850,340,1.0,10,10,11.3,7500,9,999999999,320,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.3,75,101400,675,1362,385,156,0,156,18100,0,18100,6620,320,2.0,10,10,11.3,7500,9,999999999,309,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.3,75,101400,922,1362,367,422,196,289,46400,20700,32300,8500,340,1.5,9,8,11.3,4500,9,999999999,300,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,12.2,59,101400,1113,1362,357,776,768,148,82200,77500,18600,5270,360,3.6,2,2,11.3,77777,9,999999999,290,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,11.6,53,101300,1234,1362,366,898,685,277,94700,69300,31700,15060,300,2.0,3,3,11.3,77777,9,999999999,290,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,11.1,49,101200,1276,1362,381,627,341,307,68400,35700,34800,20920,330,4.1,9,7,11.3,77777,9,999999999,279,0.1380,0,88,0.110,0.0,6.0 +1996,4,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,12.7,55,101200,1238,1362,389,581,278,328,64800,30300,37200,16760,310,5.1,9,8,11.3,77777,9,999999999,270,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,12.7,53,101200,1121,1362,386,599,425,248,65400,44500,28700,9620,300,3.6,9,7,11.3,7500,9,999999999,270,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,13.8,59,101200,934,1362,391,473,281,279,51300,30200,30500,7760,320,4.1,9,8,11.3,7500,9,999999999,259,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,13.8,65,101300,689,1362,376,342,180,251,37000,18400,27700,6280,330,3.6,9,7,11.3,7500,9,999999999,250,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,12.7,65,101200,404,1362,375,73,16,68,8000,1400,7600,1950,330,3.6,9,8,11.3,6000,9,999999999,240,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,13.8,78,101300,105,1146,362,25,6,24,2800,0,2800,850,330,2.0,9,7,11.3,6000,9,999999999,240,0.1380,0,88,0.110,0.0,6.0 +1996,4,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,14.4,84,101300,0,0,347,0,0,0,0,0,0,0,330,3.6,3,3,11.3,77777,9,999999999,229,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,11.6,70,101400,0,0,341,0,0,0,0,0,0,0,340,3.6,2,2,11.3,77777,9,999999999,220,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,10.9,69,101500,0,0,338,0,0,0,0,0,0,0,350,3.5,2,2,11.3,77777,9,999999999,220,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.1,9.8,66,101500,0,0,334,0,0,0,0,0,0,0,350,3.3,2,2,11.3,77777,9,999999999,209,0.1380,0,88,0.110,999.0,99.0 +1996,4,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.5,8.7,64,101500,0,0,325,0,0,0,0,0,0,0,360,3.2,1,1,11.3,77777,9,999999999,200,0.1380,0,88,0.110,999.0,99.0 +1996,4,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.7,7.4,62,101600,0,0,320,0,0,0,0,0,0,0,360,3.1,1,1,11.3,77777,9,999999999,200,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.0,6.4,60,101600,0,0,316,0,0,0,0,0,0,0,10,2.9,1,1,11.3,77777,9,999999999,189,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.4,5.1,57,101600,0,0,312,0,0,0,0,0,0,0,10,2.8,1,1,11.3,77777,9,999999999,179,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.8,3.9,55,101700,0,0,302,0,0,0,0,0,0,0,20,2.6,0,0,11.3,77777,9,999999999,170,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,2.7,52,101700,0,0,299,0,0,0,0,0,0,0,20,2.5,0,0,11.3,77777,9,999999999,170,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,1.6,48,101800,0,0,298,0,0,0,0,0,0,0,10,2.5,0,0,11.3,77777,9,999999999,160,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,0.6,45,101900,95,1100,296,34,163,20,3600,8800,2800,370,10,3.6,0,0,11.2,77777,9,999999999,150,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,-2.3,31,101900,392,1361,303,225,584,57,23700,51400,8800,1100,360,5.1,0,0,11.3,77777,9,999999999,150,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,-3.4,24,102000,679,1361,311,467,765,85,49000,75000,11500,1830,360,5.1,0,0,11.3,77777,9,999999999,150,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,-2.8,24,102100,926,1361,316,687,853,106,73400,86100,14700,2850,360,2.5,0,0,11.3,77777,9,999999999,139,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,-3.4,21,102100,1116,1361,320,859,901,120,88700,90100,14600,3670,350,3.0,0,0,11.3,77777,9,999999999,139,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,-3.4,20,102000,1236,1361,326,969,925,129,99800,92700,15300,5750,360,4.1,0,0,11.3,77777,9,999999999,139,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,-3.4,20,102000,1279,1361,326,1008,933,131,103700,93600,15500,7160,340,2.5,0,0,11.3,77777,9,999999999,139,0.1390,0,88,0.110,0.0,6.0 +1996,4,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,1.6,28,101900,1240,1361,334,974,927,129,100200,92900,15400,5840,310,4.1,0,0,11.3,77777,9,999999999,129,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,-0.6,25,101900,1123,1361,329,868,905,121,89600,90600,14700,3750,330,4.1,0,0,11.3,77777,9,999999999,129,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,-2.3,22,101800,936,1361,324,699,860,107,74700,86800,14900,2910,340,5.1,0,0,11.3,77777,9,999999999,129,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,0.5,29,101900,691,1361,339,452,656,118,47400,64800,14400,2530,330,4.1,3,3,11.3,77777,9,999999999,120,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,2.2,38,101800,406,1361,327,222,538,62,23300,47800,9000,1190,300,4.1,2,2,11.3,77777,9,999999999,120,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,2.7,45,101900,107,1168,321,39,124,27,4100,6300,3500,480,320,3.0,3,3,11.3,77777,9,999999999,120,0.1390,0,88,0.110,0.0,6.0 +1996,4,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,4.4,55,102000,0,0,305,0,0,0,0,0,0,0,330,2.0,0,0,11.3,77777,9,999999999,120,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,5.0,57,102000,0,0,306,0,0,0,0,0,0,0,350,2.0,0,0,11.3,77777,9,999999999,110,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.2,5.6,60,102100,0,0,306,0,0,0,0,0,0,0,350,1.8,0,0,11.3,77777,9,999999999,110,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.9,5.7,62,102100,0,0,305,0,0,0,0,0,0,0,350,1.5,0,0,11.3,77777,9,999999999,110,0.1390,0,88,0.110,999.0,99.0 +1996,4,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.7,5.9,63,102100,0,0,304,0,0,0,0,0,0,0,350,1.3,0,0,11.3,77777,9,999999999,100,0.1390,0,88,0.110,999.0,99.0 +1996,4,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.2,5.8,65,102100,0,0,302,0,0,0,0,0,0,0,360,1.0,0,0,11.3,77777,9,999999999,100,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.9,6.0,67,102100,0,0,301,0,0,0,0,0,0,0,360,0.8,0,0,11.3,77777,9,999999999,100,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.6,6.0,68,102200,0,0,300,0,0,0,0,0,0,0,360,0.5,0,0,11.3,77777,9,999999999,100,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.3,6.0,70,102200,0,0,298,0,0,0,0,0,0,0,360,0.3,0,0,11.3,77777,9,999999999,89,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,6.1,71,102200,0,0,298,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,89,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,5.5,83,102300,0,0,285,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,89,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.7,8.9,83,102300,100,1122,303,37,180,21,3900,9800,3000,380,0,0.0,0,0,11.2,77777,9,999999999,80,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,8.8,72,102400,397,1360,312,234,606,57,24600,53600,8900,1100,30,2.0,0,0,11.3,77777,9,999999999,89,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,7.7,57,102400,683,1360,321,478,784,84,50300,77000,11500,1820,50,2.0,0,0,11.3,77777,9,999999999,89,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,1.1,31,102500,930,1360,337,657,697,181,69200,70400,21000,4850,50,2.5,3,3,11.3,77777,9,999999999,89,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,1.6,30,102400,1119,1360,340,802,767,170,83700,76900,20200,5950,50,4.1,2,2,11.3,77777,9,999999999,100,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,0.0,25,102300,1239,1360,346,899,815,156,96100,82600,20700,8420,30,4.1,3,3,11.3,77777,9,999999999,100,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,-0.6,23,102200,1281,1360,359,927,655,310,97400,66000,35100,21070,10,1.5,9,6,11.3,77777,9,999999999,100,0.1410,0,88,0.110,0.0,6.0 +1996,4,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,-1.2,21,102200,1242,1360,376,421,77,350,46500,7900,39300,17850,50,1.5,10,9,11.3,77777,9,999999999,110,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,-1.7,19,102100,1125,1360,366,777,513,353,82000,53400,37700,14150,250,1.0,9,6,11.3,77777,9,999999999,110,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,1.1,22,102000,938,1360,363,638,734,132,66800,73500,16000,3360,200,1.0,3,3,11.3,77777,9,999999999,110,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,1.1,22,102000,693,1360,360,468,708,107,49600,70300,13600,2330,150,2.0,2,2,11.3,77777,9,999999999,110,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,-0.6,21,102000,409,1360,356,235,486,89,24900,43000,11900,1650,40,1.0,3,3,11.3,77777,9,999999999,120,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,8.3,54,102100,109,1190,339,36,121,25,3900,6100,3300,440,330,1.5,2,2,11.3,77777,9,999999999,120,0.1410,0,88,0.110,0.0,6.0 +1996,4,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,7.7,56,102100,0,0,337,0,0,0,0,0,0,0,330,1.5,3,3,11.3,77777,9,999999999,120,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,7.7,60,102200,0,0,318,0,0,0,0,0,0,0,360,1.0,0,0,11.3,77777,9,999999999,129,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.4,8.5,63,102100,0,0,319,0,0,0,0,0,0,0,20,1.3,0,0,11.3,77777,9,999999999,129,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.1,8.9,66,102100,0,0,318,0,0,0,0,0,0,0,40,1.5,0,0,11.3,77777,9,999999999,129,0.1410,0,88,0.110,999.0,99.0 +1996,4,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.9,9.2,69,102100,0,0,317,0,0,0,0,0,0,0,50,1.8,0,0,11.3,77777,9,999999999,139,0.1410,0,88,0.110,999.0,99.0 +1996,4,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,9.4,72,102100,0,0,315,0,0,0,0,0,0,0,70,2.0,0,0,11.3,77777,9,999999999,139,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.1,9.8,75,102100,0,0,314,0,0,0,0,0,0,0,90,2.3,0,0,11.3,77777,9,999999999,139,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.8,10.0,78,102100,0,0,313,0,0,0,0,0,0,0,110,2.5,0,0,11.3,77777,9,999999999,150,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.5,10.2,80,102100,0,0,312,0,0,0,0,0,0,0,120,2.8,0,0,11.3,77777,9,999999999,150,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,10.5,83,102100,0,0,311,0,0,0,0,0,0,0,140,3.0,0,0,11.3,77777,9,999999999,150,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,11.1,84,102100,0,0,325,0,0,0,0,0,0,0,140,3.6,2,2,11.3,77777,9,999999999,160,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,12.2,81,102100,104,1144,337,27,15,26,3000,900,2900,640,140,3.6,3,3,11.3,77777,9,999999999,160,0.1420,0,88,0.110,0.0,6.0 +1996,4,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,13.3,73,102100,402,1359,348,178,232,109,18900,20800,12700,2150,150,4.1,2,2,11.3,77777,9,999999999,160,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,15.0,71,102200,688,1359,364,334,321,171,36300,33400,19300,3750,150,5.1,3,3,11.3,77777,9,999999999,160,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,12.2,51,102100,933,1359,368,567,452,256,60000,46800,27900,7030,160,5.6,2,2,11.3,77777,9,999999999,170,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,11.6,48,102100,1122,1359,374,751,582,271,81500,60800,31100,10640,140,5.6,3,3,11.3,77777,9,999999999,170,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,11.1,45,102100,1241,1359,372,886,638,303,92900,64200,34100,17060,190,5.1,2,2,11.3,77777,9,999999999,170,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.1,42,102000,1283,1359,402,590,231,372,65500,25200,41700,23390,180,4.6,9,8,11.3,77777,9,999999999,170,0.1420,0,88,0.110,0.0,6.0 +1996,4,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,15.0,56,101900,1244,1359,380,857,579,327,92600,60600,37100,19310,210,5.1,2,2,11.3,77777,9,999999999,179,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,13.8,55,101800,1126,1359,377,787,614,278,82000,61600,30800,10610,210,6.6,3,3,11.3,77777,9,999999999,179,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,13.8,55,101800,939,1359,373,629,561,241,67100,58100,26900,6640,210,6.6,2,2,11.3,77777,9,999999999,179,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,13.8,55,101800,695,1359,377,417,391,216,44500,40700,23600,4960,220,5.1,3,3,11.3,77777,9,999999999,189,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,15.0,64,101800,411,1359,369,185,258,107,19700,23400,12700,2100,190,3.6,2,2,11.3,77777,9,999999999,189,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,14.4,70,101800,112,1189,361,30,21,28,3300,1300,3200,690,190,2.0,3,3,11.3,77777,9,999999999,189,0.1420,0,88,0.110,0.0,6.0 +1996,4,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,14.4,73,101800,0,0,354,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,189,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,14.4,78,101800,0,0,353,0,0,0,0,0,0,0,0,0.0,3,3,11.3,77777,9,999999999,200,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.4,14.7,79,101800,0,0,353,0,0,0,0,0,0,0,20,0.3,3,3,11.3,77777,9,999999999,200,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.3,14.7,80,101800,0,0,353,0,0,0,0,0,0,0,40,0.5,3,3,11.3,77777,9,999999999,200,0.1420,0,88,0.110,999.0,99.0 +1996,4,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.3,14.6,79,101700,0,0,353,0,0,0,0,0,0,0,50,0.8,3,3,11.3,77777,9,999999999,200,0.1420,0,88,0.110,999.0,99.0 +1996,4,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,14.4,79,101700,0,0,351,0,0,0,0,0,0,0,70,1.0,3,3,11.3,77777,9,999999999,209,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.9,14.3,79,101700,0,0,347,0,0,0,0,0,0,0,90,1.3,2,2,11.3,77777,9,999999999,209,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.8,14.1,79,101600,0,0,346,0,0,0,0,0,0,0,110,1.5,2,2,11.3,77777,9,999999999,209,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.7,13.9,78,101600,0,0,346,0,0,0,0,0,0,0,120,1.8,2,2,11.3,77777,9,999999999,209,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.8,78,101600,0,0,346,0,0,0,0,0,0,0,140,2.0,2,2,11.3,77777,9,999999999,220,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.8,78,101500,0,0,375,0,0,0,0,0,0,0,140,3.0,9,9,11.3,77777,9,999999999,220,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,14.4,81,101600,108,1166,376,23,9,22,2500,600,2500,560,140,3.6,9,9,11.3,4500,9,999999999,220,0.1440,0,88,0.110,0.0,6.0 +1996,4,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,15.0,76,101600,407,1359,386,84,69,63,9500,6400,7600,1410,150,5.1,9,9,11.3,3600,9,999999999,220,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,16.1,71,101700,692,1359,399,298,61,267,32700,6100,29500,7640,160,4.6,9,9,11.3,3600,9,999999999,220,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.7,66,101700,937,1359,416,479,361,230,51400,37400,25500,6290,170,5.1,9,9,11.3,7500,9,999999999,229,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.3,62,101700,1125,1359,427,566,111,473,62200,11500,52600,18870,180,4.6,9,9,11.3,7500,9,999999999,229,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.0,65,101700,1244,1359,435,590,226,383,65100,24600,42500,20480,200,6.1,9,9,11.3,7500,9,999999999,229,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.3,58,101600,1285,1359,433,716,78,642,78800,8200,71000,33530,210,6.1,9,9,11.3,7500,9,999999999,229,0.1440,0,88,0.110,0.0,6.0 +1996,4,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.8,60,101500,1245,1359,434,394,96,306,44400,10300,34900,15660,210,7.7,9,9,11.3,7500,9,999999999,229,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,19.4,69,101500,1128,1359,425,416,100,332,46100,10700,37200,12780,210,6.1,9,9,11.3,7500,9,999999999,229,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,19.4,69,101500,941,1359,425,366,120,283,40400,12700,31500,8490,210,5.1,9,9,11.3,7500,9,999999999,229,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.4,71,101500,697,1359,422,178,5,175,20500,400,20300,7340,210,5.1,9,9,11.3,7500,9,999999999,229,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,19.4,76,101500,413,1359,415,78,24,70,8500,2200,7900,2020,200,6.1,9,9,11.3,77777,9,999999999,229,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,101500,114,1211,374,37,128,25,4000,6600,3400,440,200,5.1,2,2,11.3,77777,9,999999999,229,0.1440,0,88,0.110,0.0,6.0 +1996,4,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,101500,0,0,375,0,0,0,0,0,0,0,200,2.0,3,3,11.3,77777,9,999999999,229,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,19.4,93,101500,0,0,366,0,0,0,0,0,0,0,210,1.0,2,2,11.3,77777,9,999999999,229,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.5,19.7,95,101500,0,0,370,0,0,0,0,0,0,0,210,1.1,3,3,11.3,19261,9,999999999,240,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.3,19.7,96,101500,0,0,371,0,0,0,0,0,0,0,200,1.1,4,4,11.3,16523,9,999999999,240,0.1440,0,88,0.110,999.0,99.0 +1996,4,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.1,19.6,97,101500,0,0,373,0,0,0,0,0,0,0,200,1.2,5,5,11.3,13784,9,999999999,240,0.1440,0,88,0.110,999.0,99.0 +1996,4,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.6,19.4,99,101500,0,0,374,0,0,0,0,0,0,0,200,1.3,6,6,11.3,11045,9,999999999,240,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.4,19.3,99,101500,0,0,377,0,0,0,0,0,0,0,190,1.3,7,7,11.3,8306,9,999999999,240,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.2,19.1,99,101500,0,0,382,0,0,0,0,0,0,0,190,1.4,8,8,11.3,5568,9,999999999,240,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,18.9,99,101500,0,0,388,0,0,0,0,0,0,0,180,1.4,9,9,11.3,2829,9,999999999,240,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.8,100,101500,0,0,398,0,0,0,0,0,0,0,180,1.5,10,10,0.4,90,9,999999999,240,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,18.8,100,101600,0,0,398,0,0,0,0,0,0,0,0,0.0,10,10,0.3,60,9,999999999,240,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,18.8,100,101700,112,1188,398,12,0,12,1400,0,1400,470,130,1.0,10,10,0.3,60,9,999999999,240,0.1450,0,88,0.110,0.0,6.0 +1996,4,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.8,96,101700,411,1358,402,47,0,47,5600,0,5600,2030,130,0.5,10,10,1.0,120,9,999999999,240,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.0,97,101800,696,1358,409,95,0,95,11500,0,11500,4480,150,0.5,10,10,4.0,60,9,999999999,240,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.5,87,101800,940,1358,411,397,225,240,43600,24300,26700,6580,190,2.0,9,9,6.4,150,9,999999999,240,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.5,76,101800,1128,1358,394,808,737,195,86400,75400,23600,7770,180,2.0,3,3,9.7,77777,9,999999999,250,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,18.8,62,101700,1246,1358,396,910,798,177,96100,80500,22100,9760,210,2.0,2,2,11.3,77777,9,999999999,250,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.7,18.3,57,101700,1287,1358,405,1008,881,173,107300,89100,22700,11870,260,2.5,3,3,11.3,77777,9,999999999,250,0.1450,0,88,0.110,0.0,6.0 +1996,4,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,17.2,48,101600,1247,1358,409,906,777,192,94900,78000,23000,10470,220,2.0,2,2,11.3,77777,9,999999999,250,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,18.3,50,101500,1130,1358,418,791,803,123,81600,80400,14600,3880,220,2.0,3,3,11.3,77777,9,999999999,250,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,17.7,49,101500,942,1358,410,632,700,146,67600,71500,17900,4100,240,2.5,2,2,11.3,77777,9,999999999,250,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,18.3,57,101500,699,1358,405,427,560,139,44400,55000,16100,2930,210,4.1,3,3,11.3,77777,9,999999999,250,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,19.4,69,101500,415,1358,391,201,362,90,21300,32200,11400,1670,210,4.1,2,2,11.3,77777,9,999999999,250,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,101500,116,1211,384,33,97,24,3700,4700,3200,410,210,2.5,3,3,11.3,77777,9,999999999,250,0.1450,0,88,0.110,0.0,6.0 +1996,4,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.0,91,101500,0,0,372,0,0,0,0,0,0,0,210,1.0,2,2,11.3,77777,9,999999999,250,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.5,96,101600,0,0,373,0,0,0,0,0,0,0,210,0.5,3,3,11.3,77777,9,999999999,250,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,20.9,98,101600,0,0,375,0,0,0,0,0,0,0,200,0.8,3,3,11.3,77777,9,999999999,250,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,20.8,97,101600,0,0,375,0,0,0,0,0,0,0,200,1.0,3,3,11.3,77777,9,999999999,250,0.1450,0,88,0.110,999.0,99.0 +1996,4,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,20.8,97,101500,0,0,371,0,0,0,0,0,0,0,190,1.3,3,2,11.3,77777,9,999999999,250,0.1450,0,88,0.110,999.0,99.0 +1996,4,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,20.5,96,101500,0,0,370,0,0,0,0,0,0,0,180,1.5,3,2,11.3,77777,9,999999999,250,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,20.5,96,101500,0,0,370,0,0,0,0,0,0,0,170,1.8,2,2,11.3,77777,9,999999999,250,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,20.3,95,101500,0,0,370,0,0,0,0,0,0,0,170,2.0,2,2,11.3,77777,9,999999999,250,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,20.1,94,101500,0,0,364,0,0,0,0,0,0,0,160,2.3,2,1,11.3,77777,9,999999999,250,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.0,93,101400,0,0,364,0,0,0,0,0,0,0,150,2.5,2,1,11.3,77777,9,999999999,250,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,18.8,90,101500,0,0,360,0,0,0,0,0,0,0,160,2.5,3,1,11.3,77777,9,999999999,250,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,19.4,90,101500,117,1210,364,34,55,29,3800,3100,3500,600,180,3.0,2,1,11.3,77777,9,999999999,250,0.1470,0,88,0.110,0.0,6.0 +1996,4,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,19.4,82,101600,416,1357,372,204,345,98,21400,30700,12000,1830,160,4.1,3,1,11.3,77777,9,999999999,259,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,101600,700,1357,384,391,510,128,40900,50300,14900,2740,180,5.1,2,1,11.3,77777,9,999999999,259,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,19.4,69,101600,943,1357,399,534,314,315,57500,33800,34000,9060,180,3.1,9,4,11.2,2700,9,999999999,259,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.8,60,101600,1131,1357,394,792,731,182,85100,75000,22400,7360,180,4.1,2,1,11.3,77777,9,999999999,270,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,17.2,46,101500,1248,1357,407,870,723,204,93900,74300,25300,12270,180,5.1,3,1,11.2,77777,9,999999999,270,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.0,61,101400,1289,1357,414,880,573,335,95400,60000,38300,25140,200,6.2,9,4,11.2,3000,9,999999999,270,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,20.0,63,101300,1249,1357,411,923,696,282,97300,70400,32400,16640,200,7.2,9,4,11.2,3000,9,999999999,270,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,17.7,73,101300,1131,1357,381,754,478,355,79600,49800,38000,14570,280,6.1,9,4,11.3,1500,9,999999999,279,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,101400,944,1357,368,438,242,269,47800,26100,29600,7540,350,5.1,9,4,11.3,900,9,999999999,279,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,101600,700,1357,365,342,247,215,36700,25700,23400,4940,330,8.2,10,6,3.2,600,9,999999999,279,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.8,17.2,96,101600,417,1357,362,145,67,124,15800,6100,14000,3260,350,3.6,10,6,4.8,450,9,999999999,290,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,17.2,97,101600,118,1233,362,38,17,36,4100,1100,4000,850,20,1.0,10,6,11.3,2100,9,999999999,290,0.1470,0,88,0.110,14.0,6.0 +1996,4,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,101400,0,0,359,0,0,0,0,0,0,0,130,3.0,9,4,11.3,3000,9,999999999,290,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,17.2,93,101300,0,0,359,0,0,0,0,0,0,0,120,3.0,9,4,11.3,7500,9,999999999,290,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.5,17.4,93,101300,0,0,363,0,0,0,0,0,0,0,100,3.3,9,5,11.3,6694,9,999999999,300,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.6,17.2,92,101400,0,0,363,0,0,0,0,0,0,0,80,3.5,9,5,11.3,5888,9,999999999,300,0.1470,0,88,0.110,999.0,99.0 +1996,4,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.7,17.0,90,101400,0,0,366,0,0,0,0,0,0,0,60,3.8,9,6,11.3,5081,9,999999999,300,0.1470,0,88,0.110,999.0,99.0 +1996,4,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.5,16.6,89,101400,0,0,365,0,0,0,0,0,0,0,40,4.1,9,6,11.3,4275,9,999999999,309,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.6,16.5,88,101500,0,0,369,0,0,0,0,0,0,0,10,4.3,9,7,11.3,3469,9,999999999,309,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.6,16.1,85,101500,0,0,369,0,0,0,0,0,0,0,350,4.6,9,7,11.3,2663,9,999999999,309,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.7,15.8,83,101600,0,0,375,0,0,0,0,0,0,0,330,4.8,9,8,11.3,1856,9,999999999,309,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,15.5,81,101600,0,0,375,0,0,0,0,0,0,0,310,5.1,9,8,11.3,1050,9,999999999,320,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,14.4,78,101900,0,0,349,0,0,0,0,0,0,0,340,6.6,2,2,11.3,77777,9,999999999,320,0.1480,0,88,0.110,15.0,24.0 +1996,4,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,14.4,78,101900,121,1232,353,44,218,23,4700,12400,3400,420,340,6.6,3,3,11.3,77777,9,999999999,320,0.1480,0,88,0.110,15.0,24.0 +1996,4,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.3,75,102000,420,1356,361,151,199,89,16300,18200,10700,1690,350,4.6,9,7,11.3,900,9,999999999,309,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,13.3,70,102000,703,1356,354,337,293,185,36500,30600,20600,4140,340,5.1,3,3,11.3,77777,9,999999999,300,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,10.5,58,102100,947,1356,347,657,781,111,70100,78800,14900,3060,350,4.1,2,2,11.3,77777,9,999999999,300,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,7.2,43,102100,1133,1356,352,765,678,198,81800,69400,23700,8030,340,3.6,3,3,11.3,77777,9,999999999,290,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,5.5,37,102100,1251,1356,349,882,775,167,93800,78400,21400,9560,300,3.0,2,2,11.3,77777,9,999999999,279,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,8.8,45,102000,1290,1356,345,1004,942,107,103900,94600,13600,6770,350,4.1,0,0,11.3,77777,9,999999999,270,0.1480,0,88,0.110,0.0,6.0 +1996,4,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,7.2,41,102000,1250,1356,343,969,937,105,100400,94100,13400,5410,330,5.1,0,0,11.3,77777,9,999999999,259,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,7.2,38,101900,1133,1356,348,866,918,98,89800,92000,12800,3480,330,5.1,0,0,11.3,77777,9,999999999,250,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,6.6,39,101900,946,1356,342,701,881,87,73100,87800,11700,2290,330,5.1,0,0,11.3,77777,9,999999999,240,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,9.4,52,101900,702,1356,338,489,809,70,51300,79100,10200,1580,330,5.1,0,0,11.3,77777,9,999999999,229,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,9.4,54,101900,419,1356,335,253,661,48,26500,59900,8000,1010,340,4.1,0,0,11.3,77777,9,999999999,220,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.6,10.0,65,101900,120,1232,325,49,278,22,5200,15900,3600,410,340,2.5,0,0,11.3,77777,9,999999999,209,0.1480,0,88,0.110,0.0,6.0 +1996,4,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,10.0,70,102000,0,0,321,0,0,0,0,0,0,0,350,1.5,0,0,11.3,77777,9,999999999,209,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,10.0,75,102000,0,0,316,0,0,0,0,0,0,0,360,1.0,0,0,11.3,77777,9,999999999,200,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,10.2,76,102000,0,0,316,0,0,0,0,0,0,0,360,0.9,0,0,11.3,77777,9,999999999,189,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.2,10.0,76,102000,0,0,315,0,0,0,0,0,0,0,360,0.8,0,0,11.3,77777,9,999999999,179,0.1480,0,88,0.110,999.0,99.0 +1996,4,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.0,9.8,76,102000,0,0,314,0,0,0,0,0,0,0,360,0.6,0,0,11.3,77777,9,999999999,170,0.1480,0,88,0.110,999.0,99.0 +1996,4,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.5,9.4,76,102000,0,0,311,0,0,0,0,0,0,0,360,0.5,0,0,11.3,77777,9,999999999,160,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.3,9.3,77,102000,0,0,310,0,0,0,0,0,0,0,360,0.4,0,0,11.3,77777,9,999999999,150,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.1,8.9,76,102000,0,0,309,0,0,0,0,0,0,0,360,0.3,0,0,11.3,77777,9,999999999,139,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.9,8.6,75,102000,0,0,308,0,0,0,0,0,0,0,360,0.1,0,0,11.3,77777,9,999999999,129,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,8.3,75,102000,0,0,307,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,129,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,8.8,77,102100,0,0,320,0,0,0,0,0,0,0,30,1.0,3,3,11.3,77777,9,999999999,120,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,8.3,67,102200,125,1254,324,43,148,28,4600,7800,3800,490,20,1.0,2,2,11.3,77777,9,999999999,110,0.1500,0,88,0.110,0.0,6.0 +1996,4,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,7.2,56,102200,425,1355,334,220,421,88,23400,37800,11500,1630,30,2.5,3,3,11.3,77777,9,999999999,110,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,7.2,48,102300,707,1355,341,462,662,116,48700,65800,14300,2540,30,3.6,2,2,11.3,77777,9,999999999,110,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,3.8,33,102300,950,1355,351,626,647,172,66200,65600,20100,4810,50,3.0,3,3,11.3,77777,9,999999999,110,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,2.7,28,102300,1136,1355,354,844,803,171,88300,80600,20600,6350,40,2.0,2,2,11.3,77777,9,999999999,120,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,4.4,29,102300,1253,1355,365,746,571,218,80200,58500,26000,13410,50,2.5,3,3,11.3,77777,9,999999999,120,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,3.8,27,102200,1292,1355,395,378,1,377,45000,100,44900,16920,30,1.5,9,9,11.3,77777,9,999999999,120,0.1500,0,88,0.110,0.0,6.0 +1996,4,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,3.3,24,102100,1252,1355,400,457,69,392,50400,7100,43900,20360,90,1.0,9,9,11.3,77777,9,999999999,120,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,5.0,27,102000,1134,1355,405,377,141,258,42400,15200,29700,10090,50,1.0,9,9,11.3,77777,9,999999999,129,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,3.3,24,102000,947,1355,403,358,92,293,39400,9400,32800,10490,10,1.0,9,9,11.3,77777,9,999999999,129,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,3.8,24,101900,704,1355,407,293,159,210,32100,16400,23500,5300,30,2.0,9,9,11.3,77777,9,999999999,129,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,5.0,28,101900,421,1355,403,81,78,56,9200,7300,6900,1260,40,1.5,9,9,11.3,77777,9,999999999,129,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,6.1,32,102000,123,1254,409,24,0,24,2800,0,2800,860,40,1.0,10,10,11.3,77777,9,999999999,129,0.1500,0,88,0.110,0.0,6.0 +1996,4,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,7.2,37,102000,0,0,404,0,0,0,0,0,0,0,0,0.0,10,10,11.3,77777,9,999999999,139,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,10.0,49,102000,0,0,399,0,0,0,0,0,0,0,0,0.0,10,10,11.3,77777,9,999999999,139,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.8,10.9,53,102000,0,0,388,0,0,0,0,0,0,0,10,0.1,9,9,11.3,77777,9,999999999,139,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.3,11.4,57,102000,0,0,378,0,0,0,0,0,0,0,10,0.3,8,8,11.3,77777,9,999999999,139,0.1500,0,88,0.110,999.0,99.0 +1996,4,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.9,11.9,60,102000,0,0,371,0,0,0,0,0,0,0,20,0.4,7,7,11.3,77777,9,999999999,150,0.1500,0,88,0.110,999.0,99.0 +1996,4,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.1,12.2,64,102000,0,0,367,0,0,0,0,0,0,0,20,0.5,7,7,11.3,77777,9,999999999,150,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.6,12.7,69,102000,0,0,361,0,0,0,0,0,0,0,30,0.6,6,6,11.3,77777,9,999999999,150,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.1,13.0,72,102000,0,0,356,0,0,0,0,0,0,0,30,0.8,5,5,11.3,77777,9,999999999,150,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.7,13.4,76,102100,0,0,351,0,0,0,0,0,0,0,40,0.9,4,4,11.3,77777,9,999999999,150,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.8,80,102100,0,0,347,0,0,0,0,0,0,0,40,1.0,3,3,11.3,77777,9,999999999,160,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,13.8,84,102100,0,0,340,0,0,0,0,0,0,0,90,1.0,2,2,11.3,77777,9,999999999,160,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,14.4,81,102200,130,1276,350,38,44,34,4200,2500,4000,710,70,1.0,3,3,11.3,77777,9,999999999,160,0.1510,0,88,0.110,0.0,6.0 +1996,4,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.0,73,102200,429,1355,358,186,319,85,19900,28800,10800,1570,90,3.0,2,2,11.3,77777,9,999999999,170,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,13.3,57,102200,711,1355,371,462,481,209,48100,48400,22600,4600,100,1.5,3,3,11.3,77777,9,999999999,170,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,10.5,43,102200,953,1355,404,273,82,214,30500,8800,24300,6510,120,3.0,9,9,11.3,7500,9,999999999,179,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,7.7,34,102200,1139,1355,403,604,403,264,65700,42200,30200,10910,130,3.6,9,9,11.3,7500,9,999999999,179,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,7.7,31,102100,1255,1355,412,614,354,285,67300,37100,32800,17960,100,2.5,9,9,11.3,3900,9,999999999,189,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,6.1,26,102000,1294,1355,416,632,115,521,69600,11900,58200,29480,120,4.1,9,9,11.3,7500,9,999999999,189,0.1510,0,88,0.110,0.0,6.0 +1996,4,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,5.5,24,102000,1253,1355,385,873,669,253,92800,68100,29600,15510,130,1.0,2,2,11.3,77777,9,999999999,200,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,6.1,25,102000,1135,1355,390,795,702,206,84800,71700,24500,8400,290,1.0,3,3,11.3,77777,9,999999999,200,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,8.3,28,101900,949,1355,392,605,620,170,64000,62900,19800,4760,280,1.5,2,2,11.3,77777,9,999999999,209,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,16.6,60,101900,706,1355,418,108,14,100,11900,1400,11200,3400,300,3.6,9,9,11.3,77777,9,999999999,209,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,15.5,64,101900,423,1355,404,107,14,103,12200,800,11900,3880,300,2.5,9,9,11.3,7500,9,999999999,220,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.5,70,102000,125,1253,396,27,0,27,3100,0,3100,950,300,2.5,9,9,11.3,77777,9,999999999,220,0.1510,0,88,0.110,0.0,6.0 +1996,4,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.0,73,102000,0,0,389,0,0,0,0,0,0,0,330,1.0,9,9,11.3,77777,9,999999999,229,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.5,75,102000,0,0,390,0,0,0,0,0,0,0,330,1.0,9,9,11.3,77777,9,999999999,229,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.8,15.9,78,102000,0,0,381,0,0,0,0,0,0,0,350,1.0,8,8,11.3,77777,9,999999999,240,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.5,15.8,79,102000,0,0,373,0,0,0,0,0,0,0,360,1.0,7,7,11.3,77777,9,999999999,250,0.1510,0,88,0.110,999.0,99.0 +1996,4,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.2,15.8,81,102000,0,0,367,0,0,0,0,0,0,0,20,1.0,6,6,11.3,77777,9,999999999,250,0.1510,0,88,0.110,999.0,99.0 +1996,4,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.6,15.5,82,102000,0,0,364,0,0,0,0,0,0,0,30,1.0,6,6,11.3,77777,9,999999999,259,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.2,15.5,84,102000,0,0,359,0,0,0,0,0,0,0,50,1.0,5,5,11.3,77777,9,999999999,259,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.9,15.3,85,102000,0,0,354,0,0,0,0,0,0,0,60,1.0,4,4,11.3,77777,9,999999999,270,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,15.1,86,102000,0,0,350,0,0,0,0,0,0,0,80,1.0,3,3,11.3,77777,9,999999999,270,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.0,87,102000,0,0,345,0,0,0,0,0,0,0,90,1.0,2,2,11.3,77777,9,999999999,279,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,15.0,90,102000,0,0,345,0,0,0,0,0,0,0,110,2.5,3,3,11.3,77777,9,999999999,279,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.5,84,102100,134,1297,367,36,15,35,4000,1000,3900,840,120,2.0,9,7,11.3,3300,9,999999999,290,0.1530,0,88,0.110,0.0,6.0 +1996,4,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.6,84,102100,433,1354,380,156,46,141,17000,4300,15700,3660,110,2.0,9,8,11.3,3300,9,999999999,290,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,15.5,68,102100,714,1354,367,393,359,204,42400,37600,22500,4670,130,2.5,2,2,11.3,77777,9,999999999,279,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,15.5,60,102100,956,1354,381,643,516,278,67800,53400,30000,7980,130,2.0,3,3,11.3,77777,9,999999999,279,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.0,54,102100,1141,1354,383,767,623,242,81000,63100,27600,9900,140,1.5,2,2,11.3,77777,9,999999999,279,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.0,54,102000,1257,1354,387,891,630,306,93500,63400,34500,18910,140,1.0,3,3,11.3,77777,9,999999999,279,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,14.4,48,102000,1295,1354,388,919,675,273,97700,68600,31900,21180,150,1.0,2,2,11.3,77777,9,999999999,279,0.1530,0,88,0.110,0.0,6.0 +1996,4,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,12.2,37,101900,1254,1354,401,870,610,305,91400,61400,34300,18640,160,1.5,3,3,11.3,77777,9,999999999,279,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,14.4,43,101900,1137,1354,400,777,580,290,83900,60600,32900,12010,120,1.0,2,2,11.3,77777,9,999999999,270,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,13.8,41,101800,950,1354,403,611,510,253,65100,52900,27900,7140,220,2.0,3,3,11.3,77777,9,999999999,270,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,17.2,56,101800,707,1354,395,355,306,195,38300,32000,21600,4410,210,4.1,2,2,11.2,77777,9,999999999,270,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,17.2,62,101800,425,1354,390,171,203,108,18400,18700,12500,2120,210,2.0,3,3,11.3,77777,9,999999999,270,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.6,71,101900,127,1275,359,37,37,33,4100,2100,3800,690,230,2.0,0,0,11.3,77777,9,999999999,270,0.1530,0,88,0.110,0.0,6.0 +1996,4,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,16.1,76,101900,0,0,350,0,0,0,0,0,0,0,270,0.5,0,0,11.3,77777,9,999999999,270,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.1,78,102000,0,0,348,0,0,0,0,0,0,0,220,0.5,0,0,11.3,77777,9,999999999,270,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.0,16.4,80,101900,0,0,348,0,0,0,0,0,0,0,210,0.8,0,0,11.3,77777,9,999999999,259,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.8,16.4,81,101900,0,0,354,0,0,0,0,0,0,0,200,1.1,1,1,11.3,77777,9,999999999,259,0.1530,0,88,0.110,999.0,99.0 +1996,4,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.6,16.3,81,101900,0,0,353,0,0,0,0,0,0,0,190,1.4,1,1,11.3,77777,9,999999999,259,0.1530,0,88,0.110,999.0,99.0 +1996,4,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.1,16.1,83,101900,0,0,355,0,0,0,0,0,0,0,180,1.8,2,2,11.3,77777,9,999999999,259,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.9,16.0,83,101900,0,0,354,0,0,0,0,0,0,0,170,2.1,2,2,11.3,77777,9,999999999,259,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.7,15.8,83,101900,0,0,353,0,0,0,0,0,0,0,160,2.4,2,2,11.3,77777,9,999999999,259,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.5,15.6,83,101900,0,0,355,0,0,0,0,0,0,0,150,2.7,3,3,11.3,77777,9,999999999,250,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,15.5,84,101900,0,0,354,0,0,0,0,0,0,0,140,3.0,3,3,11.3,77777,9,999999999,250,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,15.5,87,102000,0,0,336,0,0,0,0,0,0,0,130,2.0,0,0,11.3,77777,9,999999999,250,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,16.1,84,102000,138,1319,342,52,211,29,5500,11400,4300,510,90,1.0,0,0,11.3,77777,9,999999999,250,0.1540,0,88,0.110,0.0,6.0 +1996,4,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.2,78,102100,437,1353,354,254,584,65,26700,53100,9500,1260,120,3.0,0,0,11.3,77777,9,999999999,250,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,17.2,71,102100,718,1353,362,490,745,94,51200,73400,12200,2030,120,3.0,0,0,11.3,77777,9,999999999,250,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,16.6,62,102100,959,1353,370,702,827,116,74800,83400,15500,3230,120,3.0,0,0,11.3,77777,9,999999999,250,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,16.1,56,102100,1143,1353,375,867,872,131,89300,87200,15400,4210,140,2.0,0,0,11.3,77777,9,999999999,250,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,16.1,53,102000,1259,1353,393,932,818,170,99000,82700,21900,10230,140,3.6,2,2,11.3,77777,9,999999999,250,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,15.5,46,102000,1297,1353,388,1005,901,141,103100,90300,16300,8870,140,3.0,0,0,11.3,77777,9,999999999,240,0.1540,0,88,0.110,0.0,6.0 +1996,4,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,13.8,38,101900,1256,1353,392,969,894,139,99500,89600,16100,6840,160,2.0,0,0,11.3,77777,9,999999999,240,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,14.4,40,101900,1138,1353,393,863,871,130,88800,87100,15300,4120,130,2.0,0,0,11.3,77777,9,999999999,240,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,17.2,50,101800,951,1353,393,696,826,115,74100,83300,15400,3170,220,3.0,0,0,11.3,77777,9,999999999,240,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,17.7,56,101800,709,1353,385,482,743,93,50500,73100,12100,2000,200,3.0,0,0,11.3,77777,9,999999999,240,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,18.3,64,101800,427,1353,377,246,577,64,25900,52100,9400,1240,200,3.0,0,0,11.3,77777,9,999999999,240,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,17.7,73,101900,129,1274,363,48,196,28,5200,10400,4100,490,220,1.0,0,0,11.3,77777,9,999999999,240,0.1540,0,88,0.110,0.0,6.0 +1996,4,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,16.6,73,102000,0,0,356,0,0,0,0,0,0,0,310,0.5,0,0,11.3,77777,9,999999999,240,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,16.6,73,102000,0,0,371,0,0,0,0,0,0,0,360,0.5,3,3,11.3,77777,9,999999999,240,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.4,17.0,76,102000,0,0,371,0,0,0,0,0,0,0,10,0.6,3,3,11.3,77777,9,999999999,240,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,17.1,78,102000,0,0,365,0,0,0,0,0,0,0,20,0.6,2,2,11.3,77777,9,999999999,240,0.1540,0,88,0.110,999.0,99.0 +1996,4,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.6,17.0,80,102000,0,0,363,0,0,0,0,0,0,0,30,0.7,2,2,11.3,77777,9,999999999,240,0.1540,0,88,0.110,999.0,99.0 +1996,4,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.9,16.9,83,102000,0,0,360,0,0,0,0,0,0,0,50,0.8,2,2,11.3,77777,9,999999999,229,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.5,16.9,85,102000,0,0,353,0,0,0,0,0,0,0,60,0.8,1,1,11.3,77777,9,999999999,229,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.1,16.8,87,102000,0,0,351,0,0,0,0,0,0,0,70,0.9,1,1,11.3,77777,9,999999999,229,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.7,16.7,88,102100,0,0,342,0,0,0,0,0,0,0,80,0.9,0,0,11.3,77777,9,999999999,229,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.6,90,102100,0,0,340,0,0,0,0,0,0,0,90,1.0,0,0,11.3,77777,9,999999999,229,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.6,90,102100,0,0,355,0,0,0,0,0,0,0,90,1.0,3,3,11.3,77777,9,999999999,229,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.7,87,102200,143,1341,361,49,211,26,5100,12500,3700,470,90,2.0,2,2,11.3,77777,9,999999999,229,0.1550,0,88,0.110,0.0,6.0 +1996,4,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.7,81,102200,441,1352,370,231,411,96,24400,37400,12200,1790,90,3.0,3,3,11.3,77777,9,999999999,229,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,17.2,69,102200,721,1352,377,491,683,126,51600,67900,15300,2760,90,3.0,2,2,11.3,77777,9,999999999,229,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,17.2,60,102200,962,1352,392,645,645,186,68000,65300,21400,5270,120,3.0,3,3,11.3,77777,9,999999999,229,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,16.1,53,102300,1146,1352,393,853,756,212,90900,77200,25400,8930,150,2.0,2,2,11.3,77777,9,999999999,229,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,15.5,47,102200,1260,1352,402,912,788,178,96600,79500,22300,10780,150,2.0,3,3,11.3,77777,9,999999999,229,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,14.4,43,102100,1298,1352,400,971,855,149,99400,85700,16900,9370,160,1.5,2,2,11.3,77777,9,999999999,229,0.1550,0,88,0.110,0.0,6.0 +1996,4,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,14.4,40,102100,1257,1352,409,970,816,211,100700,81600,24700,12170,140,1.0,3,3,11.3,77777,9,999999999,229,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,15.0,40,102000,1139,1352,410,835,820,144,89100,83000,18900,5670,150,2.5,2,2,11.3,77777,9,999999999,220,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,14.4,36,102000,953,1352,419,670,716,165,71100,72800,19700,4680,80,2.0,3,3,11.3,77777,9,999999999,220,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,15.0,40,102000,711,1352,410,465,693,101,49600,69300,13100,2260,120,1.0,2,2,11.3,77777,9,999999999,220,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,15.0,42,102000,429,1352,410,225,402,98,23800,36200,12300,1830,80,1.0,3,3,11.3,77777,9,999999999,220,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.8,71,102100,132,1296,385,51,211,29,5400,11300,4200,510,310,2.0,2,2,11.3,77777,9,999999999,220,0.1550,0,88,0.110,0.0,6.0 +1996,4,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.3,71,102100,0,0,385,0,0,0,0,0,0,0,340,2.0,3,3,11.3,77777,9,999999999,220,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,17.7,62,102200,0,0,389,0,0,0,0,0,0,0,100,1.5,2,2,11.3,77777,9,999999999,220,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,18.2,66,102200,0,0,387,0,0,0,0,0,0,0,100,1.8,2,2,11.3,77777,9,999999999,220,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.3,18.3,69,102100,0,0,384,0,0,0,0,0,0,0,100,2.2,2,2,11.3,77777,9,999999999,220,0.1550,0,88,0.110,999.0,99.0 +1996,4,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.7,18.4,72,102100,0,0,375,0,0,0,0,0,0,0,100,2.5,1,1,11.3,77777,9,999999999,220,0.1550,0,88,0.110,999.0,99.0 +1996,4,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.7,18.3,76,102100,0,0,370,0,0,0,0,0,0,0,110,2.8,1,1,11.3,77777,9,999999999,220,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.0,18.4,80,102100,0,0,367,0,0,0,0,0,0,0,110,3.1,1,1,11.3,77777,9,999999999,220,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,18.3,83,102000,0,0,363,0,0,0,0,0,0,0,110,3.5,1,1,11.3,77777,9,999999999,220,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.7,18.3,86,102000,0,0,354,0,0,0,0,0,0,0,110,3.8,0,0,11.3,77777,9,999999999,220,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,102000,0,0,350,0,0,0,0,0,0,0,110,4.1,0,0,11.3,77777,9,999999999,220,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,102000,0,11,362,0,0,0,0,0,0,0,110,4.1,2,2,11.3,77777,9,999999999,220,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,18.3,87,102200,147,1352,368,42,35,38,4600,2300,4300,910,120,4.1,3,3,11.3,77777,9,999999999,220,0.1570,0,88,0.110,0.0,6.0 +1996,4,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.8,81,102200,445,1352,373,199,280,107,21400,26200,12800,2090,120,4.6,2,2,11.3,77777,9,999999999,220,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.3,69,102200,725,1352,388,439,396,227,47100,41500,24800,5330,120,5.1,3,3,11.3,77777,9,999999999,220,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,16.1,53,102200,964,1352,393,607,484,262,64600,50200,28700,7590,150,7.2,2,2,11.3,77777,9,999999999,220,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,16.6,51,102200,1148,1352,403,796,595,290,86000,62200,33000,12450,150,5.1,3,3,11.3,77777,9,999999999,220,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,15.5,46,102200,1262,1352,401,834,596,278,88300,60400,31800,17960,130,3.0,2,2,11.3,77777,9,999999999,229,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,15.0,42,102100,1300,1352,410,992,714,306,104700,72100,35200,24690,150,1.5,3,3,11.3,77777,9,999999999,229,0.1570,0,88,0.110,0.0,6.0 +1996,4,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,16.1,42,102100,1258,1352,414,905,646,303,95100,65100,34300,19080,270,2.0,2,2,11.3,77777,9,999999999,229,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,15.5,40,102000,1140,1352,417,733,577,246,77300,58400,27800,10080,240,2.5,3,3,11.3,77777,9,999999999,229,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,16.1,43,102000,954,1352,411,622,568,221,67200,59000,25500,6220,240,1.5,2,2,11.3,77777,9,999999999,229,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,16.6,43,101900,712,1352,418,368,345,186,39900,36100,20800,4180,220,1.0,3,3,11.3,77777,9,999999999,229,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,19.4,59,101900,431,1352,406,202,258,119,21400,23800,13800,2380,210,2.0,2,2,11.3,77777,9,999999999,240,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,18.8,66,102000,134,1318,394,35,10,34,3800,700,3800,830,270,1.5,3,3,11.3,77777,9,999999999,240,0.1570,0,88,0.110,0.0,6.0 +1996,4,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.3,74,102000,0,0,378,0,0,0,0,0,0,0,280,1.0,2,2,11.3,77777,9,999999999,240,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,18.8,79,102000,0,0,380,0,0,0,0,0,0,0,0,0.0,3,3,11.3,77777,9,999999999,240,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.5,19.0,81,102000,0,0,379,0,0,0,0,0,0,0,10,0.3,3,3,11.3,77777,9,999999999,240,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.2,18.9,82,102000,0,0,374,0,0,0,0,0,0,0,20,0.5,3,2,11.3,77777,9,999999999,250,0.1570,0,88,0.110,999.0,99.0 +1996,4,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.9,18.6,82,102000,0,0,372,0,0,0,0,0,0,0,30,0.8,3,2,11.3,77777,9,999999999,250,0.1570,0,88,0.110,999.0,99.0 +1996,4,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,18.3,83,102100,0,0,368,0,0,0,0,0,0,0,50,1.0,3,2,11.3,77777,9,999999999,250,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,18.1,84,102100,0,0,362,0,0,0,0,0,0,0,60,1.3,2,1,11.3,77777,9,999999999,250,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.6,17.8,84,102100,0,0,359,0,0,0,0,0,0,0,70,1.5,2,1,11.3,77777,9,999999999,250,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.3,17.5,84,102100,0,0,351,0,0,0,0,0,0,0,80,1.8,2,0,11.3,77777,9,999999999,259,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.2,84,102100,0,0,349,0,0,0,0,0,0,0,90,2.0,2,0,11.3,77777,9,999999999,259,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.2,87,102200,0,34,346,0,1,0,0,0,0,0,80,1.0,3,0,11.3,77777,9,999999999,259,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.7,81,102300,151,1351,355,62,293,29,6300,17300,4400,520,80,1.0,2,0,11.3,77777,9,999999999,259,0.1580,0,88,0.110,0.0,6.0 +1996,4,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,17.7,76,102200,449,1351,360,269,623,62,28400,57200,9400,1220,120,3.0,3,0,11.3,77777,9,999999999,259,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.8,71,102300,728,1351,372,502,775,84,53300,76900,11800,1920,130,3.0,2,0,11.3,77777,9,999999999,270,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.8,64,102300,967,1351,381,710,838,110,76200,84800,15300,3160,170,3.0,3,0,11.3,77777,9,999999999,270,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,17.2,56,102200,1150,1351,382,865,879,116,89300,88100,14200,4070,200,1.0,2,0,11.3,77777,9,999999999,270,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,17.2,54,102100,1264,1351,385,969,894,132,99600,89600,15500,6980,230,2.0,3,0,11.3,77777,9,999999999,270,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.3,58,102100,1301,1351,386,998,904,126,102600,90700,15000,8540,200,4.1,2,0,11.3,77777,9,999999999,270,0.1580,0,88,0.110,0.0,6.0 +1996,4,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,17.7,55,102000,1259,1351,388,893,816,132,91800,81800,15400,6810,200,5.6,3,0,11.3,77777,9,999999999,270,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,18.3,53,101900,1141,1351,394,858,878,116,88700,87900,14200,3970,210,5.1,2,0,11.3,77777,9,999999999,279,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,19.4,61,101900,955,1351,397,596,636,146,63900,65000,17800,4220,200,4.6,9,1,11.3,77777,9,999999999,279,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,19.4,62,101900,714,1351,395,443,583,135,46300,57600,15800,2910,220,4.6,9,1,11.3,77777,9,999999999,279,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,19.4,69,101900,433,1351,386,236,492,78,24400,44200,10200,1470,240,5.1,9,1,11.3,77777,9,999999999,279,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,101900,136,1317,375,49,151,34,5200,8100,4400,610,260,3.6,9,1,11.3,77777,9,999999999,279,0.1580,0,88,0.110,0.0,6.0 +1996,4,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,19.4,82,102000,0,0,372,0,0,0,0,0,0,0,250,2.5,9,1,11.3,77777,9,999999999,279,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,101900,0,0,364,0,0,0,0,0,0,0,250,2.5,9,1,11.3,77777,9,999999999,290,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,19.9,93,101900,0,0,369,0,0,0,0,0,0,0,260,2.2,9,2,11.3,19550,9,999999999,290,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,20.0,94,101900,0,0,372,0,0,0,0,0,0,0,280,1.9,9,3,11.3,17100,9,999999999,290,0.1580,0,88,0.110,999.0,99.0 +1996,4,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.9,20.1,95,101900,0,0,375,0,0,0,0,0,0,0,290,1.6,9,4,11.3,14650,9,999999999,290,0.1580,0,88,0.110,999.0,99.0 +1996,4,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.5,20.0,97,101900,0,0,376,0,0,0,0,0,0,0,310,1.3,9,5,11.3,12200,9,999999999,290,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.4,20.1,98,101900,0,0,375,0,0,0,0,0,0,0,320,0.9,9,5,11.3,9750,9,999999999,290,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.2,20.0,99,101900,0,0,377,0,0,0,0,0,0,0,330,0.6,9,6,11.3,7300,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.1,20.0,99,101900,0,0,381,0,0,0,0,0,0,0,350,0.3,9,7,11.3,4850,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,101800,0,0,387,0,0,0,0,0,0,0,0,0.0,9,8,8.0,2400,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,20.0,97,101900,0,56,409,0,0,0,0,0,0,0,90,1.0,10,10,6.4,300,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,20.5,100,101900,156,1350,410,18,0,18,2100,0,2100,700,150,3.0,10,10,8.0,300,9,999999999,300,0.1600,0,88,0.110,0.0,6.0 +1996,4,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,19.4,100,102000,453,1350,402,70,0,70,8200,0,8200,2950,50,2.0,10,10,3.2,300,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102000,731,1350,387,288,67,252,31700,6700,28000,7640,110,1.0,9,8,9.7,1800,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,22.7,100,102000,970,1350,398,598,396,313,64800,42700,34000,9300,140,2.0,9,7,11.3,2400,9,999999999,300,0.1600,0,88,0.110,51.0,6.0 +1996,4,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,102000,1152,1350,411,517,119,415,56700,12700,45900,16980,170,1.0,9,8,11.3,2400,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,19.4,62,102000,1265,1350,419,555,238,332,62100,26000,37700,19830,180,1.0,9,7,11.3,2400,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,22.7,76,101900,1302,1350,430,474,113,364,53000,12100,41300,24710,170,1.5,9,8,11.3,77777,9,999999999,300,0.1600,0,88,0.110,51.0,6.0 +1996,4,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,19.4,61,101900,1261,1350,422,396,95,306,44500,10200,35000,17000,190,2.0,9,7,11.3,77777,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.8,60,101800,1143,1350,425,600,312,336,66100,33900,37400,13440,220,2.0,9,8,11.3,77777,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.0,69,101700,957,1350,395,674,840,79,70500,83900,10900,2230,200,5.1,2,2,11.3,77777,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.0,69,101700,715,1350,420,221,127,154,24800,13200,17700,3920,250,3.6,9,8,11.3,1200,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,20.0,72,101700,436,1350,392,248,566,65,26000,51400,9400,1260,270,3.0,2,2,11.3,77777,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,19.4,76,101800,139,1339,386,44,146,29,4800,7900,3900,510,280,2.0,3,3,11.3,77777,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.0,85,101800,0,0,377,0,0,0,0,0,0,0,300,2.5,2,2,11.3,77777,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.0,79,101900,0,0,407,0,0,0,0,0,0,0,10,1.0,9,8,11.3,750,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.4,19.9,81,101900,0,0,399,0,0,0,0,0,0,0,20,1.1,8,7,11.3,3406,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.9,19.5,81,101900,0,0,391,0,0,0,0,0,0,0,30,1.3,7,6,11.3,6063,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.4,19.0,81,101800,0,0,384,0,0,0,0,0,0,0,40,1.4,6,5,11.3,8719,9,999999999,300,0.1600,0,88,0.110,999.0,99.0 +1996,4,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.6,18.3,82,101800,0,0,376,0,0,0,0,0,0,0,50,1.5,6,4,11.3,11375,9,999999999,300,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,17.9,82,101800,0,0,370,0,0,0,0,0,0,0,50,1.6,5,3,11.3,14031,9,999999999,300,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.5,17.2,81,101800,0,0,363,0,0,0,0,0,0,0,60,1.8,4,2,11.3,16688,9,999999999,300,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.9,16.6,81,101800,0,0,355,0,0,0,0,0,0,0,70,1.9,3,1,11.3,19344,9,999999999,300,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.1,81,101800,0,0,345,0,0,0,0,0,0,0,80,2.0,2,0,11.3,77777,9,999999999,300,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,16.1,84,101800,0,79,357,0,0,0,0,0,0,0,60,2.0,9,3,11.3,77777,9,999999999,300,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.7,81,101900,160,1349,360,53,44,48,5800,3000,5500,1110,60,1.0,9,2,11.2,77777,9,999999999,300,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,17.2,76,101900,456,1349,357,243,408,105,25700,37500,13000,1980,90,3.0,3,0,11.3,77777,9,999999999,300,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.3,69,101900,734,1349,372,473,593,151,49200,58600,17300,3260,100,3.0,2,0,11.3,77777,9,999999999,300,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,18.8,66,101900,972,1349,378,684,680,194,72000,68800,22300,5590,120,3.0,3,0,11.3,77777,9,999999999,300,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,19.4,65,101900,1154,1349,384,842,737,212,89900,75300,25400,9220,180,1.5,2,0,11.3,77777,9,999999999,290,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,19.4,61,101800,1267,1349,390,949,761,234,101700,77800,28500,15830,240,1.0,3,0,11.3,77777,9,999999999,290,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.0,61,101700,1304,1349,394,891,684,229,95900,70100,28000,19560,210,3.0,2,0,11.3,77777,9,999999999,290,0.1610,0,88,0.110,0.0,6.0 +1996,4,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.0,61,101700,1262,1349,394,913,726,233,97700,74200,28200,15330,220,3.6,3,0,11.3,77777,9,999999999,290,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,20.5,65,101600,1144,1349,391,835,737,211,89100,75200,25200,8900,220,5.1,2,0,11.3,77777,9,999999999,279,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,19.4,62,101600,958,1349,387,673,678,192,70800,68500,22100,5410,220,4.1,3,0,11.3,77777,9,999999999,279,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,20.5,69,101500,717,1349,386,445,559,148,46200,55000,16900,3150,220,4.1,2,0,11.3,77777,9,999999999,279,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,19.4,67,101500,438,1349,382,229,394,101,24100,35700,12500,1890,240,3.0,3,0,11.3,77777,9,999999999,279,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,18.8,74,101500,141,1338,369,45,76,37,5000,4400,4500,770,250,1.5,2,0,11.3,77777,9,999999999,279,0.1610,0,88,0.110,0.0,6.0 +1996,4,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,18.8,84,101500,0,0,359,0,0,0,0,0,0,0,270,1.0,3,0,11.3,77777,9,999999999,270,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,101600,0,0,359,0,0,0,0,0,0,0,280,1.0,0,0,11.3,77777,9,999999999,270,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.7,20.0,90,101600,0,0,360,0,0,0,0,0,0,0,270,1.3,0,0,11.3,77777,9,999999999,270,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.7,20.1,91,101600,0,0,367,0,0,0,0,0,0,0,250,1.5,1,1,11.3,77777,9,999999999,270,0.1610,0,88,0.110,999.0,99.0 +1996,4,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.6,20.3,92,101500,0,0,367,0,0,0,0,0,0,0,240,1.8,1,1,11.3,77777,9,999999999,259,0.1610,0,88,0.110,999.0,99.0 +1996,4,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,20.2,93,101500,0,0,370,0,0,0,0,0,0,0,230,2.0,2,2,11.3,77777,9,999999999,259,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,20.4,95,101500,0,0,371,0,0,0,0,0,0,0,210,2.3,2,2,11.3,77777,9,999999999,259,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.2,20.4,95,101500,0,0,370,0,0,0,0,0,0,0,200,2.5,2,2,11.3,77777,9,999999999,259,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,20.4,96,101500,0,0,373,0,0,0,0,0,0,0,180,2.8,3,3,11.3,77777,9,999999999,259,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,20.5,96,101500,0,0,373,0,0,0,0,0,0,0,170,3.0,3,3,11.3,77777,9,999999999,250,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.5,20.0,97,101500,1,101,366,0,0,0,0,0,0,0,170,3.0,2,2,11.3,77777,9,999999999,250,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9?9?9,21.1,20.5,96,101500,164,1349,373,49,72,40,5300,4400,4800,840,150,1.5,3,3,11.3,77777,9,999999999,250,0.1630,0,88,0.110,0.0,6.0 +1996,4,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101600,460,1349,379,233,374,105,24600,34400,12800,1980,160,1.0,2,2,8.0,77777,9,999999999,250,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.1,85,101600,737,1349,388,361,387,149,39100,39400,17500,3230,210,1.0,3,3,9.7,77777,9,999999999,250,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,20.5,74,101600,974,1349,392,654,593,226,70800,61700,26100,6600,170,3.0,2,2,9.7,77777,9,999999999,250,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,16.1,53,101600,1156,1349,397,782,627,244,82600,63600,27900,10560,190,4.1,3,3,11.3,77777,9,999999999,240,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.3,58,101600,1268,1349,399,919,714,247,98100,72800,29500,16850,210,4.1,2,2,11.3,77777,9,999999999,240,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,17.2,51,101600,1305,1349,407,824,589,253,88100,60100,29800,21840,200,4.1,3,3,11.3,77777,9,999999999,240,0.1630,0,88,0.110,0.0,6.0 +1996,4,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,19.4,59,101500,1263,1349,425,716,465,280,78800,48800,33000,18850,200,4.1,9,7,11.3,77777,9,999999999,240,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,20.5,65,101400,1145,1349,430,662,68,604,72700,7200,66600,23690,200,4.6,9,8,11.3,77777,9,999999999,240,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,20.0,63,101400,959,1349,422,533,307,314,57600,33100,34000,9230,210,5.1,9,7,11.3,77777,9,999999999,240,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.0,69,101300,718,1349,399,450,529,168,48000,53500,19400,3640,220,4.6,3,3,11.3,77777,9,999999999,240,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.3,62,101300,440,1349,393,226,382,101,23800,34700,12500,1890,220,4.6,2,2,11.3,77777,9,999999999,229,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,17.2,67,101400,144,1349,383,42,56,35,4500,3200,4100,730,240,2.5,3,3,11.3,77777,9,999999999,229,0.1630,0,88,0.110,0.0,6.0 +1996,4,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,19.4,82,101500,0,11,365,0,0,0,0,0,0,0,290,2.5,0,0,11.3,77777,9,999999999,229,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,19.4,90,101500,0,0,357,0,0,0,0,0,0,0,270,1.5,0,0,11.3,77777,9,999999999,229,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.4,19.9,91,101600,0,0,371,0,0,0,0,0,0,0,290,1.8,2,2,11.3,77777,9,999999999,229,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.0,91,101600,0,0,375,0,0,0,0,0,0,0,300,2.0,3,3,11.3,77777,9,999999999,229,0.1630,0,88,0.110,999.0,99.0 +1996,4,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.6,20.1,91,101600,0,0,376,0,0,0,0,0,0,0,270,1.8,4,3,11.3,18383,9,999999999,229,0.1630,0,88,0.110,999.0,99.0 +1996,4,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,20.0,92,101600,0,0,377,0,0,0,0,0,0,0,240,1.5,5,4,11.3,14767,9,999999999,229,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.2,20.1,93,101600,0,0,376,0,0,0,0,0,0,0,210,1.3,6,4,11.3,11150,9,999999999,220,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.2,20.0,93,101600,0,0,376,0,0,0,0,0,0,0,180,1.0,7,4,11.3,7533,9,999999999,220,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,20.0,93,101600,0,0,379,0,0,0,0,0,0,0,150,0.8,8,5,11.3,3917,9,999999999,220,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.0,93,101500,0,0,379,0,0,0,0,0,0,0,120,0.5,9,5,6.4,300,9,999999999,220,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,101600,1,124,367,0,0,0,0,0,0,0,100,0.5,3,3,2.4,77777,9,999999999,220,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,20.5,93,101700,168,1348,382,55,32,51,6000,2200,5700,1180,70,0.5,9,5,3.2,300,9,999999999,220,0.1640,0,88,0.110,0.0,6.0 +1996,4,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,21.1,97,101700,463,1348,383,145,119,104,16100,11400,12100,2370,0,0.0,9,5,8.0,300,9,999999999,220,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,101800,740,1348,387,340,322,163,36500,32700,18500,3570,150,0.5,2,2,9.7,77777,9,999999999,220,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,101800,977,1348,391,620,495,261,66100,51400,28800,7740,160,1.0,3,3,11.3,77777,9,999999999,229,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,21.6,74,101800,1157,1348,400,809,696,211,86400,71100,25200,9310,180,1.0,2,2,11.3,77777,9,999999999,229,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.0,65,101700,1270,1348,405,930,685,284,98300,69300,32800,19430,270,1.0,3,3,11.3,77777,9,999999999,229,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,16.1,43,101700,1306,1348,411,925,682,264,98700,69400,31200,23070,210,3.0,2,2,11.3,77777,9,999999999,240,0.1640,0,88,0.110,0.0,6.0 +1996,4,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,20.0,59,101600,1264,1348,414,879,662,258,93500,67400,30200,17180,240,2.0,3,3,11.3,77777,9,999999999,240,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,17.7,46,101600,1146,1348,416,845,740,215,89900,75500,25600,9150,240,1.5,2,2,11.3,77777,9,999999999,240,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,16.6,43,101500,960,1348,418,617,618,176,65300,62700,20500,5040,270,1.5,3,3,11.3,77777,9,999999999,250,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,18.8,53,101500,720,1348,411,458,529,175,48700,53500,20000,3810,300,1.0,2,2,11.3,77777,9,999999999,250,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,18.3,55,101600,442,1348,409,187,250,105,20100,23300,12500,2040,310,2.0,3,3,11.3,77777,9,999999999,250,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,18.8,66,101600,146,1348,390,47,60,41,5200,3400,4800,860,330,1.5,2,2,11.3,77777,9,999999999,259,0.1640,0,88,0.110,0.0,6.0 +1996,4,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.8,74,101600,0,11,385,0,0,0,0,0,0,0,310,1.0,3,3,11.3,77777,9,999999999,259,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.5,82,101700,0,0,371,0,0,0,0,0,0,0,330,2.5,0,0,11.3,77777,9,999999999,259,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.8,21.0,84,101700,0,0,372,0,0,0,0,0,0,0,340,2.3,0,0,11.3,77777,9,999999999,270,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.7,21.1,85,101700,0,0,379,0,0,0,0,0,0,0,360,2.1,1,1,11.3,77777,9,999999999,270,0.1640,0,88,0.110,999.0,99.0 +1996,4,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.6,21.2,86,101700,0,0,378,0,0,0,0,0,0,0,10,1.9,1,1,11.3,77777,9,999999999,270,0.1640,0,88,0.110,999.0,99.0 +1996,4,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.2,21.1,88,101700,0,0,381,0,0,0,0,0,0,0,20,1.8,2,2,11.3,77777,9,999999999,270,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.1,21.2,89,101800,0,0,381,0,0,0,0,0,0,0,30,1.6,2,2,11.3,77777,9,999999999,279,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.9,21.1,90,101800,0,0,380,0,0,0,0,0,0,0,50,1.4,2,2,11.3,77777,9,999999999,279,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.8,21.1,90,101800,0,0,383,0,0,0,0,0,0,0,60,1.2,3,3,11.3,77777,9,999999999,279,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101800,0,0,382,0,0,0,0,0,0,0,70,1.0,3,3,11.3,77777,9,999999999,290,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.6,90,101800,1,146,400,0,0,0,0,0,0,0,70,2.0,9,7,4.8,210,9,999999999,290,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,21.7,94,101900,172,1347,404,37,30,33,4000,2100,3800,840,80,2.6,9,8,2.8,90,9,999999999,290,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101900,467,1347,407,171,163,114,18800,15600,13400,2600,110,4.1,9,7,6.4,240,9,999999999,300,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101900,743,1347,423,311,174,215,34200,18100,24200,5570,120,4.6,9,8,11.3,360,9,999999999,309,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,21.6,69,101900,979,1347,406,662,679,169,70500,69200,20100,5030,110,4.1,2,2,11.3,77777,9,999999999,309,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.5,57,101900,1159,1347,421,784,639,234,83100,65000,27100,10320,130,4.1,3,3,11.3,77777,9,999999999,320,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,20.0,52,101900,1271,1347,422,902,788,158,96800,80000,21200,10580,130,4.6,2,2,11.3,77777,9,999999999,320,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,18.8,45,101800,1307,1347,431,885,720,186,93800,72700,23100,15670,120,3.6,3,3,11.3,77777,9,999999999,329,0.1660,0,88,0.110,0.0,6.0 +1996,4,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.7,18.8,44,101700,1265,1347,429,878,775,151,94700,78800,20600,9810,120,3.0,2,2,11.3,77777,9,999999999,340,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,18.8,42,101600,1147,1347,437,839,810,150,89300,81900,19400,6070,120,4.1,3,3,11.3,77777,9,999999999,340,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,23.3,59,101600,961,1347,433,661,715,151,70800,73100,18500,4410,240,3.6,2,2,11.3,77777,9,999999999,350,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.2,59,101600,722,1347,429,394,436,161,42300,44200,18600,3480,270,3.0,3,3,11.3,77777,9,999999999,350,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.5,84,101700,443,1347,399,215,154,164,23000,14300,18300,3720,210,3.6,9,7,11.3,1200,9,999999999,359,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,21.6,88,101800,149,1347,409,33,28,30,3600,1900,3400,750,330,1.0,9,8,11.3,1200,9,999999999,370,0.1660,0,88,0.110,4.0,6.0 +1996,4,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101800,0,34,401,0,0,0,0,0,0,0,30,1.0,9,7,11.3,1200,9,999999999,370,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101800,0,0,411,0,0,0,0,0,0,0,90,1.0,9,8,11.3,1800,9,999999999,379,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,22.9,94,101800,0,0,411,0,0,0,0,0,0,0,90,1.3,9,8,11.3,1613,9,999999999,379,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,22.8,94,101800,0,0,411,0,0,0,0,0,0,0,100,1.5,9,8,11.3,1425,9,999999999,390,0.1660,0,88,0.110,999.0,99.0 +1996,4,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.8,22.5,92,101800,0,0,404,0,0,0,0,0,0,0,100,1.8,9,7,11.3,1238,9,999999999,400,0.1660,0,88,0.110,999.0,99.0 +1996,4,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.5,22.2,92,101800,0,0,402,0,0,0,0,0,0,0,100,2.0,9,7,11.3,1050,9,999999999,400,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.5,22.0,91,101800,0,0,402,0,0,0,0,0,0,0,100,2.3,9,7,11.3,863,9,999999999,409,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.4,21.7,90,101800,0,0,401,0,0,0,0,0,0,0,110,2.5,9,7,11.3,675,9,999999999,409,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.3,21.4,89,101800,0,0,395,0,0,0,0,0,0,0,110,2.8,9,6,11.3,488,9,999999999,419,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,101800,0,0,395,0,0,0,0,0,0,0,110,3.0,9,6,9.7,300,9,999999999,430,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101800,2,146,382,0,3,0,0,0,0,0,120,4.1,3,3,9.7,77777,9,999999999,430,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,21.6,88,101900,175,1347,385,67,204,40,7000,12200,5400,720,110,3.0,2,2,11.3,77777,9,999999999,440,0.1670,0,88,0.110,4.0,24.0 +1996,4,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.2,82,101900,470,1347,398,272,508,95,28000,46400,11800,1770,120,4.1,3,3,11.3,77777,9,999999999,440,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.6,72,101900,745,1347,403,477,671,105,51000,67500,13500,2420,120,5.1,2,2,11.3,77777,9,999999999,440,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,20.5,61,101900,981,1347,414,675,705,161,72100,72000,19500,4840,130,5.6,3,3,11.3,77777,9,999999999,440,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.5,57,101900,1161,1347,431,751,580,250,79200,58800,28400,11030,140,4.1,9,6,11.3,77777,9,999999999,440,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,19.4,52,101800,1272,1347,422,886,768,159,95000,77900,21200,10760,170,4.1,3,3,11.3,77777,9,999999999,440,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.0,52,101700,1308,1347,422,910,734,197,95900,73900,23900,16720,170,3.0,2,2,11.3,77777,9,999999999,450,0.1670,0,88,0.110,0.0,6.0 +1996,4,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.7,65,101600,1265,1347,424,903,753,195,94700,75700,23400,12320,210,5.1,3,3,11.3,77777,9,999999999,450,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.6,61,101500,1148,1347,418,732,657,171,79200,67700,21400,7470,210,6.6,2,2,11.3,77777,9,999999999,450,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.6,61,101400,963,1347,422,667,670,188,70300,67800,21700,5370,210,7.7,3,3,11.3,77777,9,999999999,450,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,21.1,63,101300,723,1347,411,453,648,105,48300,64900,13300,2370,210,6.1,2,2,11.3,77777,9,999999999,450,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.6,72,101400,445,1347,407,256,372,132,26200,33800,15000,2560,200,8.2,3,3,11.3,77777,9,999999999,450,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,21.1,72,101400,151,1347,413,57,23,54,6200,1600,6000,1180,200,7.7,9,6,11.3,7500,9,999999999,450,0.1670,0,88,0.110,0.0,6.0 +1996,4,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101400,0,56,410,0,0,0,0,0,0,0,200,6.1,9,6,11.3,7500,9,999999999,450,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,21.6,79,101400,0,0,407,0,0,0,0,0,0,0,200,5.6,9,6,11.3,7500,9,999999999,450,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,21.6,79,101500,0,0,407,0,0,0,0,0,0,0,170,4.6,9,6,11.3,1500,9,999999999,459,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,21.6,79,101500,0,0,407,0,0,0,0,0,0,0,160,5.1,9,6,11.3,1500,9,999999999,459,0.1670,0,88,0.110,999.0,99.0 +1996,4,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,21.1,77,101500,0,0,397,0,0,0,0,0,0,0,160,6.1,3,3,11.3,77777,9,999999999,459,0.1670,0,88,0.110,999.0,99.0 +1996,4,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.3,20.6,80,101400,0,0,393,0,0,0,0,0,0,0,170,5.9,4,4,11.3,17732,9,999999999,459,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.3,20.2,83,101400,0,0,394,0,0,0,0,0,0,0,180,5.7,6,6,11.3,13464,9,999999999,459,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.4,19.7,85,101300,0,0,393,0,0,0,0,0,0,0,190,5.5,7,7,11.3,9196,9,999999999,459,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.4,19.2,87,101300,0,0,402,0,0,0,0,0,0,0,200,5.3,9,9,11.3,4928,9,999999999,459,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,18.8,90,101200,0,0,408,0,0,0,0,0,0,0,210,5.1,10,10,2.4,660,9,999999999,459,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.0,93,101100,2,168,412,0,0,0,0,0,0,0,150,3.6,10,10,11.3,900,9,999999999,459,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,101400,179,1346,416,29,0,29,3300,0,3300,1080,290,6.7,10,10,3.2,600,9,999999999,469,0.1690,0,88,0.110,6.0,6.0 +1996,4,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,19.4,93,101400,473,1346,408,77,0,77,9000,0,9000,3250,230,2.0,10,10,6.4,840,9,999999999,459,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.5,96,101400,748,1346,413,144,0,144,17000,0,17000,6560,200,1.5,10,10,11.3,840,9,999999999,450,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,20.5,93,101400,983,1346,416,203,0,203,24300,0,24300,9760,230,2.5,10,10,11.3,1500,9,999999999,440,0.1690,0,88,0.110,21.0,6.0 +1996,4,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.5,90,101400,1162,1346,419,247,0,247,29900,0,29900,11990,210,2.0,10,10,11.3,1500,9,999999999,440,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,21.1,93,101400,1273,1346,420,275,0,275,33500,0,33500,13300,200,2.5,10,10,11.3,900,9,999999999,430,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.6,90,101400,1309,1346,427,283,0,283,34500,0,34500,13690,210,2.0,10,10,11.3,900,9,999999999,419,0.1690,0,88,0.110,25.0,6.0 +1996,4,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,21.6,79,101300,1266,1346,428,516,87,434,57000,9000,48600,23660,210,2.5,9,9,11.3,900,9,999999999,409,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,101300,1149,1346,423,486,126,378,53600,13400,42100,15470,270,3.0,9,9,11.3,900,9,999999999,409,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,21.1,77,101300,964,1346,427,410,192,273,45500,20400,30800,8460,300,4.1,9,9,11.3,900,9,999999999,400,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,19.4,76,101300,725,1346,386,379,407,159,40700,41300,18400,3440,330,5.1,3,3,11.3,77777,9,999999999,390,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,19.4,84,101400,447,1346,406,163,71,139,17800,6600,15600,3680,330,2.0,9,9,11.3,540,9,999999999,379,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.2,78,101400,153,1346,409,32,0,32,3600,0,3600,1110,330,1.5,10,10,11.3,77777,9,999999999,379,0.1690,0,88,0.110,0.0,6.0 +1996,4,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,15.5,73,101500,0,56,361,0,0,0,0,0,0,0,340,1.0,2,2,11.3,77777,9,999999999,370,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,13.8,70,101600,0,0,357,0,0,0,0,0,0,0,340,2.5,3,3,11.3,77777,9,999999999,359,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.4,15.1,71,101600,0,0,364,0,0,0,0,0,0,0,350,2.4,3,3,11.3,77777,9,999999999,350,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,16.4,71,101600,0,0,370,0,0,0,0,0,0,0,350,2.2,3,3,11.3,77777,9,999999999,350,0.1690,0,88,0.110,999.0,99.0 +1996,4,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.3,17.7,71,101600,0,0,376,0,0,0,0,0,0,0,360,2.1,3,3,11.3,77777,9,999999999,340,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.2,18.9,85,101700,0,0,382,0,0,0,0,0,0,0,0,1.9,3,3,11.2,77777,9,999999999,350,0.1690,0,88,0.110,0.0,6.0 +1991,5,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.2,20.2,85,101700,0,0,385,0,0,0,0,0,0,0,110,1.8,2,2,11.2,77777,9,999999999,350,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.1,21.5,82,101700,0,0,395,0,0,0,0,0,0,0,20,1.6,3,3,11.2,77777,9,999999999,350,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,22.8,82,101700,0,0,386,0,0,0,0,0,0,0,70,1.5,0,0,11.2,77777,9,999999999,350,0.1690,0,88,0.110,0.0,99.0 +1991,5,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.8,82,101700,0,0,402,0,0,0,0,0,0,0,60,1.0,3,3,11.2,77777,9,999999999,350,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101700,2,191,393,0,3,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,350,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.3,85,101800,180,1346,424,44,25,40,4800,1800,4500,1000,90,1.5,9,8,11.2,3000,9,999999999,350,0.1690,0,88,0.110,0.0,6.0 +1991,5,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,101800,474,1346,423,184,237,100,20000,22700,12000,1930,130,2.6,9,7,11.2,7500,9,999999999,350,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.2,70,101800,749,1346,435,339,199,228,37100,20700,25600,5930,140,1.5,9,8,11.2,1200,9,999999999,350,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,21.7,61,101800,984,1346,438,629,326,391,67200,35100,41500,12330,170,2.6,9,7,11.2,77777,9,999999999,350,0.1690,0,88,0.110,0.0,99.0 +1991,5,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.1,57,101800,1163,1346,447,582,422,217,64900,44300,26500,9770,180,1.5,9,8,11.2,77777,9,999999999,350,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.1,55,101800,1274,1346,443,796,497,325,86500,52100,37100,23720,200,1.5,9,7,11.2,77777,9,999999999,350,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,20.6,52,101700,1309,1346,453,429,208,226,49600,22800,27400,17730,220,2.1,9,8,11.2,77777,9,999999999,350,0.1690,0,88,0.110,0.0,6.0 +1991,5,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,20.6,54,101600,1267,1346,443,692,316,394,76500,34400,44000,24430,250,1.5,9,7,11.2,77777,9,999999999,350,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,23.3,59,101500,1149,1346,460,456,322,181,51700,33900,22700,7760,250,2.6,9,8,11.2,77777,9,999999999,350,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.7,22.8,59,101500,964,1346,449,488,184,356,53200,19400,39200,11040,240,1.5,9,7,11.2,77777,9,999999999,350,0.1690,0,88,0.110,0.0,99.0 +1991,5,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.8,61,101500,725,1346,453,151,29,135,16700,2900,15100,4530,260,3.1,9,8,11.2,7500,9,999999999,350,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.8,72,101500,448,1346,429,164,173,106,17600,16200,12200,2070,290,4.1,9,7,11.2,900,9,999999999,350,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,22.2,74,101600,154,1346,429,34,20,31,3700,1300,3500,780,320,4.6,9,8,11.2,7500,9,999999999,350,0.1690,0,88,0.110,0.0,6.0 +1991,5,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,101700,0,56,423,0,0,0,0,0,0,0,320,2.6,9,7,11.2,3000,9,999999999,350,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.2,74,101800,0,0,429,0,0,0,0,0,0,0,10,2.6,9,8,11.2,2100,9,999999999,340,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,22.2,76,101800,0,0,420,0,0,0,0,0,0,0,10,1.5,9,7,11.2,1500,9,999999999,340,0.1690,0,88,0.110,0.0,99.0 +1991,5,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.2,76,101800,0,0,435,0,0,0,0,0,0,0,10,1.5,10,9,11.2,7500,9,999999999,340,0.1690,0,88,0.110,999.0,99.0 +1991,5,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101800,0,0,414,0,0,0,0,0,0,0,20,1.0,9,7,11.2,7500,9,999999999,340,0.1690,0,88,0.110,999.0,99.0 +1991,5,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.7,77,101700,0,0,397,0,0,0,0,0,0,0,0,0.0,9,2,11.2,7500,9,999999999,340,0.1700,0,88,0.110,0.0,6.0 +1991,5,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.7,82,101600,0,0,386,0,0,0,0,0,0,0,90,1.5,3,1,11.2,77777,9,999999999,340,0.1700,0,88,0.110,999.0,99.0 +1991,5,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,101600,0,0,382,0,0,0,0,0,0,0,0,0.0,2,1,11.2,77777,9,999999999,340,0.1700,0,88,0.110,999.0,99.0 +1991,5,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,22.8,21.1,90,101600,0,0,374,0,0,0,0,0,0,0,0,0.0,3,1,9.6,77777,9,999999999,340,0.1700,0,88,0.110,0.0,99.0 +1991,5,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,20.0,90,101600,0,0,367,0,0,0,0,0,0,0,20,1.0,2,1,11.2,77777,9,999999999,340,0.1700,0,88,0.110,999.0,99.0 +1991,5,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,20.0,90,101600,3,191,360,0,0,0,0,0,0,0,0,0.0,0,0,8.0,77777,9,999999999,340,0.1700,0,88,0.110,999.0,99.0 +1991,5,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.1,87,101700,184,1345,370,66,149,45,6900,8900,5700,830,360,0.5,0,0,8.0,77777,9,999999999,340,0.1700,0,88,0.110,0.0,6.0 +1991,5,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.1,79,101700,477,1345,378,262,467,96,28000,43600,12600,1800,50,3.6,0,0,8.0,77777,9,999999999,340,0.1700,0,88,0.110,999.0,99.0 +1991,5,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.1,71,101800,751,1345,387,493,633,140,51700,63000,16500,3130,70,2.6,0,0,6.4,77777,9,999999999,340,0.1700,0,88,0.110,999.0,99.0 +1991,5,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,21.1,67,101800,985,1345,392,702,724,171,74700,73800,20500,5150,60,2.6,0,0,6.4,77777,9,999999999,340,0.1700,0,88,0.110,0.0,99.0 +1991,5,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.1,59,101800,1164,1345,412,820,727,191,88300,74600,23600,8740,60,4.6,2,1,11.2,77777,9,999999999,329,0.1700,0,88,0.110,999.0,99.0 +1991,5,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,20.0,52,101700,1275,1345,416,917,741,214,99000,76100,26700,15540,60,3.6,3,1,11.2,77777,9,999999999,329,0.1700,0,88,0.110,999.0,99.0 +1991,5,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,18.9,45,101700,1310,1345,421,904,716,207,98300,73800,26200,19340,60,3.1,2,1,11.2,77777,9,999999999,329,0.1700,0,88,0.110,0.0,6.0 +1991,5,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,20.0,49,101600,1267,1345,422,892,724,209,96400,74400,26100,14560,60,2.6,3,1,11.2,77777,9,999999999,329,0.1700,0,88,0.110,999.0,99.0 +1991,5,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,18.9,44,101600,1150,1345,424,794,688,206,84900,70400,24600,8960,80,1.5,2,1,11.2,77777,9,999999999,329,0.1700,0,88,0.110,999.0,99.0 +1991,5,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.8,19.4,45,101500,965,1345,425,654,652,186,69000,66100,21500,5350,80,1.0,3,1,11.2,77777,9,999999999,329,0.1700,0,88,0.110,0.0,99.0 +1991,5,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,19.4,48,101500,726,1345,419,462,604,135,48300,59900,15900,2960,80,1.0,2,1,11.2,77777,9,999999999,320,0.1700,0,88,0.110,999.0,99.0 +1991,5,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.6,57,101500,450,1345,421,222,295,123,23600,27700,14400,2470,0,0.0,9,3,11.2,7500,9,999999999,320,0.1700,0,88,0.110,999.0,99.0 +1991,5,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.0,63,101500,156,1345,404,52,43,47,5700,2900,5300,1090,10,2.1,9,2,11.2,7500,9,999999999,320,0.1700,0,88,0.110,0.0,6.0 +1991,5,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101500,0,78,391,0,0,0,0,0,0,0,10,0.5,3,1,11.2,77777,9,999999999,320,0.1700,0,88,0.110,999.0,99.0 +1991,5,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101600,0,0,384,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,320,0.1700,0,88,0.110,999.0,99.0 +1991,5,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,21.7,79,101600,0,0,382,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,320,0.1700,0,88,0.110,0.0,99.0 +1991,5,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.0,65,101700,0,0,395,0,0,0,0,0,0,0,0,0.0,2,1,11.2,77777,9,999999999,309,0.1700,0,88,0.110,999.0,99.0 +1991,5,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,20.6,74,101600,0,0,381,0,0,0,0,0,0,0,100,3.1,0,0,11.2,77777,9,999999999,309,0.1700,0,88,0.110,999.0,99.0 +1991,5,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,101600,0,0,394,0,0,0,0,0,0,0,90,1.0,3,3,11.2,77777,9,999999999,309,0.1720,0,88,0.110,0.0,6.0 +1991,5,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,101600,0,0,384,0,0,0,0,0,0,0,110,4.6,2,2,11.2,77777,9,999999999,309,0.1720,0,88,0.110,999.0,99.0 +1991,5,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,101600,0,0,373,0,0,0,0,0,0,0,110,1.5,0,0,11.2,77777,9,999999999,309,0.1720,0,88,0.110,999.0,99.0 +1991,5,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,21.1,87,101600,0,0,370,0,0,0,0,0,0,0,70,1.5,0,0,11.2,77777,9,999999999,309,0.1720,0,88,0.110,0.0,99.0 +1991,5,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.6,87,101600,0,0,382,0,0,0,0,0,0,0,90,1.5,3,3,11.2,77777,9,999999999,300,0.1720,0,88,0.110,999.0,99.0 +1991,5,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.6,87,101600,3,213,379,0,8,0,0,0,0,0,80,1.0,2,2,11.2,77777,9,999999999,300,0.1720,0,88,0.110,999.0,99.0 +1991,5,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.6,82,101600,187,1344,372,83,364,33,8600,23900,5300,600,90,2.1,0,0,11.2,77777,9,999999999,300,0.1720,0,88,0.110,0.0,6.0 +1991,5,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,20.6,74,101700,480,1344,381,297,667,58,31100,62200,8800,1210,90,2.1,0,0,11.2,77777,9,999999999,300,0.1720,0,88,0.110,999.0,99.0 +1991,5,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.9,61,101700,753,1344,387,527,796,81,56500,79500,11900,1930,90,2.6,0,0,11.2,77777,9,999999999,300,0.1720,0,88,0.110,999.0,99.0 +1991,5,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,17.2,48,101700,987,1344,396,732,862,98,76000,86100,12600,2600,90,4.1,0,0,11.2,77777,9,999999999,300,0.1720,0,88,0.110,0.0,99.0 +1991,5,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,17.2,46,101700,1166,1344,416,821,782,143,88000,79300,19100,6260,120,4.1,3,3,11.2,77777,9,999999999,300,0.1720,0,88,0.110,999.0,99.0 +1991,5,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,16.7,43,101700,1276,1344,415,837,679,193,91100,70000,24500,14220,120,1.5,2,2,11.2,77777,9,999999999,300,0.1720,0,88,0.110,999.0,99.0 +1991,5,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,17.2,42,101600,1311,1344,426,976,766,229,105300,78600,28500,21610,100,2.1,3,3,11.2,77777,9,999999999,309,0.1720,0,88,0.110,0.0,6.0 +1991,5,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,17.8,41,101600,1268,1344,429,895,801,139,91800,80300,15900,7660,140,1.5,2,2,11.2,77777,9,999999999,309,0.1720,0,88,0.110,999.0,99.0 +1991,5,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,17.2,39,101600,1151,1344,465,321,202,148,37100,21300,18800,6360,160,1.0,9,9,11.2,77777,9,999999999,309,0.1720,0,88,0.110,999.0,99.0 +1991,5,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.2,17.2,41,101500,966,1344,424,648,707,140,69800,72500,17600,4170,0,0.0,2,2,11.2,77777,9,999999999,309,0.1720,0,88,0.110,0.0,99.0 +1991,5,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,17.2,42,101500,728,1344,426,453,622,116,48000,62200,14200,2600,0,0.0,3,3,11.2,77777,9,999999999,309,0.1720,0,88,0.110,999.0,99.0 +1991,5,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,17.8,45,101500,452,1344,419,257,553,71,26900,50700,9900,1380,0,0.0,2,2,11.2,77777,9,999999999,309,0.1720,0,88,0.110,999.0,99.0 +1991,5,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,17.8,48,101500,159,1344,417,69,190,46,7000,10700,5700,850,0,0.0,3,3,11.2,77777,9,999999999,309,0.1720,0,88,0.110,0.0,6.0 +1991,5,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,19.4,59,101600,1,78,441,0,0,0,0,0,0,0,320,1.5,9,9,11.2,1800,9,999999999,309,0.1720,0,88,0.110,999.0,99.0 +1991,5,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,19.4,59,101600,0,0,441,0,0,0,0,0,0,0,0,0.0,9,9,11.2,1500,9,999999999,309,0.1720,0,88,0.110,999.0,99.0 +1991,5,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,20.0,65,101700,0,0,401,0,0,0,0,0,0,0,100,3.6,2,2,11.2,77777,9,999999999,309,0.1720,0,88,0.110,0.0,99.0 +1991,5,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.0,69,101700,0,0,399,0,0,0,0,0,0,0,100,3.1,3,3,11.2,77777,9,999999999,309,0.1720,0,88,0.110,999.0,99.0 +1991,5,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,101700,0,0,389,0,0,0,0,0,0,0,100,3.1,2,2,11.2,77777,9,999999999,309,0.1720,0,88,0.110,999.0,99.0 +1991,5,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.0,76,101700,0,0,386,0,0,0,0,0,0,0,110,3.6,2,2,11.2,77777,9,999999999,309,0.1730,0,88,0.110,0.0,6.0 +1991,5,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,101600,0,0,372,0,0,0,0,0,0,0,110,2.6,0,0,11.2,77777,9,999999999,320,0.1730,0,88,0.110,999.0,99.0 +1991,5,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,101600,0,0,372,0,0,0,0,0,0,0,110,3.6,0,0,11.2,77777,9,999999999,320,0.1730,0,88,0.110,999.0,99.0 +1991,5,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,20.6,85,101600,0,0,369,0,0,0,0,0,0,0,110,2.1,0,0,11.2,77777,9,999999999,320,0.1730,0,88,0.110,0.0,99.0 +1991,5,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.6,87,101600,0,0,366,0,0,0,0,0,0,0,110,2.6,0,0,11.2,77777,9,999999999,320,0.1730,0,88,0.110,999.0,99.0 +1991,5,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.6,87,101600,4,235,382,0,0,0,0,0,0,0,110,3.1,3,3,11.2,77777,9,999999999,320,0.1730,0,88,0.110,999.0,99.0 +1991,5,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,101700,190,1344,391,75,189,48,7700,11900,6100,870,110,2.6,2,2,11.2,77777,9,999999999,320,0.1730,0,88,0.110,0.0,6.0 +1991,5,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101700,483,1344,400,248,403,103,26400,37700,12800,1940,130,4.1,3,3,11.2,77777,9,999999999,320,0.1730,0,88,0.110,999.0,99.0 +1991,5,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,21.1,67,101800,756,1344,405,488,650,122,51700,65200,14900,2800,140,3.6,2,2,11.2,77777,9,999999999,320,0.1730,0,88,0.110,999.0,99.0 +1991,5,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,19.4,57,101800,989,1344,413,652,629,189,68900,63800,21800,5680,150,1.0,3,3,11.2,77777,9,999999999,320,0.1730,0,88,0.110,0.0,99.0 +1991,5,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.0,61,101800,1167,1344,407,880,837,153,93700,84700,20000,6650,140,2.1,2,2,11.2,77777,9,999999999,320,0.1730,0,88,0.110,999.0,99.0 +1991,5,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,18.9,50,101700,1277,1344,432,648,325,339,72600,35500,38800,22150,170,1.5,9,6,11.2,77777,9,999999999,309,0.1730,0,88,0.110,999.0,99.0 +1991,5,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,18.9,48,101700,1312,1344,435,861,280,588,93700,29700,64700,44300,180,2.1,9,6,11.2,77777,9,999999999,309,0.1730,0,88,0.110,0.0,6.0 +1991,5,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,17.2,41,101700,1269,1344,439,688,325,381,76300,35400,42800,24060,160,1.0,9,6,11.2,77777,9,999999999,309,0.1730,0,88,0.110,999.0,99.0 +1991,5,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,17.2,39,101600,1151,1344,428,792,739,158,83800,74600,19700,6480,0,0.0,2,2,11.2,77777,9,999999999,309,0.1730,0,88,0.110,999.0,99.0 +1991,5,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.8,16.1,37,101600,967,1344,441,598,312,373,63900,33600,39700,11460,80,1.0,9,6,11.2,77777,9,999999999,309,0.1730,0,88,0.110,0.0,99.0 +1991,5,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,16.1,39,101500,729,1344,420,473,564,167,50700,57200,19500,3640,0,0.0,2,2,11.2,77777,9,999999999,309,0.1730,0,88,0.110,999.0,99.0 +1991,5,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.1,59,101600,454,1344,422,221,400,85,23700,36800,11300,1570,320,2.1,3,3,11.2,77777,9,999999999,309,0.1730,0,88,0.110,999.0,99.0 +1991,5,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,101600,161,1344,402,61,195,38,6400,11100,5100,680,330,1.0,2,2,11.2,77777,9,999999999,309,0.1730,0,88,0.110,0.0,6.0 +1991,5,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.1,76,101600,1,101,398,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,309,0.1730,0,88,0.110,999.0,99.0 +1991,5,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.6,79,101700,0,0,387,0,0,0,0,0,0,0,300,1.0,2,2,11.2,77777,9,999999999,309,0.1730,0,88,0.110,999.0,99.0 +1991,5,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,20.6,74,101800,0,0,397,0,0,0,0,0,0,0,350,0.5,3,3,11.2,77777,9,999999999,309,0.1730,0,88,0.110,0.0,99.0 +1991,5,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.6,77,101700,0,0,390,0,0,0,0,0,0,0,10,1.0,2,2,11.2,77777,9,999999999,300,0.1730,0,88,0.110,999.0,99.0 +1991,5,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101700,0,0,410,0,0,0,0,0,0,0,0,0.0,9,6,11.2,7500,9,999999999,300,0.1730,0,88,0.110,999.0,99.0 +1991,5,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,101700,0,0,392,0,0,0,0,0,0,0,130,2.6,3,3,11.2,77777,9,999999999,300,0.1740,0,88,0.110,0.0,6.0 +1991,5,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.3,69,101700,0,0,384,0,0,0,0,0,0,0,120,3.6,2,2,11.2,77777,9,999999999,300,0.1740,0,88,0.110,999.0,99.0 +1991,5,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,18.9,74,101600,0,0,386,0,0,0,0,0,0,0,140,4.1,3,3,11.2,77777,9,999999999,300,0.1740,0,88,0.110,999.0,99.0 +1991,5,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,19.4,76,101700,0,0,383,0,0,0,0,0,0,0,150,5.7,2,2,11.2,77777,9,999999999,300,0.1740,0,88,0.110,0.0,99.0 +1991,5,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,101700,0,0,404,0,0,0,0,0,0,0,130,3.6,9,8,11.2,77777,9,999999999,300,0.1740,0,88,0.110,999.0,99.0 +1991,5,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,101700,4,257,397,0,2,0,0,0,0,0,160,6.2,9,7,11.2,7500,9,999999999,300,0.1740,0,88,0.110,999.0,99.0 +1991,5,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.0,79,101800,194,1343,408,54,39,48,5900,2900,5500,1180,160,6.2,9,8,11.2,7500,9,999999999,300,0.1740,0,88,0.110,0.0,6.0 +1991,5,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,101900,486,1343,404,224,181,158,24200,17400,17900,3630,150,4.6,9,7,11.2,77777,9,999999999,300,0.1740,0,88,0.110,999.0,99.0 +1991,5,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,20.6,69,101900,758,1343,403,452,511,163,48700,52100,19200,3630,140,4.1,3,3,11.2,77777,9,999999999,300,0.1740,0,88,0.110,999.0,99.0 +1991,5,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,19.4,57,101900,991,1343,428,571,384,288,62500,41500,31800,8720,160,5.1,9,7,11.2,77777,9,999999999,309,0.1740,0,88,0.110,0.0,99.0 +1991,5,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.0,61,102000,1168,1343,433,625,310,355,68800,33700,39400,15460,180,3.1,9,8,11.2,77777,9,999999999,309,0.1740,0,88,0.110,999.0,99.0 +1991,5,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,18.3,48,101900,1278,1343,417,929,828,141,95300,83000,16100,8290,220,2.1,2,2,11.2,77777,9,999999999,309,0.1740,0,88,0.110,999.0,99.0 +1991,5,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,17.2,43,101800,1312,1343,423,881,762,136,90400,76400,15600,10650,250,2.1,3,3,11.2,77777,9,999999999,309,0.1740,0,88,0.110,0.0,6.0 +1991,5,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,19.4,50,101800,1270,1343,441,628,266,376,69700,29000,42200,23880,230,3.1,9,7,11.2,77777,9,999999999,320,0.1740,0,88,0.110,999.0,99.0 +1991,5,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,19.4,48,101700,1152,1343,452,508,128,397,55800,13600,44100,16460,260,1.5,9,8,11.2,77777,9,999999999,320,0.1740,0,88,0.110,999.0,99.0 +1991,5,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,20.6,59,101600,968,1343,433,551,283,346,59200,30500,37200,10500,220,2.6,9,7,11.2,77777,9,999999999,320,0.1740,0,88,0.110,0.0,99.0 +1991,5,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.6,57,101600,731,1343,443,283,161,195,31200,16800,22100,5020,220,3.1,9,8,11.2,77777,9,999999999,329,0.1740,0,88,0.110,999.0,99.0 +1991,5,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,20.0,59,101600,456,1343,410,267,533,86,27600,48500,11100,1620,230,3.1,2,2,11.2,77777,9,999999999,329,0.1740,0,88,0.110,999.0,99.0 +1991,5,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,19.4,64,101600,164,1343,401,54,202,29,5700,11700,4300,510,220,2.1,3,3,11.2,77777,9,999999999,329,0.1740,0,88,0.110,0.0,6.0 +1991,5,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.0,69,101700,1,123,395,0,3,0,0,0,0,0,270,2.1,2,2,11.2,77777,9,999999999,329,0.1740,0,88,0.110,999.0,99.0 +1991,5,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.1,71,101800,0,0,425,0,0,0,0,0,0,0,270,1.5,9,8,11.2,77777,9,999999999,340,0.1740,0,88,0.110,999.0,99.0 +1991,5,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,21.7,77,101900,0,0,397,0,0,0,0,0,0,0,240,1.0,2,2,11.2,77777,9,999999999,340,0.1740,0,88,0.110,0.0,99.0 +1991,5,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.7,79,102000,0,0,419,0,0,0,0,0,0,0,0,0.0,9,8,11.2,1800,9,999999999,340,0.1740,0,88,0.110,999.0,99.0 +1991,5,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.7,77,102000,0,0,397,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,350,0.1740,0,88,0.110,999.0,99.0 +1991,5,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.6,69,102000,0,0,418,0,0,0,0,0,0,0,0,0.0,9,7,11.2,1500,9,999999999,350,0.1760,0,88,0.110,0.0,6.0 +1991,5,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.1,79,101800,0,0,415,0,0,0,0,0,0,0,90,2.1,9,8,11.2,1800,9,999999999,350,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,101800,0,0,406,0,0,0,0,0,0,0,0,0.0,9,7,11.2,1050,9,999999999,359,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,21.1,82,101900,0,0,412,0,0,0,0,0,0,0,140,3.1,9,8,11.2,2400,9,999999999,359,0.1760,0,88,0.110,0.0,99.0 +1991,5,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.6,79,101900,0,0,405,0,0,0,0,0,0,0,150,4.1,9,7,11.2,2400,9,999999999,359,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.6,79,102000,5,257,411,0,0,0,0,0,0,0,140,3.6,9,8,11.2,2400,9,999999999,359,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,102000,197,1342,391,84,302,39,8500,20200,5500,690,160,5.1,2,2,11.2,77777,9,999999999,370,0.1760,0,88,0.110,2.0,6.0 +1991,5,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.7,74,102000,488,1342,404,250,457,83,26000,42500,10500,1610,140,5.7,3,3,11.2,77777,9,999999999,370,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,21.1,67,102000,760,1342,405,505,684,118,53700,68800,14700,2730,160,6.2,2,2,11.2,77777,9,999999999,370,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,21.1,65,102000,992,1342,434,410,158,293,45400,16800,32900,9410,170,5.7,9,8,11.2,4200,9,999999999,370,0.1760,0,88,0.110,0.0,99.0 +1991,5,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,17.2,45,101900,1169,1342,416,756,639,199,81200,65500,24000,9300,170,5.7,2,2,11.2,77777,9,999999999,370,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,20.0,52,101900,1279,1342,426,900,793,144,92200,79500,16300,8490,230,3.6,3,3,11.2,77777,9,999999999,370,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,21.1,57,101900,1313,1342,421,985,790,212,103000,79200,25400,19440,230,4.6,2,2,11.2,77777,9,999999999,370,0.1760,0,88,0.110,0.0,6.0 +1991,5,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.1,57,101900,1270,1342,447,376,178,207,43600,19500,25100,12810,230,4.1,9,8,11.2,4200,9,999999999,370,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,21.1,54,101900,1153,1342,447,680,456,288,73700,47700,32600,12850,250,3.1,9,7,11.2,3600,9,999999999,370,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,19.4,50,101800,970,1342,425,625,633,168,66500,64500,19800,4950,270,1.5,3,3,11.2,77777,9,999999999,370,0.1760,0,88,0.110,0.0,99.0 +1991,5,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,19.4,55,101900,732,1342,431,400,337,216,43100,35400,23700,5040,310,4.6,9,7,11.2,1500,9,999999999,379,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,20.6,65,101900,458,1342,452,80,0,80,9300,0,9300,3320,350,5.1,10,10,11.2,1500,9,999999999,379,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,18.3,64,101900,166,1342,409,71,55,64,7700,3900,7200,1380,50,2.6,9,7,11.2,7500,9,999999999,379,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.9,71,102000,1,123,389,0,2,0,0,0,0,0,80,6.7,3,3,11.2,77777,9,999999999,379,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.8,67,102000,0,0,383,0,0,0,0,0,0,0,80,4.1,2,2,11.2,77777,9,999999999,379,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,18.9,74,102100,0,0,386,0,0,0,0,0,0,0,100,3.6,3,3,11.2,77777,9,999999999,379,0.1760,0,88,0.110,0.0,99.0 +1991,5,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.3,74,102100,0,0,366,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,379,0.1760,0,88,0.110,999.0,99.0 +1991,5,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.3,79,102100,0,0,377,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,379,0.1760,0,88,0.110,999.0,99.0 +1991,5,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.9,87,102100,0,0,372,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,379,0.1770,0,88,0.110,0.0,6.0 +1991,5,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,19.4,81,102000,0,0,377,0,0,0,0,0,0,0,80,1.0,2,2,11.2,77777,9,999999999,379,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,19.4,81,101900,0,0,381,0,0,0,0,0,0,0,30,1.0,3,3,11.2,77777,9,999999999,390,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,22.8,20.0,84,101900,0,0,378,0,0,0,0,0,0,0,70,1.5,2,2,11.2,77777,9,999999999,390,0.1770,0,88,0.110,0.0,99.0 +1991,5,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.0,84,102000,0,0,382,0,0,0,0,0,0,0,70,1.5,3,3,11.2,77777,9,999999999,390,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.6,87,102000,6,280,379,0,12,0,0,0,0,0,70,2.1,2,2,11.2,77777,9,999999999,390,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,102100,200,1342,391,61,194,32,6600,12600,4700,550,90,3.6,3,3,11.2,77777,9,999999999,390,0.1770,0,88,0.110,0.0,6.0 +1991,5,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.1,76,102200,491,1342,394,290,576,79,30400,53800,10600,1550,100,3.1,2,2,11.2,77777,9,999999999,390,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.1,65,102200,762,1342,412,482,590,147,50400,58800,17000,3300,140,4.1,3,3,11.2,77777,9,999999999,379,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,21.1,59,102200,994,1342,417,707,810,107,73300,80800,13200,2730,130,4.1,2,2,11.2,77777,9,999999999,379,0.1770,0,88,0.110,0.0,99.0 +1991,5,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,20.6,54,102200,1170,1342,427,828,690,225,88100,70400,26600,10480,140,3.6,3,3,11.2,77777,9,999999999,379,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,20.0,50,102100,1279,1342,425,913,765,183,96600,77200,22900,13060,170,3.1,2,2,11.2,77777,9,999999999,379,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,18.9,44,102100,1314,1342,434,968,782,201,101700,78700,24600,18790,120,2.1,3,3,11.2,77777,9,999999999,370,0.1770,0,88,0.110,0.0,6.0 +1991,5,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,19.4,43,102000,1271,1342,437,931,813,161,99900,82500,21600,11070,110,4.1,2,2,11.2,77777,9,999999999,370,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,18.9,44,102000,1154,1342,467,588,202,414,64600,21500,46000,17260,120,2.6,9,9,11.2,9000,9,999999999,370,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.8,18.3,42,101900,971,1342,466,269,90,204,30400,9600,23400,6380,90,2.1,9,9,11.2,77777,9,999999999,359,0.1770,0,88,0.110,0.0,99.0 +1991,5,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,18.9,43,101900,734,1342,470,148,127,78,17100,13500,9800,1600,90,3.1,9,9,11.2,77777,9,999999999,359,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,18.3,42,101900,460,1342,466,178,15,172,19500,1200,19100,5620,60,3.1,9,9,11.2,9000,9,999999999,359,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101900,169,1342,446,23,0,23,2700,0,2700,870,80,4.1,10,10,11.2,1800,9,999999999,359,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.7,72,102000,1,145,450,0,0,0,0,0,0,0,120,4.1,10,10,11.2,3000,9,999999999,350,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.7,82,102200,0,0,437,0,0,0,0,0,0,0,120,5.1,10,10,8.0,1200,9,999999999,350,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.1,76,102200,0,0,440,0,0,0,0,0,0,0,90,3.6,10,10,11.2,2400,9,999999999,350,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.1,76,102200,0,0,440,0,0,0,0,0,0,0,80,3.1,10,10,11.2,2400,9,999999999,350,0.1770,0,88,0.110,999.0,99.0 +1991,5,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.6,77,102200,0,0,436,0,0,0,0,0,0,0,90,5.1,10,10,11.2,2400,9,999999999,340,0.1770,0,88,0.110,999.0,99.0 +1991,5,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,102100,0,0,436,0,0,0,0,0,0,0,90,3.6,10,10,11.2,2400,9,999999999,340,0.1780,0,88,0.110,2.0,6.0 +1991,5,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,102100,0,0,418,0,0,0,0,0,0,0,90,3.1,9,9,11.2,7500,9,999999999,340,0.1780,0,88,0.110,999.0,99.0 +1991,5,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,102000,0,0,433,0,0,0,0,0,0,0,90,3.1,10,10,11.2,7500,9,999999999,340,0.1780,0,88,0.110,999.0,99.0 +1991,5,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,21.1,82,102000,0,0,433,0,0,0,0,0,0,0,80,2.6,10,10,11.2,7500,9,999999999,329,0.1780,0,88,0.110,0.0,99.0 +1991,5,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,102100,0,0,430,0,0,0,0,0,0,0,90,2.6,10,10,11.2,77777,9,999999999,329,0.1780,0,88,0.110,999.0,99.0 +1991,5,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,102100,6,302,418,0,0,0,0,0,0,0,80,2.6,9,9,11.2,7500,9,999999999,329,0.1780,0,88,0.110,999.0,99.0 +1991,5,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,102000,203,1341,421,43,13,41,4700,1000,4600,1050,70,4.6,9,9,11.2,7500,9,999999999,320,0.1780,0,88,0.110,0.0,6.0 +1991,5,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.1,71,102100,493,1341,434,167,89,134,18300,8600,15100,3090,100,5.1,9,9,11.2,77777,9,999999999,329,0.1780,0,88,0.110,999.0,99.0 +1991,5,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,20.0,63,102100,764,1341,404,479,562,158,49800,55800,17900,3520,100,5.1,2,2,11.2,77777,9,999999999,329,0.1780,0,88,0.110,999.0,99.0 +1991,5,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,19.4,59,102200,995,1341,441,476,251,289,52000,27100,31800,8820,120,5.1,9,9,11.2,77777,9,999999999,329,0.1780,0,88,0.110,0.0,99.0 +1991,5,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,17.8,46,102100,1171,1341,416,815,735,173,85700,74000,20900,7490,120,5.7,2,2,11.2,77777,9,999999999,329,0.1780,0,88,0.110,999.0,99.0 +1991,5,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,17.2,43,102100,1280,1341,423,912,735,210,98700,75600,26400,16130,120,4.1,3,3,11.2,77777,9,999999999,340,0.1780,0,88,0.110,999.0,99.0 +1991,5,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,17.2,41,102000,1314,1341,424,970,778,207,101700,78100,25000,19540,130,4.1,2,2,11.2,77777,9,999999999,340,0.1780,0,88,0.110,0.0,6.0 +1991,5,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,18.3,42,101900,1271,1341,434,934,774,200,97900,77700,24000,13440,120,4.6,3,3,11.2,77777,9,999999999,340,0.1780,0,88,0.110,999.0,99.0 +1991,5,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,17.8,40,101900,1154,1341,469,452,172,304,50700,18500,34700,12710,120,4.1,9,9,11.2,77777,9,999999999,340,0.1780,0,88,0.110,999.0,99.0 +1991,5,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.2,17.8,42,101800,972,1341,462,396,151,286,43800,16100,32100,8970,150,2.1,9,9,11.2,1800,9,999999999,340,0.1780,0,88,0.110,0.0,99.0 +1991,5,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.2,63,101800,735,1341,468,141,0,141,16700,0,16700,6410,110,3.6,10,10,11.2,900,9,999999999,350,0.1780,0,88,0.110,999.0,99.0 +1991,5,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,21.1,63,101800,462,1341,447,149,76,122,16300,7100,13800,3380,100,4.1,9,9,11.2,1800,9,999999999,350,0.1780,0,88,0.110,999.0,99.0 +1991,5,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.6,61,101800,171,1341,459,28,0,28,3200,0,3200,1030,110,4.1,10,10,11.2,1800,9,999999999,350,0.1780,0,88,0.110,2.0,6.0 +1991,5,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.6,63,101900,2,145,443,0,0,0,0,0,0,0,80,4.1,9,9,11.2,77777,9,999999999,350,0.1780,0,88,0.110,999.0,99.0 +1991,5,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,20.6,69,101900,0,0,399,0,0,0,0,0,0,0,90,5.1,2,2,11.2,77777,9,999999999,350,0.1780,0,88,0.110,999.0,99.0 +1991,5,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,20.6,72,102000,0,0,400,0,0,0,0,0,0,0,100,5.1,3,3,11.2,77777,9,999999999,359,0.1780,0,88,0.110,0.0,99.0 +1991,5,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,20.6,74,102000,0,0,393,0,0,0,0,0,0,0,90,5.1,2,2,11.2,77777,9,999999999,359,0.1780,0,88,0.110,999.0,99.0 +1991,5,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.6,77,102000,0,0,394,0,0,0,0,0,0,0,90,5.1,3,3,11.2,77777,9,999999999,359,0.1780,0,88,0.110,999.0,99.0 +1991,5,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.6,82,101900,0,0,388,0,0,0,0,0,0,0,90,4.1,3,3,11.2,77777,9,999999999,359,0.1800,0,88,0.110,0.0,6.0 +1991,5,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,101900,0,0,417,0,0,0,0,0,0,0,90,6.2,9,9,11.2,77777,9,999999999,359,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,101900,0,0,418,0,0,0,0,0,0,0,90,2.6,9,9,11.2,6000,9,999999999,370,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,21.1,84,101900,0,0,430,0,0,0,0,0,0,0,90,3.1,10,10,11.2,6000,9,999999999,370,0.1800,0,88,0.110,0.0,99.0 +1991,5,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,101900,0,0,418,0,0,0,0,0,0,0,90,3.1,9,9,11.2,6000,9,999999999,370,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,101900,7,324,385,0,2,0,0,0,0,0,90,3.1,2,2,11.2,77777,9,999999999,370,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,102000,206,1341,391,79,194,49,8200,12700,6300,880,90,3.1,3,3,11.2,77777,9,999999999,370,0.1800,0,88,0.110,0.0,6.0 +1991,5,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,102000,496,1341,396,277,457,107,29400,43100,13400,2030,130,5.7,2,2,11.2,77777,9,999999999,370,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,21.1,67,102000,766,1341,409,452,490,172,48600,50000,20000,3870,130,5.7,3,3,11.2,77777,9,999999999,370,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,20.6,59,102000,997,1341,449,364,119,275,40400,12700,30900,8890,130,6.2,9,9,11.2,960,9,999999999,370,0.1800,0,88,0.110,0.0,99.0 +1991,5,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,19.4,51,102000,1172,1341,468,313,0,313,37200,0,37200,14440,130,5.1,10,10,11.2,7500,9,999999999,359,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,19.4,50,101900,1281,1341,471,346,0,346,41500,0,41500,15910,140,3.6,10,10,11.2,7500,9,999999999,359,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,18.9,45,101900,1315,1341,477,356,0,356,42800,0,42800,16360,140,2.6,10,10,11.2,7500,9,999999999,359,0.1800,0,88,0.110,0.0,6.0 +1991,5,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,17.2,42,101800,1272,1341,471,343,0,343,41100,0,41100,15780,0,0.0,10,10,11.2,7500,9,999999999,350,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,18.3,48,101800,1155,1341,453,228,6,222,27700,500,27300,10980,130,1.0,9,9,11.2,1500,9,999999999,350,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,19.4,50,101700,973,1341,458,314,70,262,34600,7100,29400,9890,240,4.1,9,9,11.2,77777,9,999999999,350,0.1800,0,88,0.110,0.0,99.0 +1991,5,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.7,61,101700,737,1341,422,404,510,123,42600,51000,14500,2770,210,4.6,3,3,11.2,77777,9,999999999,340,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.7,63,101700,463,1341,415,244,427,96,26000,39500,12300,1800,280,2.6,2,2,11.2,77777,9,999999999,340,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,101700,174,1341,444,39,18,36,4200,1300,4000,910,290,3.1,9,9,11.2,1800,9,999999999,340,0.1800,0,88,0.110,0.0,6.0 +1991,5,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.2,72,101800,2,168,454,0,0,0,0,0,0,0,330,2.1,10,10,11.2,1200,9,999999999,340,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101900,0,0,442,0,0,0,0,0,0,0,70,5.1,10,10,11.2,900,9,999999999,329,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,102000,0,0,423,0,0,0,0,0,0,0,90,7.2,9,9,8.0,900,9,999999999,329,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,102000,0,0,431,0,0,0,0,0,0,0,80,3.1,10,10,11.2,1050,9,999999999,329,0.1800,0,88,0.110,999.0,99.0 +1991,5,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,102000,0,0,422,0,0,0,0,0,0,0,100,3.1,9,9,11.2,3000,9,999999999,320,0.1800,0,88,0.110,999.0,99.0 +1991,5,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101900,0,0,389,0,0,0,0,0,0,0,90,4.1,2,2,11.2,77777,9,999999999,320,0.1810,0,88,0.110,4.0,6.0 +1991,5,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,102000,0,0,411,0,0,0,0,0,0,0,100,4.1,9,8,11.2,3600,9,999999999,320,0.1810,0,88,0.110,999.0,99.0 +1991,5,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,102000,0,0,386,0,0,0,0,0,0,0,100,2.1,2,2,11.2,77777,9,999999999,309,0.1810,0,88,0.110,999.0,99.0 +1991,5,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,22.2,90,101900,0,0,411,0,0,0,0,0,0,0,110,4.1,9,8,11.2,6000,9,999999999,309,0.1810,0,88,0.110,0.0,99.0 +1991,5,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,101900,0,0,386,0,0,0,0,0,0,0,90,3.1,2,2,11.2,77777,9,999999999,309,0.1810,0,88,0.110,999.0,99.0 +1991,5,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,101900,8,324,390,0,0,0,0,0,0,0,90,4.1,3,3,11.2,77777,9,999999999,300,0.1810,0,88,0.110,999.0,99.0 +1991,5,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,102000,209,1340,389,68,102,52,7400,7100,6300,1100,70,3.1,2,2,11.2,77777,9,999999999,300,0.1810,0,88,0.110,0.0,6.0 +1991,5,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.7,77,102100,498,1340,401,223,311,107,23700,29400,12800,2030,100,3.6,3,3,11.2,77777,9,999999999,300,0.1810,0,88,0.110,999.0,99.0 +1991,5,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.7,72,102100,768,1340,403,473,520,175,50800,53100,20300,3950,110,4.1,2,2,11.2,77777,9,999999999,309,0.1810,0,88,0.110,999.0,99.0 +1991,5,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,21.1,63,102200,998,1340,415,559,451,222,60700,47000,25600,6810,130,3.6,3,3,11.2,77777,9,999999999,309,0.1810,0,88,0.110,0.0,99.0 +1991,5,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.0,55,102200,1173,1340,416,852,659,275,89500,66500,31100,12780,140,3.1,2,2,11.2,77777,9,999999999,309,0.1810,0,88,0.110,999.0,99.0 +1991,5,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,20.6,55,102100,1281,1340,424,646,367,295,71100,38500,34100,23320,170,2.1,3,3,11.2,77777,9,999999999,309,0.1810,0,88,0.110,999.0,99.0 +1991,5,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,19.4,48,102100,1315,1340,425,958,696,274,102000,70800,32400,28070,190,0.5,2,2,11.2,77777,9,999999999,309,0.1810,0,88,0.110,0.0,6.0 +1991,5,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,19.4,45,102000,1272,1340,435,932,660,305,98100,66600,34800,22080,0,0.0,3,3,11.2,77777,9,999999999,309,0.1810,0,88,0.110,999.0,99.0 +1991,5,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,18.9,44,101900,1156,1340,430,846,715,229,89900,72800,26900,10210,270,1.0,2,2,11.2,77777,9,999999999,320,0.1810,0,88,0.110,999.0,99.0 +1991,5,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.8,18.9,44,101900,974,1340,434,634,574,217,66300,57700,24200,6250,90,4.1,3,3,11.2,77777,9,999999999,320,0.1810,0,88,0.110,0.0,99.0 +1991,5,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,18.3,44,101800,738,1340,426,479,584,157,49700,57700,17900,3400,70,3.6,2,2,11.2,77777,9,999999999,320,0.1810,0,88,0.110,999.0,99.0 +1991,5,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,17.8,45,101800,465,1340,423,205,276,109,22100,26300,13000,2130,80,1.0,3,3,11.2,77777,9,999999999,320,0.1810,0,88,0.110,999.0,99.0 +1991,5,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,22.8,72,101900,176,1340,429,49,33,44,5300,2300,5000,1070,300,3.1,9,7,11.2,9000,9,999999999,320,0.1810,0,88,0.110,0.0,6.0 +1991,5,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.2,72,102000,2,167,433,0,0,0,0,0,0,0,310,2.1,9,8,11.2,1500,9,999999999,329,0.1810,0,88,0.110,999.0,99.0 +1991,5,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,17.8,53,102000,0,0,423,0,0,0,0,0,0,0,80,2.1,9,7,11.2,2700,9,999999999,329,0.1810,0,88,0.110,999.0,99.0 +1991,5,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,18.3,58,102100,0,0,403,0,0,0,0,0,0,0,100,2.1,3,3,11.2,77777,9,999999999,329,0.1810,0,88,0.110,0.0,99.0 +1991,5,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.9,65,102100,0,0,394,0,0,0,0,0,0,0,100,4.1,2,2,11.2,77777,9,999999999,329,0.1810,0,88,0.110,999.0,99.0 +1991,5,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.9,69,102100,0,0,375,0,0,0,0,0,0,0,100,3.6,0,0,11.2,77777,9,999999999,329,0.1810,0,88,0.110,999.0,99.0 +1991,5,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,102100,0,0,372,0,0,0,0,0,0,0,90,3.1,0,0,11.2,77777,9,999999999,329,0.1820,0,88,0.110,0.0,6.0 +1991,5,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,18.9,74,102000,0,0,370,0,0,0,0,0,0,0,90,2.6,0,0,11.2,77777,9,999999999,340,0.1820,0,88,0.110,999.0,99.0 +1991,5,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,102000,0,0,368,0,0,0,0,0,0,0,90,2.6,0,0,11.2,77777,9,999999999,340,0.1820,0,88,0.110,999.0,99.0 +1991,5,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,19.4,79,102000,0,0,368,0,0,0,0,0,0,0,90,3.1,0,0,11.2,77777,9,999999999,340,0.1820,0,88,0.110,0.0,99.0 +1991,5,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,102000,0,0,368,0,0,0,0,0,0,0,90,3.6,0,0,11.2,77777,9,999999999,340,0.1820,0,88,0.110,999.0,99.0 +1991,5,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,102000,8,346,380,1,5,1,0,0,0,0,80,4.1,2,2,11.2,77777,9,999999999,340,0.1820,0,88,0.110,999.0,99.0 +1991,5,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,102100,212,1339,373,90,295,43,9500,19700,6400,760,90,3.1,0,0,11.2,77777,9,999999999,350,0.1820,0,88,0.110,0.0,6.0 +1991,5,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,19.4,67,102200,500,1339,394,287,492,103,30700,46500,13300,1950,80,3.6,2,2,11.2,77777,9,999999999,350,0.1820,0,88,0.110,999.0,99.0 +1991,5,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.9,61,102200,769,1339,403,498,658,119,52900,66300,14700,2780,100,3.6,3,3,11.2,77777,9,999999999,350,0.1820,0,88,0.110,999.0,99.0 +1991,5,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,18.3,55,102200,999,1339,405,584,609,129,63500,62800,16500,4120,70,3.1,2,2,11.2,77777,9,999999999,350,0.1820,0,88,0.110,0.0,99.0 +1991,5,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,17.8,50,102200,1174,1339,414,859,761,191,89300,76200,22300,8200,50,3.6,3,3,11.2,77777,9,999999999,350,0.1820,0,88,0.110,999.0,99.0 +1991,5,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,17.2,45,102200,1282,1339,416,954,850,140,97900,85200,16100,8700,20,3.1,2,2,11.2,77777,9,999999999,350,0.1820,0,88,0.110,999.0,99.0 +1991,5,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,17.8,44,102100,1316,1339,427,935,740,207,98000,74300,24800,20300,70,2.6,3,3,11.2,77777,9,999999999,350,0.1820,0,88,0.110,0.0,6.0 +1991,5,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,16.7,40,102000,1273,1339,424,925,793,171,98600,80200,22100,12000,40,1.5,2,2,11.2,77777,9,999999999,350,0.1820,0,88,0.110,999.0,99.0 +1991,5,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,16.7,42,101900,1157,1339,454,390,206,212,44600,22500,25100,8630,50,2.6,9,9,11.2,1500,9,999999999,359,0.1820,0,88,0.110,999.0,99.0 +1991,5,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.7,16.7,41,101900,975,1339,457,468,73,415,51500,7600,45900,14360,80,2.1,9,9,11.2,1500,9,999999999,359,0.1820,0,88,0.110,0.0,99.0 +1991,5,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,16.7,42,101900,739,1339,454,154,64,118,17500,6700,13800,3050,70,3.6,9,9,11.2,2100,9,999999999,359,0.1820,0,88,0.110,999.0,99.0 +1991,5,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,16.7,42,101800,467,1339,454,123,39,109,13500,3600,12200,3100,40,2.6,9,9,11.2,2400,9,999999999,359,0.1820,0,88,0.110,999.0,99.0 +1991,5,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,17.2,46,101900,178,1339,448,51,9,50,5700,100,5600,1600,20,2.1,9,9,11.2,2100,9,999999999,359,0.1820,0,88,0.110,0.0,6.0 +1991,5,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,18.3,53,101900,3,190,408,0,1,0,0,0,0,0,80,4.6,2,2,11.2,77777,9,999999999,359,0.1820,0,88,0.110,999.0,99.0 +1991,5,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,17.8,55,101900,0,0,405,0,0,0,0,0,0,0,90,4.1,3,3,11.2,77777,9,999999999,359,0.1820,0,88,0.110,999.0,99.0 +1991,5,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,17.8,58,102000,0,0,395,0,0,0,0,0,0,0,80,5.1,2,2,11.2,77777,9,999999999,359,0.1820,0,88,0.110,0.0,99.0 +1991,5,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,18.3,64,102000,0,0,394,0,0,0,0,0,0,0,80,3.6,3,3,11.2,77777,9,999999999,359,0.1820,0,88,0.110,999.0,99.0 +1991,5,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.3,66,102000,0,0,375,0,0,0,0,0,0,0,70,3.6,0,0,11.2,77777,9,999999999,370,0.1820,0,88,0.110,999.0,99.0 +1991,5,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.3,69,102000,0,0,384,0,0,0,0,0,0,0,70,3.6,2,2,11.2,77777,9,999999999,370,0.1830,0,88,0.110,0.0,6.0 +1991,5,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,18.3,71,102000,0,0,369,0,0,0,0,0,0,0,80,3.1,0,0,11.2,77777,9,999999999,370,0.1830,0,88,0.110,999.0,99.0 +1991,5,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.9,76,101900,0,0,367,0,0,0,0,0,0,0,90,2.6,0,0,11.2,77777,9,999999999,370,0.1830,0,88,0.110,999.0,99.0 +1991,5,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,22.8,18.9,79,101900,0,0,365,0,0,0,0,0,0,0,80,2.6,0,0,11.2,77777,9,999999999,370,0.1830,0,88,0.110,0.0,99.0 +1991,5,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.9,76,101900,0,0,397,0,0,0,0,0,0,0,80,1.5,9,7,11.2,1800,9,999999999,370,0.1830,0,88,0.110,999.0,99.0 +1991,5,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,101900,9,368,404,1,0,1,0,0,0,0,80,2.1,9,8,11.2,1800,9,999999999,370,0.1830,0,88,0.110,999.0,99.0 +1991,5,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,102000,214,1339,401,58,11,56,6400,200,6400,1870,70,2.1,9,7,11.2,1500,9,999999999,370,0.1830,0,88,0.110,0.0,6.0 +1991,5,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,102000,502,1339,411,142,67,116,15500,6300,13100,3370,70,3.1,9,8,11.2,1500,9,999999999,370,0.1830,0,88,0.110,999.0,99.0 +1991,5,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,20.0,67,102000,771,1339,417,219,75,176,24200,7500,19900,5930,70,3.1,9,7,11.2,4500,9,999999999,370,0.1830,0,88,0.110,999.0,99.0 +1991,5,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,20.6,65,102000,1000,1339,452,256,0,256,30200,0,30200,11810,80,3.1,10,10,11.2,4500,9,999999999,370,0.1830,0,88,0.110,0.0,99.0 +1991,5,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,18.9,55,102000,1175,1339,428,814,479,393,85700,49900,41800,19320,140,3.1,9,7,11.2,7500,9,999999999,370,0.1830,0,88,0.110,999.0,99.0 +1991,5,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,17.8,48,101900,1282,1339,439,668,250,428,73500,27200,47400,30170,180,3.6,9,8,11.2,7500,9,999999999,370,0.1830,0,88,0.110,999.0,99.0 +1991,5,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,16.1,42,101900,1316,1339,434,781,407,380,84000,42600,42100,41100,210,3.6,9,7,11.2,7500,9,999999999,370,0.1830,0,88,0.110,0.0,6.0 +1991,5,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,16.7,41,101800,1273,1339,425,951,671,312,99900,67600,35500,22850,210,3.6,3,3,11.2,77777,9,999999999,370,0.1830,0,88,0.110,999.0,99.0 +1991,5,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,19.4,47,101700,1157,1339,447,588,212,404,64700,22600,45100,17080,260,2.6,9,7,11.2,1500,9,999999999,370,0.1830,0,88,0.110,999.0,99.0 +1991,5,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,17.8,45,101600,976,1339,446,470,166,348,51300,17600,38400,10990,270,2.1,9,8,11.2,7500,9,999999999,370,0.1830,0,88,0.110,0.0,99.0 +1991,5,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.0,55,101600,741,1339,435,386,270,236,41300,28400,25600,5630,300,4.1,9,7,11.2,1500,9,999999999,370,0.1830,0,88,0.110,999.0,99.0 +1991,5,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,20.0,59,101600,469,1339,414,239,323,125,25500,30800,14700,2510,310,3.6,3,3,11.2,77777,9,999999999,370,0.1830,0,88,0.110,999.0,99.0 +1991,5,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.0,65,101600,181,1339,401,53,38,48,5800,2700,5400,1160,320,2.6,2,2,11.2,77777,9,999999999,370,0.1830,0,88,0.110,0.0,6.0 +1991,5,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.3,58,101700,3,212,424,0,0,0,0,0,0,0,320,3.1,9,8,11.2,2400,9,999999999,359,0.1830,0,88,0.110,999.0,99.0 +1991,5,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,20.0,67,101700,0,0,417,0,0,0,0,0,0,0,10,3.1,9,7,11.2,2100,9,999999999,359,0.1830,0,88,0.110,999.0,99.0 +1991,5,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,20.0,69,101800,0,0,399,0,0,0,0,0,0,0,30,1.5,3,3,11.2,77777,9,999999999,359,0.1830,0,88,0.110,0.0,99.0 +1991,5,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,19.4,69,101800,0,0,392,0,0,0,0,0,0,0,20,1.0,2,2,11.2,77777,9,999999999,359,0.1830,0,88,0.110,999.0,99.0 +1991,5,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.3,66,101800,0,0,412,0,0,0,0,0,0,0,100,3.1,9,8,11.2,2700,9,999999999,359,0.1830,0,88,0.110,999.0,99.0 +1991,5,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,101700,0,0,418,0,0,0,0,0,0,0,90,3.1,9,9,11.2,2700,9,999999999,359,0.1840,0,88,0.110,0.0,6.0 +1991,5,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.9,71,101600,0,0,418,0,0,0,0,0,0,0,90,3.1,9,9,11.2,2700,9,999999999,359,0.1840,0,88,0.110,999.0,99.0 +1991,5,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,18.9,74,101600,0,0,386,0,0,0,0,0,0,0,80,1.5,3,3,11.2,77777,9,999999999,359,0.1840,0,88,0.110,999.0,99.0 +1991,5,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,22.2,19.4,84,101500,0,0,362,0,0,0,0,0,0,0,90,1.5,0,0,11.2,77777,9,999999999,359,0.1840,0,88,0.110,0.0,99.0 +1991,5,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,101500,0,0,379,0,0,0,0,0,0,0,120,2.6,3,3,11.2,77777,9,999999999,359,0.1840,0,88,0.110,999.0,99.0 +1991,5,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.6,91,101600,10,368,376,1,0,1,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,359,0.1840,0,88,0.110,999.0,99.0 +1991,5,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,101600,217,1338,389,67,67,56,7300,4800,6500,1190,150,3.1,3,3,11.2,77777,9,999999999,359,0.1840,0,88,0.110,0.0,6.0 +1991,5,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.6,77,101600,504,1338,377,263,366,125,27600,34600,14600,2420,150,2.1,0,0,11.2,77777,9,999999999,359,0.1840,0,88,0.110,999.0,99.0 +1991,5,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.1,71,101700,772,1338,403,438,384,216,47500,40700,23900,5150,160,2.1,3,3,11.2,77777,9,999999999,359,0.1840,0,88,0.110,999.0,99.0 +1991,5,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,21.7,67,101700,1001,1338,409,669,563,247,72000,58600,28100,7700,180,2.1,2,2,11.2,77777,9,999999999,359,0.1840,0,88,0.110,0.0,99.0 +1991,5,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,18.9,50,101700,1175,1338,454,298,78,228,33900,8400,26500,10070,190,2.6,9,9,11.2,1200,9,999999999,359,0.1840,0,88,0.110,999.0,99.0 +1991,5,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,101700,1283,1338,430,279,0,279,34000,0,34000,13490,360,2.6,10,10,4.8,1050,9,999999999,370,0.1840,0,88,0.110,999.0,99.0 +1991,5,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.7,82,101600,1316,1338,425,542,138,406,60400,14800,45800,33500,120,2.1,9,9,11.2,2400,9,999999999,370,0.1840,0,88,0.110,7.0,6.0 +1991,5,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,21.7,65,101600,1274,1338,448,629,124,511,68900,13200,56300,31620,210,1.0,9,9,11.2,7500,9,999999999,370,0.1840,0,88,0.110,999.0,99.0 +1991,5,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.0,55,101500,1158,1338,452,361,90,283,40600,9700,32200,11990,260,4.1,9,9,11.2,2400,9,999999999,370,0.1840,0,88,0.110,999.0,99.0 +1991,5,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,20.0,59,101500,977,1338,445,401,53,362,44100,5500,40100,12970,270,5.1,9,9,11.2,1500,9,999999999,370,0.1840,0,88,0.110,0.0,99.0 +1991,5,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,21.1,67,101400,742,1338,440,213,42,190,23500,4200,21200,6180,310,3.6,9,9,11.2,2400,9,999999999,379,0.1840,0,88,0.110,999.0,99.0 +1991,5,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.6,67,101400,471,1338,436,138,31,127,15100,2900,14100,3530,260,2.1,9,9,11.2,7500,9,999999999,379,0.1840,0,88,0.110,999.0,99.0 +1991,5,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101400,183,1338,430,46,0,46,5100,0,5100,1540,290,1.5,9,9,11.2,77777,9,999999999,379,0.1840,0,88,0.110,0.0,6.0 +1991,5,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.6,77,101500,3,212,424,0,0,0,0,0,0,0,0,0.0,9,9,11.2,7500,9,999999999,379,0.1840,0,88,0.110,999.0,99.0 +1991,5,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,101500,0,0,389,0,0,0,0,0,0,0,300,0.5,3,3,11.2,77777,9,999999999,379,0.1840,0,88,0.110,999.0,99.0 +1991,5,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,21.1,84,101600,0,0,418,0,0,0,0,0,0,0,280,1.5,9,9,11.2,7500,9,999999999,379,0.1840,0,88,0.110,0.0,99.0 +1991,5,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,101600,0,0,388,0,0,0,0,0,0,0,260,1.5,3,3,11.2,77777,9,999999999,390,0.1840,0,88,0.110,999.0,99.0 +1991,5,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.0,82,101500,0,0,380,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,390,0.1840,0,88,0.110,999.0,99.0 +1991,5,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.0,84,101500,0,0,378,0,0,0,0,0,0,0,240,1.5,2,2,11.2,77777,9,999999999,390,0.1860,0,88,0.110,0.0,6.0 +1991,5,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.0,84,101400,0,0,382,0,0,0,0,0,0,0,240,2.1,3,3,11.2,77777,9,999999999,390,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,101400,0,0,386,0,0,0,0,0,0,0,190,2.6,2,2,11.2,77777,9,999999999,390,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,22.2,90,101300,0,0,390,0,0,0,0,0,0,0,230,2.6,3,3,11.2,77777,9,999999999,400,0.1860,0,88,0.110,0.0,99.0 +1991,5,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,101400,0,0,386,0,0,0,0,0,0,0,230,1.0,2,2,11.2,77777,9,999999999,400,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.7,91,101400,11,390,386,1,12,1,0,0,0,0,210,2.6,3,3,11.2,77777,9,999999999,400,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.8,88,101500,219,1337,393,88,162,61,9200,10800,7400,1160,160,3.1,2,2,11.2,77777,9,999999999,400,0.1860,0,88,0.110,0.0,6.0 +1991,5,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101600,506,1337,402,273,451,102,29300,42800,13100,1930,190,2.1,3,3,11.2,77777,9,999999999,400,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.7,67,101600,774,1337,409,499,700,94,52900,69800,12400,2190,220,3.1,2,2,11.2,77777,9,999999999,400,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,21.7,65,101600,1002,1337,416,683,719,144,71600,72200,17400,4150,210,3.1,3,3,11.2,77777,9,999999999,400,0.1860,0,88,0.110,0.0,99.0 +1991,5,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,20.6,59,101600,1176,1337,424,637,369,312,68700,38600,34700,15270,210,4.1,9,5,11.2,7500,9,999999999,400,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,101600,1283,1337,406,551,198,361,61500,21600,40700,25470,30,5.1,10,8,4.8,1050,9,999999999,400,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101500,1317,1337,403,747,466,288,82700,48900,34400,31690,60,2.1,9,5,11.2,2400,9,999999999,390,0.1860,0,88,0.110,5.0,6.0 +1991,5,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.7,67,101500,1274,1337,419,607,338,284,66900,35500,33000,21730,0,0.0,9,5,11.2,6000,9,999999999,390,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.7,61,101400,1158,1337,429,644,445,258,70600,46600,30100,11810,260,2.1,9,5,11.2,6000,9,999999999,390,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,21.7,63,101400,977,1337,426,542,403,248,58200,41900,27500,7420,230,5.1,9,5,11.2,77777,9,999999999,390,0.1860,0,88,0.110,0.0,99.0 +1991,5,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.6,57,101400,744,1337,427,320,280,164,35300,29600,18800,3680,240,4.1,9,5,11.2,77777,9,999999999,390,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.6,63,101300,473,1337,412,276,543,84,28700,50100,11000,1610,220,3.6,3,3,11.2,77777,9,999999999,390,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.0,65,101400,186,1337,401,70,208,41,7300,12900,5500,730,260,3.6,2,2,11.2,77777,9,999999999,390,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,20.6,74,101500,4,234,397,0,6,0,0,0,0,0,250,2.1,3,3,11.2,77777,9,999999999,390,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,101500,0,0,385,0,0,0,0,0,0,0,260,2.1,2,2,11.2,77777,9,999999999,390,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,21.1,82,101600,0,0,391,0,0,0,0,0,0,0,270,1.0,3,3,11.2,77777,9,999999999,390,0.1860,0,88,0.110,0.0,99.0 +1991,5,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,101600,0,0,387,0,0,0,0,0,0,0,260,1.0,2,2,11.2,77777,9,999999999,379,0.1860,0,88,0.110,999.0,99.0 +1991,5,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,101600,0,0,391,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,379,0.1860,0,88,0.110,999.0,99.0 +1991,5,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,101600,0,0,385,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,379,0.1870,0,88,0.110,0.0,6.0 +1991,5,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.6,91,101500,0,0,376,0,0,0,0,0,0,0,200,1.0,2,2,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.7,85,101500,0,0,392,0,0,0,0,0,0,0,30,0.5,3,3,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,21.7,91,101500,0,0,382,0,0,0,0,0,0,0,90,1.0,2,2,11.2,77777,9,999999999,379,0.1870,0,88,0.110,0.0,99.0 +1991,5,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.7,91,101500,0,0,386,0,0,0,0,0,0,0,150,3.1,3,3,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,21.7,94,101500,11,390,380,1,0,1,0,0,0,0,150,3.1,2,2,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101600,221,1337,396,74,134,52,7900,9000,6400,950,160,3.1,3,3,11.2,77777,9,999999999,379,0.1870,0,88,0.110,0.0,6.0 +1991,5,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.7,74,101600,508,1337,400,269,430,106,28800,40800,13300,2020,140,3.1,2,2,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.1,65,101700,775,1337,412,372,307,193,40600,32600,21700,4520,140,4.1,3,3,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,21.7,67,101700,1003,1337,409,673,639,193,71100,64900,22300,6000,160,3.6,2,2,11.2,77777,9,999999999,379,0.1870,0,88,0.110,0.0,99.0 +1991,5,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.7,63,101700,1177,1337,419,866,701,249,91700,71200,28900,11930,200,3.1,3,3,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.7,59,101700,1284,1337,422,901,705,223,97100,72300,27500,17980,230,3.6,2,2,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,18.9,48,101600,1317,1337,425,1015,767,259,108700,78300,31400,28160,210,4.1,3,3,11.2,77777,9,999999999,379,0.1870,0,88,0.110,0.0,6.0 +1991,5,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,18.3,45,101600,1275,1337,423,919,712,239,98400,72800,28900,18090,210,3.1,2,2,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,20.0,52,101500,1159,1337,426,823,676,236,87200,68700,27500,10700,200,3.1,3,3,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,21.1,55,101400,978,1337,424,595,463,256,63700,48100,28400,7700,220,4.1,2,2,11.2,77777,9,999999999,379,0.1870,0,88,0.110,0.0,99.0 +1991,5,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.1,57,101400,745,1337,425,426,477,160,46000,48600,18800,3530,230,2.6,3,3,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,20.0,52,101400,475,1337,422,229,378,95,24600,35300,12000,1780,280,1.5,2,2,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.1,65,101400,188,1337,412,55,66,45,6000,4400,5300,950,250,2.6,3,3,11.2,77777,9,999999999,379,0.1870,0,88,0.110,0.0,6.0 +1991,5,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101500,4,234,396,0,0,0,0,0,0,0,280,2.1,2,2,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.1,79,101600,0,0,378,0,0,0,0,0,0,0,310,1.0,0,0,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,21.1,76,101600,0,0,381,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,379,0.1870,0,88,0.110,0.0,99.0 +1991,5,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,101700,0,0,375,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.7,82,101700,0,0,379,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,379,0.1870,0,88,0.110,999.0,99.0 +1991,5,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,101600,0,0,385,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,379,0.1880,0,88,0.110,0.0,6.0 +1991,5,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101600,0,0,376,0,0,0,0,0,0,0,70,0.5,0,0,11.2,77777,9,999999999,379,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101500,0,0,383,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,379,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,21.7,91,101500,0,0,386,0,0,0,0,0,0,0,90,1.0,3,3,11.2,77777,9,999999999,379,0.1880,0,88,0.110,0.0,99.0 +1991,5,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.7,91,101500,0,0,382,0,0,0,0,0,0,0,100,1.0,2,2,11.2,77777,9,999999999,379,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.7,88,101500,12,412,389,1,4,1,0,0,0,0,50,0.5,3,3,11.2,77777,9,999999999,379,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.2,79,101600,224,1336,398,85,174,56,9000,11800,7100,1040,90,0.5,2,2,11.2,77777,9,999999999,379,0.1880,0,88,0.110,0.0,6.0 +1991,5,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.2,72,101700,510,1336,411,274,427,111,29200,40600,13700,2120,140,2.1,3,3,11.2,77777,9,999999999,379,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.8,70,101700,776,1336,414,499,637,129,52800,64000,15600,3010,130,2.6,2,2,11.2,77777,9,999999999,379,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,23.3,63,101700,1004,1336,431,659,652,169,70400,66600,20200,5340,150,1.5,3,3,11.2,77777,9,999999999,390,0.1880,0,88,0.110,0.0,99.0 +1991,5,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.1,57,101700,1177,1336,421,825,743,171,87000,74900,20900,7700,180,2.1,2,2,11.2,77777,9,999999999,390,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,18.9,45,101600,1284,1336,431,924,721,231,99400,73900,28300,18720,160,2.1,3,3,11.2,77777,9,999999999,400,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,20.0,46,101600,1317,1336,455,809,475,341,88200,49800,39000,38480,240,1.5,9,7,11.2,77777,9,999999999,400,0.1880,0,88,0.110,0.0,6.0 +1991,5,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,19.4,47,101500,1275,1336,455,653,100,558,72100,10400,62100,31060,280,3.6,9,8,11.2,7500,9,999999999,409,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,20.0,59,101600,1160,1336,429,598,269,364,65700,29200,40200,15790,150,4.1,9,7,11.2,7500,9,999999999,409,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,19.4,67,101600,979,1336,440,253,0,253,29800,0,29800,11600,280,6.2,10,10,11.2,3900,9,999999999,409,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.7,74,101600,746,1336,447,179,0,179,20800,0,20800,7800,290,1.0,10,10,11.2,3900,9,999999999,419,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.1,76,101600,477,1336,440,97,0,97,11200,0,11200,3940,0,0.0,10,10,11.2,3900,9,999999999,419,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.7,82,101700,190,1336,437,31,0,31,3600,0,3600,1160,90,1.0,10,10,11.2,3000,9,999999999,430,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,101700,5,256,429,0,0,0,0,0,0,0,60,3.6,10,10,11.2,7500,9,999999999,430,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.0,79,101700,0,0,428,0,0,0,0,0,0,0,0,0.0,10,10,11.2,3300,9,999999999,440,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,20.6,85,101800,0,0,426,0,0,0,0,0,0,0,80,2.1,10,10,11.2,7500,9,999999999,440,0.1880,0,88,0.110,0.0,99.0 +1991,5,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.0,79,101700,0,0,401,0,0,0,0,0,0,0,80,2.1,9,7,11.2,7500,9,999999999,440,0.1880,0,88,0.110,999.0,99.0 +1991,5,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,18.9,74,101700,0,0,386,0,0,0,0,0,0,0,60,1.5,3,3,11.2,77777,9,999999999,450,0.1880,0,88,0.110,999.0,99.0 +1991,5,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,101700,0,0,374,0,0,0,0,0,0,0,100,1.0,3,1,11.2,77777,9,999999999,450,0.1890,0,88,0.110,0.0,6.0 +1991,5,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,18.9,79,101600,0,0,372,0,0,0,0,0,0,0,70,1.0,2,1,11.2,77777,9,999999999,459,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.3,79,101600,0,0,368,0,0,0,0,0,0,0,40,1.0,3,1,11.2,77777,9,999999999,459,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,22.2,19.4,84,101600,0,0,369,0,0,0,0,0,0,0,100,1.5,2,1,11.2,77777,9,999999999,469,0.1890,0,88,0.110,0.0,99.0 +1991,5,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,101600,0,0,370,0,0,0,0,0,0,0,100,1.0,3,1,11.2,77777,9,999999999,469,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.0,82,101700,13,412,375,2,0,2,0,0,0,0,80,1.0,2,1,11.2,77777,9,999999999,469,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.6,79,101700,226,1336,382,76,42,69,8300,3300,7800,1640,80,3.1,3,1,11.2,77777,9,999999999,480,0.1890,0,88,0.110,0.0,6.0 +1991,5,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,20.0,67,101800,511,1336,393,246,269,142,26200,26300,16100,2920,140,3.6,2,1,11.2,77777,9,999999999,480,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.7,67,101800,777,1336,403,448,396,217,47100,40400,23500,5050,170,2.1,3,1,11.2,77777,9,999999999,469,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,21.7,63,101700,1005,1336,409,645,497,271,68900,51700,29900,8580,140,3.1,2,1,11.2,77777,9,999999999,469,0.1890,0,88,0.110,0.0,99.0 +1991,5,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.6,57,101700,1177,1336,411,787,543,307,85000,56800,34800,15170,120,1.5,3,1,11.2,77777,9,999999999,469,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,20.6,52,101700,1284,1336,420,771,473,316,84300,49600,36500,26240,170,2.1,2,1,11.2,77777,9,999999999,469,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,20.6,52,101600,1318,1336,420,911,543,375,98300,56800,42100,42860,130,1.5,3,1,11.2,77777,9,999999999,469,0.1890,0,88,0.110,0.0,6.0 +1991,5,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,20.0,47,101600,1275,1336,426,915,628,315,96200,63200,35600,23770,170,2.6,2,1,11.2,77777,9,999999999,459,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,21.1,54,101500,1160,1336,431,794,472,383,83600,49200,40800,18080,220,3.1,9,3,11.2,7500,9,999999999,459,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,21.1,55,101400,980,1336,424,655,404,358,70400,43500,38400,11160,200,3.1,9,2,11.2,7500,9,999999999,459,0.1890,0,88,0.110,0.0,99.0 +1991,5,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,20.0,67,101500,748,1336,408,431,175,333,46100,18000,36000,8690,290,5.1,10,5,11.2,3000,9,999999999,459,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.0,65,101500,479,1336,401,216,147,164,23400,14000,18400,3760,320,3.1,9,2,11.2,7500,9,999999999,459,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.1,79,101600,193,1336,394,68,20,65,7400,1500,7200,1480,100,4.6,9,3,11.2,1500,9,999999999,450,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,21.7,94,101700,5,278,390,0,0,0,0,0,0,0,30,1.0,10,5,11.2,1500,9,999999999,450,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,21.7,94,101700,0,0,390,0,0,0,0,0,0,0,0,0.0,10,5,11.2,1500,9,999999999,450,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.7,88,101800,0,0,395,0,0,0,0,0,0,0,180,1.0,10,5,11.2,3000,9,999999999,450,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.7,91,101800,0,0,392,0,0,0,0,0,0,0,330,1.0,10,5,11.2,3000,9,999999999,440,0.1890,0,88,0.110,999.0,99.0 +1991,5,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101700,0,0,383,0,0,0,0,0,0,0,0,0.0,9,2,11.2,3000,9,999999999,440,0.1890,0,88,0.110,999.0,99.0 +1991,5,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.7,94,101700,0,0,413,0,0,0,0,0,0,0,0,0.0,9,9,11.2,7500,9,999999999,440,0.1900,0,88,0.110,0.0,6.0 +1991,5,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101600,0,0,387,0,0,0,0,0,0,0,40,2.1,3,3,11.2,77777,9,999999999,440,0.1900,0,88,0.110,999.0,99.0 +1991,5,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.7,91,101600,0,0,382,0,0,0,0,0,0,0,70,1.5,2,2,11.2,77777,9,999999999,440,0.1900,0,88,0.110,999.0,99.0 +1991,5,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,21.7,91,101700,0,0,386,0,0,0,0,0,0,0,80,1.0,3,3,9.6,77777,9,999999999,430,0.1900,0,88,0.110,0.0,99.0 +1991,5,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,101700,0,0,382,0,0,0,0,0,0,0,70,3.1,2,2,11.2,77777,9,999999999,430,0.1900,0,88,0.110,999.0,99.0 +1991,5,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,101700,13,434,385,2,0,2,0,0,0,0,80,1.5,3,3,11.2,77777,9,999999999,430,0.1900,0,88,0.110,999.0,99.0 +1991,5,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,101700,228,1335,387,80,156,53,8500,10700,6700,970,90,2.6,2,2,11.2,77777,9,999999999,430,0.1900,0,88,0.110,0.0,6.0 +1991,5,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101800,513,1335,400,271,359,133,28400,34100,15200,2590,100,4.1,3,3,11.2,77777,9,999999999,430,0.1900,0,88,0.110,999.0,99.0 +1991,5,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.2,72,101800,778,1335,407,465,503,172,50200,51500,20100,3920,110,4.6,2,2,11.2,77777,9,999999999,430,0.1900,0,88,0.110,999.0,99.0 +1991,5,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,21.7,65,101800,1005,1335,416,687,631,212,72200,63800,24100,6560,140,3.6,3,3,11.2,77777,9,999999999,430,0.1900,0,88,0.110,0.0,99.0 +1991,5,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.7,61,101700,1178,1335,418,843,681,242,89400,69200,28200,11740,150,4.1,2,2,11.2,77777,9,999999999,430,0.1900,0,88,0.110,999.0,99.0 +1991,5,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,20.6,55,101700,1285,1335,424,730,473,274,80900,49700,33000,22800,80,4.6,3,3,11.2,77777,9,999999999,430,0.1900,0,88,0.110,999.0,99.0 +1991,5,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,20.0,49,101600,1318,1335,428,906,665,249,97200,68000,30000,27980,100,2.6,2,2,11.2,77777,9,999999999,430,0.1900,0,88,0.110,0.0,6.0 +1991,5,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,19.4,44,101600,1276,1335,438,903,656,276,95800,66600,32100,21100,100,2.6,3,3,11.2,77777,9,999999999,440,0.1900,0,88,0.110,999.0,99.0 +1991,5,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,18.9,43,101500,1161,1335,433,788,684,193,84800,70200,23600,8980,70,2.1,2,2,11.2,77777,9,999999999,440,0.1900,0,88,0.110,999.0,99.0 +1991,5,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,33.3,19.4,44,101400,981,1335,438,645,416,339,69700,44900,36600,10480,30,2.1,3,3,11.2,77777,9,999999999,440,0.1900,0,88,0.110,0.0,99.0 +1991,5,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.1,61,101400,749,1335,450,322,53,292,35300,5400,32300,8750,70,9.3,9,9,11.2,7500,9,999999999,440,0.1900,0,88,0.110,999.0,99.0 +1991,5,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.6,63,101500,481,1335,443,143,23,135,16100,1600,15600,5030,110,4.1,9,9,11.2,2400,9,999999999,440,0.1900,0,88,0.110,999.0,99.0 +1991,5,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101600,195,1335,443,35,0,35,4000,0,4000,1280,170,3.6,10,10,11.2,1800,9,999999999,440,0.1900,0,88,0.110,0.0,6.0 +1991,5,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.1,71,101600,6,278,434,0,0,0,0,0,0,0,130,3.1,9,9,11.2,3000,9,999999999,440,0.1900,0,88,0.110,999.0,99.0 +1991,5,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101600,0,0,431,0,0,0,0,0,0,0,100,3.1,9,9,11.2,7500,9,999999999,440,0.1900,0,88,0.110,999.0,99.0 +1991,5,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,21.1,74,101600,0,0,431,0,0,0,0,0,0,0,80,2.6,9,9,11.2,7500,9,999999999,450,0.1900,0,88,0.110,0.0,99.0 +1991,5,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.7,79,101700,0,0,394,0,0,0,0,0,0,0,80,2.1,2,2,11.2,77777,9,999999999,450,0.1900,0,88,0.110,999.0,99.0 +1991,5,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.7,82,101700,0,0,395,0,0,0,0,0,0,0,110,3.6,3,3,11.2,77777,9,999999999,450,0.1900,0,88,0.110,999.0,99.0 +1991,5,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.7,82,101600,0,0,395,0,0,0,0,0,0,0,110,2.1,3,3,11.2,77777,9,999999999,450,0.1910,0,88,0.110,0.0,6.0 +1991,5,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.7,82,101500,0,0,391,0,0,0,0,0,0,0,90,3.6,2,2,11.2,77777,9,999999999,450,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101600,0,0,396,0,0,0,0,0,0,0,60,3.6,3,3,11.2,77777,9,999999999,450,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,22.2,88,101600,0,0,407,0,0,0,0,0,0,0,100,3.1,9,7,11.2,3000,9,999999999,450,0.1910,0,88,0.110,0.0,99.0 +1991,5,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101600,0,0,417,0,0,0,0,0,0,0,90,4.1,9,8,11.2,3000,9,999999999,450,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101600,14,434,411,2,1,2,0,0,0,0,90,3.6,9,7,11.2,4500,9,999999999,459,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,101600,230,1335,421,37,0,37,4300,0,4300,1410,90,4.1,9,8,11.2,3000,9,999999999,459,0.1910,0,88,0.110,0.0,6.0 +1991,5,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,101600,514,1335,404,327,653,75,34500,62000,10600,1510,130,4.6,2,2,11.2,77777,9,999999999,450,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.2,70,101700,779,1335,414,498,553,175,53600,56600,20500,4000,110,4.6,3,3,11.2,77777,9,999999999,450,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,21.7,59,101600,1006,1335,441,564,326,318,61400,35300,34800,10060,140,4.6,9,7,11.2,77777,9,999999999,450,0.1910,0,88,0.110,0.0,99.0 +1991,5,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,21.1,54,101600,1178,1335,454,780,534,308,84300,55900,34900,15310,110,4.1,9,8,11.2,77777,9,999999999,440,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,20.0,49,101600,1285,1335,448,794,400,408,84500,41800,44200,34500,150,2.6,9,7,11.2,77777,9,999999999,440,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,20.0,47,101500,1318,1335,459,742,451,297,82000,47400,35200,34490,150,3.6,9,8,11.2,77777,9,999999999,440,0.1910,0,88,0.110,0.0,6.0 +1991,5,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,20.6,54,101500,1276,1335,443,857,531,348,92600,55600,39300,27560,180,2.6,9,7,11.2,1050,9,999999999,440,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,20.0,52,101400,1161,1335,449,604,273,366,66400,29700,40500,16020,210,2.1,9,8,11.2,7500,9,999999999,430,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.8,21.1,50,101300,982,1335,453,450,223,285,49200,24100,31400,8590,210,1.5,9,7,11.2,7500,9,999999999,430,0.1910,0,88,0.110,0.0,99.0 +1991,5,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.2,76,101400,750,1335,426,374,184,270,40600,19100,29800,7060,140,7.7,9,8,8.0,900,9,999999999,430,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101500,482,1335,415,199,116,157,21600,11100,17500,3610,50,3.6,9,7,9.6,1200,9,999999999,419,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.7,94,101500,197,1335,424,19,0,19,2300,0,2300,770,150,4.6,10,10,1.6,150,9,999999999,419,0.1910,0,88,0.110,35.0,6.0 +1991,5,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101600,6,300,428,0,0,0,0,0,0,0,100,2.1,10,10,8.0,450,9,999999999,419,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101600,0,0,435,0,0,0,0,0,0,0,90,2.1,10,10,11.2,1050,9,999999999,419,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,101600,0,0,431,0,0,0,0,0,0,0,110,2.6,10,10,11.2,1050,9,999999999,409,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101500,0,0,435,0,0,0,0,0,0,0,80,3.1,10,10,11.2,3600,9,999999999,409,0.1910,0,88,0.110,999.0,99.0 +1991,5,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101500,0,0,408,0,0,0,0,0,0,0,70,4.1,9,7,11.2,3600,9,999999999,409,0.1910,0,88,0.110,999.0,99.0 +1991,5,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,101500,0,0,408,0,0,0,0,0,0,0,70,4.1,9,7,11.2,3600,9,999999999,400,0.1920,0,88,0.110,8.0,6.0 +1991,5,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101500,0,0,414,0,0,0,0,0,0,0,60,2.6,9,8,11.2,3600,9,999999999,400,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101400,0,0,408,0,0,0,0,0,0,0,70,4.6,9,7,11.2,3600,9,999999999,400,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,22.2,84,101400,0,0,417,0,0,0,0,0,0,0,80,4.6,9,8,11.2,3600,9,999999999,400,0.1920,0,88,0.110,0.0,99.0 +1991,5,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101400,0,0,410,0,0,0,0,0,0,0,80,5.1,9,7,11.2,3600,9,999999999,390,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101500,15,456,434,1,0,1,0,0,0,0,90,5.1,10,10,11.2,3000,9,999999999,390,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101500,231,1334,439,32,0,32,3800,0,3800,1250,90,4.1,10,10,11.2,3000,9,999999999,390,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101500,516,1334,439,76,0,76,9000,0,9000,3330,110,6.2,10,10,11.2,240,9,999999999,390,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.8,82,101500,780,1334,417,417,224,286,45300,23300,31600,7620,90,6.2,9,7,11.2,3000,9,999999999,390,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,21.7,67,101500,1006,1334,435,474,235,296,51800,25400,32600,9280,110,6.2,9,8,11.2,3000,9,999999999,390,0.1920,0,88,0.110,0.0,99.0 +1991,5,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.2,72,101500,1178,1334,454,254,0,254,30800,0,30800,12310,110,6.7,10,10,11.2,900,9,999999999,390,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101500,1285,1334,417,498,203,302,56300,22200,34900,21760,120,5.1,9,8,9.6,600,9,999999999,390,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.8,82,101400,1318,1334,445,287,0,287,35100,0,35100,13890,120,6.7,10,10,11.2,1500,9,999999999,379,0.1920,0,88,0.110,9.0,6.0 +1991,5,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.2,70,101500,1276,1334,457,277,0,277,33800,0,33800,13410,110,5.1,10,10,11.2,3000,9,999999999,379,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101400,1162,1334,438,250,0,250,30200,0,30200,12120,120,5.1,10,10,11.2,3000,9,999999999,379,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101400,983,1334,423,334,184,198,37500,20000,22800,5710,100,6.7,9,8,11.2,3000,9,999999999,379,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101400,752,1334,444,186,0,186,21600,0,21600,8070,100,5.1,10,10,11.2,3600,9,999999999,379,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101400,484,1334,444,83,0,83,9700,0,9700,3500,90,5.1,10,10,11.2,3000,9,999999999,379,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.2,79,101400,200,1334,444,36,0,36,4100,0,4100,1320,80,5.1,10,10,11.2,3600,9,999999999,379,0.1920,0,88,0.110,1.0,6.0 +1991,5,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101400,7,300,438,0,0,0,0,0,0,0,80,6.7,10,10,11.2,3000,9,999999999,379,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101500,0,0,435,0,0,0,0,0,0,0,70,4.1,10,10,6.4,2400,9,999999999,379,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101500,0,0,435,0,0,0,0,0,0,0,70,5.1,10,10,11.2,2400,9,999999999,379,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101400,0,0,438,0,0,0,0,0,0,0,80,5.7,10,10,11.2,7500,9,999999999,379,0.1920,0,88,0.110,999.0,99.0 +1991,5,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101400,0,0,434,0,0,0,0,0,0,0,70,5.7,10,10,11.2,7500,9,999999999,379,0.1920,0,88,0.110,999.0,99.0 +1991,5,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101300,0,0,438,0,0,0,0,0,0,0,80,5.7,10,10,11.2,7500,9,999999999,379,0.1930,0,88,0.110,2.0,6.0 +1991,5,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.7,82,101300,0,0,437,0,0,0,0,0,0,0,70,5.7,10,10,11.2,7500,9,999999999,379,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101300,0,0,438,0,0,0,0,0,0,0,70,5.7,10,10,11.2,7500,9,999999999,379,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,22.2,84,101300,0,0,438,0,0,0,0,0,0,0,70,6.2,10,10,11.2,7500,9,999999999,379,0.1930,0,88,0.110,0.0,99.0 +1991,5,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101300,0,0,438,0,0,0,0,0,0,0,80,5.1,10,10,11.2,7500,9,999999999,379,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101300,15,456,438,2,0,2,0,0,0,0,80,5.7,10,10,11.2,7500,9,999999999,379,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.2,82,101400,233,1334,441,59,0,59,6600,0,6600,2010,80,6.2,10,10,11.2,3900,9,999999999,379,0.1930,0,88,0.110,0.0,6.0 +1991,5,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101400,517,1334,444,125,0,125,14300,0,14300,4960,90,6.2,10,10,11.2,3600,9,999999999,390,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101400,781,1334,444,187,0,187,21800,0,21800,8270,90,7.2,10,10,11.2,3600,9,999999999,390,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.7,74,101500,1007,1334,447,262,0,262,30900,0,30900,12070,80,6.2,10,10,11.2,4500,9,999999999,400,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.7,72,101500,1179,1334,450,318,0,318,37900,0,37900,14650,90,7.2,10,10,11.2,4500,9,999999999,409,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.7,67,101400,1285,1334,457,282,0,282,34400,0,34400,13620,90,7.7,10,10,11.2,900,9,999999999,409,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,21.1,63,101400,1318,1334,460,364,0,364,43700,0,43700,16670,90,8.2,10,10,11.2,4500,9,999999999,419,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.1,61,101300,1277,1334,463,280,0,280,34100,0,34100,13530,80,9.3,10,10,11.2,1080,9,999999999,419,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,20.6,61,101300,1162,1334,459,313,0,313,37200,0,37200,14430,80,6.2,10,10,11.2,4500,9,999999999,430,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.6,63,101300,984,1334,455,254,0,254,29900,0,29900,11670,80,6.7,10,10,11.2,4500,9,999999999,440,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,21.1,67,101200,753,1334,453,179,0,179,20900,0,20900,7850,80,7.7,10,10,11.2,6000,9,999999999,440,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.1,69,101200,486,1334,449,118,0,118,13500,0,13500,4610,70,6.2,10,10,11.2,6000,9,999999999,450,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101300,202,1334,447,52,0,52,5800,0,5800,1740,70,6.2,10,10,11.2,4500,9,999999999,459,0.1930,0,88,0.110,0.0,6.0 +1991,5,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.1,71,101300,7,322,446,0,0,0,0,0,0,0,80,6.2,10,10,11.2,6000,9,999999999,459,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.1,71,101300,0,0,425,0,0,0,0,0,0,0,70,7.7,9,8,11.2,6000,9,999999999,469,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,22.2,79,101300,0,0,416,0,0,0,0,0,0,0,80,7.7,9,7,11.2,6000,9,999999999,469,0.1930,0,88,0.110,0.0,99.0 +1991,5,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.8,82,101300,0,0,424,0,0,0,0,0,0,0,70,8.2,9,8,11.2,6000,9,999999999,480,0.1930,0,88,0.110,999.0,99.0 +1991,5,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101300,0,0,444,0,0,0,0,0,0,0,80,7.2,10,10,11.2,6000,9,999999999,490,0.1930,0,88,0.110,999.0,99.0 +1991,5,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.7,77,101200,0,0,444,0,0,0,0,0,0,0,80,6.7,10,10,11.2,6000,9,999999999,490,0.1940,0,88,0.110,0.0,6.0 +1991,5,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.7,77,101200,0,0,444,0,0,0,0,0,0,0,80,7.2,10,10,11.2,6000,9,999999999,500,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101200,0,0,443,0,0,0,0,0,0,0,80,7.2,10,10,11.2,6000,9,999999999,509,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,20.6,72,101200,0,0,442,0,0,0,0,0,0,0,80,6.7,10,10,11.2,6000,9,999999999,509,0.1940,0,88,0.110,0.0,99.0 +1991,5,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101200,0,0,443,0,0,0,0,0,0,0,70,7.7,10,10,11.2,6000,9,999999999,519,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101200,16,478,443,2,0,2,0,0,0,0,60,7.7,10,10,11.2,6000,9,999999999,519,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101200,235,1333,443,42,0,42,4800,0,4800,1570,80,9.3,10,10,11.2,6000,9,999999999,530,0.1940,0,88,0.110,0.0,6.0 +1991,5,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.7,74,101200,518,1333,447,118,0,118,13600,0,13600,4760,80,7.7,10,10,11.2,6000,9,999999999,530,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.7,72,101300,782,1333,450,159,0,159,18800,0,18800,7290,90,9.3,10,10,11.2,3000,9,999999999,530,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101300,1007,1333,442,214,0,214,25600,0,25600,10310,100,8.2,10,10,4.8,900,9,999999999,530,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,101300,1179,1333,452,255,0,255,30900,0,30900,12360,100,7.2,10,10,11.2,3000,9,999999999,530,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101300,1285,1333,443,281,0,281,34300,0,34300,13590,100,8.2,10,10,11.2,3000,9,999999999,530,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.3,87,101300,1318,1333,443,288,0,288,35200,0,35200,13930,80,9.3,10,10,8.0,450,9,999999999,530,0.1940,0,88,0.110,6.0,6.0 +1991,5,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101200,1277,1333,439,279,0,279,34000,0,34000,13490,80,9.8,10,10,4.8,450,9,999999999,530,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101200,1163,1333,439,211,0,211,25900,0,25900,10550,70,8.8,10,10,9.6,390,9,999999999,519,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101200,985,1333,438,175,0,175,21200,0,21200,8670,90,8.2,10,10,9.6,360,9,999999999,519,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101200,755,1333,439,152,0,152,18000,0,18000,6910,80,7.2,10,10,11.2,750,9,999999999,519,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101200,488,1333,434,87,0,87,10200,0,10200,3650,90,6.2,10,10,11.2,1200,9,999999999,519,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.8,88,101300,204,1333,439,28,0,28,3300,0,3300,1080,80,7.2,10,10,11.2,1110,9,999999999,519,0.1940,0,88,0.110,4.0,6.0 +1991,5,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101300,8,322,435,0,0,0,0,0,0,0,80,7.2,10,10,11.2,1380,9,999999999,519,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101300,0,0,435,0,0,0,0,0,0,0,70,8.2,10,10,11.2,2400,9,999999999,519,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,22.2,88,101300,0,0,434,0,0,0,0,0,0,0,80,6.2,10,10,11.2,4500,9,999999999,519,0.1940,0,88,0.110,0.0,99.0 +1991,5,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101400,0,0,435,0,0,0,0,0,0,0,90,5.1,10,10,11.2,360,9,999999999,519,0.1940,0,88,0.110,999.0,99.0 +1991,5,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101400,0,0,435,0,0,0,0,0,0,0,90,3.6,10,10,11.2,420,9,999999999,519,0.1940,0,88,0.110,999.0,99.0 +1991,5,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101300,0,0,422,0,0,0,0,0,0,0,80,3.1,9,9,11.2,7500,9,999999999,519,0.1950,0,88,0.110,1.0,6.0 +1991,5,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101300,0,0,435,0,0,0,0,0,0,0,80,4.6,10,10,11.2,360,9,999999999,519,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101300,0,0,426,0,0,0,0,0,0,0,80,3.6,9,9,11.2,1050,9,999999999,519,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,22.8,91,101300,0,0,435,0,0,0,0,0,0,0,120,1.5,10,10,11.2,450,9,999999999,509,0.1950,0,88,0.110,0.0,99.0 +1991,5,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,23.3,96,101300,0,0,433,0,0,0,0,0,0,0,90,1.5,10,10,4.8,540,9,999999999,509,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,23.3,96,101400,17,477,433,1,0,1,0,0,0,0,110,2.6,10,10,4.8,270,9,999999999,509,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,23.3,94,101400,236,1332,424,78,44,71,8600,3500,8000,1710,110,2.1,9,9,11.2,600,9,999999999,509,0.1950,0,88,0.110,22.0,6.0 +1991,5,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101500,519,1332,439,70,0,70,8400,0,8400,3110,120,4.1,10,10,11.2,240,9,999999999,509,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101500,782,1332,446,124,0,124,14900,0,14900,5930,120,5.1,10,10,11.2,330,9,999999999,509,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,23.9,77,101500,1008,1332,447,343,93,273,38200,9900,30700,9010,120,4.1,9,9,11.2,330,9,999999999,509,0.1950,0,88,0.110,0.0,99.0 +1991,5,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.8,68,101500,1179,1332,452,479,130,364,53200,13900,40900,16430,120,4.1,9,9,11.2,4800,9,999999999,509,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101500,1285,1332,453,318,16,302,38500,1300,37200,14380,150,2.6,9,9,11.2,4500,9,999999999,509,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101400,1319,1332,441,325,70,256,37300,7600,29800,23020,80,2.6,9,9,11.2,4500,9,999999999,509,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.8,61,101300,1277,1332,426,884,645,266,94200,65600,31100,20920,150,1.0,2,2,11.2,77777,9,999999999,509,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,23.9,68,101300,1164,1332,461,556,158,417,61000,16800,46300,18110,10,2.6,9,9,11.2,900,9,999999999,500,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.9,94,101400,986,1332,440,168,0,168,20400,0,20400,8380,90,6.2,10,10,1.6,210,9,999999999,500,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101400,756,1332,431,348,49,320,38100,5000,35300,9420,100,6.2,9,9,11.2,1050,9,999999999,500,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101400,490,1332,433,176,26,166,19500,2000,18800,5790,80,5.1,9,9,11.2,2700,9,999999999,500,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.9,88,101400,206,1332,434,49,9,48,5500,100,5500,1660,80,4.1,9,9,11.2,2400,9,999999999,500,0.1950,0,88,0.110,10.0,6.0 +1991,5,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101500,8,344,431,0,0,0,0,0,0,0,90,3.1,9,9,11.2,2400,9,999999999,500,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101500,0,0,431,0,0,0,0,0,0,0,90,2.6,9,9,11.2,2400,9,999999999,500,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.9,90,101500,0,0,431,0,0,0,0,0,0,0,80,3.6,9,9,11.2,180,9,999999999,500,0.1950,0,88,0.110,0.0,99.0 +1991,5,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101500,0,0,431,0,0,0,0,0,0,0,70,4.1,9,9,11.2,180,9,999999999,500,0.1950,0,88,0.110,999.0,99.0 +1991,5,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.9,94,101500,0,0,394,0,0,0,0,0,0,0,80,3.1,2,2,11.2,77777,9,999999999,500,0.1950,0,88,0.110,999.0,99.0 +1991,5,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,23.9,94,101500,0,0,394,0,0,0,0,0,0,0,90,4.1,2,2,11.2,77777,9,999999999,500,0.1960,0,88,0.110,0.0,6.0 +1991,5,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101400,0,0,427,0,0,0,0,0,0,0,90,4.1,9,9,11.2,300,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101400,0,0,427,0,0,0,0,0,0,0,70,2.6,9,9,11.2,300,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,23.3,90,101400,0,0,427,0,0,0,0,0,0,0,90,3.1,9,9,11.2,300,9,999999999,490,0.1960,0,88,0.110,0.0,99.0 +1991,5,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.9,94,101500,0,0,428,0,0,0,0,0,0,0,110,2.6,9,9,11.2,300,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101500,17,499,427,4,0,4,0,0,0,0,90,2.6,9,9,11.2,390,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.9,90,101600,238,1332,431,70,24,65,7600,1900,7200,1600,70,3.1,9,9,11.2,390,9,999999999,490,0.1960,0,88,0.110,0.0,6.0 +1991,5,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101600,520,1332,433,102,51,82,11600,5100,9600,1910,100,4.1,9,9,11.2,390,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101600,783,1332,406,537,640,161,56000,63800,18500,3680,80,4.1,2,2,11.2,77777,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,23.9,74,101600,1008,1332,419,641,647,151,69000,66400,18600,4890,120,5.1,3,3,11.2,77777,9,999999999,490,0.1960,0,88,0.110,0.0,99.0 +1991,5,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,23.9,68,101600,1179,1332,424,854,836,113,88200,83800,13800,4670,120,3.6,2,2,11.2,77777,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.8,59,101600,1285,1332,433,923,781,169,98700,79100,22200,13560,130,3.1,3,3,11.2,77777,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,23.3,57,101500,1319,1332,436,805,671,140,88100,68600,20100,16260,150,2.1,2,2,11.2,77777,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,23.3,65,101400,1277,1332,428,893,712,210,96700,73200,26300,16770,130,3.1,3,3,11.2,77777,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101400,1164,1332,434,493,134,376,54600,14300,42000,16370,170,7.7,9,9,11.2,1050,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.7,72,101400,987,1332,438,423,88,358,46600,9000,39900,13070,100,3.6,9,9,11.2,1200,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101400,757,1332,433,314,73,272,34400,7400,30200,8380,70,7.7,9,9,11.2,1200,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101500,491,1332,444,87,0,87,10200,0,10200,3660,70,5.1,10,10,11.2,2100,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.9,90,101500,209,1332,431,41,24,37,4500,1800,4200,970,60,2.1,9,9,11.2,2100,9,999999999,490,0.1960,0,88,0.110,2.0,6.0 +1991,5,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101500,9,366,443,0,0,0,0,0,0,0,110,2.6,10,10,11.2,900,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101600,0,0,439,0,0,0,0,0,0,0,150,4.1,10,10,11.2,1500,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,22.2,84,101600,0,0,438,0,0,0,0,0,0,0,140,1.5,10,10,11.2,1500,9,999999999,490,0.1960,0,88,0.110,0.0,99.0 +1991,5,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101500,0,0,426,0,0,0,0,0,0,0,70,2.1,9,9,11.2,960,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101600,0,0,433,0,0,0,0,0,0,0,80,2.1,9,9,11.2,1800,9,999999999,490,0.1960,0,88,0.110,999.0,99.0 +1991,5,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.3,87,101500,0,0,403,0,0,0,0,0,0,0,80,2.6,9,4,11.2,900,9,999999999,490,0.1970,0,88,0.110,0.0,6.0 +1991,5,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101400,0,0,403,0,0,0,0,0,0,0,90,3.1,9,4,11.2,1800,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101400,0,0,403,0,0,0,0,0,0,0,80,3.6,9,4,11.2,7500,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,23.3,90,101400,0,0,388,0,0,0,0,0,0,0,80,3.6,2,1,11.2,77777,9,999999999,490,0.1970,0,88,0.110,0.0,99.0 +1991,5,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101400,0,0,400,0,0,0,0,0,0,0,80,4.1,9,4,11.2,7500,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101500,18,499,403,3,0,3,0,0,0,0,80,5.1,9,4,11.2,7500,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,101500,239,1331,403,84,68,72,9100,5000,8200,1540,80,5.1,9,4,11.2,7500,9,999999999,490,0.1970,0,88,0.110,0.0,6.0 +1991,5,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101500,521,1331,412,240,204,160,26100,20000,18300,3730,90,5.7,9,4,11.2,7500,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,101600,784,1331,418,422,252,273,45900,26300,30400,7300,100,6.2,9,4,11.2,900,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,22.8,68,101600,1008,1331,424,704,542,294,74700,56300,32000,9480,90,5.7,9,4,11.2,3000,9,999999999,490,0.1970,0,88,0.110,0.0,99.0 +1991,5,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,22.2,61,101600,1179,1331,430,759,456,354,80800,47600,38600,17950,110,4.6,9,4,11.2,3000,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,21.7,56,101500,1285,1331,435,870,554,335,94600,58000,38500,28870,90,5.1,9,4,11.2,3000,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,21.1,52,101500,1319,1331,437,854,515,343,93000,54000,39400,42230,80,5.1,9,4,11.2,3000,9,999999999,490,0.1970,0,88,0.110,0.0,6.0 +1991,5,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,21.1,50,101400,1278,1331,441,778,445,351,84100,46600,39300,28660,70,6.2,9,4,11.2,3000,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,20.6,49,101300,1165,1331,440,664,412,303,71700,43100,34000,14500,100,4.6,9,4,11.2,2400,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.8,20.0,47,101200,988,1331,439,614,475,261,65600,49400,28900,8040,90,2.1,9,4,11.2,3000,9,999999999,490,0.1970,0,88,0.110,0.0,99.0 +1991,5,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,19.4,45,101200,758,1331,438,441,343,245,47200,36200,26600,5950,90,3.6,9,4,11.2,3000,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,20.6,52,101200,493,1331,434,253,128,205,27600,12400,23000,5160,90,4.1,9,4,11.2,3000,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,21.1,55,101300,211,1331,431,66,37,60,7200,2800,6800,1440,90,3.1,9,4,11.2,3000,9,999999999,490,0.1970,0,88,0.110,0.0,6.0 +1991,5,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.7,61,101300,9,366,426,1,0,1,0,0,0,0,90,3.1,9,4,11.2,1800,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.9,79,101400,0,0,416,0,0,0,0,0,0,0,150,4.6,9,4,11.2,1500,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,22.2,74,101400,0,0,411,0,0,0,0,0,0,0,150,5.1,9,4,11.2,1200,9,999999999,490,0.1970,0,88,0.110,0.0,99.0 +1991,5,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.2,76,101400,0,0,408,0,0,0,0,0,0,0,120,4.1,9,4,11.2,2400,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.8,82,101400,0,0,406,0,0,0,0,0,0,0,80,1.5,9,4,11.2,9000,9,999999999,490,0.1970,0,88,0.110,999.0,99.0 +1991,5,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.3,85,101400,0,0,433,0,0,0,0,0,0,0,90,1.0,9,9,11.2,77777,9,999999999,490,0.1980,0,88,0.110,0.0,6.0 +1991,5,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101400,0,0,431,0,0,0,0,0,0,0,90,0.5,9,9,11.2,77777,9,999999999,490,0.1980,0,88,0.110,999.0,99.0 +1991,5,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101300,0,0,396,0,0,0,0,0,0,0,90,2.1,2,2,11.2,77777,9,999999999,490,0.1980,0,88,0.110,999.0,99.0 +1991,5,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,23.3,90,101300,0,0,397,0,0,0,0,0,0,0,100,3.1,3,3,11.2,77777,9,999999999,490,0.1980,0,88,0.110,0.0,99.0 +1991,5,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101300,0,0,393,0,0,0,0,0,0,0,110,3.1,2,2,11.2,77777,9,999999999,490,0.1980,0,88,0.110,999.0,99.0 +1991,5,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.9,94,101400,18,499,428,5,0,5,0,0,0,0,120,3.1,9,9,11.2,9000,9,999999999,490,0.1980,0,88,0.110,999.0,99.0 +1991,5,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.9,90,101500,240,1331,431,73,3,72,8000,100,8000,2320,110,3.1,9,9,11.2,2400,9,999999999,490,0.1980,0,88,0.110,0.0,6.0 +1991,5,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,24.4,87,101500,522,1331,438,173,94,136,19000,9200,15400,3170,120,3.1,9,9,11.2,2400,9,999999999,490,0.1980,0,88,0.110,999.0,99.0 +1991,5,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,24.4,82,101500,784,1331,445,299,38,276,32800,3900,30500,8700,130,3.1,9,9,11.2,2400,9,999999999,490,0.1980,0,88,0.110,999.0,99.0 +1991,5,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,24.4,75,101600,1008,1331,467,213,0,213,25500,0,25500,10280,130,2.6,10,10,11.2,2400,9,999999999,490,0.1980,0,88,0.110,0.0,99.0 +1991,5,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.9,66,101500,1179,1331,464,521,29,495,59900,3000,57200,19520,150,5.1,9,9,11.2,2400,9,999999999,490,0.1980,0,88,0.110,999.0,99.0 +1991,5,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101500,1285,1331,427,743,141,606,81800,14800,67500,35360,210,5.1,9,9,11.2,900,9,999999999,480,0.1980,0,88,0.110,999.0,99.0 +1991,5,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,23.9,85,101400,1319,1331,450,296,0,296,36100,0,36100,14240,170,2.1,10,10,11.2,2400,9,999999999,480,0.1980,0,88,0.110,9.0,6.0 +1991,5,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.8,72,101500,1278,1331,458,285,0,285,34700,0,34700,13730,170,2.6,10,10,11.2,2100,9,999999999,480,0.1980,0,88,0.110,999.0,99.0 +1991,5,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.3,94,101500,1165,1331,424,524,182,364,58100,19500,41000,15910,150,9.3,9,9,4.8,1200,9,999999999,480,0.1980,0,88,0.110,999.0,99.0 +1991,5,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,22.8,88,101500,988,1331,426,294,64,246,32500,6500,27600,9580,110,5.1,9,9,11.2,3000,9,999999999,469,0.1980,0,88,0.110,0.0,99.0 +1991,5,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101500,760,1331,443,196,0,196,22700,0,22700,8450,100,4.1,10,10,11.2,7500,9,999999999,469,0.1980,0,88,0.110,999.0,99.0 +1991,5,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101600,495,1331,442,129,0,129,14600,0,14600,4970,100,3.1,10,10,11.2,7500,9,999999999,469,0.1980,0,88,0.110,999.0,99.0 +1991,5,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.3,87,101600,213,1331,443,56,0,56,6200,0,6200,1870,100,4.1,10,10,11.2,7500,9,999999999,469,0.1980,0,88,0.110,8.0,6.0 +1991,5,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101600,10,388,439,1,0,1,0,0,0,0,90,4.1,10,10,11.2,7500,9,999999999,459,0.1980,0,88,0.110,999.0,99.0 +1991,5,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101700,0,0,439,0,0,0,0,0,0,0,110,4.1,10,10,11.2,7500,9,999999999,459,0.1980,0,88,0.110,999.0,99.0 +1991,5,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,22.8,88,101700,0,0,439,0,0,0,0,0,0,0,100,2.1,10,10,11.2,77777,9,999999999,459,0.1980,0,88,0.110,0.0,99.0 +1991,5,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101800,0,0,426,0,0,0,0,0,0,0,90,2.6,9,9,11.2,2100,9,999999999,459,0.1980,0,88,0.110,999.0,99.0 +1991,5,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101700,0,0,426,0,0,0,0,0,0,0,100,2.6,9,9,11.2,3300,9,999999999,459,0.1980,0,88,0.110,999.0,99.0 +1991,5,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.8,88,101700,0,0,426,0,0,0,0,0,0,0,110,2.6,9,9,11.2,7500,9,999999999,450,0.1990,0,88,0.110,0.0,6.0 +1991,5,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101700,0,0,426,0,0,0,0,0,0,0,90,2.6,9,9,11.2,7500,9,999999999,450,0.1990,0,88,0.110,999.0,99.0 +1991,5,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101600,0,0,393,0,0,0,0,0,0,0,100,2.6,3,3,11.2,77777,9,999999999,450,0.1990,0,88,0.110,999.0,99.0 +1991,5,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,23.3,90,101600,0,0,427,0,0,0,0,0,0,0,110,3.6,9,9,11.2,7500,9,999999999,450,0.1990,0,88,0.110,0.0,99.0 +1991,5,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101700,0,0,427,0,0,0,0,0,0,0,120,4.1,9,9,11.2,7500,9,999999999,440,0.1990,0,88,0.110,999.0,99.0 +1991,5,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101700,19,521,393,3,13,3,0,0,0,0,110,4.6,2,2,9.6,77777,9,999999999,440,0.1990,0,88,0.110,999.0,99.0 +1991,5,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.9,88,101800,241,1331,434,57,28,52,6300,2200,5900,1340,120,4.6,9,9,11.2,77777,9,999999999,440,0.1990,0,88,0.110,0.0,6.0 +1991,5,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.9,79,101900,522,1331,409,309,520,105,31900,48800,12700,2010,120,5.7,2,2,11.2,77777,9,999999999,440,0.1990,0,88,0.110,999.0,99.0 +1991,5,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,23.9,74,101900,784,1331,419,511,620,145,53700,62100,17000,3380,130,5.1,3,3,11.2,77777,9,999999999,430,0.1990,0,88,0.110,999.0,99.0 +1991,5,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,23.3,65,101900,1008,1331,424,676,725,126,72000,73300,16300,3880,120,4.1,2,2,11.2,77777,9,999999999,430,0.1990,0,88,0.110,0.0,99.0 +1991,5,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.2,57,101900,1179,1331,433,673,543,192,72700,55800,23100,9640,130,3.1,3,3,11.2,77777,9,999999999,419,0.1990,0,88,0.110,999.0,99.0 +1991,5,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.2,56,101900,1285,1331,468,342,137,209,39700,15000,25100,15190,140,4.6,9,9,11.2,77777,9,999999999,419,0.1990,0,88,0.110,999.0,99.0 +1991,5,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,101900,1319,1331,435,476,109,368,53400,11700,41800,34070,90,4.1,9,9,11.2,1200,9,999999999,419,0.1990,0,88,0.110,2.0,6.0 +1991,5,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,23.9,63,101800,1278,1331,431,900,774,156,97000,78700,21300,12100,150,3.1,2,2,11.2,77777,9,999999999,409,0.1990,0,88,0.110,999.0,99.0 +1991,5,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.8,58,101700,1166,1331,436,792,697,181,85700,71800,22700,8700,130,2.1,3,3,11.2,77777,9,999999999,409,0.1990,0,88,0.110,999.0,99.0 +1991,5,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.8,21.7,52,101700,989,1331,434,699,756,137,73600,76000,17000,3950,170,2.1,2,2,11.2,77777,9,999999999,400,0.1990,0,88,0.110,0.0,99.0 +1991,5,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.1,76,101800,761,1331,428,379,119,311,41600,12100,34600,9300,80,5.1,9,9,11.2,900,9,999999999,400,0.1990,0,88,0.110,999.0,99.0 +1991,5,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,101800,497,1331,418,95,36,81,10400,3400,9200,2460,70,3.6,9,9,11.2,2700,9,999999999,400,0.1990,0,88,0.110,999.0,99.0 +1991,5,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.7,82,101800,215,1331,425,44,42,37,4900,3000,4400,790,70,2.6,9,9,11.2,2700,9,999999999,390,0.1990,0,88,0.110,1.0,6.0 +1991,5,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101800,11,388,392,1,9,1,0,0,0,0,80,2.1,2,2,11.2,77777,9,999999999,390,0.1990,0,88,0.110,999.0,99.0 +1991,5,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.7,82,101900,0,0,395,0,0,0,0,0,0,0,90,1.5,3,3,11.2,77777,9,999999999,390,0.1990,0,88,0.110,999.0,99.0 +1991,5,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,22.2,82,101900,0,0,395,0,0,0,0,0,0,0,90,1.0,2,2,11.2,77777,9,999999999,379,0.1990,0,88,0.110,0.0,99.0 +1991,5,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,102000,0,0,431,0,0,0,0,0,0,0,90,1.0,9,9,11.2,1200,9,999999999,379,0.1990,0,88,0.110,999.0,99.0 +1991,5,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,102000,0,0,430,0,0,0,0,0,0,0,80,1.5,9,9,11.2,3300,9,999999999,370,0.1990,0,88,0.110,999.0,99.0 +1991,5,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,101900,0,0,396,0,0,0,0,0,0,0,80,2.6,2,2,11.2,77777,9,999999999,370,0.2000,0,88,0.110,0.0,6.0 +1991,5,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101900,0,0,396,0,0,0,0,0,0,0,90,2.6,3,3,11.2,77777,9,999999999,370,0.2000,0,88,0.110,999.0,99.0 +1991,5,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101900,0,0,393,0,0,0,0,0,0,0,120,3.6,2,2,11.2,77777,9,999999999,359,0.2000,0,88,0.110,999.0,99.0 +1991,5,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,22.8,91,101900,0,0,393,0,0,0,0,0,0,0,120,4.1,3,3,11.2,77777,9,999999999,359,0.2000,0,88,0.110,0.0,99.0 +1991,5,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101900,0,0,377,0,0,0,0,0,0,0,100,4.1,0,0,11.2,77777,9,999999999,350,0.2000,0,88,0.110,999.0,99.0 +1991,5,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101900,19,521,380,3,7,3,0,0,0,0,110,4.1,0,0,11.2,77777,9,999999999,350,0.2000,0,88,0.110,999.0,99.0 +1991,5,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.8,82,102000,242,1330,398,90,209,52,9500,15000,6800,930,110,5.1,2,2,11.2,77777,9,999999999,350,0.2000,0,88,0.110,0.0,6.0 +1991,5,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,102000,523,1330,409,280,433,109,29900,41500,13600,2090,120,6.2,3,3,11.2,77777,9,999999999,350,0.2000,0,88,0.110,999.0,99.0 +1991,5,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.8,70,102000,785,1330,414,477,583,133,50500,58600,15800,3140,120,6.2,2,2,11.2,77777,9,999999999,350,0.2000,0,88,0.110,999.0,99.0 +1991,5,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,22.2,63,102000,1008,1330,423,664,618,196,70300,62800,22600,6210,130,5.7,3,3,11.2,77777,9,999999999,340,0.2000,0,88,0.110,0.0,99.0 +1991,5,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.1,55,102000,1179,1330,424,844,733,194,91000,75300,24100,9750,130,4.1,2,2,11.2,77777,9,999999999,340,0.2000,0,88,0.110,999.0,99.0 +1991,5,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,21.1,54,102000,1285,1330,431,892,687,228,96100,70400,27900,19420,120,4.1,3,3,11.2,77777,9,999999999,340,0.2000,0,88,0.110,999.0,99.0 +1991,5,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,20.0,49,102000,1319,1330,428,928,687,246,99700,70300,29900,30250,140,3.6,2,2,11.2,77777,9,999999999,340,0.2000,0,88,0.110,0.0,6.0 +1991,5,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,19.4,45,101900,1278,1330,435,954,764,219,103000,78500,27400,17780,140,1.5,3,3,11.2,77777,9,999999999,340,0.2000,0,88,0.110,999.0,99.0 +1991,5,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,17.8,40,101800,1166,1330,431,821,714,194,88300,73300,23900,9310,160,2.1,2,2,11.2,77777,9,999999999,340,0.2000,0,88,0.110,999.0,99.0 +1991,5,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,33.9,20.6,46,101800,990,1330,443,655,606,203,68900,61300,23100,6180,220,2.6,3,3,11.2,77777,9,999999999,340,0.2000,0,88,0.110,0.0,99.0 +1991,5,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.8,61,101700,762,1330,426,499,547,185,53200,55800,21200,4200,190,4.1,2,2,11.2,77777,9,999999999,340,0.2000,0,88,0.110,999.0,99.0 +1991,5,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.2,65,101700,498,1330,420,248,309,132,26600,30000,15300,2680,230,1.0,3,3,11.2,77777,9,999999999,340,0.2000,0,88,0.110,999.0,99.0 +1991,5,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,23.9,74,101700,217,1330,415,81,203,48,8500,13800,6300,860,310,3.1,2,2,11.2,77777,9,999999999,340,0.2000,0,88,0.110,0.0,6.0 +1991,5,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.2,72,101800,11,410,411,1,1,1,0,0,0,0,330,2.6,3,3,11.2,77777,9,999999999,340,0.2000,0,88,0.110,999.0,99.0 +1991,5,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101800,0,0,406,0,0,0,0,0,0,0,330,1.0,2,2,11.2,77777,9,999999999,340,0.2000,0,88,0.110,999.0,99.0 +1991,5,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,23.3,85,101900,0,0,403,0,0,0,0,0,0,0,20,0.5,3,3,11.2,77777,9,999999999,340,0.2000,0,88,0.110,0.0,99.0 +1991,5,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.8,79,102000,0,0,436,0,0,0,0,0,0,0,10,0.5,9,9,11.2,2400,9,999999999,340,0.2000,0,88,0.110,999.0,99.0 +1991,5,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.2,74,102000,0,0,408,0,0,0,0,0,0,0,60,2.6,3,3,11.2,77777,9,999999999,329,0.2000,0,88,0.110,999.0,99.0 +1991,5,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.7,77,101900,0,0,401,0,0,0,0,0,0,0,110,3.6,3,3,11.2,77777,9,999999999,329,0.2010,0,88,0.110,0.0,6.0 +1991,5,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.7,82,101900,0,0,391,0,0,0,0,0,0,0,110,3.6,2,2,11.2,77777,9,999999999,329,0.2010,0,88,0.110,999.0,99.0 +1991,5,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,101800,0,0,391,0,0,0,0,0,0,0,100,2.1,3,3,11.2,77777,9,999999999,329,0.2010,0,88,0.110,999.0,99.0 +1991,5,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,21.1,84,101800,0,0,373,0,0,0,0,0,0,0,120,3.1,0,0,11.2,77777,9,999999999,329,0.2010,0,88,0.110,0.0,99.0 +1991,5,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,101800,0,0,373,0,0,0,0,0,0,0,120,2.1,0,0,11.2,77777,9,999999999,329,0.2010,0,88,0.110,999.0,99.0 +1991,5,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,101800,20,521,382,4,28,3,0,0,0,0,150,2.1,2,2,11.2,77777,9,999999999,329,0.2010,0,88,0.110,999.0,99.0 +1991,5,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.7,79,101900,243,1330,382,118,433,39,12300,32200,6400,720,170,2.6,0,0,11.2,77777,9,999999999,329,0.2010,0,88,0.110,0.0,6.0 +1991,5,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,20.6,69,101900,524,1330,386,331,679,63,34700,64500,9300,1330,140,2.6,0,0,11.2,77777,9,999999999,329,0.2010,0,88,0.110,999.0,99.0 +1991,5,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,21.7,69,101900,785,1330,393,553,791,85,59300,79300,12300,2080,130,1.0,0,0,11.2,77777,9,999999999,329,0.2010,0,88,0.110,999.0,99.0 +1991,5,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,20.6,61,101900,1008,1330,411,711,734,154,76500,75300,19200,5000,150,1.5,2,2,11.2,77777,9,999999999,329,0.2010,0,88,0.110,0.0,99.0 +1991,5,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.6,57,101900,1179,1330,421,830,693,215,88800,70900,25800,10740,150,2.1,3,3,11.2,77777,9,999999999,329,0.2010,0,88,0.110,999.0,99.0 +1991,5,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,18.9,48,101900,1285,1330,421,866,723,167,92700,73300,21800,13620,190,2.1,2,2,11.2,77777,9,999999999,329,0.2010,0,88,0.110,999.0,99.0 +1991,5,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,19.4,50,101800,1319,1330,425,946,679,272,101000,69100,32200,33600,140,4.1,3,3,11.2,77777,9,999999999,329,0.2010,0,88,0.110,0.0,6.0 +1991,5,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,19.4,47,101700,1278,1330,427,959,863,130,98700,86600,15300,8570,90,1.0,2,2,11.2,77777,9,999999999,329,0.2010,0,88,0.110,999.0,99.0 +1991,5,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,18.9,44,101600,1167,1330,434,651,468,241,72100,49100,29000,11560,70,1.5,3,3,11.2,77777,9,999999999,329,0.2010,0,88,0.110,999.0,99.0 +1991,5,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.8,19.4,45,101500,991,1330,431,683,761,116,73300,77100,15700,3530,300,2.1,2,2,11.2,77777,9,999999999,329,0.2010,0,88,0.110,0.0,99.0 +1991,5,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.1,57,101500,764,1330,425,519,632,156,54100,62900,18000,3510,320,3.6,3,3,11.2,77777,9,999999999,329,0.2010,0,88,0.110,999.0,99.0 +1991,5,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.1,61,101500,500,1330,414,220,386,75,23200,36400,9500,1500,320,4.6,2,2,11.2,77777,9,999999999,329,0.2010,0,88,0.110,999.0,99.0 +1991,5,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,101500,219,1330,413,65,137,42,7000,9200,5500,740,320,2.6,3,3,11.2,77777,9,999999999,329,0.2010,0,88,0.110,0.0,6.0 +1991,5,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.2,76,101500,12,410,401,2,19,1,0,0,0,0,310,2.6,2,2,11.2,77777,9,999999999,329,0.2010,0,88,0.110,999.0,99.0 +1991,5,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.8,82,101500,0,0,386,0,0,0,0,0,0,0,320,1.5,0,0,11.2,77777,9,999999999,329,0.2010,0,88,0.110,999.0,99.0 +1991,5,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,22.8,85,101500,0,0,383,0,0,0,0,0,0,0,340,1.0,0,0,11.2,77777,9,999999999,329,0.2010,0,88,0.110,0.0,99.0 +1991,5,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101600,0,0,384,0,0,0,0,0,0,0,330,1.0,0,0,11.2,77777,9,999999999,329,0.2010,0,88,0.110,999.0,99.0 +1991,5,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101600,0,0,384,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,340,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101500,0,0,396,0,0,0,0,0,0,0,40,1.0,2,2,11.2,77777,9,999999999,340,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101500,0,0,400,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,340,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101400,0,0,396,0,0,0,0,0,0,0,40,1.0,2,2,11.2,77777,9,999999999,340,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.3,87,101400,0,0,400,0,0,0,0,0,0,0,0,0.0,3,3,9.6,77777,9,999999999,340,0.2010,0,88,0.110,0.0,99.0 +1991,5,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101600,0,0,397,0,0,0,0,0,0,0,0,0.0,2,2,9.6,77777,9,999999999,340,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101400,20,521,397,4,20,3,0,0,0,0,0,0.0,3,3,8.0,77777,9,999999999,340,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.2,79,101400,244,1329,398,110,269,60,11400,19300,7800,1090,140,1.0,2,2,11.2,77777,9,999999999,340,0.2010,0,88,0.110,0.0,6.0 +1991,5,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.2,74,101400,524,1329,418,221,248,123,23900,24500,14300,2460,140,1.0,9,6,11.2,77777,9,999999999,340,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.8,74,101500,785,1329,422,477,254,327,51400,26400,35800,8770,130,1.5,9,6,11.2,77777,9,999999999,340,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,22.8,70,101500,1008,1329,428,518,447,179,55200,45600,20500,5740,180,1.0,9,6,11.2,7500,9,999999999,340,0.2010,0,88,0.110,0.0,99.0 +1991,5,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,23.3,65,101400,1179,1329,438,718,482,290,78100,50500,33200,14650,210,1.5,9,6,11.2,77777,9,999999999,350,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.1,57,101400,1285,1329,435,812,460,368,87600,48100,40900,32200,240,1.0,9,6,11.2,77777,9,999999999,350,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,23.3,59,101400,1319,1329,433,891,708,189,94600,71500,23600,22550,310,1.5,2,2,11.2,77777,9,999999999,350,0.2010,0,88,0.110,0.0,6.0 +1991,5,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.3,67,101300,1278,1329,435,627,369,272,69600,38800,32200,22560,270,5.1,9,6,11.2,900,9,999999999,350,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.1,69,101300,1167,1329,437,517,104,425,57000,10700,47600,19250,320,3.6,10,9,11.2,900,9,999999999,350,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,21.7,72,101300,992,1329,438,169,70,116,19700,7600,14100,3760,330,4.1,10,9,11.2,900,9,999999999,359,0.2010,0,88,0.110,0.0,99.0 +1991,5,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101200,765,1329,431,294,136,216,32500,14200,24300,5710,20,1.5,10,9,11.2,2100,9,999999999,359,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,20.0,71,101200,502,1329,426,259,55,238,28200,5400,26200,5740,110,1.5,10,9,11.2,2100,9,999999999,359,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,20.6,74,101300,221,1329,427,81,34,76,8900,2600,8500,1750,90,1.0,10,9,11.2,2100,9,999999999,359,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,20.0,71,101300,13,432,426,3,0,3,0,0,0,0,170,1.0,10,9,11.2,2400,9,999999999,359,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,101300,0,0,423,0,0,0,0,0,0,0,80,2.6,10,9,11.2,2400,9,999999999,370,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,20.6,79,101300,0,0,420,0,0,0,0,0,0,0,0,0.0,10,9,11.2,7500,9,999999999,370,0.2010,0,88,0.110,0.0,99.0 +1991,5,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,101300,0,0,417,0,0,0,0,0,0,0,0,0.0,10,9,11.2,7500,9,999999999,370,0.2010,0,88,0.110,999.0,99.0 +1991,5,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,101400,0,0,398,0,0,0,0,0,0,0,100,4.6,9,6,11.2,3000,9,999999999,370,0.2010,0,88,0.110,999.0,99.0 +1991,5,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,101300,0,0,411,0,0,0,0,0,0,0,200,1.0,9,9,11.2,77777,9,999999999,370,0.2020,0,88,0.110,0.0,6.0 +1991,5,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.6,87,101300,0,0,379,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,379,0.2020,0,88,0.110,999.0,99.0 +1991,5,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.6,85,101200,0,0,414,0,0,0,0,0,0,0,0,0.0,9,9,11.2,3000,9,999999999,379,0.2020,0,88,0.110,999.0,99.0 +1991,5,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,22.8,20.0,84,101200,0,0,410,0,0,0,0,0,0,0,0,0.0,9,9,11.2,77777,9,999999999,379,0.2020,0,88,0.110,0.0,99.0 +1991,5,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,101200,0,0,417,0,0,0,0,0,0,0,40,1.0,9,9,11.2,3000,9,999999999,379,0.2020,0,88,0.110,999.0,99.0 +1991,5,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.6,85,101300,20,543,414,6,2,6,0,0,0,0,40,1.0,9,9,11.2,7500,9,999999999,390,0.2020,0,88,0.110,999.0,99.0 +1991,5,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.7,85,101300,245,1329,422,76,72,62,8200,5400,7200,1330,0,0.0,9,9,11.2,7500,9,999999999,390,0.2020,0,88,0.110,0.0,6.0 +1991,5,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.6,67,101400,524,1329,449,123,0,123,14100,0,14100,4940,150,2.1,10,10,11.2,77777,9,999999999,390,0.2020,0,88,0.110,999.0,99.0 +1991,5,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.6,63,101400,785,1329,443,324,72,281,35600,7300,31200,8840,130,2.1,9,9,11.2,7500,9,999999999,390,0.2020,0,88,0.110,999.0,99.0 +1991,5,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,22.2,67,101400,1008,1329,448,415,270,210,46700,29300,24400,6370,150,2.1,9,9,11.2,4500,9,999999999,390,0.2020,0,88,0.110,0.0,99.0 +1991,5,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,20.6,69,101500,1178,1329,446,256,0,256,31000,0,31000,12400,300,5.1,10,10,11.2,2400,9,999999999,390,0.2020,0,88,0.110,999.0,99.0 +1991,5,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,19.4,76,101600,1284,1329,428,281,0,281,34300,0,34300,13590,360,4.1,10,10,11.2,2400,9,999999999,379,0.2020,0,88,0.110,999.0,99.0 +1991,5,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,101500,1318,1329,423,289,0,289,35300,0,35300,13970,350,3.1,10,10,11.2,1200,9,999999999,379,0.2020,0,88,0.110,1.0,6.0 +1991,5,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.7,79,101300,1279,1329,441,280,0,280,34100,0,34100,13540,270,1.5,10,10,11.2,2700,9,999999999,379,0.2020,0,88,0.110,999.0,99.0 +1991,5,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.7,74,101300,1168,1329,435,528,123,420,58100,13100,46500,18570,40,0.5,9,9,11.2,7500,9,999999999,379,0.2020,0,88,0.110,999.0,99.0 +1991,5,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,18.9,58,101300,993,1329,437,315,153,201,35500,16600,23100,5920,50,0.5,9,9,11.2,2700,9,999999999,379,0.2020,0,88,0.110,0.0,99.0 +1991,5,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,19.4,59,101300,766,1329,441,266,67,227,29200,6700,25300,7340,0,0.0,9,9,11.2,2700,9,999999999,379,0.2020,0,88,0.110,999.0,99.0 +1991,5,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,18.3,55,101300,504,1329,440,174,52,154,19100,5000,17200,4250,340,2.1,9,9,11.2,7500,9,999999999,379,0.2020,0,88,0.110,999.0,99.0 +1991,5,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,101300,223,1329,430,42,54,33,4800,4000,4100,700,40,4.6,9,9,11.2,7500,9,999999999,379,0.2020,0,88,0.110,1.0,6.0 +1991,5,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,101300,13,432,419,2,1,2,0,0,0,0,50,3.1,9,9,11.2,7500,9,999999999,379,0.2020,0,88,0.110,999.0,99.0 +1991,5,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,19.4,76,101300,0,0,416,0,0,0,0,0,0,0,50,2.1,9,9,11.2,7500,9,999999999,379,0.2020,0,88,0.110,999.0,99.0 +1991,5,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.6,19.5,84,101300,0,0,381,0,0,0,0,0,0,0,0,1.8,2,2,11.2,77777,9,999999999,379,0.2020,0,88,0.110,0.0,99.0 +1991,5,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.6,84,101400,0,0,384,0,0,0,0,0,0,0,100,1.5,3,3,11.2,77777,9,999999999,379,0.2020,0,88,0.110,999.0,99.0 +1991,5,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,19.7,87,101400,0,0,379,0,0,0,0,0,0,0,0,1.2,2,2,11.2,77777,9,999999999,379,0.2020,0,88,0.110,999.0,99.0 +1991,6,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.6,19.7,90,101300,0,0,376,0,0,0,0,0,0,0,0,0.9,2,2,11.2,77777,9,999999999,379,0.2030,0,88,0.110,0.0,6.0 +1991,6,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.3,19.8,90,101300,0,0,379,0,0,0,0,0,0,0,0,0.6,3,3,11.2,77777,9,999999999,379,0.2030,0,88,0.110,999.0,99.0 +1991,6,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.9,93,101300,0,0,374,0,0,0,0,0,0,0,0,0.3,2,2,11.2,77777,9,999999999,379,0.2030,0,88,0.110,999.0,99.0 +1991,6,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,21.7,20.0,90,101300,0,0,376,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,379,0.2030,0,88,0.110,0.0,99.0 +1991,6,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,20.0,93,101300,0,0,369,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,370,0.2030,0,88,0.110,999.0,99.0 +1991,6,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,20.6,93,101300,21,542,377,3,0,3,0,0,0,0,40,1.0,3,3,11.2,77777,9,999999999,370,0.2030,0,88,0.110,999.0,99.0 +1991,6,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.7,85,101400,245,1328,388,88,107,69,9700,8100,8200,1480,0,0.0,2,2,11.2,77777,9,999999999,370,0.2030,0,88,0.110,0.0,6.0 +1991,6,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.7,74,101400,525,1328,404,260,240,165,27500,23600,18200,3500,0,0.0,3,3,11.2,77777,9,999999999,370,0.2030,0,88,0.110,999.0,99.0 +1991,6,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.1,65,101400,785,1328,408,490,523,181,52700,53600,20900,4180,240,0.5,2,2,11.2,77777,9,999999999,370,0.2030,0,88,0.110,999.0,99.0 +1991,6,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,21.7,65,101400,1008,1328,416,681,539,271,72800,56100,30100,8720,200,1.5,3,3,11.2,77777,9,999999999,370,0.2030,0,88,0.110,0.0,99.0 +1991,6,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.7,63,101400,1178,1328,415,824,622,271,86600,62900,30700,13320,190,2.6,2,2,11.2,77777,9,999999999,370,0.2030,0,88,0.110,999.0,99.0 +1991,6,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,23.3,72,101300,1284,1328,450,665,37,629,76200,4200,72100,22870,240,4.1,9,9,11.2,900,9,999999999,370,0.2030,0,88,0.110,999.0,99.0 +1991,6,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,101400,1318,1328,410,503,77,425,55500,7900,47700,33040,230,6.2,9,9,9.6,900,9,999999999,370,0.2030,0,88,0.110,2.0,6.0 +1991,6,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,20.0,57,101300,1279,1328,448,418,96,325,47100,10300,37100,21680,240,1.0,9,9,11.2,7500,9,999999999,370,0.2030,0,88,0.110,999.0,99.0 +1991,6,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.1,57,101300,1168,1328,421,654,470,240,72400,49300,28900,11610,230,1.5,2,2,11.2,77777,9,999999999,370,0.2030,0,88,0.110,999.0,99.0 +1991,6,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,21.7,59,101200,994,1328,426,637,543,230,69100,56600,26600,7130,310,3.6,3,3,11.2,77777,9,999999999,370,0.2030,0,88,0.110,0.0,99.0 +1991,6,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,21.1,63,101200,767,1328,411,455,462,187,48500,47200,21100,4270,30,2.6,2,2,11.2,77777,9,999999999,370,0.2030,0,88,0.110,999.0,99.0 +1991,6,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.7,63,101100,505,1328,419,248,290,138,26600,28300,15800,2820,310,2.6,3,3,11.2,77777,9,999999999,370,0.2030,0,88,0.110,999.0,99.0 +1991,6,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,101200,225,1328,409,69,68,57,7500,4900,6700,1210,280,3.1,2,2,11.2,77777,9,999999999,370,0.2030,0,88,0.110,2.0,6.0 +1991,6,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.2,76,101200,14,454,405,2,0,2,0,0,0,0,280,2.6,3,3,11.2,77777,9,999999999,370,0.2030,0,88,0.110,999.0,99.0 +1991,6,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101200,0,0,396,0,0,0,0,0,0,0,290,1.5,2,2,11.2,77777,9,999999999,370,0.2030,0,88,0.110,999.0,99.0 +1991,6,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,22.2,84,101300,0,0,396,0,0,0,0,0,0,0,270,1.0,3,3,11.2,77777,9,999999999,370,0.2030,0,88,0.110,0.0,99.0 +1991,6,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101300,0,0,392,0,0,0,0,0,0,0,320,2.1,2,2,11.2,77777,9,999999999,370,0.2030,0,88,0.110,999.0,99.0 +1991,6,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101300,0,0,393,0,0,0,0,0,0,0,300,1.0,3,3,11.2,77777,9,999999999,370,0.2030,0,88,0.110,999.0,99.0 +1991,6,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,101200,0,0,400,0,0,0,0,0,0,0,300,2.1,3,3,11.2,77777,9,999999999,370,0.2040,0,88,0.110,0.0,6.0 +1991,6,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101200,0,0,389,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,370,0.2040,0,88,0.110,999.0,99.0 +1991,6,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101200,0,0,393,0,0,0,0,0,0,0,280,2.1,3,3,11.2,77777,9,999999999,370,0.2040,0,88,0.110,999.0,99.0 +1991,6,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,22.2,88,101200,0,0,389,0,0,0,0,0,0,0,270,2.1,2,2,11.2,77777,9,999999999,370,0.2040,0,88,0.110,0.0,99.0 +1991,6,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101200,0,0,413,0,0,0,0,0,0,0,290,1.0,9,8,11.2,77777,9,999999999,370,0.2040,0,88,0.110,999.0,99.0 +1991,6,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101300,21,542,411,3,0,3,0,0,0,0,300,2.1,9,7,11.2,7500,9,999999999,370,0.2040,0,88,0.110,999.0,99.0 +1991,6,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.3,87,101300,246,1328,431,62,10,60,6900,300,6900,2090,270,1.5,10,9,11.2,7500,9,999999999,370,0.2040,0,88,0.110,0.0,6.0 +1991,6,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.3,77,101300,525,1328,427,187,77,156,20500,7400,17500,4380,260,1.5,9,7,11.2,7500,9,999999999,370,0.2040,0,88,0.110,999.0,99.0 +1991,6,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.8,72,101300,785,1328,436,372,101,312,40800,10300,34700,9570,250,2.6,9,8,11.2,7500,9,999999999,379,0.2040,0,88,0.110,999.0,99.0 +1991,6,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,22.2,65,101300,1008,1328,435,618,145,508,67900,15200,56300,17490,270,3.1,9,7,11.2,7500,9,999999999,379,0.2040,0,88,0.110,0.0,99.0 +1991,6,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,22.2,61,101300,1178,1328,449,471,168,321,52600,18000,36600,14600,270,3.1,9,8,11.2,7500,9,999999999,379,0.2040,0,88,0.110,999.0,99.0 +1991,6,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.1,55,101300,1284,1328,443,671,295,385,74500,32100,43400,29080,280,3.6,9,7,11.2,7500,9,999999999,379,0.2040,0,88,0.110,999.0,99.0 +1991,6,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,21.7,57,101300,1318,1328,451,587,90,497,64800,9300,55600,38230,300,3.6,9,8,11.2,7500,9,999999999,379,0.2040,0,88,0.110,0.0,6.0 +1991,6,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.1,57,101200,1279,1328,440,741,444,313,81100,46600,36100,26370,320,3.1,9,7,11.2,7500,9,999999999,379,0.2040,0,88,0.110,999.0,99.0 +1991,6,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,20.6,55,101200,1168,1328,447,547,150,414,60100,16000,46000,18380,300,4.1,9,8,11.2,77777,9,999999999,379,0.2040,0,88,0.110,999.0,99.0 +1991,6,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,20.6,55,101200,994,1328,440,314,128,218,35400,13700,25100,7100,290,3.1,9,7,11.2,77777,9,999999999,379,0.2040,0,88,0.110,0.0,99.0 +1991,6,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.1,59,101200,769,1328,444,355,215,231,39100,22500,26000,6120,290,3.1,9,8,11.2,77777,9,999999999,390,0.2040,0,88,0.110,999.0,99.0 +1991,6,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,21.1,63,101100,507,1328,431,157,106,116,17400,10400,13400,2690,280,3.6,9,7,11.2,77777,9,999999999,390,0.2040,0,88,0.110,999.0,99.0 +1991,6,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.1,67,101100,227,1328,409,73,88,58,8000,6400,6900,1240,280,3.6,3,3,11.2,77777,9,999999999,390,0.2040,0,88,0.110,0.0,6.0 +1991,6,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.7,74,101200,15,454,400,2,0,2,0,0,0,0,280,3.6,2,2,11.2,77777,9,999999999,390,0.2040,0,88,0.110,999.0,99.0 +1991,6,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.7,77,101200,0,0,401,0,0,0,0,0,0,0,270,2.6,3,3,11.2,77777,9,999999999,390,0.2040,0,88,0.110,999.0,99.0 +1991,6,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,22.8,82,101300,0,0,417,0,0,0,0,0,0,0,280,2.6,9,7,11.2,900,9,999999999,390,0.2040,0,88,0.110,0.0,99.0 +1991,6,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.7,79,101300,0,0,398,0,0,0,0,0,0,0,250,2.6,3,3,11.2,77777,9,999999999,390,0.2040,0,88,0.110,999.0,99.0 +1991,6,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101200,0,0,395,0,0,0,0,0,0,0,260,3.6,2,2,11.2,77777,9,999999999,400,0.2040,0,88,0.110,999.0,99.0 +1991,6,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.7,82,101200,0,0,391,0,0,0,0,0,0,0,250,2.1,2,2,11.2,77777,9,999999999,400,0.2050,0,88,0.110,4.0,6.0 +1991,6,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.7,82,101100,0,0,425,0,0,0,0,0,0,0,260,2.6,9,9,11.2,7500,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101100,0,0,432,0,0,0,0,0,0,0,260,3.6,9,9,11.2,3600,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,21.7,79,101100,0,0,428,0,0,0,0,0,0,0,270,2.1,9,9,11.2,3600,9,999999999,400,0.2050,0,88,0.110,0.0,99.0 +1991,6,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.7,79,101100,0,0,428,0,0,0,0,0,0,0,270,2.6,9,9,11.2,3600,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.7,79,101200,21,542,398,4,8,3,0,0,0,0,280,2.1,3,3,11.2,77777,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.7,72,101200,246,1328,403,98,237,54,10300,17200,7100,970,270,3.6,2,2,11.2,77777,9,999999999,400,0.2050,0,88,0.110,0.0,6.0 +1991,6,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,21.1,67,101200,525,1328,440,92,26,82,10200,2500,9200,2540,270,4.6,9,9,11.2,77777,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,21.1,63,101200,785,1328,447,183,50,153,20200,5000,17200,5330,290,4.6,9,9,11.2,77777,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,21.7,61,101300,1008,1328,454,467,122,374,51000,12900,41100,12410,280,4.1,9,9,11.2,77777,9,999999999,400,0.2050,0,88,0.110,0.0,99.0 +1991,6,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.1,57,101200,1178,1328,457,373,88,294,41900,9500,33500,13370,290,3.1,9,9,11.2,77777,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,20.0,52,101200,1284,1328,459,811,298,522,88000,32300,56700,40310,280,4.1,9,9,11.2,7500,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.0,52,101200,1318,1328,422,886,713,178,94700,72200,22800,21910,270,4.1,2,2,11.2,77777,9,999999999,400,0.2050,0,88,0.110,0.0,6.0 +1991,6,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,20.6,54,101100,1279,1328,459,708,94,617,78000,9800,68500,35470,260,3.6,9,9,11.2,7500,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.7,57,101100,1169,1328,461,323,118,218,36900,12800,25600,9690,270,3.6,9,9,11.2,7500,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,21.7,61,101000,995,1328,454,336,67,286,37100,6800,32000,11000,270,4.6,9,9,11.2,1110,9,999999999,400,0.2050,0,88,0.110,0.0,99.0 +1991,6,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.7,61,101000,770,1328,454,354,150,267,38600,15600,29500,7080,280,4.6,9,9,11.2,1110,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.8,70,101000,508,1328,449,180,41,165,19800,3900,18300,4500,280,3.1,9,9,11.2,7500,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.7,69,101100,229,1328,441,51,34,45,5600,2600,5100,1170,280,3.6,9,9,11.2,7500,9,999999999,400,0.2050,0,88,0.110,0.0,6.0 +1991,6,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.2,74,101100,15,476,438,2,0,2,0,0,0,0,270,3.1,9,9,11.2,77777,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.2,76,101100,0,0,401,0,0,0,0,0,0,0,270,3.1,2,2,11.2,77777,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,22.2,76,101200,0,0,405,0,0,0,0,0,0,0,250,3.1,3,3,11.2,77777,9,999999999,400,0.2050,0,88,0.110,0.0,99.0 +1991,6,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.7,74,101100,0,0,400,0,0,0,0,0,0,0,260,3.6,2,2,11.2,77777,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101100,0,0,402,0,0,0,0,0,0,0,260,3.1,3,3,11.2,77777,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.8,82,101100,0,0,402,0,0,0,0,0,0,0,260,3.1,3,3,11.2,77777,9,999999999,390,0.2050,0,88,0.110,0.0,6.0 +1991,6,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101100,0,0,395,0,0,0,0,0,0,0,260,2.6,2,2,11.2,77777,9,999999999,390,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101100,0,0,396,0,0,0,0,0,0,0,260,2.6,3,3,11.2,77777,9,999999999,390,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,22.8,82,101100,0,0,398,0,0,0,0,0,0,0,270,3.1,2,2,11.2,77777,9,999999999,390,0.2050,0,88,0.110,0.0,99.0 +1991,6,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101100,0,0,400,0,0,0,0,0,0,0,260,3.6,3,3,11.2,77777,9,999999999,390,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.1,76,101100,22,542,407,4,1,4,0,0,0,0,280,6.7,9,6,11.2,7500,9,999999999,390,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.2,76,101200,247,1327,415,61,51,52,6800,3900,6100,1110,260,2.6,9,6,11.2,3000,9,999999999,390,0.2050,0,88,0.110,0.0,6.0 +1991,6,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.8,74,101200,525,1327,422,244,146,186,26300,14300,20700,4350,270,2.1,9,6,11.2,7500,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.3,77,101100,785,1327,422,374,243,230,40400,25800,25200,5600,240,4.1,9,6,11.2,3000,9,999999999,400,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,23.3,67,101100,1007,1327,420,701,702,168,75000,71800,20400,5420,240,2.1,2,2,11.2,77777,9,999999999,400,0.2050,0,88,0.110,0.0,99.0 +1991,6,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.0,55,101100,1177,1327,430,777,564,276,81600,56900,31000,13550,350,2.1,9,6,11.2,7500,9,999999999,409,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.2,74,101100,1283,1327,418,912,669,264,97200,68100,31100,22580,230,3.6,9,6,11.2,7500,9,999999999,409,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,23.3,72,101100,1318,1327,429,903,680,227,97600,69800,28100,29310,250,4.6,9,6,11.2,3000,9,999999999,409,0.2050,0,88,0.110,0.0,6.0 +1991,6,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.2,65,101100,1279,1327,430,762,512,268,81100,52100,30800,22190,260,4.1,9,6,11.2,7500,9,999999999,419,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.9,70,101000,1169,1327,425,862,716,231,91800,73000,27300,11180,290,2.6,3,3,11.2,77777,9,999999999,419,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,22.8,68,101000,996,1327,431,504,348,243,54400,36300,27200,7600,300,2.6,9,6,11.2,7500,9,999999999,419,0.2050,0,88,0.110,0.0,99.0 +1991,6,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.8,65,100900,771,1327,434,358,323,170,38600,33100,19300,3860,300,2.1,9,6,11.2,3600,9,999999999,430,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.2,67,100900,510,1327,427,202,117,157,22000,11400,17600,3650,270,2.6,9,6,11.2,3600,9,999999999,430,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,22.2,72,100900,231,1327,421,58,51,50,6500,3800,5900,1070,280,2.6,9,6,11.2,77777,9,999999999,430,0.2050,0,88,0.110,0.0,6.0 +1991,6,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101000,16,476,396,2,5,2,0,0,0,0,290,2.6,2,2,11.2,77777,9,999999999,440,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.8,79,101000,0,0,427,0,0,0,0,0,0,0,250,1.5,10,8,11.2,3600,9,999999999,440,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,23.3,82,101100,0,0,402,0,0,0,0,0,0,0,270,2.1,2,2,11.2,77777,9,999999999,440,0.2050,0,88,0.110,0.0,99.0 +1991,6,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,101100,0,0,418,0,0,0,0,0,0,0,280,3.1,9,6,11.2,3300,9,999999999,450,0.2050,0,88,0.110,999.0,99.0 +1991,6,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.3,82,101000,0,0,416,0,0,0,0,0,0,0,300,3.1,9,6,11.2,3300,9,999999999,450,0.2050,0,88,0.110,999.0,99.0 +1991,6,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.3,85,101000,0,0,413,0,0,0,0,0,0,0,260,2.6,9,6,11.2,3300,9,999999999,450,0.2060,0,88,0.110,0.0,6.0 +1991,6,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101000,0,0,400,0,0,0,0,0,0,0,260,2.6,3,3,11.2,77777,9,999999999,459,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101000,0,0,417,0,0,0,0,0,0,0,280,2.6,9,6,11.2,2100,9,999999999,459,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,21.1,76,101000,0,0,419,0,0,0,0,0,0,0,50,4.6,10,8,11.2,630,9,999999999,459,0.2060,0,88,0.110,0.0,99.0 +1991,6,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.7,91,100900,0,0,400,0,0,0,0,0,0,0,100,1.0,10,7,11.2,2100,9,999999999,469,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.7,88,100900,22,564,410,4,1,3,300,0,300,80,130,3.6,10,8,9.6,4500,9,999999999,469,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.8,88,100900,247,1327,411,62,63,50,6900,4800,6000,1070,230,3.1,10,7,11.2,3600,9,999999999,480,0.2060,0,88,0.110,1.0,6.0 +1991,6,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.8,82,101000,525,1327,424,196,170,128,21100,16800,14500,2580,280,2.1,10,8,11.2,3600,9,999999999,469,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,101000,784,1327,418,423,305,242,45500,32400,26400,5950,260,2.1,9,6,11.2,3600,9,999999999,469,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,21.7,67,101000,1007,1327,435,420,298,193,46400,31200,22700,6080,270,4.1,10,8,11.2,2700,9,999999999,469,0.2060,0,88,0.110,0.0,99.0 +1991,6,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101100,1177,1327,431,740,448,342,79200,46800,37500,17430,290,3.6,9,6,11.2,2700,9,999999999,469,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.9,70,101000,1283,1327,436,772,417,368,83100,43600,40800,32410,300,3.6,9,6,11.2,7500,9,999999999,469,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.7,59,101000,1318,1327,436,554,170,385,62000,18200,43900,37520,300,4.1,9,6,11.2,7500,9,999999999,469,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.7,57,100900,1279,1327,451,777,345,444,85400,37500,49100,33060,320,5.1,10,8,11.2,7500,9,999999999,469,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.8,59,100900,1170,1327,429,820,737,170,86500,74300,20800,7690,310,4.1,2,2,11.2,77777,9,999999999,469,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.7,22.2,57,100900,997,1327,433,631,624,161,67500,63900,19400,5110,330,2.1,3,3,11.2,77777,9,999999999,469,0.2060,0,88,0.110,0.0,99.0 +1991,6,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.8,65,100800,772,1327,420,523,703,114,55900,71000,14500,2710,310,3.1,2,2,11.2,77777,9,999999999,469,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.3,67,100900,511,1327,435,177,139,124,19600,13600,14400,2880,320,3.1,9,6,11.2,77777,9,999999999,469,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,23.9,74,101000,233,1327,429,70,97,53,7700,7200,6500,1130,290,2.1,9,6,11.2,3000,9,999999999,469,0.2060,0,88,0.110,0.0,6.0 +1991,6,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101000,17,498,420,3,1,3,0,0,0,0,250,2.1,9,6,11.2,7500,9,999999999,459,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101000,0,0,420,0,0,0,0,0,0,0,250,2.1,9,6,11.2,7500,9,999999999,459,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.7,85,101200,0,0,413,0,0,0,0,0,0,0,40,5.1,10,8,8.0,900,9,999999999,459,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,101100,0,0,398,0,0,0,0,0,0,0,70,3.6,9,6,9.6,3300,9,999999999,459,0.2060,0,88,0.110,999.0,99.0 +1991,6,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101000,0,0,396,0,0,0,0,0,0,0,70,2.1,9,6,9.6,3300,9,999999999,459,0.2060,0,88,0.110,999.0,99.0 +1991,6,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,22.2,94,101000,0,0,393,0,0,0,0,0,0,0,90,0.5,9,5,11.2,3300,9,999999999,459,0.2070,0,88,0.110,5.0,6.0 +1991,6,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.7,91,101000,0,0,392,0,0,0,0,0,0,0,130,4.6,9,5,11.2,7500,9,999999999,459,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,101000,0,0,391,0,0,0,0,0,0,0,180,4.6,9,5,11.2,7500,9,999999999,459,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,22.8,21.7,94,101000,0,0,390,0,0,0,0,0,0,0,210,1.5,9,5,11.2,7500,9,999999999,459,0.2070,0,88,0.110,0.0,99.0 +1991,6,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.7,91,101000,0,0,392,0,0,0,0,0,0,0,20,1.0,9,5,11.2,3300,9,999999999,459,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101100,22,564,401,6,0,6,700,0,700,230,20,2.1,10,7,4.8,3300,9,999999999,459,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.2,90,101200,247,1326,411,64,48,55,7100,3700,6400,1180,20,2.1,10,8,4.8,3300,9,999999999,459,0.2070,0,88,0.110,0.0,6.0 +1991,6,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101200,525,1326,407,205,138,150,22400,13600,17000,3510,50,4.1,10,7,4.0,120,9,999999999,450,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.8,79,101300,784,1326,427,440,110,375,48200,11300,41500,10880,40,4.1,10,8,11.2,7500,9,999999999,450,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,22.8,74,101300,1007,1326,427,471,199,320,52000,21200,35900,10610,50,5.1,10,7,9.6,3000,9,999999999,450,0.2070,0,88,0.110,0.0,99.0 +1991,6,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.7,72,101300,1177,1326,429,663,234,455,72600,24900,50500,20700,40,6.2,10,8,11.2,540,9,999999999,450,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.2,72,101200,1283,1326,426,761,379,394,84400,41300,44400,29870,50,6.2,10,7,11.2,3000,9,999999999,450,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.6,67,101200,1318,1326,427,697,240,458,76700,26100,50700,51380,40,8.2,10,8,11.2,1050,9,999999999,450,0.2070,0,88,0.110,0.0,6.0 +1991,6,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,19.4,64,101200,1280,1326,416,829,554,295,87700,56100,33500,24490,40,8.2,10,7,11.2,1050,9,999999999,450,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,19.4,62,101200,1170,1326,410,747,487,317,80500,50900,35500,15740,60,10.3,9,5,11.2,7500,9,999999999,450,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,19.4,64,101300,998,1326,416,536,279,326,58200,30200,35500,10320,60,10.3,10,7,11.2,1500,9,999999999,450,0.2070,0,88,0.110,0.0,99.0 +1991,6,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.6,72,101300,773,1326,421,360,146,274,39100,15200,30200,7290,60,7.2,10,8,11.2,1500,9,999999999,450,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,101400,513,1326,407,146,102,107,16300,10000,12500,2490,60,10.3,10,7,11.2,1500,9,999999999,440,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.6,82,101400,235,1326,409,72,14,69,7900,400,7800,2240,20,4.1,10,8,11.2,2100,9,999999999,440,0.2070,0,88,0.110,0.0,6.0 +1991,6,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,21.1,90,101500,18,497,397,3,0,3,0,0,0,0,40,7.7,10,7,9.6,900,9,999999999,440,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.6,87,101500,0,0,403,0,0,0,0,0,0,0,30,8.2,10,8,9.6,2100,9,999999999,440,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.0,84,101500,0,0,396,0,0,0,0,0,0,0,30,7.2,10,7,11.2,2400,9,999999999,440,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.3,79,101600,0,0,396,0,0,0,0,0,0,0,10,4.1,10,8,11.2,2700,9,999999999,440,0.2070,0,88,0.110,999.0,99.0 +1991,6,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,16.1,70,101500,0,0,377,0,0,0,0,0,0,0,20,3.6,9,5,11.2,3000,9,999999999,440,0.2070,0,88,0.110,999.0,99.0 +1991,6,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.1,70,101500,0,0,368,0,0,0,0,0,0,0,30,4.6,2,2,11.2,77777,9,999999999,440,0.2080,0,88,0.110,6.0,6.0 +1991,6,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.6,16.7,78,101400,0,0,367,0,0,0,0,0,0,0,10,3.6,3,3,11.2,77777,9,999999999,440,0.2080,0,88,0.110,999.0,99.0 +1991,6,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.7,76,101400,0,0,365,0,0,0,0,0,0,0,20,4.1,2,2,11.2,77777,9,999999999,430,0.2080,0,88,0.110,999.0,99.0 +1991,6,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,21.1,17.2,78,101400,0,0,389,0,0,0,0,0,0,0,10,4.1,9,8,11.2,2700,9,999999999,430,0.2080,0,88,0.110,0.0,99.0 +1991,6,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.8,81,101400,0,0,367,0,0,0,0,0,0,0,20,3.1,2,2,11.2,77777,9,999999999,430,0.2080,0,88,0.110,999.0,99.0 +1991,6,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.3,84,101400,22,564,399,5,0,5,600,0,600,190,20,3.6,10,9,11.2,77777,9,999999999,430,0.2080,0,88,0.110,999.0,99.0 +1991,6,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.3,76,101500,247,1326,408,48,19,44,5200,1500,5000,1170,20,3.6,10,9,11.2,77777,9,999999999,430,0.2080,0,88,0.110,6.0,6.0 +1991,6,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,18.9,74,101500,525,1326,406,280,92,244,30600,9000,27000,6020,20,4.1,9,8,11.2,77777,9,999999999,430,0.2080,0,88,0.110,999.0,99.0 +1991,6,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,20.0,67,101500,784,1326,417,288,211,163,32000,22500,18600,3760,20,4.6,9,7,11.2,77777,9,999999999,430,0.2080,0,88,0.110,999.0,99.0 +1991,6,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,20.6,67,101500,1006,1326,427,497,185,357,54500,19600,39600,11840,50,3.1,9,8,11.2,77777,9,999999999,419,0.2080,0,88,0.110,0.0,99.0 +1991,6,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,18.3,55,101500,1176,1326,405,824,751,158,87700,76000,20200,7450,60,3.6,2,2,11.2,77777,9,999999999,419,0.2080,0,88,0.110,999.0,99.0 +1991,6,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,18.9,51,101500,1282,1326,419,922,699,246,98800,71400,29600,21130,280,2.1,3,3,11.2,77777,9,999999999,419,0.2080,0,88,0.110,999.0,99.0 +1991,6,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,17.2,43,101500,1318,1326,418,981,810,176,105000,82000,23200,22160,330,3.1,2,2,11.2,77777,9,999999999,419,0.2080,0,88,0.110,0.0,6.0 +1991,6,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,16.7,46,101400,1280,1326,413,808,536,291,85600,54300,33100,24260,290,3.6,3,3,11.2,77777,9,999999999,419,0.2080,0,88,0.110,999.0,99.0 +1991,6,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,17.8,46,101400,1171,1326,416,844,737,193,91000,75700,24000,9530,300,3.1,2,2,11.2,77777,9,999999999,409,0.2080,0,88,0.110,999.0,99.0 +1991,6,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.7,16.1,39,101300,998,1326,424,620,599,169,66200,61200,20100,5370,310,5.1,3,3,11.2,77777,9,999999999,409,0.2080,0,88,0.110,0.0,99.0 +1991,6,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,20.0,53,101300,775,1326,419,389,468,115,41500,47300,13800,2740,20,3.1,2,2,11.2,77777,9,999999999,409,0.2080,0,88,0.110,999.0,99.0 +1991,6,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,21.1,63,101400,514,1326,415,306,495,114,32600,47200,14200,2190,30,6.2,3,3,11.2,77777,9,999999999,409,0.2080,0,88,0.110,999.0,99.0 +1991,6,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.6,67,101500,237,1326,420,64,36,58,7100,2800,6600,1460,40,5.1,9,7,11.2,77777,9,999999999,409,0.2080,0,88,0.110,0.0,6.0 +1991,6,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,20.6,74,101500,18,497,418,4,1,4,0,0,0,0,30,5.1,9,8,11.2,1050,9,999999999,400,0.2080,0,88,0.110,999.0,99.0 +1991,6,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.6,79,101600,0,0,420,0,0,0,0,0,0,0,20,6.2,10,9,11.2,900,9,999999999,400,0.2080,0,88,0.110,999.0,99.0 +1991,6,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,20.0,79,101700,0,0,408,0,0,0,0,0,0,0,40,6.7,9,8,11.2,1800,9,999999999,400,0.2080,0,88,0.110,0.0,99.0 +1991,6,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.0,79,101700,0,0,384,0,0,0,0,0,0,0,50,7.7,2,2,11.2,77777,9,999999999,400,0.2080,0,88,0.110,999.0,99.0 +1991,6,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,19.4,76,101600,0,0,387,0,0,0,0,0,0,0,50,7.7,3,3,11.2,77777,9,999999999,390,0.2080,0,88,0.110,999.0,99.0 +1991,6,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,101600,0,0,371,0,0,0,0,0,0,0,50,5.1,0,0,11.2,77777,9,999999999,390,0.2090,0,88,0.110,0.0,6.0 +1991,6,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,101500,0,0,368,0,0,0,0,0,0,0,50,6.2,0,0,11.2,77777,9,999999999,390,0.2090,0,88,0.110,999.0,99.0 +1991,6,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.9,76,101500,0,0,367,0,0,0,0,0,0,0,50,6.2,0,0,11.2,77777,9,999999999,390,0.2090,0,88,0.110,999.0,99.0 +1991,6,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,22.8,18.9,79,101500,0,0,372,0,0,0,0,0,0,0,30,3.6,2,1,11.2,77777,9,999999999,390,0.2090,0,88,0.110,0.0,99.0 +1991,6,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.9,82,101500,0,0,369,0,0,0,0,0,0,0,30,3.6,3,1,11.2,77777,9,999999999,379,0.2090,0,88,0.110,999.0,99.0 +1991,6,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.9,82,101600,22,563,369,5,24,4,600,800,600,70,30,3.6,2,1,11.2,77777,9,999999999,379,0.2090,0,88,0.110,999.0,99.0 +1991,6,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,101700,247,1326,374,107,328,46,11000,24400,6500,830,40,5.1,3,1,11.2,77777,9,999999999,379,0.2090,0,88,0.110,0.0,6.0 +1991,6,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.4,71,101700,525,1326,383,281,532,71,29900,50900,9800,1450,40,6.2,2,1,11.2,77777,9,999999999,379,0.2090,0,88,0.110,999.0,99.0 +1991,6,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,19.4,62,101800,783,1326,395,478,611,117,51100,61800,14500,2810,50,6.7,3,1,11.2,77777,9,999999999,379,0.2090,0,88,0.110,999.0,99.0 +1991,6,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,19.4,55,101800,1006,1326,406,691,757,117,74200,76800,15900,3680,60,7.2,2,1,11.2,77777,9,999999999,379,0.2090,0,88,0.110,0.0,99.0 +1991,6,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,19.4,53,101800,1176,1326,410,800,725,157,85200,73400,20000,7410,60,7.2,3,1,11.2,77777,9,999999999,379,0.2090,0,88,0.110,999.0,99.0 +1991,6,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,18.9,50,101800,1282,1326,429,648,400,260,72200,42000,31400,22720,60,6.2,9,5,11.2,1050,9,999999999,379,0.2090,0,88,0.110,999.0,99.0 +1991,6,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,20.6,50,101700,1318,1326,440,834,528,308,91800,55400,36600,41480,50,6.2,9,5,11.2,1050,9,999999999,390,0.2090,0,88,0.110,0.0,6.0 +1991,6,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,18.9,48,101700,1280,1326,431,794,548,265,84600,55800,30700,22270,50,6.7,9,5,11.2,1500,9,999999999,390,0.2090,0,88,0.110,999.0,99.0 +1991,6,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,18.3,44,101600,1171,1326,420,864,829,131,88800,83000,15300,5040,60,7.2,3,1,11.2,77777,9,999999999,390,0.2090,0,88,0.110,999.0,99.0 +1991,6,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.7,18.3,45,101600,999,1326,417,719,805,112,74400,80400,13700,2870,60,6.2,2,1,11.2,77777,9,999999999,390,0.2090,0,88,0.110,0.0,99.0 +1991,6,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,17.8,44,101500,776,1326,417,481,636,109,51600,64400,13800,2610,70,6.2,3,1,11.2,77777,9,999999999,390,0.2090,0,88,0.110,999.0,99.0 +1991,6,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,17.8,45,101600,516,1326,414,301,563,82,31600,53400,10800,1630,50,6.2,2,1,11.2,77777,9,999999999,390,0.2090,0,88,0.110,999.0,99.0 +1991,6,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,17.2,48,101600,238,1326,404,100,315,44,10300,23100,6200,800,70,4.1,3,1,11.2,77777,9,999999999,390,0.2090,0,88,0.110,0.0,6.0 +1991,6,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,17.2,51,101700,19,519,398,4,22,3,0,0,0,0,90,4.1,2,1,11.2,77777,9,999999999,390,0.2090,0,88,0.110,999.0,99.0 +1991,6,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,17.2,56,101800,0,0,389,0,0,0,0,0,0,0,80,5.1,3,1,11.2,77777,9,999999999,390,0.2090,0,88,0.110,999.0,99.0 +1991,6,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,17.8,60,101900,0,0,387,0,0,0,0,0,0,0,90,5.1,2,1,11.2,77777,9,999999999,390,0.2090,0,88,0.110,0.0,99.0 +1991,6,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,18.9,67,101900,0,0,379,0,0,0,0,0,0,0,70,5.1,0,0,11.2,77777,9,999999999,390,0.2090,0,88,0.110,999.0,99.0 +1991,6,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.9,71,101900,0,0,380,0,0,0,0,0,0,0,70,4.1,2,1,11.2,77777,9,999999999,400,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,101900,0,0,382,0,0,0,0,0,0,0,60,3.6,2,2,11.2,77777,9,999999999,400,0.2090,0,88,0.110,0.0,6.0 +1991,6,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,19.4,76,101800,0,0,387,0,0,0,0,0,0,0,60,4.1,3,3,11.2,77777,9,999999999,400,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,19.4,76,101700,0,0,383,0,0,0,0,0,0,0,50,4.6,2,2,11.2,77777,9,999999999,400,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,19.4,79,101800,0,0,383,0,0,0,0,0,0,0,40,3.6,3,3,11.2,77777,9,999999999,400,0.2090,0,88,0.110,0.0,99.0 +1991,6,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,20.0,84,101800,0,0,378,0,0,0,0,0,0,0,40,4.1,2,2,11.2,77777,9,999999999,400,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.0,82,101800,22,563,384,4,10,4,500,300,500,60,50,4.6,3,3,11.2,77777,9,999999999,400,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,101900,247,1325,385,107,301,51,11300,21900,7300,910,60,5.1,2,2,11.2,77777,9,999999999,400,0.2090,0,88,0.110,0.0,6.0 +1991,6,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.4,71,102000,524,1325,392,299,424,131,31400,40600,15400,2560,60,6.2,3,3,11.2,77777,9,999999999,400,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,19.4,59,102000,783,1325,406,487,533,172,52600,54700,20200,3960,70,7.2,2,2,11.2,77777,9,999999999,400,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,19.4,55,102000,1005,1325,416,698,713,157,75000,73100,19400,5090,70,5.1,3,3,11.2,77777,9,999999999,400,0.2090,0,88,0.110,0.0,99.0 +1991,6,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,18.3,48,102000,1175,1325,417,808,685,200,86900,70300,24400,10040,60,6.7,2,2,11.2,77777,9,999999999,390,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,17.2,42,102000,1282,1325,426,914,702,235,98300,71900,28600,20210,70,5.7,3,3,11.2,77777,9,999999999,390,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,16.7,40,101900,1317,1325,424,1016,840,181,108400,85000,23700,22940,60,5.1,2,2,11.2,77777,9,999999999,390,0.2090,0,88,0.110,0.0,6.0 +1991,6,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,16.7,37,101900,1280,1325,467,441,135,310,49800,14500,35800,21170,60,5.7,9,9,11.2,2400,9,999999999,390,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,16.1,36,101900,1172,1325,429,822,698,204,88200,71600,24800,10090,40,4.6,2,2,11.2,77777,9,999999999,379,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.2,16.1,38,101800,1000,1325,460,438,84,374,48200,8700,41600,13810,40,5.1,9,9,11.2,7500,9,999999999,379,0.2090,0,88,0.110,0.0,99.0 +1991,6,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,17.2,43,101800,777,1325,455,255,81,207,28100,8100,23300,6880,50,5.7,9,9,11.2,2100,9,999999999,379,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,17.2,45,101800,517,1325,452,159,67,133,17500,6400,15000,3840,80,4.6,9,9,11.2,2400,9,999999999,379,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,18.3,51,101900,240,1325,446,48,17,45,5300,1300,5000,1190,80,5.1,9,9,11.2,2400,9,999999999,379,0.2090,0,88,0.110,0.0,6.0 +1991,6,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,18.3,55,102000,20,519,440,3,0,3,0,0,0,0,80,6.2,9,9,11.2,2400,9,999999999,370,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,17.8,56,102000,0,0,398,0,0,0,0,0,0,0,80,5.1,2,2,11.2,77777,9,999999999,370,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,17.8,58,102100,0,0,399,0,0,0,0,0,0,0,70,5.7,3,3,11.2,77777,9,999999999,370,0.2090,0,88,0.110,0.0,99.0 +1991,6,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,17.8,60,102000,0,0,392,0,0,0,0,0,0,0,80,4.6,2,2,11.2,77777,9,999999999,370,0.2090,0,88,0.110,999.0,99.0 +1991,6,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.3,66,102000,0,0,421,0,0,0,0,0,0,0,70,5.1,9,9,11.2,7500,9,999999999,370,0.2090,0,88,0.110,999.0,99.0 +1991,6,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.3,69,102000,0,0,388,0,0,0,0,0,0,0,60,3.1,3,3,11.2,77777,9,999999999,359,0.2100,0,88,0.110,0.0,6.0 +1991,6,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,18.9,74,101900,0,0,395,0,0,0,0,0,0,0,60,4.1,9,6,11.2,7500,9,999999999,359,0.2100,0,88,0.110,999.0,99.0 +1991,6,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,18.9,74,101900,0,0,386,0,0,0,0,0,0,0,60,3.6,3,3,11.2,77777,9,999999999,359,0.2100,0,88,0.110,999.0,99.0 +1991,6,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,18.9,74,101900,0,0,382,0,0,0,0,0,0,0,60,3.6,2,2,11.2,77777,9,999999999,359,0.2100,0,88,0.110,0.0,99.0 +1991,6,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.3,74,101900,0,0,382,0,0,0,0,0,0,0,50,3.1,3,3,11.2,77777,9,999999999,359,0.2100,0,88,0.110,999.0,99.0 +1991,6,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.9,76,102000,22,563,392,4,0,4,500,0,500,160,50,3.6,9,6,11.2,77777,9,999999999,350,0.2100,0,88,0.110,999.0,99.0 +1991,6,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,19.4,74,101900,247,1325,399,74,49,65,8100,3900,7400,1620,50,4.6,9,6,11.2,77777,9,999999999,350,0.2100,0,88,0.110,0.0,6.0 +1991,6,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,18.9,58,102000,524,1325,417,224,146,166,24300,14300,18700,3880,70,4.6,9,6,11.2,77777,9,999999999,350,0.2100,0,88,0.110,999.0,99.0 +1991,6,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,18.9,58,102000,783,1325,417,368,226,234,39700,24000,25500,5720,70,4.6,9,6,11.2,77777,9,999999999,350,0.2100,0,88,0.110,999.0,99.0 +1991,6,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,18.3,50,102000,1005,1325,414,670,582,229,70100,58600,25600,7120,80,6.2,2,2,11.2,77777,9,999999999,350,0.2100,0,88,0.110,0.0,99.0 +1991,6,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,18.3,48,102000,1175,1325,421,640,402,284,69900,42100,32400,14310,60,5.1,3,3,11.2,77777,9,999999999,350,0.2100,0,88,0.110,999.0,99.0 +1991,6,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,17.2,42,101900,1281,1325,422,892,655,258,95200,66800,30500,22100,100,4.1,2,2,11.2,77777,9,999999999,350,0.2100,0,88,0.110,999.0,99.0 +1991,6,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,16.1,38,101900,1317,1325,427,957,630,330,100700,63400,37500,43330,40,4.1,3,3,11.2,77777,9,999999999,350,0.2100,0,88,0.110,0.0,6.0 +1991,6,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,17.2,38,101800,1280,1325,431,940,663,299,99300,67000,34400,25150,80,5.1,2,2,11.2,77777,9,999999999,350,0.2100,0,88,0.110,999.0,99.0 +1991,6,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,16.1,36,101700,1172,1325,433,679,481,253,74800,50500,30100,12570,70,4.1,3,3,11.2,77777,9,999999999,350,0.2100,0,88,0.110,999.0,99.0 +1991,6,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,33.9,15.6,33,101700,1001,1325,432,646,518,255,69500,54000,28700,8100,70,4.6,2,2,11.2,77777,9,999999999,350,0.2100,0,88,0.110,0.0,99.0 +1991,6,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,17.2,39,101700,778,1325,432,505,431,252,54200,45700,27400,6230,70,5.7,3,3,11.2,77777,9,999999999,350,0.2100,0,88,0.110,999.0,99.0 +1991,6,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,18.9,48,101700,519,1325,421,267,354,129,28200,33800,14900,2510,50,6.2,2,2,11.2,77777,9,999999999,350,0.2100,0,88,0.110,999.0,99.0 +1991,6,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,17.8,48,101800,242,1325,417,88,127,64,9200,9000,7600,1210,60,6.2,3,3,11.2,77777,9,999999999,350,0.2100,0,88,0.110,0.0,6.0 +1991,6,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,17.8,53,101900,20,541,404,3,0,3,0,0,0,0,60,5.1,2,2,11.2,77777,9,999999999,350,0.2100,0,88,0.110,999.0,99.0 +1991,6,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,17.8,56,101900,0,0,402,0,0,0,0,0,0,0,80,5.7,3,3,11.2,77777,9,999999999,350,0.2100,0,88,0.110,999.0,99.0 +1991,6,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,17.2,58,102000,0,0,392,0,0,0,0,0,0,0,70,5.1,2,2,11.2,77777,9,999999999,350,0.2100,0,88,0.110,0.0,99.0 +1991,6,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,17.8,62,102000,0,0,394,0,0,0,0,0,0,0,70,5.1,3,3,11.2,77777,9,999999999,350,0.2100,0,88,0.110,999.0,99.0 +1991,6,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.8,67,102000,0,0,383,0,0,0,0,0,0,0,60,3.6,2,2,11.2,77777,9,999999999,350,0.2100,0,88,0.110,999.0,99.0 +1991,6,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.3,71,102000,0,0,369,0,0,0,0,0,0,0,60,3.6,0,0,11.2,77777,9,999999999,350,0.2110,0,88,0.110,0.0,6.0 +1991,6,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,18.3,71,101900,0,0,369,0,0,0,0,0,0,0,60,3.1,0,0,11.2,77777,9,999999999,350,0.2110,0,88,0.110,999.0,99.0 +1991,6,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.9,76,101800,0,0,367,0,0,0,0,0,0,0,60,3.1,0,0,11.2,77777,9,999999999,350,0.2110,0,88,0.110,999.0,99.0 +1991,6,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,18.9,76,101800,0,0,367,0,0,0,0,0,0,0,60,2.1,0,0,11.2,77777,9,999999999,350,0.2110,0,88,0.110,0.0,99.0 +1991,6,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,18.3,76,101900,0,0,364,0,0,0,0,0,0,0,40,2.1,0,0,11.2,77777,9,999999999,350,0.2110,0,88,0.110,999.0,99.0 +1991,6,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,18.3,79,101900,22,563,377,4,7,4,500,300,500,80,60,1.5,3,3,11.2,77777,9,999999999,350,0.2110,0,88,0.110,999.0,99.0 +1991,6,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,101900,247,1325,379,113,230,70,11900,16600,8800,1340,60,3.1,2,2,11.2,77777,9,999999999,350,0.2110,0,88,0.110,0.0,6.0 +1991,6,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.4,71,101900,523,1325,392,284,448,107,30500,43000,13500,2050,80,5.1,3,3,11.2,77777,9,999999999,350,0.2110,0,88,0.110,999.0,99.0 +1991,6,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,17.2,53,101900,782,1325,388,533,698,121,56800,70500,15100,2890,70,5.1,0,0,11.2,77777,9,999999999,350,0.2110,0,88,0.110,999.0,99.0 +1991,6,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,17.2,48,102000,1004,1325,413,666,620,195,70400,63000,22500,6180,70,4.1,3,3,11.2,77777,9,999999999,350,0.2110,0,88,0.110,0.0,99.0 +1991,6,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,17.2,46,101900,1174,1325,412,821,729,174,86400,73400,21100,8020,60,3.1,2,2,11.2,77777,9,999999999,350,0.2110,0,88,0.110,999.0,99.0 +1991,6,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,16.7,45,101900,1281,1325,416,864,670,215,93400,68900,26600,18530,80,3.1,3,3,11.2,77777,9,999999999,350,0.2110,0,88,0.110,999.0,99.0 +1991,6,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,16.7,42,101800,1317,1325,418,906,629,280,96500,64000,32800,37090,90,1.0,2,2,11.2,77777,9,999999999,350,0.2110,0,88,0.110,0.0,6.0 +1991,6,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,15.0,36,101800,1280,1325,423,593,362,243,66600,38100,29700,21020,30,1.0,3,3,11.2,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1991,6,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,15.0,35,101700,1172,1325,422,868,812,150,92900,82300,19900,7080,60,2.6,2,2,11.2,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1991,6,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.2,15.6,37,101600,1001,1325,427,689,687,170,73700,70200,20500,5440,30,1.5,3,3,11.2,77777,9,999999999,359,0.2110,0,88,0.110,0.0,99.0 +1991,6,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,16.7,37,101600,779,1325,430,509,567,175,54800,58100,20600,4020,50,2.1,2,2,11.2,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1991,6,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,16.1,38,101600,520,1325,427,290,420,125,30600,40100,14800,2430,80,3.1,3,3,11.2,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1991,6,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,17.2,45,101600,243,1325,416,88,195,52,9300,14100,6700,930,80,2.6,2,2,11.2,77777,9,999999999,359,0.2110,0,88,0.110,0.0,6.0 +1991,6,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,17.8,51,101600,21,541,411,4,8,3,0,0,0,0,80,2.1,3,3,11.2,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1991,6,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,18.3,56,101700,0,0,402,0,0,0,0,0,0,0,80,3.1,2,2,11.2,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1991,6,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,18.9,62,101800,0,0,401,0,0,0,0,0,0,0,70,4.1,3,3,11.2,77777,9,999999999,359,0.2110,0,88,0.110,0.0,99.0 +1991,6,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,19.4,69,101900,0,0,392,0,0,0,0,0,0,0,80,3.1,2,2,11.2,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1991,6,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,20.0,71,101900,0,0,396,0,0,0,0,0,0,0,70,3.6,3,3,11.2,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1991,6,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,101800,0,0,393,0,0,0,0,0,0,0,70,4.1,3,3,11.2,77777,9,999999999,359,0.2120,0,88,0.110,0.0,6.0 +1991,6,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,101700,0,0,384,0,0,0,0,0,0,0,80,3.1,2,2,11.2,77777,9,999999999,359,0.2120,0,88,0.110,999.0,99.0 +1991,6,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,101700,0,0,388,0,0,0,0,0,0,0,80,2.6,3,3,11.2,77777,9,999999999,359,0.2120,0,88,0.110,999.0,99.0 +1991,6,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,20.0,79,101700,0,0,384,0,0,0,0,0,0,0,80,2.1,2,2,11.2,77777,9,999999999,359,0.2120,0,88,0.110,0.0,99.0 +1991,6,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,101700,0,0,388,0,0,0,0,0,0,0,70,2.6,3,3,11.2,77777,9,999999999,359,0.2120,0,88,0.110,999.0,99.0 +1991,6,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.0,82,101700,22,563,380,4,11,4,500,300,500,60,70,1.5,2,2,11.2,77777,9,999999999,359,0.2120,0,88,0.110,999.0,99.0 +1991,6,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,101800,246,1325,376,111,337,48,11300,25000,6700,860,70,2.1,0,0,11.2,77777,9,999999999,359,0.2120,0,88,0.110,0.0,6.0 +1991,6,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.0,69,101800,523,1325,382,317,596,81,33300,56700,10900,1630,80,4.1,0,0,11.2,77777,9,999999999,359,0.2120,0,88,0.110,999.0,99.0 +1991,6,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.0,61,101900,781,1325,394,537,723,110,56000,71800,13600,2460,80,2.6,0,0,11.2,77777,9,999999999,359,0.2120,0,88,0.110,999.0,99.0 +1991,6,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,18.9,50,101900,1003,1325,418,690,703,157,74100,72100,19400,5080,100,2.6,2,2,11.2,77777,9,999999999,359,0.2120,0,88,0.110,0.0,99.0 +1991,6,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,14.4,36,101900,1174,1325,419,811,653,233,86400,66500,27300,11550,0,0.0,3,3,11.2,77777,9,999999999,359,0.2120,0,88,0.110,999.0,99.0 +1991,6,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,14.4,35,101800,1281,1325,418,934,799,161,100400,81100,21800,13270,270,1.5,2,2,11.2,77777,9,999999999,359,0.2120,0,88,0.110,999.0,99.0 +1991,6,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,15.0,36,101700,1317,1325,423,949,764,189,100800,77100,23900,24140,220,1.5,3,3,11.2,77777,9,999999999,359,0.2120,0,88,0.110,0.0,6.0 +1991,6,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,15.0,35,101700,1280,1325,422,836,579,276,88800,58800,31900,23450,260,2.1,2,2,11.2,77777,9,999999999,350,0.2120,0,88,0.110,999.0,99.0 +1991,6,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,16.1,37,101600,1173,1325,431,834,721,196,89900,74100,24200,9800,240,1.5,3,3,11.2,77777,9,999999999,350,0.2120,0,88,0.110,999.0,99.0 +1991,6,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,33.3,15.0,33,101600,1002,1325,428,683,726,133,72300,73200,16700,4010,250,1.0,2,2,11.2,77777,9,999999999,350,0.2120,0,88,0.110,0.0,99.0 +1991,6,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,15.6,37,101500,780,1325,427,548,677,149,57500,67700,17500,3450,280,1.0,3,3,11.2,77777,9,999999999,350,0.2120,0,88,0.110,999.0,99.0 +1991,6,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,18.3,47,101500,521,1325,420,299,503,101,31000,47400,12300,1950,310,2.6,2,2,11.2,77777,9,999999999,350,0.2120,0,88,0.110,999.0,99.0 +1991,6,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,20.0,57,101600,245,1325,417,102,180,69,10800,12900,8400,1320,310,2.6,3,3,11.2,77777,9,999999999,350,0.2120,0,88,0.110,0.0,6.0 +1991,6,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.1,69,101600,22,541,402,4,13,3,0,0,0,0,320,1.5,2,2,11.2,77777,9,999999999,350,0.2120,0,88,0.110,999.0,99.0 +1991,6,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,18.3,56,101700,0,0,406,0,0,0,0,0,0,0,340,0.5,3,3,11.2,77777,9,999999999,350,0.2120,0,88,0.110,999.0,99.0 +1991,6,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,19.4,60,101700,0,0,390,0,0,0,0,0,0,0,80,4.1,0,0,11.2,77777,9,999999999,340,0.2120,0,88,0.110,0.0,99.0 +1991,6,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,19.4,64,101800,0,0,401,0,0,0,0,0,0,0,90,3.1,3,3,11.2,77777,9,999999999,340,0.2120,0,88,0.110,999.0,99.0 +1991,6,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.0,69,101800,0,0,395,0,0,0,0,0,0,0,80,4.1,2,2,11.2,77777,9,999999999,340,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.6,74,101700,0,0,393,0,0,0,0,0,0,0,80,3.6,2,2,11.2,77777,9,999999999,340,0.2120,0,88,0.110,0.0,6.0 +1991,6,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.1,76,101700,0,0,381,0,0,0,0,0,0,0,80,3.1,0,0,11.2,77777,9,999999999,340,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,101600,0,0,375,0,0,0,0,0,0,0,90,2.1,0,0,11.2,77777,9,999999999,340,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,21.1,84,101700,0,0,373,0,0,0,0,0,0,0,90,2.1,0,0,11.2,77777,9,999999999,340,0.2120,0,88,0.110,0.0,99.0 +1991,6,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,101700,0,0,385,0,0,0,0,0,0,0,100,2.6,2,2,11.2,77777,9,999999999,329,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.7,88,101700,22,563,389,4,10,3,400,300,400,50,100,2.6,3,3,11.2,77777,9,999999999,329,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.2,82,101700,246,1324,395,103,271,53,10900,19600,7200,950,110,2.1,2,2,11.2,77777,9,999999999,329,0.2120,0,88,0.110,0.0,6.0 +1991,6,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.3,77,101800,522,1324,412,289,454,110,31000,43500,13800,2110,130,2.1,3,3,11.2,77777,9,999999999,329,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101900,781,1324,417,519,618,154,54300,61700,17800,3550,150,2.1,2,2,11.2,77777,9,999999999,340,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,18.9,51,101900,1003,1324,419,689,621,219,72300,62700,24700,6830,80,3.1,3,3,11.2,77777,9,999999999,340,0.2120,0,88,0.110,0.0,99.0 +1991,6,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,17.2,43,101800,1173,1324,418,835,743,177,87800,74800,21400,8110,70,2.1,2,2,11.2,77777,9,999999999,340,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,15.0,34,101800,1280,1324,429,946,724,246,101400,74000,29700,21060,0,0.0,3,3,11.2,77777,9,999999999,340,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,15.6,36,101700,1317,1324,426,918,776,146,94000,77800,16400,15830,260,2.1,2,2,11.2,77777,9,999999999,340,0.2120,0,88,0.110,0.0,6.0 +1991,6,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,15.6,33,101700,1280,1324,436,934,753,206,97900,75600,24600,16480,220,2.6,3,3,11.2,77777,9,999999999,340,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,15.6,33,101600,1173,1324,432,832,781,140,89700,79400,19200,6720,260,3.1,2,2,11.2,77777,9,999999999,350,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.8,15.0,34,101600,1003,1324,429,689,643,202,72700,65200,23200,6370,260,3.1,3,3,11.2,77777,9,999999999,350,0.2120,0,88,0.110,0.0,99.0 +1991,6,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,16.7,37,101500,781,1324,430,508,633,134,53700,63700,16000,3160,310,2.1,2,2,11.2,77777,9,999999999,350,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,16.7,41,101500,523,1324,425,313,430,143,32600,41100,16400,2820,0,0.0,3,3,11.2,77777,9,999999999,350,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,16.7,42,101600,246,1324,454,51,21,47,5600,1700,5300,1240,30,1.5,9,9,11.2,7500,9,999999999,350,0.2120,0,88,0.110,0.0,6.0 +1991,6,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,17.8,46,101600,22,563,452,3,1,3,300,0,300,80,50,1.0,9,9,11.2,7500,9,999999999,350,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,18.9,61,101700,0,0,434,0,0,0,0,0,0,0,360,1.5,9,9,11.2,77777,9,999999999,359,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,17.8,58,101700,0,0,430,0,0,0,0,0,0,0,10,0.5,9,9,11.2,77777,9,999999999,359,0.2120,0,88,0.110,0.0,99.0 +1991,6,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.6,67,101800,0,0,436,0,0,0,0,0,0,0,90,3.6,9,9,11.2,77777,9,999999999,359,0.2120,0,88,0.110,999.0,99.0 +1991,6,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.7,77,101800,0,0,431,0,0,0,0,0,0,0,90,2.6,9,9,11.2,77777,9,999999999,359,0.2120,0,88,0.110,999.0,99.0 +1991,6,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.7,77,101800,0,0,422,0,0,0,0,0,0,0,100,2.6,9,8,11.2,77777,9,999999999,359,0.2130,0,88,0.110,0.0,6.0 +1991,6,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101700,0,0,410,0,0,0,0,0,0,0,130,3.6,9,7,11.2,77777,9,999999999,359,0.2130,0,88,0.110,999.0,99.0 +1991,6,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.7,82,101700,0,0,416,0,0,0,0,0,0,0,150,3.1,9,8,11.2,77777,9,999999999,370,0.2130,0,88,0.110,999.0,99.0 +1991,6,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,21.7,82,101700,0,0,410,0,0,0,0,0,0,0,0,0.0,9,7,11.2,77777,9,999999999,370,0.2130,0,88,0.110,0.0,99.0 +1991,6,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101700,0,0,417,0,0,0,0,0,0,0,30,1.0,9,8,11.2,7500,9,999999999,370,0.2130,0,88,0.110,999.0,99.0 +1991,6,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.7,82,101700,22,563,410,4,1,4,500,0,500,160,0,0.0,9,7,11.2,77777,9,999999999,370,0.2130,0,88,0.110,999.0,99.0 +1991,6,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.2,76,101800,245,1324,426,54,52,44,6000,4000,5300,940,70,2.1,9,8,11.2,77777,9,999999999,370,0.2130,0,88,0.110,0.0,6.0 +1991,6,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.2,72,101800,522,1324,426,182,120,134,20000,11800,15300,3130,90,2.1,9,7,11.2,77777,9,999999999,370,0.2130,0,88,0.110,999.0,99.0 +1991,6,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.8,68,101900,780,1324,443,368,114,300,40300,11600,33500,9270,120,3.1,9,8,11.2,77777,9,999999999,379,0.2130,0,88,0.110,999.0,99.0 +1991,6,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,22.2,63,101800,1002,1324,419,689,715,148,72200,71800,17700,4320,130,2.6,2,2,11.2,77777,9,999999999,379,0.2130,0,88,0.110,0.0,99.0 +1991,6,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,21.1,50,101800,1173,1324,437,820,636,257,86700,64500,29500,12610,130,1.5,3,3,11.2,77777,9,999999999,379,0.2130,0,88,0.110,999.0,99.0 +1991,6,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,20.6,50,101800,1280,1324,429,886,699,210,96000,71900,26300,18070,150,1.5,2,2,11.2,77777,9,999999999,379,0.2130,0,88,0.110,999.0,99.0 +1991,6,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,19.4,44,101800,1317,1324,438,928,736,195,98100,74200,24100,24980,0,0.0,3,3,11.2,77777,9,999999999,379,0.2130,0,88,0.110,0.0,6.0 +1991,6,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,19.4,40,101700,1280,1324,443,908,774,159,97800,78600,21500,13150,210,2.1,2,2,11.2,77777,9,999999999,390,0.2130,0,88,0.110,999.0,99.0 +1991,6,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,23.3,56,101700,1174,1324,443,807,651,230,86000,66400,27000,11430,210,4.1,3,3,11.2,77777,9,999999999,390,0.2130,0,88,0.110,999.0,99.0 +1991,6,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,22.8,63,101700,1004,1324,443,596,330,346,64600,35700,37500,11180,320,2.1,9,7,11.2,7500,9,999999999,390,0.2130,0,88,0.110,0.0,99.0 +1991,6,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,22.8,63,101600,782,1324,450,315,237,175,34800,25200,19900,4080,330,4.1,9,8,11.2,7500,9,999999999,390,0.2130,0,88,0.110,999.0,99.0 +1991,6,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.8,72,101600,524,1324,429,205,139,150,22400,13700,17000,3510,270,2.1,9,7,11.2,7500,9,999999999,400,0.2130,0,88,0.110,999.0,99.0 +1991,6,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,22.2,67,101600,248,1324,417,79,150,50,8400,10900,6400,900,280,1.0,3,3,11.2,77777,9,999999999,400,0.2130,0,88,0.110,0.0,6.0 +1991,6,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.2,74,101700,23,563,404,4,17,4,600,400,500,60,0,0.0,2,2,11.2,77777,9,999999999,400,0.2130,0,88,0.110,999.0,99.0 +1991,6,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.8,79,101700,0,0,406,0,0,0,0,0,0,0,300,1.0,3,3,11.2,77777,9,999999999,400,0.2130,0,88,0.110,999.0,99.0 +1991,6,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,23.3,79,101700,0,0,405,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,400,0.2130,0,88,0.110,0.0,99.0 +1991,6,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101800,0,0,386,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,409,0.2130,0,88,0.110,999.0,99.0 +1991,6,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101700,0,0,399,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,409,0.2130,0,88,0.110,999.0,99.0 +1991,6,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,23.3,82,101700,0,0,421,0,0,0,0,0,0,0,10,0.5,9,7,11.2,2400,9,999999999,409,0.2140,0,88,0.110,0.0,6.0 +1991,6,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101700,0,0,400,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,409,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.8,79,101600,0,0,402,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,409,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.3,87,101600,0,0,400,0,0,0,0,0,0,0,120,3.1,3,3,11.2,77777,9,999999999,419,0.2140,0,88,0.110,0.0,99.0 +1991,6,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101600,0,0,396,0,0,0,0,0,0,0,120,2.1,2,2,11.2,77777,9,999999999,419,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101700,22,563,397,4,4,3,0,0,0,0,140,2.1,3,3,11.2,77777,9,999999999,419,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,23.9,82,101800,245,1324,406,90,203,52,9500,14700,6700,930,140,2.6,2,2,11.2,77777,9,999999999,419,0.2140,0,88,0.110,0.0,6.0 +1991,6,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101800,521,1324,416,308,494,113,32800,47300,14200,2170,150,4.1,3,3,11.2,77777,9,999999999,419,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.9,72,101800,779,1324,418,505,498,211,53300,50900,23300,4940,170,2.6,2,2,11.2,77777,9,999999999,430,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,22.8,63,101800,1001,1324,427,679,659,181,72300,67200,21400,5760,180,2.1,3,3,11.2,77777,9,999999999,430,0.2140,0,88,0.110,0.0,99.0 +1991,6,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.2,57,101800,1172,1324,428,791,664,203,85000,68100,24600,10120,210,2.1,2,2,11.2,77777,9,999999999,430,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,21.7,56,101800,1279,1324,432,934,648,306,98400,65400,35000,25870,280,4.1,3,3,11.2,77777,9,999999999,430,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.8,68,101800,1317,1324,416,832,507,327,91100,53200,38100,45080,250,2.1,2,2,11.2,77777,9,999999999,430,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.7,59,101700,1281,1324,448,519,211,314,58500,23000,36100,23580,80,4.1,9,8,11.2,3000,9,999999999,430,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.8,68,101700,1174,1324,436,595,303,326,66100,33000,36800,15050,280,2.6,9,7,11.2,7500,9,999999999,430,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,20.0,59,101600,1004,1324,436,425,169,296,47000,18000,33300,9810,300,1.0,9,8,11.2,7500,9,999999999,440,0.2140,0,88,0.110,0.0,99.0 +1991,6,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.7,59,101600,783,1324,422,517,653,130,54700,65800,15700,3080,280,0.5,2,2,11.2,77777,9,999999999,440,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,22.8,63,101600,525,1324,427,293,423,125,31000,40500,14900,2430,300,1.0,3,3,11.2,77777,9,999999999,440,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.8,72,101600,249,1324,410,86,184,51,9100,13400,6600,910,0,0.0,2,2,11.2,77777,9,999999999,440,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,101600,23,585,408,4,10,4,500,300,500,60,0,0.0,3,3,11.2,77777,9,999999999,440,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,101700,0,0,404,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,440,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,23.3,82,101700,0,0,406,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,450,0.2140,0,88,0.110,0.0,99.0 +1991,6,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101700,0,0,399,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,450,0.2140,0,88,0.110,999.0,99.0 +1991,6,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101700,0,0,409,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,450,0.2140,0,88,0.110,999.0,99.0 +1991,6,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.3,85,101600,0,0,403,0,0,0,0,0,0,0,90,1.0,3,3,11.2,77777,9,999999999,450,0.2150,0,88,0.110,0.0,6.0 +1991,6,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101500,0,0,399,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,450,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101500,0,0,400,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,450,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,22.8,88,101500,0,0,393,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,459,0.2150,0,88,0.110,0.0,99.0 +1991,6,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101600,0,0,393,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101600,21,540,393,4,0,3,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,23.3,79,101700,244,1324,431,74,33,68,8100,2600,7600,1680,0,0.0,9,8,11.2,77777,9,999999999,459,0.2150,0,88,0.110,0.0,6.0 +1991,6,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,23.3,72,101700,520,1324,434,149,69,121,16300,6600,13700,3560,0,0.0,9,7,11.2,77777,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.8,65,101700,779,1324,446,377,199,260,41200,20800,28900,6950,270,0.5,9,8,11.2,77777,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,22.2,65,101700,1001,1324,435,375,86,310,41400,8800,34700,11880,250,1.5,9,7,11.2,77777,9,999999999,459,0.2150,0,88,0.110,0.0,99.0 +1991,6,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.7,57,101700,1171,1324,451,723,353,410,78900,38300,44900,19220,220,2.1,9,8,11.2,77777,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,21.1,52,101600,1279,1324,450,511,143,372,57100,15300,42200,25580,210,2.1,9,7,11.2,77777,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,22.8,59,101600,1316,1324,456,698,320,379,78000,34900,43200,43520,280,4.6,9,8,11.2,4500,9,999999999,459,0.2150,0,88,0.110,0.0,6.0 +1991,6,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.3,67,101600,1281,1324,440,728,347,392,80800,37800,44200,29870,250,1.5,9,7,11.2,7500,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,22.8,56,101500,1175,1324,463,329,117,224,37500,12600,26300,10190,270,2.6,9,8,11.2,7500,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.8,21.7,52,101500,1005,1324,434,654,574,217,68600,58000,24400,6820,270,1.5,2,2,11.2,77777,9,999999999,459,0.2150,0,88,0.110,0.0,99.0 +1991,6,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,21.7,52,101500,784,1324,438,462,399,225,48500,40800,24300,5320,300,1.0,3,3,11.2,77777,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,22.2,61,101500,526,1324,422,286,337,152,30500,33300,17300,3170,260,3.1,2,2,11.2,77777,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.8,65,101400,250,1324,424,87,87,70,9400,6600,8200,1500,270,2.6,3,3,11.2,77777,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.8,74,101500,24,585,408,4,0,4,500,0,500,160,260,2.6,2,2,11.2,77777,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101500,0,0,409,0,0,0,0,0,0,0,270,2.6,3,3,11.2,77777,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,22.8,79,101600,0,0,402,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,469,0.2150,0,88,0.110,0.0,99.0 +1991,6,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.8,82,101600,0,0,386,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1991,6,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.8,82,101600,0,0,398,0,0,0,0,0,0,0,230,0.5,2,2,11.2,77777,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.3,87,101500,0,0,396,0,0,0,0,0,0,0,250,0.5,2,2,11.2,77777,9,999999999,469,0.2150,0,88,0.110,0.0,6.0 +1991,6,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101400,0,0,403,0,0,0,0,0,0,0,220,1.5,3,3,11.2,77777,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101400,0,0,396,0,0,0,0,0,0,0,240,1.0,2,2,11.2,77777,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.3,87,101500,0,0,400,0,0,0,0,0,0,0,240,2.6,3,3,11.2,77777,9,999999999,469,0.2150,0,88,0.110,0.0,99.0 +1991,6,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101500,0,0,396,0,0,0,0,0,0,0,240,1.0,2,2,11.2,77777,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101500,21,540,426,3,1,3,0,0,0,0,0,0.0,9,9,11.2,77777,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,24.4,79,101600,243,1323,448,48,20,45,5400,1600,5100,1190,290,2.6,9,9,11.2,77777,9,999999999,469,0.2150,0,88,0.110,0.0,6.0 +1991,6,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.3,67,101600,519,1323,424,264,391,110,28200,37400,13500,2110,250,1.0,3,3,11.2,77777,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.8,65,101600,778,1323,456,219,133,141,24600,14200,16200,3180,260,2.1,9,9,11.2,7500,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,23.3,63,101600,1000,1323,431,667,553,249,71900,57600,28300,7900,270,1.5,3,3,11.2,77777,9,999999999,480,0.2150,0,88,0.110,0.0,99.0 +1991,6,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.8,59,101600,1171,1323,429,774,586,256,81900,59400,29200,12510,260,0.5,2,2,11.2,77777,9,999999999,480,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,21.7,51,101600,1279,1323,441,947,721,249,101300,73600,30000,21190,300,3.1,3,3,11.2,77777,9,999999999,480,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101600,1316,1323,438,620,121,499,68200,12900,55400,50340,110,2.6,9,9,11.2,1080,9,999999999,490,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.3,63,101500,1281,1323,431,916,697,241,98300,71300,29200,20890,270,1.0,3,3,11.2,77777,9,999999999,490,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,22.2,54,101400,1175,1323,435,811,681,206,87100,69800,25000,10380,320,3.1,2,2,11.2,77777,9,999999999,490,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.8,22.8,56,101400,1006,1323,440,609,571,175,65000,58300,20600,5640,320,2.6,3,3,11.2,77777,9,999999999,490,0.2150,0,88,0.110,0.0,99.0 +1991,6,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,21.7,52,101400,785,1323,434,520,654,132,55100,65900,15900,3130,290,2.6,2,2,11.2,77777,9,999999999,500,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.7,57,101400,527,1323,461,177,40,161,19400,3900,17900,4510,290,2.1,9,9,11.2,77777,9,999999999,500,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,21.7,63,101500,252,1323,451,74,25,69,8100,2000,7700,1710,290,2.6,9,9,11.2,77777,9,999999999,500,0.2150,0,88,0.110,2.0,6.0 +1991,6,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,21.7,69,101500,24,584,410,7,8,6,700,300,700,120,300,2.6,3,3,11.2,77777,9,999999999,509,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.2,74,101600,0,0,404,0,0,0,0,0,0,0,290,1.5,2,2,11.2,77777,9,999999999,509,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,22.2,76,101600,0,0,405,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,509,0.2150,0,88,0.110,0.0,99.0 +1991,6,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101600,0,0,396,0,0,0,0,0,0,0,250,1.0,2,2,11.2,77777,9,999999999,509,0.2150,0,88,0.110,999.0,99.0 +1991,6,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101600,0,0,400,0,0,0,0,0,0,0,240,1.0,3,3,11.2,77777,9,999999999,519,0.2150,0,88,0.110,999.0,99.0 +1991,6,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,101500,0,0,400,0,0,0,0,0,0,0,240,0.5,3,3,11.2,77777,9,999999999,519,0.2160,0,88,0.110,0.0,6.0 +1991,6,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.8,82,101500,0,0,398,0,0,0,0,0,0,0,240,1.0,2,2,11.2,77777,9,999999999,519,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101500,0,0,400,0,0,0,0,0,0,0,240,1.0,3,3,11.2,77777,9,999999999,530,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.3,87,101500,0,0,396,0,0,0,0,0,0,0,240,1.5,2,2,11.2,77777,9,999999999,530,0.2160,0,88,0.110,0.0,99.0 +1991,6,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101500,0,0,400,0,0,0,0,0,0,0,240,1.0,3,3,11.2,77777,9,999999999,530,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101600,21,540,422,3,1,3,0,0,0,0,0,0.0,9,7,11.2,3000,9,999999999,530,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,23.9,79,101600,243,1323,435,54,34,48,6000,2700,5500,1260,220,1.0,9,8,11.2,2400,9,999999999,540,0.2160,0,88,0.110,0.0,6.0 +1991,6,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,24.4,77,101700,519,1323,416,229,232,138,24600,22800,15600,2820,260,1.5,2,2,11.2,77777,9,999999999,540,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101700,777,1323,426,264,43,238,29000,4300,26400,7720,280,2.1,10,9,4.0,630,9,999999999,530,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,23.9,88,101700,999,1323,418,597,250,408,64800,26400,44800,13460,0,0.0,9,7,11.2,7500,9,999999999,530,0.2160,0,88,0.110,0.0,99.0 +1991,6,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,24.4,79,101700,1170,1323,438,557,216,366,61400,23500,40500,16910,0,0.0,9,8,11.2,7500,9,999999999,530,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.2,65,101600,1278,1323,435,709,312,408,78500,34000,45600,30720,0,0.0,9,7,11.2,7500,9,999999999,530,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,24.4,70,101700,1316,1323,452,580,209,372,64900,22800,42200,42790,0,0.0,9,8,11.2,7500,9,999999999,519,0.2160,0,88,0.110,3.0,6.0 +1991,6,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,23.3,100,101700,1281,1323,402,619,286,341,69400,31200,39100,25900,30,5.1,9,7,8.0,900,9,999999999,519,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101600,1175,1323,425,426,118,320,47600,12700,36300,14610,90,3.1,9,8,11.2,2100,9,999999999,519,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101500,1006,1323,415,338,55,296,37300,5600,33000,11500,70,1.0,9,7,11.2,3000,9,999999999,519,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101500,786,1323,429,405,203,284,44000,21200,31400,7630,140,1.0,9,8,11.2,4500,9,999999999,509,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,101500,529,1323,423,227,165,161,24800,16200,18300,3770,0,0.0,9,7,11.2,4500,9,999999999,509,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,22.8,77,101600,253,1323,439,53,13,50,5800,1000,5600,1320,100,1.0,10,9,11.2,3600,9,999999999,509,0.2160,0,88,0.110,21.0,6.0 +1991,6,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101600,25,584,414,4,1,4,500,0,500,160,90,0.5,9,7,11.2,7500,9,999999999,509,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101600,0,0,417,0,0,0,0,0,0,0,100,1.5,9,8,11.2,7500,9,999999999,500,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,22.8,91,101700,0,0,408,0,0,0,0,0,0,0,130,2.6,9,7,11.2,7500,9,999999999,500,0.2160,0,88,0.110,0.0,99.0 +1991,6,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101700,0,0,418,0,0,0,0,0,0,0,0,0.0,9,8,11.2,7500,9,999999999,500,0.2160,0,88,0.110,999.0,99.0 +1991,6,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.9,94,101600,0,0,394,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,500,0.2160,0,88,0.110,999.0,99.0 +1991,6,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,24.4,90,101600,0,0,400,0,0,0,0,0,0,0,180,2.1,2,2,11.2,77777,9,999999999,500,0.2170,0,88,0.110,0.0,6.0 +1991,6,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101500,0,0,400,0,0,0,0,0,0,0,160,3.1,3,3,11.2,77777,9,999999999,490,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101500,0,0,393,0,0,0,0,0,0,0,130,3.1,2,2,11.2,77777,9,999999999,490,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.9,90,101500,0,0,401,0,0,0,0,0,0,0,150,4.1,3,3,11.2,77777,9,999999999,490,0.2170,0,88,0.110,0.0,99.0 +1991,6,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.9,94,101500,0,0,394,0,0,0,0,0,0,0,140,2.1,2,2,11.2,77777,9,999999999,490,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.9,94,101600,21,540,398,4,2,4,0,0,0,0,140,4.1,3,3,11.2,77777,9,999999999,480,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,24.4,85,101700,242,1323,406,94,213,55,9800,15300,7100,990,140,3.1,2,2,11.2,77777,9,999999999,480,0.2170,0,88,0.110,0.0,6.0 +1991,6,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,25.0,82,101700,518,1323,417,286,412,124,30100,39300,14700,2400,150,2.6,3,3,11.2,77777,9,999999999,480,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,24.4,75,101700,776,1323,418,478,579,138,50400,58100,16200,3220,150,2.6,2,2,11.2,77777,9,999999999,480,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,23.9,68,101800,998,1323,429,680,643,195,72000,65300,22600,6130,0,0.0,3,3,11.2,77777,9,999999999,480,0.2170,0,88,0.110,0.0,99.0 +1991,6,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,24.4,65,101800,1170,1323,431,836,698,219,89400,71300,26200,10790,190,4.1,2,2,11.2,77777,9,999999999,480,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.8,70,101800,1278,1323,440,779,149,635,84200,15700,69000,43520,20,2.6,9,8,11.2,1800,9,999999999,480,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.8,61,101700,1316,1323,446,852,420,434,90700,43800,47000,60450,180,3.6,9,7,11.2,7500,9,999999999,480,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.8,59,101700,1281,1323,456,662,266,404,73300,29000,45200,31050,250,2.6,9,8,9.6,7500,9,999999999,480,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.9,79,101700,1176,1323,428,682,311,405,74600,33800,44500,19240,350,4.1,9,7,11.2,1200,9,999999999,480,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,23.9,74,101700,1007,1323,441,437,130,337,48000,13800,37400,11230,0,0.0,9,8,11.2,4500,9,999999999,480,0.2170,0,88,0.110,0.0,99.0 +1991,6,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.8,82,101700,787,1323,433,235,12,227,27000,1000,26400,9600,20,1.0,10,9,8.0,900,9,999999999,480,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.9,79,101700,530,1323,435,124,86,90,14100,8600,10600,2110,20,1.5,9,8,11.2,3000,9,999999999,480,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,23.3,77,101700,254,1323,427,62,40,55,6900,3200,6300,1430,320,2.1,9,7,11.2,3000,9,999999999,480,0.2170,0,88,0.110,11.0,6.0 +1991,6,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,25.0,90,101700,25,606,430,4,0,4,500,0,500,160,0,0.0,9,8,11.2,7500,9,999999999,480,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,24.4,93,101800,0,0,416,0,0,0,0,0,0,0,0,0.0,9,7,11.2,7500,9,999999999,480,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,23.3,85,101800,0,0,433,0,0,0,0,0,0,0,110,1.0,10,9,11.2,7500,9,999999999,469,0.2170,0,88,0.110,0.0,99.0 +1991,6,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101700,0,0,431,0,0,0,0,0,0,0,140,2.6,10,9,11.2,7500,9,999999999,469,0.2170,0,88,0.110,999.0,99.0 +1991,6,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101700,0,0,422,0,0,0,0,0,0,0,140,2.6,9,8,11.2,7500,9,999999999,469,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,101700,0,0,442,0,0,0,0,0,0,0,150,3.1,10,10,11.2,7500,9,999999999,469,0.2170,0,88,0.110,0.0,6.0 +1991,6,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101700,0,0,426,0,0,0,0,0,0,0,170,2.1,9,9,11.2,7500,9,999999999,469,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101700,0,0,393,0,0,0,0,0,0,0,140,1.5,3,3,11.2,77777,9,999999999,469,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,22.8,91,101700,0,0,389,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,469,0.2170,0,88,0.110,0.0,99.0 +1991,6,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101700,0,0,396,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,469,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101700,20,540,389,4,16,3,0,0,0,0,120,2.6,2,2,11.2,77777,9,999999999,469,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.3,85,101800,241,1323,403,108,217,69,11400,15400,8600,1320,120,2.1,3,3,11.2,77777,9,999999999,469,0.2170,0,88,0.110,0.0,6.0 +1991,6,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.3,77,101800,517,1323,408,290,498,95,30100,46900,11800,1850,130,2.6,2,2,11.2,77777,9,999999999,469,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101900,775,1323,421,498,603,144,52300,60400,16800,3340,130,2.1,3,3,11.2,77777,9,999999999,469,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,22.8,65,101800,998,1323,420,683,714,145,71700,71700,17500,4230,160,1.5,2,2,11.2,77777,9,999999999,469,0.2170,0,88,0.110,0.0,99.0 +1991,6,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.7,57,101800,1169,1323,461,635,254,410,69300,27600,44900,19120,160,1.0,9,9,11.2,77777,9,999999999,469,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,21.1,54,101800,1277,1323,427,916,739,202,96100,74200,24200,16020,190,1.0,2,2,11.2,77777,9,999999999,469,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,21.7,52,101700,1316,1323,438,936,683,256,100400,69800,30800,34550,230,1.0,3,3,11.2,77777,9,999999999,469,0.2170,0,88,0.110,0.0,6.0 +1991,6,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,21.7,51,101700,1281,1323,437,803,668,156,86700,67900,20800,13130,270,1.5,2,2,11.2,77777,9,999999999,459,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,23.3,59,101600,1176,1323,470,664,140,539,71900,14800,58700,24710,300,2.6,9,9,11.2,7500,9,999999999,459,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,23.9,66,101500,1008,1323,464,441,179,305,48900,19100,34300,10170,340,5.1,9,9,11.2,6000,9,999999999,459,0.2170,0,88,0.110,0.0,99.0 +1991,6,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.9,66,101600,787,1323,464,156,109,91,18100,11700,11100,1980,300,4.1,9,9,11.2,6000,9,999999999,459,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.2,67,101600,531,1323,448,150,48,131,16500,4600,14700,3830,160,3.6,9,9,11.2,3000,9,999999999,459,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.3,77,101700,255,1323,443,56,18,53,6200,1400,5900,1390,40,5.1,9,9,11.2,2100,9,999999999,459,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101700,26,606,443,3,0,3,400,0,400,120,20,1.5,10,10,11.2,2100,9,999999999,459,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101700,0,0,443,0,0,0,0,0,0,0,30,1.0,10,10,11.2,900,9,999999999,459,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101800,0,0,441,0,0,0,0,0,0,0,80,1.5,10,10,11.2,2400,9,999999999,459,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101700,0,0,442,0,0,0,0,0,0,0,40,1.0,10,10,11.2,2400,9,999999999,459,0.2170,0,88,0.110,999.0,99.0 +1991,6,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101700,0,0,430,0,0,0,0,0,0,0,70,1.0,9,9,11.2,7500,9,999999999,459,0.2170,0,88,0.110,999.0,99.0 +1991,6,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.9,90,101700,0,0,416,0,0,0,0,0,0,0,0,0.0,9,7,11.2,7500,9,999999999,450,0.2180,0,88,0.110,2.0,6.0 +1991,6,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.9,94,101600,0,0,419,0,0,0,0,0,0,0,0,0.0,9,8,11.2,7500,9,999999999,450,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101600,0,0,415,0,0,0,0,0,0,0,0,0.0,9,7,11.2,3600,9,999999999,450,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,23.3,85,101600,0,0,424,0,0,0,0,0,0,0,0,0.0,9,8,11.2,3600,9,999999999,450,0.2180,0,88,0.110,0.0,99.0 +1991,6,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101600,0,0,415,0,0,0,0,0,0,0,90,1.0,9,7,11.2,3600,9,999999999,450,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101600,20,540,422,3,1,3,0,0,0,0,80,1.0,9,8,11.2,4500,9,999999999,450,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,23.3,79,101700,240,1322,424,88,88,71,9400,6600,8200,1520,90,1.5,9,7,11.2,4500,9,999999999,450,0.2180,0,88,0.110,0.0,6.0 +1991,6,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101700,516,1322,409,286,407,127,30100,38800,14900,2470,100,1.5,3,3,11.2,77777,9,999999999,450,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,23.9,74,101700,774,1322,415,527,690,123,56000,69600,15200,2910,140,2.6,2,2,11.2,77777,9,999999999,459,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,24.4,68,101700,997,1322,432,674,657,178,71700,67000,21100,5630,140,2.1,3,3,11.2,77777,9,999999999,459,0.2180,0,88,0.110,0.0,99.0 +1991,6,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.3,63,101700,1168,1322,426,829,730,183,86600,73300,21700,8220,170,2.1,2,2,11.2,77777,9,999999999,459,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.8,59,101700,1277,1322,433,875,670,227,94200,68700,27700,19250,150,2.6,3,3,11.2,77777,9,999999999,459,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,22.8,58,101600,1315,1322,432,937,718,223,101500,73800,28000,30200,240,2.1,2,2,11.2,77777,9,999999999,469,0.2180,0,88,0.110,0.0,6.0 +1991,6,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.2,56,101500,1281,1322,458,501,186,321,56500,20300,36800,24450,260,1.5,9,8,11.2,7500,9,999999999,469,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,22.8,54,101500,1176,1322,459,441,94,357,49000,10100,40000,16380,240,1.0,9,7,11.2,7500,9,999999999,469,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.8,61,101500,1008,1322,453,415,59,370,45700,6100,41100,13860,300,2.1,9,8,11.2,7500,9,999999999,480,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,24.4,68,101500,788,1322,448,328,162,230,36000,17000,25800,6190,270,2.1,9,7,11.2,7500,9,999999999,480,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,21.1,67,101600,531,1322,431,122,84,88,13800,8400,10400,2060,360,4.1,9,8,11.2,900,9,999999999,480,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.2,82,101600,256,1322,429,79,31,73,8600,2500,8200,1800,70,3.1,10,9,11.2,2400,9,999999999,490,0.2180,0,88,0.110,0.0,6.0 +1991,6,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101700,26,606,414,4,0,4,500,0,500,160,0,0.0,9,8,11.2,2400,9,999999999,490,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101600,0,0,426,0,0,0,0,0,0,0,130,5.1,10,9,11.2,2400,9,999999999,490,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101700,0,0,413,0,0,0,0,0,0,0,150,5.1,9,8,11.2,3000,9,999999999,500,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101600,0,0,410,0,0,0,0,0,0,0,100,0.5,9,7,11.2,7500,9,999999999,500,0.2180,0,88,0.110,999.0,99.0 +1991,6,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101600,0,0,413,0,0,0,0,0,0,0,110,0.5,9,8,11.2,7500,9,999999999,500,0.2180,0,88,0.110,999.0,99.0 +1991,6,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.2,90,101600,0,0,390,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,509,0.2190,0,88,0.110,1.0,6.0 +1991,6,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.8,94,101500,0,0,387,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,509,0.2190,0,88,0.110,999.0,99.0 +1991,6,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.8,94,101500,0,0,391,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,509,0.2190,0,88,0.110,999.0,99.0 +1991,6,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.3,87,101500,0,0,415,0,0,0,0,0,0,0,70,0.5,9,7,11.2,7500,9,999999999,519,0.2190,0,88,0.110,0.0,99.0 +1991,6,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101500,0,0,396,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,519,0.2190,0,88,0.110,999.0,99.0 +1991,6,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101600,20,518,411,3,1,3,0,0,0,0,50,0.5,9,7,11.2,77777,9,999999999,519,0.2190,0,88,0.110,999.0,99.0 +1991,6,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,23.9,85,101700,239,1322,429,48,24,44,5300,1900,5000,1160,90,0.5,9,8,11.2,77777,9,999999999,530,0.2190,0,88,0.110,0.0,6.0 +1991,6,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101700,515,1322,425,242,121,195,26000,11800,21400,4550,130,2.6,9,7,11.2,7500,9,999999999,519,0.2190,0,88,0.110,999.0,99.0 +1991,6,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.8,70,101700,773,1322,440,280,121,209,31000,12700,23500,5570,0,0.0,9,8,11.2,7500,9,999999999,519,0.2190,0,88,0.110,999.0,99.0 +1991,6,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,23.9,70,101700,996,1322,441,641,527,244,69200,54900,27800,7690,50,1.5,9,7,11.2,7500,9,999999999,519,0.2190,0,88,0.110,0.0,99.0 +1991,6,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.9,70,101700,1168,1322,448,748,500,305,80800,52300,34500,15160,160,2.1,9,8,11.2,7500,9,999999999,519,0.2190,0,88,0.110,999.0,99.0 +1991,6,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.1,55,101600,1277,1322,424,896,751,170,95700,76100,22100,13710,160,1.5,2,2,11.2,77777,9,999999999,519,0.2190,0,88,0.110,999.0,99.0 +1991,6,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,21.7,56,101600,1315,1322,432,909,642,270,97100,65400,31900,36380,200,1.5,3,3,11.2,77777,9,999999999,519,0.2190,0,88,0.110,0.0,6.0 +1991,6,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,22.8,56,101500,1281,1322,456,697,369,340,75800,38700,38300,30490,180,1.0,9,7,11.2,77777,9,999999999,519,0.2190,0,88,0.110,999.0,99.0 +1991,6,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.8,61,101500,1177,1322,476,316,0,316,37700,0,37700,14610,200,3.1,10,10,11.2,7500,9,999999999,519,0.2190,0,88,0.110,999.0,99.0 +1991,6,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,22.8,63,101400,1009,1322,472,264,0,264,31200,0,31200,12190,200,3.6,10,10,11.2,7500,9,999999999,519,0.2190,0,88,0.110,0.0,99.0 +1991,6,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,23.3,65,101500,789,1322,473,157,0,157,18600,0,18600,7270,0,0.0,10,10,11.2,1350,9,999999999,519,0.2190,0,88,0.110,999.0,99.0 +1991,6,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.7,82,101500,532,1322,437,93,0,93,10900,0,10900,4000,30,3.6,10,10,9.6,1200,9,999999999,519,0.2190,0,88,0.110,999.0,99.0 +1991,6,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,23.9,82,101500,257,1322,431,122,71,109,13400,5900,12200,2390,0,0.0,9,8,11.2,7500,9,999999999,519,0.2190,0,88,0.110,30.0,6.0 +1991,6,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,24.4,87,101500,27,606,404,5,12,5,700,300,600,80,0,0.0,2,2,11.2,77777,9,999999999,519,0.2190,0,88,0.110,999.0,99.0 +1991,6,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,24.4,87,101500,0,0,408,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,519,0.2190,0,88,0.110,999.0,99.0 +1991,6,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,23.9,85,101600,0,0,422,0,0,0,0,0,0,0,0,0.0,9,7,11.2,77777,9,999999999,519,0.2190,0,88,0.110,0.0,99.0 +1991,6,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101600,0,0,404,0,0,0,0,0,0,0,40,1.5,3,3,11.2,77777,9,999999999,519,0.2190,0,88,0.110,999.0,99.0 +1991,6,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101600,0,0,403,0,0,0,0,0,0,0,50,0.5,2,2,11.2,77777,9,999999999,519,0.2190,0,88,0.110,999.0,99.0 +1991,6,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101600,0,0,397,0,0,0,0,0,0,0,80,1.0,2,2,11.2,77777,9,999999999,519,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101500,0,0,404,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,519,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101500,0,0,393,0,0,0,0,0,0,0,120,2.1,2,2,11.2,77777,9,999999999,519,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,23.3,90,101500,0,0,397,0,0,0,0,0,0,0,140,1.5,3,3,11.2,77777,9,999999999,509,0.2200,0,88,0.110,0.0,99.0 +1991,6,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101500,0,0,431,0,0,0,0,0,0,0,150,3.1,9,9,11.2,7500,9,999999999,509,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101500,19,518,430,3,0,3,0,0,0,0,150,2.6,9,9,11.2,7500,9,999999999,509,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,23.9,85,101600,238,1322,438,55,27,50,6000,2100,5600,1300,170,3.1,9,9,11.2,2400,9,999999999,509,0.2200,0,88,0.110,0.0,6.0 +1991,6,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,24.4,82,101700,514,1322,445,184,32,172,20200,3100,19000,4680,170,2.1,9,9,11.2,3600,9,999999999,509,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,24.4,75,101700,772,1322,454,236,81,189,26100,8100,21300,6350,150,1.5,9,9,11.2,7500,9,999999999,509,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,24.4,70,101700,995,1322,462,223,72,169,25600,7800,19700,5540,160,1.0,9,9,11.2,7500,9,999999999,509,0.2200,0,88,0.110,0.0,99.0 +1991,6,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,24.4,75,101700,1167,1322,454,352,77,284,39700,8300,32400,12710,220,0.5,9,9,11.2,3000,9,999999999,509,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.8,79,101700,1276,1322,436,543,96,450,60000,9900,50400,27330,280,3.6,9,9,11.2,2700,9,999999999,509,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.1,55,101700,1315,1322,460,494,158,336,55700,17000,38700,33920,250,2.1,9,9,11.2,3600,9,999999999,500,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.2,57,101600,1281,1322,465,520,120,403,57800,12900,45300,28350,270,2.6,9,9,11.2,3600,9,999999999,500,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.8,59,101600,1177,1322,479,313,0,313,37400,0,37400,14510,340,2.1,10,10,11.2,6000,9,999999999,500,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,23.9,68,101600,1009,1322,474,260,0,260,30700,0,30700,12050,300,2.1,10,10,11.2,3600,9,999999999,500,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.3,63,101600,790,1322,476,190,0,190,22200,0,22200,8450,320,2.1,10,10,11.2,3600,9,999999999,500,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.3,63,101600,533,1322,476,111,0,111,12900,0,12900,4620,320,2.6,10,10,11.2,6000,9,999999999,500,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,23.9,74,101600,258,1322,464,53,0,53,6000,0,6000,1950,330,1.0,10,10,11.2,6000,9,999999999,490,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,101700,27,628,459,4,0,4,500,0,500,160,0,0.0,10,10,11.2,6000,9,999999999,490,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101700,0,0,441,0,0,0,0,0,0,0,140,5.1,10,10,11.2,6000,9,999999999,490,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,22.8,85,101700,0,0,430,0,0,0,0,0,0,0,140,4.6,9,9,11.2,7500,9,999999999,490,0.2200,0,88,0.110,0.0,99.0 +1991,6,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101700,0,0,426,0,0,0,0,0,0,0,160,3.1,9,9,11.2,7500,9,999999999,490,0.2200,0,88,0.110,999.0,99.0 +1991,6,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101700,0,0,422,0,0,0,0,0,0,0,180,2.1,9,9,11.2,7500,9,999999999,490,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101700,0,0,399,0,0,0,0,0,0,0,0,0.0,9,4,11.2,7500,9,999999999,480,0.2200,0,88,0.110,0.0,6.0 +1991,6,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.7,88,101600,0,0,392,0,0,0,0,0,0,0,0,0.0,9,4,11.2,77777,9,999999999,480,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.7,82,101600,0,0,398,0,0,0,0,0,0,0,60,0.5,9,4,11.2,77777,9,999999999,480,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,21.7,85,101700,0,0,383,0,0,0,0,0,0,0,0,0.0,2,1,11.2,77777,9,999999999,480,0.2200,0,88,0.110,0.0,99.0 +1991,6,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.7,79,101700,0,0,389,0,0,0,0,0,0,0,50,1.0,3,1,11.2,77777,9,999999999,480,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101700,19,518,399,3,0,3,0,0,0,0,80,0.5,9,4,11.2,77777,9,999999999,480,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.8,79,101700,237,1322,409,84,40,76,9100,3200,8500,1800,0,0.0,9,4,11.2,77777,9,999999999,480,0.2200,0,88,0.110,0.0,6.0 +1991,6,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101700,512,1322,419,233,166,169,25300,16200,19000,3940,0,0.0,9,4,11.2,77777,9,999999999,480,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,24.4,70,101700,771,1322,433,404,312,222,43800,33100,24400,5340,320,0.5,9,4,11.2,77777,9,999999999,480,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,24.4,68,101700,994,1322,435,638,473,281,67800,49200,30700,8920,280,2.1,9,4,11.2,77777,9,999999999,480,0.2200,0,88,0.110,0.0,99.0 +1991,6,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.9,70,101700,1166,1322,429,679,372,350,75000,40500,39200,15950,270,1.5,9,4,11.2,7500,9,999999999,480,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,24.4,68,101700,1276,1322,435,703,338,377,78300,36800,42700,27930,270,1.0,9,4,11.2,7500,9,999999999,480,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,24.4,68,101700,1315,1322,435,783,448,337,85500,47000,38700,46640,300,1.0,9,4,11.2,6000,9,999999999,480,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,17.8,50,101600,1281,1322,417,887,520,382,95200,54400,42300,34490,50,1.5,9,4,11.2,6000,9,999999999,480,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.7,72,101600,1177,1322,410,744,454,339,79700,47400,37400,17570,100,3.1,9,4,11.2,6000,9,999999999,480,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,21.7,72,101600,1010,1322,410,681,418,361,73500,45200,39000,11880,150,3.6,9,4,11.2,6000,9,999999999,480,0.2200,0,88,0.110,0.0,99.0 +1991,6,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,21.7,69,101600,790,1322,413,445,349,237,48200,37100,26000,5840,130,4.6,9,4,11.2,7500,9,999999999,480,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.6,67,101600,534,1322,416,252,151,191,27200,14800,21200,4490,120,3.1,10,6,11.2,7500,9,999999999,480,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,101600,259,1322,410,73,19,69,8000,1500,7700,1730,90,4.6,10,6,11.2,7500,9,999999999,480,0.2200,0,88,0.110,0.0,6.0 +1991,6,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.1,76,101600,27,628,407,5,0,5,600,0,600,200,60,1.0,10,6,11.2,7500,9,999999999,490,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.1,79,101700,0,0,398,0,0,0,0,0,0,0,0,0.0,9,4,11.2,7500,9,999999999,490,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,21.7,82,101700,0,0,398,0,0,0,0,0,0,0,0,0.0,9,4,11.2,7500,9,999999999,490,0.2200,0,88,0.110,0.0,99.0 +1991,6,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101800,0,0,402,0,0,0,0,0,0,0,0,0.0,9,4,11.2,7500,9,999999999,490,0.2200,0,88,0.110,999.0,99.0 +1991,6,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101700,0,0,399,0,0,0,0,0,0,0,0,0.0,9,4,11.2,7500,9,999999999,490,0.2200,0,88,0.110,999.0,99.0 +1991,6,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101700,0,0,396,0,0,0,0,0,0,0,80,2.1,9,4,11.2,7500,9,999999999,490,0.2210,0,88,0.110,0.0,6.0 +1991,6,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101600,0,0,396,0,0,0,0,0,0,0,60,1.5,9,4,11.2,7500,9,999999999,490,0.2210,0,88,0.110,999.0,99.0 +1991,6,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101600,0,0,396,0,0,0,0,0,0,0,50,0.5,9,4,11.2,7500,9,999999999,490,0.2210,0,88,0.110,999.0,99.0 +1991,6,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,21.7,82,101600,0,0,386,0,0,0,0,0,0,0,60,1.5,3,1,11.2,77777,9,999999999,490,0.2210,0,88,0.110,0.0,99.0 +1991,6,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.7,88,101700,0,0,380,0,0,0,0,0,0,0,20,1.0,2,1,11.2,77777,9,999999999,490,0.2210,0,88,0.110,999.0,99.0 +1991,6,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101700,18,518,396,3,0,3,0,0,0,0,60,1.5,9,4,6.4,77777,9,999999999,490,0.2210,0,88,0.110,999.0,99.0 +1991,6,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101700,235,1322,399,76,43,68,8300,3400,7700,1650,70,2.1,9,4,11.2,77777,9,999999999,490,0.2210,0,88,0.110,0.0,6.0 +1991,6,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.8,82,101800,511,1322,406,190,176,122,20600,17300,13900,2440,70,3.1,9,4,11.2,77777,9,999999999,500,0.2210,0,88,0.110,999.0,99.0 +1991,6,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,101800,770,1322,418,342,190,232,37700,19900,26100,6170,90,3.1,10,6,11.2,77777,9,999999999,500,0.2210,0,88,0.110,999.0,99.0 +1991,6,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,22.8,70,101800,993,1322,428,594,407,287,62900,42300,31100,9110,130,2.1,10,6,11.2,77777,9,999999999,500,0.2210,0,88,0.110,0.0,99.0 +1991,6,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.2,65,101800,1166,1322,423,757,403,401,82700,43800,44100,18510,40,3.1,9,4,11.2,77777,9,999999999,500,0.2210,0,88,0.110,999.0,99.0 +1991,6,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.8,65,101700,1275,1322,427,822,365,469,89900,39700,51600,35180,70,3.1,9,4,11.2,77777,9,999999999,500,0.2210,0,88,0.110,999.0,99.0 +1991,6,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,21.7,54,101800,1315,1322,438,855,503,354,92900,52700,40300,48970,150,2.1,9,4,11.2,77777,9,999999999,500,0.2210,0,88,0.110,0.0,6.0 +1991,6,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,21.1,50,101600,1282,1322,441,829,409,432,91400,44500,48100,33700,240,1.5,9,4,11.2,77777,9,999999999,500,0.2210,0,88,0.110,999.0,99.0 +1991,6,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,21.7,54,101500,1178,1322,438,790,534,314,85400,55900,35500,16240,250,1.5,9,4,11.2,77777,9,999999999,500,0.2210,0,88,0.110,999.0,99.0 +1991,6,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.8,20.6,49,101500,1010,1322,440,700,500,317,73700,51900,33900,10470,250,1.0,9,4,11.2,77777,9,999999999,500,0.2210,0,88,0.110,0.0,99.0 +1991,6,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.8,58,101500,791,1322,440,482,447,215,51000,45800,23600,5100,300,1.5,9,4,11.2,7500,9,999999999,509,0.2210,0,88,0.110,999.0,99.0 +1991,6,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.7,63,101500,535,1322,422,220,151,159,24000,14900,18000,3730,250,2.1,9,4,11.2,7500,9,999999999,509,0.2210,0,88,0.110,999.0,99.0 +1991,6,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.1,71,101600,259,1322,407,99,72,85,10800,5900,9700,2030,50,5.1,9,4,11.2,900,9,999999999,509,0.2210,0,88,0.110,0.0,6.0 +1991,6,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101600,28,628,402,6,1,6,700,0,700,230,40,2.6,9,4,11.2,2100,9,999999999,509,0.2210,0,88,0.110,999.0,99.0 +1991,6,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.7,79,101700,0,0,408,0,0,0,0,0,0,0,100,1.5,10,6,11.2,2100,9,999999999,509,0.2210,0,88,0.110,999.0,99.0 +1991,6,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,21.1,74,101700,0,0,410,0,0,0,0,0,0,0,0,0.0,10,6,11.2,4500,9,999999999,509,0.2210,0,88,0.110,0.0,99.0 +1991,6,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101800,0,0,409,0,0,0,0,0,0,0,0,0.0,10,6,11.2,7500,9,999999999,509,0.2210,0,88,0.110,999.0,99.0 +1991,6,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101700,0,0,409,0,0,0,0,0,0,0,0,0.0,10,6,11.2,7500,9,999999999,509,0.2210,0,88,0.110,999.0,99.0 +1991,6,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.8,88,101600,0,0,417,0,0,0,0,0,0,0,0,0.0,9,8,11.2,7500,9,999999999,509,0.2220,0,88,0.110,0.0,6.0 +1991,6,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101600,0,0,415,0,0,0,0,0,0,0,0,0.0,9,7,11.2,7500,9,999999999,519,0.2220,0,88,0.110,999.0,99.0 +1991,6,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101600,0,0,421,0,0,0,0,0,0,0,0,0.0,9,8,11.2,4500,9,999999999,519,0.2220,0,88,0.110,999.0,99.0 +1991,6,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,23.3,90,101500,0,0,412,0,0,0,0,0,0,0,0,0.0,9,7,11.2,4500,9,999999999,519,0.2220,0,88,0.110,0.0,99.0 +1991,6,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101600,0,0,396,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,519,0.2220,0,88,0.110,999.0,99.0 +1991,6,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101600,18,496,412,3,0,3,0,0,0,0,90,0.5,9,7,11.2,7500,9,999999999,519,0.2220,0,88,0.110,999.0,99.0 +1991,6,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.3,87,101600,234,1322,422,64,13,61,7100,400,7000,2070,0,0.0,9,8,11.2,3600,9,999999999,519,0.2220,0,88,0.110,0.0,6.0 +1991,6,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101600,510,1322,418,163,81,131,17900,7900,14800,3050,0,0.0,9,7,11.2,3600,9,999999999,519,0.2220,0,88,0.110,999.0,99.0 +1991,6,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101700,769,1322,431,301,189,191,33000,20100,21300,4470,30,2.1,9,8,11.2,3600,9,999999999,509,0.2220,0,88,0.110,999.0,99.0 +1991,6,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,22.8,70,101700,992,1322,433,440,229,268,48500,24800,29900,8230,150,1.0,9,7,11.2,3600,9,999999999,509,0.2220,0,88,0.110,0.0,99.0 +1991,6,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,21.1,57,101700,1165,1322,447,343,98,256,38800,10600,29500,11410,150,2.6,9,8,9.6,7500,9,999999999,509,0.2220,0,88,0.110,999.0,99.0 +1991,6,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.1,55,101700,1275,1322,443,453,178,281,51500,19500,32700,20410,160,1.0,9,7,9.6,77777,9,999999999,500,0.2220,0,88,0.110,999.0,99.0 +1991,6,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,21.7,56,101600,1315,1322,432,975,554,424,104100,57900,46400,58750,180,1.0,3,3,9.6,77777,9,999999999,500,0.2220,0,88,0.110,0.0,6.0 +1991,6,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,21.1,54,101600,1282,1322,447,783,380,414,86600,41400,46400,32250,270,3.1,9,7,9.6,1500,9,999999999,500,0.2220,0,88,0.110,999.0,99.0 +1991,6,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.1,59,101500,1178,1322,444,687,337,386,75400,36600,42700,18430,290,1.0,9,8,11.2,6000,9,999999999,490,0.2220,0,88,0.110,999.0,99.0 +1991,6,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,22.8,61,101400,1011,1322,446,503,206,345,55200,21900,38400,11570,250,1.0,9,7,11.2,6000,9,999999999,490,0.2220,0,88,0.110,0.0,99.0 +1991,6,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.3,67,101400,792,1322,447,237,79,189,26100,7900,21300,6460,340,1.5,9,8,11.2,6000,9,999999999,490,0.2220,0,88,0.110,999.0,99.0 +1991,6,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101500,535,1322,425,171,34,157,18700,3300,17400,4460,310,1.5,9,7,11.2,3000,9,999999999,480,0.2220,0,88,0.110,999.0,99.0 +1991,6,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.2,79,101500,260,1322,423,70,11,68,7800,400,7800,2340,0,0.0,9,8,11.2,3000,9,999999999,480,0.2220,0,88,0.110,3.0,6.0 +1991,6,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101600,28,628,422,5,0,5,600,0,600,200,40,2.1,9,7,11.2,3000,9,999999999,480,0.2220,0,88,0.110,999.0,99.0 +1991,6,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101600,0,0,429,0,0,0,0,0,0,0,60,1.0,9,8,11.2,7500,9,999999999,469,0.2220,0,88,0.110,999.0,99.0 +1991,6,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,23.3,82,101700,0,0,437,0,0,0,0,0,0,0,60,1.0,10,9,11.2,900,9,999999999,469,0.2220,0,88,0.110,0.0,99.0 +1991,6,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101700,0,0,425,0,0,0,0,0,0,0,30,0.5,9,8,11.2,900,9,999999999,469,0.2220,0,88,0.110,999.0,99.0 +1991,6,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.9,94,101700,0,0,412,0,0,0,0,0,0,0,10,0.5,9,7,11.2,7500,9,999999999,459,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101600,0,0,430,0,0,0,0,0,0,0,90,1.0,9,9,11.2,7500,9,999999999,459,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101600,0,0,431,0,0,0,0,0,0,0,100,2.1,9,9,11.2,7500,9,999999999,459,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101600,0,0,392,0,0,0,0,0,0,0,80,2.1,2,2,11.2,77777,9,999999999,450,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,22.2,88,101600,0,0,393,0,0,0,0,0,0,0,90,2.1,3,3,11.2,77777,9,999999999,450,0.2220,0,88,0.110,0.0,99.0 +1991,6,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101600,0,0,389,0,0,0,0,0,0,0,100,2.6,2,2,11.2,77777,9,999999999,450,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101700,17,496,396,3,1,2,0,0,0,0,60,1.0,3,3,11.2,77777,9,999999999,440,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,101800,233,1322,396,80,122,58,8400,8500,6900,1080,90,2.1,2,2,11.2,77777,9,999999999,440,0.2220,0,88,0.110,0.0,6.0 +1991,6,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,101800,509,1322,408,251,288,140,26900,28200,16000,2870,80,1.0,3,3,9.6,77777,9,999999999,440,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,24.4,79,101900,768,1322,448,177,78,131,20100,8200,15300,3470,130,2.1,9,9,9.6,7500,9,999999999,440,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,23.9,70,101900,991,1322,457,436,288,219,48700,31300,25200,6550,140,2.6,9,9,9.6,7500,9,999999999,440,0.2220,0,88,0.110,0.0,99.0 +1991,6,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.9,70,102000,1164,1322,457,654,81,583,72000,8500,64500,24960,200,2.1,9,9,11.2,900,9,999999999,440,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101900,1274,1322,453,278,74,207,32300,8000,24500,13970,250,1.5,9,9,11.2,4500,9,999999999,440,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,23.3,74,101900,1314,1322,446,449,72,377,49700,7400,42400,30690,200,1.0,9,9,11.2,4500,9,999999999,450,0.2220,0,88,0.110,0.0,6.0 +1991,6,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,23.3,72,101900,1282,1322,450,322,98,226,37000,10600,26700,15980,180,1.5,9,9,11.2,4500,9,999999999,450,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,25.0,70,101900,1178,1322,466,406,70,343,44900,7200,38500,16550,220,2.1,9,9,11.2,4500,9,999999999,450,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.7,21.7,56,101800,1011,1322,465,523,148,410,56900,15700,44900,13760,180,1.5,9,9,11.2,4500,9,999999999,450,0.2220,0,88,0.110,0.0,99.0 +1991,6,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.8,61,101800,792,1322,462,330,82,281,36300,8300,31300,8940,180,1.0,9,9,11.2,6000,9,999999999,450,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,23.3,61,101800,536,1322,467,234,67,207,25600,6500,23000,5490,220,1.0,9,9,11.2,6000,9,999999999,450,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,23.9,68,101800,261,1322,461,69,68,56,7700,5300,6600,1200,300,1.0,9,9,11.2,77777,9,999999999,450,0.2220,0,88,0.110,0.0,6.0 +1991,6,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101800,28,628,416,5,4,5,600,200,600,130,0,0.0,3,3,11.2,77777,9,999999999,450,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,24.4,82,101900,0,0,410,0,0,0,0,0,0,0,290,1.5,2,2,11.2,77777,9,999999999,450,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,24.4,82,102000,0,0,414,0,0,0,0,0,0,0,300,1.0,3,3,11.2,77777,9,999999999,450,0.2220,0,88,0.110,0.0,99.0 +1991,6,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,102000,0,0,403,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,450,0.2220,0,88,0.110,999.0,99.0 +1991,6,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101900,0,0,390,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,450,0.2220,0,88,0.110,999.0,99.0 +1991,6,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,23.9,85,101900,0,0,390,0,0,0,0,0,0,0,30,0.5,0,0,11.2,77777,9,999999999,459,0.2230,0,88,0.110,0.0,6.0 +1991,6,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,24.4,85,101800,0,0,393,0,0,0,0,0,0,0,50,0.5,0,0,11.2,77777,9,999999999,459,0.2230,0,88,0.110,999.0,99.0 +1991,6,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,24.4,85,101800,0,0,410,0,0,0,0,0,0,0,60,1.5,3,3,11.2,77777,9,999999999,459,0.2230,0,88,0.110,999.0,99.0 +1991,6,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,23.9,82,101900,0,0,406,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,459,0.2230,0,88,0.110,0.0,99.0 +1991,6,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101900,0,0,390,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,459,0.2230,0,88,0.110,999.0,99.0 +1991,6,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101900,17,496,438,2,0,2,0,0,0,0,40,1.0,9,9,11.2,77777,9,999999999,459,0.2230,0,88,0.110,999.0,99.0 +1991,6,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,23.9,79,101900,231,1322,413,97,157,70,10200,10900,8300,1350,40,2.6,3,3,11.2,77777,9,999999999,459,0.2230,0,88,0.110,0.0,6.0 +1991,6,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,102000,508,1322,417,288,424,125,30300,40300,14800,2420,40,3.6,2,2,11.2,77777,9,999999999,459,0.2230,0,88,0.110,999.0,99.0 +1991,6,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,23.3,65,102000,767,1322,428,483,564,156,50400,56200,17800,3540,30,3.1,3,3,11.2,77777,9,999999999,459,0.2230,0,88,0.110,999.0,99.0 +1991,6,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,22.2,59,102000,990,1322,425,678,654,188,71900,66500,21900,5850,40,2.1,2,2,11.2,77777,9,999999999,459,0.2230,0,88,0.110,0.0,99.0 +1991,6,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,21.1,54,102000,1163,1322,431,873,739,222,93100,75500,26600,10740,110,1.0,3,3,11.2,77777,9,999999999,459,0.2230,0,88,0.110,999.0,99.0 +1991,6,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,22.8,56,102000,1274,1322,435,885,624,283,93800,63300,32700,23370,280,2.1,2,2,11.2,77777,9,999999999,459,0.2230,0,88,0.110,999.0,99.0 +1991,6,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.8,23.9,60,101900,1314,1322,441,996,717,282,106000,72900,33400,37600,280,1.5,3,3,11.2,77777,9,999999999,459,0.2230,0,88,0.110,0.0,6.0 +1991,6,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,23.9,56,101800,1282,1322,443,904,742,184,95900,74900,23100,15430,270,1.0,2,2,11.2,77777,9,999999999,459,0.2230,0,88,0.110,999.0,99.0 +1991,6,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,23.3,56,101800,1179,1322,443,836,667,241,88800,67900,28200,12250,320,4.6,3,3,11.2,77777,9,999999999,459,0.2230,0,88,0.110,999.0,99.0 +1991,6,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,33.3,22.2,52,101700,1012,1322,437,674,668,162,72300,68500,19800,5340,320,3.1,2,2,11.2,77777,9,999999999,459,0.2230,0,88,0.110,0.0,99.0 +1991,6,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,21.7,52,101600,793,1322,438,468,458,193,50000,47000,21800,4540,320,3.6,3,3,11.2,77777,9,999999999,459,0.2230,0,88,0.110,999.0,99.0 +1991,6,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.2,56,101600,536,1322,431,300,449,117,32000,43300,14400,2270,330,5.1,2,2,11.2,77777,9,999999999,459,0.2230,0,88,0.110,999.0,99.0 +1991,6,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,21.1,55,101700,261,1322,428,97,134,71,10300,10000,8300,1350,340,2.6,3,3,11.2,77777,9,999999999,459,0.2230,0,88,0.110,0.0,6.0 +1991,6,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.2,65,101700,28,628,416,6,9,5,600,400,600,100,360,4.1,2,2,11.2,77777,9,999999999,469,0.2230,0,88,0.110,999.0,99.0 +1991,6,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.8,72,101800,0,0,414,0,0,0,0,0,0,0,360,2.1,3,3,11.2,77777,9,999999999,469,0.2230,0,88,0.110,999.0,99.0 +1991,6,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,23.3,77,101800,0,0,408,0,0,0,0,0,0,0,20,1.0,2,2,11.2,77777,9,999999999,469,0.2230,0,88,0.110,0.0,99.0 +1991,6,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.8,72,101800,0,0,446,0,0,0,0,0,0,0,30,1.0,9,9,11.2,9000,9,999999999,469,0.2230,0,88,0.110,999.0,99.0 +1991,6,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.3,77,101700,0,0,443,0,0,0,0,0,0,0,50,1.5,9,9,11.2,9000,9,999999999,469,0.2230,0,88,0.110,999.0,99.0 +1991,6,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,23.3,79,101700,0,0,440,0,0,0,0,0,0,0,50,0.5,9,9,11.2,9000,9,999999999,469,0.2240,0,88,0.110,0.0,6.0 +1991,6,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101600,0,0,438,0,0,0,0,0,0,0,90,1.0,9,9,11.2,9000,9,999999999,469,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101600,0,0,431,0,0,0,0,0,0,0,90,0.5,9,9,11.2,9000,9,999999999,469,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,24.4,93,101600,0,0,402,0,0,0,0,0,0,0,70,1.0,3,3,11.2,77777,9,999999999,469,0.2240,0,88,0.110,0.0,99.0 +1991,6,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,24.4,96,101600,0,0,394,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,469,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,24.4,90,101600,16,474,404,3,14,2,0,0,0,0,70,1.0,3,3,11.2,77777,9,999999999,469,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,24.4,87,101600,230,1322,404,79,223,40,8500,15700,5800,700,70,1.5,2,2,6.4,77777,9,999999999,469,0.2240,0,88,0.110,0.0,6.0 +1991,6,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,101600,506,1322,415,291,458,115,30800,43500,14100,2210,0,0.0,3,3,11.2,77777,9,999999999,469,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,24.4,77,101700,765,1322,451,207,63,171,22900,6300,19300,5800,150,2.1,9,9,11.2,4500,9,999999999,469,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,22.8,61,101700,989,1322,430,647,612,189,68600,62200,21900,5870,150,1.5,3,3,11.2,77777,9,999999999,480,0.2240,0,88,0.110,0.0,99.0 +1991,6,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,21.7,54,101600,1163,1322,430,840,750,180,88000,75400,21600,7970,240,1.5,2,2,11.2,77777,9,999999999,480,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,23.3,57,101600,1273,1322,440,909,723,212,98400,74400,26600,17680,240,1.5,3,3,11.2,77777,9,999999999,480,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,23.3,56,101500,1314,1322,439,982,797,189,104200,80500,24000,24160,230,1.0,2,2,11.2,77777,9,999999999,480,0.2240,0,88,0.110,0.0,6.0 +1991,6,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,34.4,21.7,48,101400,1282,1322,481,567,122,448,62600,13000,50000,31740,0,0.0,9,9,11.2,7500,9,999999999,490,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,25.6,91,101400,1179,1322,443,693,386,348,74000,40300,38000,18180,310,5.1,9,9,9.6,1050,9,999999999,490,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,24.4,85,101300,1012,1322,441,391,90,322,43100,9200,36100,12440,310,1.0,9,9,11.2,6000,9,999999999,490,0.2240,0,88,0.110,0.0,99.0 +1991,6,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,25.6,80,101300,793,1322,456,273,72,230,30100,7300,25700,7620,300,1.5,9,9,11.2,6000,9,999999999,500,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,25.0,85,101400,537,1322,458,98,0,98,11500,0,11500,4200,340,0.5,10,10,11.2,3000,9,999999999,500,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101500,262,1322,453,38,0,38,4400,0,4400,1500,50,4.1,10,10,11.2,750,9,999999999,500,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.9,97,101600,29,628,436,4,0,4,500,0,500,160,110,6.7,10,10,11.2,900,9,999999999,500,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,24.4,100,101500,0,0,437,0,0,0,0,0,0,0,90,4.1,10,10,11.2,2400,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,23.9,100,101500,0,0,434,0,0,0,0,0,0,0,50,1.5,10,10,11.2,2400,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.9,97,101400,0,0,436,0,0,0,0,0,0,0,100,3.6,10,10,11.2,2400,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1991,6,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.9,97,101400,0,0,436,0,0,0,0,0,0,0,110,1.5,10,10,11.2,2400,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1991,6,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,23.9,94,101300,0,0,419,0,0,0,0,0,0,0,360,0.5,9,8,11.2,6000,9,999999999,519,0.2250,0,88,0.110,0.0,6.0 +1991,6,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101300,0,0,412,0,0,0,0,0,0,0,90,1.0,9,7,9.6,6000,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.8,97,101300,0,0,388,0,0,0,0,0,0,0,90,1.0,3,3,9.6,77777,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,22.2,88,101300,0,0,389,0,0,0,0,0,0,0,70,0.5,2,2,11.2,77777,9,999999999,519,0.2250,0,88,0.110,0.0,99.0 +1991,6,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101400,0,0,393,0,0,0,0,0,0,0,70,1.0,3,3,11.2,77777,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101400,16,474,411,2,0,2,0,0,0,0,60,1.0,9,7,11.2,3000,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101400,229,1321,396,80,145,55,8500,10000,6800,1010,70,2.1,3,3,9.6,77777,9,999999999,530,0.2250,0,88,0.110,0.0,6.0 +1991,6,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101400,505,1321,399,276,392,126,29000,37200,14800,2440,50,2.1,2,2,11.2,77777,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.2,72,101500,764,1321,411,480,511,185,51400,52200,21100,4220,60,0.5,3,3,11.2,77777,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,22.2,70,101400,989,1321,410,660,571,233,71600,59500,27000,7230,0,0.0,2,2,11.2,77777,9,999999999,530,0.2250,0,88,0.110,0.0,99.0 +1991,6,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.2,63,101400,1162,1321,423,821,694,210,87900,71000,25300,10150,170,2.6,3,3,11.2,77777,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,22.8,63,101400,1273,1321,423,902,728,200,94700,73200,24000,15480,160,1.0,2,2,11.2,77777,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,20.6,52,101300,1314,1321,430,977,791,190,103600,79800,24100,24200,240,1.5,3,3,11.2,77777,9,999999999,530,0.2250,0,88,0.110,0.0,6.0 +1991,6,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,18.9,44,101200,1282,1321,430,911,722,209,98700,74300,26400,18630,250,0.5,2,2,11.2,77777,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,18.3,41,101200,1179,1321,436,769,598,235,81800,60900,27300,11990,270,1.0,3,3,11.2,77777,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.8,21.1,50,101100,1012,1321,433,675,638,186,71800,65000,21800,6060,320,1.5,2,2,11.2,77777,9,999999999,540,0.2250,0,88,0.110,0.0,99.0 +1991,6,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.8,58,101100,794,1321,459,294,144,207,32600,15200,23500,5590,290,1.5,9,8,11.2,1500,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101200,537,1321,416,210,135,155,23000,13400,17500,3640,160,5.7,9,7,11.2,1440,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.2,76,101300,262,1321,426,79,14,77,8800,500,8700,2540,220,3.1,9,8,11.2,3000,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101300,29,628,414,6,3,5,600,200,600,130,150,1.5,9,7,11.2,2400,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101300,0,0,430,0,0,0,0,0,0,0,100,0.5,10,9,11.2,2400,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.4,22.8,82,101300,0,0,413,0,0,0,0,0,0,0,0,0.9,9,7,11.2,2400,9,999999999,540,0.2250,0,88,0.110,0.0,99.0 +1991,6,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.3,22.8,85,101300,0,0,428,0,0,0,0,0,0,0,0,1.2,10,9,11.2,3600,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1991,6,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.1,22.8,85,101300,0,0,427,0,0,0,0,0,0,0,100,1.6,10,9,11.2,3600,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.9,22.8,84,101200,0,0,402,0,0,0,0,0,0,0,130,2.0,10,5,11.2,3600,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.7,22.8,91,101200,0,0,398,0,0,0,0,0,0,0,110,2.4,9,4,11.2,4500,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.6,22.8,88,101200,0,0,397,0,0,0,0,0,0,0,130,2.7,9,4,11.2,7500,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,22.8,91,101200,0,0,396,0,0,0,0,0,0,0,160,3.1,9,4,11.2,7500,9,999999999,540,0.2250,0,88,0.110,0.0,99.0 +1991,7,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101200,0,0,396,0,0,0,0,0,0,0,160,2.6,9,4,11.2,3000,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101200,15,474,403,3,0,3,0,0,0,0,150,3.6,10,5,11.2,900,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101300,227,1321,403,78,70,66,8500,5100,7600,1410,270,2.1,9,4,11.2,900,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.8,79,101300,503,1321,412,275,112,232,30000,10900,25800,5690,240,3.6,10,5,11.2,1200,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.8,74,101400,763,1321,418,445,304,269,47400,32100,28800,6690,250,3.1,10,5,11.2,2400,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,23.3,77,101400,988,1321,419,561,383,274,59700,39800,29900,8580,240,5.1,10,5,11.2,1200,9,999999999,530,0.2250,0,88,0.110,0.0,99.0 +1991,7,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.8,72,101400,1161,1321,418,661,354,350,73000,38500,39100,15750,250,4.1,9,4,11.2,3000,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.8,70,101400,1273,1321,421,863,411,467,94500,44700,51400,34520,230,4.1,9,4,11.2,3000,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,23.3,70,101300,1314,1321,424,709,413,298,78400,43400,35100,40480,240,4.1,9,4,11.2,3000,9,999999999,519,0.2250,0,88,0.110,0.0,6.0 +1991,7,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.3,67,101300,1282,1321,431,870,525,360,93900,54900,40500,32720,250,4.1,10,5,11.2,3000,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101300,1179,1321,410,690,414,320,74400,43300,35700,16690,300,3.1,10,5,11.2,720,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101300,1013,1321,404,610,426,284,65100,44300,31000,9350,280,0.5,9,4,11.2,720,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,24.4,90,101300,794,1321,411,407,338,204,44600,36000,22900,4910,260,0.5,10,5,11.2,2100,9,999999999,509,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,24.4,87,101300,538,1321,414,218,199,136,23400,19800,15400,2780,220,1.5,10,5,11.2,2400,9,999999999,509,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,23.3,82,101300,262,1321,413,88,44,79,9600,3600,8900,1930,240,1.5,10,5,11.2,3600,9,999999999,509,0.2250,0,88,0.110,4.0,6.0 +1991,7,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101300,29,628,410,6,0,6,700,0,700,230,220,2.6,9,4,11.2,3600,9,999999999,509,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.3,82,101400,0,0,409,0,0,0,0,0,0,0,230,3.1,9,4,11.2,1470,9,999999999,509,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,23.9,82,101400,0,0,393,0,0,0,0,0,0,0,230,3.6,3,0,11.2,77777,9,999999999,500,0.2250,0,88,0.110,0.0,99.0 +1991,7,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101400,0,0,413,0,0,0,0,0,0,0,230,3.1,9,4,11.2,3000,9,999999999,500,0.2250,0,88,0.110,999.0,99.0 +1991,7,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.9,79,101400,0,0,416,0,0,0,0,0,0,0,230,5.1,9,4,11.2,3000,9,999999999,500,0.2250,0,88,0.110,999.0,99.0 +1991,7,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,23.9,82,101400,0,0,420,0,0,0,0,0,0,0,220,3.6,9,6,11.2,7500,9,999999999,500,0.2260,0,88,0.110,0.0,6.0 +1991,7,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.3,77,101300,0,0,422,0,0,0,0,0,0,0,210,6.7,9,6,11.2,1200,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101300,0,0,422,0,0,0,0,0,0,0,250,3.6,10,8,11.2,1200,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,23.9,88,101300,0,0,414,0,0,0,0,0,0,0,240,4.1,9,6,11.2,2400,9,999999999,490,0.2260,0,88,0.110,0.0,99.0 +1991,7,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,24.4,87,101400,0,0,418,0,0,0,0,0,0,0,240,4.1,9,6,11.2,2400,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,25.6,97,101500,15,451,416,2,0,2,0,0,0,0,210,2.6,9,6,11.2,1200,9,999999999,480,0.2260,0,88,0.110,999.0,99.0 +1991,7,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,25.6,94,101500,225,1321,431,62,17,59,6800,1300,6600,1460,250,3.6,10,8,11.2,2400,9,999999999,480,0.2260,0,88,0.110,2.0,6.0 +1991,7,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,25.6,88,101500,502,1321,430,172,98,135,18900,9600,15300,3130,250,3.1,10,7,11.2,4500,9,999999999,480,0.2260,0,88,0.110,999.0,99.0 +1991,7,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,24.4,75,101500,762,1321,445,276,71,235,30400,7200,26200,7550,250,4.6,10,8,11.2,4500,9,999999999,480,0.2260,0,88,0.110,999.0,99.0 +1991,7,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,22.8,72,101600,987,1321,424,386,141,281,42900,15000,31700,9130,220,5.1,9,6,11.2,4500,9,999999999,480,0.2260,0,88,0.110,0.0,99.0 +1991,7,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.8,59,101500,1161,1321,456,555,188,389,61300,20100,43600,17180,260,5.1,10,8,11.2,7500,9,999999999,480,0.2260,0,88,0.110,999.0,99.0 +1991,7,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.2,56,101500,1272,1321,451,921,524,416,97900,54700,45100,35210,280,5.1,10,7,11.2,4500,9,999999999,480,0.2260,0,88,0.110,999.0,99.0 +1991,7,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,25.0,75,101500,1313,1321,449,505,80,425,55900,8200,47700,33960,220,5.1,10,8,11.2,4500,9,999999999,480,0.2260,0,88,0.110,0.0,6.0 +1991,7,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.9,70,101500,1282,1321,441,609,152,462,67300,16200,51500,32800,220,6.2,10,7,11.2,1200,9,999999999,480,0.2260,0,88,0.110,999.0,99.0 +1991,7,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.8,68,101500,1179,1321,443,611,204,429,67200,21700,47800,19910,220,4.6,10,8,11.2,7500,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,23.9,74,101400,1013,1321,429,647,224,475,69700,23600,51500,15990,210,4.6,9,6,11.2,7500,9,999999999,490,0.2260,0,88,0.110,0.0,99.0 +1991,7,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.3,67,101400,794,1321,447,313,77,267,34500,7800,29800,8610,230,4.6,10,8,11.2,7500,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101400,538,1321,436,244,68,216,26700,6700,24000,5670,220,4.6,10,7,11.2,7500,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,23.3,72,101400,262,1321,440,86,7,84,9400,300,9300,2680,240,4.6,10,8,11.2,77777,9,999999999,490,0.2260,0,88,0.110,0.0,6.0 +1991,7,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,24.4,79,101400,29,628,427,6,0,6,700,0,700,230,220,5.1,9,6,11.2,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101400,0,0,426,0,0,0,0,0,0,0,210,6.2,9,6,11.2,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,23.3,74,101400,0,0,411,0,0,0,0,0,0,0,220,6.2,2,2,11.2,77777,9,999999999,490,0.2260,0,88,0.110,0.0,99.0 +1991,7,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,101500,0,0,415,0,0,0,0,0,0,0,220,5.1,3,3,11.2,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101500,0,0,412,0,0,0,0,0,0,0,220,4.6,2,2,11.2,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,23.9,77,101500,0,0,412,0,0,0,0,0,0,0,210,4.1,2,2,11.2,77777,9,999999999,490,0.2260,0,88,0.110,0.0,6.0 +1991,7,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,25.0,88,101500,0,0,411,0,0,0,0,0,0,0,220,5.1,3,3,11.2,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101500,0,0,412,0,0,0,0,0,0,0,220,4.1,2,2,11.2,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,24.4,87,101500,0,0,408,0,0,0,0,0,0,0,210,4.1,3,3,11.2,77777,9,999999999,490,0.2260,0,88,0.110,0.0,99.0 +1991,7,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101500,0,0,411,0,0,0,0,0,0,0,160,3.1,9,6,11.2,7500,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101500,14,451,414,2,0,2,0,0,0,0,170,4.6,9,6,11.2,900,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101600,224,1321,402,67,4,66,7400,100,7300,2130,180,4.1,9,6,4.8,900,9,999999999,490,0.2260,0,88,0.110,4.0,6.0 +1991,7,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101600,500,1321,420,188,87,155,20600,8300,17500,4270,170,4.1,9,6,11.2,7500,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,25.0,77,101600,761,1321,434,348,135,270,37800,14000,29700,7140,180,2.6,9,6,11.2,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,25.0,70,101600,986,1321,433,598,295,378,64200,31800,40400,12130,210,4.6,3,3,11.2,77777,9,999999999,490,0.2260,0,88,0.110,0.0,99.0 +1991,7,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,25.0,68,101500,1160,1321,432,772,467,362,82000,48700,39200,17730,210,4.6,2,2,11.2,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,23.9,63,101500,1272,1321,435,867,460,423,91900,48000,45600,35720,210,4.1,3,3,11.2,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,23.9,63,101500,1313,1321,445,816,295,522,88900,32000,57000,59530,220,4.1,9,6,11.2,77777,9,999999999,490,0.2260,0,88,0.110,3.0,6.0 +1991,7,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,24.4,65,101400,1282,1321,446,869,307,570,93700,33300,61400,45700,230,5.7,9,6,11.2,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,23.9,63,101400,1180,1321,431,759,430,375,80500,44900,40400,19740,220,5.1,2,2,11.2,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.2,25.0,66,101400,1013,1321,450,516,169,386,56300,17900,42500,12990,220,6.2,9,6,11.2,77777,9,999999999,490,0.2260,0,88,0.110,0.0,99.0 +1991,7,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,23.9,62,101300,795,1321,448,389,82,339,42600,8400,37500,10300,240,5.7,9,6,11.2,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,23.3,65,101400,538,1321,438,208,99,167,22800,9600,18800,4700,240,5.1,9,6,11.2,77777,9,999999999,480,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,23.3,67,101400,262,1321,435,81,11,78,8900,400,8800,2560,230,3.6,9,6,11.2,77777,9,999999999,480,0.2260,0,88,0.110,0.0,6.0 +1991,7,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101400,29,628,426,6,0,6,700,0,700,230,220,4.1,9,6,11.2,77777,9,999999999,480,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101500,0,0,426,0,0,0,0,0,0,0,230,3.6,9,6,11.2,7500,9,999999999,480,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,23.9,77,101500,0,0,426,0,0,0,0,0,0,0,240,3.6,9,6,11.2,7500,9,999999999,480,0.2260,0,88,0.110,0.0,99.0 +1991,7,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101600,0,0,426,0,0,0,0,0,0,0,220,3.1,9,6,11.2,7500,9,999999999,480,0.2260,0,88,0.110,999.0,99.0 +1991,7,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.3,77,101500,0,0,422,0,0,0,0,0,0,0,230,3.1,9,6,11.2,7500,9,999999999,480,0.2260,0,88,0.110,999.0,99.0 +1991,7,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,25.0,85,101600,0,0,446,0,0,0,0,0,0,0,220,2.6,9,9,11.2,7500,9,999999999,480,0.2270,0,88,0.110,0.0,6.0 +1991,7,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,24.4,85,101500,0,0,441,0,0,0,0,0,0,0,240,1.0,9,9,11.2,77777,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,24.4,87,101500,0,0,438,0,0,0,0,0,0,0,160,2.6,9,9,11.2,77777,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,24.4,87,101500,0,0,438,0,0,0,0,0,0,0,150,3.6,9,9,11.2,77777,9,999999999,469,0.2270,0,88,0.110,0.0,99.0 +1991,7,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,24.4,87,101500,0,0,438,0,0,0,0,0,0,0,180,4.1,9,9,11.2,77777,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101500,14,451,438,2,0,2,0,0,0,0,180,5.1,9,9,11.2,77777,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,23.9,82,101600,222,1321,441,61,19,58,6700,1500,6500,1430,200,5.1,9,9,11.2,77777,9,999999999,469,0.2270,0,88,0.110,0.0,6.0 +1991,7,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101600,499,1321,447,152,24,143,17200,1700,16500,5370,190,3.6,9,9,11.2,77777,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,24.4,75,101700,759,1321,454,222,75,179,24500,7500,20200,6010,200,5.1,9,9,11.2,7500,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,23.9,79,101700,985,1321,444,489,232,316,53200,25100,34500,9830,270,3.6,9,9,11.2,900,9,999999999,469,0.2270,0,88,0.110,0.0,99.0 +1991,7,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.9,72,101700,1159,1321,454,532,147,402,58600,15700,44800,17690,210,4.1,9,9,11.2,2400,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,25.0,70,101700,1271,1321,466,549,164,391,61200,17600,44200,25970,210,4.1,9,9,11.2,900,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,24.4,72,101600,1313,1321,458,226,95,131,27200,10400,16800,14290,290,0.5,9,9,11.2,2400,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,24.4,70,101600,1282,1321,462,590,179,416,65500,19200,46900,29540,300,3.1,9,9,11.2,7500,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.9,66,101500,1180,1321,464,552,231,345,61100,25100,38600,16410,290,2.1,9,9,11.2,7500,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,23.9,66,101500,1014,1321,464,287,111,201,32500,11900,23400,6760,220,4.6,9,9,11.2,7500,9,999999999,480,0.2270,0,88,0.110,0.0,99.0 +1991,7,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,24.4,70,101500,795,1321,462,308,78,260,33800,7900,29000,8430,220,4.6,9,9,11.2,7500,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,24.4,72,101500,538,1321,458,163,48,143,17900,4600,16000,4150,220,4.6,9,9,11.2,7500,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,23.9,72,101600,262,1321,454,80,36,72,8700,2900,8100,1800,220,3.6,9,9,11.2,7500,9,999999999,480,0.2270,0,88,0.110,0.0,6.0 +1991,7,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101600,29,628,447,5,7,5,600,300,600,100,220,3.6,9,9,11.2,7500,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101600,0,0,416,0,0,0,0,0,0,0,240,3.1,3,3,11.2,77777,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,23.3,74,101600,0,0,411,0,0,0,0,0,0,0,220,4.1,2,2,11.2,77777,9,999999999,480,0.2270,0,88,0.110,0.0,99.0 +1991,7,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,101600,0,0,415,0,0,0,0,0,0,0,220,4.6,3,3,11.2,77777,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1991,7,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.8,72,101700,0,0,410,0,0,0,0,0,0,0,240,4.6,2,2,11.2,77777,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,23.3,77,101700,0,0,403,0,0,0,0,0,0,0,240,3.1,2,1,11.2,77777,9,999999999,480,0.2270,0,88,0.110,0.0,6.0 +1991,7,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,24.4,85,101600,0,0,414,0,0,0,0,0,0,0,230,3.1,9,4,11.2,77777,9,999999999,490,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101600,0,0,403,0,0,0,0,0,0,0,260,1.5,9,4,11.2,77777,9,999999999,490,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.9,90,101600,0,0,404,0,0,0,0,0,0,0,0,0.0,9,4,11.2,77777,9,999999999,490,0.2270,0,88,0.110,0.0,99.0 +1991,7,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,24.4,90,101700,0,0,408,0,0,0,0,0,0,0,230,1.5,9,4,11.2,7500,9,999999999,490,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,25.0,94,101700,13,429,408,2,0,2,0,0,0,0,160,2.6,9,4,11.2,7500,9,999999999,490,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.3,85,101700,220,1321,406,75,19,72,8200,1500,8000,1690,0,0.0,9,4,11.2,7500,9,999999999,490,0.2270,0,88,0.110,2.0,6.0 +1991,7,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,25.0,82,101700,497,1321,420,224,162,163,24300,15700,18400,3770,120,2.1,9,4,11.2,7500,9,999999999,490,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,23.9,74,101700,758,1321,422,390,246,249,41800,26000,26900,6080,120,1.0,9,4,11.2,77777,9,999999999,490,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,23.9,68,101700,984,1321,419,645,565,224,70100,58900,26200,6870,130,1.5,3,1,11.2,77777,9,999999999,480,0.2270,0,88,0.110,0.0,99.0 +1991,7,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,23.9,63,101700,1158,1321,425,751,578,245,79600,58700,28000,11560,0,0.0,2,1,11.2,77777,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,24.4,64,101700,1271,1321,428,888,643,268,94400,65400,31300,21730,0,0.0,3,1,11.2,77777,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,24.4,64,101700,1313,1321,442,916,503,415,97800,52500,45500,55770,300,2.1,9,4,11.2,7500,9,999999999,480,0.2270,0,88,0.110,0.0,6.0 +1991,7,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,24.4,65,101700,1282,1321,439,844,449,408,90000,46900,44400,37260,270,3.1,9,4,11.2,6000,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,23.9,63,101600,1180,1321,438,805,520,340,86300,54300,37600,17830,270,2.1,9,4,11.2,6000,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.8,65,101600,1014,1321,427,554,293,328,60200,31700,35800,10700,220,3.1,9,4,11.2,3000,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.8,65,101600,795,1321,427,480,354,267,51500,37600,28800,6750,220,4.1,9,4,11.2,3000,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,23.9,68,101600,538,1321,432,253,190,175,27400,18800,19800,4120,250,2.6,9,4,11.2,6000,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.9,72,101700,262,1321,432,76,22,72,8400,1800,8000,1800,260,1.5,10,6,11.2,6000,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,101800,29,628,418,6,0,6,700,0,700,230,280,1.0,9,4,11.2,6000,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101800,0,0,419,0,0,0,0,0,0,0,0,0.0,9,4,11.2,6000,9,999999999,459,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,24.4,85,101900,0,0,414,0,0,0,0,0,0,0,90,1.5,9,4,11.2,6000,9,999999999,459,0.2270,0,88,0.110,0.0,99.0 +1991,7,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,24.4,85,101900,0,0,414,0,0,0,0,0,0,0,0,0.0,9,4,11.2,3000,9,999999999,459,0.2270,0,88,0.110,999.0,99.0 +1991,7,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,25.0,88,101900,0,0,414,0,0,0,0,0,0,0,90,2.1,9,4,11.2,7500,9,999999999,459,0.2270,0,88,0.110,999.0,99.0 +1991,7,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,24.4,87,101800,0,0,411,0,0,0,0,0,0,0,130,3.1,9,4,11.2,7500,9,999999999,459,0.2280,0,88,0.110,0.0,6.0 +1991,7,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101800,0,0,407,0,0,0,0,0,0,0,120,3.1,9,4,11.2,7500,9,999999999,450,0.2280,0,88,0.110,999.0,99.0 +1991,7,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101800,0,0,407,0,0,0,0,0,0,0,130,5.7,9,4,11.2,7500,9,999999999,450,0.2280,0,88,0.110,999.0,99.0 +1991,7,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.3,87,101800,0,0,403,0,0,0,0,0,0,0,140,5.7,9,4,11.2,7500,9,999999999,450,0.2280,0,88,0.110,0.0,99.0 +1991,7,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101700,0,0,400,0,0,0,0,0,0,0,130,1.5,9,4,11.2,7500,9,999999999,450,0.2280,0,88,0.110,999.0,99.0 +1991,7,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101700,13,429,403,2,2,2,0,0,0,0,0,0.0,9,4,11.2,7500,9,999999999,450,0.2280,0,88,0.110,999.0,99.0 +1991,7,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.8,82,101800,219,1321,406,74,78,61,8000,5600,7100,1300,120,2.6,9,4,11.2,7500,9,999999999,440,0.2280,0,88,0.110,0.0,6.0 +1991,7,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101900,496,1321,405,281,320,161,29700,31000,18000,3410,120,2.6,9,4,11.2,7500,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.2,70,101900,757,1321,417,459,430,213,48300,43800,23200,4900,170,1.5,9,4,11.2,7500,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,22.2,61,101800,983,1321,430,628,440,301,66300,45700,32200,9420,270,0.5,9,4,11.2,7500,9,999999999,440,0.2280,0,88,0.110,0.0,99.0 +1991,7,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.2,57,101800,1158,1321,415,860,785,171,90500,79100,21000,7520,170,2.6,3,0,11.2,77777,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,21.7,54,101800,1270,1321,417,950,807,174,101300,81600,22600,13450,180,1.5,2,0,11.2,77777,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,22.8,58,101800,1313,1321,418,992,810,186,105400,81800,23900,23130,200,2.1,3,0,11.2,77777,9,999999999,440,0.2280,0,88,0.110,0.0,6.0 +1991,7,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,22.2,52,101700,1282,1321,423,961,810,175,102500,82000,22800,14810,200,1.5,2,0,11.2,77777,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,22.8,54,101700,1180,1321,424,854,762,173,90000,76800,21300,8270,210,5.7,3,0,11.2,77777,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.7,22.2,57,101700,1014,1321,436,676,482,306,71500,50100,33000,10160,170,4.6,9,4,11.2,7500,9,999999999,440,0.2280,0,88,0.110,0.0,99.0 +1991,7,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,24.4,65,101700,795,1321,439,480,449,210,51000,46000,23200,4990,240,3.6,9,4,11.2,7500,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,22.8,63,101700,538,1321,430,235,260,129,25500,25900,14900,2610,250,1.5,9,4,11.2,7500,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,23.3,67,101800,262,1321,428,113,93,94,12000,7200,10600,2020,280,2.1,9,4,11.2,7500,9,999999999,440,0.2280,0,88,0.110,0.0,6.0 +1991,7,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.8,70,101800,28,628,421,6,4,6,700,200,700,160,280,1.5,9,4,11.2,7500,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,101900,0,0,418,0,0,0,0,0,0,0,300,1.0,9,4,11.2,7500,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,23.9,77,101900,0,0,419,0,0,0,0,0,0,0,320,1.0,9,4,11.2,7500,9,999999999,440,0.2280,0,88,0.110,0.0,99.0 +1991,7,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,102000,0,0,412,0,0,0,0,0,0,0,360,1.0,9,4,11.2,7500,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,102000,0,0,410,0,0,0,0,0,0,0,100,2.1,9,4,11.2,77777,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.9,88,101900,0,0,434,0,0,0,0,0,0,0,90,1.0,9,9,11.2,77777,9,999999999,440,0.2280,0,88,0.110,0.0,6.0 +1991,7,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101900,0,0,433,0,0,0,0,0,0,0,100,1.5,9,9,11.2,77777,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101900,0,0,433,0,0,0,0,0,0,0,170,1.0,9,9,11.2,77777,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.3,87,101800,0,0,431,0,0,0,0,0,0,0,20,1.0,9,9,11.2,77777,9,999999999,440,0.2280,0,88,0.110,0.0,99.0 +1991,7,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101900,0,0,427,0,0,0,0,0,0,0,120,1.5,9,9,11.2,77777,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101900,12,407,431,2,2,2,0,0,0,0,0,0.0,9,9,11.2,77777,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,23.9,82,101900,217,1321,406,95,283,48,9900,19300,6800,860,60,0.5,2,2,11.2,77777,9,999999999,440,0.2280,0,88,0.110,0.0,6.0 +1991,7,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,23.3,72,102000,494,1321,418,251,408,99,27100,38600,12600,1870,70,2.1,3,3,11.2,77777,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.9,70,102000,755,1321,421,461,502,174,49500,51300,20200,3920,60,2.1,2,2,11.2,77777,9,999999999,440,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,21.1,55,102000,982,1321,428,629,621,167,67100,63400,19900,5170,150,2.6,3,3,11.2,77777,9,999999999,430,0.2280,0,88,0.110,0.0,99.0 +1991,7,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,21.7,56,102000,1157,1321,428,691,523,232,73400,53300,26600,10940,160,2.1,2,2,11.2,77777,9,999999999,430,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,22.2,54,102000,1270,1321,439,905,749,185,95800,75600,23000,14140,230,2.1,3,3,11.2,77777,9,999999999,430,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,21.7,49,101900,1312,1321,440,934,753,186,99300,76100,23600,23010,250,1.5,2,2,11.2,77777,9,999999999,430,0.2280,0,88,0.110,0.0,6.0 +1991,7,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,21.7,49,101900,1282,1321,444,951,691,280,101000,70100,32800,24690,240,1.5,3,3,11.2,77777,9,999999999,430,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,18.9,39,101800,1180,1321,443,869,742,205,93300,76100,25200,10600,270,2.1,2,2,11.2,77777,9,999999999,430,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,34.4,21.1,46,101800,1014,1321,447,640,595,183,68100,60700,21400,5990,300,3.1,3,3,11.2,77777,9,999999999,430,0.2280,0,88,0.110,0.0,99.0 +1991,7,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,22.2,54,101700,795,1321,435,539,705,115,57800,71500,14700,2810,300,3.1,2,2,11.2,77777,9,999999999,430,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.8,59,101800,538,1321,466,190,39,174,20800,3800,19300,4850,310,2.6,9,9,11.2,77777,9,999999999,419,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,22.8,61,101800,262,1321,462,46,23,41,5000,1800,4700,1120,300,3.1,9,9,11.2,7500,9,999999999,419,0.2280,0,88,0.110,0.0,6.0 +1991,7,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.8,68,101900,28,628,452,5,2,5,600,100,600,130,310,2.1,9,9,11.2,7500,9,999999999,419,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101900,0,0,453,0,0,0,0,0,0,0,310,3.1,9,9,11.2,7500,9,999999999,419,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,23.9,77,102000,0,0,447,0,0,0,0,0,0,0,340,1.5,9,9,11.2,7500,9,999999999,419,0.2280,0,88,0.110,0.0,99.0 +1991,7,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.8,72,102000,0,0,446,0,0,0,0,0,0,0,90,3.6,9,9,11.2,7500,9,999999999,419,0.2280,0,88,0.110,999.0,99.0 +1991,7,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.8,79,102000,0,0,406,0,0,0,0,0,0,0,20,3.6,3,3,11.2,77777,9,999999999,419,0.2280,0,88,0.110,999.0,99.0 +1991,7,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,23.3,82,101900,0,0,406,0,0,0,0,0,0,0,70,0.5,3,3,11.2,77777,9,999999999,419,0.2290,0,88,0.110,0.0,6.0 +1991,7,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101900,0,0,399,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,419,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101800,0,0,400,0,0,0,0,0,0,0,100,2.1,3,3,11.2,77777,9,999999999,409,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,22.8,85,101800,0,0,396,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,409,0.2290,0,88,0.110,0.0,99.0 +1991,7,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101800,0,0,396,0,0,0,0,0,0,0,30,1.5,3,3,11.2,77777,9,999999999,409,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101800,12,407,389,1,0,1,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,409,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,24.4,85,101900,215,1321,410,64,15,61,7000,400,7000,1990,0,0.0,3,3,11.2,77777,9,999999999,409,0.2290,0,88,0.110,0.0,6.0 +1991,7,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,24.4,75,101900,493,1321,418,219,182,151,23800,17600,17300,3490,0,0.0,2,2,11.2,77777,9,999999999,409,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,24.4,68,102000,754,1321,432,434,331,245,46500,35000,26500,5950,330,2.1,3,3,11.2,77777,9,999999999,409,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.7,25.0,68,102000,981,1321,432,613,390,323,66500,42100,35200,10030,330,1.0,2,2,11.2,77777,9,999999999,409,0.2290,0,88,0.110,0.0,99.0 +1991,7,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,20.6,49,102000,1156,1321,437,787,459,384,82900,47800,41000,18640,360,1.0,3,3,11.2,77777,9,999999999,419,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,17.8,39,101900,1269,1321,435,858,454,422,91100,47400,45500,35060,300,1.0,2,2,11.2,77777,9,999999999,419,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,21.1,46,101900,1312,1321,447,896,457,442,95200,47700,47700,58560,290,1.5,3,3,11.2,77777,9,999999999,419,0.2290,0,88,0.110,0.0,6.0 +1991,7,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.7,63,101800,1282,1321,429,750,242,514,82100,25700,57100,36460,250,5.1,9,6,11.2,7500,9,999999999,419,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,22.2,61,101700,1180,1321,437,652,265,415,71200,28800,45500,20120,290,2.1,9,6,11.2,7500,9,999999999,419,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.8,22.2,54,101700,1014,1321,450,549,258,350,59400,27900,37900,11540,290,2.1,9,6,11.2,7500,9,999999999,419,0.2290,0,88,0.110,0.0,99.0 +1991,7,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,21.7,52,101700,795,1321,449,390,95,332,42700,9700,36800,10150,330,2.6,9,6,11.2,7500,9,999999999,430,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.2,57,101700,538,1321,443,225,131,171,24400,12900,19100,4020,310,3.6,9,6,11.2,9000,9,999999999,430,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,22.8,63,101700,262,1321,427,81,27,75,8800,2200,8400,1850,310,2.1,3,3,11.2,77777,9,999999999,430,0.2290,0,88,0.110,0.0,6.0 +1991,7,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.2,70,101700,28,628,410,5,0,5,600,0,600,200,300,2.6,2,2,11.2,77777,9,999999999,430,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.2,72,101700,0,0,411,0,0,0,0,0,0,0,290,2.6,3,3,11.2,77777,9,999999999,430,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101800,0,0,405,0,0,0,0,0,0,0,300,1.5,2,2,11.2,77777,9,999999999,430,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.8,79,101800,0,0,406,0,0,0,0,0,0,0,290,1.0,3,3,11.2,77777,9,999999999,440,0.2290,0,88,0.110,999.0,99.0 +1991,7,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.8,79,101800,0,0,402,0,0,0,0,0,0,0,270,1.0,2,2,11.2,77777,9,999999999,440,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,23.3,82,101700,0,0,402,0,0,0,0,0,0,0,280,1.0,2,2,11.2,77777,9,999999999,440,0.2290,0,88,0.110,0.0,6.0 +1991,7,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101600,0,0,400,0,0,0,0,0,0,0,290,1.0,3,3,11.2,77777,9,999999999,440,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101600,0,0,396,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,440,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,22.8,85,101600,0,0,400,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,440,0.2290,0,88,0.110,0.0,99.0 +1991,7,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101600,0,0,396,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,24.4,90,101700,11,385,426,1,0,1,0,0,0,0,0,0.0,9,8,11.2,7500,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,25.0,82,101700,213,1321,432,57,13,55,6400,300,6300,1850,0,0.0,9,7,11.2,77777,9,999999999,450,0.2290,0,88,0.110,0.0,6.0 +1991,7,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,24.4,75,101700,491,1321,445,198,40,183,21700,3800,20200,4780,180,2.6,9,8,11.2,77777,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,24.4,70,101700,753,1321,425,451,446,196,47700,45400,21800,4460,220,3.1,2,2,11.2,77777,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,25.0,70,101700,980,1321,456,630,344,375,67600,37100,40100,11930,220,4.1,9,8,11.2,7500,9,999999999,450,0.2290,0,88,0.110,0.0,99.0 +1991,7,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.9,66,101700,1156,1321,447,630,265,398,68800,28800,43600,17860,280,1.5,9,7,11.2,7500,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.2,70,101800,1269,1321,445,425,82,346,47700,8800,39200,22670,270,6.7,10,9,11.2,900,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,24.4,85,101700,1312,1321,441,501,165,337,56500,17800,38900,32440,230,2.6,10,9,11.2,6000,9,999999999,450,0.2290,0,88,0.110,1.0,6.0 +1991,7,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,24.4,77,101600,1282,1321,442,811,273,545,88500,29000,60300,38640,260,5.1,9,8,11.2,6000,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101600,1180,1321,436,589,269,349,65200,29300,39000,16630,260,3.6,9,7,11.2,6000,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,23.9,70,101500,1014,1321,457,294,103,215,33300,11100,24800,7240,270,2.1,10,9,11.2,7500,9,999999999,450,0.2290,0,88,0.110,0.0,99.0 +1991,7,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,23.3,65,101500,795,1321,443,333,145,246,36600,15200,27400,6660,300,2.6,9,7,11.2,7500,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.8,65,101500,538,1321,446,217,54,194,23700,5300,21500,5250,270,2.6,9,8,11.2,7500,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,23.3,70,101500,261,1321,436,71,24,66,7800,1900,7400,1670,270,1.5,9,7,11.2,7500,9,999999999,450,0.2290,0,88,0.110,0.0,6.0 +1991,7,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.8,74,101500,28,628,433,5,0,5,600,0,600,200,260,2.6,9,8,11.2,7500,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101500,0,0,406,0,0,0,0,0,0,0,260,2.1,2,2,11.2,77777,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,23.9,88,101600,0,0,404,0,0,0,0,0,0,0,270,2.1,3,3,11.2,77777,9,999999999,450,0.2290,0,88,0.110,0.0,99.0 +1991,7,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101600,0,0,400,0,0,0,0,0,0,0,280,1.5,2,2,11.2,77777,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101600,0,0,403,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.3,85,101500,0,0,403,0,0,0,0,0,0,0,250,1.5,3,3,11.2,77777,9,999999999,450,0.2290,0,88,0.110,0.0,6.0 +1991,7,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101500,0,0,399,0,0,0,0,0,0,0,250,1.5,2,2,11.2,77777,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101500,0,0,400,0,0,0,0,0,0,0,260,1.0,3,3,11.2,77777,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.3,87,101500,0,0,415,0,0,0,0,0,0,0,300,0.5,9,7,11.2,77777,9,999999999,450,0.2290,0,88,0.110,0.0,99.0 +1991,7,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101500,0,0,414,0,0,0,0,0,0,0,330,0.5,9,8,11.2,7500,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101500,10,385,414,1,0,1,0,0,0,0,0,0.0,9,7,11.2,77777,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.8,79,101600,211,1322,436,57,8,56,6400,200,6300,1870,0,0.0,10,9,11.2,7500,9,999999999,450,0.2290,0,88,0.110,0.0,6.0 +1991,7,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,23.9,74,101700,490,1322,434,242,135,192,25900,13000,21100,4440,0,0.0,9,7,11.2,77777,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,24.4,72,101700,752,1322,448,359,188,252,39200,19600,28000,6620,200,1.5,9,8,11.2,77777,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,23.9,66,101700,979,1322,447,538,284,327,58300,30700,35500,10140,240,3.1,9,7,11.2,2400,9,999999999,450,0.2290,0,88,0.110,0.0,99.0 +1991,7,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,23.9,60,101700,1155,1322,464,617,405,263,67700,42400,30500,12460,260,3.6,9,8,11.2,2400,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.8,59,101600,1269,1322,449,865,456,426,91600,47600,45800,35160,260,3.1,9,7,11.2,7500,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.8,59,101600,1312,1322,456,566,304,264,63300,32000,31500,34250,260,3.6,9,8,11.2,7500,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.8,58,101600,1282,1322,452,567,92,477,62600,9500,53300,29580,260,2.6,9,7,11.2,7500,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,23.3,61,101600,1180,1322,457,460,233,251,52100,25400,29300,11640,260,3.6,9,8,11.2,7500,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.7,22.8,59,101500,1014,1322,449,524,182,385,57300,19300,42400,12970,240,2.6,9,7,11.2,7500,9,999999999,450,0.2290,0,88,0.110,0.0,99.0 +1991,7,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.9,66,101500,795,1322,454,290,113,222,32100,11900,24900,6010,240,3.1,9,8,11.2,7500,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.3,63,101500,538,1322,446,177,179,104,19500,17800,12200,2030,240,3.6,9,7,11.2,7500,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,24.4,72,101500,261,1322,448,63,25,57,6800,2000,6400,1480,260,3.1,9,8,11.2,7500,9,999999999,450,0.2290,0,88,0.110,0.0,6.0 +1991,7,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,24.4,77,101500,27,628,435,5,0,5,600,0,600,200,250,3.1,9,7,11.2,7500,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,24.4,79,101500,0,0,438,0,0,0,0,0,0,0,270,1.5,9,8,11.2,7500,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,24.4,82,101600,0,0,429,0,0,0,0,0,0,0,270,1.0,9,7,11.2,7500,9,999999999,450,0.2290,0,88,0.110,0.0,99.0 +1991,7,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,25.0,85,101700,0,0,414,0,0,0,0,0,0,0,280,1.5,3,3,11.2,77777,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1991,7,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,24.4,87,101600,0,0,422,0,0,0,0,0,0,0,270,1.0,9,7,11.2,900,9,999999999,440,0.2290,0,88,0.110,999.0,99.0 +1991,7,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,24.4,87,101600,0,0,404,0,0,0,0,0,0,0,240,1.5,2,2,11.2,77777,9,999999999,440,0.2300,0,88,0.110,0.0,6.0 +1991,7,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.1,76,101600,0,0,440,0,0,0,0,0,0,0,30,2.6,10,10,4.8,900,9,999999999,440,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,101600,0,0,419,0,0,0,0,0,0,0,150,0.5,9,9,11.2,7500,9,999999999,440,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,23.3,94,101500,0,0,394,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,440,0.2300,0,88,0.110,0.0,99.0 +1991,7,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101500,0,0,431,0,0,0,0,0,0,0,180,1.0,9,9,11.2,77777,9,999999999,440,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,24.4,90,101600,10,385,447,1,0,1,0,0,0,0,190,2.1,10,10,11.2,7500,9,999999999,440,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,25.0,88,101700,209,1322,442,49,6,48,5500,100,5500,1670,0,0.0,9,9,11.2,3600,9,999999999,440,0.2300,0,88,0.110,10.0,6.0 +1991,7,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,25.0,82,101700,488,1322,449,121,46,103,13200,4300,11600,3020,270,0.5,9,9,11.2,3600,9,999999999,440,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,25.6,77,101700,750,1322,460,252,61,217,27700,6100,24200,7000,220,1.5,9,9,11.2,3600,9,999999999,440,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,25.0,70,101800,978,1322,466,362,33,337,39800,3400,37300,12430,190,2.6,9,9,11.2,3600,9,999999999,440,0.2300,0,88,0.110,0.0,99.0 +1991,7,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,24.4,68,101800,1154,1322,465,272,79,202,31200,8500,23700,8770,260,2.6,9,9,11.2,3000,9,999999999,440,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101800,1268,1322,442,273,0,273,33300,0,33300,13260,20,1.0,10,10,11.2,900,9,999999999,440,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,101800,1312,1322,442,354,0,354,42600,0,42600,16340,30,2.6,10,10,11.2,6000,9,999999999,440,0.2300,0,88,0.110,8.0,6.0 +1991,7,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101700,1281,1322,442,345,0,345,41500,0,41500,15940,70,2.6,10,10,11.2,6000,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101700,1180,1322,439,250,0,250,30400,0,30400,12180,120,3.1,10,10,11.2,3000,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101700,1014,1322,446,208,0,208,25000,0,25000,10130,160,5.1,10,10,11.2,3000,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.9,79,101600,795,1322,444,383,257,228,41500,27300,25000,5590,180,2.1,9,9,11.2,3000,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.3,77,101700,537,1322,456,88,0,88,10400,0,10400,3840,210,3.1,10,10,11.2,3000,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.9,90,101800,260,1322,444,45,0,45,5200,0,5200,1720,0,0.0,10,10,9.6,900,9,999999999,450,0.2300,0,88,0.110,4.0,6.0 +1991,7,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,21.1,93,101800,27,606,420,4,0,4,500,0,500,160,90,2.1,10,10,8.0,900,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,21.7,94,101700,0,0,424,0,0,0,0,0,0,0,120,1.0,10,10,11.2,900,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,22.2,90,101700,0,0,431,0,0,0,0,0,0,0,170,4.1,10,10,11.2,900,9,999999999,450,0.2300,0,88,0.110,0.0,99.0 +1991,7,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,101800,0,0,419,0,0,0,0,0,0,0,190,2.1,9,9,11.2,7500,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101800,0,0,422,0,0,0,0,0,0,0,30,1.5,9,9,11.2,7500,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.8,94,101700,0,0,394,0,0,0,0,0,0,0,10,1.0,9,4,11.2,7500,9,999999999,450,0.2300,0,88,0.110,13.0,6.0 +1991,7,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.8,94,101700,0,0,394,0,0,0,0,0,0,0,50,1.0,9,4,11.2,7500,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.8,94,101600,0,0,394,0,0,0,0,0,0,0,0,0.0,9,4,11.2,7500,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.3,22.8,97,101600,0,0,391,0,0,0,0,0,0,0,0,0.0,9,4,11.2,7500,9,999999999,450,0.2300,0,88,0.110,0.0,99.0 +1991,7,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.8,94,101700,0,0,394,0,0,0,0,0,0,0,110,1.0,9,4,11.2,7500,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.8,94,101700,9,363,394,1,3,1,0,0,0,0,0,0.0,9,4,11.2,3600,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,24.4,90,101800,207,1322,408,61,27,56,6600,2000,6300,1370,140,0.5,9,4,11.2,3600,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,25.0,88,101800,486,1322,414,204,223,122,22000,21600,14000,2440,0,0.0,9,4,11.2,3600,9,999999999,459,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,25.0,72,101800,749,1322,433,430,487,154,46700,49700,18500,3420,260,1.0,9,4,11.2,3600,9,999999999,459,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,25.6,75,101800,976,1322,434,639,573,215,66900,57800,24100,6400,280,1.0,9,4,11.2,3600,9,999999999,469,0.2300,0,88,0.110,0.0,99.0 +1991,7,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,23.9,63,101800,1153,1322,438,804,644,242,85200,65400,28000,11230,300,1.5,9,4,11.2,7500,9,999999999,469,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,25.0,68,101800,1268,1322,440,804,535,290,85000,54200,32900,22850,200,7.2,9,4,11.2,900,9,999999999,480,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101900,1311,1322,406,637,338,301,70300,35500,35000,38620,10,1.0,10,5,6.4,900,9,999999999,480,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,101800,1281,1322,395,805,557,264,85800,56700,30700,23200,190,2.6,10,5,11.2,3000,9,999999999,490,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,19.4,81,101900,1180,1322,387,817,590,290,85700,59400,32500,14590,280,4.1,10,5,8.0,450,9,999999999,490,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.1,84,101800,1014,1322,392,708,634,221,74300,64100,25000,7080,0,0.0,9,4,11.2,1500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,101700,794,1322,396,366,280,197,40100,29800,22100,4710,0,0.0,10,5,11.2,3300,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,101700,537,1322,396,297,424,125,31500,40900,14900,2440,300,2.1,10,5,11.2,3300,9,999999999,509,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.7,88,101600,259,1322,395,98,53,88,10700,4300,9900,2080,290,2.1,10,5,11.2,3300,9,999999999,509,0.2300,0,88,0.110,17.0,6.0 +1991,7,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.7,88,101600,27,606,395,6,4,5,600,200,600,130,0,0.0,10,5,11.2,3300,9,999999999,519,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,101700,0,0,396,0,0,0,0,0,0,0,270,1.0,10,5,11.2,3300,9,999999999,519,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,22.2,90,101700,0,0,396,0,0,0,0,0,0,0,230,1.0,10,5,11.2,3300,9,999999999,530,0.2300,0,88,0.110,0.0,99.0 +1991,7,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101700,0,0,399,0,0,0,0,0,0,0,0,0.0,10,5,11.2,3300,9,999999999,530,0.2300,0,88,0.110,999.0,99.0 +1991,7,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101700,0,0,403,0,0,0,0,0,0,0,240,1.5,10,5,11.2,3000,9,999999999,540,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101600,0,0,431,0,0,0,0,0,0,0,250,2.1,10,9,11.2,7500,9,999999999,540,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101500,0,0,434,0,0,0,0,0,0,0,250,2.1,10,9,11.2,7500,9,999999999,550,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101500,0,0,434,0,0,0,0,0,0,0,240,2.6,10,9,11.2,7500,9,999999999,550,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,25.0,90,101500,0,0,439,0,0,0,0,0,0,0,250,2.6,10,9,11.2,7500,9,999999999,559,0.2300,0,88,0.110,0.0,99.0 +1991,7,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,25.6,91,101500,0,0,443,0,0,0,0,0,0,0,240,2.6,10,9,11.2,3000,9,999999999,559,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,21.7,79,101500,9,363,428,1,0,1,0,0,0,0,250,4.6,10,9,11.2,900,9,999999999,569,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101600,206,1322,426,54,3,54,6100,100,6100,1800,200,2.6,10,9,11.2,2400,9,999999999,569,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101600,485,1322,427,162,18,155,18000,1300,17600,5560,220,3.6,10,9,11.2,900,9,999999999,569,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101600,747,1322,427,255,53,224,28000,5300,24900,7170,200,4.1,10,9,11.2,900,9,999999999,580,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,101700,975,1322,419,356,59,313,39300,6000,34900,11670,280,5.1,10,9,2.4,150,9,999999999,580,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,22.2,96,101900,1153,1322,413,319,80,249,36200,8600,28700,10770,40,2.6,10,9,2.8,150,9,999999999,590,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.7,91,101900,1267,1322,415,414,57,359,45800,5800,40200,21600,70,4.1,10,9,3.2,450,9,999999999,590,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.7,91,101900,1311,1322,415,609,74,535,67200,7700,59600,40250,60,2.1,10,9,3.2,600,9,999999999,590,0.2300,0,88,0.110,28.0,6.0 +1991,7,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.7,91,101700,1281,1322,415,582,85,500,64300,8800,55800,30730,0,0.0,10,9,6.4,870,9,999999999,600,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101500,1180,1322,430,428,124,316,47900,13300,35900,14660,200,0.5,10,9,11.2,3000,9,999999999,600,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,22.8,79,101500,1014,1322,436,280,68,227,30900,6900,25600,9220,220,0.5,10,9,11.2,3600,9,999999999,600,0.2300,0,88,0.110,0.0,99.0 +1991,7,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101600,794,1322,433,288,34,268,31700,3400,29600,8630,240,1.0,10,9,11.2,3600,9,999999999,609,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101600,536,1322,431,148,42,131,16300,4000,14600,3860,250,1.0,10,9,11.2,3600,9,999999999,609,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,23.3,90,101600,258,1322,427,68,6,67,7600,200,7600,2310,0,0.0,10,9,11.2,3600,9,999999999,619,0.2300,0,88,0.110,5.0,6.0 +1991,7,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101600,26,606,421,5,0,5,600,0,600,200,0,0.0,9,8,11.2,3600,9,999999999,619,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101500,0,0,411,0,0,0,0,0,0,0,0,0.0,9,7,11.2,3600,9,999999999,619,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,22.8,94,101600,0,0,391,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,630,0.2300,0,88,0.110,0.0,99.0 +1991,7,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.8,94,101600,0,0,405,0,0,0,0,0,0,0,0,0.0,9,7,11.2,7500,9,999999999,630,0.2300,0,88,0.110,999.0,99.0 +1991,7,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.3,94,101600,0,0,415,0,0,0,0,0,0,0,0,0.0,9,8,11.2,3600,9,999999999,630,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,23.3,90,101600,0,0,427,0,0,0,0,0,0,0,0,0.0,10,9,11.2,2400,9,999999999,640,0.2300,0,88,0.110,0.0,6.0 +1991,7,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.9,94,101500,0,0,408,0,0,0,0,0,0,0,0,0.0,9,6,11.2,7500,9,999999999,640,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.9,94,101500,0,0,428,0,0,0,0,0,0,0,0,0.0,10,9,11.2,2400,9,999999999,650,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.9,90,101500,0,0,431,0,0,0,0,0,0,0,150,2.1,10,9,11.2,900,9,999999999,650,0.2300,0,88,0.110,0.0,99.0 +1991,7,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.7,88,101500,0,0,419,0,0,0,0,0,0,0,110,2.6,10,9,11.2,900,9,999999999,650,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.3,94,101500,8,341,404,1,0,1,0,0,0,0,0,0.0,9,6,11.2,6000,9,999999999,659,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.8,88,101600,204,1322,406,64,27,60,7000,2000,6700,1430,150,1.0,9,6,11.2,3000,9,999999999,659,0.2300,0,88,0.110,15.0,6.0 +1991,7,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.6,82,101600,483,1322,417,94,0,93,10800,0,10800,3850,100,2.1,10,9,4.8,1200,9,999999999,659,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.8,94,101700,746,1322,420,285,79,240,31300,8000,26800,7570,100,1.0,10,9,11.2,270,9,999999999,650,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101700,974,1322,427,438,74,384,48300,7600,42600,13730,110,2.1,10,9,11.2,2400,9,999999999,640,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101600,1152,1322,410,488,274,249,53800,28700,28700,11640,170,1.0,9,6,11.2,3000,9,999999999,640,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,24.4,82,101700,1267,1322,445,249,92,161,29500,10100,19800,10850,0,0.0,10,9,11.2,3000,9,999999999,630,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,25.0,88,101700,1311,1322,442,698,127,572,77000,13200,63900,42510,280,1.0,10,9,11.2,1200,9,999999999,619,0.2300,0,88,0.110,15.0,6.0 +1991,7,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,24.4,93,101600,1281,1322,432,538,108,432,59500,11500,48300,30410,340,2.1,10,9,1.6,600,9,999999999,619,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101700,1180,1322,416,325,149,191,37500,16300,22900,8690,350,3.6,10,9,1.6,450,9,999999999,609,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,101500,1013,1322,419,263,78,203,29900,8400,23400,6820,30,1.5,10,9,11.2,2400,9,999999999,609,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101400,794,1322,411,346,150,256,37900,15700,28500,6920,90,1.5,9,6,11.2,7500,9,999999999,600,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101500,536,1322,413,252,292,134,27300,29000,15500,2730,0,0.0,9,6,11.2,2400,9,999999999,590,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,23.9,85,101600,258,1322,417,93,53,83,10200,4300,9400,1990,0,0.0,9,6,11.2,2400,9,999999999,590,0.2300,0,88,0.110,26.0,6.0 +1991,7,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101600,26,606,411,5,1,5,600,0,600,200,0,0.0,9,6,11.2,2400,9,999999999,580,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101600,0,0,411,0,0,0,0,0,0,0,50,0.5,9,6,11.2,7500,9,999999999,569,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,23.9,97,101600,0,0,404,0,0,0,0,0,0,0,0,0.0,9,6,11.2,7500,9,999999999,569,0.2300,0,88,0.110,0.0,99.0 +1991,7,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,24.4,93,101700,0,0,411,0,0,0,0,0,0,0,40,2.1,9,6,11.2,7500,9,999999999,559,0.2300,0,88,0.110,999.0,99.0 +1991,7,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.9,94,101700,0,0,394,0,0,0,0,0,0,0,80,1.0,2,2,11.2,77777,9,999999999,559,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,23.9,97,101700,0,0,391,0,0,0,0,0,0,0,70,1.0,9,2,11.2,77777,9,999999999,550,0.2300,0,88,0.110,2.0,6.0 +1991,7,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,23.3,96,101600,0,0,375,0,0,0,0,0,0,0,90,0.5,3,0,11.2,77777,9,999999999,540,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,23.3,96,101600,0,0,375,0,0,0,0,0,0,0,0,0.0,2,0,11.2,77777,9,999999999,540,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,23.9,23.3,96,101600,0,0,375,0,0,0,0,0,0,0,0,0.0,3,0,11.2,77777,9,999999999,530,0.2300,0,88,0.110,0.0,99.0 +1991,7,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.3,94,101600,0,0,378,0,0,0,0,0,0,0,0,0.0,2,0,11.2,77777,9,999999999,519,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.8,94,101600,8,342,374,1,1,1,0,0,0,0,100,1.5,3,0,11.2,77777,9,999999999,519,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.9,88,101700,201,1322,387,74,163,49,7800,10400,6300,900,120,1.0,2,0,11.2,77777,9,999999999,509,0.2300,0,88,0.110,0.0,6.0 +1991,7,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.9,79,101700,481,1322,396,266,462,98,28500,43400,12700,1840,110,2.6,3,0,11.2,77777,9,999999999,509,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,24.4,75,101800,745,1322,405,462,583,134,48700,58200,15800,3030,120,3.6,2,0,11.2,77777,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,24.4,72,101800,973,1322,408,643,642,170,68500,65500,20200,5170,150,3.6,3,0,11.2,77777,9,999999999,500,0.2300,0,88,0.110,0.0,99.0 +1991,7,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,24.4,77,101800,1151,1322,402,846,761,183,88300,76300,21700,7720,200,6.2,2,0,11.2,77777,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.8,70,101800,1266,1322,418,817,583,258,87100,59400,30100,20220,210,5.1,9,3,11.2,7500,9,999999999,490,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,22.2,70,101800,1310,1322,410,911,652,264,97400,66500,31300,32320,210,3.1,9,2,11.2,6000,9,999999999,490,0.2300,0,88,0.110,0.0,6.0 +1991,7,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.8,70,101700,1281,1322,418,807,501,321,88200,52500,37100,28740,240,3.6,9,3,11.2,6000,9,999999999,480,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,101700,1179,1322,411,780,619,227,83200,63200,26700,11610,260,1.0,9,2,11.2,3600,9,999999999,480,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,22.8,70,101700,1013,1322,418,659,529,253,71100,55200,28700,8260,230,1.5,9,3,11.2,7500,9,999999999,480,0.2300,0,88,0.110,0.0,99.0 +1991,7,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,23.9,74,101700,793,1322,415,494,496,196,52700,50900,22200,4610,190,2.6,9,2,11.2,7500,9,999999999,469,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101700,535,1322,424,274,314,146,29300,31200,16700,3020,180,1.5,10,4,11.2,7500,9,999999999,469,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,24.4,79,101700,257,1322,420,107,34,101,11700,2800,11200,2270,90,3.1,10,4,11.2,77777,9,999999999,469,0.2300,0,88,0.110,0.0,6.0 +1991,7,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101700,25,584,407,6,4,5,600,200,600,130,90,1.5,9,3,11.2,7500,9,999999999,459,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101700,0,0,400,0,0,0,0,0,0,0,100,2.6,9,2,11.2,7500,9,999999999,459,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,23.9,88,101800,0,0,387,0,0,0,0,0,0,0,100,3.6,3,0,11.2,77777,9,999999999,450,0.2300,0,88,0.110,0.0,99.0 +1991,7,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101800,0,0,383,0,0,0,0,0,0,0,110,3.1,2,0,11.2,77777,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101800,0,0,380,0,0,0,0,0,0,0,120,3.1,3,0,11.2,77777,9,999999999,450,0.2300,0,88,0.110,999.0,99.0 +1991,7,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.8,88,101800,0,0,380,0,0,0,0,0,0,0,120,5.1,0,0,11.2,77777,9,999999999,440,0.2330,0,88,0.110,0.0,6.0 +1991,7,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101800,0,0,384,0,0,0,0,0,0,0,120,4.1,0,0,11.2,77777,9,999999999,440,0.2330,0,88,0.110,999.0,99.0 +1991,7,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101800,0,0,379,0,0,0,0,0,0,0,110,4.1,0,0,11.2,77777,9,999999999,440,0.2330,0,88,0.110,999.0,99.0 +1991,7,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,21.7,82,101800,0,0,386,0,0,0,0,0,0,0,120,4.6,2,1,11.2,77777,9,999999999,430,0.2330,0,88,0.110,0.0,99.0 +1991,7,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101800,0,0,390,0,0,0,0,0,0,0,140,5.1,3,1,11.2,77777,9,999999999,430,0.2330,0,88,0.110,999.0,99.0 +1991,7,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101800,7,320,384,1,9,0,0,0,0,0,120,4.1,2,1,11.2,77777,9,999999999,419,0.2330,0,88,0.110,999.0,99.0 +1991,7,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,101900,199,1322,390,82,286,39,8400,19400,5500,700,120,5.1,3,1,11.2,77777,9,999999999,419,0.2330,0,88,0.110,0.0,6.0 +1991,7,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.2,72,101900,479,1322,401,247,459,80,25800,42700,10200,1560,130,4.6,2,1,11.2,77777,9,999999999,419,0.2330,0,88,0.110,999.0,99.0 +1991,7,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.2,67,101900,743,1322,407,480,686,94,50600,68100,12200,2130,120,4.1,3,1,11.2,77777,9,999999999,419,0.2330,0,88,0.110,999.0,99.0 +1991,7,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,23.9,66,101900,972,1322,421,654,729,117,69900,73800,15500,3460,130,3.1,2,1,11.2,77777,9,999999999,419,0.2330,0,88,0.110,0.0,99.0 +1991,7,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,24.4,70,101900,1151,1322,419,810,785,127,83500,78600,14900,4650,180,2.6,3,1,11.2,77777,9,999999999,419,0.2330,0,88,0.110,999.0,99.0 +1991,7,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,24.4,68,101900,1266,1322,422,896,803,127,92200,80600,14900,8110,210,4.6,2,1,11.2,77777,9,999999999,419,0.2330,0,88,0.110,999.0,99.0 +1991,7,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,24.4,68,101900,1310,1322,422,904,711,199,95400,71600,24300,23040,210,5.7,3,1,11.2,77777,9,999999999,419,0.2330,0,88,0.110,0.0,6.0 +1991,7,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.3,63,101800,1281,1322,421,921,767,178,98100,77600,22800,14800,210,5.1,2,1,11.2,77777,9,999999999,419,0.2330,0,88,0.110,999.0,99.0 +1991,7,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,23.3,61,101700,1179,1322,424,840,773,150,89900,78400,19800,7330,200,5.7,3,1,11.2,77777,9,999999999,430,0.2330,0,88,0.110,999.0,99.0 +1991,7,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.7,23.3,61,101700,1013,1322,437,649,505,262,69800,52600,29400,8570,200,5.1,9,4,11.2,7500,9,999999999,430,0.2330,0,88,0.110,0.0,99.0 +1991,7,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.8,68,101800,793,1322,424,403,397,164,43700,40800,19200,3800,200,4.6,9,4,11.2,7500,9,999999999,430,0.2330,0,88,0.110,999.0,99.0 +1991,7,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.8,68,101800,534,1322,424,180,118,132,19900,11700,15100,3100,200,3.6,9,4,11.2,7500,9,999999999,430,0.2330,0,88,0.110,999.0,99.0 +1991,7,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,22.8,70,101800,255,1322,424,123,221,80,12800,16200,9700,1570,200,3.1,10,5,11.2,7500,9,999999999,430,0.2330,0,88,0.110,0.0,6.0 +1991,7,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.8,74,101800,25,584,415,5,11,5,700,400,600,100,220,3.1,9,4,11.2,7500,9,999999999,430,0.2330,0,88,0.110,999.0,99.0 +1991,7,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.3,77,101800,0,0,415,0,0,0,0,0,0,0,250,2.6,9,4,11.2,7500,9,999999999,430,0.2330,0,88,0.110,999.0,99.0 +1991,7,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,23.3,79,101900,0,0,412,0,0,0,0,0,0,0,230,0.5,9,4,11.2,7500,9,999999999,430,0.2330,0,88,0.110,0.0,99.0 +1991,7,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101900,0,0,390,0,0,0,0,0,0,0,110,3.1,3,1,11.2,77777,9,999999999,430,0.2330,0,88,0.110,999.0,99.0 +1991,7,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101900,0,0,387,0,0,0,0,0,0,0,120,4.1,2,1,11.2,77777,9,999999999,430,0.2330,0,88,0.110,999.0,99.0 +1991,7,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101800,0,0,384,0,0,0,0,0,0,0,110,2.1,2,1,11.2,77777,9,999999999,430,0.2340,0,88,0.110,0.0,6.0 +1991,7,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101800,0,0,387,0,0,0,0,0,0,0,130,3.1,3,1,11.2,77777,9,999999999,430,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101700,0,0,379,0,0,0,0,0,0,0,140,3.1,0,0,11.2,77777,9,999999999,430,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,22.2,88,101700,0,0,384,0,0,0,0,0,0,0,100,1.0,3,1,11.2,77777,9,999999999,430,0.2340,0,88,0.110,0.0,99.0 +1991,7,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,21.7,88,101800,0,0,380,0,0,0,0,0,0,0,110,2.6,2,1,11.2,77777,9,999999999,430,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101800,7,320,384,0,0,0,0,0,0,0,110,2.6,3,1,11.2,77777,9,999999999,440,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.3,87,101800,197,1322,391,70,152,47,7400,9600,6000,860,120,2.6,2,1,11.2,77777,9,999999999,440,0.2340,0,88,0.110,0.0,6.0 +1991,7,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.9,79,101900,478,1322,403,235,366,103,25100,34300,12700,1940,120,2.1,3,1,11.2,77777,9,999999999,430,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.9,72,101900,742,1322,412,467,554,156,48600,54900,17700,3440,150,1.5,2,1,11.2,77777,9,999999999,430,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,22.2,59,101900,971,1322,419,644,652,164,68700,66600,19600,4990,140,3.1,3,1,11.2,77777,9,999999999,430,0.2340,0,88,0.110,0.0,99.0 +1991,7,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.8,58,101900,1150,1322,426,814,707,198,87400,72500,24200,9200,140,3.1,2,1,11.2,77777,9,999999999,430,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,22.2,54,101900,1265,1322,429,902,735,198,94700,73900,23800,14420,160,1.5,3,1,11.2,77777,9,999999999,430,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,21.1,49,101800,1310,1322,430,976,792,191,103400,79900,24100,22020,210,1.5,2,1,11.2,77777,9,999999999,430,0.2340,0,88,0.110,0.0,6.0 +1991,7,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,21.1,47,101700,1280,1322,433,914,740,196,96100,74500,23900,16060,200,4.1,3,1,11.2,77777,9,999999999,430,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,22.8,56,101700,1179,1322,429,739,586,216,79100,60000,25500,11060,220,4.6,2,1,11.2,77777,9,999999999,430,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.8,22.8,56,101600,1012,1322,429,684,673,168,73200,68900,20300,5520,220,4.1,3,1,11.2,77777,9,999999999,430,0.2340,0,88,0.110,0.0,99.0 +1991,7,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,22.8,56,101600,792,1322,450,269,113,201,29900,11900,22700,5420,230,3.6,9,6,11.2,7500,9,999999999,430,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.8,58,101700,533,1322,447,125,57,102,13800,5400,11600,3110,220,3.6,9,6,11.2,7500,9,999999999,430,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.2,65,101700,254,1322,435,63,27,57,6800,2200,6400,1470,140,1.5,10,7,11.2,7500,9,999999999,419,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.7,72,101700,24,584,429,4,0,4,500,0,500,160,80,3.1,10,8,11.2,7500,9,999999999,419,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.7,72,101800,0,0,422,0,0,0,0,0,0,0,80,2.6,10,7,11.2,7500,9,999999999,419,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,21.7,77,101800,0,0,422,0,0,0,0,0,0,0,70,3.6,10,8,11.2,7500,9,999999999,419,0.2340,0,88,0.110,0.0,99.0 +1991,7,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101800,0,0,390,0,0,0,0,0,0,0,90,3.1,2,1,11.2,77777,9,999999999,419,0.2340,0,88,0.110,999.0,99.0 +1991,7,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101800,0,0,390,0,0,0,0,0,0,0,60,1.0,3,1,11.2,77777,9,999999999,419,0.2340,0,88,0.110,999.0,99.0 +1991,7,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101700,0,0,405,0,0,0,0,0,0,0,100,1.0,9,6,11.2,6000,9,999999999,419,0.2360,0,88,0.110,0.0,6.0 +1991,7,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101700,0,0,405,0,0,0,0,0,0,0,120,3.1,9,6,11.2,6000,9,999999999,419,0.2360,0,88,0.110,999.0,99.0 +1991,7,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101600,0,0,393,0,0,0,0,0,0,0,120,2.6,3,3,11.2,77777,9,999999999,419,0.2360,0,88,0.110,999.0,99.0 +1991,7,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,24.4,22.2,88,101700,0,0,389,0,0,0,0,0,0,0,120,2.1,2,2,11.2,77777,9,999999999,419,0.2360,0,88,0.110,0.0,99.0 +1991,7,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101700,0,0,393,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,419,0.2360,0,88,0.110,999.0,99.0 +1991,7,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,101700,6,298,400,0,0,0,0,0,0,0,90,0.5,9,6,11.2,77777,9,999999999,419,0.2360,0,88,0.110,999.0,99.0 +1991,7,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.8,82,101800,195,1322,412,54,17,51,5900,1300,5700,1240,90,1.0,9,6,11.2,77777,9,999999999,409,0.2360,0,88,0.110,0.0,6.0 +1991,7,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.2,70,101800,476,1322,410,238,322,122,25600,30900,14400,2440,120,2.1,2,2,11.2,77777,9,999999999,409,0.2360,0,88,0.110,999.0,99.0 +1991,7,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.9,70,101900,741,1322,425,463,477,195,48900,48500,21700,4390,120,1.5,3,3,11.2,77777,9,999999999,409,0.2360,0,88,0.110,999.0,99.0 +1991,7,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,23.9,68,101900,970,1322,424,620,528,233,67100,55000,26600,6990,200,1.5,2,2,11.2,77777,9,999999999,409,0.2360,0,88,0.110,0.0,99.0 +1991,7,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,23.9,56,101900,1149,1322,447,864,705,251,91200,71500,29000,11410,160,0.5,3,3,11.2,77777,9,999999999,409,0.2360,0,88,0.110,999.0,99.0 +1991,7,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,22.2,51,101900,1265,1322,441,901,603,324,94500,60600,36400,24760,240,1.5,2,2,11.2,77777,9,999999999,409,0.2360,0,88,0.110,999.0,99.0 +1991,7,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,35.0,22.8,49,101800,1310,1322,452,887,597,295,94100,60500,34000,35140,210,1.5,3,3,11.2,77777,9,999999999,409,0.2360,0,88,0.110,0.0,6.0 +1991,7,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,21.7,46,101700,1280,1322,446,896,700,217,96800,71900,27000,18920,230,1.5,2,2,11.2,77777,9,999999999,409,0.2360,0,88,0.110,999.0,99.0 +1991,7,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,22.2,48,101700,1179,1322,452,831,613,284,87200,61800,32000,14210,210,2.6,3,3,11.2,77777,9,999999999,409,0.2360,0,88,0.110,999.0,99.0 +1991,7,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,34.4,22.2,49,101600,1012,1322,444,673,493,296,71500,51300,32100,9750,200,3.6,2,2,11.2,77777,9,999999999,409,0.2360,0,88,0.110,0.0,99.0 +1991,7,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,22.2,52,101600,792,1322,442,459,472,176,49500,48500,20400,4100,230,1.5,3,3,11.2,77777,9,999999999,409,0.2360,0,88,0.110,999.0,99.0 +1991,7,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,24.4,61,101600,532,1322,437,262,351,120,27800,33800,14200,2330,320,4.1,2,2,11.2,77777,9,999999999,409,0.2360,0,88,0.110,999.0,99.0 +1991,7,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,20.0,53,101700,253,1322,423,100,152,71,10500,11100,8400,1360,330,1.5,3,3,11.2,77777,9,999999999,409,0.2360,0,88,0.110,0.0,6.0 +1991,7,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,21.7,65,101700,23,562,412,4,2,4,500,100,500,110,0,0.0,2,2,11.2,77777,9,999999999,409,0.2360,0,88,0.110,999.0,99.0 +1991,7,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,20.6,61,101700,0,0,415,0,0,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,409,0.2360,0,88,0.110,999.0,99.0 +1991,7,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,22.8,70,101800,0,0,428,0,0,0,0,0,0,0,80,1.0,9,6,11.2,7500,9,999999999,409,0.2360,0,88,0.110,0.0,99.0 +1991,7,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.8,72,101800,0,0,424,0,0,0,0,0,0,0,0,0.0,9,6,11.2,7500,9,999999999,409,0.2360,0,88,0.110,999.0,99.0 +1991,7,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.8,72,101800,0,0,424,0,0,0,0,0,0,0,120,0.5,9,6,11.2,2400,9,999999999,409,0.2360,0,88,0.110,999.0,99.0 +1991,7,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,23.3,77,101800,0,0,408,0,0,0,0,0,0,0,80,0.5,2,2,11.2,77777,9,999999999,409,0.2370,0,88,0.110,0.0,6.0 +1991,7,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101800,0,0,409,0,0,0,0,0,0,0,60,1.5,3,3,11.2,77777,9,999999999,409,0.2370,0,88,0.110,999.0,99.0 +1991,7,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101800,0,0,405,0,0,0,0,0,0,0,70,1.5,2,2,11.2,77777,9,999999999,409,0.2370,0,88,0.110,999.0,99.0 +1991,7,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,23.3,79,101800,0,0,409,0,0,0,0,0,0,0,70,2.1,3,3,11.2,77777,9,999999999,409,0.2370,0,88,0.110,0.0,99.0 +1991,7,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101800,0,0,405,0,0,0,0,0,0,0,70,1.5,2,2,11.2,77777,9,999999999,409,0.2370,0,88,0.110,999.0,99.0 +1991,7,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.3,82,101800,6,298,406,0,0,0,0,0,0,0,80,1.0,3,3,11.2,77777,9,999999999,409,0.2370,0,88,0.110,999.0,99.0 +1991,7,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,24.4,82,101900,193,1323,410,58,33,53,6300,2400,6000,1280,60,2.6,2,2,11.2,77777,9,999999999,409,0.2370,0,88,0.110,0.0,6.0 +1991,7,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,24.4,75,102000,474,1323,422,222,239,136,23600,22900,15400,2780,120,3.1,3,3,11.2,77777,9,999999999,409,0.2370,0,88,0.110,999.0,99.0 +1991,7,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,25.0,70,102000,739,1323,429,444,431,203,46800,43800,22300,4590,120,2.6,2,2,11.2,77777,9,999999999,409,0.2370,0,88,0.110,999.0,99.0 +1991,7,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,24.4,68,102000,969,1323,432,619,495,256,66200,51500,28400,7720,150,1.5,3,3,11.2,77777,9,999999999,409,0.2370,0,88,0.110,0.0,99.0 +1991,7,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,23.3,59,102000,1148,1323,433,771,495,342,82300,51700,37400,16010,140,2.1,2,2,11.2,77777,9,999999999,419,0.2370,0,88,0.110,999.0,99.0 +1991,7,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,20.6,46,102000,1264,1323,443,831,518,336,90200,54200,38300,26550,140,2.1,3,3,11.2,77777,9,999999999,419,0.2370,0,88,0.110,999.0,99.0 +1991,7,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,21.7,49,101900,1309,1323,440,903,587,321,95200,59200,36400,37800,20,10.3,2,2,11.2,77777,9,999999999,419,0.2370,0,88,0.110,0.0,6.0 +1991,7,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,34.4,21.7,48,101900,1280,1323,447,867,551,333,94300,57700,38300,29460,110,1.5,3,3,11.2,77777,9,999999999,419,0.2370,0,88,0.110,999.0,99.0 +1991,7,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,34.4,21.1,46,101800,1178,1323,442,818,568,312,88500,59400,35400,16140,60,1.0,2,2,11.2,77777,9,999999999,430,0.2370,0,88,0.110,999.0,99.0 +1991,7,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,35.6,21.1,43,101700,1012,1323,488,419,104,339,46200,10700,38000,12960,50,1.0,9,9,11.2,77777,9,999999999,430,0.2370,0,88,0.110,0.0,99.0 +1991,7,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,22.8,54,101800,791,1323,476,211,28,194,23300,2800,21600,6590,130,5.1,9,9,11.2,7500,9,999999999,430,0.2370,0,88,0.110,999.0,99.0 +1991,7,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.7,61,101800,531,1323,454,222,34,208,24400,2900,23300,6970,120,5.7,9,9,11.2,7500,9,999999999,430,0.2370,0,88,0.110,999.0,99.0 +1991,7,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,21.7,63,101800,252,1323,451,80,11,78,8800,400,8700,2500,90,2.1,9,9,11.2,77777,9,999999999,430,0.2370,0,88,0.110,0.0,6.0 +1991,7,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.8,70,101900,23,562,418,4,0,4,500,0,500,160,130,2.6,3,3,11.2,77777,9,999999999,440,0.2370,0,88,0.110,999.0,99.0 +1991,7,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101900,0,0,412,0,0,0,0,0,0,0,110,2.6,2,2,11.2,77777,9,999999999,440,0.2370,0,88,0.110,999.0,99.0 +1991,7,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.8,23.9,79,102000,0,0,413,0,0,0,0,0,0,0,90,1.5,3,3,11.2,77777,9,999999999,440,0.2370,0,88,0.110,0.0,99.0 +1991,7,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.9,79,102000,0,0,409,0,0,0,0,0,0,0,70,1.0,2,2,11.2,77777,9,999999999,440,0.2370,0,88,0.110,999.0,99.0 +1991,7,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.9,79,102000,0,0,413,0,0,0,0,0,0,0,90,1.5,3,3,11.2,77777,9,999999999,450,0.2370,0,88,0.110,999.0,99.0 +1991,7,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,24.4,85,102000,0,0,401,0,0,0,0,0,0,0,90,1.0,3,1,11.2,77777,9,999999999,450,0.2390,0,88,0.110,0.0,6.0 +1991,7,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101900,0,0,392,0,0,0,0,0,0,0,80,2.1,0,0,11.2,77777,9,999999999,450,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.3,82,101900,0,0,397,0,0,0,0,0,0,0,70,1.0,3,1,11.2,77777,9,999999999,450,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,24.4,87,101900,0,0,398,0,0,0,0,0,0,0,70,1.5,2,1,11.2,77777,9,999999999,450,0.2390,0,88,0.110,0.0,99.0 +1991,7,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,24.4,87,102000,0,0,398,0,0,0,0,0,0,0,30,1.5,3,1,11.2,77777,9,999999999,459,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,102000,5,276,394,0,1,0,0,0,0,0,60,1.0,2,1,11.2,77777,9,999999999,459,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,25.0,85,102100,191,1323,405,66,133,47,7000,8200,5800,860,60,1.5,3,1,11.2,77777,9,999999999,459,0.2390,0,88,0.110,0.0,6.0 +1991,7,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,25.0,80,102200,472,1323,411,261,502,81,27200,46500,10500,1570,60,2.1,2,1,11.2,77777,9,999999999,459,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,24.4,70,102200,738,1323,419,459,464,200,48400,47100,22100,4510,80,1.0,3,1,11.2,77777,9,999999999,459,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.2,23.9,62,102200,968,1323,428,657,708,139,69000,71100,16800,3870,100,2.6,2,1,11.2,77777,9,999999999,459,0.2390,0,88,0.110,0.0,99.0 +1991,7,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,24.4,61,102100,1148,1323,432,832,772,162,88000,77900,20200,6930,60,2.1,3,1,11.2,77777,9,999999999,450,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,23.3,54,102100,1264,1323,454,768,391,393,81900,40800,42800,31070,50,2.1,9,5,11.2,7500,9,999999999,450,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,23.3,54,102100,1309,1323,458,700,253,449,77100,27500,49800,45840,50,2.1,10,6,11.2,7500,9,999999999,450,0.2390,0,88,0.110,0.0,6.0 +1991,7,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,21.1,63,102100,1280,1323,426,962,640,343,100700,64100,38500,29060,80,4.6,10,6,11.2,1050,9,999999999,450,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,102300,1178,1323,410,672,406,310,72700,42500,34700,16000,190,3.6,10,6,11.2,1050,9,999999999,450,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,102200,1011,1323,407,347,201,193,39300,21900,22500,5870,320,2.6,9,5,11.2,3000,9,999999999,440,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.8,82,102100,790,1323,409,504,530,188,54100,54300,21600,4390,330,2.1,9,5,11.2,3600,9,999999999,440,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.3,77,102100,530,1323,419,274,151,213,29300,14800,23400,5000,110,2.1,9,5,11.2,7500,9,999999999,440,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,22.2,70,102100,250,1323,420,62,34,55,6700,2700,6200,1420,110,1.5,9,5,11.2,77777,9,999999999,440,0.2390,0,88,0.110,1.0,6.0 +1991,7,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,102000,22,562,399,4,9,4,500,300,500,80,70,1.5,2,1,11.2,77777,9,999999999,440,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,102100,0,0,390,0,0,0,0,0,0,0,60,2.1,3,1,12.8,77777,9,999999999,440,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,22.2,82,102100,0,0,390,0,0,0,0,0,0,0,0,0.0,2,1,12.8,77777,9,999999999,430,0.2390,0,88,0.110,0.0,99.0 +1991,7,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,102100,0,0,387,0,0,0,0,0,0,0,350,0.5,0,0,11.2,77777,9,999999999,430,0.2390,0,88,0.110,999.0,99.0 +1991,7,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,102100,0,0,387,0,0,0,0,0,0,0,350,0.5,0,0,11.2,77777,9,999999999,430,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.9,88,102100,0,0,387,0,0,0,0,0,0,0,30,1.0,0,0,11.2,77777,9,999999999,430,0.2390,0,88,0.110,0.0,6.0 +1991,7,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,102000,0,0,387,0,0,0,0,0,0,0,50,2.1,0,0,11.2,77777,9,999999999,430,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101900,0,0,384,0,0,0,0,0,0,0,60,2.6,0,0,11.2,77777,9,999999999,419,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.9,90,102000,0,0,384,0,0,0,0,0,0,0,60,2.1,0,0,11.2,77777,9,999999999,419,0.2390,0,88,0.110,0.0,99.0 +1991,7,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,102000,0,0,397,0,0,0,0,0,0,0,70,1.5,2,2,11.2,77777,9,999999999,419,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,102000,5,254,401,0,0,0,0,0,0,0,60,1.0,3,3,11.2,77777,9,999999999,419,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,24.4,87,102100,189,1323,404,59,55,51,6400,3700,5900,1080,0,0.0,2,2,11.2,77777,9,999999999,419,0.2390,0,88,0.110,0.0,6.0 +1991,7,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,25.0,85,102200,471,1323,414,238,219,160,25700,20900,18300,3670,50,3.1,3,3,11.2,77777,9,999999999,419,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,25.0,77,102200,736,1323,419,426,412,196,45000,41900,21600,4400,50,2.6,2,2,11.2,77777,9,999999999,419,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,25.0,70,102200,967,1323,433,621,436,302,65300,45200,32200,9190,60,3.1,3,3,11.2,77777,9,999999999,419,0.2390,0,88,0.110,0.0,99.0 +1991,7,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,23.9,62,102200,1147,1323,433,802,589,291,86900,61600,33400,13430,30,2.6,2,2,11.2,77777,9,999999999,409,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,23.3,56,102100,1263,1323,443,830,539,315,90700,56500,36600,24620,40,3.6,3,3,11.2,77777,9,999999999,409,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,23.3,54,102100,1309,1323,442,910,611,306,96300,61800,35100,35470,60,1.5,2,2,11.2,77777,9,999999999,409,0.2390,0,88,0.110,0.0,6.0 +1991,7,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,22.8,49,102000,1279,1323,452,856,505,366,92100,52800,40900,32200,70,2.1,3,3,11.2,77777,9,999999999,409,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,21.1,44,102000,1178,1323,446,829,571,321,89400,59700,36100,16550,310,2.6,2,2,11.2,77777,9,999999999,409,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,36.1,22.2,45,101900,1010,1323,458,625,490,251,67500,51100,28400,8140,280,1.5,3,3,11.2,77777,9,999999999,409,0.2390,0,88,0.110,0.0,99.0 +1991,7,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,21.7,54,101900,789,1323,468,182,0,181,21200,0,21200,8130,310,3.6,9,9,11.2,6000,9,999999999,409,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,22.8,63,101900,529,1323,459,137,26,126,15000,2500,14000,3710,310,2.1,9,9,11.2,1200,9,999999999,409,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,102000,248,1323,428,90,10,88,9800,400,9700,2650,60,4.1,9,9,11.2,1200,9,999999999,409,0.2390,0,88,0.110,5.0,6.0 +1991,7,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.3,77,101900,21,540,443,3,0,3,0,0,0,0,0,0.0,9,9,11.2,7500,9,999999999,409,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,102000,0,0,447,0,0,0,0,0,0,0,0,0.0,9,9,11.2,3000,9,999999999,409,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,23.3,74,102100,0,0,446,0,0,0,0,0,0,0,70,1.5,9,9,11.2,3000,9,999999999,409,0.2390,0,88,0.110,0.0,99.0 +1991,7,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.2,72,102100,0,0,442,0,0,0,0,0,0,0,110,1.0,9,9,11.2,7500,9,999999999,409,0.2390,0,88,0.110,999.0,99.0 +1991,7,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,102100,0,0,408,0,0,0,0,0,0,0,90,1.5,3,3,11.2,77777,9,999999999,409,0.2390,0,88,0.110,999.0,99.0 +1991,7,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,102000,0,0,399,0,0,0,0,0,0,0,90,1.5,3,1,11.2,77777,9,999999999,400,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,102000,0,0,400,0,0,0,0,0,0,0,100,1.5,2,1,11.2,77777,9,999999999,400,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.8,79,102000,0,0,396,0,0,0,0,0,0,0,120,3.6,3,1,11.2,77777,9,999999999,400,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,23.9,85,102000,0,0,398,0,0,0,0,0,0,0,120,2.6,2,1,11.2,77777,9,999999999,400,0.2410,0,88,0.110,0.0,99.0 +1991,7,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,102000,0,0,394,0,0,0,0,0,0,0,90,0.5,3,1,11.2,77777,9,999999999,400,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,102000,4,254,394,0,0,0,0,0,0,0,70,1.5,2,1,11.2,77777,9,999999999,400,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,25.0,85,102000,187,1323,405,66,134,47,7000,8200,5800,870,70,1.5,3,1,11.2,77777,9,999999999,400,0.2410,0,88,0.110,0.0,6.0 +1991,7,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,24.4,77,102100,469,1323,410,248,420,99,26500,39100,12600,1860,90,1.0,2,1,11.2,77777,9,999999999,400,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,25.6,77,102200,735,1323,417,452,506,171,48500,51500,19800,3780,140,1.5,3,1,11.2,77777,9,999999999,400,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,25.6,73,102200,966,1323,424,643,658,162,68600,67200,19400,4880,60,1.5,2,1,11.2,77777,9,999999999,409,0.2410,0,88,0.110,0.0,99.0 +1991,7,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,25.6,68,102200,1146,1323,430,803,709,189,86600,72800,23300,8680,260,2.1,3,1,11.2,77777,9,999999999,409,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.9,24.4,58,102100,1263,1323,438,890,730,193,93700,73500,23400,13780,250,2.1,2,1,11.2,77777,9,999999999,409,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,34.4,22.8,51,102100,1308,1323,439,922,719,211,100200,74100,26800,24520,240,2.1,3,1,11.2,77777,9,999999999,409,0.2410,0,88,0.110,0.0,6.0 +1991,7,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,21.7,46,102000,1279,1323,440,906,735,195,95400,74000,23700,15660,230,1.5,2,1,11.2,77777,9,999999999,409,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,23.3,51,101900,1177,1323,443,839,726,192,90500,74700,23900,9800,240,1.5,3,1,11.2,77777,9,999999999,409,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,36.1,23.9,50,101900,1010,1323,468,578,426,253,62300,44400,28400,8190,240,1.5,9,5,11.2,77777,9,999999999,419,0.2410,0,88,0.110,0.0,99.0 +1991,7,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,23.9,53,101800,788,1323,461,499,412,254,53700,43700,27600,6330,240,1.0,9,5,11.2,77777,9,999999999,419,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,23.3,57,101800,528,1323,451,242,191,166,26400,18800,18900,3890,210,1.0,10,6,11.2,77777,9,999999999,419,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,23.3,70,101900,247,1323,431,86,28,80,9300,2200,8900,1900,150,9.3,10,6,11.2,9000,9,999999999,419,0.2410,0,88,0.110,0.0,6.0 +1991,7,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,101900,21,540,425,5,0,5,0,0,0,0,170,4.6,10,6,11.2,9000,9,999999999,419,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.2,74,101900,0,0,414,0,0,0,0,0,0,0,150,1.5,9,5,11.2,7500,9,999999999,430,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,22.8,77,102000,0,0,415,0,0,0,0,0,0,0,120,1.5,9,5,11.2,77777,9,999999999,430,0.2410,0,88,0.110,0.0,99.0 +1991,7,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.8,82,102000,0,0,409,0,0,0,0,0,0,0,150,1.5,9,5,11.2,77777,9,999999999,430,0.2410,0,88,0.110,999.0,99.0 +1991,7,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,22.8,79,102000,0,0,412,0,0,0,0,0,0,0,90,1.0,9,5,11.2,77777,9,999999999,430,0.2410,0,88,0.110,999.0,99.0 +1991,7,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.3,85,102000,0,0,399,0,0,0,0,0,0,0,80,1.5,2,2,11.2,77777,9,999999999,430,0.2420,0,88,0.110,0.0,6.0 +1991,7,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101900,0,0,403,0,0,0,0,0,0,0,70,1.0,3,3,11.2,77777,9,999999999,440,0.2420,0,88,0.110,999.0,99.0 +1991,7,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101900,0,0,396,0,0,0,0,0,0,0,70,0.5,2,2,11.2,77777,9,999999999,440,0.2420,0,88,0.110,999.0,99.0 +1991,7,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,23.3,90,101800,0,0,397,0,0,0,0,0,0,0,150,1.5,3,3,11.2,77777,9,999999999,440,0.2420,0,88,0.110,0.0,99.0 +1991,7,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.9,94,101900,0,0,394,0,0,0,0,0,0,0,120,0.5,2,2,11.2,77777,9,999999999,440,0.2420,0,88,0.110,999.0,99.0 +1991,7,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101900,4,232,401,0,2,0,0,0,0,0,0,0.0,3,3,11.2,77777,9,999999999,440,0.2420,0,88,0.110,999.0,99.0 +1991,7,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,24.4,87,101900,185,1323,404,70,183,45,7300,11400,5700,810,70,0.5,2,2,11.2,77777,9,999999999,440,0.2420,0,88,0.110,0.0,6.0 +1991,7,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,25.0,82,102000,467,1323,417,277,447,119,29000,41500,14300,2280,0,0.0,3,3,11.2,77777,9,999999999,440,0.2420,0,88,0.110,999.0,99.0 +1991,7,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,24.4,75,102000,734,1323,418,467,611,128,49200,61000,15300,2880,150,1.0,2,2,11.2,77777,9,999999999,440,0.2420,0,88,0.110,999.0,99.0 +1991,7,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,25.0,70,102000,965,1323,433,625,590,194,65800,59700,22100,5710,0,0.0,3,3,11.2,77777,9,999999999,450,0.2420,0,88,0.110,0.0,99.0 +1991,7,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,23.9,68,102000,1146,1323,424,799,684,207,85600,70000,24800,9420,270,1.0,2,2,11.2,77777,9,999999999,450,0.2420,0,88,0.110,999.0,99.0 +1991,7,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,23.3,61,101900,1262,1323,467,429,110,324,48300,11800,37000,20280,270,2.1,9,9,11.2,7500,9,999999999,450,0.2420,0,88,0.110,999.0,99.0 +1991,7,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.9,23.3,54,101800,1308,1323,480,758,389,373,81800,40700,41500,43930,240,1.5,9,9,11.2,7500,9,999999999,450,0.2420,0,88,0.110,0.0,6.0 +1991,7,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,23.9,58,101800,1278,1323,478,536,151,390,59800,16200,44100,26730,280,3.1,9,9,11.2,7500,9,999999999,450,0.2420,0,88,0.110,999.0,99.0 +1991,7,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,21.7,56,101700,1177,1323,465,725,255,498,79000,27000,54900,22820,330,3.6,9,9,11.2,7500,9,999999999,450,0.2420,0,88,0.110,999.0,99.0 +1991,7,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.2,24.4,64,101700,1009,1323,471,416,66,365,45800,6800,40600,13710,330,4.6,9,9,11.2,7500,9,999999999,450,0.2420,0,88,0.110,0.0,99.0 +1991,7,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,25.0,68,101600,787,1323,469,265,73,221,29100,7300,24800,7330,310,3.1,9,9,11.2,7500,9,999999999,450,0.2420,0,88,0.110,999.0,99.0 +1991,7,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,24.4,65,101600,526,1323,468,138,49,119,15200,4700,13400,3530,330,2.6,9,9,11.2,7500,9,999999999,450,0.2420,0,88,0.110,999.0,99.0 +1991,7,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,23.9,68,101600,245,1323,424,100,264,51,10600,19100,7000,910,350,0.5,2,2,11.2,77777,9,999999999,450,0.2420,0,88,0.110,0.0,6.0 +1991,7,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.9,72,101600,20,518,454,3,0,3,0,0,0,0,0,0.0,9,9,11.2,7500,9,999999999,450,0.2420,0,88,0.110,999.0,99.0 +1991,7,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,24.4,82,101600,0,0,410,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,450,0.2420,0,88,0.110,999.0,99.0 +1991,7,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.3,24.4,79,101700,0,0,461,0,0,0,0,0,0,0,0,0.0,10,10,11.2,7500,9,999999999,450,0.2420,0,88,0.110,0.0,99.0 +1991,7,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,25.0,88,101700,0,0,455,0,0,0,0,0,0,0,300,0.5,10,10,11.2,7500,9,999999999,450,0.2420,0,88,0.110,999.0,99.0 +1991,7,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,25.6,85,101700,0,0,449,0,0,0,0,0,0,0,310,1.0,9,9,11.2,7500,9,999999999,450,0.2420,0,88,0.110,999.0,99.0 +1991,7,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,25.6,85,101600,0,0,440,0,0,0,0,0,0,0,320,1.5,9,8,11.2,7500,9,999999999,450,0.2440,0,88,0.110,0.0,6.0 +1991,7,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,24.4,85,101600,0,0,425,0,0,0,0,0,0,0,0,0.0,9,7,11.2,3000,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,24.4,90,101600,0,0,426,0,0,0,0,0,0,0,30,0.5,9,8,11.2,7500,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,23.9,88,101600,0,0,418,0,0,0,0,0,0,0,0,0.0,9,7,11.2,7500,9,999999999,450,0.2440,0,88,0.110,0.0,99.0 +1991,7,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101600,0,0,431,0,0,0,0,0,0,0,50,0.5,9,8,11.2,7500,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,25.0,94,101600,4,232,420,0,0,0,0,0,0,0,110,1.0,9,7,8.0,7500,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,25.0,88,101700,182,1324,411,61,162,38,6400,10000,5000,670,170,4.1,3,3,8.0,77777,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,25.0,80,101700,465,1324,416,253,381,119,26500,35300,14000,2280,190,3.6,2,2,11.2,77777,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,24.4,72,101700,732,1324,426,397,483,130,41800,48200,15100,2920,190,2.6,3,3,11.2,77777,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.1,24.4,68,101700,964,1324,448,413,215,256,45500,23300,28500,7500,180,1.0,9,7,11.2,7500,9,999999999,450,0.2440,0,88,0.110,0.0,99.0 +1991,7,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,24.4,64,101800,1145,1324,462,574,329,288,62100,34400,32300,13170,150,1.5,9,8,11.2,7500,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.8,23.9,60,101700,1262,1324,488,272,0,272,33200,0,33200,13210,230,2.6,10,10,11.2,1050,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,23.3,61,101700,1307,1324,480,283,0,283,34600,0,34600,13730,280,4.1,10,10,11.2,1050,9,999999999,450,0.2440,0,88,0.110,0.0,6.0 +1991,7,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.7,72,101700,1278,1324,450,276,0,276,33700,0,33700,13400,340,3.6,10,10,11.2,1050,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,101600,1176,1324,452,251,0,251,30500,0,30500,12210,30,1.0,10,10,11.2,1500,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101600,1008,1324,444,210,0,210,25200,0,25200,10190,160,5.1,10,10,11.2,1500,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,24.4,87,101500,786,1324,451,193,0,193,22500,0,22500,8520,0,0.0,10,10,11.2,3600,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101500,525,1324,452,113,0,113,13100,0,13100,4650,70,2.1,10,10,11.2,7500,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.9,88,101500,243,1324,447,44,0,44,5100,0,5100,1650,160,3.1,10,10,11.2,7500,9,999999999,450,0.2440,0,88,0.110,1.0,6.0 +1991,7,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,24.4,93,101600,19,518,416,3,1,3,0,0,0,0,0,0.0,9,7,11.2,7500,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101700,0,0,444,0,0,0,0,0,0,0,100,2.1,10,10,11.2,7500,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,23.9,94,101700,0,0,440,0,0,0,0,0,0,0,120,1.0,10,10,11.2,7500,9,999999999,450,0.2440,0,88,0.110,0.0,99.0 +1991,7,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101700,0,0,422,0,0,0,0,0,0,0,150,3.1,9,8,11.2,7500,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.9,94,101700,0,0,412,0,0,0,0,0,0,0,140,2.1,9,7,11.2,7500,9,999999999,450,0.2440,0,88,0.110,999.0,99.0 +1991,7,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,23.9,94,101700,0,0,394,0,0,0,0,0,0,0,140,3.1,2,2,11.2,77777,9,999999999,450,0.2450,0,88,0.110,0.0,6.0 +1991,7,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101700,0,0,397,0,0,0,0,0,0,0,140,2.6,3,3,11.2,77777,9,999999999,450,0.2450,0,88,0.110,999.0,99.0 +1991,7,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101600,0,0,393,0,0,0,0,0,0,0,150,6.2,2,2,11.2,77777,9,999999999,450,0.2450,0,88,0.110,999.0,99.0 +1991,7,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,22.8,85,101600,0,0,400,0,0,0,0,0,0,0,170,6.2,3,3,11.2,77777,9,999999999,450,0.2450,0,88,0.110,0.0,99.0 +1991,7,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101600,0,0,389,0,0,0,0,0,0,0,240,3.1,2,2,11.2,77777,9,999999999,450,0.2450,0,88,0.110,999.0,99.0 +1991,7,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101800,3,210,417,0,0,0,0,0,0,0,190,2.6,9,8,11.2,7500,9,999999999,450,0.2450,0,88,0.110,999.0,99.0 +1991,7,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.2,76,101800,180,1324,420,57,28,53,6200,2000,5900,1250,170,3.1,9,7,11.2,7500,9,999999999,450,0.2450,0,88,0.110,0.0,6.0 +1991,7,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.2,72,101900,463,1324,433,188,94,155,20600,8900,17500,4100,210,1.5,9,8,11.2,7500,9,999999999,450,0.2450,0,88,0.110,999.0,99.0 +1991,7,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,21.7,69,101800,731,1324,425,211,177,113,23900,18700,13500,2410,120,2.6,9,7,11.2,7500,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,22.8,70,101800,963,1324,440,497,263,305,54000,28400,33300,9150,180,3.6,9,8,11.2,7500,9,999999999,459,0.2450,0,88,0.110,0.0,99.0 +1991,7,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,22.8,63,101800,1144,1324,423,793,725,166,83600,73100,20300,6950,150,2.6,2,2,11.2,77777,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,23.3,61,101900,1261,1324,457,710,372,355,76500,38900,39400,27320,170,2.1,9,8,11.2,7500,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,22.8,58,101800,1307,1324,452,838,578,267,89500,58900,31200,29940,190,3.6,9,7,11.2,7500,9,999999999,459,0.2450,0,88,0.110,0.0,6.0 +1991,7,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,24.4,64,101700,1278,1324,462,614,221,400,68000,24100,44700,29770,200,3.1,9,8,11.2,7500,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,23.3,61,101600,1175,1324,450,530,285,277,59700,31100,32000,12660,190,4.6,9,7,11.2,6000,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,31.7,23.3,61,101600,1007,1324,457,400,97,325,44000,9900,36400,12440,210,2.6,9,8,11.2,6000,9,999999999,459,0.2450,0,88,0.110,0.0,99.0 +1991,7,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.2,59,101600,785,1324,445,312,206,190,34300,21900,21300,4490,220,3.6,9,7,11.2,6000,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.8,61,101700,523,1324,453,190,112,145,20800,11000,16400,3390,220,3.1,9,8,11.2,6000,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.0,63,101800,241,1324,439,76,43,68,8300,3400,7700,1670,90,2.1,10,9,11.2,900,9,999999999,459,0.2450,0,88,0.110,0.0,6.0 +1991,7,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101700,18,496,440,3,0,3,0,0,0,0,140,1.0,10,9,11.2,6000,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.8,77,101800,0,0,423,0,0,0,0,0,0,0,180,1.0,9,7,11.2,77777,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,22.2,79,101900,0,0,423,0,0,0,0,0,0,0,100,2.1,9,8,11.2,77777,9,999999999,459,0.2450,0,88,0.110,0.0,99.0 +1991,7,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.3,82,102000,0,0,421,0,0,0,0,0,0,0,90,2.6,9,7,11.2,2400,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101900,0,0,425,0,0,0,0,0,0,0,120,2.6,9,8,11.2,7500,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101900,0,0,422,0,0,0,0,0,0,0,100,2.6,9,8,11.2,2400,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101800,0,0,434,0,0,0,0,0,0,0,160,4.1,10,9,11.2,7500,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101800,0,0,422,0,0,0,0,0,0,0,160,4.1,9,8,11.2,77777,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.9,90,101900,0,0,416,0,0,0,0,0,0,0,170,3.6,9,7,11.2,77777,9,999999999,459,0.2450,0,88,0.110,0.0,99.0 +1991,7,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101900,0,0,425,0,0,0,0,0,0,0,180,3.6,9,8,11.2,77777,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,102000,3,210,397,0,0,0,0,0,0,0,160,2.1,2,2,11.2,77777,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,23.9,85,102000,178,1324,429,44,9,43,4900,100,4900,1460,140,3.6,9,8,11.2,7500,9,999999999,459,0.2450,0,88,0.110,0.0,6.0 +1991,7,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,102000,462,1324,431,185,81,156,20200,7700,17500,4110,130,2.1,9,7,11.2,7500,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.9,72,102100,730,1324,444,336,171,241,36600,17700,26800,6240,160,3.6,9,8,11.2,7500,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,23.3,67,102100,962,1324,420,655,648,184,69300,65800,21400,5420,150,2.6,2,2,11.2,77777,9,999999999,459,0.2450,0,88,0.110,0.0,99.0 +1991,7,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.8,61,102100,1143,1324,453,436,118,334,48600,12600,37600,14070,280,3.6,9,8,11.2,3600,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,21.1,63,102100,1261,1324,431,342,62,283,38000,6300,32000,16860,340,1.0,9,7,11.2,3600,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.2,59,102000,1306,1324,452,662,100,563,73000,10400,62700,39240,270,1.5,9,8,11.2,3600,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.7,22.8,59,101900,1277,1324,449,645,92,557,71200,9600,62000,32730,320,3.6,9,7,11.2,7500,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,24.4,64,101800,1175,1324,462,672,338,371,73900,36800,41200,17350,340,2.1,9,8,11.2,6000,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,32.2,22.2,56,101800,1006,1324,468,455,100,379,50100,10300,42300,14070,320,4.1,10,9,11.2,3600,9,999999999,459,0.2450,0,88,0.110,0.0,99.0 +1991,7,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.8,61,101800,784,1324,462,365,115,297,40100,11700,33200,9230,330,4.1,10,9,11.2,3600,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.8,65,101800,522,1324,456,222,57,200,24300,5500,22200,5270,320,2.1,10,9,11.2,6000,9,999999999,459,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,22.8,70,101900,239,1324,449,56,9,55,6400,200,6300,1940,340,0.5,10,9,11.2,3000,9,999999999,469,0.2450,0,88,0.110,0.0,6.0 +1991,7,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.2,70,102000,17,497,429,3,0,3,0,0,0,0,60,1.5,9,7,11.2,6000,9,999999999,469,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.7,74,102000,0,0,435,0,0,0,0,0,0,0,120,1.0,10,9,11.2,6000,9,999999999,469,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,22.2,76,102000,0,0,435,0,0,0,0,0,0,0,130,1.5,10,9,11.2,6000,9,999999999,469,0.2450,0,88,0.110,0.0,99.0 +1991,7,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,102000,0,0,433,0,0,0,0,0,0,0,120,2.6,10,9,11.2,6000,9,999999999,469,0.2450,0,88,0.110,999.0,99.0 +1991,7,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,102000,0,0,415,0,0,0,0,0,0,0,130,3.6,9,7,11.2,77777,9,999999999,469,0.2450,0,88,0.110,999.0,99.0 +1991,7,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,22.8,85,102000,0,0,430,0,0,0,0,0,0,0,150,4.1,9,9,11.2,77777,9,999999999,469,0.2470,0,88,0.110,0.0,6.0 +1991,7,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101900,0,0,429,0,0,0,0,0,0,0,150,4.1,9,9,11.2,77777,9,999999999,469,0.2470,0,88,0.110,999.0,99.0 +1991,7,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101800,0,0,430,0,0,0,0,0,0,0,160,3.1,9,9,11.2,77777,9,999999999,469,0.2470,0,88,0.110,999.0,99.0 +1991,7,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,23.3,90,101900,0,0,397,0,0,0,0,0,0,0,180,1.0,3,3,11.2,77777,9,999999999,469,0.2470,0,88,0.110,0.0,99.0 +1991,7,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101900,0,0,393,0,0,0,0,0,0,0,180,1.5,2,2,11.2,77777,9,999999999,469,0.2470,0,88,0.110,999.0,99.0 +1991,7,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101900,3,188,397,0,0,0,0,0,0,0,140,2.1,3,3,11.2,77777,9,999999999,469,0.2470,0,88,0.110,999.0,99.0 +1991,7,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,24.4,87,101900,176,1324,404,58,110,44,6200,6400,5400,810,140,1.0,2,2,11.2,77777,9,999999999,469,0.2470,0,88,0.110,0.0,6.0 +1991,7,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,25.0,82,102000,460,1324,417,198,263,106,21400,25000,12700,2060,130,1.5,3,3,11.2,77777,9,999999999,469,0.2470,0,88,0.110,999.0,99.0 +1991,7,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,24.4,77,102000,728,1324,451,229,43,205,25200,4300,22800,6550,150,1.5,9,9,11.2,7500,9,999999999,469,0.2470,0,88,0.110,999.0,99.0 +1991,7,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,25.0,72,102000,961,1324,463,449,87,386,49400,9000,42900,13550,220,3.6,9,9,11.2,7500,9,999999999,469,0.2470,0,88,0.110,0.0,99.0 +1991,7,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.3,67,102000,1143,1324,457,401,150,271,45200,16100,31200,11390,200,1.5,9,9,11.2,7500,9,999999999,480,0.2470,0,88,0.110,999.0,99.0 +1991,7,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.8,61,101900,1260,1324,462,440,132,314,49600,14200,36100,19350,210,3.1,9,9,11.2,77777,9,999999999,480,0.2470,0,88,0.110,999.0,99.0 +1991,7,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,22.2,56,101800,1306,1324,468,417,192,227,48300,21000,27500,21200,160,3.1,9,9,11.2,7500,9,999999999,480,0.2470,0,88,0.110,0.0,6.0 +1991,7,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,21.7,74,101800,1276,1324,435,487,149,344,54800,16000,39300,23150,190,8.8,9,9,11.2,900,9,999999999,480,0.2470,0,88,0.110,999.0,99.0 +1991,7,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,22.2,61,101700,1174,1324,459,417,146,288,47100,15700,33100,13070,180,4.1,9,9,11.2,3000,9,999999999,480,0.2470,0,88,0.110,999.0,99.0 +1991,7,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,22.8,63,101800,1005,1324,459,620,311,384,66600,33600,41100,12650,180,1.5,9,9,11.2,3000,9,999999999,480,0.2470,0,88,0.110,0.0,99.0 +1991,7,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,23.3,77,101700,782,1324,456,149,0,149,17700,0,17700,6930,270,4.6,10,10,11.2,900,9,999999999,480,0.2470,0,88,0.110,999.0,99.0 +1991,7,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101800,520,1324,446,84,0,84,9900,0,9900,3640,150,2.1,10,10,11.2,900,9,999999999,490,0.2470,0,88,0.110,999.0,99.0 +1991,7,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,24.4,85,101800,237,1324,441,54,6,53,6100,100,6100,1880,110,1.5,9,9,11.2,3000,9,999999999,490,0.2470,0,88,0.110,1.0,6.0 +1991,7,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101800,17,475,438,4,0,4,0,0,0,0,130,2.1,9,9,11.2,7500,9,999999999,490,0.2470,0,88,0.110,999.0,99.0 +1991,7,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,24.4,90,101800,0,0,435,0,0,0,0,0,0,0,0,0.0,9,9,11.2,7500,9,999999999,490,0.2470,0,88,0.110,999.0,99.0 +1991,7,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,24.4,90,101800,0,0,435,0,0,0,0,0,0,0,90,1.0,9,9,11.2,7500,9,999999999,490,0.2470,0,88,0.110,0.0,99.0 +1991,7,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101800,0,0,396,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,490,0.2470,0,88,0.110,999.0,99.0 +1991,7,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101800,0,0,401,0,0,0,0,0,0,0,100,3.1,3,3,11.2,77777,9,999999999,500,0.2470,0,88,0.110,999.0,99.0 +1991,7,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,23.3,90,101800,0,0,397,0,0,0,0,0,0,0,120,2.6,3,3,11.2,77777,9,999999999,500,0.2480,0,88,0.110,0.0,6.0 +1991,7,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101700,0,0,389,0,0,0,0,0,0,0,140,2.1,2,2,11.2,77777,9,999999999,500,0.2480,0,88,0.110,999.0,99.0 +1991,7,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.3,94,101700,0,0,415,0,0,0,0,0,0,0,180,2.1,9,8,11.2,3000,9,999999999,500,0.2480,0,88,0.110,999.0,99.0 +1991,7,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.9,90,101600,0,0,397,0,0,0,0,0,0,0,0,0.0,2,2,11.2,77777,9,999999999,500,0.2480,0,88,0.110,0.0,99.0 +1991,7,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101600,0,0,397,0,0,0,0,0,0,0,130,3.1,3,3,11.2,77777,9,999999999,500,0.2480,0,88,0.110,999.0,99.0 +1991,7,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101600,2,188,412,0,0,0,0,0,0,0,140,3.1,9,7,11.2,77777,9,999999999,500,0.2480,0,88,0.110,999.0,99.0 +1991,7,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.3,85,101700,174,1325,403,50,17,48,5500,1200,5300,1150,150,3.6,3,3,11.2,77777,9,999999999,509,0.2480,0,88,0.110,0.0,6.0 +1991,7,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101700,458,1325,425,154,80,126,16900,7500,14300,3480,160,4.1,9,7,11.2,7500,9,999999999,509,0.2480,0,88,0.110,999.0,99.0 +1991,7,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101700,727,1325,438,237,82,192,26100,8200,21600,6200,240,2.1,9,8,11.2,4500,9,999999999,509,0.2480,0,88,0.110,999.0,99.0 +1991,7,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,24.4,75,101800,960,1325,438,502,148,394,54300,15600,43000,12380,150,2.1,9,7,11.2,4500,9,999999999,509,0.2480,0,88,0.110,0.0,99.0 +1991,7,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,23.3,65,101700,1142,1325,428,803,495,376,84700,51600,40200,17240,140,3.1,3,3,11.2,77777,9,999999999,509,0.2480,0,88,0.110,999.0,99.0 +1991,7,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.8,61,101700,1260,1325,426,894,559,362,96200,58500,40500,27450,250,5.1,2,2,11.2,77777,9,999999999,509,0.2480,0,88,0.110,999.0,99.0 +1991,7,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,21.1,52,101700,1305,1325,457,685,196,491,75400,20900,54700,41330,220,5.7,9,8,11.2,7500,9,999999999,509,0.2480,0,88,0.110,0.0,6.0 +1991,7,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.9,70,101600,1276,1325,441,685,204,488,75300,21700,54300,32690,210,3.1,9,7,11.2,2400,9,999999999,509,0.2480,0,88,0.110,999.0,99.0 +1991,7,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.6,23.3,65,101600,1173,1325,450,502,108,406,55300,11500,45100,18380,180,6.2,9,8,11.2,7500,9,999999999,509,0.2480,0,88,0.110,999.0,99.0 +1991,7,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,24.4,75,101500,1004,1325,438,423,203,269,46700,22000,30000,8380,220,5.1,9,7,11.2,7500,9,999999999,509,0.2480,0,88,0.110,0.0,99.0 +1991,7,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.8,65,101500,781,1325,446,262,98,204,29000,10300,23000,5460,230,4.1,9,8,11.2,3000,9,999999999,509,0.2480,0,88,0.110,999.0,99.0 +1991,7,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.3,67,101500,518,1325,440,180,27,169,20100,2100,19200,6100,230,3.1,9,7,11.2,7500,9,999999999,519,0.2480,0,88,0.110,999.0,99.0 +1991,7,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,23.3,72,101500,234,1325,440,63,0,63,7000,0,7000,2120,240,3.1,9,8,11.2,7500,9,999999999,519,0.2480,0,88,0.110,0.0,6.0 +1991,7,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.8,22.8,74,101600,16,453,427,2,0,2,0,0,0,0,230,2.1,9,7,11.2,7500,9,999999999,519,0.2480,0,88,0.110,999.0,99.0 +1991,7,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.3,82,101600,0,0,428,0,0,0,0,0,0,0,300,2.1,9,8,11.2,7500,9,999999999,519,0.2480,0,88,0.110,999.0,99.0 +1991,7,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.1,23.3,85,101700,0,0,418,0,0,0,0,0,0,0,290,1.0,9,7,11.2,7500,9,999999999,519,0.2480,0,88,0.110,0.0,99.0 +1991,7,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101700,0,0,429,0,0,0,0,0,0,0,0,0.0,9,8,11.2,7500,9,999999999,519,0.2480,0,88,0.110,999.0,99.0 +1991,7,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101600,0,0,418,0,0,0,0,0,0,0,90,0.5,9,7,11.2,7500,9,999999999,519,0.2480,0,88,0.110,999.0,99.0 +1991,7,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,23.9,85,101600,0,0,417,0,0,0,0,0,0,0,90,0.5,9,6,11.2,77777,9,999999999,519,0.2490,0,88,0.110,0.0,6.0 +1991,7,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,24.4,90,101500,0,0,414,0,0,0,0,0,0,0,140,3.1,9,6,11.2,7500,9,999999999,519,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101500,0,0,411,0,0,0,0,0,0,0,150,3.6,9,6,11.2,7500,9,999999999,519,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.9,90,101500,0,0,401,0,0,0,0,0,0,0,140,4.6,3,3,11.2,77777,9,999999999,519,0.2490,0,88,0.110,0.0,99.0 +1991,7,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101500,0,0,397,0,0,0,0,0,0,0,130,3.6,2,2,11.2,77777,9,999999999,519,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101500,2,166,401,0,0,0,0,0,0,0,140,4.6,3,3,11.2,77777,9,999999999,530,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.9,88,101500,171,1325,414,50,40,45,5500,2800,5100,1080,150,5.1,9,6,11.2,77777,9,999999999,530,0.2490,0,88,0.110,0.0,6.0 +1991,7,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.9,77,101600,456,1325,426,192,210,120,20600,19900,13700,2390,160,5.7,9,6,11.2,77777,9,999999999,530,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,24.4,75,101600,725,1325,433,298,94,247,32800,9500,27600,7580,140,4.6,9,6,11.2,77777,9,999999999,530,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.6,23.9,68,101600,959,1325,439,580,426,272,61600,44200,29500,8080,150,4.6,9,6,11.2,77777,9,999999999,519,0.2490,0,88,0.110,0.0,99.0 +1991,7,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,23.9,62,101600,1141,1325,433,786,654,223,83700,66700,26100,9900,170,3.6,2,2,11.2,77777,9,999999999,519,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,23.9,62,101600,1259,1325,438,861,582,307,90500,58700,34600,22300,180,7.2,3,3,11.2,77777,9,999999999,519,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101600,1305,1325,417,792,435,362,85600,45500,40600,40080,100,3.1,9,6,11.2,6000,9,999999999,519,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101600,1275,1325,420,755,345,422,83200,37500,47000,30820,160,5.7,9,6,11.2,3600,9,999999999,519,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,25.0,88,101500,1172,1325,421,685,352,373,75300,38300,41400,17290,180,3.1,9,6,11.2,3600,9,999999999,519,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,29.4,23.9,72,101400,1003,1325,432,573,296,348,61900,32000,37700,11240,220,3.1,9,6,11.2,3600,9,999999999,519,0.2490,0,88,0.110,0.0,99.0 +1991,7,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101400,779,1325,431,332,209,208,36100,22200,23000,4970,210,1.5,9,6,11.2,6000,9,999999999,519,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,24.4,79,101400,516,1325,427,224,177,154,24300,17300,17600,3590,180,1.0,9,6,11.2,3600,9,999999999,519,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,24.4,77,101400,232,1325,430,67,49,58,7300,3800,6600,1450,260,3.1,9,6,11.2,3600,9,999999999,519,0.2490,0,88,0.110,0.0,6.0 +1991,7,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101400,15,453,420,2,0,2,0,0,0,0,270,2.1,9,6,11.2,6000,9,999999999,519,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101500,0,0,417,0,0,0,0,0,0,0,0,0.0,9,6,11.2,3600,9,999999999,519,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,26.7,24.4,87,101500,0,0,418,0,0,0,0,0,0,0,150,5.7,9,6,11.2,780,9,999999999,519,0.2490,0,88,0.110,0.0,99.0 +1991,7,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101600,0,0,405,0,0,0,0,0,0,0,60,2.1,9,6,11.2,2400,9,999999999,519,0.2490,0,88,0.110,999.0,99.0 +1991,7,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.8,85,101600,0,0,430,0,0,0,0,0,0,0,110,2.6,10,9,11.2,3000,9,999999999,519,0.2490,0,88,0.110,999.0,99.0 +1991,7,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.9,90,101600,0,0,411,0,0,0,0,0,0,0,140,4.1,9,6,11.2,6000,9,999999999,519,0.2500,0,88,0.110,1.0,6.0 +1991,7,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101500,0,0,407,0,0,0,0,0,0,0,110,3.1,9,6,11.2,6000,9,999999999,519,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101400,0,0,407,0,0,0,0,0,0,0,120,3.6,9,6,11.2,6000,9,999999999,519,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,23.3,90,101400,0,0,412,0,0,0,0,0,0,0,140,5.1,10,7,11.2,77777,9,999999999,519,0.2500,0,88,0.110,0.0,99.0 +1991,7,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101400,0,0,407,0,0,0,0,0,0,0,130,4.6,9,6,11.2,7500,9,999999999,519,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101400,2,166,407,0,0,0,0,0,0,0,100,2.6,9,6,11.2,7500,9,999999999,519,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101500,169,1325,411,43,16,41,4700,1100,4600,1000,130,4.1,9,6,11.2,77777,9,999999999,519,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101500,454,1325,405,236,411,95,25200,38000,12200,1770,120,4.6,2,2,11.2,77777,9,999999999,519,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101600,724,1325,421,423,519,139,44200,51500,16000,3060,140,4.6,3,3,11.2,77777,9,999999999,519,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,30.0,24.4,72,101600,958,1325,436,597,414,298,62800,42900,31700,8900,190,3.1,9,6,11.2,960,9,999999999,509,0.2500,0,88,0.110,0.0,99.0 +1991,7,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101600,1140,1325,414,466,231,266,52200,25200,30500,10900,200,6.2,10,8,9.6,900,9,999999999,509,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101600,1258,1325,418,504,185,328,56500,20200,37300,21270,260,2.6,10,7,11.2,3000,9,999999999,509,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,23.9,77,101500,1304,1325,426,650,291,363,72700,31700,41400,33460,240,4.1,9,6,11.2,3000,9,999999999,509,0.2500,0,88,0.110,1.0,6.0 +1991,7,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.8,70,101500,1275,1325,428,840,392,462,92000,42600,50900,33750,230,7.2,9,6,11.2,3000,9,999999999,509,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.8,72,101500,1171,1325,424,704,495,266,77200,51900,31300,13210,170,5.1,9,6,11.2,2700,9,999999999,509,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,23.3,79,101500,1002,1325,419,632,543,221,68900,56700,26000,6970,180,5.1,9,6,11.2,960,9,999999999,509,0.2500,0,88,0.110,0.0,99.0 +1991,7,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.9,82,101400,778,1325,420,365,330,171,39400,33800,19500,3910,190,3.6,9,6,11.2,2700,9,999999999,509,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101400,514,1325,422,144,123,96,16200,12100,11400,2230,150,3.6,10,7,11.2,7500,9,999999999,500,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101400,229,1325,429,54,21,50,5900,1600,5600,1280,170,2.6,10,8,11.2,3600,9,999999999,500,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101500,14,431,415,2,0,2,0,0,0,0,130,3.1,10,7,11.2,3600,9,999999999,500,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101500,0,0,410,0,0,0,0,0,0,0,130,3.6,9,6,11.2,7500,9,999999999,500,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.6,23.3,87,101500,0,0,410,0,0,0,0,0,0,0,130,4.1,9,6,11.2,7500,9,999999999,500,0.2500,0,88,0.110,0.0,99.0 +1991,7,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101500,0,0,410,0,0,0,0,0,0,0,130,3.6,9,6,11.2,7500,9,999999999,500,0.2500,0,88,0.110,999.0,99.0 +1991,7,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101500,0,0,407,0,0,0,0,0,0,0,130,3.6,9,6,11.2,7500,9,999999999,500,0.2500,0,88,0.110,999.0,99.0 +1991,7,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.8,88,101400,0,0,411,0,0,0,0,0,0,0,130,4.1,10,7,11.2,77777,9,999999999,500,0.2510,0,88,0.110,0.0,6.0 +1991,7,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.3,94,101400,0,0,415,0,0,0,0,0,0,0,150,5.7,10,8,11.2,1200,9,999999999,500,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.8,94,101400,0,0,405,0,0,0,0,0,0,0,130,4.6,10,7,11.2,2400,9,999999999,490,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101400,0,0,414,0,0,0,0,0,0,0,140,4.1,10,8,11.2,2400,9,999999999,490,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101400,0,0,408,0,0,0,0,0,0,0,150,4.6,10,7,11.2,6000,9,999999999,490,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.8,91,101400,1,144,403,0,0,0,0,0,0,0,150,3.6,9,6,11.2,77777,9,999999999,490,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.3,87,101500,167,1326,415,48,18,46,5300,1300,5100,1100,140,6.7,10,7,11.2,2100,9,999999999,490,0.2510,0,88,0.110,4.0,6.0 +1991,7,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.3,87,101500,453,1326,422,155,27,146,17300,1900,16600,5120,130,5.1,10,8,11.2,3300,9,999999999,490,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.7,23.9,85,101500,723,1326,422,239,166,149,26500,17500,17000,3270,130,4.6,10,7,11.2,3300,9,999999999,490,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,28.9,24.4,77,101500,957,1326,430,627,520,252,67100,54000,28000,7410,160,5.1,9,6,11.2,3900,9,999999999,490,0.2510,0,88,0.110,0.0,99.0 +1991,7,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101600,1140,1326,401,479,278,239,52800,29200,27700,10600,190,7.7,10,7,9.6,600,9,999999999,490,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.3,94,101600,1258,1326,415,563,234,341,63000,25500,38700,22050,180,4.1,10,8,11.2,2100,9,999999999,490,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,23.9,94,101500,1304,1326,412,748,321,432,82600,34900,48200,39760,180,4.6,10,7,11.2,2100,9,999999999,480,0.2510,0,88,0.110,16.0,6.0 +1991,7,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,24.4,93,101500,1274,1326,423,781,385,411,86400,41900,46000,29580,150,4.1,10,8,11.2,2100,9,999999999,480,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,24.4,93,101500,1170,1326,416,734,361,415,80100,39200,45400,19330,150,5.1,10,7,11.2,2100,9,999999999,480,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,27.2,25.0,88,101400,1001,1326,433,594,168,467,63900,17700,50600,15400,150,4.1,10,8,11.2,2100,9,999999999,480,0.2510,0,88,0.110,0.0,99.0 +1991,7,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,25.0,88,101400,776,1326,426,186,65,147,20900,6900,16900,3910,150,5.7,10,7,11.2,2400,9,999999999,480,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101400,512,1326,422,199,29,187,21900,2400,21000,6410,210,5.1,10,8,11.2,2400,9,999999999,480,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,23.3,82,101500,227,1326,421,59,20,55,6400,1500,6100,1380,210,6.2,10,7,11.2,1800,9,999999999,480,0.2510,0,88,0.110,3.0,6.0 +1991,7,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,23.9,90,101400,13,431,422,2,0,2,0,0,0,0,180,3.1,10,8,11.2,2400,9,999999999,480,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101500,0,0,414,0,0,0,0,0,0,0,180,5.1,9,6,11.2,3000,9,999999999,480,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.8,23.7,82,101500,0,0,402,0,0,0,0,0,0,0,180,4.4,3,3,11.2,77777,9,999999999,480,0.2510,0,88,0.110,0.0,99.0 +1991,7,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,23.5,90,101500,0,0,410,0,0,0,0,0,0,0,160,3.6,9,6,11.2,77777,9,999999999,480,0.2510,0,88,0.110,999.0,99.0 +1991,7,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.2,23.3,88,101500,0,0,398,0,0,0,0,0,0,0,160,2.9,3,3,11.2,77777,9,999999999,480,0.2510,0,88,0.110,999.0,99.0 +1994,8,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.8,23.0,86,101900,0,0,399,0,0,0,0,0,0,0,0,2.2,6,4,11.2,11986,9,999999999,430,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,22.8,87,101900,0,0,397,0,0,0,0,0,0,0,0,1.5,6,4,11.2,11239,9,999999999,430,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,22.6,89,101900,0,0,395,0,0,0,0,0,0,0,0,0.7,6,4,11.2,10491,9,999999999,430,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,22.4,91,101900,0,0,393,0,0,0,0,0,0,0,0,0.0,6,4,11.2,9743,9,999999999,430,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,22.6,92,101900,0,0,396,0,0,0,0,0,0,0,0,0.0,5,5,11.2,8995,9,999999999,430,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,22.6,92,101900,1,122,405,0,0,0,0,0,0,0,0,0.0,8,7,11.2,8248,9,999999999,430,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.7,82,101900,164,1326,424,49,8,48,5400,100,5400,1510,0,0.0,9,8,11.3,7500,9,999999999,430,0.2320,0,88,0.110,2.0,6.0 +1994,8,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,23.3,82,101900,450,1326,420,173,59,153,18900,5500,17100,4000,80,2.5,9,7,11.3,7500,9,999999999,430,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.8,72,102000,721,1326,444,352,25,338,38700,2600,37300,11240,110,3.6,9,8,11.3,7500,9,999999999,430,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,22.7,63,102000,956,1326,442,420,261,232,46600,28200,26200,6620,130,3.6,9,7,11.3,7500,9,999999999,430,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,22.7,59,102000,1138,1326,456,547,214,363,60000,23300,40000,15240,160,3.6,9,8,11.3,77777,9,999999999,440,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,21.1,49,102000,1257,1326,436,935,769,205,97600,77100,24300,13700,140,3.6,2,2,11.3,77777,9,999999999,440,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.7,21.6,52,101900,1303,1326,437,887,613,284,94200,62200,32900,29390,190,2.0,3,3,11.3,77777,9,999999999,440,0.2320,0,88,0.110,0.0,6.0 +1994,8,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.8,21.6,49,101800,1273,1326,439,875,659,242,93800,67400,29000,19380,240,1.0,2,2,11.3,77777,9,999999999,440,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.8,21.6,49,101700,1169,1326,444,900,747,240,95400,76000,28300,11620,20,2.0,3,3,11.3,77777,9,999999999,440,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.8,22.1,51,101700,999,1326,444,646,591,200,68100,59900,22900,6240,10,1.7,3,3,11.3,21981,9,999999999,440,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.2,22.0,52,101700,774,1326,441,466,509,169,50300,52100,19900,3850,0,0.0,3,3,11.3,77777,9,999999999,440,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.6,22.5,59,101700,509,1326,436,265,320,142,28300,31300,16300,2920,360,1.2,4,4,11.3,77777,9,999999999,440,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.5,21.2,58,101700,223,1326,424,73,122,52,7700,8300,6300,950,360,1.0,3,3,11.3,77777,9,999999999,440,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.8,19.5,57,101700,12,409,409,1,1,1,0,0,0,0,340,0.2,2,2,11.3,77777,9,999999999,440,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.2,22.6,72,101700,0,0,409,0,0,0,0,0,0,0,320,1.5,2,2,11.3,77777,9,999999999,440,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.8,23.0,75,101800,0,0,408,0,0,0,0,0,0,0,300,0.2,2,2,11.3,77777,9,999999999,440,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.5,23.2,77,101800,0,0,410,0,0,0,0,0,0,0,0,0.0,3,3,11.3,77777,9,999999999,440,0.2320,0,88,0.110,999.0,99.0 +1994,8,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.2,23.4,80,101800,0,0,409,0,0,0,0,0,0,0,0,0.0,3,3,11.3,77777,9,999999999,440,0.2320,0,88,0.110,999.0,99.0 +1994,8,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.8,23.7,83,101800,0,0,403,0,0,0,0,0,0,0,0,0.0,3,2,11.3,21513,9,999999999,440,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.6,23.8,85,101800,0,0,402,0,0,0,0,0,0,0,0,0.0,3,2,11.3,77777,9,999999999,440,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.4,24.1,87,101800,0,0,402,0,0,0,0,0,0,0,0,0.0,3,2,11.3,77777,9,999999999,440,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,24.3,90,101800,0,0,400,0,0,0,0,0,0,0,0,0.0,2,2,11.3,21456,9,999999999,440,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,24.6,92,101800,0,0,400,0,0,0,0,0,0,0,220,1.5,2,2,11.3,21438,9,999999999,440,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,25.6,98,101800,1,122,401,0,0,0,0,0,0,0,210,1.3,2,2,11.3,21269,9,999999999,440,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,23.3,82,101800,162,1326,402,66,156,46,6800,8600,5800,860,80,2.5,2,2,11.3,77777,9,999999999,440,0.2310,0,88,0.110,0.0,6.0 +1994,8,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.8,77,101800,448,1326,416,238,345,121,24700,31600,14000,2320,110,5.6,3,3,11.3,77777,9,999999999,440,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101900,719,1326,417,428,596,104,45600,59800,13100,2370,140,4.6,2,2,11.3,77777,9,999999999,440,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.3,63,101900,955,1326,431,583,544,191,61400,55100,21700,5510,140,3.6,3,3,11.3,77777,9,999999999,440,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.2,59,101900,1138,1326,462,672,182,515,72700,19200,56100,21350,150,3.6,9,9,11.3,1050,9,999999999,440,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.7,57,101900,1256,1326,436,900,663,272,95500,67300,31600,19410,200,2.5,3,3,11.3,77777,9,999999999,440,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.7,21.6,52,101800,1302,1326,433,981,850,147,100500,85200,16700,12080,180,2.5,2,2,11.3,77777,9,999999999,450,0.2310,0,88,0.110,0.0,6.0 +1994,8,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,22.2,52,101700,1272,1326,442,896,695,229,96400,71200,27900,18240,290,2.5,3,3,11.3,77777,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.8,21.1,48,101600,1168,1326,477,404,59,352,44700,6000,39300,16500,280,3.0,9,9,11.3,7500,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.3,21.3,47,101600,997,1326,480,383,230,209,42900,25000,24100,6250,260,3.6,9,9,11.3,8406,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.8,21.6,46,101600,772,1326,473,276,101,217,30400,10600,24300,5760,250,4.2,8,8,11.3,9313,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.6,21.8,50,101700,506,1326,466,225,136,173,24300,13200,19300,4020,230,5.3,8,8,11.3,10219,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.2,19.8,54,101700,221,1326,453,56,20,52,6100,1500,5800,1310,210,4.4,9,9,11.3,9025,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.9,19.0,58,101700,11,387,422,1,2,1,0,0,0,0,210,4.5,7,7,11.3,12031,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.8,19.2,60,101700,0,0,422,0,0,0,0,0,0,0,190,3.6,7,7,11.3,12938,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.4,19.8,63,101700,0,0,416,0,0,0,0,0,0,0,190,3.7,6,6,11.3,13844,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.1,20.3,66,101800,0,0,415,0,0,0,0,0,0,0,170,4.8,6,6,11.3,14750,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.8,20.6,69,101800,0,0,413,0,0,0,0,0,0,0,160,3.3,6,6,11.3,15656,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.4,21.1,73,101800,0,0,408,0,0,0,0,0,0,0,150,4.0,5,5,11.3,16563,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.2,21.5,75,101800,0,0,408,0,0,0,0,0,0,0,140,2.5,5,5,11.3,17469,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,22.0,79,101800,0,0,404,0,0,0,0,0,0,0,120,3.1,5,4,11.3,18375,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.7,22.4,82,101900,0,0,383,0,0,0,0,0,0,0,100,4.3,0,0,11.3,77777,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,22.8,85,101900,0,0,383,0,0,0,0,0,0,0,90,2.8,0,0,11.3,77777,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,23.1,86,101900,1,100,400,0,0,0,0,0,0,0,60,2.9,3,3,11.3,77777,9,999999999,450,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,23.8,85,101900,160,1327,406,49,94,38,5200,5100,4600,690,60,2.5,3,3,11.3,77777,9,999999999,450,0.2310,0,88,0.110,3.0,6.0 +1994,8,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,24.4,79,101900,447,1327,412,249,339,134,26300,31800,15600,2740,50,3.6,2,2,11.3,77777,9,999999999,459,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.8,69,102000,718,1327,425,369,400,153,39900,40600,17900,3310,100,4.1,3,3,11.3,77777,9,999999999,459,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,23.8,68,102000,954,1327,424,631,659,156,67300,67300,18800,4590,100,4.6,2,2,11.3,77777,9,999999999,459,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.7,57,102000,1137,1327,436,794,671,219,84600,68400,25800,9570,80,3.0,3,3,11.3,77777,9,999999999,459,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.2,56,101900,1255,1327,431,877,617,293,92600,62400,33400,20690,80,4.6,2,2,11.3,77777,9,999999999,459,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,33.3,21.6,50,101900,1301,1327,441,966,680,299,102300,68800,34600,30160,80,5.1,3,3,11.3,77777,9,999999999,469,0.2310,0,88,0.110,0.0,6.0 +1994,8,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.8,22.7,52,101800,1271,1327,441,908,719,219,98000,73800,27100,17330,70,3.6,2,2,11.3,77777,9,999999999,469,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,35.0,21.1,44,101700,1167,1327,450,831,636,270,87300,64300,30600,12810,70,4.6,3,3,11.3,77777,9,999999999,469,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,35.5,20.7,42,101700,996,1327,452,687,572,258,73800,59500,29000,8110,40,5.0,3,3,11.3,77777,9,999999999,469,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.3,19.8,43,101700,770,1327,448,431,450,170,46500,46100,19700,3860,60,5.8,4,4,11.3,77777,9,999999999,480,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.1,16.7,47,101800,504,1327,414,209,254,112,22700,24800,13200,2200,90,8.3,4,4,11.3,77777,9,999999999,480,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.4,15.2,47,101800,218,1327,406,63,93,48,7000,6700,5900,1020,90,5.1,5,5,11.3,77777,9,999999999,480,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,16.0,59,101800,10,365,392,1,0,1,0,0,0,0,110,5.9,5,5,11.3,77777,9,999999999,480,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.4,16.2,60,101800,0,0,391,0,0,0,0,0,0,0,60,5.8,5,5,11.3,77777,9,999999999,480,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,17.1,63,101800,0,0,396,0,0,0,0,0,0,0,60,4.7,6,6,11.3,77777,9,999999999,490,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,17.9,66,101800,0,0,398,0,0,0,0,0,0,0,60,5.1,6,6,11.3,77777,9,999999999,490,0.2310,0,88,0.110,999.0,99.0 +1994,8,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,18.6,69,101900,0,0,385,0,0,0,0,0,0,0,50,3.4,2,2,11.3,77777,9,999999999,490,0.2310,0,88,0.110,999.0,99.0 +1994,8,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.7,19.4,72,101900,0,0,391,0,0,0,0,0,0,0,80,4.8,3,3,11.3,77777,9,999999999,490,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.9,20.1,75,101900,0,0,402,0,0,0,0,0,0,0,70,5.2,7,6,11.3,77777,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.2,20.8,77,101900,0,0,398,0,0,0,0,0,0,0,90,3.5,4,4,11.3,77777,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.3,21.6,80,101900,0,0,411,0,0,0,0,0,0,0,100,2.9,8,7,11.3,77777,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.7,22.3,82,101900,0,0,409,0,0,0,0,0,0,0,60,4.3,8,6,11.3,77777,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,22.5,83,101900,1,100,414,0,0,0,0,0,0,0,90,4.1,9,7,11.3,77777,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.3,85,102000,157,1327,418,48,21,45,5200,1400,5000,1060,80,3.0,9,7,11.3,77777,9,999999999,509,0.2300,0,88,0.110,0.0,6.0 +1994,8,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,23.8,79,102000,445,1327,434,236,116,197,25800,11000,22100,4720,110,3.0,9,8,11.3,77777,9,999999999,509,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.8,72,102000,717,1327,437,261,196,155,28800,20600,17600,3410,130,4.6,9,7,11.3,7500,9,999999999,509,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,24.4,70,102000,952,1327,429,639,640,179,67600,65000,20800,5180,140,3.6,3,3,11.3,77777,9,999999999,509,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.3,63,102000,1136,1327,446,565,300,308,62800,32700,34700,12600,150,2.0,9,7,11.3,7500,9,999999999,509,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.2,56,102000,1255,1327,458,486,268,232,54600,28200,27800,16650,280,2.0,9,8,11.3,7500,9,999999999,509,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,22.2,56,101900,1301,1327,451,742,296,451,81600,32200,50000,39750,240,4.1,9,7,11.3,7500,9,999999999,500,0.2300,0,88,0.110,0.0,6.0 +1994,8,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,22.2,58,101800,1270,1327,455,738,377,377,79200,39400,41400,30210,240,3.6,9,8,11.3,7500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.2,56,101700,1166,1327,451,745,470,332,79900,49100,36600,16230,250,3.6,9,7,11.3,7500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.2,59,101700,994,1327,452,402,108,321,44300,11500,35700,10480,330,3.0,9,8,11.3,7500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.3,23.3,66,101700,768,1327,458,228,75,184,25100,7500,20700,6170,330,2.8,9,9,11.3,8407,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.9,23.9,70,101700,501,1327,447,213,115,169,23000,11100,18800,3920,350,2.1,9,8,11.3,9313,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.0,23.9,78,101700,215,1327,445,47,37,41,5200,2600,4800,870,10,1.9,9,9,11.3,10220,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.1,23.3,80,101700,9,365,430,1,0,1,0,0,0,0,40,2.2,9,8,11.3,11127,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.7,21.1,76,101700,0,0,419,0,0,0,0,0,0,0,30,3.1,9,8,11.3,12033,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,21.5,78,101700,0,0,413,0,0,0,0,0,0,0,10,3.1,9,7,11.3,12940,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.5,21.8,80,101800,0,0,440,0,0,0,0,0,0,0,350,3.1,10,10,11.3,13847,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.5,22.0,81,101800,0,0,413,0,0,0,0,0,0,0,310,3.1,9,7,11.3,18653,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.3,22.3,83,101800,0,0,428,0,0,0,0,0,0,0,290,3.1,9,9,11.3,19560,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.4,22.5,84,101800,0,0,404,0,0,0,0,0,0,0,270,3.0,5,5,11.3,77777,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.5,22.7,85,101800,0,0,429,0,0,0,0,0,0,0,240,3.0,9,9,11.3,21373,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.4,23.0,87,101800,0,0,420,0,0,0,0,0,0,0,210,3.0,9,8,11.3,77777,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,23.3,87,101800,0,0,422,0,0,0,0,0,0,0,190,3.0,9,8,11.3,77777,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.8,23.3,86,101800,0,77,405,0,0,0,0,0,0,0,190,3.8,5,4,11.3,77777,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.3,85,101800,155,1327,424,38,8,37,4200,0,4200,1240,190,3.6,9,8,11.3,77777,9,999999999,500,0.2300,0,88,0.110,0.0,6.0 +1994,8,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,23.3,77,101800,443,1327,427,197,194,132,20800,18200,14800,2690,160,3.0,9,7,11.3,77777,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,101900,715,1327,437,243,122,177,27000,12700,20100,4530,170,2.0,9,8,11.3,7500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,24.4,72,101900,951,1327,441,447,233,279,48700,25200,30700,8120,190,3.0,9,7,11.3,7500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.8,65,101800,1135,1327,454,695,370,378,76000,40200,41500,15770,190,4.6,9,8,11.3,7500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,25.0,70,101800,1254,1327,449,718,368,369,76900,38500,40500,26670,190,6.1,9,7,11.3,1500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,22.2,82,101800,1300,1327,420,655,253,407,72600,27600,45600,35270,50,1.5,9,8,8.0,2100,9,999999999,500,0.2300,0,88,0.110,13.0,6.0 +1994,8,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,24.4,82,101700,1269,1327,428,512,249,273,58200,27200,32100,18440,10,1.0,9,7,11.3,7500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,24.4,70,101600,1164,1327,451,584,358,270,63900,37500,30900,13000,10,1.5,9,8,11.3,7500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.5,24.4,70,101600,993,1327,435,577,346,318,62800,37400,34700,9950,30,1.8,5,5,11.3,77777,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.8,24.6,78,101500,766,1327,426,400,312,220,43300,33000,24200,5260,0,0.0,5,5,11.3,77777,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.6,24.6,89,101600,499,1327,429,207,140,155,22600,13600,17500,3590,70,0.3,9,8,11.3,7500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.7,24.6,88,101600,211,1327,423,76,60,67,8400,4600,7600,1570,90,1.5,9,7,11.3,7500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.7,23.7,84,101700,9,343,422,1,0,1,0,0,0,0,90,1.8,9,7,11.3,7500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.8,24.7,94,101800,0,0,418,0,0,0,0,0,0,0,110,2.6,9,7,11.3,7500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.8,24.8,84,101800,0,0,429,0,0,0,0,0,0,0,160,2.3,9,7,11.3,7500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.8,24.8,94,101800,0,0,418,0,0,0,0,0,0,0,160,2.1,9,7,11.3,7500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.9,24.9,94,101800,0,0,419,0,0,0,0,0,0,0,190,3.3,9,7,11.3,7500,9,999999999,500,0.2300,0,88,0.110,999.0,99.0 +1994,8,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.9,22.9,84,101800,0,0,405,0,0,0,0,0,0,0,210,3.1,9,4,11.3,7500,9,999999999,500,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,24.0,89,101800,0,0,403,0,0,0,0,0,0,0,230,3.8,5,3,11.3,77777,9,999999999,500,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,24.0,89,101800,0,0,399,0,0,0,0,0,0,0,260,3.1,5,2,11.3,77777,9,999999999,500,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,24.0,94,101800,0,0,381,0,0,0,0,0,0,0,310,2.1,3,0,11.3,77777,9,999999999,500,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,24.0,94,101800,0,0,394,0,0,0,0,0,0,0,250,2.6,5,2,11.3,77777,9,999999999,500,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,24.0,100,101900,0,77,393,0,0,0,0,0,0,0,260,2.6,5,3,11.3,77777,9,999999999,500,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,25.0,94,101900,153,1328,401,47,35,43,5100,2400,4900,1010,260,2.6,5,2,11.3,77777,9,999999999,509,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.0,25.0,84,102000,441,1328,415,203,222,129,21500,20800,14600,2620,270,2.1,5,3,11.3,77777,9,999999999,500,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.0,26.0,84,102000,714,1328,418,428,391,217,45900,41000,23800,5050,300,3.1,5,2,11.3,77777,9,999999999,500,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.0,26.0,79,102100,950,1328,431,573,412,278,60600,42700,29900,8130,260,2.1,9,4,11.3,3600,9,999999999,500,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.0,25.0,70,102100,1134,1328,436,718,420,358,75900,43800,38400,15870,280,3.1,9,4,11.3,3600,9,999999999,490,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.0,25.0,70,102000,1253,1328,432,764,519,273,80900,52700,31100,18990,300,3.6,5,3,11.3,77777,9,999999999,490,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.0,23.0,63,102000,1299,1328,425,855,503,362,92400,52600,40800,36400,290,4.1,5,2,11.3,77777,9,999999999,490,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.0,22.0,66,101900,1268,1328,417,873,614,286,92400,62200,32800,21750,270,3.1,5,3,11.3,77777,9,999999999,490,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.0,22.0,56,101900,1163,1328,437,673,421,304,72800,44000,34100,14630,300,2.6,9,4,11.3,3600,9,999999999,480,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,20.0,78,101800,991,1328,391,616,389,325,66800,42000,35400,10180,250,4.1,9,4,11.3,3600,9,999999999,480,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,23.0,84,101800,763,1328,405,439,287,273,46600,30300,29200,6800,280,2.6,9,4,11.3,3600,9,999999999,480,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,23.0,89,101800,496,1328,400,215,204,139,23000,19800,15600,2850,260,2.6,9,4,11.3,3600,9,999999999,480,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,23.0,89,101900,208,1328,400,83,25,79,9000,1900,8700,1750,260,2.6,9,4,11.3,7500,9,999999999,469,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,23.0,89,102000,8,321,400,1,0,1,0,0,0,0,270,2.6,9,4,11.3,7500,9,999999999,469,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,23.0,84,102000,0,0,405,0,0,0,0,0,0,0,280,2.1,9,4,11.3,7500,9,999999999,469,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,23.0,89,102100,0,0,400,0,0,0,0,0,0,0,320,0.5,9,4,11.3,7500,9,999999999,469,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,23.0,84,102200,0,0,405,0,0,0,0,0,0,0,230,1.5,9,4,11.3,7500,9,999999999,459,0.2290,0,88,0.110,999.0,99.0 +1994,8,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,23.0,84,102200,0,0,412,0,0,0,0,0,0,0,230,1.5,9,6,11.3,7500,9,999999999,459,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,23.0,79,102100,0,0,429,0,0,0,0,0,0,0,270,2.6,9,8,11.3,7500,9,999999999,459,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,24.0,84,102000,0,0,415,0,0,0,0,0,0,0,30,4.6,5,5,11.3,77777,9,999999999,459,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,24.0,84,102000,0,0,415,0,0,0,0,0,0,0,70,5.1,5,5,11.3,77777,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,24.0,94,102000,0,0,404,0,0,0,0,0,0,0,60,5.1,5,5,11.3,77777,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,23.0,94,102000,0,0,398,0,0,0,0,0,0,0,210,4.1,5,5,11.3,77777,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,24.0,94,102100,0,55,412,0,0,0,0,0,0,0,100,3.1,9,7,11.3,7500,9,999999999,440,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,24.0,89,102100,151,1328,425,42,5,41,4600,0,4600,1320,130,6.7,9,8,11.3,7500,9,999999999,440,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.0,25.0,84,102200,439,1328,447,106,17,100,12100,1000,11700,3900,90,1.0,10,9,11.3,7500,9,999999999,440,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,24.0,84,102200,712,1328,440,245,33,227,26900,3300,25100,7000,50,2.6,10,9,11.3,3600,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.0,25.0,75,102200,949,1328,459,201,19,187,22200,1900,20900,7260,60,3.6,10,9,11.3,3600,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.0,25.0,75,102200,1133,1328,459,453,108,361,50200,11500,40300,14770,60,3.6,10,9,11.3,600,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.0,24.0,66,102200,1252,1328,464,534,92,447,59000,9500,50000,24460,70,2.6,10,9,11.3,600,9,999999999,450,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.0,26.0,75,102100,1298,1328,466,680,291,395,75500,31700,44500,33410,90,3.1,10,9,11.3,600,9,999999999,459,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,22.0,89,102100,1267,1328,420,656,109,551,72300,11400,61400,30700,160,3.1,10,9,11.3,840,9,999999999,459,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,24.0,94,102000,1162,1328,428,446,50,402,49200,5100,44700,18230,270,1.0,10,9,11.3,900,9,999999999,459,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,24.0,89,101900,989,1328,434,373,78,314,41000,8000,35100,11810,250,1.5,10,9,11.3,3600,9,999999999,459,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,23.0,84,101900,761,1328,432,330,50,301,36200,5100,33300,9090,120,4.6,10,9,11.3,3600,9,999999999,459,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,24.0,89,101900,493,1328,418,188,53,168,20600,5100,18700,4490,70,7.7,9,7,11.3,3000,9,999999999,469,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,23.9,88,101900,205,1328,425,52,4,51,5800,100,5800,1730,70,3.1,9,8,11.3,3000,9,999999999,469,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.9,23.9,89,101900,7,299,433,0,0,0,0,0,0,0,60,4.5,10,9,11.3,3000,9,999999999,469,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.9,22.8,83,101900,0,0,432,0,0,0,0,0,0,0,70,5.0,10,9,11.3,3000,9,999999999,469,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.8,23.8,89,101900,0,0,432,0,0,0,0,0,0,0,70,4.9,10,9,11.3,3000,9,999999999,480,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.8,23.7,88,101900,0,0,423,0,0,0,0,0,0,0,70,3.9,9,8,11.3,7500,9,999999999,480,0.2290,0,88,0.110,999.0,99.0 +1994,8,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.8,23.7,88,101900,0,0,417,0,0,0,0,0,0,0,60,3.3,9,7,11.3,7500,9,999999999,480,0.2290,0,88,0.110,999.0,99.0 +1994,8,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.7,23.6,88,101800,0,0,407,0,0,0,0,0,0,0,70,2.8,5,5,11.3,77777,9,999999999,480,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.7,23.6,88,101700,0,0,401,0,0,0,0,0,0,0,80,3.2,3,3,11.3,77777,9,999999999,480,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.7,23.5,88,101700,0,0,397,0,0,0,0,0,0,0,70,2.7,2,2,11.3,77777,9,999999999,490,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,23.5,94,101600,0,0,395,0,0,0,0,0,0,0,60,2.6,3,3,11.3,77777,9,999999999,490,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,23.4,93,101500,0,0,391,0,0,0,0,0,0,0,60,1.6,2,2,11.3,77777,9,999999999,490,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.5,23.4,88,101600,0,55,400,0,0,0,0,0,0,0,80,1.5,3,3,11.3,77777,9,999999999,490,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,23.3,88,101500,148,1329,396,55,180,35,5700,9900,4600,630,60,2.5,2,2,11.3,77777,9,999999999,500,0.2280,0,88,0.110,17.0,6.0 +1994,8,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.7,90,101600,437,1329,423,69,19,62,7500,1700,7000,1860,110,4.6,9,9,8.0,2700,9,999999999,490,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101700,711,1329,420,245,85,199,26900,8500,22400,6290,50,3.6,9,9,11.3,1050,9,999999999,490,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.7,85,101700,948,1329,429,533,93,466,58400,9700,51500,15260,90,3.0,9,9,11.3,2700,9,999999999,490,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.7,82,101700,1133,1329,433,597,147,471,64900,15600,51600,19230,80,2.5,9,9,11.3,1800,9,999999999,480,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.7,90,101700,1252,1329,435,271,0,271,33000,0,33000,13140,230,3.6,10,10,8.0,900,9,999999999,480,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,23.3,94,101700,1297,1329,436,282,0,282,34400,0,34400,13660,80,1.0,10,10,11.3,900,9,999999999,480,0.2280,0,88,0.110,17.0,6.0 +1994,8,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.7,85,101600,1266,1329,429,427,201,235,49100,22000,28100,15360,140,3.0,9,9,11.3,7500,9,999999999,480,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101500,1160,1329,440,444,124,335,49400,13300,37800,14550,190,2.0,9,9,11.3,7500,9,999999999,469,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.0,25.2,80,101500,987,1329,466,258,0,258,30400,0,30400,11850,200,2.0,10,10,11.3,7941,9,999999999,469,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.9,24.2,76,101600,759,1329,442,365,218,241,40000,22700,27000,6340,200,1.8,8,8,11.3,8383,9,999999999,469,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.7,23.1,86,101600,490,1329,431,228,221,146,24200,21400,16300,3020,200,1.0,9,9,11.3,8824,9,999999999,469,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.5,24.1,92,101600,201,1329,415,62,81,49,6700,5600,5900,1040,200,0.9,8,7,11.3,9265,9,999999999,459,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.3,23.0,82,101600,6,299,425,0,0,0,0,0,0,0,200,0.8,8,8,11.3,9706,9,999999999,459,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.2,23.9,93,101600,0,0,409,0,0,0,0,0,0,0,200,0.9,7,6,11.3,10148,9,999999999,459,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,22.9,88,101600,0,0,439,0,0,0,0,0,0,0,0,0.0,10,10,11.3,0,9,999999999,450,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.8,22.8,89,101600,0,0,437,0,0,0,0,0,0,0,60,2.8,10,10,11.3,0,9,999999999,450,0.2280,0,88,0.110,999.0,99.0 +1994,8,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,22.7,89,101600,0,0,436,0,0,0,0,0,0,0,70,2.4,10,10,11.3,0,9,999999999,450,0.2280,0,88,0.110,999.0,99.0 +1994,8,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,23.7,95,101600,0,0,437,0,0,0,0,0,0,0,70,2.1,10,10,11.3,0,9,999999999,450,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.3,22.6,90,101700,0,0,434,0,0,0,0,0,0,0,70,2.2,10,10,11.3,0,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.1,23.1,100,101700,0,0,428,0,0,0,0,0,0,0,80,1.9,10,10,11.3,12795,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.9,22.9,100,101700,0,0,386,0,0,0,0,0,0,0,50,2.0,4,3,11.3,13236,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.8,22.8,100,101700,0,0,388,0,0,0,0,0,0,0,60,2.7,5,4,11.3,13678,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.6,21.6,100,101700,0,33,406,0,0,0,0,0,0,0,60,1.2,10,9,11.3,1119,9,999999999,430,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,23.3,94,101700,146,1329,424,37,4,37,4200,0,4200,1220,70,3.0,10,9,1.2,60,9,999999999,430,0.2270,0,88,0.110,34.0,6.0 +1994,8,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101700,436,1329,427,117,2,116,13200,100,13100,4320,70,4.1,10,9,1.6,150,9,999999999,430,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101800,710,1329,424,282,129,213,30900,13400,23800,5440,80,2.5,9,8,4.8,270,9,999999999,430,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101800,947,1329,424,272,108,194,30700,11600,22400,5980,50,3.0,9,7,4.8,270,9,999999999,430,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,101800,1132,1329,415,803,628,268,84200,63300,30200,11230,60,2.5,3,3,4.8,77777,9,999999999,430,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.7,65,101800,1251,1329,419,866,608,294,91400,61400,33400,19940,130,1.5,2,2,6.4,77777,9,999999999,430,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.5,21.6,59,101800,1296,1329,425,955,657,314,100700,66300,35900,29320,260,2.0,3,3,11.3,77777,9,999999999,430,0.2270,0,88,0.110,0.0,6.0 +1994,8,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.2,59,101700,1265,1329,445,786,454,353,84700,47500,39400,26930,210,2.5,9,7,11.3,77777,9,999999999,430,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.3,63,101700,1159,1329,431,782,574,281,85100,60100,32600,13230,210,2.0,3,3,11.3,77777,9,999999999,430,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.2,23.2,59,101700,985,1329,440,576,478,221,62600,49800,25600,6720,170,1.2,4,4,11.3,20813,9,999999999,430,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.4,26.1,93,101700,756,1329,417,470,505,182,50100,51500,20800,4110,230,0.9,4,4,11.3,19625,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.5,25.9,86,101700,487,1329,426,241,275,140,25700,26500,15900,2870,240,0.6,5,5,11.3,16338,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.6,26.6,100,101700,198,1329,416,59,46,52,6400,3400,5900,1270,50,1.9,5,5,11.3,15750,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.7,23.7,94,101700,5,277,402,0,0,0,0,0,0,0,60,2.1,5,5,11.3,16063,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.9,21.9,100,101700,0,0,385,0,0,0,0,0,0,0,100,2.4,5,5,11.3,14875,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,24.4,91,101700,0,0,407,0,0,0,0,0,0,0,100,3.6,4,4,11.3,13688,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,25.3,95,101700,0,0,409,0,0,0,0,0,0,0,100,2.2,5,4,11.3,12500,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.2,24.2,89,101700,0,0,411,0,0,0,0,0,0,0,60,2.4,5,5,11.3,11313,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.4,24.1,93,101700,0,0,406,0,0,0,0,0,0,0,130,3.3,5,5,11.3,10125,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.5,23.9,81,101700,0,0,418,0,0,0,0,0,0,0,110,2.9,5,5,11.3,13438,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.6,23.8,85,101700,0,0,397,0,0,0,0,0,0,0,130,4.2,1,1,11.3,77777,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.7,23.7,89,101800,0,0,392,0,0,0,0,0,0,0,90,3.3,1,1,11.3,77777,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.9,23.6,77,101800,0,0,423,0,0,0,0,0,0,0,50,3.6,6,6,11.3,9875,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,23.4,91,101800,0,33,407,0,0,0,0,0,0,0,60,3.8,6,6,11.3,8688,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101800,144,1330,399,53,158,36,5500,8500,4600,650,60,4.6,2,2,11.3,77777,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,23.8,79,101800,434,1330,412,217,353,102,22900,32100,12400,1920,60,5.1,3,3,11.3,77777,9,999999999,440,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.8,72,101800,708,1330,418,463,576,156,49800,58300,18600,3350,70,5.6,2,2,11.3,77777,9,999999999,450,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,24.4,72,101900,946,1330,426,643,658,174,68100,66800,20400,4980,110,4.1,3,3,11.3,77777,9,999999999,450,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,23.3,62,101900,1131,1330,429,824,706,223,87500,71900,26200,9480,100,2.5,2,2,11.3,77777,9,999999999,450,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,22.7,54,101800,1250,1330,442,896,717,221,96400,73500,27100,15120,110,2.0,3,3,11.3,77777,9,999999999,450,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.7,21.1,51,101700,1295,1330,432,941,766,195,99300,77100,24000,17150,90,2.0,2,2,11.3,77777,9,999999999,450,0.2270,0,88,0.110,0.0,6.0 +1994,8,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.7,22.2,54,101600,1263,1330,438,933,796,176,99100,80400,22500,12290,170,2.5,3,3,11.3,77777,9,999999999,459,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.7,67,101600,1157,1330,436,722,494,291,78200,51700,33100,13640,240,4.6,9,7,11.3,7500,9,999999999,459,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.5,24.6,75,101700,983,1330,439,524,310,294,57200,33500,32400,8960,200,4.9,10,7,11.3,8406,9,999999999,459,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.7,24.4,78,101700,753,1330,434,310,178,209,34200,18600,23700,5480,260,4.2,9,7,11.3,9313,9,999999999,459,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.8,25.3,86,101700,484,1330,430,178,82,148,19500,7800,16700,4040,270,4.5,10,7,11.3,10219,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.9,25.1,90,101700,194,1330,453,37,8,36,4300,100,4200,1310,240,3.9,10,10,11.3,11125,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,25.0,94,101700,5,255,448,0,0,0,0,0,0,0,150,12.4,10,10,11.3,12031,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.2,23.8,92,101700,0,0,413,0,0,0,0,0,0,0,120,5.5,9,7,11.3,12938,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.3,24.7,96,101700,0,0,415,0,0,0,0,0,0,0,350,2.8,10,7,11.3,13844,9,999999999,469,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.5,24.5,94,101700,0,0,416,0,0,0,0,0,0,0,80,3.6,9,7,11.3,14750,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1994,8,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,23.4,93,101800,0,0,405,0,0,0,0,0,0,0,60,4.4,9,6,11.3,15656,9,999999999,480,0.2270,0,88,0.110,999.0,99.0 +1994,8,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.7,23.2,97,101800,0,0,396,0,0,0,0,0,0,0,80,4.2,6,5,11.3,16563,9,999999999,480,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.8,23.1,96,101800,0,0,405,0,0,0,0,0,0,0,70,3.0,8,7,11.3,17469,9,999999999,480,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,21.9,83,101800,0,0,416,0,0,0,0,0,0,0,90,2.9,9,8,11.3,18375,9,999999999,480,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.1,22.8,92,101800,0,0,406,0,0,0,0,0,0,0,80,2.7,8,7,11.3,19281,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,23.6,96,101800,0,0,414,0,0,0,0,0,0,0,70,2.5,9,8,11.3,20188,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.4,23.4,94,101800,0,11,408,0,0,0,0,0,0,0,40,1.8,8,7,11.3,21094,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,23.3,88,101800,142,1330,421,34,16,32,3700,1100,3600,780,60,3.6,9,8,11.3,77777,9,999999999,490,0.2260,0,88,0.110,51.0,6.0 +1994,8,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,23.8,85,101900,432,1330,421,114,84,87,12800,7900,10200,1960,70,3.6,9,7,11.3,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,23.8,74,101900,707,1330,441,215,115,153,24000,12000,17600,3900,70,4.1,9,8,11.3,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,24.4,72,101900,945,1330,441,415,197,275,46000,21000,31000,8450,70,4.6,9,7,11.3,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.7,61,101900,1130,1330,453,531,199,362,58800,21300,40700,14660,90,4.6,9,8,11.3,7500,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,22.7,59,101900,1249,1330,448,691,345,366,76700,37600,41300,22270,80,3.0,9,7,11.3,7500,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.7,22.2,54,101800,1294,1330,461,671,279,398,74300,30400,44700,32120,110,3.6,9,8,11.3,1140,9,999999999,490,0.2260,0,88,0.110,0.0,6.0 +1994,8,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.6,72,101700,1262,1330,422,551,253,311,62100,27600,35800,20050,40,2.5,9,7,11.3,3000,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.7,61,101700,1155,1330,453,557,267,325,61800,29100,36500,13980,70,6.1,9,8,11.3,7500,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.1,22.7,61,101700,981,1330,440,555,333,309,60400,36000,33800,9450,150,7.1,8,6,11.3,9313,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,21.5,81,101700,751,1330,425,212,93,159,23800,9800,18200,4160,140,6.5,10,9,11.3,0,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,21.0,76,101700,481,1330,404,207,286,104,22100,26800,12400,1970,220,7.5,7,5,11.3,12938,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,22.1,84,101700,191,1330,417,47,55,39,5200,3700,4700,820,30,8.0,10,8,11.3,250,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,22.0,83,101700,4,233,399,0,1,0,0,0,0,0,40,10.0,6,4,11.3,16563,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,22.0,86,101700,0,0,396,0,0,0,0,0,0,0,310,6.4,5,4,11.3,18375,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,21.9,85,101700,0,0,393,0,0,0,0,0,0,0,280,5.9,4,3,11.3,20188,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,22.4,91,101700,0,0,390,0,0,0,0,0,0,0,350,6.9,4,3,11.3,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,21.9,85,101700,0,0,384,0,0,0,0,0,0,0,10,5.8,3,1,11.3,77777,9,999999999,490,0.2260,0,88,0.110,999.0,99.0 +1994,8,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,21.8,85,101800,0,0,376,0,0,0,0,0,0,0,10,5.8,0,0,11.3,77777,9,999999999,490,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,21.2,85,101800,0,0,373,0,0,0,0,0,0,0,340,5.8,0,0,11.3,77777,9,999999999,490,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,21.2,85,101800,0,0,373,0,0,0,0,0,0,0,10,5.7,0,0,11.3,77777,9,999999999,490,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,21.7,88,101800,0,0,373,0,0,0,0,0,0,0,20,5.7,0,0,11.3,77777,9,999999999,490,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,21.7,88,101800,0,0,373,0,0,0,0,0,0,0,20,5.7,0,0,11.3,77777,9,999999999,480,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,21.6,87,101800,0,11,373,0,0,0,0,0,0,0,30,5.6,0,0,11.3,77777,9,999999999,480,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.6,81,101800,140,1330,391,42,81,34,4500,4000,4100,620,70,5.6,2,2,11.3,77777,9,999999999,480,0.2250,0,88,0.110,0.0,6.0 +1994,8,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101800,430,1330,400,209,320,105,21900,29000,12500,1980,70,7.2,3,3,11.3,77777,9,999999999,490,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,20.5,65,101800,705,1330,404,417,488,158,44700,49400,18500,3390,70,6.1,2,2,11.3,77777,9,999999999,490,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,21.6,69,101900,944,1330,431,429,230,265,46900,24800,29300,7560,70,6.1,9,8,11.3,7500,9,999999999,490,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,20.5,59,101900,1129,1330,433,721,475,318,77200,49600,35000,13690,90,5.6,9,7,11.3,7500,9,999999999,490,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.1,59,101800,1248,1330,444,709,265,460,77400,28800,50300,28340,70,4.6,9,8,11.3,3300,9,999999999,500,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.5,22.7,63,101700,1293,1330,442,811,497,328,88500,52100,37800,30430,110,3.6,9,7,11.3,3300,9,999999999,500,0.2250,0,88,0.110,0.0,6.0 +1994,8,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,21.1,52,101600,1261,1330,457,685,173,521,74900,18400,57400,31380,60,5.6,9,8,11.3,7500,9,999999999,500,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101700,1154,1330,410,748,357,438,81000,38700,47400,19380,80,6.1,9,7,11.3,1500,9,999999999,500,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.4,22.2,82,101700,979,1330,412,538,327,297,58700,35300,32600,9000,80,6.9,9,7,11.3,3000,9,999999999,500,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.2,24.0,93,101700,748,1330,414,341,225,214,36800,23800,23500,5040,130,5.7,8,7,11.3,7500,9,999999999,509,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,22.9,90,101700,477,1330,409,136,73,110,15100,7000,12600,2520,160,4.5,8,7,11.3,4500,9,999999999,509,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.3,23.3,100,101700,187,1330,402,79,51,71,8500,3800,8000,1560,220,3.2,8,7,11.3,7500,9,999999999,509,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.1,21.9,99,101800,3,211,394,0,0,0,0,0,0,0,320,4.6,8,7,11.3,7500,9,999999999,509,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.1,22.6,97,101800,0,0,407,0,0,0,0,0,0,0,350,5.9,9,8,11.3,7500,9,999999999,509,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.4,22.5,95,101900,0,0,408,0,0,0,0,0,0,0,40,4.1,9,8,11.3,7500,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.3,22.0,92,101900,0,0,407,0,0,0,0,0,0,0,60,2.9,9,8,11.3,7500,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1994,8,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.2,22.1,94,101900,0,0,407,0,0,0,0,0,0,0,70,2.7,9,8,11.3,7500,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.6,22.1,91,101900,0,0,394,0,0,0,0,0,0,0,130,4.5,5,5,11.3,77777,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,22.2,90,101900,0,0,397,0,0,0,0,0,0,0,100,2.8,5,5,11.3,77777,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.8,21.6,88,101800,0,0,418,0,0,0,0,0,0,0,120,3.1,9,9,11.3,3300,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.4,22.2,88,101800,0,0,434,0,0,0,0,0,0,0,110,2.6,10,10,11.3,750,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.4,22.7,90,101800,0,0,435,0,0,0,0,0,0,0,100,2.1,10,10,11.3,2400,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.4,22.2,88,101800,0,0,422,0,0,0,0,0,0,0,80,2.1,9,9,11.3,4200,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.5,22.7,85,101900,137,1320,405,36,5,36,4100,0,4100,1190,70,2.1,5,5,11.3,77777,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.2,23.8,82,101900,428,1331,441,154,19,148,17000,1400,16600,4970,110,3.1,9,9,11.3,4200,9,999999999,540,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.8,24.4,77,102000,704,1331,451,209,42,186,22900,4200,20700,5910,100,4.1,9,9,11.3,4200,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.5,24.4,70,102000,943,1331,461,340,62,295,37400,6300,32900,10680,140,3.1,9,9,11.3,3000,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.6,24.4,66,102000,1128,1331,468,306,54,260,33900,5500,29200,11800,150,2.1,9,9,11.3,2400,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.2,24.4,64,101900,1247,1331,471,553,197,368,61400,21500,41200,22110,160,2.1,9,9,11.3,2400,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.2,25.5,68,101800,1292,1331,473,505,145,364,56600,15600,41400,26020,210,2.6,9,9,11.3,3000,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.0,25.0,75,101800,1259,1331,459,516,145,378,57500,15500,42700,22560,210,6.7,9,9,11.3,3000,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.5,24.4,70,101700,1152,1331,461,550,193,383,60800,20600,42900,16240,220,5.7,9,9,11.3,3000,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.5,24.4,70,101700,976,1331,461,380,54,340,41800,5500,37700,12410,310,1.0,9,9,11.3,3000,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.5,25.0,73,101700,745,1331,462,207,39,185,22800,3900,20600,6080,350,2.6,9,9,11.3,3000,9,999999999,530,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.0,24.4,72,101700,474,1331,458,150,35,137,16400,3300,15200,3760,30,2.6,9,9,11.3,3000,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.8,25.0,80,101800,183,1331,452,48,6,47,5300,100,5300,1560,40,5.7,9,9,11.3,7500,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.3,24.4,79,101800,3,189,448,0,0,0,0,0,0,0,60,4.6,9,9,11.3,7500,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.3,24.4,79,101800,0,0,448,0,0,0,0,0,0,0,60,3.1,9,9,11.3,7500,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.2,24.4,85,101800,0,0,441,0,0,0,0,0,0,0,90,2.1,9,9,11.3,7500,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.7,24.4,82,101800,0,0,419,0,0,0,0,0,0,0,80,2.6,5,5,11.3,77777,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1994,8,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.6,23.8,85,101800,0,0,413,0,0,0,0,0,0,0,90,2.6,5,5,11.3,77777,9,999999999,519,0.2250,0,88,0.110,999.0,99.0 +1994,8,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,24.4,90,101700,0,0,404,0,0,0,0,0,0,0,90,2.6,5,3,11.3,77777,9,999999999,519,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.6,23.8,85,101700,0,0,402,0,0,0,0,0,0,0,90,2.1,5,2,11.3,77777,9,999999999,519,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.6,23.8,85,101600,0,0,397,0,0,0,0,0,0,0,60,1.5,3,1,11.3,77777,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,23.3,85,101600,0,0,399,0,0,0,0,0,0,0,70,2.1,5,2,11.3,77777,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,22.7,82,101700,0,0,402,0,0,0,0,0,0,0,90,2.1,5,3,11.3,77777,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,23.3,85,101700,0,0,409,0,0,0,0,0,0,0,80,2.1,9,5,11.3,3300,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,24.4,90,101700,135,1298,404,43,113,31,4600,5800,4000,550,70,2.6,5,3,11.3,77777,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.7,25.0,85,101800,427,1331,410,223,402,94,23600,36400,12000,1750,100,3.1,5,2,11.3,77777,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.4,24.4,75,101800,703,1331,422,423,390,217,45400,40800,23800,5020,120,4.1,5,3,11.3,77777,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.1,24.4,68,101700,942,1331,443,525,371,262,57500,40000,29100,7440,140,3.6,10,6,11.3,600,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.6,25.0,68,101700,1127,1331,446,662,418,307,71000,43700,34000,13080,130,3.6,10,6,11.3,3300,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.4,23.3,70,101700,1246,1331,431,775,353,444,84800,38400,48800,26900,160,3.1,10,6,11.3,3300,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.5,25.0,73,101700,1291,1331,440,749,454,309,82200,47600,35900,27860,160,3.1,10,6,11.3,7500,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.1,24.4,68,101600,1258,1331,443,686,220,478,75400,23400,53200,28290,250,1.5,10,6,11.3,7500,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.5,23.8,68,101600,1150,1331,438,721,517,274,78600,54100,31700,12450,260,2.6,10,6,11.3,3300,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.6,23.3,82,101600,974,1331,412,589,448,261,62900,46600,28700,7860,320,4.6,9,5,11.3,7500,9,999999999,509,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,23.3,85,101600,742,1331,409,411,347,217,44300,36600,23900,5110,110,9.3,9,5,11.3,7500,9,999999999,519,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.5,23.3,88,101600,470,1331,396,256,416,109,27100,38700,13400,2070,200,4.1,5,2,11.3,77777,9,999999999,519,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.5,23.7,90,101600,179,1331,406,54,25,51,5900,1800,5700,1210,40,2.3,9,5,11.3,5992,9,999999999,519,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,23.1,89,101600,2,189,403,0,0,0,0,0,0,0,70,3.0,10,5,11.3,4485,9,999999999,519,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,23.0,89,101600,0,0,397,0,0,0,0,0,0,0,80,4.0,6,3,11.3,17477,9,999999999,519,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,23.0,89,101700,0,0,388,0,0,0,0,0,0,0,90,4.9,4,1,11.3,15969,9,999999999,519,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,22.9,88,101700,0,0,387,0,0,0,0,0,0,0,90,4.9,5,1,11.3,14462,9,999999999,519,0.2240,0,88,0.110,999.0,99.0 +1994,8,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,22.2,84,101600,0,0,392,0,0,0,0,0,0,0,90,5.0,4,2,11.3,12954,9,999999999,519,0.2240,0,88,0.110,999.0,99.0 +1994,8,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,22.1,84,101600,0,0,396,0,0,0,0,0,0,0,80,4.9,5,3,11.3,11446,9,999999999,519,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,22.0,83,101600,0,0,399,0,0,0,0,0,0,0,100,6.1,6,4,11.3,9938,9,999999999,519,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,22.5,86,101600,0,0,402,0,0,0,0,0,0,0,100,5.3,8,5,11.3,8431,9,999999999,519,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,22.5,86,101500,0,0,406,0,0,0,0,0,0,0,120,7.0,9,6,11.3,6923,9,999999999,519,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,21.8,82,101500,0,0,395,0,0,0,0,0,0,0,110,5.7,6,3,11.3,5415,9,999999999,519,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,21.7,82,101500,0,0,405,0,0,0,0,0,0,0,110,5.9,10,6,11.3,3908,9,999999999,519,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101600,133,1299,405,35,6,35,4000,0,4000,1160,130,5.6,10,6,11.3,2400,9,999999999,519,0.2230,0,88,0.110,8.0,6.0 +1994,8,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.2,82,101600,425,1332,408,206,207,140,22300,19200,16200,3160,150,3.0,10,6,11.3,3000,9,999999999,519,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.6,76,101600,701,1332,411,339,110,281,37200,11100,31300,8120,150,6.6,10,6,11.3,2700,9,999999999,519,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,19.4,67,101600,940,1332,408,530,387,256,56300,40100,27900,7290,170,5.6,10,6,11.3,3000,9,999999999,519,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,21.6,74,101600,1126,1332,413,556,332,276,60400,34700,31000,11650,150,3.6,10,6,11.3,3000,9,999999999,519,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.8,82,101700,1245,1332,420,656,397,284,72100,41600,33000,18930,170,3.6,10,6,11.3,3600,9,999999999,519,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,25.0,88,101600,1289,1332,421,775,415,373,83400,43400,41300,33330,170,6.6,10,6,11.3,3000,9,999999999,509,0.2230,0,88,0.110,0.0,6.0 +1994,8,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.2,74,101600,1256,1332,418,774,450,349,83500,47100,39000,24940,200,7.7,10,6,11.3,3000,9,999999999,509,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.6,76,101500,1148,1332,411,413,183,255,46600,20000,29300,10470,190,5.1,10,6,11.3,3000,9,999999999,509,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.4,20.7,71,101500,972,1332,411,437,184,302,48100,19600,33800,9550,100,7.3,10,6,11.3,3038,9,999999999,509,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.9,20.0,66,101500,739,1332,413,427,405,202,45000,41100,22100,4540,150,10.0,10,6,11.3,3075,9,999999999,509,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,19.0,62,101500,467,1332,417,168,196,100,18400,18700,11800,1930,160,7.6,10,7,11.3,3113,9,999999999,509,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.3,19.1,69,101500,175,1332,435,22,0,22,2600,0,2600,850,170,6.7,10,10,11.3,0,9,999999999,509,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,20.3,77,101500,2,166,406,0,0,0,0,0,0,0,150,5.7,10,7,11.3,3188,9,999999999,500,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.9,21.4,91,101500,0,0,425,0,0,0,0,0,0,0,150,7.0,10,10,11.3,0,9,999999999,500,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,21.5,85,101500,0,0,432,0,0,0,0,0,0,0,170,7.4,10,10,11.3,0,9,999999999,500,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,20.7,79,101500,0,0,433,0,0,0,0,0,0,0,180,7.7,10,10,11.3,0,9,999999999,500,0.2230,0,88,0.110,999.0,99.0 +1994,8,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.4,20.8,80,101500,0,0,432,0,0,0,0,0,0,0,170,7.8,10,10,11.3,0,9,999999999,500,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,20.9,82,101500,0,0,419,0,0,0,0,0,0,0,200,8.5,10,9,11.3,0,9,999999999,500,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.5,21.0,86,101500,0,0,416,0,0,0,0,0,0,0,170,8.1,10,9,11.3,0,9,999999999,500,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.8,21.2,85,101500,0,0,418,0,0,0,0,0,0,0,180,8.7,10,9,11.3,0,9,999999999,490,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.1,21.3,90,101500,0,0,414,0,0,0,0,0,0,0,170,8.3,10,9,11.3,0,9,999999999,490,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.4,21.4,83,101500,0,0,421,0,0,0,0,0,0,0,160,9.0,10,9,11.3,3525,9,999999999,490,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.7,21.6,88,101500,0,0,418,0,0,0,0,0,0,0,150,9.1,10,9,11.3,3563,9,999999999,490,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.7,87,101500,131,1277,426,33,0,33,3700,0,3700,1110,150,9.2,10,9,11.3,3600,9,999999999,490,0.2230,0,88,0.110,7.0,6.0 +1994,8,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.7,85,101500,423,1332,429,118,13,113,13200,800,12900,4170,150,7.7,10,9,11.3,3600,9,999999999,490,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.7,76,101600,700,1332,439,189,1,188,21700,100,21600,7830,160,8.2,10,9,11.3,3600,9,999999999,490,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101700,939,1332,433,429,82,371,47200,8400,41200,12750,180,5.1,10,9,11.3,3600,9,999999999,490,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101800,1125,1332,433,329,11,319,38800,1000,38000,14510,240,1.0,10,9,11.3,3000,9,999999999,500,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101700,1244,1332,440,633,83,556,69800,8700,61700,28360,180,3.6,10,9,11.3,6000,9,999999999,500,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,23.8,79,101700,1288,1332,443,512,111,404,56900,11900,45400,27930,210,3.0,10,9,11.3,3600,9,999999999,500,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.6,84,101700,1255,1332,422,685,75,615,75500,7900,68100,31820,290,4.6,10,9,11.3,3000,9,999999999,500,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101700,1146,1332,420,503,82,431,55300,8500,48000,18710,280,2.0,10,9,4.8,1050,9,999999999,500,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.7,22.8,95,101700,969,1332,410,375,117,289,41400,12500,32300,9110,270,1.2,9,8,4.8,1172,9,999999999,500,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.8,20.2,91,101800,736,1332,405,221,46,196,24400,4600,21800,6330,260,3.0,10,9,4.8,1294,9,999999999,509,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.6,20.8,95,101800,463,1332,396,223,37,210,24100,3200,23000,6170,270,2.6,9,8,4.8,1416,9,999999999,509,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.8,20.5,98,101800,171,1332,400,45,2,45,5000,0,5000,1470,240,2.3,10,9,4.8,1538,9,999999999,509,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.2,21.1,99,101800,1,144,395,0,0,0,0,0,0,0,250,2.5,9,8,4.8,1659,9,999999999,509,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.4,20.4,100,101800,0,0,409,0,0,0,0,0,0,0,230,0.7,10,10,4.8,1781,9,999999999,509,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.8,20.8,100,101800,0,0,412,0,0,0,0,0,0,0,220,2.4,10,10,4.8,1903,9,999999999,509,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.5,20.5,100,101800,0,0,376,0,0,0,0,0,0,0,210,2.1,6,5,4.8,2025,9,999999999,519,0.2230,0,88,0.110,999.0,99.0 +1994,8,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.4,21.2,99,101800,0,0,382,0,0,0,0,0,0,0,210,2.2,6,5,4.8,2147,9,999999999,519,0.2230,0,88,0.110,999.0,99.0 +1994,8,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.2,21.2,100,101800,0,0,381,0,0,0,0,0,0,0,210,1.9,6,5,4.8,2269,9,999999999,519,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.9,20.9,100,101800,0,0,393,0,0,0,0,0,0,0,190,2.1,9,8,4.8,2391,9,999999999,519,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,21.0,98,101800,0,0,389,0,0,0,0,0,0,0,180,2.6,8,7,4.8,2513,9,999999999,519,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.6,21.2,98,101800,0,0,397,0,0,0,0,0,0,0,170,3.0,9,8,4.8,2634,9,999999999,519,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.6,21.9,96,101800,0,0,397,0,0,0,0,0,0,0,170,2.7,8,7,4.8,2756,9,999999999,530,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.9,22.1,95,101800,0,0,399,0,0,0,0,0,0,0,170,2.4,8,7,4.8,2878,9,999999999,530,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.7,90,101800,129,1277,414,35,13,33,3800,900,3700,800,160,3.6,9,8,11.3,3000,9,999999999,530,0.2220,0,88,0.110,10.0,6.0 +1994,8,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101900,421,1333,426,126,20,120,14200,1300,13800,4330,160,4.6,10,9,11.3,3000,9,999999999,530,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101900,698,1333,432,197,60,165,21700,5900,18500,5310,160,4.1,10,9,11.3,3000,9,999999999,519,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.6,72,102000,938,1333,438,289,71,239,31900,7200,26900,8890,150,2.5,10,9,11.3,3000,9,999999999,519,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.7,72,102000,1124,1333,436,461,169,318,51300,18100,36000,12650,160,3.0,9,8,11.3,3000,9,999999999,519,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,23.3,72,101900,1243,1333,433,680,395,311,74000,41400,35300,20460,200,3.0,9,7,11.3,3600,9,999999999,519,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.5,23.3,65,101900,1287,1333,450,796,259,545,86900,27500,60200,37270,200,4.6,9,8,11.3,7500,9,999999999,509,0.2220,0,88,0.110,0.0,6.0 +1994,8,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,25.5,75,101800,1253,1333,446,683,276,423,75100,30000,46800,26230,200,5.6,9,7,11.3,7500,9,999999999,509,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,24.4,68,101800,1144,1333,455,523,301,264,57100,31500,30000,11700,220,5.1,9,8,11.3,7500,9,999999999,509,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.1,24.3,64,101800,966,1333,454,457,157,343,50000,16600,37900,10780,230,6.8,9,7,11.3,7500,9,999999999,509,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.0,24.6,69,101800,733,1333,447,246,148,164,27400,15500,18900,4240,310,4.0,8,7,11.3,7500,9,999999999,500,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.9,23.4,64,101800,459,1333,440,166,141,117,18200,13400,13600,2670,20,3.7,8,6,11.3,7500,9,999999999,500,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.6,24.9,80,101800,166,1333,429,50,16,48,5500,1100,5300,1130,50,7.6,7,6,11.3,7500,9,999999999,500,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.4,24.8,86,101800,1,122,402,0,0,0,0,0,0,0,10,6.2,1,1,11.3,77777,9,999999999,500,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.8,25.2,91,101800,0,0,392,0,0,0,0,0,0,0,20,5.9,0,0,11.3,77777,9,999999999,490,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.7,25.0,90,101800,0,0,391,0,0,0,0,0,0,0,40,3.1,0,0,11.3,77777,9,999999999,490,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,24.4,90,101800,0,0,388,0,0,0,0,0,0,0,80,4.3,0,0,11.3,77777,9,999999999,490,0.2220,0,88,0.110,999.0,99.0 +1994,8,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.1,24.3,85,101800,0,0,393,0,0,0,0,0,0,0,50,2.5,0,0,11.3,77777,9,999999999,490,0.2220,0,88,0.110,999.0,99.0 +1994,8,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.5,24.1,87,101900,0,0,412,0,0,0,0,0,0,0,40,1.1,5,5,11.3,6000,9,999999999,480,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.3,24.0,93,101900,0,0,383,0,0,0,0,0,0,0,20,1.9,0,0,11.3,77777,9,999999999,480,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.1,23.3,95,101900,0,0,376,0,0,0,0,0,0,0,20,0.6,0,0,11.3,77777,9,999999999,480,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,22.6,89,101900,0,0,378,0,0,0,0,0,0,0,40,0.3,0,0,11.3,77777,9,999999999,480,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,23.0,95,101900,0,0,375,0,0,0,0,0,0,0,50,0.6,0,0,11.3,77777,9,999999999,469,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,22.8,94,101900,0,0,374,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,469,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,23.3,94,101900,127,1256,390,36,30,33,4000,2000,3800,800,0,0.0,2,2,11.3,77777,9,999999999,469,0.2210,0,88,0.110,0.0,6.0 +1994,8,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,24.4,88,101900,419,1333,407,169,227,98,18300,20900,11700,1890,160,1.0,3,3,11.3,77777,9,999999999,469,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,24.4,79,102000,697,1333,412,397,436,169,42200,44000,19200,3630,140,3.0,2,2,11.3,77777,9,999999999,469,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,25.0,75,102000,937,1333,427,535,429,233,57400,44500,26000,6540,140,3.0,3,3,11.3,77777,9,999999999,469,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,22.7,63,101900,1123,1333,422,761,639,223,80800,65000,25900,9160,150,2.0,2,2,11.3,77777,9,999999999,459,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,22.7,59,101900,1242,1333,433,845,582,302,88700,58700,34000,19040,280,2.0,3,3,11.3,77777,9,999999999,459,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,22.2,56,101900,1285,1333,431,889,594,316,93500,59800,35700,26050,250,2.0,2,2,11.3,77777,9,999999999,459,0.2210,0,88,0.110,0.0,6.0 +1994,8,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,22.2,52,101800,1251,1333,442,874,591,319,95100,61900,36800,21930,240,2.5,3,3,11.3,77777,9,999999999,459,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,22.7,59,101800,1142,1333,428,775,612,250,81700,62000,28400,10770,320,4.1,2,2,11.3,77777,9,999999999,459,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.1,23.3,60,101800,964,1333,436,599,529,216,65000,55100,25100,6290,360,4.3,3,3,11.3,21094,9,999999999,459,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.9,23.3,64,101800,730,1333,429,415,359,219,44700,37700,24000,5130,30,4.6,3,3,11.3,20188,9,999999999,459,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.4,24.0,69,101800,456,1333,431,209,278,114,22500,26300,13500,2250,30,3.3,4,4,11.3,19281,9,999999999,459,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.7,24.1,76,101800,162,1333,421,47,43,42,5200,2600,4800,880,30,2.1,4,4,11.3,18375,9,999999999,459,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.9,24.1,85,101800,1,100,415,0,0,0,0,0,0,0,60,1.2,5,5,11.3,17469,9,999999999,459,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.4,24.7,90,101800,0,0,389,0,0,0,0,0,0,0,90,0.5,0,0,11.3,77777,9,999999999,459,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.4,24.8,91,101800,0,0,416,0,0,0,0,0,0,0,120,3.8,6,6,11.3,15656,9,999999999,459,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.9,23.8,83,101800,0,0,418,0,0,0,0,0,0,0,140,2.4,6,6,11.3,14750,9,999999999,450,0.2210,0,88,0.110,999.0,99.0 +1994,8,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.3,23.8,86,101800,0,0,419,0,0,0,0,0,0,0,160,0.8,7,7,11.3,13844,9,999999999,450,0.2210,0,88,0.110,999.0,99.0 +1994,8,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.2,23.4,90,101800,0,0,404,0,0,0,0,0,0,0,0,0.0,7,5,11.3,12938,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,23.5,94,101800,0,0,391,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,24.0,100,101800,0,0,384,0,0,0,0,0,0,0,0,0.0,1,1,11.3,77777,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.4,23.4,100,101800,0,0,389,0,0,0,0,0,0,0,0,0.0,3,3,11.3,77777,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.4,23.4,100,101800,0,0,385,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,23.1,95,101800,0,0,394,0,0,0,0,0,0,0,0,0.0,4,4,11.3,77777,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.7,90,101800,125,1256,393,33,8,32,3700,0,3700,1080,0,0.0,3,3,11.3,77777,9,999999999,450,0.2200,0,88,0.110,0.0,6.0 +1994,8,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.7,85,101900,418,1334,382,187,230,114,19800,21100,13200,2260,70,0.5,0,0,11.3,77777,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,22.7,79,101900,695,1334,405,373,239,248,40400,24600,27600,6280,180,0.5,3,3,11.3,77777,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,22.7,70,101900,936,1334,413,575,436,269,60800,45100,29100,7630,250,1.5,2,2,11.3,77777,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.8,72,101900,1121,1334,422,730,476,330,77800,49600,36000,13830,280,3.0,3,3,11.3,77777,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.3,63,101800,1240,1334,426,814,511,338,87800,53500,38000,21930,260,2.5,2,2,11.3,77777,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.6,22.2,58,101800,1284,1334,465,530,151,384,59100,16200,43500,25650,190,1.5,9,9,11.3,7500,9,999999999,450,0.2200,0,88,0.110,0.0,6.0 +1994,8,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.7,21.1,51,101700,1250,1334,470,568,94,480,62700,9700,53600,25400,260,2.5,9,9,11.3,7500,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,21.1,49,101600,1139,1334,474,590,210,410,64800,22400,45600,16820,280,3.0,9,9,11.3,7500,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.3,19.0,43,101700,961,1334,484,246,27,226,27100,2700,25200,8650,260,4.1,10,10,11.3,5025,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.3,18.9,54,101700,726,1334,459,183,9,178,21200,700,20800,7670,290,3.6,10,10,11.3,6750,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.2,18.8,60,101700,452,1334,446,133,18,127,15000,1200,14600,4670,280,3.6,10,10,11.3,6075,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.2,20.7,72,101700,158,1334,443,40,0,40,4500,0,4500,1320,300,3.6,10,10,11.3,5700,9,999999999,450,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.2,21.6,76,101700,0,78,423,0,0,0,0,0,0,0,260,3.0,9,8,11.3,5325,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.2,21.6,76,101700,0,0,444,0,0,0,0,0,0,0,290,3.0,10,10,11.3,4950,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,20.6,74,101700,0,0,427,0,0,0,0,0,0,0,290,2.8,10,9,11.3,4875,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.2,19.5,71,101800,0,0,414,0,0,0,0,0,0,0,290,2.5,9,8,11.3,9000,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.8,18.4,68,101800,0,0,404,0,0,0,0,0,0,0,300,2.3,9,7,11.3,8625,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.3,17.3,65,101800,0,0,392,0,0,0,0,0,0,0,300,2.0,5,5,11.3,77777,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,16.1,62,101800,0,0,389,0,0,0,0,0,0,0,300,1.8,5,5,11.3,77777,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.6,15.0,59,101800,0,0,386,0,0,0,0,0,0,0,300,1.5,5,5,11.3,77777,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.2,14.0,56,101800,0,0,382,0,0,0,0,0,0,0,310,1.3,5,5,11.3,77777,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.0,13.0,53,101800,0,0,380,0,0,0,0,0,0,0,310,1.0,5,5,11.3,77777,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.0,22.0,94,101800,0,0,391,0,0,0,0,0,0,0,0,0.0,5,5,11.3,77777,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,22.0,89,101800,123,1234,396,32,73,25,3500,3600,3200,430,0,0.0,5,5,11.3,77777,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,22.0,83,101900,416,1334,402,168,300,74,18100,27000,9700,1350,250,2.0,5,5,11.3,77777,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,23.0,84,101900,694,1334,417,335,205,228,36500,21100,25500,5760,260,2.0,9,7,11.3,300,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.0,25.0,84,101900,934,1334,437,393,227,234,43400,24500,26200,6470,210,2.0,9,8,11.3,7500,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.0,23.0,66,101900,1120,1334,439,640,442,268,69500,46200,30600,11050,190,5.1,9,7,11.3,7500,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.0,24.0,66,101900,1239,1334,454,568,276,311,63700,30100,35700,17550,190,5.1,9,8,11.3,7500,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.0,21.0,49,101800,1283,1334,472,504,230,282,57200,25100,33000,19930,230,3.6,10,9,11.3,4200,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.0,22.0,50,101700,1248,1334,479,630,97,538,69300,10100,59900,27760,210,6.2,10,9,11.3,900,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.0,21.0,49,101700,1137,1334,472,348,74,285,38600,7500,32100,12920,260,4.1,10,9,11.3,2400,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.0,24.0,63,101700,958,1334,470,406,46,372,44600,4700,41100,13020,250,3.6,10,9,11.3,2400,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.0,22.0,62,101700,723,1334,455,376,148,295,40400,15200,32100,7590,250,4.1,10,9,11.3,4200,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.0,22.0,59,101700,447,1334,461,212,144,163,22700,13500,18200,3700,260,4.1,10,9,11.3,4200,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.0,23.0,70,101800,153,1334,450,34,7,33,3800,0,3800,1140,270,3.0,10,9,11.3,3600,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.0,22.0,66,101800,0,56,449,0,0,0,0,0,0,0,260,4.1,10,9,11.3,7500,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.0,23.0,74,101800,0,0,419,0,0,0,0,0,0,0,260,4.1,5,5,11.3,77777,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.6,23.1,77,101800,0,0,417,0,0,0,0,0,0,0,260,3.8,5,5,11.3,77777,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.4,23.1,77,101800,0,0,416,0,0,0,0,0,0,0,260,3.6,5,5,11.3,77777,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,23.1,79,101800,0,0,414,0,0,0,0,0,0,0,260,3.3,5,5,11.3,77777,9,999999999,459,0.2200,0,88,0.110,999.0,99.0 +1994,8,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.7,23.1,81,101800,0,0,412,0,0,0,0,0,0,0,260,3.1,5,5,11.3,77777,9,999999999,459,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.5,23.0,81,101800,0,0,411,0,0,0,0,0,0,0,260,2.8,5,5,11.3,77777,9,999999999,450,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.3,23.0,82,101700,0,0,404,0,0,0,0,0,0,0,260,2.5,3,3,11.3,77777,9,999999999,450,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,23.0,83,101700,0,0,399,0,0,0,0,0,0,0,260,2.3,2,2,11.3,77777,9,999999999,450,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,23.0,84,101700,0,0,408,0,0,0,0,0,0,0,260,2.0,5,5,11.3,77777,9,999999999,450,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,23.0,84,101700,0,0,432,0,0,0,0,0,0,0,0,0.0,9,9,11.3,7500,9,999999999,450,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,23.0,84,101800,121,1235,432,24,10,23,2600,600,2600,590,250,2.1,9,9,11.3,7500,9,999999999,450,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.0,23.0,74,101800,414,1335,457,86,0,86,9900,0,9900,3380,270,2.0,10,10,11.3,7500,9,999999999,450,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.0,23.0,70,101900,692,1335,463,170,0,170,19700,0,19700,7230,260,3.0,10,10,11.3,7500,9,999999999,450,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.0,23.0,63,101900,933,1335,475,244,0,244,28600,0,28600,11040,280,5.1,10,10,11.3,7500,9,999999999,450,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.0,22.0,56,101900,1119,1335,480,301,0,301,35700,0,35700,13880,320,2.0,10,10,11.3,7500,9,999999999,450,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.0,22.0,56,101800,1238,1335,480,336,0,336,40200,0,40200,15450,280,3.6,10,10,11.3,3600,9,999999999,450,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.0,21.0,49,101700,1281,1335,472,751,346,419,82900,37700,46700,29900,270,4.1,9,9,11.3,3600,9,999999999,440,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.0,20.0,44,101700,1246,1335,476,602,167,446,66400,17800,49700,24740,270,4.6,9,9,11.3,3600,9,999999999,440,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.0,18.0,39,101600,1135,1335,473,587,124,481,64600,12900,53600,19990,270,5.1,9,9,11.3,3600,9,999999999,440,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.0,19.0,41,101600,955,1335,475,399,123,311,43900,13000,34500,9630,270,5.1,9,9,11.3,7500,9,999999999,440,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.0,19.0,44,101600,719,1335,469,182,14,174,21100,1100,20500,7500,280,6.1,9,9,11.3,3600,9,999999999,440,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.0,18.0,43,101600,443,1335,461,136,36,124,14900,3300,13800,3370,270,4.1,9,9,11.3,3600,9,999999999,440,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.0,20.2,56,101600,149,1335,465,24,7,23,2600,500,2600,600,270,4.6,10,10,11.3,2254,9,999999999,440,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.1,20.5,60,101700,0,33,460,0,0,0,0,0,0,0,260,2.6,10,10,11.3,908,9,999999999,430,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.1,20.7,64,101700,0,0,454,0,0,0,0,0,0,0,260,2.6,10,10,11.3,0,9,999999999,430,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.7,21.3,68,101700,0,0,424,0,0,0,0,0,0,0,250,2.5,7,7,11.3,16615,9,999999999,430,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.3,21.8,72,101600,0,0,422,0,0,0,0,0,0,0,260,2.3,8,7,11.3,15269,9,999999999,430,0.2190,0,88,0.110,999.0,99.0 +1994,8,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,22.2,75,101600,0,0,413,0,0,0,0,0,0,0,250,2.2,5,5,11.3,13923,9,999999999,430,0.2190,0,88,0.110,999.0,99.0 +1994,8,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.5,22.7,80,101500,0,0,419,0,0,0,0,0,0,0,260,2.1,9,7,11.3,12577,9,999999999,430,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.3,23.1,83,101500,0,0,410,0,0,0,0,0,0,0,250,1.9,7,5,11.3,11231,9,999999999,430,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,23.6,87,101500,0,0,409,0,0,0,0,0,0,0,250,1.8,7,5,11.3,9885,9,999999999,419,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.7,24.1,91,101400,0,0,432,0,0,0,0,0,0,0,250,1.6,10,9,11.3,8538,9,999999999,419,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.5,24.5,94,101400,0,0,432,0,0,0,0,0,0,0,250,1.5,10,9,11.3,7192,9,999999999,419,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,24.8,95,101400,0,0,423,0,0,0,0,0,0,0,220,2.0,10,8,11.3,5846,9,999999999,419,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,25.0,91,101500,119,1213,423,28,9,27,3100,600,3000,670,210,1.5,9,7,11.3,4500,9,999999999,419,0.2180,0,88,0.110,0.0,6.0 +1994,8,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,24.4,77,101500,412,1336,419,192,181,136,20700,16600,15600,3050,190,2.5,3,3,11.3,77777,9,999999999,419,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,25.0,75,101500,691,1336,422,452,634,124,47400,62700,14900,2670,190,3.0,2,2,11.3,77777,9,999999999,430,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,24.4,66,101500,932,1336,458,385,221,230,42500,23900,25800,6320,210,5.1,9,8,11.3,7500,9,999999999,430,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,24.4,85,101600,1118,1336,425,738,442,368,77700,46000,39100,15320,230,3.0,9,7,11.3,7500,9,999999999,440,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,25.0,80,101500,1236,1336,443,555,216,355,61700,23500,39900,19910,230,5.1,9,8,11.2,7500,9,999999999,440,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,23.8,65,101500,1279,1336,447,573,237,346,64100,25900,39300,24070,220,5.6,9,7,11.3,7500,9,999999999,440,0.2180,0,88,0.110,3.0,6.0 +1994,8,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.7,57,101400,1244,1336,459,529,203,339,59000,22100,38300,19570,230,5.6,9,8,11.3,7500,9,999999999,450,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,23.3,63,101400,1132,1336,446,476,221,288,53000,24100,32600,11390,230,6.1,9,7,11.3,7500,9,999999999,450,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.3,21.6,63,101400,952,1336,440,551,320,323,59500,34500,34900,9570,220,5.7,10,8,11.3,7500,9,999999999,459,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.0,23.2,60,101400,715,1336,451,164,47,138,18000,4600,15500,4610,70,5.3,9,7,11.3,7500,9,999999999,459,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.0,23.3,60,101500,439,1336,459,192,122,151,20600,11400,16900,3420,310,4.8,10,8,11.3,7500,9,999999999,459,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.8,23.3,64,101500,144,1336,445,37,17,35,4000,1100,3900,850,290,5.5,9,7,11.3,7500,9,999999999,469,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.0,23.1,67,101500,0,11,447,0,0,0,0,0,0,0,250,7.1,10,8,11.3,7500,9,999999999,469,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.4,23.1,69,101500,0,0,436,0,0,0,0,0,0,0,270,5.2,9,7,11.3,7500,9,999999999,480,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.3,23.0,69,101500,0,0,442,0,0,0,0,0,0,0,250,4.3,10,8,11.3,7500,9,999999999,480,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.1,22.5,72,101500,0,0,428,0,0,0,0,0,0,0,260,4.9,9,7,11.3,7500,9,999999999,490,0.2180,0,88,0.110,999.0,99.0 +1994,8,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.3,23.0,77,101600,0,0,431,0,0,0,0,0,0,0,230,2.3,9,8,11.3,7500,9,999999999,490,0.2180,0,88,0.110,999.0,99.0 +1994,8,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.2,22.9,77,101600,0,0,430,0,0,0,0,0,0,0,260,3.5,9,8,11.3,7500,9,999999999,490,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.7,22.9,75,101600,0,0,426,0,0,0,0,0,0,0,240,3.6,8,7,11.3,7500,9,999999999,500,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.5,22.9,81,101600,0,0,426,0,0,0,0,0,0,0,190,1.7,9,8,11.3,7500,9,999999999,500,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.4,22.8,81,101600,0,0,419,0,0,0,0,0,0,0,190,1.8,8,7,11.3,7500,9,999999999,509,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.3,22.8,81,101600,0,0,425,0,0,0,0,0,0,0,130,0.8,9,8,11.3,7500,9,999999999,509,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.1,22.2,84,101700,0,0,411,0,0,0,0,0,0,0,70,1.4,8,7,11.3,7500,9,999999999,519,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,22.7,85,101700,117,1214,420,25,27,23,2900,1500,2700,480,100,1.5,9,8,11.3,7500,9,999999999,519,0.2170,0,88,0.110,0.0,6.0 +1994,8,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101700,410,1336,424,97,93,69,11000,8600,8300,1540,140,3.0,9,7,11.3,7500,9,999999999,519,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,23.8,79,101800,689,1336,434,277,62,244,30300,6200,27100,7220,130,1.5,9,8,11.3,7500,9,999999999,519,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101800,930,1336,436,406,271,217,45000,29300,24600,5900,140,2.0,9,7,11.3,7500,9,999999999,509,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.3,67,101900,1117,1336,447,647,417,298,69500,43600,33000,12190,160,2.0,9,8,11.3,7500,9,999999999,509,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,22.2,61,101800,1235,1336,441,575,405,200,62100,41700,23500,12370,170,3.6,9,7,11.3,7500,9,999999999,509,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.6,22.7,59,101800,1278,1336,456,617,378,256,68900,39700,30800,20180,190,3.6,9,8,11.3,7500,9,999999999,509,0.2170,0,88,0.110,0.0,6.0 +1994,8,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,23.8,63,101700,1242,1336,450,556,212,359,61800,23100,40300,20570,190,5.6,9,7,11.3,7500,9,999999999,509,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.3,67,101700,1130,1336,447,527,201,356,58300,21500,40000,14250,350,3.6,9,8,11.3,7500,9,999999999,500,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.9,24.5,73,101700,949,1336,441,502,244,328,54900,25800,36500,10080,330,4.1,8,7,11.3,8406,9,999999999,500,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.8,24.5,73,101700,712,1336,447,399,187,298,42700,19200,32500,7610,20,4.0,9,8,11.3,9313,9,999999999,500,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.9,24.1,67,101700,435,1336,446,117,74,92,12900,7000,10600,2080,60,3.7,8,7,11.3,10219,9,999999999,500,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.6,24.1,72,101800,139,1325,439,30,30,27,3400,1800,3200,560,60,2.2,7,7,11.3,11125,9,999999999,500,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.5,24.0,77,101800,0,0,427,0,0,0,0,0,0,0,80,3.3,7,6,11.3,12031,9,999999999,490,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.0,23.9,78,101800,0,0,429,0,0,0,0,0,0,0,80,2.3,8,7,11.3,12938,9,999999999,490,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.5,24.0,81,101800,0,0,422,0,0,0,0,0,0,0,60,3.3,6,6,11.3,13844,9,999999999,490,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.2,23.8,82,101800,0,0,424,0,0,0,0,0,0,0,50,2.4,7,7,11.3,14750,9,999999999,490,0.2170,0,88,0.110,999.0,99.0 +1994,8,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.7,23.7,84,101800,0,0,413,0,0,0,0,0,0,0,70,1.8,6,5,11.3,15656,9,999999999,480,0.2170,0,88,0.110,999.0,99.0 +1994,8,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.3,23.7,86,101800,0,0,405,0,0,0,0,0,0,0,80,2.4,6,3,11.3,16563,9,999999999,480,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,23.5,86,101900,0,0,403,0,0,0,0,0,0,0,70,2.4,3,3,11.3,17469,9,999999999,480,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.7,23.3,87,101900,0,0,401,0,0,0,0,0,0,0,70,1.4,5,3,11.3,18375,9,999999999,480,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.3,23.3,89,101900,0,0,399,0,0,0,0,0,0,0,100,1.4,3,3,11.3,19281,9,999999999,480,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.1,23.2,89,101900,0,0,394,0,0,0,0,0,0,0,60,1.9,3,2,11.3,20188,9,999999999,469,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,23.2,87,101900,0,0,396,0,0,0,0,0,0,0,40,2.0,2,2,11.3,21094,9,999999999,469,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,23.3,88,101900,115,1192,396,34,66,28,3700,3200,3400,490,20,2.0,2,2,11.3,77777,9,999999999,469,0.2160,0,88,0.110,1.0,6.0 +1994,8,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,102000,408,1337,409,155,176,101,16600,16000,11700,1960,50,4.6,3,3,9.7,77777,9,999999999,469,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.7,74,102000,688,1337,407,401,516,135,43500,52100,16700,2820,60,4.6,2,2,11.3,77777,9,999999999,469,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.7,67,102000,929,1337,420,617,479,283,64700,49500,30200,7970,70,3.6,3,3,11.3,77777,9,999999999,469,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.7,65,102000,1115,1337,419,765,597,266,80000,60100,29700,10430,40,3.0,2,2,11.3,77777,9,999999999,459,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,22.2,61,102000,1234,1337,436,726,488,275,79900,51200,32500,16930,360,1.5,9,6,11.3,77777,9,999999999,459,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.7,21.1,51,101900,1276,1337,447,696,343,368,77500,37400,41700,25020,190,2.5,9,6,11.3,7500,9,999999999,459,0.2160,0,88,0.110,0.0,6.0 +1994,8,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,22.2,52,101800,1240,1337,453,606,170,449,66800,18100,50000,24180,250,2.5,9,6,11.3,7500,9,999999999,459,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.3,21.6,50,101800,1127,1337,452,749,609,236,79200,61800,27000,9690,290,3.0,9,6,11.3,7500,9,999999999,459,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.8,21.6,49,101800,946,1337,460,451,265,264,49500,28600,29200,7510,340,3.5,9,7,11.3,7219,9,999999999,459,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.4,21.7,48,101800,708,1337,458,369,234,245,40100,24100,27300,6240,340,4.5,9,6,11.3,6938,9,999999999,450,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.9,22.7,52,101800,430,1337,462,219,124,179,23300,11400,19600,4040,330,2.5,9,7,11.3,6656,9,999999999,450,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.4,21.8,57,101800,135,1303,441,54,15,52,5800,1000,5700,1140,330,2.0,9,6,11.3,6375,9,999999999,450,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.0,21.8,55,101800,0,0,450,0,0,0,0,0,0,0,350,3.0,8,7,11.3,6094,9,999999999,450,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.5,21.8,63,101800,0,0,442,0,0,0,0,0,0,0,10,2.5,9,8,11.3,5813,9,999999999,450,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.0,21.9,62,101900,0,0,445,0,0,0,0,0,0,0,40,3.0,9,8,11.3,3431,9,999999999,450,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.6,21.9,67,101900,0,0,437,0,0,0,0,0,0,0,40,3.0,9,8,11.3,5250,9,999999999,440,0.2160,0,88,0.110,999.0,99.0 +1994,8,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.1,21.9,69,101900,0,0,427,0,0,0,0,0,0,0,50,4.0,9,7,11.3,4969,9,999999999,440,0.2160,0,88,0.110,999.0,99.0 +1994,8,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.6,22.0,76,101900,0,0,414,0,0,0,0,0,0,0,40,4.5,8,6,11.3,9188,9,999999999,440,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.1,21.0,78,101900,0,0,401,0,0,0,0,0,0,0,40,4.0,8,5,11.3,8906,9,999999999,440,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.7,21.1,80,101900,0,0,402,0,0,0,0,0,0,0,40,3.5,8,6,11.3,8625,9,999999999,440,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,21.1,83,101900,0,0,390,0,0,0,0,0,0,0,40,3.5,3,3,11.3,77777,9,999999999,440,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.7,21.1,80,102000,0,0,393,0,0,0,0,0,0,0,50,2.5,3,3,11.3,77777,9,999999999,430,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.3,22.2,94,102000,0,0,393,0,0,0,0,0,0,0,40,2.5,7,5,11.3,7781,9,999999999,430,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,22.2,91,102000,113,1192,389,39,73,32,4200,3500,3800,580,50,2.5,3,3,9.7,77777,9,999999999,430,0.2150,0,88,0.110,30.0,24.0 +1994,8,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,23.3,88,102000,407,1337,396,209,400,88,22200,35600,11400,1630,40,3.6,2,2,9.7,77777,9,999999999,430,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,22.7,79,102000,686,1337,405,382,485,132,41500,48900,16300,2750,40,4.1,3,3,9.7,77777,9,999999999,430,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,102000,928,1337,425,452,310,236,49700,33400,26500,6470,50,4.1,9,6,11.3,7500,9,999999999,440,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.7,65,102000,1114,1337,434,745,497,330,79200,51800,35900,13450,40,4.1,9,6,11.3,7500,9,999999999,440,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,21.6,59,101900,1232,1337,435,740,401,370,79000,41900,40300,22820,70,3.6,9,6,11.3,77777,9,999999999,440,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.7,23.3,77,101900,1274,1337,422,761,463,319,82900,48500,36600,24550,150,1.5,9,6,11.3,4500,9,999999999,440,0.2150,0,88,0.110,1.0,6.0 +1994,8,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.7,72,101800,1237,1337,424,716,494,258,76000,50200,29400,15830,30,2.0,9,6,11.3,3000,9,999999999,440,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,21.1,72,101800,1124,1337,413,529,242,325,58300,26300,36200,12730,10,5.6,9,6,11.3,3000,9,999999999,450,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.4,21.1,73,101800,942,1337,412,641,636,192,67300,64200,21900,5340,70,6.7,10,6,11.3,2131,9,999999999,450,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,21.1,74,101800,704,1337,403,357,475,107,37900,47400,12900,2380,170,5.7,6,4,11.3,15763,9,999999999,450,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.1,21.0,78,101800,426,1337,409,144,112,109,15900,10400,12600,2450,160,5.3,10,7,11.3,394,9,999999999,450,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.3,21.0,87,101800,130,1282,391,39,53,33,4200,3000,3900,690,180,4.9,7,5,11.3,14025,9,999999999,450,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.5,21.0,91,101800,0,0,391,0,0,0,0,0,0,0,230,5.2,8,6,11.3,13156,9,999999999,450,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.7,21.0,96,101800,0,0,380,0,0,0,0,0,0,0,280,5.5,6,4,11.3,12288,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.3,22.0,98,101800,0,0,384,0,0,0,0,0,0,0,300,5.5,6,4,11.3,11419,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.0,22.9,99,101800,0,0,396,0,0,0,0,0,0,0,320,5.5,8,6,11.3,10550,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1994,8,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.2,20.2,100,101800,0,0,374,0,0,0,0,0,0,0,340,5.3,7,5,11.3,9681,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.4,21.9,91,101800,0,0,416,0,0,0,0,0,0,0,360,5.3,10,9,11.3,8813,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.5,22.1,92,101800,0,0,417,0,0,0,0,0,0,0,20,5.3,10,9,11.3,7944,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.7,22.4,92,101800,0,0,430,0,0,0,0,0,0,0,30,5.2,10,10,11.3,7075,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,22.8,94,101800,0,0,432,0,0,0,0,0,0,0,40,5.1,10,10,11.3,6206,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.6,22.8,95,101800,0,0,399,0,0,0,0,0,0,0,50,5.1,8,6,11.3,5338,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.2,22.7,97,101800,0,0,396,0,0,0,0,0,0,0,50,4.6,8,6,11.3,4469,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.7,90,101800,111,1171,408,29,0,29,3300,0,3300,990,50,4.1,9,7,11.3,3600,9,999999999,469,0.2150,0,88,0.110,1.0,24.0 +1994,8,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101800,405,1338,417,152,19,146,16700,1300,16300,4720,50,3.6,9,8,11.3,3300,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101900,685,1338,424,341,147,265,36700,15000,29000,6660,60,5.1,9,7,11.3,3300,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,101900,926,1338,437,501,156,393,54100,16400,42700,11800,70,4.6,9,8,11.3,7500,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.7,67,101900,1113,1338,436,570,288,329,62600,31300,36500,12560,40,3.6,9,7,11.3,4200,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,22.2,61,101900,1231,1338,448,768,233,553,83300,24700,60600,28730,170,2.5,9,8,11.3,4200,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,22.2,63,101800,1272,1338,438,775,221,564,84300,23400,61900,34730,240,3.6,9,7,11.3,3000,9,999999999,469,0.2150,0,88,0.110,0.0,6.0 +1994,8,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,20.5,61,101700,1235,1338,436,778,384,423,85300,41700,46700,23750,80,2.5,9,8,11.3,7500,9,999999999,469,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.1,55,101700,1121,1338,443,661,318,394,71800,34500,42900,15690,10,1.5,9,7,11.3,7500,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.1,19.1,46,101700,939,1338,454,463,200,323,50700,21200,35800,9810,150,1.6,9,8,11.3,7500,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.1,19.1,46,101600,700,1338,446,324,148,246,35100,15200,27100,6230,310,3.3,9,7,11.3,7500,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.1,19.1,52,101700,421,1338,442,114,19,108,12900,1100,12500,4030,210,4.5,9,8,11.3,1500,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.1,22.1,70,101800,126,1260,456,25,0,25,2900,0,2900,900,350,5.1,10,10,11.3,1350,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.1,22.1,74,101800,0,0,450,0,0,0,0,0,0,0,250,2.2,10,10,11.3,1350,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,23.1,84,101800,0,0,445,0,0,0,0,0,0,0,30,6.4,10,10,11.3,3600,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.5,22.9,86,101900,0,0,442,0,0,0,0,0,0,0,360,3.4,10,10,11.3,3600,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.1,22.6,86,101900,0,0,439,0,0,0,0,0,0,0,90,0.5,10,10,11.3,4157,9,999999999,459,0.2150,0,88,0.110,999.0,99.0 +1994,8,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.7,22.3,87,101900,0,0,436,0,0,0,0,0,0,0,70,1.1,10,10,11.3,4714,9,999999999,450,0.2150,0,88,0.110,999.0,99.0 +1994,8,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,22.1,88,101900,0,0,433,0,0,0,0,0,0,0,80,0.2,10,10,11.3,5271,9,999999999,450,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,21.8,88,101800,0,0,431,0,0,0,0,0,0,0,70,0.9,10,10,11.3,5829,9,999999999,450,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.6,21.5,88,101800,0,0,429,0,0,0,0,0,0,0,140,2.1,10,10,11.3,6386,9,999999999,450,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.2,21.3,89,101800,0,0,426,0,0,0,0,0,0,0,110,1.5,10,10,11.3,6943,9,999999999,450,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.0,21.0,89,101800,0,0,425,0,0,0,0,0,0,0,80,2.1,10,10,11.3,7500,9,999999999,450,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.0,22.0,94,101800,0,0,399,0,0,0,0,0,0,0,80,1.5,9,7,11.3,4800,9,999999999,450,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,23.0,94,101900,109,1171,412,23,22,21,2600,1200,2500,440,150,5.1,9,8,11.3,7500,9,999999999,450,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,22.0,74,101900,403,1338,421,112,81,88,12500,7400,10200,1970,130,4.6,9,7,11.3,77777,9,999999999,450,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.0,22.0,66,101900,683,1338,417,420,581,123,44000,57400,14700,2630,120,2.6,3,3,11.3,77777,9,999999999,450,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.0,23.0,66,101900,925,1338,439,445,286,247,48800,30800,27500,6790,140,3.6,9,7,11.3,7500,9,999999999,450,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.0,22.0,62,101900,1111,1338,423,734,708,146,78000,71600,18400,5470,150,2.6,3,3,11.3,77777,9,999999999,450,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.0,21.0,55,101900,1229,1338,423,893,831,130,91900,83300,15200,6130,150,3.1,2,2,11.3,77777,9,999999999,450,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.0,20.0,46,101800,1270,1338,437,862,719,179,91400,72600,22300,12370,150,3.1,3,3,11.3,77777,9,999999999,459,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.0,19.0,41,101700,1233,1338,437,867,787,142,89000,78800,16200,6600,150,3.1,2,2,11.3,77777,9,999999999,459,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.0,20.0,49,101600,1119,1338,454,563,272,335,61900,29600,37100,12970,160,3.9,9,8,11.3,7500,9,999999999,459,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.0,21.0,47,101600,935,1338,460,345,204,203,38600,22100,23100,5500,170,4.6,9,7,11.3,7500,9,999999999,459,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.0,19.0,46,101600,696,1338,453,289,92,240,31600,9200,26800,7160,170,5.4,9,8,11.3,7500,9,999999999,459,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.0,22.0,59,101600,417,1338,451,164,68,143,18000,6300,16000,3640,180,6.2,9,8,11.3,7500,9,999999999,459,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.0,23.0,74,101600,121,1238,435,34,14,32,3700,900,3600,780,170,1.0,9,8,11.3,7500,9,999999999,459,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.0,23.0,74,101700,0,0,435,0,0,0,0,0,0,0,150,5.1,9,8,11.3,7500,9,999999999,469,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.0,22.0,70,101700,0,0,433,0,0,0,0,0,0,0,130,4.1,9,8,11.3,7500,9,999999999,469,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.6,22.3,73,101700,0,0,432,0,0,0,0,0,0,0,90,2.1,9,8,11.3,7500,9,999999999,469,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.4,22.4,74,101700,0,0,431,0,0,0,0,0,0,0,260,1.0,9,8,11.3,7500,9,999999999,469,0.2140,0,88,0.110,999.0,99.0 +1994,8,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,22.5,76,101700,0,0,422,0,0,0,0,0,0,0,80,1.0,9,7,11.3,7500,9,999999999,469,0.2140,0,88,0.110,999.0,99.0 +1994,8,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.7,22.6,78,101700,0,0,420,0,0,0,0,0,0,0,80,1.5,9,7,11.3,7500,9,999999999,469,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.5,22.6,79,101600,0,0,419,0,0,0,0,0,0,0,110,2.6,9,7,11.3,7500,9,999999999,469,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.3,22.7,81,101600,0,0,418,0,0,0,0,0,0,0,110,2.4,9,7,11.3,7500,9,999999999,480,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,22.9,83,101500,0,0,417,0,0,0,0,0,0,0,110,2.1,9,7,11.3,7500,9,999999999,480,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,23.0,84,101500,0,0,417,0,0,0,0,0,0,0,70,2.1,9,7,11.3,7500,9,999999999,480,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,23.0,94,101600,0,0,412,0,0,0,0,0,0,0,50,1.5,9,8,11.3,3600,9,999999999,480,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,23.0,89,101600,107,1149,411,28,9,27,3100,600,3000,670,60,2.1,9,7,11.3,3600,9,999999999,480,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.0,23.0,74,101600,401,1339,435,123,45,110,13500,4100,12300,2930,30,2.4,9,8,11.3,3600,9,999999999,480,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.0,22.0,66,101700,682,1339,432,294,171,206,32100,17600,23100,5160,360,2.7,9,7,11.3,3600,9,999999999,480,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.0,21.0,59,101700,924,1339,444,509,286,311,54800,30700,33600,8860,340,3.0,9,8,11.3,3600,9,999999999,469,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.0,20.0,52,101700,1110,1339,441,524,266,304,58100,28900,34000,11400,310,3.3,9,7,11.3,7500,9,999999999,469,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.0,21.0,52,101700,1227,1339,456,508,193,331,56700,21000,37300,17570,280,3.6,9,8,11.3,7500,9,999999999,469,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,35.0,21.0,44,101700,1269,1339,466,662,287,389,73200,31300,43500,25150,280,3.1,9,7,11.3,7500,9,999999999,469,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.0,23.0,56,101700,1230,1339,464,521,198,339,58000,21600,38200,18250,280,3.1,9,8,11.3,6000,9,999999999,469,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.0,21.0,49,101600,1116,1339,454,570,342,285,61500,35700,31700,11520,310,4.1,9,7,11.3,3000,9,999999999,459,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.0,21.0,49,101600,932,1339,462,517,138,421,56800,14300,46800,13820,300,4.1,9,8,11.3,3600,9,999999999,459,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.0,23.0,59,101500,692,1339,482,125,0,125,14800,0,14800,5670,360,3.1,10,10,11.3,1500,9,999999999,459,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.0,23.0,66,101500,412,1339,469,83,0,83,9600,0,9600,3280,310,2.6,10,10,11.3,3600,9,999999999,459,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.7,22.9,71,101500,116,1216,432,30,4,29,3300,0,3300,990,290,1.7,9,7,11.3,7508,9,999999999,459,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.4,22.8,76,101600,0,0,424,0,0,0,0,0,0,0,320,1.9,8,7,11.3,7515,9,999999999,450,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,22.7,82,101600,0,0,412,0,0,0,0,0,0,0,310,2.1,8,6,11.3,12023,9,999999999,450,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.7,22.9,85,101700,0,0,410,0,0,0,0,0,0,0,80,4.9,7,6,11.3,12669,9,999999999,450,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.2,22.9,87,101700,0,0,404,0,0,0,0,0,0,0,80,3.1,7,5,11.3,13313,9,999999999,450,0.2130,0,88,0.110,999.0,99.0 +1994,8,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.7,22.9,90,101700,0,0,401,0,0,0,0,0,0,0,330,2.2,6,5,11.3,13959,9,999999999,450,0.2130,0,88,0.110,999.0,99.0 +1994,8,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,22.9,92,101700,0,0,398,0,0,0,0,0,0,0,130,2.4,6,5,11.3,14604,9,999999999,440,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.8,22.8,94,101600,0,0,396,0,0,0,0,0,0,0,330,2.6,5,5,11.3,15250,9,999999999,440,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.5,22.8,96,101600,0,0,392,0,0,0,0,0,0,0,320,2.8,5,4,11.3,15894,9,999999999,440,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.1,22.9,99,101600,0,0,390,0,0,0,0,0,0,0,170,4.6,4,4,11.3,16540,9,999999999,440,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.9,22.9,100,101700,0,0,389,0,0,0,0,0,0,0,100,3.2,4,4,11.3,17185,9,999999999,440,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.6,21.6,100,101700,0,0,380,0,0,0,0,0,0,0,160,3.9,4,4,11.3,18692,9,999999999,430,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,22.7,96,101700,105,1150,387,33,40,29,3600,2200,3400,600,170,4.1,3,3,11.3,77777,9,999999999,430,0.2120,0,88,0.110,38.0,24.0 +1994,8,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,23.3,88,101700,399,1340,396,192,356,86,20400,31500,11000,1580,160,3.6,2,2,11.3,77777,9,999999999,430,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.7,85,101800,680,1340,399,432,542,157,46200,54500,18400,3310,170,2.0,3,3,11.3,77777,9,999999999,419,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.8,82,101800,922,1340,406,612,655,162,65000,66500,19100,4440,170,2.0,2,2,11.3,77777,9,999999999,419,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,101800,1108,1340,415,783,671,228,82800,68100,26300,8850,140,1.5,3,3,11.3,77777,9,999999999,419,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.2,65,101700,1226,1340,416,873,726,209,94100,74500,25700,12170,180,3.0,2,2,11.3,77777,9,999999999,409,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.5,20.5,55,101700,1267,1340,424,910,702,246,97300,71600,29400,17440,240,2.5,3,3,11.3,77777,9,999999999,409,0.2120,0,88,0.110,0.0,6.0 +1994,8,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,21.6,59,101600,1228,1340,421,939,812,194,98200,81500,23300,10430,250,2.5,2,2,11.3,77777,9,999999999,409,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,20.5,52,101600,1113,1340,430,752,606,248,79000,61200,28000,9660,230,2.0,3,3,11.3,77777,9,999999999,400,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.1,55,101500,928,1340,424,640,650,189,67200,65600,21600,5130,200,1.5,2,2,11.3,77777,9,999999999,400,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,19.4,48,101500,688,1340,428,366,483,118,38500,47800,13900,2550,260,2.0,3,3,11.3,77777,9,999999999,400,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.5,19.7,53,101500,407,1340,423,191,234,120,20200,21200,13800,2410,270,2.0,3,3,11.3,77777,9,999999999,390,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.2,20.2,58,101500,112,1195,412,32,65,26,3500,3100,3200,450,290,2.0,2,2,11.3,77777,9,999999999,390,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.3,20.6,63,101600,0,0,408,0,0,0,0,0,0,0,300,2.0,2,2,11.3,77777,9,999999999,390,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.7,21.0,67,101600,0,0,405,0,0,0,0,0,0,0,320,2.0,2,2,11.3,77777,9,999999999,379,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.3,21.5,71,101600,0,0,403,0,0,0,0,0,0,0,330,2.0,2,2,11.3,77777,9,999999999,379,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.9,21.9,74,101600,0,0,396,0,0,0,0,0,0,0,340,2.0,1,1,11.3,77777,9,999999999,379,0.2120,0,88,0.110,999.0,99.0 +1994,8,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.5,22.3,78,101600,0,0,395,0,0,0,0,0,0,0,360,2.0,1,1,11.3,77777,9,999999999,370,0.2120,0,88,0.110,999.0,99.0 +1994,8,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,22.6,81,101600,0,0,393,0,0,0,0,0,0,0,10,2.0,1,1,11.3,77777,9,999999999,370,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.8,23.0,85,101600,0,0,384,0,0,0,0,0,0,0,30,2.0,0,0,11.3,77777,9,999999999,370,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,23.3,88,101600,0,0,383,0,0,0,0,0,0,0,40,2.0,0,0,9.7,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101500,0,0,376,0,0,0,0,0,0,0,50,1.5,0,0,11.3,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.7,22.3,87,101600,0,0,385,0,0,0,0,0,0,0,30,1.0,1,1,11.3,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,22.4,86,101700,0,0,387,0,0,0,0,0,0,0,20,0.5,1,1,11.3,77777,9,999999999,350,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.7,82,101700,104,1150,398,39,162,24,4200,8100,3400,420,0,0.0,2,2,9.7,77777,9,999999999,350,0.2110,0,88,0.110,0.0,6.0 +1994,8,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.2,72,101800,397,1340,410,224,473,83,22900,41200,10600,1510,70,2.0,3,3,9.7,77777,9,999999999,350,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.7,72,101800,679,1340,410,422,647,95,45100,64500,12400,2090,40,3.0,2,2,11.3,77777,9,999999999,350,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.1,59,101900,921,1340,422,494,493,155,52500,50200,18000,4260,50,2.5,3,3,11.3,77777,9,999999999,350,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,21.6,59,101800,1107,1340,421,712,661,166,77000,68100,20700,6580,40,2.5,2,2,11.3,77777,9,999999999,350,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.7,61,101800,1224,1340,430,874,783,158,93300,79300,20700,8620,30,1.5,3,3,11.3,77777,9,999999999,350,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.6,20.0,50,101700,1264,1340,425,895,795,145,91800,79700,16400,7900,100,1.5,2,2,11.3,77777,9,999999999,350,0.2110,0,88,0.110,0.0,6.0 +1994,8,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,18.8,45,101600,1225,1340,431,844,742,165,89800,75000,21000,9000,40,2.5,3,3,11.3,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.7,18.3,42,101600,1109,1340,429,767,746,149,81300,75300,18800,5510,80,2.0,2,2,11.3,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,36.3,18.5,35,101600,925,1340,450,673,811,113,71600,81700,15000,3040,90,2.4,2,2,11.3,21700,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.9,17.8,36,101600,683,1340,441,419,586,119,43900,57900,14300,2550,90,1.3,2,2,11.3,21400,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.5,20.0,45,101700,402,1340,430,190,422,63,19900,37500,8600,1210,90,0.7,2,1,11.3,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.1,19.2,49,101700,107,1150,415,32,112,22,3500,5700,3000,380,0,0.0,2,1,11.3,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.7,19.4,54,101700,0,0,408,0,0,0,0,0,0,0,0,0.0,1,1,11.3,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.3,19.7,56,101700,0,0,399,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.5,20.2,61,101700,0,0,395,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.0,20.5,64,101700,0,0,393,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,359,0.2110,0,88,0.110,999.0,99.0 +1994,8,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.2,20.8,68,101700,0,0,389,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,370,0.2110,0,88,0.110,999.0,99.0 +1994,8,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.5,21.2,73,101800,0,0,386,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,370,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.9,21.4,76,101800,0,0,383,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,370,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.3,21.7,80,101800,0,0,380,0,0,0,0,0,0,0,330,0.3,0,0,11.3,77777,9,999999999,370,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.7,22.1,85,101800,0,0,378,0,0,0,0,0,0,0,350,0.2,0,0,11.3,77777,9,999999999,370,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,22.5,90,101800,0,0,376,0,0,0,0,0,0,0,360,0.1,0,0,11.3,77777,9,999999999,370,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101800,0,0,374,0,0,0,0,0,0,0,0,0.0,0,0,6.4,77777,9,999999999,370,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,23.3,90,101900,102,1129,397,27,15,25,2900,900,2800,620,0,0.0,3,3,11.3,77777,9,999999999,370,0.2100,0,88,0.110,4.0,24.0 +1994,8,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.7,74,101900,396,1341,407,177,236,108,18900,21200,12600,2130,60,1.0,2,2,11.3,77777,9,999999999,370,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,22.7,70,102000,677,1341,417,415,455,185,43500,45600,20400,3960,70,2.0,3,3,11.3,77777,9,999999999,379,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.7,67,102000,919,1341,416,612,590,208,63800,59100,23200,5480,70,3.0,2,2,9.7,77777,9,999999999,379,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.6,57,102000,1105,1341,428,689,485,289,74200,50600,32300,11320,170,3.0,3,3,9.7,77777,9,999999999,379,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,21.6,57,102000,1222,1341,424,860,646,271,90900,65400,31100,15210,220,3.0,2,2,9.7,77777,9,999999999,390,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,21.6,54,102000,1262,1341,435,841,444,423,89000,46300,45300,30010,230,3.0,3,3,11.3,77777,9,999999999,390,0.2100,0,88,0.110,0.0,6.0 +1994,8,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,22.7,59,101900,1223,1341,428,832,521,357,89100,54400,39300,20790,300,3.6,2,2,11.3,77777,9,999999999,390,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,21.6,54,101800,1106,1341,435,659,411,320,70200,42900,34800,12660,300,3.0,3,3,11.3,77777,9,999999999,390,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.2,21.5,60,101800,921,1341,423,465,379,204,50400,39300,23300,5500,180,3.5,3,3,11.3,15756,9,999999999,400,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.1,22.5,64,101900,679,1341,420,397,420,184,41700,42100,20300,3940,250,1.5,3,2,11.3,16113,9,999999999,400,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.1,22.4,63,101900,398,1341,420,166,221,101,17800,19900,11900,1960,260,1.0,3,2,11.3,16469,9,999999999,400,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.8,22.5,73,101900,103,1129,407,27,9,26,2900,600,2900,640,260,0.8,3,2,11.3,18925,9,999999999,409,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,22.3,80,101900,0,0,392,0,0,0,0,0,0,0,250,0.5,3,1,11.3,77777,9,999999999,409,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.9,22.3,81,101900,0,0,391,0,0,0,0,0,0,0,250,0.5,3,1,11.3,77777,9,999999999,409,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,22.4,90,101900,0,0,390,0,0,0,0,0,0,0,0,0.4,3,1,11.3,77777,9,999999999,409,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.2,22.5,90,101900,0,0,388,0,0,0,0,0,0,0,260,0.4,3,1,11.3,77777,9,999999999,419,0.2100,0,88,0.110,999.0,99.0 +1994,8,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.9,22.6,96,101900,0,0,379,0,0,0,0,0,0,0,230,0.3,2,0,11.3,77777,9,999999999,419,0.2100,0,88,0.110,999.0,99.0 +1994,9,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,22.6,90,101900,0,0,390,0,0,0,0,0,0,0,0,0.2,2,2,11.3,77777,9,999999999,419,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.3,22.7,96,102000,0,0,389,0,0,0,0,0,0,0,0,0.1,2,2,11.3,77777,9,999999999,430,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,22.8,90,102000,0,0,387,0,0,0,0,0,0,0,0,0.1,2,2,11.3,77777,9,999999999,430,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.6,22.9,96,102000,0,0,385,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,430,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,22.8,90,102000,0,0,390,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,430,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.5,22.8,96,102000,0,0,380,0,0,0,0,0,0,0,0,0.0,2,1,11.3,21644,9,999999999,440,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,22.7,85,102000,100,1129,390,28,31,25,3100,1700,2900,520,0,0.0,2,1,11.3,77777,9,999999999,440,0.2090,0,88,0.120,0.0,6.0 +1994,9,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.8,77,102100,394,1342,406,168,260,92,18100,23300,11300,1760,70,1.0,3,1,11.3,77777,9,999999999,440,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,22.7,70,102100,675,1342,407,401,504,147,43000,50600,17500,3070,200,1.0,2,1,11.3,77777,9,999999999,440,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.7,65,102100,917,1342,414,619,634,185,65000,63900,21100,4940,0,0.0,3,1,11.3,77777,9,999999999,440,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,22.7,63,102100,1103,1342,417,751,663,205,79900,67600,24100,7900,270,1.5,2,1,11.3,77777,9,999999999,440,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,23.8,63,102000,1220,1342,424,851,686,227,91100,70100,27100,12760,220,1.5,3,1,11.3,77777,9,999999999,440,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.6,20.0,50,102000,1260,1342,419,889,708,224,95600,72500,27300,15230,200,2.0,2,1,11.3,77777,9,999999999,440,0.2090,0,88,0.120,0.0,6.0 +1994,9,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,18.3,44,101900,1220,1342,420,803,619,240,85600,63100,28100,13440,260,2.5,3,1,11.3,77777,9,999999999,440,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.2,56,101800,1103,1342,425,745,657,205,79400,67000,24100,7890,280,3.6,2,1,11.3,77777,9,999999999,440,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.3,20.3,66,101800,917,1342,402,549,464,232,58800,48100,25800,6280,250,1.5,6,2,11.3,8613,9,999999999,450,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,23.4,94,101800,675,1342,391,387,410,180,40600,41100,19900,3830,230,0.9,6,2,11.3,5825,9,999999999,450,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.6,22.5,94,101900,393,1342,385,164,233,95,17500,20900,11400,1830,190,0.3,5,2,11.3,4238,9,999999999,450,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.8,22.6,93,101900,99,1107,386,29,26,27,3200,1600,3100,660,220,2.2,5,2,11.3,5350,9,999999999,450,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,21.7,88,101900,0,0,386,0,0,0,0,0,0,0,200,2.1,5,2,11.3,6463,9,999999999,450,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.1,21.8,82,101900,0,0,392,0,0,0,0,0,0,0,0,0.0,5,2,11.3,7575,9,999999999,450,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.2,22.9,87,101900,0,0,394,0,0,0,0,0,0,0,0,0.0,5,2,11.3,10788,9,999999999,450,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.4,23.0,92,101900,0,0,390,0,0,0,0,0,0,0,0,0.0,5,2,11.3,11900,9,999999999,450,0.2090,0,88,0.120,999.0,99.0 +1994,9,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.5,24.1,92,101900,0,0,391,0,0,0,0,0,0,0,0,0.0,4,1,11.3,13013,9,999999999,450,0.2090,0,88,0.120,999.0,99.0 +1994,9,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,24.2,98,101900,0,0,396,0,0,0,0,0,0,0,0,0.0,4,3,11.3,14125,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.8,24.3,97,101900,0,0,393,0,0,0,0,0,0,0,0,0.0,4,2,11.3,15238,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.9,24.4,97,101900,0,0,398,0,0,0,0,0,0,0,0,0.0,4,3,11.3,16350,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.1,23.5,96,101900,0,0,389,0,0,0,0,0,0,0,0,0.0,4,2,11.3,17463,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,23.6,96,101900,0,0,393,0,0,0,0,0,0,0,0,0.0,3,3,11.3,77777,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.4,24.4,100,102000,0,0,391,0,0,0,0,0,0,0,0,0.0,3,2,11.3,77777,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,23.8,90,102000,98,1107,400,26,15,24,2800,900,2700,600,0,0.0,3,3,11.3,77777,9,999999999,450,0.2080,0,88,0.120,0.0,6.0 +1994,9,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,102000,392,1342,411,172,223,107,18300,19900,12500,2110,50,1.5,2,2,11.3,77777,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.7,65,102000,674,1342,424,364,393,167,38600,39400,18800,3530,340,2.0,3,3,11.3,77777,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.2,59,102000,916,1342,425,589,570,200,61500,57200,22300,5260,340,1.5,2,2,11.3,77777,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,23.8,63,102000,1102,1342,434,725,575,253,76000,58000,28300,9490,280,2.5,3,3,11.3,77777,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,22.7,59,101900,1218,1342,428,905,719,251,96000,73100,29500,13870,260,2.5,2,2,11.3,77777,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.6,21.6,55,101900,1258,1342,431,904,637,306,94900,64200,34600,20120,240,1.5,3,3,11.3,77777,9,999999999,450,0.2080,0,88,0.120,0.0,6.0 +1994,9,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.7,21.6,52,101800,1217,1342,433,855,646,269,90400,65400,30900,14730,230,4.1,2,2,11.3,77777,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,21.6,54,101700,1100,1342,435,696,494,291,74800,51600,32400,11230,250,4.1,3,3,11.3,77777,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.3,20.7,91,101700,913,1342,383,611,537,245,64900,55600,27000,6630,280,4.4,4,4,11.3,15637,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.5,20.7,90,101700,670,1342,381,378,340,208,40400,35200,22800,4720,270,3.1,3,3,11.3,17974,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,21.7,79,101700,387,1342,394,164,243,94,17600,21600,11300,1810,290,3.5,3,2,11.3,18211,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.8,20.7,83,101800,94,1085,391,24,9,23,2600,600,2600,580,240,5.3,4,4,11.3,16347,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.9,21.8,94,101800,0,0,387,0,0,0,0,0,0,0,260,6.2,4,4,11.3,18684,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.1,21.8,87,101800,0,0,394,0,0,0,0,0,0,0,250,7.1,4,4,11.3,18921,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,20.8,81,101800,0,0,393,0,0,0,0,0,0,0,260,4.8,4,4,11.3,17658,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.4,20.8,80,101800,0,0,394,0,0,0,0,0,0,0,260,4.6,4,4,11.3,17895,9,999999999,450,0.2080,0,88,0.120,999.0,99.0 +1994,9,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,21.9,85,101800,0,0,396,0,0,0,0,0,0,0,260,3.4,4,4,11.3,19632,9,999999999,440,0.2080,0,88,0.120,999.0,99.0 +1994,9,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.7,20.9,75,101800,0,0,381,0,0,0,0,0,0,0,250,4.2,3,0,11.3,19868,9,999999999,440,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.8,20.9,79,101800,0,0,377,0,0,0,0,0,0,0,250,2.0,0,0,11.3,77777,9,999999999,440,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,20.9,78,101800,0,0,378,0,0,0,0,0,0,0,240,0.7,2,0,11.3,18242,9,999999999,440,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.1,22.0,83,101800,0,0,380,0,0,0,0,0,0,0,250,1.6,0,0,11.3,77777,9,999999999,440,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.3,22.0,77,101800,0,0,386,0,0,0,0,0,0,0,250,1.4,2,0,11.3,20816,9,999999999,440,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.4,23.0,82,101800,0,0,387,0,0,0,0,0,0,0,270,0.2,2,0,11.3,77777,9,999999999,440,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.6,23.0,81,101900,96,1108,396,31,100,22,3400,4900,2900,380,260,0.5,3,1,11.3,21889,9,999999999,440,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.7,23.1,76,101900,390,1343,402,191,418,69,19700,36600,9100,1290,270,1.9,3,1,11.3,20626,9,999999999,440,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.9,22.1,63,101900,672,1343,413,415,624,102,43900,61900,12900,2210,270,1.7,3,1,11.3,21763,9,999999999,440,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.7,65,101900,914,1343,414,638,759,121,67300,76200,15300,3120,270,2.5,3,1,11.3,77777,9,999999999,440,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.7,61,101900,1100,1343,420,783,797,130,84100,80900,17700,4800,300,1.5,2,1,11.3,77777,9,999999999,440,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,21.1,54,101800,1216,1343,421,864,773,164,91900,78200,20900,8520,310,4.6,3,1,11.3,77777,9,999999999,440,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,21.1,55,101700,1255,1343,418,901,811,141,92300,81300,16100,7260,290,2.5,2,1,11.3,77777,9,999999999,440,0.2070,0,88,0.120,0.0,6.0 +1994,9,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,21.6,54,101600,1214,1343,425,834,752,154,89300,76200,20200,8020,320,2.5,3,1,11.3,77777,9,999999999,440,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.7,21.6,52,101600,1096,1343,427,758,769,130,81400,78000,17500,4760,320,3.6,2,1,11.3,77777,9,999999999,440,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,21.6,54,101500,909,1343,425,633,757,120,66700,76000,15100,3080,320,4.6,3,1,11.3,77777,9,999999999,450,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.7,61,101500,665,1343,420,387,546,116,40600,53800,13900,2460,310,4.1,2,1,11.3,77777,9,999999999,450,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.9,21.8,62,101500,382,1343,412,189,396,76,20200,34500,10300,1380,320,3.6,2,1,11.3,77777,9,999999999,450,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.8,22.8,70,101500,90,1063,400,28,101,20,3100,4900,2700,350,10,4.5,0,0,11.3,77777,9,999999999,450,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.6,22.9,67,101600,0,0,404,0,0,0,0,0,0,0,10,5.0,0,0,11.3,77777,9,999999999,450,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.4,22.0,68,101600,0,0,397,0,0,0,0,0,0,0,20,4.9,1,0,11.3,77777,9,999999999,450,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.2,22.0,69,101600,0,0,396,0,0,0,0,0,0,0,10,3.9,0,0,11.3,77777,9,999999999,450,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.1,22.1,70,101600,0,0,395,0,0,0,0,0,0,0,10,3.8,0,0,11.3,77777,9,999999999,450,0.2070,0,88,0.120,999.0,99.0 +1994,9,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.9,22.2,71,101600,0,0,394,0,0,0,0,0,0,0,10,4.3,0,0,11.3,77777,9,999999999,450,0.2070,0,88,0.120,999.0,99.0 +1994,9,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.7,22.3,77,101600,0,0,405,0,0,0,0,0,0,0,10,4.8,3,3,11.3,77777,9,999999999,450,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.5,22.3,73,101600,0,0,409,0,0,0,0,0,0,0,340,4.7,3,3,11.3,77777,9,999999999,450,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.4,22.4,74,101600,0,0,392,0,0,0,0,0,0,0,340,3.7,0,0,11.3,77777,9,999999999,450,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.2,21.5,75,101600,0,0,392,0,0,0,0,0,0,0,350,4.6,2,1,11.3,77777,9,999999999,450,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,22.5,76,101600,0,0,397,0,0,0,0,0,0,0,350,4.1,1,1,11.3,77777,9,999999999,450,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.8,22.6,78,101600,0,0,402,0,0,0,0,0,0,0,360,3.5,2,2,11.3,77777,9,999999999,450,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.7,22.7,79,101600,95,1086,415,24,7,23,2600,400,2600,580,360,6.1,8,6,11.3,1265,9,999999999,450,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.5,22.7,75,101600,388,1344,425,193,96,165,21000,8800,18500,3850,360,5.0,8,7,11.3,1291,9,999999999,450,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.3,23.8,86,101600,670,1344,415,361,120,301,39500,12100,33400,8170,10,5.5,8,6,11.3,1317,9,999999999,459,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.1,23.9,83,101600,913,1344,431,259,139,165,29300,15000,19100,4240,50,5.4,8,8,11.3,1343,9,999999999,459,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,24.0,84,101600,1098,1344,424,630,334,357,68800,36200,39100,13240,30,5.3,9,7,11.3,1370,9,999999999,459,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.8,24.0,85,101600,1214,1344,429,677,179,514,73600,19000,56400,24940,90,4.8,9,8,11.3,1696,9,999999999,459,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.6,24.1,86,101600,1253,1344,421,666,231,450,73300,24600,50300,24890,100,3.2,9,7,11.3,3522,9,999999999,459,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.4,24.2,83,101600,1212,1344,433,422,157,280,47500,17100,32000,13640,160,3.2,9,8,11.3,3548,9,999999999,459,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.3,23.2,78,101600,1093,1344,440,315,4,312,37100,400,36800,14120,220,3.1,10,9,11.3,2974,9,999999999,459,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101600,905,1344,446,181,0,181,21600,0,21600,8600,360,5.1,10,10,11.3,2400,9,999999999,459,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101600,661,1344,453,290,52,264,31700,5200,29200,7400,50,2.5,9,9,11.3,6000,9,999999999,459,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,22.7,70,101600,377,1344,449,96,28,88,10500,2500,9800,2390,50,6.1,9,9,11.3,1500,9,999999999,459,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.9,22.6,77,101700,86,1041,450,15,0,15,1800,0,1800,560,70,6.1,10,10,11.3,1516,9,999999999,459,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,23.5,91,101700,0,0,427,0,0,0,0,0,0,0,100,7.6,9,9,11.3,1532,9,999999999,469,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.1,24.4,96,101700,0,0,420,0,0,0,0,0,0,0,170,6.0,9,8,11.3,3349,9,999999999,469,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.1,24.4,96,101700,0,0,420,0,0,0,0,0,0,0,110,9.0,9,8,11.3,3365,9,999999999,469,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,24.2,100,101700,0,0,415,0,0,0,0,0,0,0,90,8.0,9,8,11.3,3381,9,999999999,469,0.2060,0,88,0.120,999.0,99.0 +1994,9,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.3,23.3,100,101700,0,0,429,0,0,0,0,0,0,0,90,7.5,10,10,11.3,1297,9,999999999,469,0.2060,0,88,0.120,999.0,99.0 +1994,9,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.4,23.4,100,101700,0,0,430,0,0,0,0,0,0,0,70,6.9,10,10,11.3,1314,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.5,23.5,100,101700,0,0,410,0,0,0,0,0,0,0,80,7.9,9,8,11.3,1330,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.6,22.6,100,101700,0,0,424,0,0,0,0,0,0,0,90,7.3,10,10,11.3,1346,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.7,22.7,100,101700,0,0,425,0,0,0,0,0,0,0,90,6.8,10,10,11.3,1362,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.8,22.8,100,101700,0,0,414,0,0,0,0,0,0,0,70,5.7,10,9,11.3,1378,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.8,22.8,100,101700,0,0,414,0,0,0,0,0,0,0,60,5.6,10,9,11.3,1395,9,999999999,480,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.9,22.9,100,101700,93,1087,415,24,3,23,2700,0,2700,810,70,6.1,10,9,11.3,1411,9,999999999,480,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,23.5,97,101700,386,1344,422,118,10,115,13100,600,12900,3990,70,6.6,10,9,11.3,1427,9,999999999,480,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,24.4,90,101700,668,1344,435,141,55,113,15500,5400,12800,3720,80,6.6,10,9,11.3,1443,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.2,24.4,80,101700,911,1344,447,340,104,269,37500,11000,30000,7910,80,7.1,10,9,11.3,1459,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.3,24.3,75,101700,1096,1344,454,429,128,324,47600,13700,36400,12050,120,7.0,10,9,11.3,1476,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.4,24.2,70,101700,1212,1344,460,508,100,417,56000,10300,46700,20140,80,6.5,10,9,11.3,1492,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.4,24.1,87,101700,1250,1344,436,548,81,472,60400,8400,52600,24450,130,5.3,10,9,11.3,1508,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.5,23.0,81,101700,1209,1344,435,751,356,431,82000,38700,47100,21570,310,5.8,10,9,11.3,1524,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,21.9,85,101700,1089,1344,423,366,132,258,41100,14200,29600,9480,320,5.7,9,9,11.3,1541,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.7,21.9,80,101700,901,1344,429,502,80,448,55000,8300,49400,13850,320,5.2,9,9,11.3,1557,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.8,23.8,79,101700,656,1344,444,320,127,258,35100,12700,28800,7240,330,6.3,9,9,11.3,1573,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.9,23.7,74,101700,372,1344,450,97,88,72,10800,7900,8600,1590,350,6.7,9,9,11.3,1589,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,23.6,82,101700,82,1019,439,18,7,17,1900,400,1900,440,350,6.2,9,9,11.3,1605,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,22.5,76,101700,0,0,438,0,0,0,0,0,0,0,350,5.5,9,9,11.3,1622,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,21.4,75,101700,0,0,431,0,0,0,0,0,0,0,20,6.1,9,9,11.3,1638,9,999999999,469,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.2,21.4,75,101700,0,0,432,0,0,0,0,0,0,0,40,4.5,9,9,11.3,1654,9,999999999,459,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.3,22.3,83,101700,0,0,419,0,0,0,0,0,0,0,50,3.9,9,8,11.3,1670,9,999999999,459,0.2050,0,88,0.120,999.0,99.0 +1994,9,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.4,22.2,88,101700,0,0,413,0,0,0,0,0,0,0,50,3.9,9,8,11.3,1686,9,999999999,459,0.2050,0,88,0.120,999.0,99.0 +1994,9,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,22.1,87,101700,0,0,414,0,0,0,0,0,0,0,140,4.8,9,8,11.3,1703,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,23.0,91,101700,0,0,416,0,0,0,0,0,0,0,110,4.8,9,8,11.3,1719,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.7,22.9,90,101700,0,0,416,0,0,0,0,0,0,0,50,3.8,9,8,11.3,1735,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.7,22.9,90,101700,0,0,416,0,0,0,0,0,0,0,120,4.2,9,8,11.3,1751,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.8,21.8,89,101700,0,0,410,0,0,0,0,0,0,0,50,3.7,9,8,11.3,1768,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,22.7,93,101700,0,0,411,0,0,0,0,0,0,0,50,3.6,9,8,11.3,1784,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.0,21.6,81,101700,91,1065,416,21,4,21,2500,0,2500,750,50,3.6,9,8,11.3,1800,9,999999999,459,0.2040,0,88,0.120,4.0,99.0 +1994,9,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.2,82,101800,384,1345,413,153,53,138,16700,4800,15400,3400,50,4.6,9,7,11.3,1800,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.2,74,101900,667,1345,429,261,84,219,28600,8400,24500,6480,70,4.6,9,8,11.3,1800,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,22.2,68,101900,909,1345,412,605,557,229,64800,57700,25700,6110,80,6.1,2,2,11.3,77777,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.2,63,101900,1094,1345,423,744,662,204,79000,67500,24000,7630,60,3.0,3,3,11.3,77777,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.6,61,101900,1210,1345,438,592,251,366,65400,27300,40700,18070,90,3.0,9,7,11.3,1800,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.5,22.7,63,101800,1248,1345,449,697,231,482,76400,24600,53500,26030,60,3.0,9,8,11.3,2100,9,999999999,459,0.2040,0,88,0.120,0.0,6.0 +1994,9,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,22.2,56,101700,1206,1345,431,807,647,227,86200,66100,26800,11880,70,2.5,2,2,11.3,77777,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,20.5,52,101600,1086,1345,430,766,679,217,81000,69000,25200,7900,70,1.5,3,3,11.3,77777,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.6,21.7,53,101600,897,1345,440,525,491,197,56900,50900,22900,5110,130,2.6,4,4,11.3,19531,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.6,19.9,53,101600,651,1345,427,369,382,183,39600,39400,20500,4020,150,3.1,4,4,11.3,17063,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.6,20.0,53,101600,367,1345,430,165,320,77,17400,27400,10000,1400,150,5.3,5,5,11.3,14594,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.6,20.2,81,101600,78,998,392,21,13,20,2300,800,2300,500,170,0.8,6,5,11.3,12125,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,21.4,82,101700,0,0,402,0,0,0,0,0,0,0,200,3.3,6,6,11.3,9956,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,22.6,89,101700,0,0,404,0,0,0,0,0,0,0,220,3.4,7,6,11.3,7488,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,21.7,84,101700,0,0,396,0,0,0,0,0,0,0,270,3.9,7,4,11.3,6219,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,21.9,80,101700,0,0,402,0,0,0,0,0,0,0,290,5.6,8,4,11.3,3750,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,22.1,81,101700,0,0,405,0,0,0,0,0,0,0,300,2.6,8,5,11.3,1281,9,999999999,459,0.2040,0,88,0.120,999.0,99.0 +1994,9,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,21.3,77,101700,0,0,419,0,0,0,0,0,0,0,310,2.6,9,8,11.3,0,9,999999999,459,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,21.4,78,101700,0,0,428,0,0,0,0,0,0,0,330,2.7,10,9,11.3,0,9,999999999,459,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,21.6,79,101700,0,0,440,0,0,0,0,0,0,0,350,2.3,10,10,11.3,1375,9,999999999,459,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,22.8,85,101700,0,0,442,0,0,0,0,0,0,0,360,2.8,10,10,11.3,0,9,999999999,459,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,22.9,85,101700,0,0,442,0,0,0,0,0,0,0,20,1.4,10,10,11.3,0,9,999999999,459,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,23.1,86,101700,0,0,415,0,0,0,0,0,0,0,50,1.9,8,7,11.3,5469,9,999999999,459,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,23.3,82,101700,90,1065,420,26,16,25,2900,1000,2800,620,80,3.0,9,7,11.3,3000,9,999999999,459,0.2030,0,88,0.120,0.0,6.0 +1994,9,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,23.8,85,101700,382,1346,428,107,72,86,11800,6500,9900,1910,80,4.1,9,8,11.3,3300,9,999999999,459,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,23.8,74,101800,665,1346,434,399,414,194,41500,41300,21000,4140,90,4.1,9,7,11.3,7500,9,999999999,469,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.8,72,101800,907,1346,444,408,90,347,44800,9200,38600,11610,100,3.6,9,8,11.3,7500,9,999999999,469,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,23.8,68,101800,1093,1346,443,536,262,322,58800,28400,35600,11620,80,2.5,9,7,11.3,7500,9,999999999,469,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101800,1208,1346,443,370,112,270,42000,12100,31100,12780,150,1.0,9,8,11.2,7500,9,999999999,469,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,22.2,65,101700,1245,1346,464,341,0,341,40700,0,40700,15610,320,1.0,10,10,11.3,7500,9,999999999,469,0.2030,0,88,0.120,0.0,6.0 +1994,9,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101700,1202,1346,434,263,0,263,31800,0,31800,12690,360,1.0,10,10,2.4,900,9,999999999,480,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101700,1082,1346,431,293,0,293,34600,0,34600,13440,20,1.0,10,10,9.7,6000,9,999999999,480,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,20.6,96,101700,892,1346,414,204,26,186,22500,2600,20700,6820,40,2.8,10,10,9.7,7056,9,999999999,480,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.8,19.8,100,101700,646,1346,405,159,0,159,18300,0,18300,6610,30,2.9,10,10,9.7,8113,9,999999999,480,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.2,19.2,100,101700,361,1346,401,48,2,48,5800,100,5700,2000,40,2.5,10,10,9.7,9169,9,999999999,480,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.7,19.7,100,101700,74,953,385,23,12,22,2500,700,2500,540,40,1.1,8,8,9.7,10225,9,999999999,480,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.2,19.2,100,101700,0,0,382,0,0,0,0,0,0,0,50,1.8,8,8,9.7,11281,9,999999999,490,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.7,19.7,100,101700,0,0,379,0,0,0,0,0,0,0,40,1.9,7,7,9.7,15338,9,999999999,490,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.2,20.2,100,101700,0,0,382,0,0,0,0,0,0,0,60,1.1,7,7,9.7,16394,9,999999999,490,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.7,20.7,100,101700,0,0,385,0,0,0,0,0,0,0,60,2.8,7,7,9.7,17450,9,999999999,490,0.2030,0,88,0.120,999.0,99.0 +1994,9,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,21.1,100,101700,0,0,383,0,0,0,0,0,0,0,70,1.9,6,6,9.7,14606,9,999999999,490,0.2030,0,88,0.120,999.0,99.0 +1994,9,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.6,21.6,100,101700,0,0,380,0,0,0,0,0,0,0,60,1.1,6,4,9.7,19563,9,999999999,500,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.1,22.1,100,101700,0,0,383,0,0,0,0,0,0,0,70,1.2,5,4,9.7,20619,9,999999999,500,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.6,22.6,100,101700,0,0,387,0,0,0,0,0,0,0,50,1.9,5,4,9.7,17775,9,999999999,500,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.1,23.0,94,101700,0,0,395,0,0,0,0,0,0,0,60,1.5,4,4,9.7,77777,9,999999999,500,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,23.9,96,101700,0,0,395,0,0,0,0,0,0,0,60,1.7,4,3,9.7,77777,9,999999999,500,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,22.9,88,101700,0,0,397,0,0,0,0,0,0,0,80,2.3,3,3,9.7,20944,9,999999999,500,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,23.8,90,101700,88,1043,400,23,17,22,2600,1000,2500,550,80,2.5,3,3,11.3,77777,9,999999999,509,0.2010,0,88,0.120,33.0,24.0 +1994,9,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.8,82,101700,380,1346,406,155,242,87,16700,21400,10700,1650,100,3.0,2,2,11.3,77777,9,999999999,500,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,25.0,80,101800,663,1346,442,227,115,170,25100,11800,19200,4210,130,4.1,9,8,11.3,77777,9,999999999,500,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.8,69,101800,905,1346,441,517,311,307,55600,33400,33100,8540,130,4.1,9,7,11.3,7500,9,999999999,500,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.8,72,101900,1091,1346,444,349,58,301,38500,5900,33700,12590,160,2.5,9,8,11.3,6000,9,999999999,500,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,23.3,72,101800,1206,1346,433,620,175,464,68000,18600,51300,21800,210,2.0,9,7,11.3,6000,9,999999999,500,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,23.8,77,101700,1243,1346,460,335,0,335,40000,0,40000,15400,260,4.1,10,10,11.3,6000,9,999999999,500,0.2010,0,88,0.120,0.0,6.0 +1994,9,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101700,1199,1346,436,727,384,384,79800,41700,42500,18320,260,3.0,9,7,11.3,6000,9,999999999,490,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,22.7,63,101600,1078,1346,449,617,56,572,67700,5900,63000,20570,280,2.0,9,8,11.3,7500,9,999999999,490,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.6,20.8,63,101600,888,1346,429,416,258,245,45300,27700,27000,6460,70,5.3,9,7,11.3,7219,9,999999999,490,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.6,20.8,63,101600,641,1346,435,199,79,161,21900,7800,18200,4950,30,3.9,10,8,11.3,6938,9,999999999,490,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.7,22.9,85,101600,356,1346,415,95,28,88,10500,2500,9800,2340,30,2.0,10,7,11.3,6656,9,999999999,490,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.8,22.0,80,101700,70,931,421,19,0,19,2200,0,2200,670,350,1.7,10,8,11.3,10875,9,999999999,490,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.8,22.0,80,101700,0,0,421,0,0,0,0,0,0,0,280,1.9,10,8,11.3,10594,9,999999999,480,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.9,22.1,80,101700,0,0,422,0,0,0,0,0,0,0,240,2.6,10,8,11.3,10313,9,999999999,480,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.9,22.1,84,101700,0,0,410,0,0,0,0,0,0,0,230,2.6,10,7,11.3,10031,9,999999999,480,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,22.2,84,101700,0,0,426,0,0,0,0,0,0,0,220,2.5,10,9,11.3,9750,9,999999999,480,0.2010,0,88,0.120,999.0,99.0 +1994,9,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.1,22.3,84,101700,0,0,406,0,0,0,0,0,0,0,190,2.4,7,6,11.3,77777,9,999999999,480,0.2010,0,88,0.120,999.0,99.0 +1994,9,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.1,22.3,84,101700,0,0,406,0,0,0,0,0,0,0,180,2.4,8,6,11.3,77777,9,999999999,480,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.2,22.4,84,101700,0,0,407,0,0,0,0,0,0,0,170,2.3,8,6,11.3,77777,9,999999999,469,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.3,22.5,85,101700,0,0,407,0,0,0,0,0,0,0,160,2.3,8,6,11.3,77777,9,999999999,469,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.3,22.5,85,101700,0,0,407,0,0,0,0,0,0,0,140,2.2,8,6,11.3,77777,9,999999999,469,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.4,22.6,90,101700,0,0,403,0,0,0,0,0,0,0,130,2.1,9,6,11.3,77777,9,999999999,469,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.4,22.6,85,101700,0,0,408,0,0,0,0,0,0,0,110,2.3,9,6,11.3,77777,9,999999999,469,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,22.7,85,101700,86,1044,409,22,2,22,2500,0,2500,780,100,2.0,9,6,11.3,77777,9,999999999,459,0.2000,0,88,0.120,0.0,6.0 +1994,9,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,23.3,82,101800,378,1347,416,132,121,98,14500,10800,11400,2170,90,3.0,9,6,11.3,77777,9,999999999,459,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,23.3,77,101800,661,1347,422,311,54,284,34000,5400,31300,7770,100,2.5,9,6,11.3,77777,9,999999999,459,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,24.4,75,101800,904,1347,433,343,237,184,38400,25600,21200,4730,110,2.5,9,6,11.3,77777,9,999999999,459,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101800,1089,1347,431,587,273,366,63800,29600,39900,13300,160,1.5,9,6,11.3,7500,9,999999999,459,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,21.1,57,101800,1203,1347,435,774,531,300,84100,55600,34300,15700,280,1.5,9,6,11.3,7500,9,999999999,459,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,22.2,56,101700,1240,1347,446,627,133,504,68400,14100,55400,26270,170,2.0,9,6,11.3,77777,9,999999999,459,0.2000,0,88,0.120,0.0,6.0 +1994,9,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.7,22.2,54,101600,1196,1347,449,678,305,406,74000,33100,44600,19250,250,3.0,9,6,11.3,77777,9,999999999,459,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.8,23.3,54,101500,1074,1347,442,711,634,205,75400,64500,23800,7270,260,3.0,2,2,11.3,77777,9,999999999,459,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,35.6,23.4,49,101500,884,1347,452,573,517,234,60900,53400,25800,6060,300,4.0,2,2,11.3,77777,9,999999999,459,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,36.4,23.4,47,101600,636,1347,457,374,482,146,39800,47900,17200,2980,300,4.4,2,2,11.3,77777,9,999999999,459,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,35.1,23.5,51,101600,350,1347,450,165,321,82,17400,27000,10300,1510,300,4.4,2,2,11.3,15755,9,999999999,459,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.9,23.5,52,101600,66,909,448,17,17,15,1800,800,1800,310,290,3.9,2,2,11.3,15874,9,999999999,459,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.7,24.6,56,101600,0,0,453,0,0,0,0,0,0,0,250,2.9,3,3,11.3,17192,9,999999999,459,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.5,24.6,57,101600,0,0,448,0,0,0,0,0,0,0,230,3.3,2,2,11.3,17311,9,999999999,459,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.3,24.7,58,101600,0,0,446,0,0,0,0,0,0,0,200,3.8,2,2,11.3,17429,9,999999999,459,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.1,24.7,58,101600,0,0,450,0,0,0,0,0,0,0,200,5.4,3,3,11.3,16947,9,999999999,450,0.2000,0,88,0.120,999.0,99.0 +1994,9,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.8,24.8,63,101600,0,0,438,0,0,0,0,0,0,0,180,3.3,2,2,11.3,77777,9,999999999,450,0.2000,0,88,0.120,999.0,99.0 +1994,9,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.6,23.8,60,101600,0,0,422,0,0,0,0,0,0,0,180,3.7,0,0,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.4,23.9,61,101600,0,0,421,0,0,0,0,0,0,0,170,4.2,0,0,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.2,24.9,65,101600,0,0,421,0,0,0,0,0,0,0,210,4.7,0,0,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.0,24.0,66,101600,0,0,413,0,0,0,0,0,0,0,210,4.7,0,0,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.7,25.0,72,101600,0,0,413,0,0,0,0,0,0,0,200,4.4,0,0,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.5,25.1,73,101600,0,0,420,0,0,0,0,0,0,0,190,4.1,2,1,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.3,25.1,70,101600,85,1022,424,23,27,21,2600,1400,2500,440,140,2.6,2,1,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.1,25.2,67,101600,376,1348,429,169,306,83,17800,26400,10400,1520,140,3.6,2,1,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.9,24.2,57,101600,659,1348,429,405,553,134,42000,53900,15500,2750,160,3.0,0,0,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.7,25.3,62,101600,902,1348,430,617,664,172,64900,67000,20000,4500,140,4.0,0,0,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.4,25.4,60,101600,1086,1348,434,782,725,197,83300,74000,23500,7210,140,2.5,0,0,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,35.2,25.4,57,101600,1201,1348,438,884,756,211,95000,77400,25800,10800,180,2.9,0,0,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,35.0,25.5,58,101700,1237,1348,446,858,635,275,90700,64300,31500,16040,170,2.9,1,1,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,35.8,24.5,52,101700,1193,1348,449,814,689,204,87500,70600,24800,10160,70,2.4,1,1,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,35.6,24.6,53,101700,1070,1348,448,673,562,226,70800,56900,25500,7850,140,1.9,1,1,11.3,19442,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,34.3,24.6,57,101700,879,1348,440,557,600,165,58600,60500,19000,4200,110,2.3,1,1,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,33.1,24.7,61,101700,631,1348,434,356,473,134,38200,47000,16100,2710,110,1.8,1,1,11.3,19079,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.9,23.7,66,101700,345,1348,420,153,294,77,16000,24500,9700,1410,140,4.9,1,1,11.3,19797,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.7,23.8,71,101700,62,887,419,16,16,14,1700,800,1700,290,110,2.8,2,2,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.5,23.8,76,101700,0,0,413,0,0,0,0,0,0,0,110,2.7,2,2,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.2,22.9,73,101700,0,0,404,0,0,0,0,0,0,0,100,1.7,1,1,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.0,22.9,74,101700,0,0,403,0,0,0,0,0,0,0,90,2.2,1,1,11.3,77777,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.8,23.0,75,101700,0,0,402,0,0,0,0,0,0,0,70,1.2,1,1,11.3,20989,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.6,23.0,81,101700,0,0,396,0,0,0,0,0,0,0,80,1.9,1,1,11.3,21108,9,999999999,450,0.1990,0,88,0.120,999.0,99.0 +1994,9,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.4,23.1,82,101700,0,0,388,0,0,0,0,0,0,0,80,2.6,1,0,11.3,21226,9,999999999,450,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.2,23.1,88,101700,0,0,381,0,0,0,0,0,0,0,80,3.1,1,0,11.3,19545,9,999999999,450,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.9,23.2,85,101700,0,0,385,0,0,0,0,0,0,0,80,2.6,1,0,11.3,77777,9,999999999,450,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.7,23.2,91,101700,0,0,391,0,0,0,0,0,0,0,70,2.3,2,2,11.3,19782,9,999999999,450,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,23.3,88,101700,0,0,396,0,0,0,0,0,0,0,70,2.0,2,2,11.3,77777,9,999999999,450,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101800,0,0,397,0,0,0,0,0,0,0,50,1.5,3,3,11.3,77777,9,999999999,450,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9*9,25.5,23.8,90,101800,83,1023,396,23,60,18,2500,2600,2300,300,50,2.5,2,2,11.3,77777,9,999999999,450,0.1980,0,88,0.120,76.0,99.0 +1994,9,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,23.8,85,101900,374,1348,406,156,249,87,16800,21800,10700,1650,50,3.6,3,3,11.3,77777,9,999999999,450,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,24.4,79,101900,657,1348,412,420,634,111,44200,62400,13700,2340,60,3.0,2,2,11.3,77777,9,999999999,450,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,23.3,72,101900,900,1348,418,656,727,170,69100,73400,19900,4440,90,3.6,3,3,11.3,77777,9,999999999,459,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.7,65,101900,1084,1348,419,753,719,175,80900,73700,21500,6430,140,4.1,2,2,11.3,77777,9,999999999,459,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.9,23.7,69,101900,1198,1348,424,850,689,237,90400,70200,27800,11900,150,4.1,3,3,11.3,21110,9,999999999,459,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.8,22.8,66,101900,1234,1348,418,809,705,163,86200,71300,20700,8970,150,4.1,3,2,11.3,20220,9,999999999,459,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.6,23.8,71,101900,1189,1348,423,805,650,232,85700,66200,27200,11290,140,4.1,4,3,11.3,19330,9,999999999,469,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.5,22.8,76,101900,1066,1348,406,724,643,215,76500,65200,24700,7430,120,5.1,3,2,11.3,18440,9,999999999,469,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.4,21.9,76,101900,874,1348,406,490,538,141,52200,54600,16700,3640,110,6.1,5,4,11.3,17550,9,999999999,469,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.3,22.9,73,101900,626,1348,436,206,111,154,22800,11300,17500,3740,160,6.6,10,8,11.3,2160,9,999999999,469,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.1,20.9,78,101900,339,1348,398,127,209,74,13600,17600,9200,1380,100,2.0,5,4,11.3,15770,9,999999999,469,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,20.9,69,101900,59,865,405,16,17,14,1700,800,1700,290,100,3.5,4,3,11.3,14880,9,999999999,480,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.9,21.0,74,101900,0,0,402,0,0,0,0,0,0,0,100,2.5,6,4,11.3,13990,9,999999999,480,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.8,21.0,75,101900,0,0,399,0,0,0,0,0,0,0,100,4.6,5,3,11.3,13100,9,999999999,480,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,21.0,76,101900,0,0,401,0,0,0,0,0,0,0,90,2.6,6,4,11.3,12210,9,999999999,480,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.5,22.1,77,101900,0,0,404,0,0,0,0,0,0,0,90,3.6,6,3,11.3,11320,9,999999999,490,0.1980,0,88,0.120,999.0,99.0 +1994,9,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.4,22.1,77,101900,0,0,406,0,0,0,0,0,0,0,90,3.4,7,4,11.3,10430,9,999999999,490,0.1980,0,88,0.120,999.0,99.0 +1994,9,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.3,22.1,73,101900,0,0,411,0,0,0,0,0,0,0,90,3.1,7,4,11.3,9540,9,999999999,490,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,22.2,79,101900,0,0,405,0,0,0,0,0,0,0,80,2.6,7,4,11.3,8650,9,999999999,490,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,21.2,84,101900,0,0,395,0,0,0,0,0,0,0,70,3.1,8,5,11.3,7760,9,999999999,490,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.9,22.2,80,101900,0,0,404,0,0,0,0,0,0,0,80,3.6,7,4,11.3,6870,9,999999999,500,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.8,23.2,81,101900,0,0,403,0,0,0,0,0,0,0,80,3.1,5,2,11.3,5980,9,999999999,500,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.6,23.3,82,101900,0,0,409,0,0,0,0,0,0,0,70,3.4,8,4,11.3,5090,9,999999999,500,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,23.3,88,101900,81,1001,406,24,15,23,2700,900,2600,570,60,3.6,9,5,11.3,4200,9,999999999,500,0.1960,0,88,0.120,0.0,24.0 +1994,9,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101900,372,1349,409,140,148,99,15300,13100,11700,2190,50,4.6,9,5,11.3,4500,9,999999999,500,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,23.8,79,101900,655,1349,419,293,212,190,32100,21700,21600,4690,60,5.6,9,5,11.3,77777,9,999999999,500,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,22.7,70,101900,898,1349,423,411,275,228,45200,29600,25500,5980,50,5.6,9,5,11.3,7500,9,999999999,500,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,22.7,63,101900,1082,1349,433,728,458,360,76200,47600,38000,13350,70,5.6,9,5,11.3,7500,9,999999999,500,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.1,22.2,59,101900,1196,1349,419,837,768,155,89100,77800,20000,7330,80,5.6,2,1,11.3,77777,9,999999999,500,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.6,21.1,54,101800,1231,1349,421,847,736,176,89600,74200,21700,9400,80,5.6,3,1,11.3,77777,9,999999999,500,0.1960,0,88,0.120,0.0,6.0 +1994,9,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,21.1,54,101800,1186,1349,437,666,427,290,72300,44700,32900,14130,50,6.6,9,5,11.3,7500,9,999999999,500,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,22.7,70,101700,1062,1349,423,659,501,264,71100,52300,29800,9170,40,6.1,9,5,11.3,7500,9,999999999,500,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.4,22.5,66,101700,870,1349,430,552,491,235,58500,50600,25800,5980,70,6.2,9,6,11.3,0,9,999999999,490,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.2,22.3,75,101700,621,1349,423,308,250,193,32800,25500,21100,4260,290,6.2,10,7,11.3,0,9,999999999,490,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.6,22.6,79,101700,334,1349,420,110,47,99,12100,4100,11100,2500,300,5.2,10,7,11.3,0,9,999999999,490,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.1,22.4,80,101800,55,843,423,17,4,17,2000,0,2000,600,50,7.4,10,8,11.3,0,9,999999999,490,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,21.1,81,101800,0,0,388,0,0,0,0,0,0,0,30,11.5,4,2,11.3,5906,9,999999999,490,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.4,20.9,86,101800,0,0,389,0,0,0,0,0,0,0,360,6.8,6,4,11.3,5588,9,999999999,490,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.3,21.0,87,101800,0,0,426,0,0,0,0,0,0,0,10,7.0,10,10,11.3,0,9,999999999,490,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.2,21.0,87,101800,0,0,426,0,0,0,0,0,0,0,20,7.2,10,10,11.3,0,9,999999999,490,0.1960,0,88,0.120,999.0,99.0 +1994,9,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.0,21.0,89,101800,0,0,390,0,0,0,0,0,0,0,20,7.3,6,5,11.3,4631,9,999999999,490,0.1960,0,88,0.120,999.0,99.0 +1994,9,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.1,21.1,89,101800,0,0,390,0,0,0,0,0,0,0,30,7.6,6,5,11.3,4313,9,999999999,490,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.1,21.1,89,101800,0,0,390,0,0,0,0,0,0,0,20,7.7,8,5,11.3,3994,9,999999999,490,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.1,21.1,89,101800,0,0,390,0,0,0,0,0,0,0,30,7.8,5,5,11.3,3675,9,999999999,480,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.1,21.0,88,101800,0,0,398,0,0,0,0,0,0,0,30,8.1,9,7,11.3,3356,9,999999999,480,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.2,21.0,87,101800,0,0,394,0,0,0,0,0,0,0,40,8.2,6,6,11.3,3038,9,999999999,480,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.3,20.8,86,101800,0,0,406,0,0,0,0,0,0,0,40,7.2,10,8,11.3,2719,9,999999999,480,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,101900,80,1001,421,17,1,17,2000,0,2000,620,70,7.2,9,9,11.3,2400,9,999999999,480,0.1950,0,88,0.120,20.0,24.0 +1994,9,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.0,86,101900,370,1350,422,84,33,75,9200,2900,8400,2070,70,7.2,9,9,11.3,3600,9,999999999,480,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.7,85,101900,653,1350,429,224,31,208,24500,3100,23000,6140,70,7.2,9,9,11.3,3600,9,999999999,480,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,21.1,67,101900,896,1350,440,263,66,219,29000,6700,24600,7870,60,7.7,9,9,11.3,3600,9,999999999,480,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.1,69,101900,1080,1350,437,307,199,147,35100,20900,18300,5160,60,7.7,9,9,11.2,3000,9,999999999,490,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.6,67,101900,1193,1350,444,393,132,276,44400,14200,31800,12430,50,6.6,9,9,11.3,7500,9,999999999,490,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.2,63,101900,1228,1350,455,364,93,279,41200,10000,32000,13870,60,8.7,9,9,11.3,3000,9,999999999,490,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,21.6,59,101800,1182,1350,457,614,220,421,67500,23400,46900,18460,70,7.7,9,9,11.3,4200,9,999999999,490,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101800,1058,1350,438,224,0,224,26900,0,26900,10840,90,7.7,10,10,11.3,2400,9,999999999,490,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,23.3,88,101800,865,1350,442,219,0,219,25600,0,25600,9750,60,7.2,10,10,9.7,3300,9,999999999,490,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101800,616,1350,438,141,0,141,16300,0,16300,5890,60,8.2,10,10,9.7,3600,9,999999999,490,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,101700,328,1350,430,60,0,60,6900,0,6900,2320,60,8.2,10,10,11.3,6000,9,999999999,500,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,21.6,88,101700,52,821,430,10,0,10,1200,0,1200,380,50,7.2,10,10,11.3,6000,9,999999999,500,0.1950,0,88,0.120,2.0,6.0 +1994,9,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.7,21.7,89,101800,0,0,418,0,0,0,0,0,0,0,50,6.8,9,9,11.3,8286,9,999999999,500,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.7,21.7,89,101800,0,0,402,0,0,0,0,0,0,0,60,6.3,8,7,11.3,10571,9,999999999,500,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.8,21.7,88,101800,0,0,398,0,0,0,0,0,0,0,60,5.9,7,6,11.3,12857,9,999999999,500,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,21.7,88,101800,0,0,392,0,0,0,0,0,0,0,70,5.4,5,4,11.3,15143,9,999999999,500,0.1950,0,88,0.120,999.0,99.0 +1994,9,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,21.6,86,101800,0,0,390,0,0,0,0,0,0,0,70,5.0,4,3,11.3,17429,9,999999999,500,0.1950,0,88,0.120,999.0,99.0 +1994,9,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,21.7,86,101800,0,0,382,0,0,0,0,0,0,0,80,4.5,3,1,11.3,19714,9,999999999,509,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.6,84,101800,0,0,376,0,0,0,0,0,0,0,80,4.1,2,0,11.3,77777,9,999999999,509,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101700,0,0,376,0,0,0,0,0,0,0,80,4.1,3,0,11.3,77777,9,999999999,509,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.6,84,101700,0,0,376,0,0,0,0,0,0,0,80,5.1,2,0,11.3,77777,9,999999999,509,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,101700,0,0,373,0,0,0,0,0,0,0,70,4.6,3,0,11.3,77777,9,999999999,509,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.6,84,101800,0,0,395,0,0,0,0,0,0,0,70,5.1,9,4,11.3,3000,9,999999999,509,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101900,78,1002,402,22,0,22,2500,0,2500,770,80,5.1,10,5,11.3,3000,9,999999999,509,0.1930,0,88,0.120,2.0,24.0 +1994,9,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.2,82,101900,368,1351,405,138,84,115,15100,7500,13000,2910,80,5.1,10,5,11.3,3000,9,999999999,509,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,22.7,79,101900,651,1351,411,305,96,259,33500,9600,28800,7200,80,4.1,10,5,11.3,7500,9,999999999,519,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.7,72,102000,894,1351,421,554,272,374,59800,28500,40900,10800,80,5.1,10,5,11.3,7500,9,999999999,519,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.7,67,101900,1078,1351,427,640,319,386,69300,34500,41700,13800,90,6.1,10,5,11.3,7500,9,999999999,519,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,21.6,59,101800,1191,1351,432,711,191,542,76900,20200,59100,24240,100,5.1,10,5,11.3,7500,9,999999999,519,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.8,82,101800,1225,1351,416,827,331,527,89000,35800,56400,27990,130,5.1,10,5,11.3,6000,9,999999999,519,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.3,67,101700,1179,1351,431,720,328,434,78200,35600,47100,19570,140,4.6,10,5,11.3,4200,9,999999999,519,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.2,63,101700,1054,1351,430,553,245,362,60000,26500,39200,12330,140,4.6,10,5,11.3,4200,9,999999999,519,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,101800,860,1351,395,506,330,296,54300,35200,31800,7880,110,3.0,10,5,8.0,1800,9,999999999,519,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,20.5,74,101700,611,1351,403,283,115,231,31000,11400,25800,6360,80,0.5,10,5,11.3,3000,9,999999999,519,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.1,85,101800,322,1351,394,122,37,113,13300,3200,12500,2710,140,9.2,10,5,11.3,2400,9,999999999,519,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,101800,48,777,395,12,0,12,1400,0,1400,440,110,6.7,10,5,9.6,2700,9,999999999,519,0.1930,0,88,0.120,13.0,6.0 +1994,9,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,21.1,90,101800,0,0,389,0,0,0,0,0,0,0,110,4.6,10,5,11.2,2700,9,999999999,519,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,101800,0,0,391,0,0,0,0,0,0,0,90,3.0,10,5,11.3,3600,9,999999999,519,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.6,90,101800,0,0,392,0,0,0,0,0,0,0,80,3.0,10,5,11.3,3600,9,999999999,519,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.1,85,101800,0,0,391,0,0,0,0,0,0,0,100,4.6,9,4,11.3,77777,9,999999999,519,0.1930,0,88,0.120,999.0,99.0 +1994,9,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.6,90,101700,0,0,370,0,0,0,0,0,0,0,80,3.6,2,0,11.3,77777,9,999999999,519,0.1930,0,88,0.120,999.0,99.0 +1994,9,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,21.1,85,101600,0,0,384,0,0,0,0,0,0,0,80,4.1,2,2,11.3,77777,9,999999999,519,0.1920,0,88,0.120,0.0,6.0 +1994,9,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.1,85,101600,0,0,388,0,0,0,0,0,0,0,80,3.6,3,3,11.3,77777,9,999999999,519,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.6,84,101600,0,0,388,0,0,0,0,0,0,0,80,3.6,2,2,11.3,77777,9,999999999,519,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,101600,0,0,410,0,0,0,0,0,0,0,100,3.6,9,8,11.3,3600,9,999999999,519,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101600,0,0,416,0,0,0,0,0,0,0,70,2.1,10,9,11.2,2700,9,999999999,519,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,101600,0,0,418,0,0,0,0,0,0,0,90,3.0,10,9,11.3,6000,9,999999999,519,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,22.2,91,101700,77,980,419,16,3,16,1900,0,1900,590,100,3.6,10,9,11.3,4200,9,999999999,530,0.1920,0,88,0.120,2.0,6.0 +1994,9,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101700,366,1351,417,103,61,87,11400,5400,9900,2340,110,4.6,9,8,11.3,3900,9,999999999,530,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.7,82,101700,649,1351,417,267,135,202,29100,13800,22500,4970,100,5.1,9,7,11.3,4200,9,999999999,530,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.7,72,101700,891,1351,436,310,129,225,34500,13700,25500,6480,120,6.1,9,8,11.3,7500,9,999999999,530,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.7,67,101700,1075,1351,436,546,276,326,59800,29900,35900,11320,120,6.1,9,7,11.3,7500,9,999999999,530,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,22.7,70,101600,1188,1351,439,480,263,248,54300,28700,29000,10860,160,7.2,9,8,11.3,1800,9,999999999,530,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,22.2,77,101600,1222,1351,419,661,448,256,73100,47000,30500,14110,180,7.2,9,7,9.7,1500,9,999999999,530,0.1920,0,88,0.120,4.0,6.0 +1994,9,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,21.6,74,101600,1175,1351,425,647,380,317,69600,39700,35000,14880,180,4.6,9,8,11.3,1800,9,999999999,530,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.7,82,101600,1050,1351,433,198,82,135,23200,8900,16300,4630,130,3.0,10,9,11.3,1800,9,999999999,540,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.7,85,101600,856,1351,429,232,61,193,25600,6100,21700,6820,70,5.1,10,9,11.3,3900,9,999999999,540,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101600,605,1351,426,320,73,287,34900,7300,31700,7300,70,3.6,10,9,11.3,3900,9,999999999,540,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.7,90,101600,317,1351,423,67,71,50,7500,6000,6100,1090,110,7.2,10,9,8.0,300,9,999999999,540,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.6,90,101700,45,755,415,9,7,9,1000,400,1000,240,110,6.6,10,9,8.0,1200,9,999999999,540,0.1920,0,88,0.120,3.0,6.0 +1994,9,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,101700,0,0,419,0,0,0,0,0,0,0,80,3.6,10,9,11.3,1500,9,999999999,540,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101700,0,0,416,0,0,0,0,0,0,0,100,3.0,10,9,11.3,3900,9,999999999,540,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101700,0,0,416,0,0,0,0,0,0,0,100,3.6,10,9,11.3,77777,9,999999999,550,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,101700,0,0,419,0,0,0,0,0,0,0,90,3.6,10,9,11.3,1350,9,999999999,550,0.1920,0,88,0.120,999.0,99.0 +1994,9,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.6,90,101700,0,0,407,0,0,0,0,0,0,0,90,2.0,9,8,11.3,7500,9,999999999,550,0.1920,0,88,0.120,999.0,99.0 +1994,9,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,21.6,88,101600,0,0,392,0,0,0,0,0,0,0,90,2.5,9,4,11.3,7500,9,999999999,550,0.1910,0,88,0.120,0.0,6.0 +1994,9,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101600,0,0,396,0,0,0,0,0,0,0,80,3.6,9,4,11.3,3900,9,999999999,550,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101500,0,0,393,0,0,0,0,0,0,0,130,4.1,9,4,11.3,1350,9,999999999,550,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101500,0,0,393,0,0,0,0,0,0,0,130,6.1,9,4,11.3,300,9,999999999,550,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,101600,0,0,393,0,0,0,0,0,0,0,130,3.6,9,4,11.3,2700,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,101700,0,0,393,0,0,0,0,0,0,0,110,2.5,9,4,11.3,3000,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101700,75,980,396,24,23,22,2700,1100,2600,460,100,2.0,9,4,11.3,2700,9,999999999,559,0.1910,0,88,0.120,0.0,6.0 +1994,9,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101800,364,1352,396,164,208,108,17300,18000,12400,2150,80,2.0,9,4,11.3,2700,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.7,85,101800,647,1352,409,276,117,220,30000,11900,24200,5400,100,3.0,10,6,11.3,2700,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.8,82,101900,889,1352,420,536,410,266,58100,44000,29100,7090,130,3.6,10,6,11.3,2700,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,24.4,82,101900,1073,1352,423,559,187,410,60900,19800,45100,14540,130,4.1,10,6,11.3,2400,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,24.4,79,101900,1185,1352,427,686,454,287,74500,47500,32800,13840,130,3.0,10,6,11.3,2700,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,25.0,73,101800,1219,1352,433,587,286,329,65400,31200,37200,16210,130,2.5,9,4,11.3,2700,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,24.4,72,101700,1171,1352,429,739,417,378,78000,43400,40300,17670,140,3.6,9,4,11.3,3300,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,23.8,68,101600,1046,1352,431,597,406,282,63700,42300,30900,9460,160,2.0,9,4,11.3,3600,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101600,851,1352,431,430,194,308,46800,20300,33900,8580,130,1.5,10,6,11.2,3300,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.8,72,101600,600,1352,432,266,254,153,28700,25800,17200,3210,230,1.5,10,6,11.3,2400,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,20.5,67,101700,311,1352,415,85,77,67,9400,6400,7900,1460,220,3.0,10,6,11.3,930,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,101800,42,732,403,11,10,11,1300,500,1200,280,110,6.2,10,6,4.8,990,9,999999999,559,0.1910,0,88,0.120,2.0,6.0 +1994,9,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,101900,0,0,399,0,0,0,0,0,0,0,50,5.1,10,6,11.3,900,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101900,0,0,400,0,0,0,0,0,0,0,60,3.6,10,6,11.3,3300,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.8,94,102000,0,0,400,0,0,0,0,0,0,0,50,3.6,10,6,11.2,3000,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101900,0,0,400,0,0,0,0,0,0,0,90,1.5,10,6,11.3,3300,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.8,94,101800,0,0,400,0,0,0,0,0,0,0,90,3.6,10,6,11.2,3300,9,999999999,559,0.1910,0,88,0.120,999.0,99.0 +1994,9,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,22.7,94,101700,0,0,396,0,0,0,0,0,0,0,80,3.6,9,5,11.3,7500,9,999999999,559,0.1900,0,88,0.120,5.0,6.0 +1994,9,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,101700,0,0,395,0,0,0,0,0,0,0,80,3.0,9,5,11.3,7500,9,999999999,559,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,101600,0,0,399,0,0,0,0,0,0,0,70,2.5,10,6,11.3,77777,9,999999999,559,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101600,0,0,399,0,0,0,0,0,0,0,90,2.5,9,5,11.3,77777,9,999999999,559,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.7,90,101700,0,0,399,0,0,0,0,0,0,0,90,3.0,9,5,11.3,7500,9,999999999,559,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.7,90,101700,0,0,399,0,0,0,0,0,0,0,80,1.5,9,5,11.3,3600,9,999999999,559,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.7,90,101800,73,958,399,23,15,22,2500,900,2500,540,80,3.6,9,5,11.3,3600,9,999999999,559,0.1900,0,88,0.120,0.0,6.0 +1994,9,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101900,361,1353,403,153,208,98,16300,17900,11500,1910,70,1.5,9,5,11.3,3600,9,999999999,559,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,24.4,85,101900,645,1353,417,404,535,149,43000,53200,17600,3060,120,3.6,9,5,11.3,3600,9,999999999,559,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,24.4,79,101900,887,1353,423,592,592,203,63800,61200,23500,5190,140,3.0,9,5,11.3,7500,9,999999999,559,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,24.4,75,101900,1070,1353,429,469,290,239,52500,31500,27500,7910,170,4.1,9,5,11.3,3600,9,999999999,550,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,25.0,75,101900,1182,1353,433,694,349,389,76000,37900,42800,17400,250,2.5,9,5,11.3,3600,9,999999999,550,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,24.4,68,101800,1215,1353,422,855,805,132,88000,80700,15300,5500,240,2.5,2,1,11.3,77777,9,999999999,550,0.1900,0,88,0.120,0.0,6.0 +1994,9,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,24.4,66,101700,1167,1353,425,827,804,133,85100,80500,15400,4600,220,3.6,3,1,11.3,77777,9,999999999,550,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,23.8,63,101600,1041,1353,424,706,766,116,76100,77800,16000,3770,200,4.6,2,1,11.3,77777,9,999999999,550,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.2,23.3,59,101600,846,1353,427,551,708,109,58200,70800,13800,2610,220,5.6,3,1,11.3,77777,9,999999999,540,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,20.5,59,101600,595,1353,424,167,99,123,18600,10000,14200,2940,140,4.6,9,5,11.3,7500,9,999999999,540,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101600,305,1353,428,124,205,77,13100,16400,9400,1460,190,3.6,9,5,11.3,7500,9,999999999,540,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.8,77,101600,39,710,422,10,15,10,1200,600,1200,210,200,3.6,9,5,11.3,1200,9,999999999,540,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,23.8,85,101700,0,0,413,0,0,0,0,0,0,0,140,3.6,9,5,11.3,7500,9,999999999,530,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101700,0,0,394,0,0,0,0,0,0,0,160,3.6,2,1,11.3,77777,9,999999999,530,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101700,0,0,409,0,0,0,0,0,0,0,140,4.6,9,5,11.3,77777,9,999999999,530,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101700,0,0,403,0,0,0,0,0,0,0,110,2.0,9,5,11.3,77777,9,999999999,530,0.1900,0,88,0.120,999.0,99.0 +1994,9,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101600,0,0,399,0,0,0,0,0,0,0,140,4.1,9,5,11.3,77777,9,999999999,519,0.1900,0,88,0.120,999.0,99.0 +1994,9,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.7,87,101600,0,0,387,0,0,0,0,0,0,0,140,4.1,3,1,11.3,77777,9,999999999,519,0.1880,0,88,0.120,0.0,6.0 +1994,9,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101500,0,0,387,0,0,0,0,0,0,0,170,5.6,2,1,11.3,77777,9,999999999,519,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101500,0,0,387,0,0,0,0,0,0,0,180,4.1,3,1,11.3,77777,9,999999999,519,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101500,0,0,387,0,0,0,0,0,0,0,160,4.6,2,1,11.3,77777,9,999999999,519,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101500,0,0,387,0,0,0,0,0,0,0,170,3.6,3,1,11.3,77777,9,999999999,509,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101500,0,0,387,0,0,0,0,0,0,0,170,3.6,2,1,11.3,77777,9,999999999,509,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,23.3,88,101600,72,959,410,17,6,17,1900,400,1900,430,170,4.1,9,6,11.3,77777,9,999999999,509,0.1880,0,88,0.120,0.0,6.0 +1994,9,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,24.4,85,101600,359,1354,420,138,112,108,14900,9800,12300,2380,180,4.1,9,6,11.3,77777,9,999999999,509,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,25.0,82,101600,643,1354,427,323,299,180,34600,30700,20000,3930,190,3.6,9,6,11.3,77777,9,999999999,509,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,25.5,80,101600,885,1354,434,507,330,291,54600,35300,31400,7850,190,4.1,9,6,11.3,77777,9,999999999,500,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,24.4,82,101600,1068,1354,423,590,277,371,63900,30000,40200,12920,290,5.6,9,6,11.3,1500,9,999999999,500,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,24.4,88,101600,1179,1354,417,675,361,361,74400,39200,40100,15860,220,7.2,9,6,11.3,7500,9,999999999,500,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.7,25.0,85,101500,1212,1354,424,559,286,303,62600,31200,34600,14440,210,5.1,9,6,11.3,7500,9,999999999,500,0.1880,0,88,0.120,4.0,6.0 +1994,9,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,25.5,77,101400,1163,1354,417,804,757,153,85500,76500,19500,6400,200,6.6,2,1,11.3,77777,9,999999999,500,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,24.4,72,101400,1037,1354,416,698,717,149,73200,72000,17900,4470,200,6.1,3,1,11.3,77777,9,999999999,500,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,25.0,75,101300,841,1354,437,394,271,226,43000,29000,25000,5640,210,5.6,9,6,11.3,77777,9,999999999,490,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.8,69,101300,589,1354,415,327,479,118,35200,46900,14700,2320,240,6.1,3,1,11.3,77777,9,999999999,490,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,23.8,74,101300,299,1354,409,134,332,60,14200,26100,8400,1080,250,4.1,2,1,11.3,77777,9,999999999,490,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,23.8,82,101400,36,688,400,9,21,8,1000,700,1000,130,260,4.1,3,1,11.3,77777,9,999999999,490,0.1880,0,88,0.120,0.0,6.0 +1994,9,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,23.8,85,101400,0,0,397,0,0,0,0,0,0,0,240,2.5,2,1,11.3,77777,9,999999999,490,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,23.8,85,101400,0,0,397,0,0,0,0,0,0,0,220,3.6,3,1,11.3,77777,9,999999999,490,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,23.8,90,101500,0,0,391,0,0,0,0,0,0,0,250,3.0,2,1,11.3,77777,9,999999999,490,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.8,87,101400,0,0,394,0,0,0,0,0,0,0,260,1.5,3,1,11.3,77777,9,999999999,480,0.1880,0,88,0.120,999.0,99.0 +1994,9,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.8,87,101400,0,0,413,0,0,0,0,0,0,0,250,3.6,9,6,11.3,7500,9,999999999,480,0.1880,0,88,0.120,999.0,99.0 +1994,9,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,23.8,87,101400,0,0,413,0,0,0,0,0,0,0,250,3.0,9,6,11.3,3900,9,999999999,480,0.1870,0,88,0.120,0.0,6.0 +1994,9,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.9,88,101400,0,0,414,0,0,0,0,0,0,0,250,2.6,9,6,11.2,3900,9,999999999,480,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.8,87,101300,0,0,413,0,0,0,0,0,0,0,220,2.5,9,6,11.3,3900,9,999999999,480,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.8,87,101400,0,0,413,0,0,0,0,0,0,0,210,1.5,9,6,11.3,7500,9,999999999,480,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.7,82,101400,0,0,412,0,0,0,0,0,0,0,0,0.0,9,6,11.3,7500,9,999999999,469,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,21.1,77,101400,0,0,407,0,0,0,0,0,0,0,0,0.0,9,6,11.3,2400,9,999999999,469,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101400,70,937,405,22,5,21,2400,0,2400,730,190,2.5,9,6,11.3,7500,9,999999999,469,0.1870,0,88,0.120,0.0,6.0 +1994,9,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.7,82,101500,357,1354,412,150,89,127,16400,7900,14400,3080,150,3.6,9,6,11.3,7500,9,999999999,469,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101500,641,1354,413,331,143,263,35400,14400,28600,6440,160,5.1,9,6,11.3,2700,9,999999999,469,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,23.8,85,101500,882,1354,416,543,504,215,58200,52100,24200,5490,170,2.5,9,6,11.3,2700,9,999999999,469,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.7,76,101500,1065,1354,418,645,414,319,68200,43100,34200,11200,200,3.0,9,6,11.3,2700,9,999999999,469,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.7,74,101500,1176,1354,421,694,443,308,74700,46300,34400,14390,170,2.5,9,6,11.3,3600,9,999999999,480,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.9,22.2,67,101500,1209,1354,427,696,479,267,76300,50200,31400,13850,180,2.6,9,6,11.2,7500,9,999999999,480,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,23.3,72,101400,1159,1354,428,697,367,383,76200,39800,42000,16070,170,3.0,9,6,11.3,7500,9,999999999,480,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.8,69,101300,1032,1354,415,696,687,172,74400,70200,20700,5600,190,2.5,2,1,11.3,77777,9,999999999,480,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,24.4,77,101300,836,1354,409,483,536,152,50900,53900,17500,3680,160,4.6,3,1,11.3,77777,9,999999999,480,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.6,81,101300,584,1354,405,329,306,197,34700,30700,21500,4360,80,3.0,9,6,8.0,1500,9,999999999,480,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.6,90,101500,293,1354,396,112,122,85,12100,9900,10000,1840,100,6.6,9,6,4.8,1200,9,999999999,480,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,20.0,91,101400,33,643,385,7,1,7,900,0,900,270,130,6.1,9,6,8.0,2400,9,999999999,480,0.1870,0,88,0.120,64.0,6.0 +1994,9,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101500,0,0,403,0,0,0,0,0,0,0,130,5.1,10,8,11.3,3000,9,999999999,480,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101600,0,0,396,0,0,0,0,0,0,0,170,5.1,10,7,11.3,1800,9,999999999,490,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101600,0,0,403,0,0,0,0,0,0,0,190,6.6,10,8,11.3,3000,9,999999999,490,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.5,87,101500,0,0,396,0,0,0,0,0,0,0,40,7.2,10,7,11.3,7500,9,999999999,490,0.1870,0,88,0.120,999.0,99.0 +1994,9,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,101500,0,0,406,0,0,0,0,0,0,0,270,2.5,10,8,11.3,4200,9,999999999,490,0.1870,0,88,0.120,999.0,99.0 +1994,9,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,21.1,91,101500,0,0,411,0,0,0,0,0,0,0,150,0.5,10,9,11.3,4200,9,999999999,490,0.1860,0,88,0.120,0.0,6.0 +1994,9,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101400,0,0,411,0,0,0,0,0,0,0,20,2.0,10,9,11.3,4200,9,999999999,490,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.5,90,101400,0,0,408,0,0,0,0,0,0,0,360,1.5,10,9,11.3,4800,9,999999999,490,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.0,82,101300,0,0,413,0,0,0,0,0,0,0,230,1.0,10,9,11.3,5400,9,999999999,490,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,101400,0,0,415,0,0,0,0,0,0,0,230,3.0,10,9,11.3,4500,9,999999999,490,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101500,0,0,392,0,0,0,0,0,0,0,220,2.0,9,6,11.3,3600,9,999999999,490,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.6,94,101500,69,937,392,17,6,17,1900,400,1900,430,100,2.5,9,6,9.7,7500,9,999999999,500,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,101400,355,1355,398,108,129,74,11700,11100,8800,1370,110,3.6,9,6,3.2,3600,9,999999999,490,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,101500,639,1355,401,316,260,193,33700,26700,21100,4270,90,3.0,9,6,6.4,3300,9,999999999,490,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.1,79,101600,880,1355,404,536,304,338,56900,32500,35800,9350,40,1.0,9,6,9.7,3300,9,999999999,490,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,20.5,74,101600,1063,1355,426,572,117,480,62900,12200,53300,17580,130,1.0,10,9,11.3,3300,9,999999999,490,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,21.1,77,101500,1173,1355,427,430,79,361,47500,8100,40400,16330,160,1.5,10,9,11.3,3300,9,999999999,480,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,21.1,72,101500,1205,1355,413,740,464,327,79600,48500,36300,16850,280,0.5,9,6,11.3,3300,9,999999999,480,0.1860,0,88,0.120,0.0,6.0 +1994,9,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,21.1,72,101300,1155,1355,433,337,85,263,37900,9100,30100,10740,30,1.5,10,9,11.3,3300,9,999999999,480,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,20.5,69,101300,1028,1355,433,176,42,144,19600,4200,16400,6030,30,1.0,10,9,11.3,3300,9,999999999,480,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,21.1,67,101200,831,1355,440,418,163,318,45300,17000,34800,8710,230,4.6,10,9,11.3,3300,9,999999999,469,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,20.0,67,101300,578,1355,411,274,252,166,29200,25300,18400,3530,10,2.5,9,6,11.3,3300,9,999999999,469,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,20.0,72,101300,288,1355,405,76,70,61,8400,5700,7200,1320,360,3.0,9,6,11.3,4200,9,999999999,469,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.5,79,101300,31,621,400,8,1,7,900,0,900,270,30,1.5,9,6,11.3,3600,9,999999999,469,0.1860,0,88,0.120,0.0,6.0 +1994,9,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.1,82,101300,0,0,421,0,0,0,0,0,0,0,30,0.5,10,9,11.3,3600,9,999999999,469,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,20.0,79,101400,0,0,417,0,0,0,0,0,0,0,50,5.7,10,9,11.2,7500,9,999999999,459,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.5,82,101400,0,0,397,0,0,0,0,0,0,0,40,3.6,9,6,11.3,77777,9,999999999,459,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.5,84,101400,0,0,394,0,0,0,0,0,0,0,60,4.1,9,6,11.3,77777,9,999999999,459,0.1860,0,88,0.120,999.0,99.0 +1994,9,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101300,0,0,392,0,0,0,0,0,0,0,40,1.5,9,6,11.3,3300,9,999999999,459,0.1860,0,88,0.120,999.0,99.0 +1994,9,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,20.5,87,101300,0,0,396,0,0,0,0,0,0,0,20,1.5,9,7,11.3,3300,9,999999999,450,0.1850,0,88,0.120,0.0,6.0 +1994,9,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.5,90,101200,0,0,399,0,0,0,0,0,0,0,30,2.0,9,8,11.3,7500,9,999999999,450,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101200,0,0,423,0,0,0,0,0,0,0,20,1.5,10,10,11.3,360,9,999999999,450,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101200,0,0,403,0,0,0,0,0,0,0,30,1.0,9,8,11.3,360,9,999999999,450,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101200,0,0,396,0,0,0,0,0,0,0,40,2.0,9,7,11.3,330,9,999999999,450,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.5,93,101200,0,0,396,0,0,0,0,0,0,0,20,1.5,9,8,8.0,420,9,999999999,440,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,21.1,93,101300,67,915,394,15,7,14,1600,400,1600,360,0,0.0,9,7,11.3,7500,9,999999999,440,0.1850,0,88,0.120,0.0,6.0 +1994,9,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.5,87,101300,352,1356,402,162,113,133,17400,9700,14800,2930,20,2.5,9,8,11.3,77777,9,999999999,440,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.0,85,101400,636,1356,395,211,201,117,23500,20700,13700,2370,30,3.6,9,7,11.3,7500,9,999999999,430,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.5,79,101400,878,1356,411,429,158,326,46500,16600,35800,9260,350,3.0,9,8,11.3,420,9,999999999,430,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.1,79,101400,1060,1356,409,656,331,397,70600,35800,42600,13760,340,4.1,9,7,11.3,420,9,999999999,430,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101400,1170,1356,421,424,162,284,47700,17400,32600,11960,350,3.0,9,8,11.3,660,9,999999999,419,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.7,21.1,67,101300,1202,1356,405,827,710,197,89100,72900,24300,9900,360,1.5,2,2,11.3,77777,9,999999999,419,0.1850,0,88,0.120,0.0,6.0 +1994,9,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,21.1,72,101200,1151,1356,424,571,222,381,62800,23700,42700,15420,250,2.0,9,8,11.3,7500,9,999999999,419,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.2,70,101100,1023,1356,429,277,74,220,31100,7900,25100,7250,230,2.0,9,7,11.3,7500,9,999999999,409,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.6,67,101100,826,1356,413,573,660,171,59800,65900,19500,4010,260,1.0,3,3,11.3,77777,9,999999999,409,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.1,59,101100,573,1356,417,349,575,105,36200,55000,12900,2080,310,2.5,2,2,11.3,77777,9,999999999,409,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,20.5,63,101100,282,1356,411,119,267,63,12400,20400,8200,1140,40,2.0,3,3,11.3,77777,9,999999999,400,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.0,65,101100,28,599,401,6,26,5,700,900,700,80,40,2.5,2,2,11.3,77777,9,999999999,400,0.1850,0,88,0.120,0.0,6.0 +1994,9,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,20.0,67,101200,0,0,402,0,0,0,0,0,0,0,30,2.0,3,3,11.3,77777,9,999999999,400,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,19.4,69,101300,0,0,391,0,0,0,0,0,0,0,50,4.1,2,2,11.3,77777,9,999999999,390,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.4,71,101300,0,0,392,0,0,0,0,0,0,0,40,3.6,3,3,11.3,77777,9,999999999,390,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,19.4,76,101300,0,0,382,0,0,0,0,0,0,0,30,2.0,2,2,11.3,77777,9,999999999,390,0.1850,0,88,0.120,999.0,99.0 +1994,9,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,101300,0,0,383,0,0,0,0,0,0,0,30,2.5,3,3,11.3,77777,9,999999999,379,0.1850,0,88,0.120,999.0,99.0 +1994,9,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,19.4,82,101300,0,0,401,0,0,0,0,0,0,0,20,2.5,9,8,11.3,7500,9,999999999,379,0.1830,0,88,0.120,0.0,6.0 +1994,9,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,19.4,82,101200,0,0,394,0,0,0,0,0,0,0,20,1.5,9,7,11.3,77777,9,999999999,379,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,101200,0,0,395,0,0,0,0,0,0,0,20,2.0,9,8,11.3,77777,9,999999999,370,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,19.4,87,101200,0,0,389,0,0,0,0,0,0,0,20,1.0,9,7,11.2,77777,9,999999999,370,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,18.9,84,101200,0,0,395,0,0,0,0,0,0,0,30,1.0,9,8,11.2,7500,9,999999999,370,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,18.9,84,101300,0,0,388,0,0,0,0,0,0,0,20,1.5,9,7,11.2,77777,9,999999999,359,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.7,18.9,84,101300,66,916,375,19,66,14,2100,2900,1900,240,20,2.1,3,3,11.2,77777,9,999999999,359,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,101300,350,1357,380,191,484,66,19700,40600,9100,1210,20,3.6,2,2,11.3,77777,9,999999999,359,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,101400,634,1357,393,395,609,110,41400,59400,13500,2270,40,4.1,3,3,11.3,77777,9,999999999,370,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,19.4,65,101400,875,1357,397,590,730,119,61900,72900,14700,2860,50,3.6,2,2,11.3,77777,9,999999999,370,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,19.4,62,101400,1057,1357,404,778,783,168,80700,78300,19600,5040,50,3.6,3,3,11.3,77777,9,999999999,370,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,18.3,55,101300,1167,1357,405,797,711,185,86000,73100,22900,8310,60,3.6,2,2,11.3,77777,9,999999999,379,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.8,17.7,51,101300,1198,1357,411,806,661,222,86100,67500,26300,10900,80,3.6,3,3,11.3,77777,9,999999999,379,0.1830,0,88,0.120,0.0,6.0 +1994,9,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,18.3,50,101200,1147,1357,414,803,771,151,85300,77900,19200,5970,60,3.6,2,2,11.3,77777,9,999999999,379,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,17.7,46,101100,1019,1357,420,681,633,205,71700,64100,23400,6340,70,4.1,3,3,11.3,77777,9,999999999,390,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,17.7,46,101100,821,1357,416,541,671,135,57400,67700,16300,3250,70,3.6,2,2,11.3,77777,9,999999999,390,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,16.6,43,101100,567,1357,418,354,601,103,36900,57400,12800,2040,80,3.6,3,3,11.3,77777,9,999999999,390,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,17.2,48,101200,276,1357,409,118,318,53,12600,24100,7600,940,60,4.1,2,2,11.3,77777,9,999999999,400,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,17.7,53,101200,26,577,408,5,6,4,500,200,500,80,60,3.0,3,3,11.3,77777,9,999999999,400,0.1830,0,88,0.120,0.0,6.0 +1994,9,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,17.7,55,101300,0,0,388,0,0,0,0,0,0,0,50,3.0,0,0,11.3,77777,9,999999999,400,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,18.8,62,101300,0,0,383,0,0,0,0,0,0,0,60,3.0,0,0,11.3,77777,9,999999999,409,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,18.8,62,101400,0,0,383,0,0,0,0,0,0,0,70,4.1,0,0,11.3,77777,9,999999999,409,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.5,76,101400,0,0,377,0,0,0,0,0,0,0,80,4.6,0,0,11.3,77777,9,999999999,409,0.1830,0,88,0.120,999.0,99.0 +1994,9,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,101300,0,0,374,0,0,0,0,0,0,0,90,4.1,0,0,11.3,77777,9,999999999,419,0.1830,0,88,0.120,999.0,99.0 +1994,9,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,20.0,79,101300,0,0,371,0,0,0,0,0,0,0,80,4.1,0,0,11.3,77777,9,999999999,419,0.1820,0,88,0.120,0.0,6.0 +1994,9,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,101300,0,0,368,0,0,0,0,0,0,0,90,3.0,0,0,11.3,77777,9,999999999,419,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,19.4,82,101200,0,0,365,0,0,0,0,0,0,0,80,3.0,0,0,11.3,77777,9,999999999,430,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,19.4,82,101200,0,0,365,0,0,0,0,0,0,0,80,3.6,0,0,11.3,77777,9,999999999,430,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,19.4,84,101200,0,0,374,0,0,0,0,0,0,0,100,3.6,2,2,11.3,77777,9,999999999,430,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,19.4,84,101300,0,0,378,0,0,0,0,0,0,0,70,1.5,3,3,11.3,77777,9,999999999,440,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,20.0,85,101300,64,894,377,19,71,14,2100,3100,1900,240,90,3.6,2,2,11.3,77777,9,999999999,440,0.1820,0,88,0.120,0.0,6.0 +1994,9,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.5,76,101300,348,1357,394,117,250,53,12800,21000,7400,940,110,4.6,3,3,11.3,77777,9,999999999,440,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,21.1,72,101300,632,1357,418,239,246,124,26300,25300,14500,2530,110,4.6,9,7,11.3,7500,9,999999999,440,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.2,70,101300,873,1357,435,259,50,227,28600,5000,25300,7920,130,4.6,9,8,11.3,77777,9,999999999,440,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.2,65,101300,1054,1357,435,425,155,304,47100,16500,34200,10420,120,4.1,9,7,11.3,77777,9,999999999,440,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,22.2,61,101300,1164,1357,448,620,247,408,67400,26800,44400,17340,180,4.1,9,8,11.3,77777,9,999999999,440,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,21.1,55,101200,1194,1357,443,598,377,266,65600,39500,30700,12980,210,3.6,9,7,11.3,7500,9,999999999,440,0.1820,0,88,0.120,0.0,6.0 +1994,9,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,21.6,59,101200,1143,1357,448,696,325,422,75300,35200,45600,17170,220,5.6,9,8,11.3,77777,9,999999999,430,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,22.2,68,101100,1014,1357,432,441,122,349,48200,12900,38500,11360,230,5.6,9,7,11.3,7500,9,999999999,430,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,101100,816,1357,437,254,31,234,27800,3100,25900,7740,220,6.1,9,8,11.3,4200,9,999999999,430,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.1,65,101200,562,1357,427,174,165,105,19100,16500,12300,2060,230,3.6,9,7,11.3,7500,9,999999999,430,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.7,76,101200,270,1357,430,73,30,67,8000,2400,7500,1700,230,2.5,9,8,11.3,77777,9,999999999,430,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.7,82,101200,23,554,417,6,2,6,700,100,700,160,0,0.0,9,7,11.3,77777,9,999999999,430,0.1820,0,88,0.120,0.0,6.0 +1994,9,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.7,82,101300,0,0,424,0,0,0,0,0,0,0,210,2.0,9,8,11.3,77777,9,999999999,430,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101300,0,0,392,0,0,0,0,0,0,0,210,2.5,2,2,11.3,77777,9,999999999,430,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101300,0,0,396,0,0,0,0,0,0,0,180,2.0,3,3,11.3,77777,9,999999999,430,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101300,0,0,392,0,0,0,0,0,0,0,180,2.5,2,2,11.3,77777,9,999999999,430,0.1820,0,88,0.120,999.0,99.0 +1994,9,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.8,88,101300,0,0,396,0,0,0,0,0,0,0,170,2.6,3,3,11.2,77777,9,999999999,430,0.1820,0,88,0.120,999.0,99.0 +1994,9,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.7,90,101300,0,0,384,0,0,0,0,0,0,0,140,3.6,3,1,11.3,77777,9,999999999,430,0.1800,0,88,0.120,0.0,6.0 +1994,9,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.3,94,101300,0,0,385,0,0,0,0,0,0,0,130,4.6,2,1,11.3,77777,9,999999999,419,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.7,90,101300,0,0,384,0,0,0,0,0,0,0,110,3.6,3,1,11.3,77777,9,999999999,419,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101300,0,0,381,0,0,0,0,0,0,0,120,3.6,2,1,11.3,77777,9,999999999,419,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101300,0,0,381,0,0,0,0,0,0,0,110,3.6,3,1,11.3,77777,9,999999999,419,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101400,0,0,393,0,0,0,0,0,0,0,110,3.6,9,4,11.3,77777,9,999999999,419,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,23.3,94,101400,63,894,385,20,87,14,2300,3800,2000,240,120,3.0,3,1,11.3,77777,9,999999999,419,0.1800,0,88,0.120,0.0,6.0 +1994,9,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,23.8,85,101400,345,1358,397,171,471,51,17900,39800,7700,970,140,4.6,2,1,11.3,77777,9,999999999,419,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.8,77,101500,629,1358,419,362,454,151,38300,44900,17400,3080,150,1.5,9,4,11.3,77777,9,999999999,430,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101500,870,1358,411,604,801,91,65200,80800,13200,2370,140,3.0,2,1,11.3,77777,9,999999999,430,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.3,67,101500,1051,1358,428,646,590,189,68700,60100,22000,6300,230,3.0,9,4,11.3,77777,9,999999999,440,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,22.7,63,101500,1161,1358,430,762,555,288,82600,58000,32900,12640,210,3.6,9,4,11.3,77777,9,999999999,440,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,23.3,63,101400,1191,1358,434,728,532,261,76700,53800,29400,12270,230,3.6,9,4,11.3,77777,9,999999999,440,0.1800,0,88,0.120,0.0,6.0 +1994,9,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,22.7,59,101400,1139,1358,436,768,748,140,82100,75800,18300,5470,230,5.6,9,4,11.3,7500,9,999999999,450,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,22.7,63,101300,1009,1358,430,617,566,196,65100,57400,22400,5970,230,3.6,9,4,11.3,7500,9,999999999,450,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,24.4,70,101300,810,1358,432,546,601,187,58600,61600,21700,4370,230,3.6,9,4,11.3,7500,9,999999999,459,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,24.4,75,101300,556,1358,426,323,446,140,33900,43000,16200,2770,230,3.6,9,4,11.3,7500,9,999999999,459,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.6,72,101300,264,1358,410,80,100,60,8800,7800,7200,1290,290,1.0,9,4,11.3,3600,9,999999999,459,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.6,72,101400,21,532,410,5,4,5,600,200,600,130,0,0.0,9,4,11.3,3300,9,999999999,469,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,21.1,77,101500,0,0,400,0,0,0,0,0,0,0,90,4.6,9,4,11.3,3300,9,999999999,469,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101600,0,0,402,0,0,0,0,0,0,0,50,4.6,10,6,11.3,3300,9,999999999,480,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101500,0,0,396,0,0,0,0,0,0,0,50,2.5,9,4,11.3,3300,9,999999999,480,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,101500,0,0,392,0,0,0,0,0,0,0,70,2.0,9,4,11.3,7500,9,999999999,480,0.1800,0,88,0.120,999.0,99.0 +1994,9,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.6,84,101400,0,0,395,0,0,0,0,0,0,0,130,3.6,9,4,11.3,7500,9,999999999,490,0.1800,0,88,0.120,999.0,99.0 +1994,9,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.1,87,101400,0,0,382,0,0,0,0,0,0,0,40,1.5,2,2,11.3,77777,9,999999999,490,0.1790,0,88,0.120,0.0,6.0 +1994,9,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,101300,0,0,418,0,0,0,0,0,0,0,80,1.5,10,9,11.3,3600,9,999999999,500,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,101300,0,0,398,0,0,0,0,0,0,0,30,2.5,9,6,11.3,7500,9,999999999,500,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,101400,0,0,418,0,0,0,0,0,0,0,70,2.5,10,9,11.3,7500,9,999999999,500,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101400,0,0,416,0,0,0,0,0,0,0,80,4.1,10,9,11.3,7500,9,999999999,509,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,101400,0,0,419,0,0,0,0,0,0,0,70,4.1,10,9,11.3,7500,9,999999999,509,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,22.2,91,101400,61,872,419,12,4,11,1200,200,1200,290,70,5.1,10,9,11.3,6000,9,999999999,519,0.1790,0,88,0.120,1.0,6.0 +1994,9,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101300,343,1359,420,131,30,123,14300,2600,13600,2950,80,4.1,10,9,11.3,3900,9,999999999,509,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101400,627,1359,426,170,49,147,18700,4800,16500,4510,80,4.6,10,9,11.3,3900,9,999999999,509,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.7,85,101400,867,1359,429,121,58,84,14300,6200,10300,2360,80,4.6,10,9,11.3,3300,9,999999999,509,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101400,1048,1359,433,448,72,391,49200,7400,43400,14700,60,4.6,10,9,11.3,4200,9,999999999,509,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101400,1157,1359,433,659,104,570,72400,10900,63100,22870,60,4.6,10,9,11.3,4200,9,999999999,509,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.8,82,101200,1187,1359,441,605,248,388,66200,26900,42600,17310,70,4.6,10,9,11.3,3900,9,999999999,509,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101200,1135,1359,440,441,123,338,48900,13200,37900,13170,70,4.1,10,9,11.3,3900,9,999999999,509,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.7,76,101200,1004,1359,439,362,94,292,39900,9600,32800,11040,50,2.5,10,9,11.3,7500,9,999999999,509,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.2,74,101100,805,1359,438,336,66,297,36900,6700,32900,9240,30,4.6,10,9,11.3,7500,9,999999999,509,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101100,550,1359,419,204,190,127,22100,18900,14500,2560,50,5.1,9,6,11.3,7500,9,999999999,509,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101100,258,1359,411,91,37,83,9800,3000,9300,1970,60,5.6,9,6,11.3,3300,9,999999999,509,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.3,85,101100,19,487,413,4,10,3,0,0,0,0,140,2.5,9,6,11.3,3300,9,999999999,500,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.7,85,101200,0,0,409,0,0,0,0,0,0,0,160,2.0,9,6,11.3,2400,9,999999999,500,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.7,85,101200,0,0,429,0,0,0,0,0,0,0,340,2.5,10,9,11.3,2400,9,999999999,500,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101200,0,0,402,0,0,0,0,0,0,0,70,1.0,9,6,11.3,1050,9,999999999,500,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101200,0,0,400,0,0,0,0,0,0,0,50,2.0,9,6,11.3,3300,9,999999999,500,0.1790,0,88,0.120,999.0,99.0 +1994,9,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101200,0,0,396,0,0,0,0,0,0,0,50,2.5,9,6,11.3,3000,9,999999999,500,0.1790,0,88,0.120,999.0,99.0 +1994,9,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,22.2,94,101100,0,0,416,0,0,0,0,0,0,0,100,1.0,9,9,11.3,3000,9,999999999,500,0.1780,0,88,0.120,5.0,6.0 +1994,9,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101100,0,0,431,0,0,0,0,0,0,0,90,4.1,10,10,11.3,3000,9,999999999,500,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101000,0,0,431,0,0,0,0,0,0,0,40,6.1,10,10,11.3,7500,9,999999999,500,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101000,0,0,431,0,0,0,0,0,0,0,40,4.6,10,10,11.3,3600,9,999999999,500,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101000,0,0,428,0,0,0,0,0,0,0,40,5.1,10,10,8.0,3600,9,999999999,500,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101000,0,0,431,0,0,0,0,0,0,0,20,5.1,10,10,11.3,2400,9,999999999,500,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,22.2,94,101200,59,873,428,9,0,9,1100,0,1100,350,50,3.6,10,10,3.2,420,9,999999999,490,0.1780,0,88,0.120,15.0,6.0 +1994,9,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.6,94,101200,341,1360,424,56,0,56,6500,0,6500,2220,360,6.1,10,10,11.3,1200,9,999999999,490,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.6,94,101200,624,1360,424,123,0,123,14400,0,14400,5310,50,3.6,10,10,11.3,900,9,999999999,490,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.7,91,101300,865,1360,415,457,182,341,49400,19000,37300,9570,50,3.6,9,9,11.2,1800,9,999999999,490,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.2,90,101200,1045,1360,419,353,121,260,39500,13000,29500,8780,30,5.7,9,9,11.2,960,9,999999999,490,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,22.8,94,101200,1154,1360,420,361,108,269,40700,11600,30800,10870,20,1.5,9,9,11.2,1800,9,999999999,490,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101200,1183,1360,426,541,160,402,59600,17100,44800,17300,0,0.0,9,9,11.3,2400,9,999999999,490,0.1780,0,88,0.120,15.0,6.0 +1994,9,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,22.7,79,101100,1130,1360,436,290,95,211,33100,10200,24600,8140,20,3.6,9,9,11.3,3600,9,999999999,490,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,22.7,79,101000,1000,1360,436,367,43,335,40400,4400,37100,12290,20,2.5,9,9,11.3,2400,9,999999999,490,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.2,82,101000,800,1360,429,327,28,310,36600,2700,35000,11580,0,0.0,9,9,11.3,7500,9,999999999,490,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.7,85,101100,545,1360,429,258,61,233,28100,6000,25700,5910,50,2.0,9,9,11.3,7500,9,999999999,490,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101100,252,1360,426,50,22,45,5400,1700,5100,1200,50,1.5,9,9,11.3,3600,9,999999999,490,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.7,87,101100,17,465,426,2,2,2,0,0,0,0,100,0.5,9,9,11.3,3300,9,999999999,490,0.1780,0,88,0.120,9.0,6.0 +1994,9,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101200,0,0,439,0,0,0,0,0,0,0,60,1.5,10,10,11.3,3300,9,999999999,490,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.7,90,101200,0,0,423,0,0,0,0,0,0,0,30,3.0,9,9,11.3,7500,9,999999999,490,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.7,90,101300,0,0,423,0,0,0,0,0,0,0,30,4.6,9,9,11.3,7500,9,999999999,490,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.7,90,101300,0,0,393,0,0,0,0,0,0,0,100,2.0,3,3,11.3,77777,9,999999999,490,0.1780,0,88,0.120,999.0,99.0 +1994,9,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101200,0,0,386,0,0,0,0,0,0,0,100,0.5,2,2,11.3,77777,9,999999999,490,0.1780,0,88,0.120,999.0,99.0 +1994,9,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,23.3,94,101300,0,0,404,0,0,0,0,0,0,0,100,4.6,9,6,11.3,7500,9,999999999,490,0.1760,0,88,0.120,0.0,6.0 +1994,9,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.3,94,101300,0,0,404,0,0,0,0,0,0,0,160,4.6,9,6,11.3,7500,9,999999999,490,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.3,94,101200,0,0,390,0,0,0,0,0,0,0,150,1.5,2,2,11.3,77777,9,999999999,490,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101300,0,0,400,0,0,0,0,0,0,0,120,1.5,9,6,11.3,7500,9,999999999,490,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,22.2,97,101300,0,0,380,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,490,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.7,94,101400,0,0,390,0,0,0,0,0,0,0,0,0.0,3,3,11.3,77777,9,999999999,490,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,22.7,94,101400,58,850,400,18,23,16,2000,1100,1900,330,0,0.0,9,6,11.3,6000,9,999999999,490,0.1760,0,88,0.120,0.0,6.0 +1994,9,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.3,94,101500,338,1361,404,128,145,92,14000,12400,10900,2010,100,1.0,9,6,11.3,2400,9,999999999,480,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.6,90,101500,622,1361,415,157,102,110,17700,10400,12900,2660,120,1.5,10,9,11.3,2400,9,999999999,480,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,23.3,94,101600,862,1361,424,401,57,364,43900,5900,40200,11350,90,2.0,10,9,11.3,2400,9,999999999,480,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,101600,1042,1361,418,595,233,416,64600,24600,45700,14000,60,2.5,10,9,11.3,2400,9,999999999,480,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.6,84,101600,1150,1361,422,364,126,256,41000,13600,29500,10260,330,1.0,10,9,11.3,900,9,999999999,480,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,22.2,94,101500,1179,1361,416,577,130,464,62900,13800,51000,19770,10,1.0,10,9,6.4,2400,9,999999999,480,0.1760,0,88,0.120,4.0,6.0 +1994,9,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101500,1126,1361,416,389,108,300,43500,11600,33900,11480,360,1.0,10,9,11.3,2400,9,999999999,480,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101500,995,1361,416,364,100,291,40300,10600,32500,9230,140,0.5,10,9,3.2,2400,9,999999999,480,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.6,94,101400,794,1361,412,186,68,146,21000,7200,16800,3880,0,0.0,10,9,11.3,3000,9,999999999,480,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.6,94,101500,539,1361,412,163,85,129,18000,8400,14700,3020,0,0.0,10,9,11.3,3300,9,999999999,480,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101500,246,1361,411,50,25,45,5400,2000,5100,1190,170,2.0,10,9,11.3,4200,9,999999999,469,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,22.2,94,101600,15,442,396,2,2,2,0,0,0,0,140,4.6,9,6,11.3,3300,9,999999999,469,0.1760,0,88,0.120,23.0,6.0 +1994,9,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101600,0,0,411,0,0,0,0,0,0,0,150,4.1,10,9,11.3,7500,9,999999999,469,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101600,0,0,392,0,0,0,0,0,0,0,180,4.6,9,6,11.3,7500,9,999999999,469,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,20.5,87,101600,0,0,411,0,0,0,0,0,0,0,190,5.6,10,9,11.3,6000,9,999999999,469,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.5,84,101600,0,0,414,0,0,0,0,0,0,0,200,4.1,10,9,11.3,6000,9,999999999,469,0.1760,0,88,0.120,999.0,99.0 +1994,9,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,20.0,82,101500,0,0,413,0,0,0,0,0,0,0,180,1.5,10,9,11.3,6000,9,999999999,469,0.1760,0,88,0.120,999.0,99.0 +1994,9,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,21.1,91,101500,0,0,411,0,0,0,0,0,0,0,110,0.5,10,9,11.3,3600,9,999999999,469,0.1750,0,88,0.120,0.0,6.0 +1994,9,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,21.1,93,101500,0,0,409,0,0,0,0,0,0,0,0,0.0,10,9,11.3,6000,9,999999999,469,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.5,90,101500,0,0,408,0,0,0,0,0,0,0,160,2.0,10,9,11.3,6000,9,999999999,469,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,101500,0,0,407,0,0,0,0,0,0,0,180,1.5,10,9,11.3,6000,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.5,90,101500,0,0,408,0,0,0,0,0,0,0,90,0.5,10,9,11.3,6000,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.1,91,101500,0,0,392,0,0,0,0,0,0,0,0,0.0,9,6,11.3,3600,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.7,21.1,91,101500,56,851,392,14,10,13,1500,600,1500,340,50,1.0,9,6,11.3,6000,9,999999999,459,0.1750,0,88,0.120,0.0,6.0 +1994,9,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,21.1,87,101600,336,1361,395,102,91,80,11300,7800,9300,1750,90,2.0,9,6,11.3,7500,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,21.6,84,101600,619,1361,401,321,200,230,34600,20100,25400,5570,80,3.0,9,6,11.3,7500,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.7,82,101700,859,1361,412,397,298,209,43700,31900,23500,5200,50,2.5,9,6,11.3,7500,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.7,74,101700,1039,1361,421,627,326,378,67500,35200,40600,12530,140,2.0,9,6,11.3,7500,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.7,74,101600,1147,1361,421,490,257,274,54900,28000,31200,10610,340,2.0,9,6,11.3,7500,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.8,21.6,65,101500,1175,1361,426,601,203,425,65900,21600,47200,17920,160,1.5,9,6,11.3,7500,9,999999999,459,0.1750,0,88,0.120,0.0,6.0 +1994,9,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,21.1,63,101500,1121,1361,425,423,111,331,46900,11900,37100,12550,0,0.0,9,6,11.3,7500,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,21.1,65,101400,990,1361,443,433,147,326,47500,15600,36200,10280,260,0.5,10,9,11.3,7500,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,21.1,63,101400,789,1361,446,303,131,227,33400,13700,25400,6020,260,1.0,10,9,11.3,7500,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.2,72,101400,533,1361,420,238,204,158,26000,20000,18100,3690,280,1.0,9,6,11.3,7500,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,21.1,72,101400,241,1361,433,48,15,45,5200,1200,5000,1180,150,2.0,10,9,11.3,2400,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,101500,13,420,426,2,0,2,0,0,0,0,10,1.5,10,9,11.3,7500,9,999999999,459,0.1750,0,88,0.120,0.0,6.0 +1994,9,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101500,0,0,426,0,0,0,0,0,0,0,10,1.0,10,9,11.3,7500,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101500,0,0,422,0,0,0,0,0,0,0,40,1.0,10,9,11.3,7500,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.2,84,101500,0,0,426,0,0,0,0,0,0,0,60,1.5,10,9,11.3,7500,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101500,0,0,422,0,0,0,0,0,0,0,30,1.0,10,9,11.2,7500,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101500,0,0,422,0,0,0,0,0,0,0,60,1.5,10,9,11.3,7500,9,999999999,459,0.1750,0,88,0.120,999.0,99.0 +1994,9,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.2,88,101400,0,0,434,0,0,0,0,0,0,0,40,1.5,10,10,11.3,7500,9,999999999,459,0.1730,0,88,0.120,0.0,6.0 +1994,9,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,101400,0,0,430,0,0,0,0,0,0,0,20,1.5,10,10,11.3,4500,9,999999999,459,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,101400,0,0,430,0,0,0,0,0,0,0,50,1.5,10,10,11.3,7500,9,999999999,459,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,101400,0,0,430,0,0,0,0,0,0,0,60,1.5,10,10,11.3,7500,9,999999999,459,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,101400,0,0,430,0,0,0,0,0,0,0,90,1.5,10,10,11.3,77777,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,21.6,88,101400,0,0,418,0,0,0,0,0,0,0,70,1.0,9,9,11.3,7500,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,22.2,91,101400,55,829,431,11,0,11,1300,0,1300,420,50,1.5,10,10,11.3,9000,9,999999999,450,0.1730,0,88,0.120,0.0,6.0 +1994,9,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101500,333,1362,434,64,0,64,7300,0,7300,2450,40,2.0,10,10,9.7,9000,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101600,616,1362,444,146,0,146,16800,0,16800,6020,60,2.5,10,10,11.3,7500,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.1,69,101600,856,1362,449,221,0,221,25700,0,25700,9720,90,2.5,10,10,11.3,7500,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,21.1,63,101500,1036,1362,459,276,0,276,32500,0,32500,12590,100,2.5,10,10,11.3,7500,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,21.6,65,101500,1143,1362,460,309,0,309,36600,0,36600,14150,20,2.5,10,10,11.3,7500,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.8,21.6,65,101400,1171,1362,447,491,244,282,55100,26600,32100,11600,40,2.5,9,9,11.3,7500,9,999999999,450,0.1730,0,88,0.120,0.0,6.0 +1994,9,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.7,67,101300,1117,1362,465,301,0,301,35600,0,35600,13800,30,3.6,10,10,11.3,7500,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.2,82,101400,985,1362,441,260,0,260,30500,0,30500,11770,170,4.6,10,10,11.3,7500,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.7,90,101300,784,1362,435,158,0,158,18600,0,18600,7190,10,1.5,10,10,11.3,1500,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,22.2,77,101300,528,1362,435,173,78,143,19000,7500,16100,4050,0,0.0,9,9,11.3,3000,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,22.7,79,101400,235,1362,436,44,27,39,4800,2100,4400,1040,130,0.5,9,9,11.3,3000,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.7,82,101400,12,397,433,1,0,1,0,0,0,0,50,1.0,9,9,11.3,3300,9,999999999,450,0.1730,0,88,0.120,4.0,6.0 +1994,9,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.7,82,101400,0,0,433,0,0,0,0,0,0,0,70,1.5,9,9,11.3,3300,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,22.2,77,101500,0,0,435,0,0,0,0,0,0,0,80,3.0,9,9,11.3,7500,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.7,85,101500,0,0,399,0,0,0,0,0,0,0,70,3.6,3,3,11.3,77777,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101400,0,0,392,0,0,0,0,0,0,0,60,3.0,2,2,11.3,77777,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101400,0,0,426,0,0,0,0,0,0,0,70,2.5,9,9,11.3,77777,9,999999999,450,0.1730,0,88,0.120,999.0,99.0 +1994,9,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.5,22.7,85,101400,0,0,429,0,0,0,0,0,0,0,80,3.0,9,9,11.3,77777,9,999999999,450,0.1720,0,88,0.120,0.0,6.0 +1994,9,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.7,90,101400,0,0,389,0,0,0,0,0,0,0,70,3.0,2,2,11.3,77777,9,999999999,450,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101300,0,0,393,0,0,0,0,0,0,0,70,3.0,3,3,11.3,77777,9,999999999,450,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101300,0,0,389,0,0,0,0,0,0,0,70,2.5,2,2,11.3,77777,9,999999999,450,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,101300,0,0,389,0,0,0,0,0,0,0,50,3.0,3,3,11.3,77777,9,999999999,450,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,101300,0,0,386,0,0,0,0,0,0,0,50,2.5,2,2,11.3,77777,9,999999999,450,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.7,90,101400,54,829,423,11,12,10,1300,600,1200,210,60,2.5,9,9,11.3,77777,9,999999999,450,0.1720,0,88,0.120,0.0,6.0 +1994,9,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.7,82,101400,331,1363,433,79,104,53,8600,8600,6500,940,60,3.6,9,9,11.3,77777,9,999999999,450,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.7,72,101500,614,1363,446,256,115,204,27800,11600,22500,4920,70,5.1,9,9,11.3,77777,9,999999999,459,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,23.3,70,101500,853,1363,453,275,119,200,30700,12600,22800,5550,80,5.6,9,9,11.3,77777,9,999999999,459,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.5,22.2,61,101500,1033,1363,458,454,203,300,50300,21600,33800,9940,80,5.6,9,9,11.3,77777,9,999999999,459,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.7,67,101400,1140,1363,452,306,47,266,33800,4800,29800,11810,80,5.1,9,9,11.3,77777,9,999999999,459,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,32.2,22.2,56,101400,1167,1363,468,506,205,330,55900,22300,36700,13620,80,5.6,9,9,11.3,77777,9,999999999,469,0.1720,0,88,0.120,0.0,6.0 +1994,9,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.6,22.2,58,101300,1112,1363,465,571,369,269,61800,38600,30200,10230,70,5.6,9,9,11.3,77777,9,999999999,469,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.6,61,101300,980,1363,454,440,53,402,48400,5500,44400,13840,90,5.6,9,9,11.3,2100,9,999999999,469,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,101300,778,1363,431,160,0,160,18800,0,18800,7240,110,4.6,10,10,8.0,2100,9,999999999,469,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.1,22.2,84,101300,522,1363,426,58,0,57,6900,0,6900,2580,100,2.6,9,9,8.0,3656,9,999999999,469,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,22.5,88,101300,229,1363,424,50,15,48,5500,1100,5400,1230,160,2.8,9,9,8.0,4393,9,999999999,480,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,22.6,91,101300,10,375,413,2,3,1,0,0,0,0,110,3.0,9,8,8.0,5280,9,999999999,480,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,22.6,91,101300,0,0,413,0,0,0,0,0,0,0,120,3.3,8,8,8.0,6017,9,999999999,480,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.4,22.4,89,101300,0,0,407,0,0,0,0,0,0,0,120,4.0,8,7,8.0,8854,9,999999999,480,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.7,21.2,92,101300,0,0,391,0,0,0,0,0,0,0,110,3.9,4,4,8.0,16841,9,999999999,490,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.0,20.0,93,101300,0,0,383,0,0,0,0,0,0,0,100,3.7,4,3,8.0,17578,9,999999999,490,0.1720,0,88,0.120,999.0,99.0 +1994,9,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.3,18.8,91,101300,0,0,387,0,0,0,0,0,0,0,100,3.6,7,6,8.0,18315,9,999999999,490,0.1720,0,88,0.120,999.0,99.0 +2001,10,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.5,17.5,69,101600,0,0,357,0,0,0,0,0,0,0,30,3.5,0,0,11.3,77777,9,999999999,179,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.8,16.3,68,101500,0,0,352,0,0,0,0,0,0,0,30,3.4,0,0,11.3,77777,9,999999999,179,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.1,15.1,68,101500,0,0,347,0,0,0,0,0,0,0,20,3.2,0,0,11.3,77777,9,999999999,179,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.4,13.9,70,101500,0,0,360,0,0,0,0,0,0,0,20,3.1,5,4,11.3,12500,9,999999999,179,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,14.0,73,101500,0,0,369,0,0,0,0,0,0,0,10,2.6,9,7,11.3,3000,9,999999999,179,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,12.0,64,101500,0,0,359,0,0,0,0,0,0,0,10,3.1,5,5,11.3,77777,9,999999999,179,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,12.0,64,101600,52,807,350,3,77,2,800,4700,500,80,10,3.1,2,2,11.3,77777,9,999999999,179,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,12.0,60,101700,327,1364,358,170,344,87,17500,27900,10800,1620,360,2.6,3,3,11.3,77777,9,999999999,179,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,12.0,53,101700,610,1364,364,379,574,121,39100,55200,14400,2400,20,4.6,2,2,11.3,77777,9,999999999,179,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.7,12.6,50,101700,849,1364,374,574,720,124,61300,73100,15600,3110,360,4.1,2,2,11.3,77777,9,999999999,179,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,13.0,47,101700,1028,1364,381,729,781,139,76700,78600,17300,4110,340,3.6,2,2,11.3,77777,9,999999999,179,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,14.0,48,101600,1135,1364,375,821,813,143,87400,82300,18700,5430,330,4.1,0,0,11.3,77777,9,999999999,179,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.2,13.6,43,101600,1161,1364,393,845,816,148,89800,82600,19300,6030,340,3.6,2,2,11.3,77777,9,999999999,179,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,13.0,40,101600,1106,1364,400,797,807,141,84600,81600,18300,4980,350,3.1,3,3,11.3,77777,9,999999999,179,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,13.0,40,101400,973,1364,396,680,773,126,71600,77800,16000,3460,10,2.6,2,2,11.3,77777,9,999999999,179,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.7,13.0,40,101400,771,1364,395,510,683,123,54000,68500,15100,2830,20,3.1,2,2,11.3,77777,9,999999999,170,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,13.0,42,101400,514,1364,391,299,545,93,31000,51000,11800,1800,30,3.6,2,2,11.3,77777,9,999999999,170,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,13.0,47,101500,221,1364,384,99,306,49,10300,20700,7000,880,30,2.6,3,3,11.3,77777,9,999999999,170,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,14.0,57,101500,8,330,372,0,0,0,0,0,0,0,10,2.6,2,2,11.3,77777,9,999999999,170,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,14.0,57,101600,0,0,360,0,0,0,0,0,0,0,20,2.6,0,0,11.3,77777,9,999999999,170,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.9,13.7,60,101700,0,0,354,0,0,0,0,0,0,0,20,3.3,0,0,11.3,77777,9,999999999,170,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.9,13.4,62,101800,0,0,349,0,0,0,0,0,0,0,30,3.9,0,0,11.3,77777,9,999999999,170,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.0,64,101800,0,0,344,0,0,0,0,0,0,0,30,4.6,0,0,11.3,77777,9,999999999,170,0.1670,0,88,0.130,999.0,99.0 +2001,10,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.0,64,101800,0,0,344,0,0,0,0,0,0,0,30,4.6,0,0,11.3,77777,9,999999999,170,0.1670,0,88,0.130,999.0,99.0 +2001,10,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.7,13.1,66,101800,0,0,343,0,0,0,0,0,0,0,20,3.8,0,0,11.3,77777,9,999999999,170,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.3,13.1,67,101800,0,0,341,0,0,0,0,0,0,0,20,2.9,0,0,11.3,77777,9,999999999,170,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,13.0,68,101800,0,0,340,0,0,0,0,0,0,0,10,2.1,0,0,11.3,77777,9,999999999,170,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,101800,0,0,335,0,0,0,0,0,0,0,360,1.5,0,0,11.3,77777,9,999999999,170,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.1,13.1,73,101800,0,0,342,0,0,0,0,0,0,0,350,1.8,1,1,11.3,77777,9,999999999,170,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,101900,0,0,342,0,0,0,0,0,0,0,340,2.1,2,1,11.3,77777,9,999999999,170,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.8,13.3,70,101900,50,807,346,3,90,1,800,5400,400,40,10,2.6,1,1,11.3,77777,9,999999999,170,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,14.0,64,102000,324,1365,350,179,420,79,18600,34000,10500,1450,30,3.1,0,0,11.3,77777,9,999999999,170,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,15.0,61,102000,607,1365,361,393,643,106,41000,62200,13300,2150,50,5.1,0,0,11.3,77777,9,999999999,170,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,16.0,57,102000,846,1365,372,568,733,112,59500,73100,14000,2630,60,5.1,0,0,11.3,77777,9,999999999,179,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,15.0,51,102100,1025,1365,383,735,799,134,77700,80500,17000,3980,70,2.6,3,1,11.3,77777,9,999999999,179,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,15.0,48,102000,1131,1365,388,821,837,125,84400,83700,14800,3860,210,2.6,2,1,11.3,77777,9,999999999,179,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.7,15.1,46,102000,1157,1365,392,845,834,136,86700,83400,15800,4340,240,2.9,2,1,11.3,77777,9,999999999,179,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,15.0,45,101900,1102,1365,393,809,861,112,83500,86200,13800,3400,260,3.1,2,1,11.3,77777,9,999999999,179,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,19.0,55,101900,968,1365,404,691,803,120,73200,80900,15700,3310,270,2.6,3,1,11.3,77777,9,999999999,179,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,15.0,43,101800,766,1365,399,499,683,115,53100,68700,14400,2650,280,0.5,2,1,11.3,77777,9,999999999,189,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.3,16.6,52,101800,509,1365,392,319,631,83,33300,59100,11200,1630,290,1.3,2,1,11.3,77777,9,999999999,189,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,18.0,65,101800,215,1365,382,98,355,41,9900,24600,6000,730,310,2.1,2,1,11.3,77777,9,999999999,189,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.7,17.6,69,101900,7,307,375,0,0,0,0,0,0,0,320,2.4,2,1,11.3,77777,9,999999999,200,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,17.0,69,101900,0,0,370,0,0,0,0,0,0,0,330,2.6,2,1,11.3,77777,9,999999999,200,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,17.0,73,102000,0,0,365,0,0,0,0,0,0,0,30,2.6,3,1,11.3,77777,9,999999999,200,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.0,18.0,73,102100,0,0,371,0,0,0,0,0,0,0,60,2.4,3,1,11.3,77777,9,999999999,200,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,19.0,74,102100,0,0,378,0,0,0,0,0,0,0,80,2.1,3,1,11.3,77777,9,999999999,209,0.1650,0,88,0.130,999.0,99.0 +2001,10,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,19.0,78,102100,0,0,373,0,0,0,0,0,0,0,70,2.6,2,1,11.3,77777,9,999999999,209,0.1650,0,88,0.130,999.0,99.0 +2001,10,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.7,19.1,80,102100,0,0,371,0,0,0,0,0,0,0,70,2.9,2,1,11.3,77777,9,999999999,209,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.3,19.1,82,102100,0,0,369,0,0,0,0,0,0,0,60,3.3,2,1,11.3,77777,9,999999999,209,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.0,83,102000,0,0,368,0,0,0,0,0,0,0,60,3.6,2,1,11.3,77777,9,999999999,209,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.0,83,102000,0,0,368,0,0,0,0,0,0,0,50,3.6,3,1,11.3,77777,9,999999999,209,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.0,83,102100,0,0,368,0,0,0,0,0,0,0,20,1.5,2,1,11.3,77777,9,999999999,200,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.0,83,102100,0,0,376,0,0,0,0,0,0,0,40,2.1,5,3,11.3,77777,9,999999999,200,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.0,83,102200,49,785,373,2,62,1,600,3700,300,40,50,3.6,5,2,11.3,77777,9,999999999,200,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,19.0,74,102200,322,1365,387,162,297,92,17100,24200,11400,1800,60,4.1,5,3,11.3,77777,9,999999999,200,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,19.0,65,102300,604,1365,388,373,556,126,38400,53200,14800,2470,60,4.6,2,1,11.3,77777,9,999999999,200,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,19.0,62,102300,843,1365,393,581,733,127,61900,74300,15900,3150,80,4.1,3,1,11.3,77777,9,999999999,189,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,17.0,51,102200,1021,1365,401,729,805,125,77500,81300,16400,3760,70,3.6,5,2,11.3,77777,9,999999999,189,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,17.0,48,102200,1127,1365,411,802,783,154,84600,78900,19200,5600,70,1.5,5,3,11.3,77777,9,999999999,189,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,17.0,46,102100,1153,1365,407,821,756,181,85300,75700,21200,6800,90,4.6,2,1,11.3,77777,9,999999999,189,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,17.0,46,102000,1097,1365,407,785,819,126,84300,83100,17300,4450,60,3.6,3,1,11.3,77777,9,999999999,189,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,17.0,43,102000,963,1365,412,679,791,120,71900,79700,15600,3280,60,1.0,2,1,11.3,77777,9,999999999,200,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,16.0,43,101900,760,1365,405,504,671,129,53000,67000,15600,2910,290,2.1,3,1,11.3,77777,9,999999999,200,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,15.0,40,101900,503,1365,404,212,132,163,22900,12700,18200,3760,50,2.1,2,1,11.3,77777,9,999999999,209,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,15.0,45,101900,210,1365,393,63,45,56,6900,3400,6400,1360,90,1.5,3,1,11.3,77777,9,999999999,220,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,16.0,57,102000,6,284,379,0,0,0,0,0,0,0,330,2.1,2,1,11.3,77777,9,999999999,220,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,19.0,78,102000,0,0,373,0,0,0,0,0,0,0,340,2.1,3,1,11.3,77777,9,999999999,229,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,17.0,69,102000,0,0,370,0,0,0,0,0,0,0,340,2.1,2,1,11.3,77777,9,999999999,229,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,18.0,69,102000,0,0,385,0,0,0,0,0,0,0,30,2.1,5,3,11.3,77777,9,999999999,240,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,18.0,73,102000,0,0,377,0,0,0,0,0,0,0,50,1.0,5,2,11.3,77777,9,999999999,240,0.1640,0,88,0.130,999.0,99.0 +2001,10,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,20.0,78,102000,0,0,391,0,0,0,0,0,0,0,60,1.5,9,4,11.3,7500,9,999999999,250,0.1640,0,88,0.130,999.0,99.0 +2001,10,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,21.0,83,102000,0,0,410,0,0,0,0,0,0,0,60,2.6,9,8,11.3,7500,9,999999999,259,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,22.0,94,102000,0,0,399,0,0,0,0,0,0,0,80,3.1,9,7,11.3,7500,9,999999999,259,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,22.0,89,101900,0,0,411,0,0,0,0,0,0,0,70,3.1,9,8,11.3,7500,9,999999999,270,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,22.0,94,101900,0,0,399,0,0,0,0,0,0,0,60,2.6,9,7,11.3,7500,9,999999999,270,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.1,22.1,94,102000,0,0,395,0,0,0,0,0,0,0,60,2.6,7,6,11.3,14750,9,999999999,279,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,22.0,94,102000,0,0,391,0,0,0,0,0,0,0,50,2.6,5,5,11.3,77777,9,999999999,290,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,22.0,94,102000,47,786,405,2,14,1,200,700,200,20,70,3.6,9,8,11.3,7500,9,999999999,290,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,22.0,79,102100,319,1366,415,127,69,110,13800,5900,12400,2630,80,4.6,9,7,11.3,7500,9,999999999,300,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,22.0,74,102200,601,1366,428,267,144,204,29000,14400,22600,4890,80,4.6,9,8,11.3,7500,9,999999999,309,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,22.0,66,102200,840,1366,424,536,556,193,57500,57200,22200,4630,80,4.6,5,5,11.3,77777,9,999999999,309,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.0,59,102200,1018,1366,428,704,732,157,75400,75000,19400,4930,70,5.1,5,5,11.3,77777,9,999999999,320,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,21.0,55,102100,1123,1366,434,772,674,216,81700,68600,25200,8280,90,3.1,5,5,11.3,77777,9,999999999,320,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,21.0,55,102000,1149,1366,434,467,102,381,51500,10500,42700,16240,140,2.6,5,5,11.3,77777,9,999999999,329,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,20.0,52,101900,1092,1366,441,715,604,231,75100,61100,26200,8140,40,2.6,9,7,11.3,7500,9,999999999,340,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,19.0,49,101800,958,1366,447,650,707,153,69300,72100,18600,4350,60,2.6,9,8,11.3,7500,9,999999999,340,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.0,21.0,52,101800,755,1366,439,498,688,117,52800,69000,14600,2660,70,3.6,5,5,11.3,77777,9,999999999,340,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,20.0,52,101800,497,1366,448,272,389,130,28300,36400,15000,2520,30,2.6,9,8,11.3,7500,9,999999999,350,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.0,55,101800,204,1366,435,59,55,50,6400,3800,5800,1060,30,2.1,9,7,11.3,7500,9,999999999,350,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,21.0,62,101900,5,262,438,0,0,0,0,0,0,0,20,1.5,9,8,11.3,7500,9,999999999,359,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,19.0,58,101900,0,0,423,0,0,0,0,0,0,0,330,2.1,9,7,11.3,7500,9,999999999,359,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,20.0,70,101900,0,0,419,0,0,0,0,0,0,0,20,2.1,9,8,11.3,7500,9,999999999,370,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,20.0,70,102000,0,0,413,0,0,0,0,0,0,0,70,3.6,9,7,11.3,7500,9,999999999,370,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,12.0,44,102000,0,0,404,0,0,0,0,0,0,0,80,3.6,9,8,11.3,3600,9,999999999,379,0.1620,0,88,0.130,999.0,99.0 +2001,10,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,12.0,47,102000,0,0,392,0,0,0,0,0,0,0,90,3.1,9,7,11.3,3600,9,999999999,379,0.1620,0,88,0.130,999.0,99.0 +2001,10,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,21.0,83,101900,0,0,395,0,0,0,0,0,0,0,90,3.1,5,5,11.3,77777,9,999999999,390,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,21.0,83,101900,0,0,430,0,0,0,0,0,0,0,80,3.1,10,10,11.3,7500,9,999999999,390,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,21.0,83,101900,0,0,418,0,0,0,0,0,0,0,80,3.1,9,9,11.3,7500,9,999999999,400,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,22.0,89,101800,0,0,420,0,0,0,0,0,0,0,70,2.6,9,9,11.3,7500,9,999999999,400,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,22.0,89,101800,0,0,432,0,0,0,0,0,0,0,70,2.6,10,10,11.3,7500,9,999999999,409,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,22.0,89,101800,0,0,420,0,0,0,0,0,0,0,80,2.6,9,9,11.3,7500,9,999999999,409,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.0,83,101900,46,763,425,0,0,0,0,0,0,0,80,2.6,9,9,11.3,4500,9,999999999,419,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.0,89,102000,316,1367,427,45,0,45,5300,0,5300,1810,80,2.1,9,9,11.3,4500,9,999999999,419,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,23.0,84,102100,598,1367,432,373,494,156,39000,48300,17800,3150,70,3.1,9,9,11.3,3000,9,999999999,430,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,23.0,70,102000,837,1367,450,568,739,115,59300,73500,14200,2630,90,3.1,9,9,11.3,3000,9,999999999,430,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,22.0,59,102000,1014,1367,461,710,738,161,75900,75500,19700,5000,140,4.6,9,9,11.3,3000,9,999999999,440,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.0,22.0,56,101900,1119,1367,467,735,566,270,79500,59200,30900,10360,150,2.6,9,9,11.3,3000,9,999999999,440,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.0,20.0,49,101800,1144,1367,464,395,114,300,44200,12200,34000,11760,170,2.1,9,9,11.3,3000,9,999999999,450,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.0,20.0,46,101700,1087,1367,470,750,669,216,79100,67900,24900,7570,160,2.1,9,9,11.3,7500,9,999999999,450,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,34.0,20.0,44,101600,953,1367,476,621,612,193,65000,61700,21900,5280,140,2.6,9,9,11.3,7500,9,999999999,459,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.0,20.0,49,101600,750,1367,464,476,600,146,49600,59400,16900,3190,80,1.5,9,9,11.3,7500,9,999999999,459,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.0,19.0,44,101600,492,1367,469,256,326,138,27200,31300,15900,2830,20,2.1,9,9,11.3,7500,9,999999999,469,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.0,18.0,43,101600,198,1367,461,79,284,38,8100,18900,5300,680,340,1.5,9,9,11.3,7500,9,999999999,469,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,23.0,74,101600,4,239,444,0,0,0,0,0,0,0,340,2.1,9,9,11.3,7500,9,999999999,469,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,23.0,79,101600,0,0,438,0,0,0,0,0,0,0,320,2.1,9,9,11.3,7500,9,999999999,480,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,23.0,79,101700,0,0,438,0,0,0,0,0,0,0,330,2.1,9,9,11.3,7500,9,999999999,480,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,23.0,74,101700,0,0,419,0,0,0,0,0,0,0,40,1.5,5,5,11.3,77777,9,999999999,490,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.0,23.5,81,101700,0,0,423,0,0,0,0,0,0,0,80,1.8,7,7,11.3,14750,9,999999999,490,0.1610,0,88,0.130,999.0,99.0 +2001,10,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,24.0,89,101700,0,0,434,0,0,0,0,0,0,0,110,2.1,9,9,11.3,7500,9,999999999,500,0.1610,0,88,0.130,999.0,99.0 +2001,10,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,24.0,94,101700,0,0,404,0,0,0,0,0,0,0,100,2.6,5,5,11.3,77777,9,999999999,500,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,25.0,100,101600,0,0,414,0,0,0,0,0,0,0,120,3.6,9,7,11.3,7500,9,999999999,500,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,25.0,89,101500,0,0,432,0,0,0,0,0,0,0,120,3.6,9,8,11.3,7500,9,999999999,509,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,25.0,100,101500,0,0,414,0,0,0,0,0,0,0,120,3.6,9,7,11.3,7500,9,999999999,509,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,25.6,100,101600,0,0,418,0,0,0,0,0,0,0,120,3.4,9,7,11.3,7500,9,999999999,509,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,26.0,100,101600,0,0,421,0,0,0,0,0,0,0,120,3.1,9,7,11.3,7500,9,999999999,509,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,26.0,94,101600,44,764,433,1,9,1,200,400,200,20,150,4.1,9,8,11.3,2400,9,999999999,509,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,26.0,100,101700,313,1368,421,119,49,107,12900,4200,12000,2560,160,5.1,9,7,11.3,7500,9,999999999,519,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,26.0,79,101700,595,1368,451,317,275,197,33500,27700,21400,4360,190,4.1,9,8,11.3,7500,9,999999999,519,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,26.0,75,101700,833,1368,449,418,159,321,45200,16600,35100,8760,200,4.1,9,7,11.3,7500,9,999999999,519,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.0,26.0,71,101700,1011,1368,463,522,224,356,57000,23700,39400,11440,210,3.6,9,8,11.3,7500,9,999999999,519,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.0,25.0,67,101600,1115,1368,445,680,452,310,72400,47100,33900,11870,210,4.6,5,5,11.3,77777,9,999999999,530,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,25.0,75,101500,1140,1368,449,731,552,270,79300,57700,31100,10900,190,5.1,9,8,11.3,7500,9,999999999,530,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,26.0,75,101500,1083,1368,449,615,359,330,67200,38900,36300,11370,220,4.6,9,7,11.3,3000,9,999999999,530,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,25.0,75,101500,948,1368,449,530,333,299,57400,35800,32500,8500,220,3.6,9,8,11.3,3000,9,999999999,519,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,24.0,66,101500,744,1368,447,399,318,226,42800,33400,24600,5320,230,2.1,9,7,11.3,3000,9,999999999,519,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,25.0,79,101500,486,1368,443,195,109,157,21200,10400,17500,3600,250,2.6,9,8,11.3,3000,9,999999999,519,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,24.0,74,101600,192,1368,435,75,198,47,7800,12400,6000,850,260,3.6,9,7,11.3,3000,9,999999999,509,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,25.0,89,101600,3,217,432,0,0,0,0,0,0,0,250,2.6,9,8,11.3,3000,9,999999999,509,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,26.0,94,101600,0,0,426,0,0,0,0,0,0,0,210,2.6,9,7,11.3,3000,9,999999999,509,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,26.0,94,101500,0,0,433,0,0,0,0,0,0,0,150,3.1,9,8,11.3,7500,9,999999999,509,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,25.0,94,101600,0,0,419,0,0,0,0,0,0,0,170,2.6,9,7,11.3,7500,9,999999999,500,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,25.0,94,101600,0,0,411,0,0,0,0,0,0,0,210,2.1,5,5,11.3,77777,9,999999999,500,0.1590,0,88,0.130,999.0,99.0 +2001,10,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,26.0,100,101600,0,0,402,0,0,0,0,0,0,0,210,2.1,2,2,11.3,77777,9,999999999,500,0.1590,0,88,0.130,999.0,99.0 +2001,10,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,26.0,100,101600,0,0,402,0,0,0,0,0,0,0,230,2.6,2,2,11.3,77777,9,999999999,490,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,25.0,100,101500,0,0,405,0,0,0,0,0,0,0,250,1.5,5,5,11.3,77777,9,999999999,480,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,25.0,100,101500,0,0,395,0,0,0,0,0,0,0,250,2.1,2,2,11.3,77777,9,999999999,459,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,26.0,100,101500,0,0,406,0,0,0,0,0,0,0,300,1.5,3,3,11.3,77777,9,999999999,450,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,26.0,100,101500,0,0,402,0,0,0,0,0,0,0,310,1.5,2,2,11.3,77777,9,999999999,430,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,26.0,94,101600,0,0,411,0,0,0,0,0,0,0,320,1.5,3,3,11.3,77777,9,999999999,419,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,25.0,100,101700,43,741,395,1,65,1,600,3800,300,40,320,0.5,2,2,11.3,77777,9,999999999,400,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,28.0,94,101700,311,1369,425,174,369,90,17800,29200,11100,1690,340,2.6,3,3,11.3,77777,9,999999999,390,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,26.0,79,101800,592,1369,435,374,632,100,39100,60900,12700,2020,360,3.6,5,5,11.3,77777,9,999999999,370,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,25.0,70,101800,830,1369,455,503,501,199,53800,51400,22500,4730,310,1.5,9,8,11.3,900,9,999999999,359,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,25.0,70,101800,1007,1369,448,629,508,254,67300,52800,28300,7710,200,0.5,9,7,11.3,2700,9,999999999,340,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,24.0,66,101800,1111,1369,454,772,674,222,81400,68400,25700,8200,170,3.1,9,8,11.3,2700,9,999999999,329,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.0,25.0,63,101700,1135,1369,460,803,696,224,84900,70700,26100,8790,160,3.6,9,7,11.3,2700,9,999999999,309,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.0,24.0,59,101600,1078,1369,449,673,526,258,72700,54900,29400,8960,240,2.1,5,5,11.3,77777,9,999999999,309,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.0,23.0,59,101600,942,1369,431,604,588,197,63000,59100,22200,5270,230,2.6,2,2,11.3,77777,9,999999999,309,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,31.7,23.5,62,101600,739,1369,438,475,641,128,49900,63800,15400,2830,270,3.1,4,4,11.3,77777,9,999999999,309,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,24.0,66,101600,480,1369,438,290,520,107,30700,48300,13700,2020,300,3.6,5,5,11.3,77777,9,999999999,309,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,25.0,84,101700,187,1369,422,45,15,43,4900,1100,4800,1060,60,6.2,5,5,11.3,77777,9,999999999,300,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,23.0,79,101800,2,171,414,0,0,0,0,0,0,0,40,6.2,5,5,11.3,77777,9,999999999,300,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,22.5,81,101900,0,0,411,0,0,0,0,0,0,0,50,7.2,7,6,11.3,11450,9,999999999,300,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.0,83,101900,0,0,410,0,0,0,0,0,0,0,50,8.2,9,7,11.3,900,9,999999999,300,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.0,89,101900,0,0,403,0,0,0,0,0,0,0,50,6.7,5,5,11.3,77777,9,999999999,300,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.0,89,101900,0,0,403,0,0,0,0,0,0,0,50,6.7,5,5,11.3,77777,9,999999999,300,0.1580,0,88,0.130,999.0,99.0 +2001,10,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.0,89,101900,0,0,403,0,0,0,0,0,0,0,50,6.7,5,5,11.3,77777,9,999999999,290,0.1580,0,88,0.130,999.0,99.0 +2001,10,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.0,89,101900,0,0,427,0,0,0,0,0,0,0,50,5.7,9,9,11.3,3000,9,999999999,290,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,23.0,91,101900,0,0,424,0,0,0,0,0,0,0,50,5.2,9,9,11.3,2475,9,999999999,300,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,22.9,92,101900,0,0,422,0,0,0,0,0,0,0,40,4.6,9,9,11.3,1950,9,999999999,300,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,22.9,94,101900,0,0,421,0,0,0,0,0,0,0,40,4.1,9,9,11.3,1425,9,999999999,300,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,23.0,94,101900,0,0,421,0,0,0,0,0,0,0,30,3.6,9,9,11.3,900,9,999999999,309,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,22.0,94,101900,0,0,414,0,0,0,0,0,0,0,40,4.6,9,9,11.3,3000,9,999999999,309,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.3,22.3,94,102000,41,742,416,1,6,1,200,200,200,20,40,4.6,9,9,11.3,2100,9,999999999,320,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.0,89,102000,308,1369,427,111,35,103,12100,3000,11400,2470,40,4.6,9,9,11.3,1200,9,999999999,320,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,24.0,84,102100,589,1369,440,184,19,176,20800,1500,20100,6660,40,7.7,9,9,11.3,3000,9,999999999,329,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.7,24.2,77,102100,827,1369,450,530,507,223,55900,51900,24400,5340,40,7.2,9,9,11.3,2600,9,999999999,329,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.0,24.2,71,102000,1003,1369,458,673,648,197,70800,65600,22600,5850,50,6.7,9,9,11.3,2200,9,999999999,340,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,24.0,66,102000,1107,1369,464,668,434,316,71000,45200,34300,11850,50,6.2,9,9,11.3,1800,9,999999999,340,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.0,24.0,63,102000,1131,1369,470,707,504,289,76000,52600,32400,11410,40,6.7,9,9,11.3,7500,9,999999999,350,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.0,24.0,59,101900,1073,1369,476,720,675,190,76600,68800,22500,6510,40,6.7,9,9,11.3,7500,9,999999999,340,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,24.0,66,101900,937,1369,464,586,541,215,63200,56100,24700,5800,40,7.2,9,9,11.3,7500,9,999999999,329,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,23.0,63,101900,733,1369,462,447,511,173,47600,51700,19800,3760,50,8.2,9,9,11.3,7500,9,999999999,320,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,23.0,70,102000,475,1369,450,224,228,145,23700,21600,16200,3010,50,8.7,9,9,11.3,7500,9,999999999,320,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,22.0,74,102100,181,1369,437,65,210,38,6900,12700,5200,670,50,8.2,9,9,11.3,7500,9,999999999,309,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,22.0,79,102100,2,148,407,0,0,0,0,0,0,0,50,9.3,5,5,11.3,77777,9,999999999,300,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,22.0,79,102200,0,0,407,0,0,0,0,0,0,0,50,8.2,5,5,11.3,77777,9,999999999,290,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.0,22.0,79,102200,0,0,407,0,0,0,0,0,0,0,60,7.7,5,5,11.3,77777,9,999999999,290,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,22.0,79,102200,0,0,407,0,0,0,0,0,0,0,60,7.2,5,5,11.3,77777,9,999999999,279,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.0,78,102200,0,0,394,0,0,0,0,0,0,0,60,6.7,3,3,11.3,77777,9,999999999,270,0.1570,0,88,0.130,999.0,99.0 +2001,10,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,20.4,78,102200,0,0,391,0,0,0,0,0,0,0,60,6.7,3,3,11.3,77777,9,999999999,259,0.1570,0,88,0.130,999.0,99.0 +2001,10,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,20.0,78,102200,0,0,384,0,0,0,0,0,0,0,60,6.7,2,2,11.3,77777,9,999999999,259,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.0,69,102200,0,0,392,0,0,0,0,0,0,0,60,6.7,3,3,11.3,77777,9,999999999,259,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,19.0,74,102200,0,0,383,0,0,0,0,0,0,0,50,5.1,2,2,11.3,77777,9,999999999,259,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,19.0,78,102200,0,0,366,0,0,0,0,0,0,0,50,5.7,0,0,11.3,77777,9,999999999,259,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,102200,0,0,379,0,0,0,0,0,0,0,50,6.2,2,2,11.3,77777,9,999999999,259,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,102300,0,0,383,0,0,0,0,0,0,0,50,6.2,3,3,11.3,77777,9,999999999,259,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,19.0,78,102300,40,719,378,1,61,0,0,0,0,0,60,6.2,2,2,11.3,77777,9,999999999,259,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,102300,305,1370,393,167,377,83,17200,29600,10600,1540,60,7.7,3,3,11.3,77777,9,999999999,259,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.1,20.1,66,102300,586,1370,404,375,632,103,39000,60700,12900,2060,70,8.8,3,3,11.3,77777,9,999999999,259,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,20.0,58,102300,823,1370,415,563,758,106,59100,75500,13500,2450,70,9.8,3,3,11.3,77777,9,999999999,259,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.0,55,102300,1000,1370,427,704,781,133,74100,78500,16600,3740,70,9.8,5,5,11.3,77777,9,999999999,259,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,20.0,52,102200,1103,1370,436,778,741,180,83300,75900,22000,6620,70,9.8,9,6,11.3,7500,9,999999999,259,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,20.0,52,102100,1126,1370,436,766,654,227,80900,66400,26100,8660,70,8.7,9,6,11.3,7500,9,999999999,259,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,21.0,55,102100,1068,1370,434,749,759,156,78200,76200,18700,4810,60,11.3,5,5,11.3,77777,9,999999999,270,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,20.0,58,102100,932,1370,421,603,594,198,62900,59600,22200,5200,60,11.3,5,5,11.3,77777,9,999999999,279,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,19.0,58,102100,728,1370,414,403,364,209,43300,38100,23000,4810,60,9.8,5,5,11.3,77777,9,999999999,290,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,18.0,55,102100,469,1370,413,254,410,113,26600,37800,13600,2150,60,8.2,5,5,11.3,77777,9,999999999,300,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,17.0,58,102200,176,1370,401,64,199,39,6800,11800,5200,700,70,7.2,5,5,11.3,77777,9,999999999,309,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,18.0,61,102200,1,126,406,0,0,0,0,0,0,0,60,5.7,9,6,11.3,7500,9,999999999,320,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.0,69,102200,0,0,401,0,0,0,0,0,0,0,70,8.2,9,6,11.3,7500,9,999999999,329,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.0,69,102300,0,0,422,0,0,0,0,0,0,0,70,7.2,10,9,11.3,7500,9,999999999,340,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,18.0,69,102300,0,0,415,0,0,0,0,0,0,0,60,6.2,10,9,11.3,7500,9,999999999,350,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,18.0,69,102300,0,0,391,0,0,0,0,0,0,0,60,6.7,5,5,11.3,77777,9,999999999,359,0.1550,0,88,0.130,999.0,99.0 +2001,10,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,18.0,73,102200,0,0,386,0,0,0,0,0,0,0,60,5.1,5,5,11.3,77777,9,999999999,370,0.1550,0,88,0.130,999.0,99.0 +2001,10,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,18.0,73,102200,0,0,386,0,0,0,0,0,0,0,60,3.6,5,5,11.3,77777,9,999999999,379,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.5,18.5,78,102200,0,0,384,0,0,0,0,0,0,0,60,3.9,5,5,11.3,77777,9,999999999,370,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.0,83,102100,0,0,382,0,0,0,0,0,0,0,50,4.1,5,5,11.3,77777,9,999999999,359,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.0,83,102100,0,0,382,0,0,0,0,0,0,0,50,5.1,5,5,11.3,77777,9,999999999,350,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.0,19.1,84,102200,0,0,386,0,0,0,0,0,0,0,50,4.9,6,6,11.3,17167,9,999999999,340,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.9,19.0,84,102200,0,0,396,0,0,0,0,0,0,0,50,4.8,8,8,11.3,12333,9,999999999,329,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.0,83,102200,39,720,405,0,54,0,0,0,0,0,50,4.6,9,9,11.3,7500,9,999999999,320,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,102300,302,1371,412,158,350,81,16300,27400,10200,1500,60,6.7,9,9,11.3,7500,9,999999999,309,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.6,19.6,69,102300,583,1371,426,368,608,109,38200,58100,13400,2150,70,7.0,9,9,11.3,7500,9,999999999,300,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,19.0,58,102300,820,1371,439,550,715,121,58600,72300,15200,2930,80,7.2,9,9,11.3,7500,9,999999999,290,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,19.0,58,102200,996,1371,439,692,744,149,74100,76200,18600,4490,80,6.7,9,9,11.3,7500,9,999999999,279,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,18.0,49,102200,1099,1371,449,747,710,176,80000,72800,21500,6420,80,6.7,9,9,11.3,7500,9,999999999,270,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,18.0,46,102100,1122,1371,468,766,666,220,81000,67700,25500,8310,80,7.2,10,10,11.3,7500,9,999999999,259,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,19.0,49,102000,1063,1371,469,650,460,292,69100,47900,31900,9890,70,5.7,10,10,11.3,7500,9,999999999,259,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,19.0,52,101900,927,1371,463,387,113,310,42600,11500,34700,10660,60,8.7,10,10,11.3,3300,9,999999999,259,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,19.0,52,101900,722,1371,463,419,399,208,45000,41700,23000,4770,60,8.7,10,10,11.3,3300,9,999999999,259,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,18.0,55,101900,464,1371,450,228,228,151,24000,21400,16700,3170,70,6.2,10,10,11.3,7500,9,999999999,259,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,20.0,66,102000,170,1371,447,50,67,42,5500,4200,5000,880,60,5.1,10,10,11.3,7500,9,999999999,259,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,20.0,70,102000,1,103,429,0,0,0,0,0,0,0,70,6.7,9,9,11.3,7500,9,999999999,259,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,20.0,70,102000,0,0,429,0,0,0,0,0,0,0,70,6.7,9,9,11.3,7500,9,999999999,270,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.0,78,102100,0,0,424,0,0,0,0,0,0,0,70,6.2,9,9,11.3,7500,9,999999999,270,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,21.0,83,102100,0,0,418,0,0,0,0,0,0,0,70,7.2,9,9,11.3,2400,9,999999999,270,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,20.0,78,102100,0,0,417,0,0,0,0,0,0,0,80,6.2,9,9,11.3,2400,9,999999999,270,0.1540,0,88,0.130,999.0,99.0 +2001,10,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,22.0,89,102100,0,0,432,0,0,0,0,0,0,0,120,3.6,10,10,11.3,1800,9,999999999,270,0.1540,0,88,0.130,999.0,99.0 +2001,10,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.0,21.0,89,102100,0,0,413,0,0,0,0,0,0,0,80,2.6,9,9,11.3,1200,9,999999999,270,0.1520,0,88,0.130,0.0,6.0 +2001,10,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,22.0,89,102000,0,0,420,0,0,0,0,0,0,0,30,2.1,9,9,11.3,2100,9,999999999,270,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,21.0,94,102000,0,0,407,0,0,0,0,0,0,0,70,3.6,9,9,11.3,2100,9,999999999,270,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,22.0,94,101900,0,0,414,0,0,0,0,0,0,0,70,4.1,9,9,11.3,2400,9,999999999,270,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.2,21.8,92,101900,0,0,406,0,0,0,0,0,0,0,70,4.2,8,8,11.3,7300,9,999999999,279,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.2,21.3,89,102000,0,0,399,0,0,0,0,0,0,0,80,4.4,7,7,11.3,12200,9,999999999,279,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.4,20.9,86,102000,37,697,395,0,54,0,0,0,0,0,80,4.5,6,6,11.3,17100,9,999999999,279,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.0,78,102000,299,1372,400,169,372,87,17200,28900,10800,1630,80,4.6,5,5,11.3,77777,9,999999999,279,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.6,20.6,70,102000,580,1372,409,361,608,104,37600,58200,13000,2070,90,5.4,5,5,11.3,77777,9,999999999,279,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,20.0,62,102100,816,1372,416,537,697,121,57200,70500,15100,2910,100,6.2,5,5,11.3,77777,9,999999999,279,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.7,19.1,53,102000,992,1372,433,673,678,181,71100,68800,21200,5300,110,5.7,7,7,11.3,12500,9,999999999,279,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,18.0,46,102000,1095,1372,455,741,704,177,79300,72100,21500,6380,120,5.1,9,9,11.3,3000,9,999999999,290,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,18.0,46,101900,1117,1372,455,760,690,197,81000,70500,23400,7420,130,4.6,9,9,11.3,3000,9,999999999,290,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,17.0,43,101800,1058,1372,454,708,705,162,75900,72300,20000,5440,120,5.1,9,9,11.3,7500,9,999999999,290,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,17.0,43,101700,922,1372,454,603,624,182,63100,62900,20800,4760,120,4.6,9,9,11.3,7500,9,999999999,300,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,19.0,52,101700,717,1372,451,473,675,119,49700,67000,14600,2600,80,6.2,9,9,11.3,7500,9,999999999,300,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.0,55,101700,458,1372,427,262,540,81,27100,49100,10700,1540,80,5.7,5,5,11.3,77777,9,999999999,309,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,20.0,62,101700,165,1372,440,62,224,35,6500,12900,5000,620,70,5.7,9,9,11.3,7500,9,999999999,309,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,20.0,66,101700,0,80,410,0,0,0,0,0,0,0,90,6.7,5,5,11.3,77777,9,999999999,320,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,20.0,70,101800,0,0,405,0,0,0,0,0,0,0,80,5.1,5,5,11.3,77777,9,999999999,320,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.0,78,101800,0,0,400,0,0,0,0,0,0,0,80,6.2,5,5,11.3,77777,9,999999999,329,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.0,78,101800,0,0,424,0,0,0,0,0,0,0,80,4.6,9,9,11.3,7500,9,999999999,329,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,21.0,89,101700,0,0,390,0,0,0,0,0,0,0,90,4.1,5,5,11.3,77777,9,999999999,340,0.1520,0,88,0.130,999.0,99.0 +2001,10,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,21.0,83,101700,0,0,395,0,0,0,0,0,0,0,90,3.6,5,5,11.3,77777,9,999999999,340,0.1520,0,88,0.130,999.0,99.0 +2001,10,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,21.0,89,101700,0,0,390,0,0,0,0,0,0,0,90,4.1,5,5,11.3,77777,9,999999999,350,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,21.0,83,101600,0,0,418,0,0,0,0,0,0,0,80,4.6,9,9,11.3,7500,9,999999999,350,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,21.0,94,101600,0,0,407,0,0,0,0,0,0,0,80,4.1,9,9,11.3,7500,9,999999999,350,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.9,21.0,95,101700,0,0,407,0,0,0,0,0,0,0,80,3.6,9,9,11.3,7500,9,999999999,350,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.0,21.1,95,101700,0,0,407,0,0,0,0,0,0,0,80,3.1,9,9,11.3,7500,9,999999999,350,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,21.0,94,101800,0,0,407,0,0,0,0,0,0,0,80,2.6,9,9,11.3,7500,9,999999999,350,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,21.0,83,101800,36,698,418,0,0,0,0,0,0,0,70,4.1,9,9,11.3,7500,9,999999999,359,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,21.0,89,101800,296,1373,413,85,0,85,9400,0,9400,2830,80,4.1,9,9,11.3,7500,9,999999999,359,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,21.0,74,101800,576,1373,430,355,508,141,37300,49300,16600,2800,110,4.1,9,9,11.3,7500,9,999999999,359,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,22.0,70,101700,813,1373,443,498,495,204,52800,50700,22700,4780,110,4.1,9,9,11.3,7500,9,999999999,359,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.0,59,101700,988,1373,453,623,551,225,67300,57300,25900,6540,100,6.2,9,9,11.3,7500,9,999999999,359,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.0,55,101600,1090,1373,452,625,361,337,68200,39100,37000,11720,120,4.6,9,9,11.3,7500,9,999999999,359,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.7,20.1,53,101600,1113,1373,456,641,348,358,69800,37700,39100,13060,120,4.1,9,9,11.3,7500,9,999999999,359,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,20.0,52,101500,1053,1373,458,445,119,353,48800,12600,39000,11910,120,3.6,9,9,11.3,7500,9,999999999,370,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,19.0,52,101500,917,1373,451,381,95,317,41900,9700,35400,10730,130,2.6,9,9,11.3,7500,9,999999999,379,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,18.0,49,101500,712,1373,449,337,147,261,36400,15100,28600,6590,130,2.6,9,9,11.3,4500,9,999999999,390,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,18.0,49,101500,453,1373,449,217,199,151,23400,18600,17200,3420,90,2.1,9,9,11.3,4500,9,999999999,400,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,18.0,55,101500,159,1373,437,51,90,41,5400,4800,4900,760,90,1.5,9,9,11.3,4500,9,999999999,409,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,20.0,62,101500,0,57,440,0,0,0,0,0,0,0,80,3.1,9,9,11.3,4500,9,999999999,419,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,19.0,62,101600,0,0,433,0,0,0,0,0,0,0,90,4.1,9,9,11.3,7500,9,999999999,419,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,19.0,65,101600,0,0,427,0,0,0,0,0,0,0,100,4.1,9,9,11.3,7500,9,999999999,430,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.0,69,101700,0,0,422,0,0,0,0,0,0,0,100,4.1,9,9,11.3,7500,9,999999999,440,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.0,69,101700,0,0,398,0,0,0,0,0,0,0,100,4.6,5,5,11.3,77777,9,999999999,450,0.1510,0,88,0.130,999.0,99.0 +2001,10,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,19.4,73,101600,0,0,396,0,0,0,0,0,0,0,110,4.4,7,5,11.3,14750,9,999999999,459,0.1510,0,88,0.130,999.0,99.0 +2001,10,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,20.0,78,101600,0,0,391,0,0,0,0,0,0,0,110,4.1,9,4,11.3,7500,9,999999999,469,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,101500,0,0,383,0,0,0,0,0,0,0,100,3.6,5,3,11.3,77777,9,999999999,459,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,21.0,89,101500,0,0,387,0,0,0,0,0,0,0,100,3.6,9,4,11.3,7500,9,999999999,459,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,21.0,83,101400,0,0,392,0,0,0,0,0,0,0,80,3.1,9,4,11.3,7500,9,999999999,459,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,101500,0,0,386,0,0,0,0,0,0,0,80,3.1,9,4,11.3,7500,9,999999999,459,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,21.0,89,101500,0,0,387,0,0,0,0,0,0,0,90,3.6,9,4,11.3,7500,9,999999999,459,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,21.0,83,101600,34,675,392,0,0,0,0,0,0,0,100,3.1,9,4,11.3,7500,9,999999999,450,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,21.0,83,101600,293,1373,392,161,332,90,16300,25500,10900,1700,100,5.1,9,4,11.3,7500,9,999999999,450,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,21.0,83,101600,573,1373,392,355,590,108,36800,56200,13300,2120,120,4.1,9,4,11.3,7500,9,999999999,450,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,21.0,62,101600,809,1373,419,531,685,126,56300,69100,15500,2990,120,5.7,9,4,11.3,7500,9,999999999,450,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.2,20.6,57,101600,984,1373,425,698,787,133,73300,79000,16500,3610,130,4.9,7,4,11.3,14750,9,999999999,450,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,20.0,52,101600,1086,1373,426,778,813,133,82800,82300,17500,4450,130,4.1,5,3,11.3,77777,9,999999999,440,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,32.2,19.6,47,101500,1108,1373,432,802,828,132,85700,83900,17800,4670,130,3.9,5,3,11.3,77777,9,999999999,440,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,33.0,19.0,44,101300,1048,1373,436,749,812,127,79700,82100,16800,3970,130,3.6,5,3,11.3,77777,9,999999999,440,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.0,19.0,46,101300,911,1373,433,625,659,186,65300,66200,21200,4760,130,4.6,9,4,11.3,7500,9,999999999,440,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,32.0,20.0,49,101200,706,1373,435,337,200,234,36600,20500,26000,5890,120,4.6,9,4,11.3,7500,9,999999999,440,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,20.0,52,101200,447,1373,422,261,511,94,26700,45700,11800,1720,120,4.1,5,2,11.3,77777,9,999999999,440,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.0,55,101200,154,1373,420,57,234,30,5700,13800,4200,530,110,3.6,5,3,11.3,77777,9,999999999,440,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,21.0,66,101200,0,34,406,0,0,0,0,0,0,0,100,3.6,5,2,11.3,77777,9,999999999,450,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,21.0,66,101300,0,0,414,0,0,0,0,0,0,0,110,3.1,9,4,11.3,7500,9,999999999,450,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,27.5,21.0,68,101400,0,0,411,0,0,0,0,0,0,0,120,3.4,9,4,11.3,6000,9,999999999,450,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,21.0,70,101500,0,0,408,0,0,0,0,0,0,0,120,3.6,9,4,11.3,4500,9,999999999,450,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,22.0,74,101500,0,0,402,0,0,0,0,0,0,0,120,4.1,5,2,11.3,77777,9,999999999,450,0.1490,0,88,0.130,999.0,99.0 +2001,10,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,22.0,79,101400,0,0,392,0,0,0,0,0,0,0,120,4.6,3,1,11.3,77777,9,999999999,450,0.1490,0,88,0.130,999.0,99.0 +2001,10,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.0,89,101400,0,0,388,0,0,0,0,0,0,0,120,4.1,3,1,11.3,77777,9,999999999,450,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.0,89,101400,0,0,393,0,0,0,0,0,0,0,120,3.6,5,2,11.3,77777,9,999999999,450,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,23.0,94,101400,0,0,395,0,0,0,0,0,0,0,130,5.1,9,4,11.3,7500,9,999999999,450,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.0,89,101400,0,0,400,0,0,0,0,0,0,0,140,6.2,9,4,11.3,7500,9,999999999,450,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.6,23.1,91,101400,0,0,395,0,0,0,0,0,0,0,150,5.1,7,3,11.3,14750,9,999999999,450,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,23.0,94,101500,0,0,388,0,0,0,0,0,0,0,150,4.1,5,2,11.3,77777,9,999999999,450,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,24.0,84,101400,33,653,412,0,0,0,0,0,0,0,150,4.6,9,4,11.3,7500,9,999999999,440,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,24.0,84,101400,290,1374,412,95,21,91,10500,1000,10300,2900,140,3.6,9,4,11.3,7500,9,999999999,440,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,25.0,84,101400,570,1374,419,220,50,199,24100,4900,22000,5420,140,3.6,9,4,11.3,7500,9,999999999,440,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,25.0,75,101400,805,1374,430,275,24,261,31300,2200,30000,10450,140,4.1,9,4,11.3,7500,9,999999999,440,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,25.0,75,101500,980,1374,430,365,42,335,40200,4300,37100,11920,190,4.6,9,4,11.3,7500,9,999999999,440,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,24.0,74,101400,1082,1374,423,398,48,360,43900,4900,40000,14110,190,3.6,9,4,11.3,7500,9,999999999,440,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,24.0,70,101400,1103,1374,429,407,36,378,44900,3700,41900,15070,210,6.7,9,4,11.3,7500,9,999999999,440,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,25.0,75,101300,1043,1374,430,345,24,327,40100,2200,38400,14170,210,5.1,9,4,11.3,7500,9,999999999,430,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,25.0,79,101200,906,1374,431,295,24,280,34000,2200,32600,11790,190,6.2,10,6,11.3,7500,9,999999999,430,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,25.0,89,101200,701,1374,420,217,18,208,24700,1500,23900,8250,200,4.6,10,6,11.3,2700,9,999999999,419,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,25.0,84,101300,442,1374,426,113,6,111,12800,400,12600,4150,210,3.6,10,6,11.3,2700,9,999999999,409,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,23.0,94,101400,149,1374,401,52,107,41,5500,5400,4900,770,340,2.1,10,6,11.3,2700,9,999999999,400,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.0,22.0,100,101400,0,11,389,0,0,0,0,0,0,0,230,2.1,10,6,11.3,2700,9,999999999,400,0.1480,0,88,0.130,1.0,6.0 +2001,10,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,24.0,89,101400,0,0,406,0,0,0,0,0,0,0,180,1.0,9,4,11.3,2700,9,999999999,390,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,25.0,100,101500,0,0,402,0,0,0,0,0,0,0,120,1.0,9,4,11.3,2700,9,999999999,379,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.0,25.0,94,101600,0,0,408,0,0,0,0,0,0,0,70,1.0,9,4,11.3,2700,9,999999999,379,0.1480,0,88,0.130,0.0,3.0 +2001,10,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,24.0,100,101600,0,0,396,0,0,0,0,0,0,0,340,1.0,9,4,11.3,2700,9,999999999,370,0.1480,0,88,0.130,999.0,99.0 +2001,10,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,24.0,94,101600,0,0,401,0,0,0,0,0,0,0,340,1.0,9,4,11.3,2700,9,999999999,359,0.1480,0,88,0.130,999.0,99.0 +2001,10,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.0,24.0,100,101500,0,0,399,0,0,0,0,0,0,0,330,1.0,9,5,11.3,2700,9,999999999,359,0.1460,0,88,0.130,0.0,6.0 +2001,10,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,23.0,94,101500,0,0,398,0,0,0,0,0,0,0,10,1.5,9,5,11.3,2700,9,999999999,359,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101500,0,0,386,0,0,0,0,0,0,0,360,1.5,9,5,11.3,2700,9,999999999,359,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101500,0,0,386,0,0,0,0,0,0,0,350,2.1,9,5,11.3,7500,9,999999999,359,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,21.0,94,101500,0,0,385,0,0,0,0,0,0,0,360,2.6,5,5,11.3,77777,9,999999999,359,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,21.0,94,101600,0,0,385,0,0,0,0,0,0,0,10,2.6,5,5,11.3,77777,9,999999999,359,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.0,19.0,88,101700,32,653,377,0,0,0,0,0,0,0,20,4.1,9,5,11.3,7500,9,999999999,359,0.1460,0,88,0.130,1.0,24.0 +2001,10,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,18.0,73,101800,286,1375,386,154,362,78,15800,27600,10000,1450,60,4.1,5,5,11.3,77777,9,999999999,370,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,18.0,73,101800,566,1375,386,363,653,93,38000,62500,12100,1860,20,5.7,5,5,11.3,77777,9,999999999,370,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.0,69,101900,802,1375,398,524,685,124,55700,69000,15300,2920,50,7.2,5,5,11.3,77777,9,999999999,370,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,19.0,62,101900,976,1375,409,686,757,147,73400,77400,18300,4270,40,7.2,5,5,11.3,77777,9,999999999,370,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,19.0,58,101800,1077,1375,414,772,819,128,82300,82900,17200,4230,40,5.7,5,5,11.3,77777,9,999999999,370,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,19.0,55,101700,1099,1375,420,784,786,154,82200,79100,18900,5090,60,5.1,5,5,11.3,77777,9,999999999,370,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,20.0,55,101700,1039,1375,427,742,782,150,77500,78400,18100,4350,40,5.1,5,5,11.3,77777,9,999999999,379,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.0,59,101600,901,1375,428,522,386,269,56600,41400,29400,7170,60,5.1,5,5,11.3,77777,9,999999999,379,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,21.0,59,101600,696,1375,428,390,387,194,42000,40200,21600,4350,60,5.7,9,5,11.3,7500,9,999999999,390,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,21.0,66,101700,436,1375,417,191,176,135,20700,16300,15500,3040,70,4.6,9,5,11.3,7500,9,999999999,390,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,20.0,66,101700,144,1364,410,51,225,28,5400,13200,3900,500,80,4.6,5,5,11.3,77777,9,999999999,400,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,20.0,70,101700,0,0,405,0,0,0,0,0,0,0,70,4.1,5,5,11.3,77777,9,999999999,400,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,19.0,65,101800,0,0,403,0,0,0,0,0,0,0,60,4.6,5,5,11.3,77777,9,999999999,409,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,19.0,69,101800,0,0,398,0,0,0,0,0,0,0,60,3.1,5,5,11.3,77777,9,999999999,409,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,19.0,71,101800,0,0,395,0,0,0,0,0,0,0,50,3.1,5,5,11.3,77777,9,999999999,419,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,19.0,74,101800,0,0,393,0,0,0,0,0,0,0,40,3.1,5,5,11.3,77777,9,999999999,419,0.1460,0,88,0.130,999.0,99.0 +2001,10,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,19.0,74,101800,0,0,393,0,0,0,0,0,0,0,40,3.6,5,5,11.3,77777,9,999999999,430,0.1460,0,88,0.130,999.0,99.0 +2001,10,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,19.0,78,101800,0,0,387,0,0,0,0,0,0,0,40,3.6,5,5,11.3,77777,9,999999999,430,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,20.0,88,101800,0,0,406,0,0,0,0,0,0,0,30,3.6,9,9,11.3,7500,9,999999999,419,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.4,20.0,86,101700,0,0,408,0,0,0,0,0,0,0,30,3.4,9,9,11.3,6000,9,999999999,409,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,101700,0,0,412,0,0,0,0,0,0,0,30,3.1,9,9,11.3,4500,9,999999999,400,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,20.0,88,101700,0,0,418,0,0,0,0,0,0,0,40,4.1,10,10,11.3,600,9,999999999,400,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,101800,0,0,412,0,0,0,0,0,0,0,50,3.6,9,9,11.3,1350,9,999999999,390,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,101800,30,631,423,0,0,0,0,0,0,0,60,5.1,10,10,11.3,1050,9,999999999,379,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,20.0,78,101800,283,1376,429,58,0,58,6600,0,6600,2130,60,4.1,10,10,11.3,1050,9,999999999,370,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,21.0,74,101800,563,1376,430,142,0,142,16200,0,16200,5590,60,4.1,9,9,11.3,1050,9,999999999,359,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,21.0,74,101800,798,1376,442,446,318,261,47700,33600,28100,6470,60,3.1,10,10,11.3,1350,9,999999999,350,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,22.0,74,101800,972,1376,449,466,170,346,50900,18000,38100,10590,30,2.1,10,10,11.3,1350,9,999999999,340,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,21.0,66,101700,1073,1376,441,508,163,381,55600,17300,42100,13160,320,2.6,9,9,11.3,7500,9,999999999,329,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,22.0,74,101700,1094,1376,437,521,180,377,57100,19100,41800,13420,280,2.6,9,9,11.3,1350,9,999999999,329,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,22.0,70,101600,1034,1376,455,368,72,314,40600,7400,35100,11940,300,2.6,10,10,11.3,1350,9,999999999,320,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.1,21.4,67,101600,896,1376,455,494,321,284,53200,34400,30700,7610,310,3.9,10,10,11.3,2025,9,999999999,309,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,21.0,66,101600,690,1376,441,384,346,210,41000,35900,23000,4780,320,5.1,9,9,11.3,2700,9,999999999,300,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.0,54,101600,431,1376,416,132,34,121,14400,3100,13500,3230,330,4.1,9,9,11.3,2700,9,999999999,290,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,15.0,57,101600,139,1342,411,29,14,28,3200,900,3100,700,340,2.6,9,9,11.3,2100,9,999999999,290,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,16.0,69,101600,0,0,401,0,0,0,0,0,0,0,360,2.6,9,9,11.3,2400,9,999999999,279,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,16.0,69,101700,0,0,412,0,0,0,0,0,0,0,350,3.1,10,10,11.3,3000,9,999999999,270,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,18.0,83,101700,0,0,398,0,0,0,0,0,0,0,350,2.6,9,9,11.3,7500,9,999999999,259,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,19.0,88,101800,0,0,399,0,0,0,0,0,0,0,350,2.1,9,9,11.3,7500,9,999999999,259,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,18.0,83,101800,0,0,398,0,0,0,0,0,0,0,360,2.4,9,9,11.3,7500,9,999999999,250,0.1450,0,88,0.130,999.0,99.0 +2001,10,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,17.0,78,101800,0,0,397,0,0,0,0,0,0,0,360,2.6,9,9,11.3,7500,9,999999999,240,0.1450,0,88,0.130,999.0,99.0 +2001,10,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.0,78,101800,0,0,376,0,0,0,0,0,0,0,360,2.6,9,7,11.3,7500,9,999999999,229,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.1,14.0,72,101800,0,0,365,0,0,0,0,0,0,0,10,2.7,7,6,11.3,11125,9,999999999,229,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.2,11.9,67,101800,0,0,355,0,0,0,0,0,0,0,10,2.9,6,5,11.3,14750,9,999999999,220,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,9.9,61,101800,0,0,344,0,0,0,0,0,0,0,20,3.0,4,3,11.3,18375,9,999999999,220,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,8.0,55,101800,0,0,336,0,0,0,0,0,0,0,20,3.1,2,2,11.3,77777,9,999999999,209,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,6.0,51,101800,0,0,337,0,0,0,0,0,0,0,20,6.2,5,5,11.3,77777,9,999999999,209,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,101900,29,631,338,0,0,0,0,0,0,0,20,3.6,9,7,11.3,2400,9,999999999,200,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,5.0,48,102000,280,1377,349,97,50,87,10600,4100,9800,2100,20,4.1,9,8,11.3,2400,9,999999999,200,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,5.0,48,102000,559,1377,343,157,6,154,17700,400,17500,5890,20,4.6,9,7,11.3,7500,9,999999999,189,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,7.0,55,102000,794,1377,351,453,257,304,48900,26700,33400,8050,30,4.6,9,8,11.3,7500,9,999999999,189,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,7.0,52,102000,968,1377,350,258,36,232,28400,3600,25900,8670,40,4.1,9,7,11.3,7500,9,999999999,179,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,10.0,49,101900,1069,1377,366,759,674,234,79400,68000,26500,7660,30,5.1,5,5,11.3,77777,9,999999999,179,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,11.0,50,101800,1089,1377,380,784,798,151,82300,80300,18600,4890,30,4.6,9,7,11.3,7500,9,999999999,170,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.0,11.1,47,101800,1029,1377,381,713,740,158,76300,75800,19500,4980,20,4.1,8,6,11.3,12333,9,999999999,179,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.6,11.5,47,101800,891,1377,385,613,760,120,64100,75900,14900,2890,20,3.6,6,6,11.3,17167,9,999999999,179,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,12.0,47,101700,685,1377,384,449,697,101,47600,69100,13100,2190,10,3.1,5,5,11.3,77777,9,999999999,179,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,12.0,53,101700,426,1377,374,243,486,92,25700,43500,12200,1710,30,3.6,5,5,11.3,77777,9,999999999,179,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.7,12.9,61,101800,134,1319,368,34,54,29,3800,3100,3500,610,30,3.9,5,5,11.3,77777,9,999999999,179,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,14.0,68,101800,0,0,366,0,0,0,0,0,0,0,30,4.1,5,5,11.3,77777,9,999999999,189,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,13.7,71,101900,0,0,358,0,0,0,0,0,0,0,30,4.4,4,4,11.3,77777,9,999999999,189,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.9,13.4,75,101900,0,0,352,0,0,0,0,0,0,0,30,4.8,4,4,11.3,77777,9,999999999,189,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,101900,0,0,345,0,0,0,0,0,0,0,30,5.1,3,3,11.3,77777,9,999999999,189,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,101900,0,0,340,0,0,0,0,0,0,0,30,3.6,2,2,11.3,77777,9,999999999,200,0.1440,0,88,0.130,999.0,99.0 +2001,10,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,11.0,72,102000,0,0,338,0,0,0,0,0,0,0,30,5.1,3,3,11.3,77777,9,999999999,200,0.1440,0,88,0.130,999.0,99.0 +2001,10,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.0,77,102000,0,0,333,0,0,0,0,0,0,0,30,4.1,3,3,11.3,77777,9,999999999,200,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.5,11.0,79,101900,0,0,331,0,0,0,0,0,0,0,30,4.1,3,3,11.3,77777,9,999999999,200,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,101800,0,0,329,0,0,0,0,0,0,0,20,4.1,3,3,11.3,77777,9,999999999,209,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,10.9,79,101800,0,0,327,0,0,0,0,0,0,0,30,3.9,2,2,11.3,77777,9,999999999,209,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.0,77,101800,0,0,319,0,0,0,0,0,0,0,30,3.6,0,0,11.3,77777,9,999999999,209,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,101900,0,0,336,0,0,0,0,0,0,0,40,4.6,2,2,11.3,77777,9,999999999,209,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.8,12.3,80,101900,28,608,335,0,0,0,0,0,0,0,40,5.6,2,2,11.3,77777,9,999999999,220,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,101900,277,1377,341,147,337,79,15000,25200,9900,1470,40,6.7,2,2,11.3,77777,9,999999999,220,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,14.0,68,101900,556,1377,360,350,597,108,36100,56400,13300,2090,40,6.7,3,3,11.3,77777,9,999999999,220,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,15.0,61,101900,790,1377,373,518,697,117,55100,70200,14700,2740,60,8.2,2,2,11.3,77777,9,999999999,229,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.7,16.6,61,101900,964,1377,384,680,775,136,70900,77600,16500,3510,60,7.2,2,2,11.3,77777,9,999999999,229,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,18.0,61,101800,1064,1377,392,759,813,129,80800,82200,17000,4120,50,6.2,2,2,11.3,77777,9,999999999,229,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,17.0,51,101700,1085,1377,405,778,792,153,81600,79600,18700,4870,50,6.2,3,3,11.3,77777,9,999999999,229,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,17.0,48,101600,1024,1377,417,707,729,164,75500,74500,20000,5100,60,6.2,5,5,11.3,77777,9,999999999,240,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,18.0,52,101600,886,1377,418,601,724,134,64100,73600,16600,3450,50,6.7,5,5,11.3,77777,9,999999999,250,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,17.0,51,101600,680,1377,412,443,715,89,46100,69900,11600,1870,80,6.7,5,5,11.3,77777,9,999999999,259,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,16.0,51,101600,420,1377,405,242,576,66,25300,51400,9600,1260,80,5.1,5,5,11.3,77777,9,999999999,259,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.1,15.5,55,101600,129,1297,391,45,196,27,5000,10300,4000,470,70,5.8,4,4,11.3,77777,9,999999999,270,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.8,15.4,59,101700,0,0,381,0,0,0,0,0,0,0,70,6.5,3,3,11.3,77777,9,999999999,279,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,15.0,61,101700,0,0,373,0,0,0,0,0,0,0,60,7.2,2,2,11.3,77777,9,999999999,279,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,16.0,69,101700,0,0,357,0,0,0,0,0,0,0,40,6.2,0,0,11.3,77777,9,999999999,290,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.5,16.0,71,101700,0,0,355,0,0,0,0,0,0,0,40,5.1,0,0,11.3,77777,9,999999999,300,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,16.0,73,101700,0,0,353,0,0,0,0,0,0,0,30,4.1,0,0,11.3,77777,9,999999999,309,0.1420,0,88,0.130,999.0,99.0 +2001,10,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,16.0,73,101700,0,0,353,0,0,0,0,0,0,0,30,4.1,0,0,11.3,77777,9,999999999,309,0.1420,0,88,0.130,999.0,99.0 +2001,10,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.0,78,101600,0,0,348,0,0,0,0,0,0,0,30,4.1,0,0,11.3,77777,9,999999999,320,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,16.0,73,101600,0,0,353,0,0,0,0,0,0,0,40,4.6,0,0,11.3,77777,9,999999999,320,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.0,83,101500,0,0,360,0,0,0,0,0,0,0,40,3.6,2,2,11.3,77777,9,999999999,320,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,18.0,78,101500,0,0,375,0,0,0,0,0,0,0,30,4.1,3,3,11.3,77777,9,999999999,320,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.1,18.1,78,101500,0,0,376,0,0,0,0,0,0,0,40,4.9,3,3,11.3,77777,9,999999999,320,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,18.0,78,101500,0,0,375,0,0,0,0,0,0,0,50,5.7,3,3,11.3,77777,9,999999999,320,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,19.0,88,101500,26,586,377,0,0,0,0,0,0,0,50,5.1,5,5,11.3,77777,9,999999999,320,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,19.0,78,101600,273,1378,387,148,331,82,15000,24600,10100,1540,40,6.7,5,5,11.3,77777,9,999999999,320,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,101600,552,1378,399,343,598,103,35600,56500,12800,2000,50,8.2,5,5,11.3,77777,9,999999999,320,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,21.0,70,101600,786,1378,411,499,612,149,52200,61000,17300,3360,60,7.7,5,5,11.3,77777,9,999999999,320,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,22.0,66,101600,960,1378,424,649,727,141,69500,74300,17600,4000,50,7.2,5,5,11.3,77777,9,999999999,320,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,22.0,66,101500,1060,1378,424,674,566,237,73100,59100,27500,7770,60,6.7,5,5,11.3,77777,9,999999999,320,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,22.0,59,101400,1080,1378,461,676,546,247,73300,57000,28500,8460,60,7.2,9,9,11.3,7500,9,999999999,320,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,22.0,59,101300,1019,1378,461,625,466,280,66400,48400,30500,8630,60,5.1,9,9,11.3,7500,9,999999999,309,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,30.6,21.9,60,101300,880,1378,441,589,676,156,62100,68200,18400,3910,50,5.4,7,7,11.3,14750,9,999999999,309,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,22.0,62,101200,675,1378,429,427,638,113,44700,62800,13900,2390,40,5.7,5,5,11.3,77777,9,999999999,309,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,21.6,65,101300,415,1378,422,222,479,78,22900,42200,10200,1440,60,6.2,5,5,11.3,77777,9,999999999,300,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,21.0,70,101300,124,1275,411,41,172,26,4600,9000,3700,450,50,8.2,5,5,11.3,77777,9,999999999,300,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,22.0,74,101400,0,0,413,0,0,0,0,0,0,0,50,5.7,5,5,11.3,77777,9,999999999,300,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,23.0,94,101500,0,0,398,0,0,0,0,0,0,0,50,5.1,5,5,11.3,77777,9,999999999,290,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,23.0,94,101500,0,0,388,0,0,0,0,0,0,0,50,5.1,2,2,11.3,77777,9,999999999,290,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,23.0,84,101500,0,0,402,0,0,0,0,0,0,0,40,4.6,3,3,11.3,77777,9,999999999,290,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,22.0,94,101500,0,0,381,0,0,0,0,0,0,0,50,5.1,2,2,11.3,77777,9,999999999,279,0.1410,0,88,0.130,999.0,99.0 +2001,10,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.6,22.0,91,101500,0,0,388,0,0,0,0,0,0,0,50,4.6,3,3,11.3,77777,9,999999999,279,0.1410,0,88,0.130,999.0,99.0 +2001,10,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.3,22.0,87,101500,0,0,395,0,0,0,0,0,0,0,40,4.1,4,4,11.3,77777,9,999999999,279,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.0,83,101400,0,0,402,0,0,0,0,0,0,0,40,3.6,5,5,11.3,77777,9,999999999,279,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,23.0,100,101400,0,0,392,0,0,0,0,0,0,0,50,4.1,5,5,11.3,77777,9,999999999,290,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101400,0,0,386,0,0,0,0,0,0,0,50,3.6,5,5,11.3,77777,9,999999999,300,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101500,0,0,400,0,0,0,0,0,0,0,40,3.6,9,8,11.3,150,9,999999999,309,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.9,21.9,100,101500,0,0,399,0,0,0,0,0,0,0,40,3.9,9,8,11.3,225,9,999999999,320,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101500,25,586,400,0,0,0,0,0,0,0,40,4.1,9,8,11.3,300,9,999999999,320,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,24.0,94,101600,270,1379,412,70,0,70,7800,0,7800,2380,50,5.7,9,7,11.3,300,9,999999999,329,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,24.0,94,101600,548,1379,419,157,6,155,17800,400,17600,5850,50,5.7,9,8,11.3,450,9,999999999,340,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,24.0,79,101700,782,1379,429,342,129,268,37100,13400,29500,7040,50,6.2,9,7,11.3,750,9,999999999,350,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,23.0,74,101700,955,1379,435,397,103,325,43600,10500,36300,11320,30,5.7,9,8,11.3,3000,9,999999999,350,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.1,22.9,69,101600,1055,1379,441,563,247,374,61600,26200,41500,12560,40,5.7,9,8,11.3,3000,9,999999999,359,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.0,66,101600,1075,1379,446,574,282,354,62300,30500,38400,12000,50,5.7,9,8,11.3,3000,9,999999999,370,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.0,66,101500,1014,1379,439,584,382,302,63600,41300,33100,9180,60,4.6,9,7,11.3,3000,9,999999999,370,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,29.1,22.4,67,101500,875,1379,433,476,285,295,51000,30400,31600,7830,50,4.6,9,7,11.3,3000,9,999999999,370,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,22.0,70,101400,669,1379,427,76,0,76,9300,0,9300,3610,30,4.6,9,7,11.3,3000,9,999999999,359,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.3,22.6,71,101500,410,1379,429,135,56,118,14800,5100,13200,3090,50,4.4,9,7,11.3,3600,9,999999999,359,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,23.0,74,101500,120,1253,428,27,48,22,2900,2300,2700,370,60,4.1,9,7,11.3,4200,9,999999999,359,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.0,89,101600,0,0,439,0,0,0,0,0,0,0,30,2.6,10,10,11.3,4200,9,999999999,359,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,23.0,79,101600,0,0,451,0,0,0,0,0,0,0,50,5.7,10,10,11.3,4200,9,999999999,350,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.5,23.0,81,101700,0,0,435,0,0,0,0,0,0,0,50,6.0,10,9,11.3,4200,9,999999999,350,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,23.0,84,101800,0,0,417,0,0,0,0,0,0,0,50,6.2,9,7,11.3,4200,9,999999999,350,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,22.0,89,101800,0,0,396,0,0,0,0,0,0,0,50,6.7,5,5,11.3,77777,9,999999999,350,0.1390,0,88,0.130,999.0,99.0 +2001,10,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.0,83,101700,0,0,410,0,0,0,0,0,0,0,40,4.1,9,7,11.3,150,9,999999999,340,0.1390,0,88,0.130,999.0,99.0 +2001,10,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101700,0,0,394,0,0,0,0,0,0,0,40,3.1,9,7,11.3,150,9,999999999,340,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.0,83,101700,0,0,402,0,0,0,0,0,0,0,30,3.6,5,5,11.3,77777,9,999999999,350,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,23.0,94,101600,0,0,398,0,0,0,0,0,0,0,50,5.1,5,5,11.3,77777,9,999999999,350,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,23.0,100,101700,0,0,392,0,0,0,0,0,0,0,50,4.6,5,5,11.3,77777,9,999999999,359,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,23.0,100,101700,0,0,400,0,0,0,0,0,0,0,40,4.1,9,7,11.3,150,9,999999999,370,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,23.0,94,101700,0,0,412,0,0,0,0,0,0,0,40,4.1,9,8,11.3,300,9,999999999,370,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.7,23.1,96,101700,24,563,411,0,0,0,0,0,0,0,50,4.6,9,8,11.3,1400,9,999999999,379,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.7,23.6,94,101800,267,1380,410,140,268,88,14500,19700,10700,1760,50,5.2,9,7,11.3,2500,9,999999999,390,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,24.0,89,101800,545,1380,418,315,472,128,33200,45200,15300,2490,60,5.7,9,7,11.3,3600,9,999999999,390,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,24.0,89,101800,778,1380,425,480,447,227,50000,45400,24300,5220,50,5.1,9,8,11.3,450,9,999999999,400,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,24.0,79,101800,951,1380,429,359,91,296,39500,9300,33100,10450,50,5.1,9,7,11.3,600,9,999999999,409,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,24.0,79,101800,1051,1380,436,704,572,267,75400,59600,29900,8660,70,6.2,9,8,11.3,3600,9,999999999,409,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.2,24.1,78,101700,1070,1380,431,562,300,329,61300,32500,36000,10940,90,4.6,9,7,11.3,3000,9,999999999,419,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,24.0,79,101600,1009,1380,436,140,0,140,17200,0,17200,7140,50,7.2,9,8,11.3,600,9,999999999,430,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,24.0,94,101600,870,1380,412,125,0,125,15200,0,15200,6140,50,7.2,9,7,11.3,600,9,999999999,440,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.0,24.0,84,101700,664,1380,430,92,0,92,11100,0,11100,4250,100,7.7,9,8,6.4,600,9,999999999,450,0.1380,0,88,0.130,0.0,3.0 +2001,10,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,22.0,94,101700,405,1380,399,43,0,43,5200,0,5200,1860,100,4.1,9,7,6.4,600,9,999999999,450,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101700,116,1230,409,16,0,16,1900,0,1900,610,110,1.0,10,9,11.3,600,9,999999999,459,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,24.0,94,101700,0,0,428,0,0,0,0,0,0,0,80,2.1,10,9,11.3,600,9,999999999,469,0.1380,0,88,0.130,12.0,6.0 +2001,10,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,24.0,94,101700,0,0,428,0,0,0,0,0,0,0,80,2.1,10,9,11.3,600,9,999999999,480,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.0,89,101700,0,0,427,0,0,0,0,0,0,0,70,4.1,10,9,11.3,600,9,999999999,490,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,23.0,89,101700,0,0,427,0,0,0,0,0,0,0,50,4.6,10,9,11.3,7500,9,999999999,500,0.1380,0,88,0.130,0.0,3.0 +2001,10,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.0,89,101700,0,0,427,0,0,0,0,0,0,0,40,3.1,10,9,11.3,3600,9,999999999,500,0.1380,0,88,0.130,999.0,99.0 +2001,10,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,23.0,94,101600,0,0,421,0,0,0,0,0,0,0,50,3.6,10,9,11.3,150,9,999999999,509,0.1380,0,88,0.130,999.0,99.0 +2001,10,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,23.0,94,101600,0,0,412,0,0,0,0,0,0,0,50,3.6,9,8,11.3,150,9,999999999,519,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,23.0,100,101500,0,0,400,0,0,0,0,0,0,0,60,4.6,9,7,11.3,3600,9,999999999,519,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101500,0,0,400,0,0,0,0,0,0,0,70,3.6,9,8,11.3,900,9,999999999,509,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101500,0,0,394,0,0,0,0,0,0,0,30,2.6,9,7,11.3,900,9,999999999,509,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,23.0,100,101500,0,0,427,0,0,0,0,0,0,0,40,1.5,10,10,11.3,150,9,999999999,500,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,23.0,94,101500,0,0,433,0,0,0,0,0,0,0,30,2.1,10,10,9.7,150,9,999999999,500,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.0,24.0,100,101600,23,564,413,0,0,0,0,0,0,0,60,3.1,9,8,11.3,750,9,999999999,490,0.1360,0,88,0.130,13.0,24.0 +2001,10,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,23.0,100,101600,263,1381,400,40,0,40,4700,0,4700,1550,50,3.6,9,7,11.3,900,9,999999999,490,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,24.0,89,101600,541,1381,425,266,246,169,28100,24200,18600,3610,50,5.1,9,8,11.3,900,9,999999999,480,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,23.0,84,101600,774,1381,417,486,520,194,51500,52900,21700,4370,60,4.1,9,7,11.3,3000,9,999999999,480,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,23.0,79,101600,947,1381,414,542,376,284,58800,40400,31000,7930,50,3.6,5,5,11.3,77777,9,999999999,469,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,23.0,79,101500,1046,1381,422,600,343,339,65000,37100,36800,10930,50,3.1,9,7,11.3,7500,9,999999999,459,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,23.0,70,101400,1065,1381,441,449,114,360,49100,12100,39800,12240,30,3.1,9,8,11.3,3000,9,999999999,459,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,22.0,70,101400,1004,1381,427,449,119,362,49400,12200,40500,12930,30,3.1,9,7,11.3,3000,9,999999999,469,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,22.0,66,101200,865,1381,439,379,136,293,41300,14300,32300,8140,40,2.6,9,8,11.3,3000,9,999999999,469,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.9,22.0,66,101200,659,1381,439,404,497,166,42500,49400,18800,3450,30,2.4,9,8,11.3,3000,9,999999999,480,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,28.3,22.1,69,101200,400,1381,429,216,404,98,22500,35300,12200,1830,30,2.3,9,7,11.3,3000,9,999999999,490,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,22.0,74,101200,112,1208,421,18,0,18,2100,0,2100,670,20,2.1,9,7,11.3,3000,9,999999999,490,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,23.0,84,101300,0,0,423,0,0,0,0,0,0,0,10,1.5,9,8,11.3,3000,9,999999999,500,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.9,23.1,85,101300,0,0,423,0,0,0,0,0,0,0,20,1.6,9,8,11.3,3900,9,999999999,509,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.8,23.1,85,101300,0,0,422,0,0,0,0,0,0,0,20,1.7,9,8,11.3,4800,9,999999999,509,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.8,23.1,85,101300,0,0,416,0,0,0,0,0,0,0,30,1.9,9,7,11.3,5700,9,999999999,519,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.9,23.1,85,101300,0,0,416,0,0,0,0,0,0,0,30,2.0,9,7,11.3,6600,9,999999999,530,0.1360,0,88,0.130,999.0,99.0 +2001,10,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,23.0,84,101200,0,0,417,0,0,0,0,0,0,0,40,2.1,9,7,11.3,7500,9,999999999,530,0.1360,0,88,0.130,999.0,99.0 +2001,10,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,23.0,100,101200,0,0,415,0,0,0,0,0,0,0,80,1.5,9,9,11.3,7500,9,999999999,540,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101100,0,0,409,0,0,0,0,0,0,0,40,2.1,9,9,11.3,7500,9,999999999,540,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,24.0,94,101100,0,0,428,0,0,0,0,0,0,0,40,1.0,9,9,11.3,7500,9,999999999,530,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.9,23.9,94,101100,0,0,427,0,0,0,0,0,0,0,50,1.3,9,9,11.3,4950,9,999999999,530,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,24.0,94,101100,0,0,428,0,0,0,0,0,0,0,50,1.5,9,9,11.3,2400,9,999999999,530,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101200,0,0,409,0,0,0,0,0,0,0,70,1.5,9,9,11.3,2100,9,999999999,519,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,23.0,100,101200,21,541,415,0,0,0,0,0,0,0,100,1.5,9,9,11.3,2700,9,999999999,519,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.0,89,101300,260,1381,427,71,0,71,7900,0,7900,2360,130,2.1,9,9,11.3,2700,9,999999999,519,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.0,89,101300,537,1381,427,252,189,178,27200,18400,20000,4150,100,1.5,9,9,11.3,3000,9,999999999,509,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,23.0,84,101300,770,1381,432,355,159,266,38500,16500,29300,6930,130,2.6,9,9,11.3,3000,9,999999999,509,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,23.0,79,101300,942,1381,438,599,509,250,63500,52700,27400,6810,120,2.1,9,9,11.3,3000,9,999999999,509,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,23.0,74,101300,1041,1381,444,416,90,348,45800,9200,38900,13040,180,1.5,9,9,11.3,3000,9,999999999,500,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,24.0,74,101200,1061,1381,451,586,306,351,63500,33100,38100,11600,210,2.6,9,9,11.3,3000,9,999999999,500,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,23.0,74,101100,999,1381,444,420,119,334,46000,12600,36900,10470,190,2.6,9,9,11.3,3000,9,999999999,490,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,24.0,74,101000,860,1381,451,498,391,253,53700,41700,27700,6450,200,3.6,9,9,11.3,3000,9,999999999,490,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,24.0,74,101000,654,1381,451,355,339,194,37900,34800,21400,4300,190,3.6,9,9,11.3,7500,9,999999999,480,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,24.0,79,101100,395,1381,446,124,28,116,13600,2500,12900,3000,210,3.6,9,9,11.3,7500,9,999999999,469,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.7,23.9,85,101100,108,1186,438,17,0,17,2000,0,2000,640,210,2.9,9,9,11.3,7500,9,999999999,459,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,24.0,89,101200,0,0,434,0,0,0,0,0,0,0,210,2.1,9,9,11.3,7500,9,999999999,459,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,24.0,94,101200,0,0,428,0,0,0,0,0,0,0,210,2.1,9,9,11.3,7500,9,999999999,450,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.5,23.0,97,101200,0,0,403,0,0,0,0,0,0,0,190,1.6,7,7,11.3,14750,9,999999999,440,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101200,0,0,386,0,0,0,0,0,0,0,170,1.0,5,5,11.3,77777,9,999999999,440,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101200,0,0,386,0,0,0,0,0,0,0,150,1.0,5,5,11.3,77777,9,999999999,430,0.1350,0,88,0.130,999.0,99.0 +2001,10,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,24.0,94,101200,0,0,404,0,0,0,0,0,0,0,140,2.6,5,5,11.3,77777,9,999999999,419,0.1350,0,88,0.130,999.0,99.0 +2001,10,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,23.0,100,101200,0,0,392,0,0,0,0,0,0,0,150,2.6,5,5,11.3,77777,9,999999999,409,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,23.0,100,101200,0,0,392,0,0,0,0,0,0,0,160,2.6,5,5,11.3,77777,9,999999999,430,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,25.0,100,101200,0,0,405,0,0,0,0,0,0,0,160,3.1,5,5,11.3,77777,9,999999999,440,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,25.0,94,101200,0,0,419,0,0,0,0,0,0,0,150,4.6,9,7,0.8,60,9,999999999,450,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,25.0,100,101200,0,0,420,0,0,0,0,0,0,0,160,3.1,9,8,4.8,60,9,999999999,459,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,24.0,100,101300,0,0,407,0,0,0,0,0,0,0,160,2.6,9,7,4.8,60,9,999999999,469,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,25.0,100,101300,20,518,399,0,0,0,0,0,0,0,160,3.1,3,3,8.0,77777,9,999999999,480,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,26.0,100,101400,256,1382,421,134,271,83,13800,19400,10200,1650,170,2.6,9,7,8.0,300,9,999999999,490,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,26.0,100,101500,534,1382,406,324,568,104,33400,53100,12800,1990,190,3.6,3,3,11.3,77777,9,999999999,500,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,26.0,89,101500,766,1382,423,480,478,215,50300,48500,23300,4870,190,3.1,5,5,11.3,77777,9,999999999,509,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,26.0,79,101500,938,1382,435,239,24,223,26400,2400,24800,8140,200,4.1,5,5,11.3,77777,9,999999999,519,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,26.0,84,101400,1037,1382,429,655,482,293,69400,50100,31700,9310,200,5.1,5,5,11.3,77777,9,999999999,530,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,26.0,75,101400,1056,1382,440,532,258,335,57900,27900,36500,10910,210,5.7,5,5,11.3,77777,9,999999999,540,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,31.0,26.0,75,101300,994,1382,440,683,669,200,71600,67500,22900,5730,200,5.1,5,5,11.3,77777,9,999999999,540,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,25.0,75,101300,855,1382,433,520,474,226,55000,48700,24700,5530,200,5.1,5,5,11.3,77777,9,999999999,540,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,25.0,79,101300,649,1382,436,344,339,184,36800,34800,20400,4030,210,5.1,9,7,11.3,7500,9,999999999,530,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,26.0,89,101400,390,1382,439,210,403,95,21800,34900,11900,1770,210,3.6,9,8,11.3,7500,9,999999999,530,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,25.0,94,101400,104,1163,419,14,0,14,1700,0,1700,540,190,3.1,9,7,11.3,7500,9,999999999,530,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,26.0,89,101400,0,0,439,0,0,0,0,0,0,0,200,3.1,9,8,11.3,7500,9,999999999,519,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,25.0,100,101500,0,0,414,0,0,0,0,0,0,0,170,2.6,9,7,11.3,7500,9,999999999,519,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,26.0,94,101600,0,0,433,0,0,0,0,0,0,0,160,2.1,9,8,11.3,4500,9,999999999,519,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,25.0,94,101600,0,0,419,0,0,0,0,0,0,0,140,2.1,9,7,11.3,4500,9,999999999,509,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,25.0,100,101600,0,0,429,0,0,0,0,0,0,0,250,3.6,10,9,11.3,900,9,999999999,509,0.1340,0,88,0.130,999.0,99.0 +2001,10,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,23.0,100,101600,0,0,415,0,0,0,0,0,0,0,300,2.1,10,9,8.0,4500,9,999999999,509,0.1340,0,88,0.130,999.0,99.0 +2001,10,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,25.0,100,101600,0,0,409,0,0,0,0,0,0,0,270,2.1,9,6,11.3,4500,9,999999999,500,0.1320,0,88,0.130,7.0,6.0 +2001,10,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,26.0,94,101600,0,0,421,0,0,0,0,0,0,0,230,1.5,9,6,11.3,7500,9,999999999,500,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,26.0,100,101500,0,0,416,0,0,0,0,0,0,0,210,2.6,9,6,11.3,7500,9,999999999,500,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.0,26.0,94,101600,0,0,421,0,0,0,0,0,0,0,220,2.6,9,6,11.3,7500,9,999999999,500,0.1320,0,88,0.130,0.0,3.0 +2001,10,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,26.0,94,101600,0,0,421,0,0,0,0,0,0,0,240,3.1,9,6,11.3,7500,9,999999999,500,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,24.0,100,101600,0,0,402,0,0,0,0,0,0,0,250,1.5,9,6,11.3,3000,9,999999999,500,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.0,24.0,100,101700,19,519,402,0,0,0,0,0,0,0,220,3.1,9,6,11.3,3000,9,999999999,500,0.1320,0,88,0.130,0.0,6.0 +2001,10,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,25.0,100,101700,253,1383,409,31,0,31,3700,0,3700,1230,230,2.6,9,6,11.3,1350,9,999999999,500,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,25.0,100,101800,530,1383,409,130,0,130,14800,0,14800,5080,190,3.6,9,6,11.3,3000,9,999999999,500,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,24.0,89,101800,762,1383,413,494,551,189,52300,55900,21300,4210,230,1.5,9,6,11.3,3600,9,999999999,500,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,25.0,84,101800,934,1383,426,618,594,216,66500,61500,24800,5740,250,2.1,9,6,11.3,3600,9,999999999,500,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,24.0,70,101700,1032,1383,432,349,54,309,38500,5500,34400,11700,190,3.1,5,5,11.3,77777,9,999999999,500,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.0,25.0,89,101600,1051,1383,420,359,36,331,39500,3700,36700,12630,250,1.5,9,6,11.3,7500,9,999999999,500,0.1320,0,88,0.130,0.0,6.0 +2001,10,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,25.0,75,101600,989,1383,437,490,215,336,53600,22800,37300,10410,310,4.1,9,6,11.3,7500,9,999999999,480,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,23.0,79,101600,850,1383,417,475,326,274,50900,34700,29500,7040,320,4.6,9,6,11.3,7500,9,999999999,469,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.0,23.0,74,101600,644,1383,423,193,18,185,21900,1500,21300,7230,310,2.6,9,6,11.3,7500,9,999999999,450,0.1320,0,88,0.130,0.0,3.0 +2001,10,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,23.0,74,101600,386,1383,423,119,11,116,13200,700,13000,3950,320,1.0,9,6,11.3,7500,9,999999999,440,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,22.0,74,101700,100,1164,416,14,0,14,1700,0,1700,540,340,1.0,9,6,11.3,7500,9,999999999,419,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.0,22.0,79,101700,0,0,411,0,0,0,0,0,0,0,350,1.0,9,6,11.3,7500,9,999999999,409,0.1320,0,88,0.130,0.0,6.0 +2001,10,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.0,83,101800,0,0,405,0,0,0,0,0,0,0,340,1.5,9,6,11.3,7500,9,999999999,400,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,23.0,84,101900,0,0,412,0,0,0,0,0,0,0,330,2.6,9,6,11.3,3600,9,999999999,379,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,23.0,84,101900,0,0,432,0,0,0,0,0,0,0,340,1.0,10,9,11.3,3600,9,999999999,370,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,22.0,79,101900,0,0,431,0,0,0,0,0,0,0,110,1.5,10,9,11.3,7500,9,999999999,350,0.1320,0,88,0.130,999.0,99.0 +2001,10,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.0,89,101900,0,0,427,0,0,0,0,0,0,0,280,2.1,10,9,11.3,7500,9,999999999,340,0.1320,0,88,0.130,999.0,99.0 +2001,10,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,24.0,94,101800,0,0,428,0,0,0,0,0,0,0,320,3.6,9,9,11.3,3000,9,999999999,320,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,23.0,84,101800,0,0,432,0,0,0,0,0,0,0,330,2.6,9,9,11.3,3000,9,999999999,309,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,22.0,89,101900,0,0,432,0,0,0,0,0,0,0,10,2.6,10,10,11.3,3000,9,999999999,300,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,10.0,41,101900,0,0,415,0,0,0,0,0,0,0,40,7.2,10,10,11.3,3000,9,999999999,279,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,8.0,38,102000,0,0,396,0,0,0,0,0,0,0,30,4.1,9,9,11.3,3300,9,999999999,270,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,7.0,38,102000,0,0,389,0,0,0,0,0,0,0,20,7.2,9,9,11.3,3000,9,999999999,250,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,6.0,35,102100,18,496,388,0,0,0,0,0,0,0,20,4.1,9,9,11.3,3000,9,999999999,240,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,6.0,38,102100,249,1384,394,63,0,63,7000,0,7000,2140,30,5.1,10,10,11.3,3000,9,999999999,220,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.1,6.3,36,102100,526,1384,400,224,145,168,24200,14100,18800,3900,30,4.9,10,10,11.3,4125,9,999999999,209,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.1,6.4,34,102100,758,1384,406,468,490,198,49200,49700,21900,4420,20,4.6,10,10,11.3,5250,9,999999999,200,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.7,6.3,33,102100,929,1384,397,593,600,189,62000,60300,21300,4910,20,4.4,9,9,11.3,6375,9,999999999,179,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,6.0,31,102200,1028,1384,399,625,470,275,66500,48800,30100,8540,10,4.1,9,9,11.3,7500,9,999999999,170,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.2,6.6,32,102100,1046,1384,386,634,450,293,67200,46800,31700,9440,10,3.9,7,7,11.3,14750,9,999999999,150,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,7.0,34,102000,984,1384,378,653,657,185,68900,66500,21400,5260,10,3.6,5,5,11.3,77777,9,999999999,160,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,6.0,30,102000,845,1384,381,571,670,160,59700,67100,18600,3810,50,4.6,5,5,11.3,77777,9,999999999,160,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,5.0,31,102000,640,1384,370,370,432,170,38700,42600,18900,3510,50,3.1,5,5,11.3,77777,9,999999999,160,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.6,5.7,33,102000,381,1384,372,175,196,121,18300,17100,13600,2470,50,2.8,6,6,11.3,17167,9,999999999,160,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.5,6.2,37,102100,96,1142,378,20,44,17,2300,2000,2100,280,50,2.4,8,8,11.3,12333,9,999999999,160,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,7.0,40,102100,0,0,384,0,0,0,0,0,0,0,50,2.1,9,9,11.3,7500,9,999999999,170,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,5.0,37,102200,0,0,355,0,0,0,0,0,0,0,30,2.6,5,5,11.3,77777,9,999999999,170,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,6.0,43,102300,0,0,352,0,0,0,0,0,0,0,30,2.1,5,5,11.3,77777,9,999999999,170,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,5.0,40,102300,0,0,350,0,0,0,0,0,0,0,10,1.5,5,5,11.3,77777,9,999999999,170,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.6,4.3,41,102300,0,0,343,0,0,0,0,0,0,0,10,1.7,5,5,11.3,77777,9,999999999,170,0.1310,0,88,0.130,999.0,99.0 +2001,10,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.3,3.6,43,102200,0,0,336,0,0,0,0,0,0,0,20,1.9,5,5,11.3,77777,9,999999999,179,0.1310,0,88,0.130,999.0,99.0 +2001,10,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.0,44,102200,0,0,329,0,0,0,0,0,0,0,20,2.1,5,5,11.3,77777,9,999999999,179,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,2.0,44,102200,0,0,336,0,0,0,0,0,0,0,360,4.1,9,8,11.3,7500,9,999999999,170,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,1.0,41,102200,0,0,329,0,0,0,0,0,0,0,10,4.1,9,7,11.3,7500,9,999999999,170,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,0.0,36,102200,0,0,338,0,0,0,0,0,0,0,10,4.1,9,8,11.3,7500,9,999999999,160,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,0.0,36,102300,0,0,333,0,0,0,0,0,0,0,360,4.6,9,7,11.3,7500,9,999999999,160,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-1.0,33,102300,0,0,337,0,0,0,0,0,0,0,10,5.1,9,8,11.3,7500,9,999999999,150,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-1.0,35,102400,17,473,327,0,0,0,0,0,0,0,20,5.7,9,7,11.3,7500,9,999999999,150,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,0.0,38,102400,246,1385,333,106,104,88,11400,7600,10000,1880,30,5.7,9,8,11.3,3600,9,999999999,139,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.1,-0.9,33,102500,522,1385,337,304,449,134,31700,42400,15600,2610,30,6.0,9,8,11.3,5550,9,999999999,139,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,-2.0,28,102500,754,1385,340,356,184,255,38600,19000,28200,6570,30,6.2,9,8,11.3,7500,9,999999999,139,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,-2.0,27,102500,925,1385,340,542,394,278,58700,42300,30300,7560,30,7.2,9,7,11.3,7500,9,999999999,129,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.1,-2.1,25,102400,1023,1385,345,502,199,355,54900,21100,39300,11410,10,5.9,9,7,11.3,7500,9,999999999,129,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,-2.0,24,102300,1042,1385,349,442,102,366,48800,10500,40900,13540,350,4.6,9,7,11.3,7500,9,999999999,120,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,-1.0,26,102200,979,1385,356,467,173,344,50900,18300,37900,10540,330,5.1,9,8,11.3,7500,9,999999999,120,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,1.0,32,102200,841,1385,348,435,255,280,46500,27100,30000,7180,330,5.1,9,7,11.3,7500,9,999999999,110,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,-1.0,29,102100,635,1385,346,316,193,228,34200,19400,25200,5530,350,4.1,9,8,11.3,7500,9,999999999,110,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,1.0,34,102100,376,1385,343,194,447,72,19900,38100,9500,1310,360,2.6,9,7,11.3,7500,9,999999999,100,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.0,44,102200,93,1119,342,26,162,15,3100,8800,2300,290,350,2.6,9,8,11.3,7500,9,999999999,100,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,102200,0,0,333,0,0,0,0,0,0,0,350,2.6,9,7,11.3,7500,9,999999999,100,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.5,4.0,53,102300,0,0,330,0,0,0,0,0,0,0,360,2.6,9,7,11.3,7500,9,999999999,89,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,4.0,54,102300,0,0,328,0,0,0,0,0,0,0,360,2.6,9,7,11.3,7500,9,999999999,89,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,5.0,58,102300,0,0,334,0,0,0,0,0,0,0,10,2.6,9,8,11.3,7500,9,999999999,80,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,4.0,54,102400,0,0,328,0,0,0,0,0,0,0,10,2.6,9,7,11.3,7500,9,999999999,80,0.1290,0,88,0.130,999.0,99.0 +2001,10,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,1.0,41,102400,0,0,334,0,0,0,0,0,0,0,30,3.1,9,8,11.3,7500,9,999999999,69,0.1290,0,88,0.130,999.0,99.0 +2001,10,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,0.0,44,102400,0,0,324,0,0,0,0,0,0,0,20,3.6,9,8,11.3,7500,9,999999999,69,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,0.0,44,102400,0,0,319,0,0,0,0,0,0,0,20,4.1,9,7,11.3,7500,9,999999999,69,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,-1.0,40,102400,0,0,323,0,0,0,0,0,0,0,20,3.6,9,8,11.3,7500,9,999999999,80,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-1.0,43,102400,0,0,313,0,0,0,0,0,0,0,20,3.1,9,7,11.3,7500,9,999999999,80,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,0.0,50,102500,0,0,315,0,0,0,0,0,0,0,20,3.6,9,8,11.3,7500,9,999999999,80,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,0.0,50,102500,0,0,310,0,0,0,0,0,0,0,30,3.1,9,7,11.3,7500,9,999999999,80,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,2.0,57,102600,16,473,317,0,0,0,0,0,0,0,30,2.6,9,8,11.3,7500,9,999999999,89,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,2.0,57,102700,242,1385,306,107,194,73,11200,13500,8800,1430,20,4.1,5,5,11.3,77777,9,999999999,89,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.6,3.8,55,102700,518,1385,319,319,538,117,33700,50800,14600,2240,30,5.0,5,5,11.3,77777,9,999999999,89,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.1,5.4,52,102700,750,1385,333,396,264,252,42000,27700,27000,6060,30,5.9,5,5,11.3,77777,9,999999999,89,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.2,6.8,50,102700,920,1385,344,618,667,174,64900,67300,20100,4510,40,6.8,5,5,11.3,77777,9,999999999,100,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,8.0,49,102700,1018,1385,354,656,578,229,70900,60200,26500,6890,40,7.7,5,5,11.3,77777,9,999999999,100,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,8.0,43,102600,1037,1385,364,717,708,186,76000,72000,21900,5790,40,8.2,5,5,11.3,77777,9,999999999,100,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,10.0,49,102500,975,1385,366,676,782,125,71300,78600,15800,3360,40,6.2,5,5,11.3,77777,9,999999999,100,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,9.0,46,102500,836,1385,365,570,759,111,59600,75500,13900,2530,60,8.7,5,5,11.3,77777,9,999999999,110,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,9.0,46,102500,630,1385,365,402,648,106,42000,63000,13300,2170,50,7.2,5,5,11.3,77777,9,999999999,110,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,9.0,49,102500,372,1385,355,179,346,86,18800,29400,10800,1590,40,7.2,3,3,11.3,77777,9,999999999,110,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,9.0,52,102600,90,1097,346,18,55,15,2200,2400,2000,250,30,4.1,2,2,11.3,77777,9,999999999,110,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,10.0,59,102700,0,0,346,0,0,0,0,0,0,0,30,4.1,3,3,11.3,77777,9,999999999,120,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,10.0,63,102700,0,0,338,0,0,0,0,0,0,0,30,3.6,2,2,11.3,77777,9,999999999,120,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,10.0,68,102800,0,0,337,0,0,0,0,0,0,0,20,4.1,3,3,11.3,77777,9,999999999,120,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,102800,0,0,329,0,0,0,0,0,0,0,10,3.1,2,2,11.3,77777,9,999999999,120,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,102800,0,0,332,0,0,0,0,0,0,0,10,3.6,3,3,11.3,77777,9,999999999,120,0.1280,0,88,0.130,999.0,99.0 +2001,10,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,9.0,72,102800,0,0,332,0,0,0,0,0,0,0,20,3.1,5,5,11.3,77777,9,999999999,129,0.1280,0,88,0.130,999.0,99.0 +2001,10,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,9.0,77,102800,0,0,334,0,0,0,0,0,0,0,20,4.6,9,7,11.3,1200,9,999999999,129,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,102800,0,0,340,0,0,0,0,0,0,0,20,5.1,9,8,11.3,1200,9,999999999,129,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.4,10.0,80,102800,0,0,342,0,0,0,0,0,0,0,30,4.6,9,8,11.3,1200,9,999999999,129,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,102700,0,0,345,0,0,0,0,0,0,0,30,4.1,9,8,11.3,1200,9,999999999,129,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,102800,0,0,339,0,0,0,0,0,0,0,20,4.1,9,7,11.3,1200,9,999999999,129,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,102800,0,0,345,0,0,0,0,0,0,0,30,5.1,9,8,11.3,1200,9,999999999,129,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,102900,15,450,339,0,0,0,0,0,0,0,30,3.1,9,7,11.3,1500,9,999999999,129,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,102900,238,1386,350,54,0,54,6100,0,6100,1880,20,4.1,9,8,11.3,1500,9,999999999,139,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,10.0,63,103000,514,1386,354,145,0,145,16300,0,16300,5370,20,4.1,9,7,11.3,1500,9,999999999,139,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,11.0,60,103000,745,1386,371,218,12,211,24900,1000,24300,8610,20,4.6,9,8,11.3,1800,9,999999999,139,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.7,12.1,58,102900,916,1386,375,492,303,291,53000,32500,31500,7910,20,4.6,7,7,11.3,11900,9,999999999,139,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,13.0,57,102800,1014,1386,375,545,283,338,58900,30500,36500,10400,10,4.6,5,5,11.3,77777,9,999999999,139,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,12.0,50,102800,1032,1386,379,717,666,220,75000,67100,24900,6640,40,6.2,5,5,11.3,77777,9,999999999,139,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,13.0,50,102700,970,1386,399,641,656,180,67500,66400,20900,5000,50,8.2,9,8,11.3,2400,9,999999999,139,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,13.0,50,102600,831,1386,376,497,474,211,52600,48600,23300,5000,40,7.7,2,2,11.3,77777,9,999999999,150,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,14.0,54,102600,626,1386,386,391,595,121,40400,57400,14400,2420,50,8.7,5,5,11.3,77777,9,999999999,150,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,14.0,57,102600,367,1386,381,197,518,59,20500,44200,8700,1110,50,7.2,5,5,11.3,77777,9,999999999,150,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,13.0,57,102600,87,1074,389,18,92,13,2300,4300,2000,220,40,6.7,9,8,11.3,1200,9,999999999,160,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.0,73,102700,0,0,375,0,0,0,0,0,0,0,20,4.6,9,7,11.3,1200,9,999999999,160,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,14.0,73,102800,0,0,356,0,0,0,0,0,0,0,20,4.1,3,3,11.3,77777,9,999999999,160,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,14.0,73,102800,0,0,361,0,0,0,0,0,0,0,20,5.1,5,5,11.3,77777,9,999999999,160,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,14.0,77,102800,0,0,351,0,0,0,0,0,0,0,20,4.1,3,3,11.3,77777,9,999999999,170,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,14.0,77,102800,0,0,364,0,0,0,0,0,0,0,20,3.6,9,7,11.3,2700,9,999999999,170,0.1260,0,88,0.130,999.0,99.0 +2001,10,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,102700,0,0,363,0,0,0,0,0,0,0,30,3.6,9,8,11.3,2700,9,999999999,170,0.1260,0,88,0.130,999.0,99.0 +2001,10,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,102700,0,0,350,0,0,0,0,0,0,0,30,4.6,5,5,11.3,77777,9,999999999,179,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,102600,0,0,350,0,0,0,0,0,0,0,30,4.1,5,5,11.3,77777,9,999999999,179,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,102600,0,0,363,0,0,0,0,0,0,0,30,4.6,9,8,11.3,1200,9,999999999,179,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,102600,0,0,350,0,0,0,0,0,0,0,30,4.6,5,5,11.3,77777,9,999999999,179,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,13.0,82,102600,0,0,358,0,0,0,0,0,0,0,30,5.1,9,8,11.3,7500,9,999999999,179,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,13.0,82,102600,0,0,353,0,0,0,0,0,0,0,30,4.1,9,7,11.3,7500,9,999999999,189,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,102600,14,428,363,0,0,0,0,0,0,0,30,4.6,9,8,11.3,1200,9,999999999,189,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,14.0,77,102700,234,1387,364,66,0,66,7300,0,7300,2140,30,5.1,9,7,11.3,2400,9,999999999,189,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,14.0,73,102700,510,1387,374,160,13,155,17900,1000,17500,5570,30,7.2,9,8,11.3,2400,9,999999999,189,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.4,14.8,66,102700,741,1387,382,310,92,261,34100,9300,29100,7780,30,6.7,8,7,11.3,8933,9,999999999,189,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.4,15.5,61,102600,911,1387,389,398,127,314,43300,13400,34500,9020,40,6.2,6,6,11.3,15467,9,999999999,189,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,16.0,57,102500,1009,1387,394,668,602,228,69400,60400,25300,6550,40,5.7,5,5,11.3,77777,9,999999999,200,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,16.0,54,102500,1027,1387,400,682,624,218,71300,62900,24500,6520,30,4.6,5,5,11.3,77777,9,999999999,200,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,15.0,51,102400,965,1387,398,647,692,164,68600,70300,19500,4570,40,5.7,5,5,11.3,77777,9,999999999,200,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,17.0,58,102300,826,1387,416,542,652,152,56800,65300,17700,3550,30,6.7,9,8,11.3,3000,9,999999999,200,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,17.0,61,102300,621,1387,404,337,379,166,35100,37200,18400,3400,50,7.2,9,7,11.3,2100,9,999999999,200,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.3,17.1,64,102400,363,1387,400,164,200,111,17100,17100,12700,2230,50,6.1,9,7,11.3,1950,9,999999999,200,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,17.0,69,102400,83,1052,393,17,106,11,2100,5700,1700,220,40,5.1,9,7,11.3,1800,9,999999999,200,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,17.0,73,102400,0,0,394,0,0,0,0,0,0,0,40,5.1,9,8,11.3,2100,9,999999999,200,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,17.0,76,102500,0,0,390,0,0,0,0,0,0,0,40,4.9,9,8,11.3,2100,9,999999999,200,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.6,17.0,80,102500,0,0,380,0,0,0,0,0,0,0,40,4.8,9,7,11.3,2100,9,999999999,200,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.0,83,102500,0,0,377,0,0,0,0,0,0,0,40,4.6,9,7,11.3,2100,9,999999999,200,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.0,16.5,80,102500,0,0,377,0,0,0,0,0,0,0,40,4.4,9,7,11.3,2100,9,999999999,200,0.1250,0,88,0.130,999.0,99.0 +2001,10,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.0,78,102400,0,0,376,0,0,0,0,0,0,0,40,4.1,9,7,11.3,2100,9,999999999,209,0.1250,0,88,0.130,999.0,99.0 +2001,10,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,16.0,83,102400,0,0,385,0,0,0,0,0,0,0,30,3.1,9,9,11.3,6000,9,999999999,209,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,16.0,83,102400,0,0,385,0,0,0,0,0,0,0,40,3.6,9,9,11.3,6000,9,999999999,209,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,16.0,83,102300,0,0,385,0,0,0,0,0,0,0,50,4.1,9,9,11.3,6000,9,999999999,200,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,102300,0,0,380,0,0,0,0,0,0,0,40,5.7,9,9,11.3,6000,9,999999999,200,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,102300,0,0,380,0,0,0,0,0,0,0,40,3.1,9,9,11.3,6000,9,999999999,200,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,102300,0,0,380,0,0,0,0,0,0,0,40,4.1,9,9,11.3,6000,9,999999999,200,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,102400,13,428,380,0,0,0,0,0,0,0,40,3.6,9,9,11.3,7500,9,999999999,200,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,102400,231,1388,380,78,23,74,8500,1800,8200,1720,40,3.1,9,9,11.3,4500,9,999999999,200,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,17.0,78,102500,506,1388,397,306,444,143,31500,41500,16300,2810,40,4.1,9,9,11.3,4500,9,999999999,200,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,17.0,73,102400,737,1388,402,277,80,235,30500,8000,26200,7150,50,5.1,9,9,11.3,4500,9,999999999,200,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,17.0,65,102400,907,1388,413,537,412,266,58100,44200,29100,7060,30,6.2,9,9,11.3,7500,9,999999999,200,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,18.0,61,102300,1004,1388,426,637,500,274,67500,51900,29800,8160,60,6.7,9,9,11.3,4500,9,999999999,200,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,17.0,54,102200,1023,1388,430,353,60,308,38900,6100,34300,11520,50,6.2,9,9,11.3,4500,9,999999999,200,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,18.0,61,102100,960,1388,426,332,36,307,36600,3700,34000,10810,60,8.2,9,9,11.3,7500,9,999999999,200,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,17.0,54,102100,822,1388,430,502,462,227,52600,47200,24600,5380,70,6.7,9,9,11.3,7500,9,999999999,209,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,17.0,58,102000,617,1388,425,320,280,196,34000,28300,21300,4330,70,6.2,9,9,11.3,2100,9,999999999,209,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,17.0,65,102100,359,1388,413,61,0,61,7100,0,7100,2410,100,2.6,9,9,11.3,2100,9,999999999,220,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,19.0,78,102100,81,1052,410,16,52,14,2000,2200,1900,230,120,3.1,9,9,11.3,2400,9,999999999,220,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,19.0,88,102100,0,0,399,0,0,0,0,0,0,0,40,1.0,9,9,11.3,2400,9,999999999,229,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,18.7,87,102100,0,0,391,0,0,0,0,0,0,0,40,2.0,8,8,11.3,8933,9,999999999,229,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.9,18.4,86,102200,0,0,379,0,0,0,0,0,0,0,50,3.1,6,6,11.3,15467,9,999999999,240,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.9,83,102200,0,0,377,0,0,0,0,0,0,0,50,2.9,5,5,11.3,77777,9,999999999,240,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.4,19.5,83,102200,0,0,402,0,0,0,0,0,0,0,50,2.7,9,9,11.3,7500,9,999999999,250,0.1230,0,88,0.130,999.0,99.0 +2001,10,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,20.0,94,102100,0,0,404,0,0,0,0,0,0,0,50,2.5,9,9,11.3,2700,9,999999999,250,0.1230,0,88,0.130,999.0,99.0 +1995,11,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.8,20.6,98,101900,0,0,406,0,0,0,0,0,0,0,70,2.2,9,9,11.3,5875,9,999999999,509,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.0,21.1,99,101900,0,0,407,0,0,0,0,0,0,0,60,2.0,9,9,11.3,6200,9,999999999,519,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.3,21.7,99,101900,0,0,410,0,0,0,0,0,0,0,60,1.8,9,9,11.3,6525,9,999999999,530,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.5,22.2,98,102000,0,0,412,0,0,0,0,0,0,0,60,1.6,9,9,11.3,6850,9,999999999,540,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.6,22.3,98,102000,0,0,412,0,0,0,0,0,0,0,50,1.5,9,9,11.3,7175,9,999999999,550,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,22.2,97,102000,0,0,413,0,0,0,0,0,0,0,50,1.5,9,9,11.3,7500,9,999999999,559,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,22.2,94,102000,12,405,416,1,2,1,0,0,0,0,60,2.0,9,9,11.3,3600,9,999999999,569,0.1220,0,88,0.140,14.0,24.0 +1995,11,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,102000,229,1388,419,42,20,39,4700,1500,4400,1030,80,1.5,9,9,11.3,1800,9,999999999,559,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.7,90,102000,504,1388,423,109,41,94,12000,3800,10600,2780,80,1.5,9,9,11.3,3600,9,999999999,559,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,23.3,90,102000,735,1388,427,162,88,115,18400,9200,13500,2920,80,2.0,9,9,11.3,4200,9,999999999,559,0.1220,0,88,0.140,0.0,6.0 +1995,11,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,23.8,87,102000,905,1388,434,290,91,230,32200,9600,25800,6560,90,2.0,9,9,11.3,4200,9,999999999,550,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,23.3,74,102000,1003,1388,446,325,135,227,36400,14400,26000,7100,120,2.5,9,9,11.3,4200,9,999999999,550,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.8,23.3,72,101900,1021,1388,449,441,46,407,48500,4800,45000,14330,140,1.5,9,9,11.3,4200,9,999999999,550,0.1220,0,88,0.140,0.0,6.0 +1995,11,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,23.3,67,101800,959,1388,457,422,163,309,46200,17200,34300,9250,110,2.0,9,9,11.3,7500,9,999999999,550,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,22.7,70,101800,820,1388,449,167,73,124,19100,7700,14500,3320,90,2.0,9,9,11.3,7500,9,999999999,540,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.7,72,101800,615,1388,446,243,136,183,26500,13700,20500,4400,100,1.0,9,9,11.3,7500,9,999999999,540,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.7,72,101800,357,1388,446,97,6,95,10800,300,10700,3330,80,1.0,9,9,11.3,7500,9,999999999,540,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,21.1,69,101900,79,1030,437,16,3,16,1900,0,1900,590,70,2.0,9,9,11.3,7500,9,999999999,530,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,26.3,21.6,75,101900,0,0,423,0,0,0,0,0,0,0,70,2.0,9,8,11.3,8708,9,999999999,530,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.8,21.7,78,101900,0,0,421,0,0,0,0,0,0,0,80,1.9,8,8,11.3,9917,9,999999999,530,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.3,21.8,81,101900,0,0,411,0,0,0,0,0,0,0,80,1.9,8,7,11.3,11125,9,999999999,519,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,25.0,21.7,82,101900,0,0,405,0,0,0,0,0,0,0,80,1.8,7,6,11.3,12333,9,999999999,519,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.8,21.9,84,101900,0,0,404,0,0,0,0,0,0,0,80,1.8,7,6,11.3,13542,9,999999999,519,0.1220,0,88,0.140,999.0,99.0 +1995,11,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,22.1,87,101900,0,0,399,0,0,0,0,0,0,0,90,1.8,6,5,11.3,14750,9,999999999,509,0.1220,0,88,0.140,999.0,99.0 +1995,11,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.3,22.2,88,101900,0,0,395,0,0,0,0,0,0,0,90,1.7,6,4,11.3,15958,9,999999999,509,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.0,22.3,90,101900,0,0,394,0,0,0,0,0,0,0,90,1.7,5,4,11.3,17167,9,999999999,509,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.7,22.2,91,101900,0,0,389,0,0,0,0,0,0,0,90,1.6,5,3,11.3,18375,9,999999999,500,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.6,22.4,93,101900,0,0,385,0,0,0,0,0,0,0,100,1.6,4,2,11.3,19583,9,999999999,500,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.4,22.2,93,101900,0,0,384,0,0,0,0,0,0,0,100,1.5,4,2,11.3,20792,9,999999999,500,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,22.2,94,101900,0,0,378,0,0,0,0,0,0,0,100,1.5,3,1,11.3,77777,9,999999999,500,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.8,22.2,96,101900,11,405,375,2,12,1,0,0,0,0,100,1.5,2,1,8.0,77777,9,999999999,490,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.9,23.3,96,102000,225,1389,382,93,294,45,9800,20000,6600,800,120,2.1,3,1,11.2,77777,9,999999999,490,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,22.7,85,102000,500,1389,390,276,549,78,28900,51100,10400,1530,130,1.5,2,1,11.3,77777,9,999999999,490,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.7,74,102000,731,1389,401,457,606,138,47700,59800,16100,2960,120,1.0,3,1,11.3,77777,9,999999999,490,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,22.2,68,101900,901,1389,407,593,736,116,62500,73700,14500,2840,170,2.0,2,1,11.3,77777,9,999999999,490,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.2,65,101900,998,1389,410,680,768,128,71900,77300,16100,3540,250,2.0,3,1,11.3,77777,9,999999999,490,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,22.2,63,101800,1016,1389,413,687,739,146,71700,74000,17400,3990,220,2.0,2,1,11.3,77777,9,999999999,490,0.1210,0,88,0.140,0.0,6.0 +1995,11,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.7,67,101700,954,1389,411,632,702,150,67500,71500,18200,4140,210,3.0,3,1,11.3,77777,9,999999999,490,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,22.2,65,101700,816,1389,410,524,698,114,56100,70600,14500,2730,210,3.6,2,1,11.3,77777,9,999999999,490,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.8,21.6,65,101700,610,1389,406,363,608,96,38200,58900,12200,1970,210,3.0,3,1,11.3,77777,9,999999999,480,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.2,72,101700,353,1389,401,176,406,73,18700,33900,10000,1330,220,2.0,2,1,11.3,77777,9,999999999,480,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.6,22.2,82,101700,77,1030,390,22,68,17,2500,2800,2200,280,220,1.5,3,1,11.2,77777,9,999999999,480,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.7,90,101700,0,0,384,0,0,0,0,0,0,0,240,0.5,2,1,11.3,77777,9,999999999,480,0.1210,0,88,0.140,0.0,6.0 +1995,11,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101700,0,0,387,0,0,0,0,0,0,0,0,0.0,3,1,11.3,77777,9,999999999,480,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,22.6,89,101700,0,0,384,0,0,0,0,0,0,0,0,0.0,3,1,11.3,77777,9,999999999,480,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.1,22.5,91,101700,0,0,382,0,0,0,0,0,0,0,0,0.0,3,1,11.3,77777,9,999999999,480,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,22.5,92,101700,0,0,381,0,0,0,0,0,0,0,0,0.0,3,1,11.3,77777,9,999999999,480,0.1210,0,88,0.140,999.0,99.0 +1995,11,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.5,22.5,94,101700,0,0,379,0,0,0,0,0,0,0,0,0.0,3,1,11.3,77777,9,999999999,480,0.1210,0,88,0.140,999.0,99.0 +1995,11,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.4,22.5,95,101700,0,0,384,0,0,0,0,0,0,0,0,0.0,3,2,11.3,77777,9,999999999,480,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.1,22.4,96,101700,0,0,382,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,480,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.7,22.1,96,101600,0,0,380,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,469,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.6,22.1,97,101600,0,0,379,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,469,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.3,21.8,97,101600,0,0,377,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,469,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,21.6,96,101600,0,0,377,0,0,0,0,0,0,0,0,0.0,2,2,8.0,77777,9,999999999,469,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,21.1,100,101700,10,382,374,1,1,1,0,0,0,0,0,0.0,3,3,3.2,77777,9,999999999,469,0.1190,0,88,0.140,0.0,6.0 +1995,11,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,23.3,100,101700,222,1390,384,78,123,58,8200,8100,6900,1090,160,0.5,2,2,3.2,77777,9,999999999,469,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101700,496,1390,396,242,312,131,25900,29900,15200,2650,150,1.0,3,3,11.3,77777,9,999999999,469,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,23.3,79,101800,726,1390,405,438,512,170,46600,51700,19500,3650,170,1.0,2,2,11.2,77777,9,999999999,459,0.1190,0,88,0.140,3.0,6.0 +1995,11,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.7,74,101800,896,1390,411,514,520,178,56000,53800,21200,4430,160,2.0,3,3,11.3,77777,9,999999999,459,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.7,72,101700,993,1390,410,580,482,235,62400,50100,26500,6780,220,1.5,2,2,11.3,77777,9,999999999,459,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,22.7,67,101600,1012,1390,420,672,610,227,70000,61200,25300,6530,210,2.0,3,3,11.3,77777,9,999999999,459,0.1190,0,88,0.140,0.0,6.0 +1995,11,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.4,21.1,61,101600,949,1390,414,595,587,193,62200,59100,21800,5120,210,3.6,2,2,11.3,77777,9,999999999,459,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.2,72,101500,811,1390,410,454,432,202,48200,44100,22400,4680,210,4.6,3,3,11.3,77777,9,999999999,450,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,23.3,79,101500,606,1390,405,316,365,157,34100,36900,17900,3310,210,2.5,2,2,11.3,77777,9,999999999,450,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,23.8,85,101600,349,1390,406,153,325,71,16200,27000,9400,1290,200,1.5,3,3,11.3,77777,9,999999999,450,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101600,74,1008,393,19,29,17,2200,1400,2100,350,250,1.0,2,2,11.3,77777,9,999999999,450,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.1,23.3,95,101600,0,0,388,0,0,0,0,0,0,0,260,1.0,2,2,11.3,77777,9,999999999,450,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.5,23.0,97,101600,0,0,385,0,0,0,0,0,0,0,270,1.1,2,2,11.3,77777,9,999999999,440,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.0,22.7,98,101600,0,0,382,0,0,0,0,0,0,0,280,1.1,2,2,11.3,77777,9,999999999,440,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.6,22.3,98,101700,0,0,380,0,0,0,0,0,0,0,290,1.2,2,2,11.3,77777,9,999999999,440,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.4,22.0,98,101700,0,0,378,0,0,0,0,0,0,0,300,1.2,2,2,11.3,77777,9,999999999,440,0.1190,0,88,0.140,999.0,99.0 +1995,11,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.0,21.8,99,101700,0,0,380,0,0,0,0,0,0,0,310,1.3,3,3,11.3,77777,9,999999999,440,0.1190,0,88,0.140,999.0,99.0 +1995,11,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.7,21.5,99,101700,0,0,378,0,0,0,0,0,0,0,310,1.3,3,3,11.3,77777,9,999999999,430,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.4,21.2,99,101700,0,0,376,0,0,0,0,0,0,0,320,1.3,3,3,11.3,77777,9,999999999,430,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,20.6,97,101800,0,0,374,0,0,0,0,0,0,0,330,1.4,3,3,11.3,77777,9,999999999,430,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.9,20.4,97,101800,0,0,372,0,0,0,0,0,0,0,340,1.4,3,3,11.3,77777,9,999999999,430,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.6,19.9,96,101800,0,0,370,0,0,0,0,0,0,0,350,1.5,3,3,11.3,77777,9,999999999,430,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,19.4,93,101800,0,0,369,0,0,0,0,0,0,0,360,1.5,3,3,11.3,77777,9,999999999,419,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.8,93,101900,9,359,362,1,24,1,0,0,0,0,360,1.5,2,2,11.3,77777,9,999999999,419,0.1180,0,88,0.140,0.0,6.0 +1995,11,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,18.8,87,102000,218,1391,400,56,14,54,6200,1100,6000,1330,360,2.5,9,9,11.3,390,9,999999999,419,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,18.8,84,102100,492,1391,370,253,506,74,26600,47000,9900,1450,20,3.6,2,2,11.3,77777,9,999999999,409,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.8,76,102200,722,1391,383,279,335,105,31100,34000,13500,2160,20,3.6,3,3,11.3,77777,9,999999999,409,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,18.8,76,102200,892,1391,423,191,0,191,22500,0,22500,8790,360,3.0,10,10,11.3,660,9,999999999,400,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,17.7,69,102100,989,1391,413,467,168,347,50900,17800,38200,10690,30,1.5,9,9,11.3,630,9,999999999,400,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,17.7,64,102100,1007,1391,420,546,234,376,59300,24700,41400,11810,30,1.5,9,9,11.3,870,9,999999999,390,0.1180,0,88,0.140,0.0,6.0 +1995,11,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.8,64,102000,945,1391,397,641,772,116,67900,77600,15000,3030,30,3.0,3,3,11.3,77777,9,999999999,390,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,18.8,66,102000,807,1391,390,524,722,105,54900,71700,13200,2350,40,0.5,2,2,11.3,77777,9,999999999,379,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,18.8,66,102000,602,1391,394,319,578,68,34300,56600,9700,1440,40,0.5,3,3,11.3,77777,9,999999999,370,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.0,79,102000,345,1391,383,176,390,79,18400,32200,10400,1450,330,2.5,2,2,11.3,77777,9,999999999,370,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,102000,71,985,383,20,95,13,2300,4200,1900,220,320,2.5,3,3,11.3,77777,9,999999999,359,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.1,19.3,84,102000,0,0,377,0,0,0,0,0,0,0,330,2.6,3,3,11.3,77777,9,999999999,359,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,18.8,86,102000,0,0,373,0,0,0,0,0,0,0,330,2.8,3,3,11.3,77777,9,999999999,350,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.6,18.3,87,102000,0,0,365,0,0,0,0,0,0,0,340,2.9,2,2,11.3,77777,9,999999999,350,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.0,17.6,86,102000,0,0,361,0,0,0,0,0,0,0,340,3.0,2,2,11.3,77777,9,999999999,340,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.5,17.2,87,102100,0,0,358,0,0,0,0,0,0,0,350,3.2,2,2,11.3,77777,9,999999999,340,0.1180,0,88,0.140,999.0,99.0 +1995,11,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.9,16.8,88,102100,0,0,355,0,0,0,0,0,0,0,360,3.3,2,2,11.3,77777,9,999999999,329,0.1180,0,88,0.140,999.0,99.0 +1995,11,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.5,16.3,87,102100,0,0,348,0,0,0,0,0,0,0,360,3.4,1,1,11.3,77777,9,999999999,329,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.9,15.8,88,102100,0,0,344,0,0,0,0,0,0,0,10,3.6,1,1,11.3,77777,9,999999999,320,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.3,15.1,87,102200,0,0,341,0,0,0,0,0,0,0,10,3.7,1,1,11.3,77777,9,999999999,320,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,14.7,86,102200,0,0,339,0,0,0,0,0,0,0,20,3.8,1,1,11.3,77777,9,999999999,309,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.5,13.9,85,102200,0,0,329,0,0,0,0,0,0,0,20,4.0,0,0,11.3,77777,9,999999999,309,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,13.3,83,102200,0,0,327,0,0,0,0,0,0,0,30,4.1,0,0,11.3,77777,9,999999999,300,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.6,13.3,81,102200,8,359,343,1,4,1,0,0,0,0,40,4.6,3,3,11.3,77777,9,999999999,300,0.1170,0,88,0.140,0.0,6.0 +1995,11,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.3,75,102200,214,1391,345,79,215,46,8300,14200,6100,820,40,5.1,2,2,11.3,77777,9,999999999,300,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,15.0,71,102400,488,1391,364,229,315,118,24600,30100,14000,2340,50,5.1,3,3,11.3,77777,9,999999999,300,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,15.5,66,102400,718,1391,370,451,631,125,47300,62400,15000,2690,60,5.1,2,2,11.3,77777,9,999999999,309,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,16.6,60,102300,887,1391,389,536,560,179,56000,56100,20100,4390,50,5.1,3,3,11.3,77777,9,999999999,309,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,16.6,60,102300,984,1391,385,566,479,227,61100,49800,25700,6430,50,5.1,2,2,11.3,77777,9,999999999,309,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,17.7,56,102200,1002,1391,402,595,537,208,64900,55900,24500,6020,40,4.1,3,3,11.3,77777,9,999999999,320,0.1170,0,88,0.140,0.0,6.0 +1995,11,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,17.7,56,102100,940,1391,398,639,680,178,67100,68600,20600,4710,60,2.5,2,2,11.3,77777,9,999999999,320,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,16.6,52,102100,802,1391,401,441,503,151,48200,51500,18400,3390,30,1.0,3,3,11.3,77777,9,999999999,320,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,15.5,49,102100,598,1391,395,371,601,113,38500,57500,13700,2230,30,2.5,2,2,11.3,77777,9,999999999,329,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,16.6,56,102100,341,1391,395,149,324,69,15800,26700,9200,1250,10,1.0,3,3,11.3,77777,9,999999999,329,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,16.6,60,102100,69,985,385,21,86,15,2400,3800,2100,260,0,0.0,2,2,11.3,77777,9,999999999,329,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,17.0,65,102100,0,0,380,0,0,0,0,0,0,0,360,0.1,2,2,11.3,77777,9,999999999,340,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.2,17.0,68,102100,0,0,376,0,0,0,0,0,0,0,10,0.1,2,2,11.3,77777,9,999999999,340,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.5,17.1,72,102100,0,0,368,0,0,0,0,0,0,0,10,0.2,1,1,11.3,77777,9,999999999,340,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.0,17.0,73,102100,0,0,365,0,0,0,0,0,0,0,10,0.2,1,1,11.3,77777,9,999999999,350,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.6,17.1,76,102100,0,0,363,0,0,0,0,0,0,0,20,0.3,1,1,11.3,77777,9,999999999,350,0.1170,0,88,0.140,999.0,99.0 +1995,11,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,17.2,79,102100,0,0,361,0,0,0,0,0,0,0,20,0.3,1,1,11.3,77777,9,999999999,350,0.1170,0,88,0.140,999.0,99.0 +1995,11,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.7,17.3,81,102100,0,0,359,0,0,0,0,0,0,0,20,0.4,1,1,11.3,77777,9,999999999,359,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.2,17.3,83,102100,0,0,350,0,0,0,0,0,0,0,20,0.4,0,0,11.3,77777,9,999999999,359,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.7,17.1,85,102100,0,0,348,0,0,0,0,0,0,0,30,0.5,0,0,11.3,77777,9,999999999,359,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.2,87,102000,0,0,346,0,0,0,0,0,0,0,30,0.5,0,0,11.3,77777,9,999999999,370,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.2,87,102100,0,0,346,0,0,0,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,370,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.2,90,102100,0,0,343,0,0,0,0,0,0,0,0,0.0,3,0,11.3,77777,9,999999999,370,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,17.2,90,102200,8,336,343,1,32,1,0,0,0,0,30,1.5,2,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,0.0,6.0 +1995,11,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.7,84,102200,210,1392,352,100,439,34,10400,30100,5800,620,20,4.1,3,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,17.7,76,102300,484,1392,360,300,708,54,31700,65800,8700,1140,50,4.6,2,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,18.3,71,102300,713,1392,369,485,795,77,51700,78600,11200,1750,80,2.0,3,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,17.7,62,102200,883,1392,377,609,826,85,63600,82000,11400,2020,150,2.0,2,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,18.3,62,102200,980,1392,388,667,754,136,69800,75500,16500,3550,150,0.5,9,1,11.3,2700,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,17.7,56,102000,998,1392,385,729,886,93,75900,88400,12300,2450,0,0.0,2,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,0.0,6.0 +1995,11,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,17.7,53,102000,936,1392,391,678,866,95,70500,86100,12400,2250,270,1.0,3,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,16.6,49,101900,798,1392,390,557,833,79,58200,82100,11000,1780,270,1.5,2,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,16.1,48,101900,594,1392,389,387,749,67,40900,72200,10000,1440,260,1.5,3,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,16.1,53,101900,338,1392,380,188,598,42,19400,50600,7100,850,0,0.0,2,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,16.1,56,101900,67,963,375,25,170,13,2700,8500,2100,250,0,0.0,3,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.5,16.7,62,101900,0,0,370,0,0,0,0,0,0,0,10,0.4,3,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.9,17.0,65,101900,0,0,368,0,0,0,0,0,0,0,30,0.9,3,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.3,17.3,69,101900,0,0,365,0,0,0,0,0,0,0,40,1.3,3,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.9,17.5,72,101900,0,0,363,0,0,0,0,0,0,0,60,1.7,3,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.6,17.8,74,101800,0,0,362,0,0,0,0,0,0,0,70,2.1,3,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.2,18.2,78,101800,0,0,361,0,0,0,0,0,0,0,90,2.6,3,0,11.3,77777,9,999999999,379,0.1150,0,88,0.140,999.0,99.0 +1995,11,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.0,18.5,81,101800,0,0,360,0,0,0,0,0,0,0,100,3.0,2,0,11.3,77777,9,999999999,379,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.6,18.8,84,101800,0,0,359,0,0,0,0,0,0,0,110,3.4,2,0,11.3,77777,9,999999999,379,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.2,18.8,86,101800,0,0,357,0,0,0,0,0,0,0,130,3.8,2,0,11.3,77777,9,999999999,379,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,19.2,89,101800,0,0,356,0,0,0,0,0,0,0,140,4.3,2,0,11.3,77777,9,999999999,379,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.7,19.3,92,101800,0,0,355,0,0,0,0,0,0,0,160,4.7,2,0,11.3,77777,9,999999999,379,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,19.4,93,101700,0,0,354,0,0,0,0,0,0,0,170,5.1,2,0,11.3,77777,9,999999999,379,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,19.4,93,101800,7,313,354,1,17,1,0,0,0,0,180,3.6,3,0,11.3,77777,9,999999999,370,0.1140,0,88,0.140,0.0,6.0 +1995,11,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,101800,206,1393,363,93,375,37,9500,25300,5700,670,180,3.0,2,0,11.3,77777,9,999999999,379,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,20.0,79,101900,479,1393,387,260,460,102,27700,42500,13000,1920,170,4.6,9,3,11.3,77777,9,999999999,379,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.1,74,101900,709,1393,396,435,595,132,45400,58500,15500,2790,170,4.6,9,2,11.3,77777,9,999999999,379,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.2,72,101700,878,1393,410,597,719,144,63400,72700,17400,3600,200,4.6,9,3,11.3,77777,9,999999999,390,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.7,74,101700,975,1393,407,664,731,152,71000,74600,18600,4310,200,5.1,9,2,11.3,77777,9,999999999,390,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,23.3,74,101600,993,1393,415,644,635,191,67900,64200,21900,5430,200,5.1,9,3,11.3,77777,9,999999999,390,0.1140,0,88,0.140,0.0,6.0 +1995,11,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.3,22.8,72,101500,932,1393,410,643,719,162,68100,72800,19200,4280,200,5.1,9,2,11.2,77777,9,999999999,390,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,22.7,74,101500,794,1393,411,504,547,192,53600,55800,21700,4360,200,5.1,9,3,11.3,77777,9,999999999,400,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,22.7,76,101400,590,1393,404,340,554,105,35400,53000,12900,2080,200,3.0,9,2,11.3,77777,9,999999999,400,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,22.2,79,101400,334,1393,402,149,241,91,15700,19800,11000,1770,200,3.0,9,3,11.3,77777,9,999999999,400,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101400,65,940,392,23,36,20,2500,1700,2400,410,210,3.0,9,2,11.3,77777,9,999999999,409,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.8,22.9,89,101400,0,0,392,0,0,0,0,0,0,0,210,3.6,9,2,11.3,77777,9,999999999,409,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,22.7,87,101400,0,0,392,0,0,0,0,0,0,0,210,4.1,9,2,11.3,77777,9,999999999,409,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101500,0,0,397,0,0,0,0,0,0,0,220,4.1,9,3,11.3,77777,9,999999999,409,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,23.3,90,101400,0,0,381,0,0,0,0,0,0,0,210,5.1,2,0,11.3,77777,9,999999999,419,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,24.3,22.8,91,101400,0,0,384,0,0,0,0,0,0,0,230,5.2,3,1,11.3,19381,9,999999999,419,0.1140,0,88,0.140,999.0,99.0 +1995,11,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.5,22.3,93,101400,0,0,388,0,0,0,0,0,0,0,240,5.4,4,3,11.3,16763,9,999999999,419,0.1140,0,88,0.140,999.0,99.0 +1995,11,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.9,21.7,93,101400,0,0,387,0,0,0,0,0,0,0,260,5.5,5,4,11.3,14144,9,999999999,430,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.1,21.2,95,101400,0,0,385,0,0,0,0,0,0,0,280,5.6,6,5,11.3,11525,9,999999999,430,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.3,20.3,94,101300,0,0,383,0,0,0,0,0,0,0,290,5.7,7,6,11.3,8906,9,999999999,430,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.7,19.8,95,101300,0,0,390,0,0,0,0,0,0,0,310,5.9,8,8,11.3,6288,9,999999999,430,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.0,19.0,94,101300,0,0,394,0,0,0,0,0,0,0,320,6.0,9,9,11.3,3669,9,999999999,440,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,101300,0,0,401,0,0,0,0,0,0,0,340,6.1,10,10,11.3,1050,9,999999999,440,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.7,90,101300,6,290,389,1,1,1,0,0,0,0,360,3.0,9,9,11.3,1350,9,999999999,440,0.1130,0,88,0.140,36.0,24.0 +1995,11,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,101400,202,1393,393,33,27,29,3700,1800,3500,610,360,4.6,9,9,11.3,1500,9,999999999,430,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,17.7,84,101500,475,1393,395,157,61,136,17200,5700,15200,3670,360,3.6,9,9,11.3,1500,9,999999999,419,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,17.2,78,101600,705,1393,398,200,90,154,22300,9300,17500,3850,360,4.1,9,9,11.3,1800,9,999999999,400,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.6,75,101700,874,1393,397,238,164,134,26900,17600,15800,3140,340,4.6,9,9,11.3,2100,9,999999999,390,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,15.5,62,101600,971,1393,407,551,401,271,58200,41500,29100,7630,320,2.5,9,9,11.3,2100,9,999999999,379,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,13.3,52,101500,989,1393,407,303,62,259,33500,6300,29000,9610,320,3.0,9,9,11.3,7500,9,999999999,370,0.1130,0,88,0.140,0.0,6.0 +1995,11,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,12.7,50,101500,927,1393,407,398,219,252,43400,23500,27700,6720,340,2.5,9,9,11.3,7500,9,999999999,350,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,12.7,53,101500,790,1393,401,397,119,329,43500,12200,36600,9620,320,3.6,9,9,11.3,7500,9,999999999,340,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,12.2,55,101500,586,1393,394,93,36,78,10300,3400,8900,2490,320,4.1,9,9,11.3,7500,9,999999999,329,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,10.0,53,101600,331,1393,383,73,37,64,8000,3100,7300,1730,330,4.1,9,9,11.3,7500,9,999999999,320,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,7.7,52,101700,63,941,368,23,5,23,2600,0,2600,760,340,3.6,9,9,11.3,77777,9,999999999,300,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.5,7.4,55,101700,0,0,354,0,0,0,0,0,0,0,340,3.7,8,8,11.3,77777,9,999999999,290,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.7,6.7,55,101800,0,0,349,0,0,0,0,0,0,0,350,3.9,8,8,11.3,77777,9,999999999,279,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,6.0,55,101800,0,0,340,0,0,0,0,0,0,0,350,4.0,7,7,11.3,77777,9,999999999,270,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,5.2,54,101900,0,0,332,0,0,0,0,0,0,0,350,4.1,6,6,11.3,77777,9,999999999,250,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.9,4.6,53,101900,0,0,326,0,0,0,0,0,0,0,360,4.2,5,5,11.3,77777,9,999999999,240,0.1130,0,88,0.140,999.0,99.0 +1995,11,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.3,4.0,53,101900,0,0,323,0,0,0,0,0,0,0,360,4.4,5,5,11.3,77777,9,999999999,229,0.1130,0,88,0.140,999.0,99.0 +1995,11,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.9,3.4,52,102000,0,0,318,0,0,0,0,0,0,0,360,4.5,4,4,11.3,77777,9,999999999,209,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.3,2.7,52,102000,0,0,312,0,0,0,0,0,0,0,10,4.6,3,3,11.3,77777,9,999999999,200,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.7,1.7,50,102100,0,0,305,0,0,0,0,0,0,0,10,4.7,2,2,11.3,77777,9,999999999,189,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.4,1.1,49,102100,0,0,303,0,0,0,0,0,0,0,10,4.9,2,2,11.3,77777,9,999999999,179,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.9,0.2,48,102100,0,0,296,0,0,0,0,0,0,0,20,5.0,1,1,11.3,77777,9,999999999,160,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,-0.6,46,102200,0,0,288,0,0,0,0,0,0,0,20,5.1,0,0,11.3,77777,9,999999999,150,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,10.0,-0.6,47,102200,5,290,286,0,4,0,0,0,0,0,20,5.1,0,0,11.3,77777,9,999999999,139,0.1120,0,88,0.140,0.0,6.0 +1995,11,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,-0.6,44,102300,198,1394,291,82,278,43,8700,17600,6200,770,20,5.1,0,0,11.3,77777,9,999999999,139,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,0.0,42,102400,471,1394,298,279,595,77,29000,54400,10600,1480,10,5.1,0,0,11.3,77777,9,999999999,139,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.2,42,102400,700,1394,310,475,736,105,50300,73000,13500,2280,40,4.6,0,0,11.3,77777,9,999999999,139,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,2.2,38,102400,869,1394,317,626,805,123,65000,80000,15000,2800,50,4.6,0,0,11.3,77777,9,999999999,150,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,1.6,33,102300,966,1394,324,713,837,133,74700,83800,16400,3410,40,4.6,0,0,11.3,77777,9,999999999,150,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,2.2,31,102200,985,1394,332,730,842,135,76500,84400,16700,3560,50,5.1,0,0,11.3,77777,9,999999999,150,0.1120,0,88,0.140,0.0,6.0 +1995,11,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,2.2,29,102100,923,1394,337,674,823,129,70400,82100,15800,3120,50,5.1,0,0,11.3,77777,9,999999999,150,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,2.7,30,102100,786,1394,338,550,773,114,58600,77800,14600,2640,40,4.1,0,0,11.3,77777,9,999999999,150,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,5.0,35,102100,583,1394,340,371,671,91,39100,64500,12000,1840,30,4.1,0,0,11.3,77777,9,999999999,160,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,6.6,40,102100,327,1394,339,167,455,60,17200,37000,8500,1090,40,5.6,0,0,11.3,77777,9,999999999,160,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,8.3,50,102100,61,918,340,17,45,14,1900,1700,1800,230,30,2.0,2,1,11.3,77777,9,999999999,160,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.9,9.0,56,102100,0,0,337,0,0,0,0,0,0,0,30,2.2,2,1,11.3,77777,9,999999999,160,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.4,9.4,59,102200,0,0,335,0,0,0,0,0,0,0,30,2.4,2,1,11.3,77777,9,999999999,160,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.9,9.8,63,102200,0,0,333,0,0,0,0,0,0,0,30,2.5,2,1,11.3,77777,9,999999999,160,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.6,10.0,65,102200,0,0,332,0,0,0,0,0,0,0,30,2.7,1,1,11.3,77777,9,999999999,170,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.4,10.5,68,102200,0,0,331,0,0,0,0,0,0,0,30,2.9,1,1,11.3,77777,9,999999999,170,0.1120,0,88,0.140,999.0,99.0 +1995,11,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.1,11.0,72,102200,0,0,331,0,0,0,0,0,0,0,30,3.1,1,1,11.3,77777,9,999999999,170,0.1120,0,88,0.140,999.0,99.0 +1995,11,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,11.4,74,102200,0,0,324,0,0,0,0,0,0,0,30,3.2,1,0,11.3,77777,9,999999999,170,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.7,11.7,77,102200,0,0,323,0,0,0,0,0,0,0,30,3.4,1,0,11.3,77777,9,999999999,170,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.4,11.9,80,102200,0,0,322,0,0,0,0,0,0,0,30,3.6,1,0,11.3,77777,9,999999999,179,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.3,12.3,82,102200,0,0,322,0,0,0,0,0,0,0,30,3.8,0,0,11.3,77777,9,999999999,179,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.1,12.5,84,102200,0,0,321,0,0,0,0,0,0,0,30,3.9,0,0,11.3,77777,9,999999999,179,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.7,86,102200,0,0,321,0,0,0,0,0,0,0,30,4.1,0,0,11.3,77777,9,999999999,179,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,13.3,87,102200,5,267,324,0,10,0,0,0,0,0,30,3.6,0,0,11.3,77777,9,999999999,179,0.1100,0,88,0.140,0.0,6.0 +1995,11,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.3,75,102200,194,1395,334,85,347,37,8700,22700,5600,660,30,3.6,0,0,11.3,77777,9,999999999,189,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.0,73,102300,467,1395,347,283,653,64,29900,60000,9700,1260,40,5.1,0,0,11.3,77777,9,999999999,189,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,15.5,66,102300,696,1395,358,477,782,86,50000,76700,11600,1840,50,4.6,0,0,11.3,77777,9,999999999,200,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,16.1,56,102300,865,1395,394,428,334,220,46700,35700,24500,5460,70,4.6,9,4,11.3,77777,9,999999999,200,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,16.6,56,102200,962,1395,398,707,712,216,73500,71200,24300,5710,70,5.6,9,4,11.3,77777,9,999999999,209,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,16.1,51,102100,980,1395,391,674,801,111,72100,80900,15100,3090,60,5.1,2,1,11.3,77777,9,999999999,220,0.1100,0,88,0.140,0.0,6.0 +1995,11,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,16.1,49,102000,919,1395,393,626,780,112,66300,78300,14500,2840,100,5.1,3,1,11.3,77777,9,999999999,220,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,16.1,49,102000,782,1395,393,496,699,104,53200,70500,13500,2430,100,4.1,2,1,11.3,77777,9,999999999,229,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,16.6,52,102000,579,1395,391,354,634,90,37200,60800,11800,1820,80,4.1,3,1,11.3,77777,9,999999999,229,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,16.1,54,102000,324,1395,385,156,453,51,16300,37000,7600,950,70,3.0,2,1,11.3,77777,9,999999999,240,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,16.6,64,102000,59,918,374,18,82,13,2100,3400,1800,220,70,1.5,3,1,11.3,77777,9,999999999,240,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.6,66,102000,0,0,371,0,0,0,0,0,0,0,60,2.0,2,1,11.3,77777,9,999999999,250,0.1100,0,88,0.140,0.0,6.0 +1995,11,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,17.7,73,102000,0,0,370,0,0,0,0,0,0,0,70,3.6,3,1,11.3,77777,9,999999999,250,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,17.7,76,102100,0,0,367,0,0,0,0,0,0,0,70,4.1,2,1,11.3,77777,9,999999999,259,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.8,17.6,77,102000,0,0,365,0,0,0,0,0,0,0,70,3.9,2,1,11.3,77777,9,999999999,259,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.5,17.8,79,102000,0,0,364,0,0,0,0,0,0,0,70,3.6,2,1,11.3,77777,9,999999999,270,0.1100,0,88,0.140,999.0,99.0 +1995,11,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.1,17.9,82,102000,0,0,362,0,0,0,0,0,0,0,80,3.4,1,1,11.3,77777,9,999999999,279,0.1100,0,88,0.140,999.0,99.0 +1995,11,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.8,18.0,84,102000,0,0,361,0,0,0,0,0,0,0,80,3.2,1,1,11.3,77777,9,999999999,279,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.5,18.0,86,101900,0,0,352,0,0,0,0,0,0,0,80,2.9,1,0,11.3,77777,9,999999999,290,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.1,17.8,87,101900,0,0,350,0,0,0,0,0,0,0,80,2.7,1,0,11.3,77777,9,999999999,290,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.9,18.0,89,101900,0,0,349,0,0,0,0,0,0,0,90,2.5,0,0,11.3,77777,9,999999999,300,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.6,17.8,89,101900,0,0,348,0,0,0,0,0,0,0,90,2.2,0,0,11.3,77777,9,999999999,300,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,101800,0,0,347,0,0,0,0,0,0,0,90,2.0,0,0,11.3,77777,9,999999999,309,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.3,90,101800,4,244,350,0,20,0,0,0,0,0,120,2.5,3,0,11.3,77777,9,999999999,309,0.1090,0,88,0.140,0.0,6.0 +1995,11,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.3,90,101800,190,1395,350,86,397,32,8900,26000,5300,580,120,2.5,2,0,11.3,77777,9,999999999,309,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.5,79,101800,463,1395,374,283,676,59,29400,61800,8800,1180,150,2.5,3,0,11.3,77777,9,999999999,309,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.5,79,101800,691,1395,374,473,803,75,50400,79100,11000,1680,130,2.5,2,0,11.3,77777,9,999999999,309,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,20.0,69,101800,860,1395,382,586,794,96,62500,79700,13200,2360,240,3.0,3,0,11.3,77777,9,999999999,309,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,20.5,69,101700,957,1395,386,697,876,95,72500,87200,12400,2310,200,4.1,2,0,11.3,77777,9,999999999,309,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,21.1,72,101600,976,1395,403,661,716,160,70400,72900,19200,4510,200,4.6,9,3,11.3,77777,9,999999999,309,0.1090,0,88,0.140,0.0,6.0 +1995,11,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.6,76,101600,915,1395,384,659,864,92,68600,85800,12100,2150,200,4.1,2,0,11.3,77777,9,999999999,309,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,21.6,74,101500,778,1395,387,547,823,87,58100,81900,12300,2020,210,4.1,3,0,11.3,77777,9,999999999,320,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,21.6,76,101500,575,1395,397,342,608,91,35900,58200,11800,1830,200,3.0,9,2,11.3,3300,9,999999999,320,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101500,321,1395,393,155,329,79,16100,26300,10000,1460,200,3.0,9,3,11.3,3300,9,999999999,320,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,22.2,88,101500,57,895,399,20,21,19,2300,900,2200,390,180,2.5,10,5,11.3,1500,9,999999999,320,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.7,20.9,90,101500,0,0,388,0,0,0,0,0,0,0,200,2.8,10,5,11.3,1444,9,999999999,320,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.4,19.2,87,101600,0,0,383,0,0,0,0,0,0,0,220,3.0,10,6,11.3,1388,9,999999999,320,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.2,17.6,85,101600,0,0,375,0,0,0,0,0,0,0,240,3.3,10,6,11.3,1331,9,999999999,320,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,15.8,82,101600,0,0,371,0,0,0,0,0,0,0,260,3.6,10,7,11.3,1275,9,999999999,320,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.1,14.2,78,101700,0,0,364,0,0,0,0,0,0,0,280,3.8,9,7,11.3,1219,9,999999999,320,0.1090,0,88,0.140,999.0,99.0 +1995,11,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,12.7,76,101700,0,0,357,0,0,0,0,0,0,0,300,4.1,9,7,11.3,1163,9,999999999,320,0.1090,0,88,0.140,999.0,99.0 +1995,11,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,11.0,72,101700,0,0,356,0,0,0,0,0,0,0,320,4.3,9,8,11.3,1106,9,999999999,320,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.4,69,101700,0,0,349,0,0,0,0,0,0,0,340,4.6,9,8,11.3,1050,9,999999999,320,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,6.6,64,101800,0,0,332,0,0,0,0,0,0,0,360,4.6,9,7,11.3,1050,9,999999999,320,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.7,5.5,66,101800,0,0,317,0,0,0,0,0,0,0,360,4.6,6,5,11.3,8033,9,999999999,320,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.9,4.0,67,101900,0,0,300,0,0,0,0,0,0,0,360,4.6,3,2,11.3,15017,9,999999999,320,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,2.7,68,102000,0,0,283,0,0,0,0,0,0,0,360,4.6,0,0,11.3,77777,9,999999999,320,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.2,1.1,65,102000,4,221,277,0,20,0,0,0,0,0,360,4.6,0,0,11.3,77777,9,999999999,320,0.1080,0,88,0.140,0.0,6.0 +1995,11,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.2,0.0,60,102100,187,1396,276,86,422,29,8600,29000,4700,540,360,4.6,0,0,11.3,77777,9,999999999,309,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,-0.6,53,102200,458,1396,279,283,707,50,29800,65000,8400,1070,360,4.6,0,0,11.3,77777,9,999999999,309,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,0.5,52,102200,687,1396,287,473,823,67,49600,80000,10100,1510,360,3.6,0,0,11.3,77777,9,999999999,300,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,0.5,48,102200,856,1396,292,619,880,79,64700,87200,11100,1900,10,5.1,0,0,11.3,77777,9,999999999,300,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,0.0,40,102100,953,1396,300,704,905,85,73400,90200,11700,2200,30,2.5,0,0,11.3,77777,9,999999999,290,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,0.0,40,102100,972,1396,300,721,911,87,75300,90800,11800,2280,30,2.5,0,0,11.3,77777,9,999999999,279,0.1080,0,88,0.140,0.0,6.0 +1995,11,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,1.6,39,101900,911,1396,312,668,897,83,69900,89200,11500,2070,60,3.0,0,0,11.3,77777,9,999999999,279,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,2.2,38,101800,775,1396,317,550,858,73,57600,84400,10600,1690,360,1.5,0,0,11.3,77777,9,999999999,270,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,2.7,39,101800,572,1396,318,378,778,59,40300,74800,9600,1300,20,2.5,0,0,11.3,77777,9,999999999,270,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.2,42,101800,318,1396,310,176,597,40,18200,49600,6900,810,30,2.5,0,0,11.3,77777,9,999999999,259,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.2,2.2,50,101800,55,873,298,20,150,10,2100,7300,1600,190,30,2.5,0,0,11.3,77777,9,999999999,250,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.5,2.9,55,101800,0,0,296,0,0,0,0,0,0,0,30,2.5,0,0,11.3,77777,9,999999999,250,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.1,3.3,59,101800,0,0,295,0,0,0,0,0,0,0,30,2.4,0,0,11.3,77777,9,999999999,240,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.7,3.7,62,101800,0,0,299,0,0,0,0,0,0,0,20,2.4,1,1,11.3,77777,9,999999999,240,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.5,3.9,64,101800,0,0,298,0,0,0,0,0,0,0,20,2.3,1,1,11.3,77777,9,999999999,229,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.5,4.4,66,101800,0,0,299,0,0,0,0,0,0,0,20,2.3,1,1,11.3,77777,9,999999999,220,0.1080,0,88,0.140,999.0,99.0 +1995,11,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.3,4.9,69,101800,0,0,299,0,0,0,0,0,0,0,20,2.3,1,1,11.3,77777,9,999999999,220,0.1080,0,88,0.140,999.0,99.0 +1995,11,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.3,5.3,71,101700,0,0,299,0,0,0,0,0,0,0,10,2.2,1,1,11.3,77777,9,999999999,209,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.2,5.6,73,101700,0,0,299,0,0,0,0,0,0,0,10,2.2,1,1,11.3,77777,9,999999999,209,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,5.8,75,101700,0,0,302,0,0,0,0,0,0,0,10,2.1,2,2,11.3,77777,9,999999999,200,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,6.2,77,101700,0,0,303,0,0,0,0,0,0,0,10,2.1,2,2,11.3,77777,9,999999999,189,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.9,6.4,79,101700,0,0,303,0,0,0,0,0,0,0,360,2.0,2,2,11.3,77777,9,999999999,189,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.6,79,101700,0,0,303,0,0,0,0,0,0,0,360,2.0,2,2,11.3,77777,9,999999999,179,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.8,6.6,86,101600,3,221,301,0,6,0,0,0,0,0,360,1.0,3,3,11.3,77777,9,999999999,179,0.1070,0,88,0.140,0.0,6.0 +1995,11,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,7.2,74,101700,183,1397,311,79,364,32,8200,23300,5100,580,360,1.0,2,2,11.3,77777,9,999999999,179,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,9.4,72,101700,454,1397,329,204,400,73,21200,36200,9400,1400,350,2.5,3,3,11.3,77777,9,999999999,179,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,10.5,69,101700,683,1397,343,369,372,187,39700,38400,20800,4140,350,3.0,9,5,11.3,1350,9,999999999,179,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,11.1,63,101600,852,1397,349,442,497,139,46800,50100,16200,3370,350,1.5,3,3,11.3,77777,9,999999999,179,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,12.7,59,101600,949,1397,361,661,845,87,69000,84200,11600,2210,30,3.0,2,2,11.3,77777,9,999999999,179,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.2,53,101400,968,1397,369,641,648,191,67200,65300,21800,5190,30,4.1,3,3,11.3,77777,9,999999999,179,0.1070,0,88,0.140,0.0,6.0 +1995,11,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,13.8,55,101300,907,1397,373,515,634,103,54900,63800,13300,2630,90,2.5,2,2,11.3,77777,9,999999999,179,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,13.3,53,101200,771,1397,376,434,396,215,46800,41700,23700,5040,250,3.6,3,3,11.3,77777,9,999999999,189,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,13.8,55,101200,569,1397,373,372,692,90,39100,66100,12000,1800,300,2.5,2,2,11.3,77777,9,999999999,189,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,15.0,68,101200,315,1397,367,161,396,72,16900,31400,9800,1310,300,3.0,3,3,11.3,77777,9,999999999,189,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,13.8,73,101200,54,873,360,14,26,12,1600,1200,1500,250,310,3.6,9,5,11.3,1500,9,999999999,189,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,13.8,76,101200,0,0,356,0,0,0,0,0,0,0,310,3.7,8,5,11.3,3208,9,999999999,189,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,13.4,77,101200,0,0,350,0,0,0,0,0,0,0,310,3.9,8,4,11.3,4917,9,999999999,189,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.1,13.1,77,101200,0,0,348,0,0,0,0,0,0,0,320,4.0,7,4,11.3,6625,9,999999999,189,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.8,12.6,76,101200,0,0,343,0,0,0,0,0,0,0,320,4.1,6,3,11.3,8333,9,999999999,189,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,12.3,75,101200,0,0,343,0,0,0,0,0,0,0,320,4.2,5,3,11.3,10042,9,999999999,189,0.1070,0,88,0.140,999.0,99.0 +1995,11,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.4,12.1,76,101200,0,0,341,0,0,0,0,0,0,0,320,4.4,5,3,11.3,11750,9,999999999,200,0.1070,0,88,0.140,999.0,99.0 +1995,11,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.2,11.7,75,101200,0,0,336,0,0,0,0,0,0,0,320,4.5,4,2,11.3,13458,9,999999999,200,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,11.4,74,101200,0,0,335,0,0,0,0,0,0,0,320,4.6,3,2,11.3,15167,9,999999999,200,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.8,10.8,72,101200,0,0,329,0,0,0,0,0,0,0,330,4.7,2,1,11.3,16875,9,999999999,200,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.7,10.5,71,101200,0,0,328,0,0,0,0,0,0,0,330,4.9,2,1,11.3,18583,9,999999999,200,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.5,9.9,69,101200,0,0,320,0,0,0,0,0,0,0,330,5.0,1,0,11.3,20292,9,999999999,200,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,9.4,67,101200,0,0,320,0,0,0,0,0,0,0,330,5.1,0,0,11.3,77777,9,999999999,200,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,8.3,64,101300,3,198,327,0,9,0,0,0,0,0,320,5.1,2,2,11.3,77777,9,999999999,200,0.1060,0,88,0.140,0.0,6.0 +1995,11,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,6.1,53,101300,179,1397,330,55,213,27,5600,13600,3900,500,340,4.6,3,3,11.3,77777,9,999999999,200,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,6.1,48,101300,450,1397,324,281,718,49,29600,65700,8400,1040,320,3.6,0,0,11.3,77777,9,999999999,200,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,5.0,40,101400,678,1397,330,473,837,66,49600,81300,10000,1490,330,4.6,0,0,11.3,77777,9,999999999,189,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,5.5,40,101400,847,1397,333,621,895,78,65000,88600,11100,1870,330,4.1,0,0,11.3,77777,9,999999999,189,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,6.1,40,101300,944,1397,351,699,810,151,74400,82400,18600,4080,320,5.6,3,3,11.3,77777,9,999999999,179,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,7.2,45,101300,963,1397,346,697,784,157,74300,79700,19100,4340,330,4.1,2,2,11.3,77777,9,999999999,179,0.1060,0,88,0.140,0.0,6.0 +1995,11,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,7.2,45,101300,903,1397,350,549,663,120,59100,67700,15200,3140,330,4.1,3,3,11.3,77777,9,999999999,179,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,8.3,50,101300,767,1397,345,517,749,106,53800,73800,13100,2240,330,4.6,2,2,11.3,77777,9,999999999,170,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,9.4,56,101200,566,1397,347,219,293,100,23800,28300,12200,1910,320,5.1,3,3,11.3,77777,9,999999999,170,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,10.0,63,101300,312,1397,339,181,582,51,18800,46800,8300,940,320,4.6,2,2,11.3,77777,9,999999999,170,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,8.8,64,101300,52,873,333,15,42,12,1600,1500,1500,200,310,6.1,3,3,11.3,77777,9,999999999,160,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.3,8.7,69,101400,0,0,327,0,0,0,0,0,0,0,320,5.7,3,3,11.3,77777,9,999999999,160,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.4,8.3,71,101500,0,0,323,0,0,0,0,0,0,0,320,5.3,3,3,11.3,77777,9,999999999,160,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.6,7.8,73,101500,0,0,316,0,0,0,0,0,0,0,330,5.0,2,2,11.3,77777,9,999999999,150,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.0,7.2,72,101600,0,0,312,0,0,0,0,0,0,0,340,4.6,2,2,11.3,77777,9,999999999,150,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.5,6.9,73,101600,0,0,310,0,0,0,0,0,0,0,340,4.2,2,2,11.3,77777,9,999999999,139,0.1060,0,88,0.140,999.0,99.0 +1995,11,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.8,6.5,75,101700,0,0,306,0,0,0,0,0,0,0,350,3.8,2,2,11.3,77777,9,999999999,139,0.1060,0,88,0.140,999.0,99.0 +1995,11,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.3,6.1,75,101700,0,0,300,0,0,0,0,0,0,0,360,3.4,1,1,11.3,77777,9,999999999,139,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.7,5.6,76,101800,0,0,297,0,0,0,0,0,0,0,360,3.0,1,1,11.3,77777,9,999999999,129,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.1,4.9,75,101900,0,0,294,0,0,0,0,0,0,0,10,2.7,1,1,11.3,77777,9,999999999,129,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.7,4.6,75,101900,0,0,292,0,0,0,0,0,0,0,20,2.3,1,1,11.3,77777,9,999999999,129,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.1,3.9,75,102000,0,0,283,0,0,0,0,0,0,0,20,1.9,0,0,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.7,3.3,74,102000,0,0,281,0,0,0,0,0,0,0,30,1.5,0,0,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,7.7,2.2,68,102100,2,175,280,0,9,0,0,0,0,0,30,2.0,0,0,11.3,77777,9,999999999,120,0.1050,0,88,0.140,0.0,6.0 +1995,11,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.3,0.5,58,102200,175,1398,290,69,190,45,7100,11100,5700,820,20,3.6,2,2,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,1.1,54,102200,446,1398,300,199,302,103,20900,27200,12200,1940,360,4.6,3,3,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,1.1,48,102300,674,1398,304,451,693,117,47300,67900,14400,2440,350,3.0,2,2,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.7,1.6,47,102300,843,1398,300,620,878,91,64700,86800,12200,1940,350,4.1,0,0,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,3.3,47,102200,940,1398,309,708,907,98,73600,90200,12800,2270,320,3.6,0,0,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,3.8,47,102200,959,1398,312,725,912,100,75500,90800,12900,2350,310,3.6,0,0,11.3,77777,9,999999999,120,0.1050,0,88,0.140,0.0,6.0 +1995,11,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,3.3,45,102100,899,1398,311,671,895,95,69800,88800,12500,2120,310,3.6,0,0,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,0.5,39,102100,764,1398,319,425,533,134,44700,53000,15600,2970,310,3.6,3,3,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,0.5,37,102100,563,1398,318,332,620,83,35100,59300,11200,1670,320,3.6,2,2,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.8,0.5,40,102200,310,1398,316,121,322,50,12600,25800,6900,930,320,3.6,3,3,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,0.0,50,102200,51,850,287,17,110,10,1800,5200,1500,190,360,1.5,0,0,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,0.8,55,102200,0,0,285,0,0,0,0,0,0,0,360,1.5,0,0,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.1,1.2,58,102300,0,0,284,0,0,0,0,0,0,0,10,1.5,0,0,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,1.6,60,102300,0,0,284,0,0,0,0,0,0,0,10,1.5,0,0,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,1.9,61,102300,0,0,284,0,0,0,0,0,0,0,10,1.5,0,0,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.0,2.4,63,102300,0,0,285,0,0,0,0,0,0,0,10,1.5,0,0,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,3.0,66,102400,0,0,285,0,0,0,0,0,0,0,20,1.5,0,0,11.3,77777,9,999999999,120,0.1050,0,88,0.140,999.0,99.0 +1995,11,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.0,3.4,68,102400,0,0,286,0,0,0,0,0,0,0,20,1.5,0,0,11.3,77777,9,999999999,120,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.0,3.8,70,102400,0,0,287,0,0,0,0,0,0,0,20,1.5,0,0,11.3,77777,9,999999999,120,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.0,4.0,71,102400,0,0,287,0,0,0,0,0,0,0,20,1.5,0,0,11.3,77777,9,999999999,120,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.2,4.5,72,102400,0,0,288,0,0,0,0,0,0,0,30,1.5,0,0,11.3,77777,9,999999999,120,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.2,4.7,73,102500,0,0,288,0,0,0,0,0,0,0,30,1.5,0,0,11.3,77777,9,999999999,120,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,5.0,74,102500,0,0,289,0,0,0,0,0,0,0,30,1.5,0,0,11.3,77777,9,999999999,120,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,3.8,68,102500,2,152,288,0,25,0,0,0,0,0,10,0.5,0,0,11.3,77777,9,999999999,120,0.1040,0,88,0.140,0.0,6.0 +1995,11,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.6,3.8,59,102500,171,1399,310,62,234,34,6600,13600,5000,600,70,3.0,3,3,11.3,77777,9,999999999,129,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,0.5,41,102600,441,1399,311,217,458,72,22600,41100,9500,1370,40,2.0,2,2,11.3,77777,9,999999999,129,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,1.6,39,102600,670,1399,325,359,471,133,38700,47000,16100,2700,60,3.0,3,3,11.3,77777,9,999999999,129,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,2.2,36,102600,839,1399,330,382,456,108,41100,46400,13200,2650,70,3.0,2,2,11.3,77777,9,999999999,129,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,2.7,33,102500,936,1399,344,650,663,205,67500,66300,23000,5230,80,4.6,3,3,11.3,77777,9,999999999,139,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,3.8,32,102400,956,1399,350,660,811,105,70700,81900,14500,2850,50,4.6,2,2,11.3,77777,9,999999999,139,0.1040,0,88,0.140,0.0,6.0 +1995,11,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,3.3,30,102400,896,1399,355,586,716,127,62800,72900,15900,3270,80,3.6,3,3,11.3,77777,9,999999999,139,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,3.3,30,102300,761,1399,368,490,558,186,51900,56600,21000,4110,60,2.5,9,7,11.3,3000,9,999999999,150,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,4.4,33,102300,560,1399,354,346,668,78,36600,63900,10900,1580,50,2.5,3,3,11.3,77777,9,999999999,150,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,5.5,37,102300,307,1399,349,170,543,51,17600,43300,8100,940,70,2.0,2,2,11.3,77777,9,999999999,150,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,5.0,39,102300,50,851,365,8,11,8,1000,500,1000,160,60,2.0,9,8,11.3,2700,9,999999999,160,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.3,5.7,44,102300,0,0,355,0,0,0,0,0,0,0,60,2.0,8,7,11.3,4308,9,999999999,160,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.6,6.1,47,102300,0,0,352,0,0,0,0,0,0,0,60,1.9,8,7,11.3,5917,9,999999999,160,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,6.5,50,102300,0,0,346,0,0,0,0,0,0,0,60,1.9,7,6,11.3,7525,9,999999999,170,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.4,6.7,53,102300,0,0,340,0,0,0,0,0,0,0,60,1.8,6,5,11.3,9133,9,999999999,170,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.1,7.2,56,102300,0,0,339,0,0,0,0,0,0,0,60,1.8,5,5,11.3,10742,9,999999999,170,0.1040,0,88,0.140,999.0,99.0 +1995,11,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.6,7.7,59,102400,0,0,335,0,0,0,0,0,0,0,60,1.8,5,4,11.3,12350,9,999999999,179,0.1040,0,88,0.140,999.0,99.0 +1995,11,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.2,8.1,63,102400,0,0,331,0,0,0,0,0,0,0,50,1.7,4,3,11.3,13958,9,999999999,179,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.8,8.4,65,102400,0,0,329,0,0,0,0,0,0,0,50,1.7,3,3,11.3,15567,9,999999999,179,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.3,8.6,69,102400,0,0,324,0,0,0,0,0,0,0,50,1.6,2,2,11.3,17175,9,999999999,189,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.0,9.0,72,102400,0,0,319,0,0,0,0,0,0,0,50,1.6,2,1,11.3,18783,9,999999999,189,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.6,9.2,75,102400,0,0,317,0,0,0,0,0,0,0,50,1.5,1,1,11.3,20392,9,999999999,189,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,9.4,77,102400,0,0,310,0,0,0,0,0,0,0,50,1.5,0,0,11.3,77777,9,999999999,200,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.8,9.4,75,102400,1,152,326,0,0,0,0,0,0,0,60,0.5,3,3,11.3,77777,9,999999999,200,0.1030,0,88,0.140,0.0,6.0 +1995,11,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.4,69,102500,167,1399,328,61,192,38,6300,11000,5000,680,40,1.5,2,2,11.3,77777,9,999999999,200,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,7.7,50,102500,437,1399,345,237,440,100,25000,39500,12600,1870,60,2.0,3,3,11.3,77777,9,999999999,200,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,8.3,49,102600,665,1399,347,419,571,148,44700,56800,17600,3030,90,3.6,2,2,11.3,77777,9,999999999,200,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,9.4,47,102500,834,1399,360,487,570,147,51300,57200,17100,3460,90,4.1,3,3,11.3,77777,9,999999999,200,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,9.4,41,102400,932,1399,368,632,684,176,66400,68900,20400,4570,70,4.1,2,2,11.3,77777,9,999999999,209,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,10.0,42,102300,952,1399,384,402,149,300,44000,15800,33300,8860,80,4.1,9,6,11.3,77777,9,999999999,209,0.1030,0,88,0.140,0.0,6.0 +1995,11,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,8.8,40,102200,892,1399,380,563,535,222,60000,55100,24700,5570,50,5.1,9,6,11.3,77777,9,999999999,209,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,8.3,40,102200,757,1399,376,347,308,180,37900,32400,20300,4060,40,4.1,9,6,11.3,77777,9,999999999,209,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,8.3,40,102200,557,1399,363,329,544,112,33900,51100,13500,2140,50,5.1,2,2,11.3,77777,9,999999999,209,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,9.4,44,102200,305,1399,366,141,349,65,14900,27300,8900,1180,50,3.6,3,3,11.3,77777,9,999999999,209,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,11.1,61,102300,49,828,348,12,31,10,1300,1100,1300,160,20,1.5,2,2,11.3,77777,9,999999999,220,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.9,11.3,65,102300,0,0,344,0,0,0,0,0,0,0,30,2.1,2,2,11.3,77777,9,999999999,220,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.3,11.1,67,102300,0,0,336,0,0,0,0,0,0,0,30,2.7,1,1,11.3,77777,9,999999999,220,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.7,10.9,69,102300,0,0,333,0,0,0,0,0,0,0,40,3.4,1,1,11.3,77777,9,999999999,220,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.3,10.6,69,102400,0,0,325,0,0,0,0,0,0,0,40,4.0,0,0,11.3,77777,9,999999999,220,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,10.5,69,102400,0,0,324,0,0,0,0,0,0,0,50,4.6,0,0,11.3,77777,9,999999999,220,0.1030,0,88,0.140,999.0,99.0 +1995,11,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,11.1,75,102400,0,0,322,0,0,0,0,0,0,0,50,3.6,0,0,11.3,77777,9,999999999,229,0.1030,0,88,0.140,999.0,99.0 +1995,11,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,11.6,78,102300,0,0,333,0,0,0,0,0,0,0,40,4.6,2,2,11.3,77777,9,999999999,229,0.1020,0,88,0.140,0.0,6.0 +1995,11,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.3,11.8,80,102300,0,0,332,0,0,0,0,0,0,0,40,4.5,2,2,11.3,77777,9,999999999,229,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.1,11.8,81,102300,0,0,331,0,0,0,0,0,0,0,40,4.4,2,2,11.3,77777,9,999999999,229,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.1,12.1,82,102300,0,0,335,0,0,0,0,0,0,0,40,4.3,3,3,11.3,77777,9,999999999,229,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,12.1,83,102300,0,0,334,0,0,0,0,0,0,0,40,4.2,3,3,11.3,77777,9,999999999,229,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.2,83,102200,0,0,335,0,0,0,0,0,0,0,40,4.1,3,3,11.3,77777,9,999999999,229,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,102300,1,128,329,0,5,0,0,0,0,0,40,4.1,2,2,11.3,77777,9,999999999,240,0.1020,0,88,0.140,0.0,6.0 +1995,11,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.2,83,102300,163,1400,335,63,268,32,6400,16100,4600,570,40,4.1,3,3,11.3,77777,9,999999999,240,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,12.7,70,102300,433,1400,347,254,618,62,26600,55500,9400,1200,40,4.6,2,2,11.3,77777,9,999999999,240,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,12.2,59,102400,661,1400,361,428,664,114,44800,64800,14100,2360,40,4.1,3,3,11.3,77777,9,999999999,240,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,12.2,51,102300,830,1400,368,576,816,92,61400,81700,12800,2210,40,5.1,2,2,11.3,77777,9,999999999,240,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,11.6,46,102200,928,1400,377,576,697,114,61000,70000,14400,2890,40,5.1,3,3,11.3,77777,9,999999999,240,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.2,45,102100,948,1400,380,634,772,111,67500,77700,14600,2930,90,2.5,2,2,11.3,77777,9,999999999,240,0.1020,0,88,0.140,0.0,6.0 +1995,11,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,11.6,43,102000,889,1400,383,599,681,166,62900,68500,19300,4100,20,3.6,3,3,11.3,77777,9,999999999,240,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,11.1,40,102000,754,1400,414,156,129,86,17900,13600,10600,1770,40,3.6,9,9,11.3,6000,9,999999999,250,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,10.5,43,102000,554,1400,404,134,63,109,14800,6000,12400,3270,50,2.5,9,9,11.3,77777,9,999999999,250,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,11.6,48,102000,302,1400,402,83,24,77,9000,2000,8600,1950,80,2.0,9,9,11.3,6000,9,999999999,250,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,13.3,63,102000,47,828,390,8,8,8,900,400,900,210,0,0.0,9,9,11.3,6000,9,999999999,250,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.5,13.8,70,102000,0,0,377,0,0,0,0,0,0,0,360,0.2,8,8,11.3,7333,9,999999999,250,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.9,13.9,73,102000,0,0,374,0,0,0,0,0,0,0,10,0.4,8,8,11.3,8667,9,999999999,250,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.3,14.0,76,102000,0,0,365,0,0,0,0,0,0,0,10,0.6,7,7,11.3,10000,9,999999999,250,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.9,13.9,77,102000,0,0,363,0,0,0,0,0,0,0,10,0.8,7,7,11.3,11333,9,999999999,259,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.6,14.1,80,102100,0,0,357,0,0,0,0,0,0,0,10,1.0,6,6,11.3,12667,9,999999999,259,0.1020,0,88,0.140,999.0,99.0 +1995,11,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.2,14.3,83,102100,0,0,356,0,0,0,0,0,0,0,20,1.3,6,6,11.3,14000,9,999999999,259,0.1020,0,88,0.140,999.0,99.0 +1995,11,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,14.4,85,102100,0,0,352,0,0,0,0,0,0,0,20,1.5,5,5,11.3,15333,9,999999999,259,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.6,14.5,87,102100,0,0,347,0,0,0,0,0,0,0,20,1.7,4,4,11.3,16667,9,999999999,259,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.2,14.4,89,102100,0,0,345,0,0,0,0,0,0,0,20,1.9,4,4,11.3,18000,9,999999999,259,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,14.6,91,102100,0,0,342,0,0,0,0,0,0,0,30,2.1,3,3,11.3,19333,9,999999999,259,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.7,14.4,92,102100,0,0,340,0,0,0,0,0,0,0,30,2.3,3,3,11.3,20667,9,999999999,259,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,14.4,93,102200,0,0,336,0,0,0,0,0,0,0,30,2.5,2,2,9.7,77777,9,999999999,270,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.8,86,102200,1,105,341,0,3,0,0,0,0,0,40,3.0,3,3,9.7,77777,9,999999999,270,0.1010,0,88,0.140,0.0,6.0 +1995,11,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,13.8,86,102300,159,1400,338,67,283,35,6800,16600,4900,600,40,2.0,2,2,11.3,77777,9,999999999,259,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,13.8,75,102300,429,1400,352,226,498,73,23400,44300,9800,1370,40,4.1,3,3,11.3,77777,9,999999999,259,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,12.7,61,102300,657,1400,358,420,615,131,43500,59500,15400,2630,40,4.6,2,2,11.3,77777,9,999999999,259,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,12.2,55,102300,826,1400,366,528,673,131,56000,67800,15900,3100,30,4.1,3,3,11.3,77777,9,999999999,259,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,8.8,38,102200,924,1400,369,654,823,111,69400,82700,14600,2820,60,5.1,2,2,11.3,77777,9,999999999,259,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,8.3,37,102100,944,1400,392,439,421,155,48900,43800,19200,4020,50,5.1,9,8,11.3,7500,9,999999999,259,0.1010,0,88,0.140,0.0,6.0 +1995,11,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,9.4,39,102000,885,1400,391,451,260,286,48400,27700,30800,7530,50,4.1,9,7,11.3,7500,9,999999999,250,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,10.0,42,101900,751,1400,394,346,102,291,37900,10300,32400,8450,50,4.1,9,8,11.3,7500,9,999999999,250,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,10.5,46,101900,552,1400,383,187,166,122,20300,16400,13900,2440,30,3.0,9,7,11.3,7500,9,999999999,250,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,12.2,55,101900,300,1400,386,83,41,74,9100,3400,8300,1890,20,1.0,9,8,11.3,7500,9,999999999,250,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,10.5,53,102000,46,829,372,12,18,11,1400,800,1300,230,0,0.0,9,7,11.3,7500,9,999999999,250,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.2,68,102000,0,0,369,0,0,0,0,0,0,0,0,0.0,9,8,11.3,7500,9,999999999,250,0.1010,0,88,0.140,0.0,6.0 +1995,11,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,12.2,70,102100,0,0,360,0,0,0,0,0,0,0,30,1.0,9,7,11.3,7500,9,999999999,240,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,12.2,70,102100,0,0,347,0,0,0,0,0,0,0,0,0.0,3,3,11.3,77777,9,999999999,240,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,12.7,73,102100,0,0,344,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,240,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,12.8,74,102100,0,0,347,0,0,0,0,0,0,0,10,0.3,3,3,11.3,77777,9,999999999,240,0.1010,0,88,0.140,999.0,99.0 +1995,11,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.2,13.0,76,102100,0,0,349,0,0,0,0,0,0,0,10,0.6,4,4,11.3,77777,9,999999999,240,0.1010,0,88,0.140,999.0,99.0 +1995,11,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.1,13.0,77,102100,0,0,351,0,0,0,0,0,0,0,20,0.9,5,5,11.3,77777,9,999999999,240,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.8,13.1,79,102000,0,0,352,0,0,0,0,0,0,0,20,1.3,6,6,11.3,77777,9,999999999,229,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.5,12.9,79,102000,0,0,351,0,0,0,0,0,0,0,30,1.6,6,6,11.3,77777,9,999999999,229,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.4,13.0,80,102000,0,0,354,0,0,0,0,0,0,0,30,1.9,7,7,11.3,77777,9,999999999,229,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.2,12.8,80,102000,0,0,359,0,0,0,0,0,0,0,40,2.2,8,8,11.3,77777,9,999999999,229,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,12.7,80,102000,0,0,366,0,0,0,0,0,0,0,40,2.5,9,9,11.3,77777,9,999999999,229,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.7,80,102000,0,82,366,0,0,0,0,0,0,0,30,2.5,9,9,11.3,77777,9,999999999,229,0.1000,0,88,0.140,0.0,6.0 +1995,11,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,12.7,75,102100,155,1401,372,33,10,32,3600,700,3600,790,40,3.6,9,9,11.3,77777,9,999999999,229,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,13.3,70,102100,425,1401,381,127,37,115,13800,3400,12800,3060,40,4.6,9,9,11.3,7500,9,999999999,229,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.8,67,102100,653,1401,398,154,0,154,17700,0,17700,6360,50,4.6,10,10,11.3,6000,9,999999999,240,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,13.8,63,102100,822,1401,393,287,74,243,31500,7500,27100,7850,50,4.6,9,9,11.3,5100,9,999999999,240,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,13.8,63,102100,920,1401,393,204,98,140,23400,10500,16500,4010,50,3.0,9,9,11.3,5100,9,999999999,250,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,14.4,64,101900,940,1401,397,432,163,322,47100,17200,35500,9410,50,3.0,9,9,11.3,7500,9,999999999,250,0.1000,0,88,0.140,0.0,6.0 +1995,11,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,15.0,66,101800,882,1401,409,226,0,226,26300,0,26300,9890,50,3.0,10,10,11.3,4800,9,999999999,250,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,15.0,66,101800,749,1401,409,184,0,184,21200,0,21200,7790,40,2.5,10,10,11.3,4800,9,999999999,259,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,16.1,73,101700,549,1401,407,122,0,122,14000,0,14000,4900,30,3.0,10,10,11.3,4800,9,999999999,259,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,16.1,76,101700,298,1401,404,53,0,53,6100,0,6100,2010,40,2.0,10,10,11.3,4800,9,999999999,259,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.6,84,101800,46,806,399,9,0,9,1100,0,1100,340,20,0.5,10,10,11.3,3600,9,999999999,270,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.6,84,101800,0,0,399,0,0,0,0,0,0,0,360,1.0,10,10,11.3,3600,9,999999999,270,0.1000,0,88,0.140,0.0,6.0 +1995,11,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.6,84,101800,0,0,399,0,0,0,0,0,0,0,30,0.5,10,10,11.3,3600,9,999999999,279,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,16.4,85,101800,0,0,396,0,0,0,0,0,0,0,30,0.7,10,10,11.3,3450,9,999999999,279,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.6,16.0,85,101800,0,0,394,0,0,0,0,0,0,0,30,0.8,10,10,11.3,3300,9,999999999,279,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.5,15.8,84,101800,0,0,393,0,0,0,0,0,0,0,30,1.0,10,10,11.3,3150,9,999999999,290,0.1000,0,88,0.140,999.0,99.0 +1995,11,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.2,15.7,85,101800,0,0,391,0,0,0,0,0,0,0,30,1.1,10,10,11.3,3000,9,999999999,290,0.1000,0,88,0.140,999.0,99.0 +1995,11,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.1,15.5,85,101700,0,0,390,0,0,0,0,0,0,0,30,1.3,10,10,11.3,2850,9,999999999,300,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.8,15.3,85,101700,0,0,378,0,0,0,0,0,0,0,20,1.4,9,9,11.3,2700,9,999999999,300,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,14.8,84,101700,0,0,376,0,0,0,0,0,0,0,20,1.6,9,9,11.3,2550,9,999999999,300,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,14.6,83,101700,0,0,375,0,0,0,0,0,0,0,20,1.7,9,9,11.3,2400,9,999999999,309,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.3,14.2,82,101700,0,0,374,0,0,0,0,0,0,0,20,1.9,9,9,11.3,2250,9,999999999,309,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.8,80,101700,0,0,373,0,0,0,0,0,0,0,20,2.0,9,9,11.3,2100,9,999999999,309,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.8,80,101700,0,58,373,0,0,0,0,0,0,0,20,2.0,9,9,11.3,2100,9,999999999,320,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,13.8,80,101700,151,1402,373,32,13,31,3600,900,3500,770,20,1.5,9,9,11.3,2100,9,999999999,309,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,13.3,73,101800,421,1402,351,235,447,101,24600,39500,12700,1890,20,3.0,3,3,11.3,77777,9,999999999,300,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,12.2,61,101800,649,1402,355,423,646,123,43900,62600,14800,2480,20,3.1,2,2,11.2,77777,9,999999999,290,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,10.5,47,101700,818,1402,367,537,672,144,56400,67300,17000,3330,350,2.5,3,3,11.3,77777,9,999999999,290,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,10.5,46,101700,916,1402,366,628,740,144,66900,75100,17600,3750,330,3.0,2,2,11.3,77777,9,999999999,279,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.8,11.6,46,101600,937,1402,377,601,657,162,63600,66500,19000,4270,320,5.1,3,3,11.3,77777,9,999999999,270,0.0990,0,88,0.140,0.0,6.0 +1995,11,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,7.7,36,101500,879,1402,368,595,711,149,62900,71700,17800,3680,330,3.6,2,2,11.3,77777,9,999999999,259,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,10.5,47,101500,746,1402,395,216,53,187,23700,5300,20900,5960,310,5.1,9,9,11.3,77777,9,999999999,250,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,11.1,53,101500,547,1402,390,86,0,86,10100,0,10100,3710,320,4.1,9,9,11.3,77777,9,999999999,240,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,12.2,61,101500,296,1402,385,48,0,48,5600,0,5600,1850,320,4.1,9,9,11.3,77777,9,999999999,229,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,12.2,70,101500,45,806,374,9,1,9,1100,0,1100,340,320,3.6,9,9,11.3,77777,9,999999999,229,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.6,12.2,75,101600,0,0,368,0,0,0,0,0,0,0,320,1.5,9,9,11.3,77777,9,999999999,220,0.0990,0,88,0.140,0.0,6.0 +1995,11,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,14.4,84,101700,0,0,344,0,0,0,0,0,0,0,330,3.6,2,2,11.3,77777,9,999999999,209,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,14.4,87,101700,0,0,344,0,0,0,0,0,0,0,340,2.5,3,3,11.3,77777,9,999999999,200,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.8,12.6,81,101800,0,0,339,0,0,0,0,0,0,0,340,2.7,3,3,11.3,77777,9,999999999,189,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.2,11.0,76,101800,0,0,331,0,0,0,0,0,0,0,350,2.9,2,2,11.3,77777,9,999999999,179,0.0990,0,88,0.140,999.0,99.0 +1995,11,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,9.4,72,101800,0,0,325,0,0,0,0,0,0,0,350,3.0,2,2,11.3,77777,9,999999999,179,0.0990,0,88,0.140,999.0,99.0 +1995,11,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.8,7.7,67,101900,0,0,321,0,0,0,0,0,0,0,350,3.2,2,2,11.3,77777,9,999999999,170,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.1,6.1,62,101900,0,0,312,0,0,0,0,0,0,0,360,3.4,1,1,11.3,77777,9,999999999,160,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.3,4.1,57,101900,0,0,306,0,0,0,0,0,0,0,360,3.6,1,1,11.3,77777,9,999999999,150,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.7,2.5,53,102000,0,0,302,0,0,0,0,0,0,0,360,3.7,1,1,11.3,77777,9,999999999,139,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.0,0.6,49,102000,0,0,292,0,0,0,0,0,0,0,10,3.9,0,0,11.3,77777,9,999999999,129,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,-1.2,44,102100,0,0,288,0,0,0,0,0,0,0,10,4.1,0,0,11.3,77777,9,999999999,129,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,-2.3,43,102100,0,58,291,0,1,0,0,0,0,0,360,2.5,2,2,11.3,77777,9,999999999,120,0.0980,0,88,0.140,0.0,6.0 +1995,11,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.1,-2.8,37,102200,147,1402,301,58,292,27,5900,16800,4100,480,10,2.5,3,3,11.3,77777,9,999999999,120,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,-3.4,30,102300,416,1402,307,223,548,60,23400,48700,8900,1160,20,6.1,2,2,11.3,77777,9,999999999,120,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,-3.9,26,102300,644,1402,316,399,612,118,41600,59300,14200,2390,20,5.6,3,3,11.3,77777,9,999999999,120,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,-5.6,21,102300,814,1402,316,551,712,137,58100,71400,16500,3180,40,4.6,2,2,11.3,77777,9,999999999,120,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,-3.9,22,102200,912,1402,326,626,727,153,66400,73600,18300,3930,10,2.5,3,3,11.3,77777,9,999999999,120,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,-2.3,23,102100,933,1402,332,631,806,95,65700,80100,12200,2220,40,3.0,2,2,11.3,77777,9,999999999,120,0.0980,0,88,0.140,0.0,6.0 +1995,11,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.9,-3.3,21,102100,876,1402,335,610,737,150,64500,74300,17900,3690,20,3.6,3,3,11.2,77777,9,999999999,120,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,-2.3,22,102000,743,1402,335,483,650,139,50500,64200,16300,2990,30,3.0,2,2,11.3,77777,9,999999999,120,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,-3.4,20,102000,545,1402,337,354,622,112,36400,58000,13700,2110,10,2.0,3,3,11.3,77777,9,999999999,120,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,-1.7,25,102100,295,1402,331,150,469,51,15400,36700,7700,930,30,2.0,2,2,11.3,77777,9,999999999,129,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,0.0,31,102100,44,806,331,11,50,8,1300,1900,1100,130,60,1.0,3,3,11.3,77777,9,999999999,129,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.3,3.4,39,102100,0,0,335,0,0,0,0,0,0,0,90,1.1,3,3,11.3,77777,9,999999999,129,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.5,3.9,43,102100,0,0,329,0,0,0,0,0,0,0,90,0.6,2,2,11.3,77777,9,999999999,129,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,2.9,41,102100,0,0,326,0,0,0,0,0,0,0,120,1.0,2,2,11.3,77777,9,999999999,129,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.8,1.7,38,102100,0,0,319,0,0,0,0,0,0,0,150,1.2,1,1,11.3,77777,9,999999999,129,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.9,1.2,39,102100,0,0,314,0,0,0,0,0,0,0,170,0.3,1,1,11.3,77777,9,999999999,129,0.0980,0,88,0.140,999.0,99.0 +1995,11,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.1,-0.4,37,102100,0,0,303,0,0,0,0,0,0,0,180,1.3,0,0,11.3,77777,9,999999999,129,0.0980,0,88,0.140,999.0,99.0 +1995,11,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.2,0.0,40,102100,0,0,300,0,0,0,0,0,0,0,180,0.9,0,0,11.3,77777,9,999999999,129,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.3,-2.5,37,102100,0,0,290,0,0,0,0,0,0,0,190,0.9,0,0,11.3,77777,9,999999999,129,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.5,-5.1,31,102100,0,0,284,0,0,0,0,0,0,0,200,1.5,0,0,11.3,77777,9,999999999,129,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.6,-4.7,32,102100,0,0,284,0,0,0,0,0,0,0,200,0.1,0,0,11.3,77777,9,999999999,129,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.8,-4.2,35,102100,0,0,282,0,0,0,0,0,0,0,210,0.6,0,0,11.3,77777,9,999999999,139,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,-3.8,39,102100,0,0,279,0,0,0,0,0,0,0,220,0.7,0,0,11.3,77777,9,999999999,139,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.0,-3.4,43,102000,0,35,275,0,1,0,0,0,0,0,220,0.2,0,0,11.3,77777,9,999999999,139,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.2,-2.9,41,102000,143,1403,281,59,305,28,6000,17200,4300,500,210,0.8,0,0,11.3,77777,9,999999999,139,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.3,-3.5,36,102000,412,1403,284,247,657,53,25500,58400,8300,1050,250,1.8,0,0,11.3,77777,9,999999999,139,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.5,-4.1,30,102000,640,1403,293,438,798,73,46200,77600,10700,1580,240,0.9,0,0,11.3,77777,9,999999999,150,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.6,-4.6,27,102000,810,1403,297,586,864,87,61100,85100,11800,1830,230,1.4,0,0,11.3,77777,9,999999999,150,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.8,-4.2,24,102000,909,1403,306,674,894,94,70100,88700,12400,2130,230,1.5,0,0,11.3,77777,9,999999999,160,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.9,-1.8,27,102000,930,1403,314,692,899,96,72000,89300,12600,2210,220,1.6,0,0,11.3,77777,9,999999999,160,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,-1.3,28,102000,873,1403,315,641,882,92,66800,87300,12200,2020,210,1.6,0,0,11.3,77777,9,999999999,160,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.2,1.1,32,102000,741,1403,323,523,837,81,55700,83000,11700,1850,200,2.7,0,0,11.3,77777,9,999999999,170,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.3,-0.5,30,102000,543,1403,317,352,743,65,37000,70300,9700,1350,200,2.7,0,0,11.3,77777,9,999999999,170,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.5,1.0,37,102000,293,1403,311,155,534,43,16200,42100,7300,810,240,2.3,0,0,11.3,77777,9,999999999,170,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.6,3.4,50,102000,43,783,305,14,94,8,1500,4300,1200,160,240,1.3,0,0,11.3,77777,9,999999999,179,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.7,3.8,58,102000,0,0,298,0,0,0,0,0,0,0,270,0.9,0,0,11.3,77777,9,999999999,179,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.2,4.6,64,102000,0,0,296,0,0,0,0,0,0,0,290,0.9,0,0,11.3,77777,9,999999999,189,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.7,5.2,69,102000,0,0,295,0,0,0,0,0,0,0,290,1.0,0,0,11.3,77777,9,999999999,189,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.5,5.8,73,102000,0,0,295,0,0,0,0,0,0,0,310,1.1,0,0,11.3,77777,9,999999999,189,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.3,6.6,78,102000,0,0,295,0,0,0,0,0,0,0,320,1.1,0,0,11.3,77777,9,999999999,200,0.0970,0,88,0.140,999.0,99.0 +1995,11,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.5,7.0,79,102000,0,0,302,0,0,0,0,0,0,0,350,1.7,1,1,11.3,77777,9,999999999,200,0.0970,0,88,0.140,999.0,99.0 +1995,11,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.6,8.4,81,102000,0,0,302,0,0,0,0,0,0,0,10,2.2,0,0,11.3,77777,9,999999999,200,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.7,8.9,83,102000,0,0,303,0,0,0,0,0,0,0,360,2.3,0,0,11.3,77777,9,999999999,209,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.9,7.3,78,102000,0,0,304,0,0,0,0,0,0,0,20,1.3,1,1,11.3,77777,9,999999999,209,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,7.7,86,102000,0,0,300,0,0,0,0,0,0,0,20,1.9,1,1,11.3,77777,9,999999999,209,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.2,7.2,82,102000,0,0,301,0,0,0,0,0,0,0,20,1.9,1,1,11.3,77777,9,999999999,220,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.3,11.6,89,102000,0,0,313,0,0,0,0,0,0,0,30,2.0,0,0,11.3,77777,9,999999999,220,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.7,11.1,90,102000,0,12,320,0,0,0,0,0,0,0,30,2.0,2,2,11.3,77777,9,999999999,229,0.0960,0,88,0.140,0.0,6.0 +1995,11,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.2,83,102000,139,1403,335,39,90,30,4200,4300,3700,530,80,2.0,3,3,11.3,77777,9,999999999,220,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,13.8,78,102100,408,1403,346,217,388,104,22500,33900,12600,1960,40,1.5,2,2,11.3,77777,9,999999999,220,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,13.8,65,102100,636,1403,363,362,422,171,37800,41500,18900,3520,100,1.0,3,3,11.3,77777,9,999999999,220,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,13.3,59,102100,806,1403,364,573,776,127,60700,77900,15800,2950,90,0.5,2,2,11.3,77777,9,999999999,220,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,12.7,51,102000,905,1403,375,597,674,162,62900,68000,18900,4090,270,1.5,3,3,11.3,77777,9,999999999,220,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,12.7,51,101900,927,1403,372,658,764,153,69800,77500,18500,4000,270,1.0,2,2,11.3,77777,9,999999999,209,0.0960,0,88,0.140,0.0,6.0 +1995,11,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,12.2,46,101900,870,1403,380,568,524,243,59700,53800,26200,6000,340,1.0,3,3,11.3,77777,9,999999999,209,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,12.2,46,101900,738,1403,377,442,526,165,47200,53100,19200,3550,340,1.0,2,2,11.3,77777,9,999999999,209,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.7,46,101900,541,1403,377,352,618,114,36200,57500,13900,2130,330,1.5,3,3,11.2,77777,9,999999999,209,0.0960,0,88,0.140,1.0,6.0 +1995,11,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,11.6,55,101900,292,1403,360,133,304,70,13900,23200,9000,1280,330,2.5,2,2,11.3,77777,9,999999999,200,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,11.6,55,101900,43,784,363,12,16,11,1400,700,1300,230,330,2.5,3,3,11.3,77777,9,999999999,200,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.0,12.1,60,101900,0,0,361,0,0,0,0,0,0,0,330,2.6,4,4,11.3,20204,9,999999999,200,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.3,12.3,64,101900,0,0,358,0,0,0,0,0,0,0,330,2.7,4,4,11.3,18408,9,999999999,200,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.7,12.4,67,102000,0,0,358,0,0,0,0,0,0,0,330,2.8,5,5,11.3,16613,9,999999999,200,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.1,12.4,69,102000,0,0,355,0,0,0,0,0,0,0,330,2.9,5,5,11.3,14817,9,999999999,189,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.8,12.7,72,102000,0,0,357,0,0,0,0,0,0,0,330,3.0,6,6,11.3,13021,9,999999999,189,0.0960,0,88,0.140,999.0,99.0 +1995,11,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.3,12.9,75,102000,0,0,355,0,0,0,0,0,0,0,330,3.1,6,6,11.3,11225,9,999999999,189,0.0960,0,88,0.140,999.0,99.0 +1995,11,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.9,13.1,78,102000,0,0,357,0,0,0,0,0,0,0,330,3.1,7,7,11.3,9429,9,999999999,189,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.5,13.2,81,102000,0,0,355,0,0,0,0,0,0,0,330,3.2,7,7,11.3,7633,9,999999999,189,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,13.1,83,102000,0,0,358,0,0,0,0,0,0,0,330,3.3,8,8,11.3,5838,9,999999999,179,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.7,13.4,86,102000,0,0,357,0,0,0,0,0,0,0,330,3.4,8,8,11.3,4042,9,999999999,179,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.3,13.3,88,102000,0,0,363,0,0,0,0,0,0,0,330,3.5,9,9,11.3,2246,9,999999999,179,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.3,90,102100,0,0,361,0,0,0,0,0,0,0,330,3.6,9,9,11.3,450,9,999999999,179,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,102100,0,0,361,0,0,0,0,0,0,0,330,1.5,9,9,11.3,450,9,999999999,170,0.0950,0,88,0.140,0.0,6.0 +1995,11,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.7,86,102100,136,1392,360,27,12,26,3000,800,2900,650,30,2.5,9,9,11.3,450,9,999999999,170,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,12.7,83,102200,404,1404,373,69,0,69,8000,0,8000,2760,30,2.0,10,10,11.3,450,9,999999999,170,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,12.7,83,102200,632,1404,373,123,0,123,14300,0,14300,5270,360,3.6,10,10,11.3,450,9,999999999,170,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,11.1,65,102200,802,1404,346,548,738,126,58100,74100,15600,2920,300,3.0,3,3,11.3,77777,9,999999999,170,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,10.0,54,102100,901,1404,349,477,567,112,51500,58000,14100,2930,360,4.1,2,2,11.3,77777,9,999999999,170,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,10.0,51,102000,924,1404,358,515,455,215,55200,47000,24200,5550,330,4.6,3,3,11.3,77777,9,999999999,170,0.0950,0,88,0.140,0.0,6.0 +1995,11,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,10.0,53,102000,867,1404,341,632,865,98,67400,86800,13600,2400,300,5.1,0,0,11.3,77777,9,999999999,170,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,11.1,57,102000,736,1404,342,516,819,87,54500,80900,12000,1920,330,6.1,0,0,11.3,77777,9,999999999,170,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,11.6,63,102000,539,1404,337,346,722,69,36000,68000,9800,1390,320,4.6,0,0,11.3,77777,9,999999999,170,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,11.6,67,102000,290,1404,332,150,506,46,15700,39500,7400,850,320,4.6,0,0,11.3,77777,9,999999999,170,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,11.1,61,102000,42,784,337,12,79,8,1400,3600,1100,160,350,2.0,0,0,11.3,77777,9,999999999,170,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,11.1,66,102000,0,0,331,0,0,0,0,0,0,0,350,1.9,0,0,11.3,77777,9,999999999,170,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.5,10.8,69,102000,0,0,326,0,0,0,0,0,0,0,360,1.8,0,0,11.3,77777,9,999999999,170,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.5,10.5,72,102100,0,0,321,0,0,0,0,0,0,0,360,1.8,0,0,11.3,77777,9,999999999,160,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.7,10.1,74,102100,0,0,317,0,0,0,0,0,0,0,360,1.7,0,0,11.3,77777,9,999999999,160,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.1,9.8,75,102100,0,0,314,0,0,0,0,0,0,0,360,1.6,0,0,11.3,77777,9,999999999,160,0.0950,0,88,0.140,999.0,99.0 +1995,11,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.3,9.6,78,102100,0,0,310,0,0,0,0,0,0,0,10,1.5,0,0,11.3,77777,9,999999999,160,0.0950,0,88,0.140,999.0,99.0 +1995,11,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.7,9.3,80,102100,0,0,308,0,0,0,0,0,0,0,10,1.4,0,0,11.3,77777,9,999999999,160,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.0,9.0,82,102100,0,0,304,0,0,0,0,0,0,0,10,1.3,0,0,11.3,77777,9,999999999,160,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.2,8.4,83,102100,0,0,300,0,0,0,0,0,0,0,10,1.3,0,0,11.3,77777,9,999999999,160,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.6,8.2,85,102100,0,0,298,0,0,0,0,0,0,0,20,1.2,0,0,11.3,77777,9,999999999,160,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.9,7.7,86,102100,0,0,294,0,0,0,0,0,0,0,20,1.1,0,0,11.3,77777,9,999999999,160,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.4,7.2,86,102200,0,0,292,0,0,0,0,0,0,0,20,1.0,0,0,11.2,77777,9,999999999,160,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,9.4,7.2,86,102200,0,0,292,0,0,0,0,0,0,0,360,1.0,0,0,11.3,77777,9,999999999,160,0.0940,0,88,0.140,0.0,6.0 +1995,11,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.6,7.8,83,102200,132,1369,297,59,411,20,6200,25700,3700,400,360,1.0,0,0,11.2,77777,9,999999999,160,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.5,7.7,83,102200,400,1404,306,211,523,62,22000,45700,9000,1180,360,1.0,2,2,11.3,77777,9,999999999,160,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,10.0,75,102300,628,1404,329,429,708,112,44700,68400,14000,2260,60,2.0,3,3,11.3,77777,9,999999999,160,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,10.5,67,102300,798,1404,326,586,921,62,61700,90900,9900,1610,150,1.0,0,0,11.3,77777,9,999999999,160,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,11.1,61,102200,898,1404,337,674,947,68,70800,94200,10400,1840,270,2.0,0,0,11.3,77777,9,999999999,160,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.5,12.2,59,102100,920,1404,346,693,952,69,72900,94800,10500,1900,290,2.5,0,0,11.3,77777,9,999999999,170,0.0940,0,88,0.140,0.0,6.0 +1995,11,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,11.6,55,102000,864,1404,348,644,938,66,67700,93100,10200,1760,280,2.0,0,0,11.3,77777,9,999999999,170,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,11.1,51,101900,734,1404,350,529,901,58,55800,88300,9500,1480,310,2.0,0,0,11.3,77777,9,999999999,170,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,11.6,53,101900,537,1404,350,361,822,46,38200,77400,8500,1150,270,1.5,0,0,11.3,77777,9,999999999,170,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,11.6,61,101900,289,1404,340,163,641,31,17300,52700,6400,730,340,2.0,0,0,11.3,77777,9,999999999,170,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,12.2,81,101900,42,784,323,15,168,6,1700,9700,1100,200,340,1.5,0,0,11.3,77777,9,999999999,170,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.8,12.6,87,101900,0,0,320,0,0,0,0,0,0,0,350,1.5,0,0,11.3,77777,9,999999999,179,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.5,12.7,89,101900,0,0,319,0,0,0,0,0,0,0,360,1.5,0,0,11.3,77777,9,999999999,179,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.3,12.7,90,101900,0,0,318,0,0,0,0,0,0,0,10,1.5,0,0,11.3,77777,9,999999999,179,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.2,12.6,90,101900,0,0,318,0,0,0,0,0,0,0,10,1.5,0,0,11.3,77777,9,999999999,179,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.3,12.8,91,101900,0,0,318,0,0,0,0,0,0,0,20,1.5,0,0,11.3,77777,9,999999999,179,0.0940,0,88,0.140,999.0,99.0 +1995,11,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.2,12.9,92,101800,0,0,318,0,0,0,0,0,0,0,30,1.5,0,0,11.3,77777,9,999999999,179,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.2,13.0,92,101800,0,0,318,0,0,0,0,0,0,0,40,1.5,0,0,11.3,77777,9,999999999,179,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.2,13.0,92,101800,0,0,318,0,0,0,0,0,0,0,50,1.5,0,0,11.3,77777,9,999999999,189,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.1,12.8,92,101800,0,0,317,0,0,0,0,0,0,0,60,1.5,0,0,11.3,77777,9,999999999,189,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.3,13.0,92,101800,0,0,318,0,0,0,0,0,0,0,60,1.5,0,0,11.3,77777,9,999999999,189,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.3,12.8,91,101800,0,0,318,0,0,0,0,0,0,0,70,1.5,0,0,11.3,77777,9,999999999,189,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.4,12.7,90,101800,0,0,319,0,0,0,0,0,0,0,80,1.5,0,0,11.3,77777,9,999999999,189,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.8,12.7,93,101800,0,0,330,0,0,0,0,0,0,0,100,2.0,3,3,11.3,77777,9,999999999,189,0.0940,0,88,0.140,0.0,6.0 +1995,11,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,13.8,90,101800,128,1370,335,52,279,26,5500,15600,3900,460,100,2.0,2,2,11.3,77777,9,999999999,200,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,14.4,76,101900,396,1405,355,224,389,114,22900,33500,13400,2180,110,2.5,3,3,11.3,77777,9,999999999,200,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.1,14.4,66,101900,624,1405,363,414,748,81,43100,72100,10900,1650,110,4.1,2,2,11.3,77777,9,999999999,200,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,15.0,58,101800,794,1405,381,509,642,145,53300,64000,17000,3260,120,4.1,3,3,11.3,77777,9,999999999,200,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.5,14.4,50,101800,894,1405,385,632,817,111,66600,81800,14400,2700,160,4.6,2,2,11.3,77777,9,999999999,209,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,13.8,47,101700,917,1405,391,649,685,202,67500,68400,22700,5000,170,3.6,3,3,11.3,77777,9,999999999,209,0.0940,0,88,0.140,0.0,6.0 +1995,11,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.1,12.7,43,101600,862,1405,386,585,789,100,62000,79000,13400,2420,220,2.0,2,2,11.3,77777,9,999999999,209,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,12.7,48,101600,732,1405,410,154,1,153,17900,100,17900,6690,200,2.0,9,9,11.3,1800,9,999999999,209,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,14.4,56,101600,536,1405,409,73,61,50,8600,6100,6200,1160,180,4.1,9,9,11.3,1800,9,999999999,209,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,14.4,57,101600,288,1405,377,132,373,55,13500,28700,7600,980,180,2.0,3,3,11.3,77777,9,999999999,220,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,14.4,68,101600,41,784,360,13,111,7,1400,5100,1200,140,160,1.5,2,2,11.3,77777,9,999999999,220,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.9,14.9,73,101600,0,0,361,0,0,0,0,0,0,0,160,1.4,3,3,11.3,19114,9,999999999,220,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.6,14.9,74,101700,0,0,362,0,0,0,0,0,0,0,150,1.4,4,4,11.3,16229,9,999999999,220,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.4,15.0,76,101700,0,0,364,0,0,0,0,0,0,0,150,1.3,5,5,11.3,13343,9,999999999,229,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.3,15.0,76,101700,0,0,367,0,0,0,0,0,0,0,140,1.2,6,6,11.3,10457,9,999999999,229,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.4,15.2,77,101700,0,0,372,0,0,0,0,0,0,0,140,1.1,7,7,11.3,7571,9,999999999,229,0.0940,0,88,0.140,999.0,99.0 +1995,11,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.3,15.4,78,101700,0,0,378,0,0,0,0,0,0,0,130,1.1,8,8,11.3,4686,9,999999999,229,0.0940,0,88,0.140,999.0,99.0 +1995,11,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.5,78,101700,0,0,386,0,0,0,0,0,0,0,130,1.0,9,9,11.3,1800,9,999999999,240,0.0930,0,88,0.140,0.0,6.0 +1995,11,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.9,15.6,81,101800,0,0,384,0,0,0,0,0,0,0,120,1.0,9,9,11.3,1800,9,999999999,240,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.3,15.5,84,101800,0,0,381,0,0,0,0,0,0,0,120,1.0,9,9,11.3,1800,9,999999999,240,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,15.7,86,101800,0,0,379,0,0,0,0,0,0,0,110,1.0,9,9,11.3,1800,9,999999999,240,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,15.5,88,101800,0,0,376,0,0,0,0,0,0,0,110,1.0,9,9,11.3,1800,9,999999999,240,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,15.5,90,101800,0,0,375,0,0,0,0,0,0,0,100,1.0,9,9,11.3,1800,9,999999999,250,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.1,87,101900,0,0,381,0,0,0,0,0,0,0,50,1.0,9,9,11.3,1800,9,999999999,250,0.0930,0,88,0.140,0.0,6.0 +1995,11,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,16.1,81,101900,125,1347,387,31,8,31,3600,0,3600,1030,80,1.5,9,9,11.3,7500,9,999999999,259,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,17.2,73,101900,392,1405,404,126,37,115,13700,3300,12800,2950,110,3.0,9,9,11.3,7500,9,999999999,270,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,17.7,66,102000,621,1405,416,290,193,205,31500,19300,22900,4920,120,2.5,9,9,11.3,7500,9,999999999,270,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,18.8,62,101900,791,1405,430,235,66,197,25800,6600,22100,6440,120,4.1,9,9,11.3,7500,9,999999999,279,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.7,18.3,57,101800,891,1405,436,355,78,306,39100,8000,34000,9990,130,4.6,9,9,11.3,7500,9,999999999,290,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,18.3,55,101700,915,1405,440,277,97,214,30900,10300,24200,6100,150,4.6,9,9,11.3,77777,9,999999999,300,0.0930,0,88,0.140,0.0,6.0 +1995,11,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,17.7,56,101700,860,1405,432,162,21,149,17900,2100,16600,5320,160,2.5,9,9,11.3,77777,9,999999999,309,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.2,17.7,56,101700,730,1405,432,367,131,299,40200,13300,33300,8400,210,2.5,9,9,11.3,7500,9,999999999,320,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,18.3,60,101600,534,1405,430,178,145,123,19700,14200,14300,2850,210,2.0,9,9,11.3,7500,9,999999999,320,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,18.3,69,101600,287,1405,417,102,24,97,11100,2000,10700,2270,200,1.5,9,9,11.3,7500,9,999999999,329,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,18.3,76,101700,41,785,408,8,2,8,1000,0,1000,310,220,3.0,9,9,11.3,2700,9,999999999,340,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.1,18.9,82,101700,0,0,405,0,0,0,0,0,0,0,260,2.3,9,9,11.3,2775,9,999999999,350,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.8,19.1,85,101800,0,0,404,0,0,0,0,0,0,0,290,1.5,9,9,11.3,2850,9,999999999,359,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.7,19.3,86,101800,0,0,404,0,0,0,0,0,0,0,330,0.8,9,9,11.3,2925,9,999999999,370,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,19.4,87,101800,0,0,403,0,0,0,0,0,0,0,0,0.0,9,9,11.3,3000,9,999999999,370,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.6,19.7,89,101800,0,0,403,0,0,0,0,0,0,0,20,0.3,9,9,11.3,2640,9,999999999,379,0.0930,0,88,0.140,999.0,99.0 +1995,11,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.5,20.1,92,101700,0,0,403,0,0,0,0,0,0,0,30,0.6,9,9,11.3,2280,9,999999999,390,0.0930,0,88,0.140,999.0,99.0 +1995,11,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.6,20.4,93,101700,0,0,404,0,0,0,0,0,0,0,50,0.9,9,9,11.3,1920,9,999999999,400,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.5,20.6,95,101600,0,0,416,0,0,0,0,0,0,0,70,1.3,10,10,11.3,1560,9,999999999,409,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.4,20.6,95,101600,0,0,415,0,0,0,0,0,0,0,80,1.6,10,10,11.3,1200,9,999999999,419,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.5,21.0,97,101600,0,0,416,0,0,0,0,0,0,0,100,1.9,10,10,11.3,840,9,999999999,419,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.5,21.0,97,101500,0,0,416,0,0,0,0,0,0,0,110,2.2,10,10,11.3,480,9,999999999,430,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,21.1,97,101500,0,0,417,0,0,0,0,0,0,0,130,2.5,10,10,4.8,120,9,999999999,440,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,21.1,97,101500,0,0,417,0,0,0,0,0,0,0,150,1.0,10,10,2.4,120,9,999999999,450,0.0920,0,88,0.140,4.0,24.0 +1995,11,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,21.6,96,101600,121,1324,421,13,0,13,1600,0,1600,510,330,1.5,10,10,2.4,120,9,999999999,440,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,20.0,87,101600,388,1406,419,54,0,54,6400,0,6400,2230,210,5.6,10,10,3.2,150,9,999999999,430,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,21.6,96,101600,617,1406,394,289,138,228,31000,13800,25000,5470,160,9.2,9,7,11.3,2100,9,999999999,419,0.0920,0,88,0.140,5.0,6.0 +1995,11,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.7,21.6,94,101600,787,1406,403,385,147,303,41500,15200,33000,7910,180,6.1,9,8,11.3,2400,9,999999999,409,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.8,22.2,91,101500,888,1406,404,336,294,150,37100,30400,17900,3610,210,5.1,9,7,11.3,77777,9,999999999,400,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.6,20.5,69,101500,912,1406,402,587,740,107,62400,74300,14000,2700,240,5.1,3,3,11.3,77777,9,999999999,390,0.0920,0,88,0.140,0.0,6.0 +1995,11,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.6,20.0,67,101400,857,1406,398,466,530,143,49300,53400,16600,3450,270,5.1,2,2,11.3,77777,9,999999999,379,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.4,20.0,76,101400,728,1406,411,336,171,247,36400,17600,27300,6240,280,4.6,9,8,11.3,7500,9,999999999,370,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.3,19.4,79,101400,533,1406,380,321,654,73,34000,61900,10400,1470,300,4.1,2,2,11.3,77777,9,999999999,359,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,19.4,84,101400,286,1406,378,130,303,68,13500,22900,8800,1240,300,4.1,3,3,11.2,77777,9,999999999,359,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,18.3,93,101500,41,785,359,15,107,10,1700,4800,1400,190,300,2.5,2,2,11.3,77777,9,999999999,350,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.8,17.7,93,101500,0,0,359,0,0,0,0,0,0,0,290,2.5,3,3,11.3,77777,9,999999999,340,0.0920,0,88,0.140,0.0,6.0 +1995,11,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.7,93,101600,0,0,355,0,0,0,0,0,0,0,320,2.0,2,2,11.3,77777,9,999999999,329,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,101600,0,0,381,0,0,0,0,0,0,0,320,3.0,9,8,11.3,210,9,999999999,320,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,17.7,90,101600,0,0,347,0,0,0,0,0,0,0,320,2.5,0,0,11.3,77777,9,999999999,309,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.8,17.2,90,101700,0,0,358,0,0,0,0,0,0,0,320,3.6,3,3,11.3,77777,9,999999999,300,0.0920,0,88,0.140,999.0,99.0 +1995,11,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,16.1,87,101700,0,0,351,0,0,0,0,0,0,0,320,2.0,2,2,11.3,77777,9,999999999,290,0.0920,0,88,0.140,999.0,99.0 +1995,11,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.6,90,101700,0,0,352,0,0,0,0,0,0,0,340,2.0,2,2,11.3,77777,9,999999999,279,0.0910,0,88,0.140,0.0,6.0 +1995,11,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.7,16.6,93,101700,0,0,352,0,0,0,0,0,0,0,340,1.0,3,3,11.3,77777,9,999999999,270,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.1,93,101700,0,0,346,0,0,0,0,0,0,0,360,1.0,2,2,11.3,77777,9,999999999,259,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,16.6,96,101700,0,0,358,0,0,0,0,0,0,0,350,1.0,9,6,11.3,900,9,999999999,250,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.1,15.5,96,101700,0,0,340,0,0,0,0,0,0,0,0,0.0,2,2,9.7,77777,9,999999999,240,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,14.4,96,101700,0,0,337,0,0,0,0,0,0,0,360,1.0,3,3,11.3,77777,9,999999999,229,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.5,13.8,90,101800,0,0,347,0,0,0,0,0,0,0,20,2.0,9,6,9.7,750,9,999999999,220,0.0910,0,88,0.140,0.0,6.0 +1995,11,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.5,13.3,87,101900,118,1301,346,39,33,36,4300,2100,4100,840,350,3.0,9,6,11.3,900,9,999999999,220,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.5,74,101900,384,1406,341,149,111,118,16000,9800,13400,2610,20,2.0,9,6,11.3,900,9,999999999,220,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.2,10.5,65,102000,613,1406,343,350,593,91,36900,57500,11800,1870,30,3.0,3,3,11.3,77777,9,999999999,220,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.4,9.4,52,102000,784,1406,361,445,500,166,47900,50900,19400,3670,50,4.6,9,6,11.3,77777,9,999999999,209,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,10.0,51,101900,885,1406,367,630,703,188,65600,70100,21300,4500,60,1.0,9,6,11.3,77777,9,999999999,209,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.6,9.4,46,101800,909,1406,359,599,704,144,63700,71400,17400,3700,30,5.1,2,2,11.3,77777,9,999999999,209,0.0910,0,88,0.140,0.0,6.0 +1995,11,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.6,8.3,42,101700,855,1406,362,588,716,153,61900,71900,18100,3650,60,2.5,3,3,11.3,77777,9,999999999,209,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.2,8.8,42,101700,726,1406,362,460,650,124,48300,64300,15000,2670,60,1.0,2,2,11.3,77777,9,999999999,209,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,8.3,45,101800,532,1406,356,344,683,86,36100,64200,11700,1690,60,1.5,3,3,11.3,77777,9,999999999,200,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.5,8.3,45,101800,286,1406,353,134,462,40,14000,36100,6700,750,60,1.5,2,2,11.3,77777,9,999999999,200,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.3,9.4,56,101800,41,785,355,11,21,10,1300,900,1200,210,30,1.0,9,6,11.3,77777,9,999999999,200,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.7,8.8,56,101900,0,0,352,0,0,0,0,0,0,0,30,1.0,9,6,11.3,77777,9,999999999,200,0.0910,0,88,0.140,0.0,6.0 +1995,11,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.6,8.8,60,101900,0,0,347,0,0,0,0,0,0,0,30,1.0,9,6,11.3,77777,9,999999999,200,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.9,9.9,68,102000,0,0,341,0,0,0,0,0,0,0,30,2.0,7,5,11.3,77777,9,999999999,189,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.3,9.6,75,102000,0,0,333,0,0,0,0,0,0,0,40,2.1,4,3,11.3,77777,9,999999999,189,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.8,9.4,83,102000,0,0,327,0,0,0,0,0,0,0,40,2.2,2,2,11.3,77777,9,999999999,189,0.0910,0,88,0.140,999.0,99.0 +1995,11,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.2,9.1,83,102000,0,0,336,0,0,0,0,0,0,0,40,2.3,9,6,11.3,77777,9,999999999,189,0.0910,0,88,0.140,999.0,99.0 +2000,12,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.7,8.8,77,102100,0,0,311,0,0,0,0,0,0,0,40,2.3,0,0,11.3,77777,9,999999999,150,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.1,8.5,77,102100,0,0,308,0,0,0,0,0,0,0,60,2.4,0,0,11.3,77777,9,999999999,150,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.6,8.3,82,102100,0,0,306,0,0,0,0,0,0,0,50,2.5,0,0,11.3,77777,9,999999999,150,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,8.0,76,102100,0,0,303,0,0,0,0,0,0,0,30,2.6,0,0,11.3,77777,9,999999999,160,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,9.0,82,102100,0,0,304,0,0,0,0,0,0,0,40,2.6,0,0,11.3,77777,9,999999999,160,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,9.0,87,102100,0,0,300,0,0,0,0,0,0,0,30,2.1,0,0,11.3,77777,9,999999999,170,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,102100,0,0,301,0,0,0,0,0,0,0,30,2.1,0,0,11.3,77777,9,999999999,170,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,102200,112,1278,310,0,0,0,0,0,0,0,40,3.1,0,0,11.3,77777,9,999999999,170,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,102200,378,1407,318,245,650,70,25200,55200,10300,1280,60,5.7,0,0,11.3,77777,9,999999999,179,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,10.0,68,102200,607,1407,323,400,700,97,41900,67500,12700,1970,40,4.6,0,0,11.3,77777,9,999999999,179,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,11.0,60,102200,778,1407,338,549,839,83,58400,83600,12100,1940,60,4.1,0,0,11.3,77777,9,999999999,189,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,11.0,53,102100,880,1407,347,641,887,85,66800,87900,11600,1990,70,4.1,0,0,11.3,77777,9,999999999,189,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,12.0,50,102000,905,1407,358,659,900,79,68800,89400,11200,1990,350,3.6,0,0,11.3,77777,9,999999999,189,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,11.0,44,101900,852,1407,361,617,883,81,64400,87400,11300,1890,270,3.1,0,0,11.3,77777,9,999999999,200,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,12.0,47,101900,724,1407,362,500,828,72,52200,80900,10500,1590,300,3.1,0,0,11.3,77777,9,999999999,200,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,10.0,44,101900,530,1407,355,342,736,63,35700,69300,9500,1300,310,2.1,0,0,11.3,77777,9,999999999,200,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,11.0,53,101900,285,1407,354,154,562,40,15700,44700,6600,770,320,2.1,2,1,11.3,77777,9,999999999,200,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,12.0,68,102000,40,786,351,2,23,1,300,1300,200,30,310,2.6,5,4,11.3,77777,9,999999999,200,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,102000,0,0,337,0,0,0,0,0,0,0,320,2.6,2,1,11.3,77777,9,999999999,200,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,11.0,72,102000,0,0,330,0,0,0,0,0,0,0,350,1.5,3,1,11.3,77777,9,999999999,200,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,102100,0,0,314,0,0,0,0,0,0,0,330,2.1,0,0,11.3,77777,9,999999999,200,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,102100,0,0,322,0,0,0,0,0,0,0,360,1.5,3,1,11.3,77777,9,999999999,200,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,102100,0,0,332,0,0,0,0,0,0,0,20,1.5,9,4,11.3,1500,9,999999999,200,0.0900,0,88,0.140,999.0,99.0 +2000,12,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,12.0,88,102000,0,0,332,0,0,0,0,0,0,0,20,1.5,9,4,11.3,2400,9,999999999,209,0.0900,0,88,0.140,999.0,99.0 +2000,12,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,102000,0,0,333,0,0,0,0,0,0,0,360,1.5,5,5,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,101900,0,0,316,0,0,0,0,0,0,0,340,1.0,2,2,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,101900,0,0,301,0,0,0,0,0,0,0,350,2.1,0,0,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,101900,0,0,306,0,0,0,0,0,0,0,50,2.1,0,0,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,11.0,88,101900,0,0,311,0,0,0,0,0,0,0,50,1.0,0,0,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,102000,0,0,318,0,0,0,0,0,0,0,60,1.5,0,0,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,102000,0,0,321,0,0,0,0,0,0,0,20,1.5,3,3,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,102000,109,1255,323,0,0,0,0,0,0,0,10,1.5,2,2,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,102100,374,1408,346,238,625,71,24400,52900,10300,1290,50,2.1,3,3,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,102100,603,1408,355,414,799,70,43400,76900,10300,1480,140,2.1,5,5,11.3,77777,9,999999999,220,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,13.0,60,102100,775,1408,370,505,633,155,52400,62600,17800,3370,230,2.1,5,5,11.3,77777,9,999999999,220,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,11.0,47,102000,877,1408,368,635,808,130,65500,80100,15500,2880,270,2.6,2,2,11.3,77777,9,999999999,220,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,11.0,41,101900,902,1408,382,653,876,90,67900,86900,12000,2080,260,2.1,3,3,11.3,77777,9,999999999,220,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,13.0,47,101900,850,1408,381,600,817,105,63100,81500,13700,2450,280,2.9,2,2,11.3,77777,9,999999999,220,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,11.0,41,101800,723,1408,382,494,804,80,52400,79400,11400,1800,290,3.8,3,3,11.3,77777,9,999999999,220,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,15.0,61,101900,530,1408,373,342,742,62,35800,69900,9400,1290,310,4.6,2,2,11.3,77777,9,999999999,220,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,15.0,73,101900,285,1408,362,150,530,42,15600,41200,7200,790,300,3.1,3,3,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,101900,40,786,350,2,104,1,800,6000,400,40,310,3.1,2,2,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,102000,0,0,331,0,0,0,0,0,0,0,340,2.1,0,0,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,12.0,77,102000,0,0,325,0,0,0,0,0,0,0,340,1.5,0,0,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,102000,0,0,322,0,0,0,0,0,0,0,340,2.6,0,0,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,14.0,94,102100,0,0,323,0,0,0,0,0,0,0,360,2.1,0,0,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,13.0,94,102000,0,0,317,0,0,0,0,0,0,0,350,1.5,0,0,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,102000,0,0,318,0,0,0,0,0,0,0,360,1.5,0,0,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,102000,0,0,307,0,0,0,0,0,0,0,340,1.5,0,0,11.3,77777,9,999999999,209,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,102000,0,0,313,0,0,0,0,0,0,0,330,1.0,0,0,11.3,77777,9,999999999,200,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,102000,0,0,326,0,0,0,0,0,0,0,20,2.1,5,5,11.3,77777,9,999999999,200,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,102000,0,0,321,0,0,0,0,0,0,0,320,1.5,3,3,9.7,77777,9,999999999,200,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,101900,0,0,326,0,0,0,0,0,0,0,320,1.5,5,5,4.8,77777,9,999999999,189,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,102100,0,0,361,0,0,0,0,0,0,0,40,2.1,10,10,0.2,15,9,999999999,189,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,102100,0,0,361,0,0,0,0,0,0,0,20,2.1,10,10,0.6,15,9,999999999,179,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,102200,105,1256,361,0,0,0,0,0,0,0,20,1.5,10,10,2.4,60,9,999999999,179,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,13.0,100,102200,370,1408,361,183,204,129,19600,17700,14900,2840,20,2.1,10,10,2.2,60,9,999999999,179,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,14.0,100,102300,600,1408,367,143,0,143,16400,0,16400,5740,330,3.6,10,10,9.7,90,9,999999999,170,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,15.0,88,102200,771,1408,360,192,0,192,22200,0,22200,8140,340,2.6,9,7,11.3,210,9,999999999,170,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,102200,874,1408,364,179,0,179,21100,0,21100,8220,330,3.6,9,8,11.3,300,9,999999999,170,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,102100,900,1408,381,432,204,301,47100,21400,33300,8480,320,4.6,10,10,11.3,450,9,999999999,160,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,13.0,73,102000,848,1408,368,169,0,169,20000,0,20000,7750,330,4.1,9,8,11.3,3000,9,999999999,160,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,12.0,64,102000,722,1408,359,494,644,163,50700,62700,18500,3320,330,4.1,5,5,11.3,77777,9,999999999,150,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,11.0,64,102100,529,1408,353,316,556,106,32400,51600,13000,1990,330,4.1,5,5,11.3,77777,9,999999999,150,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,102100,284,1408,337,132,357,60,13900,27000,8500,1080,330,4.1,5,5,11.3,77777,9,999999999,139,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,102200,40,786,345,2,33,1,300,1900,200,40,320,4.6,9,8,11.3,7500,9,999999999,139,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,9.0,72,102200,0,0,361,0,0,0,0,0,0,0,10,3.6,10,10,11.3,900,9,999999999,129,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,8.0,72,102300,0,0,338,0,0,0,0,0,0,0,10,3.1,9,8,11.3,1050,9,999999999,129,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,8.0,76,102400,0,0,328,0,0,0,0,0,0,0,10,4.1,9,7,11.3,1050,9,999999999,120,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,8.0,76,102400,0,0,333,0,0,0,0,0,0,0,30,3.6,9,8,11.3,1050,9,999999999,120,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,7.0,76,102500,0,0,322,0,0,0,0,0,0,0,40,6.7,9,7,11.3,600,9,999999999,120,0.0890,0,88,0.140,999.0,99.0 +2000,12,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.0,82,102500,0,0,323,0,0,0,0,0,0,0,40,6.2,9,8,11.3,1050,9,999999999,110,0.0890,0,88,0.140,999.0,99.0 +2000,12,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.0,76,102500,0,0,329,0,0,0,0,0,0,0,40,6.2,9,9,11.3,1050,9,999999999,110,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,102400,0,0,301,0,0,0,0,0,0,0,20,3.1,5,5,11.3,77777,9,999999999,110,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,5.0,87,102400,0,0,296,0,0,0,0,0,0,0,20,2.1,5,5,11.3,77777,9,999999999,120,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,102400,0,0,284,0,0,0,0,0,0,0,10,3.6,2,2,11.3,77777,9,999999999,120,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,102300,0,0,287,0,0,0,0,0,0,0,10,3.1,3,3,11.3,77777,9,999999999,129,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,102400,0,0,284,0,0,0,0,0,0,0,20,4.6,2,2,11.3,77777,9,999999999,129,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,102400,0,0,283,0,0,0,0,0,0,0,10,5.1,3,3,11.3,77777,9,999999999,139,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,4.0,87,102400,102,1233,291,0,0,0,0,0,0,0,20,4.6,5,5,11.3,77777,9,999999999,139,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,102600,367,1409,295,216,495,86,22500,41600,11600,1590,30,4.6,3,3,11.3,77777,9,999999999,150,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,102600,596,1409,302,387,676,100,40400,64900,12800,2000,20,4.1,2,2,11.3,77777,9,999999999,150,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,7.0,67,102500,768,1409,320,492,590,169,52600,59900,19800,3700,30,4.1,3,3,11.3,77777,9,999999999,160,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,8.0,63,102400,871,1409,316,623,778,140,65900,78600,17100,3440,30,4.1,0,0,11.3,77777,9,999999999,160,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,9.0,59,102300,898,1409,326,635,822,110,67000,82300,14300,2690,50,4.6,0,0,11.3,77777,9,999999999,170,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,9.0,52,102200,847,1409,335,600,823,104,63100,82100,13600,2430,20,4.1,0,0,11.3,77777,9,999999999,170,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,9.0,52,102100,721,1409,350,488,774,91,51000,76000,12000,1940,20,3.1,3,3,11.3,77777,9,999999999,170,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,10.0,56,102100,529,1409,378,326,620,93,33900,57900,12000,1790,50,5.1,9,9,11.3,1500,9,999999999,170,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,10.0,59,102200,285,1409,372,132,325,66,13700,24500,8800,1200,30,3.6,9,9,11.3,1500,9,999999999,170,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,10.0,63,102200,41,787,367,2,74,1,600,4300,300,40,20,3.1,9,9,11.3,1500,9,999999999,170,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,10.0,68,102300,0,0,362,0,0,0,0,0,0,0,40,4.6,9,9,11.3,1200,9,999999999,179,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,102300,0,0,362,0,0,0,0,0,0,0,40,4.1,10,10,11.3,1440,9,999999999,179,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,102400,0,0,357,0,0,0,0,0,0,0,40,4.6,10,10,11.3,1500,9,999999999,179,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,102400,0,0,357,0,0,0,0,0,0,0,40,5.1,10,10,11.3,1800,9,999999999,179,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,102400,0,0,357,0,0,0,0,0,0,0,40,3.6,10,10,11.3,1800,9,999999999,179,0.0880,0,88,0.140,999.0,99.0 +2000,12,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,10.0,88,102400,0,0,352,0,0,0,0,0,0,0,20,2.6,10,10,11.3,1800,9,999999999,179,0.0880,0,88,0.140,999.0,99.0 +2000,12,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,9.0,82,102300,0,0,351,0,0,0,0,0,0,0,30,3.6,10,10,11.3,1800,9,999999999,179,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,9.0,87,102300,0,0,346,0,0,0,0,0,0,0,20,2.9,10,10,11.3,1800,9,999999999,179,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,8.0,82,102300,0,0,345,0,0,0,0,0,0,0,360,2.1,10,10,11.3,1800,9,999999999,179,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,102300,0,0,340,0,0,0,0,0,0,0,20,3.6,10,10,11.3,1800,9,999999999,170,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,102200,0,0,340,0,0,0,0,0,0,0,10,3.1,10,10,11.3,1800,9,999999999,170,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.0,82,102300,0,0,330,0,0,0,0,0,0,0,350,2.6,9,9,11.3,1800,9,999999999,160,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.0,76,102300,0,0,338,0,0,0,0,0,0,0,350,2.1,10,10,11.3,1800,9,999999999,160,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.0,76,102300,99,1209,329,0,0,0,0,0,0,0,10,2.1,9,9,11.3,1800,9,999999999,160,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,5.0,66,102400,363,1409,332,80,0,80,9100,0,9100,2960,10,3.1,9,9,11.3,1800,9,999999999,150,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,5.0,62,102400,593,1409,337,156,0,156,17700,0,17700,6070,340,2.1,9,9,11.3,1800,9,999999999,150,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,4.0,48,102400,765,1409,322,467,420,238,49900,44100,25800,5660,10,3.6,2,2,11.3,77777,9,999999999,139,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,5.0,45,102300,869,1409,336,623,742,164,65200,74400,19200,3920,20,3.6,3,3,11.3,77777,9,999999999,139,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,5.0,40,102100,896,1409,331,606,660,184,63000,66000,20900,4480,30,4.1,0,0,11.3,77777,9,999999999,139,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,5.0,37,102000,845,1409,350,600,817,108,62800,81300,13800,2480,350,2.6,3,3,11.3,77777,9,999999999,129,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,6.0,40,102000,720,1409,348,489,792,82,51500,78100,11500,1820,320,3.1,2,2,11.3,77777,9,999999999,129,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,8.0,52,102000,528,1409,330,342,748,61,35900,70400,9400,1280,310,5.1,0,0,11.3,77777,9,999999999,120,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,5.0,45,102100,285,1409,332,154,568,39,15800,45300,6600,760,310,3.6,2,2,11.3,77777,9,999999999,120,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,5.0,58,102100,41,787,318,1,0,1,100,0,100,40,330,2.6,3,3,11.3,77777,9,999999999,120,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,4.0,54,102200,0,0,303,0,0,0,0,0,0,0,340,2.1,0,0,11.3,77777,9,999999999,110,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,4.0,62,102200,0,0,295,0,0,0,0,0,0,0,350,2.1,0,0,11.3,77777,9,999999999,110,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,102300,0,0,288,0,0,0,0,0,0,0,350,2.1,0,0,11.3,77777,9,999999999,110,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,102300,0,0,288,0,0,0,0,0,0,0,40,1.5,0,0,11.3,77777,9,999999999,100,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,102300,0,0,288,0,0,0,0,0,0,0,360,2.1,0,0,11.3,77777,9,999999999,100,0.0870,0,88,0.140,999.0,99.0 +2000,12,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,102200,0,0,284,0,0,0,0,0,0,0,350,1.5,0,0,11.3,77777,9,999999999,100,0.0870,0,88,0.140,999.0,99.0 +2000,12,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,102200,0,0,284,0,0,0,0,0,0,0,10,1.5,0,0,11.3,77777,9,999999999,89,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,102100,0,0,292,0,0,0,0,0,0,0,30,3.1,0,0,11.3,77777,9,999999999,100,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,102100,0,0,292,0,0,0,0,0,0,0,40,2.1,0,0,11.3,77777,9,999999999,100,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,102100,0,0,291,0,0,0,0,0,0,0,40,2.1,0,0,11.3,77777,9,999999999,100,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,102100,0,0,291,0,0,0,0,0,0,0,50,2.6,0,0,11.3,77777,9,999999999,100,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,102100,0,0,285,0,0,0,0,0,0,0,40,2.1,0,0,11.3,77777,9,999999999,110,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,2.0,61,102100,0,0,297,0,0,0,0,0,0,0,30,2.6,3,3,11.3,77777,9,999999999,110,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,0.0,50,102100,96,1186,304,0,0,0,0,0,0,0,40,2.6,5,5,11.3,77777,9,999999999,110,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,1.0,47,102200,360,1409,314,218,476,95,22400,39600,12200,1780,40,3.6,5,5,11.3,77777,9,999999999,120,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,1.0,39,102200,590,1409,327,381,670,100,39800,64100,12800,1990,50,5.1,5,5,11.3,77777,9,999999999,120,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,0.0,36,102100,762,1409,338,525,688,151,54400,67900,17600,3250,40,4.1,9,8,11.3,1500,9,999999999,120,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,0.0,30,102100,866,1409,347,457,296,274,49000,31500,29500,7040,30,3.1,9,7,11.3,1500,9,999999999,120,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,1.0,32,101900,894,1409,341,600,648,187,62300,64700,21100,4520,320,3.1,5,5,11.3,77777,9,999999999,129,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,2.0,32,101900,844,1409,354,519,477,232,54400,48800,25100,5550,310,3.6,9,7,11.3,1200,9,999999999,129,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,0.0,26,101800,719,1409,362,309,142,236,33500,14600,26100,5930,300,3.1,9,8,11.3,1500,9,999999999,139,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,-1.0,26,101800,528,1409,343,327,528,128,34200,49800,15400,2480,310,2.6,5,5,11.3,77777,9,999999999,139,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,6.0,48,101800,285,1409,342,79,70,65,8700,5500,7600,1400,310,3.1,5,5,11.3,77777,9,999999999,150,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,4.0,45,101800,41,787,342,2,21,2,400,1000,300,40,320,1.0,9,7,11.3,2100,9,999999999,150,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,4.0,54,101800,0,0,321,0,0,0,0,0,0,0,330,1.5,5,5,11.3,77777,9,999999999,160,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,4.0,54,101800,0,0,321,0,0,0,0,0,0,0,10,2.1,5,5,11.3,77777,9,999999999,160,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,5.0,55,101800,0,0,339,0,0,0,0,0,0,0,330,2.6,9,8,11.3,2100,9,999999999,170,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,3.0,47,101900,0,0,332,0,0,0,0,0,0,0,360,2.6,9,7,11.3,2400,9,999999999,170,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,6.0,59,101900,0,0,340,0,0,0,0,0,0,0,330,4.1,9,8,11.3,1500,9,999999999,179,0.0860,0,88,0.140,999.0,99.0 +2000,12,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,101800,0,0,338,0,0,0,0,0,0,0,60,4.1,9,7,11.3,2700,9,999999999,179,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,7.0,67,101700,0,0,307,0,0,0,0,0,0,0,30,2.1,0,0,11.3,77777,9,999999999,189,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,8.0,72,101700,0,0,308,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,189,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,7.0,71,101700,0,0,302,0,0,0,0,0,0,0,50,1.5,0,0,11.3,77777,9,999999999,189,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,9.0,72,101700,0,0,351,0,0,0,0,0,0,0,50,3.1,9,9,11.3,1350,9,999999999,179,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,6.0,59,101800,0,0,328,0,0,0,0,0,0,0,350,1.5,5,5,11.3,77777,9,999999999,179,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,7.0,76,101900,0,0,334,0,0,0,0,0,0,0,350,2.6,9,9,11.3,7500,9,999999999,179,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,5.0,58,101800,0,0,323,0,0,0,0,0,0,0,50,2.6,5,5,11.3,77777,9,999999999,179,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,5.0,58,101900,94,1187,323,0,0,0,0,0,0,0,40,4.1,5,5,11.3,77777,9,999999999,179,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,102000,357,1410,318,202,431,93,20900,35700,11800,1740,60,6.2,2,2,11.3,77777,9,999999999,179,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,3.0,42,102000,586,1410,329,389,676,106,40300,64400,13400,2080,40,6.2,3,3,11.3,77777,9,999999999,179,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,2.0,32,102000,760,1410,338,531,834,80,56600,82900,11800,1860,60,5.7,2,2,11.3,77777,9,999999999,179,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,1.0,28,101900,864,1410,345,617,839,101,65300,84000,13600,2430,50,4.1,3,3,11.3,77777,9,999999999,170,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,2.0,28,101800,892,1410,356,642,864,93,66700,85600,12200,2060,70,5.1,5,5,11.3,77777,9,999999999,170,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,3.0,30,101700,843,1410,379,595,722,162,62100,72100,18800,3760,50,4.6,9,9,11.3,7500,9,999999999,179,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,4.0,33,101700,718,1410,380,388,325,221,41300,33800,24000,5100,60,3.6,9,9,11.3,1050,9,999999999,179,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,4.0,33,101800,528,1410,380,332,522,136,34600,49200,16100,2660,60,4.1,9,9,11.3,1050,9,999999999,179,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,6.0,40,101800,285,1410,357,106,157,74,11200,11900,8800,1410,80,3.1,5,5,11.3,77777,9,999999999,179,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,6.0,43,101800,42,787,352,2,70,2,700,4100,400,80,40,2.1,5,5,11.3,77777,9,999999999,189,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,9.0,59,101900,0,0,326,0,0,0,0,0,0,0,40,2.1,0,0,11.3,77777,9,999999999,189,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,9.0,63,101900,0,0,322,0,0,0,0,0,0,0,30,2.1,0,0,11.3,77777,9,999999999,189,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,9.0,59,102000,0,0,326,0,0,0,0,0,0,0,60,3.6,0,0,11.3,77777,9,999999999,189,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,9.0,59,102000,0,0,366,0,0,0,0,0,0,0,60,3.1,9,9,11.3,7500,9,999999999,200,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,9.0,63,102000,0,0,332,0,0,0,0,0,0,0,50,2.6,2,2,11.3,77777,9,999999999,200,0.0860,0,88,0.140,999.0,99.0 +2000,12,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,101900,0,0,332,0,0,0,0,0,0,0,40,1.5,3,3,11.3,77777,9,999999999,200,0.0860,0,88,0.140,999.0,99.0 +2000,12,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,10.0,68,101900,0,0,362,0,0,0,0,0,0,0,40,1.5,9,9,11.3,1200,9,999999999,200,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,10.0,68,101900,0,0,342,0,0,0,0,0,0,0,60,3.6,5,5,11.3,77777,9,999999999,209,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,101900,0,0,337,0,0,0,0,0,0,0,30,3.1,5,5,11.3,77777,9,999999999,209,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,101900,0,0,356,0,0,0,0,0,0,0,20,2.1,9,9,11.3,1350,9,999999999,209,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,101800,0,0,328,0,0,0,0,0,0,0,50,4.1,3,3,11.3,77777,9,999999999,209,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,11.0,82,101900,0,0,325,0,0,0,0,0,0,0,40,3.1,2,2,11.3,77777,9,999999999,220,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.0,77,101900,0,0,333,0,0,0,0,0,0,0,70,3.1,3,3,11.3,77777,9,999999999,220,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,11.0,72,102000,91,1163,335,0,0,0,0,0,0,0,50,4.1,2,2,11.3,77777,9,999999999,220,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,12.0,72,102000,353,1410,344,187,352,98,19100,29000,11800,1850,60,5.7,3,3,11.3,77777,9,999999999,220,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.0,64,102000,583,1410,344,389,695,100,40500,66300,12900,1980,80,4.1,0,0,11.3,77777,9,999999999,229,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,16.0,61,102000,757,1410,367,525,798,95,54900,78800,12500,2070,130,4.1,0,0,11.3,77777,9,999999999,229,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,15.0,54,101900,862,1410,383,624,851,102,65900,85100,13700,2440,160,2.1,2,2,11.3,77777,9,999999999,229,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,15.0,51,101700,891,1410,392,612,738,144,64800,74600,17400,3600,170,2.6,3,3,11.3,77777,9,999999999,229,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,15.0,48,101700,842,1410,394,600,829,104,63100,82600,13600,2410,220,2.6,2,2,11.3,77777,9,999999999,229,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,16.0,54,101700,718,1410,393,489,798,81,51700,78700,11500,1800,260,2.6,3,3,11.3,77777,9,999999999,229,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,16.0,54,101700,528,1410,390,343,748,61,35900,70400,9400,1280,290,1.5,2,2,11.3,77777,9,999999999,229,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,16.0,61,101700,286,1410,383,150,531,42,15600,41300,7200,790,290,1.5,3,3,11.3,77777,9,999999999,229,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.0,78,101800,42,787,359,2,89,1,700,5200,400,40,330,2.6,2,2,11.3,77777,9,999999999,229,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.0,78,101900,0,0,363,0,0,0,0,0,0,0,330,1.5,3,3,11.3,77777,9,999999999,229,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,101900,0,0,350,0,0,0,0,0,0,0,360,1.5,2,2,11.3,77777,9,999999999,229,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,101900,0,0,358,0,0,0,0,0,0,0,330,1.0,5,5,11.3,77777,9,999999999,240,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,17.0,88,101900,0,0,386,0,0,0,0,0,0,0,20,2.1,9,9,11.3,900,9,999999999,240,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,16.0,83,101900,0,0,385,0,0,0,0,0,0,0,70,2.6,9,9,11.3,3000,9,999999999,240,0.0850,0,88,0.140,999.0,99.0 +2000,12,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,17.0,88,101900,0,0,386,0,0,0,0,0,0,0,50,2.1,9,9,11.3,900,9,999999999,240,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,17.0,88,101900,0,0,368,0,0,0,0,0,0,0,60,0.5,9,6,11.3,900,9,999999999,240,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,17.0,88,101900,0,0,368,0,0,0,0,0,0,0,30,1.0,9,6,11.3,1800,9,999999999,240,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,17.0,88,101900,0,0,368,0,0,0,0,0,0,0,70,2.6,9,6,11.3,3000,9,999999999,240,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,17.0,94,101900,0,0,392,0,0,0,0,0,0,0,50,2.1,10,10,11.3,3000,9,999999999,250,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,17.0,94,101900,0,0,392,0,0,0,0,0,0,0,40,1.0,10,10,9.7,2700,9,999999999,250,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,17.0,94,101900,0,0,363,0,0,0,0,0,0,0,90,3.1,9,6,11.3,3300,9,999999999,250,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,17.0,94,101900,0,0,360,0,0,0,0,0,0,0,20,1.5,5,5,8.0,77777,9,999999999,259,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,102000,88,1140,361,0,0,0,0,0,0,0,60,2.6,5,5,8.0,77777,9,999999999,259,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,17.0,83,102000,350,1411,360,204,472,86,21100,38900,11400,1590,90,3.6,2,2,11.3,77777,9,999999999,259,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,17.0,65,102000,580,1411,384,389,708,97,40600,67600,12700,1930,110,4.1,3,3,11.3,77777,9,999999999,270,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,18.0,61,102000,754,1411,392,532,853,74,55600,83600,10700,1650,130,3.1,2,2,11.3,77777,9,999999999,270,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,17.0,58,101900,860,1411,395,605,803,114,63100,79900,14300,2610,140,3.1,3,3,11.3,77777,9,999999999,279,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,16.0,51,101800,889,1411,395,636,696,196,65800,69300,22000,4670,140,3.6,2,2,11.3,77777,9,999999999,279,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,16.0,51,101800,841,1411,399,210,18,199,24400,1500,23600,8750,150,2.9,3,3,11.3,77777,9,999999999,279,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,15.0,45,101700,718,1411,399,455,526,186,47700,52800,20700,3990,160,2.1,2,2,11.3,77777,9,999999999,279,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,14.0,45,101700,528,1411,402,332,678,77,34900,63900,10900,1530,270,1.5,5,5,11.3,77777,9,999999999,279,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,15.0,51,101800,287,1411,398,146,482,48,15100,37300,7500,880,320,2.1,5,5,11.3,77777,9,999999999,279,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,16.0,69,101800,42,788,379,2,0,2,300,0,300,80,340,2.1,5,5,11.3,77777,9,999999999,279,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,17.0,69,101800,0,0,385,0,0,0,0,0,0,0,320,2.1,5,5,11.3,77777,9,999999999,279,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,16.0,65,101800,0,0,384,0,0,0,0,0,0,0,20,1.5,5,5,11.3,77777,9,999999999,279,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,16.0,69,101900,0,0,379,0,0,0,0,0,0,0,70,3.1,5,5,11.3,77777,9,999999999,279,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,16.0,73,101900,0,0,368,0,0,0,0,0,0,0,90,3.1,3,3,11.3,77777,9,999999999,279,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,17.0,88,101900,0,0,344,0,0,0,0,0,0,0,90,2.6,0,0,11.3,77777,9,999999999,279,0.0850,0,88,0.140,999.0,99.0 +2000,12,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,17.0,88,101900,0,0,359,0,0,0,0,0,0,0,70,2.6,3,3,11.3,77777,9,999999999,279,0.0850,0,88,0.140,999.0,99.0 +2000,12,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,17.0,88,101800,0,0,344,0,0,0,0,0,0,0,90,2.1,0,0,11.3,77777,9,999999999,279,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,17.0,94,101800,0,0,339,0,0,0,0,0,0,0,340,1.5,0,0,11.3,77777,9,999999999,279,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101800,0,0,355,0,0,0,0,0,0,0,50,1.5,5,5,11.3,77777,9,999999999,279,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,101800,0,0,368,0,0,0,0,0,0,0,40,2.6,9,7,11.3,2700,9,999999999,270,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,101800,0,0,361,0,0,0,0,0,0,0,60,2.6,5,5,11.3,77777,9,999999999,270,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,14.0,77,101900,0,0,356,0,0,0,0,0,0,0,60,2.6,5,5,11.3,77777,9,999999999,270,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,101900,0,0,358,0,0,0,0,0,0,0,60,2.6,5,5,8.0,77777,9,999999999,259,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,102000,86,1141,358,0,0,0,0,0,0,0,60,3.1,5,5,8.0,77777,9,999999999,259,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,16.0,78,102000,347,1411,382,221,619,68,22600,50900,10000,1220,90,3.6,9,8,11.3,7500,9,999999999,259,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,18.0,69,102000,578,1411,391,369,689,86,38800,66000,11700,1740,90,3.6,5,5,11.3,77777,9,999999999,259,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,18.0,61,101900,752,1411,402,519,792,96,54200,78000,12500,2070,90,4.1,5,5,11.3,77777,9,999999999,250,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,18.0,58,101900,858,1411,407,618,857,95,65700,85900,13300,2310,160,2.6,5,5,11.3,77777,9,999999999,250,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,17.0,54,101800,888,1411,406,630,834,103,66700,83600,13900,2530,220,2.6,5,5,11.3,77777,9,999999999,250,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,17.0,54,101700,840,1411,396,595,829,99,62800,82800,13300,2330,270,2.6,2,2,11.3,77777,9,999999999,250,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,16.0,48,101700,717,1411,404,495,810,81,52200,79800,11500,1800,280,2.8,3,3,11.3,77777,9,999999999,250,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,17.0,54,101800,529,1411,396,338,719,67,35000,67400,9700,1350,300,2.9,2,2,11.3,77777,9,999999999,250,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,17.0,61,101700,287,1411,389,151,526,43,15700,41000,7300,800,310,3.1,3,3,11.3,77777,9,999999999,250,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,18.0,69,101700,43,811,391,2,19,2,400,900,300,40,330,2.1,5,5,11.3,77777,9,999999999,240,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,18.0,78,101800,0,0,395,0,0,0,0,0,0,0,340,2.1,9,8,11.3,7500,9,999999999,240,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,17.0,73,101800,0,0,388,0,0,0,0,0,0,0,340,2.6,9,7,11.3,2400,9,999999999,240,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,17.0,73,101800,0,0,394,0,0,0,0,0,0,0,20,1.5,9,8,11.3,2400,9,999999999,240,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,17.0,78,101800,0,0,375,0,0,0,0,0,0,0,360,1.0,5,5,11.3,77777,9,999999999,240,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,18.0,83,101800,0,0,390,0,0,0,0,0,0,0,20,2.1,9,8,11.3,900,9,999999999,240,0.0840,0,88,0.140,999.0,99.0 +2000,12,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,18.0,83,101800,0,0,409,0,0,0,0,0,0,0,60,2.6,10,10,11.3,900,9,999999999,240,0.0840,0,88,0.140,999.0,99.0 +2000,12,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.0,20.0,88,101800,0,0,391,0,0,0,0,0,0,0,70,3.6,9,7,11.3,2400,9,999999999,240,0.0830,0,88,0.140,0.0,6.0 +2000,12,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,101800,0,0,392,0,0,0,0,0,0,0,60,2.6,9,8,11.3,2400,9,999999999,250,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,101700,0,0,386,0,0,0,0,0,0,0,80,3.1,9,7,11.3,750,9,999999999,250,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,101700,0,0,392,0,0,0,0,0,0,0,120,3.6,9,8,11.3,1200,9,999999999,259,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,101700,0,0,386,0,0,0,0,0,0,0,90,3.1,9,7,11.3,900,9,999999999,259,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,101700,0,0,392,0,0,0,0,0,0,0,60,2.6,9,8,11.3,750,9,999999999,270,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,101800,0,0,406,0,0,0,0,0,0,0,80,3.1,10,10,9.7,300,9,999999999,270,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,101900,83,1117,406,0,0,0,0,0,0,0,70,2.6,10,10,9.7,300,9,999999999,279,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,101900,344,1411,386,82,0,82,9200,0,9200,2940,90,3.6,9,7,9.7,900,9,999999999,290,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,21.0,89,102000,575,1411,404,199,31,186,22100,2500,21100,6650,110,3.6,9,8,11.3,900,9,999999999,290,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.0,78,101900,750,1411,409,154,0,154,18000,0,18000,6790,150,3.9,9,7,11.3,900,9,999999999,300,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.0,78,101800,856,1411,415,433,248,282,47200,26000,31400,7680,180,4.1,9,8,11.3,2400,9,999999999,300,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,21.0,74,101700,886,1411,414,432,198,307,46900,20800,33900,8550,220,2.6,9,7,11.3,2100,9,999999999,309,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,22.0,79,101700,839,1411,422,379,149,290,41100,15500,31900,7810,230,3.1,9,8,11.3,2100,9,999999999,309,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,22.0,89,101700,717,1411,432,191,12,185,21900,1000,21400,7610,230,2.6,10,10,11.3,1800,9,999999999,300,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,22.0,94,101700,529,1411,426,201,87,168,22000,8300,18900,4520,220,2.6,10,10,11.3,1800,9,999999999,300,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,101700,288,1411,423,80,11,78,8900,400,8800,2610,230,2.6,10,10,11.3,1800,9,999999999,290,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,20.0,88,101700,44,811,418,2,0,2,300,0,300,80,230,2.6,10,10,11.3,300,9,999999999,290,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.0,20.0,88,101700,0,0,391,0,0,0,0,0,0,0,200,1.5,9,7,11.3,2100,9,999999999,279,0.0830,0,88,0.140,0.0,6.0 +2000,12,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,101800,0,0,413,0,0,0,0,0,0,0,0,0.0,10,10,11.3,1200,9,999999999,279,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.0,83,101800,0,0,390,0,0,0,0,0,0,0,160,0.5,9,7,11.3,2700,9,999999999,279,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,19.0,88,101800,0,0,371,0,0,0,0,0,0,0,130,0.5,3,3,11.3,77777,9,999999999,270,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,101800,0,0,386,0,0,0,0,0,0,0,170,1.5,9,7,11.3,450,9,999999999,270,0.0830,0,88,0.140,999.0,99.0 +2000,12,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,101800,0,0,392,0,0,0,0,0,0,0,200,1.0,9,8,11.3,1800,9,999999999,259,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,101800,0,0,395,0,0,0,0,0,0,0,180,1.5,9,9,11.3,1800,9,999999999,259,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,101800,0,0,373,0,0,0,0,0,0,0,190,1.5,5,5,11.3,77777,9,999999999,259,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,101800,0,0,352,0,0,0,0,0,0,0,190,2.6,0,0,6.4,77777,9,999999999,270,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,101800,0,0,364,0,0,0,0,0,0,0,180,1.5,2,2,8.0,77777,9,999999999,270,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,101800,0,0,406,0,0,0,0,0,0,0,150,1.5,10,10,0.1,30,9,999999999,270,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,101800,0,0,406,0,0,0,0,0,0,0,180,2.6,10,10,0.1,30,9,999999999,270,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,101900,0,0,413,0,0,0,0,0,0,0,210,3.1,10,10,0.2,15,9,999999999,279,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,101900,81,1094,413,0,0,0,0,0,0,0,200,3.6,10,10,0.6,15,9,999999999,279,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,102000,341,1412,420,33,0,33,4000,0,4000,1400,230,3.6,10,10,0.8,15,9,999999999,279,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,102100,572,1412,420,137,0,137,15600,0,15600,5430,220,3.1,10,10,0.6,15,9,999999999,279,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,102100,747,1412,420,109,0,109,13100,0,13100,5100,310,2.1,10,10,3.2,300,9,999999999,290,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,21.0,83,102100,854,1412,418,358,121,285,39000,12700,31300,7750,300,2.1,9,9,11.3,2400,9,999999999,290,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.0,83,102000,885,1412,402,618,654,207,63700,64800,22900,4850,280,2.1,5,5,11.3,77777,9,999999999,290,0.0830,0,88,0.140,2.0,6.0 +2000,12,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,23.0,79,102000,839,1412,414,537,620,167,55800,61800,19000,3840,270,2.1,5,5,11.3,77777,9,999999999,290,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,23.0,84,102000,717,1412,402,450,579,154,48000,58200,18300,3240,250,2.1,3,3,11.3,77777,9,999999999,290,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.0,78,102000,530,1412,390,317,580,98,32700,54000,12300,1870,230,2.1,2,2,11.3,77777,9,999999999,290,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,21.0,83,102000,289,1412,389,156,537,45,16100,41900,7500,830,200,2.1,3,3,11.3,77777,9,999999999,290,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.0,83,102100,44,812,382,3,77,2,700,4500,500,80,230,1.5,5,5,11.3,77777,9,999999999,290,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,19.0,83,102100,0,0,376,0,0,0,0,0,0,0,280,1.5,3,3,11.3,77777,9,999999999,290,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,18.0,83,102200,0,0,355,0,0,0,0,0,0,0,330,1.5,0,0,11.3,77777,9,999999999,279,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,18.0,83,102200,0,0,355,0,0,0,0,0,0,0,350,2.1,0,0,11.3,77777,9,999999999,279,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,18.0,83,102200,0,0,355,0,0,0,0,0,0,0,40,1.5,0,0,11.3,77777,9,999999999,279,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,18.0,88,102300,0,0,350,0,0,0,0,0,0,0,30,2.1,0,0,11.3,77777,9,999999999,279,0.0830,0,88,0.140,999.0,99.0 +2000,12,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,102300,0,0,340,0,0,0,0,0,0,0,50,1.5,0,0,11.3,77777,9,999999999,279,0.0830,0,88,0.140,999.0,99.0 +2000,12,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,18.0,100,102300,0,0,393,0,0,0,0,0,0,0,80,2.6,10,10,4.8,300,9,999999999,279,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102300,0,0,406,0,0,0,0,0,0,0,70,4.1,10,10,3.2,150,9,999999999,279,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102200,0,0,406,0,0,0,0,0,0,0,70,5.1,10,10,3.2,150,9,999999999,290,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102200,0,0,406,0,0,0,0,0,0,0,60,5.1,10,10,2.4,150,9,999999999,300,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102300,0,0,406,0,0,0,0,0,0,0,70,4.1,10,10,3.2,150,9,999999999,300,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102300,0,0,395,0,0,0,0,0,0,0,70,5.1,9,9,8.0,150,9,999999999,309,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,20.0,100,102300,0,0,406,0,0,0,0,0,0,0,60,4.1,10,10,2.4,150,9,999999999,320,0.0820,0,88,0.140,2.0,24.0 +2000,12,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102400,79,1094,406,0,0,0,0,0,0,0,70,4.1,10,10,2.4,150,9,999999999,320,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,102400,338,1412,413,166,187,120,17600,15600,13900,2620,80,4.1,10,10,3.2,150,9,999999999,329,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,102400,569,1412,409,110,0,110,12800,0,12800,4590,90,5.7,9,9,8.0,150,9,999999999,340,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,22.0,89,102400,745,1412,432,315,116,253,34500,11700,28300,7540,110,4.6,10,10,9.7,300,9,999999999,340,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,21.0,70,102300,853,1412,436,216,12,209,25100,1000,24500,9130,140,3.6,9,9,11.3,300,9,999999999,350,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,21.0,66,102200,884,1412,406,360,108,292,39600,11000,32700,9540,140,3.6,2,2,11.3,77777,9,999999999,359,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,19.0,55,102200,838,1412,420,508,453,237,53000,46300,25400,5650,130,4.1,5,5,11.3,77777,9,999999999,350,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,30.0,18.0,49,102200,718,1412,424,478,698,122,50100,68900,14900,2610,140,3.1,5,5,11.3,77777,9,999999999,350,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,17.0,48,102200,531,1412,417,333,667,81,34900,62700,11200,1600,140,3.1,5,5,11.3,77777,9,999999999,350,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,18.0,58,102300,291,1412,407,147,462,51,15100,35800,7700,930,200,1.0,5,5,11.3,77777,9,999999999,340,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,19.0,78,102300,45,835,381,3,78,2,700,4600,500,80,220,2.1,3,3,11.3,77777,9,999999999,340,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,20.0,88,102400,0,0,362,0,0,0,0,0,0,0,140,1.6,0,0,11.3,77777,9,999999999,340,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,20.0,88,102300,0,0,383,0,0,0,0,0,0,0,60,1.0,5,5,11.3,77777,9,999999999,329,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,102400,0,0,389,0,0,0,0,0,0,0,90,2.1,5,5,11.3,77777,9,999999999,329,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,19.0,78,102400,0,0,366,0,0,0,0,0,0,0,120,3.1,0,0,11.3,77777,9,999999999,329,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,20.0,88,102400,0,0,374,0,0,0,0,0,0,0,130,4.6,2,2,11.3,77777,9,999999999,320,0.0820,0,88,0.140,999.0,99.0 +2000,12,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,19.0,88,102400,0,0,371,0,0,0,0,0,0,0,120,3.6,3,3,11.3,77777,9,999999999,320,0.0820,0,88,0.140,999.0,99.0 +2000,12,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,102400,0,0,357,0,0,0,0,0,0,0,100,2.1,0,0,11.3,77777,9,999999999,320,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,102400,0,0,357,0,0,0,0,0,0,0,100,2.6,0,0,11.3,77777,9,999999999,309,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102400,0,0,352,0,0,0,0,0,0,0,110,3.1,0,0,11.3,77777,9,999999999,309,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102400,0,0,352,0,0,0,0,0,0,0,70,2.1,0,0,11.3,77777,9,999999999,309,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102500,0,0,352,0,0,0,0,0,0,0,70,2.6,0,0,11.3,77777,9,999999999,309,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102500,0,0,352,0,0,0,0,0,0,0,80,2.1,0,0,11.3,77777,9,999999999,309,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102500,0,0,367,0,0,0,0,0,0,0,90,2.1,3,3,9.7,77777,9,999999999,300,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102600,76,1071,406,0,0,0,0,0,0,0,120,3.6,10,10,4.8,60,9,999999999,300,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,102700,335,1412,393,141,141,108,15200,11800,12400,2360,140,2.6,9,8,5.6,60,9,999999999,300,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,22.0,94,102700,567,1412,391,165,6,162,18500,500,18300,6050,200,3.1,5,5,11.3,77777,9,999999999,300,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,22.0,89,102700,743,1412,396,244,37,225,26900,3700,24900,6870,210,2.6,5,5,11.3,77777,9,999999999,300,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,21.0,74,102500,851,1412,414,544,525,226,57200,53800,24700,5420,200,2.6,9,7,11.3,7500,9,999999999,290,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,22.0,70,102500,884,1412,433,559,582,193,60100,60000,22400,4700,240,3.1,9,8,11.3,7500,9,999999999,290,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,21.0,70,102400,838,1412,420,549,656,158,57300,65500,18300,3660,260,3.1,9,7,11.3,7500,9,999999999,290,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,21.0,66,102400,718,1412,417,388,331,219,41400,34400,23800,5040,240,2.6,5,5,11.3,77777,9,999999999,279,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,21.0,70,102400,532,1412,411,317,511,124,33300,48300,15100,2400,230,3.1,5,5,11.3,77777,9,999999999,279,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,21.0,74,102400,292,1412,406,161,582,40,16400,46700,6700,780,260,1.5,5,5,11.3,77777,9,999999999,279,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,21.0,83,102500,46,836,403,1,0,1,100,0,100,40,320,2.1,9,7,11.3,6000,9,999999999,270,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,102500,0,0,378,0,0,0,0,0,0,0,300,2.1,5,5,11.3,77777,9,999999999,270,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,102500,0,0,389,0,0,0,0,0,0,0,330,1.5,5,5,11.3,77777,9,999999999,270,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,102600,0,0,357,0,0,0,0,0,0,0,350,3.6,0,0,11.3,77777,9,999999999,259,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,19.0,88,102600,0,0,377,0,0,0,0,0,0,0,20,2.6,5,5,11.3,77777,9,999999999,259,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,19.0,88,102600,0,0,391,0,0,0,0,0,0,0,60,3.1,9,8,11.3,1350,9,999999999,259,0.0810,0,88,0.140,999.0,99.0 +2000,12,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102500,0,0,381,0,0,0,0,0,0,0,50,3.1,9,7,11.3,7500,9,999999999,250,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102500,0,0,395,0,0,0,0,0,0,0,40,2.6,9,9,11.3,1050,9,999999999,250,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102500,0,0,395,0,0,0,0,0,0,0,70,3.6,9,9,11.3,3000,9,999999999,259,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102500,0,0,395,0,0,0,0,0,0,0,20,2.1,9,9,11.3,7500,9,999999999,259,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102500,0,0,395,0,0,0,0,0,0,0,70,2.1,9,9,11.3,300,9,999999999,259,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,102400,0,0,413,0,0,0,0,0,0,0,100,2.1,10,10,9.7,240,9,999999999,270,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,102500,0,0,413,0,0,0,0,0,0,0,100,4.1,10,10,3.2,30,9,999999999,270,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,102500,0,0,413,0,0,0,0,0,0,0,70,2.1,10,10,8.0,150,9,999999999,279,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,102500,74,1048,420,8,12,8,1000,600,1000,170,80,2.6,10,10,8.0,150,9,999999999,279,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,102500,332,1412,420,117,34,109,12800,2900,12100,2630,90,3.6,10,10,9.7,150,9,999999999,290,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,22.0,89,102600,565,1412,420,172,12,167,19300,900,18900,6150,130,3.6,9,9,9.7,300,9,999999999,290,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,21.0,78,102500,741,1412,400,231,24,218,26200,2100,25100,8670,140,4.1,5,5,9.7,77777,9,999999999,300,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,21.0,66,102300,850,1412,417,526,459,249,54800,46900,26500,6030,140,3.1,5,5,11.3,77777,9,999999999,300,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,21.0,66,102300,883,1412,417,619,750,148,65300,75700,17800,3650,160,2.1,5,5,11.3,77777,9,999999999,300,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,19.0,55,102200,838,1412,420,578,746,134,61100,75100,16400,3180,170,2.1,5,5,11.3,77777,9,999999999,300,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,29.0,18.0,52,102100,719,1412,418,490,787,88,51300,77300,11800,1900,270,2.6,5,5,11.3,77777,9,999999999,290,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,18.0,55,102100,533,1412,407,338,702,72,34800,65700,9900,1400,260,1.5,3,3,11.3,77777,9,999999999,290,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,18.0,55,102100,293,1412,413,147,462,51,15200,36000,7700,930,260,1.0,5,5,11.3,77777,9,999999999,279,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,19.0,65,102100,47,836,403,5,125,2,1100,7300,600,80,330,1.5,5,5,11.3,77777,9,999999999,279,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,21.0,89,102200,0,0,390,0,0,0,0,0,0,0,320,2.1,5,5,11.3,77777,9,999999999,270,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,21.0,94,102200,0,0,385,0,0,0,0,0,0,0,300,2.6,5,5,11.3,77777,9,999999999,270,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,22.0,94,102200,0,0,426,0,0,0,0,0,0,0,140,1.5,10,10,11.3,1200,9,999999999,259,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.0,22.0,94,102200,0,0,414,0,0,0,0,0,0,0,120,1.5,9,9,11.3,2400,9,999999999,259,0.0810,0,88,0.140,0.0,3.0 +2000,12,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,20.0,88,102200,0,0,383,0,0,0,0,0,0,0,80,2.6,5,5,11.3,77777,9,999999999,250,0.0810,0,88,0.140,999.0,99.0 +2000,12,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,20.0,88,102100,0,0,383,0,0,0,0,0,0,0,100,3.1,5,5,11.3,77777,9,999999999,240,0.0810,0,88,0.140,999.0,99.0 +2000,12,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.0,20.0,88,102100,0,0,380,0,0,0,0,0,0,0,100,3.1,5,4,11.3,77777,9,999999999,240,0.0800,0,88,0.140,0.0,6.0 +2000,12,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,102100,0,0,377,0,0,0,0,0,0,0,110,3.1,5,4,11.3,77777,9,999999999,240,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,102100,0,0,364,0,0,0,0,0,0,0,110,3.6,3,1,11.3,77777,9,999999999,250,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,102000,0,0,359,0,0,0,0,0,0,0,100,3.6,2,1,11.3,77777,9,999999999,250,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,102000,0,0,358,0,0,0,0,0,0,0,100,3.6,0,0,11.3,77777,9,999999999,259,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,18.0,83,102100,0,0,362,0,0,0,0,0,0,0,120,2.6,2,1,11.3,77777,9,999999999,259,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,20.0,100,102100,0,0,359,0,0,0,0,0,0,0,120,3.1,3,1,11.3,77777,9,999999999,259,0.0800,0,88,0.140,0.0,24.0 +2000,12,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,21.0,100,102100,72,1048,377,11,124,6,1700,7300,1200,150,120,3.1,5,4,11.3,77777,9,999999999,270,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,20.0,88,102100,330,1413,380,176,357,92,18000,28600,11300,1730,140,3.6,5,4,11.3,77777,9,999999999,270,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,20.0,78,102100,562,1413,391,385,759,82,39400,71400,10900,1550,160,2.6,5,4,11.3,77777,9,999999999,279,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,20.0,70,102000,739,1413,402,508,792,92,53200,78000,12200,1990,180,3.6,5,4,11.3,77777,9,999999999,279,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,20.0,66,101900,849,1413,407,582,767,119,60300,76000,14400,2630,170,5.1,5,4,11.3,77777,9,999999999,279,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,28.0,20.0,62,101800,882,1413,412,607,756,133,64500,76600,16500,3320,190,4.6,5,4,11.3,77777,9,999999999,290,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,19.0,62,101800,838,1413,406,596,776,134,63000,78100,16500,3180,220,4.6,5,4,11.3,77777,9,999999999,279,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,27.0,20.0,66,101700,719,1413,410,439,526,170,46500,52800,19400,3620,220,6.7,9,5,11.3,7500,9,999999999,270,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,26.0,20.0,70,101700,534,1413,405,286,366,147,30400,35600,16900,3050,220,6.2,9,5,11.3,7500,9,999999999,270,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,25.0,20.0,74,101700,295,1413,399,157,430,66,15800,33000,8900,1140,220,5.1,9,5,11.3,7500,9,999999999,259,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,101800,48,859,386,5,127,2,1100,7500,600,80,220,3.6,5,4,11.3,77777,9,999999999,250,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,20.0,83,101800,0,0,374,0,0,0,0,0,0,0,230,3.1,3,1,11.3,77777,9,999999999,250,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,21.0,94,101800,0,0,382,0,0,0,0,0,0,0,210,2.6,5,4,11.3,77777,9,999999999,240,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.1,21.5,96,101800,0,0,380,0,0,0,0,0,0,0,210,3.1,4,3,11.3,77777,9,999999999,229,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101800,0,0,371,0,0,0,0,0,0,0,210,3.6,2,1,11.3,77777,9,999999999,220,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101800,0,0,371,0,0,0,0,0,0,0,220,4.6,3,1,11.3,77777,9,999999999,220,0.0800,0,88,0.140,999.0,99.0 +2000,12,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101800,0,0,371,0,0,0,0,0,0,0,210,4.6,2,1,11.3,77777,9,999999999,209,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,22.0,100,101800,0,0,386,0,0,0,0,0,0,0,210,4.6,5,5,11.3,77777,9,999999999,200,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,101800,0,0,401,0,0,0,0,0,0,0,230,5.7,9,9,11.3,1500,9,999999999,200,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,20.0,94,101700,0,0,378,0,0,0,0,0,0,0,230,5.1,5,5,11.3,77777,9,999999999,200,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,20.0,100,101600,0,0,373,0,0,0,0,0,0,0,210,4.1,5,5,11.3,77777,9,999999999,189,0.0800,0,88,0.140,0.0,3.0 +2000,12,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,101700,0,0,395,0,0,0,0,0,0,0,230,3.1,9,9,11.3,2700,9,999999999,189,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,21.0,94,101800,0,0,419,0,0,0,0,0,0,0,270,3.6,10,10,11.3,2400,9,999999999,179,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.0,18.0,83,101800,0,0,398,0,0,0,0,0,0,0,310,5.7,9,9,11.3,7500,9,999999999,179,0.0800,0,88,0.140,0.0,6.0 +2000,12,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,14.0,68,102000,70,1024,388,10,117,5,1500,7200,1000,180,300,6.2,9,9,11.3,7500,9,999999999,179,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,11.0,60,102200,327,1413,358,168,344,88,17200,27500,10800,1640,320,6.7,5,5,11.3,77777,9,999999999,170,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,11.0,60,102200,560,1413,358,303,380,152,31400,36300,17000,3020,310,6.2,5,5,11.3,77777,9,999999999,170,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,10.0,53,102200,738,1413,352,495,634,163,50900,61900,18500,3370,300,6.7,2,2,11.3,77777,9,999999999,170,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,8.0,49,102200,847,1413,334,607,833,105,63700,83000,13700,2440,280,6.7,0,0,11.3,77777,9,999999999,160,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,8.0,49,102000,882,1413,334,631,858,94,65600,85000,12300,2030,300,5.1,0,0,11.3,77777,9,999999999,160,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,7.0,46,102000,838,1413,333,596,835,98,62900,83400,13200,2310,300,6.2,0,0,11.3,77777,9,999999999,150,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,7.0,49,101900,720,1413,339,496,828,72,51800,80800,10500,1580,300,5.1,2,2,11.3,77777,9,999999999,150,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,7.0,52,102000,535,1413,338,344,732,66,35800,68800,9600,1340,290,4.6,3,3,11.3,77777,9,999999999,139,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,7.0,59,102000,297,1413,326,161,572,41,16500,46100,6800,790,310,4.6,2,2,11.3,77777,9,999999999,129,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,7.0,71,102100,49,860,315,5,114,3,1100,6700,700,110,320,4.1,3,3,11.3,77777,9,999999999,129,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,102100,0,0,307,0,0,0,0,0,0,0,310,3.1,2,2,11.3,77777,9,999999999,120,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,102200,0,0,291,0,0,0,0,0,0,0,360,3.1,0,0,11.3,77777,9,999999999,110,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,102200,0,0,290,0,0,0,0,0,0,0,350,2.6,0,0,11.3,77777,9,999999999,110,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,3.0,71,102200,0,0,282,0,0,0,0,0,0,0,340,2.6,0,0,11.3,77777,9,999999999,100,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,102200,0,0,281,0,0,0,0,0,0,0,10,3.1,0,0,11.3,77777,9,999999999,89,0.0800,0,88,0.140,999.0,99.0 +2000,12,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,102200,0,0,281,0,0,0,0,0,0,0,10,2.6,0,0,11.3,77777,9,999999999,89,0.0800,0,88,0.140,999.0,99.0 +2000,12,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-4.0,47,102200,0,0,267,0,0,0,0,0,0,0,10,2.6,0,0,11.3,77777,9,999999999,80,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.0,50,102200,0,0,263,0,0,0,0,0,0,0,360,3.1,0,0,11.3,77777,9,999999999,80,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-5.0,49,102200,0,0,259,0,0,0,0,0,0,0,30,3.1,0,0,11.3,77777,9,999999999,80,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-5.0,53,102200,0,0,255,0,0,0,0,0,0,0,20,2.6,0,0,11.3,77777,9,999999999,80,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-5.0,49,102200,0,0,259,0,0,0,0,0,0,0,20,2.1,0,0,11.3,77777,9,999999999,69,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-4.0,54,102300,0,0,259,0,0,0,0,0,0,0,10,3.6,0,0,11.3,77777,9,999999999,69,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-3.0,67,102300,0,0,253,0,0,0,0,0,0,0,20,2.6,0,0,11.3,77777,9,999999999,69,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-4.0,50,102400,69,1025,263,12,209,4,2100,12800,1200,150,20,1.5,0,0,11.3,77777,9,999999999,69,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-4.0,47,102400,325,1413,267,211,628,66,21500,50300,9900,1170,50,4.1,0,0,11.3,77777,9,999999999,69,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-2.0,45,102400,558,1413,281,386,797,70,40100,75500,10200,1420,40,2.6,0,0,11.3,77777,9,999999999,60,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,0.0,47,102300,736,1413,291,521,866,68,54500,84700,10200,1580,70,2.6,0,0,11.3,77777,9,999999999,60,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,2.0,47,102200,846,1413,301,607,852,95,64500,85300,13200,2280,30,2.1,0,0,11.3,77777,9,999999999,60,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,4.0,51,102000,881,1413,308,637,882,85,66300,87400,11600,1980,250,3.6,0,0,11.3,77777,9,999999999,60,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,5.0,48,102000,839,1413,317,602,859,90,64200,86100,12900,2180,260,3.1,0,0,11.3,77777,9,999999999,60,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,5.0,45,101900,721,1413,322,485,769,91,50600,75500,12000,1940,260,2.6,0,0,11.3,77777,9,999999999,69,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,5.0,45,101900,537,1413,322,344,732,65,35900,68900,9600,1330,280,2.6,0,0,11.3,77777,9,999999999,69,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,5.0,51,101900,298,1413,313,157,529,45,16300,41800,7500,840,320,3.1,0,0,11.3,77777,9,999999999,80,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,5.0,58,101900,50,883,304,5,48,4,800,2300,600,80,310,2.6,0,0,11.3,77777,9,999999999,80,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,5.0,66,101900,0,0,296,0,0,0,0,0,0,0,330,2.6,0,0,11.3,77777,9,999999999,89,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,102000,0,0,292,0,0,0,0,0,0,0,330,2.1,0,0,11.3,77777,9,999999999,89,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,5.0,76,101900,0,0,288,0,0,0,0,0,0,0,340,1.5,0,0,11.3,77777,9,999999999,89,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,6.0,81,101900,0,0,289,0,0,0,0,0,0,0,330,2.6,0,0,11.3,77777,9,999999999,100,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,6.0,81,101900,0,0,289,0,0,0,0,0,0,0,330,2.1,0,0,11.3,77777,9,999999999,100,0.0790,0,88,0.140,999.0,99.0 +2000,12,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,6.0,87,101900,0,0,285,0,0,0,0,0,0,0,350,2.1,0,0,11.3,77777,9,999999999,110,0.0790,0,88,0.140,999.0,99.0 +2000,12,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,7.0,87,101800,0,0,290,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,110,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,101800,0,0,286,0,0,0,0,0,0,0,50,1.5,0,0,11.3,77777,9,999999999,110,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,4.0,93,101700,0,0,271,0,0,0,0,0,0,0,30,1.0,0,0,11.3,77777,9,999999999,110,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,101700,0,0,281,0,0,0,0,0,0,0,50,0.5,0,0,11.3,77777,9,999999999,110,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,101700,0,0,276,0,0,0,0,0,0,0,250,2.6,0,0,11.3,77777,9,999999999,110,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,101600,0,0,281,0,0,0,0,0,0,0,290,0.5,0,0,11.3,77777,9,999999999,100,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,101600,0,0,300,0,0,0,0,0,0,0,230,0.5,2,2,11.3,77777,9,999999999,100,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,101600,67,1001,335,10,130,5,1600,7900,1000,180,250,1.5,3,3,11.3,77777,9,999999999,100,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,101600,322,1413,332,186,399,95,18900,31600,11700,1800,190,3.1,2,2,11.3,77777,9,999999999,100,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,13.0,88,101700,556,1413,371,235,143,178,25400,14000,19800,4160,330,8.2,10,10,11.3,300,9,999999999,100,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,101700,735,1413,355,84,0,84,10300,0,10300,4040,320,6.2,10,10,11.3,300,9,999999999,89,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,11.0,100,101800,846,1413,349,93,0,93,11500,0,11500,4640,320,7.7,10,10,11.3,300,9,999999999,89,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,10.0,94,101800,881,1413,347,102,0,102,12600,0,12600,5120,320,4.6,10,10,11.3,900,9,999999999,89,0.0780,0,88,0.140,5.0,6.0 +2000,12,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,10.0,94,101800,839,1413,347,93,0,93,11500,0,11500,4630,310,5.7,10,10,11.3,450,9,999999999,89,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,101800,722,1413,335,96,0,96,11600,0,11600,4510,290,6.2,10,10,11.3,1500,9,999999999,89,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,7.0,71,101700,538,1413,323,175,52,155,19200,5000,17300,4290,290,3.6,9,6,11.3,3300,9,999999999,89,0.0780,0,88,0.140,0.0,3.0 +2000,12,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,101700,300,1413,315,162,382,81,16700,29400,10400,1510,290,2.6,5,5,11.3,77777,9,999999999,89,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,7.0,87,101700,52,883,307,6,109,3,1100,6500,700,110,270,2.6,5,5,11.3,77777,9,999999999,89,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.0,8.0,76,101800,0,0,321,0,0,0,0,0,0,0,280,5.7,5,5,11.3,77777,9,999999999,89,0.0780,0,88,0.140,0.0,6.0 +2000,12,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,6.0,62,101800,0,0,324,0,0,0,0,0,0,0,290,6.7,5,5,11.3,77777,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,8.0,76,101800,0,0,350,0,0,0,0,0,0,0,290,6.2,10,10,11.3,1350,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,9.0,87,101900,0,0,346,0,0,0,0,0,0,0,300,7.7,10,10,11.3,1500,9,999999999,80,0.0780,0,88,0.140,1.0,3.0 +2000,12,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.0,76,102000,0,0,338,0,0,0,0,0,0,0,310,7.7,10,10,11.3,1500,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,102000,0,0,337,0,0,0,0,0,0,0,310,6.7,10,10,11.3,1500,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,8.0,3.0,71,102100,0,0,325,0,0,0,0,0,0,0,320,8.2,10,10,11.3,1500,9,999999999,80,0.0780,0,88,0.140,1.0,6.0 +2000,12,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,102100,0,0,298,0,0,0,0,0,0,0,310,7.2,9,7,11.3,3000,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,102100,0,0,318,0,0,0,0,0,0,0,310,2.1,10,10,11.3,1200,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,1.0,70,102100,0,0,314,0,0,0,0,0,0,0,320,6.7,10,10,11.3,1050,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,102200,0,0,293,0,0,0,0,0,0,0,320,5.7,9,8,11.3,1050,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,0.0,81,102200,0,0,281,0,0,0,0,0,0,0,10,4.1,9,7,11.3,900,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,2.0,-1.0,80,102300,0,0,280,0,0,0,0,0,0,0,20,4.1,9,8,11.3,900,9,999999999,80,0.0780,0,88,0.140,2.0,24.0 +2000,12,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-3.0,72,102400,65,1001,270,4,0,4,500,0,500,160,20,4.1,9,7,11.3,900,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-4.0,62,102500,320,1414,263,85,0,85,9500,0,9500,2900,10,3.6,3,3,11.3,77777,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-5.0,53,102500,554,1414,263,352,548,136,36800,52300,16200,2670,10,3.6,2,2,11.3,77777,9,999999999,69,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-5.0,46,102500,733,1414,274,496,750,105,52600,74800,13600,2320,330,4.6,3,3,11.3,77777,9,999999999,69,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-4.0,44,102400,845,1414,280,582,779,115,60500,77300,14200,2560,350,4.6,2,2,11.3,77777,9,999999999,69,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-5.0,40,102300,881,1414,282,602,744,136,63800,75300,16700,3380,310,3.1,3,3,11.3,77777,9,999999999,69,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,-3.0,41,102300,840,1414,289,585,770,126,62100,77700,15800,3020,320,3.1,2,2,11.3,77777,9,999999999,69,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-3.0,44,102200,723,1414,288,474,698,115,49800,69200,14300,2490,300,4.1,3,3,11.3,77777,9,999999999,69,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,102200,540,1414,277,345,720,69,35800,67700,9800,1380,310,2.6,0,0,11.3,77777,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-2.0,52,102200,302,1414,273,163,552,44,17000,43900,7500,830,310,2.6,0,0,11.3,77777,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,102200,53,884,271,6,101,4,1100,6000,800,150,330,1.5,2,2,11.3,77777,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,-1.0,69,102300,0,0,274,0,0,0,0,0,0,0,360,2.6,3,3,11.3,77777,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-2.0,68,102300,0,0,266,0,0,0,0,0,0,0,350,2.6,2,2,11.3,77777,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,-2.0,68,102300,0,0,258,0,0,0,0,0,0,0,10,3.1,0,0,11.3,77777,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-2.0,55,102400,0,0,269,0,0,0,0,0,0,0,80,2.6,0,0,11.3,77777,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-3.0,51,102400,0,0,268,0,0,0,0,0,0,0,30,1.5,0,0,11.3,77777,9,999999999,80,0.0780,0,88,0.140,999.0,99.0 +2000,12,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,0.0,70,102300,0,0,267,0,0,0,0,0,0,0,50,2.1,0,0,11.3,77777,9,999999999,89,0.0780,0,88,0.140,999.0,99.0 +2000,12,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,5.0,-1.0,64,102300,0,0,266,0,0,0,0,0,0,0,40,2.6,0,0,11.3,77777,9,999999999,89,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-2.0,73,102400,0,0,254,0,0,0,0,0,0,0,60,2.6,0,0,11.3,77777,9,999999999,89,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,4.0,0.0,75,102300,0,0,263,0,0,0,0,0,0,0,30,3.1,0,0,11.3,77777,9,999999999,89,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,2.0,-1.0,80,102400,0,0,255,0,0,0,0,0,0,0,350,2.6,0,0,11.3,77777,9,999999999,89,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,102400,0,0,247,0,0,0,0,0,0,0,30,2.1,0,0,11.3,77777,9,999999999,89,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,1.0,-1.0,86,102400,0,0,251,0,0,0,0,0,0,0,30,2.6,0,0,11.3,77777,9,999999999,80,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,0.0,-2.0,85,102400,0,0,251,0,0,0,0,0,0,0,20,2.6,2,1,11.3,77777,9,999999999,80,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,3.0,1.0,87,102500,64,978,274,5,2,4,500,100,500,110,10,2.6,9,4,11.3,900,9,999999999,80,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,-1.0,60,102600,318,1414,284,94,7,92,10300,300,10300,3040,10,3.1,9,4,11.3,900,9,999999999,80,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-2.0,48,102600,552,1414,291,207,62,183,22700,6000,20400,4930,10,3.6,9,4,11.3,900,9,999999999,80,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,-2.0,39,102600,732,1414,304,251,49,226,27600,4900,25100,6830,350,2.6,9,4,11.3,7500,9,999999999,80,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,-2.0,35,102500,844,1414,312,607,695,191,62600,68700,21400,4300,10,2.1,9,4,11.3,7500,9,999999999,80,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,-2.0,32,102300,881,1414,317,626,840,100,66400,84300,13700,2460,310,3.6,9,4,11.3,7500,9,999999999,80,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,0.0,36,102200,840,1414,323,579,758,127,61500,76500,15800,3040,230,3.9,9,4,11.3,7500,9,999999999,89,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,2.0,41,102200,725,1414,326,485,710,120,50900,70200,14800,2580,140,4.1,9,4,11.3,7500,9,999999999,89,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,4.0,45,102100,542,1414,333,281,331,154,29900,32300,17400,3220,100,3.6,9,4,11.3,7500,9,999999999,100,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,5.0,55,102100,305,1414,325,149,421,58,15200,33000,8100,1040,110,2.6,9,4,11.3,7500,9,999999999,100,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,5.0,58,102100,54,907,318,6,88,4,1100,5000,800,110,80,2.1,5,3,11.3,77777,9,999999999,110,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,6.0,59,102100,0,0,335,0,0,0,0,0,0,0,20,1.5,10,7,11.3,7500,9,999999999,110,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.0,82,102200,0,0,323,0,0,0,0,0,0,0,20,1.5,10,8,11.3,7500,9,999999999,120,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,7.0,76,102200,0,0,322,0,0,0,0,0,0,0,30,2.1,10,7,11.3,7500,9,999999999,129,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.0,76,102200,0,0,322,0,0,0,0,0,0,0,10,2.1,10,8,11.3,7500,9,999999999,129,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.0,82,102200,0,0,318,0,0,0,0,0,0,0,40,1.5,10,7,11.3,7500,9,999999999,139,0.0770,0,88,0.140,999.0,99.0 +2000,12,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,7.0,71,102200,0,0,332,0,0,0,0,0,0,0,60,2.1,10,8,11.3,7500,9,999999999,139,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,102200,0,0,335,0,0,0,0,0,0,0,330,1.5,10,10,11.3,7500,9,999999999,150,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,102200,0,0,340,0,0,0,0,0,0,0,340,1.5,10,10,11.3,7500,9,999999999,139,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,7.0,87,102200,0,0,334,0,0,0,0,0,0,0,40,1.0,10,10,11.3,7500,9,999999999,139,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,7.0,87,102100,0,0,325,0,0,0,0,0,0,0,40,1.5,9,9,11.3,7500,9,999999999,139,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,102100,0,0,321,0,0,0,0,0,0,0,50,2.1,9,9,11.3,7500,9,999999999,139,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,102100,0,0,331,0,0,0,0,0,0,0,50,2.6,9,9,11.3,7500,9,999999999,139,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,9.0,93,102200,0,0,332,0,0,0,0,0,0,0,50,2.1,9,9,11.3,7500,9,999999999,129,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,9.0,82,102200,62,978,351,6,33,5,900,1400,800,80,70,1.5,10,10,11.3,7500,9,999999999,129,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,9.0,77,102300,316,1414,356,128,109,104,13800,8900,11800,2260,70,2.1,10,10,11.3,7500,9,999999999,129,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,9.0,72,102300,551,1414,361,346,574,121,36600,54800,15100,2340,50,3.1,10,10,11.3,7500,9,999999999,129,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,9.0,63,102400,731,1414,371,483,708,116,50900,70200,14400,2520,20,2.1,10,10,11.3,7500,9,999999999,129,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,8.0,55,102300,844,1414,365,521,507,217,55000,51900,23900,5150,330,3.1,9,9,11.3,7500,9,999999999,120,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,9.0,56,102200,882,1414,371,481,312,286,51500,33200,30700,7470,10,2.6,9,9,11.3,7500,9,999999999,120,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,9.0,52,102200,841,1414,376,538,597,182,57800,61200,21300,4240,290,3.6,9,9,11.3,7500,9,999999999,120,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,9.0,56,102200,726,1414,371,468,657,130,48900,64800,15500,2770,310,3.6,9,9,11.3,7500,9,999999999,120,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,7.0,52,102200,544,1414,364,297,372,154,31600,36400,17600,3220,310,3.6,9,9,11.3,7500,9,999999999,120,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,9.0,67,102200,307,1414,356,100,77,83,10800,6200,9500,1800,310,3.1,9,9,11.3,7500,9,999999999,120,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,7.0,63,102200,56,907,321,6,25,5,800,1000,700,80,330,2.6,2,2,11.3,77777,9,999999999,120,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,7.0,71,102300,0,0,315,0,0,0,0,0,0,0,340,2.6,3,3,11.3,77777,9,999999999,120,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,7.0,76,102300,0,0,308,0,0,0,0,0,0,0,340,2.6,2,2,11.3,77777,9,999999999,120,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,8.0,82,102400,0,0,299,0,0,0,0,0,0,0,10,2.1,0,0,11.3,77777,9,999999999,120,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,7.0,71,102400,0,0,302,0,0,0,0,0,0,0,20,3.6,0,0,11.3,77777,9,999999999,120,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.6,6.5,71,102500,0,0,300,0,0,0,0,0,0,0,30,3.9,0,0,11.3,77777,9,999999999,120,0.0770,0,88,0.140,999.0,99.0 +2000,12,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,6.0,71,102500,0,0,297,0,0,0,0,0,0,0,40,4.1,0,0,11.3,77777,9,999999999,120,0.0770,0,88,0.140,999.0,99.0 +2000,12,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,6.0,76,102500,0,0,293,0,0,0,0,0,0,0,40,4.6,0,0,11.3,77777,9,999999999,120,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,1.0,57,102500,0,0,284,0,0,0,0,0,0,0,20,4.6,0,0,11.3,77777,9,999999999,120,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,-1.0,52,102500,0,0,278,0,0,0,0,0,0,0,30,4.1,0,0,11.3,77777,9,999999999,120,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-2.0,52,102400,0,0,285,0,0,0,0,0,0,0,20,3.6,3,3,11.3,77777,9,999999999,120,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,-1.0,56,102400,0,0,283,0,0,0,0,0,0,0,30,3.1,2,2,11.3,77777,9,999999999,120,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,0.0,65,102400,0,0,271,0,0,0,0,0,0,0,30,4.6,0,0,11.3,77777,9,999999999,120,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,102400,0,0,285,0,0,0,0,0,0,0,40,5.1,2,2,11.3,77777,9,999999999,120,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,2.0,66,102400,61,955,293,7,107,4,1200,6500,800,150,40,5.1,3,3,11.3,77777,9,999999999,129,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,4.0,66,102500,314,1414,300,163,360,83,16800,28300,10500,1540,50,6.7,2,2,11.3,77777,9,999999999,129,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,6.0,62,102600,549,1414,319,332,555,116,35300,53000,14700,2230,40,7.2,3,3,11.3,77777,9,999999999,129,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,7.0,55,102500,730,1414,330,484,708,117,50900,70200,14500,2540,60,6.2,2,2,11.3,77777,9,999999999,129,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,9.0,52,102400,844,1414,350,577,761,121,61400,77000,15300,2920,60,6.2,3,3,11.3,77777,9,999999999,129,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,10.0,49,102300,882,1414,357,608,762,131,64700,77300,16300,3270,60,6.2,2,2,11.3,77777,9,999999999,129,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,10.0,49,102200,842,1414,361,597,830,101,62900,82800,13400,2360,60,6.2,3,3,11.3,77777,9,999999999,139,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,10.0,46,102200,728,1414,371,497,805,81,52600,79500,11500,1810,70,4.6,5,5,11.3,77777,9,999999999,139,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,10.0,46,102200,546,1414,366,346,692,77,36400,65700,10900,1550,60,6.7,3,3,11.3,77777,9,999999999,150,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,22.0,9.0,43,102200,309,1414,361,168,565,44,17100,46000,7000,830,70,4.6,2,2,11.3,77777,9,999999999,150,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,9.0,49,102300,57,931,355,7,74,5,1100,3700,900,100,70,3.1,3,3,11.3,77777,9,999999999,160,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,11.0,60,102300,0,0,358,0,0,0,0,0,0,0,60,6.2,5,5,11.3,77777,9,999999999,160,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,11.0,68,102400,0,0,343,0,0,0,0,0,0,0,60,4.1,3,3,11.3,77777,9,999999999,170,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,11.0,68,102300,0,0,339,0,0,0,0,0,0,0,60,4.6,2,2,11.3,77777,9,999999999,179,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.0,77,102400,0,0,333,0,0,0,0,0,0,0,60,4.6,3,3,11.3,77777,9,999999999,179,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.1,11.5,79,102400,0,0,339,0,0,0,0,0,0,0,90,4.4,6,5,11.3,77777,9,999999999,189,0.0760,0,88,0.140,999.0,99.0 +2000,12,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.2,10.9,81,102400,0,0,332,0,0,0,0,0,0,0,110,4.3,6,4,11.3,77777,9,999999999,189,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.2,11.4,83,102400,0,0,338,0,0,0,0,0,0,0,120,4.1,6,6,11.3,77777,9,999999999,200,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.3,12.9,80,102400,0,0,350,0,0,0,0,0,0,0,140,3.9,6,6,11.3,77777,9,999999999,189,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.4,14.3,87,102400,0,0,352,0,0,0,0,0,0,0,140,3.3,6,6,11.3,77777,9,999999999,189,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,14.9,85,102400,0,0,386,0,0,0,0,0,0,0,130,5.6,10,10,11.3,7500,9,999999999,179,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.5,16.3,93,102400,0,0,377,0,0,0,0,0,0,0,160,4.4,9,9,11.3,7500,9,999999999,170,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.6,16.8,95,102400,0,0,389,0,0,0,0,0,0,0,190,3.8,10,10,11.3,7500,9,999999999,170,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.2,15.6,96,102400,0,0,380,0,0,0,0,0,0,0,270,2.6,10,10,11.3,300,9,999999999,160,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.8,15.4,97,102500,59,955,378,3,0,3,400,0,400,120,240,3.9,10,10,11.3,300,9,999999999,160,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.4,17.2,99,102500,312,1414,389,78,0,78,8700,0,8700,2710,320,4.8,10,10,11.3,300,9,999999999,150,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,16.5,91,102600,548,1414,391,263,225,176,28500,21900,20000,4100,340,5.1,10,10,11.3,300,9,999999999,150,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,16.0,83,102600,729,1414,385,445,488,192,46600,49000,21200,4160,330,6.2,9,9,11.3,750,9,999999999,139,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,17.0,78,102500,843,1414,397,552,652,161,57500,65100,18600,3730,330,4.1,9,9,11.3,750,9,999999999,139,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,20.0,16.0,78,102400,882,1414,390,506,378,269,54400,40300,29200,6940,300,4.1,9,9,11.3,750,9,999999999,129,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,14.0,64,102300,843,1414,404,550,609,186,59000,62500,21600,4340,320,5.1,10,10,11.3,750,9,999999999,129,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,14.0,64,102200,729,1414,404,322,142,248,34800,14600,27300,6250,310,5.7,10,10,11.3,750,9,999999999,129,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,15.0,83,102200,548,1414,389,234,116,189,25600,11200,21300,5020,320,4.1,10,10,11.3,600,9,999999999,129,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,14.0,82,102200,312,1414,383,146,324,74,15100,25400,9500,1360,310,4.1,10,10,11.3,300,9,999999999,129,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,13.0,88,102200,59,955,371,8,66,6,1200,3300,900,120,340,3.1,10,10,11.3,300,9,999999999,129,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.0,12.0,88,102200,0,0,355,0,0,0,0,0,0,0,340,3.1,9,9,11.3,150,9,999999999,129,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.0,12.0,94,102200,0,0,350,0,0,0,0,0,0,0,330,2.1,9,9,11.3,150,9,999999999,120,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.0,11.0,94,102300,0,0,353,0,0,0,0,0,0,0,330,3.1,10,10,11.3,150,9,999999999,120,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.0,11.0,94,102300,0,0,353,0,0,0,0,0,0,0,330,3.1,10,10,11.3,150,9,999999999,120,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.0,11.0,94,102300,0,0,353,0,0,0,0,0,0,0,350,2.6,10,10,11.3,450,9,999999999,120,0.0760,0,88,0.140,999.0,99.0 +2000,12,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,10.0,100,102300,0,0,343,0,0,0,0,0,0,0,10,1.5,10,10,11.3,450,9,999999999,120,0.0760,0,88,0.140,999.0,99.0 +2000,12,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.0,10.0,94,102300,0,0,319,0,0,0,0,0,0,0,10,2.6,10,5,11.3,330,9,999999999,120,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,9.0,93,102300,0,0,313,0,0,0,0,0,0,0,20,2.1,10,5,11.3,330,9,999999999,120,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,9.0,93,102300,0,0,313,0,0,0,0,0,0,0,20,2.1,10,5,11.3,330,9,999999999,120,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,9.0,93,102300,0,0,313,0,0,0,0,0,0,0,20,2.1,10,5,11.3,330,9,999999999,120,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,9.0,93,102300,0,0,313,0,0,0,0,0,0,0,30,3.1,10,5,11.3,1500,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,9.0,93,102400,0,0,302,0,0,0,0,0,0,0,20,2.1,5,1,11.3,77777,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,9.0,93,102500,0,0,302,0,0,0,0,0,0,0,10,2.1,5,1,11.3,77777,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,9.0,93,102500,58,931,306,7,128,3,1300,7700,800,120,20,2.6,9,2,11.3,1500,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.0,8.0,82,102600,310,1414,312,182,450,82,18600,35200,10900,1520,10,2.1,9,3,11.3,3900,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.0,6.0,67,102700,547,1414,311,347,668,87,36200,63100,11700,1720,30,2.1,9,2,11.3,3900,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.0,5.0,55,102700,729,1414,322,510,830,80,54000,82000,11600,1800,360,2.1,9,3,11.3,3900,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,15.0,2.0,41,102600,843,1414,320,614,894,79,64100,88400,11200,1850,30,2.6,9,2,11.3,3900,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,2.0,36,102600,883,1414,332,632,859,94,65600,85100,12300,2030,320,2.6,9,3,11.3,3900,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,17.0,1.0,34,102500,845,1414,328,609,877,83,63400,86700,11500,1880,10,1.5,9,2,11.3,3000,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,2.0,34,102500,731,1414,337,503,823,76,53600,81500,11300,1750,60,3.1,9,3,11.3,3000,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,2.0,34,102400,550,1414,334,357,745,66,37300,70500,9700,1360,10,2.1,9,2,11.3,3000,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,3.0,42,102500,314,1414,329,169,560,44,17200,45900,7000,840,20,2.6,9,3,11.3,6000,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.7,3.6,54,102500,61,955,312,9,127,5,1500,7700,1000,180,30,2.1,9,2,11.3,6000,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.4,3.2,57,102600,0,0,302,0,0,0,0,0,0,0,20,2.1,5,1,11.3,77777,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.1,1.8,49,102600,0,0,303,0,0,0,0,0,0,0,20,1.5,5,1,11.3,77777,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.9,1.9,57,102700,0,0,301,0,0,0,0,0,0,0,10,1.5,9,3,11.3,3000,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.5,2.0,68,102800,0,0,288,0,0,0,0,0,0,0,20,2.1,9,2,11.3,3000,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.2,3.6,78,102800,0,0,291,0,0,0,0,0,0,0,20,2.1,9,3,11.3,3000,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.9,3.1,67,102800,0,0,295,0,0,0,0,0,0,0,20,2.6,9,2,11.3,3000,9,999999999,120,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.6,0.7,54,102800,0,0,321,0,0,0,0,0,0,0,20,2.6,9,9,11.3,3000,9,999999999,120,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.3,0.3,57,102800,0,0,315,0,0,0,0,0,0,0,20,2.6,9,9,11.3,6000,9,999999999,129,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,8.0,-1.1,52,102700,0,0,312,0,0,0,0,0,0,0,20,3.1,9,9,11.3,6000,9,999999999,139,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.7,-1.5,55,102700,0,0,305,0,0,0,0,0,0,0,40,2.1,9,9,11.3,6000,9,999999999,150,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.4,-1.9,51,102700,0,0,308,0,0,0,0,0,0,0,10,2.6,9,9,11.3,6000,9,999999999,150,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.1,-2.3,54,102700,0,0,302,0,0,0,0,0,0,0,20,3.1,9,9,11.3,3000,9,999999999,160,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.5,-5.0,44,102800,0,0,296,0,0,0,0,0,0,0,20,5.1,9,9,11.3,3000,9,999999999,170,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,4.4,-3.9,53,102800,57,931,293,6,148,2,1300,8900,700,80,20,3.6,9,9,11.3,3000,9,999999999,179,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.6,-5.0,41,102800,309,1415,301,182,533,65,18500,41800,9300,1140,20,3.1,9,9,11.3,3000,9,999999999,179,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.7,-7.3,31,102800,546,1415,303,354,712,78,37300,67500,11100,1560,10,4.1,9,9,11.3,3000,9,999999999,189,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.4,-5.6,32,102800,728,1415,313,497,781,93,51800,76700,12200,1980,330,4.6,9,9,11.3,6000,9,999999999,200,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.5,-5.6,30,102700,844,1415,318,589,804,108,61700,80000,13800,2460,340,6.2,9,9,11.3,6000,9,999999999,200,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.6,-7.3,24,102600,884,1415,303,632,859,94,65700,85100,12300,2030,330,5.7,5,5,11.3,77777,9,999999999,209,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.8,-7.3,21,102500,846,1415,312,603,830,105,63300,82700,13700,2430,320,6.7,5,5,11.3,77777,9,999999999,209,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.3,-2.8,32,102500,733,1415,334,486,734,104,51600,73200,13500,2300,320,5.1,9,9,11.3,4500,9,999999999,209,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,13.3,-3.4,30,102400,552,1415,333,352,704,76,37200,67100,10900,1530,330,5.7,9,9,11.3,7500,9,999999999,220,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,12.7,-3.9,30,102400,317,1415,330,174,577,44,17800,47400,7100,840,320,4.1,9,9,11.3,7500,9,999999999,220,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.5,-1.4,43,102300,63,978,323,8,51,7,1200,2100,1100,120,320,2.9,9,9,11.3,4500,9,999999999,220,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,0.0,50,102300,0,0,315,0,0,0,0,0,0,0,320,3.8,8,8,11.3,4500,9,999999999,220,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,1.2,54,102300,0,0,316,0,0,0,0,0,0,0,330,3.1,8,8,11.3,4500,9,999999999,220,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,2.1,58,102300,0,0,317,0,0,0,0,0,0,0,350,0.9,8,8,11.3,7500,9,999999999,220,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.0,3.2,63,102300,0,0,314,0,0,0,0,0,0,0,10,1.3,7,7,11.3,4500,9,999999999,220,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.3,4.4,67,102200,0,0,316,0,0,0,0,0,0,0,30,1.1,7,7,11.3,4500,9,999999999,220,0.0750,0,88,0.140,999.0,99.0 +2000,12,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.5,5.6,72,102100,0,0,315,0,0,0,0,0,0,0,60,0.4,6,6,11.3,4500,9,999999999,220,0.0750,0,88,0.140,999.0,99.0 +2000,12,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,10.7,6.7,76,102100,0,0,314,0,0,0,0,0,0,0,90,1.8,6,5,11.3,4500,9,999999999,229,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.0,7.9,81,102100,0,0,314,0,0,0,0,0,0,0,60,2.6,6,4,11.3,4500,9,999999999,229,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.3,8.9,85,102000,0,0,317,0,0,0,0,0,0,0,60,2.0,5,4,11.3,4500,9,999999999,240,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.5,9.9,90,102000,0,0,316,0,0,0,0,0,0,0,50,3.9,5,3,11.3,7500,9,999999999,240,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.7,11.0,95,102000,0,0,305,0,0,0,0,0,0,0,50,3.8,0,0,11.3,77777,9,999999999,250,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,12.0,100,102100,0,0,307,0,0,0,0,0,0,0,50,3.6,0,0,11.3,77777,9,999999999,259,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,11.0,94,102100,0,0,325,0,0,0,0,0,0,0,60,3.1,5,5,11.3,77777,9,999999999,259,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,12.0,94,102200,56,908,350,6,142,2,1300,8500,700,80,60,4.6,9,9,11.3,7500,9,999999999,270,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,12.0,82,102200,307,1415,360,183,520,69,18400,40500,9600,1190,60,4.6,9,9,11.3,7500,9,999999999,279,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,102200,545,1415,350,326,537,119,34600,51100,14800,2290,70,4.1,5,5,11.3,77777,9,999999999,279,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,13.0,64,102100,728,1415,356,504,757,113,53100,75100,14300,2460,110,4.6,2,2,11.3,77777,9,999999999,290,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,13.0,53,102100,844,1415,374,608,870,87,63200,85900,11800,1900,150,2.6,3,3,11.3,77777,9,999999999,300,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,23.0,12.0,50,101900,885,1415,369,633,859,94,65700,85100,12300,2040,150,2.6,2,2,11.3,77777,9,999999999,300,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,10.0,41,101800,848,1415,381,603,824,108,63200,82000,13900,2480,140,2.6,5,5,11.3,77777,9,999999999,300,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,11.0,44,101700,735,1415,405,481,693,119,50500,68700,14700,2590,170,2.4,9,9,11.3,7500,9,999999999,300,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,24.0,11.0,44,101700,555,1415,405,352,693,79,37100,66000,11100,1590,190,2.3,9,9,11.3,7500,9,999999999,300,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,21.0,13.0,60,101700,320,1415,370,170,534,49,17700,43200,7900,910,220,2.1,5,5,11.3,77777,9,999999999,300,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,101700,65,978,371,10,100,7,1500,5100,1200,140,240,2.1,9,9,11.3,7500,9,999999999,300,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,14.0,77,101700,0,0,377,0,0,0,0,0,0,0,270,1.5,9,9,11.3,7500,9,999999999,300,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,13.0,82,101700,0,0,366,0,0,0,0,0,0,0,50,0.5,9,9,11.3,1800,9,999999999,290,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,13.0,77,101700,0,0,371,0,0,0,0,0,0,0,60,1.5,9,9,11.3,1800,9,999999999,290,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,14.0,88,101700,0,0,367,0,0,0,0,0,0,0,140,1.5,9,9,11.3,1500,9,999999999,290,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,15.0,88,101600,0,0,384,0,0,0,0,0,0,0,180,1.0,10,10,11.3,1500,9,999999999,290,0.0740,0,88,0.140,999.0,99.0 +2000,12,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,15.0,88,101600,0,0,384,0,0,0,0,0,0,0,100,1.5,10,10,11.3,1500,9,999999999,290,0.0740,0,88,0.140,999.0,99.0 +2000,12,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,15.0,88,101600,0,0,384,0,0,0,0,0,0,0,170,1.0,10,10,11.3,900,9,999999999,290,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,101500,0,0,383,0,0,0,0,0,0,0,100,1.5,10,10,11.3,7500,9,999999999,290,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,101500,0,0,383,0,0,0,0,0,0,0,80,1.5,10,10,11.3,1500,9,999999999,290,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,15.0,88,101400,0,0,384,0,0,0,0,0,0,0,100,1.5,10,10,11.3,3600,9,999999999,290,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,16.0,94,101200,0,0,385,0,0,0,0,0,0,0,120,3.1,10,10,11.3,3000,9,999999999,290,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,16.0,88,101200,0,0,390,0,0,0,0,0,0,0,140,4.1,10,10,11.3,2100,9,999999999,290,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.0,16.0,94,101200,0,0,385,0,0,0,0,0,0,0,170,3.1,10,10,9.7,2100,9,999999999,290,0.0730,0,88,0.140,1.0,6.0 +2000,12,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101100,55,908,386,1,0,1,100,0,100,40,150,2.6,10,10,8.0,1050,9,999999999,290,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,17.0,100,101000,306,1415,386,44,0,44,5100,0,5100,1740,60,1.5,10,10,11.3,1050,9,999999999,290,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,18.0,100,101000,544,1415,393,56,0,56,6800,0,6800,2550,200,4.6,10,10,9.7,1050,9,999999999,290,0.0730,0,88,0.140,5.0,3.0 +2000,12,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,100900,728,1415,406,181,0,181,20800,0,20800,7540,200,4.6,10,10,11.3,1050,9,999999999,290,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,19.0,100,100800,844,1415,400,93,0,93,11500,0,11500,4640,240,4.1,10,10,11.3,1050,9,999999999,300,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,19.0,100,100800,886,1415,400,114,0,114,13900,0,13900,5650,230,6.2,10,10,11.3,1050,9,999999999,300,0.0730,0,88,0.140,6.0,6.0 +2000,12,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,19.0,100,100600,849,1415,400,94,0,94,11600,0,11600,4690,230,4.1,10,10,11.3,1050,9,999999999,290,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,20.0,20.0,100,100600,737,1415,406,85,0,85,10400,0,10400,4090,280,5.7,10,10,3.2,240,9,999999999,279,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,19.0,100,100600,558,1415,400,107,0,107,12400,0,12400,4450,290,4.6,10,10,11.3,600,9,999999999,270,0.0730,0,88,0.140,1.0,3.0 +2000,12,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,19.0,18.0,94,100600,323,1415,398,106,83,87,11500,6900,10000,1890,280,4.1,10,10,11.3,1800,9,999999999,259,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,18.0,17.0,94,100700,67,1002,392,8,0,8,1000,0,1000,310,290,4.6,10,10,11.3,1800,9,999999999,259,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.0,14.0,77,100700,0,0,388,0,0,0,0,0,0,0,280,6.2,10,10,11.3,3000,9,999999999,250,0.0730,0,88,0.140,1.0,6.0 +2000,12,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,17.0,14.0,82,100800,0,0,383,0,0,0,0,0,0,0,300,7.2,10,10,11.3,1800,9,999999999,240,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,11.0,72,100900,0,0,343,0,0,0,0,0,0,0,300,8.2,5,5,11.3,77777,9,999999999,229,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,100900,0,0,344,0,0,0,0,0,0,0,290,7.2,9,7,11.3,1500,9,999999999,220,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,10.0,72,100900,0,0,350,0,0,0,0,0,0,0,290,6.2,9,8,11.3,1200,9,999999999,220,0.0730,0,88,0.140,999.0,99.0 +2000,12,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,16.0,11.0,72,100800,0,0,350,0,0,0,0,0,0,0,300,7.7,9,7,11.3,1200,9,999999999,209,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,15.0,11.0,77,100900,0,0,369,0,0,0,0,0,0,0,310,7.7,10,10,11.3,1200,9,999999999,200,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,14.0,10.0,77,100900,0,0,362,0,0,0,0,0,0,0,340,8.2,10,10,11.3,900,9,999999999,189,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,13.0,10.0,82,101000,0,0,335,0,0,0,0,0,0,0,340,6.2,9,7,11.3,750,9,999999999,189,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,9.0,87,101000,0,0,330,0,0,0,0,0,0,0,340,7.2,9,8,11.3,600,9,999999999,179,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,9.0,87,101100,0,0,346,0,0,0,0,0,0,0,350,4.1,10,10,11.3,480,9,999999999,170,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,9.0,87,101200,0,0,346,0,0,0,0,0,0,0,360,2.1,10,10,11.3,600,9,999999999,170,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.0,8.0,82,101300,0,0,345,0,0,0,0,0,0,0,20,2.1,10,10,11.3,600,9,999999999,160,0.0730,0,88,0.140,8.0,24.0 +2000,12,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,8.0,76,101300,54,908,350,1,0,1,100,0,100,40,30,2.1,10,10,11.3,600,9,999999999,160,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,8.0,82,101400,305,1415,345,35,0,35,4200,0,4200,1430,360,3.6,10,10,11.3,750,9,999999999,150,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,8.0,76,101500,543,1415,333,236,169,171,25600,16500,19200,3980,310,3.1,9,8,11.3,690,9,999999999,139,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,8.0,76,101600,727,1415,328,349,183,254,37700,18800,28000,6400,300,4.1,9,7,11.3,690,9,999999999,139,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,12.0,7.0,71,101500,845,1415,332,180,0,180,21100,0,21100,8110,300,4.6,9,8,11.3,600,9,999999999,129,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,7.0,82,101500,887,1415,339,133,0,133,16100,0,16100,6460,290,4.6,10,10,11.3,450,9,999999999,120,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,101500,851,1415,340,135,0,135,16200,0,16200,6440,320,4.6,10,10,11.3,450,9,999999999,120,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,101400,740,1415,340,147,0,147,17200,0,17200,6490,350,3.6,10,10,11.3,450,9,999999999,120,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,8.0,82,101400,560,1415,345,171,23,162,19200,1800,18500,6000,350,3.1,10,10,11.3,450,9,999999999,120,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,8.0,82,101400,326,1415,323,111,94,89,12000,7800,10200,1940,340,2.6,9,7,11.3,450,9,999999999,110,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,8.0,87,101400,69,1026,324,3,0,3,400,0,400,120,340,2.4,9,8,11.3,450,9,999999999,110,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,101500,0,0,314,0,0,0,0,0,0,0,340,2.1,9,7,11.3,7500,9,999999999,110,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,8.0,93,101500,0,0,319,0,0,0,0,0,0,0,350,2.1,9,8,11.3,450,9,999999999,110,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,7.0,93,101600,0,0,303,0,0,0,0,0,0,0,10,2.1,5,5,11.3,77777,9,999999999,100,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,101600,0,0,299,0,0,0,0,0,0,0,20,2.1,3,3,11.3,77777,9,999999999,100,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,101600,0,0,296,0,0,0,0,0,0,0,50,2.1,2,2,11.3,77777,9,999999999,100,0.0730,0,88,0.140,999.0,99.0 +2000,12,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,101600,0,0,289,0,0,0,0,0,0,0,40,1.0,3,3,11.3,77777,9,999999999,89,0.0730,0,88,0.140,999.0,99.0 +2000,12,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,8.0,100,101600,0,0,304,0,0,0,0,0,0,0,20,2.1,5,5,11.3,77777,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,101600,0,0,293,0,0,0,0,0,0,0,20,2.1,2,2,11.3,77777,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,5.0,81,101600,0,0,301,0,0,0,0,0,0,0,20,2.1,5,5,11.3,77777,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,8.0,4.0,76,101600,0,0,283,0,0,0,0,0,0,0,30,2.6,0,0,11.3,77777,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,6.0,81,101600,0,0,317,0,0,0,0,0,0,0,40,2.1,9,8,11.3,1200,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,5.0,71,101700,0,0,316,0,0,0,0,0,0,0,30,2.1,9,7,11.3,1200,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,5.0,93,101800,0,0,288,0,0,0,0,0,0,0,20,2.1,3,3,11.3,77777,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,6.0,6.0,100,101900,53,884,299,2,0,2,300,0,300,80,10,2.1,9,7,11.3,900,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,6.0,93,102000,304,1415,297,61,0,61,6900,0,6900,2250,320,5.1,5,5,11.3,77777,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,3.0,62,102000,543,1415,307,313,400,159,33200,39100,18100,3350,310,6.7,5,5,11.3,77777,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,3.0,58,102000,727,1415,307,478,690,122,50100,68200,14900,2630,320,5.7,3,3,11.3,77777,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,3.0,58,102000,845,1415,304,559,677,153,58600,67800,17900,3580,330,5.1,2,2,11.3,77777,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,11.0,1.0,50,101900,888,1415,305,585,673,161,61400,67700,18800,3940,320,6.7,3,3,11.3,77777,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,1.0,54,101900,853,1415,305,545,615,173,56700,61300,19600,4010,310,6.7,5,5,11.3,77777,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,10.0,1.0,54,101900,742,1415,300,436,456,196,45700,45900,21500,4280,320,6.2,3,3,11.3,77777,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,1.0,57,102000,563,1415,293,283,285,169,29900,28100,18700,3610,310,6.2,2,2,11.3,77777,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,9.0,1.0,57,102000,329,1415,296,181,470,71,18300,37600,9500,1240,300,4.1,3,3,11.3,77777,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,102100,71,1026,285,13,126,8,1900,7300,1300,200,310,4.6,2,2,11.3,77777,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,102100,0,0,288,0,0,0,0,0,0,0,290,4.6,3,3,11.3,77777,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,102100,0,0,285,0,0,0,0,0,0,0,300,3.1,2,2,11.3,77777,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,2.0,70,102200,0,0,289,0,0,0,0,0,0,0,300,4.6,3,3,11.3,77777,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9*9*9,7.0,1.0,66,102200,0,0,285,0,0,0,0,0,0,0,310,4.1,2,2,11.3,77777,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,5.6,0.1,68,102200,0,0,281,0,0,0,0,0,0,0,320,3.8,3,3,11.3,21129,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.2,1.2,70,102200,0,0,287,0,0,0,0,0,0,0,260,4.1,4,4,11.3,19659,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,6.8,2.3,73,102300,0,0,291,0,0,0,0,0,0,0,280,4.9,4,4,11.3,18787,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.3,3.3,76,102300,0,0,296,0,0,0,0,0,0,0,250,4.7,5,5,11.3,17917,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,7.9,4.4,79,102300,0,0,302,0,0,0,0,0,0,0,230,4.4,6,6,11.3,17047,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.5,6.5,82,102300,0,0,311,0,0,0,0,0,0,0,250,3.7,6,6,11.3,16175,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.1,6.6,84,102300,0,0,313,0,0,0,0,0,0,0,180,2.3,7,7,11.3,15305,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,9.7,7.7,87,102300,0,0,317,0,0,0,0,0,0,0,210,2.5,7,7,11.3,14435,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.3,9.8,90,102300,0,0,332,0,0,0,0,0,0,0,210,1.8,8,8,11.3,11855,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,11.8,9.8,88,102300,52,884,341,5,124,2,1100,7400,600,80,140,2.0,9,9,11.3,14976,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.4,10.9,79,102300,303,1415,342,176,487,71,17700,37500,9600,1210,110,1.8,7,7,11.3,77777,9,999999999,69,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,13.0,73,102300,542,1415,387,334,619,96,34600,58000,12300,1860,150,2.1,10,10,11.3,9818,9,999999999,69,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,12.0,56,102300,728,1415,402,491,739,110,51900,73400,14000,2400,150,4.6,10,10,11.3,9057,9,999999999,69,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.0,12.0,50,102200,846,1415,413,602,822,109,63000,81800,13900,2480,150,2.1,10,10,11.3,8295,9,999999999,69,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.0,12.0,50,102100,890,1415,413,609,733,147,64400,74000,17700,3650,260,2.1,10,10,11.3,7534,9,999999999,69,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.0,13.0,57,102000,855,1415,408,610,830,106,64000,82800,13800,2470,270,2.1,10,10,11.3,6773,9,999999999,69,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,23.0,13.0,53,101900,745,1415,414,515,835,74,53800,81700,10600,1630,310,1.5,10,10,11.3,6011,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,22.0,13.0,57,101900,566,1415,408,369,752,67,38600,71500,9900,1390,310,2.1,10,10,11.3,5250,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,21.0,14.0,64,101900,332,1415,404,181,570,47,18500,47400,7300,890,310,2.6,10,10,11.3,4489,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,19.0,14.0,73,102000,73,1049,393,16,154,9,2200,9000,1500,220,320,2.1,10,10,11.3,3727,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,14.0,77,102000,0,0,388,0,0,0,0,0,0,0,320,1.5,10,10,11.3,2966,9,999999999,80,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,15.0,83,102000,0,0,389,0,0,0,0,0,0,0,360,1.5,10,10,11.3,2205,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,14.0,88,102000,0,0,377,0,0,0,0,0,0,0,310,1.0,10,10,11.3,1443,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,14.0,13.0,94,102000,0,0,366,0,0,0,0,0,0,0,330,0.5,10,10,11.3,15182,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,16.0,13.0,82,102000,0,0,358,0,0,0,0,0,0,0,330,2.1,8,8,11.3,14420,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 +2000,12,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9*9?9?9?9*9*9?9*9*9,18.0,15.0,83,102000,0,0,371,0,0,0,0,0,0,0,50,2.1,8,8,11.3,13659,9,999999999,89,0.0720,0,88,0.140,999.0,99.0 diff --git a/example_files/weather/USA_FL_MacDill.AFB.747880_TMY3.stat b/example_files/weather/USA_FL_MacDill.AFB.747880_TMY3.stat new file mode 100644 index 00000000..4f6d38b1 --- /dev/null +++ b/example_files/weather/USA_FL_MacDill.AFB.747880_TMY3.stat @@ -0,0 +1,553 @@ + -EnergyPlus Weather Converter V7.2.0.007 + Statistics for USA_FL_MacDill.AFB.747880_TMY3 + Location -- Macdill Afb FL USA + {N 27° 51'} {W 82° 31'} {GMT -5.0 Hours} + Elevation -- 8m above sea level + Standard Pressure at Elevation -- 101229Pa + Data Source -- TMY3 + + WMO Station 747880 + + - Displaying Design Conditions from "Climate Design Data 2009 ASHRAE Handbook" + - ASHRAE design conditions are carefully generated from a period of record + - (typically 30 years) to be representative of that location and to be suitable + - for use in heating/cooling load calculations. + + Design Stat ColdestMonth DB996 DB990 DP996 HR_DP996 DB_DP996 DP990 HR_DP990 DB_DP990 WS004c DB_WS004c WS010c DB_WS010c WS_DB996 WD_DB996 + Units {} {°C} {°C} {°C} {} {°C} {°C} {} {°C} {m/s} {°C} {m/s} {°C} {m/s} {deg} + Heating 1 4.6 6.8 -4.9 2.5 7.9 -2.1 3.2 10.6 9.1 16.5 8.3 17 2.5 10 + + Design Stat HottestMonth DBR DB004 WB_DB004 DB010 WB_DB010 DB020 WB_DB020 WB004 DB_WB004 WB010 DB_WB010 WB020 DB_WB020 WS_DB004 WD_DB004 DP004 HR_DP004 DB_DP004 DP010 HR_DP010 DB_DP010 DP020 HR_DP020 DB_DP020 EN004 DB_EN004 EN010 DB_EN010 EN020 DB_EN020 #Hrs_8-4_&_DB-12.8/20.6 + Units {} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {m/s} {deg} {°C} {} {°C} {°C} {} {°C} {°C} {} {°C} {kJ/kg} {°C} {kJ/kg} {°C} {kJ/kg} {°C} {} + Cooling 8 7.9 33.9 25.1 33.1 24.9 32.6 24.9 27.2 30.6 26.7 30.6 26.2 30.4 3.1 270 26.2 21.7 28.6 25.6 20.9 28.5 25.1 20.2 28.3 85.1 30.6 82.7 30.6 81.1 30.2 560 + + Design Stat WS010 WS025 WS050 WBmax DBmin_mean DBmax_mean DBmin_stddev DBmax_stddev DBmin05years DBmax05years DBmin10years DBmax10years DBmin20years DBmax20years DBmin50years DBmax50years + Units {m/s} {m/s} {m/s} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} + Extremes 8.4 7.4 6.6 29.4 0.8 35.5 2.8 1 -1.2 36.2 -2.9 36.8 -4.5 37.3 -6.5 38 + + - Displaying Monthly Design Conditions "Climate Design Data 2009 ASHRAE Handbook" + - Monthly Optical Sky Depth Beam (taub) and Diffuse (taud) + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + taub (beam) 0.343 0.364 0.391 0.402 0.469 0.471 0.507 0.491 0.444 0.397 0.360 0.346 + taud (diffuse) 2.543 2.407 2.273 2.274 2.034 2.079 1.958 2.016 2.196 2.357 2.486 2.511 + + taub = Clear Sky Optical Depth for Beam Irradiance + taud = Clear Sky Optical Depth for Diffuse Irradiance + + - Monthly Solar Irradiance Wh/m˛ (noon on 21st of month) + ib (beam) 905 909 900 895 832 825 795 807 838 862 876 883 + id (diffuse) 93 112 134 137 174 165 186 174 142 116 97 93 + + ib = Clear Sky Noon Beam Normal Irradiance on 21st Day + id = Clear Sky Noon Diffuse Horizontal Irradiance on 21st Day + + - Monthly Drybulb and Mean Coincident Wetbulb Temperatures °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Drybulb 0.4% 28.0 28.7 29.9 31.4 33.7 34.2 34.9 34.6 34.2 32.9 30.2 28.8 + Coincident Wetbulb 0.4% 20.9 21.2 21.3 22.3 23.3 24.5 25.2 25.7 25.5 24.4 22.7 22.0 + Drybulb 2.0% 26.3 27.2 28.1 30.0 32.5 33.3 33.7 33.6 33.2 31.8 28.9 27.4 + Coincident Wetbulb 2.0% 20.5 20.5 21.0 21.5 23.1 24.6 25.3 25.4 25.0 24.1 22.3 21.1 + Drybulb 5.0% 24.9 25.7 27.2 28.8 31.3 32.5 32.8 32.8 32.4 30.8 27.7 26.0 + Coincident Wetbulb 5.0% 19.8 19.7 20.6 21.4 22.8 24.6 25.3 25.3 24.9 23.8 21.7 20.6 + Drybulb 10.% 22.8 23.9 25.9 27.5 30.2 31.9 32.2 32.2 31.6 29.5 26.5 24.1 + Coincident Wetbulb 10.% 19.1 19.0 19.8 20.7 22.4 24.6 25.4 25.4 24.8 23.3 20.9 19.8 + + Drybulb 0.4% = 0.4% Monthly Design Drybulb Temperature + Coincident Wetbulb 0.4% = 0.4% Monthly Mean Coincident Wetbulb Temperature + Drybulb 2.0% = 2.0% Monthly Design Drybulb Temperature + Coincident Wetbulb 2.0% = 2.0% Monthly Mean Coincident Wetbulb Temperature + Drybulb 5.0% = 5.0% Monthly Design Drybulb Temperature + Coincident Wetbulb 5.0% = 5.0% Monthly Mean Coincident Wetbulb Temperature + Drybulb 10.% = 10.% Monthly Design Drybulb Temperature + Coincident Wetbulb 10.% = 10.% Monthly Mean Coincident Wetbulb Temperature + + - Monthly Drybulb and Wetbulb Daily Ranges delta°C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Drybulb 9.9 9.7 9.7 9.8 9.6 8.3 8.0 7.9 7.9 8.9 9.2 9.6 + Drybulb range - DB 5% 10.2 10.6 10.5 10.3 10.3 9.3 8.7 8.6 8.7 8.8 9.3 9.5 + Wetbulb range - DB 5% 5.7 5.3 5.0 4.2 3.9 3.5 3.5 3.3 3.2 3.5 4.4 4.6 + + Drybulb = Mean Daily Dry Bulb Temperature Range + Drybulb range - DB 5% = Mean Daily Dry Bulb Temperature Range Coincident with 5% Design Dry Bulb Temperature + Wetbulb range - DB 5% = Mean Daily Wet Bulb Temperature Range Coincident with 5% Design Dry Bulb Temperature + + - Displaying Heating/Cooling Degree Days/Hours from "Climate Design Data 2009 ASHRAE Handbook" + - Monthly Standard Heating/Cooling Degree Days/Hours + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + HDD base 10°C 6 1 0 0 0 0 0 0 0 0 0 4 + HDD base 18.3°C 92 53 27 7 0 0 0 0 0 2 17 69 + + CDD base 10°C 204 221 306 363 483 534 568 569 529 454 334 246 + CDD base 18.3°C 32 39 74 119 225 284 310 311 279 198 101 52 + + CDH base 23.3°C 132 173 396 787 1968 2929 3347 3361 2749 1559 529 219 + CDH base 26.7°C 12 21 61 186 702 1162 1348 1341 1034 482 95 27 + + - 4812 annual (standard) cooling degree-days (10°C baseline) + - 11 annual (standard) heating degree-days (10°C baseline) + + - 2024 annual (standard) cooling degree-days (18.3°C baseline) + - 266 annual (standard) heating degree-days (18.3°C baseline) + + - Monthly Statistics for Dry Bulb temperatures °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 27.0 28.3 30.0 33.3 33.9 35.0 36.1 36.3 36.4 34.0 30.0 30.0 + Day:Hour 2:15 2:13 26:14 28:15 7:14 14:14 21:16 30:16 9:17 5:15 1:14 13:15 + + Minimum 0.0 -3.4 1.1 8.3 21.1 20.6 22.2 20.2 19.2 10.0 7.2 0.0 + Day:Hour 5:06 5:07 9:06 11:06 7:01 7:02 11:20 25:24 7:18 28:05 12:07 21:05 + + Daily Avg 13.6 15.5 17.1 21.2 26.9 27.6 27.9 27.4 26.2 24.2 18.9 15.7 + + - Maximum Dry Bulb temperature of 36.4°C on Sep 9 + - Minimum Dry Bulb temperature of -3.4°C on Feb 5 + + - Monthly Statistics for Extreme Dry Bulb temperatures °C + #Days Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Max >= 32 1 20 16 20 22 8 6 + Max <= 0 + Min <= 0 1 1 1 + Min <=-18 + + - Monthly Statistics for Dew Point temperatures °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 21.0 20.2 21.1 23.3 24.4 25.6 25.6 26.6 25.5 28.0 23.8 23.0 + Day:Hour 19:21 2:23 7:09 28:16 26:08 29:15 2:06 9:19 10:13 7:08 1:11 12:14 + + Minimum -6.0 -10.6 -8.4 -3.4 16.1 14.4 17.8 13.0 16.6 -2.1 -5.6 -7.3 + Day:Hour 4:06 5:06 9:08 10:09 4:16 12:11 8:12 20:05 22:17 27:12 22:11 26:10 + + Daily Avg 8.6 10.4 10.7 15.2 21.1 21.6 23.3 22.5 22.2 18.4 12.6 10.5 + + - Maximum Dew Point temperature of 28.0°C on Oct 7 + - Minimum Dew Point temperature of -10.6°C on Feb 5 + + - Average Hourly Statistics for Dry Bulb temperatures °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 11.4 13.4 14.8 18.8 24.5 25.1 26.1 25.3 24.6 21.7 17.0 13.6 + 1:01- 2:00 10.8 13.2 14.4 18.6 24.3 24.8 25.9 25.2 24.5 21.7 16.6 13.2 + 2:01- 3:00 10.5 12.8 14.2 18.3 24.3 24.7 25.5 25.0 24.4 21.4 16.2 12.8 + 3:01- 4:00 10.4 12.5 14.0 18.1 24.0 24.6 25.5 24.6 24.3 21.4 15.9 12.7 + 4:01- 5:00 10.0 12.3 13.8 17.9 24.0 24.4 25.4 24.6 24.3 21.2 15.6 12.7 + 5:01- 6:00 9.8 12.0 13.3 17.7 23.9 24.5 25.3 24.4 24.3 21.1 15.4 12.7 + 6:01- 7:00 9.7 12.0 13.4 18.5 25.0 25.8 26.4 25.3 24.7 21.3 15.2 12.5 + 7:01- 8:00 10.1 12.7 14.9 19.6 26.3 27.2 27.8 26.8 25.7 22.3 16.3 13.2 + 8:01- 9:00 12.4 14.4 16.7 21.2 27.6 28.4 29.1 27.9 26.9 23.8 18.0 14.4 + 9:01-10:00 14.8 15.9 18.6 22.6 28.9 29.6 30.0 29.2 28.0 25.5 19.8 16.2 + 10:01-11:00 16.7 17.4 19.9 23.9 29.8 30.4 30.5 29.9 28.7 26.8 21.3 18.0 + 11:01-12:00 17.7 18.8 20.8 24.8 29.7 30.7 30.8 30.6 28.9 27.7 22.6 19.3 + 12:01-13:00 18.4 19.8 21.3 25.5 30.2 30.9 30.7 31.0 29.2 28.4 23.5 20.1 + 13:01-14:00 18.9 20.2 21.5 25.9 31.0 31.3 30.2 30.8 29.5 28.7 23.8 20.6 + 14:01-15:00 18.9 20.2 21.4 25.7 30.6 31.1 30.0 30.8 29.0 28.3 23.5 20.7 + 15:01-16:00 18.5 19.7 21.2 25.4 30.3 30.9 30.2 30.6 27.8 28.0 23.0 20.1 + 16:01-17:00 17.3 19.1 20.6 24.5 29.1 30.6 29.8 29.8 27.6 27.0 21.8 18.8 + 17:01-18:00 14.9 17.6 19.2 23.1 28.2 29.3 29.3 28.9 26.7 25.5 20.0 16.6 + 18:01-19:00 13.7 15.9 17.2 21.1 26.9 28.2 28.3 27.5 25.7 24.4 19.1 15.9 + 19:01-20:00 12.9 15.0 16.5 20.1 26.1 26.9 27.3 26.7 25.3 23.9 18.6 15.1 + 20:01-21:00 12.5 14.6 15.9 19.8 25.6 26.3 27.0 26.0 25.1 23.3 18.2 14.7 + 21:01-22:00 12.1 14.2 15.6 19.6 25.3 26.0 26.7 26.1 25.0 23.1 17.8 14.4 + 22:01-23:00 11.9 14.2 15.5 19.5 25.1 25.6 26.5 25.8 24.8 22.6 17.5 14.2 + 23:01-24:00 11.4 13.8 15.2 19.3 24.9 25.3 26.3 25.5 24.5 22.4 17.0 13.9 + Max Hour 14 15 14 14 14 14 12 13 14 14 14 15 + Min Hour 7 7 6 6 6 5 6 6 5 6 7 7 + + - Average Hourly Statistics for Dew Point temperatures °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 8.8 10.7 11.0 15.7 21.1 21.9 23.6 22.4 22.0 18.6 13.2 10.5 + 1:01- 2:00 8.6 10.6 10.8 15.7 21.2 22.0 23.4 22.4 22.1 18.5 13.1 10.3 + 2:01- 3:00 8.5 10.3 10.8 15.5 21.4 21.9 23.3 22.4 22.1 18.5 12.6 10.0 + 3:01- 4:00 8.3 9.9 10.6 15.4 21.5 21.8 23.4 22.4 22.1 18.0 12.6 10.1 + 4:01- 5:00 7.9 9.8 10.5 15.3 21.5 21.9 23.3 22.5 22.2 18.0 12.2 10.2 + 5:01- 6:00 7.7 9.6 10.0 15.2 21.5 21.9 23.4 22.8 22.2 17.7 12.1 10.3 + 6:01- 7:00 7.8 9.4 10.0 15.6 21.8 22.3 23.8 23.1 22.4 17.7 11.9 10.2 + 7:01- 8:00 7.9 9.9 10.5 15.6 21.7 22.4 23.9 23.3 22.7 18.1 12.0 10.5 + 8:01- 9:00 8.9 10.4 10.9 15.6 21.7 22.4 24.0 23.2 22.8 18.3 12.0 10.5 + 9:01-10:00 8.7 10.5 10.8 15.0 21.5 22.0 24.0 23.3 22.9 18.5 12.3 10.6 + 10:01-11:00 8.6 10.4 10.6 14.4 20.8 21.3 23.4 22.9 22.8 18.5 12.2 10.8 + 11:01-12:00 8.4 10.3 11.0 14.2 20.4 21.0 22.9 22.8 22.6 18.5 12.2 10.5 + 12:01-13:00 8.2 10.1 10.6 14.1 20.3 20.9 23.0 22.4 22.5 18.5 12.5 10.4 + 13:01-14:00 8.3 10.2 10.2 14.4 20.3 20.4 22.9 22.2 22.4 18.6 12.2 10.4 + 14:01-15:00 8.2 10.4 10.4 14.4 20.3 21.1 22.8 22.0 22.4 18.6 12.3 10.6 + 15:01-16:00 8.3 10.5 10.6 14.6 20.1 20.8 23.1 22.1 22.2 18.4 12.5 10.5 + 16:01-17:00 8.9 10.5 10.4 15.3 20.7 21.4 23.3 22.1 22.0 18.2 12.9 10.8 + 17:01-18:00 9.1 11.0 10.8 15.2 20.8 21.4 23.3 22.1 21.8 18.1 12.9 10.9 + 18:01-19:00 9.4 11.0 11.1 15.5 21.3 21.4 23.1 22.4 21.9 18.8 13.3 11.0 + 19:01-20:00 9.4 10.8 11.3 15.5 21.3 21.8 23.2 22.1 22.0 18.8 13.4 10.7 + 20:01-21:00 9.5 10.9 11.2 15.6 21.3 21.8 23.2 22.2 21.9 18.9 13.3 10.7 + 21:01-22:00 9.4 10.7 10.9 15.9 21.3 21.7 23.4 22.5 21.9 18.9 13.1 10.7 + 22:01-23:00 9.3 10.9 11.2 15.9 21.3 21.8 23.3 22.5 22.0 18.4 13.0 10.7 + 23:01-24:00 9.1 10.8 11.2 15.9 21.3 21.9 23.4 22.3 21.9 18.4 12.9 10.9 + Max Hour 21 19 20 23 7 8 9 10 10 21 20 19 + Min Hour 6 7 7 13 16 14 15 15 18 6 7 3 + + - Monthly Statistics for Relative Humidity % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 100 100 100 100 96 100 97 100 100 100 100 100 + Day:Hour 1:24 1:01 15:06 14:05 23:05 18:14 2:06 6:06 2:06 6:02 3:07 2:06 + + Minimum 26 22 19 19 37 33 39 35 43 24 20 21 + Day:Hour 10:16 13:13 23:17 11:15 4:16 10:16 7:15 30:16 22:17 27:13 22:16 26:14 + + Daily Avg 75 74 69 71 72 72 77 76 80 72 69 74 + + - Average Hourly Relative Humidity % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 85 85 79 83 82 83 86 84 86 83 79 82 + 1:01- 2:00 87 85 80 84 83 85 86 85 87 82 80 83 + 2:01- 3:00 88 85 81 84 84 85 88 86 88 84 80 84 + 3:01- 4:00 87 85 81 84 86 85 89 88 88 83 81 85 + 4:01- 5:00 88 86 82 85 86 86 88 88 89 83 82 86 + 5:01- 6:00 87 86 81 86 87 86 89 91 88 83 82 86 + 6:01- 7:00 88 85 81 84 83 81 86 88 88 82 81 87 + 7:01- 8:00 87 84 76 79 76 76 79 81 84 79 77 85 + 8:01- 9:00 80 78 70 72 71 70 74 76 79 73 69 78 + 9:01-10:00 68 72 62 64 65 64 71 71 74 67 64 71 + 10:01-11:00 60 65 57 58 59 59 67 66 71 62 58 65 + 11:01-12:00 56 60 56 54 59 57 64 64 70 59 54 59 + 12:01-13:00 53 55 53 52 57 57 65 61 68 57 51 56 + 13:01-14:00 52 54 52 51 54 54 67 62 67 56 50 55 + 14:01-15:00 52 55 53 52 56 57 67 61 69 57 51 55 + 15:01-16:00 53 57 53 54 56 57 68 62 73 57 53 56 + 16:01-17:00 59 60 55 59 62 59 69 66 73 60 59 61 + 17:01-18:00 69 66 61 64 65 64 71 69 76 65 65 70 + 18:01-19:00 76 74 69 72 72 68 74 75 81 72 70 73 + 19:01-20:00 80 77 73 76 75 75 78 77 82 74 72 76 + 20:01-21:00 83 79 75 78 78 77 80 81 83 77 74 77 + 21:01-22:00 84 81 75 80 79 78 82 82 84 78 75 79 + 22:01-23:00 85 82 77 80 80 80 83 82 85 78 76 80 + 23:01-24:00 86 84 78 81 81 82 84 83 86 79 78 83 + Max Hour 7 6 5 6 6 5 6 6 5 3 6 7 + Min Hour 15 14 14 14 14 14 12 15 14 14 14 14 + + - Monthly Indicators for Precipitation/Moisture (kPa) + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 1.2 1.4 1.4 1.7 2.4 2.5 2.8 2.7 2.7 2.2 1.6 1.4 + + - Monthly Statistics for Wind Chill/Heat Index temperatures °C ** + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Minimum WC -5 -13 -5 1 -5 + Day:Hour 21:06 5:08 9:07 12:07 20:08 + + Average WC 4 1 3 8 4 + Avg Del WC 3 5 4 1 3 + # Hours WC 206 114 73 26 124 + + Maximum HI 27 29 31 37 38 40 43 40 44 41 34 31 + Day:Hour 2:15 2:13 30:13 28:16 24:13 28:14 22:16 13:13 10:12 6:11 1:14 13:15 + + Average HI 27 28 29 30 32 33 34 34 34 32 30 29 + Avg Del HI 0 1 1 1 2 3 4 4 4 3 2 1 + # Hours HI 2 5 16 74 292 343 410 356 246 226 44 31 + + - **WindChill/HeatIndex Temps -- statistics...only those different from Air Temps + + - Monthly Wind Direction % {N=0 or 360,E=90,S=180,W=270} + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + North 17 25 29 19 11 19 13 12 14 16 30 23 + NorthEast 19 7 9 9 5 18 6 15 19 43 26 22 + East 8 3 9 8 39 17 10 18 25 16 10 9 + SouthEast 5 5 8 11 19 6 16 8 13 7 4 6 + South 10 13 14 14 10 7 16 15 10 5 5 5 + SouthWest 11 19 11 16 5 4 16 8 8 5 7 7 + West 6 10 6 7 5 19 16 16 8 3 4 6 + NorthWest 25 18 13 15 5 11 7 8 4 4 14 22 + + - Monthly Statistics for Wind Speed m/s + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 8.7 12.3 11.3 8.2 9.8 10.3 10.3 12.4 11.5 11.3 9.2 8.2 + Day:Hour 20:15 16:18 20:14 15:17 22:14 6:15 19:13 10:20 12:20 9:14 29:10 19:10 + + Minimum 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5 0.0 0.0 + Day:Hour 3:05 7:19 2:09 5:21 1:06 1:04 5:04 1:04 1:04 2:16 2:20 11:20 + + Daily Avg 3.2 2.8 3.7 2.6 3.1 2.4 2.5 3.2 3.4 4.1 2.6 3.2 + + - Maximum Wind Speed of 12.4 m/s on Aug 10 + - Minimum Wind Speed of 0.0 m/s on Jan 3 + + - Average Hourly Statistics for Wind Speed m/s + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 2.6 2.2 2.8 2.0 2.4 1.8 2.1 2.9 3.0 3.4 2.4 2.9 + 1:01- 2:00 2.7 2.2 2.8 2.0 2.8 1.9 2.4 2.9 3.1 3.5 2.4 3.0 + 2:01- 3:00 2.7 2.1 2.8 2.1 2.4 2.0 2.4 2.7 3.0 3.5 2.4 2.8 + 3:01- 4:00 2.7 2.1 2.8 2.1 2.7 1.8 2.2 2.7 3.0 3.7 2.4 3.0 + 4:01- 5:00 2.6 2.1 2.8 2.1 2.8 1.6 2.1 2.6 2.7 3.4 2.4 2.8 + 5:01- 6:00 2.6 2.1 2.8 2.4 2.8 1.9 1.9 2.4 2.5 3.7 2.5 2.9 + 6:01- 7:00 2.6 2.4 3.1 2.6 3.3 2.3 2.2 2.8 2.8 3.8 2.2 2.8 + 7:01- 8:00 2.9 2.4 3.1 3.0 4.0 2.6 2.5 3.3 3.6 4.4 2.7 3.1 + 8:01- 9:00 3.7 2.7 3.7 3.1 4.1 2.8 2.6 3.6 3.7 5.0 3.3 3.8 + 9:01-10:00 4.0 2.9 4.2 3.2 3.9 2.6 2.8 3.5 3.8 5.1 3.5 4.1 + 10:01-11:00 4.1 3.4 4.2 2.8 3.9 2.6 2.9 3.1 3.8 5.0 3.5 4.1 + 11:01-12:00 4.0 3.9 4.7 3.1 3.5 2.7 3.1 3.2 3.6 4.8 3.4 3.8 + 12:01-13:00 4.0 4.1 4.9 3.2 3.3 2.8 3.0 3.1 3.3 4.8 3.5 3.8 + 13:01-14:00 4.1 4.1 4.7 3.5 3.0 2.8 3.6 3.5 3.7 4.8 3.3 3.8 + 14:01-15:00 4.4 4.4 5.1 3.5 3.2 3.3 3.3 3.6 3.5 5.0 3.1 3.7 + 15:01-16:00 4.1 4.0 5.3 3.8 3.3 2.9 3.1 3.8 3.8 4.8 2.9 3.5 + 16:01-17:00 4.1 3.7 5.1 3.8 4.0 2.7 3.0 4.0 3.3 4.1 2.6 3.0 + 17:01-18:00 3.4 3.5 4.3 3.5 3.1 3.2 2.8 3.7 3.8 3.8 1.9 2.6 + 18:01-19:00 3.1 2.5 3.8 2.6 3.2 2.8 2.5 3.2 3.5 3.6 1.9 2.8 + 19:01-20:00 2.9 2.2 3.4 1.9 3.0 2.4 2.0 3.7 3.7 3.8 2.0 2.4 + 20:01-21:00 2.7 2.3 3.1 1.8 2.8 2.5 1.9 3.4 3.8 3.9 2.1 2.8 + 21:01-22:00 2.6 2.1 2.9 1.7 2.6 2.4 2.1 3.1 3.7 3.6 2.1 2.8 + 22:01-23:00 2.7 2.1 2.9 1.8 2.3 2.2 1.9 3.0 3.5 3.6 2.2 3.0 + 23:01-24:00 2.6 2.1 2.9 1.9 2.4 2.0 2.1 2.7 3.1 3.4 2.3 2.8 + Max Hour 15 15 16 16 9 15 14 17 18 10 11 10 + Min Hour 1 22 6 22 23 5 21 6 6 5 19 20 + + - Average Hourly Statistics for Wind Direction ° {N=0 or 360,E=90,S=180,W=270} + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 166 209 182 167 78 109 139 128 100 98 144 117 + 1:01- 2:00 168 199 141 158 91 87 126 123 105 85 135 136 + 2:01- 3:00 152 198 143 173 72 104 126 126 117 75 116 104 + 3:01- 4:00 152 186 145 175 91 90 109 121 118 86 120 103 + 4:01- 5:00 126 195 147 129 95 85 130 120 90 97 110 111 + 5:01- 6:00 145 162 114 131 86 86 101 81 83 78 125 110 + 6:01- 7:00 127 159 127 140 111 104 112 89 88 72 140 89 + 7:01- 8:00 126 133 141 151 117 109 128 116 108 88 146 77 + 8:01- 9:00 153 132 124 178 122 144 164 133 109 80 133 105 + 9:01-10:00 171 149 172 190 131 135 178 141 116 96 139 141 + 10:01-11:00 191 202 174 187 144 157 189 148 140 95 161 186 + 11:01-12:00 205 205 171 203 159 180 189 181 166 109 156 182 + 12:01-13:00 231 215 193 200 152 192 193 182 161 127 152 223 + 13:01-14:00 225 220 204 208 142 192 211 188 165 127 167 233 + 14:01-15:00 237 235 222 222 153 228 225 202 165 118 182 241 + 15:01-16:00 245 231 222 232 161 226 211 206 158 127 168 245 + 16:01-17:00 252 235 226 240 146 208 221 196 150 122 174 251 + 17:01-18:00 261 242 234 241 160 195 220 201 168 130 172 261 + 18:01-19:00 277 230 238 261 153 162 194 176 122 128 213 250 + 19:01-20:00 268 208 235 259 150 118 147 176 124 135 166 222 + 20:01-21:00 265 196 214 217 121 155 146 170 127 111 159 192 + 21:01-22:00 188 171 179 187 111 87 156 159 105 79 151 160 + 22:01-23:00 183 201 183 190 90 87 143 161 103 87 157 144 + 23:01-24:00 167 202 185 169 59 100 140 149 112 99 151 115 + Max Hour 19 18 19 19 16 15 15 16 18 20 19 18 + Min Hour 5 9 6 5 24 5 6 6 6 7 5 8 + + - Monthly Statistics for Liquid Precipitation mm + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Total 66 66 126 206 144 99 192 240 310 34 63 35 + Max Hourly 26 21 23 51 35 30 28 51 76 13 36 8 + + - Monthly Statistics for Albedo + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Average 0.140 0.130 0.120 0.110 0.110 0.110 0.110 0.110 0.120 0.130 0.140 0.140 + + - Monthly Statistics for Solar Radiation (Direct Normal, Diffuse, Global Horizontal) Wh/m˛ + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Direct Avg 5102 5280 4496 5235 4175 4510 3702 3509 3266 4297 4976 4629 + + Direct Max 7862 7994 9513 9134 8026 7985 7260 7433 7603 7689 7948 7171 + Day 25 5 13 10 29 12 16 30 3 2 12 18 + + Diffuse Avg 1163 1402 1847 2178 2552 2774 2969 2853 2452 1882 1197 1084 + + Global Avg 3590 4432 4716 5935 5654 6222 5827 5474 4718 4502 3762 3280 + - Maximum Direct Normal Solar of 9513 Wh/m˛ on Mar 13 + + - Average Hourly Statistics for Direct Normal Solar Radiation Wh/m˛ + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0 + 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0 + 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0 + 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0 + 4:01- 5:00 0 0 0 0 0 0 0 0 0 0 0 0 + 5:01- 6:00 0 0 0 0 4 4 1 0 0 0 0 0 + 6:01- 7:00 0 0 21 75 121 124 69 47 21 16 7 0 + 7:01- 8:00 94 93 230 253 309 275 221 179 160 160 205 41 + 8:01- 9:00 379 322 427 382 430 331 318 286 245 363 405 286 + 9:01-10:00 490 438 445 473 441 477 406 318 338 452 529 413 + 10:01-11:00 528 560 455 563 471 489 466 387 352 499 578 503 + 11:01-12:00 545 624 476 603 436 490 406 418 344 518 641 585 + 12:01-13:00 611 685 444 544 447 511 382 419 386 471 615 614 + 13:01-14:00 586 687 498 538 451 418 373 385 395 500 639 608 + 14:01-15:00 612 612 504 522 321 440 391 349 330 484 486 565 + 15:01-16:00 553 532 416 527 291 360 285 300 309 423 481 531 + 16:01-17:00 465 447 345 405 227 318 216 232 241 295 334 416 + 17:01-18:00 240 259 205 280 172 198 124 157 133 116 56 65 + 18:01-19:00 0 21 29 71 53 73 44 33 11 0 0 0 + 19:01-20:00 0 0 0 0 1 4 1 0 0 0 0 0 + 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0 + 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0 + 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0 + 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0 + Max Hour* 15 14 15 12 11* 13 11* 13 14 12 12 13 + Min Hour 1 1 1 1 1 1 1 1 1 1 1 1 + + - Average Hourly Statistics for Diffuse Horizontal Solar Radiation Wh/m˛ + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0 + 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0 + 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0 + 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0 + 4:01- 5:00 0 0 0 0 0 0 0 0 0 0 0 0 + 5:01- 6:00 0 0 0 0 2 3 1 0 0 0 0 0 + 6:01- 7:00 0 0 4 26 51 56 52 33 18 0 0 0 + 7:01- 8:00 2 24 53 86 107 134 133 111 93 78 34 2 + 8:01- 9:00 74 77 110 153 175 194 194 186 176 138 84 82 + 9:01-10:00 115 138 151 212 220 239 268 249 230 196 124 122 + 10:01-11:00 145 143 212 231 256 281 266 305 298 219 143 142 + 11:01-12:00 168 183 244 232 277 315 311 316 315 253 161 150 + 12:01-13:00 161 182 253 267 283 307 341 338 318 264 177 155 + 13:01-14:00 162 176 219 257 282 317 376 349 290 228 152 138 + 14:01-15:00 126 170 203 248 288 277 303 316 255 209 153 129 + 15:01-16:00 116 144 178 196 253 262 289 276 216 161 95 103 + 16:01-17:00 75 109 139 153 195 193 218 200 162 107 62 56 + 17:01-18:00 20 53 69 90 119 133 147 131 70 29 12 3 + 18:01-19:00 0 3 12 28 43 60 68 42 11 0 0 0 + 19:01-20:00 0 0 0 0 0 4 4 0 0 0 0 0 + 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0 + 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0 + 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0 + 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0 + Max Hour 12 12 13 13 15 14 14 14 13 13 13 13 + Min Hour 1 1 1 1 1 1 1 1 1 1 1 1 + + - Average Hourly Statistics for Global Horizontal Solar Radiation Wh/m˛ + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0 + 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0 + 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0 + 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0 + 4:01- 5:00 0 0 0 0 0 0 0 0 0 0 0 0 + 5:01- 6:00 0 0 0 0 2 4 1 0 0 0 0 0 + 6:01- 7:00 0 0 5 34 71 79 62 38 20 0 0 0 + 7:01- 8:00 4 32 98 165 224 242 212 168 136 112 60 3 + 8:01- 9:00 157 167 283 350 423 388 373 336 294 289 215 151 + 9:01-10:00 309 341 412 542 550 599 566 474 453 462 380 290 + 10:01-11:00 427 487 546 700 670 714 672 631 579 576 491 409 + 11:01-12:00 508 629 639 787 694 789 699 706 620 662 591 506 + 12:01-13:00 565 701 637 784 723 816 720 743 666 642 598 543 + 13:01-14:00 537 685 640 752 712 722 737 711 635 608 564 503 + 14:01-15:00 474 579 589 683 567 667 653 616 514 527 421 420 + 15:01-16:00 362 433 441 563 466 534 507 493 414 377 290 306 + 16:01-17:00 206 277 295 363 322 380 347 327 271 202 137 145 + 17:01-18:00 41 98 119 177 180 211 198 185 103 43 15 5 + 18:01-19:00 0 4 14 35 50 74 77 46 12 0 0 0 + 19:01-20:00 0 0 0 0 0 4 4 0 0 0 0 0 + 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0 + 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0 + 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0 + 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0 + Max Hour 13 13 14 12 13 13 14 13 13 12 13 13 + Min Hour 1 1 1 1 1 1 1 1 1 1 1 1 + + - Average Hourly Statistics for Total Sky Cover % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 52 39 48 47 53 49 58 62 61 59 35 55 + 1:01- 2:00 55 43 48 47 49 48 60 55 60 65 34 50 + 2:01- 3:00 53 43 45 46 44 42 59 55 59 67 34 50 + 3:01- 4:00 56 47 45 47 46 41 55 51 63 68 35 55 + 4:01- 5:00 53 49 43 47 52 39 59 53 61 71 30 56 + 5:01- 6:00 50 51 42 51 51 64 66 61 67 71 29 56 + 6:01- 7:00 54 55 45 55 52 59 64 60 72 73 37 60 + 7:01- 8:00 56 58 47 56 51 56 62 63 72 73 40 71 + 8:01- 9:00 61 57 42 48 45 63 62 62 78 71 39 64 + 9:01-10:00 57 60 49 51 56 54 62 71 73 71 39 63 + 10:01-11:00 57 44 50 45 58 55 55 71 76 71 40 57 + 11:01-12:00 64 46 53 45 61 58 65 67 76 67 42 57 + 12:01-13:00 62 46 57 53 60 56 74 70 72 72 40 51 + 13:01-14:00 58 44 55 51 60 69 76 71 73 73 36 56 + 14:01-15:00 63 39 54 51 74 60 74 77 69 71 47 59 + 15:01-16:00 59 51 60 47 73 65 84 77 73 72 43 56 + 16:01-17:00 63 50 57 51 76 65 88 75 75 71 40 55 + 17:01-18:00 65 46 57 50 72 70 92 77 73 73 48 58 + 18:01-19:00 59 50 61 49 76 71 89 77 73 71 47 51 + 19:01-20:00 57 40 56 43 73 61 84 73 71 68 44 51 + 20:01-21:00 56 32 57 43 67 61 77 68 66 67 42 50 + 21:01-22:00 54 24 50 44 59 61 71 68 66 65 34 51 + 22:01-23:00 54 29 50 44 60 56 67 66 63 60 33 55 + 23:01-24:00 52 35 49 42 54 57 61 62 63 64 36 56 + Max Hour 18 10 19 8 19 19 18 15 9 7 18 8 + Min Hour 6 22 9 24 3 5 11 4 3 1 6 2 + + - Average Hourly Statistics for Opaque Sky Cover % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 43 32 45 39 47 41 43 52 47 51 32 51 + 1:01- 2:00 47 36 45 39 46 40 45 47 47 57 31 45 + 2:01- 3:00 44 37 43 39 40 35 46 46 47 59 30 45 + 3:01- 4:00 48 41 43 39 44 35 41 45 50 58 31 51 + 4:01- 5:00 42 42 39 39 47 34 44 46 49 62 28 53 + 5:01- 6:00 39 45 38 42 47 52 48 52 50 63 27 52 + 6:01- 7:00 44 45 42 46 48 49 46 52 55 63 33 57 + 7:01- 8:00 45 48 43 47 46 45 46 54 55 63 36 66 + 8:01- 9:00 52 46 39 42 40 53 47 54 60 62 34 59 + 9:01-10:00 49 45 45 45 51 46 47 60 58 63 32 58 + 10:01-11:00 50 36 47 38 51 47 43 60 59 62 33 51 + 11:01-12:00 53 35 50 38 54 47 51 57 60 61 32 50 + 12:01-13:00 51 33 54 44 54 47 56 59 57 64 33 46 + 13:01-14:00 49 31 51 42 52 57 57 60 57 64 29 50 + 14:01-15:00 53 30 49 43 66 52 55 65 57 63 40 54 + 15:01-16:00 49 38 55 38 63 56 63 64 60 63 36 50 + 16:01-17:00 53 37 52 42 68 57 65 65 59 61 35 49 + 17:01-18:00 55 30 53 42 64 60 69 65 58 64 38 52 + 18:01-19:00 49 34 59 40 69 62 68 67 57 63 38 46 + 19:01-20:00 47 26 54 34 67 52 62 63 58 58 34 46 + 20:01-21:00 46 21 55 35 62 52 56 59 53 58 34 45 + 21:01-22:00 41 18 49 36 55 52 54 59 51 55 28 45 + 22:01-23:00 41 21 48 37 55 49 50 57 47 52 29 46 + 23:01-24:00 41 27 47 36 46 49 45 52 48 55 31 48 + Max Hour 18 8 19 8 19 19 18 19 12 14 15 8 + Min Hour 6 22 6 20 9 5 4 4 3 1 6 3 + + - Monthly Calculated "undisturbed" Ground Temperatures** °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0.5 m 18.2 16.0 15.4 15.9 18.9 22.2 25.4 27.7 28.4 27.3 24.7 21.4 + 2.0 m 20.2 18.1 17.1 17.1 18.7 20.9 23.4 25.5 26.6 26.4 25.0 22.7 + 4.0 m 21.5 19.9 18.9 18.6 19.2 20.5 22.2 23.8 24.9 25.1 24.5 23.2 + + - **These ground temperatures should NOT BE USED in the GroundTemperatures object to compute building floor losses. + - The temperatures for 0.5 m depth can be used for GroundTemperatures:Surface. + - The temperatures for 4.0 m depth can be used for GroundTemperatures:Deep. + - Calculations use a standard soil diffusivity of 2.3225760E-03 {m**2/day} + + - Heating/Cooling Degree Days/Hours calculated from this weather file. + - Heating/Cooling Degree Days/Hours from design conditions shown earlier in this report. + - Monthly Weather File Heating/Cooling Degree Days/Hours + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + HDD base 10C 16 15 4 0 0 0 0 0 0 0 0 9 + HDD base 18C 154 90 76 6 0 0 0 0 0 5 36 110 + + CDD base 10C 127 169 223 337 524 528 556 540 487 441 267 185 + CDD base 18C 16 20 47 103 276 288 308 292 247 199 63 38 + + CDH base 20C 323 443 813 1735 5133 5477 5905 5531 4488 3583 1141 655 + CDH base 23C 83 135 276 753 2917 3341 3675 3332 2384 1856 419 230 + CDH base 27C 0 3 18 154 900 1117 1213 1109 672 482 48 21 + + - 4385 annual (wthr file) cooling degree-days (10°C baseline) + - 44 annual (wthr file) heating degree-days (10°C baseline) + + - 1898 annual (wthr file) cooling degree-days (18°C baseline) + - 477 annual (wthr file) heating degree-days (18°C baseline) + + - Climate type "Cfa" (Köppen classification)** + - Humid subtropical (mild with no dry season, hot summer, lat. 20-35°N) + - **Note that the Köppen classification shown here is derived algorithmically from the source weather data. + - It may not be indicative of the long term climate for this location. + + - Climate type "2A" (ASHRAE Standard 196-2006 Climate Zone)** + - Hot - Humid, Probable Köppen classification=Cfa, Humid Subtropical (Warm Summer) + - **Note that the ASHRAE classification shown here is derived algorithmically from the source weather data. + - It may not be indicative of the long term climate for this location. + + - Typical/Extreme Period Determination + + - Summer is Jul:Sep + Extreme Summer Week (nearest maximum temperature for summer) + Extreme Hot Week Period selected: Jul 15:Jul 21, Maximum Temp= 36.40°C, Deviation=| 7.772|°C + Typical Summer Week (nearest average temperature for summer) + Typical Week Period selected: Sep 9:Sep 15, Average Temp= 27.21°C, Deviation=| 0.141|°C + + - Winter is Jan:Mar + Extreme Winter Week (nearest minimum temperature for winter) + Extreme Cold Week Period selected: Jan 22:Jan 28, Minimum Temp= -3.40°C, Deviation=|14.735|°C + Typical Winter Week (nearest average temperature for winter) + Typical Week Period selected: Mar 5:Mar 11, Average Temp= 15.38°C, Deviation=| 0.666|°C + + - Autumn is Oct:Dec + Typical Autumn Week (nearest average temperature for autumn) + Typical Week Period selected: Nov 26:Dec 2, Average Temp= 19.61°C, Deviation=| 1.198|°C + + - Spring is Apr:Jun + Typical Spring Week (nearest average temperature for spring) + Typical Week Period selected: Apr 22:Apr 28, Average Temp= 25.26°C, Deviation=| 1.062|°C diff --git a/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3-cache.csv b/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3-cache.csv new file mode 100644 index 00000000..05b9029e --- /dev/null +++ b/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3-cache.csv @@ -0,0 +1,35 @@ +WeatherHeader.City,String,Atlanta Hartsfield Intl Ap +WeatherHeader.State,String,GA +WeatherHeader.Country,String,USA +WeatherHeader.DataSource,String,TMY3 +WeatherHeader.Station,String,722190 +WeatherHeader.Latitude,Float,33.63 +WeatherHeader.Longitude,Float,-84.43 +WeatherHeader.Timezone,Float,-5.0 +WeatherHeader.Altitude,Float,1010.498687664042 +WeatherHeader.LocalPressure,Float,0.9634965693888954 +WeatherHeader.RecordsPerHour,Integer,1 +WeatherData.AnnualAvgDrybulb,Float,61.975219178082185 +WeatherData.AnnualMinDrybulb,Float,8.959999999999997 +WeatherData.AnnualMaxDrybulb,Float,98.06 +WeatherData.CDD50F,Float,5167.455 +WeatherData.CDD65F,Float,1722.3450000000003 +WeatherData.HDD50F,Float,796.5 +WeatherData.HDD65F,Float,2826.39 +WeatherData.AnnualAvgWindspeed,Float,4.038276255707763 +WeatherData.MonthlyAvgDrybulbs,Array,39.14217741935484,46.293125,56.77129032258065,62.9885,69.51064516129033,76.63525,78.91685483870967,79.78104838709677,72.541,60.83895161290323,53.48325,45.855403225806455 +WeatherData.GroundMonthlyTemps,Array,54.677026693263485,51.56886666200381,51.31995406017552,52.794934810798,58.716160600660885,64.60980280887833,69.7192756221221,72.95600098438916,73.23097858198247,70.59844651906309,65.61926826240398,59.90641899190797 +WeatherData.WSF,Float,0.46 +WeatherData.MonthlyAvgDailyHighDrybulbs,Array,47.230322580645165,57.83642857142857,66.85032258064516,74.78,80.28064516129032,88.196,89.07741935483871,89.20516129032258,81.518,71.15870967741935,65.69,55.80064516129032 +WeatherData.MonthlyAvgDailyLowDrybulbs,Array,31.065161290322582,35.863571428571426,46.69032258064516,51.236000000000004,59.22064516129032,65.924,69.73612903225806,72.19806451612902,64.46600000000001,50.88258064516129,42.818,37.09806451612903 +WeatherDesign.HeatingDrybulb,Float,25.7 +WeatherDesign.HeatingWindspeed,Float,10.7 +WeatherDesign.CoolingDrybulb,Float,91.4 +WeatherDesign.CoolingWetbulb,Float,73.94 +WeatherDesign.CoolingHumidityRatio,Float,0.014532714185157248 +WeatherDesign.CoolingWindspeed,Float,4.0 +WeatherDesign.DailyTemperatureRange,Float,17.1 +WeatherDesign.DehumidDrybulb,Float,79.34 +WeatherDesign.DehumidHumidityRatio,Float,0.017860837341798077 +WeatherDesign.CoolingDirectNormal,Float,908.0 +WeatherDesign.CoolingDiffuseHorizontal,Float,120.0 diff --git a/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3.ddy b/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3.ddy new file mode 100644 index 00000000..1ccaf85a --- /dev/null +++ b/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3.ddy @@ -0,0 +1,536 @@ + ! The following Location and Design Day data are produced as possible from the indicated data source. + ! Wind Speeds follow the indicated design conditions rather than traditional values (6.7 m/s heating, 3.35 m/s cooling) + ! No special attempts at re-creating or determining missing data parts (e.g. Wind speed or direction) + ! are done. Therefore, you should look at the data and fill in any incorrect values as you desire. + + Site:Location, + Atlanta Hartsfield Intl Ap_GA_USA Design_Conditions, !- Location Name + 33.63, !- Latitude {N+ S-} + -84.43, !- Longitude {W- E+} + -5.00, !- Time Zone Relative to GMT {GMT+/-} + 308.00; !- Elevation {m} + + ! WMO=722190 Time Zone=NAE: (GMT-05:00) Eastern Time (US & Canada) + ! Data Source=ASHRAE 2009 Annual Design Conditions + RunPeriodControl:DaylightSavingTime, + 2nd Sunday in March, !- StartDate + 2nd Sunday in November; !- EndDate + + ! Using Design Conditions from "Climate Design Data 2009 ASHRAE Handbook" + ! Atlanta Hartsfield Intl Ap_GA_USA Extreme Annual Wind Speeds, 1%=9.8m/s, 2.5%=8.6m/s, 5%=7.7m/s + ! Atlanta Hartsfield Intl Ap_GA_USA Extreme Annual Temperatures, Max Drybulb=-11.2°C Min Drybulb=35.9°C + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Heating Design Conditions Wind Speed=5.3m/s Wind Dir=320 + ! Coldest Month=JAN + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Heating 99.6%, MaxDB=-6.3°C + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Htg 99.6% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + -6.3, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + -6.3, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 5.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 320, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Heating 99%, MaxDB=-3.5°C + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Htg 99% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + -3.5, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + -3.5, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 5.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 320, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Humidification 99.6% Design Conditions DP=>MCDB, DP=-15.8°C + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Hum_n 99.6% Condns DP=>MCDB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + -2.6, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + -15.8, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 5.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 320, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Humidification 99% Design Conditions DP=>MCDB, DP=-12.9°C + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Hum_n 99% Condns DP=>MCDB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 0.1, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + -12.9, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 5.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 320, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Heating Wind 99.6% Design Conditions WS=>MCDB, WS=11.4m/s + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Htg Wind 99.6% Condns WS=>MCDB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 3, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 3, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 11.4, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 320, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Heating Wind 99% Design Conditions WS=>MCDB, WS=10.7m/s + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Htg Wind 99% Condns WS=>MCDB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay,!- Day Type + 3.4, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 3.4, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 10.7, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph) + 320, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + 0.00; !- Clearness {0.0 to 1.1} + + ! Atlanta Hartsfield Intl Ap Annual Cooling Design Conditions Wind Speed=4m/s Wind Dir=300 + ! Hottest Month=JUL + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (DB=>MWB) .4%, MaxDB=34.4°C MWB=23.5°C + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 34.4, !- Maximum Dry-Bulb Temperature {C} + 9.5, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 23.5, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 300, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (DB=>MWB) 1%, MaxDB=33°C MWB=23.3°C + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Clg 1% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 33, !- Maximum Dry-Bulb Temperature {C} + 9.5, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 23.3, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 300, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (DB=>MWB) 2%, MaxDB=31.9°C MWB=23°C + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Clg 2% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 31.9, !- Maximum Dry-Bulb Temperature {C} + 9.5, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 23, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 300, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (WB=>MDB) .4%, MDB=31.2°C WB=25.1°C + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Clg .4% Condns WB=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 31.2, !- Maximum Dry-Bulb Temperature {C} + 9.5, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 25.1, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 300, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (WB=>MDB) 1%, MDB=30.3°C WB=24.5°C + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Clg 1% Condns WB=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 30.3, !- Maximum Dry-Bulb Temperature {C} + 9.5, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 24.5, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 300, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (WB=>MDB) 2%, MDB=29.4°C WB=24°C + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Clg 2% Condns WB=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 29.4, !- Maximum Dry-Bulb Temperature {C} + 9.5, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Wetbulb, !- Humidity Condition Type + 24, !- Wetbulb at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 300, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (DP=>MDB) .4%, MDB=27.3°C DP=23.4°C HR=0.0190 + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Clg .4% Condns DP=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 27.3, !- Maximum Dry-Bulb Temperature {C} + 9.5, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + 23.4, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 300, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (DP=>MDB) 1%, MDB=26.7°C DP=22.9°C HR=0.0183 + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Clg 1% Condns DP=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 26.7, !- Maximum Dry-Bulb Temperature {C} + 9.5, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + 22.9, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 300, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (DP=>MDB) 2%, MDB=26.3°C DP=22.5°C HR=0.0178 + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Clg 2% Condns DP=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 26.3, !- Maximum Dry-Bulb Temperature {C} + 9.5, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Dewpoint, !- Humidity Condition Type + 22.5, !- Dewpoint at Maximum Dry-Bulb {C} + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 300, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (Enthalpy=>MDB) .4%, MDB=31.3°C Enthalpy=77900.0J/kg + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Clg .4% Condns Enth=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 31.3, !- Maximum Dry-Bulb Temperature {C} + 9.5, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Enthalpy, !- Humidity Condition Type + , !- Wetbulb or Dewpoint at Maximum Dry-Bulb + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + 77900.0, !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 300, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (Enthalpy=>MDB) 1%, MDB=30.4°C Enthalpy=75600.0J/kg + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Clg 1% Condns Enth=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 30.4, !- Maximum Dry-Bulb Temperature {C} + 9.5, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Enthalpy, !- Humidity Condition Type + , !- Wetbulb or Dewpoint at Maximum Dry-Bulb + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + 75600.0, !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 300, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + + ! Atlanta Hartsfield Intl Ap_GA_USA Annual Cooling (Enthalpy=>MDB) 2%, MDB=29.7°C Enthalpy=73500.0J/kg + SizingPeriod:DesignDay, + Atlanta Hartsfield Intl Ap Ann Clg 2% Condns Enth=>MDB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay,!- Day Type + 29.7, !- Maximum Dry-Bulb Temperature {C} + 9.5, !- Daily Dry-Bulb Temperature Range {C} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Schedule Name + Enthalpy, !- Humidity Condition Type + , !- Wetbulb or Dewpoint at Maximum Dry-Bulb + , !- Humidity Indicating Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + 73500.0, !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 97679., !- Barometric Pressure {Pa} + 4, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph) + 300, !- Wind Direction {Degrees; N=0, S=180} + No, !- Rain {Yes/No} + No, !- Snow on ground {Yes/No} + No, !- Daylight Savings Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.556, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) + 1.779; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) + diff --git a/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3.epw b/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3.epw new file mode 100644 index 00000000..c64fc026 --- /dev/null +++ b/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3.epw @@ -0,0 +1,8768 @@ +LOCATION,Atlanta Hartsfield Intl Ap,GA,USA,TMY3,722190,33.63,-84.43,-5.0,308.0 +DESIGN CONDITIONS,1,Climate Design Data 2009 ASHRAE Handbook,,Heating,1,-6.3,-3.5,-15.8,1,-2.6,-12.9,1.3,0.1,11.4,3,10.7,3.4,5.3,320,Cooling,7,9.5,34.4,23.5,33,23.3,31.9,23,25.1,31.2,24.5,30.3,24,29.4,4,300,23.4,19,27.3,22.9,18.3,26.7,22.5,17.8,26.3,77.9,31.3,75.6,30.4,73.5,29.7,813,Extremes,9.8,8.6,7.7,28,-11.2,35.9,4.2,1.8,-14.2,37.2,-16.7,38.2,-19,39.2,-22.1,40.6 +TYPICAL/EXTREME PERIODS,6,Summer - Week Nearest Max Temperature For Period,Extreme,7/ 6,7/12,Summer - Week Nearest Average Temperature For Period,Typical,8/24,8/30,Winter - Week Nearest Min Temperature For Period,Extreme,1/ 6,1/12,Winter - Week Nearest Average Temperature For Period,Typical,1/27,2/ 2,Autumn - Week Nearest Average Temperature For Period,Typical,9/29,10/ 5,Spring - Week Nearest Average Temperature For Period,Typical,4/26,5/ 2 +GROUND TEMPERATURES,3,.5,,,,10.83,7.34,6.39,7.21,11.92,17.20,22.17,25.77,26.82,25.13,21.06,15.93,2,,,,13.97,10.70,9.14,9.08,11.57,15.18,19.07,22.40,24.12,23.79,21.50,17.97,4,,,,16.02,13.48,11.92,11.44,12.36,14.46,17.07,19.63,21.36,21.77,20.78,18.72 +HOLIDAYS/DAYLIGHT SAVINGS,No,0,0,0 +COMMENTS 1,Custom/User Format -- WMO#722190; NREL TMY Data Set (2008); Period of Record 1973-2005 (Generally) +COMMENTS 2, -- Ground temps produced with a standard soil diffusivity of 2.3225760E-03 {m**2/day} +DATA PERIODS,1,1,Data,Sunday, 1/ 1,12/31 +1988,1,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,98800,0,0,351,0,0,0,0,0,0,0,190,4.1,10,10,24.1,910,9,999999999,170,0.0520,0,88,999.000,999.0,99.0 +1988,1,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.8,72,98800,0,0,354,0,0,0,0,0,0,0,200,3.6,10,10,19.3,910,9,999999999,170,0.0520,0,88,999.000,999.0,99.0 +1988,1,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,98800,0,0,351,0,0,0,0,0,0,0,210,3.6,10,10,16.1,850,9,999999999,170,0.0520,0,88,999.000,999.0,99.0 +1988,1,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,98800,0,0,350,0,0,0,0,0,0,0,190,2.6,10,10,19.3,1160,9,999999999,179,0.0520,0,88,999.000,999.0,99.0 +1988,1,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,98700,0,0,350,0,0,0,0,0,0,0,190,3.1,10,10,16.1,1010,9,999999999,179,0.0520,0,88,999.000,999.0,99.0 +1988,1,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,98700,0,0,347,0,0,0,0,0,0,0,190,2.6,10,10,16.1,1070,9,999999999,189,0.0520,0,88,999.000,999.0,99.0 +1988,1,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,98700,0,0,347,0,0,0,0,0,0,0,200,3.1,10,10,16.1,1070,9,999999999,189,0.0520,0,88,999.000,999.0,99.0 +1988,1,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,98800,9,389,347,4,0,4,0,0,0,0,210,3.6,10,10,8.0,1070,9,999999999,189,0.0300,0,88,999.000,999.0,99.0 +1988,1,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,98800,191,1415,351,39,2,38,4331,11,4330,1337,210,3.6,10,10,4.0,820,9,999999999,189,0.0300,0,88,999.000,999.0,99.0 +1988,1,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,98800,421,1415,354,140,4,139,15428,272,15346,4563,180,3.1,10,10,11.3,730,9,999999999,200,0.0300,0,88,999.000,999.0,99.0 +1988,1,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,98800,603,1415,358,132,4,130,15196,281,15076,5358,190,3.6,10,10,8.0,730,9,999999999,209,0.0300,0,88,999.000,999.0,99.0 +1988,1,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,98800,723,1415,364,260,3,259,29099,279,28956,9440,240,4.1,10,10,8.0,730,9,999999999,220,0.0300,0,88,999.000,999.0,99.0 +1988,1,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,98700,774,1415,365,171,1,170,19880,78,19837,7432,250,3.1,10,10,2.4,210,9,999999999,229,0.0300,0,88,999.000,999.0,99.0 +1988,1,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,97,98700,751,1415,359,157,0,156,18235,0,18235,6852,290,3.6,10,10,1.6,90,9,999999999,220,0.0300,0,88,999.000,999.0,99.0 +1988,1,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,97,98600,656,1415,359,157,2,156,18029,151,17959,6399,300,3.1,10,10,1.2,60,9,999999999,220,0.0300,0,88,999.000,999.0,99.0 +1988,1,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,98700,496,1415,335,112,1,112,12818,64,12795,4360,320,6.7,10,10,4.8,90,9,999999999,170,0.0300,0,88,999.000,999.0,99.0 +1988,1,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,98700,281,1415,326,55,0,55,6260,0,6260,2021,320,6.2,10,10,6.4,120,9,999999999,160,0.0300,0,88,999.000,999.0,99.0 +1988,1,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,98800,51,908,323,13,0,13,1507,0,1507,470,320,6.2,10,10,6.4,90,9,999999999,150,0.0300,0,88,999.000,999.0,99.0 +1988,1,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,98800,0,0,322,0,0,0,0,0,0,0,330,6.2,10,10,6.4,90,9,999999999,150,0.0520,0,88,999.000,999.0,99.0 +1988,1,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,98800,0,0,322,0,0,0,0,0,0,0,340,5.7,10,10,4.8,90,9,999999999,150,0.0520,0,88,999.000,999.0,99.0 +1988,1,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,98800,0,0,319,0,0,0,0,0,0,0,340,5.7,10,10,12.9,1370,9,999999999,139,0.0520,0,88,999.000,999.0,99.0 +1988,1,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,98800,0,0,316,0,0,0,0,0,0,0,330,5.7,10,10,11.3,150,9,999999999,139,0.0520,0,88,999.000,999.0,99.0 +1988,1,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,98800,0,0,312,0,0,0,0,0,0,0,330,5.2,10,10,16.1,850,9,999999999,129,0.0520,0,88,999.000,999.0,99.0 +1988,1,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,98900,0,0,309,0,0,0,0,0,0,0,320,4.6,10,10,12.9,910,9,999999999,129,0.0520,0,88,999.000,999.0,99.0 +1988,1,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,98900,0,0,306,0,0,0,0,0,0,0,340,3.6,10,10,12.9,910,9,999999999,129,0.0520,0,88,999.000,999.0,99.0 +1988,1,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,98900,0,0,306,0,0,0,0,0,0,0,320,5.2,10,10,12.9,2740,9,999999999,129,0.0520,0,88,999.000,999.0,99.0 +1988,1,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,99000,0,0,297,0,0,0,0,0,0,0,310,4.6,10,9,12.9,2740,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1988,1,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,98900,0,0,303,0,0,0,0,0,0,0,340,3.1,10,10,12.9,370,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1988,1,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,98900,0,0,303,0,0,0,0,0,0,0,340,4.1,10,10,12.9,370,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1988,1,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,98900,0,0,303,0,0,0,0,0,0,0,350,3.1,10,10,12.9,370,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1988,1,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,99000,0,0,302,0,0,0,0,0,0,0,350,3.6,10,10,11.3,270,9,999999999,110,0.0520,0,88,999.000,999.0,99.0 +1988,1,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,99100,9,389,303,6,0,6,0,0,0,0,340,4.1,10,10,11.3,240,9,999999999,120,0.0530,0,88,999.000,999.0,99.0 +1988,1,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,99200,191,1415,306,54,0,54,5900,0,5900,1700,340,4.1,10,10,12.9,210,9,999999999,120,0.0530,0,88,999.000,999.0,99.0 +1988,1,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,99200,421,1415,314,137,1,137,15100,100,15100,4530,20,4.1,10,10,12.9,340,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 +1988,1,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,99200,604,1415,320,201,0,200,22300,0,22300,7160,80,7.2,10,10,24.1,760,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 +1988,1,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.8,74,99200,725,1415,321,280,2,279,31100,200,31000,9820,90,5.2,10,10,24.1,760,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 +1988,1,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.0,58,99100,775,1415,301,527,563,218,55000,57000,23600,4920,50,5.7,10,7,24.1,1830,9,999999999,110,0.0530,0,88,999.000,999.0,99.0 +1988,1,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.6,56,99100,753,1415,298,497,590,183,52700,59600,20800,4000,50,5.2,10,4,24.1,77777,9,999999999,110,0.0530,0,88,999.000,999.0,99.0 +1988,1,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.6,58,99100,658,1415,315,242,67,211,26600,6600,23500,6060,120,4.1,10,9,24.1,850,9,999999999,110,0.0530,0,88,999.000,999.0,99.0 +1988,1,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.6,58,99000,499,1415,324,90,9,87,10500,500,10300,3600,60,5.2,10,10,24.1,850,9,999999999,110,0.0530,0,88,999.000,999.0,99.0 +1988,1,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.1,61,99100,285,1415,324,87,4,86,9500,200,9500,2740,110,5.2,10,10,24.1,850,9,999999999,110,0.0530,0,88,999.000,999.0,99.0 +1988,1,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.1,66,99100,53,932,319,17,0,17,1900,0,1900,590,70,4.1,10,10,16.1,850,9,999999999,110,0.0530,0,88,999.000,999.0,99.0 +1988,1,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.1,66,99000,0,0,304,0,0,0,0,0,0,0,80,3.6,8,8,16.1,2440,9,999999999,110,0.0520,0,88,999.000,999.0,99.0 +1988,1,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.1,68,99100,0,0,317,0,0,0,0,0,0,0,90,5.2,10,10,16.1,730,9,999999999,110,0.0520,0,88,999.000,999.0,99.0 +1988,1,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.6,68,99100,0,0,314,0,0,0,0,0,0,0,100,6.7,10,10,16.1,640,9,999999999,110,0.0520,0,88,999.000,999.0,99.0 +1988,1,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.0,65,99100,0,0,313,0,0,0,0,0,0,0,70,5.7,10,10,16.1,640,9,999999999,110,0.0520,0,88,999.000,999.0,99.0 +1988,1,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,99000,0,0,311,0,0,0,0,0,0,0,70,6.7,10,10,16.1,640,9,999999999,110,0.0520,0,88,999.000,999.0,99.0 +1988,1,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,99000,0,0,308,0,0,0,0,0,0,0,60,6.7,10,10,16.1,490,9,999999999,110,0.0520,0,88,999.000,999.0,99.0 +1988,1,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,99000,0,0,308,0,0,0,0,0,0,0,80,6.2,10,10,16.1,490,9,999999999,110,0.0520,0,88,999.000,999.0,99.0 +1988,1,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.6,73,98900,0,0,309,0,0,0,0,0,0,0,80,5.7,10,10,16.1,490,9,999999999,110,0.0520,0,88,999.000,999.0,99.0 +1988,1,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,98900,0,0,307,0,0,0,0,0,0,0,90,5.2,10,10,12.9,400,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1988,1,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,98900,0,0,303,0,0,0,0,0,0,0,70,5.7,10,10,12.9,370,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1988,1,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,98900,0,0,303,0,0,0,0,0,0,0,70,4.6,10,10,11.3,370,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1988,1,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,93,98800,0,0,300,0,0,0,0,0,0,0,50,4.6,10,10,11.3,310,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1988,1,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,93,98900,0,0,300,0,0,0,0,0,0,0,70,5.7,10,10,11.3,210,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1988,1,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,93,98800,8,366,300,2,0,2,0,0,0,0,80,5.7,10,10,6.4,210,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1988,1,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,98800,190,1415,294,25,2,25,3000,0,3000,950,70,6.7,10,10,6.4,180,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1988,1,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,98800,421,1415,294,77,7,75,8900,300,8800,2990,60,9.3,10,10,6.4,180,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1988,1,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,98800,604,1415,295,106,4,104,12400,300,12300,4500,70,6.7,10,10,8.0,180,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1988,1,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,93,98700,726,1415,297,142,2,141,16700,100,16600,6230,70,5.2,10,10,9.7,120,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1988,1,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,98600,777,1415,298,159,1,159,18700,100,18700,7070,90,7.2,10,10,9.7,120,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1988,1,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,93,98400,755,1415,300,159,1,159,18600,100,18600,6970,80,5.7,10,10,9.7,120,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1988,1,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,98400,661,1415,301,149,2,148,17200,100,17100,6180,80,5.7,10,10,4.8,90,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1988,1,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,98400,502,1415,301,179,0,179,19700,0,19700,5890,80,4.1,10,10,8.0,120,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1988,1,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,98400,288,1415,301,56,1,56,6400,0,6400,2070,60,3.1,10,10,1.6,90,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1988,1,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,98300,55,955,301,13,0,13,1500,0,1500,470,80,5.7,10,10,1.6,90,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1988,1,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,98300,0,0,301,0,0,0,0,0,0,0,80,4.1,10,10,3.2,120,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1988,1,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,98500,0,0,301,0,0,0,0,0,0,0,300,4.6,10,10,3.2,120,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1988,1,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,98400,0,0,304,0,0,0,0,0,0,0,350,4.6,10,10,4.8,150,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1988,1,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,98400,0,0,306,0,0,0,0,0,0,0,350,4.6,10,10,4.8,150,9,999999999,129,0.0520,0,88,999.000,999.0,99.0 +1988,1,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,98300,0,0,307,0,0,0,0,0,0,0,110,4.1,10,10,6.4,150,9,999999999,129,0.0520,0,88,999.000,999.0,99.0 +1988,1,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,98300,0,0,307,0,0,0,0,0,0,0,0,0.0,10,10,8.0,150,9,999999999,129,0.0520,0,88,999.000,999.0,99.0 +1988,1,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,98300,0,0,307,0,0,0,0,0,0,0,300,2.6,10,10,4.0,60,9,999999999,129,0.0510,0,88,999.000,999.0,99.0 +1988,1,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,98300,0,0,308,0,0,0,0,0,0,0,300,5.2,10,10,4.0,60,9,999999999,129,0.0510,0,88,999.000,999.0,99.0 +1988,1,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,98300,0,0,308,0,0,0,0,0,0,0,300,5.2,10,10,4.0,60,9,999999999,129,0.0510,0,88,999.000,999.0,99.0 +1988,1,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.9,100,98300,0,0,308,0,0,0,0,0,0,0,300,4.6,10,10,1.2,60,9,999999999,129,0.0510,0,88,999.000,999.0,99.0 +1988,1,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,98300,0,0,307,0,0,0,0,0,0,0,290,6.2,10,10,4.0,90,9,999999999,129,0.0510,0,88,999.000,999.0,99.0 +1988,1,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.8,93,98400,0,0,306,0,0,0,0,0,0,0,310,6.2,10,10,9.7,180,9,999999999,129,0.0510,0,88,999.000,999.0,99.0 +1988,1,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,98500,0,0,306,0,0,0,0,0,0,0,330,4.6,10,10,11.3,520,9,999999999,120,0.0510,0,88,999.000,999.0,99.0 +1988,1,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,98600,8,366,305,5,0,5,0,0,0,0,330,5.2,10,10,24.1,490,9,999999999,110,0.0530,0,88,999.000,999.0,99.0 +1988,1,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.0,79,98700,190,1415,301,57,1,57,6200,0,6200,1750,300,7.2,10,10,24.1,520,9,999999999,110,0.0530,0,88,999.000,999.0,99.0 +1988,1,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,0.0,76,98800,421,1415,279,223,424,96,23400,37400,12200,1790,300,5.2,5,5,24.1,77777,9,999999999,110,0.0530,0,88,999.000,999.0,99.0 +1988,1,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.1,68,98800,605,1415,277,361,567,117,37200,54100,14000,2290,310,6.7,4,4,24.1,77777,9,999999999,100,0.0530,0,88,999.000,999.0,99.0 +1988,1,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.7,62,98900,727,1415,279,507,727,132,52900,71600,15900,2800,310,7.2,5,4,24.1,77777,9,999999999,100,0.0530,0,88,999.000,999.0,99.0 +1988,1,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,98800,779,1415,284,605,794,167,62500,78200,19300,3580,300,8.2,5,5,24.1,77777,9,999999999,100,0.0530,0,88,999.000,999.0,99.0 +1988,1,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.7,56,98700,758,1415,286,456,518,178,48400,52400,20200,3890,330,7.7,5,4,24.1,77777,9,999999999,100,0.0530,0,88,999.000,999.0,99.0 +1988,1,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.2,54,98700,664,1415,286,430,583,157,45600,57800,18300,3230,290,7.2,9,4,24.1,77777,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1988,1,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-2.8,53,98700,505,1415,290,232,290,129,24900,27800,14900,2610,320,7.2,9,7,24.1,7620,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1988,1,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-3.3,53,98800,292,1415,288,89,77,74,9800,6100,8500,1600,320,6.2,9,7,24.1,7620,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1988,1,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-3.3,55,98800,57,955,296,26,10,25,2800,600,2800,580,320,5.7,9,9,24.1,7620,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1988,1,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.8,60,98900,0,0,280,0,0,0,0,0,0,0,300,5.7,8,6,24.1,7620,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,1,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.3,62,98900,0,0,269,0,0,0,0,0,0,0,310,6.7,8,3,24.1,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,1,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-5.0,57,98900,0,0,265,0,0,0,0,0,0,0,320,6.2,9,3,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-4.4,62,99000,0,0,263,0,0,0,0,0,0,0,330,5.2,9,3,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-4.4,64,99000,0,0,261,0,0,0,0,0,0,0,310,4.6,8,3,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-7.8,52,99000,0,0,262,0,0,0,0,0,0,0,320,4.6,8,6,24.1,7620,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-6.7,59,99100,0,0,264,0,0,0,0,0,0,0,330,7.2,9,7,24.1,3660,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-8.3,56,99100,0,0,251,0,0,0,0,0,0,0,330,7.7,10,4,24.1,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-9.4,54,99100,0,0,246,0,0,0,0,0,0,0,340,6.7,9,3,24.1,77777,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1988,1,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-10.6,51,99100,0,0,241,0,0,0,0,0,0,0,330,6.2,10,2,24.1,77777,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1988,1,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-12.2,47,99100,0,0,242,0,0,0,0,0,0,0,330,8.2,9,4,24.1,77777,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-12.2,47,99100,0,0,240,0,0,0,0,0,0,0,340,6.7,10,3,24.1,77777,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-12.8,47,99200,0,0,239,0,0,0,0,0,0,0,330,6.2,10,4,24.1,77777,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-15.0,39,99300,8,366,237,7,9,6,0,0,0,0,330,7.2,9,4,40.2,77777,9,999999999,50,0.0490,0,88,999.000,999.0,99.0 +1988,1,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-14.4,41,99400,190,1415,241,78,145,59,8100,8500,7000,1150,310,7.2,9,6,40.2,4570,9,999999999,50,0.0490,0,88,999.000,999.0,99.0 +1988,1,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-16.1,34,99500,422,1415,234,238,510,86,24400,44500,11100,1550,330,6.2,8,2,40.2,77777,9,999999999,50,0.0490,0,88,999.000,999.0,99.0 +1988,1,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-17.8,27,99500,606,1415,228,434,858,64,45300,82000,10100,1350,340,8.2,2,0,40.2,77777,9,999999999,40,0.0490,0,88,999.000,999.0,99.0 +1988,1,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-17.8,24,99500,728,1415,234,547,927,68,57300,90600,10500,1570,320,6.2,1,0,40.2,77777,9,999999999,40,0.0490,0,88,999.000,999.0,99.0 +1988,1,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-17.8,22,99400,781,1415,238,588,934,71,61600,91800,10700,1670,320,7.7,1,0,40.2,77777,9,999999999,40,0.0490,0,88,999.000,999.0,99.0 +1988,1,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-18.3,20,99300,760,1415,239,574,946,65,60400,92900,10300,1590,320,5.2,0,0,40.2,77777,9,999999999,40,0.0490,0,88,999.000,999.0,99.0 +1988,1,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-18.3,20,99300,667,1415,241,486,906,59,51300,87800,9700,1410,320,6.2,0,0,40.2,77777,9,999999999,40,0.0490,0,88,999.000,999.0,99.0 +1988,1,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-18.3,20,99300,508,1415,252,263,304,155,27900,29100,17400,3260,310,6.2,5,4,40.2,77777,9,999999999,40,0.0490,0,88,999.000,999.0,99.0 +1988,1,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-17.2,24,99300,295,1415,251,128,240,78,13500,18400,9700,1500,320,6.7,7,5,24.1,7620,9,999999999,40,0.0490,0,88,999.000,999.0,99.0 +1988,1,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-18.3,24,99300,60,979,239,33,143,19,3000,5700,2600,330,320,4.1,3,2,24.1,77777,9,999999999,40,0.0490,0,88,999.000,999.0,99.0 +1988,1,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-16.7,29,99300,0,0,250,0,0,0,0,0,0,0,320,3.6,8,7,24.1,2130,9,999999999,40,0.0510,0,88,999.000,999.0,99.0 +1988,1,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-17.2,29,99300,0,0,239,0,0,0,0,0,0,0,310,4.6,4,3,24.1,77777,9,999999999,40,0.0510,0,88,999.000,999.0,99.0 +1988,1,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-17.2,30,99300,0,0,255,0,0,0,0,0,0,0,310,5.7,9,9,24.1,2130,9,999999999,40,0.0510,0,88,999.000,999.0,99.0 +1988,1,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-16.1,34,99300,0,0,242,0,0,0,0,0,0,0,310,6.2,8,6,24.1,2130,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-15.6,37,99300,0,0,232,0,0,0,0,0,0,0,310,5.7,3,2,24.1,77777,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-15.6,39,99300,0,0,235,0,0,0,0,0,0,0,320,4.6,4,4,24.1,77777,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-15.6,37,99200,0,0,252,0,0,0,0,0,0,0,340,5.2,9,9,16.1,7620,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-15.6,39,99200,0,0,250,0,0,0,0,0,0,0,320,5.2,9,9,16.1,7620,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-15.6,39,99200,0,0,245,0,0,0,0,0,0,0,320,5.7,8,8,16.1,2130,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-14.4,42,99300,0,0,252,0,0,0,0,0,0,0,340,6.2,9,9,16.1,2130,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-15.0,42,99200,0,0,256,0,0,0,0,0,0,0,330,4.1,10,10,16.1,1830,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-15.0,44,99300,0,0,254,0,0,0,0,0,0,0,320,6.2,10,10,16.1,1830,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-15.6,42,99300,0,0,253,0,0,0,0,0,0,0,340,4.6,10,10,16.1,7620,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-16.7,38,99300,8,366,240,2,4,1,0,0,0,0,340,4.1,9,8,24.1,7620,9,999999999,40,0.0740,0,88,999.000,999.0,99.0 +1988,1,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-15.6,42,99300,189,1415,246,53,53,46,5800,3400,5300,970,310,3.6,10,9,40.2,3350,9,999999999,50,0.0740,0,88,999.000,999.0,99.0 +1988,1,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-16.1,39,99400,422,1415,248,158,172,106,16800,15500,12100,2080,320,4.6,10,9,40.2,3350,9,999999999,50,0.0740,0,88,999.000,999.0,99.0 +1988,1,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-16.7,35,99400,607,1415,249,232,59,207,25500,5800,23000,5690,340,3.6,10,9,40.2,3350,9,999999999,40,0.0740,0,88,999.000,999.0,99.0 +1988,1,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-16.1,34,99400,730,1415,254,278,20,268,31000,1900,30100,9680,300,4.1,10,9,40.2,3050,9,999999999,50,0.0740,0,88,999.000,999.0,99.0 +1988,1,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-16.1,33,99300,783,1415,263,182,10,176,21100,800,20700,7680,330,3.1,10,10,24.1,2440,9,999999999,50,0.0740,0,88,999.000,999.0,99.0 +1988,1,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-14.4,36,99200,763,1415,267,193,13,186,22300,1000,21700,7890,20,3.1,10,10,24.1,2440,9,999999999,50,0.0740,0,88,999.000,999.0,99.0 +1988,1,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-9.4,54,99100,671,1415,265,315,208,217,34300,21100,24200,5320,330,3.1,10,9,24.1,2440,9,999999999,60,0.0740,0,88,999.000,999.0,99.0 +1988,1,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-7.8,59,99100,512,1415,276,117,12,112,13300,800,13000,4430,310,2.6,10,10,19.3,7620,9,999999999,69,0.0740,0,88,999.000,999.0,99.0 +1988,1,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-7.8,59,99100,299,1415,276,81,0,81,9000,0,9000,2720,350,3.1,10,10,19.3,2740,9,999999999,69,0.0740,0,88,999.000,999.0,99.0 +1988,1,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-8.3,56,99100,62,1002,276,15,0,15,1700,0,1700,540,310,2.6,10,10,19.3,2740,9,999999999,69,0.0740,0,88,999.000,999.0,99.0 +1988,1,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-9.4,54,99100,0,0,272,0,0,0,0,0,0,0,340,3.1,10,10,19.3,2740,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1988,1,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-9.4,54,99200,0,0,250,0,0,0,0,0,0,0,360,2.6,8,5,19.3,7620,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1988,1,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-11.7,43,99100,0,0,244,0,0,0,0,0,0,0,20,3.1,7,2,19.3,77777,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1988,1,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-12.2,41,99100,0,0,258,0,0,0,0,0,0,0,30,3.1,10,8,19.3,2740,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-11.7,43,99000,0,0,272,0,0,0,0,0,0,0,70,4.1,10,10,19.3,2440,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1988,1,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-11.7,42,99000,0,0,274,0,0,0,0,0,0,0,90,6.2,10,10,19.3,2440,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1988,1,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-11.1,43,99000,0,0,275,0,0,0,0,0,0,0,70,7.2,10,10,16.1,1830,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1988,1,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-12.8,38,99000,0,0,273,0,0,0,0,0,0,0,70,6.2,10,10,16.1,1830,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-13.3,36,99000,0,0,273,0,0,0,0,0,0,0,80,7.7,10,10,16.1,1830,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-12.8,40,99000,0,0,271,0,0,0,0,0,0,0,80,6.2,10,10,16.1,1830,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-12.2,41,99000,0,0,272,0,0,0,0,0,0,0,60,10.3,10,10,16.1,820,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-12.8,41,99000,0,0,269,0,0,0,0,0,0,0,70,8.8,10,10,11.3,640,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-10.0,56,99000,0,0,267,0,0,0,0,0,0,0,60,7.7,10,10,8.0,730,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1988,1,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-7.8,72,99000,8,366,265,6,1,5,0,0,0,0,80,8.2,10,10,8.0,730,9,999999999,69,0.0300,0,88,999.000,999.0,99.0 +1988,1,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-6.1,85,99000,190,1415,265,33,2,32,3700,0,3700,1170,70,8.2,10,10,4.8,730,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1988,1,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-5.6,88,99000,423,1415,265,128,5,127,14300,300,14200,4350,70,10.8,10,10,2.4,670,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1988,1,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-5.0,92,99000,608,1415,266,197,5,194,21900,400,21800,7070,90,7.2,10,10,1.6,670,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1988,1,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-4.4,96,98800,732,1415,266,244,5,241,27400,400,27200,9140,90,9.3,10,10,1.6,610,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1988,1,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-4.4,92,98700,786,1415,269,260,3,258,29300,300,29200,10010,80,7.2,10,10,1.0,310,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1988,1,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-5.0,92,98500,766,1415,266,291,1,291,32500,100,32500,10490,70,8.2,10,10,1.0,310,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1988,1,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-5.0,92,98400,674,1415,266,245,1,244,27200,100,27100,8660,80,5.2,10,10,1.0,310,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1988,1,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-5.0,92,98500,516,1415,266,178,1,178,19700,100,19700,6000,60,8.2,10,10,1.6,310,9,999999999,80,0.0300,0,88,999.000,999.0,99.0 +1988,1,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-6.1,92,98500,303,1415,260,96,1,96,10500,0,10500,3020,80,8.8,10,10,1.6,240,9,999999999,69,0.0300,0,88,999.000,999.0,99.0 +1988,1,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-6.7,88,98400,65,1026,260,28,0,28,3100,0,3100,860,80,9.3,10,10,11.3,310,9,999999999,69,0.0300,0,88,999.000,999.0,99.0 +1988,1,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-7.8,85,98400,0,0,256,0,0,0,0,0,0,0,80,8.8,10,10,11.3,310,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-7.8,85,98500,0,0,256,0,0,0,0,0,0,0,60,5.7,10,10,8.0,270,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-7.8,88,98400,0,0,255,0,0,0,0,0,0,0,60,6.2,10,10,4.0,240,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-7.2,92,98400,0,0,255,0,0,0,0,0,0,0,60,5.7,10,10,4.8,180,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-7.2,92,98400,0,0,255,0,0,0,0,0,0,0,80,5.2,10,10,4.8,180,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-7.2,92,98300,0,0,255,0,0,0,0,0,0,0,70,4.6,10,10,6.4,150,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-7.2,92,98300,0,0,255,0,0,0,0,0,0,0,80,5.7,10,10,6.4,150,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-6.7,92,98200,0,0,257,0,0,0,0,0,0,0,80,5.7,10,10,6.4,120,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-6.7,92,98200,0,0,257,0,0,0,0,0,0,0,50,5.2,10,10,6.4,120,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-6.7,92,98200,0,0,257,0,0,0,0,0,0,0,50,3.1,10,10,4.0,120,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-5.6,100,98200,0,0,259,0,0,0,0,0,0,0,70,2.6,10,10,2.4,90,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-5.6,96,98200,0,0,261,0,0,0,0,0,0,0,50,2.6,10,10,1.6,60,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-5.6,96,98200,0,0,261,0,0,0,0,0,0,0,50,3.1,10,10,1.6,60,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-5.6,92,98200,8,365,263,9,0,9,0,0,0,0,50,3.1,10,10,1.6,60,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1988,1,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-5.0,96,98300,190,1415,264,80,0,80,8500,0,8500,2020,50,2.1,10,10,3.2,90,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1988,1,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-4.4,92,98300,423,1415,269,200,1,200,21400,100,21400,5240,330,2.1,10,10,3.2,90,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1988,1,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-4.4,89,98300,609,1415,271,267,1,267,29100,100,29100,8240,360,2.1,10,10,3.2,90,9,999999999,80,0.0230,0,88,999.000,999.0,99.0 +1988,1,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-3.9,89,98300,734,1415,274,344,1,343,37600,100,37500,10790,360,2.6,10,10,6.4,90,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1988,1,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-3.3,85,98200,788,1415,279,357,2,356,39300,200,39200,11760,310,2.6,10,10,4.8,150,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1988,1,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.8,85,98200,769,1415,281,338,1,338,37300,100,37200,11260,310,4.1,10,10,4.8,150,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1988,1,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.7,89,98100,677,1415,285,288,1,287,31600,100,31500,9370,340,3.6,10,10,6.4,270,9,999999999,100,0.0230,0,88,999.000,999.0,99.0 +1988,1,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-1.7,89,98200,519,1415,285,234,1,234,25300,100,25300,6740,320,4.6,10,10,9.7,270,9,999999999,100,0.0230,0,88,999.000,999.0,99.0 +1988,1,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-2.8,82,98300,306,1415,284,134,0,134,14300,0,14300,3480,320,4.6,10,10,9.7,400,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1988,1,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.2,89,98300,68,1049,282,35,0,35,3800,0,3800,980,320,4.6,10,10,9.7,340,9,999999999,89,0.0230,0,88,999.000,999.0,99.0 +1988,1,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.8,85,98300,0,0,281,0,0,0,0,0,0,0,340,4.6,10,10,9.7,340,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,1,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.8,85,98400,0,0,281,0,0,0,0,0,0,0,320,4.1,10,10,9.7,400,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,1,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.8,85,98400,0,0,281,0,0,0,0,0,0,0,320,3.6,10,10,9.7,310,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,1,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.8,85,98400,0,0,281,0,0,0,0,0,0,0,310,3.1,10,10,9.7,340,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,1,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.2,89,98400,0,0,282,0,0,0,0,0,0,0,330,3.1,10,10,9.7,370,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,1,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.8,85,98400,0,0,281,0,0,0,0,0,0,0,330,3.6,10,10,9.7,340,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,1,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.8,85,98400,0,0,281,0,0,0,0,0,0,0,300,4.6,10,10,8.0,370,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-3.3,85,98400,0,0,279,0,0,0,0,0,0,0,310,3.1,10,10,8.0,370,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-3.3,85,98300,0,0,279,0,0,0,0,0,0,0,320,4.6,10,10,8.0,340,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-3.3,89,98400,0,0,259,0,0,0,0,0,0,0,310,5.2,10,7,8.0,340,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-4.4,85,98400,0,0,256,0,0,0,0,0,0,0,300,5.7,10,7,8.0,310,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-3.9,89,98400,0,0,261,0,0,0,0,0,0,0,340,5.2,10,8,8.0,270,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-5.0,88,98400,0,0,255,0,0,0,0,0,0,0,330,5.2,10,8,8.0,270,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-5.6,85,98400,8,365,255,3,1,3,0,0,0,0,330,5.2,10,8,8.0,240,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-5.0,88,98600,190,1415,268,45,1,45,5000,0,5000,1510,300,3.1,10,10,8.0,270,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-5.0,85,98600,424,1415,270,119,10,116,13300,600,13100,4120,320,1.5,10,10,8.0,270,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-5.0,82,98600,611,1415,265,352,201,265,37400,19900,28800,6330,330,2.6,10,9,8.0,6100,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-5.0,78,98600,736,1415,267,375,101,322,41000,10300,35600,8840,350,2.1,10,9,8.0,6100,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-4.4,75,98500,791,1415,272,524,309,351,55900,31700,38100,9170,10,3.1,10,9,9.7,6100,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-4.4,70,98400,772,1415,271,335,94,284,36800,9500,31600,8410,330,2.1,9,8,11.3,6100,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-3.9,70,98400,681,1415,266,466,463,244,49100,47500,26200,5710,330,2.6,7,6,11.3,6100,9,999999999,89,0.0520,0,88,999.000,999.0,99.0 +1988,1,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-5.0,62,98400,523,1415,275,349,341,223,35900,32800,23700,5140,340,2.1,9,8,11.3,2740,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-4.4,64,98400,310,1415,271,134,216,87,14100,17000,10400,1700,350,2.1,8,7,11.3,2740,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-3.9,70,98400,70,1073,273,27,5,27,3000,0,3000,850,310,2.6,8,8,11.3,2440,9,999999999,89,0.0520,0,88,999.000,999.0,99.0 +1988,1,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-3.3,76,98500,0,0,286,0,0,0,0,0,0,0,320,3.6,10,10,11.3,2440,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-3.9,79,98500,0,0,280,0,0,0,0,0,0,0,330,2.6,10,10,11.3,2440,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-4.4,75,98600,0,0,280,0,0,0,0,0,0,0,320,3.6,10,10,11.3,2440,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-3.9,82,98600,0,0,278,0,0,0,0,0,0,0,320,2.6,10,10,11.3,2440,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-3.9,85,98600,0,0,276,0,0,0,0,0,0,0,320,3.6,10,10,9.7,2440,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-3.9,85,98700,0,0,276,0,0,0,0,0,0,0,340,3.6,10,10,9.7,2440,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-3.9,89,98700,0,0,274,0,0,0,0,0,0,0,300,4.1,10,10,9.7,1830,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-4.4,85,98600,0,0,273,0,0,0,0,0,0,0,360,2.6,10,10,9.7,1830,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-4.4,85,98600,0,0,273,0,0,0,0,0,0,0,310,2.6,10,10,9.7,1830,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-4.4,89,98600,0,0,251,0,0,0,0,0,0,0,320,3.1,6,6,9.7,1830,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-5.0,88,98600,0,0,240,0,0,0,0,0,0,0,330,3.6,2,2,9.7,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-5.0,96,98600,0,0,264,0,0,0,0,0,0,0,330,3.1,10,10,2.4,0,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-4.4,100,98800,0,0,264,0,0,0,0,0,0,0,330,3.6,10,10,0.4,30,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-5.0,100,98800,8,365,261,3,1,3,0,0,0,0,320,3.6,10,10,0.4,0,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1988,1,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-4.4,100,98900,191,1415,264,43,0,43,4800,0,4800,1460,320,2.6,10,10,0.2,0,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1988,1,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-3.9,96,99000,425,1415,269,134,10,131,14800,700,14600,4440,10,2.1,10,10,0.2,0,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1988,1,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-3.3,92,99000,612,1415,274,205,3,204,22900,300,22800,7310,10,2.6,10,10,0.4,90,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1988,1,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-2.8,76,98900,738,1415,267,516,531,238,52900,53300,25000,5320,10,2.1,6,6,3.2,240,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1988,1,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.8,67,98900,794,1415,256,603,921,86,62900,90500,11900,1780,0,0.0,0,0,4.8,77777,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1988,1,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.2,65,98800,775,1415,261,571,888,84,59600,87100,11700,1730,30,2.6,0,0,4.8,77777,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1988,1,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,98800,684,1415,263,504,884,76,53400,86700,11300,1670,290,1.5,0,0,11.3,77777,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1988,1,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.2,60,98800,527,1415,265,363,811,62,38200,76200,9700,1290,0,0.0,0,0,11.3,77777,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1988,1,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,98900,314,1415,263,184,643,43,19100,52800,7300,830,310,2.1,0,0,11.3,77777,9,999999999,100,0.0530,0,88,999.000,999.0,99.0 +1988,1,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.2,70,98900,73,1073,257,41,210,20,3600,10100,2900,360,320,3.1,0,0,11.3,77777,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1988,1,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.2,76,98900,0,0,253,0,0,0,0,0,0,0,340,4.6,0,0,11.3,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-3.3,79,99000,0,0,245,0,0,0,0,0,0,0,350,5.2,0,0,11.3,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-3.9,82,99000,0,0,241,0,0,0,0,0,0,0,330,1.5,0,0,11.3,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-3.9,82,99000,0,0,241,0,0,0,0,0,0,0,350,2.6,0,0,11.3,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-3.3,92,99000,0,0,238,0,0,0,0,0,0,0,330,2.1,0,0,9.7,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-3.9,89,99000,0,0,237,0,0,0,0,0,0,0,320,3.1,0,0,8.0,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-3.9,92,99000,0,0,235,0,0,0,0,0,0,0,310,2.6,0,0,8.0,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-4.4,92,99000,0,0,233,0,0,0,0,0,0,0,330,2.1,0,0,8.0,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-3.9,92,99000,0,0,235,0,0,0,0,0,0,0,40,3.1,0,0,8.0,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-5.0,82,99000,0,0,236,0,0,0,0,0,0,0,50,2.6,0,0,8.0,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-5.6,81,99000,0,0,234,0,0,0,0,0,0,0,20,3.1,0,0,8.0,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-5.0,85,99000,0,0,234,0,0,0,0,0,0,0,30,3.1,0,0,8.0,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-6.1,85,99100,0,0,229,0,0,0,0,0,0,0,340,4.1,0,0,8.0,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-5.6,85,99100,8,365,232,13,80,4,0,0,0,0,40,3.1,0,0,6.4,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,1,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-5.0,85,99100,191,1414,234,103,600,21,10900,43800,4900,510,340,2.1,0,0,6.4,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,1,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.0,69,99100,426,1414,244,285,830,33,30200,74900,7500,890,70,2.6,0,0,6.4,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,1,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-5.6,55,99100,614,1414,254,446,923,43,47200,88700,8500,1170,60,2.1,0,0,9.7,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,1,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.0,49,99100,740,1414,262,555,964,49,58800,94600,9100,1350,0,0.0,0,0,9.7,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,1,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-4.4,51,99000,796,1414,263,606,981,52,64100,96800,9300,1450,30,3.1,0,0,11.3,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,1,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-5.6,42,98900,779,1414,268,588,975,51,62300,96100,9200,1420,30,2.1,0,0,11.3,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,1,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-5.6,42,98900,688,1414,268,507,948,46,53900,92300,8800,1270,80,2.1,0,0,11.3,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,1,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-6.1,39,98900,531,1414,270,370,886,38,39500,83300,8100,1040,90,1.5,0,0,12.9,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,1,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-5.6,43,98900,319,1414,266,193,746,27,20800,62900,6600,720,120,2.6,0,0,12.9,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,1,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-6.1,43,98900,76,1096,263,46,318,14,3900,18000,2500,290,190,1.5,0,0,12.9,77777,9,999999999,80,0.0250,0,88,999.000,999.0,99.0 +1988,1,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.1,47,99000,0,0,259,0,0,0,0,0,0,0,120,3.6,0,0,16.1,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-5.6,55,99000,0,0,254,0,0,0,0,0,0,0,120,4.1,0,0,16.1,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.1,57,98900,0,0,249,0,0,0,0,0,0,0,110,3.1,0,0,16.1,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.6,67,98900,0,0,243,0,0,0,0,0,0,0,90,3.1,0,0,16.1,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-6.1,67,99000,0,0,241,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-5.6,72,99000,0,0,240,0,0,0,0,0,0,0,120,3.1,0,0,16.1,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-6.1,72,99000,0,0,237,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-6.1,72,98900,0,0,237,0,0,0,0,0,0,0,100,3.6,1,0,12.9,77777,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-6.7,75,98900,0,0,233,0,0,0,0,0,0,0,100,3.6,2,0,12.9,77777,9,999999999,69,0.0500,0,88,999.000,999.0,99.0 +1988,1,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-6.7,78,98800,0,0,231,0,0,0,0,0,0,0,100,2.1,1,0,12.9,77777,9,999999999,69,0.0500,0,88,999.000,999.0,99.0 +1988,1,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-6.7,78,98900,0,0,231,0,0,0,0,0,0,0,90,2.1,3,0,12.9,77777,9,999999999,69,0.0500,0,88,999.000,999.0,99.0 +1988,1,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-6.1,81,98900,0,0,231,0,0,0,0,0,0,0,90,2.6,3,0,12.9,77777,9,999999999,69,0.0500,0,88,999.000,999.0,99.0 +1988,1,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-7.2,75,98900,0,0,230,0,0,0,0,0,0,0,110,4.6,2,0,12.9,77777,9,999999999,69,0.0500,0,88,999.000,999.0,99.0 +1988,1,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-6.7,72,98900,8,365,245,4,2,4,0,0,0,0,100,3.6,7,3,8.0,77777,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1988,1,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-6.7,69,99000,192,1414,249,55,93,43,5900,5600,5200,780,120,3.1,8,4,9.7,77777,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1988,1,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-6.1,59,99000,428,1414,255,232,410,107,24000,36300,13000,2020,120,5.2,4,2,9.7,77777,9,999999999,80,0.1130,0,88,999.000,999.0,99.0 +1988,1,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-6.1,52,99000,616,1414,261,378,585,122,39000,55900,14500,2390,130,4.1,7,2,11.3,77777,9,999999999,80,0.1130,0,88,999.000,999.0,99.0 +1988,1,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-6.7,43,99000,743,1414,272,460,467,214,47800,47000,23000,4730,140,3.1,8,3,12.9,77777,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1988,1,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-6.1,42,98900,799,1414,279,529,512,238,54800,52000,25300,5510,140,3.1,10,4,19.3,77777,9,999999999,80,0.1130,0,88,999.000,999.0,99.0 +1988,1,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-6.1,39,98800,782,1414,281,506,536,210,53200,54400,23000,4740,120,3.1,8,3,19.3,77777,9,999999999,80,0.1130,0,88,999.000,999.0,99.0 +1988,1,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-6.7,34,98800,692,1414,289,358,310,206,38200,32000,22500,4650,170,2.1,9,5,19.3,7620,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1988,1,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-6.7,31,98800,535,1414,297,186,64,162,20400,6100,18100,4420,30,1.5,10,5,19.3,77777,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1988,1,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-5.0,37,98800,323,1414,300,137,159,101,14800,13100,11800,2200,250,2.1,10,7,19.3,7620,9,999999999,80,0.1130,0,88,999.000,999.0,99.0 +1988,1,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-5.6,37,98800,79,1120,308,12,6,12,1400,300,1300,310,120,3.6,10,9,19.3,7620,9,999999999,80,0.1130,0,88,999.000,999.0,99.0 +1988,1,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-5.0,45,98700,0,0,308,0,0,0,0,0,0,0,130,3.6,10,10,19.3,7620,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-5.0,44,98700,0,0,310,0,0,0,0,0,0,0,140,3.1,10,10,16.1,4270,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-5.6,43,98700,0,0,307,0,0,0,0,0,0,0,140,4.6,10,10,16.1,760,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-4.4,47,98700,0,0,308,0,0,0,0,0,0,0,170,4.1,10,10,16.1,760,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-4.4,47,98600,0,0,308,0,0,0,0,0,0,0,160,3.6,10,10,16.1,760,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-4.4,45,98600,0,0,311,0,0,0,0,0,0,0,160,3.1,10,10,16.1,760,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-3.3,51,98500,0,0,309,0,0,0,0,0,0,0,180,2.6,10,10,16.1,700,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-3.3,51,98400,0,0,309,0,0,0,0,0,0,0,190,3.6,10,10,16.1,700,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.8,51,98400,0,0,313,0,0,0,0,0,0,0,190,4.6,10,10,16.1,700,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-2.8,53,98500,0,0,310,0,0,0,0,0,0,0,290,7.7,10,10,16.1,700,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.0,73,98500,0,0,306,0,0,0,0,0,0,0,270,4.1,10,10,6.4,700,9,999999999,110,0.0500,0,88,999.000,999.0,99.0 +1988,1,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,0.0,76,98600,0,0,303,0,0,0,0,0,0,0,270,3.6,10,10,6.4,460,9,999999999,110,0.0500,0,88,999.000,999.0,99.0 +1988,1,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,0.0,76,98600,0,0,303,0,0,0,0,0,0,0,260,3.1,10,10,6.4,460,9,999999999,110,0.0500,0,88,999.000,999.0,99.0 +1988,1,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,98600,8,365,310,3,1,3,0,0,0,0,270,3.1,10,10,3.2,150,9,999999999,129,0.0460,0,88,999.000,999.0,99.0 +1988,1,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,98700,193,1414,310,46,5,45,5100,100,5100,1520,280,4.6,10,10,3.2,150,9,999999999,129,0.0460,0,88,999.000,999.0,99.0 +1988,1,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,98700,429,1414,316,130,2,129,14400,100,14300,4430,300,5.2,10,10,4.8,400,9,999999999,139,0.0460,0,88,999.000,999.0,99.0 +1988,1,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,98700,618,1414,306,229,49,208,25200,4800,23000,5770,300,6.2,10,9,11.3,550,9,999999999,129,0.0460,0,88,999.000,999.0,99.0 +1988,1,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.2,74,98700,745,1414,288,472,663,122,49700,65800,14900,2670,290,8.8,4,3,16.1,77777,9,999999999,120,0.0460,0,88,999.000,999.0,99.0 +1988,1,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.1,66,98700,803,1414,289,593,863,102,62100,85500,13300,2270,300,7.7,3,3,16.1,77777,9,999999999,110,0.0460,0,88,999.000,999.0,99.0 +1988,1,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-0.6,58,98700,786,1414,280,561,891,65,59000,87700,10000,1620,300,8.2,1,1,32.2,77777,9,999999999,100,0.0460,0,88,999.000,999.0,99.0 +1988,1,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-5.6,42,98700,696,1414,268,505,907,59,53300,88300,9700,1440,290,8.8,0,0,32.2,77777,9,999999999,80,0.0460,0,88,999.000,999.0,99.0 +1988,1,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-6.7,40,98800,539,1414,265,367,837,49,39000,78800,8800,1170,290,7.2,0,0,32.2,77777,9,999999999,69,0.0460,0,88,999.000,999.0,99.0 +1988,1,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-8.3,43,98900,327,1414,253,191,679,35,20400,57500,7000,800,310,6.2,0,0,24.1,77777,9,999999999,69,0.0460,0,88,999.000,999.0,99.0 +1988,1,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-8.3,43,99000,83,1143,253,44,254,18,3900,12800,2900,330,310,6.2,0,0,24.1,77777,9,999999999,69,0.0460,0,88,999.000,999.0,99.0 +1988,1,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-8.3,48,99000,0,0,247,0,0,0,0,0,0,0,320,5.7,0,0,16.1,77777,9,999999999,69,0.0500,0,88,999.000,999.0,99.0 +1988,1,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-8.9,50,99000,0,0,243,0,0,0,0,0,0,0,310,5.7,0,0,16.1,77777,9,999999999,69,0.0500,0,88,999.000,999.0,99.0 +1988,1,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-9.4,52,99100,0,0,238,0,0,0,0,0,0,0,300,5.2,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-8.9,58,99100,0,0,234,0,0,0,0,0,0,0,310,6.7,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-9.4,58,99200,0,0,232,0,0,0,0,0,0,0,320,6.7,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-9.4,63,99200,0,0,229,0,0,0,0,0,0,0,330,5.7,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-9.4,66,99200,0,0,227,0,0,0,0,0,0,0,330,6.2,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-10.0,68,99300,0,0,222,0,0,0,0,0,0,0,320,5.2,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-10.0,71,99300,0,0,220,0,0,0,0,0,0,0,330,5.7,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-10.0,74,99300,0,0,219,0,0,0,0,0,0,0,330,6.2,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-10.6,71,99200,0,0,218,0,0,0,0,0,0,0,340,4.6,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-10.6,74,99200,0,0,216,0,0,0,0,0,0,0,320,4.6,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-10.6,74,99300,0,0,216,0,0,0,0,0,0,0,330,6.7,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-11.1,71,99300,9,389,216,10,39,5,0,0,0,0,340,5.2,1,0,32.2,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-11.1,63,99400,194,1414,226,90,341,43,9100,21900,6100,740,320,3.6,7,1,32.2,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-11.7,49,99400,431,1414,240,254,498,101,26500,44300,12900,1890,30,2.6,8,3,32.2,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-12.8,43,99500,620,1414,243,406,625,131,41700,59600,15400,2540,60,3.1,9,4,32.2,77777,9,999999999,50,0.0520,0,88,999.000,999.0,99.0 +1988,1,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-11.7,40,99400,748,1414,252,478,561,180,50600,56700,20500,3910,110,2.6,9,4,32.2,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-11.1,37,99300,806,1414,259,490,413,254,52400,43600,27500,6220,50,2.6,9,4,32.2,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-11.7,35,99300,789,1414,260,501,563,187,53400,57300,21300,4190,40,2.6,10,5,32.2,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-11.7,32,99200,700,1414,265,311,323,152,33300,32400,17300,3160,100,4.1,9,4,32.2,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-12.2,30,99100,544,1414,264,308,489,121,32700,46500,14800,2340,100,3.6,8,4,32.2,77777,9,999999999,50,0.0520,0,88,999.000,999.0,99.0 +1988,1,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-13.3,30,99200,331,1414,251,180,589,44,18700,49200,7200,860,70,1.5,3,1,32.2,77777,9,999999999,50,0.0520,0,88,999.000,999.0,99.0 +1988,1,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-12.8,32,99200,86,1167,249,44,170,27,4200,7500,3600,480,90,3.1,3,1,32.2,77777,9,999999999,50,0.0520,0,88,999.000,999.0,99.0 +1988,1,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-12.2,34,99300,0,0,260,0,0,0,0,0,0,0,70,3.1,8,5,24.1,7620,9,999999999,50,0.0500,0,88,999.000,999.0,99.0 +1988,1,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-11.7,38,99300,0,0,252,0,0,0,0,0,0,0,70,4.6,5,3,24.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-11.7,40,99200,0,0,259,0,0,0,0,0,0,0,110,6.2,8,7,24.1,3050,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-10.6,44,99200,0,0,270,0,0,0,0,0,0,0,90,5.2,10,9,16.1,2740,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-10.6,45,99200,0,0,268,0,0,0,0,0,0,0,120,5.2,10,9,16.1,2740,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-10.6,45,99100,0,0,262,0,0,0,0,0,0,0,90,4.6,8,8,16.1,2740,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-10.6,49,99100,0,0,247,0,0,0,0,0,0,0,90,3.6,5,4,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-10.6,51,99100,0,0,245,0,0,0,0,0,0,0,90,4.6,4,4,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-10.6,53,99100,0,0,239,0,0,0,0,0,0,0,70,4.1,2,2,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-10.6,56,99100,0,0,234,0,0,0,0,0,0,0,60,3.6,1,1,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.6,58,99100,0,0,232,0,0,0,0,0,0,0,70,3.6,1,1,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.6,58,99100,0,0,232,0,0,0,0,0,0,0,60,3.1,1,1,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-10.6,60,99100,0,0,230,0,0,0,0,0,0,0,50,3.6,1,1,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-10.0,66,99200,9,389,224,15,91,5,0,0,0,0,60,3.1,0,0,32.2,77777,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,1,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.6,58,99200,195,1414,228,108,624,20,11300,45800,5000,510,80,4.1,0,0,32.2,77777,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,1,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-10.6,49,99200,433,1414,235,290,838,32,30800,75900,7500,880,90,4.6,0,0,32.2,77777,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,1,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-10.6,44,99200,622,1414,241,456,937,42,48400,90200,8500,1160,70,3.6,0,0,32.2,77777,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,1,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-11.7,37,99200,751,1414,244,570,978,49,60300,96100,9100,1360,50,2.6,0,0,32.2,77777,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,1,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-11.1,34,99000,809,1414,250,620,993,51,65700,98200,9300,1450,70,2.6,0,0,32.2,77777,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,1,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-10.0,33,98900,793,1414,257,607,993,51,64500,98000,9300,1430,60,2.1,0,0,32.2,77777,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,1,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-10.0,31,98800,704,1414,262,525,963,46,55900,94000,8900,1280,60,1.5,0,0,32.2,77777,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,1,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-10.6,27,98800,548,1414,265,388,908,38,41600,85800,8200,1050,0,0.0,0,0,32.2,77777,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,1,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-10.6,28,98800,336,1414,263,209,776,27,22600,66300,6800,740,120,2.1,0,0,32.2,77777,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,1,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-11.1,29,98800,89,1190,259,51,365,14,4600,22800,2800,340,90,2.6,0,0,32.2,77777,9,999999999,60,0.0220,0,88,999.000,999.0,99.0 +1988,1,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-10.0,36,98900,0,0,253,0,0,0,0,0,0,0,110,3.1,0,0,32.2,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-10.0,36,98900,0,0,253,0,0,0,0,0,0,0,120,3.1,0,0,32.2,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-10.0,40,98900,0,0,247,0,0,0,0,0,0,0,130,3.6,0,0,24.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-10.0,40,98900,0,0,247,0,0,0,0,0,0,0,140,4.1,0,0,24.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-10.0,46,99000,0,0,242,0,0,0,0,0,0,0,120,4.1,0,0,24.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-10.0,46,99000,0,0,242,0,0,0,0,0,0,0,100,4.1,0,0,24.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-9.4,56,98900,0,0,234,0,0,0,0,0,0,0,90,3.1,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-10.0,51,99000,0,0,236,0,0,0,0,0,0,0,120,3.1,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-9.4,56,99000,0,0,234,0,0,0,0,0,0,0,90,4.6,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-9.4,56,99000,0,0,234,0,0,0,0,0,0,0,120,2.6,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-9.4,61,99000,0,0,230,0,0,0,0,0,0,0,110,2.6,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-9.4,61,99000,0,0,230,0,0,0,0,0,0,0,90,4.6,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-9.4,61,99100,0,0,230,0,0,0,0,0,0,0,80,3.6,0,0,16.1,77777,9,999999999,60,0.0500,0,88,999.000,999.0,99.0 +1988,1,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-9.4,61,99100,9,389,230,15,81,5,0,0,0,0,90,5.2,0,0,24.1,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,1,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-9.4,56,99100,197,1414,234,106,587,23,11100,43100,5100,530,90,3.6,1,0,32.2,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,1,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-8.9,46,99200,434,1414,246,292,798,46,30800,72100,8500,1020,140,5.7,3,0,32.2,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,1,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-8.9,41,99200,625,1414,257,413,748,81,42900,72000,10900,1640,100,4.6,6,1,32.2,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,1,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-9.4,33,99100,754,1414,260,568,900,87,60000,89100,12300,1950,150,5.2,6,0,32.2,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,1,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-9.4,29,99000,813,1414,274,601,897,85,62700,88400,11700,1820,150,5.2,7,1,32.2,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,1,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-9.4,27,98900,797,1414,278,579,811,121,61400,81400,15300,2790,120,5.2,8,1,32.2,77777,9,999999999,60,0.0270,0,88,999.000,999.0,99.0 +1988,1,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-8.9,26,98900,708,1414,283,492,801,92,51500,78300,12100,1920,140,4.6,8,1,32.2,77777,9,999999999,69,0.0270,0,88,999.000,999.0,99.0 +1988,1,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-8.3,26,98900,552,1414,286,369,783,64,38900,74300,9800,1340,130,5.7,6,1,32.2,77777,9,999999999,69,0.0270,0,88,999.000,999.0,99.0 +1988,1,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-8.3,26,98900,340,1414,290,182,466,71,18700,37900,9500,1250,160,4.6,7,2,32.2,77777,9,999999999,69,0.0270,0,88,999.000,999.0,99.0 +1988,1,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-7.8,31,98900,93,1213,284,48,79,40,5000,3800,4700,830,120,3.6,9,3,32.2,77777,9,999999999,69,0.0270,0,88,999.000,999.0,99.0 +1988,1,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-7.8,33,98900,0,0,286,0,0,0,0,0,0,0,100,5.2,9,5,16.1,7620,9,999999999,69,0.0500,0,88,999.000,999.0,99.0 +1988,1,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-7.8,34,98900,0,0,284,0,0,0,0,0,0,0,100,2.6,9,5,16.1,7620,9,999999999,69,0.0500,0,88,999.000,999.0,99.0 +1988,1,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-7.8,35,98900,0,0,307,0,0,0,0,0,0,0,110,5.2,10,10,16.1,7620,9,999999999,69,0.0500,0,88,999.000,999.0,99.0 +1988,1,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-7.8,35,98900,0,0,307,0,0,0,0,0,0,0,110,5.7,10,10,16.1,7620,9,999999999,69,0.0500,0,88,999.000,999.0,99.0 +1988,1,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-7.8,38,98900,0,0,288,0,0,0,0,0,0,0,120,5.2,10,8,16.1,7620,9,999999999,69,0.0500,0,88,999.000,999.0,99.0 +1988,1,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-7.8,38,98900,0,0,302,0,0,0,0,0,0,0,110,5.7,10,10,16.1,3050,9,999999999,69,0.0500,0,88,999.000,999.0,99.0 +1988,1,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-7.2,38,98800,0,0,305,0,0,0,0,0,0,0,100,5.2,10,10,16.1,760,9,999999999,69,0.0500,0,88,999.000,999.0,99.0 +1988,1,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-4.4,49,98700,0,0,306,0,0,0,0,0,0,0,90,5.2,10,10,16.1,550,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-4.4,49,98700,0,0,306,0,0,0,0,0,0,0,100,5.7,10,10,16.1,550,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-5.0,51,98700,0,0,300,0,0,0,0,0,0,0,90,5.7,10,10,16.1,1070,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.0,49,98600,0,0,303,0,0,0,0,0,0,0,90,7.2,10,10,16.1,760,9,999999999,80,0.0500,0,88,999.000,999.0,99.0 +1988,1,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-3.9,53,98600,0,0,304,0,0,0,0,0,0,0,100,6.2,10,10,16.1,760,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.7,70,98600,0,0,299,0,0,0,0,0,0,0,100,6.2,10,10,16.1,400,9,999999999,100,0.0500,0,88,999.000,999.0,99.0 +1988,1,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,98600,9,389,296,6,0,6,0,0,0,0,90,6.7,10,10,11.3,370,9,999999999,110,0.0250,0,88,999.000,999.0,99.0 +1988,1,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,98500,198,1414,296,31,6,30,3600,0,3600,1120,90,7.7,10,10,4.8,340,9,999999999,110,0.0250,0,88,999.000,999.0,99.0 +1988,1,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,93,98500,436,1414,297,98,5,96,11100,300,11000,3670,90,6.2,10,10,2.4,150,9,999999999,110,0.0250,0,88,999.000,999.0,99.0 +1988,1,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,98400,627,1414,301,109,12,103,12800,800,12400,4540,90,7.2,10,10,1.6,90,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1988,1,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,2.8,96,98400,757,1414,304,143,8,139,16900,600,16600,6280,80,5.2,10,10,1.6,90,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1988,1,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,98300,816,1414,307,160,5,157,18900,400,18700,7170,290,7.7,10,10,1.6,150,9,999999999,129,0.0250,0,88,999.000,999.0,99.0 +1988,1,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,98200,801,1414,310,163,5,161,19300,400,19100,7250,80,3.6,10,10,2.0,460,9,999999999,129,0.0250,0,88,999.000,999.0,99.0 +1988,1,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,98100,713,1414,310,142,3,140,16600,200,16500,6140,90,4.1,10,10,2.4,90,9,999999999,129,0.0250,0,88,999.000,999.0,99.0 +1988,1,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,98100,557,1414,310,125,3,124,14400,200,14300,4980,60,4.6,10,10,0.8,90,9,999999999,129,0.0250,0,88,999.000,999.0,99.0 +1988,1,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,98100,345,1414,298,86,54,73,9500,4600,8300,1950,60,6.2,10,9,1.6,120,9,999999999,129,0.0250,0,88,999.000,999.0,99.0 +1988,1,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,98100,97,1237,309,32,0,32,3500,0,3500,1000,100,5.2,10,10,8.0,340,9,999999999,129,0.0250,0,88,999.000,999.0,99.0 +1988,1,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,98100,0,0,310,0,0,0,0,0,0,0,80,4.6,10,10,6.4,210,9,999999999,129,0.0500,0,88,999.000,999.0,99.0 +1988,1,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,98200,0,0,310,0,0,0,0,0,0,0,90,4.6,10,10,6.4,150,9,999999999,129,0.0500,0,88,999.000,999.0,99.0 +1988,1,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,98100,0,0,310,0,0,0,0,0,0,0,100,5.2,10,10,0.4,60,9,999999999,129,0.0500,0,88,999.000,999.0,99.0 +1988,1,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.9,96,98200,0,0,310,0,0,0,0,0,0,0,70,2.6,10,10,0.0,30,9,999999999,129,0.0500,0,88,999.000,999.0,99.0 +1988,1,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,4.4,100,98100,0,0,310,0,0,0,0,0,0,0,90,3.6,10,10,0.4,60,9,999999999,139,0.0500,0,88,999.000,999.0,99.0 +1988,1,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,4.4,96,98000,0,0,313,0,0,0,0,0,0,0,90,3.6,10,10,0.0,30,9,999999999,139,0.0500,0,88,999.000,999.0,99.0 +1988,1,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,98100,0,0,314,0,0,0,0,0,0,0,70,3.1,10,10,0.0,30,9,999999999,139,0.0500,0,88,999.000,999.0,99.0 +1988,1,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,98000,0,0,314,0,0,0,0,0,0,0,70,3.1,10,10,0.0,30,9,999999999,139,0.0500,0,88,999.000,999.0,99.0 +1988,1,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,98000,0,0,314,0,0,0,0,0,0,0,90,3.1,10,10,0.0,30,9,999999999,139,0.0500,0,88,999.000,999.0,99.0 +1988,1,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,98000,0,0,314,0,0,0,0,0,0,0,70,3.1,10,10,0.0,0,9,999999999,139,0.0500,0,88,999.000,999.0,99.0 +1988,1,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,98100,0,0,314,0,0,0,0,0,0,0,60,3.1,10,10,0.0,0,9,999999999,139,0.0500,0,88,999.000,999.0,99.0 +1988,1,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,98100,0,0,316,0,0,0,0,0,0,0,50,2.6,10,10,0.0,0,9,999999999,139,0.0500,0,88,999.000,999.0,99.0 +1988,1,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,98100,0,0,317,0,0,0,0,0,0,0,50,3.1,10,10,0.0,0,9,999999999,150,0.0500,0,88,999.000,999.0,99.0 +1988,1,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,98100,10,389,317,6,2,6,0,0,0,0,40,2.1,10,10,0.0,0,9,999999999,150,0.0340,0,88,999.000,999.0,99.0 +1988,1,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,98200,200,1413,320,43,5,42,4800,0,4800,1460,80,2.1,10,10,0.0,0,9,999999999,150,0.0340,0,88,999.000,999.0,99.0 +1988,1,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,98200,439,1413,323,140,4,139,15500,300,15400,4690,70,3.1,10,10,0.2,0,9,999999999,160,0.0340,0,88,999.000,999.0,99.0 +1988,1,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,98200,630,1413,326,193,7,190,21700,600,21500,7150,100,3.1,10,10,0.2,0,9,999999999,160,0.0340,0,88,999.000,999.0,99.0 +1988,1,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,98100,760,1413,332,223,2,222,25400,200,25300,8910,50,2.6,10,10,0.2,0,9,999999999,170,0.0340,0,88,999.000,999.0,99.0 +1988,1,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,98100,820,1413,336,199,7,195,23100,600,22800,8500,110,3.1,10,10,0.2,0,9,999999999,179,0.0340,0,88,999.000,999.0,99.0 +1988,1,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,98000,805,1413,339,154,4,152,18200,300,18100,6940,70,3.1,10,10,0.2,0,9,999999999,189,0.0340,0,88,999.000,999.0,99.0 +1988,1,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,97900,717,1413,343,149,1,148,17300,100,17300,6440,60,3.1,10,10,0.2,0,9,999999999,189,0.0340,0,88,999.000,999.0,99.0 +1988,1,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.6,100,97900,561,1413,346,193,1,193,21400,100,21400,6670,60,4.1,10,10,0.4,0,9,999999999,200,0.0340,0,88,999.000,999.0,99.0 +1988,1,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.6,96,97900,349,1413,349,111,0,111,12200,0,12200,3580,70,3.1,10,10,0.4,30,9,999999999,200,0.0340,0,88,999.000,999.0,99.0 +1988,1,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.6,96,97900,101,1260,349,33,0,33,3600,0,3600,1030,90,3.6,10,10,0.2,30,9,999999999,200,0.0340,0,88,999.000,999.0,99.0 +1988,1,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.6,96,97900,0,0,349,0,0,0,0,0,0,0,100,4.1,10,10,0.2,30,9,999999999,200,0.0500,0,88,999.000,999.0,99.0 +1988,1,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.6,100,97900,0,0,346,0,0,0,0,0,0,0,110,5.2,10,10,0.2,30,9,999999999,200,0.0500,0,88,999.000,999.0,99.0 +1988,1,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.6,96,97900,0,0,349,0,0,0,0,0,0,0,90,4.6,10,10,0.2,30,9,999999999,200,0.0500,0,88,999.000,999.0,99.0 +1988,1,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,11.1,100,98000,0,0,349,0,0,0,0,0,0,0,110,3.6,10,10,0.2,30,9,999999999,200,0.0500,0,88,999.000,999.0,99.0 +1988,1,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,11.1,100,98000,0,0,349,0,0,0,0,0,0,0,110,4.1,10,10,0.2,30,9,999999999,200,0.0500,0,88,999.000,999.0,99.0 +1988,1,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,11.1,100,98000,0,0,349,0,0,0,0,0,0,0,90,4.6,10,10,0.2,30,9,999999999,200,0.0500,0,88,999.000,999.0,99.0 +1988,1,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,11.1,100,98000,0,0,349,0,0,0,0,0,0,0,90,4.1,10,10,0.2,30,9,999999999,200,0.0500,0,88,999.000,999.0,99.0 +1988,1,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,11.1,100,97900,0,0,349,0,0,0,0,0,0,0,70,5.7,10,10,0.2,30,9,999999999,200,0.0500,0,88,999.000,999.0,99.0 +1988,1,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.7,100,97900,0,0,353,0,0,0,0,0,0,0,110,5.2,10,10,0.4,30,9,999999999,209,0.0500,0,88,999.000,999.0,99.0 +1988,1,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.7,100,97900,0,0,353,0,0,0,0,0,0,0,110,5.7,10,10,0.4,30,9,999999999,209,0.0500,0,88,999.000,999.0,99.0 +1988,1,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,97900,0,0,356,0,0,0,0,0,0,0,110,5.7,10,10,0.4,30,9,999999999,220,0.0500,0,88,999.000,999.0,99.0 +1988,1,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,97900,0,0,356,0,0,0,0,0,0,0,130,4.1,10,10,2.4,60,9,999999999,220,0.0500,0,88,999.000,999.0,99.0 +1988,1,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.8,100,97900,0,0,360,0,0,0,0,0,0,0,110,5.7,10,10,0.8,60,9,999999999,229,0.0500,0,88,999.000,999.0,99.0 +1988,1,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.8,100,97800,10,412,360,4,0,4,0,0,0,0,120,6.7,10,10,0.0,30,9,999999999,229,0.0320,0,88,999.000,999.0,99.0 +1988,1,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,97800,202,1413,363,66,1,66,7200,0,7200,1950,140,5.7,10,10,0.2,60,9,999999999,229,0.0320,0,88,999.000,999.0,99.0 +1988,1,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,14.4,100,97900,441,1413,370,152,1,152,16700,100,16700,4940,140,5.7,10,10,0.0,30,9,999999999,250,0.0320,0,88,999.000,999.0,99.0 +1988,1,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.0,97,97900,633,1413,377,130,1,130,15100,100,15100,5490,140,7.7,10,10,3.2,120,9,999999999,259,0.0320,0,88,999.000,999.0,99.0 +1988,1,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,97800,764,1413,382,297,1,297,33100,100,33100,10590,140,7.2,10,10,11.3,180,9,999999999,259,0.0320,0,88,999.000,999.0,99.0 +1988,1,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,97700,824,1413,385,293,2,292,33000,200,32900,11140,150,6.2,10,10,11.3,340,9,999999999,259,0.0320,0,88,999.000,999.0,99.0 +1988,1,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.0,84,97500,810,1413,388,297,2,296,33300,200,33200,11070,160,7.7,10,10,11.3,400,9,999999999,259,0.0320,0,88,999.000,999.0,99.0 +1988,1,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.0,81,97500,722,1413,391,259,2,258,28900,200,28800,9410,160,9.3,10,10,16.1,460,9,999999999,259,0.0320,0,88,999.000,999.0,99.0 +1988,1,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.0,78,97400,566,1413,394,195,1,195,21700,100,21600,6740,160,10.8,10,10,16.1,760,9,999999999,259,0.0320,0,88,999.000,999.0,99.0 +1988,1,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.0,81,97400,354,1413,391,68,1,68,7800,0,7800,2590,130,6.7,10,10,16.1,700,9,999999999,259,0.0320,0,88,999.000,999.0,99.0 +1988,1,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,97300,104,1284,386,33,0,33,3600,0,3600,1030,110,6.7,10,10,16.1,700,9,999999999,270,0.0320,0,88,999.000,999.0,99.0 +1988,1,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,97300,0,0,386,0,0,0,0,0,0,0,140,7.2,10,10,16.1,1280,9,999999999,270,0.0500,0,88,999.000,999.0,99.0 +1988,1,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,97300,0,0,389,0,0,0,0,0,0,0,140,7.2,10,10,16.1,1370,9,999999999,270,0.0500,0,88,999.000,999.0,99.0 +1988,1,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,97300,0,0,389,0,0,0,0,0,0,0,140,7.7,10,10,11.3,700,9,999999999,270,0.0500,0,88,999.000,999.0,99.0 +1988,1,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,97200,0,0,392,0,0,0,0,0,0,0,160,8.8,10,10,8.0,640,9,999999999,270,0.0500,0,88,999.000,999.0,99.0 +1988,1,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,97100,0,0,392,0,0,0,0,0,0,0,160,10.8,10,10,8.0,490,9,999999999,259,0.0500,0,88,999.000,999.0,99.0 +1988,1,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,97200,0,0,389,0,0,0,0,0,0,0,290,6.2,10,10,8.0,460,9,999999999,270,0.0500,0,88,999.000,999.0,99.0 +1988,1,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.0,97,97200,0,0,377,0,0,0,0,0,0,0,250,6.2,10,10,8.0,150,9,999999999,259,0.0500,0,88,999.000,999.0,99.0 +1988,1,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,97200,0,0,371,0,0,0,0,0,0,0,300,4.6,10,10,8.0,610,9,999999999,229,0.0500,0,88,999.000,999.0,99.0 +1988,1,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,97200,0,0,364,0,0,0,0,0,0,0,180,3.1,10,10,11.3,3350,9,999999999,220,0.0500,0,88,999.000,999.0,99.0 +1988,1,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,97200,0,0,358,0,0,0,0,0,0,0,160,2.6,10,10,11.3,1980,9,999999999,209,0.0500,0,88,999.000,999.0,99.0 +1988,1,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,97,97300,0,0,359,0,0,0,0,0,0,0,240,3.1,10,10,11.3,700,9,999999999,220,0.0500,0,88,999.000,999.0,99.0 +1988,1,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,97,97300,0,0,336,0,0,0,0,0,0,0,220,3.6,7,7,11.3,670,9,999999999,220,0.0500,0,88,999.000,999.0,99.0 +1988,1,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,97,97400,0,0,332,0,0,0,0,0,0,0,240,4.1,6,6,11.3,670,9,999999999,220,0.0500,0,88,999.000,999.0,99.0 +1988,1,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,97400,11,412,355,7,0,7,0,0,0,0,220,4.1,10,10,0.4,60,9,999999999,209,0.0440,0,88,999.000,999.0,99.0 +1988,1,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,97400,204,1413,356,60,1,60,6600,0,6600,1860,270,4.1,10,10,0.2,30,9,999999999,220,0.0440,0,88,999.000,999.0,99.0 +1988,1,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.8,100,97400,443,1413,360,146,1,146,16100,100,16100,4860,220,3.1,10,10,0.0,30,9,999999999,229,0.0440,0,88,999.000,999.0,99.0 +1988,1,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,97500,636,1413,365,230,1,230,25600,100,25500,8030,250,3.6,10,10,3.2,90,9,999999999,229,0.0440,0,88,999.000,999.0,99.0 +1988,1,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,97500,767,1413,364,290,0,290,32400,0,32400,10500,260,5.2,10,10,11.3,180,9,999999999,220,0.0440,0,88,999.000,999.0,99.0 +1988,1,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.2,81,97500,828,1413,350,355,168,257,38900,17600,28600,6860,240,4.1,9,7,12.9,7620,9,999999999,220,0.0440,0,88,999.000,999.0,99.0 +1988,1,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,9.4,61,97300,814,1413,347,319,173,219,35200,18100,24700,5790,240,6.2,9,5,16.1,7620,9,999999999,189,0.0440,0,88,999.000,999.0,99.0 +1988,1,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,9.4,58,97300,726,1413,357,301,236,180,32700,24600,20000,4000,230,5.2,9,7,32.2,7620,9,999999999,179,0.0440,0,88,999.000,999.0,99.0 +1988,1,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,9.4,61,97400,571,1413,354,266,247,167,28400,24500,18400,3550,220,6.2,9,7,32.2,7620,9,999999999,189,0.0440,0,88,999.000,999.0,99.0 +1988,1,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.2,54,97400,359,1413,345,161,217,106,16900,18300,12300,2120,210,4.6,10,6,24.1,7620,9,999999999,160,0.0440,0,88,999.000,999.0,99.0 +1988,1,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,6.7,54,97400,108,1307,346,33,21,31,3600,1300,3500,730,220,5.2,10,7,24.1,7620,9,999999999,160,0.0440,0,88,999.000,999.0,99.0 +1988,1,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.7,58,97400,0,0,340,0,0,0,0,0,0,0,210,4.6,10,7,24.1,7620,9,999999999,160,0.0500,0,88,999.000,999.0,99.0 +1988,1,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.1,60,97500,0,0,328,0,0,0,0,0,0,0,240,4.6,8,5,24.1,7620,9,999999999,150,0.0500,0,88,999.000,999.0,99.0 +1988,1,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.0,60,97500,0,0,314,0,0,0,0,0,0,0,260,3.6,7,2,24.1,77777,9,999999999,139,0.0500,0,88,999.000,999.0,99.0 +1988,1,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.0,64,97500,0,0,309,0,0,0,0,0,0,0,260,3.6,7,2,24.1,77777,9,999999999,139,0.0500,0,88,999.000,999.0,99.0 +1988,1,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,4.4,66,97500,0,0,303,0,0,0,0,0,0,0,280,3.6,8,2,24.1,77777,9,999999999,139,0.0500,0,88,999.000,999.0,99.0 +1988,1,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.3,64,97500,0,0,300,0,0,0,0,0,0,0,280,4.1,9,2,24.1,77777,9,999999999,129,0.0500,0,88,999.000,999.0,99.0 +1988,1,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,2.8,64,97500,0,0,300,0,0,0,0,0,0,0,290,5.2,5,3,24.1,77777,9,999999999,129,0.0500,0,88,999.000,999.0,99.0 +1988,1,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.1,61,97500,0,0,290,0,0,0,0,0,0,0,300,5.2,3,2,24.1,77777,9,999999999,110,0.0500,0,88,999.000,999.0,99.0 +1988,1,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.6,61,97600,0,0,306,0,0,0,0,0,0,0,310,6.7,8,8,24.1,3350,9,999999999,110,0.0500,0,88,999.000,999.0,99.0 +1988,1,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.1,66,97500,0,0,296,0,0,0,0,0,0,0,310,5.7,6,6,24.1,3350,9,999999999,110,0.0500,0,88,999.000,999.0,99.0 +1988,1,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.7,74,97500,0,0,295,0,0,0,0,0,0,0,310,4.6,7,7,24.1,3350,9,999999999,120,0.0500,0,88,999.000,999.0,99.0 +1988,1,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.1,73,97500,0,0,282,0,0,0,0,0,0,0,310,7.2,6,3,24.1,77777,9,999999999,110,0.0500,0,88,999.000,999.0,99.0 +1988,1,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.1,76,97500,0,0,290,0,0,0,0,0,0,0,330,6.7,8,7,24.1,3350,9,999999999,110,0.0500,0,88,999.000,999.0,99.0 +1988,1,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,97500,11,436,300,5,2,5,0,0,0,0,310,5.2,10,9,24.1,3350,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1988,1,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-0.6,68,97500,206,1413,299,51,20,48,5600,1500,5400,1180,310,5.2,10,9,24.1,3350,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1988,1,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-0.6,65,97600,446,1413,295,193,139,149,20800,12800,16700,3360,330,7.7,9,8,24.1,3050,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1988,1,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-0.6,60,97600,639,1413,306,258,33,243,28500,3000,27100,8290,330,6.2,10,9,24.1,3050,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1988,1,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-0.6,60,97600,771,1413,315,226,13,219,25800,1100,25200,8910,330,7.2,10,10,24.1,3050,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1988,1,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-0.6,58,97500,832,1413,317,254,5,251,29000,400,28700,10230,320,5.7,10,10,24.1,3050,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1988,1,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.0,56,97500,818,1413,308,399,146,315,43100,15100,34300,8370,310,5.7,10,8,24.1,7620,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1988,1,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.0,50,97500,731,1413,310,333,266,195,35900,27800,21500,4400,310,5.2,8,7,24.1,7620,9,999999999,110,0.0450,0,88,999.000,999.0,99.0 +1988,1,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.1,48,97500,576,1413,318,170,80,138,18800,7700,15600,4040,310,6.2,10,9,24.1,3050,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1988,1,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-0.6,52,97500,363,1413,299,161,322,79,17000,27000,10100,1450,320,4.6,5,5,24.1,77777,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1988,1,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-0.6,56,97500,112,1330,277,53,331,20,5000,19700,3200,380,310,6.7,0,0,24.1,77777,9,999999999,100,0.0450,0,88,999.000,999.0,99.0 +1988,1,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.1,60,97600,0,0,270,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,100,0.0500,0,88,999.000,999.0,99.0 +1988,1,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-0.6,65,97700,0,0,269,0,0,0,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,100,0.0500,0,88,999.000,999.0,99.0 +1988,1,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.1,68,97700,0,0,272,0,0,0,0,0,0,0,290,6.7,2,2,24.1,77777,9,999999999,100,0.0500,0,88,999.000,999.0,99.0 +1988,1,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,97800,0,0,295,0,0,0,0,0,0,0,300,5.2,9,9,16.1,1070,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.2,65,97800,0,0,269,0,0,0,0,0,0,0,310,5.2,2,2,16.1,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,97800,0,0,258,0,0,0,0,0,0,0,300,4.1,0,0,16.1,77777,9,999999999,89,0.0500,0,88,999.000,999.0,99.0 +1988,1,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.3,65,97800,0,0,256,0,0,0,0,0,0,0,300,5.2,0,0,16.1,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,1,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.3,65,97800,0,0,256,0,0,0,0,0,0,0,300,6.7,0,0,16.1,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,1,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-3.9,67,97900,0,0,259,0,0,0,0,0,0,0,310,5.7,2,2,16.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-4.4,67,97900,0,0,257,0,0,0,0,0,0,0,310,6.2,2,2,16.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-4.4,72,97900,0,0,249,0,0,0,0,0,0,0,310,4.6,1,1,16.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-4.4,75,97900,0,0,242,0,0,0,0,0,0,0,290,4.1,0,0,16.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-4.4,75,98100,0,0,242,0,0,0,0,0,0,0,300,4.6,0,0,16.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-4.4,75,98100,12,435,247,14,62,7,0,0,0,0,300,4.6,1,1,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1988,1,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-4.4,67,98100,208,1412,253,109,490,36,11100,33100,6200,650,310,6.7,1,1,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1988,1,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-5.0,57,98200,449,1412,267,254,509,91,25900,45200,11500,1660,320,9.3,4,4,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1988,1,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-4.4,55,98300,642,1412,277,347,349,188,37000,35500,20800,4130,310,10.3,6,6,24.1,910,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1988,1,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-4.4,55,98300,775,1412,277,549,699,165,56800,68800,18900,3530,300,7.7,6,6,24.1,910,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1988,1,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-4.4,53,98200,836,1412,276,467,494,174,50400,50700,20300,4020,340,9.3,5,5,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1988,1,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-3.9,57,98100,823,1412,277,383,244,241,41300,25900,26200,5890,300,6.2,6,6,24.1,910,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1988,1,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-4.4,51,98100,736,1412,281,415,451,181,44000,45400,20200,3910,280,8.8,6,6,24.1,910,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1988,1,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.0,49,98200,580,1412,274,375,668,102,39200,63600,13000,2010,310,6.7,3,3,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1988,1,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-5.0,53,98200,368,1412,263,220,721,34,23600,62900,7100,850,300,7.2,1,1,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1988,1,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-5.6,55,98200,117,1353,254,59,388,19,5500,23400,3400,380,300,4.6,0,0,24.1,77777,9,999999999,80,0.0350,0,88,999.000,999.0,99.0 +1988,1,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-5.6,62,98300,0,0,247,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-5.6,64,98300,0,0,246,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-5.6,69,98300,0,0,241,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.6,67,98200,0,0,243,0,0,0,0,0,0,0,330,3.1,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-5.0,78,98200,0,0,238,0,0,0,0,0,0,0,280,2.1,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-5.6,69,98200,0,0,241,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-4.4,85,98200,0,0,237,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-5.6,78,98200,0,0,236,0,0,0,0,0,0,0,260,3.6,0,0,16.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-6.1,72,98200,0,0,237,0,0,0,0,0,0,0,280,3.6,0,0,16.1,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-7.2,64,98200,0,0,238,0,0,0,0,0,0,0,250,3.6,0,0,16.1,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-7.2,66,98100,0,0,236,0,0,0,0,0,0,0,230,4.1,0,0,16.1,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-6.7,69,98100,0,0,236,0,0,0,0,0,0,0,250,4.1,0,0,16.1,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-7.2,64,98100,0,0,238,0,0,0,0,0,0,0,240,5.2,0,0,16.1,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-6.7,69,98100,12,435,236,13,48,7,0,0,0,0,240,4.1,0,0,24.1,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1988,1,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-6.1,61,98100,210,1412,245,108,515,31,11000,36900,5400,590,230,4.1,0,0,40.2,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1988,1,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.7,48,98100,452,1412,254,294,766,48,30900,69800,8500,1060,240,4.6,0,0,40.2,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1988,1,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-7.8,40,98100,646,1412,260,460,870,61,48300,83900,9800,1400,240,6.7,0,0,40.2,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1988,1,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-7.2,35,98100,778,1412,268,579,922,70,60700,90700,10600,1660,240,5.7,0,0,40.2,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1988,1,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-6.7,36,98000,840,1412,271,636,943,74,66600,93300,10900,1800,270,6.2,0,0,40.2,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1988,1,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-7.2,30,97900,827,1412,277,622,936,73,65200,92500,10800,1770,290,7.2,0,0,40.2,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1988,1,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-6.1,32,97800,740,1412,281,545,912,67,57300,89300,10300,1580,260,7.2,0,0,40.2,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1988,1,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-6.7,31,97800,585,1412,280,406,847,57,43000,80700,9400,1290,280,7.2,0,0,40.2,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1988,1,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-6.7,31,97800,373,1412,280,226,707,42,24000,61500,7700,880,280,5.2,0,0,24.1,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1988,1,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-7.2,33,97800,121,1377,273,55,325,22,5400,17800,3700,400,270,4.6,0,0,24.1,77777,9,999999999,69,0.0560,0,88,999.000,999.0,99.0 +1988,1,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-6.7,40,97900,0,0,265,0,0,0,0,0,0,0,270,3.1,0,0,24.1,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-6.7,41,97900,0,0,263,0,0,0,0,0,0,0,220,3.6,0,0,24.1,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-6.7,41,97900,0,0,263,0,0,0,0,0,0,0,200,3.1,0,0,24.1,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-6.1,49,97900,0,0,257,0,0,0,0,0,0,0,200,3.1,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-5.6,49,97900,0,0,259,0,0,0,0,0,0,0,220,4.6,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-5.6,51,98000,0,0,258,0,0,0,0,0,0,0,230,4.1,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-5.6,55,97900,0,0,254,0,0,0,0,0,0,0,230,3.6,0,0,16.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.1,55,97900,0,0,251,0,0,0,0,0,0,0,230,2.1,0,0,16.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-5.6,64,98000,0,0,246,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-6.1,59,98000,0,0,247,0,0,0,0,0,0,0,200,2.6,0,0,16.1,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-6.1,64,98000,0,0,243,0,0,0,0,0,0,0,180,3.1,0,0,16.1,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.6,67,98000,0,0,243,0,0,0,0,0,0,0,180,3.1,0,0,16.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.6,67,98000,0,0,248,0,0,0,0,0,0,0,220,3.1,4,1,16.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-4.4,67,98000,13,459,266,5,9,4,0,0,0,0,200,3.6,7,6,24.1,7620,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1988,1,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-4.4,59,98000,213,1412,263,94,258,55,9700,16800,7100,1010,200,3.6,3,2,24.1,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1988,1,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-3.9,53,98100,455,1412,263,283,679,63,29000,61400,9100,1210,210,5.2,0,0,24.1,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1988,1,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.2,52,98100,649,1412,288,435,688,118,45300,66700,14500,2390,220,3.6,4,4,24.1,77777,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1988,1,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.1,42,98100,782,1412,305,561,678,185,57600,66400,20700,3900,210,5.2,8,3,24.1,77777,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1988,1,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-3.3,35,98000,845,1412,314,354,135,273,38600,14100,30100,7370,220,6.7,9,7,24.1,2130,9,999999999,89,0.0950,0,88,999.000,999.0,99.0 +1988,1,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-1.7,43,98000,832,1412,323,467,313,283,49800,33100,30200,7180,260,6.2,10,9,24.1,1680,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1988,1,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.7,41,97900,745,1412,325,235,37,216,25900,3700,23900,6670,210,4.6,10,9,24.1,1680,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1988,1,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.1,43,97900,590,1412,326,191,2,190,21300,200,21200,6850,220,4.6,10,9,24.1,2130,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1988,1,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.1,43,97900,378,1412,326,119,31,110,13000,2800,12200,2800,200,3.1,10,9,24.1,2130,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1988,1,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-1.1,45,97900,125,1400,332,19,0,19,2200,0,2200,700,210,3.6,10,10,24.1,2130,9,999999999,100,0.0950,0,88,999.000,999.0,99.0 +1988,1,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-1.1,45,98000,0,0,332,0,0,0,0,0,0,0,210,3.6,10,10,24.1,1370,9,999999999,100,0.0510,0,88,999.000,999.0,99.0 +1988,1,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-0.6,50,98000,0,0,327,0,0,0,0,0,0,0,250,2.1,10,10,24.1,1520,9,999999999,100,0.0510,0,88,999.000,999.0,99.0 +1988,1,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.1,48,97900,0,0,327,0,0,0,0,0,0,0,230,3.1,10,10,24.1,1370,9,999999999,100,0.0510,0,88,999.000,999.0,99.0 +1988,1,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.6,56,97900,0,0,327,0,0,0,0,0,0,0,210,3.6,10,10,19.3,1070,9,999999999,110,0.0510,0,88,999.000,999.0,99.0 +1988,1,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.1,61,97800,0,0,324,0,0,0,0,0,0,0,200,3.6,10,10,19.3,1070,9,999999999,110,0.0510,0,88,999.000,999.0,99.0 +1988,1,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.7,66,97800,0,0,323,0,0,0,0,0,0,0,270,2.6,10,10,19.3,1070,9,999999999,120,0.0510,0,88,999.000,999.0,99.0 +1988,1,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,77,97800,0,0,319,0,0,0,0,0,0,0,270,1.5,10,10,12.9,760,9,999999999,129,0.0510,0,88,999.000,999.0,99.0 +1988,1,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,97800,0,0,315,0,0,0,0,0,0,0,280,2.1,10,10,11.3,610,9,999999999,129,0.0510,0,88,999.000,999.0,99.0 +1988,1,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,97800,0,0,316,0,0,0,0,0,0,0,310,2.1,10,10,11.3,210,9,999999999,139,0.0510,0,88,999.000,999.0,99.0 +1988,1,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,4.4,96,97700,0,0,313,0,0,0,0,0,0,0,330,3.1,10,10,4.8,180,9,999999999,139,0.0510,0,88,999.000,999.0,99.0 +1988,1,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,97700,0,0,309,0,0,0,0,0,0,0,300,3.1,10,10,8.0,430,9,999999999,129,0.0510,0,88,999.000,999.0,99.0 +1988,1,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,97600,0,0,309,0,0,0,0,0,0,0,310,2.1,10,10,8.0,550,9,999999999,129,0.0510,0,88,999.000,999.0,99.0 +1988,1,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,97600,0,0,309,0,0,0,0,0,0,0,310,1.5,10,10,11.3,610,9,999999999,129,0.0510,0,88,999.000,999.0,99.0 +1988,1,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,97500,14,459,309,2,1,2,0,0,0,0,270,2.6,10,10,11.3,1070,9,999999999,129,0.0620,0,88,999.000,999.0,99.0 +1988,1,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,97500,216,1411,309,44,1,44,5000,0,5000,1550,280,3.6,10,10,8.0,370,9,999999999,129,0.0620,0,88,999.000,999.0,99.0 +1988,1,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,97500,458,1411,312,167,4,166,18300,300,18200,5310,290,4.6,10,10,4.8,120,9,999999999,129,0.0620,0,88,999.000,999.0,99.0 +1988,1,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,83,97500,653,1411,311,171,5,169,19600,400,19400,6770,300,7.2,10,10,2.4,180,9,999999999,120,0.0620,0,88,999.000,999.0,99.0 +1988,1,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,97500,786,1411,297,451,374,242,48300,39400,26200,5820,310,6.7,7,7,16.1,1220,9,999999999,129,0.0620,0,88,999.000,999.0,99.0 +1988,1,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,61,97400,849,1411,295,517,563,178,55900,57800,20900,4170,300,7.2,6,6,24.1,760,9,999999999,110,0.0620,0,88,999.000,999.0,99.0 +1988,1,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-3.9,42,97300,837,1411,288,558,713,136,59100,71700,16500,3220,300,9.8,3,3,40.2,77777,9,999999999,80,0.0620,0,88,999.000,999.0,99.0 +1988,1,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-7.8,31,97300,750,1411,281,513,780,99,53600,76700,12600,2100,300,10.8,2,2,40.2,77777,9,999999999,69,0.0620,0,88,999.000,999.0,99.0 +1988,1,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-7.8,31,97300,595,1411,281,402,782,74,42200,74900,10500,1520,300,10.8,2,2,40.2,77777,9,999999999,69,0.0620,0,88,999.000,999.0,99.0 +1988,1,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-6.7,38,97500,383,1411,279,165,279,90,17300,23800,10800,1670,290,9.3,3,3,40.2,77777,9,999999999,69,0.0620,0,88,999.000,999.0,99.0 +1988,1,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-6.1,42,97500,130,1411,279,41,96,31,4200,4400,3800,560,280,6.2,4,4,40.2,77777,9,999999999,80,0.0620,0,88,999.000,999.0,99.0 +1988,1,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-4.4,51,97600,0,12,279,0,0,0,0,0,0,0,260,4.6,5,5,16.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.8,62,97700,0,0,300,0,0,0,0,0,0,0,290,11.3,10,10,16.1,910,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,1,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.8,67,97700,0,0,256,0,0,0,0,0,0,0,270,5.2,0,0,16.1,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1988,1,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-4.4,62,97800,0,0,261,0,0,0,0,0,0,0,280,6.7,2,2,16.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.1,57,97800,0,0,260,0,0,0,0,0,0,0,280,6.7,3,3,16.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1988,1,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-7.8,52,97800,0,0,253,0,0,0,0,0,0,0,280,9.8,2,2,16.1,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-8.3,54,97800,0,0,258,0,0,0,0,0,0,0,290,9.8,6,6,16.1,980,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1988,1,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-9.4,56,98000,0,0,246,0,0,0,0,0,0,0,300,9.3,4,4,16.1,77777,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1988,1,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-10.6,56,98100,0,0,239,0,0,0,0,0,0,0,310,8.2,3,3,16.1,77777,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1988,1,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-11.7,53,98200,0,0,227,0,0,0,0,0,0,0,300,7.2,0,0,19.3,77777,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1988,1,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-12.8,53,98100,0,0,222,0,0,0,0,0,0,0,300,6.2,0,0,19.3,77777,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-11.7,60,98100,0,0,221,0,0,0,0,0,0,0,300,5.2,0,0,19.3,77777,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1988,1,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-12.8,55,98300,0,0,224,0,0,0,0,0,0,0,310,5.2,1,1,19.3,77777,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-12.8,57,98300,14,482,218,17,84,7,0,0,0,0,280,3.6,0,0,32.2,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1988,1,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-12.8,53,98400,218,1411,222,120,605,26,12700,45800,5600,580,270,5.2,0,0,24.1,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1988,1,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-13.3,46,98500,461,1411,225,313,832,40,33100,76300,8100,1010,290,6.7,0,0,24.1,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1988,1,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-14.4,41,98600,657,1411,226,482,924,51,50900,89500,9100,1310,270,6.7,0,0,24.1,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1988,1,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-13.9,38,98600,791,1411,232,601,966,59,63400,95200,9800,1560,280,6.7,0,0,24.1,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1988,1,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-13.9,35,98600,854,1411,236,658,983,63,69300,97400,10200,1690,290,4.1,0,0,24.1,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1988,1,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-13.3,36,98500,842,1411,236,650,986,62,68600,97600,10100,1660,320,5.7,0,0,24.1,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1988,1,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-12.8,32,98500,755,1411,245,568,958,57,60200,94100,9700,1490,270,7.2,0,0,24.1,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1988,1,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-13.9,30,98500,600,1411,243,430,902,48,45800,86300,8900,1230,280,8.2,0,0,24.1,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1988,1,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-14.4,28,98600,388,1411,243,248,781,35,26500,69000,7500,880,320,7.7,0,0,24.1,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1988,1,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-13.9,33,98600,135,1411,238,65,443,20,6300,27100,3700,390,310,6.7,0,0,24.1,77777,9,999999999,50,0.0360,0,88,999.000,999.0,99.0 +1988,1,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-13.3,38,98700,0,35,234,0,0,0,0,0,0,0,320,5.2,0,0,16.1,77777,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-12.8,41,98800,0,0,233,0,0,0,0,0,0,0,320,4.1,0,0,16.1,77777,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-12.2,45,98900,0,0,232,0,0,0,0,0,0,0,310,3.6,0,0,16.1,77777,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-11.7,49,99000,0,0,230,0,0,0,0,0,0,0,300,3.6,0,0,16.1,77777,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1988,1,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-12.2,49,99000,0,0,228,0,0,0,0,0,0,0,310,4.1,0,0,16.1,77777,9,999999999,50,0.0510,0,88,999.000,999.0,99.0 +1988,1,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-11.7,55,99000,0,0,225,0,0,0,0,0,0,0,300,3.6,0,0,16.1,77777,9,999999999,60,0.0510,0,88,999.000,999.0,99.0 +1988,1,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-11.7,55,99000,0,0,225,0,0,0,0,0,0,0,320,4.1,0,0,19.3,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-11.7,58,99100,0,0,223,0,0,0,0,0,0,0,310,4.1,0,0,19.3,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-11.7,60,99100,0,0,221,0,0,0,0,0,0,0,320,4.1,0,0,19.3,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-11.7,60,99100,0,0,221,0,0,0,0,0,0,0,330,5.2,0,0,19.3,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-11.1,65,99100,0,0,219,0,0,0,0,0,0,0,310,3.6,0,0,19.3,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-11.1,68,99200,0,0,218,0,0,0,0,0,0,0,290,4.1,0,0,19.3,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-11.1,71,99300,0,0,216,0,0,0,0,0,0,0,310,4.6,0,0,19.3,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-11.1,71,99400,15,482,216,16,68,8,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1988,1,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-10.6,65,99500,221,1411,222,119,564,29,12100,41400,5600,580,290,4.1,0,0,24.1,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1988,1,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-11.1,55,99500,465,1411,227,310,804,45,32800,73700,8400,1060,320,5.2,0,0,24.1,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1988,1,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-11.1,49,99500,661,1411,233,481,902,58,50700,87300,9600,1390,320,5.7,0,0,24.1,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1988,1,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-13.3,38,99500,795,1411,234,604,953,67,63500,93900,10400,1660,310,5.7,0,0,24.1,77777,9,999999999,50,0.0470,0,88,999.000,999.0,99.0 +1988,1,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-13.3,34,99500,858,1411,240,662,972,70,69500,96300,10700,1790,300,5.7,0,0,24.1,77777,9,999999999,50,0.0470,0,88,999.000,999.0,99.0 +1988,1,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-13.9,28,99400,846,1411,246,650,967,70,68300,95700,10700,1770,290,4.1,0,0,24.1,77777,9,999999999,50,0.0470,0,88,999.000,999.0,99.0 +1988,1,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-14.4,25,99300,760,1411,249,570,942,64,60200,92500,10200,1580,340,2.1,0,0,24.1,77777,9,999999999,50,0.0470,0,88,999.000,999.0,99.0 +1988,1,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-16.7,20,99400,605,1411,249,433,889,54,46000,85100,9300,1290,320,4.6,0,0,24.1,77777,9,999999999,40,0.0470,0,88,999.000,999.0,99.0 +1988,1,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-15.0,23,99400,393,1411,250,248,753,40,26400,66700,7800,930,280,5.7,0,0,24.1,77777,9,999999999,50,0.0470,0,88,999.000,999.0,99.0 +1988,1,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-15.0,25,99500,139,1411,246,63,404,22,6200,24900,3800,420,310,3.1,0,0,24.1,77777,9,999999999,50,0.0470,0,88,999.000,999.0,99.0 +1988,1,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-13.3,32,99600,0,59,242,0,0,0,0,0,0,0,320,5.2,0,0,16.1,77777,9,999999999,50,0.0520,0,88,999.000,999.0,99.0 +1988,1,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-12.8,35,99600,0,0,241,0,0,0,0,0,0,0,330,2.6,0,0,16.1,77777,9,999999999,50,0.0520,0,88,999.000,999.0,99.0 +1988,1,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-11.7,42,99600,0,0,238,0,0,0,0,0,0,0,280,2.1,0,0,16.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-11.7,43,99700,0,0,236,0,0,0,0,0,0,0,260,3.1,0,0,16.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-11.7,45,99700,0,0,234,0,0,0,0,0,0,0,270,2.6,0,0,16.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-10.6,53,99700,0,0,231,0,0,0,0,0,0,0,290,3.1,0,0,16.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-11.1,49,99700,0,0,233,0,0,0,0,0,0,0,260,3.1,0,0,16.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-10.6,53,99700,0,0,231,0,0,0,0,0,0,0,280,3.1,0,0,16.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-10.6,56,99700,0,0,229,0,0,0,0,0,0,0,290,2.6,0,0,16.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.0,60,99700,0,0,228,0,0,0,0,0,0,0,290,3.1,0,0,16.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.0,60,99600,0,0,228,0,0,0,0,0,0,0,300,3.1,0,0,16.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.0,60,99700,0,0,228,0,0,0,0,0,0,0,300,3.6,0,0,16.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.0,60,99800,0,0,228,0,0,0,0,0,0,0,290,3.1,0,0,16.1,77777,9,999999999,60,0.0520,0,88,999.000,999.0,99.0 +1988,1,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-8.9,72,99800,16,505,225,17,97,7,0,0,0,0,290,4.1,0,0,16.1,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1988,1,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-8.3,61,99900,224,1410,235,124,619,25,13100,47300,5600,590,280,3.6,0,0,24.1,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1988,1,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-7.8,50,99900,468,1410,247,318,837,39,33700,77000,8000,1000,290,4.1,0,0,19.3,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1988,1,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-7.2,41,100000,665,1410,260,488,927,50,51600,89900,9100,1310,300,4.1,0,0,19.3,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1988,1,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-6.7,38,99900,799,1410,267,608,970,57,64100,95700,9700,1540,270,4.1,0,0,19.3,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1988,1,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-6.7,34,99900,863,1410,273,664,985,61,70000,97700,10000,1680,290,3.1,0,0,32.2,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1988,1,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-6.1,31,99800,851,1410,283,650,978,60,68700,97000,9900,1650,250,3.1,0,0,32.2,77777,9,999999999,80,0.0320,0,88,999.000,999.0,99.0 +1988,1,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-7.2,25,99600,765,1410,288,575,960,55,60900,94400,9500,1470,170,2.1,0,0,32.2,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1988,1,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-7.2,25,99600,610,1410,288,437,906,47,46600,86900,8800,1220,240,4.1,0,0,32.2,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1988,1,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-7.2,25,99600,398,1410,288,254,788,34,27300,70100,7400,880,230,4.6,0,0,24.1,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1988,1,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-7.2,28,99600,144,1410,282,69,476,20,7200,31800,4000,420,270,3.1,0,0,24.1,77777,9,999999999,69,0.0320,0,88,999.000,999.0,99.0 +1988,1,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-7.2,32,99600,0,82,275,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,1,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-6.7,33,99600,0,0,276,0,0,0,0,0,0,0,220,3.6,0,0,24.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,1,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-6.7,37,99600,0,0,269,0,0,0,0,0,0,0,220,4.6,0,0,24.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,1,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-6.7,41,99600,0,0,263,0,0,0,0,0,0,0,220,4.1,0,0,24.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,1,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-6.7,41,99700,0,0,263,0,0,0,0,0,0,0,230,4.1,0,0,24.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,1,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-6.7,43,99700,0,0,261,0,0,0,0,0,0,0,230,3.6,0,0,24.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,1,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.7,45,99700,0,0,258,0,0,0,0,0,0,0,260,3.1,0,0,16.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,1,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-6.7,50,99600,0,0,252,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,1,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.7,54,99600,0,0,248,0,0,0,0,0,0,0,190,2.1,0,0,16.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,1,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-5.0,67,99600,0,0,246,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-5.6,64,99700,0,0,246,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-5.6,64,99700,0,0,246,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-5.6,57,99800,0,0,251,0,0,0,0,0,0,0,210,2.6,0,0,16.1,77777,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-5.6,57,99800,17,529,251,20,116,7,0,0,0,0,230,2.1,0,0,40.2,77777,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1988,1,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.0,49,99900,228,1410,262,129,652,23,13700,50100,5500,580,230,3.1,0,0,40.2,77777,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1988,1,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-4.4,39,99900,472,1410,278,322,856,35,34300,78900,7800,950,270,3.1,0,0,24.1,77777,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1988,1,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-4.4,32,100000,669,1410,289,491,929,50,52000,90200,9100,1310,270,3.1,1,0,24.1,77777,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1988,1,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-4.4,30,99900,804,1410,294,610,968,58,64400,95600,9700,1560,240,3.1,1,0,24.1,77777,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1988,1,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-4.4,28,99800,868,1410,298,671,963,78,70200,95400,11300,1900,250,3.1,3,0,24.1,77777,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1988,1,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-6.1,23,99700,856,1410,301,660,958,78,69100,94800,11300,1870,200,6.2,3,0,24.1,77777,9,999999999,80,0.0240,0,88,999.000,999.0,99.0 +1988,1,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-6.7,21,99600,770,1410,309,475,615,139,49800,61100,16300,3060,200,3.6,4,1,24.1,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,1,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-7.8,18,99500,615,1410,312,409,824,50,43400,79100,8700,1260,190,3.6,4,1,24.1,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,1,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-7.8,20,99500,403,1410,315,212,494,72,22000,42900,9700,1330,210,4.6,10,3,24.1,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,1,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-6.7,23,99500,148,1410,311,65,46,60,7100,3100,6700,1240,200,4.1,10,3,24.1,77777,9,999999999,69,0.0240,0,88,999.000,999.0,99.0 +1988,1,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-6.1,26,99500,1,106,307,0,0,0,0,0,0,0,180,5.2,10,3,24.1,77777,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-6.7,26,99500,0,0,298,0,0,0,0,0,0,0,190,4.6,8,2,16.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,1,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-6.7,31,99500,0,0,285,0,0,0,0,0,0,0,180,4.1,8,1,16.1,77777,9,999999999,69,0.0520,0,88,999.000,999.0,99.0 +1988,1,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-5.6,35,99500,0,0,284,0,0,0,0,0,0,0,180,4.6,5,1,16.1,77777,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-5.6,39,99500,0,0,272,0,0,0,0,0,0,0,180,3.6,2,0,16.1,77777,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-5.0,40,99500,0,0,273,0,0,0,0,0,0,0,180,4.1,0,0,16.1,77777,9,999999999,80,0.0520,0,88,999.000,999.0,99.0 +1988,1,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-5.0,47,99500,0,0,265,0,0,0,0,0,0,0,180,2.6,2,0,16.1,77777,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1988,1,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-5.0,47,99500,0,0,265,0,0,0,0,0,0,0,170,2.1,2,0,16.1,77777,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1988,1,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-4.4,55,99500,0,0,274,0,0,0,0,0,0,0,140,2.1,7,5,16.1,7620,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1988,1,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.0,49,99500,0,0,284,0,0,0,0,0,0,0,180,2.6,10,7,16.1,7620,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1988,1,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-4.4,53,99500,0,0,279,0,0,0,0,0,0,0,140,1.5,8,6,16.1,7620,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1988,1,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-4.4,57,99400,0,0,277,0,0,0,0,0,0,0,100,2.1,8,7,16.1,7620,9,999999999,80,0.0530,0,88,999.000,999.0,99.0 +1988,1,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.8,62,99500,0,0,272,0,0,0,0,0,0,0,120,2.6,7,3,16.1,77777,9,999999999,89,0.0530,0,88,999.000,999.0,99.0 +1988,1,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-0.6,70,99500,18,529,278,21,29,18,0,0,0,0,130,2.6,10,4,16.1,77777,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1988,1,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,99500,231,1410,290,98,199,65,10200,13300,8000,1250,140,2.6,10,4,12.9,77777,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1988,1,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.9,66,99500,476,1410,306,227,237,147,23900,22300,16400,3070,160,4.6,9,4,12.9,77777,9,999999999,139,0.0250,0,88,999.000,999.0,99.0 +1988,1,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.6,56,99500,673,1410,327,353,366,178,38000,37700,20000,3890,170,6.7,9,4,19.3,77777,9,999999999,150,0.0250,0,88,999.000,999.0,99.0 +1988,1,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,4.4,46,99500,808,1410,336,597,702,194,61300,68900,21600,4180,180,5.7,10,5,24.1,77777,9,999999999,139,0.0250,0,88,999.000,999.0,99.0 +1988,1,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,5.0,46,99400,873,1410,343,492,426,228,52000,43700,24800,5590,210,6.2,10,6,40.2,1370,9,999999999,139,0.0250,0,88,999.000,999.0,99.0 +1988,1,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,4.4,45,99300,862,1410,369,289,14,280,32800,1300,32000,11230,180,6.7,10,10,40.2,1370,9,999999999,139,0.0250,0,88,999.000,999.0,99.0 +1988,1,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,5.0,46,99200,776,1410,360,357,73,317,39100,7400,35000,9150,190,6.7,10,9,40.2,1370,9,999999999,139,0.0250,0,88,999.000,999.0,99.0 +1988,1,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,5.0,46,99200,621,1410,360,167,66,137,18300,6400,15500,4160,190,4.6,10,9,40.2,1370,9,999999999,139,0.0250,0,88,999.000,999.0,99.0 +1988,1,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,5.0,46,99100,408,1410,360,157,51,142,17100,4700,15800,3500,160,6.2,10,9,24.1,1370,9,999999999,139,0.0250,0,88,999.000,999.0,99.0 +1988,1,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.0,50,99100,153,1410,341,57,55,51,6100,3100,5800,1070,160,4.6,9,7,24.1,1370,9,999999999,150,0.0250,0,88,999.000,999.0,99.0 +1988,1,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.0,53,99100,1,106,336,5,1,4,0,0,0,0,150,4.6,9,7,16.1,1370,9,999999999,139,0.0250,0,88,999.000,999.0,99.0 +1988,1,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.6,56,99100,0,0,349,0,0,0,0,0,0,0,140,4.6,10,9,16.1,1070,9,999999999,150,0.0530,0,88,999.000,999.0,99.0 +1988,1,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.6,58,99100,0,0,356,0,0,0,0,0,0,0,120,5.7,10,10,16.1,1070,9,999999999,150,0.0530,0,88,999.000,999.0,99.0 +1988,1,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,6.1,64,99100,0,0,352,0,0,0,0,0,0,0,140,4.1,10,10,16.1,1070,9,999999999,150,0.0530,0,88,999.000,999.0,99.0 +1988,1,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.1,69,99100,0,0,306,0,0,0,0,0,0,0,140,4.6,3,1,16.1,77777,9,999999999,150,0.0530,0,88,999.000,999.0,99.0 +1988,1,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.7,72,99100,0,0,321,0,0,0,0,0,0,0,130,3.1,6,6,16.1,1070,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1988,1,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,99200,0,0,316,0,0,0,0,0,0,0,130,2.6,6,6,16.1,1370,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1988,1,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,99100,0,0,332,0,0,0,0,0,0,0,140,3.1,9,9,16.1,1370,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1988,1,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.7,80,99100,0,0,339,0,0,0,0,0,0,0,110,2.6,10,10,16.1,1370,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1988,1,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,99100,0,0,339,0,0,0,0,0,0,0,100,3.6,10,10,16.1,1370,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1988,1,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,99100,0,0,339,0,0,0,0,0,0,0,90,3.1,10,10,16.1,1370,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1988,1,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,99100,0,0,339,0,0,0,0,0,0,0,100,3.1,10,10,16.1,1370,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1988,1,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,99100,0,0,339,0,0,0,0,0,0,0,90,4.1,10,10,16.1,1370,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1988,1,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,99100,19,552,343,6,0,6,0,0,0,0,110,2.6,10,10,24.1,1520,9,999999999,170,0.1130,0,88,999.000,999.0,99.0 +1988,1,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,99100,234,1409,346,44,6,43,5000,100,5000,1570,110,4.1,10,10,24.1,1370,9,999999999,179,0.1130,0,88,999.000,999.0,99.0 +1988,1,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,99200,480,1409,346,129,6,127,14500,400,14400,4690,120,3.6,10,10,24.1,1370,9,999999999,179,0.1130,0,88,999.000,999.0,99.0 +1988,1,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,99200,677,1409,334,398,441,186,41500,43800,20400,3920,150,4.6,8,5,12.9,7620,9,999999999,189,0.1130,0,88,999.000,999.0,99.0 +1988,1,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.6,65,99100,813,1409,348,492,425,247,52900,45000,26900,6040,170,5.7,9,5,16.1,7620,9,999999999,200,0.1130,0,88,999.000,999.0,99.0 +1988,1,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,9.4,53,98900,878,1409,358,538,452,256,56200,46300,27200,6380,200,6.2,8,5,24.1,7620,9,999999999,189,0.1130,0,88,999.000,999.0,99.0 +1988,1,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,7.8,44,98800,867,1409,375,272,114,202,30300,12000,22900,5540,190,4.1,10,8,24.1,1070,9,999999999,170,0.1130,0,88,999.000,999.0,99.0 +1988,1,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,6.7,39,98800,781,1409,376,305,129,234,33400,13400,26000,6080,180,5.7,9,8,24.1,7620,9,999999999,160,0.1130,0,88,999.000,999.0,99.0 +1988,1,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.9,49,98800,626,1409,381,190,52,167,20900,5100,18600,4920,170,6.7,10,9,24.1,1370,9,999999999,179,0.1130,0,88,999.000,999.0,99.0 +1988,1,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,8.9,51,98800,413,1409,370,137,52,122,15000,4700,13600,3150,150,3.6,10,8,24.1,3050,9,999999999,179,0.1130,0,88,999.000,999.0,99.0 +1988,1,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.9,53,98800,158,1409,376,27,9,26,3000,600,2900,670,120,4.1,10,9,24.1,2740,9,999999999,179,0.1130,0,88,999.000,999.0,99.0 +1988,1,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.9,56,98900,1,129,380,0,0,0,0,0,0,0,120,3.6,10,10,24.1,2740,9,999999999,179,0.1130,0,88,999.000,999.0,99.0 +1988,1,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.9,56,98900,0,0,380,0,0,0,0,0,0,0,130,3.6,10,10,24.1,1370,9,999999999,179,0.0530,0,88,999.000,999.0,99.0 +1988,1,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.9,58,98900,0,0,377,0,0,0,0,0,0,0,120,4.1,10,10,19.3,1520,9,999999999,179,0.0530,0,88,999.000,999.0,99.0 +1988,1,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.9,6.1,63,98900,0,0,339,0,0,0,0,0,0,0,140,4.8,9,7,19.3,3660,9,999999999,179,0.0530,0,88,999.000,999.0,99.0 +1988,1,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.6,3.3,72,98900,0,0,322,0,0,0,0,0,0,0,140,5.4,8,6,19.3,1680,9,999999999,189,0.0530,0,88,999.000,999.0,99.0 +1988,1,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.3,0.5,78,98900,0,0,333,0,0,0,0,0,0,0,140,6.1,10,10,19.3,2740,9,999999999,209,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.0,-2.1,44,98700,0,0,319,0,0,0,0,0,0,0,100,6.8,10,10,19.3,820,9,999999999,110,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.7,-4.9,42,98600,0,0,306,0,0,0,0,0,0,0,110,7.5,10,10,19.3,700,9,999999999,120,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.4,-7.7,40,98500,0,0,293,0,0,0,0,0,0,0,90,8.1,10,10,19.3,670,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-10.6,42,98300,0,0,280,0,0,0,0,0,0,0,90,8.8,10,10,19.3,880,9,999999999,150,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-10.0,44,98300,0,0,281,0,0,0,0,0,0,0,110,7.2,10,10,19.3,610,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-8.9,48,98300,0,0,282,0,0,0,0,0,0,0,110,6.7,10,10,19.3,610,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.0,69,98200,0,0,282,0,0,0,0,0,0,0,100,8.2,10,10,12.9,700,9,999999999,179,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-4.4,75,98200,21,575,280,1,0,1,0,0,0,0,100,7.7,10,10,11.3,700,9,999999999,189,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-2.8,85,98200,240,1409,281,7,0,7,900,0,900,310,100,9.3,10,10,3.2,430,9,999999999,189,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-2.2,85,98100,487,1409,284,19,0,19,2500,0,2500,900,110,5.2,10,10,4.8,240,9,999999999,200,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-0.6,96,98100,685,1409,286,113,8,109,13400,500,13200,4930,100,5.2,10,10,4.8,340,9,999999999,200,0.0740,0,88,999.000,999.0,99.0 +1981,2,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,0.0,96,97900,821,1409,289,62,0,62,7900,0,7900,3180,120,5.2,10,10,4.8,240,9,999999999,200,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,97700,886,1409,294,143,0,143,17200,0,17200,6880,120,6.7,10,10,4.0,120,9,999999999,209,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,0.0,76,97500,876,1409,303,182,0,182,21500,0,21500,8340,120,6.2,10,10,4.0,120,9,999999999,220,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,97400,790,1409,321,358,20,347,39600,2100,38400,11710,120,7.2,10,10,6.4,180,9,999999999,220,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,97300,635,1409,324,215,0,215,24000,0,24000,7750,130,7.2,10,10,6.4,180,9,999999999,229,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,97200,422,1409,304,166,116,132,18000,10500,14900,2950,90,4.6,5,4,6.4,77777,9,999999999,229,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,97100,166,1409,336,13,0,13,1600,0,1600,520,110,5.7,10,10,8.0,980,9,999999999,229,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.1,70,97100,2,176,377,0,0,0,0,0,0,0,170,9.3,10,10,9.7,980,9,999999999,240,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,97000,0,0,381,0,0,0,0,0,0,0,160,9.8,10,10,11.3,850,9,999999999,229,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,97100,0,0,338,0,0,0,0,0,0,0,300,9.3,10,10,6.4,270,9,999999999,209,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,97100,0,0,335,0,0,0,0,0,0,0,310,4.6,10,10,6.4,980,9,999999999,200,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,97100,0,0,330,0,0,0,0,0,0,0,310,4.6,10,10,6.4,120,9,999999999,179,0.0530,0,88,999.000,999.0,99.0 +1981,2,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,97200,0,0,326,0,0,0,0,0,0,0,280,4.1,10,10,6.4,60,9,999999999,160,0.0530,0,88,999.000,999.0,99.0 +1981,2,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,97200,0,0,326,0,0,0,0,0,0,0,290,5.7,10,10,6.4,120,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,97300,0,0,308,0,0,0,0,0,0,0,300,7.7,10,10,9.7,270,9,999999999,139,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,97200,0,0,298,0,0,0,0,0,0,0,300,8.8,10,10,19.3,210,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,97400,0,0,297,0,0,0,0,0,0,0,300,7.7,10,10,16.1,210,9,999999999,100,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,97400,0,0,297,0,0,0,0,0,0,0,290,9.3,10,10,19.3,980,9,999999999,89,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.1,82,97500,0,0,293,0,0,0,0,0,0,0,300,7.7,10,10,19.3,580,9,999999999,80,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-3.3,82,97600,0,0,258,0,0,0,0,0,0,0,300,7.2,5,5,19.3,77777,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-3.9,82,97700,23,599,261,4,11,3,0,0,0,0,300,8.2,7,7,24.1,790,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-5.6,72,97800,244,1408,256,123,461,44,12700,33300,6900,790,280,8.8,6,6,40.2,730,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-5.6,72,98000,491,1408,256,309,706,64,32100,65200,9300,1270,290,7.7,6,6,48.3,730,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-6.1,64,98000,689,1408,263,493,843,82,52100,82600,11500,1770,300,6.2,7,7,48.3,760,9,999999999,50,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-6.1,59,98000,826,1408,260,640,874,129,65900,86000,15300,2660,290,7.7,4,4,48.3,77777,9,999999999,50,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-7.2,52,97900,892,1408,256,677,887,118,71200,88500,15000,2780,280,8.2,2,2,48.3,77777,9,999999999,50,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-8.3,44,98000,881,1408,262,652,778,168,68600,78000,19700,4070,290,8.2,3,3,48.3,77777,9,999999999,50,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-8.9,44,98000,795,1408,261,591,753,169,61600,74400,19400,3690,290,10.3,4,4,48.3,77777,9,999999999,50,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-8.9,46,98100,640,1408,259,428,689,118,44900,66600,14500,2380,290,9.3,4,4,40.2,77777,9,999999999,40,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-10.6,45,98200,427,1408,249,270,628,83,28100,55200,11300,1520,300,9.3,3,3,32.2,77777,9,999999999,40,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-11.1,49,98300,171,1408,240,78,319,41,8000,19200,5700,690,300,8.8,2,2,32.2,77777,9,999999999,40,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-11.1,51,98400,3,200,235,1,3,0,0,0,0,0,290,5.2,1,1,32.2,77777,9,999999999,40,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-10.6,55,98400,0,0,229,0,0,0,0,0,0,0,300,6.2,0,0,24.1,77777,9,999999999,40,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-11.1,55,98500,0,0,227,0,0,0,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,30,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-11.1,58,98500,0,0,225,0,0,0,0,0,0,0,300,4.6,0,0,24.1,77777,9,999999999,30,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-11.1,58,98700,0,0,225,0,0,0,0,0,0,0,290,4.6,0,0,24.1,77777,9,999999999,30,0.0540,0,88,999.000,999.0,99.0 +1981,2,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-12.8,55,98700,0,0,220,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,30,0.0540,0,88,999.000,999.0,99.0 +1981,2,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-13.9,52,98800,0,0,217,0,0,0,0,0,0,0,310,8.8,0,0,24.1,77777,9,999999999,30,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-15.0,50,98800,0,0,214,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,20,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-15.6,50,98800,0,0,212,0,0,0,0,0,0,0,310,6.2,0,0,24.1,77777,9,999999999,20,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-15.6,52,98900,0,0,210,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,20,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-15.0,57,98900,0,0,209,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,20,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.3,-15.0,59,98900,0,0,208,0,0,0,0,0,0,0,280,5.2,0,0,24.1,77777,9,999999999,10,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-14.4,64,98900,0,0,206,0,0,0,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,10,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.9,-13.9,67,99000,24,598,207,5,5,4,500,200,500,80,290,5.2,0,0,24.1,77777,9,999999999,10,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-13.9,59,99100,248,1408,212,131,605,25,14000,47700,5600,630,290,6.7,0,0,40.2,77777,9,999999999,10,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-13.9,50,99100,495,1408,219,330,844,34,35300,78500,7600,950,300,6.2,0,0,48.3,77777,9,999999999,20,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-14.4,42,99200,694,1408,224,512,945,48,54500,92100,8900,1300,300,5.2,0,0,48.3,77777,9,999999999,20,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-15.0,36,99200,831,1408,229,632,988,51,67300,97900,9300,1470,310,7.2,0,0,48.3,77777,9,999999999,20,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-15.0,34,99100,897,1408,231,695,1005,58,73800,100000,9900,1680,310,8.2,0,0,48.3,77777,9,999999999,20,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-15.0,32,99000,886,1408,235,689,1005,59,73100,99900,9900,1680,290,7.7,0,0,48.3,77777,9,999999999,20,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-15.6,28,98900,801,1408,238,613,982,59,65200,96900,9900,1570,330,7.7,0,0,48.3,77777,9,999999999,20,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-15.6,27,98900,645,1408,240,476,932,53,50800,90000,9300,1330,290,7.2,0,0,48.3,77777,9,999999999,30,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-16.1,27,98900,432,1408,238,286,824,37,30800,74600,7800,950,260,5.2,0,0,48.3,77777,9,999999999,30,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-16.1,30,98900,175,1408,232,91,534,28,9500,35700,5100,520,280,5.2,0,0,48.3,77777,9,999999999,30,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-16.1,31,98900,3,223,230,4,11,2,0,0,0,0,290,4.1,0,0,40.2,77777,9,999999999,30,0.0610,0,88,999.000,999.0,99.0 +1981,2,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-14.4,39,99000,0,0,228,0,0,0,0,0,0,0,290,3.1,0,0,40.2,77777,9,999999999,30,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-14.4,41,99000,0,0,226,0,0,0,0,0,0,0,290,2.1,0,0,32.2,77777,9,999999999,30,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-13.9,44,99000,0,0,225,0,0,0,0,0,0,0,290,3.1,0,0,32.2,77777,9,999999999,30,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-13.9,46,99000,0,0,223,0,0,0,0,0,0,0,270,3.1,0,0,32.2,77777,9,999999999,40,0.0630,0,88,999.000,999.0,99.0 +1981,2,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-13.3,52,99000,0,0,220,0,0,0,0,0,0,0,260,3.1,0,0,32.2,77777,9,999999999,40,0.0630,0,88,999.000,999.0,99.0 +1981,2,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-13.9,50,98900,0,0,219,0,0,0,0,0,0,0,250,4.6,0,0,24.1,77777,9,999999999,40,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-13.9,50,98900,0,0,219,0,0,0,0,0,0,0,270,4.1,0,0,24.1,77777,9,999999999,40,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-13.3,57,98900,0,0,216,0,0,0,0,0,0,0,260,4.1,0,0,24.1,77777,9,999999999,40,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-13.3,55,98900,0,0,218,0,0,0,0,0,0,0,260,4.1,0,0,24.1,77777,9,999999999,40,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-13.9,52,98900,0,0,217,0,0,0,0,0,0,0,270,3.6,0,0,24.1,77777,9,999999999,50,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-13.3,57,98900,0,0,220,0,0,0,0,0,0,0,270,3.6,1,1,24.1,77777,9,999999999,50,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-13.3,55,98900,0,0,233,0,0,0,0,0,0,0,270,3.6,7,6,24.1,2440,9,999999999,50,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-13.3,55,98900,26,622,225,5,0,5,600,0,600,190,260,4.1,2,2,32.2,77777,9,999999999,50,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-13.3,55,99000,252,1408,225,121,469,38,12700,34700,6500,710,240,4.1,7,2,32.2,77777,9,999999999,50,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-12.2,40,99000,500,1408,248,257,432,105,27500,40300,13100,1980,280,4.1,9,3,32.2,77777,9,999999999,50,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-11.7,35,99000,699,1408,263,389,469,157,41600,47000,18100,3280,270,3.6,9,6,32.2,7620,9,999999999,50,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-11.1,33,98900,836,1408,261,556,687,150,58700,68800,17600,3510,270,5.7,5,2,32.2,77777,9,999999999,50,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-10.6,31,98800,902,1408,270,649,864,98,67800,85700,12700,2120,260,5.2,7,3,32.2,77777,9,999999999,40,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-10.6,31,98600,892,1408,274,672,886,114,71000,88500,14700,2730,290,4.1,8,5,32.2,7620,9,999999999,40,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-10.0,30,98500,806,1408,279,606,835,132,64500,83700,16400,3040,280,10.3,9,5,32.2,7620,9,999999999,40,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-9.4,29,98500,651,1408,280,465,849,77,49400,82600,11100,1640,300,7.7,5,3,32.2,77777,9,999999999,40,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-10.0,30,98600,437,1408,275,283,728,61,29500,65300,9100,1160,320,6.2,5,3,32.2,77777,9,999999999,40,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-10.0,35,98700,180,1408,264,90,472,32,9200,31600,5100,550,310,6.7,3,2,32.2,77777,9,999999999,40,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-10.0,39,98700,4,246,258,0,2,0,0,0,0,0,310,3.6,2,2,32.2,77777,9,999999999,40,0.1100,0,88,999.000,999.0,99.0 +1981,2,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-10.0,42,98800,0,0,245,0,0,0,0,0,0,0,280,6.2,0,0,24.1,77777,9,999999999,40,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-10.6,45,98800,0,0,239,0,0,0,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,40,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-11.1,45,98800,0,0,236,0,0,0,0,0,0,0,290,4.6,0,0,24.1,77777,9,999999999,30,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-12.2,43,98900,0,0,234,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,30,0.0550,0,88,999.000,999.0,99.0 +1981,2,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-12.2,45,98900,0,0,232,0,0,0,0,0,0,0,310,3.6,0,0,24.1,77777,9,999999999,30,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-12.8,45,98900,0,0,229,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,30,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-13.9,46,98900,0,0,223,0,0,0,0,0,0,0,340,4.1,0,0,24.1,77777,9,999999999,30,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-15.0,44,98900,0,0,220,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,30,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-15.6,46,99000,0,0,216,0,0,0,0,0,0,0,320,3.6,0,0,24.1,77777,9,999999999,30,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-15.0,50,99000,0,0,214,0,0,0,0,0,0,0,360,4.1,0,0,24.1,77777,9,999999999,20,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-15.0,50,99000,0,0,214,0,0,0,0,0,0,0,360,4.1,0,0,24.1,77777,9,999999999,20,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-15.0,52,99100,0,0,213,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,20,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-15.0,52,99100,27,645,213,6,0,6,700,0,700,230,340,3.6,0,0,24.1,77777,9,999999999,20,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-12.2,53,99100,256,1407,224,140,584,35,14500,45000,6300,680,340,2.6,4,0,32.2,77777,9,999999999,30,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-14.4,37,99300,504,1407,230,332,863,25,36000,80700,7000,780,70,2.6,3,0,24.1,77777,9,999999999,30,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-15.6,30,99300,704,1407,234,506,925,45,54000,90400,8600,1260,120,4.6,4,0,24.1,77777,9,999999999,30,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-16.1,26,99200,841,1407,240,631,977,49,67200,96900,9100,1440,120,5.2,2,0,32.2,77777,9,999999999,40,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-15.6,24,99200,907,1407,246,692,993,55,73600,98900,9600,1640,180,2.1,4,0,32.2,77777,9,999999999,40,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-15.6,21,99000,897,1407,269,666,912,88,69900,90500,12000,2050,160,4.1,7,6,32.2,7620,9,999999999,40,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-15.6,21,99000,811,1407,283,409,162,316,44100,16800,34400,8370,90,3.1,10,9,32.2,7620,9,999999999,50,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-14.4,23,99000,656,1407,292,297,74,263,32600,7400,29100,7110,140,4.1,10,10,32.2,7620,9,999999999,50,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-15.0,23,98900,442,1407,289,163,34,152,17800,3200,16800,3830,130,4.1,10,10,40.2,4270,9,999999999,50,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-13.9,25,98900,185,1407,290,40,0,40,4500,0,4500,1370,130,3.6,10,10,40.2,4270,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-12.8,30,98900,5,270,287,1,0,1,0,0,0,0,100,4.6,10,10,32.2,2740,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-13.3,29,98900,0,0,286,0,0,0,0,0,0,0,100,3.1,10,10,32.2,2740,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-12.8,30,98900,0,0,287,0,0,0,0,0,0,0,120,4.1,10,10,32.2,2740,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-12.2,33,98900,0,0,285,0,0,0,0,0,0,0,120,4.1,10,10,24.1,1830,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-11.1,34,98900,0,0,289,0,0,0,0,0,0,0,110,4.6,10,10,24.1,1830,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1981,2,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-11.1,36,98800,0,0,287,0,0,0,0,0,0,0,130,6.2,10,10,24.1,1520,9,999999999,89,0.0550,0,88,999.000,999.0,99.0 +1981,2,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-11.1,36,98800,0,0,287,0,0,0,0,0,0,0,120,4.1,10,10,24.1,1520,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-10.6,39,98800,0,0,285,0,0,0,0,0,0,0,110,3.6,10,10,24.1,1520,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-10.6,39,98700,0,0,285,0,0,0,0,0,0,0,120,4.6,10,10,24.1,1520,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-10.0,40,98800,0,0,285,0,0,0,0,0,0,0,150,3.6,10,10,24.1,1520,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-6.7,57,98800,0,0,284,0,0,0,0,0,0,0,200,3.1,10,10,24.1,850,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-4.4,70,98800,0,0,285,0,0,0,0,0,0,0,180,3.1,10,10,9.7,460,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-3.9,75,98800,0,0,283,0,0,0,0,0,0,0,310,2.6,10,10,9.7,520,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-2.8,82,98900,29,668,284,1,0,1,100,0,100,40,320,1.5,10,10,3.2,760,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-2.2,85,98900,261,1407,284,11,0,11,1400,0,1400,480,340,1.0,10,10,4.8,760,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-1.7,85,98900,509,1407,287,36,0,36,4500,0,4500,1670,80,2.1,10,10,4.8,610,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.7,82,98900,709,1407,290,96,0,96,11600,0,11600,4490,70,1.5,10,10,6.4,490,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-1.7,76,98900,847,1407,294,160,0,160,19000,0,19000,7410,80,1.0,10,10,6.4,430,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-0.6,76,98800,913,1407,300,206,0,206,24200,0,24200,9370,40,1.0,10,10,6.4,490,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,98600,903,1407,308,302,5,299,34400,500,34100,12090,180,1.5,10,10,6.4,850,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.1,71,98500,817,1407,306,465,349,264,49900,36900,28400,6560,160,2.6,9,9,9.7,850,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,98500,661,1407,318,370,459,156,39400,45500,17900,3210,160,2.6,10,10,9.7,850,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,98500,447,1407,298,218,361,105,23000,32500,12700,1980,170,3.1,9,7,11.3,700,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,98400,190,1407,300,42,1,42,4700,0,4700,1440,180,3.1,9,8,11.3,1520,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,98400,5,293,311,1,0,1,0,0,0,0,170,3.1,10,10,9.7,1520,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,98400,0,0,308,0,0,0,0,0,0,0,180,3.6,10,10,9.7,1520,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,98400,0,0,311,0,0,0,0,0,0,0,120,2.1,10,10,9.7,1520,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,98400,0,0,289,0,0,0,0,0,0,0,130,1.0,7,7,9.7,1520,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,98400,0,0,306,0,0,0,0,0,0,0,130,2.6,10,10,9.7,1520,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1981,2,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,98300,0,0,308,0,0,0,0,0,0,0,130,3.6,10,10,6.4,1680,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,98300,0,0,274,0,0,0,0,0,0,0,130,2.6,4,4,6.4,77777,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,98300,0,0,271,0,0,0,0,0,0,0,150,2.6,4,4,8.0,77777,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,98300,0,0,271,0,0,0,0,0,0,0,150,1.5,4,4,8.0,77777,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,98100,0,0,268,0,0,0,0,0,0,0,110,2.6,4,4,6.4,77777,9,999999999,129,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.6,92,98100,0,0,280,0,0,0,0,0,0,0,90,1.5,8,8,6.4,1220,9,999999999,129,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,98100,0,0,297,0,0,0,0,0,0,0,90,2.6,10,10,6.4,1220,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,98100,0,0,298,0,0,0,0,0,0,0,60,3.1,10,10,6.4,120,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,98100,31,691,300,2,0,2,300,0,300,80,70,1.5,10,10,3.2,60,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.2,96,98100,265,1406,301,20,0,20,2400,0,2400,840,60,4.1,10,10,0.2,0,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,98000,514,1406,307,85,0,85,10000,0,10000,3580,80,4.1,10,10,0.4,0,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,98000,714,1406,309,67,0,67,8300,0,8300,3270,80,4.1,10,10,2.4,60,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,98000,852,1406,315,76,0,76,9500,0,9500,3880,80,3.1,10,10,2.4,90,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,97900,918,1406,316,64,0,64,8200,0,8200,3380,50,2.1,10,10,1.3,90,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,97700,908,1406,316,69,0,69,8800,0,8800,3620,60,3.1,10,10,0.8,60,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,97700,822,1406,319,46,0,46,6000,0,6000,2400,50,3.6,10,10,1.3,90,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,97600,667,1406,323,83,0,83,10000,0,10000,3870,70,3.1,10,10,1.3,90,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,97700,452,1406,322,30,0,30,3800,0,3800,1370,120,4.1,10,10,1.3,60,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,97700,195,1406,319,6,0,6,800,0,800,260,70,2.6,10,10,0.6,60,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,97700,6,316,319,0,0,0,0,0,0,0,100,4.1,10,10,0.6,60,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,97700,0,0,317,0,0,0,0,0,0,0,130,3.6,10,10,0.0,0,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,97600,0,0,316,0,0,0,0,0,0,0,130,4.1,10,10,0.0,0,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,97400,0,0,314,0,0,0,0,0,0,0,130,4.1,10,10,0.0,0,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,5.0,100,97500,0,0,314,0,0,0,0,0,0,0,180,4.6,10,10,0.0,0,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1981,2,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,97500,0,0,317,0,0,0,0,0,0,0,120,2.1,10,10,0.0,0,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1981,2,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,97400,0,0,317,0,0,0,0,0,0,0,120,2.6,10,10,0.0,0,9,999999999,150,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,97300,0,0,317,0,0,0,0,0,0,0,120,1.5,10,10,0.0,0,9,999999999,139,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,97300,0,0,317,0,0,0,0,0,0,0,130,2.6,10,10,0.0,0,9,999999999,139,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,97200,0,0,317,0,0,0,0,0,0,0,130,2.6,10,10,0.0,0,9,999999999,139,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,97100,0,0,320,0,0,0,0,0,0,0,180,2.1,10,10,0.0,0,9,999999999,139,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,97100,0,0,326,0,0,0,0,0,0,0,210,4.1,10,10,0.3,0,9,999999999,129,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,97200,0,0,331,0,0,0,0,0,0,0,240,5.2,10,10,3.2,60,9,999999999,129,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,97200,33,715,335,1,0,1,100,0,100,40,270,5.2,10,10,6.4,90,9,999999999,120,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,97300,270,1406,335,22,0,22,2700,0,2700,920,260,4.1,10,10,6.4,120,9,999999999,120,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,97400,518,1406,316,85,1,85,10000,100,10000,3600,290,6.2,9,7,11.3,340,9,999999999,110,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,97400,719,1406,316,293,192,195,32300,19800,22100,4900,310,7.2,10,8,24.1,6100,9,999999999,100,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,97500,857,1406,311,227,34,206,25000,3400,22900,7040,290,7.2,10,8,24.1,490,9,999999999,100,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.3,66,97500,924,1406,300,579,524,236,61700,54100,26000,6130,340,6.2,7,3,40.2,77777,9,999999999,89,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.0,47,97500,914,1406,304,588,689,143,62900,69900,17300,3700,310,8.2,4,3,40.2,77777,9,999999999,80,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-2.8,39,97500,828,1406,292,592,860,89,63700,86100,12800,2150,290,8.2,1,1,40.2,77777,9,999999999,80,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-5.6,32,97500,672,1406,283,490,885,71,51800,85700,10700,1500,300,9.3,0,0,40.2,77777,9,999999999,69,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-6.7,32,97600,457,1406,278,297,795,42,31900,72800,8100,1020,300,10.3,0,0,48.3,77777,9,999999999,60,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-7.8,34,97700,199,1406,268,100,533,27,10500,37700,5200,540,290,10.8,0,0,48.3,77777,9,999999999,60,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-8.3,35,97800,7,340,263,2,23,0,0,0,0,0,310,5.2,0,0,48.3,77777,9,999999999,50,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-8.3,38,97900,0,0,259,0,0,0,0,0,0,0,300,6.2,0,0,40.2,77777,9,999999999,50,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-8.9,41,97900,0,0,252,0,0,0,0,0,0,0,330,4.6,0,0,40.2,77777,9,999999999,50,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-9.4,44,97900,0,0,246,0,0,0,0,0,0,0,350,4.6,0,0,40.2,77777,9,999999999,50,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-9.4,49,98000,0,0,240,0,0,0,0,0,0,0,320,4.1,0,0,40.2,77777,9,999999999,50,0.0460,0,88,999.000,999.0,99.0 +1981,2,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-10.0,51,98000,0,0,236,0,0,0,0,0,0,0,320,3.1,0,0,40.2,77777,9,999999999,50,0.0460,0,88,999.000,999.0,99.0 +1981,2,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-11.1,51,98000,0,0,231,0,0,0,0,0,0,0,320,4.1,0,0,40.2,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-11.1,51,98000,0,0,231,0,0,0,0,0,0,0,290,2.1,0,0,40.2,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-11.7,53,98100,0,0,227,0,0,0,0,0,0,0,310,3.6,0,0,40.2,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-11.7,53,98100,0,0,227,0,0,0,0,0,0,0,290,2.1,0,0,40.2,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-13.3,52,98100,0,0,220,0,0,0,0,0,0,0,300,3.1,0,0,40.2,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-4.4,-12.2,55,98200,0,0,222,0,0,0,0,0,0,0,300,3.1,0,0,40.2,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-13.3,55,98300,0,0,222,0,0,0,0,0,0,0,300,3.1,1,1,40.2,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-12.2,60,98400,35,714,218,5,9,4,500,400,500,80,330,2.1,3,0,40.2,77777,9,999999999,40,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-11.1,43,98400,274,1405,238,132,503,35,13800,39800,6000,700,350,2.1,2,0,40.2,77777,9,999999999,50,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-13.3,29,98500,523,1405,248,338,825,33,36400,77500,7400,950,30,3.1,1,0,40.2,77777,9,999999999,50,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-15.6,20,98500,724,1405,254,508,916,38,54500,89800,8100,1140,80,2.1,1,0,40.2,77777,9,999999999,60,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-18.3,14,98500,863,1405,259,626,950,45,66900,94400,8700,1380,330,2.1,2,0,40.2,77777,9,999999999,60,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-17.8,13,98400,929,1405,277,611,706,146,65300,71700,17700,3850,50,2.1,8,3,40.2,77777,9,999999999,60,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-16.1,14,98300,919,1405,299,615,415,345,65500,44300,36500,9640,120,2.1,10,8,40.2,7620,9,999999999,69,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-14.4,15,98300,833,1405,310,300,25,285,33900,2300,32500,11120,60,1.5,10,9,40.2,7620,9,999999999,69,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-13.3,16,98200,677,1405,316,231,31,216,26000,2700,24700,8150,120,2.1,10,9,32.2,7620,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-12.8,17,98300,462,1405,323,126,2,125,14100,100,14100,4550,130,3.1,10,10,40.2,4270,9,999999999,80,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-11.1,21,98300,204,1405,320,49,1,49,5500,0,5500,1650,130,5.7,10,10,40.2,4270,9,999999999,89,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-11.1,22,98400,8,363,315,1,0,1,0,0,0,0,140,4.1,10,10,40.2,4270,9,999999999,89,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-10.0,25,98400,0,0,314,0,0,0,0,0,0,0,140,4.6,10,10,32.2,3660,9,999999999,89,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-9.4,28,98400,0,0,312,0,0,0,0,0,0,0,110,5.2,10,10,32.2,3660,9,999999999,100,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-8.3,31,98400,0,0,311,0,0,0,0,0,0,0,120,5.7,10,10,32.2,3660,9,999999999,100,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-7.8,35,98500,0,0,307,0,0,0,0,0,0,0,100,5.2,10,10,32.2,3660,9,999999999,110,0.0570,0,88,999.000,999.0,99.0 +1981,2,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-7.2,37,98400,0,0,308,0,0,0,0,0,0,0,100,6.7,10,10,32.2,3660,9,999999999,110,0.0570,0,88,999.000,999.0,99.0 +1981,2,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-6.1,42,98300,0,0,306,0,0,0,0,0,0,0,120,8.8,10,10,32.2,2440,9,999999999,110,0.0580,0,88,999.000,999.0,99.0 +1981,2,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-6.1,42,98300,0,0,306,0,0,0,0,0,0,0,110,7.2,10,10,32.2,2440,9,999999999,120,0.0580,0,88,999.000,999.0,99.0 +1981,2,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-5.0,47,98300,0,0,305,0,0,0,0,0,0,0,110,8.2,10,10,32.2,2440,9,999999999,120,0.0580,0,88,999.000,999.0,99.0 +1981,2,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-2.8,55,98100,0,0,308,0,0,0,0,0,0,0,110,9.8,10,10,32.2,2440,9,999999999,129,0.0580,0,88,999.000,999.0,99.0 +1981,2,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.1,65,98000,0,0,307,0,0,0,0,0,0,0,110,8.8,10,10,32.2,910,9,999999999,129,0.0580,0,88,999.000,999.0,99.0 +1981,2,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,98200,0,0,311,0,0,0,0,0,0,0,110,4.1,10,10,32.2,850,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1981,2,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,98100,0,0,311,0,0,0,0,0,0,0,70,5.7,10,10,32.2,700,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1981,2,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,98100,37,737,311,1,0,1,100,0,100,40,70,7.2,10,10,32.2,610,9,999999999,150,0.0580,0,88,999.000,999.0,99.0 +1981,2,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,97900,279,1405,308,25,6,24,2800,500,2700,690,60,8.2,10,10,3.2,340,9,999999999,160,0.0760,0,88,999.000,999.0,99.0 +1981,2,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,97900,528,1405,309,93,22,85,10300,2100,9500,2580,80,7.7,10,10,3.2,270,9,999999999,170,0.0760,0,88,999.000,999.0,99.0 +1981,2,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,97700,729,1405,309,107,1,106,12800,100,12800,4950,60,10.3,10,10,3.2,120,9,999999999,179,0.0760,0,88,999.000,999.0,99.0 +1981,2,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,97500,868,1405,316,161,4,159,19200,300,19000,7460,70,9.3,10,10,3.2,150,9,999999999,189,0.0760,0,88,999.000,999.0,99.0 +1981,2,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,97600,935,1405,323,177,9,171,21200,700,20700,8170,70,5.7,10,10,3.2,1070,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1981,2,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,97400,925,1405,323,166,7,162,20000,500,19600,7780,80,7.7,10,10,3.2,150,9,999999999,200,0.0760,0,88,999.000,999.0,99.0 +1981,2,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,97400,839,1405,323,191,2,191,22500,200,22400,8490,100,5.2,10,10,6.4,120,9,999999999,209,0.0760,0,88,999.000,999.0,99.0 +1981,2,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,97300,683,1405,323,152,4,150,17600,300,17500,6370,80,7.2,10,10,1.6,60,9,999999999,220,0.0760,0,88,999.000,999.0,99.0 +1981,2,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,97300,468,1405,323,78,1,77,9000,100,9000,3190,80,5.2,10,10,4.0,90,9,999999999,229,0.0760,0,88,999.000,999.0,99.0 +1981,2,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.1,96,97300,209,1405,323,2,0,2,300,0,300,90,110,5.7,10,10,4.0,90,9,999999999,240,0.0580,0,88,999.000,999.0,99.0 +1981,2,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,97300,9,386,323,0,0,0,0,0,0,0,120,6.2,10,10,4.0,90,9,999999999,250,0.0580,0,88,999.000,999.0,99.0 +1981,2,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,97400,0,0,323,0,0,0,0,0,0,0,120,4.6,10,10,4.0,90,9,999999999,250,0.0580,0,88,999.000,999.0,99.0 +1981,2,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,97400,0,0,330,0,0,0,0,0,0,0,130,3.6,10,10,3.2,60,9,999999999,240,0.0580,0,88,999.000,999.0,99.0 +1981,2,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,97300,0,0,332,0,0,0,0,0,0,0,150,6.2,10,10,1.6,60,9,999999999,240,0.0580,0,88,999.000,999.0,99.0 +1981,2,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,97300,0,0,342,0,0,0,0,0,0,0,140,6.2,10,10,3.2,60,9,999999999,240,0.0580,0,88,999.000,999.0,99.0 +1981,2,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,96900,0,0,345,0,0,0,0,0,0,0,150,8.2,10,10,3.2,60,9,999999999,229,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.1,96,96900,0,0,352,0,0,0,0,0,0,0,150,14.4,10,10,6.4,90,9,999999999,229,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.1,96,96900,0,0,352,0,0,0,0,0,0,0,180,7.7,10,10,12.9,150,9,999999999,229,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,97000,0,0,354,0,0,0,0,0,0,0,170,6.2,10,10,16.1,180,9,999999999,220,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.1,96,97000,0,0,352,0,0,0,0,0,0,0,190,5.7,10,10,12.9,120,9,999999999,220,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.1,96,97100,0,0,352,0,0,0,0,0,0,0,190,6.2,10,10,12.9,120,9,999999999,220,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,97100,0,0,355,0,0,0,0,0,0,0,180,8.2,10,10,12.9,120,9,999999999,209,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,97200,0,0,354,0,0,0,0,0,0,0,240,6.2,10,10,24.1,910,9,999999999,209,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,97400,40,761,344,2,0,2,300,0,300,80,270,5.2,9,9,24.1,670,9,999999999,200,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,89,97500,284,1404,337,23,0,23,2800,0,2800,970,300,10.8,10,10,19.3,210,9,999999999,179,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,97700,533,1404,320,27,0,27,3500,0,3500,1290,260,9.3,10,10,19.3,340,9,999999999,170,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,98000,735,1404,297,289,2,289,32200,200,32100,10170,300,9.8,10,10,3.2,120,9,999999999,150,0.0250,0,88,999.000,999.0,99.0 +1981,2,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-3.9,85,98200,874,1404,276,311,0,310,35100,0,35100,12090,300,11.3,10,10,19.3,240,9,999999999,139,0.0250,0,88,999.000,999.0,99.0 +1981,2,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.0,69,98300,940,1404,268,278,62,237,30800,6300,26500,8480,290,9.3,9,8,40.2,580,9,999999999,129,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-6.7,61,98400,930,1404,259,530,420,253,56100,43300,27300,6670,290,8.2,6,6,40.2,820,9,999999999,110,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-8.9,61,98600,844,1404,249,467,406,224,49400,41600,24300,5360,300,7.2,6,6,40.2,820,9,999999999,100,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.0,60,98800,688,1404,247,330,179,243,35700,18200,26800,6020,300,10.3,7,7,40.2,820,9,999999999,80,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-10.6,58,98900,473,1404,241,183,222,109,19800,20900,12700,2130,300,11.3,5,5,40.2,77777,9,999999999,69,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-12.2,57,99200,214,1404,230,106,478,36,11200,32800,6200,650,280,10.3,3,3,40.2,77777,9,999999999,50,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.1,-13.9,55,99200,11,410,220,15,57,7,0,0,0,0,310,10.3,1,1,24.1,77777,9,999999999,40,0.0250,0,88,999.000,999.0,99.0 +1981,2,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-6.7,-13.9,57,99300,0,0,214,0,0,0,0,0,0,0,310,6.7,0,0,24.1,77777,9,999999999,40,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.2,-14.4,57,99400,0,0,211,0,0,0,0,0,0,0,310,6.2,0,0,24.1,77777,9,999999999,40,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-7.8,-15.0,57,99600,0,0,209,0,0,0,0,0,0,0,310,7.2,0,0,24.1,77777,9,999999999,40,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.3,-16.7,51,99600,0,0,206,0,0,0,0,0,0,0,330,5.2,0,0,24.1,77777,9,999999999,40,0.0580,0,88,999.000,999.0,99.0 +1981,2,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-9.4,-17.8,51,99700,0,0,202,0,0,0,0,0,0,0,330,7.2,0,0,24.1,77777,9,999999999,40,0.0580,0,88,999.000,999.0,99.0 +1981,2,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.0,-17.8,53,99700,0,0,200,0,0,0,0,0,0,0,310,9.3,0,0,32.2,77777,9,999999999,30,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.6,-18.3,53,99800,0,0,198,0,0,0,0,0,0,0,320,5.7,0,0,32.2,77777,9,999999999,30,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.1,-18.9,53,99700,0,0,196,0,0,0,0,0,0,0,310,7.2,0,0,32.2,77777,9,999999999,30,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.7,-18.9,55,99800,0,0,194,0,0,0,0,0,0,0,330,6.7,0,0,32.2,77777,9,999999999,30,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-11.7,-18.9,55,99800,0,0,194,0,0,0,0,0,0,0,330,6.7,0,0,32.2,77777,9,999999999,30,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-12.2,-18.9,58,99800,0,0,192,0,0,0,0,0,0,0,320,8.2,0,0,32.2,77777,9,999999999,30,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-12.8,-18.3,63,99900,0,0,198,0,0,0,0,0,0,0,320,7.2,2,2,32.2,77777,9,999999999,30,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-12.2,-18.3,61,100000,42,784,199,6,28,3,500,1300,500,60,320,5.7,2,2,32.2,77777,9,999999999,30,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-10.6,-17.8,56,100200,289,1404,202,143,543,33,15100,43900,6100,690,320,5.2,6,1,40.2,77777,9,999999999,30,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-8.3,-17.2,49,100200,539,1404,210,368,844,46,39200,79600,8600,1150,360,3.1,5,1,40.2,77777,9,999999999,30,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-17.2,38,100200,740,1404,220,488,776,81,52200,76900,11500,1850,70,5.2,6,1,40.2,77777,9,999999999,30,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-16.1,34,100300,879,1404,231,644,886,92,67400,87800,12200,2030,120,3.1,8,1,40.2,77777,9,999999999,30,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-15.6,33,100200,946,1404,238,716,836,156,76500,84900,19100,4180,80,3.1,9,2,40.2,77777,9,999999999,30,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-15.0,30,100100,936,1404,245,725,967,84,76200,96200,11800,2130,70,3.6,9,2,40.2,77777,9,999999999,40,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-15.6,25,100100,850,1404,249,661,922,107,70000,91900,14200,2490,50,5.7,8,1,40.2,77777,9,999999999,40,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-16.1,23,100000,693,1404,253,509,897,69,53800,87300,10500,1530,40,2.6,10,2,40.2,77777,9,999999999,40,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-16.7,21,100000,478,1404,255,287,595,87,30000,54200,11500,1640,100,6.2,9,2,40.2,77777,9,999999999,40,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-16.7,24,100100,218,1404,249,93,354,40,9700,24400,5900,720,50,4.6,7,3,40.2,77777,9,999999999,40,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-16.1,28,100100,12,433,250,1,5,0,0,0,0,0,70,5.2,7,5,24.1,7620,9,999999999,40,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-15.6,30,100100,0,0,253,0,0,0,0,0,0,0,70,6.2,9,7,24.1,7620,9,999999999,40,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-15.6,33,100200,0,0,238,0,0,0,0,0,0,0,70,4.1,3,2,24.1,77777,9,999999999,40,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-15.0,36,100200,0,0,229,0,0,0,0,0,0,0,90,6.2,0,0,24.1,77777,9,999999999,40,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-14.4,39,100200,0,0,228,0,0,0,0,0,0,0,80,6.2,0,0,24.1,77777,9,999999999,40,0.0590,0,88,999.000,999.0,99.0 +1981,2,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-15.0,37,100200,0,0,227,0,0,0,0,0,0,0,80,6.2,0,0,24.1,77777,9,999999999,40,0.0590,0,88,999.000,999.0,99.0 +1981,2,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-15.0,40,100200,0,0,224,0,0,0,0,0,0,0,80,6.2,0,0,32.2,77777,9,999999999,40,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-15.0,40,100300,0,0,224,0,0,0,0,0,0,0,70,6.2,0,0,32.2,77777,9,999999999,40,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-15.6,40,100300,0,0,221,0,0,0,0,0,0,0,70,6.2,0,0,32.2,77777,9,999999999,40,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-15.6,44,100300,0,0,218,0,0,0,0,0,0,0,60,9.3,0,0,32.2,77777,9,999999999,40,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-16.1,42,100200,0,0,217,0,0,0,0,0,0,0,60,7.2,0,0,32.2,77777,9,999999999,40,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-16.7,42,100300,0,0,215,0,0,0,0,0,0,0,60,7.2,0,0,32.2,77777,9,999999999,40,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-16.7,42,100300,0,0,215,0,0,0,0,0,0,0,60,7.7,1,0,32.2,77777,9,999999999,40,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-16.1,44,100400,45,807,215,8,87,0,0,0,0,0,60,7.7,2,0,32.2,77777,9,999999999,40,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-16.1,37,100400,294,1403,227,144,537,33,15200,43700,6100,700,60,9.3,3,1,40.2,77777,9,999999999,50,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-16.1,31,100400,544,1403,234,348,801,40,37300,75700,7800,1080,60,8.2,7,1,40.2,77777,9,999999999,50,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-16.1,28,100400,746,1403,240,539,864,82,57600,85700,11900,1870,60,9.3,9,1,40.2,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-15.0,26,100400,885,1403,249,657,908,87,68800,90000,11900,2020,110,5.7,9,1,40.2,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-15.6,22,100300,952,1403,260,708,777,184,74700,78300,21400,4870,100,5.2,10,3,40.2,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-16.1,20,100200,941,1403,264,689,636,264,72800,65600,28600,7090,70,3.6,10,4,40.2,77777,9,999999999,69,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-15.6,19,100100,855,1403,273,585,490,288,62700,52100,30900,7440,110,4.6,10,5,40.2,77777,9,999999999,69,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-15.0,21,100100,699,1403,277,446,467,215,46200,46600,22900,4670,70,4.6,10,7,40.2,4570,9,999999999,80,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-13.9,23,100100,483,1403,289,113,15,108,12900,900,12600,4210,50,5.2,10,9,40.2,790,9,999999999,80,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-12.8,26,100000,223,1403,296,37,0,37,4300,0,4300,1380,70,6.2,10,10,40.2,7620,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-12.2,28,100000,13,456,295,1,0,1,0,0,0,0,70,6.2,10,10,32.2,880,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-11.7,30,100000,0,0,293,0,0,0,0,0,0,0,70,6.2,10,10,32.2,1520,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-11.7,31,100100,0,0,290,0,0,0,0,0,0,0,90,6.2,10,10,32.2,1520,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-12.2,30,100100,0,0,290,0,0,0,0,0,0,0,90,5.2,10,10,32.2,1010,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-11.7,31,100100,0,0,290,0,0,0,0,0,0,0,80,6.7,10,10,32.2,880,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-11.1,33,100100,0,0,291,0,0,0,0,0,0,0,80,6.7,10,10,32.2,940,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-10.6,36,100100,0,0,281,0,0,0,0,0,0,0,90,8.2,9,9,24.1,2740,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-10.6,37,100000,0,0,273,0,0,0,0,0,0,0,70,5.7,9,8,24.1,2740,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-11.1,37,100000,0,0,276,0,0,0,0,0,0,0,60,7.7,10,9,24.1,1220,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-11.1,37,100000,0,0,276,0,0,0,0,0,0,0,80,7.2,10,9,24.1,1220,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-10.6,40,100000,0,0,275,0,0,0,0,0,0,0,60,7.2,10,9,24.1,1220,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-10.0,44,100000,0,0,263,0,0,0,0,0,0,0,80,6.2,8,7,24.1,1220,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-10.0,44,100000,0,0,260,0,0,0,0,0,0,0,60,6.2,8,6,24.1,1220,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-9.4,48,100000,47,830,259,10,22,8,1100,700,1000,130,60,5.7,8,6,24.1,1220,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-9.4,42,100100,299,1403,253,144,325,76,15000,25100,9700,1400,60,6.2,5,1,40.2,77777,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-7.2,40,100100,549,1403,262,346,686,80,36800,65200,11200,1610,70,5.2,3,0,40.2,77777,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-5.0,42,100100,751,1403,276,507,789,87,54000,78100,12000,1960,80,5.7,5,1,40.2,77777,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-3.3,39,100000,890,1403,293,630,800,125,65900,79600,15200,2890,70,4.6,8,2,40.2,77777,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-1.1,45,99900,957,1403,303,670,750,161,71400,76100,19300,4370,80,4.6,10,4,32.2,77777,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.0,43,99800,947,1403,313,616,613,204,64400,61400,22800,5280,70,6.2,10,5,32.2,77777,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.6,43,99700,861,1403,320,516,453,240,54400,46400,25800,5870,50,3.6,9,6,32.2,7620,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,1.1,42,99600,704,1403,325,378,407,175,40000,40800,19500,3710,80,4.1,9,6,40.2,7620,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,1.1,44,99600,488,1403,322,196,259,107,21300,24700,12700,2090,60,3.1,9,6,40.2,7620,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.1,47,99600,228,1403,315,80,158,55,8600,10600,6800,1020,60,5.2,9,5,40.2,7620,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.6,52,99600,14,456,297,3,8,2,0,0,0,0,70,4.1,3,2,24.1,77777,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.6,58,99600,0,0,281,0,0,0,0,0,0,0,60,2.6,0,0,24.1,77777,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.6,58,99600,0,0,281,0,0,0,0,0,0,0,60,4.6,0,0,24.1,77777,9,999999999,100,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.6,63,99600,0,0,276,0,0,0,0,0,0,0,80,3.1,2,0,24.1,77777,9,999999999,100,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.0,65,99600,0,0,271,0,0,0,0,0,0,0,80,4.6,2,0,24.1,77777,9,999999999,100,0.0600,0,88,999.000,999.0,99.0 +1981,2,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,99600,0,0,269,0,0,0,0,0,0,0,90,4.1,0,0,24.1,77777,9,999999999,110,0.0600,0,88,999.000,999.0,99.0 +1981,2,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,99600,0,0,269,0,0,0,0,0,0,0,70,4.1,0,0,24.1,77777,9,999999999,110,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.6,73,99600,0,0,268,0,0,0,0,0,0,0,80,5.2,0,0,24.1,77777,9,999999999,110,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.0,73,99600,0,0,265,0,0,0,0,0,0,0,100,3.6,0,0,24.1,77777,9,999999999,120,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,0.0,76,99600,0,0,263,0,0,0,0,0,0,0,80,3.1,0,0,24.1,77777,9,999999999,120,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.0,73,99600,0,0,265,0,0,0,0,0,0,0,40,5.7,0,0,24.1,77777,9,999999999,120,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.0,73,99600,0,0,276,0,0,0,0,0,0,0,60,5.2,3,3,24.1,77777,9,999999999,129,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-0.6,70,99600,0,0,278,0,0,0,0,0,0,0,80,5.2,5,4,24.1,77777,9,999999999,129,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-0.6,70,99700,50,853,286,13,1,13,1500,0,1500,470,60,4.6,10,7,24.1,3050,9,999999999,129,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-0.6,68,99700,304,1402,299,97,40,88,10600,3400,9800,2170,60,6.7,10,9,19.3,3050,9,999999999,129,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.6,61,99700,555,1402,306,196,0,196,21700,0,21700,6700,80,6.2,10,8,19.3,3660,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.1,56,99700,757,1402,314,336,47,311,36900,4800,34300,8890,70,5.7,9,8,19.3,3660,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,2.8,55,99600,896,1402,342,311,8,306,35400,800,34900,12230,90,6.2,10,10,24.1,610,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,3.9,55,99500,963,1402,349,422,16,411,47300,1700,46200,15120,90,7.7,10,10,32.2,3660,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,4.4,50,99400,953,1402,360,348,0,348,39500,0,39500,13760,90,5.7,10,10,32.2,3660,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.0,48,99300,866,1402,357,394,0,394,43700,0,43700,13500,90,6.7,10,9,32.2,3660,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,4.4,46,99300,709,1402,366,328,32,312,36000,3300,34400,10190,90,6.7,10,10,40.2,3660,9,999999999,150,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.0,48,99200,493,1402,357,225,235,143,23900,22400,16000,2950,90,6.2,10,9,40.2,3660,9,999999999,150,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.0,50,99200,232,1402,364,54,6,53,6100,100,6000,1830,80,6.2,10,10,40.2,3660,9,999999999,150,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,4.4,53,99300,16,479,355,2,0,2,0,0,0,0,80,5.2,10,10,24.1,1830,9,999999999,150,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,4.4,55,99300,0,0,352,0,0,0,0,0,0,0,80,5.2,10,10,24.1,1830,9,999999999,150,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,3.9,53,99300,0,0,351,0,0,0,0,0,0,0,90,7.2,10,10,24.1,1830,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,3.3,53,99300,0,0,348,0,0,0,0,0,0,0,90,6.2,10,10,24.1,1220,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,99300,0,0,348,0,0,0,0,0,0,0,90,7.7,10,10,24.1,1220,9,999999999,170,0.0610,0,88,999.000,999.0,99.0 +1981,2,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.2,51,99200,0,0,344,0,0,0,0,0,0,0,100,5.7,10,10,24.1,7620,9,999999999,179,0.0610,0,88,999.000,999.0,99.0 +1981,2,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,2.8,55,99200,0,0,321,0,0,0,0,0,0,0,90,5.7,10,7,24.1,3050,9,999999999,179,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,3.3,59,99200,0,0,340,0,0,0,0,0,0,0,80,5.2,10,10,24.1,1680,9,999999999,189,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,5.0,66,99100,0,0,342,0,0,0,0,0,0,0,90,6.2,10,10,24.1,1680,9,999999999,189,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.6,71,99100,0,0,340,0,0,0,0,0,0,0,100,5.7,10,10,24.1,1680,9,999999999,200,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,99100,0,0,341,0,0,0,0,0,0,0,90,5.2,10,10,24.1,1680,9,999999999,200,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,99100,0,0,326,0,0,0,0,0,0,0,100,5.7,10,8,24.1,790,9,999999999,200,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,99200,0,0,340,0,0,0,0,0,0,0,80,5.2,10,10,19.3,640,9,999999999,209,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,99200,53,876,331,7,0,7,900,0,900,270,70,5.2,10,9,24.1,2740,9,999999999,200,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,99200,309,1401,333,63,0,63,7200,0,7200,2330,100,6.7,10,9,24.1,2740,9,999999999,179,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,99200,560,1401,342,186,34,173,20500,3300,19100,4780,100,8.8,10,9,32.2,2740,9,999999999,170,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,99200,763,1401,356,240,1,239,27200,100,27100,9410,120,6.7,10,9,32.2,2740,9,999999999,160,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.9,65,99100,902,1401,369,387,28,369,43400,2900,41500,13610,110,6.2,10,10,32.2,2740,9,999999999,139,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,9.4,60,99100,969,1401,378,405,13,396,45600,1400,44700,14930,120,7.2,10,10,32.2,3050,9,999999999,129,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,9.4,56,99000,958,1401,365,428,41,400,47000,4200,44100,13090,110,6.2,9,8,40.2,7620,9,999999999,120,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.0,55,98900,872,1401,372,354,64,314,38900,6500,34800,10030,120,4.1,10,8,40.2,3050,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.9,49,98900,714,1401,392,304,12,298,33600,1200,33000,10070,150,7.2,10,10,32.2,3050,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,8.9,47,98900,498,1401,384,170,31,159,18600,2900,17600,4220,160,8.2,10,9,24.1,3050,9,999999999,80,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.9,52,98900,237,1401,386,38,2,38,4400,0,4400,1430,120,5.2,10,10,24.1,3050,9,999999999,60,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.9,56,98900,17,502,380,1,1,1,0,0,0,0,120,5.2,10,10,24.1,3050,9,999999999,50,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.9,58,98900,0,0,377,0,0,0,0,0,0,0,110,4.1,10,10,24.1,3050,9,999999999,69,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,9.4,65,98900,0,0,372,0,0,0,0,0,0,0,110,5.2,10,10,24.1,1830,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,9.4,65,98900,0,0,362,0,0,0,0,0,0,0,90,5.2,10,9,24.1,3050,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,98900,0,0,367,0,0,0,0,0,0,0,90,5.2,10,10,24.1,1830,9,999999999,120,0.0620,0,88,999.000,999.0,99.0 +1981,2,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,98900,0,0,367,0,0,0,0,0,0,0,120,7.2,10,10,24.1,1830,9,999999999,139,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,98800,0,0,354,0,0,0,0,0,0,0,110,6.7,10,9,24.1,2740,9,999999999,160,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,98800,0,0,353,0,0,0,0,0,0,0,110,6.2,10,9,24.1,460,9,999999999,179,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,98800,0,0,350,0,0,0,0,0,0,0,110,5.7,10,9,24.1,460,9,999999999,200,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,98700,0,0,360,0,0,0,0,0,0,0,110,4.6,10,10,24.1,430,9,999999999,220,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,98700,0,0,360,0,0,0,0,0,0,0,100,4.1,10,10,24.1,610,9,999999999,229,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,98700,0,0,358,0,0,0,0,0,0,0,100,4.6,10,10,24.1,310,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,98800,0,0,358,0,0,0,0,0,0,0,90,5.7,10,10,24.1,310,9,999999999,270,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,98800,56,899,358,1,0,1,100,0,100,40,80,4.6,10,10,11.3,210,9,999999999,270,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,98800,315,1401,358,19,1,19,2400,0,2400,830,110,4.6,10,10,9.7,210,9,999999999,270,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,98800,566,1401,361,53,1,53,6600,100,6500,2460,110,5.2,10,10,8.0,150,9,999999999,259,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,96,98800,768,1401,362,63,1,62,7900,100,7800,3120,90,6.2,10,10,3.2,120,9,999999999,259,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,98800,908,1401,365,122,1,121,14900,100,14800,6030,110,4.1,10,10,8.0,120,9,999999999,259,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,96,98700,974,1401,366,92,1,91,11600,100,11500,4780,110,6.2,10,10,3.2,120,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,96,98600,964,1401,366,83,0,83,10500,0,10500,4380,110,4.1,10,10,6.4,120,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,98600,877,1401,368,78,0,78,9800,0,9800,4020,110,4.1,10,10,2.4,120,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,98500,720,1401,372,89,0,89,10800,0,10800,4230,110,5.2,10,10,8.0,120,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,98500,503,1401,376,44,1,44,5500,0,5400,2010,120,5.2,10,10,6.4,340,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,98500,242,1401,376,16,1,16,2000,0,2000,670,90,4.6,10,10,8.0,790,9,999999999,240,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,14.4,97,98500,19,525,373,1,0,1,0,0,0,0,90,5.2,10,10,8.0,120,9,999999999,240,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,14.4,97,98600,0,0,373,0,0,0,0,0,0,0,80,4.6,10,10,6.4,90,9,999999999,240,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,96,98600,0,0,369,0,0,0,0,0,0,0,90,6.7,10,10,6.4,120,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.9,100,98700,0,0,366,0,0,0,0,0,0,0,80,7.2,10,10,6.4,120,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.9,100,98700,0,0,366,0,0,0,0,0,0,0,90,6.2,10,10,6.4,120,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1981,2,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.9,100,98600,0,0,366,0,0,0,0,0,0,0,80,5.7,10,10,4.8,90,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1981,2,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98600,0,0,363,0,0,0,0,0,0,0,70,5.2,10,10,4.8,90,9,999999999,250,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98500,0,0,363,0,0,0,0,0,0,0,90,5.7,10,10,4.8,60,9,999999999,259,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98500,0,0,363,0,0,0,0,0,0,0,90,5.2,10,10,4.8,60,9,999999999,259,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98400,0,0,363,0,0,0,0,0,0,0,90,5.2,10,10,4.8,60,9,999999999,259,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.9,100,98400,0,0,366,0,0,0,0,0,0,0,100,5.7,10,10,2.4,60,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.9,100,98400,0,0,366,0,0,0,0,0,0,0,100,5.2,10,10,4.0,90,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,96,98400,0,0,369,0,0,0,0,0,0,0,120,4.6,10,10,4.0,120,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,96,98400,60,922,369,1,0,1,100,0,100,40,90,5.2,10,10,4.0,90,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,96,98400,320,1400,369,45,3,44,5200,100,5200,1770,120,5.7,10,10,3.2,120,9,999999999,259,0.0340,0,88,999.000,999.0,99.0 +1981,2,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,96,98400,572,1400,369,123,8,120,14200,500,14000,4940,90,3.6,10,10,6.4,180,9,999999999,259,0.0340,0,88,999.000,999.0,99.0 +1981,2,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,96,98400,774,1400,369,164,9,159,19200,700,18900,7090,120,5.2,10,10,6.4,180,9,999999999,250,0.0340,0,88,999.000,999.0,99.0 +1981,2,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,96,98400,913,1400,369,178,9,172,21200,700,20800,8140,110,6.7,10,10,6.4,180,9,999999999,250,0.0340,0,88,999.000,999.0,99.0 +1981,2,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.9,90,98300,980,1400,375,107,1,106,13300,100,13300,5500,120,5.2,10,10,9.7,180,9,999999999,250,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,98200,970,1400,376,90,1,89,11300,100,11300,4670,120,4.6,10,10,4.8,90,9,999999999,240,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,14.4,90,98200,883,1400,378,84,1,83,10500,100,10400,4260,130,3.6,10,10,11.3,180,9,999999999,240,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,98100,725,1400,385,108,1,107,12900,100,12900,4980,120,5.2,10,10,11.3,180,9,999999999,229,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,98100,508,1400,385,39,1,39,4900,0,4900,1800,120,6.2,10,10,11.3,310,9,999999999,229,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,98100,246,1400,382,15,1,15,1900,0,1900,640,110,4.1,10,10,16.1,240,9,999999999,220,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,14.4,90,98100,21,548,378,1,1,1,0,0,0,0,120,6.2,10,10,11.3,120,9,999999999,220,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,98100,0,0,376,0,0,0,0,0,0,0,110,5.7,10,10,2.4,90,9,999999999,229,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,14.4,100,98200,0,0,370,0,0,0,0,0,0,0,80,4.1,10,10,1.6,60,9,999999999,229,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,14.4,100,98200,0,0,370,0,0,0,0,0,0,0,100,5.2,10,10,1.6,60,9,999999999,229,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.9,100,98200,0,0,366,0,0,0,0,0,0,0,100,5.2,10,10,0.2,30,9,999999999,240,0.0630,0,88,999.000,999.0,99.0 +1981,2,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.9,100,98100,0,0,366,0,0,0,0,0,0,0,90,4.6,10,10,0.2,30,9,999999999,250,0.0630,0,88,999.000,999.0,99.0 +1981,2,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.9,100,98100,0,0,366,0,0,0,0,0,0,0,100,5.2,10,10,0.2,30,9,999999999,250,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98000,0,0,363,0,0,0,0,0,0,0,90,4.6,10,10,0.2,30,9,999999999,250,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98000,0,0,363,0,0,0,0,0,0,0,80,3.6,10,10,0.2,30,9,999999999,259,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98000,0,0,363,0,0,0,0,0,0,0,0,0.0,10,10,3.2,90,9,999999999,270,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,97900,0,0,363,0,0,0,0,0,0,0,70,4.1,10,10,3.2,60,9,999999999,270,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.8,100,97900,0,0,360,0,0,0,0,0,0,0,60,3.6,10,10,3.2,60,9,999999999,279,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.8,100,97900,0,0,360,0,0,0,0,0,0,0,60,2.1,10,10,4.8,60,9,999999999,279,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.8,100,97900,63,945,360,1,0,1,100,0,100,40,60,3.1,10,10,2.4,90,9,999999999,270,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,96,98000,326,1400,359,12,1,12,1600,0,1600,540,0,0.0,10,10,4.8,90,9,999999999,270,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,96,98000,577,1400,359,52,1,52,6500,100,6400,2430,300,1.5,10,10,2.0,60,9,999999999,259,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,96,97900,780,1400,366,91,1,90,11100,100,11100,4400,300,3.1,10,10,3.2,60,9,999999999,250,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,97900,919,1400,371,82,1,81,10300,100,10300,4220,300,3.6,10,10,11.3,210,9,999999999,240,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.9,78,97800,986,1400,376,224,1,223,26400,100,26400,10360,300,3.1,10,9,12.9,340,9,999999999,229,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,97700,975,1400,369,307,44,276,33800,4500,30700,9970,280,5.2,9,8,16.1,370,9,999999999,229,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.2,63,97600,888,1400,374,513,306,320,54800,32600,34000,8630,270,4.1,9,8,19.3,7620,9,999999999,220,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.2,63,97600,730,1400,374,251,32,234,28300,2800,26800,9030,290,4.1,10,8,19.3,7620,9,999999999,209,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.7,61,97500,513,1400,382,224,137,174,24200,13200,19300,4010,270,4.1,10,9,19.3,7620,9,999999999,200,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.7,61,97500,251,1400,364,107,137,83,11500,10100,9700,1780,300,4.1,8,6,24.1,7620,9,999999999,200,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.6,63,97500,22,571,354,3,10,2,0,0,0,0,280,6.2,6,6,16.1,7620,9,999999999,189,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,9.4,67,97500,0,0,327,0,0,0,0,0,0,0,280,3.6,4,1,24.1,77777,9,999999999,189,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,97500,0,0,312,0,0,0,0,0,0,0,260,3.1,0,0,24.1,77777,9,999999999,179,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,97500,0,0,342,0,0,0,0,0,0,0,260,5.2,7,7,24.1,1830,9,999999999,179,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,97400,0,0,312,0,0,0,0,0,0,0,240,4.6,0,0,24.1,77777,9,999999999,170,0.0640,0,88,999.000,999.0,99.0 +1981,2,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,97400,0,0,330,0,0,0,0,0,0,0,250,5.2,5,5,24.1,77777,9,999999999,160,0.0640,0,88,999.000,999.0,99.0 +1981,2,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,97400,0,0,307,0,0,0,0,0,0,0,270,4.6,0,0,16.1,77777,9,999999999,160,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,97300,0,0,305,0,0,0,0,0,0,0,260,5.7,0,0,16.1,77777,9,999999999,150,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,97200,0,0,316,0,0,0,0,0,0,0,250,6.2,2,2,19.3,77777,9,999999999,150,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,97200,0,0,306,0,0,0,0,0,0,0,260,6.2,0,0,19.3,77777,9,999999999,150,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,97200,0,0,306,0,0,0,0,0,0,0,260,6.2,0,0,19.3,77777,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,97200,0,0,303,0,0,0,0,0,0,0,290,6.2,0,0,19.3,77777,9,999999999,139,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,97300,0,0,300,0,0,0,0,0,0,0,290,6.2,0,0,19.3,77777,9,999999999,129,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,97300,67,968,297,23,139,8,2000,8000,1400,200,290,5.2,0,0,19.3,77777,9,999999999,129,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.7,72,97400,331,1399,301,177,603,36,18800,51000,6700,770,300,7.7,0,0,24.1,77777,9,999999999,120,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,3.3,49,97400,583,1399,306,383,801,52,40800,76400,8800,1260,300,8.2,0,0,32.2,77777,9,999999999,120,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.1,38,97400,786,1399,311,560,894,61,59400,88100,9700,1590,300,7.2,0,0,32.2,77777,9,999999999,120,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.1,34,97500,925,1399,318,688,949,64,72900,94600,10100,1840,300,8.8,0,0,32.2,77777,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.7,34,97400,992,1399,328,752,963,73,79300,96200,10900,2140,300,9.3,1,1,40.2,77777,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,2.2,34,97400,981,1399,324,741,958,73,78100,95700,10800,2110,300,10.8,0,0,48.3,77777,9,999999999,110,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,2.2,33,97400,893,1399,333,611,833,82,64200,82700,11200,2010,310,7.7,1,1,40.2,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,1.7,31,97400,735,1399,329,526,885,64,55700,86700,10000,1550,320,9.3,0,0,40.2,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,1.7,33,97400,518,1399,324,346,799,53,36800,74800,9000,1180,320,8.8,0,0,40.2,77777,9,999999999,100,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.7,35,97500,256,1399,319,136,558,36,14100,43000,6200,690,310,6.2,0,0,40.2,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,1.7,42,97500,24,595,307,22,92,10,1500,3700,1300,190,300,3.6,0,0,40.2,77777,9,999999999,89,0.0430,0,88,999.000,999.0,99.0 +1981,2,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.2,49,97600,0,0,301,0,0,0,0,0,0,0,300,2.6,0,0,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,2.2,53,97600,0,0,296,0,0,0,0,0,0,0,280,4.6,0,0,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.8,61,97600,0,0,290,0,0,0,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.2,57,97600,0,0,292,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1981,2,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.2,59,97700,0,0,289,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1981,2,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,97600,0,0,286,0,0,0,0,0,0,0,290,3.1,0,0,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.7,66,97600,0,0,280,0,0,0,0,0,0,0,310,3.6,0,0,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.7,66,97600,0,0,280,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,97600,0,0,275,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,97700,0,0,275,0,0,0,0,0,0,0,280,4.6,0,0,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.7,76,97700,0,0,271,0,0,0,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.7,76,97700,0,0,271,0,0,0,0,0,0,0,280,4.1,0,0,32.2,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.7,76,97800,70,1014,271,27,213,4,2200,13200,1200,150,300,2.6,3,0,40.2,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,2.2,61,97800,337,1398,287,184,661,27,19900,56700,6200,740,320,5.2,3,0,40.2,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.8,49,97900,589,1398,303,401,872,37,43200,83500,7900,1060,330,5.7,2,0,40.2,77777,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,1.7,37,97900,792,1398,323,575,961,35,62100,95100,8100,1110,320,5.2,1,1,40.2,77777,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,0.6,30,97900,931,1398,333,698,921,88,73200,91600,12000,2160,300,4.1,2,2,40.2,77777,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-1.1,23,97800,997,1398,342,765,1005,51,81500,100600,9400,1690,290,4.6,2,2,40.2,77777,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-1.7,21,97700,986,1398,350,723,836,136,76000,83700,16700,3570,320,5.2,7,3,40.2,77777,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,0.0,22,97600,899,1398,363,764,809,247,78400,79500,27100,5750,310,5.2,7,5,32.2,7620,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,0.0,23,97600,740,1398,363,468,589,158,50500,59600,18800,3390,300,5.2,8,6,32.2,7620,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-1.7,21,97600,522,1398,358,237,380,96,25700,36000,12200,1810,320,6.2,9,6,32.2,7620,9,999999999,69,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-0.6,25,97600,260,1398,361,72,20,68,7900,1600,7600,1680,320,4.1,9,8,32.2,7620,9,999999999,69,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-0.6,28,97600,26,618,361,4,1,4,500,0,500,160,320,4.1,10,9,40.2,7620,9,999999999,69,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,0.0,31,97600,0,0,366,0,0,0,0,0,0,0,320,3.1,10,10,40.2,7620,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,0.6,34,97600,0,0,364,0,0,0,0,0,0,0,320,4.1,10,10,40.2,7620,9,999999999,80,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,0.6,39,97600,0,0,353,0,0,0,0,0,0,0,320,2.6,10,10,40.2,7620,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.2,46,97600,0,0,352,0,0,0,0,0,0,0,290,4.1,10,10,40.2,7620,9,999999999,89,0.0650,0,88,999.000,999.0,99.0 +1981,2,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.2,46,97600,0,0,352,0,0,0,0,0,0,0,300,3.1,10,10,32.2,3350,9,999999999,100,0.0650,0,88,999.000,999.0,99.0 +1981,2,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,0.6,36,97500,0,0,359,0,0,0,0,0,0,0,360,2.6,10,10,32.2,3050,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,0.0,35,97500,0,0,358,0,0,0,0,0,0,0,0,0.0,10,10,32.2,3050,9,999999999,110,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,1.7,44,97500,0,0,352,0,0,0,0,0,0,0,0,0.0,10,10,32.2,3050,9,999999999,120,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,3.3,53,97500,0,0,339,0,0,0,0,0,0,0,130,2.1,10,9,24.1,3050,9,999999999,120,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,97600,0,0,338,0,0,0,0,0,0,0,0,0.0,10,9,24.1,6100,9,999999999,129,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.1,47,97600,0,0,333,0,0,0,0,0,0,0,90,4.1,10,9,24.1,3050,9,999999999,129,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.1,50,97600,0,0,321,0,0,0,0,0,0,0,90,4.6,10,8,40.2,3050,9,999999999,139,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,1.1,52,97600,74,1037,319,24,13,23,2600,800,2600,560,90,3.6,10,8,40.2,3050,9,999999999,150,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.0,45,97600,343,1398,330,83,31,76,9200,2700,8500,2020,90,4.6,10,9,40.2,1830,9,999999999,160,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.0,42,97600,595,1398,335,134,2,133,15400,100,15300,5440,100,5.2,10,9,40.2,1830,9,999999999,170,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,0.6,40,97600,797,1398,341,284,16,275,32100,1500,31200,10590,110,5.2,10,9,40.2,3050,9,999999999,179,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.1,34,97500,937,1398,357,558,214,415,59900,22400,44900,12120,110,4.1,9,9,40.2,3050,9,999999999,189,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,2.2,33,97400,1003,1398,367,589,278,391,64000,29300,42900,12170,150,4.1,9,9,32.2,3050,9,999999999,200,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,4.4,35,97300,992,1398,371,345,9,339,39500,900,38900,13950,180,3.1,10,8,24.1,3050,9,999999999,209,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,6.1,41,97200,904,1398,388,118,2,117,14500,100,14400,5850,230,2.6,10,10,19.3,1220,9,999999999,220,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,97300,746,1398,368,45,2,44,5800,100,5700,2240,290,2.1,10,10,6.4,880,9,999999999,229,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,97200,527,1398,371,35,2,34,4400,100,4300,1600,120,6.2,10,10,6.4,850,9,999999999,240,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,96,97100,265,1398,366,24,6,23,2700,500,2600,660,130,6.2,10,10,8.0,1160,9,999999999,250,0.0620,0,88,999.000,999.0,99.0 +1981,2,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,96,97100,27,641,366,1,1,1,100,0,100,30,130,5.2,10,10,8.0,910,9,999999999,259,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,96,97100,0,0,369,0,0,0,0,0,0,0,140,6.2,10,10,6.4,180,9,999999999,250,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,96,97100,0,0,369,0,0,0,0,0,0,0,180,5.2,10,10,12.9,850,9,999999999,229,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,96,97100,0,0,369,0,0,0,0,0,0,0,180,5.7,10,10,12.9,240,9,999999999,220,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,96,97100,0,0,366,0,0,0,0,0,0,0,210,6.7,10,10,12.9,370,9,999999999,200,0.0660,0,88,999.000,999.0,99.0 +1981,2,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,97200,0,0,351,0,0,0,0,0,0,0,270,11.3,10,10,12.9,460,9,999999999,189,0.0660,0,88,999.000,999.0,99.0 +1981,2,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,97200,0,0,336,0,0,0,0,0,0,0,300,8.2,10,10,24.1,1010,9,999999999,170,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.0,77,97300,0,0,332,0,0,0,0,0,0,0,270,5.7,10,10,24.1,1830,9,999999999,150,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,97300,0,0,317,0,0,0,0,0,0,0,270,6.2,10,9,32.2,2130,9,999999999,139,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,97300,0,0,286,0,0,0,0,0,0,0,260,4.6,2,2,32.2,77777,9,999999999,129,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,79,97300,0,0,274,0,0,0,0,0,0,0,250,5.2,0,0,32.2,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,97300,0,0,271,0,0,0,0,0,0,0,230,4.6,0,0,32.2,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,97400,0,0,274,0,0,0,0,0,0,0,230,5.2,1,1,32.2,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,97400,78,1059,269,26,159,9,2300,9400,1600,220,220,4.1,0,0,40.2,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,97400,349,1397,273,197,681,30,21300,58900,6600,790,240,6.2,0,0,48.3,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.1,61,97400,601,1397,281,405,843,46,43300,80800,8500,1210,240,7.7,0,0,48.3,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,46,97400,803,1397,289,579,909,60,61500,89800,9700,1600,240,8.2,0,0,48.3,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-0.6,42,97300,943,1397,308,688,900,84,72200,89600,11600,2160,220,8.2,3,3,48.3,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.7,36,97300,1009,1397,319,621,523,245,66900,54400,27500,7200,220,10.3,8,6,48.3,1520,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-3.3,30,97100,997,1397,320,673,561,274,71500,58200,29800,7990,240,10.3,9,6,48.3,1830,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-3.9,27,97000,909,1397,319,456,256,290,49200,27400,31300,7800,240,9.3,8,4,48.3,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-3.3,26,97000,751,1397,325,475,525,195,50300,53100,21600,4300,240,12.9,5,4,56.3,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-5.0,24,97000,532,1397,320,330,567,116,34000,52500,13900,2150,250,8.2,4,4,56.3,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-7.8,21,97100,269,1397,309,111,296,56,11900,21900,7700,1010,270,9.3,3,3,56.3,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-7.2,23,97100,29,664,298,13,20,11,1400,800,1300,230,270,6.7,1,1,56.3,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-7.2,26,97200,0,0,286,0,0,0,0,0,0,0,270,7.2,0,0,56.3,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-6.7,33,97300,0,0,276,0,0,0,0,0,0,0,270,5.2,0,0,56.3,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-7.2,32,97300,0,0,275,0,0,0,0,0,0,0,270,5.2,0,0,48.3,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-6.7,36,97400,0,0,271,0,0,0,0,0,0,0,270,5.2,0,0,48.3,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1981,2,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-6.1,40,97400,0,0,268,0,0,0,0,0,0,0,260,4.1,0,0,48.3,77777,9,999999999,80,0.1010,0,88,999.000,999.0,99.0 +1981,2,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-6.7,40,97400,0,0,265,0,0,0,0,0,0,0,250,4.1,0,0,40.2,77777,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-6.7,41,97400,0,0,263,0,0,0,0,0,0,0,250,4.1,0,0,40.2,77777,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-6.1,45,97300,0,0,261,0,0,0,0,0,0,0,260,4.1,0,0,40.2,77777,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.6,47,97300,0,0,262,0,0,0,0,0,0,0,270,4.1,0,0,40.2,77777,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-5.0,53,97400,0,0,258,0,0,0,0,0,0,0,270,4.1,0,0,40.2,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-5.0,53,97500,0,0,258,0,0,0,0,0,0,0,270,4.6,0,0,40.2,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-5.0,57,97500,0,0,254,0,0,0,0,0,0,0,260,4.1,0,0,40.2,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-5.0,51,97600,83,1082,260,32,254,3,2600,16100,1300,120,270,4.6,0,0,48.3,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-4.4,44,97700,355,1396,271,218,738,34,23500,64000,7200,840,280,7.2,0,0,48.3,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-3.9,39,97700,607,1396,280,423,888,41,45400,85300,8200,1130,280,7.2,0,0,48.3,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-3.9,34,97800,809,1396,290,599,955,49,64000,94500,9000,1420,290,9.3,0,0,48.3,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-5.6,27,97800,948,1396,294,727,994,56,77300,99300,9700,1730,290,7.7,0,0,48.3,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-6.1,23,97800,1015,1396,301,789,1009,59,83700,101000,10000,1920,300,9.3,0,0,48.3,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-5.0,24,97700,1003,1396,305,775,993,64,81900,99300,10300,2000,290,8.2,0,0,48.3,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-3.9,24,97700,915,1396,311,701,977,64,74200,97300,10200,1820,290,8.8,0,0,48.3,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-3.9,25,97800,756,1396,308,560,936,56,59500,92000,9500,1480,290,7.2,0,0,48.3,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-3.9,25,97800,537,1396,308,369,844,47,39300,79600,8600,1160,310,5.7,0,0,48.3,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-4.4,26,97900,274,1396,303,152,627,31,16300,50800,6300,700,280,5.2,0,0,48.3,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-4.4,30,98000,31,663,294,23,82,13,1900,2800,1700,220,300,5.2,0,0,48.3,77777,9,999999999,60,0.0650,0,88,999.000,999.0,99.0 +1981,2,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-4.4,34,98000,0,0,287,0,0,0,0,0,0,0,290,4.6,0,0,48.3,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-4.4,39,98000,0,0,278,0,0,0,0,0,0,0,270,3.1,0,0,48.3,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-4.4,44,98100,0,0,271,0,0,0,0,0,0,0,280,3.6,0,0,32.2,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-3.9,47,98100,0,0,270,0,0,0,0,0,0,0,300,3.1,0,0,32.2,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-4.4,44,98100,0,0,271,0,0,0,0,0,0,0,290,3.6,0,0,24.1,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1981,2,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-4.4,45,98100,0,0,269,0,0,0,0,0,0,0,270,2.1,0,0,40.2,77777,9,999999999,60,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-4.4,53,98100,0,0,261,0,0,0,0,0,0,0,290,2.6,0,0,40.2,77777,9,999999999,50,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-4.4,47,98100,0,0,267,0,0,0,0,0,0,0,270,3.6,0,0,40.2,77777,9,999999999,50,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-4.4,55,98100,0,0,259,0,0,0,0,0,0,0,0,0.0,3,0,40.2,77777,9,999999999,50,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.9,60,98100,0,0,257,0,0,0,0,0,0,0,300,3.1,3,0,40.2,77777,9,999999999,50,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-3.9,64,98200,0,0,258,0,0,0,0,0,0,0,270,2.6,5,1,32.2,77777,9,999999999,50,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-4.4,64,98200,0,0,255,0,0,0,0,0,0,0,290,2.6,7,1,40.2,77777,9,999999999,50,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.9,60,98200,87,1105,262,27,136,12,2500,7300,1900,230,270,2.6,7,1,48.3,77777,9,999999999,50,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-3.3,47,98300,361,1396,281,212,687,38,22800,59800,7300,880,310,2.1,7,2,48.3,77777,9,999999999,50,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-3.3,37,98300,613,1396,297,416,811,63,44000,77800,9800,1370,320,4.1,5,2,48.3,77777,9,999999999,60,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-2.8,29,98300,815,1396,315,575,882,63,60900,87200,9800,1650,300,4.1,4,2,48.3,77777,9,999999999,60,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-2.8,25,98300,954,1396,330,720,968,62,76300,96600,10000,1860,360,5.2,4,3,48.3,77777,9,999999999,60,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-2.8,23,98200,1020,1396,343,752,865,122,80300,87300,16300,3530,310,5.2,8,6,48.3,9140,9,999999999,60,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-3.3,21,98100,1009,1396,358,643,587,221,67300,59000,24600,6300,320,4.1,9,8,48.3,9140,9,999999999,60,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-3.3,19,98100,920,1396,374,535,351,305,57600,37600,32800,8350,320,5.2,10,9,48.3,9140,9,999999999,60,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-3.9,19,98000,761,1396,378,398,245,265,43200,25300,29400,6830,300,4.1,10,10,48.3,9140,9,999999999,60,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-3.3,21,98000,542,1396,348,215,150,157,23500,14700,17800,3660,320,4.1,8,6,48.3,7620,9,999999999,69,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-2.8,24,98000,278,1396,335,80,80,64,8800,6300,7500,1380,300,3.1,6,4,48.3,7620,9,999999999,69,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-3.3,25,98000,33,686,319,11,69,3,800,3700,600,80,270,2.6,3,1,24.1,77777,9,999999999,69,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-2.2,33,98000,0,0,301,0,0,0,0,0,0,0,270,3.1,2,0,24.1,77777,9,999999999,69,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.1,39,98100,0,0,297,0,0,0,0,0,0,0,280,3.6,2,0,24.1,77777,9,999999999,69,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.1,40,98100,0,0,295,0,0,0,0,0,0,0,290,3.6,2,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,46,98100,0,0,289,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1981,2,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-0.6,45,98100,0,0,291,0,0,0,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,80,0.0690,0,88,999.000,999.0,99.0 +1981,2,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.0,50,98100,0,0,287,0,0,0,0,0,0,0,280,4.6,0,0,24.1,77777,9,999999999,80,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.0,54,98100,0,0,282,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,80,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,0.0,52,98100,0,0,284,0,0,0,0,0,0,0,290,4.6,0,0,24.1,77777,9,999999999,80,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.0,56,98100,0,0,280,0,0,0,0,0,0,0,290,3.1,0,0,24.1,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,60,98100,0,0,276,0,0,0,0,0,0,0,300,3.1,0,0,19.3,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.0,56,98100,0,0,280,0,0,0,0,0,0,0,310,3.6,0,0,19.3,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.0,56,98200,0,0,280,0,0,0,0,0,0,0,310,4.1,0,0,19.3,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.6,52,98300,92,1128,287,31,174,13,2900,9400,2200,250,310,4.1,0,0,19.3,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.6,42,98300,367,1395,301,190,577,41,20200,50200,7000,860,300,5.7,0,0,19.3,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,1.1,36,98300,619,1395,314,395,757,62,42600,73700,9800,1390,300,5.7,0,0,19.3,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,1.7,29,98300,821,1395,334,564,842,71,59500,83200,10300,1760,310,5.7,0,0,19.3,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,2.2,26,98300,960,1395,345,689,897,75,72600,89500,10800,2090,340,6.2,0,0,19.3,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,2.8,25,98200,1026,1395,351,748,901,89,78400,90000,12000,2510,300,6.7,0,0,24.1,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,2.2,23,98100,1014,1395,352,739,890,95,77200,88900,12400,2530,320,5.2,0,0,24.1,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,1.7,22,98100,925,1395,355,653,844,96,68200,83900,12400,2210,290,4.1,0,0,24.1,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,1.1,22,98100,766,1395,351,517,788,87,55200,78300,12100,1990,300,5.7,0,0,24.1,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,1.1,22,98100,546,1395,349,339,697,68,35600,65900,9700,1390,320,4.1,0,0,24.1,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,1.1,24,98100,283,1395,344,135,429,50,14100,33000,7400,910,340,3.1,0,0,24.1,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,1.7,30,98100,35,709,332,8,48,2,600,2600,400,60,340,2.6,0,0,24.1,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,1.7,30,98200,0,0,332,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,2.8,40,98200,0,0,318,0,0,0,0,0,0,0,290,3.1,0,0,24.1,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,2.8,41,98200,0,0,315,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,2.8,44,98200,0,0,311,0,0,0,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.8,47,98300,0,0,306,0,0,0,0,0,0,0,10,1.5,0,0,24.1,77777,9,999999999,89,0.1650,0,88,999.000,999.0,99.0 +1981,2,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.8,49,98300,0,0,303,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,98300,0,0,301,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,3.3,55,98300,0,0,299,0,0,0,0,0,0,0,90,2.1,0,0,24.1,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.7,53,98300,0,0,293,0,0,0,0,0,0,0,70,2.6,0,0,32.2,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-0.6,43,98400,0,0,293,0,0,0,0,0,0,0,80,2.1,0,0,19.3,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.7,44,98400,0,0,285,0,0,0,0,0,0,0,70,3.1,0,0,19.3,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-2.2,46,98500,0,0,280,0,0,0,0,0,0,0,70,3.6,0,0,16.1,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-2.2,44,98600,96,1174,282,36,190,15,3300,10300,2400,290,90,3.6,0,0,40.2,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-3.3,37,98700,373,1394,288,206,619,43,21800,54000,7400,900,90,5.2,1,0,40.2,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-3.9,31,98700,625,1394,294,414,797,60,43900,76700,9400,1370,80,4.1,3,0,32.2,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-4.4,26,98700,827,1394,303,592,868,80,62200,85800,11200,1850,100,3.6,6,0,32.2,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-4.4,23,98700,966,1394,318,658,730,155,70500,74300,18800,4320,100,3.6,10,1,32.2,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-3.9,20,98600,1032,1394,339,718,651,238,74900,65300,26500,7010,130,3.1,10,4,24.1,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-2.8,21,98500,1019,1394,346,589,398,299,64400,43000,32800,9010,310,2.1,10,4,24.1,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-1.7,22,98400,930,1394,352,475,171,361,51400,17900,39400,10500,0,0.0,10,5,24.1,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,0.0,22,98400,770,1394,363,475,483,209,50000,49000,22800,4710,0,0.0,10,5,24.1,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,1.1,25,98300,551,1394,358,348,549,133,36800,52500,16000,2600,100,2.1,10,4,24.1,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,1.1,26,98300,287,1394,339,139,466,44,14600,36400,7000,820,170,3.1,3,0,24.1,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,1.1,29,98300,37,732,331,9,63,2,600,3600,400,80,130,3.1,0,0,19.3,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,1.7,32,98400,0,0,327,0,0,0,0,0,0,0,130,3.6,0,0,19.3,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.7,34,98400,0,0,322,0,0,0,0,0,0,0,150,4.1,0,0,19.3,77777,9,999999999,100,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.1,38,98400,0,0,311,0,0,0,0,0,0,0,180,3.6,0,0,19.3,77777,9,999999999,100,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,1.1,41,98400,0,0,306,0,0,0,0,0,0,0,180,4.6,0,0,19.3,77777,9,999999999,110,0.0710,0,88,999.000,999.0,99.0 +1981,2,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,1.1,41,98400,0,0,306,0,0,0,0,0,0,0,180,4.1,0,0,19.3,77777,9,999999999,110,0.0710,0,88,999.000,999.0,99.0 +1981,2,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,1.1,41,98400,0,0,306,0,0,0,0,0,0,0,190,4.1,0,0,19.3,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.6,43,98400,0,0,299,0,0,0,0,0,0,0,190,4.1,0,0,19.3,77777,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.6,43,98300,0,0,299,0,0,0,0,0,0,0,200,4.1,0,0,19.3,77777,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.6,49,98300,0,0,292,0,0,0,0,0,0,0,220,3.6,0,0,19.3,77777,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,0.6,50,98300,0,0,290,0,0,0,0,0,0,0,220,4.6,0,0,16.1,77777,9,999999999,129,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,0.0,48,98300,0,0,289,0,0,0,0,0,0,0,210,4.1,0,0,16.1,77777,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.0,45,98300,0,0,306,0,0,0,0,0,0,0,210,4.6,6,3,16.1,77777,9,999999999,139,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.0,45,98300,101,1196,311,26,5,25,2900,0,2900,860,210,4.1,7,5,11.3,7620,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,1.7,47,98300,379,1394,325,124,82,102,13600,7200,11600,2250,220,6.2,9,7,11.3,7620,9,999999999,150,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,2.2,38,98300,631,1394,328,365,477,151,38800,47000,17400,3060,220,6.2,5,2,8.0,77777,9,999999999,160,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,4.4,35,98300,833,1394,344,547,663,153,57700,66400,17900,3590,200,4.6,4,1,8.0,77777,9,999999999,170,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,3.9,30,98200,972,1394,365,519,173,399,56100,18200,43400,12070,240,9.3,8,5,9.7,3660,9,999999999,170,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,3.9,28,98100,1037,1394,361,614,477,261,66000,49600,29000,8100,260,8.2,7,2,11.3,77777,9,999999999,179,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,4.4,27,98000,1025,1394,383,568,350,312,61900,37800,34100,9530,260,8.8,9,6,11.3,2740,9,999999999,189,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,4.4,27,97900,935,1394,383,411,59,372,45200,6100,41100,12180,240,10.8,8,6,12.9,2740,9,999999999,189,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,3.3,27,97800,775,1394,369,534,528,242,55400,53400,25600,5570,240,7.2,8,5,12.9,7620,9,999999999,200,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,3.9,27,97700,555,1394,373,309,480,119,33100,46100,14600,2300,210,8.2,7,5,12.9,7620,9,999999999,209,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,3.3,28,97800,291,1394,374,75,34,68,8200,2800,7700,1750,230,6.2,8,7,11.3,2440,9,999999999,209,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,3.9,31,97800,39,755,362,7,6,6,700,300,700,160,230,6.7,6,5,11.3,6100,9,999999999,220,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.9,34,97800,0,0,389,0,0,0,0,0,0,0,220,7.2,10,10,11.3,2440,9,999999999,229,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.9,34,97800,0,0,389,0,0,0,0,0,0,0,240,7.2,10,10,11.3,2130,9,999999999,229,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,3.4,37,97700,0,0,351,0,0,0,0,0,0,0,230,6.7,8,6,11.3,2440,9,999999999,229,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.3,3.0,39,97700,0,0,343,0,0,0,0,0,0,0,240,6.2,8,6,11.3,2130,9,999999999,240,0.0720,0,88,999.000,999.0,99.0 +1981,2,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,2.5,37,97700,0,0,332,0,0,0,0,0,0,0,240,5.7,7,5,11.3,2130,9,999999999,250,0.0720,0,88,999.000,999.0,99.0 +1985,3,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.0,50,98300,0,0,352,0,0,0,0,0,0,0,100,5.1,10,10,24.1,7620,9,999999999,110,0.0860,0,88,999.000,999.0,99.0 +1985,3,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.5,52,98300,0,0,343,0,0,0,0,0,0,0,100,4.6,10,10,24.1,7620,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1985,3,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,1.1,56,98300,0,0,335,0,0,0,0,0,0,0,80,4.1,10,10,24.1,7620,9,999999999,129,0.0860,0,88,999.000,999.0,99.0 +1985,3,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.6,56,98200,0,0,327,0,0,0,0,0,0,0,70,3.6,10,10,24.1,7620,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1985,3,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.6,56,98200,0,0,327,0,0,0,0,0,0,0,90,4.1,10,10,24.1,7620,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1985,3,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.2,66,98200,0,0,326,0,0,0,0,0,0,0,90,4.6,10,10,16.1,3050,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1985,3,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.0,77,98200,0,0,332,0,0,0,0,0,0,0,90,5.7,10,10,12.9,180,9,999999999,160,0.0860,0,88,999.000,999.0,99.0 +1985,3,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,98300,106,1219,333,19,1,19,2200,0,2200,700,150,3.6,10,10,9.7,180,9,999999999,160,0.0910,0,88,999.000,999.0,99.0 +1985,3,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,98300,385,1393,334,95,0,95,10700,0,10700,3450,120,5.2,10,10,8.0,180,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1985,3,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,98100,637,1393,334,199,8,196,22500,700,22200,7410,100,5.2,10,10,8.0,210,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1985,3,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,98200,840,1393,336,138,6,135,16700,400,16400,6440,170,4.1,10,10,8.0,210,9,999999999,179,0.0910,0,88,999.000,999.0,99.0 +1985,3,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,98200,978,1393,340,166,9,160,20200,700,19700,7900,180,3.1,10,10,8.0,240,9,999999999,179,0.0910,0,88,999.000,999.0,99.0 +1985,3,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,98100,1043,1393,339,238,4,235,28300,300,28000,11070,170,4.1,10,10,4.8,240,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1985,3,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,97900,1030,1393,343,348,3,346,40100,300,39800,14490,130,3.1,10,10,6.4,370,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1985,3,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,97900,941,1393,346,322,3,320,36800,300,36600,13040,160,4.1,10,10,8.0,490,9,999999999,189,0.0910,0,88,999.000,999.0,99.0 +1985,3,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,97800,780,1393,349,164,1,163,19200,100,19100,7280,170,3.1,10,10,8.0,400,9,999999999,200,0.0910,0,88,999.000,999.0,99.0 +1985,3,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,97800,560,1393,349,170,0,170,19100,0,19100,6240,130,3.6,10,10,8.0,310,9,999999999,200,0.0910,0,88,999.000,999.0,99.0 +1985,3,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,97700,296,1393,349,88,1,88,9700,0,9700,2860,130,4.1,10,10,8.0,240,9,999999999,209,0.0910,0,88,999.000,999.0,99.0 +1985,3,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,97700,42,778,347,10,0,10,1200,0,1200,370,130,3.6,10,10,4.0,180,9,999999999,209,0.0910,0,88,999.000,999.0,99.0 +1985,3,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,97800,0,0,345,0,0,0,0,0,0,0,20,3.6,10,10,1.2,90,9,999999999,209,0.0860,0,88,999.000,999.0,99.0 +1985,3,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,97800,0,0,345,0,0,0,0,0,0,0,30,3.1,10,10,2.0,150,9,999999999,200,0.0860,0,88,999.000,999.0,99.0 +1985,3,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,97800,0,0,347,0,0,0,0,0,0,0,50,3.1,10,10,4.8,90,9,999999999,200,0.0860,0,88,999.000,999.0,99.0 +1985,3,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,97800,0,0,344,0,0,0,0,0,0,0,60,3.1,10,10,4.8,90,9,999999999,189,0.0860,0,88,999.000,999.0,99.0 +1985,3,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,97800,0,0,341,0,0,0,0,0,0,0,60,2.6,10,10,4.8,90,9,999999999,189,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,90,97800,0,0,341,0,0,0,0,0,0,0,50,2.6,10,10,4.8,90,9,999999999,189,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,97800,0,0,341,0,0,0,0,0,0,0,310,2.1,10,10,3.2,60,9,999999999,179,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,97800,0,0,338,0,0,0,0,0,0,0,310,2.6,10,10,0.8,30,9,999999999,179,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,97800,0,0,338,0,0,0,0,0,0,0,320,3.1,10,10,1.6,30,9,999999999,170,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,97900,0,0,338,0,0,0,0,0,0,0,300,3.6,10,10,4.0,60,9,999999999,170,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,97900,0,0,338,0,0,0,0,0,0,0,330,5.2,10,10,4.0,120,9,999999999,160,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,90,97900,0,0,321,0,0,0,0,0,0,0,320,4.1,9,8,6.4,150,9,999999999,160,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,98000,112,1241,327,23,15,22,2600,900,2500,560,340,4.6,10,9,6.4,270,9,999999999,160,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,98100,391,1392,323,121,42,110,13300,3800,12300,2860,350,5.2,8,8,12.9,310,9,999999999,160,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,98100,643,1392,312,410,599,136,42600,57700,15800,2690,320,4.1,3,2,16.1,77777,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.2,67,98100,846,1392,314,576,789,99,61400,78900,13300,2380,330,2.6,3,1,19.3,77777,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,98100,984,1392,338,577,381,309,62600,41000,33500,9010,340,2.6,8,6,24.1,7620,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,6.1,52,98100,1049,1392,345,579,362,308,63400,39200,33900,9700,350,4.1,8,7,32.2,3050,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.1,50,98000,1036,1392,348,634,533,239,68700,55500,27300,7360,360,4.1,7,7,32.2,1070,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.7,52,98000,946,1392,372,332,44,302,36600,4500,33500,10490,320,6.2,10,10,32.2,1070,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.7,52,98000,785,1392,362,289,1,288,32400,100,32300,10770,300,7.2,9,9,32.2,1370,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.6,52,98000,565,1392,365,123,2,122,14200,100,14100,4980,360,5.7,10,10,24.1,910,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,5.0,52,98000,300,1392,332,119,165,84,12600,12900,9800,1630,290,5.2,5,5,24.1,77777,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.0,55,98100,44,777,324,25,36,21,2500,1500,2500,430,310,3.1,4,4,24.1,77777,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.0,60,98100,0,0,304,0,0,0,0,0,0,0,340,2.1,0,0,24.1,77777,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.0,64,98200,0,0,299,0,0,0,0,0,0,0,320,3.1,2,0,24.1,77777,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.0,69,98200,0,0,294,0,0,0,0,0,0,0,300,3.1,2,0,24.1,77777,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.0,74,98200,0,0,289,0,0,0,0,0,0,0,310,2.1,0,0,24.1,77777,9,999999999,129,0.0860,0,88,999.000,999.0,99.0 +1985,3,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,98200,0,0,294,0,0,0,0,0,0,0,300,3.1,5,2,24.1,77777,9,999999999,129,0.0860,0,88,999.000,999.0,99.0 +1985,3,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,98200,0,0,289,0,0,0,0,0,0,0,0,0.0,4,1,24.1,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1985,3,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,98200,0,0,280,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1985,3,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,4.4,86,98200,0,0,278,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1985,3,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,98200,0,0,277,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,129,0.0870,0,88,999.000,999.0,99.0 +1985,3,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,98200,0,0,279,0,0,0,0,0,0,0,70,1.5,0,0,16.1,77777,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1985,3,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.3,77,98300,0,0,279,0,0,0,0,0,0,0,90,3.6,0,0,16.1,77777,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1985,3,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,80,98300,0,0,274,0,0,0,0,0,0,0,100,2.6,2,0,16.1,77777,9,999999999,120,0.0870,0,88,999.000,999.0,99.0 +1985,3,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.2,71,98400,117,1287,287,52,213,29,5200,10700,4200,510,90,3.6,4,2,19.3,77777,9,999999999,120,0.0480,0,88,999.000,999.0,99.0 +1985,3,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.2,59,98500,398,1392,295,223,582,60,23700,51000,9100,1140,100,5.7,3,1,19.3,77777,9,999999999,129,0.0480,0,88,999.000,999.0,99.0 +1985,3,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.7,49,98500,650,1392,310,382,632,90,41000,62200,11800,1910,80,6.7,7,3,24.1,77777,9,999999999,129,0.0480,0,88,999.000,999.0,99.0 +1985,3,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.8,47,98600,852,1392,336,378,171,274,41400,17900,30400,7500,90,4.6,10,8,24.1,3660,9,999999999,129,0.0480,0,88,999.000,999.0,99.0 +1985,3,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,4.4,46,98500,990,1392,331,743,794,182,78900,80500,21500,5180,100,5.2,6,3,24.1,77777,9,999999999,139,0.0480,0,88,999.000,999.0,99.0 +1985,3,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,5.6,45,98400,1054,1392,340,703,592,256,75900,61700,29000,8200,150,5.2,7,3,32.2,77777,9,999999999,139,0.0480,0,88,999.000,999.0,99.0 +1985,3,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,6.1,45,98400,1041,1392,340,736,778,156,76800,77800,18400,4370,100,5.2,7,2,32.2,77777,9,999999999,139,0.0480,0,88,999.000,999.0,99.0 +1985,3,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,5.6,40,98200,951,1392,348,649,691,179,68600,69800,20800,4800,130,6.2,6,3,32.2,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1985,3,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,5.6,39,98100,790,1392,351,510,665,135,54000,66500,16100,3080,100,5.2,8,3,32.2,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1985,3,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.1,42,98100,569,1392,348,339,548,116,35100,51700,13800,2220,170,5.7,9,3,24.1,77777,9,999999999,150,0.0480,0,88,999.000,999.0,99.0 +1985,3,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,5.6,42,98200,304,1392,342,150,448,53,15600,35600,7800,970,160,7.7,5,2,24.1,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1985,3,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.1,47,98200,46,800,333,32,125,17,2600,4800,2300,300,140,4.6,1,1,24.1,77777,9,999999999,160,0.0480,0,88,999.000,999.0,99.0 +1985,3,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.1,50,98200,0,0,322,0,0,0,0,0,0,0,110,5.2,0,0,24.1,77777,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1985,3,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.1,54,98200,0,0,317,0,0,0,0,0,0,0,130,4.1,0,0,24.1,77777,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1985,3,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.1,58,98300,0,0,312,0,0,0,0,0,0,0,120,4.6,2,0,24.1,77777,9,999999999,160,0.0870,0,88,999.000,999.0,99.0 +1985,3,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.6,58,98200,0,0,315,0,0,0,0,0,0,0,130,5.2,7,1,24.1,77777,9,999999999,170,0.0870,0,88,999.000,999.0,99.0 +1985,3,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.6,62,98200,0,0,310,0,0,0,0,0,0,0,120,4.6,8,1,24.1,77777,9,999999999,170,0.0870,0,88,999.000,999.0,99.0 +1985,3,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,6.1,64,98200,0,0,315,0,0,0,0,0,0,0,140,4.6,9,2,24.1,77777,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1985,3,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.7,72,98200,0,0,311,0,0,0,0,0,0,0,130,4.1,9,2,24.1,77777,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1985,3,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,98100,0,0,302,0,0,0,0,0,0,0,130,4.6,5,1,24.1,77777,9,999999999,170,0.0880,0,88,999.000,999.0,99.0 +1985,3,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,98100,0,0,302,0,0,0,0,0,0,0,120,4.6,4,1,24.1,77777,9,999999999,179,0.0880,0,88,999.000,999.0,99.0 +1985,3,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,98100,0,0,315,0,0,0,0,0,0,0,120,4.6,8,5,11.3,7620,9,999999999,179,0.0880,0,88,999.000,999.0,99.0 +1985,3,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,98100,0,0,328,0,0,0,0,0,0,0,140,7.2,10,8,3.2,90,9,999999999,179,0.0880,0,88,999.000,999.0,99.0 +1985,3,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,98100,0,0,328,0,0,0,0,0,0,0,130,5.2,10,8,3.2,90,9,999999999,179,0.0880,0,88,999.000,999.0,99.0 +1985,3,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,98200,123,1310,347,23,1,23,2600,0,2600,830,120,5.7,10,10,0.8,60,9,999999999,179,0.0960,0,88,999.000,999.0,99.0 +1985,3,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,98200,404,1391,354,90,9,88,10300,500,10200,3350,150,4.6,10,10,0.8,90,9,999999999,189,0.0960,0,88,999.000,999.0,99.0 +1985,3,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,87,98200,656,1391,357,241,10,237,26900,900,26500,8450,150,5.2,10,10,2.4,120,9,999999999,189,0.0960,0,88,999.000,999.0,99.0 +1985,3,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,84,98200,858,1391,363,281,3,279,32000,300,31800,11270,130,5.2,10,10,3.2,240,9,999999999,200,0.0960,0,88,999.000,999.0,99.0 +1985,3,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,98200,996,1391,373,356,6,352,40700,600,40300,14350,130,5.2,10,10,8.0,490,9,999999999,200,0.0960,0,88,999.000,999.0,99.0 +1985,3,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,98100,1060,1391,363,387,136,283,43000,14500,31900,9450,160,5.2,7,7,11.3,700,9,999999999,200,0.0960,0,88,999.000,999.0,99.0 +1985,3,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.2,55,98000,1046,1391,376,797,744,240,83400,74700,27000,7310,180,6.2,6,6,24.1,850,9,999999999,209,0.0960,0,88,999.000,999.0,99.0 +1985,3,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.2,50,97900,956,1391,378,594,577,199,62300,58000,22300,5300,190,6.7,4,4,24.1,77777,9,999999999,209,0.0960,0,88,999.000,999.0,99.0 +1985,3,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.1,45,97900,795,1391,382,474,484,199,50400,49300,22100,4540,200,6.7,5,5,24.1,77777,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1985,3,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,11.1,43,97900,574,1391,393,253,142,195,27400,14000,21600,4600,200,5.2,7,7,24.1,1220,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1985,3,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.1,46,97900,309,1391,387,139,261,81,14700,20700,10100,1560,220,5.2,7,7,24.1,1220,9,999999999,229,0.0960,0,88,999.000,999.0,99.0 +1985,3,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.1,51,97900,48,823,362,19,40,15,1900,1400,1800,250,200,6.2,2,2,24.1,77777,9,999999999,229,0.0960,0,88,999.000,999.0,99.0 +1985,3,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,97900,0,0,370,0,0,0,0,0,0,0,190,5.2,6,6,24.1,1220,9,999999999,229,0.0880,0,88,999.000,999.0,99.0 +1985,3,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,97900,0,0,343,0,0,0,0,0,0,0,180,5.2,0,0,24.1,77777,9,999999999,240,0.0880,0,88,999.000,999.0,99.0 +1985,3,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.2,63,97900,0,0,341,0,0,0,0,0,0,0,210,5.2,0,0,24.1,77777,9,999999999,240,0.0880,0,88,999.000,999.0,99.0 +1985,3,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.2,63,97900,0,0,374,0,0,0,0,0,0,0,190,6.7,8,8,24.1,1520,9,999999999,250,0.0880,0,88,999.000,999.0,99.0 +1985,3,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.7,61,97900,0,0,393,0,0,0,0,0,0,0,210,7.2,10,10,24.1,1520,9,999999999,250,0.0880,0,88,999.000,999.0,99.0 +1985,3,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.4,84,97900,0,0,384,0,0,0,0,0,0,0,300,6.2,10,10,6.4,760,9,999999999,250,0.0890,0,88,999.000,999.0,99.0 +1985,3,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,98000,0,0,368,0,0,0,0,0,0,0,310,6.7,10,10,6.4,150,9,999999999,259,0.0890,0,88,999.000,999.0,99.0 +1985,3,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,98000,0,0,361,0,0,0,0,0,0,0,310,5.7,10,10,4.0,150,9,999999999,259,0.0890,0,88,999.000,999.0,99.0 +1985,3,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,98000,0,0,353,0,0,0,0,0,0,0,310,4.6,10,10,6.4,150,9,999999999,270,0.0890,0,88,999.000,999.0,99.0 +1985,3,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,98100,0,0,342,0,0,0,0,0,0,0,320,5.2,10,10,6.4,610,9,999999999,270,0.0890,0,88,999.000,999.0,99.0 +1985,3,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,98200,0,0,341,0,0,0,0,0,0,0,330,3.6,10,10,16.1,850,9,999999999,279,0.0890,0,88,999.000,999.0,99.0 +1985,3,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,98200,0,0,342,0,0,0,0,0,0,0,310,3.6,10,10,32.2,850,9,999999999,279,0.0890,0,88,999.000,999.0,99.0 +1985,3,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,98300,129,1332,332,46,20,44,5000,1300,4900,990,310,3.6,10,9,48.3,850,9,999999999,259,0.0620,0,88,999.000,999.0,99.0 +1985,3,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,98300,410,1390,333,121,47,108,13400,4300,12100,2880,320,3.1,9,9,48.3,1370,9,999999999,240,0.0620,0,88,999.000,999.0,99.0 +1985,3,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.2,74,98400,662,1390,338,236,59,208,25900,5800,23100,6080,310,6.2,9,9,48.3,1370,9,999999999,220,0.0620,0,88,999.000,999.0,99.0 +1985,3,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.1,62,98500,864,1390,323,514,405,264,55600,43200,28700,6770,310,6.2,8,4,40.2,77777,9,999999999,200,0.0620,0,88,999.000,999.0,99.0 +1985,3,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.6,52,98500,1001,1390,327,538,491,186,57000,49800,21100,5400,300,6.7,7,2,40.2,77777,9,999999999,179,0.0620,0,88,999.000,999.0,99.0 +1985,3,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.0,48,98500,1065,1390,328,704,653,206,74600,66200,23700,6660,300,7.2,8,2,40.2,77777,9,999999999,160,0.0620,0,88,999.000,999.0,99.0 +1985,3,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,3.3,40,98400,1052,1390,327,764,800,161,79500,79900,18900,4570,310,6.2,8,1,40.2,77777,9,999999999,150,0.0620,0,88,999.000,999.0,99.0 +1985,3,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,2.2,36,98400,961,1390,328,693,770,163,73800,78200,19600,4500,320,6.7,9,1,40.2,77777,9,999999999,129,0.0620,0,88,999.000,999.0,99.0 +1985,3,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-1.1,28,98400,799,1390,329,542,673,157,56800,66900,18200,3530,330,6.7,10,2,40.2,77777,9,999999999,110,0.0620,0,88,999.000,999.0,99.0 +1985,3,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-2.2,27,98400,578,1390,325,365,547,139,38600,52900,16500,2750,310,6.7,10,2,40.2,77777,9,999999999,89,0.0620,0,88,999.000,999.0,99.0 +1985,3,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-2.8,28,98500,313,1390,319,160,370,78,16700,29200,10100,1440,310,5.2,8,2,40.2,77777,9,999999999,69,0.0620,0,88,999.000,999.0,99.0 +1985,3,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-3.9,28,98500,51,846,311,31,55,24,2900,1900,2800,430,340,7.2,7,2,40.2,77777,9,999999999,50,0.0620,0,88,999.000,999.0,99.0 +1985,3,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-3.3,33,98600,0,0,300,0,0,0,0,0,0,0,320,5.2,7,1,24.1,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1985,3,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-3.3,35,98700,0,0,303,0,0,0,0,0,0,0,320,3.1,7,3,24.1,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1985,3,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-4.4,35,98700,0,0,297,0,0,0,0,0,0,0,320,6.2,7,3,24.1,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1985,3,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-3.9,39,98700,0,0,290,0,0,0,0,0,0,0,340,6.2,7,2,24.1,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1985,3,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-5.0,37,98700,0,0,283,0,0,0,0,0,0,0,320,7.2,3,1,24.1,77777,9,999999999,50,0.0890,0,88,999.000,999.0,99.0 +1985,3,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-4.4,42,98700,0,0,274,0,0,0,0,0,0,0,320,6.7,1,0,24.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1985,3,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-4.4,45,98700,0,0,269,0,0,0,0,0,0,0,330,6.2,0,0,24.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1985,3,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-4.4,47,98700,0,0,267,0,0,0,0,0,0,0,330,6.2,0,0,24.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1985,3,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-3.3,55,98700,0,0,264,0,0,0,0,0,0,0,320,5.7,0,0,24.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1985,3,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-3.9,55,98700,0,0,261,0,0,0,0,0,0,0,320,6.2,0,0,24.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1985,3,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.9,60,98800,0,0,257,0,0,0,0,0,0,0,330,5.2,1,0,24.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1985,3,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-4.4,59,98900,0,0,255,0,0,0,0,0,0,0,330,2.6,1,0,24.1,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1985,3,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.9,62,98900,134,1355,255,45,82,36,4700,4000,4300,660,340,4.1,1,0,24.1,77777,9,999999999,50,0.2070,0,88,999.000,999.0,99.0 +1985,3,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-3.9,55,99100,416,1389,261,217,441,87,23300,39000,11500,1600,350,5.2,0,0,24.1,77777,9,999999999,50,0.2070,0,88,999.000,999.0,99.0 +1985,3,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-3.3,47,99200,668,1389,272,433,640,128,45300,62400,15200,2620,20,2.1,0,0,32.2,77777,9,999999999,50,0.2070,0,88,999.000,999.0,99.0 +1985,3,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-3.3,38,99200,870,1389,286,618,739,158,65300,74300,18700,3860,100,5.2,0,0,32.2,77777,9,999999999,50,0.2070,0,88,999.000,999.0,99.0 +1985,3,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-3.9,33,99100,1007,1389,292,748,791,177,79600,80400,21200,5220,100,2.6,0,0,32.2,77777,9,999999999,50,0.2070,0,88,999.000,999.0,99.0 +1985,3,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-3.9,28,99100,1071,1389,301,809,814,185,86600,83000,22400,6120,180,1.5,0,0,32.2,77777,9,999999999,50,0.2070,0,88,999.000,999.0,99.0 +1985,3,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-3.3,26,99000,1057,1389,309,800,813,183,85300,82900,22100,5890,100,1.5,0,0,32.2,77777,9,999999999,50,0.2070,0,88,999.000,999.0,99.0 +1985,3,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-3.3,25,98900,966,1389,313,712,781,172,75700,79200,20500,4760,70,4.1,0,0,32.2,77777,9,999999999,50,0.2070,0,88,999.000,999.0,99.0 +1985,3,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-2.8,24,98900,804,1389,319,561,715,149,59000,71400,17600,3400,30,2.1,0,0,32.2,77777,9,999999999,50,0.2070,0,88,999.000,999.0,99.0 +1985,3,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-3.9,23,98900,582,1389,315,360,588,115,37400,55900,13900,2230,90,3.1,0,0,40.2,77777,9,999999999,50,0.2070,0,88,999.000,999.0,99.0 +1985,3,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-2.8,25,98900,317,1389,317,146,337,71,15500,26800,9400,1290,140,3.1,0,0,40.2,77777,9,999999999,50,0.2070,0,88,999.000,999.0,99.0 +1985,3,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-2.8,28,99000,53,868,309,23,19,20,2300,1100,2300,480,120,4.1,0,0,32.2,77777,9,999999999,50,0.2070,0,88,999.000,999.0,99.0 +1985,3,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-2.8,29,99100,0,0,307,0,0,0,0,0,0,0,110,5.7,3,0,32.2,77777,9,999999999,50,0.0900,0,88,999.000,999.0,99.0 +1985,3,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-3.3,29,99100,0,0,301,0,0,0,0,0,0,0,100,6.2,3,0,24.1,77777,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1985,3,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-2.8,34,99200,0,0,295,0,0,0,0,0,0,0,100,5.2,0,0,24.1,77777,9,999999999,60,0.0900,0,88,999.000,999.0,99.0 +1985,3,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.7,41,99200,0,0,290,0,0,0,0,0,0,0,100,5.2,0,0,24.1,77777,9,999999999,69,0.0900,0,88,999.000,999.0,99.0 +1985,3,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-2.2,41,99300,0,0,287,0,0,0,0,0,0,0,80,6.2,0,0,24.1,77777,9,999999999,69,0.0900,0,88,999.000,999.0,99.0 +1985,3,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-2.2,44,99300,0,0,282,0,0,0,0,0,0,0,100,5.7,0,0,24.1,77777,9,999999999,80,0.0910,0,88,999.000,999.0,99.0 +1985,3,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-2.2,48,99400,0,0,278,0,0,0,0,0,0,0,100,5.7,0,0,24.1,77777,9,999999999,80,0.0910,0,88,999.000,999.0,99.0 +1985,3,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-2.8,48,99400,0,0,275,0,0,0,0,0,0,0,90,6.7,0,0,24.1,77777,9,999999999,80,0.0910,0,88,999.000,999.0,99.0 +1985,3,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.8,51,99400,0,0,271,0,0,0,0,0,0,0,90,6.2,0,0,24.1,77777,9,999999999,89,0.0910,0,88,999.000,999.0,99.0 +1985,3,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-2.2,56,99400,0,0,269,0,0,0,0,0,0,0,90,6.7,0,0,24.1,77777,9,999999999,89,0.0910,0,88,999.000,999.0,99.0 +1985,3,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-2.8,55,99500,0,0,267,0,0,0,0,0,0,0,80,7.2,0,0,24.1,77777,9,999999999,100,0.0910,0,88,999.000,999.0,99.0 +1985,3,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.2,60,99500,0,12,265,0,0,0,0,0,0,0,90,6.2,0,0,12.9,77777,9,999999999,100,0.0910,0,88,999.000,999.0,99.0 +1985,3,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.2,60,99600,141,1389,265,66,418,20,6300,26100,3700,400,90,7.2,0,0,12.9,77777,9,999999999,100,0.0380,0,88,999.000,999.0,99.0 +1985,3,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.1,60,99600,423,1389,270,267,767,37,28700,69300,7600,940,90,8.8,0,0,16.1,77777,9,999999999,110,0.0380,0,88,999.000,999.0,99.0 +1985,3,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.1,52,99700,674,1389,279,481,891,53,51400,86700,9100,1370,110,8.2,0,0,16.1,77777,9,999999999,110,0.0380,0,88,999.000,999.0,99.0 +1985,3,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.1,46,99700,876,1389,286,659,949,64,69800,94300,10100,1760,100,8.8,0,0,19.3,77777,9,999999999,120,0.0380,0,88,999.000,999.0,99.0 +1985,3,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.7,38,99600,1013,1389,330,370,92,303,40800,9400,34000,11240,90,6.7,10,9,19.3,910,9,999999999,120,0.0380,0,88,999.000,999.0,99.0 +1985,3,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.7,37,99500,1076,1389,321,628,448,282,67300,46700,31000,9520,90,7.2,8,7,19.3,910,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1985,3,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-0.6,36,99400,1062,1389,329,510,238,328,55500,25800,35800,10660,90,6.7,8,7,19.3,1010,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1985,3,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.1,38,99300,970,1389,342,535,400,257,57000,41400,28000,7230,90,5.7,9,8,19.3,1010,9,999999999,129,0.0380,0,88,999.000,999.0,99.0 +1985,3,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.1,38,99200,808,1389,333,484,490,200,51500,50100,22300,4620,140,5.2,7,6,19.3,4270,9,999999999,139,0.0380,0,88,999.000,999.0,99.0 +1985,3,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,2.2,38,99200,587,1389,328,361,596,111,37600,56900,13500,2180,110,5.2,5,2,19.3,77777,9,999999999,139,0.0380,0,88,999.000,999.0,99.0 +1985,3,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,2.8,41,99200,321,1389,337,130,217,80,13800,17500,9800,1520,120,5.2,10,6,19.3,7620,9,999999999,150,0.0380,0,88,999.000,999.0,99.0 +1985,3,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,2.8,44,99200,55,891,329,31,37,27,3200,1600,3100,560,90,4.6,10,5,19.3,77777,9,999999999,150,0.0380,0,88,999.000,999.0,99.0 +1985,3,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.2,44,99200,0,0,338,0,0,0,0,0,0,0,80,5.2,10,8,19.3,7620,9,999999999,150,0.0910,0,88,999.000,999.0,99.0 +1985,3,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.2,47,99200,0,0,340,0,0,0,0,0,0,0,90,4.6,10,9,19.3,1680,9,999999999,160,0.0910,0,88,999.000,999.0,99.0 +1985,3,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,1.7,45,99200,0,0,349,0,0,0,0,0,0,0,90,5.2,10,10,19.3,1680,9,999999999,160,0.0910,0,88,999.000,999.0,99.0 +1985,3,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.1,47,99300,0,0,326,0,0,0,0,0,0,0,70,3.6,10,8,19.3,1520,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1985,3,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.1,49,99200,0,0,315,0,0,0,0,0,0,0,100,3.1,8,6,19.3,7620,9,999999999,170,0.0910,0,88,999.000,999.0,99.0 +1985,3,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.0,47,99200,0,0,320,0,0,0,0,0,0,0,130,4.1,10,8,19.3,1400,9,999999999,179,0.0930,0,88,999.000,999.0,99.0 +1985,3,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,0.6,50,99200,0,0,310,0,0,0,0,0,0,0,90,3.6,10,6,19.3,7620,9,999999999,179,0.0930,0,88,999.000,999.0,99.0 +1985,3,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,1.1,52,99100,0,0,305,0,0,0,0,0,0,0,130,3.1,9,4,19.3,77777,9,999999999,179,0.0930,0,88,999.000,999.0,99.0 +1985,3,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,2.2,61,99000,0,0,299,0,0,0,0,0,0,0,90,2.1,10,3,19.3,77777,9,999999999,189,0.0930,0,88,999.000,999.0,99.0 +1985,3,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.1,56,99000,0,0,291,0,0,0,0,0,0,0,70,2.6,6,1,19.3,77777,9,999999999,189,0.0930,0,88,999.000,999.0,99.0 +1985,3,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.7,63,99100,0,0,287,0,0,0,0,0,0,0,90,2.1,6,1,19.3,77777,9,999999999,200,0.0930,0,88,999.000,999.0,99.0 +1985,3,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.6,58,99100,0,35,281,0,0,0,0,0,0,0,100,2.6,5,0,16.1,77777,9,999999999,200,0.0930,0,88,999.000,999.0,99.0 +1985,3,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.7,63,99100,147,1388,287,55,186,35,5700,9900,4600,630,100,2.6,8,1,11.3,77777,9,999999999,200,0.0650,0,88,999.000,999.0,99.0 +1985,3,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,4.4,66,99100,429,1388,299,236,560,66,25000,50200,9500,1270,80,1.5,5,1,8.0,77777,9,999999999,200,0.0650,0,88,999.000,999.0,99.0 +1985,3,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,99100,681,1388,317,461,804,70,49700,79200,10700,1600,220,5.2,1,0,11.3,77777,9,999999999,209,0.0650,0,88,999.000,999.0,99.0 +1985,3,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.0,59,99000,882,1388,333,642,879,87,67300,87200,11800,2040,230,4.1,1,0,12.9,77777,9,999999999,209,0.0650,0,88,999.000,999.0,99.0 +1985,3,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.6,51,99000,1019,1388,354,720,864,89,75400,86300,11900,2500,240,5.7,2,1,12.9,77777,9,999999999,209,0.0650,0,88,999.000,999.0,99.0 +1985,3,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.6,48,98900,1082,1388,359,758,795,142,80500,80100,17900,4510,260,5.2,2,1,12.9,77777,9,999999999,220,0.0650,0,88,999.000,999.0,99.0 +1985,3,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.6,46,98700,1067,1388,362,751,841,107,78100,84100,13300,2960,260,5.7,2,1,16.1,77777,9,999999999,220,0.0650,0,88,999.000,999.0,99.0 +1985,3,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,11.1,43,98700,975,1388,379,644,716,142,69300,73300,17700,4080,260,5.7,3,3,16.1,77777,9,999999999,220,0.0650,0,88,999.000,999.0,99.0 +1985,3,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,10.0,42,98600,813,1388,375,546,710,132,58000,71400,16100,3100,270,6.2,5,3,24.1,77777,9,999999999,220,0.0650,0,88,999.000,999.0,99.0 +1985,3,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,10.0,42,98600,591,1388,375,355,567,115,36900,54100,13800,2250,280,6.7,4,3,24.1,77777,9,999999999,229,0.0650,0,88,999.000,999.0,99.0 +1985,3,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.0,45,98600,325,1388,370,151,287,84,15600,23100,10200,1560,250,6.2,7,3,24.1,77777,9,999999999,229,0.0650,0,88,999.000,999.0,99.0 +1985,3,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,9.4,46,98700,58,891,369,29,27,25,2900,1200,2900,520,280,5.2,8,5,24.1,7620,9,999999999,229,0.0650,0,88,999.000,999.0,99.0 +1985,3,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.0,53,98700,0,0,356,0,0,0,0,0,0,0,280,3.6,7,3,24.1,77777,9,999999999,229,0.0930,0,88,999.000,999.0,99.0 +1985,3,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.0,57,98700,0,0,350,0,0,0,0,0,0,0,280,3.6,7,3,24.1,77777,9,999999999,240,0.0930,0,88,999.000,999.0,99.0 +1985,3,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.0,59,98700,0,0,348,0,0,0,0,0,0,0,270,4.1,7,3,24.1,77777,9,999999999,240,0.0930,0,88,999.000,999.0,99.0 +1985,3,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.1,65,98700,0,0,343,0,0,0,0,0,0,0,270,5.2,6,2,24.1,77777,9,999999999,250,0.0930,0,88,999.000,999.0,99.0 +1985,3,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,98700,0,0,350,0,0,0,0,0,0,0,280,6.7,10,5,24.1,77777,9,999999999,250,0.0930,0,88,999.000,999.0,99.0 +1985,3,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,98600,0,0,353,0,0,0,0,0,0,0,270,4.6,8,6,24.1,7620,9,999999999,250,0.0940,0,88,999.000,999.0,99.0 +1985,3,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.2,73,98600,0,0,381,0,0,0,0,0,0,0,270,4.1,10,10,24.1,1520,9,999999999,259,0.0940,0,88,999.000,999.0,99.0 +1985,3,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,98600,0,0,365,0,0,0,0,0,0,0,280,3.6,10,9,24.1,1520,9,999999999,259,0.0940,0,88,999.000,999.0,99.0 +1985,3,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,98500,0,0,343,0,0,0,0,0,0,0,270,4.6,10,4,24.1,77777,9,999999999,270,0.0940,0,88,999.000,999.0,99.0 +1985,3,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,98600,0,0,350,0,0,0,0,0,0,0,300,4.1,10,7,24.1,1520,9,999999999,270,0.0940,0,88,999.000,999.0,99.0 +1985,3,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,98600,0,0,344,0,0,0,0,0,0,0,300,2.6,10,7,24.1,1520,9,999999999,279,0.0940,0,88,999.000,999.0,99.0 +1985,3,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,98600,0,58,335,0,0,0,0,0,0,0,270,3.6,5,5,11.3,77777,9,999999999,279,0.0940,0,88,999.000,999.0,99.0 +1985,3,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,98600,153,1387,374,27,6,27,3200,0,3200,970,240,2.6,10,10,11.3,1520,9,999999999,270,0.0390,0,88,999.000,999.0,99.0 +1985,3,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,98700,436,1387,380,141,15,136,15600,1000,15300,4660,280,3.6,10,10,8.0,1680,9,999999999,270,0.0390,0,88,999.000,999.0,99.0 +1985,3,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.9,70,98700,687,1387,370,405,297,259,42600,30600,27400,6170,290,4.6,9,7,9.7,1680,9,999999999,259,0.0390,0,88,999.000,999.0,99.0 +1985,3,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,98700,888,1387,375,555,507,232,59000,52200,25500,5860,270,4.6,8,6,11.3,1830,9,999999999,259,0.0390,0,88,999.000,999.0,99.0 +1985,3,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,98700,1024,1387,383,393,116,308,43400,12300,34300,9880,280,5.2,10,8,11.3,7620,9,999999999,250,0.0390,0,88,999.000,999.0,99.0 +1985,3,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,98700,1087,1387,408,358,55,315,39600,5600,35100,12560,310,4.1,10,10,11.3,1520,9,999999999,250,0.0390,0,88,999.000,999.0,99.0 +1985,3,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,98600,1072,1387,388,471,190,325,52100,20200,36400,11070,330,5.2,10,8,11.3,7620,9,999999999,240,0.0390,0,88,999.000,999.0,99.0 +1985,3,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,98500,980,1387,407,410,7,405,46200,700,45700,15360,100,6.7,10,10,11.3,3050,9,999999999,229,0.0390,0,88,999.000,999.0,99.0 +1985,3,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,98500,817,1387,372,516,504,220,54500,51500,24000,5180,330,6.2,7,6,12.9,3050,9,999999999,229,0.0390,0,88,999.000,999.0,99.0 +1985,3,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.2,63,98500,595,1387,364,315,357,163,33900,35900,18400,3460,330,8.2,8,6,24.1,3050,9,999999999,220,0.0390,0,88,999.000,999.0,99.0 +1985,3,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.1,65,98600,329,1387,346,145,281,78,15100,22700,9700,1430,310,7.2,6,3,24.1,77777,9,999999999,220,0.0390,0,88,999.000,999.0,99.0 +1985,3,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,98600,60,913,342,34,46,29,3500,2100,3300,600,350,5.2,7,3,24.1,77777,9,999999999,209,0.0390,0,88,999.000,999.0,99.0 +1985,3,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.3,62,98700,0,0,330,0,0,0,0,0,0,0,340,3.6,5,2,24.1,77777,9,999999999,200,0.0940,0,88,999.000,999.0,99.0 +1985,3,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,98700,0,0,327,0,0,0,0,0,0,0,330,3.1,4,2,24.1,77777,9,999999999,189,0.0940,0,88,999.000,999.0,99.0 +1985,3,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.7,62,98800,0,0,316,0,0,0,0,0,0,0,320,2.1,4,1,24.1,77777,9,999999999,189,0.0940,0,88,999.000,999.0,99.0 +1985,3,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,4.4,55,98800,0,0,311,0,0,0,0,0,0,0,350,3.1,4,1,24.1,77777,9,999999999,179,0.0940,0,88,999.000,999.0,99.0 +1985,3,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.8,53,98800,0,0,304,0,0,0,0,0,0,0,350,4.1,2,1,24.1,77777,9,999999999,170,0.0940,0,88,999.000,999.0,99.0 +1985,3,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.0,47,98700,0,0,297,0,0,0,0,0,0,0,350,3.1,2,1,24.1,77777,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1985,3,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-1.1,45,98700,0,0,298,0,0,0,0,0,0,0,340,4.1,6,2,24.1,77777,9,999999999,150,0.0950,0,88,999.000,999.0,99.0 +1985,3,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.1,48,98700,0,0,289,0,0,0,0,0,0,0,340,5.7,3,1,24.1,77777,9,999999999,139,0.0950,0,88,999.000,999.0,99.0 +1985,3,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.7,48,98700,0,0,293,0,0,0,0,0,0,0,340,4.1,3,3,24.1,77777,9,999999999,139,0.0950,0,88,999.000,999.0,99.0 +1985,3,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-2.8,44,98700,0,0,289,0,0,0,0,0,0,0,230,4.1,6,2,19.3,77777,9,999999999,129,0.0950,0,88,999.000,999.0,99.0 +1985,3,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-3.9,41,98700,0,0,298,0,0,0,0,0,0,0,350,4.1,8,6,19.3,3660,9,999999999,120,0.0950,0,88,999.000,999.0,99.0 +1985,3,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-3.9,39,98700,1,81,308,0,0,0,0,0,0,0,350,4.1,10,8,24.1,7620,9,999999999,110,0.0950,0,88,999.000,999.0,99.0 +1985,3,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-4.4,38,98800,159,1386,307,63,30,60,6900,2100,6700,1280,50,2.1,10,8,40.2,7620,9,999999999,110,0.0440,0,88,999.000,999.0,99.0 +1985,3,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-3.3,38,98900,442,1386,301,207,292,116,22300,27000,13700,2310,80,2.1,7,4,40.2,7620,9,999999999,120,0.0440,0,88,999.000,999.0,99.0 +1985,3,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-3.3,34,98900,693,1386,305,475,690,134,49800,67600,16000,2790,70,2.6,10,3,40.2,77777,9,999999999,120,0.0440,0,88,999.000,999.0,99.0 +1985,3,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-4.4,26,98900,894,1386,316,470,453,179,51300,46900,21100,4450,140,4.6,7,3,40.2,77777,9,999999999,129,0.0440,0,88,999.000,999.0,99.0 +1985,3,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-3.9,26,98900,1030,1386,319,753,769,184,80200,78200,21900,5650,70,1.5,6,3,40.2,77777,9,999999999,129,0.0440,0,88,999.000,999.0,99.0 +1985,3,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-3.9,24,98800,1092,1386,321,765,749,177,82200,76700,21600,6180,340,3.1,5,2,40.2,77777,9,999999999,139,0.0440,0,88,999.000,999.0,99.0 +1985,3,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-6.1,19,98700,1077,1386,325,789,874,112,81900,87400,13800,3080,360,1.0,2,2,40.2,77777,9,999999999,139,0.0440,0,88,999.000,999.0,99.0 +1985,3,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-5.0,19,98500,985,1386,332,707,859,99,73700,85600,12700,2470,330,3.1,2,2,40.2,77777,9,999999999,139,0.0440,0,88,999.000,999.0,99.0 +1985,3,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-5.0,18,98500,822,1386,334,587,795,118,61100,78700,14400,2570,340,4.1,2,2,40.2,77777,9,999999999,150,0.0440,0,88,999.000,999.0,99.0 +1985,3,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-5.6,17,98400,599,1386,348,215,175,140,23400,17700,15700,2890,50,3.6,6,6,40.2,3660,9,999999999,150,0.0440,0,88,999.000,999.0,99.0 +1985,3,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-4.4,18,98400,333,1386,354,140,69,123,15200,6000,13800,2880,340,1.5,8,7,40.2,3660,9,999999999,160,0.0440,0,88,999.000,999.0,99.0 +1985,3,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-3.3,22,98400,63,936,331,37,119,23,3300,5000,2900,410,200,3.6,3,2,40.2,77777,9,999999999,160,0.0440,0,88,999.000,999.0,99.0 +1985,3,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-3.3,21,98400,0,0,323,0,0,0,0,0,0,0,170,4.6,1,0,24.1,77777,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1985,3,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-3.3,24,98400,0,0,316,0,0,0,0,0,0,0,160,3.1,1,0,24.1,77777,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1985,3,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.8,27,98400,0,0,312,0,0,0,0,0,0,0,180,4.1,1,0,24.1,77777,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1985,3,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-2.8,29,98400,0,0,307,0,0,0,0,0,0,0,160,2.6,1,0,24.1,77777,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1985,3,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.7,34,98400,0,0,301,0,0,0,0,0,0,0,150,2.6,1,0,24.1,77777,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1985,3,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.6,42,98400,0,0,326,0,0,0,0,0,0,0,130,2.6,9,7,24.1,3660,9,999999999,160,0.0960,0,88,999.000,999.0,99.0 +1985,3,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-0.6,40,98400,0,0,334,0,0,0,0,0,0,0,130,2.1,10,9,24.1,3050,9,999999999,170,0.0960,0,88,999.000,999.0,99.0 +1985,3,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.0,42,98300,0,0,344,0,0,0,0,0,0,0,110,2.1,10,10,24.1,3050,9,999999999,170,0.0960,0,88,999.000,999.0,99.0 +1985,3,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.1,47,98300,0,0,343,0,0,0,0,0,0,0,100,2.1,10,10,24.1,3050,9,999999999,170,0.0960,0,88,999.000,999.0,99.0 +1985,3,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.0,43,98300,0,0,332,0,0,0,0,0,0,0,130,2.1,10,9,24.1,3050,9,999999999,170,0.0960,0,88,999.000,999.0,99.0 +1985,3,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.0,45,98300,0,0,330,0,0,0,0,0,0,0,120,2.6,10,9,24.1,3050,9,999999999,170,0.0960,0,88,999.000,999.0,99.0 +1985,3,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.0,47,98300,1,127,306,1,0,1,0,0,0,0,160,2.6,9,4,19.3,77777,9,999999999,170,0.0530,0,88,999.000,999.0,99.0 +1985,3,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.7,51,98300,166,1386,325,48,27,45,5300,1900,5100,1060,160,3.1,10,8,16.1,7620,9,999999999,179,0.0530,0,88,999.000,999.0,99.0 +1985,3,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,4.4,57,98300,448,1386,340,110,11,106,12400,700,12200,4030,160,5.2,10,9,16.1,3050,9,999999999,179,0.0530,0,88,999.000,999.0,99.0 +1985,3,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.2,58,98300,699,1386,344,414,346,241,44000,35800,25900,5660,170,7.7,9,7,16.1,3050,9,999999999,189,0.0530,0,88,999.000,999.0,99.0 +1985,3,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.3,52,98300,900,1386,358,479,270,305,51500,28900,32700,8260,200,5.2,8,7,16.1,3050,9,999999999,200,0.0530,0,88,999.000,999.0,99.0 +1985,3,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.9,44,98200,1035,1386,366,729,676,227,76600,68000,25600,6870,200,4.1,8,4,16.1,77777,9,999999999,200,0.0530,0,88,999.000,999.0,99.0 +1985,3,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,8.9,40,98100,1098,1386,371,837,815,194,89400,83100,23400,6810,180,8.2,7,3,24.1,77777,9,999999999,209,0.0530,0,88,999.000,999.0,99.0 +1985,3,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,10.6,40,97900,1082,1386,381,664,612,188,70900,62400,22100,6390,210,8.8,7,3,24.1,77777,9,999999999,220,0.0530,0,88,999.000,999.0,99.0 +1985,3,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.6,38,97800,989,1386,390,613,612,178,65100,62100,20600,5110,210,8.2,5,4,19.3,77777,9,999999999,220,0.0530,0,88,999.000,999.0,99.0 +1985,3,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.0,36,97700,826,1386,386,535,586,188,57600,60100,21700,4390,220,11.8,7,3,11.3,77777,9,999999999,229,0.0530,0,88,999.000,999.0,99.0 +1985,3,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,10.6,39,97700,603,1386,391,285,247,178,30400,24900,19600,3850,210,6.2,10,5,12.9,77777,9,999999999,240,0.0530,0,88,999.000,999.0,99.0 +1985,3,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,8.9,37,97600,337,1386,385,171,324,92,17600,26400,11100,1720,210,6.7,10,6,12.9,7620,9,999999999,240,0.0530,0,88,999.000,999.0,99.0 +1985,3,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,9.4,41,97600,65,958,374,33,60,27,3400,2800,3200,560,220,7.2,9,4,12.9,77777,9,999999999,250,0.0530,0,88,999.000,999.0,99.0 +1985,3,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.0,46,97600,0,0,367,0,0,0,0,0,0,0,220,5.2,7,3,16.1,77777,9,999999999,240,0.0960,0,88,999.000,999.0,99.0 +1985,3,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.1,51,97600,0,0,365,0,0,0,0,0,0,0,210,6.2,7,3,16.1,77777,9,999999999,220,0.0960,0,88,999.000,999.0,99.0 +1985,3,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,97700,0,0,361,0,0,0,0,0,0,0,210,5.7,7,3,11.3,77777,9,999999999,209,0.0960,0,88,999.000,999.0,99.0 +1985,3,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.8,66,97700,0,0,356,0,0,0,0,0,0,0,210,6.2,6,3,11.3,77777,9,999999999,189,0.0960,0,88,999.000,999.0,99.0 +1985,3,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.2,65,97700,0,0,353,0,0,0,0,0,0,0,220,6.2,6,3,11.3,77777,9,999999999,179,0.0960,0,88,999.000,999.0,99.0 +1985,3,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,97700,0,0,347,0,0,0,0,0,0,0,240,6.7,6,2,11.3,77777,9,999999999,160,0.0970,0,88,999.000,999.0,99.0 +1985,3,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,97600,0,0,348,0,0,0,0,0,0,0,230,6.2,8,3,11.3,77777,9,999999999,150,0.0970,0,88,999.000,999.0,99.0 +1985,3,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,97600,0,0,372,0,0,0,0,0,0,0,230,6.2,10,9,11.3,1070,9,999999999,139,0.0970,0,88,999.000,999.0,99.0 +1985,3,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,97500,0,0,340,0,0,0,0,0,0,0,240,7.2,8,2,11.3,77777,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1985,3,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,97500,0,0,340,0,0,0,0,0,0,0,230,8.8,8,2,11.3,77777,9,999999999,110,0.0970,0,88,999.000,999.0,99.0 +1985,3,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,97500,0,0,355,0,0,0,0,0,0,0,240,7.7,10,6,11.3,7620,9,999999999,89,0.0970,0,88,999.000,999.0,99.0 +1985,3,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.9,81,97600,2,150,384,1,0,1,0,0,0,0,270,6.2,10,10,11.3,370,9,999999999,80,0.0600,0,88,999.000,999.0,99.0 +1985,3,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.9,81,97600,172,1385,384,33,2,33,3800,0,3800,1170,270,6.2,10,10,11.3,370,9,999999999,80,0.0600,0,88,999.000,999.0,99.0 +1985,3,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,14.4,78,97700,455,1385,390,166,16,161,18300,1200,17900,5270,270,7.2,10,10,12.9,550,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1985,3,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,97800,705,1385,371,126,1,126,15000,100,14900,5670,330,8.8,10,10,8.0,370,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1985,3,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.2,56,97800,905,1385,359,432,176,318,47200,18500,35000,9100,330,6.7,9,9,32.2,850,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1985,3,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.3,38,97900,1041,1385,340,723,621,259,78000,64700,29200,8180,310,8.2,9,4,32.2,77777,9,999999999,100,0.0600,0,88,999.000,999.0,99.0 +1985,3,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.9,40,97900,1103,1385,341,793,636,289,85200,66300,32300,10380,320,8.2,10,4,40.2,77777,9,999999999,100,0.0600,0,88,999.000,999.0,99.0 +1985,3,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.7,34,97900,1087,1385,338,734,557,298,78300,58000,32700,10360,330,7.7,10,4,40.2,77777,9,999999999,100,0.0600,0,88,999.000,999.0,99.0 +1985,3,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-2.2,27,97900,994,1385,331,697,720,182,73900,73000,21300,5260,330,8.2,10,4,40.2,77777,9,999999999,110,0.0600,0,88,999.000,999.0,99.0 +1985,3,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-3.3,25,97800,830,1385,324,593,693,180,61800,68800,20400,4110,340,7.7,10,2,40.2,77777,9,999999999,110,0.0600,0,88,999.000,999.0,99.0 +1985,3,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.8,27,97900,607,1385,322,291,353,136,30900,34600,15700,2710,300,7.2,8,2,40.2,77777,9,999999999,110,0.0600,0,88,999.000,999.0,99.0 +1985,3,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-3.3,26,98000,341,1385,319,182,446,73,19300,36700,10200,1330,330,6.2,8,2,32.2,77777,9,999999999,120,0.0600,0,88,999.000,999.0,99.0 +1985,3,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-2.2,32,98000,68,958,313,31,80,22,3000,3100,2800,380,320,5.7,7,2,24.1,77777,9,999999999,120,0.0600,0,88,999.000,999.0,99.0 +1985,3,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-3.3,32,98100,0,0,303,0,0,0,0,0,0,0,330,5.2,6,1,24.1,77777,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1985,3,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-3.3,34,98100,0,0,298,0,0,0,0,0,0,0,340,4.1,5,1,24.1,77777,9,999999999,120,0.0970,0,88,999.000,999.0,99.0 +1985,3,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-3.3,35,98100,0,0,296,0,0,0,0,0,0,0,340,4.1,3,1,24.1,77777,9,999999999,110,0.0970,0,88,999.000,999.0,99.0 +1985,3,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-3.3,38,98100,0,0,286,0,0,0,0,0,0,0,340,4.6,0,0,24.1,77777,9,999999999,110,0.0970,0,88,999.000,999.0,99.0 +1985,3,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-3.3,39,98100,0,0,283,0,0,0,0,0,0,0,330,4.1,0,0,24.1,77777,9,999999999,110,0.0970,0,88,999.000,999.0,99.0 +1985,3,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-3.3,42,98100,0,0,279,0,0,0,0,0,0,0,330,2.6,0,0,24.1,77777,9,999999999,110,0.0980,0,88,999.000,999.0,99.0 +1985,3,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-3.3,44,98100,0,0,277,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,110,0.0980,0,88,999.000,999.0,99.0 +1985,3,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-3.3,46,98000,0,0,275,0,0,0,0,0,0,0,320,1.5,0,0,24.1,77777,9,999999999,110,0.0980,0,88,999.000,999.0,99.0 +1985,3,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.8,49,98000,0,0,273,0,0,0,0,0,0,0,360,1.5,0,0,24.1,77777,9,999999999,100,0.0980,0,88,999.000,999.0,99.0 +1985,3,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.8,51,98000,0,0,271,0,0,0,0,0,0,0,360,1.5,0,0,24.1,77777,9,999999999,100,0.0980,0,88,999.000,999.0,99.0 +1985,3,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.2,54,98000,0,0,272,0,0,0,0,0,0,0,300,1.5,0,0,24.1,77777,9,999999999,100,0.0980,0,88,999.000,999.0,99.0 +1985,3,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-2.2,58,98100,2,173,267,3,7,1,0,0,0,0,330,1.5,0,0,24.1,77777,9,999999999,100,0.0550,0,88,999.000,999.0,99.0 +1985,3,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.7,52,98200,178,1384,276,80,432,27,8400,29300,4600,520,320,1.5,0,0,40.2,77777,9,999999999,110,0.0550,0,88,999.000,999.0,99.0 +1985,3,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-2.2,40,98200,461,1384,289,287,733,47,30800,67300,8300,1080,70,2.1,0,0,40.2,77777,9,999999999,120,0.0550,0,88,999.000,999.0,99.0 +1985,3,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-2.8,33,98200,712,1384,297,504,863,64,53400,84400,9900,1530,160,3.6,0,0,24.1,77777,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1985,3,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-2.8,28,98200,911,1384,309,679,920,77,71500,91600,11000,2020,180,2.6,0,0,24.1,77777,9,999999999,139,0.0550,0,88,999.000,999.0,99.0 +1985,3,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-2.8,24,98200,1047,1384,319,804,954,85,84200,95500,11800,2560,230,2.6,0,0,24.1,77777,9,999999999,150,0.0550,0,88,999.000,999.0,99.0 +1985,3,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-0.6,24,98100,1108,1384,332,856,962,89,89600,96400,12200,2950,290,4.1,0,0,24.1,77777,9,999999999,150,0.0550,0,88,999.000,999.0,99.0 +1985,3,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,1.7,26,98000,1092,1384,342,842,959,88,88100,96100,12100,2830,270,3.6,0,0,32.2,77777,9,999999999,160,0.0550,0,88,999.000,999.0,99.0 +1985,3,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,3.9,27,98000,998,1384,359,712,880,79,74700,87900,11100,2290,280,3.1,1,1,32.2,77777,9,999999999,170,0.0550,0,88,999.000,999.0,99.0 +1985,3,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,6.1,31,97900,834,1384,364,580,838,76,60900,82900,10700,1840,240,3.6,1,1,32.2,77777,9,999999999,179,0.0550,0,88,999.000,999.0,99.0 +1985,3,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,8.3,36,97900,611,1384,360,414,809,58,43800,77700,9300,1350,260,2.1,0,0,32.2,77777,9,999999999,189,0.0550,0,88,999.000,999.0,99.0 +1985,3,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,9.4,40,97900,345,1384,366,189,588,44,19700,50100,7200,880,250,5.7,1,1,32.2,77777,9,999999999,200,0.0550,0,88,999.000,999.0,99.0 +1985,3,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,9.4,43,97900,71,980,375,39,50,33,4000,2400,3800,680,260,3.1,5,5,24.1,77777,9,999999999,209,0.0550,0,88,999.000,999.0,99.0 +1985,3,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,9.4,43,98000,0,0,388,0,0,0,0,0,0,0,220,4.1,8,8,24.1,1520,9,999999999,209,0.0980,0,88,999.000,999.0,99.0 +1985,3,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,98000,0,0,380,0,0,0,0,0,0,0,240,3.6,8,8,24.1,1520,9,999999999,209,0.0980,0,88,999.000,999.0,99.0 +1985,3,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.6,53,98000,0,0,368,0,0,0,0,0,0,0,260,3.1,6,6,24.1,1680,9,999999999,209,0.0980,0,88,999.000,999.0,99.0 +1985,3,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.6,59,98000,0,0,357,0,0,0,0,0,0,0,250,3.6,5,5,24.1,77777,9,999999999,209,0.0980,0,88,999.000,999.0,99.0 +1985,3,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,98000,0,0,342,0,0,0,0,0,0,0,300,2.6,3,2,24.1,77777,9,999999999,209,0.0980,0,88,999.000,999.0,99.0 +1985,3,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,9.4,63,97900,0,0,325,0,0,0,0,0,0,0,230,4.1,0,0,24.1,77777,9,999999999,209,0.0990,0,88,999.000,999.0,99.0 +1985,3,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,9.4,67,97900,0,0,320,0,0,0,0,0,0,0,230,3.6,0,0,24.1,77777,9,999999999,209,0.0990,0,88,999.000,999.0,99.0 +1985,3,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,97800,0,0,318,0,0,0,0,0,0,0,250,4.1,0,0,24.1,77777,9,999999999,209,0.0990,0,88,999.000,999.0,99.0 +1985,3,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,97800,0,0,316,0,0,0,0,0,0,0,270,3.6,0,0,24.1,77777,9,999999999,209,0.0990,0,88,999.000,999.0,99.0 +1985,3,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,97800,0,0,310,0,0,0,0,0,0,0,270,3.6,0,0,16.1,77777,9,999999999,209,0.0990,0,88,999.000,999.0,99.0 +1985,3,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,97800,0,0,310,0,0,0,0,0,0,0,280,3.6,0,0,16.1,77777,9,999999999,209,0.0990,0,88,999.000,999.0,99.0 +1985,3,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,97800,3,219,322,3,8,1,0,0,0,0,250,4.6,3,1,12.9,77777,9,999999999,209,0.0630,0,88,999.000,999.0,99.0 +1985,3,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,97900,185,1383,330,63,179,40,6700,10900,5200,710,310,5.7,6,3,12.9,77777,9,999999999,209,0.0630,0,88,999.000,999.0,99.0 +1985,3,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.7,75,98000,467,1383,347,226,322,118,24300,30300,14000,2350,310,4.1,7,6,12.9,1220,9,999999999,209,0.0630,0,88,999.000,999.0,99.0 +1985,3,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.2,70,98000,718,1383,356,521,707,158,54200,69100,18200,3270,320,4.6,6,6,12.9,1220,9,999999999,220,0.0630,0,88,999.000,999.0,99.0 +1985,3,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.2,59,98000,917,1383,380,521,335,300,56200,35900,32300,8220,330,4.1,8,8,12.9,1830,9,999999999,220,0.0630,0,88,999.000,999.0,99.0 +1985,3,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,97900,1052,1383,364,758,835,126,81200,84400,16800,3910,280,4.1,2,2,12.9,77777,9,999999999,220,0.0630,0,88,999.000,999.0,99.0 +1985,3,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.7,51,97800,1113,1383,382,751,617,257,78800,62100,28700,9100,350,5.2,7,7,11.3,1830,9,999999999,220,0.0630,0,88,999.000,999.0,99.0 +1985,3,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.1,55,97800,1096,1383,398,441,138,332,48800,14700,37100,11750,320,6.2,10,10,11.3,850,9,999999999,220,0.0630,0,88,999.000,999.0,99.0 +1985,3,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.6,53,97700,1003,1383,378,442,184,309,48700,19500,34500,9710,330,7.2,8,8,11.3,1520,9,999999999,220,0.0630,0,88,999.000,999.0,99.0 +1985,3,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.0,53,97700,839,1383,375,470,268,309,51100,28000,34100,8410,320,5.2,8,8,11.3,1520,9,999999999,229,0.0630,0,88,999.000,999.0,99.0 +1985,3,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,9.4,49,97700,615,1383,358,372,592,110,39000,57200,13400,2220,310,8.2,4,3,12.9,77777,9,999999999,229,0.0630,0,88,999.000,999.0,99.0 +1985,3,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.8,52,97800,349,1383,348,151,266,84,16100,22400,10500,1600,320,6.2,7,5,24.1,1830,9,999999999,229,0.0630,0,88,999.000,999.0,99.0 +1985,3,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.1,54,97900,73,1003,343,21,25,18,2200,1200,2100,370,340,7.2,9,7,24.1,2440,9,999999999,229,0.0630,0,88,999.000,999.0,99.0 +1985,3,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,3.3,48,97900,0,0,346,0,0,0,0,0,0,0,320,8.2,10,9,24.1,2440,9,999999999,220,0.0990,0,88,999.000,999.0,99.0 +1985,3,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.9,59,98000,0,0,327,0,0,0,0,0,0,0,320,6.7,9,8,24.1,2440,9,999999999,209,0.0990,0,88,999.000,999.0,99.0 +1985,3,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,4.4,64,98100,0,0,313,0,0,0,0,0,0,0,310,6.7,7,5,19.3,7620,9,999999999,200,0.0990,0,88,999.000,999.0,99.0 +1985,3,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,4.4,66,98100,0,0,314,0,0,0,0,0,0,0,330,6.7,8,6,19.3,2440,9,999999999,189,0.0990,0,88,999.000,999.0,99.0 +1985,3,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,2.8,66,98100,0,0,295,0,0,0,0,0,0,0,320,7.2,3,2,19.3,77777,9,999999999,179,0.0990,0,88,999.000,999.0,99.0 +1985,3,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.7,63,98100,0,0,294,0,0,0,0,0,0,0,320,6.2,4,3,19.3,77777,9,999999999,160,0.1000,0,88,999.000,999.0,99.0 +1985,3,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.1,61,98100,0,0,324,0,0,0,0,0,0,0,330,6.2,10,10,19.3,2440,9,999999999,150,0.1000,0,88,999.000,999.0,99.0 +1985,3,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.0,56,98100,0,0,323,0,0,0,0,0,0,0,330,6.7,10,10,19.3,2440,9,999999999,139,0.1000,0,88,999.000,999.0,99.0 +1985,3,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-0.6,54,98100,0,0,322,0,0,0,0,0,0,0,340,6.2,10,10,19.3,2440,9,999999999,129,0.1000,0,88,999.000,999.0,99.0 +1985,3,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.1,52,98200,0,0,322,0,0,0,0,0,0,0,330,6.2,10,10,19.3,2440,9,999999999,120,0.1000,0,88,999.000,999.0,99.0 +1985,3,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.1,54,98200,0,0,304,0,0,0,0,0,0,0,340,5.7,8,8,19.3,2440,9,999999999,110,0.1000,0,88,999.000,999.0,99.0 +1985,3,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.2,52,98300,4,242,300,0,1,0,0,0,0,0,340,5.7,8,8,32.2,2440,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1985,3,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.7,52,98400,191,1383,288,67,120,52,7200,7200,6200,980,350,5.2,7,3,32.2,77777,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1985,3,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-2.8,43,98500,474,1383,294,275,461,120,29000,42400,14400,2300,20,6.2,8,3,40.2,77777,9,999999999,100,0.1200,0,88,999.000,999.0,99.0 +1985,3,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-3.3,38,98500,724,1383,298,469,548,185,49800,55200,20800,4010,30,4.6,8,3,40.2,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1985,3,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-3.3,34,98500,923,1383,302,571,549,207,61900,56900,23900,5410,20,3.6,6,2,40.2,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1985,3,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-2.2,34,98500,1057,1383,308,770,708,231,80900,71300,26200,7320,200,2.1,6,2,40.2,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1985,3,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-2.2,32,98400,1118,1383,308,804,815,147,85300,82200,18600,5090,140,2.1,4,1,40.2,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1985,3,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.7,29,98300,1101,1383,319,805,800,170,83900,80000,20000,5390,0,0.0,4,1,40.2,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1985,3,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-2.2,27,98200,1007,1383,325,704,685,206,74000,69100,23500,6010,0,0.0,6,2,40.2,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1985,3,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-2.2,26,98200,843,1383,328,579,640,190,60100,63500,21200,4380,200,2.6,7,2,40.2,77777,9,999999999,89,0.1200,0,88,999.000,999.0,99.0 +1985,3,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-2.8,25,98200,619,1383,323,392,631,110,41000,61000,13600,2220,10,1.5,5,1,40.2,77777,9,999999999,80,0.1200,0,88,999.000,999.0,99.0 +1985,3,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-2.8,25,98200,353,1383,323,179,442,67,18500,36900,9000,1220,50,3.1,4,1,40.2,77777,9,999999999,80,0.1200,0,88,999.000,999.0,99.0 +1985,3,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-3.3,25,98200,76,1025,313,37,94,26,3500,3800,3200,470,60,3.1,2,0,40.2,77777,9,999999999,80,0.1200,0,88,999.000,999.0,99.0 +1985,3,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-2.2,29,98300,0,0,310,0,0,0,0,0,0,0,60,3.1,0,0,24.1,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1985,3,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-0.6,39,98400,0,0,300,0,0,0,0,0,0,0,280,1.5,2,0,24.1,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1985,3,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.7,37,98400,0,0,297,0,0,0,0,0,0,0,50,3.6,1,0,24.1,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1985,3,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-2.2,38,98400,0,0,291,0,0,0,0,0,0,0,360,3.1,0,0,24.1,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1985,3,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-2.2,38,98400,0,0,291,0,0,0,0,0,0,0,60,3.1,0,0,24.1,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1985,3,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,47,98400,0,0,289,0,0,0,0,0,0,0,110,2.6,0,0,24.1,77777,9,999999999,80,0.1020,0,88,999.000,999.0,99.0 +1985,3,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-0.6,48,98400,0,0,286,0,0,0,0,0,0,0,110,1.5,0,0,24.1,77777,9,999999999,69,0.1020,0,88,999.000,999.0,99.0 +1985,3,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,0.0,52,98400,0,0,284,0,0,0,0,0,0,0,90,2.1,0,0,24.1,77777,9,999999999,69,0.1020,0,88,999.000,999.0,99.0 +1985,3,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.0,54,98300,0,0,282,0,0,0,0,0,0,0,80,2.1,2,0,24.1,77777,9,999999999,69,0.1020,0,88,999.000,999.0,99.0 +1985,3,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.0,56,98300,0,0,303,0,0,0,0,0,0,0,80,3.6,10,7,24.1,7620,9,999999999,69,0.1020,0,88,999.000,999.0,99.0 +1985,3,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-0.6,54,98300,0,0,302,0,0,0,0,0,0,0,90,4.6,10,7,24.1,3050,9,999999999,69,0.1020,0,88,999.000,999.0,99.0 +1985,3,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-0.6,56,98400,5,265,320,3,0,3,0,0,0,0,80,4.1,10,10,24.1,2130,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1985,3,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-0.6,56,98500,198,1382,320,40,0,40,4500,0,4500,1410,80,5.2,10,10,24.1,2130,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1985,3,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-0.6,54,98500,480,1382,322,117,1,117,13300,100,13300,4480,70,4.6,10,10,24.1,2440,9,999999999,89,0.0550,0,88,999.000,999.0,99.0 +1985,3,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.0,50,98500,730,1382,331,246,1,245,27700,100,27600,9360,70,5.2,10,10,19.3,2740,9,999999999,110,0.0550,0,88,999.000,999.0,99.0 +1985,3,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-0.6,43,98400,929,1382,338,265,5,262,30800,400,30500,11390,90,6.2,10,10,19.3,2740,9,999999999,120,0.0550,0,88,999.000,999.0,99.0 +1985,3,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.0,43,98400,1063,1382,341,385,8,379,44200,800,43600,15680,110,6.2,10,10,19.3,2740,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1985,3,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.0,42,98300,1123,1382,344,210,3,208,25500,200,25400,10300,100,5.2,10,10,19.3,2740,9,999999999,150,0.0550,0,88,999.000,999.0,99.0 +1985,3,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.0,42,98200,1106,1382,344,245,4,242,29400,300,29100,11600,100,5.2,10,10,19.3,2740,9,999999999,160,0.0550,0,88,999.000,999.0,99.0 +1985,3,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.0,43,98100,1011,1382,341,325,1,325,37600,100,37500,13840,90,6.2,10,10,19.3,1220,9,999999999,170,0.0550,0,88,999.000,999.0,99.0 +1985,3,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-0.6,43,98100,847,1382,338,306,1,305,34500,100,34500,11840,80,5.2,10,10,19.3,1010,9,999999999,179,0.0550,0,88,999.000,999.0,99.0 +1985,3,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,0.6,47,98000,623,1382,340,214,2,213,23900,200,23800,7710,110,5.7,10,10,16.1,820,9,999999999,200,0.0550,0,88,999.000,999.0,99.0 +1985,3,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.7,53,98000,356,1382,338,111,1,111,12300,100,12300,3670,70,4.6,10,10,16.1,820,9,999999999,209,0.0550,0,88,999.000,999.0,99.0 +1985,3,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.2,57,98000,79,1048,336,26,0,26,2900,0,2900,860,70,5.2,10,10,16.1,820,9,999999999,220,0.0550,0,88,999.000,999.0,99.0 +1985,3,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.8,59,98000,0,0,337,0,0,0,0,0,0,0,90,4.6,10,10,16.1,850,9,999999999,209,0.1020,0,88,999.000,999.0,99.0 +1985,3,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.3,66,98000,0,0,332,0,0,0,0,0,0,0,110,4.1,10,10,12.9,820,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1985,3,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.3,66,98000,0,0,332,0,0,0,0,0,0,0,130,3.6,10,10,12.9,880,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1985,3,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.9,69,97900,0,0,333,0,0,0,0,0,0,0,110,4.6,10,10,12.9,1220,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1985,3,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.3,66,97800,0,0,332,0,0,0,0,0,0,0,80,3.6,10,10,12.9,1370,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1985,3,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.3,66,97800,0,0,332,0,0,0,0,0,0,0,20,2.1,10,10,16.1,1220,9,999999999,179,0.1030,0,88,999.000,999.0,99.0 +1985,3,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.9,69,97700,0,0,333,0,0,0,0,0,0,0,40,2.6,10,10,16.1,1220,9,999999999,170,0.1030,0,88,999.000,999.0,99.0 +1985,3,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,4.4,74,97600,0,0,331,0,0,0,0,0,0,0,330,4.1,10,10,16.1,1220,9,999999999,160,0.1030,0,88,999.000,999.0,99.0 +1985,3,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.9,71,97600,0,0,330,0,0,0,0,0,0,0,310,4.1,10,10,16.1,3050,9,999999999,150,0.1030,0,88,999.000,999.0,99.0 +1985,3,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.3,69,97600,0,0,321,0,0,0,0,0,0,0,320,3.1,10,9,16.1,3050,9,999999999,150,0.1030,0,88,999.000,999.0,99.0 +1985,3,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,97600,0,0,311,0,0,0,0,0,0,0,310,3.6,10,8,16.1,2740,9,999999999,139,0.1030,0,88,999.000,999.0,99.0 +1985,3,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.2,66,97600,6,311,326,3,0,3,0,0,0,0,310,3.1,10,10,16.1,2740,9,999999999,129,0.1270,0,88,999.000,999.0,99.0 +1985,3,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.2,66,97600,204,1381,310,61,14,59,6700,300,6700,1870,310,3.6,10,8,16.1,7620,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1985,3,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.7,57,97600,487,1381,317,211,61,189,23000,5800,21000,4740,330,4.1,10,8,16.1,2740,9,999999999,120,0.1270,0,88,999.000,999.0,99.0 +1985,3,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-0.6,43,97600,736,1381,322,338,215,225,37200,22200,25300,5740,340,6.2,10,8,16.1,3050,9,999999999,110,0.1270,0,88,999.000,999.0,99.0 +1985,3,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.0,43,97600,934,1381,341,237,7,232,27700,600,27300,10470,330,6.2,10,10,16.1,3050,9,999999999,100,0.1270,0,88,999.000,999.0,99.0 +1985,3,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-3.3,33,97600,1068,1381,340,312,10,304,36500,900,35800,13600,310,9.3,10,10,24.1,2740,9,999999999,100,0.1270,0,88,999.000,999.0,99.0 +1985,3,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-2.8,33,97500,1128,1381,322,724,416,386,78800,45100,41900,14460,320,9.3,9,7,24.1,2740,9,999999999,89,0.1270,0,88,999.000,999.0,99.0 +1985,3,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-4.4,26,97500,1110,1381,318,605,345,328,66400,37400,36200,11630,300,5.7,6,4,24.1,7620,9,999999999,80,0.1270,0,88,999.000,999.0,99.0 +1985,3,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-5.0,23,97400,1015,1381,320,679,638,211,71400,64400,23900,6250,340,8.2,4,3,24.1,77777,9,999999999,80,0.1270,0,88,999.000,999.0,99.0 +1985,3,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-6.7,20,97400,851,1381,313,590,793,103,62600,79300,13600,2470,340,9.3,1,1,40.2,77777,9,999999999,69,0.1270,0,88,999.000,999.0,99.0 +1985,3,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-7.2,19,97300,627,1381,307,422,732,92,44900,71600,12400,1920,310,10.3,0,0,40.2,77777,9,999999999,60,0.1270,0,88,999.000,999.0,99.0 +1985,3,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-7.8,20,97400,360,1381,301,195,517,61,20300,43800,8900,1130,300,11.3,0,0,40.2,77777,9,999999999,60,0.1270,0,88,999.000,999.0,99.0 +1985,3,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-6.1,25,97500,81,1047,296,37,101,25,3500,4200,3200,440,310,8.8,0,0,32.2,77777,9,999999999,50,0.1270,0,88,999.000,999.0,99.0 +1985,3,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-7.2,26,97600,0,0,286,0,0,0,0,0,0,0,340,9.8,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1985,3,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-7.8,28,97700,0,0,279,0,0,0,0,0,0,0,330,8.8,0,0,24.1,77777,9,999999999,50,0.1030,0,88,999.000,999.0,99.0 +1985,3,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-6.7,32,97800,0,0,278,0,0,0,0,0,0,0,340,6.7,0,0,24.1,77777,9,999999999,40,0.1030,0,88,999.000,999.0,99.0 +1985,3,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-7.2,33,97900,0,0,273,0,0,0,0,0,0,0,310,8.2,0,0,24.1,77777,9,999999999,40,0.1030,0,88,999.000,999.0,99.0 +1985,3,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-8.3,33,97900,0,0,267,0,0,0,0,0,0,0,320,8.8,0,0,24.1,77777,9,999999999,40,0.1030,0,88,999.000,999.0,99.0 +1985,3,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-8.9,32,98000,0,0,265,0,0,0,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,40,0.1040,0,88,999.000,999.0,99.0 +1985,3,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-7.8,38,98000,0,0,262,0,0,0,0,0,0,0,320,4.6,0,0,24.1,77777,9,999999999,40,0.1040,0,88,999.000,999.0,99.0 +1985,3,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.7,45,98000,0,0,258,0,0,0,0,0,0,0,320,7.7,0,0,24.1,77777,9,999999999,40,0.1040,0,88,999.000,999.0,99.0 +1985,3,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-6.7,47,98000,0,0,257,0,0,0,0,0,0,0,320,7.2,0,0,24.1,77777,9,999999999,30,0.1040,0,88,999.000,999.0,99.0 +1985,3,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-5.6,53,98000,0,0,255,0,0,0,0,0,0,0,320,6.2,0,0,24.1,77777,9,999999999,30,0.1040,0,88,999.000,999.0,99.0 +1985,3,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-5.6,55,98000,0,0,254,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,30,0.1040,0,88,999.000,999.0,99.0 +1985,3,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.1,55,98100,8,334,251,10,39,4,0,0,0,0,330,7.2,0,0,24.1,77777,9,999999999,30,0.0420,0,88,999.000,999.0,99.0 +1985,3,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-6.1,52,98200,211,1380,253,108,558,26,11800,42100,5300,580,330,7.7,0,0,40.2,77777,9,999999999,30,0.0420,0,88,999.000,999.0,99.0 +1985,3,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-6.7,47,98300,493,1380,257,338,835,44,36200,77700,8400,1090,340,8.8,0,0,40.2,77777,9,999999999,30,0.0420,0,88,999.000,999.0,99.0 +1985,3,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-9.4,35,98400,742,1380,258,559,938,59,59400,92100,9700,1520,320,6.7,0,0,40.2,77777,9,999999999,30,0.0420,0,88,999.000,999.0,99.0 +1985,3,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-11.7,26,98400,940,1380,262,742,991,71,78300,98800,10800,2010,340,6.2,0,0,40.2,77777,9,999999999,30,0.0420,0,88,999.000,999.0,99.0 +1985,3,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-10.6,26,98400,1073,1380,267,868,1020,78,91200,102200,11500,2560,310,6.2,0,0,40.2,77777,9,999999999,30,0.0420,0,88,999.000,999.0,99.0 +1985,3,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-12.2,21,98400,1133,1380,272,925,1031,81,96900,103500,11800,2940,340,7.7,0,0,40.2,77777,9,999999999,30,0.0420,0,88,999.000,999.0,99.0 +1985,3,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-11.1,22,98300,1115,1380,275,909,1029,80,95300,103200,11700,2810,310,7.2,0,0,40.2,77777,9,999999999,30,0.0420,0,88,999.000,999.0,99.0 +1985,3,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-11.7,19,98300,1020,1380,279,821,1012,75,86200,101300,11200,2300,310,7.7,0,0,40.2,77777,9,999999999,30,0.0420,0,88,999.000,999.0,99.0 +1985,3,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-12.8,17,98200,855,1380,280,669,976,66,70500,96900,10400,1770,340,8.2,0,0,40.2,77777,9,999999999,30,0.0420,0,88,999.000,999.0,99.0 +1985,3,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-12.8,18,98300,631,1380,278,464,904,53,49300,87300,9200,1330,360,7.2,0,0,40.2,77777,9,999999999,30,0.0420,0,88,999.000,999.0,99.0 +1985,3,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-12.2,18,98300,364,1380,278,231,747,36,24700,65300,7400,870,350,6.2,0,0,40.2,77777,9,999999999,30,0.0420,0,88,999.000,999.0,99.0 +1985,3,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-12.2,21,98300,84,1070,272,51,283,18,4200,16400,2800,350,330,5.7,0,0,40.2,77777,9,999999999,30,0.0420,0,88,999.000,999.0,99.0 +1985,3,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-10.6,25,98400,0,0,269,0,0,0,0,0,0,0,350,4.1,0,0,40.2,77777,9,999999999,30,0.1040,0,88,999.000,999.0,99.0 +1985,3,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-9.4,29,98400,0,0,269,0,0,0,0,0,0,0,340,3.1,0,0,40.2,77777,9,999999999,30,0.1040,0,88,999.000,999.0,99.0 +1985,3,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-8.3,35,98500,0,0,263,0,0,0,0,0,0,0,330,3.1,0,0,40.2,77777,9,999999999,30,0.1040,0,88,999.000,999.0,99.0 +1985,3,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-6.7,47,98500,0,0,257,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,30,0.1040,0,88,999.000,999.0,99.0 +1985,3,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-7.2,43,98600,0,0,258,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,30,0.1040,0,88,999.000,999.0,99.0 +1985,3,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-7.2,45,98700,0,0,256,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,30,0.1050,0,88,999.000,999.0,99.0 +1985,3,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-7.2,46,98600,0,0,254,0,0,0,0,0,0,0,330,3.1,0,0,24.1,77777,9,999999999,30,0.1050,0,88,999.000,999.0,99.0 +1985,3,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-8.9,41,98600,0,0,252,0,0,0,0,0,0,0,360,2.1,0,0,24.1,77777,9,999999999,30,0.1050,0,88,999.000,999.0,99.0 +1985,3,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.7,54,98600,0,0,248,0,0,0,0,0,0,0,360,2.1,0,0,24.1,77777,9,999999999,30,0.1050,0,88,999.000,999.0,99.0 +1985,3,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-7.2,50,98700,0,0,250,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,30,0.1050,0,88,999.000,999.0,99.0 +1985,3,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.7,54,98700,0,0,248,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,30,0.1050,0,88,999.000,999.0,99.0 +1985,3,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-6.1,59,98800,9,356,247,10,39,5,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,30,0.0500,0,88,999.000,999.0,99.0 +1985,3,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-7.2,45,98800,217,1379,256,111,542,29,11800,39800,5500,580,80,2.6,0,0,32.2,77777,9,999999999,30,0.0500,0,88,999.000,999.0,99.0 +1985,3,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-9.4,32,98900,499,1379,262,340,819,48,36400,76400,8700,1130,100,4.1,0,0,32.2,77777,9,999999999,30,0.0500,0,88,999.000,999.0,99.0 +1985,3,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-12.2,23,98900,748,1379,266,564,928,64,59700,91200,10100,1580,110,5.2,0,0,32.2,77777,9,999999999,30,0.0500,0,88,999.000,999.0,99.0 +1985,3,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-11.7,22,98900,946,1379,272,741,975,77,78100,97200,11200,2110,130,3.6,0,0,32.2,77777,9,999999999,40,0.0500,0,88,999.000,999.0,99.0 +1985,3,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-11.7,19,98900,1079,1379,281,865,1003,84,90700,100500,11900,2710,130,4.1,0,0,32.2,77777,9,999999999,40,0.0500,0,88,999.000,999.0,99.0 +1985,3,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-12.2,16,98800,1138,1379,285,921,1013,87,96200,101600,12200,3120,140,1.5,0,0,32.2,77777,9,999999999,40,0.0500,0,88,999.000,999.0,99.0 +1985,3,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-11.7,15,98700,1119,1379,295,904,1010,86,94500,101300,12100,2980,230,1.5,0,0,32.2,77777,9,999999999,40,0.0500,0,88,999.000,999.0,99.0 +1985,3,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-11.1,14,98600,1024,1379,300,816,993,81,85500,99300,11600,2420,130,4.1,0,0,32.2,77777,9,999999999,40,0.0500,0,88,999.000,999.0,99.0 +1985,3,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-10.6,15,98500,858,1379,303,664,954,71,69800,94700,10700,1840,270,2.1,0,0,32.2,77777,9,999999999,40,0.0500,0,88,999.000,999.0,99.0 +1985,3,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-9.4,16,98500,635,1379,304,458,875,57,48400,84500,9500,1370,190,3.1,0,0,32.2,77777,9,999999999,50,0.0500,0,88,999.000,999.0,99.0 +1985,3,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-9.4,17,98500,368,1379,302,228,715,39,24300,62600,7500,900,130,3.6,0,0,32.2,77777,9,999999999,50,0.0500,0,88,999.000,999.0,99.0 +1985,3,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-9.4,18,98500,87,1092,297,49,257,20,4300,13400,3200,360,150,4.1,0,0,32.2,77777,9,999999999,50,0.0500,0,88,999.000,999.0,99.0 +1985,3,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-10.0,18,98500,0,0,294,0,0,0,0,0,0,0,150,4.1,0,0,32.2,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1985,3,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-9.4,20,98500,0,0,290,0,0,0,0,0,0,0,160,5.2,0,0,32.2,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1985,3,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-8.9,22,98600,0,0,286,0,0,0,0,0,0,0,170,4.6,0,0,32.2,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1985,3,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-8.3,26,98600,0,0,281,0,0,0,0,0,0,0,180,4.6,0,0,24.1,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1985,3,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-7.8,30,98600,0,0,274,0,0,0,0,0,0,0,190,3.6,0,0,24.1,77777,9,999999999,50,0.1050,0,88,999.000,999.0,99.0 +1985,3,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-7.8,31,98500,0,0,272,0,0,0,0,0,0,0,190,3.6,0,0,24.1,77777,9,999999999,60,0.1060,0,88,999.000,999.0,99.0 +1985,3,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-7.8,31,98500,0,0,272,0,0,0,0,0,0,0,180,2.6,0,0,24.1,77777,9,999999999,60,0.1060,0,88,999.000,999.0,99.0 +1985,3,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-8.3,33,98500,0,0,267,0,0,0,0,0,0,0,190,2.6,0,0,24.1,77777,9,999999999,60,0.1060,0,88,999.000,999.0,99.0 +1985,3,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-8.3,34,98500,0,0,265,0,0,0,0,0,0,0,200,2.6,0,0,24.1,77777,9,999999999,60,0.1060,0,88,999.000,999.0,99.0 +1985,3,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.6,47,98500,0,0,262,0,0,0,0,0,0,0,90,1.5,0,0,24.1,77777,9,999999999,60,0.1060,0,88,999.000,999.0,99.0 +1985,3,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.0,49,98500,0,0,262,0,0,0,0,0,0,0,120,1.5,0,0,24.1,77777,9,999999999,60,0.1060,0,88,999.000,999.0,99.0 +1985,3,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-4.4,51,98500,11,402,272,6,11,5,0,0,0,0,90,2.1,5,2,24.1,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1985,3,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-4.4,49,98600,224,1379,277,91,140,69,9600,9300,8000,1350,90,1.5,7,3,24.1,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1985,3,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-3.3,44,98600,506,1379,289,292,494,113,31200,46400,14100,2160,120,2.1,6,3,11.3,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1985,3,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-2.2,38,98600,754,1379,297,516,781,92,54800,77400,12300,2060,120,2.6,3,1,9.7,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1985,3,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-3.9,27,98600,951,1379,309,679,851,95,71000,84800,12300,2330,180,3.6,2,1,11.3,77777,9,999999999,69,0.0730,0,88,999.000,999.0,99.0 +1985,3,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-3.9,23,98500,1084,1379,321,802,890,105,83500,89000,13300,3090,130,3.6,2,1,11.3,77777,9,999999999,69,0.0730,0,88,999.000,999.0,99.0 +1985,3,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-5.0,20,98400,1142,1379,322,843,879,117,87400,88000,14200,3750,170,4.1,3,1,11.3,77777,9,999999999,69,0.0730,0,88,999.000,999.0,99.0 +1985,3,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-5.6,19,98300,1123,1379,329,816,773,188,87600,79100,22900,7120,110,2.6,7,2,11.3,77777,9,999999999,69,0.0730,0,88,999.000,999.0,99.0 +1985,3,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-5.6,17,98200,1028,1379,334,738,698,219,77500,70400,24900,6630,170,4.1,8,2,16.1,77777,9,999999999,69,0.0730,0,88,999.000,999.0,99.0 +1985,3,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-5.0,18,98200,862,1379,343,517,552,173,54200,55300,19500,4170,160,5.2,10,5,16.1,77777,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1985,3,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-5.0,19,98100,638,1379,347,280,221,178,30100,22600,19600,3870,200,4.6,10,7,16.1,7620,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1985,3,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-4.4,20,98100,371,1379,351,121,65,104,13300,5800,11800,2690,130,4.1,10,8,16.1,7620,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1985,3,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-3.3,24,98100,90,1114,365,10,6,10,1200,400,1100,270,130,4.1,10,10,16.1,7620,9,999999999,80,0.0730,0,88,999.000,999.0,99.0 +1985,3,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-0.6,31,98100,0,0,363,0,0,0,0,0,0,0,140,4.1,10,10,16.1,7620,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1985,3,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,0.0,34,98100,0,0,360,0,0,0,0,0,0,0,140,4.1,10,10,12.9,7620,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1985,3,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,0.0,35,98100,0,0,358,0,0,0,0,0,0,0,140,4.1,10,10,12.9,7620,9,999999999,110,0.1060,0,88,999.000,999.0,99.0 +1985,3,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,0.0,36,98100,0,0,355,0,0,0,0,0,0,0,110,4.1,10,10,12.9,7620,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1985,3,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,0.0,36,98100,0,0,355,0,0,0,0,0,0,0,140,4.6,10,10,12.9,7620,9,999999999,129,0.1060,0,88,999.000,999.0,99.0 +1985,3,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,0.6,38,98000,0,0,356,0,0,0,0,0,0,0,130,5.2,10,10,12.9,7620,9,999999999,150,0.1080,0,88,999.000,999.0,99.0 +1985,3,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,3.3,48,98000,0,0,356,0,0,0,0,0,0,0,160,6.2,10,10,12.9,7620,9,999999999,160,0.1080,0,88,999.000,999.0,99.0 +1985,3,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,3.9,53,97900,0,0,351,0,0,0,0,0,0,0,140,3.6,10,10,12.9,3050,9,999999999,170,0.1080,0,88,999.000,999.0,99.0 +1985,3,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,4.4,55,97900,0,0,352,0,0,0,0,0,0,0,170,4.1,10,10,12.9,3050,9,999999999,179,0.1080,0,88,999.000,999.0,99.0 +1985,3,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.2,74,97900,0,0,348,0,0,0,0,0,0,0,150,4.6,10,10,11.3,1520,9,999999999,189,0.1080,0,88,999.000,999.0,99.0 +1985,3,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,97900,0,0,343,0,0,0,0,0,0,0,170,3.6,10,10,11.3,1520,9,999999999,200,0.1080,0,88,999.000,999.0,99.0 +1985,3,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,97900,13,425,344,3,0,3,0,0,0,0,120,5.7,10,10,8.0,1370,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1985,3,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,97900,230,1378,343,21,3,21,2600,0,2600,860,110,6.2,10,10,12.9,1370,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1985,3,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,97800,512,1378,343,76,0,75,8900,0,8900,3250,110,7.7,10,10,11.3,240,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1985,3,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,97800,760,1378,347,126,6,123,15100,400,14900,5750,90,8.2,10,10,12.9,1370,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1985,3,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,97700,957,1378,350,317,8,312,36500,700,36000,13060,90,8.8,10,10,19.3,370,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1985,3,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,97700,1089,1378,355,345,5,341,40100,500,39800,14860,100,7.2,10,10,24.1,460,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1985,3,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,97600,1147,1378,356,261,5,256,31200,400,30900,12240,100,7.7,10,10,12.9,460,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1985,3,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,97500,1128,1378,356,245,2,244,29500,200,29400,11740,110,8.8,10,10,12.9,580,9,999999999,189,0.1170,0,88,999.000,999.0,99.0 +1985,3,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,97400,1032,1378,356,230,1,229,27300,100,27300,10850,90,7.2,10,10,12.9,760,9,999999999,189,0.1170,0,88,999.000,999.0,99.0 +1985,3,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,97400,866,1378,354,169,0,169,20100,0,20100,7900,90,9.8,10,10,9.7,490,9,999999999,189,0.1170,0,88,999.000,999.0,99.0 +1985,3,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,97300,642,1378,354,130,1,129,15100,100,15100,5550,100,11.8,10,10,11.3,240,9,999999999,189,0.1170,0,88,999.000,999.0,99.0 +1985,3,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.6,90,97300,375,1378,354,63,1,62,7200,0,7200,2480,100,12.9,10,10,9.7,240,9,999999999,179,0.1170,0,88,999.000,999.0,99.0 +1985,3,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,97300,93,1114,351,18,0,18,2100,0,2100,660,90,10.8,10,10,9.7,210,9,999999999,179,0.1170,0,88,999.000,999.0,99.0 +1985,3,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,97300,0,0,347,0,0,0,0,0,0,0,80,10.3,10,10,11.3,150,9,999999999,179,0.1080,0,88,999.000,999.0,99.0 +1985,3,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,97400,0,0,347,0,0,0,0,0,0,0,80,9.8,10,10,9.7,150,9,999999999,179,0.1080,0,88,999.000,999.0,99.0 +1985,3,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,97400,0,0,345,0,0,0,0,0,0,0,80,11.3,10,10,9.7,150,9,999999999,179,0.1080,0,88,999.000,999.0,99.0 +1985,3,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,97400,0,0,335,0,0,0,0,0,0,0,80,11.3,10,10,6.4,150,9,999999999,179,0.1080,0,88,999.000,999.0,99.0 +1985,3,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,97400,0,0,332,0,0,0,0,0,0,0,70,11.3,10,10,6.4,150,9,999999999,179,0.1080,0,88,999.000,999.0,99.0 +1985,3,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,97300,0,0,331,0,0,0,0,0,0,0,80,11.8,10,10,4.8,150,9,999999999,189,0.1090,0,88,999.000,999.0,99.0 +1985,3,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,97300,0,0,328,0,0,0,0,0,0,0,90,8.2,10,10,8.0,150,9,999999999,189,0.1090,0,88,999.000,999.0,99.0 +1985,3,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,97200,0,0,324,0,0,0,0,0,0,0,90,12.4,10,10,6.4,150,9,999999999,189,0.1090,0,88,999.000,999.0,99.0 +1985,3,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,97100,0,0,321,0,0,0,0,0,0,0,80,11.3,10,10,6.4,150,9,999999999,189,0.1090,0,88,999.000,999.0,99.0 +1985,3,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,97100,0,0,318,0,0,0,0,0,0,0,90,11.3,10,10,6.4,150,9,999999999,189,0.1090,0,88,999.000,999.0,99.0 +1985,3,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,97200,0,0,315,0,0,0,0,0,0,0,70,10.3,10,10,8.0,150,9,999999999,189,0.1090,0,88,999.000,999.0,99.0 +1985,3,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,97300,15,448,312,5,0,5,0,0,0,0,70,8.2,10,10,4.8,150,9,999999999,189,0.1130,0,88,999.000,999.0,99.0 +1985,3,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,97400,237,1377,312,61,1,61,6800,0,6800,2050,70,7.2,10,10,12.9,210,9,999999999,189,0.1130,0,88,999.000,999.0,99.0 +1985,3,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,97400,518,1377,309,91,1,91,10700,100,10700,3830,70,8.2,10,10,11.3,150,9,999999999,179,0.1130,0,88,999.000,999.0,99.0 +1985,3,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,97400,766,1377,309,160,1,160,18800,100,18800,7140,70,7.7,10,10,6.4,150,9,999999999,179,0.1130,0,88,999.000,999.0,99.0 +1985,3,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,97400,962,1377,309,196,1,195,23300,100,23300,9280,80,7.7,10,10,4.0,120,9,999999999,170,0.1130,0,88,999.000,999.0,99.0 +1985,3,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,97400,1094,1377,309,223,1,221,26700,100,26600,10760,80,7.7,10,10,1.8,120,9,999999999,170,0.1130,0,88,999.000,999.0,99.0 +1985,3,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,97400,1152,1377,309,448,2,446,51500,200,51300,17970,100,5.2,10,10,1.8,120,9,999999999,160,0.1130,0,88,999.000,999.0,99.0 +1985,3,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,97400,1132,1377,309,391,0,391,45300,0,45300,16510,80,6.2,10,10,1.8,120,9,999999999,160,0.1130,0,88,999.000,999.0,99.0 +1985,3,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,97400,1036,1377,312,356,1,355,40900,100,40900,14870,70,5.2,10,10,1.8,120,9,999999999,160,0.1130,0,88,999.000,999.0,99.0 +1985,3,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,97400,870,1377,315,282,1,282,32300,100,32200,11530,70,4.1,10,10,4.0,120,9,999999999,150,0.1130,0,88,999.000,999.0,99.0 +1985,3,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,97400,645,1377,315,202,0,202,22800,0,22800,7670,70,4.6,10,10,4.0,120,9,999999999,150,0.1130,0,88,999.000,999.0,99.0 +1985,3,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,97500,378,1377,315,119,1,119,13200,100,13200,3970,70,4.6,10,10,4.0,120,9,999999999,139,0.1130,0,88,999.000,999.0,99.0 +1985,3,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,97500,95,1136,315,32,0,32,3500,0,3500,1020,80,5.2,10,10,1.6,90,9,999999999,139,0.1130,0,88,999.000,999.0,99.0 +1985,3,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,97600,0,0,315,0,0,0,0,0,0,0,60,5.2,10,10,0.8,90,9,999999999,139,0.1090,0,88,999.000,999.0,99.0 +1985,3,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,97600,0,0,315,0,0,0,0,0,0,0,80,4.6,10,10,0.8,90,9,999999999,139,0.1090,0,88,999.000,999.0,99.0 +1985,3,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,97700,0,0,315,0,0,0,0,0,0,0,80,4.6,10,10,2.4,90,9,999999999,139,0.1090,0,88,999.000,999.0,99.0 +1985,3,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,97700,0,0,315,0,0,0,0,0,0,0,70,4.1,10,10,2.4,120,9,999999999,139,0.1090,0,88,999.000,999.0,99.0 +1985,3,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,97700,0,0,312,0,0,0,0,0,0,0,70,4.1,10,10,0.8,120,9,999999999,139,0.1090,0,88,999.000,999.0,99.0 +1985,3,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,97700,0,0,312,0,0,0,0,0,0,0,90,2.6,10,10,0.8,120,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1985,3,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,97700,0,0,312,0,0,0,0,0,0,0,140,2.1,10,10,0.8,120,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1985,3,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,97600,0,0,312,0,0,0,0,0,0,0,110,2.1,10,10,0.8,120,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1985,3,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,97600,0,0,312,0,0,0,0,0,0,0,0,0.0,10,10,0.8,90,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1985,3,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,97600,0,0,318,0,0,0,0,0,0,0,240,1.5,10,10,6.4,90,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1985,3,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,97700,0,0,318,0,0,0,0,0,0,0,260,2.1,10,10,6.4,90,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1985,3,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,97800,17,493,319,7,0,7,0,0,0,0,280,2.6,10,10,6.4,90,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1985,3,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,97800,243,1376,321,58,0,58,6500,0,6500,2000,260,3.1,10,10,3.2,90,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1985,3,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,97800,524,1376,330,149,0,149,16800,0,16800,5550,290,3.1,10,10,3.2,270,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1985,3,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,97800,772,1376,340,238,0,237,27000,0,27000,9540,300,4.6,10,10,3.2,180,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1985,3,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,97800,968,1376,310,631,676,159,67600,68900,19000,4520,250,2.6,1,1,12.9,77777,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1985,3,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.2,62,97800,1099,1376,331,635,362,348,69500,39200,38100,12270,300,5.2,5,5,16.1,77777,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1985,3,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.8,65,97800,1156,1376,362,497,31,471,56900,3200,54200,18550,270,6.7,10,10,19.3,760,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1985,3,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,97700,1136,1376,347,645,287,408,69800,31100,44100,15760,300,4.1,8,8,19.3,760,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1985,3,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.7,50,97700,1039,1376,357,525,274,318,57200,29600,34800,10100,260,6.7,8,8,24.1,910,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1985,3,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.7,48,97600,873,1376,350,592,537,252,62200,55200,27100,6370,300,5.7,6,6,24.1,910,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1985,3,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.6,43,97600,649,1376,342,402,462,185,41900,45700,20300,3880,300,5.2,3,3,24.1,77777,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1985,3,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.1,47,97600,382,1376,341,176,291,95,18800,25500,11700,1840,290,4.6,3,3,24.1,77777,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1985,3,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,6.1,52,97700,98,1158,330,34,50,29,3700,2600,3400,600,270,4.1,2,2,24.1,77777,9,999999999,150,0.1720,0,88,999.000,999.0,99.0 +1985,3,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.6,50,97600,0,0,340,0,0,0,0,0,0,0,230,4.1,7,6,24.1,3050,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1985,3,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.1,54,97600,0,0,348,0,0,0,0,0,0,0,200,3.6,10,8,24.1,3050,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1985,3,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.7,60,97600,0,0,360,0,0,0,0,0,0,0,220,4.1,10,10,24.1,3050,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1985,3,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.2,62,97700,0,0,361,0,0,0,0,0,0,0,240,5.7,10,10,19.3,3050,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1985,3,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.8,65,97600,0,0,352,0,0,0,0,0,0,0,250,7.2,10,9,19.3,1520,9,999999999,150,0.1100,0,88,999.000,999.0,99.0 +1985,3,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,97700,0,0,357,0,0,0,0,0,0,0,270,6.7,10,10,19.3,910,9,999999999,150,0.1110,0,88,999.000,999.0,99.0 +1985,3,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,97600,0,0,353,0,0,0,0,0,0,0,260,4.1,10,10,16.1,850,9,999999999,150,0.1110,0,88,999.000,999.0,99.0 +1985,3,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,97600,0,0,351,0,0,0,0,0,0,0,270,5.7,10,10,11.3,760,9,999999999,150,0.1110,0,88,999.000,999.0,99.0 +1985,3,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,97500,0,0,331,0,0,0,0,0,0,0,250,4.1,8,8,11.3,760,9,999999999,150,0.1110,0,88,999.000,999.0,99.0 +1985,3,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,97500,0,0,341,0,0,0,0,0,0,0,290,5.2,9,9,11.3,120,9,999999999,150,0.1110,0,88,999.000,999.0,99.0 +1985,3,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,97600,0,0,314,0,0,0,0,0,0,0,260,3.6,4,4,11.3,77777,9,999999999,150,0.1110,0,88,999.000,999.0,99.0 +1985,3,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,97600,19,516,309,9,11,8,0,0,0,0,290,4.1,3,3,0.8,77777,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1985,3,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,97700,250,1375,298,112,372,47,11700,27300,6800,840,280,4.1,0,0,6.4,77777,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1985,3,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,97700,531,1375,316,349,627,110,36200,58400,13600,2080,270,5.2,3,3,11.3,77777,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1985,3,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,97700,777,1375,323,546,714,146,57500,71100,17300,3270,300,5.2,3,3,12.9,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1985,3,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.6,58,97800,973,1375,356,212,62,168,24200,6700,19500,5140,270,9.3,10,10,11.3,610,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1985,3,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.6,60,97700,1104,1375,312,830,862,141,88500,87100,18400,4830,300,7.2,1,1,24.1,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1985,3,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.6,52,97600,1161,1375,330,833,738,212,89000,75300,25300,8830,290,7.7,3,3,24.1,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1985,3,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,3.9,44,97500,1140,1375,338,502,176,356,55500,18800,39900,13670,300,9.3,6,6,24.1,1070,9,999999999,129,0.1220,0,88,999.000,999.0,99.0 +1985,3,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,2.8,38,97400,1043,1375,337,506,340,249,54700,35400,27800,7970,300,7.2,4,4,24.1,77777,9,999999999,129,0.1220,0,88,999.000,999.0,99.0 +1985,3,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.7,35,97400,877,1375,338,524,380,282,56400,40600,30500,7440,300,6.2,5,5,24.1,77777,9,999999999,129,0.1220,0,88,999.000,999.0,99.0 +1985,3,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.7,35,97400,652,1375,335,368,450,155,39100,44700,17800,3190,300,8.2,4,4,48.3,77777,9,999999999,129,0.1220,0,88,999.000,999.0,99.0 +1985,3,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,1.1,35,97400,385,1375,332,182,335,88,19100,28900,11000,1630,300,7.7,4,4,48.3,77777,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1985,3,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.7,39,97600,101,1181,331,32,33,28,3400,1700,3300,580,300,6.2,5,5,48.3,77777,9,999999999,120,0.1220,0,88,999.000,999.0,99.0 +1985,3,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,0.6,40,97700,0,0,304,0,0,0,0,0,0,0,310,5.7,0,0,48.3,77777,9,999999999,120,0.1110,0,88,999.000,999.0,99.0 +1985,3,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.0,40,97800,0,0,310,0,0,0,0,0,0,0,310,5.7,2,2,48.3,77777,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1985,3,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.1,40,97900,0,0,295,0,0,0,0,0,0,0,300,4.6,0,0,48.3,77777,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1985,3,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-1.7,43,98000,0,0,288,0,0,0,0,0,0,0,360,3.1,0,0,48.3,77777,9,999999999,110,0.1110,0,88,999.000,999.0,99.0 +1985,3,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.7,46,98000,0,0,283,0,0,0,0,0,0,0,330,3.1,0,0,48.3,77777,9,999999999,100,0.1110,0,88,999.000,999.0,99.0 +1985,3,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.0,58,98000,0,0,278,0,0,0,0,0,0,0,320,1.5,0,0,24.1,77777,9,999999999,100,0.1130,0,88,999.000,999.0,99.0 +1985,3,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-0.6,60,97900,0,0,273,0,0,0,0,0,0,0,210,1.5,0,0,24.1,77777,9,999999999,100,0.1130,0,88,999.000,999.0,99.0 +1985,3,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.0,65,97900,0,0,271,0,0,0,0,0,0,0,220,2.6,0,0,24.1,77777,9,999999999,89,0.1130,0,88,999.000,999.0,99.0 +1985,3,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-0.6,65,97900,0,0,269,0,0,0,0,0,0,0,280,2.1,0,0,24.1,77777,9,999999999,89,0.1130,0,88,999.000,999.0,99.0 +1985,3,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-0.6,68,97900,0,0,267,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,89,0.1130,0,88,999.000,999.0,99.0 +1985,3,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-0.6,70,98000,0,0,264,0,0,0,0,0,0,0,310,2.6,0,0,24.1,77777,9,999999999,80,0.1130,0,88,999.000,999.0,99.0 +1985,3,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-0.6,65,98100,22,561,269,15,42,10,0,0,0,0,340,4.6,0,0,40.2,77777,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1985,3,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.0,58,98200,256,1375,278,124,473,39,13200,35600,6600,730,320,4.1,0,0,40.2,77777,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1985,3,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.0,50,98300,537,1375,287,354,758,62,37700,71900,9500,1310,330,5.2,0,0,40.2,77777,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1985,3,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.6,49,98400,783,1375,292,571,865,82,60000,85200,11400,1790,340,6.7,0,0,40.2,77777,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1985,3,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.1,47,98400,978,1375,297,749,922,96,78200,92000,12600,2450,330,7.2,0,0,40.2,77777,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1985,3,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.0,42,98500,1109,1375,298,871,953,105,90600,95400,13400,3290,320,5.2,0,0,40.2,77777,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1985,3,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.7,34,98500,1165,1375,301,919,959,109,95500,96100,13800,3880,20,4.6,0,0,40.2,77777,9,999999999,80,0.0780,0,88,999.000,999.0,99.0 +1985,3,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.7,32,98500,1144,1375,306,907,963,107,94200,96500,13600,3630,260,3.1,0,0,40.2,77777,9,999999999,69,0.0780,0,88,999.000,999.0,99.0 +1985,3,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-1.7,30,98500,1047,1375,310,819,945,101,85200,94500,13100,2830,340,5.2,0,0,40.2,77777,9,999999999,69,0.0780,0,88,999.000,999.0,99.0 +1985,3,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.7,29,98500,880,1375,313,666,903,90,69700,89600,12100,2070,20,3.1,0,0,40.2,77777,9,999999999,69,0.0780,0,88,999.000,999.0,99.0 +1985,3,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-3.3,25,98500,656,1375,311,463,823,72,49400,80700,10800,1600,320,4.1,0,0,40.2,77777,9,999999999,69,0.0780,0,88,999.000,999.0,99.0 +1985,3,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-2.8,28,98500,389,1375,309,234,655,50,24400,57700,8000,1000,320,2.6,0,0,40.2,77777,9,999999999,69,0.0780,0,88,999.000,999.0,99.0 +1985,3,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.7,32,98600,104,1180,306,50,223,25,4600,12000,3500,440,300,3.1,0,0,40.2,77777,9,999999999,69,0.0780,0,88,999.000,999.0,99.0 +1985,3,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-0.6,39,98700,0,0,300,0,0,0,0,0,0,0,340,3.6,0,0,40.2,77777,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1985,3,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.0,42,98800,0,0,298,0,0,0,0,0,0,0,340,3.6,0,0,40.2,77777,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1985,3,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.0,47,98800,0,0,291,0,0,0,0,0,0,0,330,3.6,0,0,40.2,77777,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1985,3,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,0.0,52,98800,0,0,284,0,0,0,0,0,0,0,340,1.5,0,0,40.2,77777,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1985,3,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.0,56,98800,0,0,280,0,0,0,0,0,0,0,330,2.6,0,0,40.2,77777,9,999999999,69,0.1130,0,88,999.000,999.0,99.0 +1985,3,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.0,56,98900,0,0,280,0,0,0,0,0,0,0,330,1.5,0,0,40.2,77777,9,999999999,60,0.1140,0,88,999.000,999.0,99.0 +1985,3,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.6,61,98900,0,0,279,0,0,0,0,0,0,0,10,2.1,0,0,24.1,77777,9,999999999,60,0.1140,0,88,999.000,999.0,99.0 +1985,3,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.6,61,98900,0,0,279,0,0,0,0,0,0,0,60,2.1,0,0,24.1,77777,9,999999999,60,0.1140,0,88,999.000,999.0,99.0 +1985,3,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.6,61,98900,0,0,279,0,0,0,0,0,0,0,70,3.1,0,0,24.1,77777,9,999999999,60,0.1140,0,88,999.000,999.0,99.0 +1985,3,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,0.0,63,99000,0,0,274,0,0,0,0,0,0,0,80,3.1,0,0,24.1,77777,9,999999999,60,0.1140,0,88,999.000,999.0,99.0 +1985,3,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.6,68,99100,0,0,272,0,0,0,0,0,0,0,90,3.1,0,0,24.1,77777,9,999999999,60,0.1140,0,88,999.000,999.0,99.0 +1985,3,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-0.6,65,99200,24,584,269,18,72,10,1500,2300,1400,170,80,2.1,0,0,24.1,77777,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1985,3,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.0,58,99200,263,1374,278,141,580,33,14900,45600,6200,670,80,3.1,0,0,24.1,77777,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1985,3,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,0.0,52,99300,543,1374,284,370,814,52,39400,77000,8900,1220,90,6.2,0,0,24.1,77777,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1985,3,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.6,45,99300,789,1374,296,590,914,69,62400,90200,10400,1700,90,2.6,0,0,32.2,77777,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1985,3,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,0.6,39,99400,983,1374,306,768,964,81,80600,96300,11500,2290,130,2.1,0,0,32.2,77777,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1985,3,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.7,29,99300,1113,1374,313,888,990,89,92900,99200,12200,3030,190,4.1,0,0,32.2,77777,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1985,3,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-1.1,28,99200,1169,1374,318,940,999,92,98100,100300,12500,3540,150,4.1,0,0,32.2,77777,9,999999999,60,0.0540,0,88,999.000,999.0,99.0 +1985,3,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-2.8,23,99100,1148,1374,321,918,983,98,95500,98600,12900,3490,190,5.2,1,0,32.2,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1985,3,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-2.2,22,99000,1051,1374,327,833,945,113,86500,94400,14100,2980,190,6.2,3,0,32.2,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1985,3,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-2.8,21,98900,884,1374,335,629,846,86,65800,84000,11600,2060,180,5.2,3,1,32.2,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1985,3,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-2.8,21,98900,659,1374,332,449,771,81,47400,75300,11200,1730,150,7.2,4,1,40.2,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1985,3,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-2.8,21,98900,392,1374,332,226,587,60,23800,51400,9100,1140,210,4.6,5,1,40.2,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1985,3,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-2.2,24,98900,107,1202,328,53,189,31,5100,9300,4200,560,160,3.6,5,1,40.2,77777,9,999999999,69,0.0540,0,88,999.000,999.0,99.0 +1985,3,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-2.2,25,98900,0,0,319,0,0,0,0,0,0,0,160,4.6,3,0,40.2,77777,9,999999999,69,0.1140,0,88,999.000,999.0,99.0 +1985,3,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.2,28,98900,0,0,312,0,0,0,0,0,0,0,170,3.6,1,0,32.2,77777,9,999999999,80,0.1140,0,88,999.000,999.0,99.0 +1985,3,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.7,32,98900,0,0,306,0,0,0,0,0,0,0,160,5.2,0,0,24.1,77777,9,999999999,80,0.1140,0,88,999.000,999.0,99.0 +1985,3,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-0.6,39,98900,0,0,300,0,0,0,0,0,0,0,180,3.6,0,0,24.1,77777,9,999999999,89,0.1140,0,88,999.000,999.0,99.0 +1985,3,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-0.6,40,98900,0,0,298,0,0,0,0,0,0,0,180,3.1,0,0,24.1,77777,9,999999999,89,0.1140,0,88,999.000,999.0,99.0 +1985,3,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.1,42,98800,0,0,293,0,0,0,0,0,0,0,180,3.1,0,0,24.1,77777,9,999999999,89,0.1150,0,88,999.000,999.0,99.0 +1985,3,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.1,42,98800,0,0,293,0,0,0,0,0,0,0,200,3.1,0,0,24.1,77777,9,999999999,100,0.1150,0,88,999.000,999.0,99.0 +1985,3,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-1.1,45,98800,0,0,288,0,0,0,0,0,0,0,230,3.1,0,0,24.1,77777,9,999999999,100,0.1150,0,88,999.000,999.0,99.0 +1985,3,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-0.6,48,98700,0,0,286,0,0,0,0,0,0,0,220,3.1,0,0,24.1,77777,9,999999999,110,0.1150,0,88,999.000,999.0,99.0 +1985,3,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-0.6,52,98700,0,0,282,0,0,0,0,0,0,0,150,1.5,0,0,24.1,77777,9,999999999,110,0.1150,0,88,999.000,999.0,99.0 +1985,3,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-0.6,48,98800,0,0,286,0,0,0,0,0,0,0,190,2.6,0,0,24.1,77777,9,999999999,120,0.1150,0,88,999.000,999.0,99.0 +1985,3,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.6,56,98700,27,606,295,14,5,13,1500,300,1400,320,90,2.1,7,3,16.1,77777,9,999999999,120,0.0950,0,88,999.000,999.0,99.0 +1985,3,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.9,64,98800,269,1373,306,112,235,67,12000,17400,8600,1260,180,3.6,9,3,16.1,77777,9,999999999,129,0.0950,0,88,999.000,999.0,99.0 +1985,3,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.6,62,98800,549,1373,317,304,375,156,32600,37100,17800,3270,180,4.1,9,3,16.1,77777,9,999999999,139,0.0950,0,88,999.000,999.0,99.0 +1985,3,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.7,56,98800,794,1373,334,502,525,201,53500,53600,22400,4630,230,5.7,9,4,16.1,77777,9,999999999,150,0.0950,0,88,999.000,999.0,99.0 +1985,3,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,4.4,40,98800,989,1373,344,682,598,254,73200,62100,28300,7450,210,6.2,9,4,16.1,77777,9,999999999,150,0.0950,0,88,999.000,999.0,99.0 +1985,3,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.3,32,98700,1118,1373,353,670,454,301,71800,47400,33100,11450,240,8.8,10,4,16.1,77777,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1985,3,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,3.9,31,98600,1174,1373,362,722,467,324,77400,48800,35600,14330,240,10.3,10,5,24.1,77777,9,999999999,170,0.0950,0,88,999.000,999.0,99.0 +1985,3,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,5.0,35,98600,1152,1373,364,615,326,342,67700,35400,37900,13410,270,8.2,10,6,24.1,7620,9,999999999,179,0.0950,0,88,999.000,999.0,99.0 +1985,3,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,6.1,37,98500,1054,1373,368,457,219,289,50300,23700,32000,9280,240,5.2,9,6,32.2,7620,9,999999999,189,0.0950,0,88,999.000,999.0,99.0 +1985,3,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.8,41,98300,887,1373,389,290,79,239,32000,8000,26800,8310,230,5.2,10,9,32.2,3050,9,999999999,200,0.0950,0,88,999.000,999.0,99.0 +1985,3,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.8,42,98300,663,1373,397,154,7,151,17900,500,17600,6370,220,5.2,10,10,32.2,3050,9,999999999,200,0.0950,0,88,999.000,999.0,99.0 +1985,3,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,9.4,55,98300,396,1373,387,83,5,82,9500,300,9500,3160,270,5.2,10,10,24.1,2740,9,999999999,209,0.0950,0,88,999.000,999.0,99.0 +1985,3,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.6,63,98300,110,1224,383,27,0,27,3000,0,3000,930,0,0.0,10,10,24.1,2440,9,999999999,220,0.0950,0,88,999.000,999.0,99.0 +1985,3,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.6,61,98200,0,0,385,0,0,0,0,0,0,0,240,4.1,10,10,19.3,2130,9,999999999,220,0.1150,0,88,999.000,999.0,99.0 +1985,3,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.6,61,98200,0,0,367,0,0,0,0,0,0,0,200,4.6,8,8,19.3,2440,9,999999999,220,0.1150,0,88,999.000,999.0,99.0 +1985,3,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.6,61,98300,0,0,375,0,0,0,0,0,0,0,220,3.6,9,9,19.3,2440,9,999999999,220,0.1150,0,88,999.000,999.0,99.0 +1985,3,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.6,61,98200,0,0,375,0,0,0,0,0,0,0,210,5.7,9,9,19.3,2440,9,999999999,220,0.1150,0,88,999.000,999.0,99.0 +1985,3,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.7,65,98200,0,0,376,0,0,0,0,0,0,0,210,5.2,9,9,19.3,2440,9,999999999,220,0.1150,0,88,999.000,999.0,99.0 +1985,3,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.2,70,98100,0,0,353,0,0,0,0,0,0,0,200,5.7,5,5,19.3,77777,9,999999999,220,0.1160,0,88,999.000,999.0,99.0 +1985,3,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,98100,0,0,364,0,0,0,0,0,0,0,200,4.6,8,8,19.3,2440,9,999999999,220,0.1160,0,88,999.000,999.0,99.0 +1985,3,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,98100,0,0,382,0,0,0,0,0,0,0,220,6.2,10,10,19.3,550,9,999999999,220,0.1160,0,88,999.000,999.0,99.0 +1985,3,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,98100,0,0,380,0,0,0,0,0,0,0,220,5.2,10,10,16.1,550,9,999999999,220,0.1160,0,88,999.000,999.0,99.0 +1985,3,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,98100,0,0,376,0,0,0,0,0,0,0,230,4.6,10,10,16.1,490,9,999999999,220,0.1160,0,88,999.000,999.0,99.0 +1985,3,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,98200,0,0,374,0,0,0,0,0,0,0,220,2.6,10,10,4.0,310,9,999999999,220,0.1160,0,88,999.000,999.0,99.0 +1985,3,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,98200,30,652,372,4,0,4,500,0,500,160,200,3.1,10,10,1.2,90,9,999999999,220,0.0610,0,88,999.000,999.0,99.0 +1985,3,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,98200,275,1372,372,60,4,59,6800,100,6700,2130,200,2.6,10,10,2.4,90,9,999999999,229,0.0610,0,88,999.000,999.0,99.0 +1985,3,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.9,90,98200,555,1372,375,156,3,154,17500,200,17500,5870,200,4.1,10,10,1.2,90,9,999999999,229,0.0610,0,88,999.000,999.0,99.0 +1985,3,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.9,84,98200,800,1372,381,283,3,281,31900,300,31800,10890,200,4.6,10,10,2.4,150,9,999999999,240,0.0610,0,88,999.000,999.0,99.0 +1985,3,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.9,78,98100,994,1372,387,320,3,318,37000,300,36800,13560,190,6.7,10,10,2.4,270,9,999999999,240,0.0610,0,88,999.000,999.0,99.0 +1985,3,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.0,76,98100,1123,1372,397,397,0,396,45800,0,45800,16600,200,5.2,10,10,9.7,430,9,999999999,250,0.0610,0,88,999.000,999.0,99.0 +1985,3,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,98000,1178,1372,404,416,1,414,48200,100,48100,17380,220,5.2,10,10,11.3,520,9,999999999,250,0.0610,0,88,999.000,999.0,99.0 +1985,3,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.9,56,98000,1156,1372,405,415,164,277,46700,17600,31800,11000,230,7.2,9,9,16.1,760,9,999999999,259,0.0610,0,88,999.000,999.0,99.0 +1985,3,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.9,56,97900,1058,1372,417,334,1,333,38800,100,38700,14450,240,6.7,10,10,12.9,820,9,999999999,270,0.0610,0,88,999.000,999.0,99.0 +1985,3,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.9,54,97800,891,1372,420,317,41,290,34800,4200,32100,9760,200,5.2,10,10,12.9,820,9,999999999,270,0.0610,0,88,999.000,999.0,99.0 +1985,3,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,14.4,52,97800,666,1372,427,160,1,160,18500,100,18500,6670,220,4.6,10,10,19.3,1370,9,999999999,279,0.0610,0,88,999.000,999.0,99.0 +1985,3,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,97800,399,1372,424,89,1,89,10200,100,10100,3370,230,4.6,10,10,19.3,1370,9,999999999,279,0.0610,0,88,999.000,999.0,99.0 +1985,3,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,14.4,56,97800,113,1246,409,39,11,38,4300,700,4200,880,210,5.7,9,9,19.3,3050,9,999999999,290,0.0610,0,88,999.000,999.0,99.0 +1985,3,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,97900,0,0,391,0,0,0,0,0,0,0,210,5.2,7,7,16.1,3050,9,999999999,290,0.1160,0,88,999.000,999.0,99.0 +1985,3,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,97900,0,0,368,0,0,0,0,0,0,0,200,5.2,4,2,16.1,77777,9,999999999,279,0.1160,0,88,999.000,999.0,99.0 +1985,3,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,97900,0,0,363,0,0,0,0,0,0,0,200,5.2,4,2,16.1,77777,9,999999999,279,0.1160,0,88,999.000,999.0,99.0 +1985,3,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,98000,0,0,348,0,0,0,0,0,0,0,210,5.7,2,0,16.1,77777,9,999999999,279,0.1160,0,88,999.000,999.0,99.0 +1985,3,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,98000,0,0,348,0,0,0,0,0,0,0,220,6.2,5,1,16.1,77777,9,999999999,270,0.1160,0,88,999.000,999.0,99.0 +1985,3,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,98000,0,0,357,0,0,0,0,0,0,0,210,4.6,8,5,16.1,7620,9,999999999,270,0.1180,0,88,999.000,999.0,99.0 +1985,3,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.9,78,97900,0,0,350,0,0,0,0,0,0,0,220,6.7,8,3,16.1,77777,9,999999999,270,0.1180,0,88,999.000,999.0,99.0 +1985,3,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,14.4,78,97900,0,0,390,0,0,0,0,0,0,0,230,7.7,10,10,16.1,610,9,999999999,259,0.1180,0,88,999.000,999.0,99.0 +1985,3,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,14.4,78,97900,0,0,390,0,0,0,0,0,0,0,220,7.7,10,10,16.1,700,9,999999999,259,0.1180,0,88,999.000,999.0,99.0 +1985,3,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,14.4,81,97900,0,0,359,0,0,0,0,0,0,0,240,5.2,6,6,16.1,700,9,999999999,259,0.1180,0,88,999.000,999.0,99.0 +1985,3,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.4,84,97900,0,0,360,0,0,0,0,0,0,0,200,3.6,7,7,16.1,700,9,999999999,250,0.1180,0,88,999.000,999.0,99.0 +1985,3,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,97900,33,674,385,8,0,8,1000,0,1000,300,220,4.1,10,10,12.9,760,9,999999999,250,0.0480,0,88,999.000,999.0,99.0 +1985,3,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.0,84,98100,282,1371,388,66,5,65,7400,200,7400,2310,250,5.7,10,10,12.9,490,9,999999999,250,0.0480,0,88,999.000,999.0,99.0 +1985,3,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,98100,561,1371,395,183,10,179,20500,800,20200,6510,230,4.6,10,10,12.9,490,9,999999999,250,0.0480,0,88,999.000,999.0,99.0 +1985,3,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.0,73,98200,806,1371,400,222,12,215,25700,1000,25100,9180,230,5.2,10,10,12.9,550,9,999999999,250,0.0480,0,88,999.000,999.0,99.0 +1985,3,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,98100,999,1371,410,421,9,415,47700,900,47000,15910,230,5.2,10,10,12.9,610,9,999999999,240,0.0480,0,88,999.000,999.0,99.0 +1985,3,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,98100,1127,1371,405,341,3,338,39900,300,39700,14990,230,4.6,10,10,16.1,2740,9,999999999,240,0.0480,0,88,999.000,999.0,99.0 +1985,3,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,98000,1182,1371,397,499,177,348,55600,18900,39300,14610,240,7.2,10,8,19.3,2740,9,999999999,240,0.0480,0,88,999.000,999.0,99.0 +1985,3,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.9,52,97900,1159,1371,403,473,103,386,52200,10600,43300,16570,200,7.7,9,8,19.3,2740,9,999999999,240,0.0480,0,88,999.000,999.0,99.0 +1985,3,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.3,47,97900,1061,1371,388,689,592,232,72300,59700,26000,7540,200,6.2,7,3,24.1,77777,9,999999999,240,0.0480,0,88,999.000,999.0,99.0 +1985,3,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.3,44,97800,894,1371,390,638,832,97,68600,83900,13800,2530,240,7.2,5,2,24.1,77777,9,999999999,229,0.0480,0,88,999.000,999.0,99.0 +1985,3,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.3,47,97800,669,1371,379,418,667,93,44600,66100,12300,2010,180,6.2,5,1,40.2,77777,9,999999999,229,0.0480,0,88,999.000,999.0,99.0 +1985,3,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.3,47,97800,402,1371,372,241,683,43,25800,61200,7700,930,200,6.2,1,0,40.2,77777,9,999999999,229,0.0480,0,88,999.000,999.0,99.0 +1985,3,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.3,48,97800,116,1246,376,53,237,26,5000,13100,3700,460,200,5.2,5,1,32.2,77777,9,999999999,229,0.0480,0,88,999.000,999.0,99.0 +1985,3,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,97900,0,0,382,0,0,0,0,0,0,0,220,5.2,7,4,24.1,7620,9,999999999,229,0.1180,0,88,999.000,999.0,99.0 +1985,3,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,97900,0,0,371,0,0,0,0,0,0,0,190,4.6,7,2,24.1,77777,9,999999999,229,0.1180,0,88,999.000,999.0,99.0 +1985,3,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,97900,0,0,353,0,0,0,0,0,0,0,210,4.1,3,0,24.1,77777,9,999999999,220,0.1180,0,88,999.000,999.0,99.0 +1985,3,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,97900,0,0,348,0,0,0,0,0,0,0,230,5.2,3,0,24.1,77777,9,999999999,220,0.1180,0,88,999.000,999.0,99.0 +1985,3,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.3,63,98000,0,0,372,0,0,0,0,0,0,0,240,4.1,7,6,24.1,7620,9,999999999,220,0.1180,0,88,999.000,999.0,99.0 +1985,3,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.8,68,97900,0,0,359,0,0,0,0,0,0,0,200,3.6,7,5,16.1,7620,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1985,3,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,97900,0,0,370,0,0,0,0,0,0,0,230,3.1,8,8,16.1,7620,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1985,3,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,97900,0,0,354,0,0,0,0,0,0,0,200,3.6,8,5,16.1,7620,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1985,3,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.9,81,97900,0,0,350,0,0,0,0,0,0,0,230,3.6,9,4,16.1,77777,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1985,3,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.0,84,97900,0,0,377,0,0,0,0,0,0,0,240,4.1,10,9,12.9,550,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1985,3,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,97900,0,0,378,0,0,0,0,0,0,0,220,4.1,9,9,12.9,550,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1985,3,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,98000,36,697,370,11,9,10,1200,500,1100,260,190,3.6,10,8,11.3,760,9,999999999,200,0.0530,0,88,999.000,999.0,99.0 +1985,3,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,98000,288,1371,357,145,309,81,14900,23600,10000,1510,200,3.6,10,4,12.9,77777,9,999999999,200,0.0530,0,88,999.000,999.0,99.0 +1985,3,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.0,78,97900,567,1371,394,144,1,143,16400,100,16300,5650,230,3.6,10,10,12.9,370,9,999999999,200,0.0530,0,88,999.000,999.0,99.0 +1985,3,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.0,73,97900,811,1371,389,354,102,294,38900,10400,32800,9160,230,2.6,10,9,12.9,520,9,999999999,200,0.0530,0,88,999.000,999.0,99.0 +1985,3,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.6,66,97900,1004,1371,382,578,419,273,61700,43500,29700,8270,190,5.7,9,6,19.3,760,9,999999999,200,0.0530,0,88,999.000,999.0,99.0 +1985,3,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,14.4,52,97900,1132,1371,389,755,636,232,80000,64500,26600,8940,220,5.2,10,4,19.3,77777,9,999999999,200,0.0530,0,88,999.000,999.0,99.0 +1985,3,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.3,44,97800,1186,1371,397,841,600,323,90400,62700,36000,14910,210,5.7,10,4,19.3,77777,9,999999999,200,0.0530,0,88,999.000,999.0,99.0 +1985,3,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.2,38,97700,1163,1371,398,901,770,249,95200,77900,28800,10400,180,5.7,10,3,24.1,77777,9,999999999,209,0.0530,0,88,999.000,999.0,99.0 +1985,3,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,10.6,34,97700,1065,1371,396,718,651,214,75900,66000,24500,7090,210,6.7,10,3,24.1,77777,9,999999999,209,0.0530,0,88,999.000,999.0,99.0 +1985,3,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,11.1,36,97700,897,1371,400,578,580,199,62500,60000,23200,5070,230,7.2,10,4,24.1,77777,9,999999999,209,0.0530,0,88,999.000,999.0,99.0 +1985,3,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.8,42,97600,672,1371,393,457,640,144,47300,62200,16700,2920,200,6.7,9,3,24.1,77777,9,999999999,209,0.0530,0,88,999.000,999.0,99.0 +1985,3,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,12.8,44,97600,406,1371,390,222,443,91,23400,39000,11800,1690,220,5.2,8,3,24.1,77777,9,999999999,209,0.0530,0,88,999.000,999.0,99.0 +1985,3,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.8,45,97600,119,1268,397,44,6,44,4900,0,4900,1300,210,5.2,8,6,24.1,7620,9,999999999,209,0.0530,0,88,999.000,999.0,99.0 +1985,3,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.8,48,97600,0,0,381,0,0,0,0,0,0,0,190,4.1,4,3,24.1,77777,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1985,3,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.8,50,97600,0,0,392,0,0,0,0,0,0,0,180,5.2,8,7,24.1,1680,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1985,3,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.8,53,97600,0,0,379,0,0,0,0,0,0,0,180,5.2,7,5,24.1,7620,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1985,3,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.2,55,97600,0,0,358,0,0,0,0,0,0,0,190,5.2,1,1,24.1,77777,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1985,3,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,97600,0,0,344,0,0,0,0,0,0,0,180,3.6,0,0,24.1,77777,9,999999999,200,0.1190,0,88,999.000,999.0,99.0 +1985,3,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.2,65,97600,0,0,338,0,0,0,0,0,0,0,190,4.1,0,0,24.1,77777,9,999999999,200,0.1200,0,88,999.000,999.0,99.0 +1985,3,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,97600,0,0,337,0,0,0,0,0,0,0,190,5.2,0,0,24.1,77777,9,999999999,189,0.1200,0,88,999.000,999.0,99.0 +1985,3,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,97600,0,0,352,0,0,0,0,0,0,0,200,5.7,4,4,24.1,77777,9,999999999,189,0.1200,0,88,999.000,999.0,99.0 +1985,3,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,97500,0,0,332,0,0,0,0,0,0,0,200,4.1,0,0,24.1,77777,9,999999999,189,0.1200,0,88,999.000,999.0,99.0 +1985,3,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.9,84,97500,0,0,330,0,0,0,0,0,0,0,190,6.2,0,0,12.9,77777,9,999999999,189,0.1200,0,88,999.000,999.0,99.0 +1985,3,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,97500,0,0,349,0,0,0,0,0,0,0,200,6.2,7,3,11.3,77777,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1985,3,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.0,84,97600,39,742,388,9,4,9,1000,200,1000,230,190,7.2,10,10,11.3,210,9,999999999,179,0.1000,0,88,999.000,999.0,99.0 +1985,3,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,97600,294,1370,367,120,145,89,13000,11700,10500,1930,190,8.2,8,7,12.9,310,9,999999999,189,0.1000,0,88,999.000,999.0,99.0 +1985,3,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,97500,573,1370,390,176,62,151,19400,6000,16900,4390,190,7.2,9,9,12.9,370,9,999999999,189,0.1000,0,88,999.000,999.0,99.0 +1985,3,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,97500,816,1370,404,216,6,212,25000,500,24700,9160,200,10.3,10,10,12.9,460,9,999999999,200,0.1000,0,88,999.000,999.0,99.0 +1985,3,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,97400,1009,1370,411,367,8,362,42100,800,41600,14850,200,13.9,10,10,12.9,700,9,999999999,200,0.1000,0,88,999.000,999.0,99.0 +1985,3,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,97600,1136,1370,382,181,8,174,22300,600,21800,8890,310,11.3,10,10,4.8,210,9,999999999,200,0.1000,0,88,999.000,999.0,99.0 +1985,3,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,97700,1190,1370,364,199,6,194,24600,500,24200,9820,290,9.3,10,10,3.2,460,9,999999999,209,0.1000,0,88,999.000,999.0,99.0 +1985,3,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,97600,1167,1370,361,445,4,442,51400,400,51000,18020,260,4.1,10,10,24.1,1070,9,999999999,220,0.1000,0,88,999.000,999.0,99.0 +1985,3,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,97600,1068,1370,369,342,2,340,39700,200,39500,14730,260,3.6,10,10,32.2,1520,9,999999999,220,0.1000,0,88,999.000,999.0,99.0 +1985,3,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,97500,900,1370,347,607,574,231,64800,59300,25700,5980,260,6.7,4,4,40.2,77777,9,999999999,229,0.1000,0,88,999.000,999.0,99.0 +1985,3,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,9.4,56,97500,675,1370,347,415,510,164,44000,51000,18800,3440,280,7.2,4,3,40.2,77777,9,999999999,229,0.1000,0,88,999.000,999.0,99.0 +1985,3,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.3,38,97500,409,1370,340,193,271,113,20600,24400,13300,2250,270,7.2,5,4,40.2,77777,9,999999999,229,0.1000,0,88,999.000,999.0,99.0 +1985,3,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,2.8,40,97500,123,1290,332,48,101,37,4900,4900,4500,690,250,5.2,4,3,40.2,77777,9,999999999,240,0.1000,0,88,999.000,999.0,99.0 +1985,3,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.8,46,97600,0,0,314,0,0,0,0,0,0,0,270,5.2,1,1,40.2,77777,9,999999999,229,0.1200,0,88,999.000,999.0,99.0 +1985,3,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,3.3,53,97700,0,0,302,0,0,0,0,0,0,0,250,4.6,0,0,24.1,77777,9,999999999,209,0.1200,0,88,999.000,999.0,99.0 +1985,3,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.6,3.4,57,97700,0,0,301,0,0,0,0,0,0,0,270,4.4,0,0,24.1,77777,9,999999999,200,0.1200,0,88,999.000,999.0,99.0 +1985,3,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.3,3.5,55,97800,0,0,300,0,0,0,0,0,0,0,290,4.2,0,0,24.1,77777,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1985,3,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.1,3.6,57,97800,0,0,299,0,0,0,0,0,0,0,270,4.0,0,0,24.1,77777,9,999999999,160,0.1200,0,88,999.000,999.0,99.0 +1977,4,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.8,3.6,53,98100,0,0,327,0,0,0,0,0,0,0,310,3.7,10,8,32.2,7620,9,999999999,120,0.1090,0,88,999.000,999.0,99.0 +1977,4,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.6,3.7,64,98100,0,0,343,0,0,0,0,0,0,0,240,3.5,10,10,32.2,7620,9,999999999,129,0.1090,0,88,999.000,999.0,99.0 +1977,4,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.3,3.8,64,98100,0,0,342,0,0,0,0,0,0,0,0,3.3,10,10,32.2,3660,9,999999999,129,0.1090,0,88,999.000,999.0,99.0 +1977,4,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,3.9,61,98100,0,0,341,0,0,0,0,0,0,0,20,3.1,10,10,32.2,2130,9,999999999,139,0.1090,0,88,999.000,999.0,99.0 +1977,4,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,3.9,57,98100,0,0,346,0,0,0,0,0,0,0,10,3.1,10,10,32.2,1830,9,999999999,150,0.1090,0,88,999.000,999.0,99.0 +1977,4,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,4.4,57,98200,0,0,350,0,0,0,0,0,0,0,0,0.0,10,10,24.1,1680,9,999999999,150,0.1090,0,88,999.000,999.0,99.0 +1977,4,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,3.9,55,98300,42,764,349,8,0,8,1000,0,1000,310,0,0.0,10,10,32.2,1520,9,999999999,160,0.2350,0,88,999.000,999.0,99.0 +1977,4,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,98300,300,1369,343,40,3,40,4800,100,4800,1610,0,0.0,10,10,40.2,3050,9,999999999,170,0.2350,0,88,999.000,999.0,99.0 +1977,4,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.0,59,98300,578,1369,350,143,4,141,16300,300,16200,5660,60,4.1,10,10,40.2,3050,9,999999999,179,0.2350,0,88,999.000,999.0,99.0 +1977,4,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,3.3,51,98400,821,1369,351,145,5,142,17300,400,17100,6710,100,4.1,10,10,40.2,1220,9,999999999,189,0.2350,0,88,999.000,999.0,99.0 +1977,4,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.0,57,98300,1013,1369,353,198,7,192,23700,500,23300,9370,80,5.2,10,10,40.2,3050,9,999999999,200,0.2350,0,88,999.000,999.0,99.0 +1977,4,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.0,50,98300,1140,1369,364,379,3,376,44100,300,43800,16170,100,4.6,10,10,40.2,3050,9,999999999,209,0.2350,0,88,999.000,999.0,99.0 +1977,4,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,5.6,50,98200,1193,1369,357,593,149,464,64900,15800,51000,20090,100,4.6,10,9,40.2,3050,9,999999999,229,0.2350,0,88,999.000,999.0,99.0 +1977,4,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.1,48,98100,1170,1369,374,332,4,328,39200,400,38800,14850,90,3.1,10,10,40.2,910,9,999999999,240,0.2350,0,88,999.000,999.0,99.0 +1977,4,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.7,50,98100,1071,1369,375,398,27,377,45900,2600,43800,15770,160,2.1,10,10,40.2,910,9,999999999,250,0.2350,0,88,999.000,999.0,99.0 +1977,4,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.7,50,98100,903,1369,375,258,0,257,29800,0,29800,11120,90,4.1,10,10,40.2,910,9,999999999,259,0.2350,0,88,999.000,999.0,99.0 +1977,4,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.8,52,98000,678,1369,379,222,2,221,25000,200,24900,8410,90,4.1,10,10,40.2,910,9,999999999,270,0.2350,0,88,999.000,999.0,99.0 +1977,4,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.8,54,98000,412,1369,376,89,1,89,10200,100,10200,3430,100,3.6,10,10,40.2,820,9,999999999,279,0.2350,0,88,999.000,999.0,99.0 +1977,4,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.8,54,98000,126,1312,376,34,0,34,3800,0,3800,1120,90,4.1,10,10,32.2,610,9,999999999,290,0.2350,0,88,999.000,999.0,99.0 +1977,4,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,9.4,65,98000,0,0,372,0,0,0,0,0,0,0,110,3.6,10,10,32.2,3660,9,999999999,290,0.1090,0,88,999.000,999.0,99.0 +1977,4,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,98100,0,0,357,0,0,0,0,0,0,0,90,4.1,9,9,24.1,3050,9,999999999,279,0.1090,0,88,999.000,999.0,99.0 +1977,4,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,98100,0,0,343,0,0,0,0,0,0,0,120,3.6,7,7,24.1,3050,9,999999999,279,0.1090,0,88,999.000,999.0,99.0 +1977,4,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,98000,0,0,353,0,0,0,0,0,0,0,120,4.1,10,9,24.1,1070,9,999999999,279,0.1090,0,88,999.000,999.0,99.0 +1977,4,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,98000,0,0,365,0,0,0,0,0,0,0,120,4.1,10,10,24.1,1220,9,999999999,270,0.1090,0,88,999.000,999.0,99.0 +1977,4,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,98000,0,0,348,0,0,0,0,0,0,0,120,5.2,8,8,24.1,1370,9,999999999,270,0.1100,0,88,999.000,999.0,99.0 +1977,4,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,97900,0,0,366,0,0,0,0,0,0,0,140,4.1,10,10,24.1,910,9,999999999,270,0.1100,0,88,999.000,999.0,99.0 +1977,4,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,97900,0,0,367,0,0,0,0,0,0,0,140,2.6,10,10,24.1,760,9,999999999,259,0.1100,0,88,999.000,999.0,99.0 +1977,4,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,97900,0,0,350,0,0,0,0,0,0,0,130,2.6,10,9,24.1,3660,9,999999999,259,0.1100,0,88,999.000,999.0,99.0 +1977,4,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,97900,0,0,351,0,0,0,0,0,0,0,150,3.1,9,9,24.1,7620,9,999999999,259,0.1100,0,88,999.000,999.0,99.0 +1977,4,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,97900,0,0,339,0,0,0,0,0,0,0,110,2.6,7,7,12.9,240,9,999999999,250,0.1100,0,88,999.000,999.0,99.0 +1977,4,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,96,98000,45,787,359,14,0,14,1600,0,1600,500,190,2.6,10,10,3.2,90,9,999999999,250,0.2500,0,88,999.000,999.0,99.0 +1977,4,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98000,306,1368,363,38,0,37,4400,0,4400,1510,150,2.1,10,10,0.0,0,9,999999999,250,0.2500,0,88,999.000,999.0,99.0 +1977,4,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.0,97,98000,584,1368,377,99,1,99,11700,100,11700,4320,150,3.1,10,10,0.8,30,9,999999999,250,0.2500,0,88,999.000,999.0,99.0 +1977,4,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,98000,826,1368,386,265,1,265,30300,100,30200,10760,180,4.6,10,10,8.0,240,9,999999999,250,0.2500,0,88,999.000,999.0,99.0 +1977,4,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,98000,1018,1368,389,519,152,407,56400,16000,44400,13180,200,6.7,8,8,12.9,760,9,999999999,259,0.2500,0,88,999.000,999.0,99.0 +1977,4,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,97900,1144,1368,404,619,181,469,67400,19200,51400,18350,220,6.2,10,9,12.9,610,9,999999999,259,0.2500,0,88,999.000,999.0,99.0 +1977,4,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,97900,1197,1368,415,278,5,273,33400,400,33000,13010,210,6.2,10,10,12.9,640,9,999999999,259,0.2500,0,88,999.000,999.0,99.0 +1977,4,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,97800,1173,1368,406,550,172,403,60600,18300,44800,16710,210,6.2,10,9,12.9,700,9,999999999,259,0.2500,0,88,999.000,999.0,99.0 +1977,4,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,97800,1074,1368,427,338,13,328,39400,1200,38500,14430,200,6.2,10,10,16.1,700,9,999999999,259,0.2500,0,88,999.000,999.0,99.0 +1977,4,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,97700,906,1368,424,232,9,226,27100,800,26600,10150,180,7.2,10,10,16.1,820,9,999999999,270,0.2500,0,88,999.000,999.0,99.0 +1977,4,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.7,60,97600,681,1368,418,202,61,171,22200,6000,19200,5330,180,6.2,9,9,24.1,9140,9,999999999,270,0.2500,0,88,999.000,999.0,99.0 +1977,4,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,97600,415,1368,414,96,18,91,11000,1000,10700,3500,180,5.2,9,9,24.1,1070,9,999999999,270,0.2500,0,88,999.000,999.0,99.0 +1977,4,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,97600,129,1311,408,40,1,40,4400,0,4400,1250,180,4.6,9,9,24.1,7620,9,999999999,270,0.2500,0,88,999.000,999.0,99.0 +1977,4,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,97500,0,0,385,0,0,0,0,0,0,0,180,6.2,7,7,24.1,7620,9,999999999,279,0.1100,0,88,999.000,999.0,99.0 +1977,4,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,97500,0,0,399,0,0,0,0,0,0,0,180,6.2,10,9,24.1,7620,9,999999999,279,0.1100,0,88,999.000,999.0,99.0 +1977,4,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,97500,0,0,412,0,0,0,0,0,0,0,180,7.2,10,10,24.1,7620,9,999999999,290,0.1100,0,88,999.000,999.0,99.0 +1977,4,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,97600,0,0,408,0,0,0,0,0,0,0,210,7.2,10,10,24.1,7620,9,999999999,300,0.1100,0,88,999.000,999.0,99.0 +1977,4,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,97600,0,0,409,0,0,0,0,0,0,0,200,7.2,10,10,19.3,6100,9,999999999,300,0.1100,0,88,999.000,999.0,99.0 +1977,4,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,97500,0,0,409,0,0,0,0,0,0,0,200,9.3,10,10,19.3,4880,9,999999999,309,0.1110,0,88,999.000,999.0,99.0 +1977,4,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,97500,0,0,409,0,0,0,0,0,0,0,230,7.2,10,10,19.3,520,9,999999999,320,0.1110,0,88,999.000,999.0,99.0 +1977,4,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.2,81,97400,0,0,406,0,0,0,0,0,0,0,200,7.7,10,10,19.3,700,9,999999999,320,0.1110,0,88,999.000,999.0,99.0 +1977,4,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.2,81,97400,0,0,406,0,0,0,0,0,0,0,210,8.8,10,10,16.1,430,9,999999999,329,0.1110,0,88,999.000,999.0,99.0 +1977,4,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.2,93,97600,0,0,394,0,0,0,0,0,0,0,340,7.2,10,10,11.3,270,9,999999999,340,0.1110,0,88,999.000,999.0,99.0 +1977,4,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,97800,0,0,371,0,0,0,0,0,0,0,320,3.6,10,10,16.1,370,9,999999999,340,0.1110,0,88,999.000,999.0,99.0 +1977,4,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,97800,49,809,368,10,1,10,1200,0,1200,380,220,1.5,10,10,24.1,1070,9,999999999,350,0.0710,0,88,999.000,999.0,99.0 +1977,4,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,96,97800,312,1367,366,41,1,41,4900,0,4900,1660,220,2.6,10,10,6.4,1070,9,999999999,350,0.0710,0,88,999.000,999.0,99.0 +1977,4,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,15.0,100,97900,589,1367,373,110,4,108,12900,300,12700,4650,320,1.5,10,10,9.7,90,9,999999999,340,0.0710,0,88,999.000,999.0,99.0 +1977,4,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,97900,832,1367,376,134,2,132,16100,100,16000,6340,310,1.5,10,10,6.4,150,9,999999999,340,0.0710,0,88,999.000,999.0,99.0 +1977,4,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,97900,1022,1367,372,222,5,218,26500,400,26200,10430,0,0.0,10,10,3.2,120,9,999999999,340,0.0710,0,88,999.000,999.0,99.0 +1977,4,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,97800,1148,1367,376,234,3,231,28300,200,28100,11300,10,1.5,10,10,6.4,180,9,999999999,329,0.0710,0,88,999.000,999.0,99.0 +1977,4,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,97800,1201,1367,376,435,1,435,50600,100,50500,18080,10,2.1,10,10,6.4,180,9,999999999,329,0.0710,0,88,999.000,999.0,99.0 +1977,4,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,97800,1177,1367,376,474,2,472,54500,200,54300,18780,10,7.2,10,10,8.0,180,9,999999999,329,0.0710,0,88,999.000,999.0,99.0 +1977,4,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,97800,1077,1367,374,372,0,371,42900,0,42900,15670,10,7.2,10,10,8.0,180,9,999999999,320,0.0710,0,88,999.000,999.0,99.0 +1977,4,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,97700,909,1367,380,342,1,341,38700,100,38600,13390,30,3.6,10,10,24.1,820,9,999999999,320,0.0710,0,88,999.000,999.0,99.0 +1977,4,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.9,81,97600,684,1367,384,234,1,233,26200,100,26200,8740,60,5.2,10,10,24.1,520,9,999999999,320,0.0710,0,88,999.000,999.0,99.0 +1977,4,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.9,84,97500,418,1367,350,199,314,104,20900,27900,12300,1960,80,4.1,5,5,24.1,77777,9,999999999,309,0.0710,0,88,999.000,999.0,99.0 +1977,4,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.9,87,97600,132,1333,360,48,41,43,5200,2700,4900,980,90,4.1,9,8,24.1,7620,9,999999999,309,0.0710,0,88,999.000,999.0,99.0 +1977,4,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,97500,0,0,344,0,0,0,0,0,0,0,110,6.2,5,5,24.1,77777,9,999999999,300,0.1110,0,88,999.000,999.0,99.0 +1977,4,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,97600,0,0,341,0,0,0,0,0,0,0,120,5.2,5,5,24.1,77777,9,999999999,300,0.1110,0,88,999.000,999.0,99.0 +1977,4,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,97500,0,0,336,0,0,0,0,0,0,0,120,4.1,4,4,24.1,77777,9,999999999,290,0.1110,0,88,999.000,999.0,99.0 +1977,4,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,97500,0,0,327,0,0,0,0,0,0,0,90,4.1,2,2,24.1,77777,9,999999999,290,0.1110,0,88,999.000,999.0,99.0 +1977,4,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,96,97500,0,0,366,0,0,0,0,0,0,0,90,3.6,10,10,19.3,790,9,999999999,279,0.1110,0,88,999.000,999.0,99.0 +1977,4,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,96,97500,0,0,366,0,0,0,0,0,0,0,120,3.6,10,10,19.3,850,9,999999999,279,0.1130,0,88,999.000,999.0,99.0 +1977,4,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,97400,0,0,358,0,0,0,0,0,0,0,140,3.1,9,9,16.1,910,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1977,4,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,97400,0,0,372,0,0,0,0,0,0,0,140,3.1,10,10,12.9,550,9,999999999,259,0.1130,0,88,999.000,999.0,99.0 +1977,4,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,97300,0,0,376,0,0,0,0,0,0,0,160,1.5,10,10,11.3,550,9,999999999,259,0.1130,0,88,999.000,999.0,99.0 +1977,4,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,14.4,93,97200,0,0,358,0,0,0,0,0,0,0,170,4.1,8,8,9.7,980,9,999999999,250,0.1130,0,88,999.000,999.0,99.0 +1977,4,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.0,97,97200,0,0,340,0,0,0,0,0,0,0,180,3.6,3,3,6.4,77777,9,999999999,250,0.1130,0,88,999.000,999.0,99.0 +1977,4,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,97200,53,854,355,20,15,18,2100,800,2000,440,170,3.1,9,6,2.4,210,9,999999999,240,0.0630,0,88,999.000,999.0,99.0 +1977,4,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,97100,318,1367,382,110,31,103,12100,2700,11400,2510,160,6.7,10,9,2.4,150,9,999999999,240,0.0630,0,88,999.000,999.0,99.0 +1977,4,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,97100,595,1367,396,256,159,187,27900,15900,20900,4470,200,7.7,10,9,12.9,400,9,999999999,250,0.0630,0,88,999.000,999.0,99.0 +1977,4,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,97100,837,1367,410,315,102,253,34700,10300,28400,8360,190,7.2,10,10,16.1,700,9,999999999,250,0.0630,0,88,999.000,999.0,99.0 +1977,4,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,97000,1027,1367,419,381,8,376,43800,800,43200,15390,190,8.2,10,10,19.3,760,9,999999999,250,0.0630,0,88,999.000,999.0,99.0 +1977,4,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,97000,1152,1367,418,339,19,323,40000,1700,38600,14630,200,7.7,10,10,24.1,850,9,999999999,259,0.0630,0,88,999.000,999.0,99.0 +1977,4,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,96800,1205,1367,422,416,4,412,48500,400,48100,17500,200,8.2,10,10,24.1,1070,9,999999999,259,0.0630,0,88,999.000,999.0,99.0 +1977,4,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,96600,1180,1367,411,666,386,334,71300,40300,36400,15320,190,9.3,8,8,24.1,1520,9,999999999,259,0.0630,0,88,999.000,999.0,99.0 +1977,4,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,96400,1080,1367,434,287,9,280,33900,800,33300,12920,190,12.9,10,10,24.1,820,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1977,4,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.7,58,96300,912,1367,434,296,30,276,32600,3100,30600,9600,180,9.3,10,10,24.1,1520,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1977,4,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.6,54,96200,687,1367,432,193,13,187,22100,1100,21600,7610,190,12.9,10,10,16.1,1520,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1977,4,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,96200,421,1367,429,102,6,101,11700,300,11600,3800,180,10.3,10,10,11.3,980,9,999999999,279,0.0630,0,88,999.000,999.0,99.0 +1977,4,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.0,56,96200,135,1355,425,28,3,27,3100,0,3100,950,190,12.9,10,10,9.7,980,9,999999999,279,0.0630,0,88,999.000,999.0,99.0 +1977,4,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,96200,0,0,423,0,0,0,0,0,0,0,190,8.2,10,10,11.3,760,9,999999999,279,0.1130,0,88,999.000,999.0,99.0 +1977,4,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,96400,0,0,401,0,0,0,0,0,0,0,320,7.7,10,10,4.8,120,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1977,4,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.6,93,96400,0,0,383,0,0,0,0,0,0,0,300,4.1,10,10,8.0,760,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1977,4,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,14.4,90,96400,0,0,378,0,0,0,0,0,0,0,270,5.7,10,10,4.8,120,9,999999999,259,0.1130,0,88,999.000,999.0,99.0 +1977,4,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,96,96400,0,0,369,0,0,0,0,0,0,0,270,4.1,10,10,19.3,1010,9,999999999,250,0.1130,0,88,999.000,999.0,99.0 +1977,4,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,96400,0,0,365,0,0,0,0,0,0,0,270,4.6,10,10,19.3,460,9,999999999,250,0.1140,0,88,999.000,999.0,99.0 +1977,4,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,96400,0,0,358,0,0,0,0,0,0,0,270,6.2,10,10,24.1,1520,9,999999999,250,0.1140,0,88,999.000,999.0,99.0 +1977,4,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,96500,0,0,355,0,0,0,0,0,0,0,220,5.2,10,10,24.1,550,9,999999999,240,0.1140,0,88,999.000,999.0,99.0 +1977,4,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.6,93,96400,0,0,352,0,0,0,0,0,0,0,240,5.2,10,10,24.1,820,9,999999999,229,0.1140,0,88,999.000,999.0,99.0 +1977,4,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,96400,0,0,351,0,0,0,0,0,0,0,280,8.2,10,10,19.3,880,9,999999999,229,0.1140,0,88,999.000,999.0,99.0 +1977,4,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,96700,0,0,338,0,0,0,0,0,0,0,260,5.7,10,10,24.1,1520,9,999999999,229,0.1140,0,88,999.000,999.0,99.0 +1977,4,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.9,71,96700,56,876,314,21,7,21,2400,400,2300,510,260,4.6,9,8,40.2,1520,9,999999999,220,0.0770,0,88,999.000,999.0,99.0 +1977,4,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.3,66,96700,324,1366,311,92,13,89,10300,600,10100,3060,250,6.2,8,7,40.2,2740,9,999999999,209,0.0770,0,88,999.000,999.0,99.0 +1977,4,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.3,64,96800,600,1366,300,337,537,103,35500,51900,12600,2090,260,7.7,6,2,40.2,77777,9,999999999,200,0.0770,0,88,999.000,999.0,99.0 +1977,4,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.3,61,97000,842,1366,328,313,140,227,34700,14800,25600,6230,260,11.8,9,9,40.2,880,9,999999999,179,0.0770,0,88,999.000,999.0,99.0 +1977,4,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,97100,1031,1366,316,487,131,388,53100,13900,42600,12800,270,11.8,9,9,32.2,910,9,999999999,170,0.0770,0,88,999.000,999.0,99.0 +1977,4,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.7,57,97100,1156,1366,312,893,759,252,94200,76800,29000,10430,280,10.3,7,7,40.2,1070,9,999999999,160,0.0770,0,88,999.000,999.0,99.0 +1977,4,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-2.2,43,97200,1208,1366,304,821,588,302,89100,61500,34600,15150,290,9.3,6,6,40.2,1070,9,999999999,150,0.0770,0,88,999.000,999.0,99.0 +1977,4,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-2.2,41,97400,1183,1366,304,905,781,230,96400,79500,27300,10430,290,11.3,5,5,40.2,77777,9,999999999,129,0.0770,0,88,999.000,999.0,99.0 +1977,4,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-2.8,41,97400,1083,1366,296,799,802,164,83400,80400,19500,5200,300,8.2,3,3,40.2,77777,9,999999999,120,0.0770,0,88,999.000,999.0,99.0 +1977,4,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-3.3,39,97500,915,1366,298,590,611,182,62100,61500,20700,4740,300,8.8,4,4,40.2,77777,9,999999999,110,0.0770,0,88,999.000,999.0,99.0 +1977,4,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-3.3,39,97600,690,1366,300,356,292,209,38200,30300,22800,4760,280,7.7,5,5,40.2,77777,9,999999999,89,0.0770,0,88,999.000,999.0,99.0 +1977,4,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-3.9,41,97800,425,1366,298,230,345,124,24500,31500,14600,2510,300,7.7,6,6,40.2,1220,9,999999999,80,0.0770,0,88,999.000,999.0,99.0 +1977,4,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-5.0,40,97800,139,1354,285,52,179,32,5300,9500,4300,570,300,6.2,3,3,40.2,77777,9,999999999,69,0.0770,0,88,999.000,999.0,99.0 +1977,4,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-4.4,49,98000,0,0,274,0,0,0,0,0,0,0,280,3.6,2,2,40.2,77777,9,999999999,69,0.1140,0,88,999.000,999.0,99.0 +1977,4,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-3.3,60,98100,0,0,260,0,0,0,0,0,0,0,270,3.6,0,0,40.2,77777,9,999999999,69,0.1140,0,88,999.000,999.0,99.0 +1977,4,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,98200,0,0,258,0,0,0,0,0,0,0,270,3.1,0,0,32.2,77777,9,999999999,60,0.1140,0,88,999.000,999.0,99.0 +1977,4,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.8,73,98200,0,0,252,0,0,0,0,0,0,0,280,3.1,0,0,32.2,77777,9,999999999,60,0.1140,0,88,999.000,999.0,99.0 +1977,4,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.8,73,98300,0,0,252,0,0,0,0,0,0,0,270,3.1,0,0,32.2,77777,9,999999999,60,0.1140,0,88,999.000,999.0,99.0 +1977,4,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-2.8,70,98300,0,0,254,0,0,0,0,0,0,0,260,4.1,0,0,32.2,77777,9,999999999,60,0.1150,0,88,999.000,999.0,99.0 +1977,4,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.8,73,98300,0,0,252,0,0,0,0,0,0,0,270,4.1,0,0,32.2,77777,9,999999999,60,0.1150,0,88,999.000,999.0,99.0 +1977,4,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-2.8,79,98300,0,0,248,0,0,0,0,0,0,0,270,3.1,0,0,32.2,77777,9,999999999,60,0.1150,0,88,999.000,999.0,99.0 +1977,4,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-2.8,76,98400,0,0,250,0,0,0,0,0,0,0,250,3.1,0,0,32.2,77777,9,999999999,60,0.1150,0,88,999.000,999.0,99.0 +1977,4,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-2.8,82,98400,0,0,246,0,0,0,0,0,0,0,250,3.1,0,0,32.2,77777,9,999999999,50,0.1150,0,88,999.000,999.0,99.0 +1977,4,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-2.8,76,98500,0,0,250,0,0,0,0,0,0,0,250,4.1,0,0,32.2,77777,9,999999999,50,0.1150,0,88,999.000,999.0,99.0 +1977,4,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.8,73,98500,60,899,252,30,81,20,2800,3000,2600,350,260,4.6,0,0,40.2,77777,9,999999999,50,0.1120,0,88,999.000,999.0,99.0 +1977,4,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.7,62,98600,330,1365,265,176,514,54,18500,42500,8200,1010,290,4.6,0,0,48.3,77777,9,999999999,50,0.1120,0,88,999.000,999.0,99.0 +1977,4,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.7,54,98700,606,1365,274,408,737,83,42500,70900,11000,1670,300,5.7,0,0,48.3,77777,9,999999999,50,0.1120,0,88,999.000,999.0,99.0 +1977,4,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-4.4,36,98800,847,1365,282,621,833,107,65800,83300,14000,2550,270,4.6,0,0,48.3,77777,9,999999999,60,0.1120,0,88,999.000,999.0,99.0 +1977,4,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-4.4,32,98800,1036,1365,289,804,899,123,83100,89700,14900,2990,300,7.2,0,0,48.3,77777,9,999999999,60,0.1120,0,88,999.000,999.0,99.0 +1977,4,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-3.3,32,98700,1160,1365,297,917,925,133,94600,92600,15700,4330,290,7.7,0,0,48.3,77777,9,999999999,60,0.1120,0,88,999.000,999.0,99.0 +1977,4,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-2.2,32,98700,1212,1365,303,964,934,137,99300,93500,16100,5290,270,9.3,0,0,48.3,77777,9,999999999,60,0.1120,0,88,999.000,999.0,99.0 +1977,4,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-2.2,31,98700,1186,1365,305,945,934,135,97400,93500,15900,4770,280,8.8,0,0,48.3,77777,9,999999999,60,0.1120,0,88,999.000,999.0,99.0 +1977,4,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-2.2,30,98600,1086,1365,308,851,911,127,87800,91000,15200,3420,290,8.2,0,0,48.3,77777,9,999999999,60,0.1120,0,88,999.000,999.0,99.0 +1977,4,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-2.2,30,98600,918,1365,308,695,867,113,73800,87200,15000,2930,290,9.3,0,0,48.3,77777,9,999999999,60,0.1120,0,88,999.000,999.0,99.0 +1977,4,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-1.7,31,98600,693,1365,308,487,781,92,51000,76500,12000,1940,290,8.8,0,0,48.3,77777,9,999999999,69,0.1120,0,88,999.000,999.0,99.0 +1977,4,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-2.2,31,98700,428,1365,305,255,614,64,26900,55300,9500,1240,310,8.2,0,0,48.3,77777,9,999999999,69,0.1120,0,88,999.000,999.0,99.0 +1977,4,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.7,37,98700,142,1365,297,57,227,32,5800,11900,4600,570,320,6.2,0,0,48.3,77777,9,999999999,69,0.1120,0,88,999.000,999.0,99.0 +1977,4,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.7,40,98800,0,11,292,0,0,0,0,0,0,0,310,3.1,0,0,40.2,77777,9,999999999,69,0.1150,0,88,999.000,999.0,99.0 +1977,4,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.7,46,98900,0,0,283,0,0,0,0,0,0,0,310,2.6,0,0,40.2,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1977,4,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.7,56,98900,0,0,272,0,0,0,0,0,0,0,290,4.1,0,0,40.2,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1977,4,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.1,60,99000,0,0,270,0,0,0,0,0,0,0,270,3.6,0,0,40.2,77777,9,999999999,80,0.1150,0,88,999.000,999.0,99.0 +1977,4,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.1,65,99000,0,0,266,0,0,0,0,0,0,0,280,3.6,0,0,40.2,77777,9,999999999,89,0.1150,0,88,999.000,999.0,99.0 +1977,4,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,99100,0,0,262,0,0,0,0,0,0,0,280,4.1,0,0,40.2,77777,9,999999999,89,0.1170,0,88,999.000,999.0,99.0 +1977,4,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,99100,0,0,262,0,0,0,0,0,0,0,280,3.1,0,0,40.2,77777,9,999999999,89,0.1170,0,88,999.000,999.0,99.0 +1977,4,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-0.6,70,99000,0,0,264,0,0,0,0,0,0,0,200,1.5,0,0,40.2,77777,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1977,4,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-0.6,73,99100,0,0,262,0,0,0,0,0,0,0,260,2.1,0,0,40.2,77777,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1977,4,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.1,73,99100,0,0,260,0,0,0,0,0,0,0,300,1.0,0,0,40.2,77777,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1977,4,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,0.0,82,99100,0,0,259,0,0,0,0,0,0,0,210,2.6,0,0,40.2,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1977,4,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,0.0,82,99100,64,943,259,36,169,17,3000,8300,2400,310,190,2.1,0,0,40.2,77777,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1977,4,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.7,68,99200,336,1364,283,180,569,42,18900,48400,7000,860,210,2.1,1,1,40.2,77777,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1977,4,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.1,49,99200,611,1364,315,281,287,153,30500,29200,17400,3220,200,2.1,6,6,40.2,3660,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1977,4,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,2.2,41,99200,852,1364,319,598,850,70,63100,84400,10200,1830,200,5.2,1,1,40.2,77777,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1977,4,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,2.2,35,99200,1040,1364,322,790,927,85,82700,92800,11700,2600,200,5.2,0,0,40.2,77777,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1977,4,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,4.4,37,99100,1164,1364,332,916,967,92,95500,97000,12400,3570,270,6.2,0,0,40.2,77777,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1977,4,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,5.0,34,99000,1215,1364,343,959,972,95,99900,97600,12700,4260,270,6.2,0,0,40.2,77777,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1977,4,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.7,37,98900,1189,1364,348,933,964,94,97200,96800,12600,3900,270,6.2,0,0,40.2,77777,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1977,4,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.6,30,98800,1089,1364,357,848,953,88,88500,95500,12000,2910,260,11.3,0,0,56.3,77777,9,999999999,120,0.0560,0,88,999.000,999.0,99.0 +1977,4,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,6.7,32,98700,921,1364,358,697,917,78,72900,91400,11100,2090,260,7.7,0,0,48.3,77777,9,999999999,129,0.0560,0,88,999.000,999.0,99.0 +1977,4,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.0,29,98600,696,1364,363,463,765,74,49700,75700,10900,1700,280,7.2,1,1,40.2,77777,9,999999999,129,0.0560,0,88,999.000,999.0,99.0 +1977,4,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.1,32,98600,431,1364,362,254,669,45,27200,61100,7900,980,260,7.7,1,1,40.2,77777,9,999999999,129,0.0560,0,88,999.000,999.0,99.0 +1977,4,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,6.1,38,98600,145,1364,342,64,364,24,6300,22900,3900,450,270,4.1,0,0,40.2,77777,9,999999999,129,0.0560,0,88,999.000,999.0,99.0 +1977,4,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.2,54,98700,0,34,323,0,0,0,0,0,0,0,250,4.1,0,0,40.2,77777,9,999999999,129,0.1170,0,88,999.000,999.0,99.0 +1977,4,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,6.7,54,98700,0,0,320,0,0,0,0,0,0,0,240,2.6,0,0,40.2,77777,9,999999999,129,0.1170,0,88,999.000,999.0,99.0 +1977,4,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,98700,0,0,316,0,0,0,0,0,0,0,240,4.1,0,0,40.2,77777,9,999999999,129,0.1170,0,88,999.000,999.0,99.0 +1977,4,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,98700,0,0,310,0,0,0,0,0,0,0,240,4.1,0,0,40.2,77777,9,999999999,129,0.1170,0,88,999.000,999.0,99.0 +1977,4,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,98700,0,0,308,0,0,0,0,0,0,0,240,4.1,0,0,40.2,77777,9,999999999,129,0.1170,0,88,999.000,999.0,99.0 +1977,4,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,98700,0,0,305,0,0,0,0,0,0,0,230,4.1,0,0,40.2,77777,9,999999999,129,0.1180,0,88,999.000,999.0,99.0 +1977,4,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,98600,0,0,300,0,0,0,0,0,0,0,230,4.1,0,0,40.2,77777,9,999999999,129,0.1180,0,88,999.000,999.0,99.0 +1977,4,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.2,67,98600,0,0,308,0,0,0,0,0,0,0,250,4.1,0,0,40.2,77777,9,999999999,129,0.1180,0,88,999.000,999.0,99.0 +1977,4,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.2,69,98600,0,0,306,0,0,0,0,0,0,0,250,4.1,0,0,40.2,77777,9,999999999,129,0.1180,0,88,999.000,999.0,99.0 +1977,4,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.2,74,98600,0,0,301,0,0,0,0,0,0,0,240,3.1,0,0,40.2,77777,9,999999999,129,0.1180,0,88,999.000,999.0,99.0 +1977,4,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,98600,0,0,292,0,0,0,0,0,0,0,230,3.6,0,0,40.2,77777,9,999999999,129,0.1180,0,88,999.000,999.0,99.0 +1977,4,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,98600,69,966,294,37,188,17,3200,9300,2500,310,240,4.1,0,0,40.2,77777,9,999999999,129,0.0520,0,88,999.000,999.0,99.0 +1977,4,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,98700,342,1363,317,197,647,37,21000,55700,7000,800,270,5.2,0,0,40.2,77777,9,999999999,129,0.0520,0,88,999.000,999.0,99.0 +1977,4,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.3,56,98700,617,1363,326,426,824,56,45200,79400,9200,1350,300,5.2,0,0,40.2,77777,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1977,4,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,10.0,51,98700,856,1363,344,640,909,72,67400,90200,10600,1870,300,4.1,0,0,40.2,77777,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1977,4,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,8.9,43,98700,1044,1363,350,804,945,82,84200,94600,11500,2570,30,4.1,0,0,40.2,77777,9,999999999,120,0.0520,0,88,999.000,999.0,99.0 +1977,4,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.8,36,98700,1168,1363,357,922,974,89,96200,97800,12200,3530,360,5.2,0,0,40.2,77777,9,999999999,110,0.0520,0,88,999.000,999.0,99.0 +1977,4,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,6.1,31,98700,1218,1363,357,969,983,92,101000,98700,12500,4230,320,4.1,0,0,40.2,77777,9,999999999,110,0.0520,0,88,999.000,999.0,99.0 +1977,4,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,2.2,22,98700,1192,1363,358,947,980,90,98600,98400,12300,3820,320,5.2,0,0,40.2,77777,9,999999999,110,0.0520,0,88,999.000,999.0,99.0 +1977,4,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,2.8,23,98600,1092,1363,371,783,780,159,82100,78300,19200,5230,360,7.2,2,2,40.2,77777,9,999999999,100,0.0520,0,88,999.000,999.0,99.0 +1977,4,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,2.2,22,98500,923,1363,358,702,925,76,73600,92200,11000,2070,320,5.2,0,0,40.2,77777,9,999999999,100,0.0520,0,88,999.000,999.0,99.0 +1977,4,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,3.3,24,98500,699,1363,360,502,863,62,53100,84300,9700,1510,320,5.2,0,0,40.2,77777,9,999999999,100,0.0520,0,88,999.000,999.0,99.0 +1977,4,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,2.2,23,98500,434,1363,352,277,741,44,29600,67500,8100,1030,360,5.2,0,0,40.2,77777,9,999999999,89,0.0520,0,88,999.000,999.0,99.0 +1977,4,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,2.2,28,98500,148,1363,340,67,388,24,6600,24700,4000,450,350,5.2,0,0,40.2,77777,9,999999999,89,0.0520,0,88,999.000,999.0,99.0 +1977,4,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-0.6,24,98600,0,57,332,0,0,0,0,0,0,0,350,5.7,0,0,40.2,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1977,4,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-1.1,28,98700,0,0,318,0,0,0,0,0,0,0,340,3.6,0,0,40.2,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1977,4,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.1,30,98700,0,0,314,0,0,0,0,0,0,0,330,3.6,0,0,40.2,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1977,4,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-0.6,36,98700,0,0,304,0,0,0,0,0,0,0,340,4.1,0,0,40.2,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1977,4,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.1,37,98800,0,0,299,0,0,0,0,0,0,0,340,4.6,0,0,40.2,77777,9,999999999,89,0.1180,0,88,999.000,999.0,99.0 +1977,4,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.1,41,98800,0,0,293,0,0,0,0,0,0,0,340,4.1,0,0,40.2,77777,9,999999999,89,0.1190,0,88,999.000,999.0,99.0 +1977,4,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.1,43,98800,0,0,290,0,0,0,0,0,0,0,340,4.1,0,0,40.2,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1977,4,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.7,41,98800,0,0,290,0,0,0,0,0,0,0,340,4.1,0,0,40.2,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1977,4,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.1,50,98800,0,0,281,0,0,0,0,0,0,0,350,3.6,0,0,40.2,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1977,4,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-0.6,56,98800,0,0,277,0,0,0,0,0,0,0,340,3.6,0,0,40.2,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1977,4,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-0.6,60,98900,0,0,273,0,0,0,0,0,0,0,350,4.6,0,0,40.2,77777,9,999999999,80,0.1190,0,88,999.000,999.0,99.0 +1977,4,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.1,50,98900,73,988,281,38,162,20,3300,8100,2700,360,350,4.6,0,0,48.3,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1977,4,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-0.6,45,99100,348,1362,291,200,619,44,21000,53100,7400,890,50,5.2,0,0,48.3,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1977,4,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.1,37,99100,622,1362,299,432,808,66,46400,78900,10300,1470,70,5.2,0,0,48.3,77777,9,999999999,80,0.0710,0,88,999.000,999.0,99.0 +1977,4,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-2.2,30,99100,861,1362,308,642,887,84,67300,88000,11500,2000,90,4.1,0,0,48.3,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1977,4,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.7,29,99100,1049,1362,313,815,936,96,84900,93600,12600,2820,60,5.2,0,0,48.3,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1977,4,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-2.2,25,99100,1171,1362,319,930,963,104,96600,96600,13400,3960,90,3.1,0,0,48.3,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1977,4,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-1.1,24,99100,1221,1362,328,975,969,107,101100,97200,13600,4770,320,3.1,0,0,48.3,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1977,4,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,1.1,28,99100,1195,1362,334,953,967,105,98800,97000,13500,4290,0,0.0,0,0,48.3,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1977,4,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,1.7,27,99000,1094,1362,339,860,947,100,89400,94800,13000,3170,140,2.1,0,0,48.3,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1977,4,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-1.1,22,98900,926,1362,336,706,911,88,73700,90700,11900,2220,170,1.5,0,0,48.3,77777,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1977,4,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-0.6,23,98900,702,1362,337,502,838,72,52800,81800,10500,1590,130,1.5,0,0,48.3,77777,9,999999999,100,0.0710,0,88,999.000,999.0,99.0 +1977,4,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,1.7,28,98900,437,1362,337,272,695,51,28700,63400,8400,1070,160,2.1,0,0,48.3,77777,9,999999999,100,0.0710,0,88,999.000,999.0,99.0 +1977,4,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,3.3,40,98900,152,1362,321,66,341,27,6600,20200,4400,490,180,2.6,0,0,48.3,77777,9,999999999,100,0.0710,0,88,999.000,999.0,99.0 +1977,4,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.8,47,98900,0,57,306,0,0,0,0,0,0,0,240,2.6,0,0,40.2,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1977,4,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.8,49,99000,0,0,303,0,0,0,0,0,0,0,230,2.6,0,0,40.2,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1977,4,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.9,59,99000,0,0,298,0,0,0,0,0,0,0,240,2.6,0,0,40.2,77777,9,999999999,100,0.1190,0,88,999.000,999.0,99.0 +1977,4,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.8,53,99000,0,0,299,0,0,0,0,0,0,0,220,2.6,0,0,40.2,77777,9,999999999,110,0.1190,0,88,999.000,999.0,99.0 +1977,4,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.1,49,99000,0,0,295,0,0,0,0,0,0,0,270,2.6,0,0,40.2,77777,9,999999999,110,0.1190,0,88,999.000,999.0,99.0 +1977,4,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.1,49,99000,0,0,295,0,0,0,0,0,0,0,270,2.6,0,0,40.2,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1977,4,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.7,57,99000,0,0,289,0,0,0,0,0,0,0,0,0.0,0,0,40.2,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1977,4,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,1.7,54,99000,0,0,291,0,0,0,0,0,0,0,0,0.0,0,0,40.2,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1977,4,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,2.8,66,99000,0,0,285,0,0,0,0,0,0,0,0,0.0,0,0,40.2,77777,9,999999999,110,0.1210,0,88,999.000,999.0,99.0 +1977,4,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.3,68,99000,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,40.2,77777,9,999999999,120,0.1210,0,88,999.000,999.0,99.0 +1977,4,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.2,66,99100,0,0,282,0,0,0,0,0,0,0,0,0.0,0,0,40.2,77777,9,999999999,120,0.1210,0,88,999.000,999.0,99.0 +1977,4,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,1.7,61,99200,77,1033,284,30,48,25,3200,2300,3000,520,220,2.1,0,0,40.2,77777,9,999999999,120,0.1750,0,88,999.000,999.0,99.0 +1977,4,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.0,62,99200,353,1362,301,176,414,70,18900,34800,9900,1270,0,0.0,0,0,40.2,77777,9,999999999,120,0.1750,0,88,999.000,999.0,99.0 +1977,4,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,3.9,46,99300,627,1362,314,401,635,110,42100,61800,13600,2250,220,2.6,0,0,40.2,77777,9,999999999,129,0.1750,0,88,999.000,999.0,99.0 +1977,4,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,3.3,37,99300,866,1362,326,616,749,142,65700,75800,17300,3580,230,4.6,0,0,40.2,77777,9,999999999,129,0.1750,0,88,999.000,999.0,99.0 +1977,4,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,3.3,33,99300,1053,1362,333,788,810,164,82100,81000,19300,4860,240,2.1,0,0,40.2,77777,9,999999999,129,0.1750,0,88,999.000,999.0,99.0 +1977,4,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,3.9,31,99300,1175,1362,342,901,842,176,94600,84600,21400,7230,180,2.6,0,0,40.2,77777,9,999999999,129,0.1750,0,88,999.000,999.0,99.0 +1977,4,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,3.9,28,99200,1225,1362,349,947,853,181,99700,85800,22300,8900,200,2.6,0,0,40.2,77777,9,999999999,139,0.1750,0,88,999.000,999.0,99.0 +1977,4,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,4.4,27,99100,1198,1362,358,921,845,178,96700,85000,21800,7910,360,1.5,0,0,40.2,77777,9,999999999,139,0.1750,0,88,999.000,999.0,99.0 +1977,4,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,4.4,26,99100,1097,1362,361,829,822,168,86600,82400,20000,5530,230,1.5,0,0,40.2,77777,9,999999999,139,0.1750,0,88,999.000,999.0,99.0 +1977,4,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,5.0,27,99000,929,1362,362,673,769,150,71900,78300,18400,4100,240,1.5,0,0,40.2,77777,9,999999999,139,0.1750,0,88,999.000,999.0,99.0 +1977,4,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,8.9,36,99000,704,1362,364,469,674,121,49400,66700,14800,2620,130,2.1,0,0,40.2,77777,9,999999999,150,0.1750,0,88,999.000,999.0,99.0 +1977,4,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,8.3,38,99000,440,1362,355,243,498,83,25200,44700,10700,1550,180,3.1,0,0,40.2,77777,9,999999999,150,0.1750,0,88,999.000,999.0,99.0 +1977,4,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.3,47,99000,155,1362,339,52,138,37,5600,7300,4800,670,180,3.6,0,0,40.2,77777,9,999999999,150,0.1750,0,88,999.000,999.0,99.0 +1977,4,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,7.8,49,99100,0,79,333,0,0,0,0,0,0,0,190,3.6,0,0,40.2,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1977,4,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.8,50,99100,0,0,331,0,0,0,0,0,0,0,190,3.6,0,0,40.2,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1977,4,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,99200,0,0,317,0,0,0,0,0,0,0,200,3.1,0,0,40.2,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1977,4,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,99200,0,0,309,0,0,0,0,0,0,0,210,3.1,0,0,40.2,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1977,4,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,99200,0,0,309,0,0,0,0,0,0,0,220,3.6,0,0,40.2,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1977,4,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,99200,0,0,304,0,0,0,0,0,0,0,240,3.6,0,0,40.2,77777,9,999999999,150,0.1220,0,88,999.000,999.0,99.0 +1977,4,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,99200,0,0,304,0,0,0,0,0,0,0,230,2.6,0,0,40.2,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1977,4,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.2,72,99200,0,0,303,0,0,0,0,0,0,0,0,0.0,0,0,40.2,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1977,4,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.2,72,99200,0,0,303,0,0,0,0,0,0,0,250,3.6,0,0,40.2,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1977,4,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.1,72,99300,0,0,298,0,0,0,0,0,0,0,260,3.1,0,0,24.1,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1977,4,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,99300,0,0,298,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,139,0.1220,0,88,999.000,999.0,99.0 +1977,4,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.2,74,99400,81,1055,301,40,155,22,3700,7000,3100,390,0,0.0,0,0,24.1,77777,9,999999999,139,0.0830,0,88,999.000,999.0,99.0 +1977,4,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.3,56,99400,359,1361,326,202,590,49,21100,50900,7600,960,290,2.6,0,0,32.2,77777,9,999999999,150,0.0830,0,88,999.000,999.0,99.0 +1977,4,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,8.3,49,99500,632,1361,336,430,774,73,45800,75500,10600,1590,270,3.6,0,0,32.2,77777,9,999999999,150,0.0830,0,88,999.000,999.0,99.0 +1977,4,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.8,41,99500,870,1361,346,641,862,92,67000,85500,12100,2080,310,2.1,0,0,32.2,77777,9,999999999,150,0.0830,0,88,999.000,999.0,99.0 +1977,4,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,8.3,38,99500,1057,1361,355,808,907,105,83900,90700,13300,3000,300,2.1,0,0,32.2,77777,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1977,4,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,9.4,37,99500,1179,1361,364,919,931,113,95100,93300,14000,4280,360,1.0,0,0,32.2,77777,9,999999999,160,0.0830,0,88,999.000,999.0,99.0 +1977,4,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.9,33,99400,1228,1361,372,961,938,116,99400,94100,14300,5180,40,3.6,0,0,32.2,77777,9,999999999,170,0.0830,0,88,999.000,999.0,99.0 +1977,4,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.2,29,99300,1201,1361,370,937,933,114,96900,93600,14100,4630,200,1.5,0,0,32.2,77777,9,999999999,179,0.0830,0,88,999.000,999.0,99.0 +1977,4,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,8.9,31,99300,1100,1361,377,843,911,108,87500,91200,13600,3350,170,2.1,0,0,32.2,77777,9,999999999,179,0.0830,0,88,999.000,999.0,99.0 +1977,4,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.8,29,99200,931,1361,380,650,820,89,67800,81700,11700,2250,220,1.5,1,1,32.2,77777,9,999999999,189,0.0830,0,88,999.000,999.0,99.0 +1977,4,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,8.9,32,99200,707,1361,382,466,738,84,49400,72900,11500,1870,260,2.1,1,1,32.2,77777,9,999999999,189,0.0830,0,88,999.000,999.0,99.0 +1977,4,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,8.3,35,99200,443,1361,363,266,650,56,27800,59300,8500,1140,170,3.1,0,0,32.2,77777,9,999999999,200,0.0830,0,88,999.000,999.0,99.0 +1977,4,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.9,44,99200,158,1361,348,64,305,29,6600,18400,4500,520,180,3.6,0,0,32.2,77777,9,999999999,200,0.0830,0,88,999.000,999.0,99.0 +1977,4,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,8.3,44,99200,1,102,344,2,1,1,0,0,0,0,200,3.1,0,0,32.2,77777,9,999999999,200,0.0830,0,88,999.000,999.0,99.0 +1977,4,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,8.9,46,99300,0,0,345,0,0,0,0,0,0,0,210,4.6,0,0,24.1,77777,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1977,4,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,9.4,60,99300,0,0,328,0,0,0,0,0,0,0,200,3.1,0,0,24.1,77777,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1977,4,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,99300,0,0,318,0,0,0,0,0,0,0,220,3.1,0,0,24.1,77777,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1977,4,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,99300,0,0,318,0,0,0,0,0,0,0,220,3.1,0,0,24.1,77777,9,999999999,200,0.1220,0,88,999.000,999.0,99.0 +1977,4,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,99300,0,0,318,0,0,0,0,0,0,0,260,3.1,0,0,24.1,77777,9,999999999,200,0.1230,0,88,999.000,999.0,99.0 +1977,4,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,99300,0,0,312,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,189,0.1230,0,88,999.000,999.0,99.0 +1977,4,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,99300,0,0,312,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,189,0.1230,0,88,999.000,999.0,99.0 +1977,4,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.3,67,99300,0,0,314,0,0,0,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,189,0.1230,0,88,999.000,999.0,99.0 +1977,4,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,99300,0,0,312,0,0,0,0,0,0,0,320,1.5,0,0,24.1,77777,9,999999999,189,0.1230,0,88,999.000,999.0,99.0 +1977,4,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,99300,0,0,318,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,189,0.1230,0,88,999.000,999.0,99.0 +1977,4,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.8,58,99400,86,1077,340,33,49,27,3400,2500,3200,560,320,1.5,5,5,24.1,77777,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1977,4,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,9.4,56,99400,365,1360,352,158,239,94,16800,20600,11300,1820,280,2.6,5,5,24.1,77777,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1977,4,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.0,57,99400,637,1360,350,337,385,158,35700,38100,17800,3250,300,2.6,3,3,19.3,77777,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1977,4,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.1,50,99400,875,1360,368,590,657,170,62200,66100,19600,4240,300,2.6,4,3,19.3,77777,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1977,4,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.1,42,99400,1060,1360,378,762,759,172,81900,77700,21100,5870,280,4.1,3,2,19.3,77777,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1977,4,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.1,39,99300,1182,1360,379,864,853,124,89200,85400,14800,4570,260,3.1,1,1,19.3,77777,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1977,4,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,8.9,31,99200,1231,1360,377,955,912,131,98400,91400,15500,5680,30,2.6,0,0,19.3,77777,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1977,4,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,9.4,30,99100,1204,1360,400,829,696,215,89000,71200,25800,10670,350,3.6,3,3,24.1,77777,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1977,4,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,9.4,31,99000,1102,1360,397,803,726,216,85200,73800,25300,7950,180,3.1,3,3,24.1,77777,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1977,4,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,7.8,28,99000,934,1360,402,566,416,281,59500,43000,29900,7790,120,2.6,6,6,32.2,1370,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1977,4,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,8.3,30,98900,710,1360,396,464,609,147,48200,59800,16900,3090,200,1.5,5,5,32.2,77777,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1977,4,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,10.0,42,98900,446,1360,371,196,290,102,20800,26400,12100,1920,180,2.6,3,2,32.2,77777,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1977,4,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.6,46,98900,161,1360,355,63,248,34,6700,14100,5000,600,160,2.6,2,0,24.1,77777,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1977,4,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,8.9,46,99000,1,125,345,2,1,1,0,0,0,0,170,3.1,0,0,24.1,77777,9,999999999,200,0.1020,0,88,999.000,999.0,99.0 +1977,4,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,9.4,53,99000,0,0,338,0,0,0,0,0,0,0,180,3.6,0,0,24.1,77777,9,999999999,200,0.1230,0,88,999.000,999.0,99.0 +1977,4,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.0,61,99000,0,0,331,0,0,0,0,0,0,0,200,2.1,0,0,24.1,77777,9,999999999,200,0.1230,0,88,999.000,999.0,99.0 +1977,4,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.9,54,99000,0,0,332,0,0,0,0,0,0,0,220,1.5,0,0,24.1,77777,9,999999999,189,0.1230,0,88,999.000,999.0,99.0 +1977,4,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.9,58,99000,0,0,327,0,0,0,0,0,0,0,190,2.1,0,0,24.1,77777,9,999999999,189,0.1230,0,88,999.000,999.0,99.0 +1977,4,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.9,60,98900,0,0,325,0,0,0,0,0,0,0,240,2.1,0,0,24.1,77777,9,999999999,189,0.1250,0,88,999.000,999.0,99.0 +1977,4,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,98900,0,0,318,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,189,0.1250,0,88,999.000,999.0,99.0 +1977,4,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,98800,0,0,318,0,0,0,0,0,0,0,260,2.1,0,0,24.1,77777,9,999999999,189,0.1250,0,88,999.000,999.0,99.0 +1977,4,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,98800,0,0,315,0,0,0,0,0,0,0,240,2.1,0,0,24.1,77777,9,999999999,189,0.1250,0,88,999.000,999.0,99.0 +1977,4,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,98800,0,0,310,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,179,0.1250,0,88,999.000,999.0,99.0 +1977,4,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,98800,0,0,316,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,179,0.1250,0,88,999.000,999.0,99.0 +1977,4,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,98900,90,1099,316,34,124,21,3400,5800,2900,360,0,0.0,2,2,19.3,77777,9,999999999,179,0.0650,0,88,999.000,999.0,99.0 +1977,4,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,98900,370,1359,339,195,471,68,20200,40300,9300,1250,180,2.1,4,4,16.1,77777,9,999999999,179,0.0650,0,88,999.000,999.0,99.0 +1977,4,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,98900,642,1359,356,363,450,151,38600,44700,17500,3090,180,3.1,6,5,16.1,1830,9,999999999,179,0.0650,0,88,999.000,999.0,99.0 +1977,4,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,98900,879,1359,367,562,530,221,60200,54700,24700,5610,240,3.1,4,4,16.1,77777,9,999999999,179,0.0650,0,88,999.000,999.0,99.0 +1977,4,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.8,48,98900,1064,1359,365,815,924,93,85000,92500,12400,2880,210,2.1,0,0,16.1,77777,9,999999999,179,0.0650,0,88,999.000,999.0,99.0 +1977,4,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.7,41,98800,1185,1359,372,919,940,100,95500,94300,13000,4060,140,1.5,0,0,19.3,77777,9,999999999,179,0.0650,0,88,999.000,999.0,99.0 +1977,4,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,9.4,34,98700,1234,1359,373,965,952,102,100200,95600,13200,4880,160,2.6,0,0,19.3,77777,9,999999999,179,0.0650,0,88,999.000,999.0,99.0 +1977,4,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.3,31,98600,1206,1359,397,601,357,284,65600,37400,32300,14390,120,4.1,6,6,24.1,1220,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1977,4,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.2,28,98500,1105,1359,398,680,519,259,74000,54300,29800,9710,180,2.6,6,6,24.1,1680,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1977,4,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,6.1,27,98400,936,1359,394,640,614,218,66600,61400,24200,5740,130,2.1,6,6,24.1,3660,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1977,4,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,7.8,31,98300,713,1359,389,366,239,241,39800,24600,26900,6110,150,4.1,5,5,24.1,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1977,4,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,10.0,42,98300,449,1359,366,261,638,52,27600,58600,8200,1090,180,3.6,1,1,24.1,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1977,4,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,98300,165,1359,345,71,372,27,7400,23000,4600,500,170,3.1,0,0,24.1,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1977,4,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,9.4,51,98300,1,125,340,3,4,1,0,0,0,0,180,2.6,0,0,24.1,77777,9,999999999,170,0.0650,0,88,999.000,999.0,99.0 +1977,4,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,9.4,54,98300,0,0,335,0,0,0,0,0,0,0,180,3.1,0,0,24.1,77777,9,999999999,170,0.1250,0,88,999.000,999.0,99.0 +1977,4,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,9.4,58,98300,0,0,330,0,0,0,0,0,0,0,200,2.1,0,0,24.1,77777,9,999999999,170,0.1250,0,88,999.000,999.0,99.0 +1977,4,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,8.9,54,98300,0,0,332,0,0,0,0,0,0,0,210,2.1,0,0,24.1,77777,9,999999999,170,0.1250,0,88,999.000,999.0,99.0 +1977,4,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,9.4,65,98300,0,0,323,0,0,0,0,0,0,0,200,1.5,0,0,24.1,77777,9,999999999,170,0.1250,0,88,999.000,999.0,99.0 +1977,4,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,98300,0,0,317,0,0,0,0,0,0,0,230,1.5,0,0,24.1,77777,9,999999999,160,0.1260,0,88,999.000,999.0,99.0 +1977,4,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.3,67,98200,0,0,314,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,160,0.1260,0,88,999.000,999.0,99.0 +1977,4,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.8,67,98200,0,0,311,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,160,0.1260,0,88,999.000,999.0,99.0 +1977,4,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.8,67,98200,0,0,311,0,0,0,0,0,0,0,0,0.0,0,0,19.3,77777,9,999999999,160,0.1260,0,88,999.000,999.0,99.0 +1977,4,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.2,69,98200,0,0,306,0,0,0,0,0,0,0,0,0.0,0,0,19.3,77777,9,999999999,160,0.1260,0,88,999.000,999.0,99.0 +1977,4,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.7,72,98200,0,0,301,0,0,0,0,0,0,0,270,1.5,0,0,19.3,77777,9,999999999,160,0.1260,0,88,999.000,999.0,99.0 +1977,4,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,98200,95,1143,304,48,244,21,4300,13000,3200,380,280,2.1,0,0,16.1,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,98300,375,1359,324,224,669,41,23800,59000,7500,880,240,3.1,0,0,16.1,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.6,57,98300,647,1359,339,448,821,60,47500,79600,9500,1430,290,3.6,0,0,19.3,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.6,51,98300,883,1359,347,656,897,75,69000,89200,10800,1970,300,3.1,0,0,19.3,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,10.6,43,98300,1068,1359,360,821,937,86,85800,93900,11800,2780,340,2.6,0,0,19.3,77777,9,999999999,170,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.0,36,98200,1188,1359,370,932,961,93,97100,96500,12500,3910,340,2.6,0,0,19.3,77777,9,999999999,170,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.2,29,98100,1236,1359,370,975,968,95,101400,97200,12700,4700,270,1.5,0,0,19.3,77777,9,999999999,170,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.2,28,98100,1209,1359,388,897,779,204,96500,79900,25200,10400,10,2.1,3,3,19.3,77777,9,999999999,170,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,8.3,30,98000,1107,1359,386,814,829,139,86800,83900,18300,4990,200,1.5,2,2,24.1,77777,9,999999999,170,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.8,29,97900,939,1359,385,667,801,115,71000,80700,15100,3080,180,5.2,2,2,24.1,77777,9,999999999,179,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.8,30,97900,715,1359,378,490,789,77,52600,78300,11300,1780,100,1.5,1,1,24.1,77777,9,999999999,179,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,9.4,37,97900,452,1359,364,283,720,46,30100,66100,8100,1070,190,3.6,0,0,24.1,77777,9,999999999,179,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.9,44,98000,168,1359,348,74,403,26,7600,26900,4300,500,180,3.1,0,0,24.1,77777,9,999999999,179,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,8.3,44,98000,2,147,344,4,7,1,0,0,0,0,190,3.6,0,0,24.1,77777,9,999999999,179,0.0560,0,88,999.000,999.0,99.0 +1977,4,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.9,49,98000,0,0,340,0,0,0,0,0,0,0,190,4.6,0,0,19.3,77777,9,999999999,179,0.1260,0,88,999.000,999.0,99.0 +1977,4,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.9,58,98000,0,0,327,0,0,0,0,0,0,0,210,2.6,0,0,19.3,77777,9,999999999,179,0.1260,0,88,999.000,999.0,99.0 +1977,4,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.3,58,98100,0,0,324,0,0,0,0,0,0,0,210,2.1,0,0,19.3,77777,9,999999999,170,0.1260,0,88,999.000,999.0,99.0 +1977,4,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.7,58,98100,0,0,315,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,170,0.1260,0,88,999.000,999.0,99.0 +1977,4,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.7,60,98100,0,0,312,0,0,0,0,0,0,0,240,2.1,0,0,24.1,77777,9,999999999,170,0.1280,0,88,999.000,999.0,99.0 +1977,4,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.6,62,98100,0,0,304,0,0,0,0,0,0,0,270,3.6,0,0,24.1,77777,9,999999999,170,0.1280,0,88,999.000,999.0,99.0 +1977,4,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.0,53,98000,0,0,310,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,170,0.1280,0,88,999.000,999.0,99.0 +1977,4,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,4.4,59,98100,0,0,300,0,0,0,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,160,0.1280,0,88,999.000,999.0,99.0 +1977,4,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.6,66,98100,0,0,300,0,0,0,0,0,0,0,310,2.1,0,0,24.1,77777,9,999999999,160,0.1280,0,88,999.000,999.0,99.0 +1977,4,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.6,66,98100,0,0,300,0,0,0,0,0,0,0,0,0.0,2,0,24.1,77777,9,999999999,160,0.1280,0,88,999.000,999.0,99.0 +1977,4,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.1,60,98200,100,1165,309,35,35,32,3800,1800,3700,670,240,1.5,2,0,24.1,77777,9,999999999,160,0.2370,0,88,999.000,999.0,99.0 +1977,4,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.8,50,98200,381,1358,331,182,349,86,19400,30100,10900,1590,270,2.6,0,0,24.1,77777,9,999999999,160,0.2370,0,88,999.000,999.0,99.0 +1977,4,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.1,39,98200,652,1358,339,405,564,136,42100,54700,15700,2750,290,3.6,0,0,24.1,77777,9,999999999,170,0.2370,0,88,999.000,999.0,99.0 +1977,4,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.1,33,98300,887,1358,352,616,679,174,64900,68300,20100,4410,290,3.6,0,0,24.1,77777,9,999999999,179,0.2370,0,88,999.000,999.0,99.0 +1977,4,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,6.1,29,98200,1072,1358,363,784,741,201,83400,75400,23700,6960,310,3.1,0,0,24.1,77777,9,999999999,179,0.2370,0,88,999.000,999.0,99.0 +1977,4,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,6.1,27,98200,1192,1358,368,898,778,216,96100,79500,26200,10350,320,1.5,0,0,24.1,77777,9,999999999,189,0.2370,0,88,999.000,999.0,99.0 +1977,4,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,6.1,27,98100,1239,1358,368,942,790,222,101100,80800,27200,12730,260,2.1,0,0,24.1,77777,9,999999999,189,0.2370,0,88,999.000,999.0,99.0 +1977,4,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,5.6,24,98100,1211,1358,373,915,782,218,98100,80000,26500,11190,60,4.1,0,0,24.1,77777,9,999999999,200,0.2370,0,88,999.000,999.0,99.0 +1977,4,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,7.2,27,98100,1110,1358,375,821,755,205,87500,77000,24400,7760,120,3.1,0,0,24.1,77777,9,999999999,200,0.2370,0,88,999.000,999.0,99.0 +1977,4,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,7.8,27,98000,941,1358,386,637,660,180,67200,66700,20800,4920,170,4.1,1,1,24.1,77777,9,999999999,200,0.2370,0,88,999.000,999.0,99.0 +1977,4,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.2,29,98000,718,1358,370,457,589,147,47600,58000,16900,3120,150,2.6,0,0,24.1,77777,9,999999999,209,0.2370,0,88,999.000,999.0,99.0 +1977,4,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,8.9,36,98000,454,1358,364,238,416,100,25400,38100,12600,1870,170,4.1,0,0,24.1,77777,9,999999999,220,0.2370,0,88,999.000,999.0,99.0 +1977,4,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.0,43,98000,171,1358,363,48,92,37,5200,5200,4500,660,180,2.6,1,1,24.1,77777,9,999999999,220,0.2370,0,88,999.000,999.0,99.0 +1977,4,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,8.3,43,98000,2,170,347,1,0,1,0,0,0,0,180,2.6,0,0,24.1,77777,9,999999999,220,0.2370,0,88,999.000,999.0,99.0 +1977,4,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,8.3,49,98100,0,0,336,0,0,0,0,0,0,0,230,2.6,0,0,24.1,77777,9,999999999,220,0.1280,0,88,999.000,999.0,99.0 +1977,4,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.2,45,98100,0,0,342,0,0,0,0,0,0,0,40,1.5,1,1,24.1,77777,9,999999999,209,0.1280,0,88,999.000,999.0,99.0 +1977,4,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,8.3,49,98100,0,0,336,0,0,0,0,0,0,0,80,1.5,0,0,24.1,77777,9,999999999,209,0.1280,0,88,999.000,999.0,99.0 +1977,4,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.8,50,98200,0,0,331,0,0,0,0,0,0,0,150,2.1,0,0,19.3,77777,9,999999999,209,0.1280,0,88,999.000,999.0,99.0 +1977,4,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.2,54,98200,0,0,329,0,0,0,0,0,0,0,0,0.0,1,1,19.3,77777,9,999999999,200,0.1290,0,88,999.000,999.0,99.0 +1977,4,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,98200,0,0,356,0,0,0,0,0,0,0,200,2.1,7,7,19.3,2440,9,999999999,200,0.1290,0,88,999.000,999.0,99.0 +1977,4,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.8,60,98100,0,0,345,0,0,0,0,0,0,0,230,1.5,7,7,24.1,2440,9,999999999,200,0.1290,0,88,999.000,999.0,99.0 +1977,4,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.2,60,98100,0,0,332,0,0,0,0,0,0,0,240,1.5,4,4,24.1,77777,9,999999999,200,0.1290,0,88,999.000,999.0,99.0 +1977,4,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.7,64,98200,0,0,307,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,200,0.1290,0,88,999.000,999.0,99.0 +1977,4,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.7,64,98200,0,0,307,0,0,0,0,0,0,0,250,1.5,1,0,11.3,77777,9,999999999,189,0.1290,0,88,999.000,999.0,99.0 +1977,4,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,98300,104,1187,309,36,61,30,3900,3200,3600,620,250,1.5,0,0,11.3,77777,9,999999999,189,0.1930,0,88,999.000,999.0,99.0 +1977,4,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,9.4,56,98300,386,1357,333,195,412,79,20900,35800,10700,1440,310,2.6,0,0,11.3,77777,9,999999999,189,0.1930,0,88,999.000,999.0,99.0 +1977,4,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,9.4,47,98300,656,1357,345,417,616,121,43700,60200,14500,2510,330,3.6,0,0,16.1,77777,9,999999999,189,0.1930,0,88,999.000,999.0,99.0 +1977,4,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,9.4,44,98300,892,1357,351,627,722,153,66500,73100,18300,3970,290,2.6,0,0,16.1,77777,9,999999999,189,0.1930,0,88,999.000,999.0,99.0 +1977,4,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,8.3,32,98300,1075,1357,368,798,787,175,85700,80600,21600,6200,320,2.6,0,0,16.1,77777,9,999999999,189,0.1930,0,88,999.000,999.0,99.0 +1977,4,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.8,29,98200,1195,1357,373,908,818,189,94800,82000,22400,8300,340,4.6,0,0,16.1,77777,9,999999999,189,0.1930,0,88,999.000,999.0,99.0 +1977,4,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,7.8,27,98200,1242,1357,379,948,825,193,99200,82800,23200,10290,320,1.5,0,0,16.1,77777,9,999999999,200,0.1930,0,88,999.000,999.0,99.0 +1977,4,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,7.2,26,98100,1214,1357,397,886,709,252,93900,72000,29400,12960,270,2.6,3,3,16.1,77777,9,999999999,200,0.1930,0,88,999.000,999.0,99.0 +1977,4,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.8,29,98100,1112,1357,392,724,535,286,78000,55900,32100,11020,180,2.1,4,4,16.1,77777,9,999999999,200,0.1930,0,88,999.000,999.0,99.0 +1977,4,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,9.4,34,98000,944,1357,398,573,386,304,61900,41500,33000,8690,240,2.1,6,6,16.1,1370,9,999999999,200,0.1930,0,88,999.000,999.0,99.0 +1977,4,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.8,30,98000,720,1357,396,344,280,195,37200,29300,21600,4430,300,2.6,6,6,16.1,1370,9,999999999,200,0.1930,0,88,999.000,999.0,99.0 +1977,4,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,10.6,39,98000,457,1357,405,170,72,146,18700,6700,16400,3850,140,3.6,8,8,16.1,2440,9,999999999,200,0.1930,0,88,999.000,999.0,99.0 +1977,4,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.1,50,98000,174,1357,387,37,10,36,4100,700,4000,900,180,2.6,8,8,16.1,3050,9,999999999,200,0.1930,0,88,999.000,999.0,99.0 +1977,4,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,8.3,41,98100,2,192,367,2,0,2,0,0,0,0,0,0.0,4,4,16.1,77777,9,999999999,200,0.1930,0,88,999.000,999.0,99.0 +1977,4,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,10.0,48,98100,0,0,367,0,0,0,0,0,0,0,0,0.0,4,4,16.1,77777,9,999999999,200,0.1290,0,88,999.000,999.0,99.0 +1977,4,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,10.0,55,98100,0,0,353,0,0,0,0,0,0,0,180,2.1,3,3,16.1,77777,9,999999999,200,0.1290,0,88,999.000,999.0,99.0 +1977,4,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.7,70,98100,0,0,341,0,0,0,0,0,0,0,260,2.1,2,2,16.1,77777,9,999999999,209,0.1290,0,88,999.000,999.0,99.0 +1977,4,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.6,70,98100,0,0,324,0,0,0,0,0,0,0,260,3.1,0,0,16.1,77777,9,999999999,209,0.1290,0,88,999.000,999.0,99.0 +1977,4,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,9.4,65,98100,0,0,323,0,0,0,0,0,0,0,260,4.1,0,0,16.1,77777,9,999999999,209,0.1300,0,88,999.000,999.0,99.0 +1977,4,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,98100,0,0,317,0,0,0,0,0,0,0,270,4.1,0,0,19.3,77777,9,999999999,209,0.1300,0,88,999.000,999.0,99.0 +1977,4,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,98100,0,0,323,0,0,0,0,0,0,0,360,3.6,4,1,24.1,77777,9,999999999,209,0.1300,0,88,999.000,999.0,99.0 +1977,4,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.2,62,98100,0,0,319,0,0,0,0,0,0,0,280,4.6,3,1,24.1,77777,9,999999999,220,0.1300,0,88,999.000,999.0,99.0 +1977,4,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.2,60,98100,0,0,321,0,0,0,0,0,0,0,290,5.2,3,1,24.1,77777,9,999999999,220,0.1300,0,88,999.000,999.0,99.0 +1977,4,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.8,69,98200,0,0,315,0,0,0,0,0,0,0,280,4.6,5,1,24.1,77777,9,999999999,220,0.1300,0,88,999.000,999.0,99.0 +1977,4,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,98200,109,1209,323,45,166,27,4500,8200,3700,480,290,4.1,3,1,16.1,77777,9,999999999,220,0.0900,0,88,999.000,999.0,99.0 +1977,4,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,9.4,58,98200,391,1356,330,221,579,56,23400,51000,8700,1080,300,3.6,1,0,14.5,77777,9,999999999,220,0.0900,0,88,999.000,999.0,99.0 +1977,4,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.6,55,98300,661,1356,342,446,757,78,47200,74200,11000,1710,340,4.1,0,0,14.5,77777,9,999999999,220,0.0900,0,88,999.000,999.0,99.0 +1977,4,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.6,46,98300,896,1356,370,585,646,160,62000,65400,18800,4160,330,4.1,3,3,12.9,77777,9,999999999,220,0.0900,0,88,999.000,999.0,99.0 +1977,4,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,10.6,39,98300,1079,1356,376,794,866,106,82400,86700,13300,3190,350,2.6,1,1,12.9,77777,9,999999999,220,0.0900,0,88,999.000,999.0,99.0 +1977,4,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,10.6,36,98200,1198,1356,381,857,842,115,88700,84400,14000,4670,10,2.1,1,1,12.9,77777,9,999999999,220,0.0900,0,88,999.000,999.0,99.0 +1977,4,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,10.0,33,98200,1245,1356,379,960,913,122,99000,91600,14700,5860,280,2.6,0,0,12.9,77777,9,999999999,220,0.0900,0,88,999.000,999.0,99.0 +1977,4,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,8.3,28,98100,1216,1356,382,941,916,120,97100,91800,14600,5140,60,1.5,0,0,16.1,77777,9,999999999,209,0.0900,0,88,999.000,999.0,99.0 +1977,4,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,7.8,27,98100,1114,1356,382,851,882,127,87800,88200,15100,3770,40,3.1,2,0,16.1,77777,9,999999999,209,0.0900,0,88,999.000,999.0,99.0 +1977,4,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,7.8,27,98000,946,1356,394,688,799,132,72200,80100,16300,3430,250,2.1,2,2,16.1,77777,9,999999999,209,0.0900,0,88,999.000,999.0,99.0 +1977,4,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,8.9,30,98000,723,1356,387,476,747,79,50900,74200,11300,1830,270,1.5,1,1,16.1,77777,9,999999999,209,0.0900,0,88,999.000,999.0,99.0 +1977,4,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,8.9,33,98000,460,1356,379,268,609,64,28600,56200,9500,1260,0,0.0,1,1,16.1,77777,9,999999999,209,0.0900,0,88,999.000,999.0,99.0 +1977,4,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,10.0,39,98000,177,1356,390,53,102,40,5700,5900,4900,720,240,2.1,6,6,16.1,9140,9,999999999,209,0.0900,0,88,999.000,999.0,99.0 +1977,4,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.6,46,98100,3,192,379,0,1,0,0,0,0,0,240,2.6,6,6,16.1,9140,9,999999999,209,0.0900,0,88,999.000,999.0,99.0 +1977,4,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.0,53,98100,0,0,365,0,0,0,0,0,0,0,250,3.6,6,6,16.1,9140,9,999999999,220,0.1300,0,88,999.000,999.0,99.0 +1977,4,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,9.4,51,98200,0,0,393,0,0,0,0,0,0,0,0,0.0,10,10,16.1,9140,9,999999999,220,0.1300,0,88,999.000,999.0,99.0 +1977,4,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.0,59,98200,0,0,385,0,0,0,0,0,0,0,0,0.0,10,10,16.1,9140,9,999999999,220,0.1300,0,88,999.000,999.0,99.0 +1977,4,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.6,63,98200,0,0,383,0,0,0,0,0,0,0,230,2.1,10,10,19.3,9140,9,999999999,229,0.1300,0,88,999.000,999.0,99.0 +1977,4,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,98200,0,0,359,0,0,0,0,0,0,0,270,2.1,10,8,19.3,9140,9,999999999,229,0.1320,0,88,999.000,999.0,99.0 +1977,4,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.1,75,98100,0,0,354,0,0,0,0,0,0,0,0,0.0,10,8,19.3,9140,9,999999999,229,0.1320,0,88,999.000,999.0,99.0 +1977,4,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.1,70,98200,0,0,359,0,0,0,0,0,0,0,20,2.1,10,8,19.3,9140,9,999999999,240,0.1320,0,88,999.000,999.0,99.0 +1977,4,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.1,75,98100,0,0,348,0,0,0,0,0,0,0,0,0.0,10,7,19.3,9140,9,999999999,240,0.1320,0,88,999.000,999.0,99.0 +1977,4,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,98200,0,0,355,0,0,0,0,0,0,0,210,2.1,10,9,16.1,9140,9,999999999,240,0.1320,0,88,999.000,999.0,99.0 +1977,4,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,98200,0,0,343,0,0,0,0,0,0,0,240,2.6,10,8,14.5,9140,9,999999999,250,0.1320,0,88,999.000,999.0,99.0 +1977,4,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,98200,114,1254,334,33,4,32,3600,0,3600,1050,250,2.1,10,6,11.3,9140,9,999999999,250,0.2960,0,88,999.000,999.0,99.0 +1977,4,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.2,63,98300,396,1355,382,133,32,124,14600,2900,13700,3180,360,1.5,10,9,9.7,9140,9,999999999,250,0.2960,0,88,999.000,999.0,99.0 +1977,4,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.7,51,98300,665,1355,388,254,86,212,27900,8600,23700,6280,0,0.0,10,8,6.4,9140,9,999999999,250,0.2960,0,88,999.000,999.0,99.0 +1977,4,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,10.6,42,98300,899,1355,398,459,216,316,50100,22800,35000,9140,320,2.1,10,8,8.0,9140,9,999999999,250,0.2960,0,88,999.000,999.0,99.0 +1977,4,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.7,41,98300,1082,1355,403,536,222,359,59000,23600,40100,12850,290,3.1,9,7,12.9,9140,9,999999999,250,0.2960,0,88,999.000,999.0,99.0 +1977,4,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,11.1,37,98200,1201,1355,397,816,560,321,88000,58600,36000,16230,360,3.6,8,4,12.9,77777,9,999999999,250,0.2960,0,88,999.000,999.0,99.0 +1977,4,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,8.9,31,98200,1247,1355,390,876,598,326,94900,62600,37100,19840,270,2.6,6,2,12.9,77777,9,999999999,250,0.2960,0,88,999.000,999.0,99.0 +1977,4,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,8.3,30,98200,1218,1355,431,392,10,383,46100,900,45300,16800,120,1.5,10,10,12.9,9140,9,999999999,250,0.2960,0,88,999.000,999.0,99.0 +1977,4,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,11.7,42,98100,1116,1355,427,341,3,338,39900,300,39700,15000,200,4.1,10,10,16.1,7620,9,999999999,250,0.2960,0,88,999.000,999.0,99.0 +1977,4,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,11.7,42,98000,948,1355,427,262,7,257,30600,600,30200,11480,220,3.6,10,10,16.1,7620,9,999999999,250,0.2960,0,88,999.000,999.0,99.0 +1977,4,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,11.7,42,98000,725,1355,427,221,1,221,25200,100,25200,8840,270,3.6,10,10,16.1,7620,9,999999999,250,0.2960,0,88,999.000,999.0,99.0 +1977,4,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.8,48,98100,463,1355,422,133,2,132,14900,100,14800,4810,240,2.6,10,10,16.1,7620,9,999999999,250,0.2960,0,88,999.000,999.0,99.0 +1977,4,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.6,46,98100,181,1355,410,40,0,40,4500,0,4500,1380,90,4.1,10,10,16.1,1370,9,999999999,250,0.2960,0,88,999.000,999.0,99.0 +1977,4,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,98200,3,215,406,1,0,1,0,0,0,0,70,7.2,10,10,16.1,1370,9,999999999,250,0.2960,0,88,999.000,999.0,99.0 +1977,4,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,98300,0,0,397,0,0,0,0,0,0,0,60,6.2,10,10,16.1,1370,9,999999999,250,0.1320,0,88,999.000,999.0,99.0 +1977,4,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.1,59,98300,0,0,392,0,0,0,0,0,0,0,40,4.1,10,10,16.1,7620,9,999999999,250,0.1320,0,88,999.000,999.0,99.0 +1977,4,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.1,61,98300,0,0,389,0,0,0,0,0,0,0,70,3.6,10,10,16.1,1370,9,999999999,259,0.1320,0,88,999.000,999.0,99.0 +1977,4,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.7,65,98300,0,0,387,0,0,0,0,0,0,0,130,2.6,10,10,12.9,1370,9,999999999,259,0.1320,0,88,999.000,999.0,99.0 +1977,4,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,98300,0,0,380,0,0,0,0,0,0,0,90,3.1,10,10,11.3,1370,9,999999999,259,0.1330,0,88,999.000,999.0,99.0 +1977,4,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,98300,0,0,380,0,0,0,0,0,0,0,70,2.6,10,10,11.3,1370,9,999999999,259,0.1330,0,88,999.000,999.0,99.0 +1977,4,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,98200,0,0,380,0,0,0,0,0,0,0,90,3.6,10,10,11.3,1520,9,999999999,259,0.1330,0,88,999.000,999.0,99.0 +1977,4,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,98200,0,0,377,0,0,0,0,0,0,0,90,2.1,10,10,11.3,1830,9,999999999,270,0.1330,0,88,999.000,999.0,99.0 +1977,4,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,98300,0,0,377,0,0,0,0,0,0,0,110,2.6,10,10,9.7,1830,9,999999999,270,0.1330,0,88,999.000,999.0,99.0 +1977,4,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,98300,0,0,374,0,0,0,0,0,0,0,100,2.1,10,10,9.7,7620,9,999999999,270,0.1330,0,88,999.000,999.0,99.0 +1977,4,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,98400,119,1276,377,28,0,28,3200,0,3200,960,100,2.6,10,10,6.4,3050,9,999999999,270,0.2030,0,88,999.000,999.0,99.0 +1977,4,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,98400,401,1355,383,118,1,118,13200,100,13200,4130,110,2.1,10,10,6.4,3660,9,999999999,270,0.2030,0,88,999.000,999.0,99.0 +1977,4,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,98400,670,1355,395,211,0,211,23900,0,23900,8160,130,2.6,10,10,8.0,2130,9,999999999,270,0.2030,0,88,999.000,999.0,99.0 +1977,4,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,98400,903,1355,372,564,431,278,59200,44400,29500,7440,200,2.1,9,4,11.3,77777,9,999999999,270,0.2030,0,88,999.000,999.0,99.0 +1977,4,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.9,54,98500,1085,1355,376,758,657,232,79800,66500,26400,8210,150,2.1,4,2,12.9,77777,9,999999999,259,0.2030,0,88,999.000,999.0,99.0 +1977,4,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,98400,1203,1355,400,893,572,385,94500,59600,41400,19890,140,3.6,7,7,12.9,1070,9,999999999,259,0.2030,0,88,999.000,999.0,99.0 +1977,4,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,98300,1250,1355,400,763,373,419,83800,40500,46300,23390,140,4.6,7,7,16.1,1220,9,999999999,259,0.2030,0,88,999.000,999.0,99.0 +1977,4,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.8,45,98300,1221,1355,408,720,351,404,79000,38100,44500,20240,170,5.7,8,8,16.1,1220,9,999999999,259,0.2030,0,88,999.000,999.0,99.0 +1977,4,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,12.2,41,98200,1119,1355,402,861,664,314,92100,69300,34800,12430,160,6.2,6,6,19.3,1370,9,999999999,259,0.2030,0,88,999.000,999.0,99.0 +1977,4,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,10.6,36,98200,950,1355,411,250,54,212,27600,5500,23800,8000,160,5.2,8,8,19.3,1370,9,999999999,250,0.2030,0,88,999.000,999.0,99.0 +1977,4,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,10.6,38,98100,728,1355,397,415,382,211,44800,40100,23300,4880,150,5.2,6,6,16.1,1370,9,999999999,250,0.2030,0,88,999.000,999.0,99.0 +1977,4,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,9.4,37,98200,466,1355,386,167,110,130,18300,10500,14700,2960,180,4.1,5,5,16.1,77777,9,999999999,250,0.2030,0,88,999.000,999.0,99.0 +1977,4,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,11.7,50,98200,184,1355,372,59,117,43,6300,7000,5300,780,150,3.6,3,3,16.1,77777,9,999999999,250,0.2030,0,88,999.000,999.0,99.0 +1977,4,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,14.4,68,98200,4,237,349,2,0,2,0,0,0,0,40,4.1,0,0,16.1,77777,9,999999999,250,0.2030,0,88,999.000,999.0,99.0 +1977,4,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,14.4,76,98200,0,0,341,0,0,0,0,0,0,0,90,5.2,0,0,16.1,77777,9,999999999,250,0.1330,0,88,999.000,999.0,99.0 +1977,4,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,14.4,81,98300,0,0,336,0,0,0,0,0,0,0,90,4.1,0,0,16.1,77777,9,999999999,250,0.1330,0,88,999.000,999.0,99.0 +1977,4,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.9,87,98300,0,0,327,0,0,0,0,0,0,0,90,3.1,0,0,16.1,77777,9,999999999,250,0.1330,0,88,999.000,999.0,99.0 +1977,4,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.9,87,98300,0,0,327,0,0,0,0,0,0,0,80,3.6,0,0,12.9,77777,9,999999999,250,0.1330,0,88,999.000,999.0,99.0 +1977,4,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.9,87,98300,0,0,334,0,0,0,0,0,0,0,120,3.1,4,1,11.3,77777,9,999999999,250,0.1340,0,88,999.000,999.0,99.0 +1977,4,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,98400,0,0,331,0,0,0,0,0,0,0,130,2.1,3,1,11.3,77777,9,999999999,250,0.1340,0,88,999.000,999.0,99.0 +1977,4,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,98300,0,0,325,0,0,0,0,0,0,0,200,2.1,3,1,11.3,77777,9,999999999,250,0.1340,0,88,999.000,999.0,99.0 +1977,4,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,98400,0,0,324,0,0,0,0,0,0,0,110,2.1,3,1,11.3,77777,9,999999999,250,0.1340,0,88,999.000,999.0,99.0 +1977,4,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,98400,0,0,326,0,0,0,0,0,0,0,90,2.6,5,2,9.7,77777,9,999999999,250,0.1340,0,88,999.000,999.0,99.0 +1977,4,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,98400,0,0,326,0,0,0,0,0,0,0,150,2.1,6,2,8.0,77777,9,999999999,250,0.1340,0,88,999.000,999.0,99.0 +1977,4,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,98500,124,1297,353,33,6,32,3600,0,3600,1060,90,2.1,10,8,6.4,7620,9,999999999,250,0.1070,0,88,999.000,999.0,99.0 +1977,4,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,98500,406,1354,376,120,7,118,13400,400,13300,4160,70,3.1,10,10,6.4,7620,9,999999999,250,0.1070,0,88,999.000,999.0,99.0 +1977,4,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,98600,674,1354,389,144,1,144,16900,100,16800,6240,140,2.6,10,10,8.0,3660,9,999999999,250,0.1070,0,88,999.000,999.0,99.0 +1977,4,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,98700,907,1354,362,584,540,224,62700,55900,25200,5910,140,3.1,7,3,11.3,77777,9,999999999,250,0.1070,0,88,999.000,999.0,99.0 +1977,4,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,98600,1088,1354,366,785,729,199,83600,74300,23700,7220,130,3.1,5,2,12.9,77777,9,999999999,250,0.1070,0,88,999.000,999.0,99.0 +1977,4,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.7,46,98500,1206,1354,391,817,515,359,87200,53800,39200,18700,130,3.1,8,7,12.9,1830,9,999999999,250,0.1070,0,88,999.000,999.0,99.0 +1977,4,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.7,46,98500,1252,1354,406,556,140,427,61500,14900,47600,22690,110,6.7,10,9,12.9,1830,9,999999999,250,0.1070,0,88,999.000,999.0,99.0 +1977,4,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.2,48,98500,1223,1354,398,694,199,514,75500,21100,56400,24860,130,6.2,10,8,12.9,1070,9,999999999,250,0.1070,0,88,999.000,999.0,99.0 +1977,4,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,12.2,48,98400,1121,1354,398,669,388,347,73300,42100,38300,13180,130,7.7,10,8,14.5,1010,9,999999999,250,0.1070,0,88,999.000,999.0,99.0 +1977,4,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,12.8,48,98400,953,1354,401,428,108,352,47100,11100,39300,12220,130,6.7,10,8,14.5,3050,9,999999999,250,0.1070,0,88,999.000,999.0,99.0 +1977,4,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.2,50,98400,730,1354,403,223,30,207,24600,3000,22900,6520,140,7.7,10,9,14.5,3050,9,999999999,250,0.1070,0,88,999.000,999.0,99.0 +1977,4,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.2,51,98400,468,1354,400,106,49,89,11700,4500,10100,2600,130,6.7,10,9,14.5,3050,9,999999999,250,0.1070,0,88,999.000,999.0,99.0 +1977,4,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,98300,187,1354,397,46,9,45,5200,100,5200,1520,130,4.6,10,9,14.5,3050,9,999999999,250,0.1070,0,88,999.000,999.0,99.0 +1977,4,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,98400,4,259,377,0,0,0,0,0,0,0,140,3.6,10,8,16.1,7620,9,999999999,250,0.1070,0,88,999.000,999.0,99.0 +1977,4,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.8,68,98400,0,0,372,0,0,0,0,0,0,0,120,3.6,10,8,16.1,7620,9,999999999,250,0.1340,0,88,999.000,999.0,99.0 +1977,4,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,98500,0,0,373,0,0,0,0,0,0,0,130,4.6,10,8,16.1,3050,9,999999999,250,0.1340,0,88,999.000,999.0,99.0 +1977,4,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,98500,0,0,378,0,0,0,0,0,0,0,140,6.7,10,9,16.1,3050,9,999999999,240,0.1340,0,88,999.000,999.0,99.0 +1977,4,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,98500,0,0,389,0,0,0,0,0,0,0,140,6.2,10,10,16.1,3050,9,999999999,240,0.1340,0,88,999.000,999.0,99.0 +1977,4,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,98600,0,0,364,0,0,0,0,0,0,0,140,5.7,9,8,16.1,7620,9,999999999,240,0.1360,0,88,999.000,999.0,99.0 +1977,4,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,98600,0,0,353,0,0,0,0,0,0,0,150,4.1,8,7,16.1,7620,9,999999999,240,0.1360,0,88,999.000,999.0,99.0 +1977,4,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,98700,0,0,351,0,0,0,0,0,0,0,140,4.1,8,7,12.9,7620,9,999999999,240,0.1360,0,88,999.000,999.0,99.0 +1977,4,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,98700,0,0,374,0,0,0,0,0,0,0,130,3.6,10,10,11.3,7620,9,999999999,229,0.1360,0,88,999.000,999.0,99.0 +1977,4,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,98700,0,0,351,0,0,0,0,0,0,0,120,3.6,10,7,11.3,7620,9,999999999,229,0.1360,0,88,999.000,999.0,99.0 +1977,4,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,98800,0,0,349,0,0,0,0,0,0,0,120,3.6,9,7,8.0,7620,9,999999999,229,0.1360,0,88,999.000,999.0,99.0 +1977,4,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,98800,129,1319,372,24,3,24,2800,0,2800,860,120,4.6,10,10,6.4,370,9,999999999,229,0.0850,0,88,999.000,999.0,99.0 +1977,4,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,14.4,90,98800,411,1353,378,130,31,120,14200,2800,13300,3160,120,5.2,10,10,9.7,270,9,999999999,240,0.0850,0,88,999.000,999.0,99.0 +1977,4,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,98800,678,1353,385,232,8,227,26000,700,25700,8620,130,6.2,10,10,9.7,270,9,999999999,240,0.0850,0,88,999.000,999.0,99.0 +1977,4,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,98900,911,1353,395,300,2,298,34300,200,34200,12430,140,6.2,10,10,11.3,370,9,999999999,250,0.0850,0,88,999.000,999.0,99.0 +1977,4,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.1,78,98800,1092,1353,401,361,4,357,41900,400,41600,15450,130,7.2,10,10,12.9,430,9,999999999,250,0.0850,0,88,999.000,999.0,99.0 +1977,4,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,98800,1209,1353,407,369,9,361,43600,800,42900,16100,130,6.7,10,10,16.1,580,9,999999999,259,0.0850,0,88,999.000,999.0,99.0 +1977,4,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,68,98800,1254,1353,414,431,0,431,50500,0,50500,18340,130,6.7,10,10,16.1,1220,9,999999999,270,0.0850,0,88,999.000,999.0,99.0 +1977,4,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,98700,1225,1353,417,394,5,389,46300,500,45900,17010,160,5.2,10,10,19.3,3050,9,999999999,270,0.0850,0,88,999.000,999.0,99.0 +1977,4,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,98700,1123,1353,418,403,1,401,46500,100,46400,16820,120,6.2,10,10,19.3,3050,9,999999999,279,0.0850,0,88,999.000,999.0,99.0 +1977,4,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,98600,955,1353,417,195,1,194,23300,100,23200,9280,120,5.7,10,10,32.2,910,9,999999999,279,0.0850,0,88,999.000,999.0,99.0 +1977,4,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,98600,732,1353,412,241,0,241,27300,0,27300,9420,120,5.7,10,10,24.1,3050,9,999999999,290,0.0850,0,88,999.000,999.0,99.0 +1977,4,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,98600,471,1353,412,147,1,146,16300,100,16300,5190,110,4.1,10,10,24.1,3050,9,999999999,290,0.0850,0,88,999.000,999.0,99.0 +1977,4,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,98500,190,1353,412,54,1,54,6000,0,6000,1720,110,5.2,10,10,24.1,8530,9,999999999,300,0.0850,0,88,999.000,999.0,99.0 +1977,4,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,98600,5,259,401,3,0,3,0,0,0,0,120,3.6,10,10,24.1,8530,9,999999999,300,0.0850,0,88,999.000,999.0,99.0 +1977,4,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.1,81,98700,0,0,398,0,0,0,0,0,0,0,120,4.1,10,10,24.1,8530,9,999999999,300,0.1360,0,88,999.000,999.0,99.0 +1977,4,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.1,81,98700,0,0,398,0,0,0,0,0,0,0,110,4.1,10,10,24.1,8530,9,999999999,300,0.1360,0,88,999.000,999.0,99.0 +1977,4,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.6,78,98700,0,0,398,0,0,0,0,0,0,0,130,5.2,10,10,24.1,1070,9,999999999,300,0.1360,0,88,999.000,999.0,99.0 +1977,4,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.0,81,98700,0,0,391,0,0,0,0,0,0,0,130,3.6,10,10,24.1,3050,9,999999999,300,0.1360,0,88,999.000,999.0,99.0 +1977,4,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,14.4,81,98700,0,0,387,0,0,0,0,0,0,0,120,4.1,10,10,19.3,7620,9,999999999,300,0.1370,0,88,999.000,999.0,99.0 +1977,4,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.9,81,98700,0,0,384,0,0,0,0,0,0,0,130,3.6,10,10,19.3,2440,9,999999999,300,0.1370,0,88,999.000,999.0,99.0 +1977,4,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,14.4,81,98700,0,0,387,0,0,0,0,0,0,0,140,4.1,10,10,19.3,2440,9,999999999,300,0.1370,0,88,999.000,999.0,99.0 +1977,4,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,14.4,81,98700,0,0,387,0,0,0,0,0,0,0,130,5.2,10,10,19.3,2440,9,999999999,300,0.1370,0,88,999.000,999.0,99.0 +1977,4,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.4,84,98700,0,0,384,0,0,0,0,0,0,0,120,3.6,10,10,19.3,1520,9,999999999,300,0.1370,0,88,999.000,999.0,99.0 +1977,4,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,98700,0,0,382,0,0,0,0,0,0,0,120,3.6,10,10,19.3,1520,9,999999999,300,0.1370,0,88,999.000,999.0,99.0 +1977,4,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,98700,134,1341,382,35,0,35,3900,0,3900,1150,120,5.2,10,10,19.3,1520,9,999999999,300,0.0840,0,88,999.000,999.0,99.0 +1977,4,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,98700,415,1352,385,120,0,120,13400,0,13400,4260,160,5.2,10,10,16.1,270,9,999999999,300,0.0840,0,88,999.000,999.0,99.0 +1977,4,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,98700,682,1352,389,250,1,249,27900,100,27900,9130,140,4.1,10,10,16.1,760,9,999999999,300,0.0840,0,88,999.000,999.0,99.0 +1977,4,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.6,78,98700,914,1352,398,349,1,349,39600,100,39600,13720,140,4.1,10,10,16.1,370,9,999999999,290,0.0840,0,88,999.000,999.0,99.0 +1977,4,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,98700,1095,1352,401,388,1,387,44800,100,44800,16290,140,3.6,10,10,16.1,490,9,999999999,290,0.0840,0,88,999.000,999.0,99.0 +1977,4,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,98700,1211,1352,407,483,1,482,55800,100,55700,19340,130,3.6,10,10,16.1,580,9,999999999,290,0.0840,0,88,999.000,999.0,99.0 +1977,4,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,98600,1256,1352,407,436,1,435,51100,100,51000,18470,160,3.1,10,10,19.3,910,9,999999999,279,0.0840,0,88,999.000,999.0,99.0 +1977,4,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,98500,1227,1352,394,443,77,373,49000,7900,41800,18560,160,3.1,9,9,24.1,910,9,999999999,279,0.0840,0,88,999.000,999.0,99.0 +1977,4,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,98500,1125,1352,414,371,9,363,43200,800,42500,15800,180,3.1,10,10,24.1,1220,9,999999999,279,0.0840,0,88,999.000,999.0,99.0 +1977,4,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,98400,957,1352,412,317,12,308,36500,1100,35700,13090,180,3.6,10,10,24.1,1130,9,999999999,279,0.0840,0,88,999.000,999.0,99.0 +1977,4,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,98400,735,1352,412,233,0,233,26500,0,26500,9240,150,2.1,10,10,32.2,1160,9,999999999,279,0.0840,0,88,999.000,999.0,99.0 +1977,4,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,98400,474,1352,399,142,9,139,15900,600,15700,5050,0,0.0,10,10,24.1,1160,9,999999999,270,0.0840,0,88,999.000,999.0,99.0 +1977,4,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.1,76,98300,193,1352,405,45,3,44,5000,0,5000,1510,0,0.0,10,10,24.1,1220,9,999999999,270,0.0840,0,88,999.000,999.0,99.0 +1977,4,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.1,81,98300,6,282,398,2,0,2,0,0,0,0,100,2.1,10,10,19.3,1370,9,999999999,279,0.0840,0,88,999.000,999.0,99.0 +1977,4,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.1,81,98400,0,0,398,0,0,0,0,0,0,0,120,3.1,10,10,19.3,1220,9,999999999,279,0.1370,0,88,999.000,999.0,99.0 +1977,4,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.7,93,98500,0,0,390,0,0,0,0,0,0,0,230,3.6,10,10,24.1,980,9,999999999,290,0.1370,0,88,999.000,999.0,99.0 +1977,4,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,17.2,100,98400,0,0,388,0,0,0,0,0,0,0,140,2.6,10,10,12.9,850,9,999999999,300,0.1370,0,88,999.000,999.0,99.0 +1977,4,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.7,93,98400,0,0,390,0,0,0,0,0,0,0,150,3.1,10,10,16.1,640,9,999999999,309,0.1370,0,88,999.000,999.0,99.0 +1977,4,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,98300,0,0,391,0,0,0,0,0,0,0,140,4.1,10,10,11.3,610,9,999999999,320,0.1390,0,88,999.000,999.0,99.0 +1977,4,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.7,97,98300,0,0,387,0,0,0,0,0,0,0,160,3.6,10,10,11.3,980,9,999999999,320,0.1390,0,88,999.000,999.0,99.0 +1977,4,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,98200,0,0,384,0,0,0,0,0,0,0,150,3.6,10,10,9.7,1520,9,999999999,329,0.1390,0,88,999.000,999.0,99.0 +1977,4,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,98200,0,0,384,0,0,0,0,0,0,0,160,3.1,10,10,9.7,150,9,999999999,340,0.1390,0,88,999.000,999.0,99.0 +1977,4,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,98200,0,0,384,0,0,0,0,0,0,0,180,2.1,10,10,8.0,150,9,999999999,350,0.1390,0,88,999.000,999.0,99.0 +1977,4,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,98200,0,11,384,0,0,0,0,0,0,0,150,3.6,10,10,6.4,120,9,999999999,350,0.1390,0,88,999.000,999.0,99.0 +1977,4,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,98300,139,1352,384,33,0,33,3700,0,3700,1100,160,3.6,10,10,6.4,180,9,999999999,359,0.3130,0,88,999.000,999.0,99.0 +1977,4,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.7,97,98200,420,1352,387,113,1,113,12700,100,12700,4120,160,3.1,10,10,6.4,180,9,999999999,350,0.3130,0,88,999.000,999.0,99.0 +1977,4,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.7,93,98200,686,1352,390,136,0,135,15900,0,15900,5980,160,3.6,10,10,8.0,180,9,999999999,350,0.3130,0,88,999.000,999.0,99.0 +1977,4,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.7,93,98200,918,1352,390,328,1,328,37500,100,37400,13270,170,3.6,10,10,8.0,180,9,999999999,350,0.3130,0,88,999.000,999.0,99.0 +1977,4,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,98200,1097,1352,386,420,72,361,46300,7400,40300,14730,190,3.6,10,9,11.3,910,9,999999999,340,0.3130,0,88,999.000,999.0,99.0 +1977,4,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,98200,1214,1352,389,566,228,362,62600,24800,40300,17710,190,3.6,8,8,16.1,910,9,999999999,329,0.3130,0,88,999.000,999.0,99.0 +1977,4,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,98100,1259,1352,398,827,406,449,90400,44100,49300,26490,190,4.6,8,8,24.1,1220,9,999999999,329,0.3130,0,88,999.000,999.0,99.0 +1977,4,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,98000,1229,1352,397,778,363,448,84800,39400,48900,23560,220,5.2,7,7,32.2,7620,9,999999999,329,0.3130,0,88,999.000,999.0,99.0 +1977,4,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,97800,1127,1352,394,548,224,362,60000,24300,39700,14060,230,5.7,8,6,48.3,1220,9,999999999,320,0.3130,0,88,999.000,999.0,99.0 +1977,4,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,97800,959,1352,394,547,344,304,59400,37100,33100,8870,190,5.7,8,6,48.3,1220,9,999999999,320,0.3130,0,88,999.000,999.0,99.0 +1977,4,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,97700,737,1352,391,417,334,236,44700,35100,25600,5610,180,3.6,7,4,48.3,7620,9,999999999,309,0.3130,0,88,999.000,999.0,99.0 +1977,4,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,97700,477,1352,385,227,229,146,24000,21800,16300,3030,180,5.2,7,4,48.3,7620,9,999999999,300,0.3130,0,88,999.000,999.0,99.0 +1977,4,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.1,76,97700,196,1352,394,42,0,42,4700,0,4700,1470,140,4.1,10,9,48.3,7620,9,999999999,300,0.3130,0,88,999.000,999.0,99.0 +1977,4,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.1,81,97700,6,304,398,3,0,3,0,0,0,0,180,3.1,10,10,40.2,1220,9,999999999,290,0.3130,0,88,999.000,999.0,99.0 +1977,4,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,97600,0,0,400,0,0,0,0,0,0,0,150,6.7,10,10,32.2,910,9,999999999,279,0.1390,0,88,999.000,999.0,99.0 +1977,4,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.0,93,97700,0,0,379,0,0,0,0,0,0,0,260,2.6,10,10,24.1,1040,9,999999999,270,0.1390,0,88,999.000,999.0,99.0 +1977,4,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.0,93,97700,0,0,379,0,0,0,0,0,0,0,270,2.6,10,10,24.1,850,9,999999999,250,0.1390,0,88,999.000,999.0,99.0 +1977,4,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.6,97,97700,0,0,380,0,0,0,0,0,0,0,360,2.6,10,10,16.1,3050,9,999999999,240,0.1390,0,88,999.000,999.0,99.0 +1977,4,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.0,97,97700,0,0,377,0,0,0,0,0,0,0,140,2.1,10,10,11.3,90,9,999999999,229,0.1400,0,88,999.000,999.0,99.0 +1977,4,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.0,97,97600,0,0,377,0,0,0,0,0,0,0,200,1.0,10,10,11.3,940,9,999999999,220,0.1400,0,88,999.000,999.0,99.0 +1977,4,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,15.0,100,97600,0,0,363,0,0,0,0,0,0,0,240,2.1,9,9,9.7,940,9,999999999,209,0.1400,0,88,999.000,999.0,99.0 +1977,4,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.9,100,97500,0,0,324,0,0,0,0,0,0,0,280,3.6,1,1,9.7,77777,9,999999999,200,0.1400,0,88,999.000,999.0,99.0 +1977,4,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.9,100,97500,0,0,366,0,0,0,0,0,0,0,280,5.2,10,10,4.8,60,9,999999999,179,0.1400,0,88,999.000,999.0,99.0 +1977,4,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,97500,0,56,363,0,0,0,0,0,0,0,290,5.7,10,10,9.7,120,9,999999999,170,0.1400,0,88,999.000,999.0,99.0 +1977,4,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,97600,143,1351,329,49,72,41,5300,4100,4800,860,290,5.2,4,4,11.3,77777,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1977,4,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,97600,424,1351,353,176,87,149,19300,8100,16800,3770,310,5.2,8,8,16.1,180,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1977,4,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,97600,690,1351,356,294,118,234,32000,12100,25800,5880,280,5.2,9,9,16.1,340,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1977,4,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.1,70,97600,921,1351,367,446,107,373,49000,11000,41500,12380,280,7.2,9,9,19.3,610,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1977,4,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,97500,1100,1351,377,392,25,372,45600,2400,43600,15930,300,6.2,9,9,32.2,910,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1977,4,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.6,59,97600,1216,1351,370,858,558,356,91800,58300,39200,19450,320,4.1,8,8,40.2,1070,9,999999999,160,0.0950,0,88,999.000,999.0,99.0 +1977,4,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.6,59,97500,1261,1351,360,803,389,440,88000,42300,48400,26220,320,7.2,6,6,40.2,1070,9,999999999,150,0.0950,0,88,999.000,999.0,99.0 +1977,4,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,9.4,54,97500,1231,1351,358,608,369,272,66900,38700,31600,15590,320,7.2,6,6,40.2,1220,9,999999999,150,0.0950,0,88,999.000,999.0,99.0 +1977,4,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.3,47,97500,1129,1351,362,726,547,269,78900,57200,31000,10920,310,9.3,6,6,40.2,1220,9,999999999,150,0.0950,0,88,999.000,999.0,99.0 +1977,4,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,8.3,46,97400,961,1351,360,634,568,231,68400,59000,26300,6600,310,7.7,4,4,40.2,77777,9,999999999,150,0.0950,0,88,999.000,999.0,99.0 +1977,4,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.8,42,97400,739,1351,361,406,426,174,43500,43200,19700,3830,310,6.7,4,4,40.2,77777,9,999999999,150,0.0950,0,88,999.000,999.0,99.0 +1977,4,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,8.3,46,97400,479,1351,348,267,519,84,27900,47900,10900,1610,320,6.2,1,1,40.2,77777,9,999999999,150,0.0950,0,88,999.000,999.0,99.0 +1977,4,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.8,50,97400,200,1351,331,86,349,36,9000,23500,5500,650,310,5.2,0,0,40.2,77777,9,999999999,150,0.0950,0,88,999.000,999.0,99.0 +1977,4,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,6.7,54,97400,7,326,320,5,9,4,0,0,0,0,300,3.1,0,0,40.2,77777,9,999999999,150,0.0950,0,88,999.000,999.0,99.0 +1977,4,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.7,64,97400,0,0,307,0,0,0,0,0,0,0,290,3.1,0,0,40.2,77777,9,999999999,150,0.1400,0,88,999.000,999.0,99.0 +1977,4,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,97500,0,0,308,0,0,0,0,0,0,0,300,4.1,0,0,40.2,77777,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1977,4,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,97500,0,0,305,0,0,0,0,0,0,0,290,4.1,0,0,32.2,77777,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1977,4,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,97400,0,0,308,0,0,0,0,0,0,0,300,4.6,0,0,32.2,77777,9,999999999,160,0.1400,0,88,999.000,999.0,99.0 +1977,4,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,97400,0,0,305,0,0,0,0,0,0,0,300,5.7,0,0,24.1,77777,9,999999999,160,0.1410,0,88,999.000,999.0,99.0 +1977,4,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,97300,0,0,303,0,0,0,0,0,0,0,310,3.6,0,0,19.3,77777,9,999999999,170,0.1410,0,88,999.000,999.0,99.0 +1977,4,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,97300,0,0,298,0,0,0,0,0,0,0,330,4.1,0,0,19.3,77777,9,999999999,170,0.1410,0,88,999.000,999.0,99.0 +1977,4,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,97300,0,0,295,0,0,0,0,0,0,0,310,4.1,0,0,19.3,77777,9,999999999,170,0.1410,0,88,999.000,999.0,99.0 +1977,4,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,97300,0,0,293,0,0,0,0,0,0,0,290,3.1,0,0,19.3,77777,9,999999999,179,0.1410,0,88,999.000,999.0,99.0 +1977,4,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,89,97400,0,79,298,0,0,0,0,0,0,0,290,4.1,1,1,24.1,77777,9,999999999,179,0.1410,0,88,999.000,999.0,99.0 +1977,4,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,89,97400,148,1350,302,38,49,33,4200,2900,3900,690,290,4.1,2,2,24.1,77777,9,999999999,179,0.2310,0,88,999.000,999.0,99.0 +1977,4,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,97400,429,1350,314,208,323,106,21800,29100,12600,2000,340,3.6,2,2,24.1,77777,9,999999999,170,0.2310,0,88,999.000,999.0,99.0 +1977,4,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,97400,694,1350,320,452,547,172,48000,55000,19700,3670,320,5.2,3,3,24.1,77777,9,999999999,170,0.2310,0,88,999.000,999.0,99.0 +1977,4,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,97400,924,1350,330,612,536,246,65200,55500,27200,6710,320,5.2,3,3,24.1,77777,9,999999999,160,0.2310,0,88,999.000,999.0,99.0 +1977,4,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.2,56,97400,1103,1350,337,791,597,304,84700,62300,33700,11670,320,7.7,4,4,24.1,77777,9,999999999,150,0.2310,0,88,999.000,999.0,99.0 +1977,4,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,4.4,43,97300,1219,1350,339,932,701,299,97600,70500,33800,15830,320,7.7,4,4,24.1,77777,9,999999999,150,0.2310,0,88,999.000,999.0,99.0 +1977,4,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,3.3,37,97300,1263,1350,345,687,297,409,75700,32300,45400,24520,320,5.2,5,5,24.1,77777,9,999999999,139,0.2310,0,88,999.000,999.0,99.0 +1977,4,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,4.4,39,97300,1233,1350,349,978,638,395,103600,66500,42700,23240,270,6.2,5,5,24.1,77777,9,999999999,129,0.2310,0,88,999.000,999.0,99.0 +1977,4,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,3.9,39,97200,1130,1350,346,823,618,305,88300,64500,34100,12560,300,6.7,5,5,32.2,77777,9,999999999,129,0.2310,0,88,999.000,999.0,99.0 +1977,4,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.7,34,97200,963,1350,336,584,433,276,61900,44900,29800,8030,280,6.2,3,3,32.2,77777,9,999999999,120,0.2310,0,88,999.000,999.0,99.0 +1977,4,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,2.2,38,97300,742,1350,331,444,469,187,47100,47600,20900,4150,300,7.2,3,3,32.2,77777,9,999999999,110,0.2310,0,88,999.000,999.0,99.0 +1977,4,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,1.7,38,97300,482,1350,320,253,432,100,27200,40400,12700,1880,320,6.7,1,1,32.2,77777,9,999999999,110,0.2310,0,88,999.000,999.0,99.0 +1977,4,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,1.7,42,97300,203,1350,307,72,148,50,7700,9400,6200,920,280,7.2,0,0,32.2,77777,9,999999999,100,0.2310,0,88,999.000,999.0,99.0 +1977,4,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,1.7,47,97400,8,326,300,4,0,4,0,0,0,0,300,4.1,0,0,32.2,77777,9,999999999,100,0.2310,0,88,999.000,999.0,99.0 +1977,4,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.7,53,97500,0,0,293,0,0,0,0,0,0,0,310,3.1,0,0,32.2,77777,9,999999999,100,0.1410,0,88,999.000,999.0,99.0 +1977,4,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.7,57,97500,0,0,289,0,0,0,0,0,0,0,320,4.1,0,0,32.2,77777,9,999999999,100,0.1410,0,88,999.000,999.0,99.0 +1977,4,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,97500,0,0,286,0,0,0,0,0,0,0,310,3.6,0,0,32.2,77777,9,999999999,100,0.1410,0,88,999.000,999.0,99.0 +1977,4,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.7,66,97600,0,0,280,0,0,0,0,0,0,0,310,3.6,0,0,32.2,77777,9,999999999,100,0.1410,0,88,999.000,999.0,99.0 +1977,4,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.7,73,97600,0,0,273,0,0,0,0,0,0,0,280,4.1,0,0,32.2,77777,9,999999999,89,0.1430,0,88,999.000,999.0,99.0 +1977,4,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,97500,0,0,269,0,0,0,0,0,0,0,300,3.1,0,0,32.2,77777,9,999999999,89,0.1430,0,88,999.000,999.0,99.0 +1977,4,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.1,79,97500,0,0,266,0,0,0,0,0,0,0,290,3.1,0,0,32.2,77777,9,999999999,89,0.1430,0,88,999.000,999.0,99.0 +1977,4,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.1,79,97500,0,0,266,0,0,0,0,0,0,0,300,3.1,0,0,32.2,77777,9,999999999,89,0.1430,0,88,999.000,999.0,99.0 +1977,4,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,97600,0,0,260,0,0,0,0,0,0,0,280,3.6,0,0,32.2,77777,9,999999999,89,0.1430,0,88,999.000,999.0,99.0 +1977,4,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,97700,1,101,260,1,1,1,0,0,0,0,290,4.6,0,0,32.2,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1977,4,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,97700,153,1349,266,62,299,29,6400,17800,4400,520,300,4.6,0,0,32.2,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1977,4,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.2,68,97800,433,1349,280,267,662,56,27900,60100,8600,1130,310,4.1,0,0,32.2,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1977,4,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,2.8,57,97800,698,1349,294,495,806,80,52800,79700,11500,1800,330,4.6,0,0,32.2,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1977,4,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.8,53,97800,927,1349,314,599,551,221,64600,57100,25200,6000,310,6.2,4,4,32.2,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1977,4,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,1.7,44,97900,1106,1349,315,844,819,173,87900,82000,20500,5940,340,6.2,2,2,32.2,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1977,4,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,0.0,34,97800,1221,1349,328,669,421,288,73100,44100,33100,15960,340,7.2,4,4,40.2,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1977,4,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-0.6,34,97800,1265,1349,331,683,356,349,73600,37200,38600,23830,320,6.2,6,6,40.2,1220,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1977,4,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-1.7,31,97800,1234,1349,339,629,239,411,69100,26000,45300,22010,310,5.7,8,8,40.2,1220,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1977,4,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-1.1,32,97700,1132,1349,339,473,160,339,52500,17100,38100,13340,300,5.2,8,8,40.2,1370,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1977,4,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-0.6,32,97700,965,1349,330,584,536,202,64000,55800,24000,5760,330,6.7,5,5,40.2,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1977,4,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-0.6,32,97800,744,1349,325,476,535,182,50700,54300,20700,4040,310,7.2,3,3,40.2,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1977,4,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-0.6,34,97800,485,1349,315,308,695,60,32400,64800,9100,1240,300,6.7,1,1,40.2,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1977,4,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-0.6,36,97900,206,1349,304,94,395,35,9800,27100,5700,640,300,4.1,0,0,40.2,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1977,4,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,0.6,50,97900,8,349,290,6,14,4,0,0,0,0,290,2.6,0,0,32.2,77777,9,999999999,89,0.0860,0,88,999.000,999.0,99.0 +1977,4,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.7,57,98000,0,0,289,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,89,0.1430,0,88,999.000,999.0,99.0 +1977,4,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.2,66,98000,0,0,282,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,89,0.1430,0,88,999.000,999.0,99.0 +1977,4,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.2,74,98100,0,0,276,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,89,0.1430,0,88,999.000,999.0,99.0 +1977,4,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,98100,0,0,273,0,0,0,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,89,0.1430,0,88,999.000,999.0,99.0 +1977,4,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,98100,0,0,271,0,0,0,0,0,0,0,280,3.6,0,0,24.1,77777,9,999999999,89,0.1440,0,88,999.000,999.0,99.0 +1977,4,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,98100,0,0,271,0,0,0,0,0,0,0,280,3.6,0,0,24.1,77777,9,999999999,89,0.1440,0,88,999.000,999.0,99.0 +1977,4,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,98100,0,0,271,0,0,0,0,0,0,0,280,3.6,0,0,24.1,77777,9,999999999,89,0.1440,0,88,999.000,999.0,99.0 +1977,4,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,98200,0,0,271,0,0,0,0,0,0,0,290,3.6,0,0,24.1,77777,9,999999999,89,0.1440,0,88,999.000,999.0,99.0 +1977,4,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,98200,0,0,269,0,0,0,0,0,0,0,270,3.1,0,0,24.1,77777,9,999999999,89,0.1440,0,88,999.000,999.0,99.0 +1977,4,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,98200,1,124,267,1,0,1,0,0,0,0,270,3.1,0,0,32.2,77777,9,999999999,89,0.3180,0,88,999.000,999.0,99.0 +1977,4,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,98300,158,1349,273,47,45,42,5100,2700,4800,880,270,3.1,0,0,32.2,77777,9,999999999,89,0.3180,0,88,999.000,999.0,99.0 +1977,4,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.3,64,98400,437,1349,290,214,322,111,22500,29200,13000,2100,270,3.1,0,0,32.2,77777,9,999999999,89,0.3180,0,88,999.000,999.0,99.0 +1977,4,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,4.4,55,98400,701,1349,305,440,518,171,46800,52200,19600,3670,270,3.6,0,0,32.2,77777,9,999999999,89,0.3180,0,88,999.000,999.0,99.0 +1977,4,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,4.4,46,98400,930,1349,317,649,628,217,67600,62800,24100,5730,270,5.2,0,0,32.2,77777,9,999999999,100,0.3180,0,88,999.000,999.0,99.0 +1977,4,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,3.9,39,98400,1108,1349,326,819,695,248,86000,70200,28200,9350,270,5.2,0,0,40.2,77777,9,999999999,100,0.3180,0,88,999.000,999.0,99.0 +1977,4,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,2.8,34,98400,1223,1349,328,929,732,266,98300,74200,30900,14550,250,5.2,0,0,40.2,77777,9,999999999,100,0.3180,0,88,999.000,999.0,99.0 +1977,4,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,2.8,31,98300,1267,1349,342,899,667,273,95400,67700,31700,18340,300,5.2,1,1,40.2,77777,9,999999999,100,0.3180,0,88,999.000,999.0,99.0 +1977,4,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,3.3,30,98300,1236,1349,352,881,606,326,95400,63400,37100,19430,300,7.7,2,2,40.2,77777,9,999999999,110,0.3180,0,88,999.000,999.0,99.0 +1977,4,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,3.9,31,98200,1134,1349,342,843,703,252,88700,71100,28800,10180,260,7.2,0,0,40.2,77777,9,999999999,110,0.3180,0,88,999.000,999.0,99.0 +1977,4,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,3.9,30,98200,967,1349,344,661,613,223,69000,61500,24800,6250,320,4.6,0,0,40.2,77777,9,999999999,110,0.3180,0,88,999.000,999.0,99.0 +1977,4,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,3.9,30,98200,746,1349,344,475,536,180,50800,54500,20600,3990,290,4.1,0,0,40.2,77777,9,999999999,110,0.3180,0,88,999.000,999.0,99.0 +1977,4,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,3.9,31,98200,487,1349,342,251,361,122,26400,33700,14200,2350,280,5.2,0,0,40.2,77777,9,999999999,120,0.3180,0,88,999.000,999.0,99.0 +1977,4,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,4.4,39,98200,209,1349,330,69,88,56,7600,6100,6600,1190,260,4.1,0,0,40.2,77777,9,999999999,120,0.3180,0,88,999.000,999.0,99.0 +1977,4,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.6,52,98200,9,371,316,5,0,5,0,0,0,0,240,2.6,0,0,32.2,77777,9,999999999,120,0.3180,0,88,999.000,999.0,99.0 +1977,4,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.1,58,98300,0,0,312,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,120,0.1440,0,88,999.000,999.0,99.0 +1977,4,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.6,60,98400,0,0,306,0,0,0,0,0,0,0,240,2.6,0,0,24.1,77777,9,999999999,110,0.1440,0,88,999.000,999.0,99.0 +1977,4,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,5.6,69,98400,0,0,297,0,0,0,0,0,0,0,230,3.1,0,0,24.1,77777,9,999999999,110,0.1440,0,88,999.000,999.0,99.0 +1977,4,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.6,64,98400,0,0,302,0,0,0,0,0,0,0,240,4.1,0,0,24.1,77777,9,999999999,110,0.1440,0,88,999.000,999.0,99.0 +1977,4,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.0,64,98400,0,0,299,0,0,0,0,0,0,0,240,3.1,0,0,24.1,77777,9,999999999,110,0.1450,0,88,999.000,999.0,99.0 +1977,4,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.0,64,98400,0,0,299,0,0,0,0,0,0,0,260,4.1,0,0,24.1,77777,9,999999999,110,0.1450,0,88,999.000,999.0,99.0 +1977,4,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,4.4,64,98300,0,0,296,0,0,0,0,0,0,0,250,3.6,0,0,24.1,77777,9,999999999,110,0.1450,0,88,999.000,999.0,99.0 +1977,4,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,4.4,74,98300,0,0,287,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,100,0.1450,0,88,999.000,999.0,99.0 +1977,4,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,4.4,74,98400,0,0,287,0,0,0,0,0,0,0,270,3.6,0,0,24.1,77777,9,999999999,100,0.1450,0,88,999.000,999.0,99.0 +1977,4,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.9,74,98400,1,146,284,1,0,1,0,0,0,0,260,3.1,0,0,40.2,77777,9,999999999,100,0.1690,0,88,999.000,999.0,99.0 +1977,4,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.0,64,98500,162,1348,299,58,152,40,6200,8300,5200,730,250,3.6,2,0,40.2,77777,9,999999999,100,0.1690,0,88,999.000,999.0,99.0 +1977,4,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.1,54,98500,441,1348,317,249,504,85,25800,45400,10900,1590,240,6.2,1,0,40.2,77777,9,999999999,110,0.1690,0,88,999.000,999.0,99.0 +1977,4,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.2,49,98400,705,1348,330,477,679,123,50300,67300,15000,2670,270,5.2,1,0,40.2,77777,9,999999999,120,0.1690,0,88,999.000,999.0,99.0 +1977,4,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,7.2,49,98400,933,1348,330,684,770,152,73100,78500,18600,4240,250,6.7,1,0,40.2,77777,9,999999999,129,0.1690,0,88,999.000,999.0,99.0 +1977,4,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.8,47,98400,1111,1348,347,847,783,203,90400,79900,24400,7870,250,7.2,2,2,40.2,77777,9,999999999,129,0.1690,0,88,999.000,999.0,99.0 +1977,4,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.8,37,98300,1225,1348,366,904,727,243,96200,74000,28800,13530,250,7.2,5,2,40.2,77777,9,999999999,139,0.1690,0,88,999.000,999.0,99.0 +1977,4,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,8.3,37,98300,1268,1348,369,899,626,310,94500,63000,35000,20940,250,7.2,7,2,40.2,77777,9,999999999,150,0.1690,0,88,999.000,999.0,99.0 +1977,4,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.2,32,98200,1238,1348,373,928,694,291,97700,70000,33200,16930,250,6.2,8,2,40.2,77777,9,999999999,160,0.1690,0,88,999.000,999.0,99.0 +1977,4,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,9.4,36,98100,1136,1348,379,824,644,282,86000,64700,31400,11330,260,6.7,8,2,40.2,77777,9,999999999,170,0.1690,0,88,999.000,999.0,99.0 +1977,4,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,9.4,37,98000,969,1348,371,684,656,213,71500,66000,24000,6030,240,6.2,3,1,40.2,77777,9,999999999,179,0.1690,0,88,999.000,999.0,99.0 +1977,4,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,8.9,39,98000,748,1348,374,490,519,203,51700,52700,22400,4570,240,6.2,7,3,40.2,77777,9,999999999,179,0.1690,0,88,999.000,999.0,99.0 +1977,4,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,8.9,39,98000,490,1348,365,276,491,99,29700,46100,12900,1860,240,6.7,3,1,40.2,77777,9,999999999,189,0.1690,0,88,999.000,999.0,99.0 +1977,4,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,9.4,44,98000,212,1348,362,81,125,62,8500,8100,7300,1190,250,5.2,6,2,40.2,77777,9,999999999,200,0.1690,0,88,999.000,999.0,99.0 +1977,4,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.6,55,98000,10,393,342,6,2,6,0,0,0,0,220,4.6,0,0,32.2,77777,9,999999999,200,0.1690,0,88,999.000,999.0,99.0 +1977,4,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.6,61,98000,0,0,334,0,0,0,0,0,0,0,230,5.2,0,0,32.2,77777,9,999999999,209,0.1450,0,88,999.000,999.0,99.0 +1977,4,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.6,65,98100,0,0,329,0,0,0,0,0,0,0,240,5.2,0,0,32.2,77777,9,999999999,209,0.1450,0,88,999.000,999.0,99.0 +1977,4,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.6,65,98100,0,0,329,0,0,0,0,0,0,0,240,5.2,0,0,32.2,77777,9,999999999,220,0.1450,0,88,999.000,999.0,99.0 +1977,4,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.6,65,98100,0,0,329,0,0,0,0,0,0,0,250,3.6,0,0,24.1,77777,9,999999999,220,0.1450,0,88,999.000,999.0,99.0 +1977,4,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.6,70,98100,0,0,324,0,0,0,0,0,0,0,260,5.2,0,0,24.1,77777,9,999999999,229,0.1470,0,88,999.000,999.0,99.0 +1977,4,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,98100,0,0,324,0,0,0,0,0,0,0,270,5.2,1,1,24.1,77777,9,999999999,229,0.1470,0,88,999.000,999.0,99.0 +1977,4,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,98000,0,0,322,0,0,0,0,0,0,0,270,5.2,1,1,24.1,77777,9,999999999,229,0.1470,0,88,999.000,999.0,99.0 +1977,4,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,98000,0,0,320,0,0,0,0,0,0,0,240,3.6,1,1,24.1,77777,9,999999999,240,0.1470,0,88,999.000,999.0,99.0 +1977,4,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,98100,0,0,325,0,0,0,0,0,0,0,260,5.2,6,2,24.1,77777,9,999999999,240,0.1470,0,88,999.000,999.0,99.0 +1977,4,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,98200,2,168,336,1,2,1,0,0,0,0,250,5.2,4,4,24.1,77777,9,999999999,250,0.0840,0,88,999.000,999.0,99.0 +1977,4,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.6,75,98200,166,1347,350,50,71,42,5500,4400,5000,880,270,4.6,8,8,12.9,4270,9,999999999,250,0.0840,0,88,999.000,999.0,99.0 +1977,4,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.7,78,98300,445,1347,373,139,11,136,15600,800,15300,4810,240,6.2,10,10,12.9,4270,9,999999999,250,0.0840,0,88,999.000,999.0,99.0 +1977,4,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,98300,708,1347,376,165,6,162,19200,500,19000,7020,250,5.2,10,10,12.9,4270,9,999999999,250,0.0840,0,88,999.000,999.0,99.0 +1977,4,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,98400,936,1347,380,361,6,357,41000,600,40600,14180,280,3.6,10,10,16.1,3050,9,999999999,250,0.0840,0,88,999.000,999.0,99.0 +1977,4,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,98400,1113,1347,373,707,387,387,76800,41900,42100,14850,250,4.1,9,8,16.1,3050,9,999999999,250,0.0840,0,88,999.000,999.0,99.0 +1977,4,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,14.4,64,98400,1227,1347,383,659,364,327,71100,38100,36400,18840,310,3.1,8,7,16.1,3050,9,999999999,250,0.0840,0,88,999.000,999.0,99.0 +1977,4,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,98300,1270,1347,411,346,11,335,41400,1000,40500,15480,250,2.6,10,10,16.1,3050,9,999999999,250,0.0840,0,88,999.000,999.0,99.0 +1977,4,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.0,60,98300,1240,1347,407,454,144,322,51100,15500,36800,16730,260,4.6,10,9,16.1,3350,9,999999999,259,0.0840,0,88,999.000,999.0,99.0 +1977,4,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.0,58,98200,1137,1347,401,569,149,443,62100,15800,48700,17680,230,3.6,8,8,19.3,3050,9,999999999,259,0.0840,0,88,999.000,999.0,99.0 +1977,4,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,14.4,56,98200,970,1347,394,541,349,290,59000,37700,31800,8540,290,4.1,8,7,19.3,1070,9,999999999,259,0.0840,0,88,999.000,999.0,99.0 +1977,4,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.0,58,98200,750,1347,410,366,182,265,39800,18900,29300,6900,270,4.6,10,9,16.1,1220,9,999999999,259,0.0840,0,88,999.000,999.0,99.0 +1977,4,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,98200,492,1347,401,134,45,117,14700,4200,13100,3350,270,2.6,10,9,16.1,1220,9,999999999,259,0.0840,0,88,999.000,999.0,99.0 +1977,4,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,98200,215,1347,399,62,22,58,6700,1700,6500,1410,290,3.1,9,9,11.3,1220,9,999999999,259,0.0840,0,88,999.000,999.0,99.0 +1977,4,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,98200,11,393,384,5,3,5,0,0,0,0,250,2.1,9,9,12.9,1220,9,999999999,259,0.0840,0,88,999.000,999.0,99.0 +1977,4,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,98300,0,0,355,0,0,0,0,0,0,0,260,2.1,4,3,12.9,77777,9,999999999,250,0.1470,0,88,999.000,999.0,99.0 +1977,4,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,98300,0,0,349,0,0,0,0,0,0,0,270,2.1,3,3,12.9,77777,9,999999999,250,0.1470,0,88,999.000,999.0,99.0 +1977,4,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,98400,0,0,386,0,0,0,0,0,0,0,60,4.1,10,10,12.9,880,9,999999999,250,0.1470,0,88,999.000,999.0,99.0 +1977,4,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.9,90,98400,0,0,348,0,0,0,0,0,0,0,60,4.1,6,6,12.9,880,9,999999999,240,0.1470,0,88,999.000,999.0,99.0 +1977,4,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.9,96,98400,0,0,359,0,0,0,0,0,0,0,60,5.2,9,9,12.9,880,9,999999999,240,0.1480,0,88,999.000,999.0,99.0 +1977,4,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98400,0,0,363,0,0,0,0,0,0,0,70,5.2,10,10,8.0,820,9,999999999,240,0.1480,0,88,999.000,999.0,99.0 +1977,4,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98400,0,0,363,0,0,0,0,0,0,0,70,4.1,10,10,8.0,270,9,999999999,229,0.1480,0,88,999.000,999.0,99.0 +1977,4,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98400,0,0,363,0,0,0,0,0,0,0,80,4.1,10,10,8.0,270,9,999999999,229,0.1480,0,88,999.000,999.0,99.0 +1977,4,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98400,0,0,363,0,0,0,0,0,0,0,70,4.1,10,10,8.0,180,9,999999999,229,0.1480,0,88,999.000,999.0,99.0 +1977,4,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98400,2,191,363,0,0,0,0,0,0,0,70,4.6,10,10,8.0,180,9,999999999,220,0.1500,0,88,999.000,999.0,99.0 +1977,4,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98500,171,1347,363,33,1,33,3800,0,3800,1170,80,4.1,10,10,6.4,150,9,999999999,220,0.1500,0,88,999.000,999.0,99.0 +1977,4,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.9,100,98600,449,1347,366,93,4,91,10600,200,10600,3640,120,2.6,10,10,6.4,120,9,999999999,220,0.1500,0,88,999.000,999.0,99.0 +1977,4,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,98700,712,1347,368,210,1,210,24000,100,24000,8480,80,4.1,10,10,8.0,240,9,999999999,229,0.1500,0,88,999.000,999.0,99.0 +1977,4,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.4,84,98700,939,1347,384,274,4,271,31800,400,31600,11900,70,3.6,10,10,8.0,270,9,999999999,229,0.1500,0,88,999.000,999.0,99.0 +1977,4,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.0,78,98700,1115,1347,394,414,8,407,47800,800,47200,16970,80,4.1,10,10,9.7,430,9,999999999,229,0.1500,0,88,999.000,999.0,99.0 +1977,4,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,98700,1229,1347,393,563,199,382,62600,21300,43100,19210,140,3.1,10,9,11.3,2440,9,999999999,240,0.1500,0,88,999.000,999.0,99.0 +1977,4,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,98700,1272,1347,399,427,27,402,50600,2500,48200,17640,120,3.1,10,9,9.7,2440,9,999999999,240,0.1500,0,88,999.000,999.0,99.0 +1977,4,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,98500,1241,1347,398,701,325,402,77200,35400,44600,22260,140,4.1,8,8,9.7,2440,9,999999999,240,0.1500,0,88,999.000,999.0,99.0 +1977,4,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,98500,1139,1347,392,627,327,351,68900,35500,38800,14090,130,3.1,8,7,8.0,7620,9,999999999,250,0.1500,0,88,999.000,999.0,99.0 +1977,4,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,98400,972,1347,398,434,187,299,47900,19900,33500,9350,90,5.7,9,8,8.0,2440,9,999999999,250,0.1500,0,88,999.000,999.0,99.0 +1977,4,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,98400,753,1347,398,268,160,179,29900,16800,20500,4660,90,6.2,10,9,8.0,2440,9,999999999,250,0.1500,0,88,999.000,999.0,99.0 +1977,4,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.7,81,98500,495,1347,402,72,4,70,8500,200,8400,3050,80,4.1,10,10,8.0,670,9,999999999,259,0.1500,0,88,999.000,999.0,99.0 +1977,4,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,98500,218,1347,396,33,5,32,3800,0,3800,1230,60,3.1,10,10,8.0,400,9,999999999,259,0.1500,0,88,999.000,999.0,99.0 +1977,4,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,98600,12,415,391,2,0,2,0,0,0,0,100,4.1,10,10,4.8,340,9,999999999,259,0.1500,0,88,999.000,999.0,99.0 +1977,4,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,17.2,100,98600,0,0,388,0,0,0,0,0,0,0,60,3.6,10,10,4.8,2440,9,999999999,270,0.1480,0,88,999.000,999.0,99.0 +1977,4,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.0,17.0,100,98600,0,0,386,0,0,0,0,0,0,0,90,3.5,10,10,4.8,2440,9,999999999,270,0.1480,0,88,999.000,999.0,99.0 +1977,4,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.9,16.9,100,98600,0,0,386,0,0,0,0,0,0,0,120,3.5,10,10,6.4,370,9,999999999,270,0.1480,0,88,999.000,999.0,99.0 +1977,4,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,98600,0,0,384,0,0,0,0,0,0,0,140,3.4,10,10,4.8,150,9,999999999,279,0.1480,0,88,999.000,999.0,99.0 +1977,5,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.6,16.6,100,98600,0,0,384,0,0,0,0,0,0,0,150,3.3,10,10,4.8,120,9,999999999,279,0.1490,0,88,999.000,999.0,99.0 +1977,5,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.4,16.4,100,98500,0,0,382,0,0,0,0,0,0,0,140,3.2,10,10,4.8,370,9,999999999,279,0.1490,0,88,999.000,999.0,99.0 +1977,5,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.3,16.3,100,98500,0,0,382,0,0,0,0,0,0,0,110,3.2,10,10,4.8,580,9,999999999,290,0.1490,0,88,999.000,999.0,99.0 +1977,5,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,16.1,100,98600,0,0,380,0,0,0,0,0,0,0,100,3.1,10,10,4.8,120,9,999999999,290,0.1490,0,88,999.000,999.0,99.0 +1977,5,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,16.1,100,98700,0,0,380,0,0,0,0,0,0,0,100,4.1,10,10,4.8,120,9,999999999,290,0.1490,0,88,999.000,999.0,99.0 +1977,5,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,16.1,100,98700,3,213,380,0,0,0,0,0,0,0,100,4.1,10,10,3.2,60,9,999999999,300,0.0790,0,88,999.000,999.0,99.0 +1977,5,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,15.0,100,98700,175,1346,373,42,1,42,4700,0,4700,1410,110,4.1,10,10,3.2,60,9,999999999,300,0.0790,0,88,999.000,999.0,99.0 +1977,5,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,16.1,100,98800,453,1346,380,130,5,129,14700,300,14600,4700,110,4.1,10,10,1.6,90,9,999999999,300,0.0790,0,88,999.000,999.0,99.0 +1977,5,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,98900,715,1346,384,251,2,250,28300,200,28200,9500,120,3.6,10,10,1.6,90,9,999999999,300,0.0790,0,88,999.000,999.0,99.0 +1977,5,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,98900,942,1346,384,337,3,335,38500,300,38300,13720,140,3.1,10,10,1.6,90,9,999999999,300,0.0790,0,88,999.000,999.0,99.0 +1977,5,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,98900,1118,1346,390,377,2,375,43800,200,43700,16130,120,5.7,10,10,2.4,520,9,999999999,300,0.0790,0,88,999.000,999.0,99.0 +1977,5,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,98800,1231,1346,396,463,2,462,54000,200,53800,19040,80,4.6,10,10,4.8,370,9,999999999,300,0.0790,0,88,999.000,999.0,99.0 +1977,5,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.1,78,98800,1273,1346,401,450,1,448,52600,100,52600,18940,120,3.6,10,10,8.0,460,9,999999999,300,0.0790,0,88,999.000,999.0,99.0 +1977,5,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.6,66,98700,1243,1346,387,721,385,366,77200,40200,40000,22820,80,4.1,8,7,9.7,820,9,999999999,300,0.0790,0,88,999.000,999.0,99.0 +1977,5,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.6,66,98700,1141,1346,379,675,552,208,72100,56400,24200,8780,110,4.1,7,5,11.3,7620,9,999999999,300,0.0790,0,88,999.000,999.0,99.0 +1977,5,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.0,60,98600,974,1346,384,536,411,239,57700,42700,26700,7030,80,3.1,7,5,12.9,7620,9,999999999,300,0.0790,0,88,999.000,999.0,99.0 +1977,5,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,14.4,56,98500,755,1346,384,484,502,203,51100,51000,22400,4590,150,4.1,7,4,12.9,7620,9,999999999,300,0.0790,0,88,999.000,999.0,99.0 +1977,5,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,98500,498,1346,386,231,186,162,25000,17900,18400,3740,110,4.1,10,7,12.9,7620,9,999999999,300,0.0790,0,88,999.000,999.0,99.0 +1977,5,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,98500,221,1346,390,81,51,73,8900,3900,8200,1690,100,5.2,10,8,12.9,7620,9,999999999,300,0.0790,0,88,999.000,999.0,99.0 +1977,5,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.1,81,98600,13,437,369,7,6,6,0,0,0,0,100,4.1,10,6,12.9,7620,9,999999999,300,0.0790,0,88,999.000,999.0,99.0 +1977,5,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,98600,0,0,358,0,0,0,0,0,0,0,80,4.1,8,4,12.9,77777,9,999999999,300,0.1490,0,88,999.000,999.0,99.0 +1977,5,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.7,93,98700,0,0,349,0,0,0,0,0,0,0,80,4.1,7,2,12.9,77777,9,999999999,300,0.1490,0,88,999.000,999.0,99.0 +1977,5,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.7,97,98700,0,0,368,0,0,0,0,0,0,0,70,4.6,8,8,11.3,1370,9,999999999,290,0.1490,0,88,999.000,999.0,99.0 +1977,5,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,98700,0,0,374,0,0,0,0,0,0,0,70,4.1,9,9,9.7,1370,9,999999999,290,0.1490,0,88,999.000,999.0,99.0 +1977,5,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,98700,0,0,384,0,0,0,0,0,0,0,90,5.2,10,10,9.7,1370,9,999999999,290,0.1510,0,88,999.000,999.0,99.0 +1977,5,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,98600,0,0,384,0,0,0,0,0,0,0,90,5.2,10,10,9.7,1070,9,999999999,290,0.1510,0,88,999.000,999.0,99.0 +1977,5,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,98600,0,0,384,0,0,0,0,0,0,0,90,5.2,10,10,8.0,700,9,999999999,290,0.1510,0,88,999.000,999.0,99.0 +1977,5,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.6,100,98600,0,0,377,0,0,0,0,0,0,0,90,5.2,10,10,8.0,180,9,999999999,279,0.1510,0,88,999.000,999.0,99.0 +1977,5,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.6,100,98600,0,0,377,0,0,0,0,0,0,0,100,3.6,10,10,8.0,640,9,999999999,279,0.1510,0,88,999.000,999.0,99.0 +1977,5,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,16.1,100,98700,4,235,380,1,0,1,0,0,0,0,90,3.6,10,10,4.8,180,9,999999999,279,0.1680,0,88,999.000,999.0,99.0 +1977,5,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,15.0,100,98700,179,1345,373,31,2,31,3600,0,3600,1130,120,6.7,10,10,4.8,150,9,999999999,279,0.1680,0,88,999.000,999.0,99.0 +1977,5,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,98700,457,1345,386,106,3,105,12100,200,12000,4090,130,4.6,10,10,3.2,2440,9,999999999,279,0.1680,0,88,999.000,999.0,99.0 +1977,5,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,98700,718,1345,373,258,129,190,28600,13400,21400,4850,130,4.1,9,8,4.8,7620,9,999999999,279,0.1680,0,88,999.000,999.0,99.0 +1977,5,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.7,81,98800,944,1345,391,399,115,318,43700,12200,35100,9660,110,3.6,10,9,8.0,430,9,999999999,279,0.1680,0,88,999.000,999.0,99.0 +1977,5,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,98700,1120,1345,378,634,379,318,67600,39500,34600,12900,110,3.1,10,5,8.0,77777,9,999999999,279,0.1680,0,88,999.000,999.0,99.0 +1977,5,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.7,66,98700,1233,1345,386,787,463,362,84100,48400,39700,21630,90,2.6,10,5,12.9,77777,9,999999999,279,0.1680,0,88,999.000,999.0,99.0 +1977,5,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,98600,1275,1345,399,731,312,435,80300,33900,48000,28440,120,3.6,10,7,12.9,980,9,999999999,279,0.1680,0,88,999.000,999.0,99.0 +1977,5,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,98500,1244,1345,402,635,251,402,69800,27300,44500,22650,130,6.2,10,8,12.9,1070,9,999999999,279,0.1680,0,88,999.000,999.0,99.0 +1977,5,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.0,56,98400,1142,1345,404,576,206,401,63300,21900,44700,16210,120,4.6,10,8,12.9,1070,9,999999999,279,0.1680,0,88,999.000,999.0,99.0 +1977,5,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,98400,976,1345,405,415,168,294,45900,17900,33000,9240,120,6.2,10,8,12.9,7620,9,999999999,279,0.1680,0,88,999.000,999.0,99.0 +1977,5,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.0,58,98300,757,1345,422,262,5,259,29600,500,29400,10110,120,4.1,10,10,12.9,7620,9,999999999,279,0.1680,0,88,999.000,999.0,99.0 +1977,5,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,98300,500,1345,399,174,104,135,19000,10100,15300,3120,110,5.2,10,8,12.9,7620,9,999999999,279,0.1680,0,88,999.000,999.0,99.0 +1977,5,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,98300,224,1345,385,65,49,57,7100,3800,6500,1410,100,4.6,10,7,11.3,7620,9,999999999,279,0.1680,0,88,999.000,999.0,99.0 +1977,5,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,98300,14,460,388,4,0,4,0,0,0,0,90,5.7,9,8,12.9,3660,9,999999999,279,0.1680,0,88,999.000,999.0,99.0 +1977,5,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.1,78,98400,0,0,390,0,0,0,0,0,0,0,100,4.6,10,9,12.9,3050,9,999999999,279,0.1510,0,88,999.000,999.0,99.0 +1977,5,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,98400,0,0,396,0,0,0,0,0,0,0,90,3.6,10,10,12.9,3050,9,999999999,270,0.1510,0,88,999.000,999.0,99.0 +1977,5,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,98400,0,0,396,0,0,0,0,0,0,0,100,4.1,10,10,11.3,3050,9,999999999,270,0.1510,0,88,999.000,999.0,99.0 +1977,5,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,98400,0,0,396,0,0,0,0,0,0,0,110,3.1,10,10,11.3,3050,9,999999999,270,0.1510,0,88,999.000,999.0,99.0 +1977,5,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,98400,0,0,396,0,0,0,0,0,0,0,120,4.1,10,10,11.3,3050,9,999999999,270,0.1520,0,88,999.000,999.0,99.0 +1977,5,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,98400,0,0,381,0,0,0,0,0,0,0,120,3.6,9,9,16.1,3050,9,999999999,259,0.1520,0,88,999.000,999.0,99.0 +1977,5,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,98400,0,0,375,0,0,0,0,0,0,0,140,4.1,9,9,16.1,3050,9,999999999,259,0.1520,0,88,999.000,999.0,99.0 +1977,5,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.6,97,98300,0,0,362,0,0,0,0,0,0,0,130,2.6,8,8,16.1,7620,9,999999999,259,0.1520,0,88,999.000,999.0,99.0 +1977,5,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.6,97,98300,0,0,356,0,0,0,0,0,0,0,130,2.6,7,7,16.1,7620,9,999999999,250,0.1520,0,88,999.000,999.0,99.0 +1977,5,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.6,97,98400,4,258,380,0,0,0,0,0,0,0,140,2.6,10,10,8.0,3660,9,999999999,250,0.1590,0,88,999.000,999.0,99.0 +1977,5,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.6,97,98400,183,1344,362,50,10,48,5500,100,5500,1580,140,2.6,10,8,4.8,3660,9,999999999,250,0.1590,0,88,999.000,999.0,99.0 +1977,5,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.6,93,98500,460,1344,355,203,168,145,22000,15900,16500,3300,160,2.6,8,6,4.0,3660,9,999999999,250,0.1590,0,88,999.000,999.0,99.0 +1977,5,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.1,81,98500,721,1344,369,490,487,230,50800,49100,24400,5170,0,0.0,8,6,8.0,2440,9,999999999,250,0.1590,0,88,999.000,999.0,99.0 +1977,5,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,98500,947,1344,385,321,69,272,35400,7000,30400,9930,180,1.5,9,7,8.0,3660,9,999999999,259,0.1590,0,88,999.000,999.0,99.0 +1977,5,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,98500,1122,1344,391,627,246,422,68600,26100,46800,16420,170,2.1,5,5,9.7,77777,9,999999999,259,0.1590,0,88,999.000,999.0,99.0 +1977,5,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.1,58,98500,1234,1344,409,673,213,478,73800,22700,53000,24620,150,3.1,8,8,12.9,3660,9,999999999,259,0.1590,0,88,999.000,999.0,99.0 +1977,5,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.1,58,98400,1277,1344,409,655,256,412,72300,27900,45800,27130,140,2.1,8,8,16.1,1070,9,999999999,270,0.1590,0,88,999.000,999.0,99.0 +1977,5,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,98300,1246,1344,397,764,270,513,83300,28700,56700,27480,280,4.6,8,8,24.1,1070,9,999999999,270,0.1590,0,88,999.000,999.0,99.0 +1977,5,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,98300,1144,1344,396,843,724,227,89500,73700,26700,9630,250,2.6,3,3,19.3,77777,9,999999999,270,0.1590,0,88,999.000,999.0,99.0 +1977,5,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,98200,978,1344,397,622,372,352,67000,40100,37800,10820,160,3.6,6,6,24.1,1220,9,999999999,270,0.1590,0,88,999.000,999.0,99.0 +1977,5,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.0,54,98100,759,1344,393,395,356,195,43200,37600,21900,4520,190,5.2,5,5,24.1,77777,9,999999999,279,0.1590,0,88,999.000,999.0,99.0 +1977,5,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,98100,503,1344,391,281,370,144,30100,35900,16600,2970,220,5.2,6,6,24.1,3050,9,999999999,279,0.1590,0,88,999.000,999.0,99.0 +1977,5,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.0,68,98100,227,1344,395,59,13,56,6500,300,6500,1910,230,2.1,9,9,24.1,3050,9,999999999,279,0.1590,0,88,999.000,999.0,99.0 +1977,5,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,98100,15,482,374,5,3,5,0,0,0,0,150,2.1,6,6,19.3,3050,9,999999999,279,0.1590,0,88,999.000,999.0,99.0 +1977,5,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,98200,0,0,390,0,0,0,0,0,0,0,330,2.1,9,9,16.1,1520,9,999999999,270,0.1520,0,88,999.000,999.0,99.0 +1977,5,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,98200,0,0,404,0,0,0,0,0,0,0,10,2.1,10,10,16.1,3050,9,999999999,270,0.1520,0,88,999.000,999.0,99.0 +1977,5,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.1,78,98200,0,0,390,0,0,0,0,0,0,0,50,2.6,10,9,16.1,1220,9,999999999,270,0.1520,0,88,999.000,999.0,99.0 +1977,5,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,98200,0,0,399,0,0,0,0,0,0,0,60,4.1,10,10,16.1,1400,9,999999999,259,0.1520,0,88,999.000,999.0,99.0 +1977,5,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,98200,0,0,349,0,0,0,0,0,0,0,0,0.0,3,2,16.1,77777,9,999999999,259,0.1530,0,88,999.000,999.0,99.0 +1977,5,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.6,97,98100,0,0,329,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,259,0.1530,0,88,999.000,999.0,99.0 +1977,5,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.6,100,98100,0,0,327,0,0,0,0,0,0,0,120,1.5,1,0,16.1,77777,9,999999999,250,0.1530,0,88,999.000,999.0,99.0 +1977,5,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,15.0,100,98200,0,0,324,0,0,0,0,0,0,0,210,2.1,0,0,16.1,77777,9,999999999,250,0.1530,0,88,999.000,999.0,99.0 +1977,5,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,14.4,100,98200,0,0,342,0,0,0,0,0,0,0,170,1.5,9,6,12.9,3960,9,999999999,250,0.1530,0,88,999.000,999.0,99.0 +1977,5,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,14.4,97,98200,5,280,340,2,0,2,0,0,0,0,180,2.1,8,4,11.3,77777,9,999999999,240,0.3360,0,88,999.000,999.0,99.0 +1977,5,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,14.4,97,98300,187,1344,337,60,20,57,6500,1500,6300,1330,190,2.1,10,3,11.3,77777,9,999999999,240,0.3360,0,88,999.000,999.0,99.0 +1977,5,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.9,84,98400,464,1344,357,210,53,192,23000,5000,21200,4730,220,3.6,10,7,12.9,3960,9,999999999,240,0.3360,0,88,999.000,999.0,99.0 +1977,5,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,98400,724,1344,362,422,344,237,45100,36000,25600,5620,220,2.6,8,3,12.9,77777,9,999999999,250,0.3360,0,88,999.000,999.0,99.0 +1977,5,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,98300,949,1344,361,652,568,251,69600,58900,27900,7140,220,2.6,3,0,16.1,77777,9,999999999,250,0.3360,0,88,999.000,999.0,99.0 +1977,5,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,98300,1124,1344,385,696,427,339,73900,44500,36600,14000,190,3.1,4,3,19.3,77777,9,999999999,250,0.3360,0,88,999.000,999.0,99.0 +1977,5,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.6,54,98200,1236,1344,400,922,518,446,96700,53900,46900,27470,180,5.2,7,6,19.3,1070,9,999999999,250,0.3360,0,88,999.000,999.0,99.0 +1977,5,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,14.4,49,98200,1278,1344,422,494,80,418,54700,8200,46800,23870,210,6.2,10,9,32.2,3050,9,999999999,250,0.3360,0,88,999.000,999.0,99.0 +1977,5,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,14.4,49,98200,1247,1344,422,534,120,422,59000,12800,47000,22760,210,4.6,9,9,32.2,3050,9,999999999,259,0.3360,0,88,999.000,999.0,99.0 +1977,5,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,98100,1145,1344,409,715,364,405,77800,39500,44100,16870,220,6.7,7,7,32.2,3050,9,999999999,259,0.3360,0,88,999.000,999.0,99.0 +1977,5,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,13.9,45,98000,979,1344,394,630,396,342,68000,42700,36800,10480,230,3.6,8,3,32.2,77777,9,999999999,259,0.3360,0,88,999.000,999.0,99.0 +1977,5,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.3,45,98000,761,1344,394,397,260,250,42500,27400,26900,6080,250,3.1,9,4,32.2,77777,9,999999999,270,0.3360,0,88,999.000,999.0,99.0 +1977,5,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.9,49,98000,505,1344,392,212,145,158,23100,14100,17800,3660,280,4.1,9,4,24.1,77777,9,999999999,270,0.3360,0,88,999.000,999.0,99.0 +1977,5,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,14.4,59,98000,230,1344,371,73,69,62,8000,5000,7200,1320,240,2.6,6,2,24.1,77777,9,999999999,270,0.3360,0,88,999.000,999.0,99.0 +1977,5,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,98000,16,482,363,4,0,4,0,0,0,0,240,2.6,6,3,24.1,77777,9,999999999,270,0.3360,0,88,999.000,999.0,99.0 +1977,5,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,98000,0,0,363,0,0,0,0,0,0,0,240,2.6,8,3,24.1,77777,9,999999999,270,0.1530,0,88,999.000,999.0,99.0 +1977,5,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.8,68,98100,0,0,367,0,0,0,0,0,0,0,260,2.6,10,7,24.1,7620,9,999999999,259,0.1530,0,88,999.000,999.0,99.0 +1977,5,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,98000,0,0,351,0,0,0,0,0,0,0,240,2.6,9,4,32.2,77777,9,999999999,259,0.1530,0,88,999.000,999.0,99.0 +1977,5,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,98000,0,0,349,0,0,0,0,0,0,0,270,3.1,8,4,32.2,77777,9,999999999,259,0.1530,0,88,999.000,999.0,99.0 +1977,5,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,98000,0,0,349,0,0,0,0,0,0,0,270,2.6,8,4,32.2,77777,9,999999999,250,0.1550,0,88,999.000,999.0,99.0 +1977,5,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,97900,0,0,338,0,0,0,0,0,0,0,240,2.1,7,2,32.2,77777,9,999999999,250,0.1550,0,88,999.000,999.0,99.0 +1977,5,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,97900,0,0,338,0,0,0,0,0,0,0,240,2.1,7,2,32.2,77777,9,999999999,250,0.1550,0,88,999.000,999.0,99.0 +1977,5,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,98000,0,0,334,0,0,0,0,0,0,0,190,2.1,10,4,32.2,77777,9,999999999,250,0.1550,0,88,999.000,999.0,99.0 +1977,5,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,98000,0,0,334,0,0,0,0,0,0,0,180,2.1,10,4,32.2,77777,9,999999999,250,0.1550,0,88,999.000,999.0,99.0 +1977,5,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,98000,6,302,358,2,0,2,0,0,0,0,240,2.1,10,9,16.1,7620,9,999999999,240,0.1500,0,88,999.000,999.0,99.0 +1977,5,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,98000,191,1343,346,54,48,47,5900,3200,5400,990,250,2.6,9,5,12.9,7620,9,999999999,240,0.1500,0,88,999.000,999.0,99.0 +1977,5,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,14.4,73,98000,467,1343,354,254,397,116,26600,36700,13800,2210,290,2.6,5,2,16.1,77777,9,999999999,240,0.1500,0,88,999.000,999.0,99.0 +1977,5,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.6,66,98100,727,1343,365,465,620,129,48800,61700,15400,2850,290,3.1,4,1,19.3,77777,9,999999999,250,0.1500,0,88,999.000,999.0,99.0 +1977,5,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,98000,952,1343,391,502,405,215,54400,42100,24500,6070,300,3.1,7,6,19.3,4570,9,999999999,250,0.1500,0,88,999.000,999.0,99.0 +1977,5,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,14.4,50,98000,1126,1343,392,799,600,296,86000,62700,33400,12200,290,4.1,8,4,19.3,77777,9,999999999,250,0.1500,0,88,999.000,999.0,99.0 +1977,5,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.0,49,98000,1238,1343,399,876,634,291,92100,64000,33000,17250,300,4.1,5,4,19.3,77777,9,999999999,250,0.1500,0,88,999.000,999.0,99.0 +1977,5,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,14.4,46,97900,1279,1343,401,843,537,331,91600,56200,37900,25380,280,5.2,7,4,24.1,4570,9,999999999,250,0.1500,0,88,999.000,999.0,99.0 +1977,5,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.0,46,97900,1248,1343,402,916,682,282,96700,69000,32500,17640,260,4.1,6,3,24.1,77777,9,999999999,259,0.1500,0,88,999.000,999.0,99.0 +1977,5,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.0,46,97800,1146,1343,392,829,711,222,88200,72400,26200,9550,260,2.6,2,1,24.1,77777,9,999999999,259,0.1500,0,88,999.000,999.0,99.0 +1977,5,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.0,46,97800,981,1343,398,666,670,178,70800,68100,20900,5310,240,2.1,2,2,24.1,77777,9,999999999,259,0.1500,0,88,999.000,999.0,99.0 +1977,5,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,14.4,43,97800,763,1343,387,523,698,128,55400,70000,15600,2940,230,2.6,2,0,24.1,77777,9,999999999,270,0.1500,0,88,999.000,999.0,99.0 +1977,5,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.3,42,97700,508,1343,380,299,552,91,31200,51700,11600,1760,260,2.6,2,0,24.1,77777,9,999999999,270,0.1500,0,88,999.000,999.0,99.0 +1977,5,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,14.4,50,97700,233,1343,385,98,160,70,10200,11000,8300,1360,240,2.6,8,2,24.1,77777,9,999999999,270,0.1500,0,88,999.000,999.0,99.0 +1977,5,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,14.4,59,97800,17,504,371,8,4,7,0,0,0,0,230,3.1,6,2,24.1,77777,9,999999999,270,0.1500,0,88,999.000,999.0,99.0 +1977,5,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,14.4,64,97800,0,0,366,0,0,0,0,0,0,0,240,2.6,4,2,24.1,77777,9,999999999,270,0.1550,0,88,999.000,999.0,99.0 +1977,5,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,14.4,68,97900,0,0,355,0,0,0,0,0,0,0,230,2.6,3,1,24.1,77777,9,999999999,259,0.1550,0,88,999.000,999.0,99.0 +1977,5,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,13.3,68,97900,0,0,342,0,0,0,0,0,0,0,230,3.6,4,0,32.2,77777,9,999999999,259,0.1550,0,88,999.000,999.0,99.0 +1977,5,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,97900,0,0,342,0,0,0,0,0,0,0,240,3.1,7,1,32.2,77777,9,999999999,259,0.1550,0,88,999.000,999.0,99.0 +1977,5,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,97900,0,0,336,0,0,0,0,0,0,0,240,3.1,3,0,32.2,77777,9,999999999,250,0.1560,0,88,999.000,999.0,99.0 +1977,5,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,97800,0,0,335,0,0,0,0,0,0,0,250,2.6,3,0,32.2,77777,9,999999999,250,0.1560,0,88,999.000,999.0,99.0 +1977,5,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.9,84,97900,0,0,330,0,0,0,0,0,0,0,290,3.1,2,0,32.2,77777,9,999999999,250,0.1560,0,88,999.000,999.0,99.0 +1977,5,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.4,84,97900,0,0,347,0,0,0,0,0,0,0,300,3.6,4,3,32.2,77777,9,999999999,250,0.1560,0,88,999.000,999.0,99.0 +1977,5,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,97900,0,0,341,0,0,0,0,0,0,0,290,3.1,4,3,32.2,77777,9,999999999,250,0.1560,0,88,999.000,999.0,99.0 +1977,5,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.9,73,98000,7,324,351,4,10,3,0,0,0,0,300,3.1,3,2,40.2,77777,9,999999999,240,0.0750,0,88,999.000,999.0,99.0 +1977,5,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,14.4,76,98000,195,1342,347,83,315,38,8500,21000,5500,680,300,3.6,3,1,40.2,77777,9,999999999,240,0.0750,0,88,999.000,999.0,99.0 +1977,5,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,98000,470,1342,355,292,645,67,30900,59900,9900,1330,300,4.1,3,0,32.2,77777,9,999999999,240,0.0750,0,88,999.000,999.0,99.0 +1977,5,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,98100,729,1342,367,492,757,80,52500,75300,11500,1870,280,3.1,1,0,24.1,77777,9,999999999,250,0.0750,0,88,999.000,999.0,99.0 +1977,5,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,98100,954,1342,378,710,851,105,73600,84800,13200,2510,270,4.1,2,0,24.1,77777,9,999999999,250,0.0750,0,88,999.000,999.0,99.0 +1977,5,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,98100,1128,1342,383,876,846,165,92000,85100,20300,6230,320,3.1,6,0,32.2,77777,9,999999999,259,0.0750,0,88,999.000,999.0,99.0 +1977,5,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,98000,1239,1342,399,848,606,288,89300,61200,32700,17250,260,2.6,10,3,32.2,77777,9,999999999,259,0.0750,0,88,999.000,999.0,99.0 +1977,5,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.0,44,98000,1281,1342,404,862,534,353,93100,55900,39700,27460,200,3.6,10,3,32.2,77777,9,999999999,270,0.0750,0,88,999.000,999.0,99.0 +1977,5,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.0,44,97900,1250,1342,404,887,670,263,94200,68100,30600,16690,200,3.6,10,3,32.2,77777,9,999999999,270,0.0750,0,88,999.000,999.0,99.0 +1977,5,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.6,44,97900,1148,1342,404,765,601,251,80600,60800,28500,10750,280,4.1,8,2,32.2,77777,9,999999999,270,0.0750,0,88,999.000,999.0,99.0 +1977,5,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,15.0,40,97900,983,1342,410,693,704,178,73600,71600,21000,5330,280,4.1,7,2,32.2,77777,9,999999999,279,0.0750,0,88,999.000,999.0,99.0 +1977,5,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,14.4,44,97800,765,1342,397,492,642,128,52200,64400,15500,2950,240,3.6,7,2,32.2,77777,9,999999999,279,0.0750,0,88,999.000,999.0,99.0 +1977,5,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,97800,510,1342,403,273,369,134,28600,34900,15300,2610,270,4.1,4,4,32.2,77777,9,999999999,290,0.0750,0,88,999.000,999.0,99.0 +1977,5,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,97800,236,1342,398,101,296,50,10800,20900,7100,890,260,4.1,3,3,32.2,77777,9,999999999,290,0.0750,0,88,999.000,999.0,99.0 +1977,5,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,97900,19,526,383,12,20,10,0,0,0,0,250,3.1,3,3,32.2,77777,9,999999999,290,0.0750,0,88,999.000,999.0,99.0 +1977,5,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,97900,0,0,378,0,0,0,0,0,0,0,240,2.6,3,3,32.2,77777,9,999999999,290,0.1560,0,88,999.000,999.0,99.0 +1977,5,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,68,97900,0,0,370,0,0,0,0,0,0,0,260,2.1,2,2,24.1,77777,9,999999999,279,0.1560,0,88,999.000,999.0,99.0 +1977,5,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,97900,0,0,368,0,0,0,0,0,0,0,240,2.1,7,3,32.2,77777,9,999999999,279,0.1560,0,88,999.000,999.0,99.0 +1977,5,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,97900,0,0,365,0,0,0,0,0,0,0,250,3.1,7,3,32.2,77777,9,999999999,279,0.1560,0,88,999.000,999.0,99.0 +1977,5,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.0,73,98000,0,0,353,0,0,0,0,0,0,0,270,5.2,3,1,32.2,77777,9,999999999,279,0.1570,0,88,999.000,999.0,99.0 +1977,5,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.9,73,97900,0,0,340,0,0,0,0,0,0,0,280,4.1,3,0,32.2,77777,9,999999999,279,0.1570,0,88,999.000,999.0,99.0 +1977,5,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,97900,0,0,332,0,0,0,0,0,0,0,290,3.1,3,0,32.2,77777,9,999999999,279,0.1570,0,88,999.000,999.0,99.0 +1977,5,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,97900,0,0,331,0,0,0,0,0,0,0,290,3.1,2,0,32.2,77777,9,999999999,279,0.1570,0,88,999.000,999.0,99.0 +1977,5,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.9,87,97900,0,0,327,0,0,0,0,0,0,0,270,3.1,1,0,32.2,77777,9,999999999,270,0.1570,0,88,999.000,999.0,99.0 +1977,5,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.0,93,98000,8,347,329,6,16,4,0,0,0,0,270,2.6,2,0,24.1,77777,9,999999999,270,0.0770,0,88,999.000,999.0,99.0 +1977,5,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,98000,198,1342,342,89,375,34,9200,25400,5500,620,270,3.1,1,0,24.1,77777,9,999999999,270,0.0770,0,88,999.000,999.0,99.0 +1977,5,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,98000,473,1342,353,292,665,59,30700,61800,8900,1210,280,4.6,1,0,20.9,77777,9,999999999,270,0.0770,0,88,999.000,999.0,99.0 +1977,5,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,98000,732,1342,372,481,694,103,51500,69800,13400,2360,280,4.1,3,1,20.9,77777,9,999999999,279,0.0770,0,88,999.000,999.0,99.0 +1977,5,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,98000,956,1342,381,671,781,115,71600,78900,15300,3230,280,5.2,2,1,24.1,77777,9,999999999,279,0.0770,0,88,999.000,999.0,99.0 +1977,5,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,98000,1129,1342,413,601,415,251,65800,43500,29100,10390,300,3.1,6,6,24.1,980,9,999999999,279,0.0770,0,88,999.000,999.0,99.0 +1977,5,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,98000,1240,1342,419,753,379,403,83000,41200,44700,22660,300,5.7,7,7,24.1,1070,9,999999999,290,0.0770,0,88,999.000,999.0,99.0 +1977,5,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,97900,1282,1342,422,639,249,401,70700,27100,44700,27540,290,4.6,7,7,24.1,1160,9,999999999,290,0.0770,0,88,999.000,999.0,99.0 +1977,5,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.1,84,98000,1251,1342,395,254,6,249,31200,500,30700,12240,310,4.1,10,10,9.7,760,9,999999999,290,0.0770,0,88,999.000,999.0,99.0 +1977,5,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,97900,1149,1342,418,232,23,213,25900,2300,23900,10010,320,5.2,10,10,16.1,1220,9,999999999,300,0.0770,0,88,999.000,999.0,99.0 +1977,5,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,97800,984,1342,412,293,4,290,34100,400,33900,12820,340,4.1,10,10,16.1,7620,9,999999999,300,0.0770,0,88,999.000,999.0,99.0 +1977,5,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,97700,767,1342,428,300,1,299,33600,100,33500,11100,320,5.2,10,10,16.1,7620,9,999999999,300,0.0770,0,88,999.000,999.0,99.0 +1977,5,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,97700,512,1342,429,139,8,136,15800,600,15600,5230,320,4.1,10,10,24.1,7620,9,999999999,309,0.0770,0,88,999.000,999.0,99.0 +1977,5,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,97800,239,1342,414,60,4,60,6800,100,6800,2050,320,2.1,10,10,24.1,7620,9,999999999,309,0.0770,0,88,999.000,999.0,99.0 +1977,5,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,97700,20,548,414,7,0,7,0,0,0,0,250,3.1,10,10,24.1,7620,9,999999999,309,0.0770,0,88,999.000,999.0,99.0 +1977,5,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,97800,0,0,383,0,0,0,0,0,0,0,310,2.6,6,6,24.1,7620,9,999999999,300,0.1570,0,88,999.000,999.0,99.0 +1977,5,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,97800,0,0,376,0,0,0,0,0,0,0,300,2.6,5,5,19.3,77777,9,999999999,300,0.1570,0,88,999.000,999.0,99.0 +1977,5,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,97800,0,0,344,0,0,0,0,0,0,0,290,2.6,0,0,16.1,77777,9,999999999,300,0.1570,0,88,999.000,999.0,99.0 +1977,5,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,97800,0,0,340,0,0,0,0,0,0,0,270,3.6,0,0,16.1,77777,9,999999999,290,0.1570,0,88,999.000,999.0,99.0 +1977,5,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.7,93,97800,0,0,338,0,0,0,0,0,0,0,270,2.6,1,0,12.9,77777,9,999999999,290,0.1590,0,88,999.000,999.0,99.0 +1977,5,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.7,97,97700,0,0,335,0,0,0,0,0,0,0,290,3.6,2,0,12.9,77777,9,999999999,290,0.1590,0,88,999.000,999.0,99.0 +1977,5,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,97800,0,0,332,0,0,0,0,0,0,0,300,3.1,2,0,12.9,77777,9,999999999,279,0.1590,0,88,999.000,999.0,99.0 +1977,5,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.7,97,97800,0,0,363,0,0,0,0,0,0,0,310,3.1,9,7,11.3,2440,9,999999999,279,0.1590,0,88,999.000,999.0,99.0 +1977,5,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,97800,0,0,341,0,0,0,0,0,0,0,300,2.6,5,1,11.3,77777,9,999999999,279,0.1590,0,88,999.000,999.0,99.0 +1977,5,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,97800,9,369,352,2,0,2,0,0,0,0,330,3.6,8,5,6.4,9140,9,999999999,270,0.2210,0,88,999.000,999.0,99.0 +1977,5,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,17.2,100,97800,202,1341,388,23,1,23,2700,0,2700,910,330,3.6,10,10,0.4,30,9,999999999,270,0.2210,0,88,999.000,999.0,99.0 +1977,5,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.8,97,97900,476,1341,375,159,91,126,17400,8700,14300,2890,330,3.6,9,8,4.0,90,9,999999999,270,0.2210,0,88,999.000,999.0,99.0 +1977,5,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,97900,735,1341,380,439,356,245,47000,37400,26400,5870,320,1.5,9,5,9.7,9140,9,999999999,270,0.2210,0,88,999.000,999.0,99.0 +1977,5,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,97800,958,1341,385,616,501,258,65600,52000,28400,7480,320,1.0,8,5,12.9,9140,9,999999999,270,0.2210,0,88,999.000,999.0,99.0 +1977,5,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,97800,1131,1341,391,681,397,346,72200,41400,37200,14670,340,2.6,8,4,16.1,77777,9,999999999,270,0.2210,0,88,999.000,999.0,99.0 +1977,5,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,97700,1242,1341,387,909,639,317,95100,64200,35600,19220,290,2.6,7,3,16.1,77777,9,999999999,270,0.2210,0,88,999.000,999.0,99.0 +1977,5,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.2,56,97700,1283,1341,405,778,377,417,85800,41000,46500,29030,330,5.2,9,5,19.3,9140,9,999999999,270,0.2210,0,88,999.000,999.0,99.0 +1977,5,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.7,51,97600,1252,1341,407,854,540,350,92000,56500,39100,23280,290,6.2,8,4,24.1,77777,9,999999999,259,0.2210,0,88,999.000,999.0,99.0 +1977,5,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.2,49,97500,1151,1341,414,784,497,357,83000,51800,38500,16050,320,5.2,8,4,24.1,77777,9,999999999,259,0.2210,0,88,999.000,999.0,99.0 +1977,5,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.7,51,97400,986,1341,404,654,468,310,68700,48500,32900,9540,340,3.6,8,3,24.1,77777,9,999999999,259,0.2210,0,88,999.000,999.0,99.0 +1977,5,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.7,51,97300,769,1341,400,416,323,231,44900,34200,25200,5560,340,4.1,7,2,24.1,77777,9,999999999,259,0.2210,0,88,999.000,999.0,99.0 +1977,5,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,97300,515,1341,390,273,304,157,29000,29700,17600,3300,320,4.1,8,2,24.1,77777,9,999999999,259,0.2210,0,88,999.000,999.0,99.0 +1977,5,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,97300,242,1341,389,74,68,62,8100,5100,7200,1320,300,4.1,8,4,24.1,77777,9,999999999,259,0.2210,0,88,999.000,999.0,99.0 +1977,5,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.6,64,97400,21,548,390,10,0,10,0,0,0,0,250,5.2,9,7,19.3,9140,9,999999999,250,0.2210,0,88,999.000,999.0,99.0 +1977,5,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,97300,0,0,378,0,0,0,0,0,0,0,260,4.1,8,7,19.3,9140,9,999999999,240,0.1590,0,88,999.000,999.0,99.0 +1977,5,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,14.4,71,97300,0,0,367,0,0,0,0,0,0,0,270,4.1,5,5,19.3,77777,9,999999999,229,0.1590,0,88,999.000,999.0,99.0 +1977,5,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,14.4,78,97300,0,0,353,0,0,0,0,0,0,0,290,4.1,6,3,16.1,77777,9,999999999,220,0.1590,0,88,999.000,999.0,99.0 +1977,5,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,97200,0,0,348,0,0,0,0,0,0,0,280,3.6,6,3,12.9,77777,9,999999999,209,0.1590,0,88,999.000,999.0,99.0 +1977,5,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,97200,0,0,340,0,0,0,0,0,0,0,260,3.1,3,1,12.9,77777,9,999999999,200,0.1600,0,88,999.000,999.0,99.0 +1977,5,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,97200,0,0,348,0,0,0,0,0,0,0,270,3.6,7,4,12.9,7620,9,999999999,189,0.1600,0,88,999.000,999.0,99.0 +1977,5,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,14.4,90,97200,0,0,345,0,0,0,0,0,0,0,280,4.6,8,4,12.9,77777,9,999999999,179,0.1600,0,88,999.000,999.0,99.0 +1977,5,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.9,87,97100,0,0,360,0,0,0,0,0,0,0,310,4.6,9,8,12.9,7620,9,999999999,170,0.1600,0,88,999.000,999.0,99.0 +1977,5,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,97200,0,0,344,0,0,0,0,0,0,0,310,4.6,8,4,16.1,77777,9,999999999,160,0.1600,0,88,999.000,999.0,99.0 +1977,5,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,97200,10,369,335,4,0,4,0,0,0,0,300,3.6,8,2,19.3,77777,9,999999999,150,0.2070,0,88,999.000,999.0,99.0 +1977,5,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,97300,205,1341,335,67,93,53,7300,6400,6400,1120,340,4.1,6,3,24.1,77777,9,999999999,139,0.2070,0,88,999.000,999.0,99.0 +1977,5,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.7,73,97300,479,1341,342,215,280,116,23300,26900,13700,2300,330,5.7,5,3,32.2,77777,9,999999999,139,0.2070,0,88,999.000,999.0,99.0 +1977,5,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,9.4,53,97400,737,1341,344,473,586,151,49200,58000,17300,3290,360,6.7,3,1,40.2,77777,9,999999999,139,0.2070,0,88,999.000,999.0,99.0 +1977,5,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.3,32,97400,960,1341,336,662,688,169,70300,70000,20100,4900,30,6.7,0,0,48.3,77777,9,999999999,129,0.2070,0,88,999.000,999.0,99.0 +1977,5,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,3.9,31,97300,1132,1341,342,854,787,190,91800,80700,23500,7990,350,5.7,0,0,48.3,77777,9,999999999,129,0.2070,0,88,999.000,999.0,99.0 +1977,5,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,5.0,33,97300,1243,1341,346,965,822,202,100600,82400,24000,11560,360,6.2,0,0,48.3,77777,9,999999999,129,0.2070,0,88,999.000,999.0,99.0 +1977,5,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.1,33,97300,1284,1341,352,999,827,206,104400,83000,24800,15080,310,4.1,0,0,48.3,77777,9,999999999,129,0.2070,0,88,999.000,999.0,99.0 +1977,5,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,4.4,30,97300,1253,1341,348,973,816,210,101200,81600,24700,12590,330,6.2,1,0,48.3,77777,9,999999999,120,0.2070,0,88,999.000,999.0,99.0 +1977,5,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,4.4,30,97200,1152,1341,348,882,781,211,94200,79800,25500,9330,340,6.7,2,0,48.3,77777,9,999999999,120,0.2070,0,88,999.000,999.0,99.0 +1977,5,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,2.8,27,97200,987,1341,346,729,738,187,77300,74900,22000,5630,320,5.2,2,0,48.3,77777,9,999999999,120,0.2070,0,88,999.000,999.0,99.0 +1977,5,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,1.7,28,97300,771,1341,337,528,664,148,55500,66200,17300,3360,340,6.7,1,0,48.3,77777,9,999999999,110,0.2070,0,88,999.000,999.0,99.0 +1977,5,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-0.6,25,97300,517,1341,329,302,513,106,31300,47900,12800,2010,340,6.2,1,0,48.3,77777,9,999999999,110,0.2070,0,88,999.000,999.0,99.0 +1977,5,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-1.7,27,97300,245,1341,318,99,228,58,10400,16400,7400,1050,340,6.2,1,0,40.2,77777,9,999999999,110,0.2070,0,88,999.000,999.0,99.0 +1977,5,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-2.2,30,97300,22,570,308,12,4,11,1200,200,1200,270,340,6.2,1,0,40.2,77777,9,999999999,110,0.2070,0,88,999.000,999.0,99.0 +1977,5,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-2.2,34,97400,0,0,298,0,0,0,0,0,0,0,340,5.2,1,0,32.2,77777,9,999999999,110,0.1600,0,88,999.000,999.0,99.0 +1977,5,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.7,41,97400,0,0,290,0,0,0,0,0,0,0,340,5.2,1,0,32.2,77777,9,999999999,100,0.1600,0,88,999.000,999.0,99.0 +1977,5,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.7,38,97400,0,0,294,0,0,0,0,0,0,0,350,5.2,0,0,32.2,77777,9,999999999,100,0.1600,0,88,999.000,999.0,99.0 +1977,5,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.7,41,97500,0,0,290,0,0,0,0,0,0,0,360,4.6,0,0,32.2,77777,9,999999999,100,0.1600,0,88,999.000,999.0,99.0 +1977,5,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-1.7,43,97500,0,0,288,0,0,0,0,0,0,0,20,5.2,0,0,32.2,77777,9,999999999,100,0.1610,0,88,999.000,999.0,99.0 +1977,5,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-1.7,43,97500,0,0,288,0,0,0,0,0,0,0,40,4.6,0,0,32.2,77777,9,999999999,100,0.1610,0,88,999.000,999.0,99.0 +1977,5,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.7,44,97600,0,0,285,0,0,0,0,0,0,0,40,5.2,0,0,32.2,77777,9,999999999,100,0.1610,0,88,999.000,999.0,99.0 +1977,5,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.1,50,97600,0,0,281,0,0,0,0,0,0,0,50,5.2,0,0,32.2,77777,9,999999999,89,0.1610,0,88,999.000,999.0,99.0 +1977,5,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.1,50,97700,0,0,296,0,0,0,0,0,0,0,70,4.1,4,4,32.2,77777,9,999999999,89,0.1610,0,88,999.000,999.0,99.0 +1977,5,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.1,48,97700,10,391,306,6,0,6,0,0,0,0,80,5.2,9,7,32.2,880,9,999999999,89,0.1480,0,88,999.000,999.0,99.0 +1977,5,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.1,48,97800,209,1340,311,77,49,70,8500,3700,7900,1610,90,5.2,8,8,40.2,880,9,999999999,89,0.1480,0,88,999.000,999.0,99.0 +1977,5,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.0,47,97800,482,1340,306,272,400,128,28300,37300,14900,2480,80,6.2,5,4,40.2,77777,9,999999999,89,0.1480,0,88,999.000,999.0,99.0 +1977,5,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,0.0,39,97900,739,1340,313,475,587,151,49400,58100,17300,3300,90,5.7,3,2,40.2,77777,9,999999999,89,0.1480,0,88,999.000,999.0,99.0 +1977,5,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,0.0,35,97900,962,1340,310,725,787,160,77300,80300,19600,4690,90,5.2,3,0,40.2,77777,9,999999999,89,0.1480,0,88,999.000,999.0,99.0 +1977,5,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,1.7,35,97900,1134,1340,319,871,847,153,92200,85600,19700,6040,50,5.2,0,0,40.2,77777,9,999999999,89,0.1480,0,88,999.000,999.0,99.0 +1977,5,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,2.8,37,97800,1244,1340,323,987,887,163,105400,89800,21800,9760,100,4.1,0,0,40.2,77777,9,999999999,89,0.1480,0,88,999.000,999.0,99.0 +1977,5,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,3.9,35,97800,1285,1340,334,1018,888,166,103900,88900,18400,9990,60,3.1,0,0,32.2,77777,9,999999999,89,0.1480,0,88,999.000,999.0,99.0 +1977,5,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,5.0,36,97700,1254,1340,338,990,883,164,105900,89400,21900,10340,10,1.5,0,0,32.2,77777,9,999999999,89,0.1480,0,88,999.000,999.0,99.0 +1977,5,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,5.0,34,97700,1153,1340,343,899,864,155,95400,87300,20100,6480,350,6.2,0,0,32.2,77777,9,999999999,89,0.1480,0,88,999.000,999.0,99.0 +1977,5,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,5.0,33,97600,989,1340,346,747,823,140,78400,82600,17300,3950,350,4.6,0,0,32.2,77777,9,999999999,89,0.1480,0,88,999.000,999.0,99.0 +1977,5,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,2.8,29,97600,773,1340,341,547,749,117,58500,75500,14900,2750,330,3.6,0,0,32.2,77777,9,999999999,89,0.1480,0,88,999.000,999.0,99.0 +1977,5,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,0.0,25,97600,520,1340,335,322,612,86,33900,57800,11400,1700,340,4.1,0,0,32.2,77777,9,999999999,89,0.1480,0,88,999.000,999.0,99.0 +1977,5,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-1.7,23,97600,248,1340,328,110,330,50,11800,23900,7400,890,330,4.1,0,0,32.2,77777,9,999999999,89,0.1480,0,88,999.000,999.0,99.0 +1977,5,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,0.0,32,97700,24,592,315,12,13,10,1200,500,1200,210,320,3.6,0,0,32.2,77777,9,999999999,89,0.1480,0,88,999.000,999.0,99.0 +1977,5,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,0.6,38,97700,0,0,308,0,0,0,0,0,0,0,340,4.1,0,0,32.2,77777,9,999999999,100,0.1610,0,88,999.000,999.0,99.0 +1977,5,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.6,42,97800,0,0,301,0,0,0,0,0,0,0,320,3.6,0,0,32.2,77777,9,999999999,100,0.1610,0,88,999.000,999.0,99.0 +1977,5,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.1,47,97800,0,0,297,0,0,0,0,0,0,0,320,2.6,0,0,32.2,77777,9,999999999,100,0.1610,0,88,999.000,999.0,99.0 +1977,5,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.1,50,97800,0,0,292,0,0,0,0,0,0,0,340,2.6,0,0,32.2,77777,9,999999999,110,0.1610,0,88,999.000,999.0,99.0 +1977,5,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.1,54,97900,0,0,288,0,0,0,0,0,0,0,320,2.1,0,0,32.2,77777,9,999999999,110,0.1620,0,88,999.000,999.0,99.0 +1977,5,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.1,54,97800,0,0,288,0,0,0,0,0,0,0,10,2.6,0,0,32.2,77777,9,999999999,110,0.1620,0,88,999.000,999.0,99.0 +1977,5,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.7,57,97900,0,0,289,0,0,0,0,0,0,0,50,3.1,0,0,32.2,77777,9,999999999,120,0.1620,0,88,999.000,999.0,99.0 +1977,5,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,2.8,63,97900,0,0,287,0,0,0,0,0,0,0,70,3.6,0,0,32.2,77777,9,999999999,120,0.1620,0,88,999.000,999.0,99.0 +1977,5,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.2,66,98000,0,0,282,0,0,0,0,0,0,0,80,3.1,0,0,32.2,77777,9,999999999,120,0.1620,0,88,999.000,999.0,99.0 +1977,5,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,98100,11,413,281,8,17,6,0,0,0,0,100,4.1,0,0,32.2,77777,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1977,5,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.8,61,98200,212,1339,290,99,392,37,10200,27300,5900,670,80,4.1,0,0,32.2,77777,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1977,5,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.9,59,98200,485,1339,298,308,677,63,32100,63100,9200,1280,90,5.2,0,0,32.2,77777,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1977,5,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.7,60,98300,742,1339,312,532,806,86,56600,80200,12100,1990,80,3.6,0,0,24.1,77777,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1977,5,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.6,65,98300,963,1339,329,732,864,110,75700,86100,13700,2600,110,2.1,1,0,24.1,77777,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1977,5,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,98300,1135,1339,354,844,765,195,90500,78400,23900,8280,150,4.1,2,2,32.2,77777,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1977,5,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,9.4,43,98300,1246,1339,378,588,353,259,65100,37100,30600,16650,160,2.1,6,6,32.2,1220,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1977,5,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,8.9,43,98200,1286,1339,379,728,338,404,80700,36800,45200,28950,190,2.1,7,7,32.2,1370,9,999999999,129,0.0910,0,88,999.000,999.0,99.0 +1977,5,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,8.3,40,98200,1255,1339,381,751,423,353,80700,44200,39100,24110,140,1.5,7,7,32.2,1370,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1977,5,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.8,38,98200,1154,1339,380,538,171,391,59400,18200,43600,16400,40,1.5,7,7,32.2,1370,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1977,5,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,9.4,43,98200,990,1339,388,524,187,386,57000,19800,42400,12400,180,2.6,8,8,32.2,1370,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1977,5,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,9.4,43,98200,775,1339,388,460,323,274,49100,34100,29300,6850,150,2.1,9,8,32.2,1370,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1977,5,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,8.3,40,98200,522,1339,381,291,320,167,30900,31400,18600,3560,180,3.6,8,7,32.2,7620,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1977,5,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,8.3,46,98200,250,1339,384,80,53,70,8700,4200,8000,1720,180,2.6,9,9,32.2,7620,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1977,5,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.9,52,98200,25,614,368,13,12,12,1400,600,1400,300,140,3.1,8,8,24.1,7620,9,999999999,120,0.0910,0,88,999.000,999.0,99.0 +1977,5,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.9,58,98200,0,0,346,0,0,0,0,0,0,0,120,2.6,5,5,24.1,77777,9,999999999,129,0.1620,0,88,999.000,999.0,99.0 +1977,5,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,9.4,63,98200,0,0,345,0,0,0,0,0,0,0,130,2.1,5,5,24.1,77777,9,999999999,129,0.1620,0,88,999.000,999.0,99.0 +1977,5,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,9.4,65,98300,0,0,339,0,0,0,0,0,0,0,140,2.1,5,4,24.1,77777,9,999999999,139,0.1620,0,88,999.000,999.0,99.0 +1977,5,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.3,60,98300,0,0,332,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,139,0.1620,0,88,999.000,999.0,99.0 +1977,5,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.2,58,98300,0,0,318,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1977,5,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,98300,0,0,316,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1977,5,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.8,69,98300,0,0,309,0,0,0,0,0,0,0,170,1.5,0,0,24.1,77777,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1977,5,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,98300,0,0,304,0,0,0,0,0,0,0,160,1.5,0,0,24.1,77777,9,999999999,160,0.1640,0,88,999.000,999.0,99.0 +1977,5,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.2,74,98400,0,0,301,0,0,0,0,0,0,0,0,0.0,1,0,24.1,77777,9,999999999,160,0.1640,0,88,999.000,999.0,99.0 +1977,5,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,98500,12,435,309,7,8,6,0,0,0,0,0,0.0,4,2,24.1,77777,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1977,5,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,98600,215,1339,317,84,150,61,8900,9900,7300,1160,0,0.0,10,4,24.1,77777,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1977,5,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,98700,488,1339,330,211,169,150,23000,16300,17100,3450,230,2.6,10,3,24.1,77777,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1977,5,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,9.4,63,98700,744,1339,339,471,432,231,50600,45500,25300,5500,230,4.1,8,3,24.1,77777,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1977,5,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.0,53,98700,965,1339,356,713,739,179,75400,75000,21200,5220,210,2.6,6,3,24.1,77777,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1977,5,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.0,49,98700,1137,1339,364,643,498,220,68400,50700,25200,9300,220,3.6,5,4,24.1,77777,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1977,5,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.0,44,98600,1247,1339,372,880,671,255,93600,68300,29900,16260,200,4.6,4,4,24.1,77777,9,999999999,170,0.1120,0,88,999.000,999.0,99.0 +1977,5,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,8.9,41,98500,1287,1339,377,898,534,384,96200,55800,42400,32120,290,1.5,6,6,24.1,1830,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1977,5,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,9.4,40,98500,1256,1339,384,721,408,337,77900,42700,37700,23180,240,1.5,6,6,24.1,1830,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1977,5,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,8.3,37,98400,1156,1339,379,748,525,296,81100,54900,33500,13460,340,2.6,5,5,24.1,77777,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1977,5,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,10.0,40,98300,992,1339,381,679,597,237,73400,62200,27300,7240,320,3.6,4,4,24.1,77777,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1977,5,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,9.4,39,98300,777,1339,377,523,673,133,55300,67500,16000,3090,330,3.1,3,3,24.1,77777,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1977,5,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.0,43,98200,524,1339,368,253,352,116,27000,33700,13800,2230,320,3.6,3,2,24.1,77777,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1977,5,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,9.4,44,98200,253,1339,362,114,300,58,12000,21900,7900,1050,320,2.1,3,2,24.1,77777,9,999999999,160,0.1120,0,88,999.000,999.0,99.0 +1977,5,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,8.3,46,98300,26,614,357,10,17,8,1000,600,1000,160,320,3.1,3,3,24.1,77777,9,999999999,150,0.1120,0,88,999.000,999.0,99.0 +1977,5,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.9,52,98300,0,0,346,0,0,0,0,0,0,0,340,2.6,2,2,24.1,77777,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1977,5,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,98300,0,0,335,0,0,0,0,0,0,0,320,2.6,1,1,24.1,77777,9,999999999,150,0.1640,0,88,999.000,999.0,99.0 +1977,5,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,98300,0,0,317,0,0,0,0,0,0,0,330,2.1,0,0,24.1,77777,9,999999999,139,0.1640,0,88,999.000,999.0,99.0 +1977,5,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,98300,0,0,310,0,0,0,0,0,0,0,320,2.1,0,0,24.1,77777,9,999999999,139,0.1640,0,88,999.000,999.0,99.0 +1977,5,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,98300,0,0,312,0,0,0,0,0,0,0,300,3.6,0,0,24.1,77777,9,999999999,129,0.1650,0,88,999.000,999.0,99.0 +1977,5,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,98300,0,0,309,0,0,0,0,0,0,0,300,2.6,0,0,19.3,77777,9,999999999,129,0.1650,0,88,999.000,999.0,99.0 +1977,5,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,98300,0,0,308,0,0,0,0,0,0,0,320,3.1,0,0,19.3,77777,9,999999999,120,0.1650,0,88,999.000,999.0,99.0 +1977,5,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,98300,0,0,310,0,0,0,0,0,0,0,330,2.6,0,0,19.3,77777,9,999999999,110,0.1650,0,88,999.000,999.0,99.0 +1977,5,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.1,62,98300,0,0,307,0,0,0,0,0,0,0,340,2.6,0,0,19.3,77777,9,999999999,110,0.1650,0,88,999.000,999.0,99.0 +1977,5,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,98300,13,457,302,6,4,6,0,0,0,0,330,2.6,0,0,24.1,77777,9,999999999,100,0.1700,0,88,999.000,999.0,99.0 +1977,5,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,98400,218,1338,310,90,253,49,9500,17100,6700,880,310,2.1,0,0,16.1,77777,9,999999999,100,0.1700,0,88,999.000,999.0,99.0 +1977,5,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.3,56,98400,490,1338,326,292,556,89,30400,51700,11400,1710,340,3.1,0,0,16.1,77777,9,999999999,100,0.1700,0,88,999.000,999.0,99.0 +1977,5,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,10.6,55,98400,746,1338,342,513,698,124,54200,69900,15200,2820,330,2.6,0,0,16.1,77777,9,999999999,110,0.1700,0,88,999.000,999.0,99.0 +1977,5,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,7.2,38,98400,967,1338,348,715,781,150,74200,78000,17700,3950,290,3.1,0,0,16.1,77777,9,999999999,110,0.1700,0,88,999.000,999.0,99.0 +1977,5,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.7,34,98400,1138,1338,353,879,836,168,92300,84100,20700,6600,300,3.6,0,0,24.1,77777,9,999999999,110,0.1700,0,88,999.000,999.0,99.0 +1977,5,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.1,32,98300,1248,1338,355,976,855,178,103200,86300,22600,10790,340,4.6,0,0,32.2,77777,9,999999999,120,0.1700,0,88,999.000,999.0,99.0 +1977,5,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,4.4,27,98200,1288,1338,358,1016,866,182,107800,87400,23400,14200,330,2.1,0,0,32.2,77777,9,999999999,120,0.1700,0,88,999.000,999.0,99.0 +1977,5,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,4.4,25,98200,1257,1338,363,986,859,179,104500,86700,22800,11440,330,2.6,0,0,32.2,77777,9,999999999,120,0.1700,0,88,999.000,999.0,99.0 +1977,5,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,4.4,24,98100,1157,1338,366,891,834,170,93700,83900,21000,7080,340,5.2,0,0,32.2,77777,9,999999999,129,0.1700,0,88,999.000,999.0,99.0 +1977,5,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,7.2,28,98100,993,1338,372,739,790,153,76900,79000,18100,4230,320,4.1,0,0,32.2,77777,9,999999999,129,0.1700,0,88,999.000,999.0,99.0 +1977,5,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,4.4,25,98000,778,1338,363,542,714,128,57600,71800,15700,3000,320,5.7,0,0,32.2,77777,9,999999999,129,0.1700,0,88,999.000,999.0,99.0 +1977,5,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,6.1,29,98000,527,1338,363,318,573,94,33300,54100,11900,1840,300,5.2,0,0,32.2,77777,9,999999999,139,0.1700,0,88,999.000,999.0,99.0 +1977,5,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,5.6,31,98000,256,1338,354,111,301,55,11900,22100,7600,990,310,4.1,0,0,32.2,77777,9,999999999,139,0.1700,0,88,999.000,999.0,99.0 +1977,5,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,6.1,37,98100,28,636,344,14,10,12,1400,500,1300,300,320,3.1,1,0,32.2,77777,9,999999999,139,0.1700,0,88,999.000,999.0,99.0 +1977,5,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.1,48,98100,0,0,335,0,0,0,0,0,0,0,270,3.6,2,2,32.2,77777,9,999999999,139,0.1650,0,88,999.000,999.0,99.0 +1977,5,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.2,58,98100,0,0,329,0,0,0,0,0,0,0,270,3.1,2,2,32.2,77777,9,999999999,139,0.1650,0,88,999.000,999.0,99.0 +1977,5,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.8,65,98100,0,0,319,0,0,0,0,0,0,0,290,4.1,2,1,32.2,77777,9,999999999,139,0.1650,0,88,999.000,999.0,99.0 +1977,5,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.3,67,98100,0,0,320,0,0,0,0,0,0,0,300,4.1,2,1,32.2,77777,9,999999999,139,0.1650,0,88,999.000,999.0,99.0 +1977,5,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,98000,0,0,318,0,0,0,0,0,0,0,290,4.1,2,1,32.2,77777,9,999999999,139,0.1660,0,88,999.000,999.0,99.0 +1977,5,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,98000,0,0,315,0,0,0,0,0,0,0,300,4.1,1,0,24.1,77777,9,999999999,139,0.1660,0,88,999.000,999.0,99.0 +1977,5,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,98000,0,0,308,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,139,0.1660,0,88,999.000,999.0,99.0 +1977,5,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,97900,0,0,310,0,0,0,0,0,0,0,300,4.1,0,0,19.3,77777,9,999999999,139,0.1660,0,88,999.000,999.0,99.0 +1977,5,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,9.4,80,97900,0,0,308,0,0,0,0,0,0,0,300,4.6,2,0,19.3,77777,9,999999999,139,0.1660,0,88,999.000,999.0,99.0 +1977,5,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,97900,14,457,309,7,1,6,0,0,0,0,290,2.6,8,1,19.3,77777,9,999999999,139,0.1980,0,88,999.000,999.0,99.0 +1977,5,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,98000,221,1337,324,88,114,69,9500,8100,8100,1470,310,5.7,10,3,16.1,77777,9,999999999,139,0.1980,0,88,999.000,999.0,99.0 +1977,5,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.0,70,98000,492,1337,335,281,369,145,29900,35600,16700,3000,310,4.1,10,3,16.1,77777,9,999999999,139,0.1980,0,88,999.000,999.0,99.0 +1977,5,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.1,61,98100,748,1337,355,482,470,219,50400,47700,23700,4990,310,4.6,10,4,16.1,77777,9,999999999,139,0.1980,0,88,999.000,999.0,99.0 +1977,5,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.7,53,98000,968,1337,369,672,495,314,70300,51200,33200,9450,310,5.2,10,4,16.1,77777,9,999999999,139,0.1980,0,88,999.000,999.0,99.0 +1977,5,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,10.6,43,98000,1139,1337,382,743,424,382,81200,46000,41900,15780,310,5.2,10,5,19.3,77777,9,999999999,139,0.1980,0,88,999.000,999.0,99.0 +1977,5,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,8.3,36,98000,1249,1337,389,892,425,495,96800,46100,53700,29870,310,6.2,10,7,24.1,7620,9,999999999,139,0.1980,0,88,999.000,999.0,99.0 +1977,5,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,10.0,42,97900,1289,1337,395,506,147,364,56600,15800,41400,24540,340,6.2,10,8,19.3,7620,9,999999999,139,0.1980,0,88,999.000,999.0,99.0 +1977,5,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.1,42,97900,1258,1337,423,431,41,392,47600,4200,43700,21620,270,5.2,10,10,19.3,7620,9,999999999,139,0.1980,0,88,999.000,999.0,99.0 +1977,5,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,8.9,35,97900,1158,1337,423,340,1,339,40100,100,40100,15260,300,5.7,10,10,19.3,7620,9,999999999,139,0.1980,0,88,999.000,999.0,99.0 +1977,5,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,8.9,35,97800,995,1337,423,271,9,265,31900,800,31400,12090,340,5.2,10,10,19.3,7620,9,999999999,139,0.1980,0,88,999.000,999.0,99.0 +1977,5,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,10.0,38,97800,780,1337,404,360,217,234,39600,22700,26400,6230,320,5.2,9,8,16.1,7620,9,999999999,139,0.1980,0,88,999.000,999.0,99.0 +1977,5,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,7.2,31,97800,529,1337,400,159,60,136,17600,5700,15300,3930,320,5.2,9,8,16.1,7620,9,999999999,139,0.1980,0,88,999.000,999.0,99.0 +1977,5,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.2,37,97800,259,1337,386,78,12,76,8700,400,8600,2490,300,4.6,9,8,16.1,7620,9,999999999,139,0.1980,0,88,999.000,999.0,99.0 +1977,5,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,7.2,42,97800,29,658,374,9,1,9,1100,0,1100,330,320,2.6,8,8,16.1,7620,9,999999999,139,0.1980,0,88,999.000,999.0,99.0 +1977,5,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.3,51,97900,0,0,351,0,0,0,0,0,0,0,320,3.6,5,4,16.1,77777,9,999999999,139,0.1660,0,88,999.000,999.0,99.0 +1977,5,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.9,58,97900,0,0,344,0,0,0,0,0,0,0,300,3.1,4,4,16.1,77777,9,999999999,139,0.1660,0,88,999.000,999.0,99.0 +1977,5,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,9.4,67,97800,0,0,334,0,0,0,0,0,0,0,310,3.1,5,3,16.1,77777,9,999999999,139,0.1660,0,88,999.000,999.0,99.0 +1977,5,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,97800,0,0,329,0,0,0,0,0,0,0,280,4.1,7,3,16.1,77777,9,999999999,139,0.1660,0,88,999.000,999.0,99.0 +1977,5,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,97800,0,0,327,0,0,0,0,0,0,0,300,4.1,7,3,16.1,77777,9,999999999,150,0.1670,0,88,999.000,999.0,99.0 +1977,5,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,97800,0,0,321,0,0,0,0,0,0,0,280,4.6,6,2,16.1,77777,9,999999999,150,0.1670,0,88,999.000,999.0,99.0 +1977,5,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,97800,0,0,322,0,0,0,0,0,0,0,300,4.1,6,3,12.9,77777,9,999999999,150,0.1670,0,88,999.000,999.0,99.0 +1977,5,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,97800,0,0,322,0,0,0,0,0,0,0,300,4.1,6,3,12.9,77777,9,999999999,150,0.1670,0,88,999.000,999.0,99.0 +1977,5,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,97800,0,0,322,0,0,0,0,0,0,0,290,4.1,7,4,12.9,7620,9,999999999,150,0.1670,0,88,999.000,999.0,99.0 +1977,5,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,97900,16,479,346,2,0,2,0,0,0,0,320,3.1,9,9,11.3,4270,9,999999999,150,0.2810,0,88,999.000,999.0,99.0 +1977,5,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,97900,224,1337,354,28,8,27,3100,600,3000,740,320,3.1,9,9,11.3,4270,9,999999999,150,0.2810,0,88,999.000,999.0,99.0 +1977,5,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,98000,495,1337,356,184,82,153,20100,7800,17200,4180,320,2.6,8,8,16.1,3660,9,999999999,150,0.2810,0,88,999.000,999.0,99.0 +1977,5,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,98000,749,1337,380,306,120,239,33500,12500,26500,6240,320,3.6,8,8,16.1,3660,9,999999999,160,0.2810,0,88,999.000,999.0,99.0 +1977,5,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.7,46,98000,970,1337,380,640,512,269,68100,53100,29500,8010,360,2.6,4,4,16.1,77777,9,999999999,160,0.2810,0,88,999.000,999.0,99.0 +1977,5,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,11.7,42,98000,1140,1337,370,834,705,233,88400,71600,27200,9950,20,2.6,0,0,19.3,77777,9,999999999,170,0.2810,0,88,999.000,999.0,99.0 +1977,5,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.7,39,98000,1250,1337,375,944,743,248,100600,75700,29600,16210,40,4.1,0,0,19.3,77777,9,999999999,179,0.2810,0,88,999.000,999.0,99.0 +1977,5,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,11.7,37,97900,1290,1337,381,989,763,253,105800,77800,30500,21250,90,2.1,0,0,19.3,77777,9,999999999,179,0.2810,0,88,999.000,999.0,99.0 +1977,5,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,10.6,33,97900,1259,1337,382,959,753,249,102300,76800,29800,17140,360,2.1,0,0,16.1,77777,9,999999999,189,0.2810,0,88,999.000,999.0,99.0 +1977,5,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,10.6,33,97900,1159,1337,382,861,722,235,91400,73400,27600,10650,120,2.1,0,0,16.1,77777,9,999999999,189,0.2810,0,88,999.000,999.0,99.0 +1977,5,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,10.0,31,97900,996,1337,384,711,672,211,74800,67900,24100,6400,50,3.6,0,0,16.1,77777,9,999999999,200,0.2810,0,88,999.000,999.0,99.0 +1977,5,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,8.9,29,97900,782,1337,383,512,579,174,55300,59300,20500,3980,60,3.1,0,0,16.1,77777,9,999999999,200,0.2810,0,88,999.000,999.0,99.0 +1977,5,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,9.4,32,97900,531,1337,385,279,389,125,29600,37300,14700,2430,70,3.1,1,1,19.3,77777,9,999999999,200,0.2810,0,88,999.000,999.0,99.0 +1977,5,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,8.3,30,97900,262,1337,374,99,170,66,10500,12600,8100,1240,90,1.5,0,0,19.3,77777,9,999999999,209,0.2810,0,88,999.000,999.0,99.0 +1977,5,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,9.4,39,98000,31,680,361,14,2,14,1600,0,1600,480,200,1.0,2,0,19.3,77777,9,999999999,209,0.2810,0,88,999.000,999.0,99.0 +1977,5,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,10.0,44,98000,0,0,354,0,0,0,0,0,0,0,180,1.0,1,0,16.1,77777,9,999999999,200,0.1670,0,88,999.000,999.0,99.0 +1977,5,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.6,48,98100,0,0,352,0,0,0,0,0,0,0,30,1.0,0,0,12.9,77777,9,999999999,200,0.1670,0,88,999.000,999.0,99.0 +1977,5,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,11.7,53,98200,0,0,358,0,0,0,0,0,0,0,80,2.1,3,1,12.9,77777,9,999999999,200,0.1670,0,88,999.000,999.0,99.0 +1977,5,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,98100,0,0,350,0,0,0,0,0,0,0,160,1.5,3,1,12.9,77777,9,999999999,189,0.1670,0,88,999.000,999.0,99.0 +1977,5,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.7,73,98100,0,0,334,0,0,0,0,0,0,0,300,2.6,2,1,12.9,77777,9,999999999,189,0.1690,0,88,999.000,999.0,99.0 +1977,5,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,98100,0,0,340,0,0,0,0,0,0,0,10,1.5,2,1,12.9,77777,9,999999999,189,0.1690,0,88,999.000,999.0,99.0 +1977,5,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,98100,0,0,324,0,0,0,0,0,0,0,0,0.0,2,0,11.3,77777,9,999999999,179,0.1690,0,88,999.000,999.0,99.0 +1977,5,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.2,73,98200,0,0,337,0,0,0,0,0,0,0,60,2.6,4,1,11.3,77777,9,999999999,179,0.1690,0,88,999.000,999.0,99.0 +1977,5,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,98200,0,0,332,0,0,0,0,0,0,0,40,2.1,3,1,11.3,77777,9,999999999,179,0.1690,0,88,999.000,999.0,99.0 +1977,5,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,11.1,75,98300,17,501,328,9,23,6,0,0,0,0,60,3.6,3,1,11.3,77777,9,999999999,170,0.0840,0,88,999.000,999.0,99.0 +1977,5,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.1,68,98400,226,1336,329,107,415,37,11100,29900,6000,680,80,3.6,0,0,11.3,77777,9,999999999,170,0.0840,0,88,999.000,999.0,99.0 +1977,5,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.0,73,98500,497,1336,347,316,687,61,33200,64500,9100,1270,90,4.6,0,0,11.3,77777,9,999999999,179,0.0840,0,88,999.000,999.0,99.0 +1977,5,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.2,55,98600,751,1336,352,537,808,83,57500,80700,12000,1970,90,4.6,0,0,11.3,77777,9,999999999,179,0.0840,0,88,999.000,999.0,99.0 +1977,5,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,98600,971,1336,363,729,865,99,75600,86300,12700,2570,110,5.2,0,0,11.3,77777,9,999999999,189,0.0840,0,88,999.000,999.0,99.0 +1977,5,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.9,47,98600,1141,1336,375,884,904,111,91400,90600,13800,4020,120,4.6,0,0,11.3,77777,9,999999999,189,0.0840,0,88,999.000,999.0,99.0 +1977,5,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.2,38,98600,1250,1336,398,854,681,217,92000,69900,26500,14390,120,5.7,3,3,11.3,77777,9,999999999,200,0.0840,0,88,999.000,999.0,99.0 +1977,5,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.2,37,98600,1291,1336,407,886,542,362,95600,56700,40700,31540,160,3.6,5,5,11.3,77777,9,999999999,200,0.0840,0,88,999.000,999.0,99.0 +1977,5,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.1,34,98500,1260,1336,405,850,630,256,90600,64100,30000,17740,120,4.1,5,5,11.3,77777,9,999999999,200,0.0840,0,88,999.000,999.0,99.0 +1977,5,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,11.7,33,98500,1160,1336,412,919,789,235,97600,80300,27800,10700,160,2.6,5,5,11.3,77777,9,999999999,209,0.0840,0,88,999.000,999.0,99.0 +1977,5,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,10.0,30,98400,998,1336,404,798,858,158,82800,85700,18700,4370,180,4.1,3,3,12.9,77777,9,999999999,220,0.0840,0,88,999.000,999.0,99.0 +1977,5,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,10.6,32,98400,784,1336,402,488,532,176,52600,54500,20500,4040,180,3.1,3,3,12.9,77777,9,999999999,220,0.0840,0,88,999.000,999.0,99.0 +1977,5,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,10.0,32,98400,534,1336,394,262,356,121,28000,34200,14300,2350,190,2.1,3,2,11.3,77777,9,999999999,229,0.0840,0,88,999.000,999.0,99.0 +1977,5,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,10.6,34,98400,264,1336,396,114,267,62,12000,19900,8100,1120,160,3.1,4,3,11.3,77777,9,999999999,229,0.0840,0,88,999.000,999.0,99.0 +1977,5,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,11.7,45,98400,32,679,386,11,15,9,1100,600,1100,180,130,2.6,5,5,11.3,77777,9,999999999,229,0.0840,0,88,999.000,999.0,99.0 +1977,5,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.2,50,98500,0,0,381,0,0,0,0,0,0,0,130,2.6,5,5,11.3,77777,9,999999999,229,0.1690,0,88,999.000,999.0,99.0 +1977,5,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.2,50,98500,0,0,378,0,0,0,0,0,0,0,130,2.6,7,4,11.3,7620,9,999999999,220,0.1690,0,88,999.000,999.0,99.0 +1977,5,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.2,55,98500,0,0,370,0,0,0,0,0,0,0,180,2.1,7,4,11.3,7620,9,999999999,220,0.1690,0,88,999.000,999.0,99.0 +1977,5,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,98500,0,0,364,0,0,0,0,0,0,0,150,3.1,7,5,11.3,7620,9,999999999,220,0.1690,0,88,999.000,999.0,99.0 +1977,5,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.7,63,98600,0,0,352,0,0,0,0,0,0,0,180,4.1,7,3,11.3,77777,9,999999999,220,0.1700,0,88,999.000,999.0,99.0 +1977,5,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.6,59,98500,0,0,357,0,0,0,0,0,0,0,180,3.1,8,5,11.3,7620,9,999999999,209,0.1700,0,88,999.000,999.0,99.0 +1977,5,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,98600,0,0,346,0,0,0,0,0,0,0,160,2.6,8,5,11.3,7620,9,999999999,209,0.1700,0,88,999.000,999.0,99.0 +1977,5,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.6,70,98600,0,0,343,0,0,0,0,0,0,0,160,2.6,8,5,11.3,7620,9,999999999,209,0.1700,0,88,999.000,999.0,99.0 +1977,5,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,98700,0,0,349,0,0,0,0,0,0,0,160,1.5,8,6,11.3,2740,9,999999999,200,0.1700,0,88,999.000,999.0,99.0 +1977,5,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,98700,18,501,353,9,2,8,0,0,0,0,140,2.6,8,7,19.3,2740,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1977,5,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,11.1,68,98800,229,1336,356,68,40,61,7400,3100,6900,1500,160,1.0,8,7,16.1,2740,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1977,5,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.7,61,98800,499,1336,368,161,108,121,17800,10500,13900,2800,190,3.1,8,7,12.9,2740,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1977,5,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,98800,753,1336,376,376,348,180,40200,35500,20200,4040,200,4.1,5,5,12.9,77777,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1977,5,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.3,50,98800,972,1336,366,718,821,120,76400,82900,16000,3460,180,3.1,0,0,12.9,77777,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1977,5,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,13.9,47,98800,1142,1336,375,871,861,134,89500,86200,15700,4440,190,1.5,0,0,16.1,77777,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1977,5,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.9,44,98800,1251,1336,381,970,883,142,99400,88500,16400,7380,140,2.1,0,0,16.1,77777,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1977,5,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.8,38,98700,1292,1336,411,1008,709,322,106000,71400,36800,27280,140,1.5,6,6,16.1,1830,9,999999999,200,0.1170,0,88,999.000,999.0,99.0 +1977,5,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.2,38,98700,1261,1336,404,872,587,318,95000,61500,36800,22730,160,5.7,5,5,16.1,77777,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1977,5,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,11.7,34,98600,1161,1336,410,689,411,332,73800,42900,36400,15580,210,2.1,5,5,16.1,77777,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1977,5,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.7,36,98500,999,1336,406,666,500,293,70600,51900,31700,9240,160,3.6,5,5,16.1,77777,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1977,5,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,12.2,36,98500,786,1336,414,395,323,205,43100,34300,22900,4880,130,2.6,8,6,16.1,3050,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1977,5,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.1,34,98400,536,1336,402,271,344,134,28600,33000,15300,2630,190,4.6,8,4,16.1,77777,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1977,5,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.1,38,98500,267,1336,394,103,115,80,11200,9000,9400,1720,200,3.1,9,4,16.1,77777,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1977,5,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.2,45,98500,34,701,386,17,10,16,1800,500,1800,390,180,3.6,9,4,12.9,77777,9,999999999,209,0.1170,0,88,999.000,999.0,99.0 +1977,5,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.8,47,98500,0,0,390,0,0,0,0,0,0,0,230,2.6,8,5,12.9,7620,9,999999999,209,0.1700,0,88,999.000,999.0,99.0 +1977,5,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,98500,0,0,373,0,0,0,0,0,0,0,180,3.1,8,5,12.9,7620,9,999999999,220,0.1700,0,88,999.000,999.0,99.0 +1977,5,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.2,59,98500,0,0,364,0,0,0,0,0,0,0,210,2.6,8,4,12.9,77777,9,999999999,220,0.1700,0,88,999.000,999.0,99.0 +1977,5,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.2,59,98500,0,0,364,0,0,0,0,0,0,0,240,2.6,8,4,12.9,77777,9,999999999,220,0.1700,0,88,999.000,999.0,99.0 +1977,5,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.7,65,98500,0,0,352,0,0,0,0,0,0,0,260,2.6,8,4,12.9,77777,9,999999999,220,0.1710,0,88,999.000,999.0,99.0 +1977,5,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,11.7,65,98500,0,0,350,0,0,0,0,0,0,0,260,2.1,7,3,12.9,77777,9,999999999,220,0.1710,0,88,999.000,999.0,99.0 +1977,5,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.2,70,98500,0,0,353,0,0,0,0,0,0,0,280,2.1,7,5,12.9,7620,9,999999999,220,0.1710,0,88,999.000,999.0,99.0 +1977,5,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,98500,0,0,351,0,0,0,0,0,0,0,340,2.1,9,6,12.9,7620,9,999999999,229,0.1710,0,88,999.000,999.0,99.0 +1977,5,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,98500,0,0,345,0,0,0,0,0,0,0,330,1.0,8,4,12.9,77777,9,999999999,229,0.1710,0,88,999.000,999.0,99.0 +1977,5,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,98500,19,523,338,11,17,9,0,0,0,0,220,2.6,7,3,11.3,77777,9,999999999,229,0.0780,0,88,999.000,999.0,99.0 +1977,5,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,98600,231,1335,343,108,301,56,11300,21000,7600,1010,240,1.5,6,1,12.9,77777,9,999999999,229,0.0780,0,88,999.000,999.0,99.0 +1977,5,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,98600,501,1335,362,296,570,82,31000,53500,10900,1610,230,3.1,6,1,12.9,77777,9,999999999,229,0.0780,0,88,999.000,999.0,99.0 +1977,5,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,98700,754,1335,374,506,693,114,53900,69700,14400,2640,280,3.1,6,1,12.9,77777,9,999999999,240,0.0780,0,88,999.000,999.0,99.0 +1977,5,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.3,47,98700,973,1335,379,685,720,160,73200,73600,19500,4810,270,3.1,8,1,12.9,77777,9,999999999,250,0.0780,0,88,999.000,999.0,99.0 +1977,5,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.9,44,98600,1143,1335,388,821,796,139,88100,80800,18700,5830,330,4.6,6,1,12.9,77777,9,999999999,250,0.0780,0,88,999.000,999.0,99.0 +1977,5,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.3,38,98500,1252,1335,396,932,844,139,95500,84600,16000,7330,320,3.6,4,1,11.3,77777,9,999999999,250,0.0780,0,88,999.000,999.0,99.0 +1977,5,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,12.8,37,98500,1292,1335,408,933,638,315,98200,64300,35800,26990,270,4.6,8,4,11.3,77777,9,999999999,259,0.0780,0,88,999.000,999.0,99.0 +1977,5,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.2,37,98400,1262,1335,401,884,708,214,95300,72700,26500,15190,140,3.1,7,3,11.3,77777,9,999999999,270,0.0780,0,88,999.000,999.0,99.0 +1977,5,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,11.1,32,98300,1162,1335,405,849,702,239,90100,71400,27900,10980,240,3.1,7,3,11.3,77777,9,999999999,270,0.0780,0,88,999.000,999.0,99.0 +1977,5,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,12.2,35,98300,1000,1335,410,648,461,303,68400,47900,32500,9610,250,3.1,5,4,11.3,77777,9,999999999,279,0.0780,0,88,999.000,999.0,99.0 +1977,5,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,11.7,33,98200,787,1335,406,530,626,162,55400,62400,18500,3710,310,3.6,3,3,11.3,77777,9,999999999,279,0.0780,0,88,999.000,999.0,99.0 +1977,5,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,11.7,34,98200,538,1335,403,323,533,109,33400,50300,13100,2100,280,3.6,3,3,11.3,77777,9,999999999,279,0.0780,0,88,999.000,999.0,99.0 +1977,5,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,12.2,38,98200,270,1335,413,71,9,69,7900,300,7900,2390,300,3.1,7,7,11.3,1830,9,999999999,290,0.0780,0,88,999.000,999.0,99.0 +1977,5,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,12.8,44,98300,35,723,399,13,18,11,1400,700,1300,230,30,3.1,6,6,11.3,1830,9,999999999,290,0.0780,0,88,999.000,999.0,99.0 +1977,5,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.3,55,98300,0,0,413,0,0,0,0,0,0,0,50,4.1,10,10,11.3,1830,9,999999999,279,0.1710,0,88,999.000,999.0,99.0 +1977,5,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,98300,0,0,407,0,0,0,0,0,0,0,90,3.6,10,10,11.3,7620,9,999999999,279,0.1710,0,88,999.000,999.0,99.0 +1977,5,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,98300,0,0,410,0,0,0,0,0,0,0,40,2.1,10,10,11.3,7620,9,999999999,279,0.1710,0,88,999.000,999.0,99.0 +1977,5,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.3,61,98300,0,0,404,0,0,0,0,0,0,0,340,2.1,10,10,11.3,7620,9,999999999,279,0.1710,0,88,999.000,999.0,99.0 +1977,5,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,14.4,71,98200,0,0,399,0,0,0,0,0,0,0,0,0.0,10,10,11.3,7620,9,999999999,279,0.1720,0,88,999.000,999.0,99.0 +1977,5,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,14.4,76,98200,0,0,393,0,0,0,0,0,0,0,340,2.1,10,10,11.3,7620,9,999999999,270,0.1720,0,88,999.000,999.0,99.0 +1977,5,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.0,81,98200,0,0,391,0,0,0,0,0,0,0,0,0.0,10,10,11.3,7620,9,999999999,270,0.1720,0,88,999.000,999.0,99.0 +1977,5,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,98200,0,0,382,0,0,0,0,0,0,0,0,0.0,10,10,9.7,7620,9,999999999,270,0.1720,0,88,999.000,999.0,99.0 +1977,5,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,98300,0,0,382,0,0,0,0,0,0,0,0,0.0,10,10,8.0,7620,9,999999999,270,0.1720,0,88,999.000,999.0,99.0 +1977,5,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.0,93,98300,20,545,369,11,1,11,0,0,0,0,0,0.0,9,9,4.8,7620,9,999999999,259,0.1060,0,88,999.000,999.0,99.0 +1977,5,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,14.4,76,98400,234,1335,341,107,374,42,11100,27200,6300,760,350,3.1,0,0,4.8,77777,9,999999999,259,0.1060,0,88,999.000,999.0,99.0 +1977,5,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,98400,503,1335,348,301,614,70,31900,58100,10000,1410,340,3.6,0,0,4.8,77777,9,999999999,259,0.1060,0,88,999.000,999.0,99.0 +1977,5,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,98400,756,1335,374,451,539,145,47100,53700,16700,3260,330,4.6,3,1,8.0,77777,9,999999999,259,0.1060,0,88,999.000,999.0,99.0 +1977,5,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,14.4,50,98400,975,1335,385,646,661,163,68900,67500,19500,4910,320,3.6,4,2,9.7,77777,9,999999999,259,0.1060,0,88,999.000,999.0,99.0 +1977,5,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.0,46,98400,1144,1335,398,833,756,184,86600,75700,21600,7260,340,4.1,2,2,9.7,77777,9,999999999,259,0.1060,0,88,999.000,999.0,99.0 +1977,5,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.9,40,98300,1253,1335,389,929,848,132,95400,85000,15400,7120,330,5.7,0,0,9.7,77777,9,999999999,259,0.1060,0,88,999.000,999.0,99.0 +1977,5,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,12.2,33,98300,1293,1335,393,973,865,135,100000,86800,15700,9540,10,6.2,0,0,11.3,77777,9,999999999,270,0.1060,0,88,999.000,999.0,99.0 +1977,5,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,11.7,31,98200,1262,1335,395,976,890,134,100300,89200,15700,7630,40,4.6,0,0,11.3,77777,9,999999999,270,0.1060,0,88,999.000,999.0,99.0 +1977,5,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.2,32,98100,1163,1335,409,896,861,146,95900,87300,19700,6490,20,3.6,2,2,11.3,77777,9,999999999,270,0.1060,0,88,999.000,999.0,99.0 +1977,5,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.3,35,98100,1002,1335,410,683,654,192,72300,66400,22300,5980,10,5.2,2,2,11.3,77777,9,999999999,270,0.1060,0,88,999.000,999.0,99.0 +1977,5,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,12.8,34,98000,789,1335,410,524,674,126,55700,68000,15500,3000,330,3.1,2,2,11.3,77777,9,999999999,270,0.1060,0,88,999.000,999.0,99.0 +1977,5,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.3,37,98000,540,1335,404,339,597,99,35400,56700,12500,1940,360,5.2,2,2,11.3,77777,9,999999999,270,0.1060,0,88,999.000,999.0,99.0 +1977,5,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.8,38,98100,272,1335,416,92,56,81,10100,4600,9200,1990,30,5.2,8,7,11.3,7620,9,999999999,270,0.1060,0,88,999.000,999.0,99.0 +1977,5,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.2,44,98100,37,723,387,16,23,13,1600,900,1600,270,40,4.6,6,3,11.3,77777,9,999999999,270,0.1060,0,88,999.000,999.0,99.0 +1977,5,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.7,46,98100,0,0,374,0,0,0,0,0,0,0,90,2.1,6,2,11.3,77777,9,999999999,270,0.1720,0,88,999.000,999.0,99.0 +1977,5,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.7,51,98100,0,0,365,0,0,0,0,0,0,0,110,2.6,6,2,11.3,77777,9,999999999,270,0.1720,0,88,999.000,999.0,99.0 +1977,5,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,98100,0,0,358,0,0,0,0,0,0,0,270,2.6,6,2,11.3,77777,9,999999999,270,0.1720,0,88,999.000,999.0,99.0 +1977,5,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,98100,0,0,356,0,0,0,0,0,0,0,240,2.6,6,2,9.7,77777,9,999999999,270,0.1720,0,88,999.000,999.0,99.0 +1977,5,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,98100,0,0,354,0,0,0,0,0,0,0,310,2.1,9,3,9.7,77777,9,999999999,270,0.1730,0,88,999.000,999.0,99.0 +1977,5,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,98100,0,0,348,0,0,0,0,0,0,0,300,2.1,9,3,9.7,77777,9,999999999,259,0.1730,0,88,999.000,999.0,99.0 +1977,5,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,98100,0,0,343,0,0,0,0,0,0,0,270,1.5,5,2,9.7,77777,9,999999999,259,0.1730,0,88,999.000,999.0,99.0 +1977,5,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,98100,0,0,332,0,0,0,0,0,0,0,320,2.1,3,0,9.7,77777,9,999999999,259,0.1730,0,88,999.000,999.0,99.0 +1977,5,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,98000,0,0,332,0,0,0,0,0,0,0,0,0.0,3,0,9.7,77777,9,999999999,259,0.1730,0,88,999.000,999.0,99.0 +1977,5,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.9,75,98100,20,545,355,6,0,6,0,0,0,0,0,0.0,4,4,8.0,77777,9,999999999,259,0.3210,0,88,999.000,999.0,99.0 +1977,5,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.3,73,98200,236,1334,337,84,116,64,9200,8600,7700,1370,210,2.6,0,0,4.8,77777,9,999999999,259,0.3210,0,88,999.000,999.0,99.0 +1977,5,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,98200,505,1334,348,265,364,127,27800,34400,14700,2460,0,0.0,0,0,4.0,77777,9,999999999,259,0.3210,0,88,999.000,999.0,99.0 +1977,5,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,14.4,56,98200,757,1334,365,476,514,184,50800,52400,21000,4150,110,2.6,0,0,4.8,77777,9,999999999,270,0.3210,0,88,999.000,999.0,99.0 +1977,5,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.0,50,98200,976,1334,376,682,622,226,71000,62500,25200,6550,120,3.1,0,0,8.0,77777,9,999999999,270,0.3210,0,88,999.000,999.0,99.0 +1977,5,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,14.4,44,98200,1145,1334,384,833,674,254,87700,68200,29100,11000,60,3.1,0,0,9.7,77777,9,999999999,279,0.3210,0,88,999.000,999.0,99.0 +1977,5,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,15.0,43,98200,1253,1334,398,917,690,268,97300,70100,31300,18040,60,3.6,1,1,9.7,77777,9,999999999,279,0.3210,0,88,999.000,999.0,99.0 +1977,5,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,13.9,37,98200,1294,1334,403,975,719,276,103500,73000,32500,24260,70,4.1,1,1,9.7,77777,9,999999999,279,0.3210,0,88,999.000,999.0,99.0 +1977,5,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,12.8,35,98100,1263,1334,407,879,560,348,94900,58600,39300,25510,0,0.0,2,2,11.3,77777,9,999999999,290,0.3210,0,88,999.000,999.0,99.0 +1977,5,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,12.8,36,98000,1164,1334,417,588,159,449,64300,16900,49500,19460,180,1.5,6,6,11.3,1370,9,999999999,290,0.3210,0,88,999.000,999.0,99.0 +1977,5,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.0,49,98000,1003,1334,406,742,512,357,77000,53000,37100,11560,220,4.1,6,6,11.3,1370,9,999999999,300,0.3210,0,88,999.000,999.0,99.0 +1977,5,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,12.2,42,97900,791,1334,399,360,164,263,39400,17100,29200,7060,300,4.1,6,6,11.3,1520,9,999999999,300,0.3210,0,88,999.000,999.0,99.0 +1977,5,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.9,49,98000,542,1334,430,126,0,126,14500,0,14500,5110,20,8.2,10,10,9.7,1520,9,999999999,309,0.3210,0,88,999.000,999.0,99.0 +1977,5,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,98100,275,1334,408,31,1,31,3700,0,3700,1270,30,7.7,10,10,6.4,3050,9,999999999,309,0.3210,0,88,999.000,999.0,99.0 +1977,5,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,98100,38,745,405,7,0,7,800,0,800,270,30,5.2,10,10,8.0,3050,9,999999999,309,0.3210,0,88,999.000,999.0,99.0 +1977,5,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,98100,0,0,404,0,0,0,0,0,0,0,10,3.6,10,10,9.7,3050,9,999999999,320,0.1730,0,88,999.000,999.0,99.0 +1977,5,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,98200,0,0,404,0,0,0,0,0,0,0,40,5.2,10,10,9.7,3050,9,999999999,320,0.1730,0,88,999.000,999.0,99.0 +1977,5,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.9,73,98200,0,0,393,0,0,0,0,0,0,0,80,5.2,10,10,9.7,3050,9,999999999,320,0.1730,0,88,999.000,999.0,99.0 +1977,5,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,14.4,78,98200,0,0,390,0,0,0,0,0,0,0,120,2.6,10,10,9.7,7620,9,999999999,320,0.1730,0,88,999.000,999.0,99.0 +1977,5,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.4,84,98200,0,0,374,0,0,0,0,0,0,0,90,3.1,9,9,9.7,7620,9,999999999,329,0.1740,0,88,999.000,999.0,99.0 +1977,5,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,98200,0,0,382,0,0,0,0,0,0,0,60,4.1,10,10,9.7,3050,9,999999999,329,0.1740,0,88,999.000,999.0,99.0 +1977,5,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,14.4,90,98100,0,0,368,0,0,0,0,0,0,0,80,5.2,9,9,9.7,3050,9,999999999,329,0.1740,0,88,999.000,999.0,99.0 +1977,5,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.0,93,98100,0,0,379,0,0,0,0,0,0,0,80,4.1,10,10,9.7,7620,9,999999999,329,0.1740,0,88,999.000,999.0,99.0 +1977,5,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.0,93,98200,0,0,361,0,0,0,0,0,0,0,70,4.1,9,8,8.0,7620,9,999999999,329,0.1740,0,88,999.000,999.0,99.0 +1977,5,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.0,93,98300,21,567,348,11,13,10,0,0,0,0,70,4.1,5,5,6.4,77777,9,999999999,340,0.0890,0,88,999.000,999.0,99.0 +1977,5,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,98300,238,1334,338,109,303,55,11400,21500,7600,990,70,4.6,5,1,6.4,77777,9,999999999,340,0.0890,0,88,999.000,999.0,99.0 +1977,5,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,98400,506,1334,339,317,667,64,33200,62800,9300,1320,90,4.6,0,0,6.4,77777,9,999999999,340,0.0890,0,88,999.000,999.0,99.0 +1977,5,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.7,81,98400,758,1334,391,425,329,237,45600,34700,25800,5710,90,5.2,9,9,6.4,3050,9,999999999,340,0.0890,0,88,999.000,999.0,99.0 +1977,5,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,98400,976,1334,382,567,339,319,61500,36600,34700,9720,100,4.6,8,6,6.4,3050,9,999999999,340,0.0890,0,88,999.000,999.0,99.0 +1977,5,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,98400,1145,1334,377,865,830,151,91900,84000,19700,6300,90,6.2,2,2,6.4,77777,9,999999999,340,0.0890,0,88,999.000,999.0,99.0 +1977,5,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,98300,1254,1334,400,880,678,242,94100,69200,28800,16480,100,6.7,5,5,6.4,77777,9,999999999,340,0.0890,0,88,999.000,999.0,99.0 +1977,5,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.2,58,98300,1294,1334,402,864,577,303,91200,58300,34500,26760,90,7.2,5,5,6.4,77777,9,999999999,329,0.0890,0,88,999.000,999.0,99.0 +1977,5,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,98300,1264,1334,396,842,608,265,89500,61800,30800,19030,130,5.2,4,4,8.0,77777,9,999999999,329,0.0890,0,88,999.000,999.0,99.0 +1977,5,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,98300,1165,1334,401,897,718,269,94300,72500,30800,12410,100,5.2,5,5,9.7,77777,9,999999999,329,0.0890,0,88,999.000,999.0,99.0 +1977,5,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,98200,1004,1334,403,539,405,235,58500,42200,26700,7380,110,6.2,5,5,9.7,77777,9,999999999,329,0.0890,0,88,999.000,999.0,99.0 +1977,5,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,98200,792,1334,401,470,481,185,50500,49300,21200,4300,130,7.7,4,4,9.7,77777,9,999999999,329,0.0890,0,88,999.000,999.0,99.0 +1977,5,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,98200,544,1334,388,321,519,110,33300,49100,13200,2130,130,6.2,2,2,9.7,77777,9,999999999,329,0.0890,0,88,999.000,999.0,99.0 +1977,5,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,98200,278,1334,379,126,340,57,13500,26000,8100,1020,120,5.7,3,2,9.7,77777,9,999999999,329,0.0890,0,88,999.000,999.0,99.0 +1977,5,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,98300,40,767,375,19,41,14,1800,1300,1700,240,100,4.1,3,3,9.7,77777,9,999999999,329,0.0890,0,88,999.000,999.0,99.0 +1977,5,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,98300,0,0,368,0,0,0,0,0,0,0,120,3.6,3,3,8.0,77777,9,999999999,329,0.1740,0,88,999.000,999.0,99.0 +1977,5,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,98400,0,0,383,0,0,0,0,0,0,0,120,3.6,7,7,8.0,1830,9,999999999,329,0.1740,0,88,999.000,999.0,99.0 +1977,5,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,98400,0,0,386,0,0,0,0,0,0,0,100,4.1,8,8,8.0,1830,9,999999999,320,0.1740,0,88,999.000,999.0,99.0 +1977,5,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,98400,0,0,380,0,0,0,0,0,0,0,90,4.1,7,7,8.0,910,9,999999999,320,0.1740,0,88,999.000,999.0,99.0 +1977,5,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.7,81,98300,0,0,391,0,0,0,0,0,0,0,90,4.1,9,9,8.0,7620,9,999999999,320,0.1760,0,88,999.000,999.0,99.0 +1977,5,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,98300,0,0,385,0,0,0,0,0,0,0,100,2.6,9,9,8.0,7620,9,999999999,320,0.1760,0,88,999.000,999.0,99.0 +1977,5,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,98300,0,0,371,0,0,0,0,0,0,0,100,4.1,8,8,8.0,7620,9,999999999,320,0.1760,0,88,999.000,999.0,99.0 +1977,5,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,98400,0,0,386,0,0,0,0,0,0,0,110,2.6,10,10,8.0,460,9,999999999,320,0.1760,0,88,999.000,999.0,99.0 +1977,5,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,98400,0,0,376,0,0,0,0,0,0,0,120,2.6,9,9,6.4,210,9,999999999,309,0.1760,0,88,999.000,999.0,99.0 +1977,5,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,98500,22,567,384,6,0,6,0,0,0,0,120,3.6,10,10,0.8,150,9,999999999,309,0.1750,0,88,999.000,999.0,99.0 +1977,5,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,17.2,100,98500,240,1333,388,56,3,56,6400,100,6300,1970,120,4.1,10,10,0.8,30,9,999999999,309,0.1750,0,88,999.000,999.0,99.0 +1977,5,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,98500,508,1333,378,205,119,160,22300,11600,17900,3710,120,3.6,8,8,1.6,150,9,999999999,309,0.1750,0,88,999.000,999.0,99.0 +1977,5,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,98600,760,1333,371,515,583,182,55000,59500,21000,4110,110,2.1,4,4,4.0,77777,9,999999999,309,0.1750,0,88,999.000,999.0,99.0 +1977,5,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,98600,977,1333,382,626,486,269,66600,50500,29500,8140,100,2.6,4,4,4.0,77777,9,999999999,309,0.1750,0,88,999.000,999.0,99.0 +1977,5,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,98600,1146,1333,389,802,632,258,84400,63900,29300,11240,140,2.6,4,4,6.4,77777,9,999999999,309,0.1750,0,88,999.000,999.0,99.0 +1977,5,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.7,60,98600,1254,1333,392,928,702,266,98400,71300,31200,18120,140,2.6,4,4,8.0,77777,9,999999999,309,0.1750,0,88,999.000,999.0,99.0 +1977,5,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,98500,1295,1333,400,1012,740,292,107100,75000,34100,26060,140,3.6,5,5,8.0,77777,9,999999999,320,0.1750,0,88,999.000,999.0,99.0 +1977,5,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,98500,1265,1333,397,891,600,321,93400,60300,36000,22950,140,3.6,3,3,8.0,77777,9,999999999,320,0.1750,0,88,999.000,999.0,99.0 +1977,5,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.0,47,98400,1166,1333,413,451,170,302,50600,18300,34600,13170,110,4.6,9,7,9.7,7620,9,999999999,320,0.1750,0,88,999.000,999.0,99.0 +1977,5,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.3,42,98400,1005,1333,406,691,506,309,72800,52500,33100,9940,160,4.6,8,6,11.3,7620,9,999999999,320,0.1750,0,88,999.000,999.0,99.0 +1977,5,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,98400,794,1333,398,335,154,243,36800,16100,27100,6540,300,6.7,9,8,11.3,7620,9,999999999,320,0.1750,0,88,999.000,999.0,99.0 +1977,5,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,98500,547,1333,389,197,66,170,21600,6400,19000,4780,350,7.7,9,8,11.3,7620,9,999999999,320,0.1750,0,88,999.000,999.0,99.0 +1977,5,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,98500,280,1333,407,34,4,34,4100,100,4100,1380,30,5.7,10,10,11.3,7620,9,999999999,320,0.1750,0,88,999.000,999.0,99.0 +1977,5,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,98400,41,789,390,16,0,16,1800,0,1800,550,360,4.1,10,9,14.5,1830,9,999999999,320,0.1750,0,88,999.000,999.0,99.0 +1977,5,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.1,78,98400,0,0,401,0,0,0,0,0,0,0,30,4.6,10,10,12.9,7620,9,999999999,320,0.1760,0,88,999.000,999.0,99.0 +1977,5,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.1,84,98500,0,0,357,0,0,0,0,0,0,0,40,4.1,6,3,11.3,77777,9,999999999,320,0.1760,0,88,999.000,999.0,99.0 +1977,5,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,98500,0,0,357,0,0,0,0,0,0,0,50,4.1,8,4,12.9,77777,9,999999999,309,0.1760,0,88,999.000,999.0,99.0 +1977,5,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,98400,0,0,357,0,0,0,0,0,0,0,60,5.2,8,4,12.9,77777,9,999999999,309,0.1760,0,88,999.000,999.0,99.0 +1977,5,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,98400,0,0,346,0,0,0,0,0,0,0,90,4.1,6,2,12.9,77777,9,999999999,309,0.1770,0,88,999.000,999.0,99.0 +1977,5,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.6,93,98400,0,0,343,0,0,0,0,0,0,0,60,4.1,6,2,9.7,77777,9,999999999,309,0.1770,0,88,999.000,999.0,99.0 +1977,5,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.6,93,98400,0,0,343,0,0,0,0,0,0,0,70,5.7,6,2,9.7,77777,9,999999999,309,0.1770,0,88,999.000,999.0,99.0 +1977,5,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.6,93,98500,0,0,343,0,0,0,0,0,0,0,70,3.6,6,2,8.0,77777,9,999999999,300,0.1770,0,88,999.000,999.0,99.0 +1977,5,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,98500,0,0,386,0,0,0,0,0,0,0,80,4.1,10,10,8.0,400,9,999999999,300,0.1770,0,88,999.000,999.0,99.0 +1977,5,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,98600,23,589,358,10,6,9,1000,300,1000,230,70,4.6,7,6,4.8,7620,9,999999999,300,0.1260,0,88,999.000,999.0,99.0 +1977,5,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,98600,242,1332,368,78,54,68,8500,4300,7700,1670,70,3.6,8,7,3.2,3050,9,999999999,300,0.1260,0,88,999.000,999.0,99.0 +1977,5,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,98700,509,1332,370,206,183,136,22600,17900,15800,3160,80,5.2,7,6,3.2,3660,9,999999999,300,0.1260,0,88,999.000,999.0,99.0 +1977,5,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,98700,761,1332,384,404,302,231,43500,31900,25200,5550,70,4.1,8,7,3.2,3660,9,999999999,290,0.1260,0,88,999.000,999.0,99.0 +1977,5,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,98700,978,1332,390,468,162,348,51100,17200,38500,11080,90,5.2,8,8,3.2,580,9,999999999,290,0.1260,0,88,999.000,999.0,99.0 +1977,5,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,98600,1147,1332,402,654,386,321,70000,40300,35300,14490,50,4.6,8,8,4.0,700,9,999999999,290,0.1260,0,88,999.000,999.0,99.0 +1977,5,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,98500,1255,1332,399,731,386,367,78400,40400,40300,25910,60,5.7,5,5,4.0,77777,9,999999999,279,0.1260,0,88,999.000,999.0,99.0 +1977,5,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,98500,1295,1332,397,996,790,227,107400,81000,28400,20650,120,5.2,4,4,4.0,77777,9,999999999,279,0.1260,0,88,999.000,999.0,99.0 +1977,5,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,98400,1265,1332,387,865,534,357,93100,55900,40000,26750,130,3.1,5,5,8.0,77777,9,999999999,279,0.1260,0,88,999.000,999.0,99.0 +1977,5,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.7,53,98300,1167,1332,422,442,229,241,50100,25000,28200,10370,90,5.2,9,8,12.9,1220,9,999999999,270,0.1260,0,88,999.000,999.0,99.0 +1977,5,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,98200,1007,1332,428,418,176,285,46400,18800,32200,9400,60,6.2,10,9,12.9,980,9,999999999,270,0.1260,0,88,999.000,999.0,99.0 +1977,5,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,98200,796,1332,409,519,539,197,55400,55200,22300,4620,90,7.2,7,6,19.3,7620,9,999999999,270,0.1260,0,88,999.000,999.0,99.0 +1977,5,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,13.9,50,98200,549,1332,392,298,317,169,31800,31500,18800,3610,90,6.7,7,5,24.1,7620,9,999999999,259,0.1260,0,88,999.000,999.0,99.0 +1977,5,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,98200,283,1332,382,81,43,72,8900,3600,8100,1840,110,3.6,5,4,24.1,77777,9,999999999,259,0.1260,0,88,999.000,999.0,99.0 +1977,5,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,98300,43,788,368,14,17,13,1600,700,1500,270,100,3.6,6,3,24.1,77777,9,999999999,270,0.1260,0,88,999.000,999.0,99.0 +1977,5,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,98400,0,0,382,0,0,0,0,0,0,0,120,5.2,8,7,24.1,1160,9,999999999,270,0.1770,0,88,999.000,999.0,99.0 +1977,5,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,98400,0,0,392,0,0,0,0,0,0,0,110,5.2,10,9,24.1,2740,9,999999999,279,0.1770,0,88,999.000,999.0,99.0 +1977,5,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.9,68,98400,0,0,374,0,0,0,0,0,0,0,110,5.2,8,7,24.1,2740,9,999999999,290,0.1770,0,88,999.000,999.0,99.0 +1977,5,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.9,68,98400,0,0,374,0,0,0,0,0,0,0,90,5.2,7,7,24.1,2440,9,999999999,290,0.1770,0,88,999.000,999.0,99.0 +1977,5,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,98300,0,0,351,0,0,0,0,0,0,0,70,4.1,7,3,24.1,77777,9,999999999,300,0.1780,0,88,999.000,999.0,99.0 +1977,5,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,14.4,78,98300,0,0,390,0,0,0,0,0,0,0,60,4.1,10,10,16.1,9140,9,999999999,309,0.1780,0,88,999.000,999.0,99.0 +1977,5,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,14.4,78,98300,0,0,390,0,0,0,0,0,0,0,50,5.2,10,10,16.1,9140,9,999999999,309,0.1780,0,88,999.000,999.0,99.0 +1977,5,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.0,84,98300,0,0,388,0,0,0,0,0,0,0,50,5.2,10,10,12.9,9140,9,999999999,320,0.1780,0,88,999.000,999.0,99.0 +1977,5,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,98300,0,0,364,0,0,0,0,0,0,0,60,5.7,8,7,12.9,9140,9,999999999,329,0.1780,0,88,999.000,999.0,99.0 +1977,5,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,98300,24,610,392,7,0,7,800,0,800,260,50,5.2,10,10,16.1,4270,9,999999999,329,0.1690,0,88,999.000,999.0,99.0 +1977,5,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,98400,244,1332,384,67,13,64,7400,400,7300,2170,50,4.6,10,9,16.1,2440,9,999999999,340,0.1690,0,88,999.000,999.0,99.0 +1977,5,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.0,78,98400,511,1332,394,77,35,63,8500,3300,7200,1980,80,6.7,10,10,11.3,580,9,999999999,340,0.1690,0,88,999.000,999.0,99.0 +1977,5,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,98400,762,1332,386,142,6,139,17000,400,16700,6460,20,5.7,10,10,8.0,2440,9,999999999,340,0.1690,0,88,999.000,999.0,99.0 +1977,5,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,98400,979,1332,392,342,6,337,39300,600,38900,14190,20,5.2,10,10,11.3,2440,9,999999999,340,0.1690,0,88,999.000,999.0,99.0 +1977,5,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,98400,1147,1332,392,221,8,214,27000,600,26500,10650,30,5.2,10,10,4.8,760,9,999999999,340,0.1690,0,88,999.000,999.0,99.0 +1977,5,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,98400,1255,1332,396,247,3,244,30300,200,30100,12060,360,5.2,10,10,4.8,850,9,999999999,340,0.1690,0,88,999.000,999.0,99.0 +1977,5,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,98300,1296,1332,396,299,8,291,36400,700,35700,13990,30,5.2,10,10,8.0,850,9,999999999,350,0.1690,0,88,999.000,999.0,99.0 +1977,5,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,98300,1266,1332,396,244,6,238,30000,500,29600,11830,50,5.2,10,10,3.2,370,9,999999999,350,0.1690,0,88,999.000,999.0,99.0 +1977,5,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.2,93,98300,1168,1332,394,257,0,257,31100,0,31100,12410,40,6.7,10,10,3.2,910,9,999999999,350,0.1690,0,88,999.000,999.0,99.0 +1977,5,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.2,93,98200,1008,1332,394,219,3,217,26200,200,26100,10440,10,5.7,10,10,3.2,880,9,999999999,350,0.1690,0,88,999.000,999.0,99.0 +1977,5,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,98200,797,1332,400,265,1,265,30200,100,30200,10690,20,5.7,10,10,9.7,2440,9,999999999,350,0.1690,0,88,999.000,999.0,99.0 +1977,5,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,98100,551,1332,399,156,1,156,17700,100,17700,6000,60,5.7,10,10,11.3,820,9,999999999,350,0.1690,0,88,999.000,999.0,99.0 +1977,5,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,98100,285,1332,399,68,0,68,7700,0,7700,2430,50,4.1,10,10,12.9,850,9,999999999,350,0.1690,0,88,999.000,999.0,99.0 +1977,5,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,98100,44,810,399,16,0,16,1800,0,1800,560,60,6.2,10,10,11.3,700,9,999999999,350,0.1690,0,88,999.000,999.0,99.0 +1977,5,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,98100,0,0,396,0,0,0,0,0,0,0,60,5.2,10,10,9.7,550,9,999999999,350,0.1780,0,88,999.000,999.0,99.0 +1977,5,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,98100,0,0,393,0,0,0,0,0,0,0,80,6.2,10,10,9.7,400,9,999999999,350,0.1780,0,88,999.000,999.0,99.0 +1977,5,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,98100,0,0,390,0,0,0,0,0,0,0,70,6.2,10,10,9.7,310,9,999999999,350,0.1780,0,88,999.000,999.0,99.0 +1977,5,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,98100,0,0,386,0,0,0,0,0,0,0,70,6.2,10,10,9.7,370,9,999999999,350,0.1780,0,88,999.000,999.0,99.0 +1977,5,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.6,93,98100,0,0,383,0,0,0,0,0,0,0,70,4.1,10,10,9.7,370,9,999999999,350,0.1790,0,88,999.000,999.0,99.0 +1977,5,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.7,97,98000,0,0,387,0,0,0,0,0,0,0,50,6.2,10,10,6.4,270,9,999999999,359,0.1790,0,88,999.000,999.0,99.0 +1977,5,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,98000,0,0,384,0,0,0,0,0,0,0,20,3.6,10,10,8.0,120,9,999999999,359,0.1790,0,88,999.000,999.0,99.0 +1977,5,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,98000,0,0,384,0,0,0,0,0,0,0,50,4.1,10,10,12.9,180,9,999999999,359,0.1790,0,88,999.000,999.0,99.0 +1977,5,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,98000,0,0,384,0,0,0,0,0,0,0,50,5.2,10,10,16.1,310,9,999999999,359,0.1790,0,88,999.000,999.0,99.0 +1977,5,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,97900,25,610,384,12,0,12,1400,0,1400,420,20,5.2,10,10,12.9,370,9,999999999,359,0.0840,0,88,999.000,999.0,99.0 +1977,5,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,98000,245,1331,386,74,0,74,8200,0,8200,2390,10,4.1,10,10,12.9,270,9,999999999,359,0.0840,0,88,999.000,999.0,99.0 +1977,5,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,98000,512,1331,390,161,0,161,18000,0,18000,5860,40,4.1,10,10,19.3,310,9,999999999,359,0.0840,0,88,999.000,999.0,99.0 +1977,5,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,98000,763,1331,392,284,1,283,31900,100,31900,10780,60,5.2,10,10,24.1,310,9,999999999,350,0.0840,0,88,999.000,999.0,99.0 +1977,5,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.7,81,98000,979,1331,402,333,0,333,38400,0,38400,14090,30,2.6,10,10,19.3,760,9,999999999,350,0.0840,0,88,999.000,999.0,99.0 +1977,5,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,98000,1148,1331,403,397,1,397,46400,100,46300,16950,40,3.6,10,10,19.3,340,9,999999999,340,0.0840,0,88,999.000,999.0,99.0 +1977,5,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,97900,1256,1331,403,442,1,441,51900,100,51800,18730,70,2.6,10,10,19.3,400,9,999999999,340,0.0840,0,88,999.000,999.0,99.0 +1977,5,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,97900,1296,1331,407,451,2,450,53200,200,53100,19190,90,3.1,10,10,19.3,400,9,999999999,329,0.0840,0,88,999.000,999.0,99.0 +1977,5,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,97800,1266,1331,404,468,1,467,54700,100,54700,19470,40,2.6,10,10,19.3,400,9,999999999,329,0.0840,0,88,999.000,999.0,99.0 +1977,5,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,97700,1169,1331,407,412,1,411,48000,100,47900,17450,90,2.1,10,10,19.3,400,9,999999999,329,0.0840,0,88,999.000,999.0,99.0 +1977,5,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,97600,1009,1331,410,358,0,358,41200,0,41200,15000,360,2.1,10,10,19.3,400,9,999999999,320,0.0840,0,88,999.000,999.0,99.0 +1977,5,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,97600,799,1331,410,270,1,270,30800,100,30700,10830,60,5.2,10,10,19.3,610,9,999999999,320,0.0840,0,88,999.000,999.0,99.0 +1977,5,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,97600,553,1331,410,176,1,176,19800,100,19800,6500,60,4.1,10,10,19.3,610,9,999999999,309,0.0840,0,88,999.000,999.0,99.0 +1977,5,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,97600,288,1331,407,87,1,87,9600,0,9600,2860,100,3.6,10,10,19.3,980,9,999999999,309,0.0840,0,88,999.000,999.0,99.0 +1977,5,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,97600,46,832,404,17,0,17,1900,0,1900,580,100,3.1,10,10,19.3,700,9,999999999,309,0.0840,0,88,999.000,999.0,99.0 +1977,5,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,97600,0,0,372,0,0,0,0,0,0,0,70,2.1,7,7,19.3,1830,9,999999999,309,0.1790,0,88,999.000,999.0,99.0 +1977,5,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,97600,0,0,386,0,0,0,0,0,0,0,70,3.6,9,9,19.3,980,9,999999999,320,0.1790,0,88,999.000,999.0,99.0 +1977,5,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,97600,0,0,404,0,0,0,0,0,0,0,60,4.1,10,10,8.0,980,9,999999999,320,0.1790,0,88,999.000,999.0,99.0 +1977,5,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.8,90,97600,0,0,381,0,0,0,0,0,0,0,70,3.6,8,8,11.3,1160,9,999999999,320,0.1790,0,88,999.000,999.0,99.0 +1977,5,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,18.3,93,97600,0,0,382,0,0,0,0,0,0,0,130,1.5,8,8,11.3,1160,9,999999999,320,0.1800,0,88,999.000,999.0,99.0 +1977,5,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.8,97,97500,0,0,394,0,0,0,0,0,0,0,0,0.0,10,10,9.7,1220,9,999999999,320,0.1800,0,88,999.000,999.0,99.0 +1977,5,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.8,97,97500,0,0,394,0,0,0,0,0,0,0,0,0.0,10,10,8.0,550,9,999999999,320,0.1800,0,88,999.000,999.0,99.0 +1977,5,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.8,97,97400,0,0,394,0,0,0,0,0,0,0,340,1.5,10,10,8.0,430,9,999999999,329,0.1800,0,88,999.000,999.0,99.0 +1977,5,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,18.3,97,97500,0,0,398,0,0,0,0,0,0,0,10,2.6,10,10,8.0,980,9,999999999,329,0.1800,0,88,999.000,999.0,99.0 +1977,5,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,18.3,97,97500,26,610,398,12,0,12,1400,0,1400,420,330,1.5,10,10,6.4,460,9,999999999,329,0.3450,0,88,999.000,999.0,99.0 +1977,5,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,97500,247,1331,404,66,0,66,7300,0,7300,2230,30,3.1,10,10,6.4,1160,9,999999999,329,0.3450,0,88,999.000,999.0,99.0 +1977,5,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,97600,513,1331,404,148,1,148,16700,100,16700,5560,60,4.1,10,10,6.4,310,9,999999999,329,0.3450,0,88,999.000,999.0,99.0 +1977,5,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,97600,763,1331,408,242,1,242,27700,100,27600,9810,50,3.1,10,10,6.4,310,9,999999999,340,0.3450,0,88,999.000,999.0,99.0 +1977,5,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,97500,980,1331,413,364,82,303,40100,8400,33900,11340,90,4.1,9,9,8.0,460,9,999999999,340,0.3450,0,88,999.000,999.0,99.0 +1977,5,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,97600,1148,1331,420,336,9,328,39700,800,39000,14890,90,2.6,10,10,11.3,760,9,999999999,350,0.3450,0,88,999.000,999.0,99.0 +1977,5,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,97500,1256,1331,399,661,230,444,73000,24500,49800,26060,80,4.1,9,7,11.3,910,9,999999999,350,0.3450,0,88,999.000,999.0,99.0 +1977,5,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,97400,1297,1331,401,886,448,450,93700,46700,48100,43160,30,2.1,7,6,16.1,7620,9,999999999,350,0.3450,0,88,999.000,999.0,99.0 +1977,5,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,97300,1267,1331,423,526,104,427,58300,11100,47600,26380,80,2.6,9,9,19.3,7620,9,999999999,359,0.3450,0,88,999.000,999.0,99.0 +1977,5,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,97300,1169,1331,430,509,87,432,56100,9000,48200,19540,40,2.1,9,9,19.3,7620,9,999999999,359,0.3450,0,88,999.000,999.0,99.0 +1977,5,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,97200,1010,1331,439,470,67,419,51700,6900,46400,15190,120,2.1,9,9,19.3,7620,9,999999999,370,0.3450,0,88,999.000,999.0,99.0 +1977,5,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,97200,801,1331,434,110,10,104,13500,700,13100,5140,90,4.1,10,10,19.3,1220,9,999999999,370,0.3450,0,88,999.000,999.0,99.0 +1977,5,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,97300,555,1331,404,96,5,94,11300,300,11200,4100,360,5.2,10,10,8.0,1220,9,999999999,379,0.3450,0,88,999.000,999.0,99.0 +1977,5,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.8,93,97300,290,1331,398,44,2,44,5200,100,5200,1740,60,5.2,10,10,6.4,910,9,999999999,379,0.3450,0,88,999.000,999.0,99.0 +1977,5,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.8,97,97400,48,832,394,8,0,8,1000,0,1000,310,80,3.6,10,10,8.0,1220,9,999999999,379,0.3450,0,88,999.000,999.0,99.0 +1977,5,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.8,97,97400,0,0,394,0,0,0,0,0,0,0,100,5.2,10,10,8.0,520,9,999999999,370,0.1800,0,88,999.000,999.0,99.0 +1977,5,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.8,97,97400,0,0,394,0,0,0,0,0,0,0,120,3.6,10,10,9.7,150,9,999999999,370,0.1800,0,88,999.000,999.0,99.0 +1977,5,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.7,97,97400,0,0,358,0,0,0,0,0,0,0,90,4.1,8,6,9.7,1830,9,999999999,359,0.1800,0,88,999.000,999.0,99.0 +1977,5,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.7,97,97400,0,0,387,0,0,0,0,0,0,0,90,6.2,10,10,8.0,150,9,999999999,359,0.1800,0,88,999.000,999.0,99.0 +1977,5,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,17.2,100,97400,0,0,388,0,0,0,0,0,0,0,80,6.2,10,10,6.4,90,9,999999999,350,0.1810,0,88,999.000,999.0,99.0 +1977,5,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,17.2,100,97400,0,0,388,0,0,0,0,0,0,0,70,6.7,10,10,8.0,90,9,999999999,350,0.1810,0,88,999.000,999.0,99.0 +1977,5,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,17.2,100,97400,0,0,388,0,0,0,0,0,0,0,80,4.6,10,10,3.2,90,9,999999999,350,0.1810,0,88,999.000,999.0,99.0 +1977,5,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.8,100,97500,0,0,392,0,0,0,0,0,0,0,90,5.2,10,10,8.0,90,9,999999999,340,0.1810,0,88,999.000,999.0,99.0 +1977,5,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,17.2,100,97500,0,0,388,0,0,0,0,0,0,0,90,5.2,10,10,6.4,120,9,999999999,340,0.1810,0,88,999.000,999.0,99.0 +1977,5,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,97500,27,632,391,7,0,7,800,0,800,270,80,4.6,10,10,6.4,120,9,999999999,329,0.0810,0,88,999.000,999.0,99.0 +1977,5,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,97500,248,1331,391,57,4,56,6400,100,6400,1990,80,4.1,10,10,2.4,60,9,999999999,329,0.0810,0,88,999.000,999.0,99.0 +1977,5,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,97600,514,1331,391,170,2,169,18900,200,18900,6060,120,3.6,10,10,4.0,120,9,999999999,329,0.0810,0,88,999.000,999.0,99.0 +1977,5,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.2,93,97600,764,1331,394,297,1,296,33300,100,33200,11080,90,4.1,10,10,9.7,210,9,999999999,329,0.0810,0,88,999.000,999.0,99.0 +1977,5,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,97600,981,1331,400,390,0,390,44400,0,44400,15510,90,3.6,10,10,11.3,400,9,999999999,320,0.0810,0,88,999.000,999.0,99.0 +1977,5,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,97600,1148,1331,403,419,1,418,48600,100,48500,17520,140,2.6,10,10,12.9,430,9,999999999,320,0.0810,0,88,999.000,999.0,99.0 +1977,5,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,97500,1256,1331,398,594,116,485,65300,12300,53600,28560,160,4.1,10,9,24.1,580,9,999999999,320,0.0810,0,88,999.000,999.0,99.0 +1977,5,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,97500,1297,1331,395,857,527,343,93100,55200,39200,32890,160,3.6,8,7,24.1,3050,9,999999999,320,0.0810,0,88,999.000,999.0,99.0 +1977,5,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,97400,1268,1331,407,655,139,523,71700,14800,57600,32480,100,2.1,8,8,24.1,3050,9,999999999,309,0.0810,0,88,999.000,999.0,99.0 +1977,5,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.7,60,97400,1170,1331,418,457,141,332,50900,15100,37600,14710,0,0.0,9,9,24.1,3050,9,999999999,309,0.0810,0,88,999.000,999.0,99.0 +1977,5,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.7,58,97300,1011,1331,422,590,255,397,64300,27000,43800,13200,0,0.0,9,9,24.1,3660,9,999999999,309,0.0810,0,88,999.000,999.0,99.0 +1977,5,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,97300,802,1331,389,434,473,150,47800,48700,18400,3470,90,3.6,5,5,24.1,77777,9,999999999,300,0.0810,0,88,999.000,999.0,99.0 +1977,5,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,97200,557,1331,384,236,218,145,25500,21800,16300,3000,80,3.6,5,5,24.1,77777,9,999999999,300,0.0810,0,88,999.000,999.0,99.0 +1977,5,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,97300,292,1331,384,104,179,66,11300,14100,8200,1220,100,5.2,5,5,24.1,77777,9,999999999,300,0.0810,0,88,999.000,999.0,99.0 +1977,5,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,97300,49,854,378,20,22,17,2000,1000,2000,350,100,3.6,5,5,24.1,77777,9,999999999,300,0.0810,0,88,999.000,999.0,99.0 +1977,5,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,97300,0,0,376,0,0,0,0,0,0,0,110,3.6,5,5,24.1,77777,9,999999999,300,0.1810,0,88,999.000,999.0,99.0 +1977,5,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,97300,0,0,368,0,0,0,0,0,0,0,120,2.1,4,4,24.1,77777,9,999999999,300,0.1810,0,88,999.000,999.0,99.0 +1977,5,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,97300,0,0,346,0,0,0,0,0,0,0,90,3.6,2,0,32.2,77777,9,999999999,309,0.1810,0,88,999.000,999.0,99.0 +1977,5,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,97300,0,0,340,0,0,0,0,0,0,0,150,1.5,0,0,32.2,77777,9,999999999,309,0.1810,0,88,999.000,999.0,99.0 +1977,5,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,97300,0,0,340,0,0,0,0,0,0,0,100,2.1,2,0,32.2,77777,9,999999999,309,0.1820,0,88,999.000,999.0,99.0 +1977,5,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,97300,0,0,344,0,0,0,0,0,0,0,70,2.1,3,1,24.1,77777,9,999999999,309,0.1820,0,88,999.000,999.0,99.0 +1977,5,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,97300,0,0,335,0,0,0,0,0,0,0,60,2.6,1,0,24.1,77777,9,999999999,309,0.1820,0,88,999.000,999.0,99.0 +1977,5,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.1,93,97300,0,0,335,0,0,0,0,0,0,0,70,1.5,1,0,24.1,77777,9,999999999,320,0.1820,0,88,999.000,999.0,99.0 +1977,5,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,97300,0,0,355,0,0,0,0,0,0,0,70,4.1,4,3,24.1,77777,9,999999999,320,0.1820,0,88,999.000,999.0,99.0 +1977,5,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.7,93,97300,27,632,349,8,3,8,900,100,900,210,80,4.1,3,2,11.3,77777,9,999999999,320,0.2330,0,88,999.000,999.0,99.0 +1977,5,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.2,93,97400,250,1330,369,67,36,60,7300,2900,6800,1530,70,3.6,7,7,14.5,3050,9,999999999,320,0.2330,0,88,999.000,999.0,99.0 +1977,5,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,97400,515,1330,383,194,161,131,21300,15800,15200,3050,70,3.1,9,8,16.1,3050,9,999999999,320,0.2330,0,88,999.000,999.0,99.0 +1977,5,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,97400,765,1330,379,381,172,282,41300,17900,31000,7450,40,3.1,8,6,16.1,3050,9,999999999,320,0.2330,0,88,999.000,999.0,99.0 +1977,5,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,97400,981,1330,385,632,529,241,68000,55100,27300,7310,50,2.6,4,4,20.9,77777,9,999999999,320,0.2330,0,88,999.000,999.0,99.0 +1977,5,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,97400,1149,1330,421,433,99,347,48100,10600,38900,14620,110,3.1,9,9,24.1,850,9,999999999,320,0.2330,0,88,999.000,999.0,99.0 +1977,5,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.7,58,97300,1257,1330,422,519,85,439,57400,8800,49100,24240,110,2.1,9,9,24.1,910,9,999999999,320,0.2330,0,88,999.000,999.0,99.0 +1977,5,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,97200,1297,1330,428,516,68,450,57100,7000,50300,29150,110,3.1,9,9,24.1,980,9,999999999,320,0.2330,0,88,999.000,999.0,99.0 +1977,5,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,97100,1268,1330,425,539,70,472,59500,7200,52600,26820,340,2.1,9,9,24.1,980,9,999999999,320,0.2330,0,88,999.000,999.0,99.0 +1977,5,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,97100,1171,1330,428,474,92,394,52500,9500,44100,18160,0,0.0,9,9,24.1,980,9,999999999,320,0.2330,0,88,999.000,999.0,99.0 +1977,5,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,97000,1013,1330,429,465,202,312,51500,21500,35100,10390,200,2.1,9,9,24.1,1220,9,999999999,320,0.2330,0,88,999.000,999.0,99.0 +1977,5,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,97100,804,1330,412,124,1,124,15100,100,15000,6000,40,7.2,10,10,11.3,980,9,999999999,320,0.2330,0,88,999.000,999.0,99.0 +1977,5,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,97100,559,1330,418,76,0,76,9100,0,9100,3430,80,4.6,10,10,24.1,910,9,999999999,320,0.2330,0,88,999.000,999.0,99.0 +1977,5,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,97100,295,1330,416,52,1,52,6000,0,6000,2010,40,5.7,10,10,24.1,3660,9,999999999,320,0.2330,0,88,999.000,999.0,99.0 +1977,5,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.2,81,97100,51,853,406,14,0,14,1600,0,1600,500,300,2.1,10,10,24.1,3660,9,999999999,320,0.2330,0,88,999.000,999.0,99.0 +1977,5,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.2,81,97200,0,0,395,0,0,0,0,0,0,0,350,2.1,9,9,24.1,3660,9,999999999,320,0.1820,0,88,999.000,999.0,99.0 +1977,5,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,97300,0,0,403,0,0,0,0,0,0,0,340,2.6,10,10,16.1,1830,9,999999999,320,0.1820,0,88,999.000,999.0,99.0 +1977,5,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,97300,0,0,403,0,0,0,0,0,0,0,350,2.6,10,10,16.1,1830,9,999999999,309,0.1820,0,88,999.000,999.0,99.0 +1977,5,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,97300,0,0,369,0,0,0,0,0,0,0,360,2.6,8,6,16.1,7620,9,999999999,309,0.1820,0,88,999.000,999.0,99.0 +1977,5,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,97200,0,0,355,0,0,0,0,0,0,0,80,2.1,3,2,16.1,77777,9,999999999,309,0.1830,0,88,999.000,999.0,99.0 +1977,5,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,97200,0,0,347,0,0,0,0,0,0,0,60,2.1,3,1,16.1,77777,9,999999999,309,0.1830,0,88,999.000,999.0,99.0 +1977,5,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,97200,0,0,347,0,0,0,0,0,0,0,40,1.5,3,1,16.1,77777,9,999999999,309,0.1830,0,88,999.000,999.0,99.0 +1977,5,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.2,93,97300,0,0,348,0,0,0,0,0,0,0,360,2.1,3,1,12.9,77777,9,999999999,300,0.1830,0,88,999.000,999.0,99.0 +1977,5,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.7,97,97300,0,0,335,0,0,0,0,0,0,0,80,2.1,1,0,12.9,77777,9,999999999,300,0.1830,0,88,999.000,999.0,99.0 +1977,5,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.7,93,97400,28,654,349,11,0,11,1300,0,1300,390,330,2.1,6,2,11.3,77777,9,999999999,300,0.3660,0,88,999.000,999.0,99.0 +1977,5,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.2,93,97500,251,1330,394,81,3,80,8800,100,8800,2530,300,2.1,10,10,9.7,3660,9,999999999,300,0.3660,0,88,999.000,999.0,99.0 +1977,5,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,97500,516,1330,403,128,16,122,14700,1100,14300,4870,90,2.1,10,10,11.3,3660,9,999999999,300,0.3660,0,88,999.000,999.0,99.0 +1977,5,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,97500,765,1330,393,362,166,266,39400,17300,29400,7030,340,2.1,8,8,14.5,5180,9,999999999,300,0.3660,0,88,999.000,999.0,99.0 +1977,5,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,97600,981,1330,374,677,583,246,72800,60700,27900,7480,20,2.6,0,0,24.1,77777,9,999999999,290,0.3660,0,88,999.000,999.0,99.0 +1977,5,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.2,56,97600,1149,1330,382,814,621,277,85300,62600,31100,12200,320,2.6,0,0,32.2,77777,9,999999999,290,0.3660,0,88,999.000,999.0,99.0 +1977,5,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.7,51,97500,1257,1330,404,906,579,359,97600,60600,40200,26000,10,3.6,3,3,32.2,77777,9,999999999,290,0.3660,0,88,999.000,999.0,99.0 +1977,5,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.7,48,97500,1298,1330,413,837,458,389,89700,47900,42900,37960,300,2.6,4,4,32.2,77777,9,999999999,279,0.3660,0,88,999.000,999.0,99.0 +1977,5,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.7,49,97500,1269,1330,410,865,432,453,94900,47000,50000,31060,100,2.1,4,4,32.2,77777,9,999999999,279,0.3660,0,88,999.000,999.0,99.0 +1977,5,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.7,46,97400,1172,1330,416,806,516,351,85900,53900,38400,17430,0,0.0,4,4,32.2,77777,9,999999999,279,0.3660,0,88,999.000,999.0,99.0 +1977,5,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.1,43,97400,1014,1330,418,609,346,346,66100,37400,37500,11270,160,2.1,4,4,32.2,77777,9,999999999,279,0.3660,0,88,999.000,999.0,99.0 +1977,5,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.1,43,97400,805,1330,415,481,394,243,52100,41900,26600,6050,280,2.6,3,3,32.2,77777,9,999999999,279,0.3660,0,88,999.000,999.0,99.0 +1977,5,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.6,43,97400,561,1330,414,288,305,160,30900,30500,18000,3380,300,3.6,4,4,32.2,77777,9,999999999,270,0.3660,0,88,999.000,999.0,99.0 +1977,5,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.1,49,97400,297,1330,406,101,111,76,11000,9100,9000,1650,300,2.6,4,4,24.1,77777,9,999999999,270,0.3660,0,88,999.000,999.0,99.0 +1977,5,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.1,51,97500,52,875,414,14,0,14,1600,0,1600,510,310,2.6,8,7,24.1,7620,9,999999999,279,0.3660,0,88,999.000,999.0,99.0 +1977,5,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,97600,0,0,395,0,0,0,0,0,0,0,340,2.1,7,7,24.1,7620,9,999999999,279,0.1830,0,88,999.000,999.0,99.0 +1977,5,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.2,71,97700,0,0,384,0,0,0,0,0,0,0,0,0.0,5,5,24.1,77777,9,999999999,279,0.1830,0,88,999.000,999.0,99.0 +1977,5,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,97700,0,0,372,0,0,0,0,0,0,0,320,2.1,2,2,19.3,77777,9,999999999,290,0.1830,0,88,999.000,999.0,99.0 +1977,5,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,97700,0,0,354,0,0,0,0,0,0,0,320,2.6,1,0,19.3,77777,9,999999999,300,0.1830,0,88,999.000,999.0,99.0 +1977,5,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,97700,0,0,351,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,300,0.1840,0,88,999.000,999.0,99.0 +1977,5,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,97600,0,0,354,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,300,0.1840,0,88,999.000,999.0,99.0 +1977,5,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.7,81,97600,0,0,349,0,0,0,0,0,0,0,10,1.5,0,0,16.1,77777,9,999999999,309,0.1840,0,88,999.000,999.0,99.0 +1977,5,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.7,81,97600,0,0,349,0,0,0,0,0,0,0,350,2.1,0,0,16.1,77777,9,999999999,320,0.1840,0,88,999.000,999.0,99.0 +1977,5,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,97700,0,0,352,0,0,0,0,0,0,0,20,1.5,2,2,16.1,77777,9,999999999,320,0.1840,0,88,999.000,999.0,99.0 +1977,5,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,97800,29,654,351,9,4,9,1000,200,1000,230,10,2.6,0,0,16.1,77777,9,999999999,329,0.2340,0,88,999.000,999.0,99.0 +1977,5,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,97800,252,1329,358,103,198,65,10900,14400,8100,1220,180,1.0,2,0,16.1,77777,9,999999999,329,0.2340,0,88,999.000,999.0,99.0 +1977,5,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.7,64,97900,517,1329,374,277,423,113,29600,40400,13900,2170,60,1.5,2,1,19.3,77777,9,999999999,329,0.2340,0,88,999.000,999.0,99.0 +1977,5,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,98000,766,1329,383,478,563,153,49900,56100,17500,3460,80,2.6,0,0,19.3,77777,9,999999999,340,0.2340,0,88,999.000,999.0,99.0 +1977,5,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,98000,982,1329,389,698,693,185,73800,70400,21700,5600,290,3.1,0,0,19.3,77777,9,999999999,340,0.2340,0,88,999.000,999.0,99.0 +1977,5,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,98000,1149,1329,394,852,745,207,91100,76200,25100,9370,290,3.1,0,0,19.3,77777,9,999999999,340,0.2340,0,88,999.000,999.0,99.0 +1977,5,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,49,97900,1257,1329,417,890,597,325,96700,62500,37500,23540,350,2.1,4,4,22.5,77777,9,999999999,350,0.2340,0,88,999.000,999.0,99.0 +1977,5,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,16.7,46,97900,1298,1329,428,790,415,385,84900,43400,42400,37810,300,2.1,7,7,19.3,1070,9,999999999,350,0.2340,0,88,999.000,999.0,99.0 +1977,5,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,16.7,43,97800,1269,1329,426,761,357,420,83900,38800,46700,28780,340,4.1,5,5,19.3,77777,9,999999999,350,0.2340,0,88,999.000,999.0,99.0 +1977,5,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.2,45,97800,1173,1329,430,820,504,375,86800,52600,40400,18760,360,3.6,6,6,19.3,1070,9,999999999,359,0.2340,0,88,999.000,999.0,99.0 +1977,5,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,58,97800,1015,1329,417,587,268,383,63200,28900,41100,12710,120,3.6,6,6,16.1,2740,9,999999999,359,0.2340,0,88,999.000,999.0,99.0 +1977,5,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,97800,807,1329,419,323,179,215,35900,18900,24400,5850,150,2.6,6,6,16.1,2740,9,999999999,359,0.2340,0,88,999.000,999.0,99.0 +1977,5,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,97800,562,1329,430,162,88,125,18100,8800,14300,2960,140,4.1,8,8,16.1,3050,9,999999999,370,0.2340,0,88,999.000,999.0,99.0 +1977,5,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,97800,299,1329,402,86,71,70,9500,5900,8200,1520,130,1.5,5,5,16.1,77777,9,999999999,370,0.2340,0,88,999.000,999.0,99.0 +1977,5,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,97900,54,897,377,21,12,19,2200,700,2100,460,160,2.6,0,0,12.9,77777,9,999999999,370,0.2340,0,88,999.000,999.0,99.0 +1977,5,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,97900,0,0,371,0,0,0,0,0,0,0,150,1.5,0,0,12.9,77777,9,999999999,379,0.1840,0,88,999.000,999.0,99.0 +1977,5,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,98000,0,0,363,0,0,0,0,0,0,0,140,2.1,0,0,12.9,77777,9,999999999,379,0.1840,0,88,999.000,999.0,99.0 +1977,5,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,98100,0,0,391,0,0,0,0,0,0,0,110,2.1,6,6,12.9,1070,9,999999999,379,0.1840,0,88,999.000,999.0,99.0 +1977,5,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,98100,0,0,379,0,0,0,0,0,0,0,90,3.6,3,3,11.3,77777,9,999999999,379,0.1840,0,88,999.000,999.0,99.0 +1977,5,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,98000,0,0,375,0,0,0,0,0,0,0,80,2.6,3,3,11.3,77777,9,999999999,379,0.1850,0,88,999.000,999.0,99.0 +1977,5,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98000,0,0,357,0,0,0,0,0,0,0,70,3.1,0,0,11.3,77777,9,999999999,390,0.1850,0,88,999.000,999.0,99.0 +1977,5,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98000,0,0,369,0,0,0,0,0,0,0,80,3.6,2,2,11.3,77777,9,999999999,390,0.1850,0,88,999.000,999.0,99.0 +1977,5,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.9,93,98000,0,0,372,0,0,0,0,0,0,0,70,2.6,6,5,11.3,7620,9,999999999,390,0.1850,0,88,999.000,999.0,99.0 +1977,5,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,98000,0,0,365,0,0,0,0,0,0,0,80,3.1,6,3,11.3,77777,9,999999999,400,0.1850,0,88,999.000,999.0,99.0 +1977,5,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,18.3,93,98000,29,653,365,9,0,8,1000,0,1000,300,70,3.1,8,4,4.8,77777,9,999999999,400,0.2000,0,88,999.000,999.0,99.0 +1977,5,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,18.3,93,98100,253,1329,401,41,17,38,4500,1300,4300,1040,70,3.6,10,10,4.8,2740,9,999999999,400,0.2000,0,88,999.000,999.0,99.0 +1977,5,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,98100,518,1329,374,255,197,178,27600,19200,20100,4150,90,3.1,8,6,4.8,7620,9,999999999,400,0.2000,0,88,999.000,999.0,99.0 +1977,5,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,98000,766,1329,384,407,327,217,44000,34600,24000,5170,120,3.6,9,4,11.3,77777,9,999999999,390,0.2000,0,88,999.000,999.0,99.0 +1977,5,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,98000,982,1329,392,636,490,273,67600,50900,29900,8380,100,2.6,9,4,12.9,77777,9,999999999,390,0.2000,0,88,999.000,999.0,99.0 +1977,5,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,98000,1149,1329,394,697,533,235,73800,54200,26800,10550,130,4.1,5,2,12.9,77777,9,999999999,379,0.2000,0,88,999.000,999.0,99.0 +1977,5,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,58,98000,1257,1329,403,898,686,249,95900,70000,29600,17690,180,2.6,4,2,12.9,77777,9,999999999,379,0.2000,0,88,999.000,999.0,99.0 +1977,5,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,98000,1298,1329,425,951,514,448,100500,53600,48000,44470,220,1.5,7,7,12.9,910,9,999999999,379,0.2000,0,88,999.000,999.0,99.0 +1977,5,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,97900,1270,1329,444,528,75,457,58400,7700,51000,26320,130,2.6,9,9,11.3,980,9,999999999,370,0.2000,0,88,999.000,999.0,99.0 +1977,5,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,97900,1173,1329,434,485,52,439,53500,5400,48800,20010,150,2.1,8,8,11.3,980,9,999999999,370,0.2000,0,88,999.000,999.0,99.0 +1977,5,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,97800,1016,1329,456,326,4,323,37900,400,37600,14100,270,3.1,10,10,11.3,9140,9,999999999,359,0.2000,0,88,999.000,999.0,99.0 +1977,5,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,97800,808,1329,426,205,7,200,23800,600,23500,8860,270,6.7,10,10,12.9,9140,9,999999999,359,0.2000,0,88,999.000,999.0,99.0 +1977,5,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.0,50,97700,564,1329,413,233,187,154,25700,18700,17700,3660,250,3.1,9,8,12.9,9140,9,999999999,350,0.2000,0,88,999.000,999.0,99.0 +1977,5,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,97700,301,1329,396,122,73,105,13300,6200,11900,2510,0,0.0,10,7,12.9,9140,9,999999999,350,0.2000,0,88,999.000,999.0,99.0 +1977,5,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,68,97700,56,897,383,16,1,16,1800,0,1800,570,250,1.5,10,6,9.7,3660,9,999999999,350,0.2000,0,88,999.000,999.0,99.0 +1977,5,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,97700,0,0,381,0,0,0,0,0,0,0,250,3.1,10,5,9.7,77777,9,999999999,340,0.1850,0,88,999.000,999.0,99.0 +1977,5,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.8,17.1,76,97800,0,0,373,0,0,0,0,0,0,0,220,3.2,8,3,9.7,77777,9,999999999,329,0.1850,0,88,999.000,999.0,99.0 +1977,5,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.4,17.1,79,97800,0,0,367,0,0,0,0,0,0,0,240,3.2,6,2,11.3,77777,9,999999999,329,0.1850,0,88,999.000,999.0,99.0 +1977,5,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.0,17.0,81,97800,0,0,365,0,0,0,0,0,0,0,270,3.3,6,2,11.3,77777,9,999999999,329,0.1850,0,88,999.000,999.0,99.0 +1977,6,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.9,78,97700,0,0,363,0,0,0,0,0,0,0,270,3.4,6,2,11.3,77777,9,999999999,320,0.1860,0,88,999.000,999.0,99.0 +1977,6,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.2,16.8,84,97700,0,0,361,0,0,0,0,0,0,0,270,3.5,7,2,11.3,77777,9,999999999,320,0.1860,0,88,999.000,999.0,99.0 +1977,6,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.8,16.8,84,97600,0,0,354,0,0,0,0,0,0,0,270,3.5,3,1,11.3,77777,9,999999999,309,0.1860,0,88,999.000,999.0,99.0 +1977,6,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,97600,0,0,357,0,0,0,0,0,0,0,250,3.6,6,2,11.3,77777,9,999999999,300,0.1860,0,88,999.000,999.0,99.0 +1977,6,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,97600,0,0,353,0,0,0,0,0,0,0,270,4.1,3,1,11.3,77777,9,999999999,300,0.1860,0,88,999.000,999.0,99.0 +1977,6,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,97600,30,675,350,10,2,10,1200,0,1200,370,270,4.1,3,1,11.3,77777,9,999999999,300,0.2600,0,88,999.000,999.0,99.0 +1977,6,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,97600,254,1328,374,80,35,73,8700,2800,8200,1790,280,3.6,5,5,11.3,77777,9,999999999,290,0.2600,0,88,999.000,999.0,99.0 +1977,6,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,97700,518,1328,396,227,110,184,24900,10600,20700,4930,300,4.1,8,8,11.3,3660,9,999999999,279,0.2600,0,88,999.000,999.0,99.0 +1977,6,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,97700,767,1328,414,316,13,309,35400,1300,34700,11380,320,4.1,9,9,16.1,3660,9,999999999,279,0.2600,0,88,999.000,999.0,99.0 +1977,6,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,97700,982,1328,436,317,9,310,36700,800,36100,13470,320,7.2,10,10,19.3,9140,9,999999999,270,0.2600,0,88,999.000,999.0,99.0 +1977,6,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,97700,1149,1328,418,491,169,344,54500,18100,38800,14560,320,3.6,8,8,24.1,9140,9,999999999,259,0.2600,0,88,999.000,999.0,99.0 +1977,6,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,15.6,46,97600,1257,1328,420,853,404,470,93100,43900,51500,30590,320,3.6,7,7,40.2,9140,9,999999999,259,0.2600,0,88,999.000,999.0,99.0 +1977,6,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.0,41,97600,1298,1328,425,663,169,497,72800,18000,55200,37890,270,2.1,7,7,40.2,7620,9,999999999,250,0.2600,0,88,999.000,999.0,99.0 +1977,6,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,14.4,40,97500,1270,1328,405,929,635,321,97500,63900,36300,24430,270,5.7,6,2,40.2,77777,9,999999999,240,0.2600,0,88,999.000,999.0,99.0 +1977,6,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.3,37,97500,1174,1328,404,795,552,306,85900,57800,34800,15270,280,7.2,5,2,40.2,77777,9,999999999,240,0.2600,0,88,999.000,999.0,99.0 +1977,6,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.0,41,97400,1017,1328,410,671,556,245,72600,58000,28100,7970,300,2.1,5,3,40.2,77777,9,999999999,229,0.2600,0,88,999.000,999.0,99.0 +1977,6,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.0,41,97300,810,1328,410,490,416,237,51500,42600,25500,5750,320,5.2,4,3,40.2,77777,9,999999999,220,0.2600,0,88,999.000,999.0,99.0 +1977,6,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.9,40,97300,566,1328,406,306,332,166,32900,33300,18600,3530,280,5.2,4,3,40.2,77777,9,999999999,220,0.2600,0,88,999.000,999.0,99.0 +1977,6,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,14.4,44,97300,304,1328,401,122,116,96,13200,9600,11100,2090,310,3.6,6,3,40.2,77777,9,999999999,209,0.2600,0,88,999.000,999.0,99.0 +1977,6,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.8,47,97400,57,919,384,21,5,20,2300,0,2300,680,310,3.6,8,3,40.2,77777,9,999999999,209,0.2600,0,88,999.000,999.0,99.0 +1977,6,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,97400,0,0,379,0,0,0,0,0,0,0,330,3.6,8,3,40.2,77777,9,999999999,209,0.1860,0,88,999.000,999.0,99.0 +1977,6,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.3,55,97500,0,0,393,0,0,0,0,0,0,0,330,4.1,10,8,32.2,7620,9,999999999,209,0.1860,0,88,999.000,999.0,99.0 +1977,6,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,97500,0,0,371,0,0,0,0,0,0,0,330,3.6,8,3,32.2,77777,9,999999999,209,0.1860,0,88,999.000,999.0,99.0 +1977,6,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.3,59,97500,0,0,382,0,0,0,0,0,0,0,330,3.6,9,7,24.1,7620,9,999999999,209,0.1860,0,88,999.000,999.0,99.0 +1977,6,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,97500,0,0,386,0,0,0,0,0,0,0,320,2.6,10,9,24.1,3660,9,999999999,200,0.1870,0,88,999.000,999.0,99.0 +1977,6,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.8,68,97500,0,0,357,0,0,0,0,0,0,0,320,1.5,8,4,24.1,77777,9,999999999,200,0.1870,0,88,999.000,999.0,99.0 +1977,6,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,97400,0,0,346,0,0,0,0,0,0,0,320,2.1,8,4,24.1,77777,9,999999999,200,0.1870,0,88,999.000,999.0,99.0 +1977,6,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,97500,0,0,337,0,0,0,0,0,0,0,300,2.6,5,2,24.1,77777,9,999999999,200,0.1870,0,88,999.000,999.0,99.0 +1977,6,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,97500,0,0,327,0,0,0,0,0,0,0,280,2.1,2,1,32.2,77777,9,999999999,200,0.1870,0,88,999.000,999.0,99.0 +1977,6,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,97500,30,675,326,13,0,13,1500,0,1500,450,300,4.1,1,0,32.2,77777,9,999999999,200,0.4080,0,88,999.000,999.0,99.0 +1977,6,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.2,65,97600,255,1328,338,94,81,78,10100,6200,8900,1670,310,4.1,3,0,40.2,77777,9,999999999,200,0.4080,0,88,999.000,999.0,99.0 +1977,6,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,97600,519,1328,354,269,296,153,28600,29100,17200,3200,330,2.6,2,0,32.2,77777,9,999999999,200,0.4080,0,88,999.000,999.0,99.0 +1977,6,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,11.7,46,97700,767,1328,362,484,448,225,50700,45600,24300,5240,330,3.6,2,0,32.2,77777,9,999999999,200,0.4080,0,88,999.000,999.0,99.0 +1977,6,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,12.2,44,97700,982,1328,387,643,448,311,67500,46400,33000,9670,330,6.2,3,3,40.2,77777,9,999999999,200,0.4080,0,88,999.000,999.0,99.0 +1977,6,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.1,38,97700,1149,1328,394,807,501,372,85200,52200,39900,17290,320,7.2,4,4,40.2,77777,9,999999999,189,0.4080,0,88,999.000,999.0,99.0 +1977,6,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,10.0,38,97700,1257,1328,387,836,445,414,88600,46400,44600,30500,320,3.1,4,4,40.2,77777,9,999999999,189,0.4080,0,88,999.000,999.0,99.0 +1977,6,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.7,43,97700,1299,1328,386,971,629,354,105100,65900,40500,35320,270,5.2,4,4,40.2,77777,9,999999999,189,0.4080,0,88,999.000,999.0,99.0 +1977,6,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,11.1,35,97600,1270,1328,400,851,393,475,93000,42700,52100,33330,300,5.2,4,4,40.2,77777,9,999999999,189,0.4080,0,88,999.000,999.0,99.0 +1977,6,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,11.1,37,97600,1175,1328,400,844,516,388,89200,53800,41500,19670,360,5.2,5,5,40.2,77777,9,999999999,189,0.4080,0,88,999.000,999.0,99.0 +1977,6,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,11.7,38,97600,1018,1328,397,564,271,356,61000,29300,38500,11740,350,4.6,4,4,40.2,77777,9,999999999,189,0.4080,0,88,999.000,999.0,99.0 +1977,6,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,11.7,37,97600,811,1328,397,485,350,272,52100,37200,29300,6950,310,4.1,3,3,40.2,77777,9,999999999,179,0.4080,0,88,999.000,999.0,99.0 +1977,6,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,11.7,39,97600,568,1328,388,214,151,150,23600,15100,17200,3570,330,3.1,2,2,40.2,77777,9,999999999,179,0.4080,0,88,999.000,999.0,99.0 +1977,6,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.7,41,97600,306,1328,372,119,120,92,13000,9900,10700,2000,340,2.6,3,0,40.2,77777,9,999999999,179,0.4080,0,88,999.000,999.0,99.0 +1977,6,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,11.1,46,97700,59,941,358,22,1,22,2500,0,2500,730,320,2.6,2,0,40.2,77777,9,999999999,179,0.4080,0,88,999.000,999.0,99.0 +1977,6,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,97700,0,0,346,0,0,0,0,0,0,0,300,2.6,1,0,40.2,77777,9,999999999,179,0.1870,0,88,999.000,999.0,99.0 +1977,6,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.2,61,97800,0,0,344,0,0,0,0,0,0,0,320,2.6,0,0,32.2,77777,9,999999999,170,0.1870,0,88,999.000,999.0,99.0 +1977,6,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,97800,0,0,349,0,0,0,0,0,0,0,310,2.6,0,0,32.2,77777,9,999999999,170,0.1870,0,88,999.000,999.0,99.0 +1977,6,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,97800,0,0,344,0,0,0,0,0,0,0,320,3.6,0,0,32.2,77777,9,999999999,170,0.1870,0,88,999.000,999.0,99.0 +1977,6,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.8,68,97800,0,0,339,0,0,0,0,0,0,0,330,2.6,0,0,32.2,77777,9,999999999,160,0.1880,0,88,999.000,999.0,99.0 +1977,6,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.8,66,97800,0,0,341,0,0,0,0,0,0,0,290,1.0,0,0,24.1,77777,9,999999999,160,0.1880,0,88,999.000,999.0,99.0 +1977,6,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,97800,0,0,326,0,0,0,0,0,0,0,350,2.6,0,0,24.1,77777,9,999999999,160,0.1880,0,88,999.000,999.0,99.0 +1977,6,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,97800,0,0,331,0,0,0,0,0,0,0,260,1.5,0,0,24.1,77777,9,999999999,160,0.1880,0,88,999.000,999.0,99.0 +1977,6,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,97900,0,0,324,0,0,0,0,0,0,0,330,2.1,0,0,24.1,77777,9,999999999,150,0.1880,0,88,999.000,999.0,99.0 +1977,6,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,97900,31,675,336,13,0,13,1500,0,1500,450,340,2.6,0,0,24.1,77777,9,999999999,150,0.4330,0,88,999.000,999.0,99.0 +1977,6,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,98000,256,1328,348,89,79,74,9700,6100,8500,1590,320,1.5,0,0,24.1,77777,9,999999999,150,0.4330,0,88,999.000,999.0,99.0 +1977,6,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.9,54,98100,519,1328,364,263,290,150,28100,28500,16900,3120,360,2.6,0,0,24.1,77777,9,999999999,150,0.4330,0,88,999.000,999.0,99.0 +1977,6,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,13.9,49,98200,767,1328,373,480,449,220,50300,45700,23800,5110,40,2.6,0,0,24.1,77777,9,999999999,150,0.4330,0,88,999.000,999.0,99.0 +1977,6,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.3,42,98200,982,1328,380,675,543,273,71800,56400,30000,8400,70,4.6,0,0,24.1,77777,9,999999999,160,0.4330,0,88,999.000,999.0,99.0 +1977,6,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,13.3,42,98200,1149,1328,387,824,602,301,88800,63000,34200,13840,320,3.1,1,1,32.2,77777,9,999999999,160,0.4330,0,88,999.000,999.0,99.0 +1977,6,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.7,36,98200,1257,1328,400,899,569,360,96800,59500,40300,26450,320,2.6,3,3,32.2,77777,9,999999999,160,0.4330,0,88,999.000,999.0,99.0 +1977,6,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.3,38,98100,1299,1328,405,897,496,410,95600,51800,44800,41290,250,3.6,3,3,32.2,77777,9,999999999,160,0.4330,0,88,999.000,999.0,99.0 +1977,6,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,12.8,36,98100,1271,1328,407,909,560,373,97700,58600,41500,29860,300,5.2,3,3,32.2,77777,9,999999999,170,0.4330,0,88,999.000,999.0,99.0 +1977,6,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,12.8,35,98100,1175,1328,411,728,389,384,80000,42300,42500,17890,310,3.6,3,3,40.2,77777,9,999999999,170,0.4330,0,88,999.000,999.0,99.0 +1977,6,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,12.2,33,98100,1019,1328,410,703,479,335,73700,49700,35400,11210,330,4.1,3,3,40.2,77777,9,999999999,170,0.4330,0,88,999.000,999.0,99.0 +1977,6,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,12.2,35,98000,812,1328,403,496,409,246,53700,43600,27000,6170,290,4.1,2,2,40.2,77777,9,999999999,179,0.4330,0,88,999.000,999.0,99.0 +1977,6,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,12.2,35,98100,570,1328,390,300,319,164,32200,32100,18400,3480,320,2.6,0,0,40.2,77777,9,999999999,179,0.4330,0,88,999.000,999.0,99.0 +1977,6,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,11.7,37,98100,308,1328,381,113,113,87,12300,9400,10100,1890,310,3.1,0,0,40.2,77777,9,999999999,179,0.4330,0,88,999.000,999.0,99.0 +1977,6,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,11.7,43,98100,60,940,367,22,1,22,2500,0,2500,730,310,2.6,0,0,40.2,77777,9,999999999,179,0.4330,0,88,999.000,999.0,99.0 +1977,6,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.2,50,98200,0,0,359,0,0,0,0,0,0,0,330,3.1,0,0,32.2,77777,9,999999999,189,0.1880,0,88,999.000,999.0,99.0 +1977,6,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,98200,0,0,346,0,0,0,0,0,0,0,330,2.6,0,0,32.2,77777,9,999999999,189,0.1880,0,88,999.000,999.0,99.0 +1977,6,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,11.7,51,98300,0,0,353,0,0,0,0,0,0,0,10,4.1,2,0,24.1,77777,9,999999999,189,0.1880,0,88,999.000,999.0,99.0 +1977,6,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,98300,0,0,361,0,0,0,0,0,0,0,360,4.1,1,1,24.1,77777,9,999999999,200,0.1880,0,88,999.000,999.0,99.0 +1977,6,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,98300,0,0,348,0,0,0,0,0,0,0,30,4.1,3,0,24.1,77777,9,999999999,200,0.1890,0,88,999.000,999.0,99.0 +1977,6,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,11.7,55,98300,0,0,348,0,0,0,0,0,0,0,20,2.1,2,0,24.1,77777,9,999999999,200,0.1890,0,88,999.000,999.0,99.0 +1977,6,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,98300,0,0,346,0,0,0,0,0,0,0,30,3.6,0,0,24.1,77777,9,999999999,209,0.1890,0,88,999.000,999.0,99.0 +1977,6,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,98300,0,0,343,0,0,0,0,0,0,0,70,1.5,0,0,24.1,77777,9,999999999,209,0.1890,0,88,999.000,999.0,99.0 +1977,6,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.2,63,98300,0,0,341,0,0,0,0,0,0,0,80,3.6,0,0,24.1,77777,9,999999999,209,0.1890,0,88,999.000,999.0,99.0 +1977,6,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.2,59,98400,31,675,346,19,57,13,1700,1600,1600,220,70,3.6,0,0,24.1,77777,9,999999999,220,0.0850,0,88,999.000,999.0,99.0 +1977,6,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,98400,256,1327,344,129,458,40,13400,34900,6600,750,70,3.1,0,0,24.1,77777,9,999999999,220,0.0850,0,88,999.000,999.0,99.0 +1977,6,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.9,59,98400,519,1327,356,335,692,64,35100,65600,9400,1340,100,3.6,0,0,24.1,77777,9,999999999,220,0.0850,0,88,999.000,999.0,99.0 +1977,6,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.0,56,98500,767,1327,368,548,799,85,58500,80000,12200,2040,150,2.1,0,0,24.1,77777,9,999999999,229,0.0850,0,88,999.000,999.0,99.0 +1977,6,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.6,51,98500,982,1327,380,736,857,101,76300,85600,12800,2670,130,2.1,0,0,24.1,77777,9,999999999,229,0.0850,0,88,999.000,999.0,99.0 +1977,6,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,15.6,43,98400,1149,1327,394,889,895,112,91700,89700,13900,4250,180,2.6,0,0,24.1,77777,9,999999999,229,0.0850,0,88,999.000,999.0,99.0 +1977,6,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.9,39,98400,1257,1327,431,739,359,399,81700,39100,44600,25780,210,2.6,8,8,24.1,1070,9,999999999,240,0.0850,0,88,999.000,999.0,99.0 +1977,6,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.3,35,98400,1299,1327,418,791,586,217,85600,60300,26500,21430,240,3.6,4,4,24.1,77777,9,999999999,240,0.0850,0,88,999.000,999.0,99.0 +1977,6,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.3,35,98300,1271,1327,418,934,731,233,100300,74800,28500,18310,240,3.6,4,4,24.1,77777,9,999999999,240,0.0850,0,88,999.000,999.0,99.0 +1977,6,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,12.8,33,98300,1176,1327,420,892,732,242,94600,74400,28400,11950,260,2.6,4,4,24.1,77777,9,999999999,250,0.0850,0,88,999.000,999.0,99.0 +1977,6,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,12.8,33,98200,1020,1327,420,636,533,226,69400,55700,26500,7370,230,3.1,4,4,24.1,77777,9,999999999,250,0.0850,0,88,999.000,999.0,99.0 +1977,6,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,13.3,33,98200,814,1327,424,520,569,172,54300,56800,19400,4050,340,3.1,5,4,24.1,77777,9,999999999,250,0.0850,0,88,999.000,999.0,99.0 +1977,6,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.3,35,98200,571,1327,418,317,378,155,33200,36800,17300,3120,300,2.6,5,4,24.1,77777,9,999999999,259,0.0850,0,88,999.000,999.0,99.0 +1977,6,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.3,37,98200,310,1327,408,93,131,63,10100,10700,7600,1150,310,1.5,5,3,24.1,77777,9,999999999,259,0.0850,0,88,999.000,999.0,99.0 +1977,6,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.9,43,98200,62,962,400,30,31,27,3200,1400,3100,560,180,2.1,5,3,24.1,77777,9,999999999,259,0.0850,0,88,999.000,999.0,99.0 +1977,6,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,15.0,52,98200,0,0,390,0,0,0,0,0,0,0,230,2.6,5,3,24.1,77777,9,999999999,250,0.1890,0,88,999.000,999.0,99.0 +1977,6,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,98300,0,0,394,0,0,0,0,0,0,0,290,2.6,6,6,24.1,1160,9,999999999,250,0.1890,0,88,999.000,999.0,99.0 +1977,6,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.6,64,98300,0,0,373,0,0,0,0,0,0,0,300,2.1,2,2,19.3,77777,9,999999999,250,0.1890,0,88,999.000,999.0,99.0 +1977,6,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.6,62,98300,0,0,363,0,0,0,0,0,0,0,300,2.6,0,0,19.3,77777,9,999999999,250,0.1890,0,88,999.000,999.0,99.0 +1977,6,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.6,66,98300,0,0,358,0,0,0,0,0,0,0,280,3.1,0,0,16.1,77777,9,999999999,250,0.1900,0,88,999.000,999.0,99.0 +1977,6,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,98300,0,0,353,0,0,0,0,0,0,0,250,2.6,0,0,16.1,77777,9,999999999,240,0.1900,0,88,999.000,999.0,99.0 +1977,6,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,98300,0,0,355,0,0,0,0,0,0,0,270,1.5,0,0,16.1,77777,9,999999999,240,0.1900,0,88,999.000,999.0,99.0 +1977,6,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,98200,0,0,353,0,0,0,0,0,0,0,220,2.1,3,0,16.1,77777,9,999999999,240,0.1900,0,88,999.000,999.0,99.0 +1977,6,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.6,78,98200,0,0,351,0,0,0,0,0,0,0,190,2.1,2,1,12.9,77777,9,999999999,229,0.1900,0,88,999.000,999.0,99.0 +1977,6,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.6,78,98200,31,697,344,16,15,15,1700,800,1700,360,200,2.1,2,0,12.9,77777,9,999999999,229,0.1640,0,88,999.000,999.0,99.0 +1977,6,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.1,76,98200,257,1327,351,115,296,58,12100,21900,7900,1040,200,2.1,2,0,12.9,77777,9,999999999,229,0.1640,0,88,999.000,999.0,99.0 +1977,6,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,98200,520,1327,364,312,563,91,32500,53200,11600,1790,180,3.6,0,0,12.9,77777,9,999999999,229,0.1640,0,88,999.000,999.0,99.0 +1977,6,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,98200,767,1327,378,528,698,124,56000,70200,15300,2900,280,3.6,0,0,12.9,77777,9,999999999,229,0.1640,0,88,999.000,999.0,99.0 +1977,6,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.7,48,98200,982,1327,393,718,768,148,74800,76900,17700,4120,270,4.1,0,0,16.1,77777,9,999999999,240,0.1640,0,88,999.000,999.0,99.0 +1977,6,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,15.0,40,98200,1149,1327,404,832,772,162,87800,77900,20200,6870,300,4.1,1,1,19.3,77777,9,999999999,240,0.1640,0,88,999.000,999.0,99.0 +1977,6,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,13.9,36,98200,1257,1327,406,929,811,159,99600,82300,21400,10980,270,5.7,1,1,19.3,77777,9,999999999,240,0.1640,0,88,999.000,999.0,99.0 +1977,6,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,14.4,35,98100,1299,1327,418,981,789,207,102700,79200,25000,19230,250,4.1,2,2,19.3,77777,9,999999999,250,0.1640,0,88,999.000,999.0,99.0 +1977,6,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,14.4,35,98000,1271,1327,418,938,766,203,98200,76900,24300,14900,310,4.6,2,2,19.3,77777,9,999999999,250,0.1640,0,88,999.000,999.0,99.0 +1977,6,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,14.4,35,97900,1177,1327,412,844,758,172,89000,76400,21100,7970,270,2.6,1,1,19.3,77777,9,999999999,250,0.1640,0,88,999.000,999.0,99.0 +1977,6,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,13.9,33,97800,1021,1327,420,788,773,193,83600,78700,22900,6320,270,5.2,2,2,19.3,77777,9,999999999,250,0.1640,0,88,999.000,999.0,99.0 +1977,6,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,13.9,33,97800,815,1327,407,566,713,129,60400,72200,16000,3170,260,5.2,0,0,19.3,77777,9,999999999,250,0.1640,0,88,999.000,999.0,99.0 +1977,6,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,14.4,36,97800,573,1327,401,353,593,98,37100,57200,12400,1980,310,4.1,0,0,19.3,77777,9,999999999,259,0.1640,0,88,999.000,999.0,99.0 +1977,6,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,14.4,40,97700,312,1327,393,149,375,62,16000,30300,8900,1110,300,2.6,0,0,19.3,77777,9,999999999,259,0.1640,0,88,999.000,999.0,99.0 +1977,6,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,14.4,46,97700,63,962,381,25,41,21,2600,1900,2500,430,280,2.6,0,0,16.1,77777,9,999999999,259,0.1640,0,88,999.000,999.0,99.0 +1977,6,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.0,58,97700,0,0,365,0,0,0,0,0,0,0,290,2.6,0,0,16.1,77777,9,999999999,259,0.1900,0,88,999.000,999.0,99.0 +1977,6,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,97700,0,0,357,0,0,0,0,0,0,0,290,2.6,0,0,16.1,77777,9,999999999,259,0.1900,0,88,999.000,999.0,99.0 +1977,6,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,97700,0,0,349,0,0,0,0,0,0,0,290,3.6,0,0,16.1,77777,9,999999999,259,0.1900,0,88,999.000,999.0,99.0 +1977,6,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,14.4,73,97700,0,0,343,0,0,0,0,0,0,0,280,4.1,0,0,16.1,77777,9,999999999,259,0.1900,0,88,999.000,999.0,99.0 +1977,6,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,14.4,78,97600,0,0,338,0,0,0,0,0,0,0,280,3.6,0,0,16.1,77777,9,999999999,270,0.1910,0,88,999.000,999.0,99.0 +1977,6,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.9,75,97500,0,0,337,0,0,0,0,0,0,0,270,4.1,0,0,16.1,77777,9,999999999,270,0.1910,0,88,999.000,999.0,99.0 +1977,6,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.8,66,97500,0,0,341,0,0,0,0,0,0,0,270,3.1,0,0,16.1,77777,9,999999999,270,0.1910,0,88,999.000,999.0,99.0 +1977,6,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.8,68,97500,0,0,339,0,0,0,0,0,0,0,270,4.1,0,0,16.1,77777,9,999999999,270,0.1910,0,88,999.000,999.0,99.0 +1977,6,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,97400,0,0,340,0,0,0,0,0,0,0,280,4.6,0,0,16.1,77777,9,999999999,270,0.1910,0,88,999.000,999.0,99.0 +1977,6,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,97400,32,696,346,13,5,12,1300,300,1300,300,280,4.6,3,1,16.1,77777,9,999999999,270,0.2110,0,88,999.000,999.0,99.0 +1977,6,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,97400,257,1326,349,108,237,62,11200,17500,7900,1130,260,4.1,1,0,16.1,77777,9,999999999,270,0.2110,0,88,999.000,999.0,99.0 +1977,6,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,97400,520,1326,366,300,496,105,32200,47500,13600,2000,280,4.6,0,0,12.9,77777,9,999999999,279,0.2110,0,88,999.000,999.0,99.0 +1977,6,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,97300,767,1326,378,510,624,148,53300,62300,17200,3380,260,6.7,1,0,12.9,77777,9,999999999,279,0.2110,0,88,999.000,999.0,99.0 +1977,6,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,97300,982,1326,395,702,704,180,74400,71600,21300,5490,290,6.7,1,0,12.9,77777,9,999999999,290,0.2110,0,88,999.000,999.0,99.0 +1977,6,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,97200,1149,1326,406,862,748,212,91900,76500,25500,9650,330,7.2,2,0,12.9,77777,9,999999999,290,0.2110,0,88,999.000,999.0,99.0 +1977,6,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.8,41,97100,1257,1326,415,955,781,213,99200,78100,25000,14110,290,8.2,1,0,16.1,77777,9,999999999,300,0.2110,0,88,999.000,999.0,99.0 +1977,6,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.2,38,97000,1299,1326,425,967,774,207,101200,77700,24900,19320,300,7.2,1,1,19.3,77777,9,999999999,300,0.2110,0,88,999.000,999.0,99.0 +1977,6,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,16.7,36,97000,1272,1326,428,926,751,204,96800,75400,24300,15040,280,9.3,1,1,19.3,77777,9,999999999,309,0.2110,0,88,999.000,999.0,99.0 +1977,6,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,17.2,36,96800,1177,1326,431,821,692,207,88200,70900,25100,10410,260,8.2,1,1,24.1,77777,9,999999999,320,0.2110,0,88,999.000,999.0,99.0 +1977,6,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,16.7,36,96700,1022,1326,438,627,430,295,66600,44700,32000,9840,300,7.2,3,3,19.3,77777,9,999999999,320,0.2110,0,88,999.000,999.0,99.0 +1977,6,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,16.1,34,96500,816,1326,433,535,553,195,57400,56900,22400,4680,290,8.2,2,2,19.3,77777,9,999999999,329,0.2110,0,88,999.000,999.0,99.0 +1977,6,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,15.6,35,96700,575,1326,430,352,476,146,37100,46400,16900,2920,280,7.7,3,3,19.3,77777,9,999999999,329,0.2110,0,88,999.000,999.0,99.0 +1977,6,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.3,41,96900,314,1326,421,64,36,56,7100,3000,6400,1540,320,12.9,9,8,4.8,1520,9,999999999,340,0.2110,0,88,999.000,999.0,99.0 +1977,6,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,96900,65,984,403,8,0,8,1000,0,1000,310,260,4.6,10,10,11.3,3050,9,999999999,329,0.2110,0,88,999.000,999.0,99.0 +1977,6,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,97000,0,0,404,0,0,0,0,0,0,0,270,6.2,10,10,12.9,1070,9,999999999,320,0.1910,0,88,999.000,999.0,99.0 +1977,6,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,96900,0,0,404,0,0,0,0,0,0,0,310,5.2,10,10,16.1,3050,9,999999999,300,0.1910,0,88,999.000,999.0,99.0 +1977,6,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,96900,0,0,396,0,0,0,0,0,0,0,330,5.2,10,9,16.1,7620,9,999999999,290,0.1910,0,88,999.000,999.0,99.0 +1977,6,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,97000,0,0,384,0,0,0,0,0,0,0,340,4.1,10,8,16.1,7620,9,999999999,279,0.1910,0,88,999.000,999.0,99.0 +1977,6,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,97000,0,0,371,0,0,0,0,0,0,0,340,3.1,9,7,19.3,7620,9,999999999,270,0.1920,0,88,999.000,999.0,99.0 +1977,6,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,14.4,81,97000,0,0,359,0,0,0,0,0,0,0,330,4.1,8,6,19.3,7620,9,999999999,250,0.1920,0,88,999.000,999.0,99.0 +1977,6,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,97000,0,0,340,0,0,0,0,0,0,0,350,6.2,6,3,19.3,77777,9,999999999,240,0.1920,0,88,999.000,999.0,99.0 +1977,6,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.6,72,97000,0,0,328,0,0,0,0,0,0,0,350,5.2,4,1,19.3,77777,9,999999999,229,0.1920,0,88,999.000,999.0,99.0 +1977,6,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,83,97100,0,0,321,0,0,0,0,0,0,0,320,4.6,3,1,19.3,77777,9,999999999,220,0.1920,0,88,999.000,999.0,99.0 +1977,6,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,97100,32,696,317,15,28,12,1500,800,1400,200,330,4.6,2,1,19.3,77777,9,999999999,200,0.1160,0,88,999.000,999.0,99.0 +1977,6,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,9.4,72,97200,257,1326,315,124,391,48,12700,29600,7000,870,330,6.2,1,0,32.2,77777,9,999999999,189,0.1160,0,88,999.000,999.0,99.0 +1977,6,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,9.4,65,97300,520,1326,323,325,631,78,34300,60100,10800,1570,330,6.7,1,0,32.2,77777,9,999999999,189,0.1160,0,88,999.000,999.0,99.0 +1977,6,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.9,52,97300,767,1326,335,544,765,101,57100,76000,13100,2290,330,7.7,0,0,32.2,77777,9,999999999,179,0.1160,0,88,999.000,999.0,99.0 +1977,6,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.9,49,97400,982,1326,340,739,825,127,78300,83200,16500,3720,10,7.7,1,0,32.2,77777,9,999999999,179,0.1160,0,88,999.000,999.0,99.0 +1977,6,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,8.3,44,97400,1149,1326,351,830,789,144,88600,80000,19100,6270,330,6.7,1,1,32.2,77777,9,999999999,170,0.1160,0,88,999.000,999.0,99.0 +1977,6,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,8.9,43,97400,1257,1326,357,939,852,129,96400,85500,15200,7540,300,5.7,1,1,40.2,77777,9,999999999,170,0.1160,0,88,999.000,999.0,99.0 +1977,6,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,9.4,43,97300,1299,1326,360,984,842,156,100300,84400,17500,12230,290,6.2,1,1,40.2,77777,9,999999999,160,0.1160,0,88,999.000,999.0,99.0 +1977,6,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,9.4,41,97300,1272,1326,363,946,842,138,97100,84400,15900,8770,20,4.6,1,1,40.2,77777,9,999999999,160,0.1160,0,88,999.000,999.0,99.0 +1977,6,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,9.4,40,97200,1178,1326,359,910,872,135,93500,87300,15800,5250,340,4.6,0,0,40.2,77777,9,999999999,160,0.1160,0,88,999.000,999.0,99.0 +1977,6,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,8.3,36,97200,1023,1326,360,777,848,123,83200,85900,16800,3950,350,7.2,0,0,40.2,77777,9,999999999,150,0.1160,0,88,999.000,999.0,99.0 +1977,6,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,7.2,34,97200,817,1326,356,583,777,105,61600,77700,13700,2500,340,6.2,0,0,40.2,77777,9,999999999,150,0.1160,0,88,999.000,999.0,99.0 +1977,6,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,6.7,34,97300,576,1326,353,376,682,81,40100,66400,11200,1690,340,5.2,0,0,40.2,77777,9,999999999,139,0.1160,0,88,999.000,999.0,99.0 +1977,6,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.7,37,97300,315,1326,348,163,470,53,17100,38600,7900,990,330,5.2,0,0,40.2,77777,9,999999999,139,0.1160,0,88,999.000,999.0,99.0 +1977,6,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,7.2,42,97300,66,984,341,30,85,21,2900,3200,2700,370,340,4.1,0,0,40.2,77777,9,999999999,139,0.1160,0,88,999.000,999.0,99.0 +1977,6,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,7.8,49,97400,0,0,333,0,0,0,0,0,0,0,330,3.6,0,0,40.2,77777,9,999999999,139,0.1920,0,88,999.000,999.0,99.0 +1977,6,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.8,52,97500,0,0,328,0,0,0,0,0,0,0,340,3.1,0,0,40.2,77777,9,999999999,139,0.1920,0,88,999.000,999.0,99.0 +1977,6,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.2,52,97400,0,0,325,0,0,0,0,0,0,0,320,5.2,0,0,40.2,77777,9,999999999,129,0.1920,0,88,999.000,999.0,99.0 +1977,6,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.7,56,97500,0,0,317,0,0,0,0,0,0,0,320,3.6,0,0,32.2,77777,9,999999999,129,0.1920,0,88,999.000,999.0,99.0 +1977,6,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.7,62,97400,0,0,310,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,129,0.1930,0,88,999.000,999.0,99.0 +1977,6,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,97500,0,0,302,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,129,0.1930,0,88,999.000,999.0,99.0 +1977,6,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,6.7,67,97500,0,0,305,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,129,0.1930,0,88,999.000,999.0,99.0 +1977,6,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.1,69,97500,0,0,300,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,129,0.1930,0,88,999.000,999.0,99.0 +1977,6,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.6,66,97600,0,0,300,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,120,0.1930,0,88,999.000,999.0,99.0 +1977,6,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.0,64,97600,32,696,299,17,42,13,1600,1200,1600,220,340,3.1,0,0,32.2,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1977,6,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.0,55,97700,258,1326,308,129,431,45,13300,32700,6900,830,360,4.1,0,0,40.2,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1977,6,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,5.6,46,97800,520,1326,323,337,674,72,34800,63600,9900,1430,30,3.6,0,0,32.2,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1977,6,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.1,42,97800,767,1326,334,555,793,96,58600,79000,12800,2220,70,3.6,0,0,32.2,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1977,6,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,6.7,42,97800,981,1326,337,749,856,114,77300,85400,14000,2780,120,3.1,0,0,40.2,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1977,6,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,6.7,38,97800,1149,1326,345,904,887,134,92800,88800,15700,4680,120,3.6,1,0,40.2,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1977,6,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,6.1,34,97700,1257,1326,368,882,635,278,93300,64400,32100,19940,170,3.1,7,4,40.2,9140,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1977,6,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,4.4,30,97700,1299,1326,372,897,601,306,94600,60700,34900,30360,260,2.1,8,6,40.2,9140,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1977,6,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,5.0,30,97600,1272,1326,378,652,295,369,72700,32200,41700,26070,300,3.1,8,6,40.2,9140,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1977,6,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,5.6,28,97600,1178,1326,374,906,767,225,96800,78300,27100,11320,240,2.1,8,2,40.2,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1977,6,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,3.9,24,97600,1024,1326,363,783,853,124,83800,86400,16900,3990,220,3.1,1,0,40.2,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1977,6,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,3.9,23,97600,819,1326,366,592,789,105,62500,78900,13700,2510,240,4.1,1,0,40.2,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1977,6,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,1.7,20,97500,578,1326,360,383,705,77,40000,67800,10500,1580,250,4.1,0,0,40.2,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1977,6,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,3.3,25,97500,317,1326,357,168,498,51,17700,41100,7900,960,230,2.1,0,0,40.2,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1977,6,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,4.4,33,97500,68,1005,342,32,100,21,3000,4200,2700,370,260,2.6,0,0,40.2,77777,9,999999999,129,0.1060,0,88,999.000,999.0,99.0 +1977,6,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,5.6,38,97500,0,0,339,0,0,0,0,0,0,0,220,2.1,0,0,32.2,77777,9,999999999,129,0.1930,0,88,999.000,999.0,99.0 +1977,6,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,7.2,47,97600,0,0,333,0,0,0,0,0,0,0,220,2.1,0,0,32.2,77777,9,999999999,139,0.1930,0,88,999.000,999.0,99.0 +1977,6,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.8,54,97600,0,0,326,0,0,0,0,0,0,0,220,2.1,0,0,32.2,77777,9,999999999,139,0.1930,0,88,999.000,999.0,99.0 +1977,6,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.7,52,97600,0,0,322,0,0,0,0,0,0,0,230,2.6,0,0,32.2,77777,9,999999999,150,0.1930,0,88,999.000,999.0,99.0 +1977,6,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.0,50,97600,0,0,316,0,0,0,0,0,0,0,240,3.6,0,0,24.1,77777,9,999999999,150,0.1930,0,88,999.000,999.0,99.0 +1977,6,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.6,52,97500,0,0,316,0,0,0,0,0,0,0,260,3.6,0,0,24.1,77777,9,999999999,160,0.1930,0,88,999.000,999.0,99.0 +1977,6,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.6,52,97500,0,0,316,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,170,0.1930,0,88,999.000,999.0,99.0 +1977,6,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,4.4,51,97500,0,0,310,0,0,0,0,0,0,0,250,3.6,0,0,24.1,77777,9,999999999,170,0.1930,0,88,999.000,999.0,99.0 +1977,6,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.0,55,97500,0,0,314,0,0,0,0,0,0,0,270,3.6,1,1,24.1,77777,9,999999999,179,0.1930,0,88,999.000,999.0,99.0 +1977,6,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.6,60,97600,32,696,312,9,0,9,1100,0,1100,330,260,2.1,1,1,32.2,77777,9,999999999,179,0.4180,0,88,999.000,999.0,99.0 +1977,6,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.7,50,97700,258,1325,325,91,87,74,9900,6700,8600,1590,230,4.1,0,0,40.2,77777,9,999999999,189,0.4180,0,88,999.000,999.0,99.0 +1977,6,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,6.7,39,97700,520,1325,342,265,298,148,28300,29300,16800,3070,260,6.2,0,0,40.2,77777,9,999999999,189,0.4180,0,88,999.000,999.0,99.0 +1977,6,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,7.8,38,97700,767,1325,352,478,452,216,50200,46100,23500,5010,260,6.7,0,0,40.2,77777,9,999999999,189,0.4180,0,88,999.000,999.0,99.0 +1977,6,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,9.4,39,97700,981,1325,361,672,545,267,71600,56700,29500,8210,270,7.2,0,0,40.2,77777,9,999999999,189,0.4180,0,88,999.000,999.0,99.0 +1977,6,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,10.6,36,97700,1148,1325,374,835,613,302,90000,64100,34300,13920,260,6.7,0,0,40.2,77777,9,999999999,189,0.4180,0,88,999.000,999.0,99.0 +1977,6,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,11.1,34,97700,1257,1325,383,938,648,323,98300,65100,36400,22970,260,8.8,0,0,40.2,77777,9,999999999,189,0.4180,0,88,999.000,999.0,99.0 +1977,6,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,12.2,35,97600,1299,1325,397,968,653,327,101700,65700,37200,32460,310,7.7,1,1,40.2,77777,9,999999999,189,0.4180,0,88,999.000,999.0,99.0 +1977,6,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,12.8,35,97600,1273,1325,414,815,357,472,89100,38800,51800,34050,290,7.7,4,4,40.2,77777,9,999999999,179,0.4180,0,88,999.000,999.0,99.0 +1977,6,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.3,37,97600,1179,1325,408,785,461,374,83200,48100,40300,19370,290,7.7,3,3,24.1,77777,9,999999999,179,0.4180,0,88,999.000,999.0,99.0 +1977,6,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.9,39,97600,1025,1325,409,654,447,308,69200,46500,33200,10380,310,8.2,3,3,24.1,77777,9,999999999,179,0.4180,0,88,999.000,999.0,99.0 +1977,6,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,13.9,39,97600,820,1325,405,494,393,252,53500,41900,27500,6390,310,7.7,2,2,24.1,77777,9,999999999,179,0.4180,0,88,999.000,999.0,99.0 +1977,6,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,12.8,38,97600,579,1325,398,303,287,178,32300,29000,19700,3850,320,5.2,6,2,24.1,77777,9,999999999,179,0.4180,0,88,999.000,999.0,99.0 +1977,6,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,12.8,41,97700,319,1325,396,92,61,78,10200,5200,8900,2050,320,5.2,7,3,24.1,77777,9,999999999,179,0.4180,0,88,999.000,999.0,99.0 +1977,6,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,12.2,45,97700,69,1005,368,24,2,24,2700,0,2700,790,340,4.1,1,0,24.1,77777,9,999999999,179,0.4180,0,88,999.000,999.0,99.0 +1977,6,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,6.7,35,97800,0,0,350,0,0,0,0,0,0,0,360,5.2,0,0,24.1,77777,9,999999999,170,0.1930,0,88,999.000,999.0,99.0 +1977,6,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,5.0,34,97900,0,0,343,0,0,0,0,0,0,0,360,4.1,0,0,24.1,77777,9,999999999,170,0.1930,0,88,999.000,999.0,99.0 +1977,6,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,4.4,35,97900,0,0,337,0,0,0,0,0,0,0,360,4.1,0,0,24.1,77777,9,999999999,160,0.1930,0,88,999.000,999.0,99.0 +1977,6,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,4.4,40,97900,0,0,327,0,0,0,0,0,0,0,340,3.6,0,0,24.1,77777,9,999999999,160,0.1930,0,88,999.000,999.0,99.0 +1977,6,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,4.4,48,97900,0,0,315,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,150,0.1940,0,88,999.000,999.0,99.0 +1977,6,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,4.4,48,98000,0,0,315,0,0,0,0,0,0,0,360,2.6,0,0,24.1,77777,9,999999999,150,0.1940,0,88,999.000,999.0,99.0 +1977,6,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.0,64,98000,0,0,299,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,150,0.1940,0,88,999.000,999.0,99.0 +1977,6,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.0,62,98000,0,0,301,0,0,0,0,0,0,0,340,2.6,0,0,24.1,77777,9,999999999,139,0.1940,0,88,999.000,999.0,99.0 +1977,6,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,98100,0,0,304,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,139,0.1940,0,88,999.000,999.0,99.0 +1977,6,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.1,67,98200,33,696,312,9,3,9,1000,200,1000,230,320,2.1,2,2,32.2,77777,9,999999999,129,0.2510,0,88,999.000,999.0,99.0 +1977,6,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.7,62,98200,258,1325,310,97,188,61,10400,13900,7700,1130,290,3.1,1,0,32.2,77777,9,999999999,129,0.2510,0,88,999.000,999.0,99.0 +1977,6,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.3,60,98300,520,1325,321,296,452,119,31400,43200,14500,2300,280,1.5,1,0,24.1,77777,9,999999999,139,0.2510,0,88,999.000,999.0,99.0 +1977,6,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,7.8,44,98200,766,1325,341,517,597,170,53400,59100,19200,3790,180,1.5,2,0,24.1,77777,9,999999999,139,0.2510,0,88,999.000,999.0,99.0 +1977,6,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,6.1,37,98200,981,1325,351,685,617,227,71400,62000,25400,6730,170,1.5,3,1,24.1,77777,9,999999999,150,0.2510,0,88,999.000,999.0,99.0 +1977,6,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,6.1,32,98200,1148,1325,362,834,674,249,88000,68300,28700,11190,240,2.6,3,1,32.2,77777,9,999999999,150,0.2510,0,88,999.000,999.0,99.0 +1977,6,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,3.9,25,98200,1257,1325,360,972,759,250,103600,77400,30000,18060,310,5.2,2,0,40.2,77777,9,999999999,160,0.2510,0,88,999.000,999.0,99.0 +1977,6,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,3.3,22,98200,1299,1325,365,1009,772,250,108000,78900,30500,25170,300,5.7,2,0,40.2,77777,9,999999999,160,0.2510,0,88,999.000,999.0,99.0 +1977,6,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,3.3,19,98100,1273,1325,376,980,760,248,104700,77600,30000,19940,280,5.2,2,0,40.2,77777,9,999999999,170,0.2510,0,88,999.000,999.0,99.0 +1977,6,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,2.2,17,98100,1179,1325,384,839,702,214,89900,71800,25800,10870,320,5.7,2,1,40.2,77777,9,999999999,179,0.2510,0,88,999.000,999.0,99.0 +1977,6,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,1.7,16,98000,1025,1325,386,691,621,210,72900,63000,24000,6900,330,6.2,2,1,40.2,77777,9,999999999,179,0.2510,0,88,999.000,999.0,99.0 +1977,6,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,0.6,15,98000,821,1325,382,527,537,195,56700,55300,22400,4700,300,5.7,2,1,40.2,77777,9,999999999,189,0.2510,0,88,999.000,999.0,99.0 +1977,6,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,0.6,16,98000,581,1325,379,341,479,132,36400,46900,15800,2620,330,5.2,3,1,40.2,77777,9,999999999,189,0.2510,0,88,999.000,999.0,99.0 +1977,6,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,2.2,20,97900,321,1325,366,144,260,81,15300,21400,10100,1540,320,3.1,2,0,40.2,77777,9,999999999,200,0.2510,0,88,999.000,999.0,99.0 +1977,6,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,3.3,25,98000,70,1027,354,26,15,25,2900,900,2800,590,310,3.6,2,0,40.2,77777,9,999999999,200,0.2510,0,88,999.000,999.0,99.0 +1977,6,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,3.9,30,98000,0,0,344,0,0,0,0,0,0,0,330,2.6,0,0,40.2,77777,9,999999999,200,0.1940,0,88,999.000,999.0,99.0 +1977,6,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,3.9,32,98100,0,0,339,0,0,0,0,0,0,0,350,3.6,0,0,40.2,77777,9,999999999,200,0.1940,0,88,999.000,999.0,99.0 +1977,6,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,3.9,32,98100,0,0,339,0,0,0,0,0,0,0,350,0.5,0,0,40.2,77777,9,999999999,209,0.1940,0,88,999.000,999.0,99.0 +1977,6,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.9,34,98100,0,0,337,0,0,0,0,0,0,0,320,2.1,0,0,40.2,77777,9,999999999,209,0.1940,0,88,999.000,999.0,99.0 +1977,6,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,4.4,37,98100,0,0,332,0,0,0,0,0,0,0,340,2.6,0,0,40.2,77777,9,999999999,209,0.1950,0,88,999.000,999.0,99.0 +1977,6,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,4.4,40,98000,0,0,333,0,0,0,0,0,0,0,320,2.1,1,1,32.2,77777,9,999999999,209,0.1950,0,88,999.000,999.0,99.0 +1977,6,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,6.7,54,98000,0,0,326,0,0,0,0,0,0,0,0,0.0,1,1,24.1,77777,9,999999999,209,0.1950,0,88,999.000,999.0,99.0 +1977,6,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,6.7,54,98000,0,0,320,0,0,0,0,0,0,0,20,2.6,0,0,24.1,77777,9,999999999,220,0.1950,0,88,999.000,999.0,99.0 +1977,6,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.2,67,98000,0,0,308,0,0,0,0,0,0,0,310,2.1,0,0,24.1,77777,9,999999999,220,0.1950,0,88,999.000,999.0,99.0 +1977,6,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,5.0,43,98100,33,696,332,16,52,11,1500,1800,1400,190,20,2.6,1,1,32.2,77777,9,999999999,220,0.0850,0,88,999.000,999.0,99.0 +1977,6,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,4.4,36,98100,258,1325,341,127,448,40,13200,34200,6600,750,40,4.1,1,1,32.2,77777,9,999999999,220,0.0850,0,88,999.000,999.0,99.0 +1977,6,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,5.6,35,98100,519,1325,350,317,603,80,33300,57300,10800,1600,50,5.2,1,1,32.2,77777,9,999999999,229,0.0850,0,88,999.000,999.0,99.0 +1977,6,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,7.2,36,98200,766,1325,353,545,796,84,58300,79700,12200,2030,80,5.2,0,0,32.2,77777,9,999999999,229,0.0850,0,88,999.000,999.0,99.0 +1977,6,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,7.2,32,98100,980,1325,361,734,855,100,76100,85400,12800,2660,50,3.6,0,0,32.2,77777,9,999999999,240,0.0850,0,88,999.000,999.0,99.0 +1977,6,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,7.8,30,98100,1148,1325,371,882,887,111,91000,88900,13800,4230,10,2.1,0,0,32.2,77777,9,999999999,250,0.0850,0,88,999.000,999.0,99.0 +1977,6,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,10.0,32,98000,1256,1325,381,971,899,117,100000,90200,14300,7040,10,2.1,0,0,32.2,77777,9,999999999,259,0.0850,0,88,999.000,999.0,99.0 +1977,6,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,12.8,35,98000,1299,1325,394,1012,908,120,104100,91200,14500,10080,340,5.2,0,0,32.2,77777,9,999999999,270,0.0850,0,88,999.000,999.0,99.0 +1977,6,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,13.9,35,97900,1273,1325,408,957,860,130,98400,86300,15300,8530,310,4.1,3,1,32.2,77777,9,999999999,270,0.0850,0,88,999.000,999.0,99.0 +1977,6,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,16.1,38,97800,1180,1325,409,903,881,118,93200,88300,14300,4920,340,7.2,1,0,20.9,77777,9,999999999,279,0.0850,0,88,999.000,999.0,99.0 +1977,6,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,16.1,37,97700,1026,1325,421,720,776,118,77400,78800,16200,3870,330,5.7,4,1,20.9,77777,9,999999999,290,0.0850,0,88,999.000,999.0,99.0 +1977,6,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.6,37,97700,822,1325,422,536,581,176,55900,58000,19800,4190,330,4.1,6,2,20.9,77777,9,999999999,300,0.0850,0,88,999.000,999.0,99.0 +1977,6,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,15.6,37,97600,582,1325,422,317,402,141,33600,39400,16300,2820,350,3.6,7,2,24.1,77777,9,999999999,300,0.0850,0,88,999.000,999.0,99.0 +1977,6,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,15.6,39,97700,322,1325,427,119,160,81,12800,13200,9600,1540,320,2.6,9,5,24.1,9140,9,999999999,309,0.0850,0,88,999.000,999.0,99.0 +1977,6,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.1,48,97700,72,1027,421,31,14,29,3300,800,3200,670,270,2.6,10,7,24.1,9140,9,999999999,309,0.0850,0,88,999.000,999.0,99.0 +1977,6,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.7,53,97700,0,0,407,0,0,0,0,0,0,0,230,2.6,8,5,24.1,9140,9,999999999,309,0.1950,0,88,999.000,999.0,99.0 +1977,6,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,97700,0,0,401,0,0,0,0,0,0,0,240,2.1,8,5,24.1,9140,9,999999999,300,0.1950,0,88,999.000,999.0,99.0 +1977,6,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.7,58,97600,0,0,402,0,0,0,0,0,0,0,240,3.6,8,6,24.1,9140,9,999999999,300,0.1950,0,88,999.000,999.0,99.0 +1977,6,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,97800,0,0,418,0,0,0,0,0,0,0,360,6.7,10,10,6.4,6100,9,999999999,300,0.1950,0,88,999.000,999.0,99.0 +1977,6,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,97700,0,0,412,0,0,0,0,0,0,0,180,3.1,10,10,6.4,1220,9,999999999,300,0.1960,0,88,999.000,999.0,99.0 +1977,6,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,97600,0,0,412,0,0,0,0,0,0,0,200,2.1,10,10,11.3,1220,9,999999999,300,0.1960,0,88,999.000,999.0,99.0 +1977,6,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,97500,0,0,411,0,0,0,0,0,0,0,230,2.6,10,10,11.3,1070,9,999999999,300,0.1960,0,88,999.000,999.0,99.0 +1977,6,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,97500,0,0,411,0,0,0,0,0,0,0,80,2.1,10,10,11.3,910,9,999999999,300,0.1960,0,88,999.000,999.0,99.0 +1977,6,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,97600,0,0,415,0,0,0,0,0,0,0,180,2.1,10,10,16.1,1070,9,999999999,290,0.1960,0,88,999.000,999.0,99.0 +1977,6,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,97700,33,695,395,12,2,12,1400,0,1400,430,180,3.6,9,8,11.3,7620,9,999999999,290,0.0930,0,88,999.000,999.0,99.0 +1977,6,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,97700,258,1325,389,104,74,90,11400,6000,10200,2100,200,2.1,8,7,9.7,7620,9,999999999,290,0.0930,0,88,999.000,999.0,99.0 +1977,6,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,97700,519,1325,387,231,269,125,24900,26500,14500,2510,250,5.2,7,3,9.7,77777,9,999999999,290,0.0930,0,88,999.000,999.0,99.0 +1977,6,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,97800,766,1325,390,512,700,106,54800,70900,13800,2520,270,5.2,3,1,11.3,77777,9,999999999,290,0.0930,0,88,999.000,999.0,99.0 +1977,6,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,97800,980,1325,398,724,826,111,74700,82400,13600,2750,270,6.7,1,0,11.3,77777,9,999999999,290,0.0930,0,88,999.000,999.0,99.0 +1977,6,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,97800,1147,1325,403,873,872,117,90100,87400,14200,4360,280,5.2,0,0,11.3,77777,9,999999999,290,0.0930,0,88,999.000,999.0,99.0 +1977,6,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,97700,1256,1325,409,976,897,124,100400,90000,14800,7350,270,5.7,0,0,12.9,77777,9,999999999,290,0.0930,0,88,999.000,999.0,99.0 +1977,6,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,97700,1299,1325,434,921,636,296,97500,64400,34200,29780,290,4.1,4,4,16.1,77777,9,999999999,290,0.0930,0,88,999.000,999.0,99.0 +1977,6,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,97600,1273,1325,430,890,693,223,95900,71100,27400,18140,300,3.1,3,3,16.1,77777,9,999999999,290,0.0930,0,88,999.000,999.0,99.0 +1977,6,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.3,41,97600,1180,1325,443,884,676,281,92800,68200,31900,14060,280,4.6,5,5,24.1,77777,9,999999999,290,0.0930,0,88,999.000,999.0,99.0 +1977,6,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,16.7,37,97500,1027,1325,438,615,476,246,66700,49700,28100,8210,250,7.2,4,4,24.1,77777,9,999999999,290,0.0930,0,88,999.000,999.0,99.0 +1977,6,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.2,41,97500,823,1325,435,515,574,159,54200,57700,18300,3850,250,5.7,5,5,24.1,77777,9,999999999,290,0.0930,0,88,999.000,999.0,99.0 +1977,6,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.2,42,97500,583,1325,433,269,262,154,29100,26500,17400,3240,260,2.6,5,5,24.1,77777,9,999999999,290,0.0930,0,88,999.000,999.0,99.0 +1977,6,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,97500,324,1325,419,169,432,64,17400,35500,8700,1160,260,3.6,2,2,24.1,77777,9,999999999,290,0.0930,0,88,999.000,999.0,99.0 +1977,6,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,97500,73,1027,392,34,124,21,3200,5400,2800,370,230,3.1,0,0,24.1,77777,9,999999999,290,0.0930,0,88,999.000,999.0,99.0 +1977,6,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,62,97600,0,0,384,0,0,0,0,0,0,0,230,2.6,0,0,19.3,77777,9,999999999,300,0.1960,0,88,999.000,999.0,99.0 +1977,6,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,97600,0,0,379,0,0,0,0,0,0,0,240,3.1,0,0,12.9,77777,9,999999999,300,0.1960,0,88,999.000,999.0,99.0 +1977,6,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,97700,0,0,371,0,0,0,0,0,0,0,0,0.0,0,0,12.9,77777,9,999999999,300,0.1960,0,88,999.000,999.0,99.0 +1977,6,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,97700,0,0,369,0,0,0,0,0,0,0,260,2.1,3,0,12.9,77777,9,999999999,309,0.1960,0,88,999.000,999.0,99.0 +1977,6,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,97700,0,0,391,0,0,0,0,0,0,0,280,2.6,5,5,16.1,77777,9,999999999,309,0.1970,0,88,999.000,999.0,99.0 +1977,6,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,97700,0,0,382,0,0,0,0,0,0,0,230,3.1,5,4,16.1,77777,9,999999999,309,0.1970,0,88,999.000,999.0,99.0 +1977,6,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,97700,0,0,379,0,0,0,0,0,0,0,240,3.1,5,4,16.1,77777,9,999999999,320,0.1970,0,88,999.000,999.0,99.0 +1977,6,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,97700,0,0,385,0,0,0,0,0,0,0,230,3.6,6,6,16.1,7620,9,999999999,320,0.1970,0,88,999.000,999.0,99.0 +1977,6,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,97700,0,0,364,0,0,0,0,0,0,0,270,3.6,4,2,16.1,77777,9,999999999,320,0.1970,0,88,999.000,999.0,99.0 +1977,6,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.8,87,97800,32,695,361,10,14,9,1100,600,1100,180,280,4.1,2,2,11.3,77777,9,999999999,329,0.1310,0,88,999.000,999.0,99.0 +1977,6,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,97800,257,1324,361,118,350,49,12000,26400,6900,880,290,3.6,0,0,11.3,77777,9,999999999,329,0.1310,0,88,999.000,999.0,99.0 +1977,6,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,97900,519,1324,375,317,603,80,33300,57300,10800,1600,300,3.1,0,0,11.3,77777,9,999999999,340,0.1310,0,88,999.000,999.0,99.0 +1977,6,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,97900,765,1324,387,527,723,108,54800,71600,13400,2380,280,1.5,0,0,11.3,77777,9,999999999,340,0.1310,0,88,999.000,999.0,99.0 +1977,6,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,97900,979,1324,401,716,792,128,75700,79900,16500,3730,210,2.1,0,0,11.3,77777,9,999999999,350,0.1310,0,88,999.000,999.0,99.0 +1977,6,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,98000,1147,1324,411,866,833,142,92600,84500,19200,6190,310,2.6,0,0,11.3,77777,9,999999999,350,0.1310,0,88,999.000,999.0,99.0 +1977,6,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,98000,1256,1324,413,965,856,151,98600,85700,17100,8440,310,3.1,0,0,16.1,77777,9,999999999,359,0.1310,0,88,999.000,999.0,99.0 +1977,6,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.8,40,97900,1299,1324,431,936,700,247,100200,71600,29900,25080,170,2.1,2,2,16.1,77777,9,999999999,370,0.1310,0,88,999.000,999.0,99.0 +1977,6,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,17.2,37,97900,1274,1324,434,865,661,228,93000,67800,27700,18590,360,1.5,2,2,16.1,77777,9,999999999,370,0.1310,0,88,999.000,999.0,99.0 +1977,6,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,16.7,38,97800,1181,1324,447,488,195,314,54400,21300,35400,14740,180,1.5,7,7,19.3,1520,9,999999999,379,0.1310,0,88,999.000,999.0,99.0 +1977,6,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,97800,1028,1324,453,686,453,335,72100,47000,35500,11460,340,4.1,8,8,19.3,1520,9,999999999,379,0.1310,0,88,999.000,999.0,99.0 +1977,6,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.8,41,97700,824,1324,456,371,85,318,40700,8700,35300,10120,250,3.1,8,8,19.3,3050,9,999999999,390,0.1310,0,88,999.000,999.0,99.0 +1977,6,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.2,41,97700,585,1324,429,304,377,138,32300,37000,16000,2760,160,5.2,6,3,19.3,77777,9,999999999,390,0.1310,0,88,999.000,999.0,99.0 +1977,6,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,97800,325,1324,425,129,176,86,13700,14600,10100,1650,160,3.1,10,4,19.3,77777,9,999999999,400,0.1310,0,88,999.000,999.0,99.0 +1977,6,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,97900,74,1048,422,26,8,26,2900,500,2900,610,240,3.1,9,5,19.3,7620,9,999999999,409,0.1310,0,88,999.000,999.0,99.0 +1977,6,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,97900,0,0,419,0,0,0,0,0,0,0,160,3.1,9,6,19.3,7620,9,999999999,409,0.1970,0,88,999.000,999.0,99.0 +1977,6,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,98000,0,0,445,0,0,0,0,0,0,0,160,2.1,10,10,19.3,1520,9,999999999,419,0.1970,0,88,999.000,999.0,99.0 +1977,6,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,98100,0,0,409,0,0,0,0,0,0,0,10,3.6,8,6,19.3,7620,9,999999999,419,0.1970,0,88,999.000,999.0,99.0 +1977,6,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.7,58,98100,0,0,392,0,0,0,0,0,0,0,320,5.7,4,3,19.3,77777,9,999999999,430,0.1970,0,88,999.000,999.0,99.0 +1977,6,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.7,58,98100,0,0,376,0,0,0,0,0,0,0,330,5.7,2,0,16.1,77777,9,999999999,430,0.1970,0,88,999.000,999.0,99.0 +1977,6,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,98100,0,0,368,0,0,0,0,0,0,0,330,5.2,3,0,16.1,77777,9,999999999,440,0.1970,0,88,999.000,999.0,99.0 +1977,6,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,98100,0,0,385,0,0,0,0,0,0,0,10,4.1,7,5,16.1,9140,9,999999999,450,0.1970,0,88,999.000,999.0,99.0 +1977,6,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,98100,0,0,388,0,0,0,0,0,0,0,20,2.1,8,7,16.1,9140,9,999999999,450,0.1970,0,88,999.000,999.0,99.0 +1977,6,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,98200,0,0,414,0,0,0,0,0,0,0,90,2.6,10,10,16.1,9140,9,999999999,459,0.1970,0,88,999.000,999.0,99.0 +1977,6,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,98200,32,695,414,7,0,7,800,0,800,270,70,4.1,10,10,11.3,4570,9,999999999,459,0.2750,0,88,999.000,999.0,99.0 +1977,6,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,98200,257,1324,406,70,9,68,7800,300,7700,2320,80,2.6,10,9,9.7,3660,9,999999999,469,0.2750,0,88,999.000,999.0,99.0 +1977,6,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,98200,518,1324,409,143,28,132,15700,2700,14700,3820,110,4.1,10,9,11.3,3660,9,999999999,459,0.2750,0,88,999.000,999.0,99.0 +1977,6,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,98300,765,1324,407,308,79,263,33900,8000,29300,8260,110,4.1,10,7,11.3,3660,9,999999999,459,0.2750,0,88,999.000,999.0,99.0 +1977,6,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,98300,979,1324,416,392,113,308,43200,12000,34300,9890,150,3.6,10,8,11.3,3660,9,999999999,450,0.2750,0,88,999.000,999.0,99.0 +1977,6,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,98300,1146,1324,423,581,220,390,64100,23500,43700,16550,0,0.0,9,7,11.3,7620,9,999999999,440,0.2750,0,88,999.000,999.0,99.0 +1977,6,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,98300,1256,1324,419,905,494,435,95400,51500,46400,32490,320,3.1,9,4,11.3,77777,9,999999999,440,0.2750,0,88,999.000,999.0,99.0 +1977,6,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,98300,1299,1324,447,619,119,502,68000,12700,55600,39890,270,2.6,10,9,11.3,4270,9,999999999,430,0.2750,0,88,999.000,999.0,99.0 +1977,6,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,98200,1274,1324,465,434,6,428,51200,600,50600,18500,270,2.6,10,10,11.3,4270,9,999999999,419,0.2750,0,88,999.000,999.0,99.0 +1977,6,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,98200,1181,1324,466,323,16,309,38600,1400,37400,14370,320,4.6,10,10,11.3,4270,9,999999999,419,0.2750,0,88,999.000,999.0,99.0 +1977,6,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,98200,1028,1324,469,262,9,256,31200,800,30600,11990,320,3.6,10,10,11.3,4270,9,999999999,409,0.2750,0,88,999.000,999.0,99.0 +1977,6,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.2,45,98200,825,1324,464,226,7,221,26200,600,25800,9670,340,6.2,10,10,16.1,7620,9,999999999,400,0.2750,0,88,999.000,999.0,99.0 +1977,6,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.1,43,98200,586,1324,446,170,65,141,18700,6300,15900,4270,320,3.1,9,9,19.3,7620,9,999999999,400,0.2750,0,88,999.000,999.0,99.0 +1977,6,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.1,48,98200,327,1324,436,98,15,94,10900,800,10700,3230,320,5.2,9,9,24.1,7620,9,999999999,390,0.2750,0,88,999.000,999.0,99.0 +1977,6,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,16.7,51,98200,75,1048,447,16,0,15,1700,0,1700,550,340,3.6,10,10,24.1,4270,9,999999999,390,0.2750,0,88,999.000,999.0,99.0 +1977,6,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,62,98300,0,0,443,0,0,0,0,0,0,0,20,5.2,10,10,24.1,3660,9,999999999,390,0.1970,0,88,999.000,999.0,99.0 +1977,6,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,98300,0,0,434,0,0,0,0,0,0,0,360,5.2,10,10,24.1,3660,9,999999999,390,0.1970,0,88,999.000,999.0,99.0 +1977,6,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,98400,0,0,415,0,0,0,0,0,0,0,360,5.2,10,9,19.3,7620,9,999999999,390,0.1970,0,88,999.000,999.0,99.0 +1977,6,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,16.1,62,98400,0,0,412,0,0,0,0,0,0,0,10,3.6,10,9,19.3,9140,9,999999999,390,0.1970,0,88,999.000,999.0,99.0 +1977,6,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.7,66,98400,0,0,421,0,0,0,0,0,0,0,10,3.6,10,10,19.3,9140,9,999999999,400,0.1980,0,88,999.000,999.0,99.0 +1977,6,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,98300,0,0,411,0,0,0,0,0,0,0,310,1.5,10,10,19.3,3660,9,999999999,400,0.1980,0,88,999.000,999.0,99.0 +1977,6,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,98300,0,0,415,0,0,0,0,0,0,0,350,1.5,10,10,19.3,3350,9,999999999,400,0.1980,0,88,999.000,999.0,99.0 +1977,6,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,98300,0,0,415,0,0,0,0,0,0,0,350,3.1,10,10,19.3,3350,9,999999999,400,0.1980,0,88,999.000,999.0,99.0 +1977,6,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,98200,0,0,414,0,0,0,0,0,0,0,360,5.2,10,10,19.3,2740,9,999999999,400,0.1980,0,88,999.000,999.0,99.0 +1977,6,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,98300,32,695,414,11,0,11,1300,0,1300,400,350,4.1,10,10,19.3,3350,9,999999999,400,0.1110,0,88,999.000,999.0,99.0 +1977,6,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,98300,256,1324,415,79,3,79,8800,100,8700,2550,310,2.1,10,10,19.3,3350,9,999999999,400,0.1110,0,88,999.000,999.0,99.0 +1977,6,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,98400,518,1324,404,201,46,182,21900,4400,20200,4900,290,2.6,10,9,19.3,7620,9,999999999,400,0.1110,0,88,999.000,999.0,99.0 +1977,6,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,98400,764,1324,428,260,48,232,28600,4800,25800,7470,320,3.6,10,10,24.1,3050,9,999999999,400,0.1110,0,88,999.000,999.0,99.0 +1977,6,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,98400,978,1324,428,292,18,279,34200,1600,33000,12520,320,4.1,10,10,24.1,3050,9,999999999,409,0.1110,0,88,999.000,999.0,99.0 +1977,6,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,98400,1146,1324,417,544,209,363,59800,22700,40100,15610,300,3.6,10,8,24.1,3050,9,999999999,409,0.1110,0,88,999.000,999.0,99.0 +1977,6,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,98400,1255,1324,442,335,8,327,40200,700,39600,15230,260,4.1,10,10,24.1,3050,9,999999999,409,0.1110,0,88,999.000,999.0,99.0 +1977,6,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,98400,1299,1324,442,364,19,345,43800,1700,42200,15990,270,5.2,10,10,24.1,3660,9,999999999,409,0.1110,0,88,999.000,999.0,99.0 +1977,6,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,98300,1274,1324,442,386,3,383,45900,300,45700,17150,270,4.1,10,10,24.1,3660,9,999999999,409,0.1110,0,88,999.000,999.0,99.0 +1977,6,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,98300,1182,1324,440,371,5,367,43800,500,43400,16280,300,3.6,10,10,24.1,3660,9,999999999,409,0.1110,0,88,999.000,999.0,99.0 +1977,6,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,98200,1029,1324,440,331,8,325,38600,700,38000,14270,300,5.2,10,10,24.1,3660,9,999999999,419,0.1110,0,88,999.000,999.0,99.0 +1977,6,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,98200,826,1324,440,266,5,263,30500,400,30200,10930,320,5.2,10,10,24.1,3660,9,999999999,419,0.1110,0,88,999.000,999.0,99.0 +1977,6,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,98100,587,1324,424,187,57,162,20600,5600,18100,4790,320,4.6,9,9,24.1,3660,9,999999999,419,0.1110,0,88,999.000,999.0,99.0 +1977,6,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,98100,328,1324,408,127,84,107,13800,7100,12000,2340,290,4.1,8,8,24.1,7620,9,999999999,419,0.1110,0,88,999.000,999.0,99.0 +1977,6,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,98200,76,1070,422,10,1,9,1100,0,1100,350,300,2.6,10,10,24.1,3660,9,999999999,419,0.1110,0,88,999.000,999.0,99.0 +1977,6,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,98200,0,0,419,0,0,0,0,0,0,0,280,3.1,10,10,24.1,3660,9,999999999,430,0.1980,0,88,999.000,999.0,99.0 +1977,6,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,98300,0,0,416,0,0,0,0,0,0,0,290,3.6,10,10,24.1,3660,9,999999999,430,0.1980,0,88,999.000,999.0,99.0 +1977,6,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,98300,0,0,414,0,0,0,0,0,0,0,320,4.1,10,10,24.1,3660,9,999999999,430,0.1980,0,88,999.000,999.0,99.0 +1977,6,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,98200,0,0,414,0,0,0,0,0,0,0,320,5.7,10,10,24.1,3660,9,999999999,430,0.1980,0,88,999.000,999.0,99.0 +1977,6,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98200,0,0,412,0,0,0,0,0,0,0,270,3.6,10,10,12.9,3660,9,999999999,430,0.1990,0,88,999.000,999.0,99.0 +1977,6,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98200,0,0,412,0,0,0,0,0,0,0,310,5.7,10,10,11.3,3350,9,999999999,440,0.1990,0,88,999.000,999.0,99.0 +1977,6,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98100,0,0,412,0,0,0,0,0,0,0,330,3.6,10,10,9.7,3350,9,999999999,440,0.1990,0,88,999.000,999.0,99.0 +1977,6,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,98100,0,0,409,0,0,0,0,0,0,0,310,3.6,10,10,9.7,3350,9,999999999,440,0.1990,0,88,999.000,999.0,99.0 +1977,6,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,98100,0,0,370,0,0,0,0,0,0,0,320,3.6,4,3,9.7,77777,9,999999999,440,0.1990,0,88,999.000,999.0,99.0 +1977,6,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98100,32,695,375,12,3,12,1400,0,1400,430,320,6.2,9,4,6.4,77777,9,999999999,450,0.1960,0,88,999.000,999.0,99.0 +1977,6,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98200,256,1324,416,56,50,47,6300,3900,5600,1010,290,2.1,10,10,6.4,3350,9,999999999,450,0.1960,0,88,999.000,999.0,99.0 +1977,6,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,98200,517,1324,402,187,76,157,20500,7300,17600,4380,360,2.6,10,8,6.4,7620,9,999999999,450,0.1960,0,88,999.000,999.0,99.0 +1977,6,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,98300,763,1324,407,419,257,270,45500,26800,30100,7140,60,2.6,10,7,6.4,7620,9,999999999,450,0.1960,0,88,999.000,999.0,99.0 +1977,6,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,98300,978,1324,409,587,362,318,63600,39100,34700,9790,220,2.1,9,6,6.4,7620,9,999999999,450,0.1960,0,88,999.000,999.0,99.0 +1977,6,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,98300,1145,1324,451,349,61,296,38600,6200,33200,13710,240,1.0,10,10,6.4,7620,9,999999999,450,0.1960,0,88,999.000,999.0,99.0 +1977,6,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,98300,1255,1324,449,335,7,329,40300,600,39700,15300,310,3.6,10,10,8.0,7620,9,999999999,450,0.1960,0,88,999.000,999.0,99.0 +1977,6,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,98200,1299,1324,433,732,275,462,80400,29900,51000,41380,280,5.2,9,7,8.0,3660,9,999999999,440,0.1960,0,88,999.000,999.0,99.0 +1977,6,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,98200,1274,1324,443,523,161,368,58500,17300,41900,24510,270,4.6,9,9,8.0,3660,9,999999999,440,0.1960,0,88,999.000,999.0,99.0 +1977,6,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,98200,1182,1324,438,465,112,365,51700,12000,41000,16970,320,4.1,9,9,8.0,3660,9,999999999,440,0.1960,0,88,999.000,999.0,99.0 +1977,6,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,98100,1030,1324,456,437,59,391,48100,6100,43400,14840,340,3.6,9,9,8.0,3660,9,999999999,440,0.1960,0,88,999.000,999.0,99.0 +1977,6,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,98100,827,1324,449,335,102,271,36800,10400,30400,8970,320,3.1,9,9,8.0,3660,9,999999999,440,0.1960,0,88,999.000,999.0,99.0 +1977,6,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,98100,588,1324,438,271,92,230,29700,9100,25600,6260,340,3.6,9,9,8.0,3660,9,999999999,440,0.1960,0,88,999.000,999.0,99.0 +1977,6,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,98200,329,1324,426,66,17,62,7300,1500,6900,1710,70,5.7,9,9,9.7,7620,9,999999999,440,0.1960,0,88,999.000,999.0,99.0 +1977,6,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,98200,77,1070,431,19,1,19,2200,0,2200,670,140,3.6,10,10,9.7,3660,9,999999999,440,0.1960,0,88,999.000,999.0,99.0 +1977,6,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,98200,0,0,428,0,0,0,0,0,0,0,120,4.1,10,10,9.7,3660,9,999999999,440,0.1990,0,88,999.000,999.0,99.0 +1977,6,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,98300,0,0,424,0,0,0,0,0,0,0,120,4.1,10,10,9.7,3660,9,999999999,440,0.1990,0,88,999.000,999.0,99.0 +1977,6,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,98300,0,0,421,0,0,0,0,0,0,0,130,2.1,10,10,9.7,3350,9,999999999,450,0.1990,0,88,999.000,999.0,99.0 +1977,6,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,98200,0,0,416,0,0,0,0,0,0,0,130,2.1,10,10,9.7,3050,9,999999999,450,0.1990,0,88,999.000,999.0,99.0 +1977,6,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,98200,0,0,418,0,0,0,0,0,0,0,0,0.0,10,10,9.7,3050,9,999999999,450,0.1990,0,88,999.000,999.0,99.0 +1977,6,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,98200,0,0,372,0,0,0,0,0,0,0,100,2.1,6,4,9.7,7620,9,999999999,450,0.1990,0,88,999.000,999.0,99.0 +1977,6,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,19.4,97,98200,0,0,358,0,0,0,0,0,0,0,90,2.6,4,1,6.4,77777,9,999999999,450,0.1990,0,88,999.000,999.0,99.0 +1977,6,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,98200,0,0,406,0,0,0,0,0,0,0,110,3.1,10,10,2.4,60,9,999999999,459,0.1990,0,88,999.000,999.0,99.0 +1977,6,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,98200,0,0,406,0,0,0,0,0,0,0,90,2.1,10,10,0.8,60,9,999999999,459,0.1990,0,88,999.000,999.0,99.0 +1977,6,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,98200,32,695,406,7,0,7,800,0,800,270,90,3.1,10,10,1.6,60,9,999999999,459,0.2240,0,88,999.000,999.0,99.0 +1977,6,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,98200,255,1323,410,54,5,53,6100,100,6100,1940,100,3.1,10,10,4.8,150,9,999999999,459,0.2240,0,88,999.000,999.0,99.0 +1977,6,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98200,516,1323,396,233,216,149,24900,21200,16600,3100,100,3.1,8,8,4.8,5490,9,999999999,459,0.2240,0,88,999.000,999.0,99.0 +1977,6,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,98200,763,1323,404,356,186,249,39000,19400,27800,6580,140,1.5,8,7,8.0,5490,9,999999999,450,0.2240,0,88,999.000,999.0,99.0 +1977,6,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,98200,977,1323,420,508,173,379,55200,18300,41600,12150,160,1.5,8,7,12.9,5490,9,999999999,450,0.2240,0,88,999.000,999.0,99.0 +1977,6,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,98200,1145,1323,414,753,476,340,80200,49700,37100,15690,100,1.5,8,4,12.9,77777,9,999999999,450,0.2240,0,88,999.000,999.0,99.0 +1977,6,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,98200,1255,1323,445,577,72,509,63700,7500,56600,27920,240,1.5,10,9,12.9,3050,9,999999999,440,0.2240,0,88,999.000,999.0,99.0 +1977,6,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,98200,1299,1323,450,626,182,447,69300,19500,50200,35620,240,2.1,10,9,12.9,1010,9,999999999,440,0.2240,0,88,999.000,999.0,99.0 +1977,6,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,98100,1274,1323,453,642,131,516,70300,13900,56900,34450,220,3.1,10,9,12.9,3050,9,999999999,440,0.2240,0,88,999.000,999.0,99.0 +1977,6,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,98100,1183,1323,427,437,100,348,48800,10700,39200,16200,320,5.2,9,9,11.3,1070,9,999999999,430,0.2240,0,88,999.000,999.0,99.0 +1977,6,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,98100,1030,1323,428,420,65,369,46300,6700,41000,14180,140,3.6,9,9,16.1,1070,9,999999999,430,0.2240,0,88,999.000,999.0,99.0 +1977,6,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,84,98100,828,1323,426,144,7,140,17400,500,17100,6740,60,2.6,10,10,16.1,1070,9,999999999,430,0.2240,0,88,999.000,999.0,99.0 +1977,6,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,98100,589,1323,422,176,26,164,19300,2500,18200,4850,70,2.1,10,10,12.9,1070,9,999999999,419,0.2240,0,88,999.000,999.0,99.0 +1977,6,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,98100,331,1323,421,81,0,81,9100,0,9100,2940,70,3.6,10,10,11.3,1070,9,999999999,419,0.2240,0,88,999.000,999.0,99.0 +1977,6,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,98100,78,1070,421,9,0,9,1100,0,1100,350,140,3.1,10,10,11.3,1070,9,999999999,419,0.2240,0,88,999.000,999.0,99.0 +1977,6,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.1,97,98200,0,0,417,0,0,0,0,0,0,0,270,3.6,10,10,9.7,1070,9,999999999,430,0.1990,0,88,999.000,999.0,99.0 +1977,6,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98200,0,0,417,0,0,0,0,0,0,0,230,3.1,10,10,11.3,1220,9,999999999,430,0.1990,0,88,999.000,999.0,99.0 +1977,6,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,98200,0,0,412,0,0,0,0,0,0,0,210,6.2,10,10,12.9,1370,9,999999999,430,0.1990,0,88,999.000,999.0,99.0 +1977,6,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,98200,0,0,412,0,0,0,0,0,0,0,210,3.1,10,10,12.9,3350,9,999999999,440,0.1990,0,88,999.000,999.0,99.0 +1977,6,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,98100,0,0,412,0,0,0,0,0,0,0,220,2.6,10,10,12.9,3660,9,999999999,440,0.2000,0,88,999.000,999.0,99.0 +1977,6,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,98000,0,0,410,0,0,0,0,0,0,0,0,0.0,10,10,12.9,3660,9,999999999,440,0.2000,0,88,999.000,999.0,99.0 +1977,6,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,98000,0,0,410,0,0,0,0,0,0,0,260,2.1,10,10,12.9,1370,9,999999999,450,0.2000,0,88,999.000,999.0,99.0 +1977,6,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,19.4,97,98000,0,0,406,0,0,0,0,0,0,0,230,1.5,10,10,12.9,1680,9,999999999,450,0.2000,0,88,999.000,999.0,99.0 +1977,6,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,19.4,97,98000,0,0,406,0,0,0,0,0,0,0,240,1.5,10,10,12.9,1680,9,999999999,450,0.2000,0,88,999.000,999.0,99.0 +1977,6,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,98100,31,695,402,11,1,11,1300,0,1300,400,0,0.0,10,10,12.9,3660,9,999999999,459,0.1000,0,88,999.000,999.0,99.0 +1977,6,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,19.4,97,98100,255,1323,406,61,2,61,6900,100,6900,2150,260,3.1,10,10,12.9,3660,9,999999999,459,0.1000,0,88,999.000,999.0,99.0 +1977,6,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,98200,515,1323,409,156,2,155,17500,100,17500,5770,250,4.1,10,10,12.9,3660,9,999999999,459,0.1000,0,88,999.000,999.0,99.0 +1977,6,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98200,762,1323,416,229,0,228,26100,0,26100,9450,280,5.7,10,10,11.3,3660,9,999999999,450,0.1000,0,88,999.000,999.0,99.0 +1977,6,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,98200,976,1323,433,387,3,385,44100,300,43900,15410,320,5.2,10,10,12.9,3660,9,999999999,450,0.1000,0,88,999.000,999.0,99.0 +1977,6,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,22.2,77,98200,1144,1323,448,412,1,412,48000,100,47900,17380,290,3.1,10,10,12.9,3660,9,999999999,450,0.1000,0,88,999.000,999.0,99.0 +1977,6,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.2,74,98200,1254,1323,438,660,222,449,72800,23700,50300,27030,280,3.6,10,9,12.9,3660,9,999999999,440,0.1000,0,88,999.000,999.0,99.0 +1977,6,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.7,67,98100,1298,1323,423,787,465,330,85900,48700,37900,34530,320,3.6,8,6,12.9,7620,9,999999999,440,0.1000,0,88,999.000,999.0,99.0 +1977,6,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,98000,1274,1323,433,750,326,435,82500,35500,48200,31970,260,3.1,8,7,12.9,3660,9,999999999,440,0.1000,0,88,999.000,999.0,99.0 +1977,6,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,98000,1183,1323,460,479,106,383,52900,11300,42800,17870,300,3.1,9,9,12.9,3660,9,999999999,430,0.1000,0,88,999.000,999.0,99.0 +1977,6,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.6,52,97900,1031,1323,463,415,80,353,45800,8200,39400,13690,240,5.2,9,9,12.9,1370,9,999999999,430,0.1000,0,88,999.000,999.0,99.0 +1977,6,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,22.8,72,97900,829,1323,446,282,154,186,31700,16300,21400,5160,0,0.0,9,9,11.3,1220,9,999999999,430,0.1000,0,88,999.000,999.0,99.0 +1977,6,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,97900,590,1323,435,129,77,95,14700,7800,11200,2280,120,5.2,9,9,24.1,1220,9,999999999,419,0.1000,0,88,999.000,999.0,99.0 +1977,6,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,97900,332,1323,402,107,184,61,11700,15500,7800,1100,240,5.2,5,5,24.1,77777,9,999999999,419,0.1000,0,88,999.000,999.0,99.0 +1977,6,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,97900,79,1069,393,27,24,24,2800,1400,2700,580,220,3.6,4,4,16.1,77777,9,999999999,419,0.1000,0,88,999.000,999.0,99.0 +1977,6,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,97900,0,0,385,0,0,0,0,0,0,0,230,3.6,4,4,16.1,77777,9,999999999,419,0.2000,0,88,999.000,999.0,99.0 +1977,6,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98000,0,0,382,0,0,0,0,0,0,0,220,2.1,3,3,12.9,77777,9,999999999,419,0.2000,0,88,999.000,999.0,99.0 +1977,6,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,98000,0,0,370,0,0,0,0,0,0,0,250,2.6,3,1,12.9,77777,9,999999999,419,0.2000,0,88,999.000,999.0,99.0 +1977,6,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98000,0,0,367,0,0,0,0,0,0,0,280,3.6,3,1,12.9,77777,9,999999999,419,0.2000,0,88,999.000,999.0,99.0 +1977,6,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,97900,0,0,364,0,0,0,0,0,0,0,250,2.6,2,1,12.9,77777,9,999999999,419,0.2010,0,88,999.000,999.0,99.0 +1977,6,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,97900,0,0,366,0,0,0,0,0,0,0,270,3.1,4,2,11.3,77777,9,999999999,419,0.2010,0,88,999.000,999.0,99.0 +1977,6,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,98000,0,0,366,0,0,0,0,0,0,0,250,1.5,5,2,11.3,77777,9,999999999,419,0.2010,0,88,999.000,999.0,99.0 +1977,6,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,98000,0,0,383,0,0,0,0,0,0,0,280,3.6,8,7,11.3,2740,9,999999999,419,0.2010,0,88,999.000,999.0,99.0 +1977,6,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,98000,0,0,393,0,0,0,0,0,0,0,280,2.6,8,8,8.0,7620,9,999999999,419,0.2010,0,88,999.000,999.0,99.0 +1977,6,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,98000,31,695,383,14,11,13,1500,600,1500,320,280,3.1,8,7,11.3,7620,9,999999999,419,0.0810,0,88,999.000,999.0,99.0 +1977,6,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98100,254,1323,386,86,65,73,9300,5000,8300,1570,270,6.2,9,7,11.3,7620,9,999999999,419,0.0810,0,88,999.000,999.0,99.0 +1977,6,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,98100,515,1323,385,299,457,120,31500,43600,14600,2320,270,3.1,8,4,17.7,77777,9,999999999,419,0.0810,0,88,999.000,999.0,99.0 +1977,6,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,98100,761,1323,390,449,486,168,48300,49700,19600,3790,320,4.6,6,3,24.1,77777,9,999999999,419,0.0810,0,88,999.000,999.0,99.0 +1977,6,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,98100,976,1323,411,675,680,172,71700,69300,20500,5240,310,4.6,5,3,24.1,77777,9,999999999,409,0.0810,0,88,999.000,999.0,99.0 +1977,6,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,98000,1144,1323,421,712,553,232,75400,56300,26600,10410,240,6.2,6,5,40.2,7620,9,999999999,409,0.0810,0,88,999.000,999.0,99.0 +1977,6,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.7,48,98000,1254,1323,416,737,459,300,80600,48100,34900,22030,270,5.2,8,5,32.2,7620,9,999999999,409,0.0810,0,88,999.000,999.0,99.0 +1977,6,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,98000,1298,1323,427,976,706,282,103700,71700,33200,28680,290,6.7,8,5,32.2,7620,9,999999999,409,0.0810,0,88,999.000,999.0,99.0 +1977,6,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,98000,1274,1323,436,976,668,331,102200,67100,37400,26910,300,6.2,7,5,32.2,7620,9,999999999,400,0.0810,0,88,999.000,999.0,99.0 +1977,6,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,97900,1183,1323,445,493,262,259,55900,28600,30200,12120,270,5.2,7,7,32.2,7620,9,999999999,400,0.0810,0,88,999.000,999.0,99.0 +1977,6,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.0,48,97800,1032,1323,448,686,583,231,71900,58800,25900,7640,300,4.1,7,7,32.2,7620,9,999999999,400,0.0810,0,88,999.000,999.0,99.0 +1977,6,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.8,44,97800,830,1323,437,520,446,241,54800,45800,26000,5990,280,5.2,6,6,32.2,7620,9,999999999,400,0.0810,0,88,999.000,999.0,99.0 +1977,6,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,97800,591,1323,436,306,280,181,32700,28400,20000,3930,270,5.7,7,7,32.2,7620,9,999999999,390,0.0810,0,88,999.000,999.0,99.0 +1977,6,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,97800,333,1323,421,146,244,85,15600,20500,10400,1620,270,3.6,5,5,32.2,77777,9,999999999,390,0.0810,0,88,999.000,999.0,99.0 +1977,6,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,97800,80,1091,406,35,106,24,3400,4700,3000,420,270,3.6,5,5,32.2,77777,9,999999999,390,0.0810,0,88,999.000,999.0,99.0 +1977,6,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,97900,0,0,401,0,0,0,0,0,0,0,230,7.7,5,5,32.2,77777,9,999999999,400,0.2010,0,88,999.000,999.0,99.0 +1977,6,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,97900,0,0,389,0,0,0,0,0,0,0,240,5.2,5,5,24.1,77777,9,999999999,400,0.2010,0,88,999.000,999.0,99.0 +1977,6,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,97900,0,0,367,0,0,0,0,0,0,0,290,2.6,3,1,19.3,77777,9,999999999,400,0.2010,0,88,999.000,999.0,99.0 +1977,6,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,97900,0,0,364,0,0,0,0,0,0,0,270,4.1,3,1,19.3,77777,9,999999999,400,0.2010,0,88,999.000,999.0,99.0 +1977,6,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,97900,0,0,361,0,0,0,0,0,0,0,260,4.6,3,1,19.3,77777,9,999999999,409,0.2010,0,88,999.000,999.0,99.0 +1977,6,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,98000,0,0,370,0,0,0,0,0,0,0,260,4.1,4,3,19.3,77777,9,999999999,409,0.2010,0,88,999.000,999.0,99.0 +1977,6,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,97900,0,0,370,0,0,0,0,0,0,0,270,4.1,4,3,19.3,77777,9,999999999,409,0.2010,0,88,999.000,999.0,99.0 +1977,6,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,18.9,97,97900,0,0,366,0,0,0,0,0,0,0,250,3.1,5,4,16.1,77777,9,999999999,409,0.2010,0,88,999.000,999.0,99.0 +1977,6,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,18.9,97,97900,0,0,360,0,0,0,0,0,0,0,230,3.1,4,2,12.9,77777,9,999999999,419,0.2010,0,88,999.000,999.0,99.0 +1977,6,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,98000,31,672,367,11,3,11,1300,0,1300,400,270,5.2,8,4,9.7,77777,9,999999999,419,0.1210,0,88,999.000,999.0,99.0 +1977,6,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,19.4,97,98000,253,1323,380,87,42,79,9500,3400,8900,1900,280,4.6,9,7,9.7,3660,9,999999999,419,0.1210,0,88,999.000,999.0,99.0 +1977,6,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,98100,514,1323,381,267,319,143,28600,31300,16400,2950,270,5.7,7,5,12.9,7620,9,999999999,419,0.1210,0,88,999.000,999.0,99.0 +1977,6,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,98100,760,1323,389,470,553,151,49000,55100,17300,3410,280,4.6,3,2,19.3,77777,9,999999999,409,0.1210,0,88,999.000,999.0,99.0 +1977,6,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,98000,975,1323,403,648,571,226,70200,59500,26300,6810,300,5.2,4,3,19.3,77777,9,999999999,409,0.1210,0,88,999.000,999.0,99.0 +1977,6,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,98000,1143,1323,438,610,283,365,67000,30800,40300,15620,250,5.7,8,8,22.5,820,9,999999999,400,0.1210,0,88,999.000,999.0,99.0 +1977,6,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,98000,1253,1323,436,751,383,387,80100,40000,42100,28610,290,5.2,8,8,24.1,880,9,999999999,400,0.1210,0,88,999.000,999.0,99.0 +1977,6,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,98000,1298,1323,440,875,583,301,92400,59000,34400,30530,290,6.7,7,7,24.1,1010,9,999999999,400,0.1210,0,88,999.000,999.0,99.0 +1977,6,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,97900,1274,1323,430,909,577,352,98200,60400,39900,29820,280,6.2,8,6,32.2,1070,9,999999999,390,0.1210,0,88,999.000,999.0,99.0 +1977,6,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,97900,1184,1323,435,767,559,267,81000,56600,30200,13670,300,6.7,7,5,32.2,1070,9,999999999,390,0.1210,0,88,999.000,999.0,99.0 +1977,6,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,97800,1032,1323,427,693,572,246,75100,59700,28400,8330,280,5.7,7,3,32.2,77777,9,999999999,379,0.1210,0,88,999.000,999.0,99.0 +1977,6,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,97700,830,1323,425,517,513,196,55700,52900,22500,4790,300,6.2,6,3,32.2,77777,9,999999999,379,0.1210,0,88,999.000,999.0,99.0 +1977,6,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,97800,592,1323,418,362,504,137,38600,49600,16400,2740,280,5.2,8,2,32.2,77777,9,999999999,370,0.1210,0,88,999.000,999.0,99.0 +1977,6,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,97900,334,1323,428,100,52,87,11000,4500,9800,2270,280,5.2,10,7,32.2,1220,9,999999999,370,0.1210,0,88,999.000,999.0,99.0 +1977,6,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,97900,81,1091,384,27,15,26,3000,900,2900,620,360,3.6,10,6,32.2,1070,9,999999999,370,0.1210,0,88,999.000,999.0,99.0 +1977,6,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,97900,0,0,374,0,0,0,0,0,0,0,280,3.1,10,3,32.2,77777,9,999999999,359,0.2010,0,88,999.000,999.0,99.0 +1977,6,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,98000,0,0,354,0,0,0,0,0,0,0,280,3.1,8,0,24.1,77777,9,999999999,359,0.2010,0,88,999.000,999.0,99.0 +1977,6,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,98000,0,0,361,0,0,0,0,0,0,0,310,4.1,5,1,19.3,77777,9,999999999,359,0.2010,0,88,999.000,999.0,99.0 +1977,6,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,98000,0,0,372,0,0,0,0,0,0,0,300,4.1,8,4,16.1,77777,9,999999999,350,0.2010,0,88,999.000,999.0,99.0 +1977,6,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,97900,0,0,408,0,0,0,0,0,0,0,270,3.1,10,10,16.1,2740,9,999999999,350,0.2020,0,88,999.000,999.0,99.0 +1977,6,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,97900,0,0,372,0,0,0,0,0,0,0,300,3.6,8,4,16.1,77777,9,999999999,350,0.2020,0,88,999.000,999.0,99.0 +1977,6,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,97900,0,0,382,0,0,0,0,0,0,0,300,4.1,9,7,16.1,2740,9,999999999,340,0.2020,0,88,999.000,999.0,99.0 +1977,6,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,98000,0,0,368,0,0,0,0,0,0,0,300,3.1,8,4,16.1,77777,9,999999999,340,0.2020,0,88,999.000,999.0,99.0 +1977,6,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,18.3,93,98000,0,0,354,0,0,0,0,0,0,0,290,3.6,2,1,16.1,77777,9,999999999,340,0.2020,0,88,999.000,999.0,99.0 +1977,6,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,18.3,93,98000,30,672,347,14,1,14,1600,0,1600,480,290,3.6,0,0,16.1,77777,9,999999999,329,0.3520,0,88,999.000,999.0,99.0 +1977,6,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,98100,252,1322,362,83,104,63,9100,8000,7600,1350,310,4.1,2,1,19.3,77777,9,999999999,329,0.3520,0,88,999.000,999.0,99.0 +1977,6,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,98100,513,1322,383,255,275,148,27200,27000,16700,3070,330,5.2,3,2,19.3,77777,9,999999999,329,0.3520,0,88,999.000,999.0,99.0 +1977,6,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,98200,759,1322,399,451,376,234,48500,39800,25600,5650,310,4.1,4,3,19.3,77777,9,999999999,329,0.3520,0,88,999.000,999.0,99.0 +1977,6,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,98200,974,1322,408,644,449,312,67400,46500,33100,9640,310,6.7,6,3,24.1,77777,9,999999999,329,0.3520,0,88,999.000,999.0,99.0 +1977,6,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,98200,1142,1322,409,767,468,361,81100,48800,38900,16630,330,6.2,5,2,24.1,77777,9,999999999,329,0.3520,0,88,999.000,999.0,99.0 +1977,6,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,98200,1253,1322,419,796,358,456,87000,38900,50100,29780,320,5.2,4,3,32.2,77777,9,999999999,329,0.3520,0,88,999.000,999.0,99.0 +1977,6,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,98100,1298,1322,419,951,557,403,101600,58200,44400,42370,350,5.2,3,3,24.1,77777,9,999999999,329,0.3520,0,88,999.000,999.0,99.0 +1977,6,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,98100,1274,1322,429,836,473,380,89700,49400,42000,32320,340,4.1,3,3,24.1,77777,9,999999999,329,0.3520,0,88,999.000,999.0,99.0 +1977,6,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,98100,1184,1322,438,778,439,384,82300,45800,41200,20490,330,6.2,5,5,24.1,77777,9,999999999,329,0.3520,0,88,999.000,999.0,99.0 +1977,6,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,98000,1033,1322,423,639,455,283,68300,47400,31200,9680,330,7.2,2,2,24.1,77777,9,999999999,329,0.3520,0,88,999.000,999.0,99.0 +1977,6,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,98000,831,1322,417,513,487,207,54900,50100,23300,5080,330,6.2,1,1,32.2,77777,9,999999999,329,0.3520,0,88,999.000,999.0,99.0 +1977,6,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,98000,593,1322,411,313,371,147,33100,36500,16700,2970,330,5.2,1,1,32.2,77777,9,999999999,329,0.3520,0,88,999.000,999.0,99.0 +1977,6,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,98000,335,1322,401,138,184,91,14600,15500,10700,1760,320,3.1,1,0,32.2,77777,9,999999999,329,0.3520,0,88,999.000,999.0,99.0 +1977,6,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,98000,82,1091,394,29,6,28,3200,0,3200,900,320,1.5,3,0,24.1,77777,9,999999999,329,0.3520,0,88,999.000,999.0,99.0 +1977,6,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,98100,0,0,383,0,0,0,0,0,0,0,300,1.5,3,0,24.1,77777,9,999999999,329,0.2020,0,88,999.000,999.0,99.0 +1977,6,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,98200,0,0,378,0,0,0,0,0,0,0,330,2.6,2,0,24.1,77777,9,999999999,329,0.2020,0,88,999.000,999.0,99.0 +1977,6,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,98200,0,0,368,0,0,0,0,0,0,0,290,2.6,1,0,24.1,77777,9,999999999,340,0.2020,0,88,999.000,999.0,99.0 +1977,6,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,98200,0,0,375,0,0,0,0,0,0,0,320,2.1,0,0,19.3,77777,9,999999999,340,0.2020,0,88,999.000,999.0,99.0 +1977,6,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,98100,0,0,370,0,0,0,0,0,0,0,310,1.5,0,0,19.3,77777,9,999999999,340,0.2030,0,88,999.000,999.0,99.0 +1977,6,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,98100,0,0,362,0,0,0,0,0,0,0,340,2.1,0,0,16.1,77777,9,999999999,340,0.2030,0,88,999.000,999.0,99.0 +1977,6,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,98100,0,0,362,0,0,0,0,0,0,0,270,1.5,0,0,12.9,77777,9,999999999,340,0.2030,0,88,999.000,999.0,99.0 +1977,6,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,98100,0,0,356,0,0,0,0,0,0,0,230,1.5,0,0,11.3,77777,9,999999999,350,0.2030,0,88,999.000,999.0,99.0 +1977,6,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.9,93,98200,0,0,358,0,0,0,0,0,0,0,260,2.1,2,1,11.3,77777,9,999999999,350,0.2030,0,88,999.000,999.0,99.0 +1977,6,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,98200,30,672,369,10,2,9,1100,0,1100,330,290,2.1,8,3,11.3,77777,9,999999999,350,0.1870,0,88,999.000,999.0,99.0 +1977,6,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,98200,251,1322,387,94,93,77,10200,7100,8900,1650,300,1.5,10,5,11.3,77777,9,999999999,350,0.1870,0,88,999.000,999.0,99.0 +1977,6,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,98300,512,1322,404,212,92,177,23300,8900,19900,4770,200,2.1,10,5,11.3,77777,9,999999999,350,0.1870,0,88,999.000,999.0,99.0 +1977,6,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,98300,758,1322,419,441,376,224,47500,39800,24700,5360,250,1.5,9,6,12.9,7620,9,999999999,359,0.1870,0,88,999.000,999.0,99.0 +1977,6,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,98300,973,1322,431,509,267,312,55300,28800,34000,9530,230,2.1,10,7,12.9,7620,9,999999999,359,0.1870,0,88,999.000,999.0,99.0 +1977,6,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,98300,1142,1322,434,482,116,381,53200,12400,42400,16040,270,3.1,10,6,16.1,7620,9,999999999,359,0.1870,0,88,999.000,999.0,99.0 +1977,6,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,98300,1252,1322,445,632,311,337,70700,33900,38500,21490,320,4.1,9,7,16.1,7620,9,999999999,370,0.1870,0,88,999.000,999.0,99.0 +1977,6,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,19.4,47,98200,1298,1322,442,715,273,446,78700,29700,49500,39890,300,2.6,9,6,16.1,7620,9,999999999,370,0.1870,0,88,999.000,999.0,99.0 +1977,6,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,98200,1274,1322,452,393,169,229,45200,18500,27400,16370,270,3.1,10,8,16.1,7620,9,999999999,370,0.1870,0,88,999.000,999.0,99.0 +1977,6,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,98200,1184,1322,443,367,90,286,41400,9700,32700,13410,40,1.5,9,9,19.3,1220,9,999999999,379,0.1870,0,88,999.000,999.0,99.0 +1977,6,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,98100,1033,1322,439,532,283,310,58200,30700,34200,10330,90,1.5,8,7,19.3,9140,9,999999999,379,0.1870,0,88,999.000,999.0,99.0 +1977,6,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.1,52,98000,832,1322,437,404,291,221,44200,31100,24600,5530,160,4.1,5,4,24.1,77777,9,999999999,379,0.1870,0,88,999.000,999.0,99.0 +1977,6,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,98000,594,1322,423,325,432,131,34800,42500,15600,2610,170,5.2,4,3,24.1,77777,9,999999999,390,0.1870,0,88,999.000,999.0,99.0 +1977,6,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,98100,335,1322,423,143,64,127,15600,5700,14200,3020,150,4.6,7,5,24.1,9140,9,999999999,390,0.1870,0,88,999.000,999.0,99.0 +1977,6,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,98200,82,1091,428,12,2,12,1400,0,1400,460,180,7.2,10,8,19.3,910,9,999999999,390,0.1870,0,88,999.000,999.0,99.0 +1977,6,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,98400,0,0,410,0,0,0,0,0,0,0,120,1.5,10,10,9.7,460,9,999999999,390,0.2030,0,88,999.000,999.0,99.0 +1977,6,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,98400,0,0,410,0,0,0,0,0,0,0,150,4.1,10,10,12.9,980,9,999999999,390,0.2030,0,88,999.000,999.0,99.0 +1977,6,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,19.4,97,98400,0,0,406,0,0,0,0,0,0,0,160,3.6,10,10,12.9,2740,9,999999999,390,0.2030,0,88,999.000,999.0,99.0 +1977,6,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,98400,0,0,410,0,0,0,0,0,0,0,160,5.2,10,10,12.9,460,9,999999999,390,0.2030,0,88,999.000,999.0,99.0 +1977,6,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.6,97,98300,0,0,402,0,0,0,0,0,0,0,180,4.1,9,9,19.3,2740,9,999999999,400,0.2030,0,88,999.000,999.0,99.0 +1977,6,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.6,97,98300,0,0,402,0,0,0,0,0,0,0,190,4.1,9,9,16.1,7620,9,999999999,400,0.2030,0,88,999.000,999.0,99.0 +1977,6,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.6,97,98300,0,0,402,0,0,0,0,0,0,0,220,5.7,9,9,12.9,7620,9,999999999,400,0.2030,0,88,999.000,999.0,99.0 +1977,6,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.6,97,98300,0,0,387,0,0,0,0,0,0,0,220,2.6,9,7,11.3,7620,9,999999999,400,0.2030,0,88,999.000,999.0,99.0 +1977,6,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.6,97,98300,0,0,377,0,0,0,0,0,0,0,250,3.1,7,4,11.3,7620,9,999999999,400,0.2030,0,88,999.000,999.0,99.0 +1977,6,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.6,97,98300,29,672,387,8,0,8,1000,0,1000,300,270,4.1,8,7,11.3,7620,9,999999999,400,0.2500,0,88,999.000,999.0,99.0 +1977,6,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98400,250,1322,417,33,3,32,3800,0,3800,1280,270,4.6,10,10,11.3,7620,9,999999999,400,0.2500,0,88,999.000,999.0,99.0 +1977,6,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,98400,511,1322,418,113,22,104,12400,2100,11600,3100,270,5.7,9,9,11.3,7620,9,999999999,400,0.2500,0,88,999.000,999.0,99.0 +1977,6,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,98400,757,1322,420,279,53,249,30700,5300,27600,7870,260,4.1,8,8,11.3,7620,9,999999999,409,0.2500,0,88,999.000,999.0,99.0 +1977,6,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.2,72,98400,972,1322,417,530,364,262,56600,37800,28700,7950,270,4.6,5,5,16.1,77777,9,999999999,409,0.2500,0,88,999.000,999.0,99.0 +1977,6,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,22.2,63,98400,1141,1322,430,636,255,415,69100,27700,45100,17960,330,4.1,5,5,16.1,77777,9,999999999,419,0.2500,0,88,999.000,999.0,99.0 +1977,6,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.7,55,98400,1252,1322,439,856,564,321,93100,59100,37000,23450,310,5.2,5,5,16.1,77777,9,999999999,419,0.2500,0,88,999.000,999.0,99.0 +1977,6,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.1,52,98300,1297,1322,441,986,571,424,104800,59600,46200,44560,300,4.1,5,5,19.3,77777,9,999999999,430,0.2500,0,88,999.000,999.0,99.0 +1977,6,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,20.0,47,98300,1274,1322,443,930,566,383,99600,59200,42500,32670,310,5.2,5,5,19.3,77777,9,999999999,430,0.2500,0,88,999.000,999.0,99.0 +1977,6,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,98200,1184,1322,445,421,73,356,46600,7500,39900,17280,10,7.7,8,8,24.1,1520,9,999999999,430,0.2500,0,88,999.000,999.0,99.0 +1977,6,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,98200,1034,1322,425,679,523,270,73000,54500,30300,9230,320,3.1,7,3,24.1,77777,9,999999999,440,0.2500,0,88,999.000,999.0,99.0 +1977,6,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.6,52,98200,832,1322,430,516,378,278,55500,40300,30000,7250,350,6.2,7,3,24.1,77777,9,999999999,440,0.2500,0,88,999.000,999.0,99.0 +1977,6,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,98200,594,1322,423,295,271,173,31600,27500,19200,3730,350,5.2,7,5,48.3,9140,9,999999999,450,0.2500,0,88,999.000,999.0,99.0 +1977,6,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,98200,336,1322,414,123,99,98,13400,8500,11200,2150,330,5.2,5,5,48.3,77777,9,999999999,450,0.2500,0,88,999.000,999.0,99.0 +1977,6,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,98200,83,1113,398,23,14,22,2500,800,2500,540,330,2.1,4,3,40.2,77777,9,999999999,440,0.2500,0,88,999.000,999.0,99.0 +1977,6,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,98300,0,0,393,0,0,0,0,0,0,0,260,2.1,5,4,32.2,77777,9,999999999,430,0.2030,0,88,999.000,999.0,99.0 +1977,6,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,98400,0,0,390,0,0,0,0,0,0,0,270,1.5,5,4,32.2,77777,9,999999999,430,0.2030,0,88,999.000,999.0,99.0 +1977,6,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,98400,0,0,376,0,0,0,0,0,0,0,270,2.1,4,2,24.1,77777,9,999999999,419,0.2030,0,88,999.000,999.0,99.0 +1977,6,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,98400,0,0,370,0,0,0,0,0,0,0,290,3.6,4,1,24.1,77777,9,999999999,409,0.2030,0,88,999.000,999.0,99.0 +1977,6,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98300,0,0,367,0,0,0,0,0,0,0,310,4.1,4,1,24.1,77777,9,999999999,400,0.2040,0,88,999.000,999.0,99.0 +1977,6,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98300,0,0,372,0,0,0,0,0,0,0,310,2.6,6,2,24.1,77777,9,999999999,390,0.2040,0,88,999.000,999.0,99.0 +1977,6,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,98300,0,0,379,0,0,0,0,0,0,0,320,5.2,6,3,24.1,77777,9,999999999,379,0.2040,0,88,999.000,999.0,99.0 +1977,6,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,98300,0,0,378,0,0,0,0,0,0,0,310,4.1,7,4,24.1,9140,9,999999999,379,0.2040,0,88,999.000,999.0,99.0 +1977,6,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98300,0,0,369,0,0,0,0,0,0,0,300,4.1,7,2,19.3,77777,9,999999999,370,0.2040,0,88,999.000,999.0,99.0 +1977,6,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,98300,29,672,375,11,0,11,1300,0,1300,390,340,4.1,8,3,19.3,77777,9,999999999,359,0.4200,0,88,999.000,999.0,99.0 +1977,6,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,98300,249,1322,381,80,48,71,8800,3800,8000,1740,340,3.6,8,3,19.3,77777,9,999999999,350,0.4200,0,88,999.000,999.0,99.0 +1977,6,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,98300,510,1322,419,133,8,130,15200,600,15000,5090,340,3.1,9,9,19.3,9140,9,999999999,350,0.4200,0,88,999.000,999.0,99.0 +1977,6,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,98300,756,1322,424,321,71,280,35200,7200,31100,8600,350,3.6,9,8,19.3,9140,9,999999999,350,0.4200,0,88,999.000,999.0,99.0 +1977,6,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,98300,971,1322,415,602,395,311,65400,42700,34000,9470,0,0.0,5,4,16.1,77777,9,999999999,340,0.4200,0,88,999.000,999.0,99.0 +1977,6,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,98300,1140,1322,414,701,354,395,76400,38400,43200,16970,270,2.1,2,2,16.1,77777,9,999999999,340,0.4200,0,88,999.000,999.0,99.0 +1977,6,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,98300,1251,1322,418,896,597,329,97100,62500,37800,24000,340,2.6,1,1,16.1,77777,9,999999999,340,0.4200,0,88,999.000,999.0,99.0 +1977,6,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.0,48,98300,1297,1322,428,930,582,358,100700,60900,40700,37410,270,5.2,2,2,19.3,77777,9,999999999,329,0.4200,0,88,999.000,999.0,99.0 +1977,6,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.8,42,98200,1274,1322,433,945,519,444,99800,54100,47500,38090,300,5.7,4,4,24.1,77777,9,999999999,329,0.4200,0,88,999.000,999.0,99.0 +1977,6,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.2,39,98200,1185,1322,432,722,389,372,76600,40600,40100,19900,330,5.2,3,3,40.2,77777,9,999999999,329,0.4200,0,88,999.000,999.0,99.0 +1977,6,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.2,38,98100,1034,1322,431,687,494,300,73000,51400,32700,10350,290,5.7,2,2,40.2,77777,9,999999999,329,0.4200,0,88,999.000,999.0,99.0 +1977,6,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.8,41,98000,833,1322,429,512,409,254,55400,43700,27800,6520,330,3.6,3,2,32.2,77777,9,999999999,329,0.4200,0,88,999.000,999.0,99.0 +1977,6,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.8,42,98000,595,1322,412,322,342,169,34700,34800,19000,3620,280,4.1,0,0,32.2,77777,9,999999999,320,0.4200,0,88,999.000,999.0,99.0 +1977,6,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,98000,337,1322,403,133,146,96,14500,12600,11300,2110,300,3.6,0,0,32.2,77777,9,999999999,320,0.4200,0,88,999.000,999.0,99.0 +1977,6,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.7,49,98100,83,1113,407,22,1,22,2500,0,2500,760,300,3.6,4,3,24.1,77777,9,999999999,320,0.4200,0,88,999.000,999.0,99.0 +1977,6,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,58,98100,0,0,413,0,0,0,0,0,0,0,290,2.1,5,5,24.1,77777,9,999999999,329,0.2040,0,88,999.000,999.0,99.0 +1977,6,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,98100,0,0,393,0,0,0,0,0,0,0,220,5.7,2,2,24.1,77777,9,999999999,329,0.2040,0,88,999.000,999.0,99.0 +1977,6,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,98100,0,0,389,0,0,0,0,0,0,0,250,3.6,3,3,24.1,77777,9,999999999,340,0.2040,0,88,999.000,999.0,99.0 +1977,6,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,98100,0,0,385,0,0,0,0,0,0,0,260,4.1,2,2,24.1,77777,9,999999999,340,0.2040,0,88,999.000,999.0,99.0 +1977,6,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.3,71,98100,0,0,381,0,0,0,0,0,0,0,310,5.2,2,2,24.1,77777,9,999999999,350,0.2040,0,88,999.000,999.0,99.0 +1977,6,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,98000,0,0,369,0,0,0,0,0,0,0,290,3.6,3,1,24.1,77777,9,999999999,350,0.2040,0,88,999.000,999.0,99.0 +1977,6,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,98000,0,0,369,0,0,0,0,0,0,0,260,2.1,3,1,24.1,77777,9,999999999,350,0.2040,0,88,999.000,999.0,99.0 +1977,6,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,98000,0,0,367,0,0,0,0,0,0,0,0,0.0,2,1,24.1,77777,9,999999999,359,0.2040,0,88,999.000,999.0,99.0 +1977,6,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,98000,0,0,375,0,0,0,0,0,0,0,250,1.5,7,3,24.1,77777,9,999999999,359,0.2040,0,88,999.000,999.0,99.0 +1977,6,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,98000,28,650,381,14,5,14,1600,300,1600,340,250,3.6,9,5,24.1,7620,9,999999999,370,0.1270,0,88,999.000,999.0,99.0 +1977,6,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,98000,248,1322,384,90,53,80,9800,4300,9000,1900,270,3.6,9,6,24.1,7620,9,999999999,370,0.1270,0,88,999.000,999.0,99.0 +1977,6,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,98100,508,1322,389,257,185,185,27600,18000,20700,4300,270,5.2,5,5,24.1,77777,9,999999999,370,0.1270,0,88,999.000,999.0,99.0 +1977,6,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,98100,755,1322,408,479,512,186,51000,52200,21100,4220,210,2.6,5,5,24.1,77777,9,999999999,370,0.1270,0,88,999.000,999.0,99.0 +1977,6,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,98100,970,1322,417,622,563,207,65100,56800,23300,6120,270,3.6,3,3,24.1,77777,9,999999999,370,0.1270,0,88,999.000,999.0,99.0 +1977,6,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,98000,1140,1322,417,871,793,186,90500,79400,21900,7490,270,5.7,2,2,24.1,77777,9,999999999,370,0.1270,0,88,999.000,999.0,99.0 +1977,6,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,98000,1251,1322,423,928,771,196,97200,77500,23700,13000,240,4.1,2,2,24.1,77777,9,999999999,370,0.1270,0,88,999.000,999.0,99.0 +1977,6,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.0,48,98000,1297,1322,432,977,725,263,104100,73900,31500,26690,270,4.1,3,3,24.1,77777,9,999999999,370,0.1270,0,88,999.000,999.0,99.0 +1977,6,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,19.4,47,97900,1274,1322,435,871,629,263,92700,64000,30800,21810,260,4.1,4,4,24.1,77777,9,999999999,370,0.1270,0,88,999.000,999.0,99.0 +1977,6,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,97800,1185,1322,434,794,576,277,83500,58200,31200,14250,290,2.6,5,5,24.1,77777,9,999999999,370,0.1270,0,88,999.000,999.0,99.0 +1977,6,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.2,38,97700,1034,1322,431,728,683,193,77300,69600,22800,6570,300,6.2,5,2,24.1,77777,9,999999999,370,0.1270,0,88,999.000,999.0,99.0 +1977,6,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.8,41,97700,833,1322,433,533,505,215,56800,52000,24000,5310,290,5.7,7,3,32.2,77777,9,999999999,370,0.1270,0,88,999.000,999.0,99.0 +1977,6,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,97700,596,1322,433,314,223,214,34000,22400,23900,5160,280,4.1,7,6,24.1,9140,9,999999999,370,0.1270,0,88,999.000,999.0,99.0 +1977,6,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,97700,337,1322,438,140,163,98,15200,14000,11600,2150,300,4.6,8,8,24.1,3350,9,999999999,370,0.1270,0,88,999.000,999.0,99.0 +1977,6,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,97800,84,1113,412,30,15,28,3200,900,3100,660,300,2.6,7,6,24.1,9140,9,999999999,379,0.1270,0,88,999.000,999.0,99.0 +1977,6,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,97800,0,0,405,0,0,0,0,0,0,0,240,2.1,4,4,24.1,77777,9,999999999,379,0.2040,0,88,999.000,999.0,99.0 +1977,6,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,97800,0,0,417,0,0,0,0,0,0,0,240,2.1,10,7,24.1,9140,9,999999999,390,0.2040,0,88,999.000,999.0,99.0 +1977,6,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,97800,0,0,404,0,0,0,0,0,0,0,240,3.6,10,5,19.3,77777,9,999999999,390,0.2040,0,88,999.000,999.0,99.0 +1977,6,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,97800,0,0,397,0,0,0,0,0,0,0,230,2.6,10,5,19.3,77777,9,999999999,400,0.2040,0,88,999.000,999.0,99.0 +1977,6,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,97800,0,0,405,0,0,0,0,0,0,0,220,3.1,10,7,19.3,7620,9,999999999,409,0.2050,0,88,999.000,999.0,99.0 +1977,6,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,97700,0,0,400,0,0,0,0,0,0,0,240,2.6,9,7,19.3,7620,9,999999999,409,0.2050,0,88,999.000,999.0,99.0 +1977,6,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,97700,0,0,426,0,0,0,0,0,0,0,220,3.6,10,10,16.1,7620,9,999999999,419,0.2050,0,88,999.000,999.0,99.0 +1977,6,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,97700,0,0,426,0,0,0,0,0,0,0,230,4.1,10,10,16.1,2740,9,999999999,419,0.2050,0,88,999.000,999.0,99.0 +1977,6,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,97700,0,0,426,0,0,0,0,0,0,0,260,3.6,10,10,16.1,2740,9,999999999,430,0.2050,0,88,999.000,999.0,99.0 +1977,6,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,97800,28,650,426,5,0,5,600,0,600,200,250,3.6,10,10,14.5,2440,9,999999999,430,0.1460,0,88,999.000,999.0,99.0 +1977,6,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,97800,246,1322,426,35,2,35,4100,0,4100,1370,280,3.1,10,10,12.9,2440,9,999999999,440,0.1460,0,88,999.000,999.0,99.0 +1977,6,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,97900,507,1322,433,139,2,139,15800,100,15800,5320,250,2.1,10,10,12.9,2440,9,999999999,440,0.1460,0,88,999.000,999.0,99.0 +1977,6,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,97900,754,1322,434,229,66,191,25200,6600,21400,6320,270,2.6,9,9,12.9,2440,9,999999999,440,0.1460,0,88,999.000,999.0,99.0 +1977,6,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,97900,969,1322,439,191,28,170,21100,2800,19100,6810,270,4.1,10,10,11.3,2440,9,999999999,440,0.1460,0,88,999.000,999.0,99.0 +1977,6,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.7,72,97900,1139,1322,450,270,10,261,32500,800,31700,12520,250,4.1,10,10,11.3,2440,9,999999999,440,0.1460,0,88,999.000,999.0,99.0 +1977,6,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.7,67,97900,1250,1322,435,867,502,391,92400,52400,42700,28560,270,5.2,9,8,16.1,2440,9,999999999,440,0.1460,0,88,999.000,999.0,99.0 +1977,6,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,97800,1297,1322,445,617,186,434,68400,19900,48900,34420,270,6.2,9,8,19.3,3660,9,999999999,440,0.1460,0,88,999.000,999.0,99.0 +1977,6,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,97800,1274,1322,432,841,562,298,88800,56800,33800,24570,260,4.1,5,5,19.3,77777,9,999999999,450,0.1460,0,88,999.000,999.0,99.0 +1977,6,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,97700,1185,1322,431,783,552,288,85400,57800,33500,15260,270,6.2,8,4,19.3,77777,9,999999999,450,0.1460,0,88,999.000,999.0,99.0 +1977,6,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,97700,1035,1322,431,700,523,291,74700,54500,32000,10030,200,5.2,9,7,19.3,1370,9,999999999,450,0.1460,0,88,999.000,999.0,99.0 +1977,6,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,97800,834,1322,424,148,5,145,17800,400,17600,6970,360,3.1,10,10,9.7,3660,9,999999999,450,0.1460,0,88,999.000,999.0,99.0 +1977,6,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,97800,596,1322,395,327,383,155,34500,37700,17500,3150,270,2.6,8,6,16.1,7620,9,999999999,450,0.1460,0,88,999.000,999.0,99.0 +1977,6,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,97800,338,1322,397,93,67,75,10200,5800,8700,1650,280,2.6,8,7,24.1,7620,9,999999999,450,0.1460,0,88,999.000,999.0,99.0 +1977,6,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,97800,84,1113,392,20,11,19,2200,700,2100,480,280,2.6,8,6,24.1,7620,9,999999999,440,0.1460,0,88,999.000,999.0,99.0 +1977,6,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,97800,0,0,400,0,0,0,0,0,0,0,240,2.6,9,7,19.3,7620,9,999999999,440,0.2050,0,88,999.000,999.0,99.0 +1977,6,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,97600,0,0,397,0,0,0,0,0,0,0,230,2.6,9,7,16.1,7620,9,999999999,430,0.2050,0,88,999.000,999.0,99.0 +1977,6,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,93,97900,0,0,413,0,0,0,0,0,0,0,210,2.6,10,9,19.3,7620,9,999999999,430,0.2050,0,88,999.000,999.0,99.0 +1977,6,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,97900,0,0,428,0,0,0,0,0,0,0,260,3.1,10,10,16.1,3050,9,999999999,419,0.2050,0,88,999.000,999.0,99.0 +1977,6,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.7,97,97900,0,0,421,0,0,0,0,0,0,0,240,3.6,10,10,16.1,3660,9,999999999,419,0.2050,0,88,999.000,999.0,99.0 +1977,6,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,97800,0,0,405,0,0,0,0,0,0,0,260,4.6,10,9,16.1,3660,9,999999999,409,0.2050,0,88,999.000,999.0,99.0 +1977,6,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,97800,0,0,379,0,0,0,0,0,0,0,270,3.6,8,6,12.9,7620,9,999999999,400,0.2050,0,88,999.000,999.0,99.0 +1977,6,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,19.4,97,97800,0,0,376,0,0,0,0,0,0,0,290,3.6,8,6,12.9,7620,9,999999999,400,0.2050,0,88,999.000,999.0,99.0 +1977,6,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,19.4,97,97900,0,0,367,0,0,0,0,0,0,0,250,2.6,7,3,16.1,77777,9,999999999,390,0.2050,0,88,999.000,999.0,99.0 +1977,6,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,19.4,97,97900,27,650,358,9,1,8,1000,0,1000,300,260,3.1,3,1,24.1,77777,9,999999999,390,0.2710,0,88,999.000,999.0,99.0 +1977,6,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98000,245,1322,360,95,161,65,10000,11600,7900,1230,240,2.6,1,0,24.1,77777,9,999999999,379,0.2710,0,88,999.000,999.0,99.0 +1977,6,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,98000,506,1322,372,275,411,118,29100,39000,14200,2270,260,4.1,0,0,16.1,77777,9,999999999,379,0.2710,0,88,999.000,999.0,99.0 +1977,6,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,98000,753,1322,382,488,563,165,52400,57500,19600,3690,260,3.6,0,0,16.1,77777,9,999999999,370,0.2710,0,88,999.000,999.0,99.0 +1977,6,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.2,74,98100,968,1322,391,676,645,201,70900,65200,23000,5940,290,3.6,0,0,16.1,77777,9,999999999,370,0.2710,0,88,999.000,999.0,99.0 +1977,6,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,98100,1138,1322,399,831,700,226,88100,71300,26600,10010,240,3.6,0,0,12.9,77777,9,999999999,370,0.2710,0,88,999.000,999.0,99.0 +1977,6,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,98100,1250,1322,416,899,682,252,95700,69500,29800,17820,250,5.7,1,1,12.9,77777,9,999999999,359,0.2710,0,88,999.000,999.0,99.0 +1977,6,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.1,52,98100,1296,1322,437,962,598,374,103600,62600,42100,38900,330,3.1,4,4,11.3,77777,9,999999999,359,0.2710,0,88,999.000,999.0,99.0 +1977,6,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,19.4,47,98000,1274,1322,435,934,596,358,100700,62400,40500,30540,250,3.6,4,4,12.9,77777,9,999999999,359,0.2710,0,88,999.000,999.0,99.0 +1977,6,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,19.4,47,98000,1185,1322,432,824,618,269,86800,62500,30600,13900,250,5.2,3,3,12.9,77777,9,999999999,350,0.2710,0,88,999.000,999.0,99.0 +1977,6,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,19.4,45,97900,1035,1322,435,730,565,287,78000,58900,31800,9890,240,4.1,3,3,12.9,77777,9,999999999,350,0.2710,0,88,999.000,999.0,99.0 +1977,6,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,19.4,47,97900,834,1322,432,438,310,242,47600,33100,26600,6160,250,2.6,3,3,12.9,77777,9,999999999,350,0.2710,0,88,999.000,999.0,99.0 +1977,6,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,97800,597,1322,417,343,463,135,36700,45600,16100,2700,200,5.2,1,1,12.9,77777,9,999999999,340,0.2710,0,88,999.000,999.0,99.0 +1977,6,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,97900,338,1322,405,149,259,82,15900,21900,10300,1550,230,3.6,0,0,12.9,77777,9,999999999,340,0.2710,0,88,999.000,999.0,99.0 +1977,6,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,97900,84,1112,391,29,19,27,3100,1100,3000,640,250,2.6,0,0,9.7,77777,9,999999999,340,0.2710,0,88,999.000,999.0,99.0 +1977,6,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,97900,0,0,386,0,0,0,0,0,0,0,230,2.6,0,0,11.3,77777,9,999999999,329,0.2050,0,88,999.000,999.0,99.0 +1977,6,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,98000,0,0,381,0,0,0,0,0,0,0,230,2.6,0,0,11.3,77777,9,999999999,329,0.2050,0,88,999.000,999.0,99.0 +1977,6,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,98000,0,0,386,0,0,0,0,0,0,0,240,2.6,1,1,11.3,77777,9,999999999,329,0.2050,0,88,999.000,999.0,99.0 +1977,6,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,98000,0,0,372,0,0,0,0,0,0,0,240,3.1,0,0,11.3,77777,9,999999999,329,0.2050,0,88,999.000,999.0,99.0 +1977,6,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,97900,0,0,370,0,0,0,0,0,0,0,230,3.6,0,0,11.3,77777,9,999999999,329,0.2060,0,88,999.000,999.0,99.0 +1977,6,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,97900,0,0,365,0,0,0,0,0,0,0,240,2.1,0,0,11.3,77777,9,999999999,320,0.2060,0,88,999.000,999.0,99.0 +1977,6,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,97900,0,0,365,0,0,0,0,0,0,0,250,3.6,0,0,11.3,77777,9,999999999,320,0.2060,0,88,999.000,999.0,99.0 +1977,6,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,97900,0,0,366,0,0,0,0,0,0,0,240,4.6,0,0,11.3,77777,9,999999999,320,0.2060,0,88,999.000,999.0,99.0 +1977,6,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,98000,0,0,367,0,0,0,0,0,0,0,260,4.6,0,0,11.3,77777,9,999999999,320,0.2060,0,88,999.000,999.0,99.0 +1977,6,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,98000,26,628,362,12,0,12,1400,0,1400,420,250,4.1,0,0,16.1,77777,9,999999999,309,0.3960,0,88,999.000,999.0,99.0 +1977,6,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,98100,243,1322,364,85,86,69,9200,6500,8000,1480,270,5.2,0,0,19.3,77777,9,999999999,309,0.3960,0,88,999.000,999.0,99.0 +1977,6,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,98100,504,1322,377,256,300,141,27300,29300,16100,2900,270,6.2,0,0,16.1,77777,9,999999999,320,0.3960,0,88,999.000,999.0,99.0 +1977,6,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,98100,752,1322,386,463,450,206,48700,45800,22600,4700,270,6.2,0,0,16.1,77777,9,999999999,340,0.3960,0,88,999.000,999.0,99.0 +1977,6,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,98100,967,1322,399,659,550,255,70400,57200,28500,7670,260,4.1,0,0,24.1,77777,9,999999999,350,0.3960,0,88,999.000,999.0,99.0 +1977,6,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,98100,1137,1322,422,822,605,300,88600,63300,34100,13490,310,5.2,2,2,24.1,77777,9,999999999,359,0.3960,0,88,999.000,999.0,99.0 +1977,6,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,98100,1249,1322,431,852,453,422,90000,47200,45200,30750,270,6.2,4,4,19.3,77777,9,999999999,379,0.3960,0,88,999.000,999.0,99.0 +1977,6,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.1,52,98000,1296,1322,437,702,254,453,77300,27600,50100,40160,270,5.2,4,4,19.3,77777,9,999999999,390,0.3960,0,88,999.000,999.0,99.0 +1977,6,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,98000,1274,1322,430,660,250,419,72900,27200,46600,31000,250,4.1,4,4,16.1,77777,9,999999999,400,0.3960,0,88,999.000,999.0,99.0 +1977,6,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,98000,1185,1322,456,462,15,448,53600,1500,52300,18550,230,11.3,9,9,16.1,1520,9,999999999,419,0.3960,0,88,999.000,999.0,99.0 +1977,6,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,97900,1035,1322,419,350,117,258,39200,12500,29400,8950,290,6.2,8,8,16.1,1520,9,999999999,430,0.3960,0,88,999.000,999.0,99.0 +1977,6,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,97800,835,1322,415,495,297,308,52900,31700,32800,8220,240,3.6,7,5,16.1,7620,9,999999999,440,0.3960,0,88,999.000,999.0,99.0 +1977,6,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,97800,597,1322,414,316,302,180,33800,30700,19900,3910,230,4.1,2,1,19.3,77777,9,999999999,459,0.3960,0,88,999.000,999.0,99.0 +1977,6,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,97800,339,1322,404,136,161,95,14400,13600,10900,1850,240,4.6,0,0,19.3,77777,9,999999999,469,0.3960,0,88,999.000,999.0,99.0 +1977,6,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,97900,85,1112,392,28,5,28,3200,0,3200,900,230,3.6,0,0,16.1,77777,9,999999999,459,0.3960,0,88,999.000,999.0,99.0 +1977,6,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,97900,0,0,382,0,0,0,0,0,0,0,230,3.1,0,0,16.1,77777,9,999999999,450,0.2060,0,88,999.000,999.0,99.0 +1977,6,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,98000,0,0,382,0,0,0,0,0,0,0,250,3.6,0,0,16.1,77777,9,999999999,440,0.2060,0,88,999.000,999.0,99.0 +1977,6,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,98000,0,0,380,0,0,0,0,0,0,0,250,4.6,0,0,19.3,77777,9,999999999,430,0.2060,0,88,999.000,999.0,99.0 +1977,6,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,98000,0,0,379,0,0,0,0,0,0,0,250,4.1,0,0,19.3,77777,9,999999999,419,0.2060,0,88,999.000,999.0,99.0 +1977,6,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,98000,0,0,372,0,0,0,0,0,0,0,250,5.2,0,0,19.3,77777,9,999999999,409,0.2060,0,88,999.000,999.0,99.0 +1977,6,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,97900,0,0,368,0,0,0,0,0,0,0,240,4.1,0,0,19.3,77777,9,999999999,400,0.2060,0,88,999.000,999.0,99.0 +1977,6,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,97800,0,0,368,0,0,0,0,0,0,0,250,4.1,0,0,19.3,77777,9,999999999,390,0.2060,0,88,999.000,999.0,99.0 +1977,6,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,97800,0,0,366,0,0,0,0,0,0,0,230,4.1,1,0,19.3,77777,9,999999999,379,0.2060,0,88,999.000,999.0,99.0 +1977,6,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,97800,0,0,379,0,0,0,0,0,0,0,220,3.1,7,3,19.3,77777,9,999999999,370,0.2060,0,88,999.000,999.0,99.0 +1977,6,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,98000,26,628,379,12,3,12,1400,0,1400,420,250,5.7,8,3,19.3,77777,9,999999999,359,0.1770,0,88,999.000,999.0,99.0 +1977,6,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,98000,242,1322,389,87,97,69,9400,7300,8100,1480,250,5.2,8,4,16.1,77777,9,999999999,350,0.1770,0,88,999.000,999.0,99.0 +1977,6,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98100,503,1322,386,283,322,160,29900,31400,17900,3380,290,5.2,7,3,16.1,77777,9,999999999,359,0.1770,0,88,999.000,999.0,99.0 +1977,6,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,98100,750,1322,401,404,368,195,42800,37500,21500,4420,270,6.2,7,3,16.1,77777,9,999999999,370,0.1770,0,88,999.000,999.0,99.0 +1977,6,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.2,67,98100,966,1322,413,641,613,191,67500,62100,21900,5660,270,5.2,6,2,19.3,77777,9,999999999,379,0.1770,0,88,999.000,999.0,99.0 +1977,6,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,98100,1136,1322,415,782,582,280,84900,60900,32400,12520,230,5.7,6,2,24.1,77777,9,999999999,379,0.1770,0,88,999.000,999.0,99.0 +1977,6,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,98100,1249,1322,425,900,633,301,94700,63900,34200,20950,270,6.7,5,3,24.1,77777,9,999999999,390,0.1770,0,88,999.000,999.0,99.0 +1977,6,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,98100,1296,1322,459,231,3,229,28800,200,28600,11510,310,6.2,10,10,19.3,3660,9,999999999,400,0.1770,0,88,999.000,999.0,99.0 +1977,6,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,98000,1274,1322,435,661,208,460,72900,22200,51500,31010,300,5.2,9,8,24.1,3660,9,999999999,409,0.1770,0,88,999.000,999.0,99.0 +1977,6,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,98000,1185,1322,433,799,448,397,84400,46700,42400,21400,290,6.2,7,6,24.1,8530,9,999999999,419,0.1770,0,88,999.000,999.0,99.0 +1977,6,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,97900,1036,1322,442,740,494,352,77300,51300,37100,12340,270,6.2,7,7,24.1,8530,9,999999999,430,0.1770,0,88,999.000,999.0,99.0 +1977,6,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.6,52,97900,835,1322,434,501,450,216,53300,46300,24000,5350,270,5.7,5,4,32.2,77777,9,999999999,430,0.1770,0,88,999.000,999.0,99.0 +1977,6,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,97900,597,1322,433,286,206,193,31200,20800,21800,4660,260,5.2,7,6,32.2,10670,9,999999999,440,0.1770,0,88,999.000,999.0,99.0 +1977,6,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,97900,339,1322,434,87,37,77,9500,3200,8700,2070,250,5.7,7,6,32.2,9140,9,999999999,450,0.1770,0,88,999.000,999.0,99.0 +1977,6,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,98000,85,1112,416,27,9,26,2900,500,2900,620,230,3.6,7,6,32.2,9140,9,999999999,450,0.1770,0,88,999.000,999.0,99.0 +1977,6,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,98000,0,0,404,0,0,0,0,0,0,0,220,5.7,6,5,32.2,9140,9,999999999,440,0.2060,0,88,999.000,999.0,99.0 +1977,6,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,98100,0,0,400,0,0,0,0,0,0,0,210,4.1,5,5,32.2,77777,9,999999999,440,0.2060,0,88,999.000,999.0,99.0 +1977,6,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,98100,0,0,393,0,0,0,0,0,0,0,240,4.1,5,5,32.2,77777,9,999999999,440,0.2060,0,88,999.000,999.0,99.0 +1977,6,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,84,98100,0,0,391,0,0,0,0,0,0,0,250,3.6,5,5,32.2,77777,9,999999999,430,0.2060,0,88,999.000,999.0,99.0 +1977,6,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,98100,0,0,382,0,0,0,0,0,0,0,240,2.6,3,3,24.1,77777,9,999999999,430,0.2070,0,88,999.000,999.0,99.0 +1977,6,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,98000,0,0,375,0,0,0,0,0,0,0,240,3.1,2,2,24.1,77777,9,999999999,430,0.2070,0,88,999.000,999.0,99.0 +1977,6,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98000,0,0,368,0,0,0,0,0,0,0,250,3.1,1,1,24.1,77777,9,999999999,419,0.2070,0,88,999.000,999.0,99.0 +1977,6,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98000,0,0,373,0,0,0,0,0,0,0,230,2.6,6,2,24.1,77777,9,999999999,419,0.2070,0,88,999.000,999.0,99.0 +1977,6,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,98000,0,0,373,0,0,0,0,0,0,0,300,3.1,4,3,24.1,77777,9,999999999,419,0.2070,0,88,999.000,999.0,99.0 +1977,6,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,98100,25,606,373,11,0,11,1300,0,1300,390,230,2.1,8,3,24.1,77777,9,999999999,409,0.4650,0,88,999.000,999.0,99.0 +1977,6,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,98200,240,1321,379,87,25,82,9500,2000,9100,1910,230,2.1,7,3,24.1,77777,9,999999999,409,0.4650,0,88,999.000,999.0,99.0 +1977,6,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,98200,501,1321,372,247,237,157,26200,23100,17400,3300,270,2.1,2,0,24.1,77777,9,999999999,419,0.4650,0,88,999.000,999.0,99.0 +1977,6,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,98200,749,1321,389,444,382,227,47800,40300,24900,5420,260,2.6,1,0,24.1,77777,9,999999999,419,0.4650,0,88,999.000,999.0,99.0 +1977,6,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,98200,965,1321,398,641,492,280,67800,51100,30400,8450,240,2.6,0,0,24.1,77777,9,999999999,430,0.4650,0,88,999.000,999.0,99.0 +1977,6,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,98200,1136,1321,405,802,559,320,85800,58400,35600,14370,210,4.6,0,0,24.1,77777,9,999999999,440,0.4650,0,88,999.000,999.0,99.0 +1977,6,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,98200,1248,1321,425,782,399,403,82900,41600,43500,29130,260,5.2,3,3,32.2,77777,9,999999999,440,0.4650,0,88,999.000,999.0,99.0 +1977,6,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,98200,1295,1321,434,866,459,414,92200,47900,45100,42810,240,4.6,5,5,32.2,77777,9,999999999,450,0.4650,0,88,999.000,999.0,99.0 +1977,6,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,19.4,45,98200,1274,1321,442,777,312,475,84900,33900,52100,35430,220,6.2,5,5,40.2,77777,9,999999999,459,0.4650,0,88,999.000,999.0,99.0 +1977,6,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.3,41,98000,1185,1321,443,688,330,391,75500,35900,43200,19160,250,7.7,5,5,40.2,77777,9,999999999,459,0.4650,0,88,999.000,999.0,99.0 +1977,6,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,98200,1036,1321,428,243,2,241,29000,200,28800,11480,300,15.9,10,10,32.2,760,9,999999999,469,0.4650,0,88,999.000,999.0,99.0 +1977,6,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,98100,835,1321,423,301,41,275,33100,4200,30500,9150,190,3.6,9,9,32.2,3050,9,999999999,480,0.4650,0,88,999.000,999.0,99.0 +1977,6,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,98100,597,1321,423,171,28,159,18900,2700,17600,4760,220,3.6,10,9,32.2,3050,9,999999999,480,0.4650,0,88,999.000,999.0,99.0 +1977,6,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,98200,339,1321,418,96,13,93,10800,700,10600,3270,100,2.6,9,8,32.2,9140,9,999999999,490,0.4650,0,88,999.000,999.0,99.0 +1977,6,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,84,98200,85,1112,385,26,1,25,2800,0,2800,840,140,4.1,7,3,24.1,77777,9,999999999,480,0.4650,0,88,999.000,999.0,99.0 +1977,6,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98200,0,0,382,0,0,0,0,0,0,0,170,3.1,7,3,24.1,77777,9,999999999,480,0.2070,0,88,999.000,999.0,99.0 +1977,6,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.6,20.5,87,98200,0,0,381,0,0,0,0,0,0,0,150,3.1,7,3,24.1,77777,9,999999999,469,0.2070,0,88,999.000,999.0,99.0 +1977,6,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.5,20.4,93,98200,0,0,381,0,0,0,0,0,0,0,0,3.1,7,3,24.1,77777,9,999999999,469,0.2070,0,88,999.000,999.0,99.0 +1977,6,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.3,20.3,93,98200,0,0,376,0,0,0,0,0,0,0,180,3.1,6,2,24.1,77777,9,999999999,459,0.2070,0,88,999.000,999.0,99.0 +1977,7,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.3,90,98200,0,0,382,0,0,0,0,0,0,0,220,3.1,4,4,24.1,77777,9,999999999,459,0.2070,0,88,999.000,999.0,99.0 +1977,7,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.0,20.2,90,98100,0,0,374,0,0,0,0,0,0,0,200,3.1,2,2,24.1,77777,9,999999999,450,0.2070,0,88,999.000,999.0,99.0 +1977,7,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.9,20.1,90,98100,0,0,368,0,0,0,0,0,0,0,270,3.1,1,1,24.1,77777,9,999999999,440,0.2070,0,88,999.000,999.0,99.0 +1977,7,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98200,0,0,372,0,0,0,0,0,0,0,240,3.1,2,2,24.1,77777,9,999999999,440,0.2070,0,88,999.000,999.0,99.0 +1977,7,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98200,0,0,372,0,0,0,0,0,0,0,260,5.2,2,2,24.1,77777,9,999999999,430,0.2070,0,88,999.000,999.0,99.0 +1977,7,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,98200,24,606,382,15,12,14,1600,600,1600,340,240,3.6,4,4,24.1,77777,9,999999999,430,0.1060,0,88,999.000,999.0,99.0 +1977,7,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,98200,239,1321,379,104,249,59,10800,17800,7600,1070,230,4.1,4,3,19.3,77777,9,999999999,419,0.1060,0,88,999.000,999.0,99.0 +1977,7,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,98300,500,1321,375,307,624,70,32400,59100,10100,1410,240,4.1,0,0,19.3,77777,9,999999999,419,0.1060,0,88,999.000,999.0,99.0 +1977,7,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.2,74,98300,748,1321,391,510,733,94,53700,72900,12400,2150,240,4.1,0,0,19.3,77777,9,999999999,419,0.1060,0,88,999.000,999.0,99.0 +1977,7,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,22.2,70,98300,964,1321,424,418,144,312,45900,15300,34700,9860,250,5.2,8,6,24.1,9140,9,999999999,419,0.1060,0,88,999.000,999.0,99.0 +1977,7,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,22.2,63,98300,1135,1321,438,474,172,326,52800,18400,37000,13530,280,5.7,8,7,40.2,3660,9,999999999,419,0.1060,0,88,999.000,999.0,99.0 +1977,7,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,98300,1247,1321,429,978,741,275,103300,75200,32200,19120,280,4.6,5,5,40.2,77777,9,999999999,419,0.1060,0,88,999.000,999.0,99.0 +1977,7,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.7,55,98200,1295,1321,442,793,423,377,85300,44200,41800,38760,260,4.6,6,6,40.2,1160,9,999999999,419,0.1060,0,88,999.000,999.0,99.0 +1977,7,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.4,58,98200,1274,1321,432,444,241,211,50400,25400,25900,17750,240,4.6,8,8,24.1,1520,9,999999999,409,0.1060,0,88,999.000,999.0,99.0 +1977,7,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,98100,1185,1321,433,639,329,343,70800,35800,38600,16600,280,3.1,8,7,24.1,7620,9,999999999,409,0.1060,0,88,999.000,999.0,99.0 +1977,7,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,98200,1036,1321,447,242,1,241,28900,100,28800,11480,240,5.2,10,10,24.1,3660,9,999999999,409,0.1060,0,88,999.000,999.0,99.0 +1977,7,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98200,835,1321,431,149,4,147,18000,300,17800,7050,240,4.1,10,10,24.1,3660,9,999999999,409,0.1060,0,88,999.000,999.0,99.0 +1977,7,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,98200,598,1321,428,124,2,123,14500,100,14400,5270,230,4.1,10,10,16.1,1220,9,999999999,409,0.1060,0,88,999.000,999.0,99.0 +1977,7,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,98200,339,1321,430,89,5,88,10000,200,10000,3160,230,2.1,10,10,16.1,1220,9,999999999,409,0.1060,0,88,999.000,999.0,99.0 +1977,7,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.9,93,98200,85,1112,405,11,1,11,1300,0,1300,420,240,6.2,10,10,11.3,460,9,999999999,409,0.1060,0,88,999.000,999.0,99.0 +1977,7,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,98300,0,0,408,0,0,0,0,0,0,0,20,2.6,10,10,16.1,1220,9,999999999,400,0.2070,0,88,999.000,999.0,99.0 +1977,7,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,98300,0,0,404,0,0,0,0,0,0,0,0,0.0,10,10,16.1,3660,9,999999999,400,0.2070,0,88,999.000,999.0,99.0 +1977,7,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,98300,0,0,404,0,0,0,0,0,0,0,230,2.6,10,10,11.3,1220,9,999999999,390,0.2070,0,88,999.000,999.0,99.0 +1977,7,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,98300,0,0,404,0,0,0,0,0,0,0,240,3.1,10,10,11.3,1220,9,999999999,390,0.2070,0,88,999.000,999.0,99.0 +1977,7,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,98300,0,0,404,0,0,0,0,0,0,0,240,5.2,10,10,11.3,760,9,999999999,379,0.2070,0,88,999.000,999.0,99.0 +1977,7,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,98200,0,0,404,0,0,0,0,0,0,0,240,3.6,10,10,11.3,760,9,999999999,379,0.2070,0,88,999.000,999.0,99.0 +1977,7,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.8,93,98200,0,0,398,0,0,0,0,0,0,0,240,5.7,10,10,11.3,1070,9,999999999,379,0.2070,0,88,999.000,999.0,99.0 +1977,7,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,18.3,93,98200,0,0,376,0,0,0,0,0,0,0,230,2.6,7,7,16.1,9140,9,999999999,370,0.2070,0,88,999.000,999.0,99.0 +1977,7,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,18.3,93,98200,0,0,382,0,0,0,0,0,0,0,240,3.1,8,8,16.1,9140,9,999999999,370,0.2070,0,88,999.000,999.0,99.0 +1977,7,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,18.3,93,98300,23,606,390,4,0,4,500,0,500,160,320,1.5,9,9,24.1,3660,9,999999999,359,0.1720,0,88,999.000,999.0,99.0 +1977,7,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,98400,237,1321,404,24,4,24,3000,0,3000,980,230,1.5,10,10,19.3,3660,9,999999999,359,0.1720,0,88,999.000,999.0,99.0 +1977,7,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,98400,498,1321,379,269,279,163,28300,27100,18100,3460,250,1.5,8,3,19.3,77777,9,999999999,350,0.1720,0,88,999.000,999.0,99.0 +1977,7,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,98400,746,1321,389,435,408,203,45700,41500,22200,4610,270,2.6,7,2,19.3,77777,9,999999999,329,0.1720,0,88,999.000,999.0,99.0 +1977,7,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,98400,963,1321,396,663,625,206,69400,63100,23300,6010,250,2.1,6,2,19.3,77777,9,999999999,320,0.1720,0,88,999.000,999.0,99.0 +1977,7,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,98400,1134,1321,402,807,644,253,84900,65200,28900,10950,260,2.6,6,2,19.3,77777,9,999999999,309,0.1720,0,88,999.000,999.0,99.0 +1977,7,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,98300,1247,1321,411,889,663,262,94400,67400,30700,18210,310,2.6,5,2,19.3,77777,9,999999999,300,0.1720,0,88,999.000,999.0,99.0 +1977,7,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,98300,1295,1321,421,918,669,261,98000,68200,31000,25970,290,3.6,4,3,19.3,77777,9,999999999,279,0.1720,0,88,999.000,999.0,99.0 +1977,7,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,98200,1274,1321,417,936,604,352,101100,63200,40000,29930,270,3.1,5,4,19.3,77777,9,999999999,270,0.1720,0,88,999.000,999.0,99.0 +1977,7,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,98200,1185,1321,433,682,326,388,74800,35400,42900,19000,270,3.1,6,6,19.3,7620,9,999999999,259,0.1720,0,88,999.000,999.0,99.0 +1977,7,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,98200,1036,1321,425,700,526,286,74700,54800,31600,9880,310,4.1,7,3,16.1,77777,9,999999999,250,0.1720,0,88,999.000,999.0,99.0 +1977,7,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,98100,835,1321,421,560,509,237,59000,52300,25800,5920,310,4.1,8,3,16.1,77777,9,999999999,229,0.1720,0,88,999.000,999.0,99.0 +1977,7,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,98100,598,1321,417,379,482,161,39700,47400,18300,3290,310,3.1,9,2,19.3,77777,9,999999999,220,0.1720,0,88,999.000,999.0,99.0 +1977,7,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.7,49,98100,339,1321,403,150,184,103,15800,15500,11800,2040,320,3.6,9,2,19.3,77777,9,999999999,209,0.1720,0,88,999.000,999.0,99.0 +1977,7,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,98200,85,1112,388,37,19,35,4000,1200,3900,780,290,4.1,9,2,19.3,77777,9,999999999,209,0.1720,0,88,999.000,999.0,99.0 +1977,7,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,98200,0,0,376,0,0,0,0,0,0,0,320,2.6,8,2,19.3,77777,9,999999999,220,0.2070,0,88,999.000,999.0,99.0 +1977,7,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.6,64,98300,0,0,376,0,0,0,0,0,0,0,330,2.1,8,3,19.3,77777,9,999999999,220,0.2070,0,88,999.000,999.0,99.0 +1977,7,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.6,66,98300,0,0,365,0,0,0,0,0,0,0,340,2.1,4,1,19.3,77777,9,999999999,220,0.2070,0,88,999.000,999.0,99.0 +1977,7,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,98300,0,0,360,0,0,0,0,0,0,0,320,2.1,4,1,19.3,77777,9,999999999,220,0.2070,0,88,999.000,999.0,99.0 +1977,7,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,98200,0,0,353,0,0,0,0,0,0,0,0,0.0,0,0,19.3,77777,9,999999999,229,0.2080,0,88,999.000,999.0,99.0 +1977,7,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.1,81,98200,0,0,345,0,0,0,0,0,0,0,0,0.0,0,0,19.3,77777,9,999999999,229,0.2080,0,88,999.000,999.0,99.0 +1977,7,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,98200,0,0,338,0,0,0,0,0,0,0,320,2.1,0,0,19.3,77777,9,999999999,229,0.2080,0,88,999.000,999.0,99.0 +1977,7,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,16.1,90,98200,0,0,338,0,0,0,0,0,0,0,340,2.1,0,0,19.3,77777,9,999999999,229,0.2080,0,88,999.000,999.0,99.0 +1977,7,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,98200,0,0,337,0,0,0,0,0,0,0,0,0.0,1,0,19.3,77777,9,999999999,229,0.2080,0,88,999.000,999.0,99.0 +1977,7,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,98300,23,584,354,10,1,10,0,0,0,0,340,2.1,6,3,16.1,77777,9,999999999,240,0.1690,0,88,999.000,999.0,99.0 +1977,7,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.1,76,98300,235,1321,362,96,169,66,10100,11900,8000,1260,40,2.1,9,2,12.9,77777,9,999999999,240,0.1690,0,88,999.000,999.0,99.0 +1977,7,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,98300,497,1321,383,279,390,131,29000,36800,15200,2550,50,2.1,9,2,12.9,77777,9,999999999,250,0.1690,0,88,999.000,999.0,99.0 +1977,7,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,98300,745,1321,390,499,476,230,51900,48300,24600,5290,70,2.6,9,2,12.9,77777,9,999999999,259,0.1690,0,88,999.000,999.0,99.0 +1977,7,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,98400,962,1321,396,615,549,214,66800,57200,25100,6300,120,2.1,8,3,12.9,77777,9,999999999,270,0.1690,0,88,999.000,999.0,99.0 +1977,7,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,62,98400,1133,1321,401,806,668,231,85300,67900,26900,10060,100,1.5,8,3,12.9,77777,9,999999999,279,0.1690,0,88,999.000,999.0,99.0 +1977,7,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,98300,1246,1321,408,969,728,281,102400,73800,32700,19380,300,1.5,7,2,12.9,77777,9,999999999,290,0.1690,0,88,999.000,999.0,99.0 +1977,7,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,98400,1294,1321,419,805,432,381,86500,45200,42200,38880,40,1.5,6,4,12.9,9140,9,999999999,300,0.1690,0,88,999.000,999.0,99.0 +1977,7,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,98300,1273,1321,425,992,736,281,105100,74700,33000,23140,100,2.6,5,5,12.9,77777,9,999999999,300,0.1690,0,88,999.000,999.0,99.0 +1977,7,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,98300,1185,1321,419,822,603,279,86300,60900,31500,14400,120,2.1,4,4,12.9,77777,9,999999999,309,0.1690,0,88,999.000,999.0,99.0 +1977,7,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,98300,1036,1321,405,757,748,169,81100,76700,20800,5850,80,4.6,3,1,12.9,77777,9,999999999,320,0.1690,0,88,999.000,999.0,99.0 +1977,7,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.2,46,98200,835,1321,407,549,631,149,57900,63700,17600,3710,0,0.0,4,1,12.9,77777,9,999999999,329,0.1690,0,88,999.000,999.0,99.0 +1977,7,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,98200,598,1321,404,366,519,131,39200,51200,16000,2620,100,3.1,7,1,12.9,77777,9,999999999,340,0.1690,0,88,999.000,999.0,99.0 +1977,7,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,16.1,48,98200,339,1321,402,165,252,100,17400,21300,11900,1970,90,2.6,10,2,12.9,77777,9,999999999,350,0.1690,0,88,999.000,999.0,99.0 +1977,7,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.1,52,98200,84,1112,397,31,17,29,3300,1000,3200,680,90,3.6,10,3,12.9,77777,9,999999999,350,0.1690,0,88,999.000,999.0,99.0 +1977,7,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.1,54,98300,0,0,394,0,0,0,0,0,0,0,70,3.1,10,3,12.9,77777,9,999999999,350,0.2080,0,88,999.000,999.0,99.0 +1977,7,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,16.1,56,98400,0,0,391,0,0,0,0,0,0,0,0,0.0,10,3,12.9,77777,9,999999999,350,0.2080,0,88,999.000,999.0,99.0 +1977,7,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,66,98400,0,0,387,0,0,0,0,0,0,0,0,0.0,10,3,12.9,77777,9,999999999,340,0.2080,0,88,999.000,999.0,99.0 +1977,7,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,98400,0,0,385,0,0,0,0,0,0,0,60,2.1,10,3,12.9,77777,9,999999999,340,0.2080,0,88,999.000,999.0,99.0 +1977,7,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,98400,0,0,377,0,0,0,0,0,0,0,0,0.0,7,2,12.9,77777,9,999999999,340,0.2080,0,88,999.000,999.0,99.0 +1977,7,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,98400,0,0,377,0,0,0,0,0,0,0,0,0.0,7,2,12.9,77777,9,999999999,340,0.2080,0,88,999.000,999.0,99.0 +1977,7,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,98300,0,0,372,0,0,0,0,0,0,0,70,2.1,3,2,12.9,77777,9,999999999,340,0.2080,0,88,999.000,999.0,99.0 +1977,7,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98300,0,0,369,0,0,0,0,0,0,0,80,1.5,2,2,12.9,77777,9,999999999,329,0.2080,0,88,999.000,999.0,99.0 +1977,7,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,98400,0,0,366,0,0,0,0,0,0,0,40,2.6,2,2,12.9,77777,9,999999999,329,0.2080,0,88,999.000,999.0,99.0 +1977,7,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,98400,22,584,373,9,1,9,0,0,0,0,80,2.6,7,3,6.4,77777,9,999999999,329,0.2440,0,88,999.000,999.0,99.0 +1977,7,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98500,233,1321,361,91,158,63,9600,11000,7600,1190,80,3.6,2,0,6.4,77777,9,999999999,329,0.2440,0,88,999.000,999.0,99.0 +1977,7,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98600,495,1321,374,261,381,117,27500,36000,14000,2240,90,3.6,1,1,6.4,77777,9,999999999,329,0.2440,0,88,999.000,999.0,99.0 +1977,7,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,98600,743,1321,379,487,589,154,50600,58400,17600,3410,100,2.1,0,0,8.0,77777,9,999999999,329,0.2440,0,88,999.000,999.0,99.0 +1977,7,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.2,74,98600,961,1321,391,681,675,188,71700,68400,21800,5530,80,2.6,0,0,11.3,77777,9,999999999,340,0.2440,0,88,999.000,999.0,99.0 +1977,7,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,98600,1132,1321,409,773,650,215,82300,66300,25300,9390,90,2.6,1,1,12.9,77777,9,999999999,340,0.2440,0,88,999.000,999.0,99.0 +1977,7,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,98600,1246,1321,421,914,690,261,97000,70200,30700,18010,10,2.1,3,3,12.9,77777,9,999999999,340,0.2440,0,88,999.000,999.0,99.0 +1977,7,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,98500,1294,1321,420,899,591,319,94600,59600,36100,31220,100,2.6,2,2,16.1,77777,9,999999999,350,0.2440,0,88,999.000,999.0,99.0 +1977,7,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,98500,1273,1321,418,923,711,237,99100,72800,28800,19640,60,1.5,1,1,19.3,77777,9,999999999,350,0.2440,0,88,999.000,999.0,99.0 +1977,7,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,98400,1185,1321,416,843,700,213,90200,71700,25800,11210,80,2.6,1,1,19.3,77777,9,999999999,350,0.2440,0,88,999.000,999.0,99.0 +1977,7,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,19.4,47,98400,1036,1321,432,693,531,276,74300,55400,30800,9510,80,4.1,3,3,19.3,77777,9,999999999,350,0.2440,0,88,999.000,999.0,99.0 +1977,7,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,98300,835,1321,410,466,441,187,50400,45500,21600,4580,90,5.7,1,1,19.3,77777,9,999999999,350,0.2440,0,88,999.000,999.0,99.0 +1977,7,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,98300,598,1321,405,354,500,128,38000,49300,15700,2550,80,4.1,0,0,19.3,77777,9,999999999,359,0.2440,0,88,999.000,999.0,99.0 +1977,7,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,98300,339,1321,401,155,294,80,16300,24500,10000,1470,90,3.6,0,0,19.3,77777,9,999999999,359,0.2440,0,88,999.000,999.0,99.0 +1977,7,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,98300,84,1112,393,30,27,27,3200,1600,3100,640,100,3.1,0,0,19.3,77777,9,999999999,359,0.2440,0,88,999.000,999.0,99.0 +1977,7,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.0,65,98400,0,0,388,0,0,0,0,0,0,0,160,2.6,0,0,19.3,77777,9,999999999,359,0.2080,0,88,999.000,999.0,99.0 +1977,7,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,98400,0,0,383,0,0,0,0,0,0,0,160,2.6,0,0,16.1,77777,9,999999999,359,0.2080,0,88,999.000,999.0,99.0 +1977,7,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,98400,0,0,384,0,0,0,0,0,0,0,170,2.6,0,0,16.1,77777,9,999999999,359,0.2080,0,88,999.000,999.0,99.0 +1977,7,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,98400,0,0,377,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,359,0.2080,0,88,999.000,999.0,99.0 +1977,7,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,98400,0,0,375,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,359,0.2080,0,88,999.000,999.0,99.0 +1977,7,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,84,98300,0,0,369,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,359,0.2080,0,88,999.000,999.0,99.0 +1977,7,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,84,98300,0,0,369,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,359,0.2080,0,88,999.000,999.0,99.0 +1977,7,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,98300,0,0,363,0,0,0,0,0,0,0,140,1.5,0,0,11.3,77777,9,999999999,359,0.2080,0,88,999.000,999.0,99.0 +1977,7,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98400,0,0,361,0,0,0,0,0,0,0,250,2.6,0,0,11.3,77777,9,999999999,359,0.2080,0,88,999.000,999.0,99.0 +1977,7,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98400,21,562,361,11,10,10,0,0,0,0,250,2.6,0,0,11.3,77777,9,999999999,359,0.1560,0,88,999.000,999.0,99.0 +1977,7,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98400,232,1321,373,100,284,50,10500,20000,7000,890,320,2.6,0,0,11.3,77777,9,999999999,359,0.1560,0,88,999.000,999.0,99.0 +1977,7,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,98400,493,1321,384,291,547,86,30300,51200,11100,1680,330,3.6,0,0,11.3,77777,9,999999999,359,0.1560,0,88,999.000,999.0,99.0 +1977,7,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.7,67,98500,742,1321,396,501,681,117,53100,68400,14600,2690,320,2.6,0,0,12.9,77777,9,999999999,359,0.1560,0,88,999.000,999.0,99.0 +1977,7,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,98500,959,1321,418,638,538,246,68300,55900,27600,7280,250,3.6,6,2,12.9,77777,9,999999999,359,0.1560,0,88,999.000,999.0,99.0 +1977,7,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,98500,1131,1321,424,739,566,252,77600,57300,28500,10820,330,2.1,7,2,12.9,77777,9,999999999,359,0.1560,0,88,999.000,999.0,99.0 +1977,7,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,98500,1245,1321,424,888,694,232,95100,71000,28000,16050,10,1.5,7,2,12.9,77777,9,999999999,359,0.1560,0,88,999.000,999.0,99.0 +1977,7,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,98400,1293,1321,434,782,434,355,84500,45400,39900,35840,70,2.1,8,4,12.9,77777,9,999999999,370,0.1560,0,88,999.000,999.0,99.0 +1977,7,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.0,48,98300,1273,1321,448,832,445,402,88600,46500,43800,34150,320,2.6,9,7,11.3,1520,9,999999999,370,0.1560,0,88,999.000,999.0,99.0 +1977,7,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,19.4,45,98300,1185,1321,435,660,329,364,72800,35800,40600,17700,360,3.6,8,3,11.3,77777,9,999999999,370,0.1560,0,88,999.000,999.0,99.0 +1977,7,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,18.9,44,98200,1036,1321,441,648,484,267,69600,50500,29900,9180,310,3.1,5,5,9.7,77777,9,999999999,370,0.1560,0,88,999.000,999.0,99.0 +1977,7,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,19.4,47,98100,835,1321,435,520,524,188,56100,54100,21900,4600,340,3.1,4,4,9.7,77777,9,999999999,370,0.1560,0,88,999.000,999.0,99.0 +1977,7,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,98100,597,1321,439,311,245,200,32900,24900,21700,4450,310,3.1,6,6,9.7,3350,9,999999999,370,0.1560,0,88,999.000,999.0,99.0 +1977,7,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,98100,338,1321,427,132,147,95,14500,12700,11200,2090,360,3.6,8,4,9.7,77777,9,999999999,370,0.1560,0,88,999.000,999.0,99.0 +1977,7,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,98100,84,1112,417,33,22,31,3600,1300,3500,720,10,2.1,8,3,9.7,77777,9,999999999,370,0.1560,0,88,999.000,999.0,99.0 +1977,7,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,98100,0,0,404,0,0,0,0,0,0,0,0,0.0,7,2,9.7,77777,9,999999999,370,0.2080,0,88,999.000,999.0,99.0 +1977,7,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,98200,0,0,408,0,0,0,0,0,0,0,330,2.1,6,3,9.7,77777,9,999999999,370,0.2080,0,88,999.000,999.0,99.0 +1977,7,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,98200,0,0,434,0,0,0,0,0,0,0,310,3.1,10,9,9.7,3350,9,999999999,370,0.2080,0,88,999.000,999.0,99.0 +1977,7,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,98100,0,0,434,0,0,0,0,0,0,0,330,2.6,10,9,9.7,3050,9,999999999,370,0.2080,0,88,999.000,999.0,99.0 +1977,7,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,98100,0,0,424,0,0,0,0,0,0,0,230,2.1,10,9,9.7,3050,9,999999999,370,0.2090,0,88,999.000,999.0,99.0 +1977,7,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98100,0,0,395,0,0,0,0,0,0,0,290,2.6,7,5,9.7,3660,9,999999999,370,0.2090,0,88,999.000,999.0,99.0 +1977,7,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98000,0,0,374,0,0,0,0,0,0,0,290,3.1,2,1,9.7,77777,9,999999999,370,0.2090,0,88,999.000,999.0,99.0 +1977,7,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98000,0,0,366,0,0,0,0,0,0,0,290,3.6,0,0,8.0,77777,9,999999999,370,0.2090,0,88,999.000,999.0,99.0 +1977,7,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98100,0,0,366,0,0,0,0,0,0,0,310,3.1,0,0,8.0,77777,9,999999999,370,0.2090,0,88,999.000,999.0,99.0 +1977,7,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98100,20,562,379,8,0,8,0,0,0,0,300,3.1,2,2,6.4,77777,9,999999999,370,0.3000,0,88,999.000,999.0,99.0 +1977,7,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,98100,230,1321,372,81,108,62,8800,7900,7400,1320,310,3.1,0,0,6.4,77777,9,999999999,370,0.3000,0,88,999.000,999.0,99.0 +1977,7,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,98100,492,1321,387,259,367,121,27100,34600,14200,2330,350,4.6,0,0,6.4,77777,9,999999999,370,0.3000,0,88,999.000,999.0,99.0 +1977,7,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,98100,740,1321,402,470,527,173,50200,53700,20100,3850,360,3.1,0,0,6.4,77777,9,999999999,370,0.3000,0,88,999.000,999.0,99.0 +1977,7,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,98100,958,1321,403,664,619,213,69200,62300,24000,6130,20,2.6,0,0,6.4,77777,9,999999999,359,0.3000,0,88,999.000,999.0,99.0 +1977,7,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.7,57,98100,1130,1321,411,825,681,241,87100,69100,27800,10360,270,2.1,0,0,6.4,77777,9,999999999,359,0.3000,0,88,999.000,999.0,99.0 +1977,7,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.7,55,98100,1244,1321,414,925,707,257,98300,72000,30400,17610,50,2.6,0,0,6.4,77777,9,999999999,359,0.3000,0,88,999.000,999.0,99.0 +1977,7,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,21.1,50,98000,1293,1321,419,972,722,264,103700,73600,31500,25800,350,4.1,0,0,6.4,77777,9,999999999,350,0.3000,0,88,999.000,999.0,99.0 +1977,7,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,21.1,49,97900,1273,1321,430,909,661,270,96500,67200,31600,22150,320,2.1,3,1,6.4,77777,9,999999999,350,0.3000,0,88,999.000,999.0,99.0 +1977,7,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,19.4,44,97900,1185,1321,438,797,514,335,85500,53700,37200,17880,280,2.1,3,3,6.4,77777,9,999999999,350,0.3000,0,88,999.000,999.0,99.0 +1977,7,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,20.0,44,97800,1036,1321,424,736,649,226,77200,65600,25700,7580,260,3.6,0,0,8.0,77777,9,999999999,350,0.3000,0,88,999.000,999.0,99.0 +1977,7,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,20.6,47,97800,835,1321,421,554,572,191,59600,59000,22300,4680,280,3.1,0,0,9.7,77777,9,999999999,350,0.3000,0,88,999.000,999.0,99.0 +1977,7,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.1,52,97800,597,1321,416,347,449,143,36700,44200,16700,2880,280,4.1,0,0,9.7,77777,9,999999999,340,0.3000,0,88,999.000,999.0,99.0 +1977,7,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.1,54,97800,338,1321,413,147,237,86,15600,20100,10500,1640,280,3.1,0,0,9.7,77777,9,999999999,340,0.3000,0,88,999.000,999.0,99.0 +1977,7,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,97800,83,1090,412,25,11,24,2700,700,2700,580,290,2.6,3,2,9.7,77777,9,999999999,340,0.3000,0,88,999.000,999.0,99.0 +1977,7,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.7,67,97800,0,0,409,0,0,0,0,0,0,0,240,1.5,3,2,9.7,77777,9,999999999,329,0.2090,0,88,999.000,999.0,99.0 +1977,7,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,97800,0,0,405,0,0,0,0,0,0,0,60,2.1,3,2,9.7,77777,9,999999999,329,0.2090,0,88,999.000,999.0,99.0 +1977,7,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,97800,0,0,389,0,0,0,0,0,0,0,310,1.5,0,0,9.7,77777,9,999999999,329,0.2090,0,88,999.000,999.0,99.0 +1977,7,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,97800,0,0,387,0,0,0,0,0,0,0,290,2.1,0,0,9.7,77777,9,999999999,329,0.2090,0,88,999.000,999.0,99.0 +1977,7,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,97800,0,0,387,0,0,0,0,0,0,0,350,3.1,0,0,9.7,77777,9,999999999,329,0.2090,0,88,999.000,999.0,99.0 +1977,7,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,97800,0,0,387,0,0,0,0,0,0,0,340,2.6,0,0,9.7,77777,9,999999999,320,0.2090,0,88,999.000,999.0,99.0 +1977,7,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,97800,0,0,382,0,0,0,0,0,0,0,350,2.1,0,0,9.7,77777,9,999999999,320,0.2090,0,88,999.000,999.0,99.0 +1977,7,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,97800,0,0,380,0,0,0,0,0,0,0,350,1.5,0,0,9.7,77777,9,999999999,320,0.2090,0,88,999.000,999.0,99.0 +1977,7,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,97800,0,0,368,0,0,0,0,0,0,0,310,2.6,0,0,9.7,77777,9,999999999,320,0.2090,0,88,999.000,999.0,99.0 +1977,7,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,97900,20,540,384,11,17,9,0,0,0,0,310,3.1,4,2,6.4,77777,9,999999999,309,0.0830,0,88,999.000,999.0,99.0 +1977,7,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,97900,228,1321,379,111,422,37,11400,30600,6100,680,290,1.5,0,0,9.7,77777,9,999999999,309,0.0830,0,88,999.000,999.0,99.0 +1977,7,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,22.2,77,97900,490,1321,388,309,667,60,32200,62600,9000,1260,230,2.1,0,0,6.4,77777,9,999999999,320,0.0830,0,88,999.000,999.0,99.0 +1977,7,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,22.2,65,97900,739,1321,402,515,773,81,55000,77200,11700,1930,270,2.1,0,0,6.4,77777,9,999999999,320,0.0830,0,88,999.000,999.0,99.0 +1977,7,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.7,57,97900,957,1321,411,712,845,97,73700,84300,12500,2530,200,2.1,0,0,9.7,77777,9,999999999,329,0.0830,0,88,999.000,999.0,99.0 +1977,7,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.1,52,97900,1129,1321,416,858,874,109,88600,87600,13600,3980,310,2.1,0,0,6.4,77777,9,999999999,329,0.0830,0,88,999.000,999.0,99.0 +1977,7,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,22.2,52,97900,1243,1321,423,965,899,115,99200,90200,14100,6570,220,3.6,0,0,8.0,77777,9,999999999,329,0.0830,0,88,999.000,999.0,99.0 +1977,7,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,20.6,46,97800,1292,1321,425,1002,901,118,103000,90500,14400,9580,280,5.2,0,0,9.7,77777,9,999999999,340,0.0830,0,88,999.000,999.0,99.0 +1977,7,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,19.4,41,97800,1272,1321,426,987,881,137,101200,88300,15900,9040,30,2.6,2,0,9.7,77777,9,999999999,350,0.0830,0,88,999.000,999.0,99.0 +1977,7,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,19.4,40,97700,1185,1321,429,940,828,196,97700,82900,23200,9300,130,1.5,7,0,8.0,77777,9,999999999,350,0.0830,0,88,999.000,999.0,99.0 +1977,7,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,19.4,39,97700,1035,1321,441,743,702,191,78900,71600,22600,6530,360,3.1,9,1,8.0,77777,9,999999999,350,0.0830,0,88,999.000,999.0,99.0 +1977,7,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,18.9,39,97700,835,1321,454,511,481,206,54600,49600,23200,5080,50,1.5,10,5,8.0,77777,9,999999999,359,0.0830,0,88,999.000,999.0,99.0 +1977,7,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,18.9,41,97700,597,1321,448,342,419,152,36000,41200,17300,3080,200,1.5,10,5,8.0,77777,9,999999999,370,0.0830,0,88,999.000,999.0,99.0 +1977,7,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.9,42,97700,338,1321,444,146,118,116,15700,10100,13100,2550,180,3.6,10,5,8.0,77777,9,999999999,370,0.0830,0,88,999.000,999.0,99.0 +1977,7,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,97700,83,1090,430,36,58,30,3800,2800,3500,620,180,2.1,9,4,8.0,77777,9,999999999,370,0.0830,0,88,999.000,999.0,99.0 +1977,7,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,97700,0,0,426,0,0,0,0,0,0,0,180,3.1,8,4,9.7,77777,9,999999999,370,0.2090,0,88,999.000,999.0,99.0 +1977,7,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,97800,0,0,417,0,0,0,0,0,0,0,180,2.6,7,3,9.7,77777,9,999999999,370,0.2090,0,88,999.000,999.0,99.0 +1977,7,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,97800,0,0,392,0,0,0,0,0,0,0,180,1.5,0,0,9.7,77777,9,999999999,370,0.2090,0,88,999.000,999.0,99.0 +1977,7,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,97800,0,0,392,0,0,0,0,0,0,0,180,3.1,0,0,9.7,77777,9,999999999,370,0.2090,0,88,999.000,999.0,99.0 +1977,7,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,97800,0,0,387,0,0,0,0,0,0,0,240,2.6,0,0,9.7,77777,9,999999999,370,0.2090,0,88,999.000,999.0,99.0 +1977,7,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,97800,0,0,375,0,0,0,0,0,0,0,250,3.1,0,0,9.7,77777,9,999999999,359,0.2090,0,88,999.000,999.0,99.0 +1977,7,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,97800,0,0,375,0,0,0,0,0,0,0,250,2.6,0,0,8.0,77777,9,999999999,359,0.2090,0,88,999.000,999.0,99.0 +1977,7,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,97900,0,0,370,0,0,0,0,0,0,0,290,4.1,0,0,8.0,77777,9,999999999,359,0.2090,0,88,999.000,999.0,99.0 +1977,7,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,97900,0,0,367,0,0,0,0,0,0,0,240,2.6,0,0,8.0,77777,9,999999999,359,0.2090,0,88,999.000,999.0,99.0 +1977,7,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,84,97900,19,540,369,9,0,9,0,0,0,0,270,2.6,0,0,6.4,77777,9,999999999,359,0.3140,0,88,999.000,999.0,99.0 +1977,7,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,97900,226,1321,372,81,113,62,8900,8200,7400,1320,270,3.6,0,0,6.4,77777,9,999999999,359,0.3140,0,88,999.000,999.0,99.0 +1977,7,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,98000,488,1321,387,255,355,123,26700,33400,14300,2370,300,2.1,0,0,6.4,77777,9,999999999,359,0.3140,0,88,999.000,999.0,99.0 +1977,7,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,22.2,65,98000,737,1321,402,465,513,178,49600,52200,20400,3960,320,2.1,0,0,6.4,77777,9,999999999,350,0.3140,0,88,999.000,999.0,99.0 +1977,7,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,22.2,57,98000,956,1321,415,663,611,220,69100,61400,24600,6270,350,2.6,0,0,8.0,77777,9,999999999,350,0.3140,0,88,999.000,999.0,99.0 +1977,7,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,21.1,47,98100,1128,1321,425,821,668,248,86300,67700,28400,10570,300,3.1,0,0,9.7,77777,9,999999999,350,0.3140,0,88,999.000,999.0,99.0 +1977,7,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,20.0,43,98100,1243,1321,427,927,701,265,98200,71200,31100,17980,290,2.6,0,0,9.7,77777,9,999999999,340,0.3140,0,88,999.000,999.0,99.0 +1977,7,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.6,20.0,40,98000,1292,1321,442,974,716,273,103700,72800,32300,26360,320,3.6,1,1,9.7,77777,9,999999999,340,0.3140,0,88,999.000,999.0,99.0 +1977,7,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.1,20.0,39,98000,1272,1321,444,919,665,277,97400,67500,32300,22570,10,2.6,1,1,11.3,77777,9,999999999,340,0.3140,0,88,999.000,999.0,99.0 +1977,7,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,18.9,35,97900,1184,1321,446,834,651,249,88300,66200,28900,12920,360,2.1,1,1,11.3,77777,9,999999999,329,0.3140,0,88,999.000,999.0,99.0 +1977,7,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,36.7,18.9,35,97800,1035,1321,452,678,483,299,72100,50300,32600,10350,320,2.1,2,2,11.3,77777,9,999999999,329,0.3140,0,88,999.000,999.0,99.0 +1977,7,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,18.9,40,97700,835,1321,439,523,455,235,55200,46800,25600,5870,320,2.1,2,2,9.7,77777,9,999999999,329,0.3140,0,88,999.000,999.0,99.0 +1977,7,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,18.9,40,97800,596,1321,460,258,74,224,28200,7300,24900,6210,220,2.1,7,7,8.0,7620,9,999999999,320,0.3140,0,88,999.000,999.0,99.0 +1977,7,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,97900,337,1321,475,29,2,28,3500,100,3500,1220,200,7.7,10,10,6.4,7620,9,999999999,320,0.3140,0,88,999.000,999.0,99.0 +1977,7,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,97900,82,1090,454,25,0,25,2800,0,2800,830,200,7.7,10,10,8.0,7620,9,999999999,320,0.3140,0,88,999.000,999.0,99.0 +1977,7,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,98000,0,0,439,0,0,0,0,0,0,0,180,7.2,10,10,8.0,7620,9,999999999,320,0.2090,0,88,999.000,999.0,99.0 +1977,7,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,98200,0,0,436,0,0,0,0,0,0,0,240,4.1,10,10,11.3,1220,9,999999999,320,0.2090,0,88,999.000,999.0,99.0 +1977,7,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,98200,0,0,432,0,0,0,0,0,0,0,250,4.6,10,10,11.3,1370,9,999999999,309,0.2090,0,88,999.000,999.0,99.0 +1977,7,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,98200,0,0,428,0,0,0,0,0,0,0,210,2.1,10,10,11.3,7620,9,999999999,309,0.2090,0,88,999.000,999.0,99.0 +1977,7,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,84,98300,0,0,426,0,0,0,0,0,0,0,60,5.2,10,10,11.3,1370,9,999999999,309,0.2090,0,88,999.000,999.0,99.0 +1977,7,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98100,0,0,423,0,0,0,0,0,0,0,320,3.6,10,10,9.7,7620,9,999999999,309,0.2090,0,88,999.000,999.0,99.0 +1977,7,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98100,0,0,373,0,0,0,0,0,0,0,290,1.5,5,2,8.0,77777,9,999999999,309,0.2090,0,88,999.000,999.0,99.0 +1977,7,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.6,97,98100,0,0,374,0,0,0,0,0,0,0,220,3.6,5,3,8.0,77777,9,999999999,300,0.2090,0,88,999.000,999.0,99.0 +1977,7,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.6,100,98200,0,0,356,0,0,0,0,0,0,0,260,3.1,0,0,8.0,77777,9,999999999,300,0.2090,0,88,999.000,999.0,99.0 +1977,7,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,98200,18,518,376,8,0,8,0,0,0,0,270,3.1,10,6,4.8,7620,9,999999999,300,0.2050,0,88,999.000,999.0,99.0 +1977,7,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,98200,224,1321,369,90,150,64,9400,10200,7700,1220,250,3.6,7,2,4.8,77777,9,999999999,300,0.2050,0,88,999.000,999.0,99.0 +1977,7,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98300,486,1321,373,269,437,108,28600,41100,13400,2050,250,5.7,3,1,8.0,77777,9,999999999,300,0.2050,0,88,999.000,999.0,99.0 +1977,7,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,98300,736,1321,378,489,628,137,51100,62600,16200,3060,230,4.6,0,0,9.7,77777,9,999999999,300,0.2050,0,88,999.000,999.0,99.0 +1977,7,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,98300,954,1321,395,685,714,167,72700,72700,20000,4920,290,5.2,0,0,11.3,77777,9,999999999,300,0.2050,0,88,999.000,999.0,99.0 +1977,7,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,98300,1127,1321,400,837,758,188,89800,77800,23300,8170,280,3.6,0,0,11.3,77777,9,999999999,300,0.2050,0,88,999.000,999.0,99.0 +1977,7,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,98300,1242,1321,409,938,783,200,97900,78600,23900,12560,310,4.6,0,0,12.9,77777,9,999999999,300,0.2050,0,88,999.000,999.0,99.0 +1977,7,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.6,52,98200,1291,1321,413,990,801,205,103700,80500,24900,18580,240,3.6,0,0,12.9,77777,9,999999999,300,0.2050,0,88,999.000,999.0,99.0 +1977,7,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,20.0,47,98200,1271,1321,418,975,799,203,101900,80200,24500,15490,300,4.1,0,0,12.9,77777,9,999999999,290,0.2050,0,88,999.000,999.0,99.0 +1977,7,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,18.9,41,98100,1184,1321,430,860,736,198,92500,75600,24600,10420,180,3.6,1,1,12.9,77777,9,999999999,290,0.2050,0,88,999.000,999.0,99.0 +1977,7,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,18.9,41,98000,1035,1321,430,741,684,204,78300,69500,23800,6910,210,4.1,1,1,12.9,77777,9,999999999,290,0.2050,0,88,999.000,999.0,99.0 +1977,7,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.3,41,98000,834,1321,426,564,594,188,58500,59300,21000,4510,240,4.1,1,1,11.3,77777,9,999999999,290,0.2050,0,88,999.000,999.0,99.0 +1977,7,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,18.3,42,98000,596,1321,424,356,497,132,38100,49000,16000,2640,180,3.1,1,1,11.3,77777,9,999999999,290,0.2050,0,88,999.000,999.0,99.0 +1977,7,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,98100,336,1321,426,148,276,78,15600,23000,9700,1430,230,3.6,2,2,11.3,77777,9,999999999,290,0.2050,0,88,999.000,999.0,99.0 +1977,7,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,98100,81,1090,423,20,9,19,2200,500,2100,480,210,5.2,5,5,11.3,77777,9,999999999,300,0.2050,0,88,999.000,999.0,99.0 +1977,7,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,98200,0,0,451,0,0,0,0,0,0,0,220,6.2,10,10,11.3,1220,9,999999999,300,0.2090,0,88,999.000,999.0,99.0 +1977,7,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,98200,0,0,440,0,0,0,0,0,0,0,270,4.1,10,10,11.3,1220,9,999999999,309,0.2090,0,88,999.000,999.0,99.0 +1977,7,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,98200,0,0,407,0,0,0,0,0,0,0,240,5.2,9,7,12.9,7620,9,999999999,320,0.2090,0,88,999.000,999.0,99.0 +1977,7,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,98200,0,0,389,0,0,0,0,0,0,0,250,4.1,7,3,12.9,77777,9,999999999,329,0.2090,0,88,999.000,999.0,99.0 +1977,7,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,98200,0,0,372,0,0,0,0,0,0,0,240,2.6,4,1,12.9,77777,9,999999999,329,0.2090,0,88,999.000,999.0,99.0 +1977,7,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,98200,0,0,372,0,0,0,0,0,0,0,230,2.6,3,1,12.9,77777,9,999999999,340,0.2090,0,88,999.000,999.0,99.0 +1977,7,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,98200,0,0,362,0,0,0,0,0,0,0,240,2.6,0,0,12.9,77777,9,999999999,350,0.2090,0,88,999.000,999.0,99.0 +1977,7,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,98300,0,0,360,0,0,0,0,0,0,0,230,2.6,0,0,12.9,77777,9,999999999,359,0.2090,0,88,999.000,999.0,99.0 +1977,7,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98300,0,0,357,0,0,0,0,0,0,0,250,2.6,0,0,11.3,77777,9,999999999,370,0.2090,0,88,999.000,999.0,99.0 +1977,7,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.9,93,98300,17,518,351,8,0,8,0,0,0,0,270,2.1,0,0,11.3,77777,9,999999999,370,0.3050,0,88,999.000,999.0,99.0 +1977,7,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98300,221,1322,357,80,115,60,8600,8300,7300,1280,270,3.1,0,0,9.7,77777,9,999999999,379,0.3050,0,88,999.000,999.0,99.0 +1977,7,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,98300,484,1322,368,252,359,120,26400,33700,14100,2310,270,2.1,0,0,12.9,77777,9,999999999,379,0.3050,0,88,999.000,999.0,99.0 +1977,7,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,98400,734,1322,379,464,520,174,49500,52900,20100,3860,270,3.1,0,0,19.3,77777,9,999999999,370,0.3050,0,88,999.000,999.0,99.0 +1977,7,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,98400,953,1322,385,663,619,215,69100,62300,24100,6120,300,4.6,0,0,40.2,77777,9,999999999,370,0.3050,0,88,999.000,999.0,99.0 +1977,7,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,98400,1126,1322,395,820,676,243,86500,68500,28000,10300,250,3.6,0,0,40.2,77777,9,999999999,370,0.3050,0,88,999.000,999.0,99.0 +1977,7,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,98400,1241,1322,403,925,706,260,98200,71800,30600,17500,290,4.1,0,0,40.2,77777,9,999999999,359,0.3050,0,88,999.000,999.0,99.0 +1977,7,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,98300,1291,1322,423,722,300,429,79800,32700,47800,36130,250,4.6,3,3,40.2,77777,9,999999999,359,0.3050,0,88,999.000,999.0,99.0 +1977,7,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.8,42,98300,1271,1322,433,877,556,342,95100,58200,39000,28510,190,3.6,4,4,40.2,77777,9,999999999,359,0.3050,0,88,999.000,999.0,99.0 +1977,7,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.8,42,98200,1184,1322,440,663,307,387,72800,33400,42800,18840,230,6.7,6,6,40.2,1520,9,999999999,350,0.3050,0,88,999.000,999.0,99.0 +1977,7,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.8,41,98100,1035,1322,440,611,307,370,66100,33200,40000,12700,220,5.2,5,5,48.3,77777,9,999999999,350,0.3050,0,88,999.000,999.0,99.0 +1977,7,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.2,41,98100,834,1322,439,451,291,267,48600,31100,29000,6920,200,5.2,6,6,48.3,1520,9,999999999,350,0.3050,0,88,999.000,999.0,99.0 +1977,7,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,98100,595,1322,436,218,102,171,23800,10300,19100,4120,190,5.2,7,7,48.3,1370,9,999999999,340,0.3050,0,88,999.000,999.0,99.0 +1977,7,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,98100,335,1322,441,93,26,86,10200,2300,9600,2260,180,5.2,8,8,48.3,3660,9,999999999,340,0.3050,0,88,999.000,999.0,99.0 +1977,7,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,98200,80,1068,400,22,11,21,2400,700,2300,520,220,4.6,1,1,48.3,77777,9,999999999,350,0.3050,0,88,999.000,999.0,99.0 +1977,7,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.9,62,98200,0,0,384,0,0,0,0,0,0,0,230,3.6,0,0,40.2,77777,9,999999999,350,0.2090,0,88,999.000,999.0,99.0 +1977,7,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,19.4,69,98300,0,0,386,0,0,0,0,0,0,0,230,4.1,2,1,32.2,77777,9,999999999,359,0.2090,0,88,999.000,999.0,99.0 +1977,7,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,98300,0,0,372,0,0,0,0,0,0,0,240,4.6,0,0,24.1,77777,9,999999999,359,0.2090,0,88,999.000,999.0,99.0 +1977,7,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,98300,0,0,370,0,0,0,0,0,0,0,240,5.2,0,0,24.1,77777,9,999999999,370,0.2090,0,88,999.000,999.0,99.0 +1977,7,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,98300,0,0,368,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,379,0.2100,0,88,999.000,999.0,99.0 +1977,7,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98300,0,0,357,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,379,0.2100,0,88,999.000,999.0,99.0 +1977,7,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,98300,0,0,354,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,390,0.2100,0,88,999.000,999.0,99.0 +1977,7,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,19.4,97,98300,0,0,351,0,0,0,0,0,0,0,270,2.6,0,0,19.3,77777,9,999999999,390,0.2100,0,88,999.000,999.0,99.0 +1977,7,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,98300,0,0,354,0,0,0,0,0,0,0,260,2.1,0,0,19.3,77777,9,999999999,400,0.2100,0,88,999.000,999.0,99.0 +1977,7,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,19.4,97,98300,16,496,351,9,2,8,0,0,0,0,230,2.1,0,0,24.1,77777,9,999999999,400,0.2130,0,88,999.000,999.0,99.0 +1977,7,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98400,219,1322,360,84,181,54,8900,12200,6900,1000,240,2.1,0,0,24.1,77777,9,999999999,409,0.2130,0,88,999.000,999.0,99.0 +1977,7,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,98400,482,1322,374,267,457,100,28600,43000,12900,1880,300,2.6,0,0,24.1,77777,9,999999999,400,0.2130,0,88,999.000,999.0,99.0 +1977,7,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,98400,733,1322,390,465,584,140,48600,58100,16300,3110,280,1.5,1,1,32.2,77777,9,999999999,400,0.2130,0,88,999.000,999.0,99.0 +1977,7,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,98400,952,1322,402,649,558,245,69400,58000,27500,7160,330,2.1,2,2,40.2,77777,9,999999999,390,0.2130,0,88,999.000,999.0,99.0 +1977,7,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,98400,1125,1322,413,761,579,267,79700,58400,29900,11180,230,2.1,3,3,40.2,77777,9,999999999,379,0.2130,0,88,999.000,999.0,99.0 +1977,7,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,98400,1240,1322,418,909,689,261,96500,70100,30600,17480,200,2.6,3,3,40.2,77777,9,999999999,379,0.2130,0,88,999.000,999.0,99.0 +1977,7,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,17.8,46,98300,1290,1322,431,862,479,394,92300,50100,43400,38580,160,4.6,6,6,40.2,1520,9,999999999,370,0.2130,0,88,999.000,999.0,99.0 +1977,7,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,98300,1271,1322,446,785,417,383,84000,43600,42000,31920,190,4.1,7,7,40.2,1520,9,999999999,359,0.2130,0,88,999.000,999.0,99.0 +1977,7,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,98200,1183,1322,446,695,291,434,75700,31600,47300,21360,190,2.6,8,8,40.2,1520,9,999999999,359,0.2130,0,88,999.000,999.0,99.0 +1977,7,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,98100,1034,1322,456,386,62,337,42500,6400,37600,13250,150,3.1,9,9,40.2,1520,9,999999999,350,0.2130,0,88,999.000,999.0,99.0 +1977,7,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,98100,833,1322,444,337,185,220,37400,19600,25000,6130,180,3.6,8,8,40.2,1520,9,999999999,340,0.2130,0,88,999.000,999.0,99.0 +1977,7,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,98100,595,1322,440,79,36,63,9200,3700,7600,1520,270,5.2,9,9,40.2,1520,9,999999999,340,0.2130,0,88,999.000,999.0,99.0 +1977,7,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,98200,334,1322,426,100,84,79,11100,7300,9200,1730,300,4.1,9,9,40.2,1520,9,999999999,329,0.2130,0,88,999.000,999.0,99.0 +1977,7,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,98200,79,1068,426,17,4,17,2000,0,2000,620,200,3.6,9,9,40.2,1520,9,999999999,340,0.2130,0,88,999.000,999.0,99.0 +1977,7,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,98200,0,0,421,0,0,0,0,0,0,0,220,2.6,8,8,32.2,1520,9,999999999,340,0.2100,0,88,999.000,999.0,99.0 +1977,7,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,98300,0,0,401,0,0,0,0,0,0,0,230,3.6,5,5,24.1,77777,9,999999999,350,0.2100,0,88,999.000,999.0,99.0 +1977,7,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,98300,0,0,378,0,0,0,0,0,0,0,260,2.6,2,1,24.1,77777,9,999999999,359,0.2100,0,88,999.000,999.0,99.0 +1977,7,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,98200,0,0,368,0,0,0,0,0,0,0,240,2.6,0,0,24.1,77777,9,999999999,359,0.2100,0,88,999.000,999.0,99.0 +1977,7,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,98200,0,0,366,0,0,0,0,0,0,0,260,2.1,0,0,24.1,77777,9,999999999,370,0.2100,0,88,999.000,999.0,99.0 +1977,7,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,98200,0,0,362,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,379,0.2100,0,88,999.000,999.0,99.0 +1977,7,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,98200,0,0,357,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,379,0.2100,0,88,999.000,999.0,99.0 +1977,7,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,98200,0,0,354,0,0,0,0,0,0,0,260,2.6,0,0,19.3,77777,9,999999999,390,0.2100,0,88,999.000,999.0,99.0 +1977,7,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,98200,0,0,362,0,0,0,0,0,0,0,240,2.6,1,1,19.3,77777,9,999999999,400,0.2100,0,88,999.000,999.0,99.0 +1977,7,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,98300,15,474,370,8,13,6,0,0,0,0,270,3.1,3,3,19.3,77777,9,999999999,400,0.1090,0,88,999.000,999.0,99.0 +1977,7,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,98400,217,1322,382,93,211,58,9800,14100,7500,1090,280,3.1,6,6,24.1,3660,9,999999999,409,0.1090,0,88,999.000,999.0,99.0 +1977,7,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98400,481,1322,403,195,105,156,21100,10100,17400,3590,320,3.1,8,8,16.1,3660,9,999999999,409,0.1090,0,88,999.000,999.0,99.0 +1977,7,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,98500,731,1322,412,301,98,246,33000,9900,27500,7610,310,4.1,8,8,17.7,3660,9,999999999,409,0.1090,0,88,999.000,999.0,99.0 +1977,7,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.7,72,98400,951,1322,429,589,329,351,63100,35400,37600,10650,210,2.6,8,8,19.3,5490,9,999999999,409,0.1090,0,88,999.000,999.0,99.0 +1977,7,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,98400,1124,1322,443,562,122,458,61900,12600,51100,19240,290,3.6,9,9,24.1,5490,9,999999999,409,0.1090,0,88,999.000,999.0,99.0 +1977,7,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,98400,1240,1322,428,709,482,256,75400,49100,29300,17080,270,4.1,6,6,24.1,5490,9,999999999,409,0.1090,0,88,999.000,999.0,99.0 +1977,7,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,98400,1290,1322,427,911,647,278,96700,65700,32500,26180,300,2.1,5,5,32.2,77777,9,999999999,409,0.1090,0,88,999.000,999.0,99.0 +1977,7,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,98300,1270,1322,426,1002,792,239,107400,81000,29300,19340,110,1.5,4,4,40.2,77777,9,999999999,409,0.1090,0,88,999.000,999.0,99.0 +1977,7,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,98200,1183,1322,430,778,576,261,82100,58400,29700,13400,310,2.1,4,4,40.2,77777,9,999999999,409,0.1090,0,88,999.000,999.0,99.0 +1977,7,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,98200,1034,1322,430,692,546,263,74400,57000,29800,8990,240,4.1,4,4,40.2,77777,9,999999999,409,0.1090,0,88,999.000,999.0,99.0 +1977,7,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,98200,833,1322,432,519,483,214,55300,49700,23900,5280,270,2.6,4,4,40.2,77777,9,999999999,409,0.1090,0,88,999.000,999.0,99.0 +1977,7,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.3,44,98200,594,1322,434,414,612,138,42400,58500,16000,2670,280,3.1,4,4,40.2,77777,9,999999999,409,0.1090,0,88,999.000,999.0,99.0 +1977,7,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,98200,333,1322,428,143,237,83,15300,19900,10200,1580,320,2.1,4,4,40.2,77777,9,999999999,409,0.1090,0,88,999.000,999.0,99.0 +1977,7,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,98200,79,1068,415,32,68,25,3200,2700,3000,450,340,3.1,3,3,24.1,77777,9,999999999,409,0.1090,0,88,999.000,999.0,99.0 +1977,7,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,98200,0,0,409,0,0,0,0,0,0,0,320,2.1,3,3,24.1,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,98300,0,0,402,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,419,0.2100,0,88,999.000,999.0,99.0 +1977,7,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,98400,0,0,382,0,0,0,0,0,0,0,360,3.6,0,0,24.1,77777,9,999999999,419,0.2100,0,88,999.000,999.0,99.0 +1977,7,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,98400,0,0,381,0,0,0,0,0,0,0,360,2.6,0,0,19.3,77777,9,999999999,419,0.2100,0,88,999.000,999.0,99.0 +1977,7,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,98400,0,0,374,0,0,0,0,0,0,0,320,1.5,0,0,16.1,77777,9,999999999,419,0.2100,0,88,999.000,999.0,99.0 +1977,7,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98300,0,0,366,0,0,0,0,0,0,0,300,2.1,0,0,16.1,77777,9,999999999,419,0.2100,0,88,999.000,999.0,99.0 +1977,7,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98300,0,0,366,0,0,0,0,0,0,0,280,2.6,0,0,16.1,77777,9,999999999,419,0.2100,0,88,999.000,999.0,99.0 +1977,7,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,98300,0,0,363,0,0,0,0,0,0,0,290,1.5,0,0,16.1,77777,9,999999999,430,0.2100,0,88,999.000,999.0,99.0 +1977,7,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98300,0,0,367,0,0,0,0,0,0,0,240,1.5,0,0,16.1,77777,9,999999999,430,0.2100,0,88,999.000,999.0,99.0 +1977,7,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98400,15,474,379,5,0,5,0,0,0,0,310,2.6,2,2,11.3,77777,9,999999999,430,0.3620,0,88,999.000,999.0,99.0 +1977,7,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,84,98400,215,1322,385,52,33,47,5700,2500,5300,1200,310,1.5,3,3,9.7,77777,9,999999999,430,0.3620,0,88,999.000,999.0,99.0 +1977,7,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,98500,479,1322,400,231,293,125,24800,28200,14600,2510,330,2.1,2,2,9.7,77777,9,999999999,430,0.3620,0,88,999.000,999.0,99.0 +1977,7,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,98500,729,1322,402,430,443,184,45500,45000,20700,4090,310,3.1,1,1,11.3,77777,9,999999999,440,0.3620,0,88,999.000,999.0,99.0 +1977,7,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,98600,949,1322,411,610,525,232,65600,54600,26400,6720,310,2.6,1,1,16.1,77777,9,999999999,440,0.3620,0,88,999.000,999.0,99.0 +1977,7,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,98600,1123,1322,422,797,569,312,85400,59400,34800,13460,360,2.6,2,2,19.3,77777,9,999999999,450,0.3620,0,88,999.000,999.0,99.0 +1977,7,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.0,48,98500,1239,1322,439,846,472,402,89700,49300,43400,27570,0,0.0,5,5,19.3,77777,9,999999999,450,0.3620,0,88,999.000,999.0,99.0 +1977,7,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,20.0,45,98500,1289,1322,442,863,491,383,92600,51300,42400,36990,280,2.6,4,4,19.3,77777,9,999999999,459,0.3620,0,88,999.000,999.0,99.0 +1977,7,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,19.4,44,98400,1270,1322,441,886,517,388,94700,54000,42700,32080,320,2.6,4,4,19.3,77777,9,999999999,459,0.3620,0,88,999.000,999.0,99.0 +1977,7,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,18.3,38,98300,1182,1322,446,827,526,355,88200,54900,38900,18810,300,4.1,4,4,24.1,77777,9,999999999,459,0.3620,0,88,999.000,999.0,99.0 +1977,7,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,18.9,40,98300,1033,1322,444,697,535,277,74500,55800,30900,9490,280,4.1,3,3,24.1,77777,9,999999999,469,0.3620,0,88,999.000,999.0,99.0 +1977,7,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,17.2,36,98200,832,1322,437,512,445,232,54100,45700,25300,5770,0,0.0,2,2,24.1,77777,9,999999999,469,0.3620,0,88,999.000,999.0,99.0 +1977,7,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,17.8,38,98200,593,1322,443,293,284,165,31400,28900,18500,3520,290,3.6,4,4,24.1,77777,9,999999999,480,0.3620,0,88,999.000,999.0,99.0 +1977,7,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,98500,332,1322,433,51,36,42,5800,3100,5100,920,100,6.2,9,9,16.1,910,9,999999999,480,0.3620,0,88,999.000,999.0,99.0 +1977,7,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,98500,77,1046,410,14,0,14,1600,0,1600,520,180,6.2,9,9,11.3,1070,9,999999999,469,0.3620,0,88,999.000,999.0,99.0 +1977,7,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,84,98400,0,0,426,0,0,0,0,0,0,0,200,6.2,10,10,16.1,1370,9,999999999,459,0.2100,0,88,999.000,999.0,99.0 +1977,7,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,84,98400,0,0,394,0,0,0,0,0,0,0,220,2.6,6,6,16.1,3050,9,999999999,459,0.2100,0,88,999.000,999.0,99.0 +1977,7,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,98500,0,0,419,0,0,0,0,0,0,0,100,2.1,10,9,16.1,7620,9,999999999,450,0.2100,0,88,999.000,999.0,99.0 +1977,7,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,98500,0,0,421,0,0,0,0,0,0,0,110,2.6,10,9,16.1,3660,9,999999999,440,0.2100,0,88,999.000,999.0,99.0 +1977,7,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,98400,0,0,418,0,0,0,0,0,0,0,90,2.1,10,9,16.1,3660,9,999999999,430,0.2100,0,88,999.000,999.0,99.0 +1977,7,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,98400,0,0,429,0,0,0,0,0,0,0,70,2.1,10,10,16.1,7620,9,999999999,419,0.2100,0,88,999.000,999.0,99.0 +1977,7,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,98400,0,0,385,0,0,0,0,0,0,0,70,2.1,5,3,12.9,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,93,98400,0,0,380,0,0,0,0,0,0,0,140,1.5,3,2,12.9,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,98400,0,0,377,0,0,0,0,0,0,0,330,1.5,1,1,12.9,77777,9,999999999,400,0.2100,0,88,999.000,999.0,99.0 +1977,7,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,98500,14,452,375,6,0,6,0,0,0,0,60,1.5,1,1,12.9,77777,9,999999999,390,0.4060,0,88,999.000,999.0,99.0 +1977,7,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,98500,213,1322,381,60,51,51,6500,3600,5900,1080,60,2.6,1,1,12.9,77777,9,999999999,379,0.4060,0,88,999.000,999.0,99.0 +1977,7,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,98600,477,1322,396,231,262,136,24600,25200,15500,2780,0,0.0,1,1,12.9,77777,9,999999999,379,0.4060,0,88,999.000,999.0,99.0 +1977,7,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,98600,728,1322,404,426,386,212,45800,40600,23400,4950,80,3.1,1,1,16.1,77777,9,999999999,390,0.4060,0,88,999.000,999.0,99.0 +1977,7,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,98600,948,1322,407,637,532,255,67900,55200,28200,7420,130,2.6,0,0,16.1,77777,9,999999999,400,0.4060,0,88,999.000,999.0,99.0 +1977,7,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.1,54,98600,1122,1322,413,796,593,291,85800,62000,33100,12460,40,2.1,0,0,16.1,77777,9,999999999,400,0.4060,0,88,999.000,999.0,99.0 +1977,7,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,21.1,49,98500,1238,1322,430,870,595,311,91100,59900,34900,20300,20,5.2,1,1,19.3,77777,9,999999999,409,0.4060,0,88,999.000,999.0,99.0 +1977,7,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,20.6,46,98500,1288,1322,439,894,519,386,95800,54300,42800,37030,60,4.1,2,2,24.1,77777,9,999999999,409,0.4060,0,88,999.000,999.0,99.0 +1977,7,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,20.0,43,98400,1269,1322,445,896,518,397,95500,54100,43500,32710,40,3.6,3,3,24.1,77777,9,999999999,419,0.4060,0,88,999.000,999.0,99.0 +1977,7,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,19.4,40,98400,1182,1322,443,824,493,382,87200,51400,41100,20270,30,4.1,2,2,24.1,77777,9,999999999,419,0.4060,0,88,999.000,999.0,99.0 +1977,7,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,19.4,43,98300,1033,1322,437,589,307,348,63900,33200,37900,11790,90,4.1,2,2,19.3,77777,9,999999999,430,0.4060,0,88,999.000,999.0,99.0 +1977,7,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,19.4,41,98200,831,1322,455,411,178,298,44700,18700,32900,8290,110,4.1,6,6,32.2,2440,9,999999999,430,0.4060,0,88,999.000,999.0,99.0 +1977,7,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,19.4,45,98200,592,1322,468,171,28,158,18800,2700,17500,4720,70,2.1,9,9,24.1,2740,9,999999999,430,0.4060,0,88,999.000,999.0,99.0 +1977,7,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,98200,331,1322,444,61,0,61,7000,0,7000,2380,350,4.6,9,9,40.2,1220,9,999999999,440,0.4060,0,88,999.000,999.0,99.0 +1977,7,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,98300,76,1046,450,14,0,14,1600,0,1600,520,60,1.5,10,9,24.1,3050,9,999999999,440,0.4060,0,88,999.000,999.0,99.0 +1977,7,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,98300,0,0,405,0,0,0,0,0,0,0,350,2.6,5,2,19.3,77777,9,999999999,430,0.2100,0,88,999.000,999.0,99.0 +1977,7,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,58,98400,0,0,390,0,0,0,0,0,0,0,60,3.1,0,0,19.3,77777,9,999999999,430,0.2100,0,88,999.000,999.0,99.0 +1977,7,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,98400,0,0,401,0,0,0,0,0,0,0,60,3.1,5,2,19.3,77777,9,999999999,430,0.2100,0,88,999.000,999.0,99.0 +1977,7,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,98300,0,0,405,0,0,0,0,0,0,0,60,3.6,7,3,19.3,77777,9,999999999,419,0.2100,0,88,999.000,999.0,99.0 +1977,7,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,98400,0,0,395,0,0,0,0,0,0,0,310,4.1,8,5,19.3,7620,9,999999999,419,0.2100,0,88,999.000,999.0,99.0 +1977,7,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,98300,0,0,395,0,0,0,0,0,0,0,0,0.0,8,5,16.1,7620,9,999999999,419,0.2100,0,88,999.000,999.0,99.0 +1977,7,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,98300,0,0,392,0,0,0,0,0,0,0,340,2.1,9,5,16.1,7620,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,98300,0,0,392,0,0,0,0,0,0,0,340,2.6,9,5,16.1,7620,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,98300,0,0,395,0,0,0,0,0,0,0,80,1.5,9,6,16.1,7620,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,98400,13,452,399,5,0,5,0,0,0,0,30,2.6,9,6,12.9,7620,9,999999999,400,0.2150,0,88,999.000,999.0,99.0 +1977,7,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,98400,210,1322,403,56,16,53,6100,1200,5900,1310,40,2.1,9,7,12.9,7620,9,999999999,400,0.2150,0,88,999.000,999.0,99.0 +1977,7,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,98500,474,1322,445,114,5,112,13000,300,12900,4410,40,2.1,10,10,12.9,7620,9,999999999,400,0.2150,0,88,999.000,999.0,99.0 +1977,7,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,98500,726,1322,433,304,153,220,33400,15900,24600,5680,40,4.1,9,8,11.3,7620,9,999999999,400,0.2150,0,88,999.000,999.0,99.0 +1977,7,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,98500,946,1322,453,359,121,272,39800,12900,30500,8420,80,4.1,9,9,9.7,7620,9,999999999,400,0.2150,0,88,999.000,999.0,99.0 +1977,7,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,22.2,59,98500,1121,1322,462,456,99,372,50400,10200,41700,16120,90,3.6,9,9,9.7,7620,9,999999999,390,0.2150,0,88,999.000,999.0,99.0 +1977,7,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,21.7,52,98400,1237,1322,471,739,300,458,80700,32600,50100,27780,120,5.2,9,9,9.7,7620,9,999999999,390,0.2150,0,88,999.000,999.0,99.0 +1977,7,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,21.7,50,98400,1288,1322,474,617,173,448,68200,18500,50200,32960,110,4.1,9,9,9.7,7620,9,999999999,390,0.2150,0,88,999.000,999.0,99.0 +1977,7,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,21.1,47,98300,1269,1322,455,751,423,344,81300,44300,38700,28080,120,4.1,8,6,9.7,7620,9,999999999,390,0.2150,0,88,999.000,999.0,99.0 +1977,7,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,21.1,50,98300,1181,1322,448,562,158,420,61800,16900,46700,19560,90,5.2,6,6,16.1,4570,9,999999999,390,0.2150,0,88,999.000,999.0,99.0 +1977,7,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,20.6,47,98200,1032,1322,456,556,265,349,60400,28700,38000,11810,110,4.6,7,7,16.1,4570,9,999999999,379,0.2150,0,88,999.000,999.0,99.0 +1977,7,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,20.6,47,98200,831,1322,443,584,558,232,61600,57400,25500,5760,100,5.2,7,4,16.1,4570,9,999999999,379,0.2150,0,88,999.000,999.0,99.0 +1977,7,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,20.6,47,98200,591,1322,450,256,186,172,28000,18800,19600,4140,130,3.1,6,6,16.1,1370,9,999999999,379,0.2150,0,88,999.000,999.0,99.0 +1977,7,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,98200,330,1322,440,137,82,117,15000,7200,13200,2830,130,4.1,9,6,12.9,1520,9,999999999,379,0.2150,0,88,999.000,999.0,99.0 +1977,7,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,98200,75,1047,420,26,21,24,2800,1200,2700,580,150,3.6,3,2,9.7,77777,9,999999999,379,0.2150,0,88,999.000,999.0,99.0 +1977,7,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,98300,0,0,413,0,0,0,0,0,0,0,160,2.6,6,2,9.7,77777,9,999999999,379,0.2100,0,88,999.000,999.0,99.0 +1977,7,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,98300,0,0,411,0,0,0,0,0,0,0,170,1.5,6,2,9.7,77777,9,999999999,370,0.2100,0,88,999.000,999.0,99.0 +1977,7,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,98400,0,0,412,0,0,0,0,0,0,0,190,1.5,7,3,9.7,77777,9,999999999,370,0.2100,0,88,999.000,999.0,99.0 +1977,7,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,98400,0,0,434,0,0,0,0,0,0,0,240,2.1,10,9,9.7,2130,9,999999999,370,0.2100,0,88,999.000,999.0,99.0 +1977,7,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.6,69,98400,0,0,409,0,0,0,0,0,0,0,220,2.1,8,5,9.7,7620,9,999999999,370,0.2100,0,88,999.000,999.0,99.0 +1977,7,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,98400,0,0,403,0,0,0,0,0,0,0,180,1.0,8,5,9.7,7620,9,999999999,359,0.2100,0,88,999.000,999.0,99.0 +1977,7,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,98400,0,0,402,0,0,0,0,0,0,0,190,2.1,8,5,11.3,7620,9,999999999,359,0.2100,0,88,999.000,999.0,99.0 +1977,7,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,98400,0,0,390,0,0,0,0,0,0,0,0,0.0,7,3,11.3,77777,9,999999999,359,0.2100,0,88,999.000,999.0,99.0 +1977,7,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,98400,0,0,384,0,0,0,0,0,0,0,90,2.1,5,2,11.3,77777,9,999999999,350,0.2100,0,88,999.000,999.0,99.0 +1977,7,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,98400,12,430,385,5,0,5,0,0,0,0,100,2.1,8,4,8.0,77777,9,999999999,350,0.3100,0,88,999.000,999.0,99.0 +1977,7,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,98500,208,1322,387,64,39,58,7000,2900,6600,1400,0,0.0,8,4,8.0,77777,9,999999999,350,0.3100,0,88,999.000,999.0,99.0 +1977,7,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,98500,472,1322,400,179,78,151,19600,7400,17000,4060,120,2.6,8,4,9.7,77777,9,999999999,350,0.3100,0,88,999.000,999.0,99.0 +1977,7,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,98500,724,1322,413,391,232,263,42300,24000,29200,6790,130,2.1,8,4,11.3,77777,9,999999999,350,0.3100,0,88,999.000,999.0,99.0 +1977,7,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,98500,945,1322,418,617,414,319,66500,44600,34500,9450,180,2.1,9,3,11.3,77777,9,999999999,350,0.3100,0,88,999.000,999.0,99.0 +1977,7,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,98600,1120,1322,447,594,218,408,65100,23200,45400,16390,180,2.1,9,8,11.3,7620,9,999999999,340,0.3100,0,88,999.000,999.0,99.0 +1977,7,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.1,52,98500,1236,1322,467,473,14,460,55300,1400,54000,19160,180,3.6,9,9,11.3,1220,9,999999999,340,0.3100,0,88,999.000,999.0,99.0 +1977,7,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.1,52,98500,1287,1322,467,625,88,539,69000,9100,60000,33660,140,5.2,9,9,12.9,1220,9,999999999,340,0.3100,0,88,999.000,999.0,99.0 +1977,7,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,18.9,41,98400,1268,1322,474,421,21,401,49900,1900,48100,17690,150,2.1,9,9,12.9,1220,9,999999999,340,0.3100,0,88,999.000,999.0,99.0 +1977,7,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.8,40,98400,1181,1322,442,778,438,386,82200,45700,41400,20380,110,4.1,5,5,11.3,77777,9,999999999,340,0.3100,0,88,999.000,999.0,99.0 +1977,7,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.8,40,98300,1031,1322,442,670,424,338,70200,44000,35800,11700,170,2.6,5,5,12.9,77777,9,999999999,329,0.3100,0,88,999.000,999.0,99.0 +1977,7,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,18.3,42,98300,830,1322,434,535,466,241,56100,47900,26000,6000,190,2.6,5,3,12.9,77777,9,999999999,329,0.3100,0,88,999.000,999.0,99.0 +1977,7,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,18.3,42,98200,590,1322,437,291,268,171,31100,27200,19000,3670,120,3.1,6,4,12.9,4570,9,999999999,329,0.3100,0,88,999.000,999.0,99.0 +1977,7,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,98300,328,1322,423,136,195,87,14400,16300,10300,1670,170,2.1,3,3,11.3,77777,9,999999999,329,0.3100,0,88,999.000,999.0,99.0 +1977,7,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,17.8,48,98300,74,1025,413,18,7,18,2000,400,2000,450,170,3.1,2,2,9.7,77777,9,999999999,329,0.3100,0,88,999.000,999.0,99.0 +1977,7,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.8,49,98400,0,0,445,0,0,0,0,0,0,0,180,2.1,10,9,9.7,3660,9,999999999,340,0.2100,0,88,999.000,999.0,99.0 +1977,7,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,98400,0,0,422,0,0,0,0,0,0,0,170,2.6,8,6,9.7,3050,9,999999999,350,0.2100,0,88,999.000,999.0,99.0 +1977,7,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.8,53,98400,0,0,411,0,0,0,0,0,0,0,0,0.0,8,4,11.3,77777,9,999999999,350,0.2100,0,88,999.000,999.0,99.0 +1977,7,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,98400,0,0,405,0,0,0,0,0,0,0,0,0.0,8,4,11.3,77777,9,999999999,350,0.2100,0,88,999.000,999.0,99.0 +1977,7,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,98400,0,0,395,0,0,0,0,0,0,0,140,3.6,8,4,11.3,77777,9,999999999,359,0.2100,0,88,999.000,999.0,99.0 +1977,7,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,98400,0,0,386,0,0,0,0,0,0,0,190,5.2,5,3,12.9,77777,9,999999999,370,0.2100,0,88,999.000,999.0,99.0 +1977,7,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,98400,0,0,371,0,0,0,0,0,0,0,240,3.1,3,1,16.1,77777,9,999999999,370,0.2100,0,88,999.000,999.0,99.0 +1977,7,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.3,76,98400,0,0,371,0,0,0,0,0,0,0,200,3.1,3,1,16.1,77777,9,999999999,379,0.2100,0,88,999.000,999.0,99.0 +1977,7,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,98400,0,0,365,0,0,0,0,0,0,0,0,0.0,3,1,19.3,77777,9,999999999,379,0.2100,0,88,999.000,999.0,99.0 +1977,7,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,98500,11,408,358,6,3,5,0,0,0,0,160,1.5,0,0,19.3,77777,9,999999999,379,0.1690,0,88,999.000,999.0,99.0 +1977,7,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,98500,205,1322,365,75,175,48,8000,11400,6300,870,190,1.5,2,1,19.3,77777,9,999999999,390,0.1690,0,88,999.000,999.0,99.0 +1977,7,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,98500,470,1322,382,262,411,115,27500,38300,13800,2190,220,3.1,4,2,19.3,77777,9,999999999,390,0.1690,0,88,999.000,999.0,99.0 +1977,7,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,98600,722,1322,394,459,586,138,48000,58200,16100,3040,220,1.5,2,2,19.3,77777,9,999999999,390,0.1690,0,88,999.000,999.0,99.0 +1977,7,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,98500,944,1322,407,614,602,183,64700,61000,21100,5230,180,2.6,3,3,19.3,77777,9,999999999,400,0.1690,0,88,999.000,999.0,99.0 +1977,7,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,98500,1119,1322,433,585,164,445,63700,17400,49000,17840,200,2.6,9,8,19.3,2740,9,999999999,400,0.1690,0,88,999.000,999.0,99.0 +1977,7,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,98600,1235,1322,433,695,276,436,76000,30000,48000,26090,130,4.1,10,8,24.1,2740,9,999999999,400,0.1690,0,88,999.000,999.0,99.0 +1977,7,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,98500,1286,1322,460,358,11,347,43000,1000,42000,16020,130,3.6,10,10,24.1,3050,9,999999999,400,0.1690,0,88,999.000,999.0,99.0 +1977,7,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,98400,1267,1322,415,849,529,340,91900,55400,38700,27450,110,3.6,6,3,19.3,77777,9,999999999,400,0.1690,0,88,999.000,999.0,99.0 +1977,7,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,98300,1180,1322,412,828,721,182,86600,72500,21800,8580,150,3.1,3,1,19.3,77777,9,999999999,400,0.1690,0,88,999.000,999.0,99.0 +1977,7,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.2,41,98200,1031,1322,411,751,760,156,78200,76200,18700,4800,190,2.6,0,0,19.3,77777,9,999999999,409,0.1690,0,88,999.000,999.0,99.0 +1977,7,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,17.2,39,98300,829,1322,422,544,649,135,57600,65700,16300,3370,120,3.6,1,1,19.3,77777,9,999999999,409,0.1690,0,88,999.000,999.0,99.0 +1977,7,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.2,42,98200,589,1322,441,305,262,188,32400,26500,20600,4120,110,3.6,8,7,16.1,3660,9,999999999,409,0.1690,0,88,999.000,999.0,99.0 +1977,7,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,98300,327,1322,450,95,49,82,10300,4200,9300,2150,110,3.6,9,9,16.1,3660,9,999999999,409,0.1690,0,88,999.000,999.0,99.0 +1977,7,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,98300,72,1025,456,18,10,17,2000,600,1900,430,140,3.6,10,10,12.9,7620,9,999999999,409,0.1690,0,88,999.000,999.0,99.0 +1977,7,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,98400,0,0,418,0,0,0,0,0,0,0,100,2.1,8,8,16.1,7620,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,98500,0,0,394,0,0,0,0,0,0,0,0,0.0,7,3,16.1,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,98500,0,0,387,0,0,0,0,0,0,0,150,3.1,6,2,19.3,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,98400,0,0,373,0,0,0,0,0,0,0,250,2.6,4,1,19.3,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,98400,0,0,374,0,0,0,0,0,0,0,140,2.1,3,1,19.3,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,98400,0,0,374,0,0,0,0,0,0,0,130,1.5,3,2,19.3,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,98400,0,0,375,0,0,0,0,0,0,0,160,2.6,4,3,19.3,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,98400,0,0,368,0,0,0,0,0,0,0,0,0.0,3,2,17.7,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98400,0,0,372,0,0,0,0,0,0,0,140,2.1,4,3,17.7,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98400,11,408,375,5,0,5,0,0,0,0,170,1.5,8,4,24.1,77777,9,999999999,409,0.3290,0,88,999.000,999.0,99.0 +1977,7,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,98500,203,1322,375,69,28,64,7500,2100,7100,1500,130,2.6,9,3,24.1,77777,9,999999999,409,0.3290,0,88,999.000,999.0,99.0 +1977,7,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,98500,468,1322,383,202,131,156,21900,12500,17500,3570,160,2.6,8,3,19.3,77777,9,999999999,409,0.3290,0,88,999.000,999.0,99.0 +1977,7,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,98500,721,1322,391,451,375,246,48000,39300,26500,5890,150,2.6,7,2,24.1,77777,9,999999999,409,0.3290,0,88,999.000,999.0,99.0 +1977,7,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,18.3,60,98500,942,1322,396,630,506,268,66700,52500,29200,7760,150,4.6,8,2,32.2,77777,9,999999999,419,0.3290,0,88,999.000,999.0,99.0 +1977,7,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,58,98500,1117,1322,407,803,476,399,83700,49500,41800,17190,0,0.0,8,3,32.2,77777,9,999999999,419,0.3290,0,88,999.000,999.0,99.0 +1977,7,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.3,53,98500,1235,1322,412,928,599,367,99300,62600,40700,24440,150,3.1,8,3,32.2,77777,9,999999999,419,0.3290,0,88,999.000,999.0,99.0 +1977,7,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,98400,1285,1322,421,893,523,383,95800,54700,42500,35640,150,3.1,9,4,32.2,77777,9,999999999,419,0.3290,0,88,999.000,999.0,99.0 +1977,7,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,98400,1267,1322,450,511,89,426,56600,9200,47800,25040,110,3.6,9,9,40.2,1370,9,999999999,419,0.3290,0,88,999.000,999.0,99.0 +1977,7,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,98300,1179,1322,431,795,394,443,86400,42800,48200,21530,150,4.1,8,4,40.2,77777,9,999999999,419,0.3290,0,88,999.000,999.0,99.0 +1977,7,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,98300,1030,1322,431,682,421,354,74000,45500,38500,11960,110,4.1,9,4,40.2,77777,9,999999999,430,0.3290,0,88,999.000,999.0,99.0 +1977,7,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,98200,828,1322,431,473,320,272,50800,34100,29400,7040,110,2.1,8,4,40.2,77777,9,999999999,430,0.3290,0,88,999.000,999.0,99.0 +1977,7,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,98200,587,1322,446,208,65,179,22800,6400,20000,5190,120,5.2,8,8,40.2,3660,9,999999999,430,0.3290,0,88,999.000,999.0,99.0 +1977,7,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98400,325,1322,427,36,8,34,4000,700,3800,990,120,4.6,10,10,16.1,1520,9,999999999,430,0.3290,0,88,999.000,999.0,99.0 +1977,7,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,93,98400,71,1003,413,22,1,22,2500,0,2500,740,160,4.1,9,9,24.1,3050,9,999999999,430,0.3290,0,88,999.000,999.0,99.0 +1977,7,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98400,0,0,424,0,0,0,0,0,0,0,140,2.1,10,10,24.1,3050,9,999999999,430,0.2100,0,88,999.000,999.0,99.0 +1977,7,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98400,0,0,424,0,0,0,0,0,0,0,0,0.0,10,10,24.1,3050,9,999999999,419,0.2100,0,88,999.000,999.0,99.0 +1977,7,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98400,0,0,424,0,0,0,0,0,0,0,180,2.1,10,10,24.1,3050,9,999999999,419,0.2100,0,88,999.000,999.0,99.0 +1977,7,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.7,97,98400,0,0,409,0,0,0,0,0,0,0,150,2.1,9,9,24.1,7620,9,999999999,419,0.2100,0,88,999.000,999.0,99.0 +1977,7,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.1,93,98400,0,0,409,0,0,0,0,0,0,0,120,2.1,9,9,16.1,7620,9,999999999,419,0.2100,0,88,999.000,999.0,99.0 +1977,7,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.1,93,98400,0,0,383,0,0,0,0,0,0,0,70,2.1,4,4,16.1,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98400,0,0,377,0,0,0,0,0,0,0,80,2.1,3,3,16.1,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98400,0,0,373,0,0,0,0,0,0,0,70,2.6,2,2,16.1,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.6,97,98300,0,0,365,0,0,0,0,0,0,0,80,3.1,1,1,16.1,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,98400,10,386,376,4,0,4,0,0,0,0,100,3.6,5,5,32.2,77777,9,999999999,400,0.2080,0,88,999.000,999.0,99.0 +1977,7,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,98400,201,1323,373,74,109,57,8000,7500,6900,1210,90,3.6,6,3,32.2,77777,9,999999999,400,0.2080,0,88,999.000,999.0,99.0 +1977,7,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.1,97,98500,466,1323,417,86,8,83,10000,500,9900,3460,120,3.1,10,10,19.3,210,9,999999999,400,0.2080,0,88,999.000,999.0,99.0 +1977,7,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.7,97,98500,719,1323,421,179,2,178,20800,200,20700,7660,120,3.6,10,10,4.0,120,9,999999999,400,0.2080,0,88,999.000,999.0,99.0 +1977,7,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98500,941,1323,427,230,6,226,27200,500,26900,10500,130,3.6,10,10,12.9,310,9,999999999,400,0.2080,0,88,999.000,999.0,99.0 +1977,7,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,98500,1116,1323,426,331,47,292,36700,4800,32700,12990,150,3.6,9,9,19.3,610,9,999999999,400,0.2080,0,88,999.000,999.0,99.0 +1977,7,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,98500,1234,1323,426,608,187,433,67100,20000,48400,23920,100,5.2,8,8,24.1,700,9,999999999,400,0.2080,0,88,999.000,999.0,99.0 +1977,7,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,98400,1285,1323,426,794,451,355,85800,47200,39900,32700,150,5.2,7,6,32.2,760,9,999999999,400,0.2080,0,88,999.000,999.0,99.0 +1977,7,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,98300,1266,1323,428,781,496,305,85500,52000,35600,24260,110,4.1,7,6,32.2,910,9,999999999,390,0.2080,0,88,999.000,999.0,99.0 +1977,7,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,98300,1179,1323,421,777,532,302,84200,55700,34500,15610,130,3.1,5,2,32.2,77777,9,999999999,390,0.2080,0,88,999.000,999.0,99.0 +1977,7,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,98300,1029,1323,425,747,664,229,78200,67000,26000,7540,130,5.7,5,2,32.2,77777,9,999999999,390,0.2080,0,88,999.000,999.0,99.0 +1977,7,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,98200,827,1323,425,530,510,210,56400,52500,23600,5140,120,6.2,4,2,32.2,77777,9,999999999,390,0.2080,0,88,999.000,999.0,99.0 +1977,7,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,98200,586,1323,419,349,516,120,37600,50700,15100,2370,120,3.6,3,1,32.2,77777,9,999999999,390,0.2080,0,88,999.000,999.0,99.0 +1977,7,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,98200,323,1323,410,141,278,73,14800,22800,9300,1330,140,3.1,3,1,32.2,77777,9,999999999,390,0.2080,0,88,999.000,999.0,99.0 +1977,7,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,98200,70,1003,406,27,14,25,2800,800,2800,590,250,4.1,5,3,32.2,77777,9,999999999,390,0.2080,0,88,999.000,999.0,99.0 +1977,7,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,98300,0,0,388,0,0,0,0,0,0,0,250,3.6,2,1,32.2,77777,9,999999999,390,0.2100,0,88,999.000,999.0,99.0 +1977,7,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,98400,0,0,388,0,0,0,0,0,0,0,240,2.1,2,1,32.2,77777,9,999999999,390,0.2100,0,88,999.000,999.0,99.0 +1977,7,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,84,98400,0,0,376,0,0,0,0,0,0,0,0,0.0,2,1,32.2,77777,9,999999999,390,0.2100,0,88,999.000,999.0,99.0 +1977,7,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98400,0,0,373,0,0,0,0,0,0,0,0,0.0,2,1,32.2,77777,9,999999999,390,0.2100,0,88,999.000,999.0,99.0 +1977,7,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98400,0,0,373,0,0,0,0,0,0,0,0,0.0,2,1,24.1,77777,9,999999999,400,0.2100,0,88,999.000,999.0,99.0 +1977,7,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98300,0,0,373,0,0,0,0,0,0,0,230,2.1,2,1,24.1,77777,9,999999999,400,0.2100,0,88,999.000,999.0,99.0 +1977,7,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98300,0,0,361,0,0,0,0,0,0,0,0,0.0,1,0,24.1,77777,9,999999999,400,0.2100,0,88,999.000,999.0,99.0 +1977,7,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.6,97,98300,0,0,358,0,0,0,0,0,0,0,0,0.0,1,0,24.1,77777,9,999999999,400,0.2100,0,88,999.000,999.0,99.0 +1977,7,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.6,97,98200,0,0,358,0,0,0,0,0,0,0,140,2.1,1,0,24.1,77777,9,999999999,400,0.2100,0,88,999.000,999.0,99.0 +1977,7,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.6,97,98300,9,386,374,4,1,4,0,0,0,0,110,1.5,7,3,24.1,77777,9,999999999,400,0.1560,0,88,999.000,999.0,99.0 +1977,7,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98400,198,1323,361,82,218,49,8500,14100,6400,890,270,1.5,3,0,32.2,77777,9,999999999,400,0.1560,0,88,999.000,999.0,99.0 +1977,7,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,98500,464,1323,372,267,517,85,27600,47500,10900,1620,280,3.1,1,0,32.2,77777,9,999999999,400,0.1560,0,88,999.000,999.0,99.0 +1977,7,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,98500,717,1323,382,480,663,119,50600,66200,14600,2660,180,1.5,1,0,32.2,77777,9,999999999,390,0.1560,0,88,999.000,999.0,99.0 +1977,7,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,98500,939,1323,390,677,754,139,70400,75500,16700,3650,0,0.0,0,0,40.2,77777,9,999999999,390,0.1560,0,88,999.000,999.0,99.0 +1977,7,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,98500,1115,1323,404,786,736,164,82500,74100,19900,6270,180,2.6,2,1,40.2,77777,9,999999999,379,0.1560,0,88,999.000,999.0,99.0 +1977,7,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,98500,1233,1323,426,775,468,337,83600,49000,37800,22120,180,3.1,5,5,40.2,77777,9,999999999,379,0.1560,0,88,999.000,999.0,99.0 +1977,7,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,98400,1284,1323,426,881,666,233,94700,68200,28300,20810,180,3.1,5,4,40.2,77777,9,999999999,379,0.1560,0,88,999.000,999.0,99.0 +1977,7,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,98300,1265,1323,436,862,495,387,92100,51700,42500,30810,200,4.1,6,6,40.2,1370,9,999999999,370,0.1560,0,88,999.000,999.0,99.0 +1977,7,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,19.4,45,98200,1178,1323,438,835,606,294,87300,61000,32900,14590,200,2.1,4,4,40.2,77777,9,999999999,370,0.1560,0,88,999.000,999.0,99.0 +1977,7,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,19.4,45,98200,1028,1323,435,802,753,215,84300,76300,24900,7110,190,3.6,3,3,40.2,77777,9,999999999,359,0.1560,0,88,999.000,999.0,99.0 +1977,7,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,19.4,45,98100,825,1323,431,491,504,176,53300,52000,20800,4240,260,2.1,2,2,40.2,77777,9,999999999,359,0.1560,0,88,999.000,999.0,99.0 +1977,7,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,98100,584,1323,427,350,556,103,36500,53800,12700,2090,250,2.1,2,2,40.2,77777,9,999999999,350,0.1560,0,88,999.000,999.0,99.0 +1977,7,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,98100,322,1323,424,154,285,83,15800,23200,10200,1530,200,3.1,2,2,40.2,77777,9,999999999,350,0.1560,0,88,999.000,999.0,99.0 +1977,7,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,98200,68,981,412,29,31,26,3100,1400,3000,540,160,4.1,5,2,40.2,77777,9,999999999,350,0.1560,0,88,999.000,999.0,99.0 +1977,7,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,98200,0,0,394,0,0,0,0,0,0,0,240,2.6,0,0,32.2,77777,9,999999999,350,0.2100,0,88,999.000,999.0,99.0 +1977,7,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,98300,0,0,391,0,0,0,0,0,0,0,240,3.6,0,0,32.2,77777,9,999999999,350,0.2100,0,88,999.000,999.0,99.0 +1977,7,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,19.4,67,98300,0,0,382,0,0,0,0,0,0,0,270,3.6,0,0,32.2,77777,9,999999999,350,0.2100,0,88,999.000,999.0,99.0 +1977,7,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,98300,0,0,373,0,0,0,0,0,0,0,270,2.6,0,0,32.2,77777,9,999999999,350,0.2100,0,88,999.000,999.0,99.0 +1977,7,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,98300,0,0,374,0,0,0,0,0,0,0,240,3.1,0,0,24.1,77777,9,999999999,350,0.2100,0,88,999.000,999.0,99.0 +1977,7,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,98300,0,0,371,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,359,0.2100,0,88,999.000,999.0,99.0 +1977,7,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,98200,0,0,365,0,0,0,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,359,0.2100,0,88,999.000,999.0,99.0 +1977,7,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,98200,0,0,365,0,0,0,0,0,0,0,260,2.1,1,0,24.1,77777,9,999999999,359,0.2100,0,88,999.000,999.0,99.0 +1977,7,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,98300,0,0,366,0,0,0,0,0,0,0,0,0.0,1,0,24.1,77777,9,999999999,359,0.2100,0,88,999.000,999.0,99.0 +1977,7,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,98300,9,364,381,5,2,5,0,0,0,0,280,2.1,7,3,24.1,77777,9,999999999,359,0.1380,0,88,999.000,999.0,99.0 +1977,7,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,98400,196,1323,384,76,113,59,8200,7600,7100,1250,310,4.1,7,3,24.1,77777,9,999999999,359,0.1380,0,88,999.000,999.0,99.0 +1977,7,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,98400,462,1323,393,256,404,114,26800,37400,13700,2170,310,6.2,6,2,24.1,77777,9,999999999,350,0.1380,0,88,999.000,999.0,99.0 +1977,7,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,98500,715,1323,411,471,572,161,50500,58000,19100,3490,340,5.2,4,2,24.1,77777,9,999999999,350,0.1380,0,88,999.000,999.0,99.0 +1977,7,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,98400,938,1323,417,630,609,197,66000,61400,22300,5510,280,4.1,5,2,24.1,77777,9,999999999,350,0.1380,0,88,999.000,999.0,99.0 +1977,7,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,98500,1114,1323,443,656,403,315,70000,42100,34500,13210,300,3.1,8,7,24.1,910,9,999999999,340,0.1380,0,88,999.000,999.0,99.0 +1977,7,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.0,48,98400,1232,1323,448,746,389,382,79400,40600,41500,25050,290,4.1,7,7,24.1,910,9,999999999,329,0.1380,0,88,999.000,999.0,99.0 +1977,7,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,20.0,47,98400,1283,1323,459,700,293,415,77300,31900,46300,32390,250,5.2,8,8,24.1,1070,9,999999999,329,0.1380,0,88,999.000,999.0,99.0 +1977,7,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,19.4,45,98300,1264,1323,458,814,383,447,89200,41600,49400,30990,220,4.1,8,8,24.1,1220,9,999999999,329,0.1380,0,88,999.000,999.0,99.0 +1977,7,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,19.4,44,98200,1177,1323,441,827,641,255,87300,65000,29300,12760,240,4.1,4,4,40.2,77777,9,999999999,320,0.1380,0,88,999.000,999.0,99.0 +1977,7,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.9,42,98100,1027,1323,441,664,548,237,72100,57200,27600,7910,240,3.1,4,4,40.2,77777,9,999999999,320,0.1380,0,88,999.000,999.0,99.0 +1977,7,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,18.9,41,98000,824,1323,441,589,653,180,61100,65200,20400,4280,240,3.1,5,3,40.2,77777,9,999999999,309,0.1380,0,88,999.000,999.0,99.0 +1977,7,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.9,42,98000,583,1323,433,350,505,126,37300,49600,15500,2490,200,4.1,5,2,40.2,77777,9,999999999,300,0.1380,0,88,999.000,999.0,99.0 +1977,7,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,98000,320,1323,418,151,335,70,15900,27300,9300,1270,220,4.6,5,1,40.2,77777,9,999999999,300,0.1380,0,88,999.000,999.0,99.0 +1977,7,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,98000,66,981,406,25,51,19,2500,1900,2300,330,240,4.1,3,1,40.2,77777,9,999999999,309,0.1380,0,88,999.000,999.0,99.0 +1977,7,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,18.9,55,98100,0,0,403,0,0,0,0,0,0,0,240,4.1,3,1,32.2,77777,9,999999999,329,0.2100,0,88,999.000,999.0,99.0 +1977,7,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,98100,0,0,397,0,0,0,0,0,0,0,260,4.1,3,1,32.2,77777,9,999999999,340,0.2100,0,88,999.000,999.0,99.0 +1977,7,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,98100,0,0,390,0,0,0,0,0,0,0,260,4.1,3,1,32.2,77777,9,999999999,350,0.2100,0,88,999.000,999.0,99.0 +1977,7,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,98100,0,0,387,0,0,0,0,0,0,0,270,4.1,3,1,24.1,77777,9,999999999,370,0.2100,0,88,999.000,999.0,99.0 +1977,7,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,98100,0,0,382,0,0,0,0,0,0,0,270,4.1,3,1,24.1,77777,9,999999999,379,0.2100,0,88,999.000,999.0,99.0 +1977,7,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,98100,0,0,382,0,0,0,0,0,0,0,280,4.1,3,1,24.1,77777,9,999999999,390,0.2100,0,88,999.000,999.0,99.0 +1977,7,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.3,74,98100,0,0,382,0,0,0,0,0,0,0,280,3.6,8,3,24.1,77777,9,999999999,409,0.2100,0,88,999.000,999.0,99.0 +1977,7,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,98100,0,0,369,0,0,0,0,0,0,0,270,3.6,4,1,24.1,77777,9,999999999,419,0.2100,0,88,999.000,999.0,99.0 +1977,7,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,98100,0,0,367,0,0,0,0,0,0,0,270,2.6,4,1,24.1,77777,9,999999999,430,0.2100,0,88,999.000,999.0,99.0 +1977,7,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,98100,8,342,367,3,1,3,0,0,0,0,280,3.6,3,1,24.1,77777,9,999999999,450,0.1840,0,88,999.000,999.0,99.0 +1977,7,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,98200,193,1323,365,77,168,53,8200,10400,6600,990,300,5.7,4,0,24.1,77777,9,999999999,459,0.1840,0,88,999.000,999.0,99.0 +1977,7,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,71,98100,460,1323,387,250,409,107,26300,37900,13200,2020,270,4.1,5,1,24.1,77777,9,999999999,459,0.1840,0,88,999.000,999.0,99.0 +1977,7,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,98200,713,1323,399,456,550,158,48900,55800,18800,3420,270,5.2,5,1,19.3,77777,9,999999999,469,0.1840,0,88,999.000,999.0,99.0 +1977,7,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,98200,936,1323,413,622,594,200,65000,59900,22600,5570,270,6.2,5,1,19.3,77777,9,999999999,469,0.1840,0,88,999.000,999.0,99.0 +1977,7,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.1,52,98200,1113,1323,437,746,493,330,79300,51400,36000,13830,300,5.2,5,4,19.3,77777,9,999999999,469,0.1840,0,88,999.000,999.0,99.0 +1977,7,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,20.6,49,98200,1231,1323,437,878,665,258,93200,67600,30100,16300,290,5.2,4,3,19.3,77777,9,999999999,480,0.1840,0,88,999.000,999.0,99.0 +1977,7,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,20.0,44,98100,1282,1323,458,535,169,371,59900,18100,42200,26060,330,4.1,8,7,19.3,1520,9,999999999,480,0.1840,0,88,999.000,999.0,99.0 +1977,7,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,98000,1263,1323,462,359,25,334,39700,2600,37200,19860,350,9.3,9,9,19.3,1070,9,999999999,480,0.1840,0,88,999.000,999.0,99.0 +1977,7,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,98000,1176,1323,466,416,7,410,48600,700,48000,17500,20,5.2,10,10,19.3,7620,9,999999999,490,0.1840,0,88,999.000,999.0,99.0 +1977,7,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.1,52,98000,1026,1323,467,432,76,373,47600,7800,41500,14230,360,4.6,10,9,19.3,7620,9,999999999,490,0.1840,0,88,999.000,999.0,99.0 +1977,7,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.2,67,98000,823,1323,461,254,54,221,28100,5400,24700,7560,190,4.1,10,10,24.1,3660,9,999999999,490,0.1840,0,88,999.000,999.0,99.0 +1977,7,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,98100,581,1323,430,101,5,99,12000,300,11800,4370,250,6.2,10,10,32.2,3660,9,999999999,500,0.1840,0,88,999.000,999.0,99.0 +1977,7,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,98000,318,1323,428,56,1,56,6500,0,6500,2190,170,2.6,10,10,32.2,3660,9,999999999,500,0.1840,0,88,999.000,999.0,99.0 +1977,7,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,98100,65,959,422,21,0,21,2400,0,2400,710,230,1.5,10,10,24.1,3660,9,999999999,500,0.1840,0,88,999.000,999.0,99.0 +1977,7,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,98100,0,0,410,0,0,0,0,0,0,0,220,2.1,10,9,19.3,3660,9,999999999,500,0.2100,0,88,999.000,999.0,99.0 +1977,7,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,98100,0,0,407,0,0,0,0,0,0,0,280,1.5,10,9,19.3,7620,9,999999999,490,0.2100,0,88,999.000,999.0,99.0 +1977,7,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98100,0,0,404,0,0,0,0,0,0,0,300,2.1,10,9,19.3,7620,9,999999999,490,0.2100,0,88,999.000,999.0,99.0 +1977,7,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98100,0,0,404,0,0,0,0,0,0,0,300,2.6,10,9,19.3,7620,9,999999999,490,0.2100,0,88,999.000,999.0,99.0 +1977,7,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98100,0,0,417,0,0,0,0,0,0,0,0,0.0,10,10,16.1,7620,9,999999999,490,0.2100,0,88,999.000,999.0,99.0 +1977,7,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,98100,0,0,419,0,0,0,0,0,0,0,320,2.1,10,10,16.1,7620,9,999999999,490,0.2100,0,88,999.000,999.0,99.0 +1977,7,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98100,0,0,417,0,0,0,0,0,0,0,0,0.0,10,10,16.1,7620,9,999999999,490,0.2100,0,88,999.000,999.0,99.0 +1977,7,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98100,0,0,417,0,0,0,0,0,0,0,0,0.0,10,10,11.3,7620,9,999999999,480,0.2100,0,88,999.000,999.0,99.0 +1977,7,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.1,93,98100,0,0,409,0,0,0,0,0,0,0,40,3.6,9,9,11.3,3660,9,999999999,480,0.2100,0,88,999.000,999.0,99.0 +1977,7,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98200,7,342,405,1,1,1,0,0,0,0,60,5.2,9,9,9.7,7620,9,999999999,480,0.1540,0,88,999.000,999.0,99.0 +1977,7,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,98300,190,1323,399,46,49,39,5100,3300,4600,820,70,4.1,10,8,9.7,3660,9,999999999,480,0.1540,0,88,999.000,999.0,99.0 +1977,7,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,98300,457,1323,380,251,470,88,25900,43000,11000,1660,70,6.2,3,1,9.7,77777,9,999999999,469,0.1540,0,88,999.000,999.0,99.0 +1977,7,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,98300,712,1323,387,473,667,113,50000,66700,14100,2530,70,5.7,0,0,11.3,77777,9,999999999,450,0.1540,0,88,999.000,999.0,99.0 +1977,7,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,98400,935,1323,406,645,686,159,68600,69900,19100,4540,70,7.2,3,3,11.3,77777,9,999999999,440,0.1540,0,88,999.000,999.0,99.0 +1977,7,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.7,69,98400,1112,1323,417,657,428,296,70600,44700,33000,12270,70,6.7,5,5,11.3,77777,9,999999999,419,0.1540,0,88,999.000,999.0,99.0 +1977,7,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.7,72,98400,1230,1323,450,276,5,271,33500,400,33100,13100,90,6.2,10,10,11.3,910,9,999999999,409,0.1540,0,88,999.000,999.0,99.0 +1977,7,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,98300,1281,1323,451,491,79,414,54300,8100,46400,25820,100,5.2,10,9,11.3,910,9,999999999,400,0.1540,0,88,999.000,999.0,99.0 +1977,7,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,98300,1263,1323,428,661,256,416,72800,27900,46200,28330,70,5.7,8,6,11.3,7620,9,999999999,379,0.1540,0,88,999.000,999.0,99.0 +1977,7,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,98300,1175,1323,422,723,528,253,76400,53600,28700,12560,80,6.2,6,5,9.7,7620,9,999999999,370,0.1540,0,88,999.000,999.0,99.0 +1977,7,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,98200,1024,1323,422,672,601,205,70900,61000,23500,6760,90,5.2,5,4,12.9,77777,9,999999999,350,0.1540,0,88,999.000,999.0,99.0 +1977,7,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,98200,821,1323,421,557,590,189,59800,60700,22000,4550,110,6.2,3,3,12.9,77777,9,999999999,340,0.1540,0,88,999.000,999.0,99.0 +1977,7,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,98200,579,1323,410,350,492,133,37100,48200,16000,2640,110,4.6,2,2,12.9,77777,9,999999999,320,0.1540,0,88,999.000,999.0,99.0 +1977,7,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.3,55,98200,315,1323,399,140,306,66,14700,24800,8800,1190,110,4.6,2,1,19.3,77777,9,999999999,309,0.1540,0,88,999.000,999.0,99.0 +1977,7,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,98200,63,937,393,24,43,19,2400,1600,2300,330,110,4.1,2,1,19.3,77777,9,999999999,300,0.1540,0,88,999.000,999.0,99.0 +1977,7,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,98300,0,0,384,0,0,0,0,0,0,0,110,4.1,4,1,19.3,77777,9,999999999,300,0.2100,0,88,999.000,999.0,99.0 +1977,7,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,98300,0,0,381,0,0,0,0,0,0,0,100,3.1,3,1,19.3,77777,9,999999999,290,0.2100,0,88,999.000,999.0,99.0 +1977,7,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,98400,0,0,370,0,0,0,0,0,0,0,120,3.1,0,0,19.3,77777,9,999999999,279,0.2100,0,88,999.000,999.0,99.0 +1977,7,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.2,66,98400,0,0,368,0,0,0,0,0,0,0,120,4.1,0,0,19.3,77777,9,999999999,279,0.2100,0,88,999.000,999.0,99.0 +1977,7,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,98300,0,0,360,0,0,0,0,0,0,0,160,3.1,0,0,19.3,77777,9,999999999,270,0.2090,0,88,999.000,999.0,99.0 +1977,7,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,98300,0,0,375,0,0,0,0,0,0,0,150,2.6,3,3,16.1,77777,9,999999999,259,0.2090,0,88,999.000,999.0,99.0 +1977,7,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,98300,0,0,372,0,0,0,0,0,0,0,130,2.6,3,3,16.1,77777,9,999999999,259,0.2090,0,88,999.000,999.0,99.0 +1977,7,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,98300,0,0,354,0,0,0,0,0,0,0,130,2.1,0,0,12.9,77777,9,999999999,250,0.2090,0,88,999.000,999.0,99.0 +1977,7,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.9,90,98300,0,0,354,0,0,0,0,0,0,0,120,2.6,0,0,9.7,77777,9,999999999,240,0.2090,0,88,999.000,999.0,99.0 +1977,7,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,98300,7,320,379,2,1,2,0,0,0,0,130,2.6,6,6,8.0,1830,9,999999999,240,0.1470,0,88,999.000,999.0,99.0 +1977,7,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98400,188,1324,400,48,15,45,5200,1100,5000,1110,150,2.1,9,9,8.0,1680,9,999999999,229,0.1470,0,88,999.000,999.0,99.0 +1977,7,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,98400,455,1324,388,265,374,136,27200,34400,15400,2650,170,3.6,6,6,9.7,1830,9,999999999,229,0.1470,0,88,999.000,999.0,99.0 +1977,7,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,98400,710,1324,377,480,689,109,50800,68900,13800,2450,170,3.6,0,0,12.9,77777,9,999999999,229,0.1470,0,88,999.000,999.0,99.0 +1977,7,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.7,53,98400,933,1324,384,681,774,133,71200,77600,16300,3510,180,4.6,0,0,24.1,77777,9,999999999,229,0.1470,0,88,999.000,999.0,99.0 +1977,7,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.2,53,98400,1110,1324,388,835,814,150,88400,82200,19200,5770,180,4.1,0,0,24.1,77777,9,999999999,229,0.1470,0,88,999.000,999.0,99.0 +1977,7,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.7,48,98300,1229,1324,393,958,836,179,101000,84300,22500,10530,180,3.6,2,0,24.1,77777,9,999999999,229,0.1470,0,88,999.000,999.0,99.0 +1977,7,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.1,43,98300,1280,1324,398,997,840,182,105600,84800,23400,14850,170,4.1,2,0,24.1,77777,9,999999999,229,0.1470,0,88,999.000,999.0,99.0 +1977,7,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.1,43,98300,1262,1324,405,935,757,212,101000,77800,26600,16070,200,5.2,3,1,24.1,77777,9,999999999,240,0.1470,0,88,999.000,999.0,99.0 +1977,7,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,16.1,42,98200,1174,1324,409,879,773,191,91400,77500,22500,8650,100,3.6,4,1,24.1,77777,9,999999999,240,0.1470,0,88,999.000,999.0,99.0 +1977,7,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,16.1,40,98100,1023,1324,411,744,754,158,77200,75500,18700,4740,220,4.1,3,1,24.1,77777,9,999999999,240,0.1470,0,88,999.000,999.0,99.0 +1977,7,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,16.7,42,98100,820,1324,418,549,613,167,57200,61400,19100,4000,210,4.6,2,2,24.1,77777,9,999999999,240,0.1470,0,88,999.000,999.0,99.0 +1977,7,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,16.1,42,98000,577,1324,409,318,483,106,33000,46500,12700,2130,210,2.6,1,1,24.1,77777,9,999999999,240,0.1470,0,88,999.000,999.0,99.0 +1977,7,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.1,43,98100,313,1324,398,159,413,60,16200,33600,8200,1090,180,2.6,0,0,24.1,77777,9,999999999,240,0.1470,0,88,999.000,999.0,99.0 +1977,7,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.1,46,98100,61,938,392,28,55,22,2800,2000,2600,390,170,2.1,0,0,24.1,77777,9,999999999,250,0.1470,0,88,999.000,999.0,99.0 +1977,7,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.2,56,98100,0,0,382,0,0,0,0,0,0,0,140,3.1,0,0,19.3,77777,9,999999999,270,0.2090,0,88,999.000,999.0,99.0 +1977,7,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,98100,0,0,377,0,0,0,0,0,0,0,140,3.6,0,0,19.3,77777,9,999999999,279,0.2090,0,88,999.000,999.0,99.0 +1977,7,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,15.6,56,98200,0,0,372,0,0,0,0,0,0,0,160,3.1,0,0,24.1,77777,9,999999999,290,0.2090,0,88,999.000,999.0,99.0 +1977,7,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,14.4,56,98200,0,0,365,0,0,0,0,0,0,0,230,2.6,0,0,24.1,77777,9,999999999,309,0.2090,0,88,999.000,999.0,99.0 +1977,7,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.0,58,98200,0,0,365,0,0,0,0,0,0,0,200,2.1,2,0,32.2,77777,9,999999999,320,0.2090,0,88,999.000,999.0,99.0 +1977,7,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.7,71,98100,0,0,359,0,0,0,0,0,0,0,140,1.5,0,0,32.2,77777,9,999999999,329,0.2090,0,88,999.000,999.0,99.0 +1977,7,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,98000,0,0,356,0,0,0,0,0,0,0,190,5.2,1,0,32.2,77777,9,999999999,350,0.2090,0,88,999.000,999.0,99.0 +1977,7,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,98000,0,0,356,0,0,0,0,0,0,0,180,4.1,2,0,32.2,77777,9,999999999,359,0.2090,0,88,999.000,999.0,99.0 +1977,7,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,98100,0,0,363,0,0,0,0,0,0,0,180,3.6,3,1,32.2,77777,9,999999999,370,0.2090,0,88,999.000,999.0,99.0 +1977,7,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,98100,6,298,361,3,7,2,0,0,0,0,180,3.6,3,1,32.2,77777,9,999999999,390,0.0970,0,88,999.000,999.0,99.0 +1977,7,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,98100,185,1324,365,77,187,51,8100,11300,6500,960,190,4.1,8,2,32.2,77777,9,999999999,400,0.0970,0,88,999.000,999.0,99.0 +1977,7,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.2,76,98200,453,1324,376,236,385,104,24900,35500,12800,1960,210,5.2,5,4,32.2,77777,9,999999999,409,0.0970,0,88,999.000,999.0,99.0 +1977,7,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.3,69,98200,708,1324,372,485,743,85,51100,73600,11700,1920,190,5.2,0,0,24.1,77777,9,999999999,419,0.0970,0,88,999.000,999.0,99.0 +1977,7,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,98100,932,1324,382,677,796,115,71900,80300,15300,3170,190,4.6,2,0,19.3,77777,9,999999999,430,0.0970,0,88,999.000,999.0,99.0 +1977,7,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,98100,1109,1324,415,807,693,225,85400,70500,26200,9080,230,5.2,6,3,16.1,77777,9,999999999,440,0.0970,0,88,999.000,999.0,99.0 +1977,7,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,98100,1228,1324,427,679,349,354,75400,38000,40000,19990,220,4.6,8,5,16.1,7620,9,999999999,450,0.0970,0,88,999.000,999.0,99.0 +1977,7,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,98000,1279,1324,453,432,36,398,47900,3700,44300,24670,200,5.2,10,9,12.9,3050,9,999999999,459,0.0970,0,88,999.000,999.0,99.0 +1977,7,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,97900,1261,1324,440,556,164,399,61800,17600,45000,24700,220,5.2,8,7,12.9,3050,9,999999999,469,0.0970,0,88,999.000,999.0,99.0 +1977,7,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,97900,1173,1324,463,348,11,339,41300,1000,40500,15360,320,3.1,10,10,14.5,940,9,999999999,480,0.0970,0,88,999.000,999.0,99.0 +1977,7,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,22.2,65,97900,1022,1324,464,283,4,280,33300,300,33100,12800,280,4.1,10,10,12.9,910,9,999999999,490,0.0970,0,88,999.000,999.0,99.0 +1977,7,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98000,818,1324,424,162,5,159,19300,400,19100,7460,270,4.1,10,10,11.3,1520,9,999999999,500,0.0970,0,88,999.000,999.0,99.0 +1977,7,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,84,97900,575,1324,426,89,3,87,10500,200,10500,3900,190,3.1,10,10,19.3,7620,9,999999999,509,0.0970,0,88,999.000,999.0,99.0 +1977,7,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,97900,311,1324,426,43,3,43,5200,100,5100,1750,200,3.6,10,10,19.3,2740,9,999999999,519,0.0970,0,88,999.000,999.0,99.0 +1977,7,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,93,97800,59,916,424,17,1,17,2000,0,2000,600,230,3.1,10,10,16.1,7620,9,999999999,519,0.0970,0,88,999.000,999.0,99.0 +1977,7,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,93,97900,0,0,424,0,0,0,0,0,0,0,300,3.6,10,10,11.3,7620,9,999999999,519,0.2090,0,88,999.000,999.0,99.0 +1977,7,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,93,97900,0,0,424,0,0,0,0,0,0,0,270,2.1,10,10,9.7,7620,9,999999999,519,0.2090,0,88,999.000,999.0,99.0 +1977,7,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.1,97,98000,0,0,417,0,0,0,0,0,0,0,270,2.6,10,10,9.7,7620,9,999999999,519,0.2090,0,88,999.000,999.0,99.0 +1977,7,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.1,97,98000,0,0,417,0,0,0,0,0,0,0,270,2.6,10,10,9.7,910,9,999999999,519,0.2090,0,88,999.000,999.0,99.0 +1977,7,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.7,97,97900,0,0,421,0,0,0,0,0,0,0,270,3.1,10,10,9.7,7620,9,999999999,530,0.2090,0,88,999.000,999.0,99.0 +1977,7,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.7,97,97900,0,0,421,0,0,0,0,0,0,0,260,3.1,10,10,9.7,2440,9,999999999,530,0.2090,0,88,999.000,999.0,99.0 +1977,7,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.1,97,97900,0,0,417,0,0,0,0,0,0,0,260,4.6,10,10,9.7,2440,9,999999999,530,0.2090,0,88,999.000,999.0,99.0 +1977,7,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.7,100,97900,0,0,418,0,0,0,0,0,0,0,280,4.6,10,10,9.7,2440,9,999999999,530,0.2090,0,88,999.000,999.0,99.0 +1977,7,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.7,100,97900,0,0,418,0,0,0,0,0,0,0,270,3.1,10,10,6.4,120,9,999999999,530,0.2090,0,88,999.000,999.0,99.0 +1977,7,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,22.2,100,97900,5,298,422,4,0,4,0,0,0,0,310,4.1,10,10,2.4,60,9,999999999,530,0.2640,0,88,999.000,999.0,99.0 +1977,7,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,22.2,100,97900,182,1324,422,45,0,45,5000,0,5000,1520,310,4.6,10,10,2.4,60,9,999999999,530,0.2640,0,88,999.000,999.0,99.0 +1977,7,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.8,97,98000,450,1324,429,113,1,113,12900,100,12900,4320,330,2.6,10,10,4.0,210,9,999999999,519,0.2640,0,88,999.000,999.0,99.0 +1977,7,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,98100,706,1324,432,223,1,223,25400,100,25400,8870,310,2.6,10,10,4.8,270,9,999999999,509,0.2640,0,88,999.000,999.0,99.0 +1977,7,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,23.3,85,98100,930,1324,446,315,0,315,36200,0,36200,13230,300,3.6,10,10,8.0,370,9,999999999,500,0.2640,0,88,999.000,999.0,99.0 +1977,7,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,23.3,77,98100,1108,1324,419,783,503,361,82400,52400,38500,14980,270,3.1,5,5,9.7,77777,9,999999999,490,0.2640,0,88,999.000,999.0,99.0 +1977,7,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,23.3,72,98100,1227,1324,414,873,593,322,94500,62100,36900,20340,310,2.6,5,2,11.3,77777,9,999999999,480,0.2640,0,88,999.000,999.0,99.0 +1977,7,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,22.8,67,98000,1278,1324,424,856,451,419,90800,47100,45300,36420,290,2.6,6,4,12.9,7620,9,999999999,480,0.2640,0,88,999.000,999.0,99.0 +1977,7,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,97900,1260,1324,448,624,172,460,68700,18300,51300,28300,320,2.6,9,8,12.9,7620,9,999999999,469,0.2640,0,88,999.000,999.0,99.0 +1977,7,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,22.2,59,97900,1172,1324,462,518,169,368,57400,18100,41400,16610,340,5.2,9,9,12.9,1220,9,999999999,459,0.2640,0,88,999.000,999.0,99.0 +1977,7,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,97800,1020,1324,458,453,155,333,49900,16500,37100,11280,340,4.1,9,9,12.9,1220,9,999999999,450,0.2640,0,88,999.000,999.0,99.0 +1977,7,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,97800,816,1324,458,464,240,315,50200,25100,34700,8660,340,4.1,9,9,12.9,1220,9,999999999,440,0.2640,0,88,999.000,999.0,99.0 +1977,7,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,97800,573,1324,458,186,57,161,20400,5500,18000,4710,340,4.1,9,9,12.9,7620,9,999999999,430,0.2640,0,88,999.000,999.0,99.0 +1977,7,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.8,74,97800,308,1324,443,51,19,46,5600,1600,5200,1290,180,3.6,9,9,11.3,7620,9,999999999,419,0.2640,0,88,999.000,999.0,99.0 +1977,7,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.8,85,97900,57,894,442,16,0,16,1800,0,1800,570,180,7.7,10,10,9.7,550,9,999999999,419,0.2640,0,88,999.000,999.0,99.0 +1977,7,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.8,90,97900,0,0,435,0,0,0,0,0,0,0,210,3.6,10,10,11.3,1220,9,999999999,419,0.2090,0,88,999.000,999.0,99.0 +1977,7,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.8,90,97900,0,0,435,0,0,0,0,0,0,0,220,3.1,10,10,11.3,3050,9,999999999,409,0.2090,0,88,999.000,999.0,99.0 +1977,7,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.8,97,97900,0,0,391,0,0,0,0,0,0,0,220,2.6,5,4,11.3,77777,9,999999999,409,0.2090,0,88,999.000,999.0,99.0 +1977,7,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,22.8,100,97900,0,0,376,0,0,0,0,0,0,0,270,2.6,4,1,11.3,77777,9,999999999,409,0.2090,0,88,999.000,999.0,99.0 +1977,7,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,22.8,100,97900,0,0,376,0,0,0,0,0,0,0,0,0.0,4,1,11.3,77777,9,999999999,409,0.2090,0,88,999.000,999.0,99.0 +1977,7,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,22.8,100,97900,0,0,376,0,0,0,0,0,0,0,110,2.6,4,1,8.0,77777,9,999999999,400,0.2090,0,88,999.000,999.0,99.0 +1977,7,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,22.2,100,97900,0,0,422,0,0,0,0,0,0,0,60,5.7,10,10,6.4,340,9,999999999,400,0.2090,0,88,999.000,999.0,99.0 +1977,7,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,22.2,100,97900,0,0,422,0,0,0,0,0,0,0,90,5.2,10,10,6.4,90,9,999999999,400,0.2090,0,88,999.000,999.0,99.0 +1977,7,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,22.2,100,98000,0,0,422,0,0,0,0,0,0,0,80,5.2,10,10,8.0,150,9,999999999,400,0.2090,0,88,999.000,999.0,99.0 +1977,7,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.7,100,98100,5,276,418,3,0,3,0,0,0,0,60,7.2,10,10,8.0,210,9,999999999,390,0.3220,0,88,999.000,999.0,99.0 +1977,7,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.7,100,98100,180,1324,418,33,0,33,3800,0,3800,1200,70,5.2,10,10,8.0,240,9,999999999,390,0.3220,0,88,999.000,999.0,99.0 +1977,7,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.1,97,98200,448,1324,417,74,3,73,8700,200,8600,3070,70,6.2,10,10,8.0,580,9,999999999,390,0.3220,0,88,999.000,999.0,99.0 +1977,7,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.6,97,98200,704,1324,413,109,1,108,13100,100,13000,5070,90,6.2,10,10,8.0,850,9,999999999,379,0.3220,0,88,999.000,999.0,99.0 +1977,7,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.6,97,98200,929,1324,413,348,2,346,39600,200,39500,14000,70,6.7,10,10,8.0,910,9,999999999,379,0.3220,0,88,999.000,999.0,99.0 +1977,7,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,98200,1107,1324,422,357,2,356,41800,200,41700,15610,60,7.2,10,10,9.7,1010,9,999999999,379,0.3220,0,88,999.000,999.0,99.0 +1977,7,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,98200,1225,1324,413,486,84,408,53700,8600,45700,21180,90,6.2,9,9,12.9,1830,9,999999999,370,0.3220,0,88,999.000,999.0,99.0 +1977,7,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,98100,1277,1324,430,463,18,446,54500,1700,52900,19020,90,5.7,10,10,12.9,1980,9,999999999,370,0.3220,0,88,999.000,999.0,99.0 +1977,7,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,98100,1259,1324,433,435,10,425,51200,1000,50300,18340,90,5.2,10,10,12.9,1980,9,999999999,370,0.3220,0,88,999.000,999.0,99.0 +1977,7,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,98100,1170,1324,431,437,8,430,50800,800,50100,17990,140,5.7,10,10,12.9,1070,9,999999999,359,0.3220,0,88,999.000,999.0,99.0 +1977,7,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,98100,1019,1324,419,295,2,293,34500,200,34400,13210,140,6.2,10,10,11.3,1070,9,999999999,359,0.3220,0,88,999.000,999.0,99.0 +1977,7,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98100,815,1324,416,249,7,245,28700,600,28300,10320,140,4.1,10,10,9.7,1070,9,999999999,359,0.3220,0,88,999.000,999.0,99.0 +1977,7,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98100,571,1324,416,179,3,178,20200,200,20100,6710,130,3.6,10,10,9.7,1220,9,999999999,350,0.3220,0,88,999.000,999.0,99.0 +1977,7,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98100,306,1324,416,66,1,66,7500,0,7500,2450,110,5.2,10,10,9.7,1220,9,999999999,350,0.3220,0,88,999.000,999.0,99.0 +1977,7,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98200,56,894,416,19,0,19,2100,0,2100,650,90,5.7,10,10,9.7,1220,9,999999999,359,0.3220,0,88,999.000,999.0,99.0 +1977,7,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,98200,0,0,410,0,0,0,0,0,0,0,90,2.1,10,10,8.0,210,9,999999999,359,0.2090,0,88,999.000,999.0,99.0 +1977,7,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,98200,0,0,410,0,0,0,0,0,0,0,100,2.6,10,10,6.4,120,9,999999999,370,0.2090,0,88,999.000,999.0,99.0 +1977,7,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.6,100,98200,0,0,410,0,0,0,0,0,0,0,120,4.1,10,10,3.2,90,9,999999999,370,0.2090,0,88,999.000,999.0,99.0 +1977,7,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.6,100,98200,0,0,410,0,0,0,0,0,0,0,120,4.1,10,10,3.2,120,9,999999999,379,0.2090,0,88,999.000,999.0,99.0 +1977,7,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,98200,0,0,406,0,0,0,0,0,0,0,120,6.2,10,10,3.2,460,9,999999999,379,0.2090,0,88,999.000,999.0,99.0 +1977,7,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,98200,0,0,406,0,0,0,0,0,0,0,110,5.2,10,10,8.0,700,9,999999999,390,0.2090,0,88,999.000,999.0,99.0 +1977,7,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,98200,0,0,406,0,0,0,0,0,0,0,70,3.6,10,10,6.4,340,9,999999999,400,0.2090,0,88,999.000,999.0,99.0 +1977,7,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,98200,0,0,402,0,0,0,0,0,0,0,80,6.2,10,10,6.4,90,9,999999999,400,0.2090,0,88,999.000,999.0,99.0 +1977,7,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,98200,0,0,402,0,0,0,0,0,0,0,70,5.7,10,10,6.4,120,9,999999999,409,0.2090,0,88,999.000,999.0,99.0 +1977,7,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,98200,4,254,402,1,0,1,0,0,0,0,50,3.6,10,10,2.4,90,9,999999999,409,0.1000,0,88,999.000,999.0,99.0 +1977,7,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,98300,177,1325,402,28,0,28,3200,0,3200,1050,60,4.1,10,10,0.8,90,9,999999999,419,0.1000,0,88,999.000,999.0,99.0 +1977,7,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,98400,446,1325,402,81,1,81,9500,100,9500,3330,60,6.2,10,10,2.4,90,9,999999999,419,0.1000,0,88,999.000,999.0,99.0 +1977,7,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,98400,702,1325,402,138,1,138,16300,100,16300,6210,70,6.7,10,10,2.4,120,9,999999999,419,0.1000,0,88,999.000,999.0,99.0 +1977,7,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,98500,927,1325,402,187,1,187,22500,100,22400,8980,70,6.7,10,10,2.4,120,9,999999999,419,0.1000,0,88,999.000,999.0,99.0 +1977,7,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,98500,1105,1325,402,249,1,249,30000,100,30000,11980,80,7.2,10,10,2.4,150,9,999999999,419,0.1000,0,88,999.000,999.0,99.0 +1977,7,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,98500,1224,1325,402,261,1,260,31800,100,31700,12660,80,7.7,10,10,3.2,210,9,999999999,419,0.1000,0,88,999.000,999.0,99.0 +1977,7,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,98500,1276,1325,402,278,0,278,33900,0,33900,13470,90,6.2,10,10,3.2,180,9,999999999,430,0.1000,0,88,999.000,999.0,99.0 +1977,7,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,98500,1257,1325,402,487,2,485,56800,200,56600,19900,80,7.2,10,10,4.8,180,9,999999999,430,0.1000,0,88,999.000,999.0,99.0 +1977,7,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,98400,1169,1325,402,243,0,243,29500,0,29500,11880,80,7.2,10,10,4.8,180,9,999999999,430,0.1000,0,88,999.000,999.0,99.0 +1977,7,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,18.9,97,98400,1017,1325,402,356,1,355,41100,100,41000,15030,70,5.7,10,10,9.7,370,9,999999999,430,0.1000,0,88,999.000,999.0,99.0 +1977,7,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.8,93,98400,813,1325,398,275,1,274,31300,100,31200,11100,110,7.2,10,10,11.3,490,9,999999999,430,0.1000,0,88,999.000,999.0,99.0 +1977,7,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.8,93,98400,569,1325,398,192,1,192,21500,100,21500,7010,100,7.2,10,10,11.3,490,9,999999999,430,0.1000,0,88,999.000,999.0,99.0 +1977,7,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.8,93,98500,303,1325,398,82,1,82,9200,0,9200,2840,90,6.2,10,10,9.7,340,9,999999999,430,0.1000,0,88,999.000,999.0,99.0 +1977,7,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.8,97,98400,54,872,394,21,0,21,2400,0,2400,700,90,6.2,10,10,9.7,270,9,999999999,430,0.1000,0,88,999.000,999.0,99.0 +1977,7,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.8,97,98400,0,0,394,0,0,0,0,0,0,0,80,5.2,10,10,9.7,270,9,999999999,430,0.2090,0,88,999.000,999.0,99.0 +1977,7,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,98500,0,0,391,0,0,0,0,0,0,0,80,5.7,10,10,9.7,340,9,999999999,440,0.2090,0,88,999.000,999.0,99.0 +1977,7,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.7,97,98500,0,0,387,0,0,0,0,0,0,0,80,4.1,10,10,11.3,370,9,999999999,440,0.2090,0,88,999.000,999.0,99.0 +1977,7,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.7,97,98500,0,0,387,0,0,0,0,0,0,0,90,5.2,10,10,11.3,370,9,999999999,440,0.2090,0,88,999.000,999.0,99.0 +1977,7,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.7,97,98400,0,0,387,0,0,0,0,0,0,0,100,3.1,10,10,11.3,310,9,999999999,440,0.2080,0,88,999.000,999.0,99.0 +1977,7,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,98400,0,0,391,0,0,0,0,0,0,0,90,3.6,10,10,9.7,240,9,999999999,450,0.2080,0,88,999.000,999.0,99.0 +1977,7,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,98300,0,0,391,0,0,0,0,0,0,0,80,2.6,10,10,9.7,180,9,999999999,450,0.2080,0,88,999.000,999.0,99.0 +1977,7,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,17.2,100,98300,0,0,388,0,0,0,0,0,0,0,110,2.6,10,10,6.4,150,9,999999999,450,0.2080,0,88,999.000,999.0,99.0 +1977,7,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.8,100,98300,0,0,392,0,0,0,0,0,0,0,60,3.1,10,10,6.4,150,9,999999999,459,0.2080,0,88,999.000,999.0,99.0 +1977,7,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,98300,4,232,391,1,0,1,0,0,0,0,90,2.6,10,10,3.2,150,9,999999999,459,0.2760,0,88,999.000,999.0,99.0 +1977,7,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.8,100,98300,174,1325,392,31,0,31,3600,0,3600,1130,70,3.6,10,10,0.8,60,9,999999999,459,0.2760,0,88,999.000,999.0,99.0 +1977,7,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.8,100,98400,444,1325,392,72,0,72,8500,0,8500,3020,90,2.1,10,10,0.4,60,9,999999999,469,0.2760,0,88,999.000,999.0,99.0 +1977,7,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.8,100,98400,700,1325,392,131,1,131,15600,100,15500,5940,90,2.1,10,10,1.3,120,9,999999999,469,0.2760,0,88,999.000,999.0,99.0 +1977,7,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,18.3,100,98300,925,1325,395,188,0,188,22500,0,22500,9010,100,2.1,10,10,2.4,90,9,999999999,480,0.2760,0,88,999.000,999.0,99.0 +1977,7,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,98300,1104,1325,402,400,0,400,46300,0,46300,16820,130,3.1,10,10,2.4,240,9,999999999,480,0.2760,0,88,999.000,999.0,99.0 +1977,7,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,98300,1223,1325,406,440,1,439,51500,100,51400,18530,180,3.1,10,10,3.2,120,9,999999999,480,0.2760,0,88,999.000,999.0,99.0 +1977,7,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,98200,1275,1325,406,273,1,272,33400,100,33300,13230,170,3.6,10,10,2.4,90,9,999999999,490,0.2760,0,88,999.000,999.0,99.0 +1977,7,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.7,100,98200,1256,1325,418,260,1,259,31800,100,31700,12680,200,3.1,10,10,6.4,120,9,999999999,490,0.2760,0,88,999.000,999.0,99.0 +1977,7,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,98100,1168,1325,432,407,1,406,47500,100,47400,17340,220,3.1,10,10,11.3,270,9,999999999,500,0.2760,0,88,999.000,999.0,99.0 +1977,7,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.8,90,98100,1016,1325,435,218,0,218,26100,0,26100,10520,200,3.1,10,10,11.3,370,9,999999999,509,0.2760,0,88,999.000,999.0,99.0 +1977,7,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,93,98100,811,1325,424,155,0,155,18500,0,18500,7270,170,4.1,10,10,6.4,120,9,999999999,509,0.2760,0,88,999.000,999.0,99.0 +1977,7,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.7,97,98100,566,1325,421,110,0,110,12900,0,12900,4700,190,3.1,10,10,9.7,210,9,999999999,519,0.2760,0,88,999.000,999.0,99.0 +1977,7,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.7,100,98100,300,1325,418,81,0,81,9000,0,9000,2810,210,3.6,10,10,11.3,760,9,999999999,519,0.2760,0,88,999.000,999.0,99.0 +1977,7,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,21.1,100,98100,52,850,403,20,1,20,2300,0,2300,670,220,3.6,9,9,16.1,2440,9,999999999,509,0.2760,0,88,999.000,999.0,99.0 +1977,7,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.6,100,98100,0,0,399,0,0,0,0,0,0,0,250,2.1,9,9,12.9,2440,9,999999999,500,0.2080,0,88,999.000,999.0,99.0 +1977,7,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.6,100,98100,0,0,399,0,0,0,0,0,0,0,220,2.1,9,9,11.3,3050,9,999999999,480,0.2080,0,88,999.000,999.0,99.0 +1977,7,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.6,100,98100,0,0,374,0,0,0,0,0,0,0,250,3.6,9,4,11.3,77777,9,999999999,469,0.2080,0,88,999.000,999.0,99.0 +1977,7,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,98100,0,0,370,0,0,0,0,0,0,0,260,3.6,9,4,11.3,77777,9,999999999,459,0.2080,0,88,999.000,999.0,99.0 +1977,7,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,98100,0,0,395,0,0,0,0,0,0,0,240,3.6,10,9,9.7,120,9,999999999,450,0.2080,0,88,999.000,999.0,99.0 +1977,7,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,98100,0,0,406,0,0,0,0,0,0,0,260,3.6,10,10,1.3,60,9,999999999,440,0.2080,0,88,999.000,999.0,99.0 +1977,7,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,21.1,100,98000,0,0,414,0,0,0,0,0,0,0,250,3.6,10,10,4.8,90,9,999999999,430,0.2080,0,88,999.000,999.0,99.0 +1977,7,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,21.1,100,98000,0,0,414,0,0,0,0,0,0,0,290,3.1,10,10,1.3,30,9,999999999,419,0.2080,0,88,999.000,999.0,99.0 +1977,7,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,21.1,100,98000,0,0,414,0,0,0,0,0,0,0,260,2.6,10,10,4.8,60,9,999999999,400,0.2080,0,88,999.000,999.0,99.0 +1977,7,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,21.1,100,98100,3,232,414,0,0,0,0,0,0,0,240,2.6,10,10,2.4,60,9,999999999,390,0.1170,0,88,999.000,999.0,99.0 +1977,7,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.7,100,98100,172,1325,407,42,11,41,4600,800,4500,1010,230,3.6,10,9,2.4,150,9,999999999,379,0.1170,0,88,999.000,999.0,99.0 +1977,7,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,22.2,100,98100,441,1325,422,77,3,76,9000,200,9000,3150,280,3.6,10,10,4.8,120,9,999999999,379,0.1170,0,88,999.000,999.0,99.0 +1977,7,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,98200,698,1325,432,180,9,175,20800,700,20400,7440,290,3.6,10,10,6.4,270,9,999999999,379,0.1170,0,88,999.000,999.0,99.0 +1977,7,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.8,90,98200,924,1325,435,270,10,263,31400,900,30800,11650,310,3.1,10,10,8.0,400,9,999999999,379,0.1170,0,88,999.000,999.0,99.0 +1977,7,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.2,74,98100,1103,1325,429,573,242,371,62400,26300,40600,14380,320,3.1,9,8,12.9,520,9,999999999,370,0.1170,0,88,999.000,999.0,99.0 +1977,7,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.2,72,98100,1222,1325,433,679,395,313,73600,41400,35400,19220,280,2.1,8,8,12.9,670,9,999999999,370,0.1170,0,88,999.000,999.0,99.0 +1977,7,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,22.2,65,98000,1274,1325,442,564,233,339,63100,25400,38600,24160,310,2.1,8,8,16.1,910,9,999999999,370,0.1170,0,88,999.000,999.0,99.0 +1977,7,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,97900,1255,1325,428,722,333,405,79600,36200,45200,26150,290,3.6,5,5,11.3,77777,9,999999999,370,0.1170,0,88,999.000,999.0,99.0 +1977,7,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,97900,1166,1325,435,683,365,360,75100,39700,40100,16320,300,2.1,6,6,9.7,980,9,999999999,370,0.1170,0,88,999.000,999.0,99.0 +1977,7,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,97800,1014,1325,432,567,442,228,61700,46100,26300,7370,340,2.6,5,5,9.7,77777,9,999999999,370,0.1170,0,88,999.000,999.0,99.0 +1977,7,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,97800,809,1325,432,355,187,241,39100,19700,27100,6570,320,3.1,5,5,9.7,77777,9,999999999,359,0.1170,0,88,999.000,999.0,99.0 +1977,7,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,97800,564,1325,421,340,516,118,36200,50300,14800,2300,280,3.6,2,2,9.7,77777,9,999999999,359,0.1170,0,88,999.000,999.0,99.0 +1977,7,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,22.2,70,97800,297,1325,420,98,76,81,10700,6200,9300,1760,230,3.6,5,5,9.7,77777,9,999999999,359,0.1170,0,88,999.000,999.0,99.0 +1977,7,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.8,77,97900,50,828,430,18,7,18,2000,400,2000,440,160,3.6,8,8,9.7,4570,9,999999999,370,0.1170,0,88,999.000,999.0,99.0 +1977,7,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,97900,0,0,426,0,0,0,0,0,0,0,180,5.2,9,9,9.7,4570,9,999999999,370,0.2080,0,88,999.000,999.0,99.0 +1977,7,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,97900,0,0,434,0,0,0,0,0,0,0,230,2.6,10,10,9.7,4570,9,999999999,379,0.2080,0,88,999.000,999.0,99.0 +1977,7,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,97900,0,0,396,0,0,0,0,0,0,0,270,2.6,7,6,11.3,7620,9,999999999,390,0.2080,0,88,999.000,999.0,99.0 +1977,7,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,93,97900,0,0,404,0,0,0,0,0,0,0,270,4.1,9,8,11.3,7620,9,999999999,390,0.2080,0,88,999.000,999.0,99.0 +1977,7,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,97900,0,0,419,0,0,0,0,0,0,0,280,3.1,10,10,11.3,7620,9,999999999,400,0.2080,0,88,999.000,999.0,99.0 +1977,7,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,97800,0,0,404,0,0,0,0,0,0,0,240,2.6,9,9,11.3,3050,9,999999999,409,0.2080,0,88,999.000,999.0,99.0 +1977,7,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,97800,0,0,383,0,0,0,0,0,0,0,240,1.5,8,5,11.3,7620,9,999999999,409,0.2080,0,88,999.000,999.0,99.0 +1977,7,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,97800,0,0,369,0,0,0,0,0,0,0,0,0.0,4,2,11.3,77777,9,999999999,419,0.2080,0,88,999.000,999.0,99.0 +1977,7,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,97800,0,0,355,0,0,0,0,0,0,0,280,2.6,2,0,11.3,77777,9,999999999,430,0.2080,0,88,999.000,999.0,99.0 +1977,7,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,97900,3,210,355,1,0,1,0,0,0,0,240,1.5,1,0,9.7,77777,9,999999999,430,0.2380,0,88,999.000,999.0,99.0 +1977,7,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,21.1,100,98000,169,1326,359,60,90,48,6500,5600,5700,1010,250,2.6,3,0,4.8,77777,9,999999999,440,0.2380,0,88,999.000,999.0,99.0 +1977,7,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,98000,439,1326,371,228,393,98,24200,35900,12300,1830,280,4.1,0,0,6.4,77777,9,999999999,430,0.2380,0,88,999.000,999.0,99.0 +1977,7,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.8,85,98000,696,1326,390,420,535,138,43700,52800,15900,2950,280,5.2,1,1,9.7,77777,9,999999999,430,0.2380,0,88,999.000,999.0,99.0 +1977,7,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,23.3,79,98000,922,1326,412,611,557,222,65700,57800,25400,6130,270,3.1,4,4,11.3,77777,9,999999999,419,0.2380,0,88,999.000,999.0,99.0 +1977,7,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,22.8,72,98000,1101,1326,429,595,317,331,65400,34400,36700,12600,250,3.1,7,7,11.3,640,9,999999999,419,0.2380,0,88,999.000,999.0,99.0 +1977,7,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,22.2,65,97900,1221,1326,435,816,414,434,89200,45000,47700,24080,210,3.1,7,7,16.1,880,9,999999999,409,0.2380,0,88,999.000,999.0,99.0 +1977,7,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,22.2,61,97900,1273,1326,433,739,351,401,81700,38200,45000,28600,290,3.6,5,5,19.3,77777,9,999999999,409,0.2380,0,88,999.000,999.0,99.0 +1977,7,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,22.8,63,97800,1254,1326,434,815,445,392,86700,46500,42700,28610,240,3.1,5,5,24.1,77777,9,999999999,400,0.2380,0,88,999.000,999.0,99.0 +1977,7,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,22.2,61,97700,1165,1326,433,521,223,324,57800,24300,36400,14460,260,5.2,5,5,24.1,77777,9,999999999,390,0.2380,0,88,999.000,999.0,99.0 +1977,7,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,97700,1012,1326,428,595,436,261,63800,45400,29100,8480,250,4.6,4,4,24.1,77777,9,999999999,390,0.2380,0,88,999.000,999.0,99.0 +1977,7,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,97700,806,1326,428,505,456,226,53100,46700,24600,5450,240,4.1,7,3,24.1,77777,9,999999999,379,0.2380,0,88,999.000,999.0,99.0 +1977,7,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,97700,561,1326,421,322,244,218,34500,24100,24300,5180,250,3.6,10,3,24.1,77777,9,999999999,379,0.2380,0,88,999.000,999.0,99.0 +1977,7,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,97700,294,1326,437,103,53,91,11200,4500,10200,2240,250,3.1,10,8,24.1,7620,9,999999999,370,0.2380,0,88,999.000,999.0,99.0 +1977,7,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.7,72,97700,48,829,417,14,3,13,1500,0,1500,470,220,2.1,9,6,24.1,7620,9,999999999,370,0.2380,0,88,999.000,999.0,99.0 +1977,7,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,97800,0,0,401,0,0,0,0,0,0,0,220,2.6,7,3,24.1,77777,9,999999999,370,0.2080,0,88,999.000,999.0,99.0 +1977,7,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.8,21.6,85,97900,0,0,395,0,0,0,0,0,0,0,280,2.6,6,2,19.3,77777,9,999999999,379,0.2080,0,88,999.000,999.0,99.0 +1977,7,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.5,21.5,85,98000,0,0,412,0,0,0,0,0,0,0,0,2.6,8,7,16.1,3660,9,999999999,379,0.2080,0,88,999.000,999.0,99.0 +1977,7,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.2,21.4,76,98500,0,0,392,0,0,0,0,0,0,0,120,2.6,2,2,24.1,77777,9,999999999,379,0.2080,0,88,999.000,999.0,99.0 +1988,8,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.8,21.4,74,98100,0,0,377,0,0,0,0,0,0,0,320,2.6,0,0,12.9,77777,9,999999999,359,0.2070,0,88,999.000,999.0,99.0 +1988,8,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.5,21.3,82,98200,0,0,376,0,0,0,0,0,0,0,290,2.6,0,0,12.9,77777,9,999999999,370,0.2070,0,88,999.000,999.0,99.0 +1988,8,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.2,21.2,85,98100,0,0,374,0,0,0,0,0,0,0,290,2.6,0,0,12.9,77777,9,999999999,370,0.2070,0,88,999.000,999.0,99.0 +1988,8,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,98100,0,0,373,0,0,0,0,0,0,0,290,2.6,0,0,12.9,77777,9,999999999,370,0.2070,0,88,999.000,999.0,99.0 +1988,8,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,98200,0,0,370,0,0,0,0,0,0,0,320,2.6,0,0,12.9,77777,9,999999999,370,0.2070,0,88,999.000,999.0,99.0 +1988,8,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,98200,2,188,370,1,0,1,0,0,0,0,310,2.1,1,0,11.3,77777,9,999999999,370,0.1920,0,88,999.000,999.0,99.0 +1988,8,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,98300,165,1326,373,58,136,41,6100,7600,5200,750,0,0.0,0,0,9.7,77777,9,999999999,370,0.1920,0,88,999.000,999.0,99.0 +1988,8,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,98300,436,1326,384,234,447,87,25100,40800,11700,1610,0,0.0,0,0,9.7,77777,9,999999999,370,0.1920,0,88,999.000,999.0,99.0 +1988,8,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,98400,694,1326,392,451,619,126,47200,61300,15100,2730,310,3.6,0,0,11.3,77777,9,999999999,370,0.1920,0,88,999.000,999.0,99.0 +1988,8,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,98400,920,1326,405,650,709,157,69100,72200,18900,4370,330,4.1,0,0,11.3,77777,9,999999999,379,0.1920,0,88,999.000,999.0,99.0 +1988,8,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.6,50,98400,1099,1326,415,810,762,177,84100,76300,20700,6260,10,3.1,0,0,11.3,77777,9,999999999,359,0.1920,0,88,999.000,999.0,99.0 +1988,8,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,19.4,44,98300,1219,1326,428,872,755,176,92000,76200,21800,9780,0,0.0,1,1,12.9,77777,9,999999999,340,0.1920,0,88,999.000,999.0,99.0 +1988,8,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,19.4,43,98300,1271,1326,441,908,649,285,96100,65800,32900,22350,0,0.0,3,3,12.9,77777,9,999999999,340,0.1920,0,88,999.000,999.0,99.0 +1988,8,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,19.4,43,98200,1252,1326,445,952,704,285,100400,71300,33000,19800,350,3.6,4,4,12.9,77777,9,999999999,340,0.1920,0,88,999.000,999.0,99.0 +1988,8,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,19.4,40,98100,1163,1326,455,762,459,357,80800,47900,38700,17400,290,2.6,5,5,11.3,77777,9,999999999,340,0.1920,0,88,999.000,999.0,99.0 +1988,8,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,18.9,39,98000,1010,1326,451,681,557,255,73200,58000,28900,8230,10,3.1,5,4,11.3,77777,9,999999999,329,0.1920,0,88,999.000,999.0,99.0 +1988,8,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,18.9,39,98000,803,1326,451,543,550,208,57500,56400,23300,4960,110,6.2,7,4,11.3,7620,9,999999999,329,0.1920,0,88,999.000,999.0,99.0 +1988,8,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,19.4,44,98000,558,1326,445,311,380,150,32400,36800,16900,3000,180,3.6,8,5,11.3,7620,9,999999999,340,0.1920,0,88,999.000,999.0,99.0 +1988,8,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,98100,290,1326,454,53,18,49,5800,1500,5500,1340,170,4.1,9,9,11.3,7620,9,999999999,329,0.1920,0,88,999.000,999.0,99.0 +1988,8,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,98200,45,807,428,6,1,6,700,0,700,240,0,0.0,9,9,11.3,7620,9,999999999,370,0.1920,0,88,999.000,999.0,99.0 +1988,8,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,98200,0,0,452,0,0,0,0,0,0,0,170,3.1,10,10,11.3,7620,9,999999999,359,0.2070,0,88,999.000,999.0,99.0 +1988,8,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,98300,0,0,449,0,0,0,0,0,0,0,190,3.1,10,10,11.3,7620,9,999999999,370,0.2070,0,88,999.000,999.0,99.0 +1988,8,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,98300,0,0,421,0,0,0,0,0,0,0,180,4.1,9,8,11.3,7620,9,999999999,359,0.2070,0,88,999.000,999.0,99.0 +1988,8,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,98300,0,0,400,0,0,0,0,0,0,0,200,2.1,8,4,11.3,77777,9,999999999,359,0.2070,0,88,999.000,999.0,99.0 +1988,8,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,98300,0,0,394,0,0,0,0,0,0,0,180,2.1,7,3,11.3,77777,9,999999999,359,0.2070,0,88,999.000,999.0,99.0 +1988,8,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,98300,0,0,394,0,0,0,0,0,0,0,270,2.1,8,3,11.3,77777,9,999999999,370,0.2070,0,88,999.000,999.0,99.0 +1988,8,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,98300,0,0,387,0,0,0,0,0,0,0,180,1.5,7,2,11.3,77777,9,999999999,359,0.2070,0,88,999.000,999.0,99.0 +1988,8,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,98300,0,0,379,0,0,0,0,0,0,0,180,2.1,5,1,11.3,77777,9,999999999,359,0.2070,0,88,999.000,999.0,99.0 +1988,8,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,98300,0,0,376,0,0,0,0,0,0,0,120,2.1,4,1,11.3,77777,9,999999999,359,0.2070,0,88,999.000,999.0,99.0 +1988,8,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,98300,2,166,380,0,0,0,0,0,0,0,50,1.5,4,1,9.7,77777,9,999999999,370,0.2270,0,88,999.000,999.0,99.0 +1988,8,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,98400,162,1327,395,48,21,46,5300,1500,5100,1090,0,0.0,10,5,8.0,77777,9,999999999,370,0.2270,0,88,999.000,999.0,99.0 +1988,8,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,98500,433,1327,398,216,258,132,22900,24000,15000,2690,80,2.1,6,3,8.0,77777,9,999999999,379,0.2270,0,88,999.000,999.0,99.0 +1988,8,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.7,67,98500,692,1327,403,419,539,138,43600,53100,15900,2930,10,1.5,2,1,9.7,77777,9,999999999,379,0.2270,0,88,999.000,999.0,99.0 +1988,8,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,98500,918,1327,408,638,662,179,67200,66900,20700,4890,160,3.1,1,0,9.7,77777,9,999999999,379,0.2270,0,88,999.000,999.0,99.0 +1988,8,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.1,54,98500,1098,1327,413,799,726,197,85300,74200,23700,7750,170,4.1,0,0,9.7,77777,9,999999999,379,0.2270,0,88,999.000,999.0,99.0 +1988,8,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,21.1,50,98500,1218,1327,427,879,718,219,94300,73500,26600,12950,150,2.6,1,1,9.7,77777,9,999999999,370,0.2270,0,88,999.000,999.0,99.0 +1988,8,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,20.0,44,98400,1270,1327,438,965,742,252,102900,75700,30200,19670,150,6.2,2,2,11.3,77777,9,999999999,350,0.2270,0,88,999.000,999.0,99.0 +1988,8,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,18.9,41,98300,1251,1327,441,879,585,325,95300,61300,37400,23030,140,2.6,3,3,12.9,77777,9,999999999,329,0.2270,0,88,999.000,999.0,99.0 +1988,8,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,18.3,39,98300,1161,1327,438,842,680,245,89000,69100,28400,11490,140,4.6,2,2,12.9,77777,9,999999999,320,0.2270,0,88,999.000,999.0,99.0 +1988,8,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,18.3,37,98300,1008,1327,442,720,636,235,75000,64000,26300,7310,110,2.6,2,2,12.9,77777,9,999999999,309,0.2270,0,88,999.000,999.0,99.0 +1988,8,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,18.3,39,98200,801,1327,438,533,564,191,57000,57900,22000,4510,180,3.1,2,2,12.9,77777,9,999999999,320,0.2270,0,88,999.000,999.0,99.0 +1988,8,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,18.9,44,98200,555,1327,424,321,476,121,34200,46200,14800,2360,200,4.1,3,1,11.3,77777,9,999999999,329,0.2270,0,88,999.000,999.0,99.0 +1988,8,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,20.0,47,98300,286,1327,436,114,138,84,12400,11100,10000,1820,230,4.1,8,3,11.3,77777,9,999999999,350,0.2270,0,88,999.000,999.0,99.0 +1988,8,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,98300,43,785,435,17,3,17,1900,0,1900,580,90,6.2,8,6,11.3,7620,9,999999999,359,0.2270,0,88,999.000,999.0,99.0 +1988,8,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,98400,0,0,432,0,0,0,0,0,0,0,300,2.6,10,10,11.3,1520,9,999999999,359,0.2070,0,88,999.000,999.0,99.0 +1988,8,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,98400,0,0,436,0,0,0,0,0,0,0,100,1.5,10,10,11.3,7620,9,999999999,370,0.2070,0,88,999.000,999.0,99.0 +1988,8,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,98400,0,0,436,0,0,0,0,0,0,0,50,2.6,10,10,11.3,7620,9,999999999,370,0.2070,0,88,999.000,999.0,99.0 +1988,8,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,98400,0,0,434,0,0,0,0,0,0,0,340,1.5,10,10,8.0,7620,9,999999999,400,0.2070,0,88,999.000,999.0,99.0 +1988,8,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,98400,0,0,407,0,0,0,0,0,0,0,330,3.1,10,7,8.0,7620,9,999999999,400,0.2060,0,88,999.000,999.0,99.0 +1988,8,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98400,0,0,386,0,0,0,0,0,0,0,50,1.5,8,2,8.0,77777,9,999999999,379,0.2060,0,88,999.000,999.0,99.0 +1988,8,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,98300,0,0,385,0,0,0,0,0,0,0,50,2.6,10,2,8.0,77777,9,999999999,370,0.2060,0,88,999.000,999.0,99.0 +1988,8,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98400,0,0,386,0,0,0,0,0,0,0,50,1.5,8,2,8.0,77777,9,999999999,379,0.2060,0,88,999.000,999.0,99.0 +1988,8,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,98400,0,0,380,0,0,0,0,0,0,0,0,0.0,5,1,11.3,77777,9,999999999,370,0.2060,0,88,999.000,999.0,99.0 +1988,8,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,98400,2,166,385,1,0,1,0,0,0,0,0,0.0,5,2,9.7,77777,9,999999999,370,0.3240,0,88,999.000,999.0,99.0 +1988,8,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98400,160,1327,386,42,35,38,4600,2400,4300,930,340,1.5,4,2,8.0,77777,9,999999999,379,0.3240,0,88,999.000,999.0,99.0 +1988,8,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,98500,431,1327,381,210,295,114,22400,27400,13500,2260,70,2.6,1,0,9.7,77777,9,999999999,359,0.3240,0,88,999.000,999.0,99.0 +1988,8,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,98500,690,1327,391,421,481,170,44600,48500,19400,3640,40,1.5,0,0,11.3,77777,9,999999999,350,0.3240,0,88,999.000,999.0,99.0 +1988,8,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,98500,917,1327,397,621,584,217,67000,60600,25000,5920,50,1.5,0,0,12.9,77777,9,999999999,350,0.3240,0,88,999.000,999.0,99.0 +1988,8,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,98500,1097,1327,407,785,648,248,82300,65500,28100,9500,20,1.5,0,0,12.9,77777,9,999999999,359,0.3240,0,88,999.000,999.0,99.0 +1988,8,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,98400,1217,1327,412,898,685,267,94800,69500,30900,15470,60,4.1,0,0,12.9,77777,9,999999999,350,0.3240,0,88,999.000,999.0,99.0 +1988,8,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,21.1,50,98300,1269,1327,427,912,665,274,96600,67500,31900,21060,80,3.6,1,1,12.9,77777,9,999999999,370,0.3240,0,88,999.000,999.0,99.0 +1988,8,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,20.0,46,98300,1249,1327,439,886,575,343,95600,60200,38800,24110,50,3.1,3,3,12.9,77777,9,999999999,350,0.3240,0,88,999.000,999.0,99.0 +1988,8,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,20.0,44,98200,1160,1327,442,616,312,342,68000,33900,38200,15060,100,2.6,3,3,12.9,77777,9,999999999,350,0.3240,0,88,999.000,999.0,99.0 +1988,8,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,20.0,44,98100,1006,1327,442,685,533,279,72800,55500,30700,8980,100,5.7,3,3,12.9,77777,9,999999999,350,0.3240,0,88,999.000,999.0,99.0 +1988,8,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,20.0,44,98100,799,1327,442,505,429,246,52600,43800,26200,5940,140,4.6,4,3,16.1,77777,9,999999999,350,0.3240,0,88,999.000,999.0,99.0 +1988,8,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,18.9,44,98100,552,1327,441,260,184,182,28100,18200,20500,4300,110,3.1,7,5,16.1,7620,9,999999999,329,0.3240,0,88,999.000,999.0,99.0 +1988,8,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,98300,283,1327,456,31,2,31,3800,0,3800,1280,160,4.1,10,10,4.8,1220,9,999999999,370,0.3240,0,88,999.000,999.0,99.0 +1988,8,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,98200,41,763,447,10,0,10,1200,0,1200,370,110,3.1,10,10,8.0,7620,9,999999999,379,0.3240,0,88,999.000,999.0,99.0 +1988,8,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,23.3,94,98300,0,0,424,0,0,0,0,0,0,0,330,2.6,9,9,11.3,7620,9,999999999,419,0.2060,0,88,999.000,999.0,99.0 +1988,8,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.8,91,98300,0,0,435,0,0,0,0,0,0,0,320,2.6,10,10,11.3,7620,9,999999999,409,0.2060,0,88,999.000,999.0,99.0 +1988,8,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,98400,0,0,441,0,0,0,0,0,0,0,150,4.6,10,10,11.3,7620,9,999999999,400,0.2060,0,88,999.000,999.0,99.0 +1988,8,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,98300,0,0,422,0,0,0,0,0,0,0,350,2.6,10,9,11.3,7620,9,999999999,400,0.2060,0,88,999.000,999.0,99.0 +1988,8,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,98300,0,0,420,0,0,0,0,0,0,0,120,1.5,10,9,11.3,7620,9,999999999,409,0.2060,0,88,999.000,999.0,99.0 +1988,8,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,98300,0,0,413,0,0,0,0,0,0,0,0,0.0,10,8,11.3,7620,9,999999999,379,0.2060,0,88,999.000,999.0,99.0 +1988,8,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,98300,0,0,417,0,0,0,0,0,0,0,10,1.5,10,8,11.3,7620,9,999999999,400,0.2060,0,88,999.000,999.0,99.0 +1988,8,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.2,90,98300,0,0,411,0,0,0,0,0,0,0,80,2.6,10,8,11.3,7620,9,999999999,390,0.2060,0,88,999.000,999.0,99.0 +1988,8,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98300,0,0,404,0,0,0,0,0,0,0,80,1.5,9,7,11.3,7620,9,999999999,379,0.2060,0,88,999.000,999.0,99.0 +1988,8,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,98300,1,144,393,0,0,0,0,0,0,0,80,2.6,8,5,8.0,7620,9,999999999,400,0.1250,0,88,999.000,999.0,99.0 +1988,8,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98400,157,1327,419,46,12,45,5100,100,5100,1420,60,3.6,10,9,8.0,3050,9,999999999,379,0.1250,0,88,999.000,999.0,99.0 +1988,8,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,98400,428,1327,416,155,92,126,17000,8600,14200,2840,90,3.6,10,8,8.0,3050,9,999999999,390,0.1250,0,88,999.000,999.0,99.0 +1988,8,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,98400,688,1327,405,349,295,195,37500,30800,21600,4400,80,4.1,7,5,6.4,3050,9,999999999,400,0.1250,0,88,999.000,999.0,99.0 +1988,8,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.8,74,98400,915,1327,402,619,695,138,66300,71100,17200,3860,90,3.1,4,1,8.0,77777,9,999999999,409,0.1250,0,88,999.000,999.0,99.0 +1988,8,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.2,67,98400,1095,1327,432,529,261,313,58300,28400,34900,11650,100,3.1,8,7,9.7,3050,9,999999999,400,0.1250,0,88,999.000,999.0,99.0 +1988,8,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,22.2,61,98400,1215,1327,430,862,668,248,91500,68000,29100,14330,90,3.1,4,4,11.3,77777,9,999999999,400,0.1250,0,88,999.000,999.0,99.0 +1988,8,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,98300,1267,1327,426,813,536,299,89100,56200,35200,23290,0,0.0,4,4,11.3,77777,9,999999999,379,0.1250,0,88,999.000,999.0,99.0 +1988,8,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.1,54,98200,1248,1327,434,914,683,269,96700,69300,31400,18180,190,1.5,4,4,12.9,77777,9,999999999,370,0.1250,0,88,999.000,999.0,99.0 +1988,8,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,98100,1158,1327,401,845,730,206,90400,74700,25000,9660,290,7.7,5,5,11.3,77777,9,999999999,370,0.1250,0,88,999.000,999.0,99.0 +1988,8,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,98100,1004,1327,412,690,681,173,73400,69600,20700,5530,260,2.1,4,3,16.1,77777,9,999999999,359,0.1250,0,88,999.000,999.0,99.0 +1988,8,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.7,57,98000,796,1327,424,397,412,148,43400,42400,17900,3400,210,3.1,3,2,16.1,77777,9,999999999,379,0.1250,0,88,999.000,999.0,99.0 +1988,8,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,98000,549,1327,412,323,444,137,33800,42900,16000,2700,270,3.6,4,2,16.1,77777,9,999999999,379,0.1250,0,88,999.000,999.0,99.0 +1988,8,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,98100,280,1327,415,118,160,83,12300,12300,9700,1620,170,5.2,7,4,16.1,7620,9,999999999,370,0.1250,0,88,999.000,999.0,99.0 +1988,8,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,98200,39,741,434,13,3,13,1500,0,1500,460,50,5.7,9,9,11.3,7620,9,999999999,370,0.1250,0,88,999.000,999.0,99.0 +1988,8,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,98300,0,0,428,0,0,0,0,0,0,0,70,5.7,9,9,11.3,7620,9,999999999,379,0.2060,0,88,999.000,999.0,99.0 +1988,8,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,98300,0,0,438,0,0,0,0,0,0,0,80,4.1,10,10,11.3,1220,9,999999999,400,0.2060,0,88,999.000,999.0,99.0 +1988,8,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,98300,0,0,434,0,0,0,0,0,0,0,80,3.6,10,10,11.3,1220,9,999999999,400,0.2060,0,88,999.000,999.0,99.0 +1988,8,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,98300,0,0,434,0,0,0,0,0,0,0,100,3.1,10,10,11.3,7620,9,999999999,400,0.2060,0,88,999.000,999.0,99.0 +1988,8,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,98200,0,0,411,0,0,0,0,0,0,0,70,2.6,10,8,11.3,7620,9,999999999,409,0.2050,0,88,999.000,999.0,99.0 +1988,8,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.2,90,98200,0,0,431,0,0,0,0,0,0,0,60,3.1,10,10,11.3,7620,9,999999999,390,0.2050,0,88,999.000,999.0,99.0 +1988,8,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98200,0,0,427,0,0,0,0,0,0,0,80,3.1,10,10,11.3,7620,9,999999999,379,0.2050,0,88,999.000,999.0,99.0 +1988,8,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98100,0,0,427,0,0,0,0,0,0,0,80,4.1,10,10,11.3,210,9,999999999,379,0.2050,0,88,999.000,999.0,99.0 +1988,8,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98200,0,0,415,0,0,0,0,0,0,0,70,3.1,10,9,11.3,240,9,999999999,379,0.2050,0,88,999.000,999.0,99.0 +1988,8,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,22.2,97,98200,1,122,425,0,0,0,0,0,0,0,110,3.1,10,10,6.4,120,9,999999999,400,0.0820,0,88,999.000,999.0,99.0 +1988,8,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,22.2,97,98300,154,1328,425,27,7,27,3200,0,3200,980,130,3.1,10,10,4.0,150,9,999999999,400,0.0820,0,88,999.000,999.0,99.0 +1988,8,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,98300,426,1328,428,109,1,109,12400,100,12400,4090,100,2.1,10,10,4.0,120,9,999999999,400,0.0820,0,88,999.000,999.0,99.0 +1988,8,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,98300,686,1328,409,258,65,224,28300,6500,24900,6760,100,3.1,10,8,11.3,1220,9,999999999,370,0.0820,0,88,999.000,999.0,99.0 +1988,8,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,98300,913,1328,401,597,526,234,63800,54500,26200,6390,90,2.1,6,4,12.9,7620,9,999999999,379,0.0820,0,88,999.000,999.0,99.0 +1988,8,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.7,72,98300,1094,1328,413,740,579,262,77300,58300,29200,9880,110,1.5,8,5,12.9,1220,9,999999999,379,0.0820,0,88,999.000,999.0,99.0 +1988,8,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.7,69,98300,1214,1328,420,682,424,293,74400,44400,33700,17130,80,2.6,8,6,12.9,1220,9,999999999,379,0.0820,0,88,999.000,999.0,99.0 +1988,8,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,22.2,65,98200,1266,1328,464,330,2,328,39700,200,39500,15280,130,5.2,10,10,12.9,610,9,999999999,390,0.0820,0,88,999.000,999.0,99.0 +1988,8,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,98100,1246,1328,451,547,101,452,60400,10400,50600,24270,90,3.1,9,9,8.0,760,9,999999999,379,0.0820,0,88,999.000,999.0,99.0 +1988,8,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,98100,1156,1328,451,416,88,339,46000,9000,38100,15610,20,3.1,9,9,9.7,1220,9,999999999,379,0.0820,0,88,999.000,999.0,99.0 +1988,8,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.8,74,98000,1002,1328,443,336,120,245,37600,12800,27900,8060,360,6.7,9,9,8.0,3050,9,999999999,409,0.0820,0,88,999.000,999.0,99.0 +1988,8,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.7,72,98100,793,1328,429,301,197,183,33200,21000,20600,4320,160,7.7,9,8,11.3,7620,9,999999999,379,0.0820,0,88,999.000,999.0,99.0 +1988,8,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,98100,546,1328,408,257,216,168,27300,21500,18500,3580,120,4.6,9,7,11.3,7620,9,999999999,359,0.0820,0,88,999.000,999.0,99.0 +1988,8,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,98000,276,1328,403,132,213,87,13700,16200,10300,1720,100,3.6,8,4,11.3,77777,9,999999999,359,0.0820,0,88,999.000,999.0,99.0 +1988,8,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,98100,37,719,404,18,15,16,1800,800,1800,390,90,3.1,9,5,11.3,7620,9,999999999,370,0.0820,0,88,999.000,999.0,99.0 +1988,8,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,98200,0,0,434,0,0,0,0,0,0,0,150,2.6,10,10,11.3,1280,9,999999999,400,0.2050,0,88,999.000,999.0,99.0 +1988,8,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,98200,0,0,433,0,0,0,0,0,0,0,90,2.6,10,10,16.1,7620,9,999999999,370,0.2050,0,88,999.000,999.0,99.0 +1988,8,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,98200,0,0,434,0,0,0,0,0,0,0,130,3.1,10,10,16.1,7620,9,999999999,379,0.2050,0,88,999.000,999.0,99.0 +1988,8,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,98200,0,0,401,0,0,0,0,0,0,0,60,2.1,10,6,16.1,7620,9,999999999,370,0.2050,0,88,999.000,999.0,99.0 +1988,8,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98200,0,0,404,0,0,0,0,0,0,0,160,3.1,8,7,16.1,1370,9,999999999,379,0.2050,0,88,999.000,999.0,99.0 +1988,8,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,98100,0,0,387,0,0,0,0,0,0,0,120,2.1,7,3,16.1,77777,9,999999999,400,0.2050,0,88,999.000,999.0,99.0 +1988,8,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,98100,0,0,384,0,0,0,0,0,0,0,140,1.5,6,3,16.1,77777,9,999999999,390,0.2050,0,88,999.000,999.0,99.0 +1988,8,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,98100,0,0,368,0,0,0,0,0,0,0,0,0.0,3,0,16.1,77777,9,999999999,390,0.2050,0,88,999.000,999.0,99.0 +1988,8,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,98100,0,0,368,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,390,0.2050,0,88,999.000,999.0,99.0 +1988,8,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,98200,1,122,387,2,0,2,0,0,0,0,100,2.1,8,4,6.4,77777,9,999999999,390,0.0910,0,88,999.000,999.0,99.0 +1988,8,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98200,151,1328,382,57,128,43,6000,6700,5300,810,0,0.0,7,2,6.4,77777,9,999999999,379,0.0910,0,88,999.000,999.0,99.0 +1988,8,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,98200,423,1328,388,215,320,113,23000,29500,13500,2240,280,2.6,7,2,9.7,77777,9,999999999,379,0.0910,0,88,999.000,999.0,99.0 +1988,8,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,22.2,77,98200,684,1328,396,446,609,131,46400,60000,15500,2790,310,2.6,8,1,11.3,77777,9,999999999,400,0.0910,0,88,999.000,999.0,99.0 +1988,8,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,98200,912,1328,409,558,530,193,60800,55100,22900,5180,360,2.6,8,1,19.3,77777,9,999999999,379,0.0910,0,88,999.000,999.0,99.0 +1988,8,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,98200,1092,1328,415,784,743,171,81600,74500,20200,5950,30,2.6,8,1,19.3,77777,9,999999999,370,0.0910,0,88,999.000,999.0,99.0 +1988,8,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,98200,1212,1328,428,886,694,250,93900,70600,29300,14220,290,4.1,8,3,19.3,77777,9,999999999,370,0.0910,0,88,999.000,999.0,99.0 +1988,8,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.0,48,98100,1264,1328,432,941,789,187,99100,79500,23200,13130,300,2.6,8,3,19.3,77777,9,999999999,340,0.0910,0,88,999.000,999.0,99.0 +1988,8,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,20.6,49,98000,1245,1328,440,824,545,311,89600,57100,36000,21110,200,7.2,5,4,16.1,77777,9,999999999,359,0.0910,0,88,999.000,999.0,99.0 +1988,8,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.6,52,98000,1154,1328,441,631,384,295,68100,40200,33100,13740,240,5.2,6,6,16.1,1070,9,999999999,359,0.0910,0,88,999.000,999.0,99.0 +1988,8,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,20.6,49,97900,999,1328,443,552,381,264,59000,39700,29100,8350,230,5.2,5,5,19.3,77777,9,999999999,359,0.0910,0,88,999.000,999.0,99.0 +1988,8,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,19.4,47,97900,791,1328,438,549,607,186,58700,62200,21600,4330,240,6.2,5,5,19.3,77777,9,999999999,340,0.0910,0,88,999.000,999.0,99.0 +1988,8,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,18.9,45,97900,542,1328,438,244,192,165,26600,19000,18800,3880,270,4.1,5,5,19.3,77777,9,999999999,320,0.0910,0,88,999.000,999.0,99.0 +1988,8,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,97900,272,1328,433,116,254,63,12100,19300,8100,1140,270,3.6,6,5,19.3,7620,9,999999999,350,0.0910,0,88,999.000,999.0,99.0 +1988,8,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,98000,35,697,428,18,11,17,1900,600,1900,410,320,2.1,5,5,19.3,77777,9,999999999,370,0.0910,0,88,999.000,999.0,99.0 +1988,8,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,98000,0,0,423,0,0,0,0,0,0,0,80,3.1,5,5,19.3,77777,9,999999999,379,0.2050,0,88,999.000,999.0,99.0 +1988,8,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.7,69,98100,0,0,417,0,0,0,0,0,0,0,290,3.1,5,5,19.3,77777,9,999999999,379,0.2050,0,88,999.000,999.0,99.0 +1988,8,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.7,72,98100,0,0,417,0,0,0,0,0,0,0,280,2.6,6,6,19.3,3050,9,999999999,379,0.2050,0,88,999.000,999.0,99.0 +1988,8,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.2,79,98100,0,0,408,0,0,0,0,0,0,0,260,2.6,6,5,19.3,3050,9,999999999,390,0.2050,0,88,999.000,999.0,99.0 +1988,8,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,98100,0,0,399,0,0,0,0,0,0,0,0,0.0,4,4,19.3,77777,9,999999999,400,0.2040,0,88,999.000,999.0,99.0 +1988,8,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,98100,0,0,392,0,0,0,0,0,0,0,290,1.5,3,2,19.3,77777,9,999999999,400,0.2040,0,88,999.000,999.0,99.0 +1988,8,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,98000,0,0,389,0,0,0,0,0,0,0,280,2.1,3,2,19.3,77777,9,999999999,400,0.2040,0,88,999.000,999.0,99.0 +1988,8,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.2,90,98000,0,0,386,0,0,0,0,0,0,0,280,3.1,2,2,19.3,77777,9,999999999,390,0.2040,0,88,999.000,999.0,99.0 +1988,8,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,98000,0,0,378,0,0,0,0,0,0,0,280,3.1,1,1,19.3,77777,9,999999999,400,0.2040,0,88,999.000,999.0,99.0 +1988,8,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,98100,1,100,384,1,0,0,0,0,0,0,270,2.1,4,3,19.3,77777,9,999999999,390,0.0950,0,88,999.000,999.0,99.0 +1988,8,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,98100,148,1329,387,52,160,35,5500,8800,4500,630,280,2.6,3,3,24.1,77777,9,999999999,400,0.0950,0,88,999.000,999.0,99.0 +1988,8,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,98200,421,1329,399,215,369,98,22700,33200,12100,1830,280,3.6,3,3,24.1,77777,9,999999999,400,0.0950,0,88,999.000,999.0,99.0 +1988,8,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.2,72,98200,682,1329,411,361,469,120,37900,46400,14000,2580,290,3.1,3,3,24.1,77777,9,999999999,400,0.0950,0,88,999.000,999.0,99.0 +1988,8,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.1,61,98200,910,1329,418,643,686,172,67800,69400,20100,4650,310,2.6,3,3,24.1,77777,9,999999999,370,0.0950,0,88,999.000,999.0,99.0 +1988,8,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,98200,1091,1329,431,722,559,262,78300,58400,30300,10090,270,1.5,5,5,24.1,77777,9,999999999,359,0.0950,0,88,999.000,999.0,99.0 +1988,8,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,98100,1211,1329,440,557,239,338,61900,26000,38100,17490,240,3.1,7,7,24.1,910,9,999999999,370,0.0950,0,88,999.000,999.0,99.0 +1988,8,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.6,50,98100,1263,1329,449,719,394,343,77700,41200,38400,25900,270,4.1,7,7,24.1,910,9,999999999,359,0.0950,0,88,999.000,999.0,99.0 +1988,8,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.7,55,98000,1243,1329,455,598,239,373,66200,26000,41800,22200,290,5.2,8,8,24.1,1220,9,999999999,379,0.0950,0,88,999.000,999.0,99.0 +1988,8,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,21.1,50,98000,1152,1329,461,519,437,138,57000,45400,17500,6480,180,8.8,8,8,24.1,1220,9,999999999,370,0.0950,0,88,999.000,999.0,99.0 +1988,8,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,22.8,59,97900,997,1329,456,318,173,187,35900,18800,21700,5510,210,5.2,8,8,24.1,3660,9,999999999,409,0.0950,0,88,999.000,999.0,99.0 +1988,8,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,22.2,61,98000,788,1329,472,182,19,170,21400,1500,20500,7720,290,2.6,10,10,19.3,1280,9,999999999,400,0.0950,0,88,999.000,999.0,99.0 +1988,8,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.9,69,98000,539,1329,433,98,0,98,11500,0,11500,4190,0,0.0,10,10,16.1,850,9,999999999,329,0.0950,0,88,999.000,999.0,99.0 +1988,8,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,98000,268,1329,441,33,2,33,4000,0,4000,1330,230,7.2,10,10,16.1,670,9,999999999,400,0.0950,0,88,999.000,999.0,99.0 +1988,8,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98100,32,675,423,11,0,11,1300,0,1300,400,290,3.6,10,10,12.9,3050,9,999999999,359,0.0950,0,88,999.000,999.0,99.0 +1988,8,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98000,0,0,424,0,0,0,0,0,0,0,210,7.7,10,10,12.9,3660,9,999999999,370,0.2040,0,88,999.000,999.0,99.0 +1988,8,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.1,94,98100,0,0,420,0,0,0,0,0,0,0,40,2.6,10,10,12.9,3660,9,999999999,370,0.2040,0,88,999.000,999.0,99.0 +1988,8,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98200,0,0,423,0,0,0,0,0,0,0,0,0.0,10,10,12.9,3660,9,999999999,359,0.2040,0,88,999.000,999.0,99.0 +1988,8,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98100,0,0,386,0,0,0,0,0,0,0,130,3.6,4,4,12.9,77777,9,999999999,370,0.2040,0,88,999.000,999.0,99.0 +1988,8,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.1,97,98000,0,0,374,0,0,0,0,0,0,0,350,2.1,2,2,16.1,77777,9,999999999,370,0.2040,0,88,999.000,999.0,99.0 +1988,8,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.1,97,98000,0,0,377,0,0,0,0,0,0,0,280,1.5,3,3,16.1,77777,9,999999999,370,0.2040,0,88,999.000,999.0,99.0 +1988,8,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.6,97,97900,0,0,374,0,0,0,0,0,0,0,270,2.6,3,3,16.1,77777,9,999999999,359,0.2040,0,88,999.000,999.0,99.0 +1988,8,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.6,100,98000,0,0,367,0,0,0,0,0,0,0,0,0.0,6,2,16.1,77777,9,999999999,359,0.2040,0,88,999.000,999.0,99.0 +1988,8,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,98000,0,0,370,0,0,0,0,0,0,0,290,1.5,7,3,16.1,77777,9,999999999,350,0.2040,0,88,999.000,999.0,99.0 +1988,8,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,98000,0,78,366,0,0,0,0,0,0,0,310,2.6,5,2,16.1,77777,9,999999999,340,0.0930,0,88,999.000,999.0,99.0 +1988,8,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,98100,145,1329,395,41,15,39,4400,1000,4300,930,300,2.1,9,8,16.1,7620,9,999999999,340,0.0930,0,88,999.000,999.0,99.0 +1988,8,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.0,82,98100,419,1329,390,192,273,106,20600,25100,12700,2070,320,2.6,5,5,16.1,77777,9,999999999,350,0.0930,0,88,999.000,999.0,99.0 +1988,8,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,98100,679,1329,408,331,224,216,36100,23000,24300,5420,310,3.1,7,7,16.1,7620,9,999999999,359,0.0930,0,88,999.000,999.0,99.0 +1988,8,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,98100,908,1329,414,526,418,240,56000,43300,26400,6520,320,3.6,7,6,16.1,7620,9,999999999,379,0.0930,0,88,999.000,999.0,99.0 +1988,8,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,98100,1089,1329,426,725,582,247,76000,58800,27700,9230,310,3.1,5,5,16.1,77777,9,999999999,379,0.0930,0,88,999.000,999.0,99.0 +1988,8,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.7,57,98100,1210,1329,432,890,713,239,94700,72700,28400,13420,360,1.5,9,4,19.3,77777,9,999999999,379,0.0930,0,88,999.000,999.0,99.0 +1988,8,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.7,55,98000,1261,1329,442,663,337,343,71700,35300,38200,25590,260,2.6,9,6,19.3,7620,9,999999999,379,0.0930,0,88,999.000,999.0,99.0 +1988,8,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,98000,1241,1329,450,734,331,424,80500,36000,46800,25260,290,2.6,10,8,16.1,7620,9,999999999,370,0.0930,0,88,999.000,999.0,99.0 +1988,8,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.7,57,97900,1150,1329,451,591,215,405,65100,22900,45200,17160,200,2.6,10,8,16.1,7620,9,999999999,379,0.0930,0,88,999.000,999.0,99.0 +1988,8,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,22.2,61,97900,994,1329,459,434,63,387,47800,6500,42900,14050,350,4.6,10,9,11.3,980,9,999999999,390,0.0930,0,88,999.000,999.0,99.0 +1988,8,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,97900,785,1329,431,121,3,120,14700,200,14600,5780,90,3.6,10,10,11.3,980,9,999999999,379,0.0930,0,88,999.000,999.0,99.0 +1988,8,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,22.2,77,97800,536,1329,448,181,9,178,20300,700,20000,6420,0,0.0,10,10,11.3,7620,9,999999999,400,0.0930,0,88,999.000,999.0,99.0 +1988,8,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,23.3,77,97900,264,1329,456,47,4,46,5400,100,5400,1750,0,0.0,10,10,11.3,7620,9,999999999,419,0.0930,0,88,999.000,999.0,99.0 +1988,8,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,23.9,88,97900,30,653,447,13,0,13,1500,0,1500,460,280,1.5,10,10,9.7,7620,9,999999999,440,0.0930,0,88,999.000,999.0,99.0 +1988,8,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.8,85,97900,0,0,442,0,0,0,0,0,0,0,320,1.5,10,10,11.3,7620,9,999999999,409,0.2040,0,88,999.000,999.0,99.0 +1988,8,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,23.3,88,98000,0,0,403,0,0,0,0,0,0,0,0,0.0,10,4,11.3,77777,9,999999999,419,0.2040,0,88,999.000,999.0,99.0 +1988,8,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,23.3,88,98000,0,0,410,0,0,0,0,0,0,0,130,1.5,10,6,11.3,7620,9,999999999,419,0.2040,0,88,999.000,999.0,99.0 +1988,8,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,23.3,88,97900,0,0,443,0,0,0,0,0,0,0,0,0.0,10,10,16.1,7620,9,999999999,419,0.2040,0,88,999.000,999.0,99.0 +1988,8,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.8,88,97900,0,0,406,0,0,0,0,0,0,0,70,1.5,8,6,11.3,7620,9,999999999,409,0.2030,0,88,999.000,999.0,99.0 +1988,8,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.8,91,97900,0,0,389,0,0,0,0,0,0,0,0,0.0,5,2,11.3,77777,9,999999999,409,0.2030,0,88,999.000,999.0,99.0 +1988,8,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,97900,0,0,395,0,0,0,0,0,0,0,0,0.0,8,3,11.3,77777,9,999999999,379,0.2030,0,88,999.000,999.0,99.0 +1988,8,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,97900,0,0,395,0,0,0,0,0,0,0,0,0.0,8,4,11.3,77777,9,999999999,379,0.2030,0,88,999.000,999.0,99.0 +1988,8,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,97900,0,0,387,0,0,0,0,0,0,0,60,2.6,5,2,11.3,77777,9,999999999,370,0.2030,0,88,999.000,999.0,99.0 +1988,8,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,98000,0,55,382,0,0,0,0,0,0,0,90,2.1,4,1,11.3,77777,9,999999999,370,0.2030,0,88,999.000,999.0,99.0 +1988,8,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,98000,143,1330,376,36,7,35,4000,0,4000,1160,90,2.1,4,0,11.3,77777,9,999999999,379,0.4680,0,88,999.000,999.0,99.0 +1988,8,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.8,82,98100,416,1330,402,167,130,126,18100,12000,14400,2830,70,2.6,3,3,9.7,77777,9,999999999,409,0.4680,0,88,999.000,999.0,99.0 +1988,8,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.8,74,98100,677,1330,402,354,269,217,37800,27900,23500,4990,80,3.1,4,1,11.3,77777,9,999999999,409,0.4680,0,88,999.000,999.0,99.0 +1988,8,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,98100,906,1330,418,562,361,316,60500,38800,34000,8940,140,2.6,5,2,16.1,77777,9,999999999,379,0.4680,0,88,999.000,999.0,99.0 +1988,8,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,98100,1087,1330,428,670,375,362,73000,40700,39600,13460,140,4.6,5,4,12.9,77777,9,999999999,359,0.4680,0,88,999.000,999.0,99.0 +1988,8,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.7,57,98100,1208,1330,435,668,274,419,73100,29800,46000,21810,140,3.6,6,5,24.1,7620,9,999999999,379,0.4680,0,88,999.000,999.0,99.0 +1988,8,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.6,50,98000,1260,1330,440,748,302,461,81700,32800,50600,30210,130,3.6,6,5,24.1,7620,9,999999999,359,0.4680,0,88,999.000,999.0,99.0 +1988,8,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.1,52,98000,1239,1330,441,853,497,388,90700,51900,42200,25670,120,2.6,7,5,24.1,7620,9,999999999,370,0.4680,0,88,999.000,999.0,99.0 +1988,8,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,19.4,45,97900,1148,1330,451,647,181,490,70300,19200,53700,20660,160,1.5,8,7,24.1,1220,9,999999999,329,0.4680,0,88,999.000,999.0,99.0 +1988,8,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.0,48,97900,992,1330,439,524,186,385,57000,19700,42300,12500,140,3.6,7,5,19.3,7620,9,999999999,340,0.4680,0,88,999.000,999.0,99.0 +1988,8,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.7,57,97900,782,1330,435,421,219,292,45600,22800,32200,7810,160,8.2,7,5,19.3,7620,9,999999999,379,0.4680,0,88,999.000,999.0,99.0 +1988,8,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,97900,532,1330,438,214,103,172,23400,10000,19400,4760,170,4.6,8,7,19.3,7620,9,999999999,379,0.4680,0,88,999.000,999.0,99.0 +1988,8,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,98000,260,1330,434,58,5,57,6600,100,6500,2060,290,3.1,10,8,19.3,7620,9,999999999,370,0.4680,0,88,999.000,999.0,99.0 +1988,8,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.7,69,97900,28,632,417,13,0,13,1500,0,1500,450,310,2.1,10,5,19.3,77777,9,999999999,379,0.4680,0,88,999.000,999.0,99.0 +1988,8,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,98000,0,0,399,0,0,0,0,0,0,0,240,1.5,3,1,19.3,77777,9,999999999,359,0.2030,0,88,999.000,999.0,99.0 +1988,8,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,98000,0,0,394,0,0,0,0,0,0,0,150,1.5,2,0,19.3,77777,9,999999999,359,0.2030,0,88,999.000,999.0,99.0 +1988,8,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,98100,0,0,397,0,0,0,0,0,0,0,140,2.1,3,1,19.3,77777,9,999999999,370,0.2030,0,88,999.000,999.0,99.0 +1988,8,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.2,79,98100,0,0,392,0,0,0,0,0,0,0,170,2.1,1,1,19.3,77777,9,999999999,390,0.2030,0,88,999.000,999.0,99.0 +1988,8,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,98100,0,0,382,0,0,0,0,0,0,0,270,1.0,1,0,16.1,77777,9,999999999,379,0.2030,0,88,999.000,999.0,99.0 +1988,8,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,98000,0,0,379,0,0,0,0,0,0,0,330,1.0,0,0,16.1,77777,9,999999999,400,0.2030,0,88,999.000,999.0,99.0 +1988,8,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,98100,0,0,386,0,0,0,0,0,0,0,0,0.0,3,1,16.1,77777,9,999999999,379,0.2030,0,88,999.000,999.0,99.0 +1988,8,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.2,90,98000,0,0,374,0,0,0,0,0,0,0,0,0.0,2,0,12.9,77777,9,999999999,390,0.2030,0,88,999.000,999.0,99.0 +1988,8,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,98100,0,0,376,0,0,0,0,0,0,0,0,0.0,1,0,11.3,77777,9,999999999,400,0.2030,0,88,999.000,999.0,99.0 +1988,8,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,98100,0,55,383,0,0,0,0,0,0,0,60,1.0,4,1,11.3,77777,9,999999999,379,0.2030,0,88,999.000,999.0,99.0 +1988,8,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,98200,140,1330,387,45,94,35,4700,4700,4300,640,0,0.0,5,1,9.7,77777,9,999999999,400,0.1640,0,88,999.000,999.0,99.0 +1988,8,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.2,74,98300,414,1330,404,202,310,105,21000,27700,12400,1980,310,1.5,8,2,9.7,77777,9,999999999,390,0.1640,0,88,999.000,999.0,99.0 +1988,8,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.2,67,98300,675,1330,427,359,276,218,38200,28700,23600,5010,250,2.6,7,6,9.7,3660,9,999999999,390,0.1640,0,88,999.000,999.0,99.0 +1988,8,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,22.2,61,98300,905,1330,433,518,421,231,55300,43600,25600,6220,210,2.1,5,5,12.9,77777,9,999999999,400,0.1640,0,88,999.000,999.0,99.0 +1988,8,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.7,54,98300,1086,1330,441,681,498,274,73600,52000,31000,10430,0,0.0,5,5,12.9,77777,9,999999999,390,0.1640,0,88,999.000,999.0,99.0 +1988,8,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.7,57,98300,1206,1330,451,538,208,349,59700,22700,39100,17730,40,1.5,8,8,16.1,910,9,999999999,379,0.1640,0,88,999.000,999.0,99.0 +1988,8,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,98200,1258,1330,443,883,558,353,95000,58400,39600,25730,130,2.1,7,7,16.1,1070,9,999999999,370,0.1640,0,88,999.000,999.0,99.0 +1988,8,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,98100,1237,1330,457,538,88,456,59400,9100,50900,23740,290,3.1,9,9,12.9,1070,9,999999999,370,0.1640,0,88,999.000,999.0,99.0 +1988,8,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.7,57,98100,1146,1330,474,313,4,309,37100,300,36800,14250,0,0.0,10,10,12.9,1070,9,999999999,379,0.1640,0,88,999.000,999.0,99.0 +1988,8,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,22.8,59,98000,989,1330,456,383,66,333,42100,6800,37100,12380,0,0.0,10,8,12.9,2440,9,999999999,409,0.1640,0,88,999.000,999.0,99.0 +1988,8,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,21.1,50,98000,779,1330,448,523,496,231,54600,50600,24900,5440,30,2.1,7,6,12.9,2740,9,999999999,370,0.1640,0,88,999.000,999.0,99.0 +1988,8,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.1,54,98000,528,1330,438,204,145,146,22300,14300,16700,3420,170,2.1,6,5,12.9,3050,9,999999999,370,0.1640,0,88,999.000,999.0,99.0 +1988,8,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,98100,256,1330,432,98,125,73,10500,9600,8700,1570,210,3.1,7,5,12.9,7620,9,999999999,379,0.1640,0,88,999.000,999.0,99.0 +1988,8,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,98200,26,610,426,13,3,12,1400,0,1400,420,190,1.5,6,5,12.9,7620,9,999999999,379,0.1640,0,88,999.000,999.0,99.0 +1988,8,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.2,72,98300,0,0,433,0,0,0,0,0,0,0,120,7.2,8,8,12.9,1070,9,999999999,400,0.2030,0,88,999.000,999.0,99.0 +1988,8,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,98300,0,0,402,0,0,0,0,0,0,0,150,5.7,7,6,12.9,7620,9,999999999,400,0.2030,0,88,999.000,999.0,99.0 +1988,8,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98300,0,0,389,0,0,0,0,0,0,0,0,0.0,6,3,12.9,77777,9,999999999,379,0.2030,0,88,999.000,999.0,99.0 +1988,8,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,98300,0,0,397,0,0,0,0,0,0,0,70,4.1,6,4,11.3,7620,9,999999999,359,0.2030,0,88,999.000,999.0,99.0 +1988,8,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,98300,0,0,373,0,0,0,0,0,0,0,100,2.1,0,0,11.3,77777,9,999999999,370,0.2020,0,88,999.000,999.0,99.0 +1988,8,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98200,0,0,370,0,0,0,0,0,0,0,80,4.1,0,0,9.7,77777,9,999999999,379,0.2020,0,88,999.000,999.0,99.0 +1988,8,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,98200,0,0,368,0,0,0,0,0,0,0,80,3.6,0,0,9.7,77777,9,999999999,390,0.2020,0,88,999.000,999.0,99.0 +1988,8,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98200,0,0,370,0,0,0,0,0,0,0,100,3.1,0,0,9.7,77777,9,999999999,379,0.2020,0,88,999.000,999.0,99.0 +1988,8,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,98200,0,0,368,0,0,0,0,0,0,0,100,4.1,0,0,9.7,77777,9,999999999,390,0.2020,0,88,999.000,999.0,99.0 +1988,8,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,98300,0,33,384,0,0,0,0,0,0,0,90,3.6,8,3,4.8,77777,9,999999999,390,0.2020,0,88,999.000,999.0,99.0 +1988,8,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,98400,137,1330,384,47,48,42,5100,2700,4800,880,100,3.1,10,3,4.8,77777,9,999999999,390,0.1110,0,88,999.000,999.0,99.0 +1988,8,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,98500,411,1330,428,99,6,97,11200,300,11100,3690,80,4.1,10,10,4.8,180,9,999999999,400,0.1110,0,88,999.000,999.0,99.0 +1988,8,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.8,91,98500,673,1330,435,195,3,194,22300,200,22200,7830,80,3.1,10,10,4.8,210,9,999999999,409,0.1110,0,88,999.000,999.0,99.0 +1988,8,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.8,82,98500,903,1330,445,291,5,287,33500,500,33200,12190,50,2.1,10,10,11.3,400,9,999999999,409,0.1110,0,88,999.000,999.0,99.0 +1988,8,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.8,74,98500,1084,1330,443,380,74,319,41900,7600,35700,13330,60,4.1,9,9,11.3,610,9,999999999,409,0.1110,0,88,999.000,999.0,99.0 +1988,8,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.2,67,98500,1205,1330,439,505,162,358,56200,17400,40500,17470,80,3.6,8,8,12.9,670,9,999999999,400,0.1110,0,88,999.000,999.0,99.0 +1988,8,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,98400,1256,1330,433,712,453,283,78400,47500,33400,20230,70,4.6,7,6,16.1,760,9,999999999,379,0.1110,0,88,999.000,999.0,99.0 +1988,8,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,98300,1235,1330,432,895,653,286,94200,66000,32700,17790,70,2.6,7,5,19.3,7620,9,999999999,379,0.1110,0,88,999.000,999.0,99.0 +1988,8,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,98200,1143,1330,434,692,451,303,74500,47100,33900,13580,60,2.6,7,5,19.3,7620,9,999999999,370,0.1110,0,88,999.000,999.0,99.0 +1988,8,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.6,52,98200,986,1330,437,570,362,301,62200,39100,33100,9230,60,5.7,9,5,19.3,7620,9,999999999,359,0.1110,0,88,999.000,999.0,99.0 +1988,8,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.8,91,98300,775,1330,414,235,145,150,26200,15400,17200,3400,130,5.7,10,8,16.1,7620,9,999999999,409,0.1110,0,88,999.000,999.0,99.0 +1988,8,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,98200,525,1330,396,286,362,142,29700,34600,16000,2800,110,5.2,9,3,40.2,77777,9,999999999,400,0.1110,0,88,999.000,999.0,99.0 +1988,8,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.8,91,98300,252,1330,396,88,150,59,9300,10900,7300,1090,120,5.7,9,4,40.2,77777,9,999999999,409,0.1110,0,88,999.000,999.0,99.0 +1988,8,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.8,91,98300,25,588,393,16,12,14,1600,600,1600,340,90,4.1,9,3,19.3,77777,9,999999999,409,0.1110,0,88,999.000,999.0,99.0 +1988,8,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.8,91,98300,0,0,393,0,0,0,0,0,0,0,90,4.6,8,3,19.3,77777,9,999999999,409,0.2020,0,88,999.000,999.0,99.0 +1988,8,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,23.3,94,98400,0,0,408,0,0,0,0,0,0,0,70,4.1,10,7,19.3,210,9,999999999,419,0.2020,0,88,999.000,999.0,99.0 +1988,8,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,98500,0,0,432,0,0,0,0,0,0,0,80,5.7,10,10,16.1,240,9,999999999,409,0.2020,0,88,999.000,999.0,99.0 +1988,8,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,98400,0,0,411,0,0,0,0,0,0,0,90,5.7,9,8,11.3,240,9,999999999,409,0.2020,0,88,999.000,999.0,99.0 +1988,8,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.8,97,98400,0,0,402,0,0,0,0,0,0,0,100,4.1,8,7,11.3,180,9,999999999,409,0.2020,0,88,999.000,999.0,99.0 +1988,8,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.8,97,98400,0,0,408,0,0,0,0,0,0,0,100,4.1,9,8,9.7,180,9,999999999,409,0.2020,0,88,999.000,999.0,99.0 +1988,8,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,98400,0,0,428,0,0,0,0,0,0,0,100,4.6,10,10,9.7,180,9,999999999,400,0.2020,0,88,999.000,999.0,99.0 +1988,8,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,98400,0,0,428,0,0,0,0,0,0,0,110,4.6,10,10,8.0,180,9,999999999,400,0.2020,0,88,999.000,999.0,99.0 +1988,8,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,98400,0,0,401,0,0,0,0,0,0,0,110,3.6,7,7,9.7,210,9,999999999,400,0.2020,0,88,999.000,999.0,99.0 +1988,8,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,98400,0,11,384,0,0,0,0,0,0,0,90,3.1,4,3,9.7,77777,9,999999999,390,0.2020,0,88,999.000,999.0,99.0 +1988,8,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98500,134,1331,415,30,4,29,3300,0,3300,990,80,4.1,9,9,9.7,430,9,999999999,379,0.2140,0,88,999.000,999.0,99.0 +1988,8,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98500,409,1331,419,83,0,82,9400,0,9400,3250,70,3.1,10,9,9.7,370,9,999999999,379,0.2140,0,88,999.000,999.0,99.0 +1988,8,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,98500,671,1331,402,315,220,204,34500,22600,23100,5100,100,4.6,8,6,11.3,700,9,999999999,390,0.2140,0,88,999.000,999.0,99.0 +1988,8,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,98600,901,1331,416,317,80,263,35000,8100,29500,9330,100,4.1,8,7,12.9,460,9,999999999,390,0.2140,0,88,999.000,999.0,99.0 +1988,8,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,98600,1083,1331,416,720,518,298,77000,54000,33000,11280,110,4.1,7,5,16.1,7620,9,999999999,370,0.2140,0,88,999.000,999.0,99.0 +1988,8,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,98500,1203,1331,433,440,49,396,48700,5000,44100,19370,130,5.2,9,8,16.1,3660,9,999999999,359,0.2140,0,88,999.000,999.0,99.0 +1988,8,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.6,61,98500,1255,1331,425,832,492,367,89200,51400,40600,26130,110,3.6,8,6,24.1,3050,9,999999999,359,0.2140,0,88,999.000,999.0,99.0 +1988,8,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,98400,1233,1331,427,694,362,358,74400,37800,39300,22800,130,6.2,5,4,24.1,77777,9,999999999,350,0.2140,0,88,999.000,999.0,99.0 +1988,8,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,98400,1141,1331,431,785,576,289,84800,60200,33000,12810,140,6.2,4,4,40.2,77777,9,999999999,370,0.2140,0,88,999.000,999.0,99.0 +1988,8,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.0,50,98300,984,1331,433,675,545,269,71600,56600,29700,8260,60,5.2,4,4,40.2,77777,9,999999999,350,0.2140,0,88,999.000,999.0,99.0 +1988,8,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,98300,772,1331,425,493,495,205,52100,50500,22700,4740,110,4.1,3,3,40.2,77777,9,999999999,340,0.2140,0,88,999.000,999.0,99.0 +1988,8,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,98200,521,1331,415,295,459,113,31200,43900,14000,2170,90,4.1,3,1,40.2,77777,9,999999999,320,0.2140,0,88,999.000,999.0,99.0 +1988,8,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,98300,248,1331,410,92,179,58,9700,12900,7300,1070,90,4.6,3,1,40.2,77777,9,999999999,350,0.2140,0,88,999.000,999.0,99.0 +1988,8,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,98300,23,566,404,10,3,10,1200,0,1200,360,90,3.1,2,1,24.1,77777,9,999999999,350,0.2140,0,88,999.000,999.0,99.0 +1988,8,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.6,63,98300,0,0,394,0,0,0,0,0,0,0,90,3.6,0,0,19.3,77777,9,999999999,359,0.2020,0,88,999.000,999.0,99.0 +1988,8,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,20.6,67,98400,0,0,389,0,0,0,0,0,0,0,100,3.6,0,0,19.3,77777,9,999999999,359,0.2020,0,88,999.000,999.0,99.0 +1988,8,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,98400,0,0,387,0,0,0,0,0,0,0,100,4.1,0,0,19.3,77777,9,999999999,370,0.2020,0,88,999.000,999.0,99.0 +1988,8,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,98400,0,0,383,0,0,0,0,0,0,0,150,4.6,0,0,19.3,77777,9,999999999,359,0.2020,0,88,999.000,999.0,99.0 +1988,8,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,98400,0,0,377,0,0,0,0,0,0,0,160,3.6,0,0,19.3,77777,9,999999999,359,0.2010,0,88,999.000,999.0,99.0 +1988,8,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,98400,0,0,373,0,0,0,0,0,0,0,110,2.6,0,0,19.3,77777,9,999999999,370,0.2010,0,88,999.000,999.0,99.0 +1988,8,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,98400,0,0,370,0,0,0,0,0,0,0,100,2.6,0,0,19.3,77777,9,999999999,370,0.2010,0,88,999.000,999.0,99.0 +1988,8,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98400,0,0,366,0,0,0,0,0,0,0,80,2.1,0,0,19.3,77777,9,999999999,359,0.2010,0,88,999.000,999.0,99.0 +1988,8,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98400,0,0,366,0,0,0,0,0,0,0,100,2.6,0,0,19.3,77777,9,999999999,359,0.2010,0,88,999.000,999.0,99.0 +1988,8,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,98400,0,11,363,0,0,0,0,0,0,0,80,3.1,0,0,24.1,77777,9,999999999,359,0.2010,0,88,999.000,999.0,99.0 +1988,8,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98500,131,1331,367,52,236,27,5100,13000,3800,480,50,2.6,1,0,24.1,77777,9,999999999,370,0.0820,0,88,999.000,999.0,99.0 +1988,8,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,98500,406,1331,376,235,590,54,24200,52900,8100,1080,80,3.1,1,0,19.3,77777,9,999999999,390,0.0820,0,88,999.000,999.0,99.0 +1988,8,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,98500,669,1331,401,407,491,160,43300,49300,18500,3360,70,2.6,3,3,24.1,77777,9,999999999,390,0.0820,0,88,999.000,999.0,99.0 +1988,8,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.1,72,98600,899,1331,418,472,207,332,51400,21800,36600,9740,40,3.1,7,7,24.1,760,9,999999999,379,0.0820,0,88,999.000,999.0,99.0 +1988,8,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,98600,1081,1331,419,713,576,244,74700,58200,27400,8890,70,4.1,6,6,24.1,980,9,999999999,370,0.0820,0,88,999.000,999.0,99.0 +1988,8,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,20.0,61,98500,1201,1331,417,700,455,288,76300,47700,33200,15760,100,3.6,5,5,24.1,77777,9,999999999,350,0.0820,0,88,999.000,999.0,99.0 +1988,8,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,98500,1253,1331,430,887,583,336,95800,61000,38200,23540,60,2.6,6,6,24.1,1160,9,999999999,340,0.0820,0,88,999.000,999.0,99.0 +1988,8,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,98400,1231,1331,429,891,687,253,94500,69900,29700,15480,130,3.6,5,5,32.2,77777,9,999999999,329,0.0820,0,88,999.000,999.0,99.0 +1988,8,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.9,50,98300,1139,1331,432,620,262,395,67500,28400,43100,16570,60,4.1,6,6,32.2,1220,9,999999999,329,0.0820,0,88,999.000,999.0,99.0 +1988,8,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.9,51,98200,981,1331,425,672,623,210,70200,62900,23800,6240,110,4.6,5,5,40.2,77777,9,999999999,320,0.0820,0,88,999.000,999.0,99.0 +1988,8,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.9,48,98200,769,1331,428,584,754,145,60900,75300,17300,3310,110,3.6,4,4,40.2,77777,9,999999999,320,0.0820,0,88,999.000,999.0,99.0 +1988,8,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,17.8,45,98100,517,1331,427,273,405,114,28900,38600,13900,2190,90,3.1,4,4,40.2,77777,9,999999999,309,0.0820,0,88,999.000,999.0,99.0 +1988,8,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,98100,243,1331,418,97,251,50,10100,18100,6900,890,100,4.1,3,3,40.2,77777,9,999999999,320,0.0820,0,88,999.000,999.0,99.0 +1988,8,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.3,51,98200,21,544,397,17,41,12,0,0,0,0,90,3.1,3,0,40.2,77777,9,999999999,309,0.0820,0,88,999.000,999.0,99.0 +1988,8,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,18.9,57,98200,0,0,392,0,0,0,0,0,0,0,90,2.6,0,0,19.3,77777,9,999999999,329,0.2010,0,88,999.000,999.0,99.0 +1988,8,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,98200,0,0,386,0,0,0,0,0,0,0,90,2.1,0,0,19.3,77777,9,999999999,270,0.2010,0,88,999.000,999.0,99.0 +1988,8,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,98200,0,0,385,0,0,0,0,0,0,0,0,0.0,0,0,19.3,77777,9,999999999,340,0.2010,0,88,999.000,999.0,99.0 +1988,8,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,98200,0,0,381,0,0,0,0,0,0,0,60,1.5,0,0,19.3,77777,9,999999999,329,0.2010,0,88,999.000,999.0,99.0 +1988,8,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,98200,0,0,376,0,0,0,0,0,0,0,360,2.1,0,0,19.3,77777,9,999999999,340,0.2000,0,88,999.000,999.0,99.0 +1988,8,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,98100,0,0,380,0,0,0,0,0,0,0,50,3.1,0,0,19.3,77777,9,999999999,309,0.2000,0,88,999.000,999.0,99.0 +1988,8,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,98100,0,0,378,0,0,0,0,0,0,0,40,3.1,0,0,19.3,77777,9,999999999,309,0.2000,0,88,999.000,999.0,99.0 +1988,8,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,98200,0,0,395,0,0,0,0,0,0,0,60,3.1,5,5,19.3,77777,9,999999999,340,0.2000,0,88,999.000,999.0,99.0 +1988,8,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,98200,0,0,375,0,0,0,0,0,0,0,50,3.6,1,1,19.3,77777,9,999999999,340,0.2000,0,88,999.000,999.0,99.0 +1988,8,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,98300,0,0,387,0,0,0,0,0,0,0,50,4.1,4,4,24.1,77777,9,999999999,340,0.2000,0,88,999.000,999.0,99.0 +1988,8,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,98300,128,1321,408,37,22,35,4100,1400,3900,830,60,4.1,8,8,40.2,3660,9,999999999,350,0.0880,0,88,999.000,999.0,99.0 +1988,8,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,98300,404,1332,419,152,67,132,16700,6100,14800,3390,60,3.6,9,9,32.2,3050,9,999999999,350,0.0880,0,88,999.000,999.0,99.0 +1988,8,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,98300,667,1332,406,397,489,152,42400,49100,17800,3180,60,4.1,6,5,32.2,3050,9,999999999,359,0.0880,0,88,999.000,999.0,99.0 +1988,8,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,98300,897,1332,408,623,666,173,65500,67300,20100,4570,60,7.2,3,3,40.2,77777,9,999999999,350,0.0880,0,88,999.000,999.0,99.0 +1988,8,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,20.0,59,98300,1079,1332,420,663,450,297,70800,46900,32700,11130,70,7.2,5,5,40.2,77777,9,999999999,350,0.0880,0,88,999.000,999.0,99.0 +1988,8,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,98200,1200,1332,448,517,96,430,57000,9900,48100,20600,70,7.2,9,9,40.2,1160,9,999999999,340,0.0880,0,88,999.000,999.0,99.0 +1988,8,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,98200,1251,1332,430,802,479,350,86200,50100,39100,24250,70,6.7,7,6,40.2,1830,9,999999999,350,0.0880,0,88,999.000,999.0,99.0 +1988,8,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.0,53,98100,1229,1332,439,488,75,418,53900,7700,46700,21480,50,7.7,8,7,40.2,2740,9,999999999,350,0.0880,0,88,999.000,999.0,99.0 +1988,8,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,98100,1136,1332,441,598,237,395,65100,25700,43100,16450,50,6.7,8,7,40.2,2740,9,999999999,340,0.0880,0,88,999.000,999.0,99.0 +1988,8,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,98000,978,1332,436,623,485,265,66300,50400,29200,8030,70,3.6,8,6,40.2,7620,9,999999999,379,0.0880,0,88,999.000,999.0,99.0 +1988,8,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,98000,765,1332,430,498,534,189,52800,54500,21500,4310,80,5.2,7,4,40.2,7620,9,999999999,359,0.0880,0,88,999.000,999.0,99.0 +1988,8,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.6,57,98000,513,1332,424,293,374,147,31000,36600,16900,3050,70,7.2,8,4,40.2,77777,9,999999999,359,0.0880,0,88,999.000,999.0,99.0 +1988,8,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,98000,239,1332,420,102,168,71,10600,11800,8500,1370,60,4.1,8,4,32.2,77777,9,999999999,350,0.0880,0,88,999.000,999.0,99.0 +1988,8,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,98100,19,522,426,8,2,8,0,0,0,0,70,6.7,9,8,16.1,2740,9,999999999,379,0.0880,0,88,999.000,999.0,99.0 +1988,8,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,98100,0,0,405,0,0,0,0,0,0,0,80,4.6,8,5,19.3,7620,9,999999999,379,0.2000,0,88,999.000,999.0,99.0 +1988,8,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,98200,0,0,391,0,0,0,0,0,0,0,80,4.6,4,2,19.3,77777,9,999999999,379,0.2000,0,88,999.000,999.0,99.0 +1988,8,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,98200,0,0,376,0,0,0,0,0,0,0,90,3.6,0,0,19.3,77777,9,999999999,400,0.2000,0,88,999.000,999.0,99.0 +1988,8,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.2,90,98200,0,0,374,0,0,0,0,0,0,0,90,4.6,0,0,19.3,77777,9,999999999,390,0.2000,0,88,999.000,999.0,99.0 +1988,8,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,98200,0,0,390,0,0,0,0,0,0,0,70,3.6,4,4,19.3,77777,9,999999999,400,0.2000,0,88,999.000,999.0,99.0 +1988,8,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98100,0,0,415,0,0,0,0,0,0,0,90,4.1,9,9,16.1,340,9,999999999,379,0.2000,0,88,999.000,999.0,99.0 +1988,8,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,98100,0,0,387,0,0,0,0,0,0,0,100,3.6,4,4,16.1,77777,9,999999999,390,0.2000,0,88,999.000,999.0,99.0 +1988,8,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,98100,0,0,390,0,0,0,0,0,0,0,50,3.1,5,5,16.1,77777,9,999999999,390,0.2000,0,88,999.000,999.0,99.0 +1988,8,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,98100,0,0,404,0,0,0,0,0,0,0,50,4.1,9,8,16.1,370,9,999999999,390,0.2000,0,88,999.000,999.0,99.0 +1988,8,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,98100,0,0,406,0,0,0,0,0,0,0,50,4.1,8,8,24.1,430,9,999999999,370,0.2000,0,88,999.000,999.0,99.0 +1988,8,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98200,125,1299,397,33,4,32,3600,0,3600,1070,60,4.6,7,7,24.1,430,9,999999999,370,0.3510,0,88,999.000,999.0,99.0 +1988,8,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,98200,401,1332,387,178,230,108,18900,20800,12600,2130,90,4.6,3,2,24.1,77777,9,999999999,370,0.3510,0,88,999.000,999.0,99.0 +1988,8,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,98200,665,1332,398,373,325,210,39800,33700,22900,4770,90,5.2,3,3,24.1,77777,9,999999999,379,0.3510,0,88,999.000,999.0,99.0 +1988,8,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.7,72,98300,895,1332,417,602,448,300,64800,48100,32400,8310,100,5.2,8,6,32.2,580,9,999999999,379,0.3510,0,88,999.000,999.0,99.0 +1988,8,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,98300,1077,1332,419,670,378,363,72800,41000,39600,13190,120,5.7,7,5,32.2,7620,9,999999999,370,0.3510,0,88,999.000,999.0,99.0 +1988,8,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,98200,1198,1332,412,871,537,386,92100,56000,41600,21040,120,5.7,4,3,32.2,77777,9,999999999,370,0.3510,0,88,999.000,999.0,99.0 +1988,8,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,98200,1249,1332,419,888,533,386,94500,55700,42200,26500,90,4.1,5,3,32.2,77777,9,999999999,379,0.3510,0,88,999.000,999.0,99.0 +1988,8,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,98100,1227,1332,425,795,410,416,87100,44600,46000,23020,130,4.1,5,4,32.2,77777,9,999999999,370,0.3510,0,88,999.000,999.0,99.0 +1988,8,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.1,52,98000,1133,1332,437,819,535,361,86300,55700,38800,15790,80,3.6,5,4,32.2,77777,9,999999999,370,0.3510,0,88,999.000,999.0,99.0 +1988,8,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.1,52,98000,975,1332,434,593,373,318,64100,40300,34600,9670,110,3.1,5,3,32.2,77777,9,999999999,370,0.3510,0,88,999.000,999.0,99.0 +1988,8,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.0,52,98000,761,1332,426,400,268,245,42700,28300,26500,5960,90,4.6,7,3,40.2,77777,9,999999999,350,0.3510,0,88,999.000,999.0,99.0 +1988,8,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.1,57,98000,509,1332,435,226,110,183,24600,10600,20600,4850,130,6.7,9,6,40.2,7620,9,999999999,370,0.3510,0,88,999.000,999.0,99.0 +1988,8,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.2,72,98000,234,1332,442,56,18,53,6200,1400,5900,1350,170,4.1,9,9,40.2,7620,9,999999999,400,0.3510,0,88,999.000,999.0,99.0 +1988,8,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.7,72,98000,17,500,438,12,0,12,0,0,0,0,170,4.1,9,9,19.3,7620,9,999999999,379,0.3510,0,88,999.000,999.0,99.0 +1988,8,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,98100,0,0,435,0,0,0,0,0,0,0,150,4.1,9,9,19.3,7620,9,999999999,379,0.2000,0,88,999.000,999.0,99.0 +1988,8,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,98100,0,0,414,0,0,0,0,0,0,0,160,3.6,9,7,19.3,7620,9,999999999,400,0.2000,0,88,999.000,999.0,99.0 +1988,8,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,98100,0,0,401,0,0,0,0,0,0,0,160,4.1,8,5,19.3,7620,9,999999999,379,0.2000,0,88,999.000,999.0,99.0 +1988,8,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,98100,0,0,391,0,0,0,0,0,0,0,130,3.1,5,3,19.3,77777,9,999999999,370,0.2000,0,88,999.000,999.0,99.0 +1988,8,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,98100,0,0,406,0,0,0,0,0,0,0,140,2.1,8,7,19.3,3050,9,999999999,379,0.1990,0,88,999.000,999.0,99.0 +1988,8,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98100,0,0,392,0,0,0,0,0,0,0,0,0.0,7,4,16.1,7620,9,999999999,379,0.1990,0,88,999.000,999.0,99.0 +1988,8,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98100,0,0,389,0,0,0,0,0,0,0,80,2.1,6,4,16.1,7620,9,999999999,379,0.1990,0,88,999.000,999.0,99.0 +1988,8,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98100,0,0,386,0,0,0,0,0,0,0,70,2.6,7,3,16.1,77777,9,999999999,379,0.1990,0,88,999.000,999.0,99.0 +1988,8,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98100,0,0,386,0,0,0,0,0,0,0,60,2.6,7,3,16.1,77777,9,999999999,379,0.1990,0,88,999.000,999.0,99.0 +1988,8,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,98100,0,0,375,0,0,0,0,0,0,0,80,2.1,4,1,12.9,77777,9,999999999,390,0.1990,0,88,999.000,999.0,99.0 +1988,8,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98100,123,1277,377,38,70,30,3900,3400,3600,530,70,2.1,3,1,12.9,77777,9,999999999,379,0.1820,0,88,999.000,999.0,99.0 +1988,8,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,98200,398,1333,391,204,344,101,21300,30300,12200,1890,70,2.1,3,2,12.9,77777,9,999999999,379,0.1820,0,88,999.000,999.0,99.0 +1988,8,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,98200,662,1333,405,402,489,158,42700,49000,18300,3300,80,2.6,2,2,12.9,77777,9,999999999,370,0.1820,0,88,999.000,999.0,99.0 +1988,8,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,98200,893,1333,413,601,631,177,63100,63600,20300,4620,0,0.0,2,2,24.1,77777,9,999999999,359,0.1820,0,88,999.000,999.0,99.0 +1988,8,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,98200,1075,1333,424,727,588,251,76000,59200,28000,8970,0,0.0,4,3,24.1,77777,9,999999999,359,0.1820,0,88,999.000,999.0,99.0 +1988,8,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,20.6,53,98100,1196,1333,438,671,344,362,74100,37400,40500,17650,60,3.6,6,6,24.1,7620,9,999999999,359,0.1820,0,88,999.000,999.0,99.0 +1988,8,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,20.6,52,98100,1247,1333,441,759,458,330,82200,47900,37200,22230,0,0.0,6,6,24.1,7620,9,999999999,359,0.1820,0,88,999.000,999.0,99.0 +1988,8,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,21.1,50,98100,1225,1333,448,890,639,302,93300,64300,34100,17570,70,3.1,7,6,24.1,3050,9,999999999,370,0.1820,0,88,999.000,999.0,99.0 +1988,8,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,21.1,50,98000,1131,1333,448,604,330,323,66700,35900,36200,12950,130,2.6,7,6,24.1,3050,9,999999999,370,0.1820,0,88,999.000,999.0,99.0 +1988,8,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,21.1,50,97900,971,1333,444,578,497,214,62800,51800,24900,6310,100,4.1,5,5,24.1,77777,9,999999999,370,0.1820,0,88,999.000,999.0,99.0 +1988,8,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,19.4,44,97900,758,1333,438,412,403,181,43800,41100,20400,4080,100,5.2,3,3,24.1,77777,9,999999999,340,0.1820,0,88,999.000,999.0,99.0 +1988,8,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.0,48,97900,504,1333,422,287,465,109,30400,44100,13700,2080,100,5.2,1,1,24.1,77777,9,999999999,340,0.1820,0,88,999.000,999.0,99.0 +1988,8,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,19.4,48,98000,229,1333,425,93,177,62,9700,12200,7700,1170,90,5.2,2,2,24.1,77777,9,999999999,329,0.1820,0,88,999.000,999.0,99.0 +1988,8,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,20.6,55,98000,16,478,420,11,3,10,0,0,0,0,90,4.1,8,2,24.1,77777,9,999999999,359,0.1820,0,88,999.000,999.0,99.0 +1988,8,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,98000,0,0,407,0,0,0,0,0,0,0,150,5.7,8,1,24.1,77777,9,999999999,379,0.1990,0,88,999.000,999.0,99.0 +1988,8,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.2,74,98100,0,0,391,0,0,0,0,0,0,0,170,4.1,2,0,24.1,77777,9,999999999,390,0.1990,0,88,999.000,999.0,99.0 +1988,8,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,98100,0,0,384,0,0,0,0,0,0,0,170,3.1,0,0,24.1,77777,9,999999999,379,0.1990,0,88,999.000,999.0,99.0 +1988,8,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,98100,0,0,379,0,0,0,0,0,0,0,190,2.6,0,0,24.1,77777,9,999999999,379,0.1990,0,88,999.000,999.0,99.0 +1988,8,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,98100,0,0,379,0,0,0,0,0,0,0,160,2.1,0,0,24.1,77777,9,999999999,379,0.1980,0,88,999.000,999.0,99.0 +1988,8,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,98100,0,0,376,0,0,0,0,0,0,0,160,2.1,0,0,24.1,77777,9,999999999,400,0.1980,0,88,999.000,999.0,99.0 +1988,8,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98100,0,0,373,0,0,0,0,0,0,0,0,0.0,1,0,24.1,77777,9,999999999,379,0.1980,0,88,999.000,999.0,99.0 +1988,8,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98100,0,0,370,0,0,0,0,0,0,0,200,1.5,0,0,24.1,77777,9,999999999,379,0.1980,0,88,999.000,999.0,99.0 +1988,8,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98100,0,0,370,0,0,0,0,0,0,0,0,0.0,0,0,19.3,77777,9,999999999,379,0.1980,0,88,999.000,999.0,99.0 +1988,8,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98200,0,0,400,0,0,0,0,0,0,0,60,2.1,8,7,19.3,910,9,999999999,379,0.1980,0,88,999.000,999.0,99.0 +1988,8,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,98200,120,1278,392,28,5,28,3200,0,3200,960,60,1.5,4,3,19.3,77777,9,999999999,379,0.3890,0,88,999.000,999.0,99.0 +1988,8,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.2,79,98200,396,1333,408,152,70,131,16600,6400,14700,3340,90,2.6,7,5,16.1,7620,9,999999999,390,0.3890,0,88,999.000,999.0,99.0 +1988,8,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,22.2,70,98200,660,1333,410,365,354,189,39200,36700,21000,4200,70,3.1,2,2,19.3,77777,9,999999999,400,0.3890,0,88,999.000,999.0,99.0 +1988,8,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.2,67,98300,891,1333,417,572,461,263,60100,47600,28300,7020,60,3.6,4,3,24.1,77777,9,999999999,390,0.3890,0,88,999.000,999.0,99.0 +1988,8,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,21.7,59,98300,1074,1333,426,654,376,351,71300,40800,38400,12590,130,4.6,4,3,24.1,77777,9,999999999,379,0.3890,0,88,999.000,999.0,99.0 +1988,8,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.7,55,98200,1194,1333,428,829,558,328,89200,58300,36800,17420,140,4.1,3,2,24.1,77777,9,999999999,379,0.3890,0,88,999.000,999.0,99.0 +1988,8,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,21.7,52,98200,1245,1333,434,871,570,337,94000,59700,38200,22420,180,3.1,3,2,24.1,77777,9,999999999,379,0.3890,0,88,999.000,999.0,99.0 +1988,8,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,20.6,47,98200,1222,1333,435,880,581,346,94500,60700,38700,20680,130,5.2,2,2,24.1,77777,9,999999999,359,0.3890,0,88,999.000,999.0,99.0 +1988,8,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,20.6,47,98100,1128,1333,435,785,550,317,83800,57400,35100,13510,170,2.6,2,2,24.1,77777,9,999999999,359,0.3890,0,88,999.000,999.0,99.0 +1988,8,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,20.6,47,98100,968,1333,435,639,468,297,67000,48500,31700,8930,160,5.2,2,2,24.1,77777,9,999999999,359,0.3890,0,88,999.000,999.0,99.0 +1988,8,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,20.0,46,98000,754,1333,434,452,368,242,48300,38800,26300,5850,180,3.6,2,2,40.2,77777,9,999999999,350,0.3890,0,88,999.000,999.0,99.0 +1988,8,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.6,50,98000,500,1333,415,253,301,139,26900,29200,15900,2850,160,4.1,0,0,40.2,77777,9,999999999,359,0.3890,0,88,999.000,999.0,99.0 +1988,8,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,21.1,55,98000,224,1333,410,78,74,65,8400,5300,7500,1380,160,3.1,0,0,40.2,77777,9,999999999,370,0.3890,0,88,999.000,999.0,99.0 +1988,8,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,98000,14,456,405,8,0,8,0,0,0,0,210,4.6,0,0,19.3,77777,9,999999999,379,0.3890,0,88,999.000,999.0,99.0 +1988,8,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,98100,0,0,399,0,0,0,0,0,0,0,190,3.6,0,0,19.3,77777,9,999999999,379,0.1980,0,88,999.000,999.0,99.0 +1988,8,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.7,69,98100,0,0,393,0,0,0,0,0,0,0,200,3.6,0,0,19.3,77777,9,999999999,379,0.1980,0,88,999.000,999.0,99.0 +1988,8,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.7,69,98100,0,0,393,0,0,0,0,0,0,0,220,3.6,0,0,19.3,77777,9,999999999,379,0.1980,0,88,999.000,999.0,99.0 +1988,8,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,98100,0,0,387,0,0,0,0,0,0,0,210,2.6,0,0,19.3,77777,9,999999999,379,0.1980,0,88,999.000,999.0,99.0 +1988,8,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,98000,0,0,384,0,0,0,0,0,0,0,230,2.6,0,0,19.3,77777,9,999999999,370,0.1980,0,88,999.000,999.0,99.0 +1988,8,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,98000,0,0,381,0,0,0,0,0,0,0,280,2.6,0,0,19.3,77777,9,999999999,370,0.1980,0,88,999.000,999.0,99.0 +1988,8,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,98000,0,0,375,0,0,0,0,0,0,0,300,1.5,0,0,19.3,77777,9,999999999,370,0.1980,0,88,999.000,999.0,99.0 +1988,8,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,98000,0,0,370,0,0,0,0,0,0,0,300,2.1,0,0,19.3,77777,9,999999999,370,0.1980,0,88,999.000,999.0,99.0 +1988,8,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98000,0,0,370,0,0,0,0,0,0,0,300,3.1,0,0,19.3,77777,9,999999999,379,0.1980,0,88,999.000,999.0,99.0 +1988,8,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98000,0,0,367,0,0,0,0,0,0,0,290,2.1,1,0,19.3,77777,9,999999999,370,0.1980,0,88,999.000,999.0,99.0 +1988,8,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98000,117,1256,373,43,101,32,4400,4800,4000,580,280,2.6,1,0,16.1,77777,9,999999999,379,0.1620,0,88,999.000,999.0,99.0 +1988,8,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,98000,393,1334,392,211,457,76,21700,40000,9900,1400,310,4.1,1,1,19.3,77777,9,999999999,379,0.1620,0,88,999.000,999.0,99.0 +1988,8,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,22.2,70,98000,658,1334,410,414,570,132,42900,55700,15400,2730,320,3.1,2,2,19.3,77777,9,999999999,400,0.1620,0,88,999.000,999.0,99.0 +1988,8,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,98000,889,1334,418,585,623,168,61500,62900,19500,4390,310,4.6,2,2,19.3,77777,9,999999999,379,0.1620,0,88,999.000,999.0,99.0 +1988,8,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,20.6,50,98000,1072,1334,423,770,764,154,80800,76900,18800,5160,0,0.0,1,1,19.3,77777,9,999999999,359,0.1620,0,88,999.000,999.0,99.0 +1988,8,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,20.0,44,98000,1192,1334,438,891,808,166,94100,81600,21000,8050,0,0.0,2,2,16.1,77777,9,999999999,350,0.1620,0,88,999.000,999.0,99.0 +1988,8,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,17.8,37,97900,1243,1334,438,892,649,285,93900,65600,32600,18110,130,2.1,2,2,16.1,77777,9,999999999,300,0.1620,0,88,999.000,999.0,99.0 +1988,8,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,18.9,42,97800,1220,1334,433,878,738,201,94600,75900,25100,11700,140,2.1,2,2,16.1,77777,9,999999999,320,0.1620,0,88,999.000,999.0,99.0 +1988,8,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,18.3,39,97800,1125,1334,438,805,705,208,85700,72000,24800,8650,270,2.6,2,2,16.1,77777,9,999999999,320,0.1620,0,88,999.000,999.0,99.0 +1988,8,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,35.0,18.3,37,97700,965,1334,436,672,690,170,71200,70300,20200,5010,160,3.6,3,1,16.1,77777,9,999999999,309,0.1620,0,88,999.000,999.0,99.0 +1988,8,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,34.4,17.2,36,97700,750,1334,431,488,638,127,51300,63900,15300,2890,140,4.1,3,1,16.1,77777,9,999999999,290,0.1620,0,88,999.000,999.0,99.0 +1988,8,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,19.4,43,97700,495,1334,431,282,490,98,28900,45500,12000,1860,230,4.6,2,1,24.1,77777,9,999999999,340,0.1620,0,88,999.000,999.0,99.0 +1988,8,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,19.4,45,97700,219,1334,417,94,250,52,9700,17000,6900,940,150,4.6,2,0,16.1,77777,9,999999999,329,0.1620,0,88,999.000,999.0,99.0 +1988,8,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,97700,12,411,410,9,6,8,0,0,0,0,180,5.2,0,0,16.1,77777,9,999999999,309,0.1620,0,88,999.000,999.0,99.0 +1988,8,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,97700,0,0,408,0,0,0,0,0,0,0,180,4.1,0,0,16.1,77777,9,999999999,340,0.1980,0,88,999.000,999.0,99.0 +1988,8,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.6,59,97800,0,0,400,0,0,0,0,0,0,0,190,4.1,0,0,16.1,77777,9,999999999,359,0.1980,0,88,999.000,999.0,99.0 +1988,8,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,97800,0,0,398,0,0,0,0,0,0,0,190,3.6,0,0,16.1,77777,9,999999999,370,0.1980,0,88,999.000,999.0,99.0 +1988,8,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,21.1,67,97800,0,0,392,0,0,0,0,0,0,0,200,3.1,0,0,16.1,77777,9,999999999,370,0.1980,0,88,999.000,999.0,99.0 +1988,8,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,97800,0,0,387,0,0,0,0,0,0,0,210,4.1,0,0,16.1,77777,9,999999999,379,0.1970,0,88,999.000,999.0,99.0 +1988,8,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.7,77,97800,0,0,384,0,0,0,0,0,0,0,270,3.6,0,0,16.1,77777,9,999999999,379,0.1970,0,88,999.000,999.0,99.0 +1988,8,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.7,79,97800,0,0,382,0,0,0,0,0,0,0,270,3.6,0,0,16.1,77777,9,999999999,379,0.1970,0,88,999.000,999.0,99.0 +1988,8,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,97800,0,0,379,0,0,0,0,0,0,0,270,2.6,0,0,16.1,77777,9,999999999,400,0.1970,0,88,999.000,999.0,99.0 +1988,8,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,97800,0,0,376,0,0,0,0,0,0,0,250,2.1,0,0,16.1,77777,9,999999999,379,0.1970,0,88,999.000,999.0,99.0 +1988,8,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,97800,0,0,384,0,0,0,0,0,0,0,270,3.1,2,1,16.1,77777,9,999999999,400,0.1970,0,88,999.000,999.0,99.0 +1988,8,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,97800,114,1234,395,35,6,34,3800,0,3800,1100,240,3.1,7,2,16.1,77777,9,999999999,400,0.3460,0,88,999.000,999.0,99.0 +1988,8,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.2,74,97800,391,1334,391,197,200,139,21200,18000,16000,3100,260,3.1,9,0,16.1,77777,9,999999999,390,0.3460,0,88,999.000,999.0,99.0 +1988,8,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,21.7,63,97900,656,1334,402,417,375,232,44100,38700,25000,5380,280,2.6,10,0,16.1,77777,9,999999999,379,0.3460,0,88,999.000,999.0,99.0 +1988,8,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,21.7,55,97800,887,1334,422,597,458,292,62100,47100,30600,7840,200,2.6,9,1,19.3,77777,9,999999999,379,0.3460,0,88,999.000,999.0,99.0 +1988,8,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,21.1,52,97800,1070,1334,434,714,411,383,77200,44500,41400,13790,230,3.6,8,3,19.3,77777,9,999999999,370,0.3460,0,88,999.000,999.0,99.0 +1988,8,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,20.0,47,97800,1190,1334,439,782,397,427,85200,43100,46600,20700,240,5.7,9,4,19.3,77777,9,999999999,350,0.3460,0,88,999.000,999.0,99.0 +1988,8,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,19.4,44,97700,1241,1334,441,803,405,425,88000,44000,46900,24740,230,3.6,9,4,19.3,77777,9,999999999,329,0.3460,0,88,999.000,999.0,99.0 +1988,8,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.9,20.0,44,97600,1217,1334,446,821,405,451,89400,44000,49200,24090,230,5.2,10,4,24.1,77777,9,999999999,350,0.3460,0,88,999.000,999.0,99.0 +1988,8,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,20.6,47,97600,1122,1334,443,715,360,411,77400,39000,44500,16590,160,3.6,9,4,24.1,77777,9,999999999,359,0.3460,0,88,999.000,999.0,99.0 +1988,8,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,20.6,49,97500,961,1334,443,557,280,354,59700,30100,37900,10780,180,5.2,9,5,24.1,7620,9,999999999,359,0.3460,0,88,999.000,999.0,99.0 +1988,8,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,23.3,68,97500,746,1334,440,365,165,272,39500,17100,29900,7090,200,3.1,9,7,24.1,7620,9,999999999,419,0.3460,0,88,999.000,999.0,99.0 +1988,8,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,22.2,70,97500,491,1334,445,162,108,122,17800,10500,14000,2810,230,6.7,9,9,24.1,7620,9,999999999,400,0.3460,0,88,999.000,999.0,99.0 +1988,8,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.2,72,97500,214,1334,454,56,1,56,6300,0,6200,1870,220,8.8,10,10,19.3,7620,9,999999999,390,0.3460,0,88,999.000,999.0,99.0 +1988,8,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,22.2,77,97500,11,389,448,3,0,3,0,0,0,0,220,5.2,10,10,19.3,3050,9,999999999,400,0.3460,0,88,999.000,999.0,99.0 +1988,8,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.8,82,97600,0,0,445,0,0,0,0,0,0,0,120,3.6,10,10,16.1,1220,9,999999999,409,0.1970,0,88,999.000,999.0,99.0 +1988,8,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.2,79,97600,0,0,416,0,0,0,0,0,0,0,170,2.6,7,7,16.1,2440,9,999999999,390,0.1970,0,88,999.000,999.0,99.0 +1988,8,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.8,85,97600,0,0,400,0,0,0,0,0,0,0,160,3.1,6,3,16.1,77777,9,999999999,409,0.1970,0,88,999.000,999.0,99.0 +1988,8,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,97600,0,0,392,0,0,0,0,0,0,0,190,4.1,6,2,16.1,77777,9,999999999,400,0.1970,0,88,999.000,999.0,99.0 +1988,8,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,88,97600,0,0,384,0,0,0,0,0,0,0,200,3.1,6,1,16.1,77777,9,999999999,390,0.1960,0,88,999.000,999.0,99.0 +1988,8,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.8,91,97600,0,0,377,0,0,0,0,0,0,0,210,5.2,1,0,16.1,77777,9,999999999,409,0.1960,0,88,999.000,999.0,99.0 +1988,8,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.8,91,97500,0,0,389,0,0,0,0,0,0,0,250,5.2,4,2,16.1,77777,9,999999999,409,0.1960,0,88,999.000,999.0,99.0 +1988,8,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,97500,0,0,405,0,0,0,0,0,0,0,210,4.1,8,7,16.1,1070,9,999999999,409,0.1960,0,88,999.000,999.0,99.0 +1988,8,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,97600,0,0,405,0,0,0,0,0,0,0,220,4.1,9,7,11.3,1070,9,999999999,409,0.1960,0,88,999.000,999.0,99.0 +1988,8,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,97600,0,0,411,0,0,0,0,0,0,0,240,5.2,9,8,11.3,1070,9,999999999,409,0.1960,0,88,999.000,999.0,99.0 +1988,8,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,23.3,97,97600,112,1235,433,30,2,30,3400,0,3400,1000,250,4.1,10,10,4.8,120,9,999999999,419,0.1090,0,88,999.000,999.0,99.0 +1988,8,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,23.3,94,97600,388,1335,424,105,14,101,11800,800,11600,3690,210,4.1,10,9,4.8,120,9,999999999,419,0.1090,0,88,999.000,999.0,99.0 +1988,8,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,23.3,91,97600,654,1335,439,175,3,174,20100,200,20000,7120,270,3.6,10,10,4.0,150,9,999999999,419,0.1090,0,88,999.000,999.0,99.0 +1988,8,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,23.3,85,97600,885,1335,446,270,2,268,31100,200,31000,11480,270,4.1,10,10,4.0,180,9,999999999,419,0.1090,0,88,999.000,999.0,99.0 +1988,8,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,23.3,82,97600,1068,1335,428,496,231,311,54500,25100,34400,10830,210,4.1,10,8,4.8,370,9,999999999,419,0.1090,0,88,999.000,999.0,99.0 +1988,8,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,22.8,65,97500,1188,1335,439,509,152,373,56400,16300,41900,17160,230,4.1,8,7,4.8,670,9,999999999,400,0.1090,0,88,999.000,999.0,99.0 +1988,8,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,23.9,85,97500,1238,1335,422,614,371,269,67700,38900,31500,17060,260,3.1,8,7,4.8,2740,9,999999999,430,0.1090,0,88,999.000,999.0,99.0 +1988,8,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,22.2,65,97400,1215,1335,430,930,654,332,96500,65400,36900,18170,200,6.7,7,6,11.3,2740,9,999999999,390,0.1090,0,88,999.000,999.0,99.0 +1988,8,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,23.3,88,97400,1119,1335,415,721,426,362,75800,44400,38600,15130,230,4.6,8,7,11.3,2740,9,999999999,419,0.1090,0,88,999.000,999.0,99.0 +1988,8,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,23.3,74,97300,958,1335,425,739,637,280,77900,66000,30400,8230,210,6.7,8,6,16.1,7620,9,999999999,419,0.1090,0,88,999.000,999.0,99.0 +1988,8,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,23.3,77,97400,742,1335,415,398,368,192,42000,37400,21200,4300,230,4.1,7,4,24.1,7620,9,999999999,419,0.1090,0,88,999.000,999.0,99.0 +1988,8,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,21.1,74,97500,486,1335,443,95,8,92,11000,500,10900,3810,340,6.7,10,10,16.1,910,9,999999999,370,0.1090,0,88,999.000,999.0,99.0 +1988,8,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,97500,209,1335,424,36,5,35,4100,0,4100,1310,300,3.1,10,10,8.0,2440,9,999999999,379,0.1090,0,88,999.000,999.0,99.0 +1988,8,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,97400,9,367,427,3,0,3,0,0,0,0,240,3.1,10,10,16.1,2440,9,999999999,379,0.1090,0,88,999.000,999.0,99.0 +1988,8,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,97400,0,0,424,0,0,0,0,0,0,0,290,2.6,10,10,16.1,2440,9,999999999,379,0.1960,0,88,999.000,999.0,99.0 +1988,8,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,97500,0,0,404,0,0,0,0,0,0,0,270,3.1,10,8,16.1,7620,9,999999999,379,0.1960,0,88,999.000,999.0,99.0 +1988,8,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,97500,0,0,404,0,0,0,0,0,0,0,220,2.1,9,8,16.1,7620,9,999999999,379,0.1960,0,88,999.000,999.0,99.0 +1988,8,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,22.2,97,97500,0,0,390,0,0,0,0,0,0,0,190,3.1,5,5,11.3,77777,9,999999999,390,0.1960,0,88,999.000,999.0,99.0 +1988,8,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.7,97,97500,0,0,394,0,0,0,0,0,0,0,270,3.1,8,7,8.0,90,9,999999999,379,0.1950,0,88,999.000,999.0,99.0 +1988,8,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,22.2,97,97500,0,0,413,0,0,0,0,0,0,0,210,3.1,10,9,8.0,3050,9,999999999,390,0.1950,0,88,999.000,999.0,99.0 +1988,8,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.7,97,97500,0,0,384,0,0,0,0,0,0,0,260,2.1,5,4,8.0,77777,9,999999999,379,0.1950,0,88,999.000,999.0,99.0 +1988,8,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.7,100,97500,0,0,392,0,0,0,0,0,0,0,290,2.1,7,7,4.8,60,9,999999999,379,0.1950,0,88,999.000,999.0,99.0 +1988,8,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.7,100,97500,0,0,418,0,0,0,0,0,0,0,270,3.1,10,10,0.4,0,9,999999999,379,0.1950,0,88,999.000,999.0,99.0 +1988,8,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,22.2,100,97500,0,0,422,0,0,0,0,0,0,0,290,3.1,10,10,0.4,0,9,999999999,390,0.1950,0,88,999.000,999.0,99.0 +1988,8,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,22.2,100,97600,109,1213,422,24,1,24,2700,0,2700,850,300,2.6,10,10,2.4,60,9,999999999,390,0.1430,0,88,999.000,999.0,99.0 +1988,8,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,22.2,97,97600,386,1336,425,100,3,99,11300,200,11200,3630,310,2.1,10,10,4.0,120,9,999999999,400,0.1430,0,88,999.000,999.0,99.0 +1988,8,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,97700,651,1336,428,202,2,202,23000,200,22900,7870,310,3.1,10,10,4.0,120,9,999999999,400,0.1430,0,88,999.000,999.0,99.0 +1988,8,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.2,90,97700,883,1336,431,163,4,160,19500,300,19300,7710,320,3.1,10,10,4.0,120,9,999999999,390,0.1430,0,88,999.000,999.0,99.0 +1988,8,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.8,88,97700,1066,1336,439,373,3,371,43200,300,43000,15760,290,3.1,10,10,4.0,150,9,999999999,409,0.1430,0,88,999.000,999.0,99.0 +1988,8,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.8,82,97700,1186,1336,445,428,0,428,49800,0,49800,17980,310,2.1,10,10,6.4,270,9,999999999,409,0.1430,0,88,999.000,999.0,99.0 +1988,8,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.8,77,97700,1236,1336,439,508,78,436,56200,8000,48700,22470,310,3.1,10,9,6.4,370,9,999999999,409,0.1430,0,88,999.000,999.0,99.0 +1988,8,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.2,74,97600,1212,1336,414,827,445,422,86800,46300,44700,24190,280,3.1,7,5,9.7,3050,9,999999999,390,0.1430,0,88,999.000,999.0,99.0 +1988,8,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,22.2,63,97500,1116,1336,426,744,561,273,80500,58700,31400,11110,280,2.1,6,4,11.3,7620,9,999999999,390,0.1430,0,88,999.000,999.0,99.0 +1988,8,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,97500,954,1336,418,627,599,197,65700,60500,22300,5590,240,3.1,6,2,11.3,77777,9,999999999,379,0.1430,0,88,999.000,999.0,99.0 +1988,8,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,22.2,61,97500,738,1336,426,434,427,196,45600,43300,21600,4380,270,2.1,7,3,11.3,77777,9,999999999,390,0.1430,0,88,999.000,999.0,99.0 +1988,8,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,22.2,63,97500,482,1336,419,283,496,102,30000,46500,13200,1920,320,3.1,5,2,11.3,77777,9,999999999,390,0.1430,0,88,999.000,999.0,99.0 +1988,8,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.2,67,97600,204,1336,420,70,132,49,7400,8500,6100,900,290,3.6,5,4,11.3,77777,9,999999999,390,0.1430,0,88,999.000,999.0,99.0 +1988,8,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.2,72,97600,8,345,401,4,3,4,0,0,0,0,310,2.6,4,1,16.1,77777,9,999999999,400,0.1430,0,88,999.000,999.0,99.0 +1988,8,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,97700,0,0,426,0,0,0,0,0,0,0,330,3.1,8,8,16.1,2440,9,999999999,379,0.1950,0,88,999.000,999.0,99.0 +1988,8,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.8,85,97700,0,0,403,0,0,0,0,0,0,0,50,2.6,4,4,16.1,77777,9,999999999,409,0.1950,0,88,999.000,999.0,99.0 +1988,8,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,97700,0,0,392,0,0,0,0,0,0,0,40,3.1,2,2,16.1,77777,9,999999999,400,0.1950,0,88,999.000,999.0,99.0 +1988,8,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,97800,0,0,395,0,0,0,0,0,0,0,0,0.0,4,4,16.1,77777,9,999999999,379,0.1950,0,88,999.000,999.0,99.0 +1988,8,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,97800,0,0,371,0,0,0,0,0,0,0,320,1.5,0,0,16.1,77777,9,999999999,400,0.1950,0,88,999.000,999.0,99.0 +1988,8,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,97800,0,0,370,0,0,0,0,0,0,0,130,1.5,0,0,16.1,77777,9,999999999,379,0.1950,0,88,999.000,999.0,99.0 +1988,8,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,97800,0,0,373,0,0,0,0,0,0,0,60,1.5,0,0,16.1,77777,9,999999999,379,0.1950,0,88,999.000,999.0,99.0 +1988,8,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,97800,0,0,370,0,0,0,0,0,0,0,60,2.6,0,0,16.1,77777,9,999999999,370,0.1950,0,88,999.000,999.0,99.0 +1988,8,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,97800,0,0,367,0,0,0,0,0,0,0,80,2.6,0,0,16.1,77777,9,999999999,370,0.1950,0,88,999.000,999.0,99.0 +1988,8,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,97900,0,0,367,0,0,0,0,0,0,0,70,2.6,0,0,11.3,77777,9,999999999,370,0.1950,0,88,999.000,999.0,99.0 +1988,8,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,97900,106,1191,375,43,174,25,4400,8600,3600,440,70,2.6,1,1,11.3,77777,9,999999999,379,0.0860,0,88,999.000,999.0,99.0 +1988,8,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98000,383,1336,389,160,295,76,17200,25700,9800,1380,70,3.6,4,3,11.3,77777,9,999999999,379,0.0860,0,88,999.000,999.0,99.0 +1988,8,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,98000,649,1336,405,397,408,199,42500,42100,22000,4450,70,3.6,6,6,11.3,3050,9,999999999,400,0.0860,0,88,999.000,999.0,99.0 +1988,8,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.8,77,98000,881,1336,418,515,479,198,55600,49600,22800,5080,70,5.2,6,6,11.3,3050,9,999999999,409,0.0860,0,88,999.000,999.0,99.0 +1988,8,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,22.8,72,98100,1064,1336,421,689,576,229,72400,58300,25800,7990,100,3.1,5,5,11.3,77777,9,999999999,409,0.0860,0,88,999.000,999.0,99.0 +1988,8,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,22.2,65,98000,1184,1336,442,560,230,356,61800,25000,39600,16530,110,4.1,8,8,11.3,760,9,999999999,390,0.0860,0,88,999.000,999.0,99.0 +1988,8,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.2,67,98000,1234,1336,439,786,374,440,85900,40600,48300,24810,80,4.1,8,8,11.3,850,9,999999999,390,0.0860,0,88,999.000,999.0,99.0 +1988,8,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,22.2,63,98000,1210,1336,438,843,631,269,88800,63900,30800,14580,60,5.2,7,7,12.9,850,9,999999999,390,0.0860,0,88,999.000,999.0,99.0 +1988,8,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,97900,1113,1336,438,620,258,404,67100,28000,43800,15900,90,6.7,7,7,12.9,850,9,999999999,379,0.0860,0,88,999.000,999.0,99.0 +1988,8,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.7,61,97900,951,1336,438,531,374,263,56200,38800,28600,7590,100,4.1,8,7,12.9,850,9,999999999,379,0.0860,0,88,999.000,999.0,99.0 +1988,8,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,22.8,72,97900,734,1336,458,296,6,292,33000,600,32600,10620,120,5.7,10,10,12.9,850,9,999999999,409,0.0860,0,88,999.000,999.0,99.0 +1988,8,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.8,70,98000,477,1336,440,185,45,169,20300,4300,18700,4420,150,3.1,8,8,11.3,3050,9,999999999,409,0.0860,0,88,999.000,999.0,99.0 +1988,8,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.8,74,98000,199,1336,418,80,37,75,8800,2800,8400,1660,160,4.1,7,5,11.3,7620,9,999999999,409,0.0860,0,88,999.000,999.0,99.0 +1988,8,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,98100,7,323,441,1,0,1,0,0,0,0,120,5.7,10,10,8.0,910,9,999999999,400,0.0860,0,88,999.000,999.0,99.0 +1988,8,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.8,85,98100,0,0,442,0,0,0,0,0,0,0,130,5.7,10,10,11.3,1280,9,999999999,409,0.1950,0,88,999.000,999.0,99.0 +1988,8,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.8,88,98100,0,0,439,0,0,0,0,0,0,0,110,5.7,10,10,11.3,1280,9,999999999,409,0.1950,0,88,999.000,999.0,99.0 +1988,8,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.8,88,98200,0,0,439,0,0,0,0,0,0,0,120,5.2,10,10,9.7,270,9,999999999,409,0.1950,0,88,999.000,999.0,99.0 +1988,8,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.8,91,98200,0,0,435,0,0,0,0,0,0,0,110,4.6,10,10,8.0,270,9,999999999,409,0.1950,0,88,999.000,999.0,99.0 +1988,8,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,98200,0,0,432,0,0,0,0,0,0,0,120,4.1,10,10,6.4,240,9,999999999,409,0.1940,0,88,999.000,999.0,99.0 +1988,8,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,98100,0,0,432,0,0,0,0,0,0,0,100,4.1,10,10,6.4,210,9,999999999,409,0.1940,0,88,999.000,999.0,99.0 +1988,8,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,98100,0,0,432,0,0,0,0,0,0,0,100,4.1,10,10,4.8,210,9,999999999,409,0.1940,0,88,999.000,999.0,99.0 +1988,8,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.8,97,98100,0,0,429,0,0,0,0,0,0,0,80,5.7,10,10,4.8,180,9,999999999,409,0.1940,0,88,999.000,999.0,99.0 +1988,8,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,98200,0,0,411,0,0,0,0,0,0,0,100,5.2,10,10,6.4,460,9,999999999,329,0.1940,0,88,999.000,999.0,99.0 +1988,8,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,98200,0,0,409,0,0,0,0,0,0,0,80,3.6,10,10,6.4,550,9,999999999,340,0.1940,0,88,999.000,999.0,99.0 +1988,8,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98200,104,1192,417,17,0,17,2000,0,2000,640,90,4.1,10,10,4.0,490,9,999999999,359,0.2250,0,88,999.000,999.0,99.0 +1988,8,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,98300,380,1337,419,78,4,77,9000,200,8900,3000,80,4.1,10,10,4.0,400,9,999999999,359,0.2250,0,88,999.000,999.0,99.0 +1988,8,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.1,94,98300,647,1337,420,193,6,191,22000,500,21800,7540,80,3.1,10,10,1.6,240,9,999999999,370,0.2250,0,88,999.000,999.0,99.0 +1988,8,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98300,879,1337,424,230,7,225,26800,600,26500,10080,90,3.6,10,10,3.2,310,9,999999999,370,0.2250,0,88,999.000,999.0,99.0 +1988,8,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98300,1062,1337,431,376,2,374,43400,200,43300,15810,120,3.1,10,10,3.2,310,9,999999999,379,0.2250,0,88,999.000,999.0,99.0 +1988,8,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,98300,1182,1337,434,370,5,366,43600,500,43200,16200,110,2.1,10,10,3.2,310,9,999999999,379,0.2250,0,88,999.000,999.0,99.0 +1988,8,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,98200,1231,1337,441,406,3,403,47800,300,47500,17520,80,2.1,10,10,3.2,310,9,999999999,400,0.2250,0,88,999.000,999.0,99.0 +1988,8,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.8,77,98100,1207,1337,452,426,1,425,49800,100,49700,18010,80,4.1,10,10,4.8,610,9,999999999,409,0.2250,0,88,999.000,999.0,99.0 +1988,8,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,22.2,72,98000,1110,1337,417,775,566,303,82900,59100,33700,12160,40,4.1,6,5,3.2,3050,9,999999999,400,0.2250,0,88,999.000,999.0,99.0 +1988,8,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,22.8,79,97900,947,1337,427,542,262,356,59000,27700,39300,10920,60,4.6,8,8,6.4,910,9,999999999,409,0.2250,0,88,999.000,999.0,99.0 +1988,8,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.8,77,97900,729,1337,439,331,61,298,36300,6200,32900,8690,70,4.1,9,9,6.4,910,9,999999999,409,0.2250,0,88,999.000,999.0,99.0 +1988,8,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,22.8,82,97900,472,1337,417,231,186,165,24900,17700,18600,3780,90,4.6,9,7,6.4,3050,9,999999999,409,0.2250,0,88,999.000,999.0,99.0 +1988,8,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,23.3,88,97900,194,1337,443,26,0,26,3000,0,3000,1000,50,3.6,10,10,6.4,910,9,999999999,419,0.2250,0,88,999.000,999.0,99.0 +1988,8,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,23.3,97,97900,6,278,421,2,0,2,0,0,0,0,110,4.6,10,9,6.4,910,9,999999999,419,0.2250,0,88,999.000,999.0,99.0 +1988,8,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,23.3,97,98000,0,0,412,0,0,0,0,0,0,0,90,3.1,10,8,4.8,150,9,999999999,419,0.1940,0,88,999.000,999.0,99.0 +1988,8,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,23.3,97,98000,0,0,412,0,0,0,0,0,0,0,80,3.1,10,8,4.0,150,9,999999999,419,0.1940,0,88,999.000,999.0,99.0 +1988,8,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.8,97,98000,0,0,429,0,0,0,0,0,0,0,170,3.1,10,10,2.4,120,9,999999999,409,0.1940,0,88,999.000,999.0,99.0 +1988,8,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.8,97,97900,0,0,429,0,0,0,0,0,0,0,70,2.1,10,10,3.6,180,9,999999999,409,0.1940,0,88,999.000,999.0,99.0 +1988,8,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,22.2,97,97900,0,0,425,0,0,0,0,0,0,0,100,3.6,10,10,3.6,120,9,999999999,400,0.1930,0,88,999.000,999.0,99.0 +1988,8,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,22.2,97,97800,0,0,425,0,0,0,0,0,0,0,120,2.1,10,10,2.8,120,9,999999999,400,0.1930,0,88,999.000,999.0,99.0 +1988,8,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,22.2,97,97800,0,0,425,0,0,0,0,0,0,0,170,1.5,10,10,0.8,90,9,999999999,400,0.1930,0,88,999.000,999.0,99.0 +1988,8,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,94,97800,0,0,424,0,0,0,0,0,0,0,200,2.1,10,10,0.0,30,9,999999999,379,0.1930,0,88,999.000,999.0,99.0 +1988,8,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,22.8,100,97700,0,0,426,0,0,0,0,0,0,0,240,3.6,10,10,0.8,60,9,999999999,409,0.1930,0,88,999.000,999.0,99.0 +1988,8,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.8,97,97800,0,0,429,0,0,0,0,0,0,0,270,1.5,10,10,1.6,90,9,999999999,409,0.1930,0,88,999.000,999.0,99.0 +1988,8,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,97800,101,1170,428,19,1,19,2200,0,2200,700,260,2.6,10,10,0.8,60,9,999999999,400,0.1010,0,88,999.000,999.0,99.0 +1988,8,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.2,90,97800,378,1337,431,48,6,47,5800,200,5700,1990,280,4.1,10,10,0.8,60,9,999999999,390,0.1010,0,88,999.000,999.0,99.0 +1988,8,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.8,97,97700,644,1337,429,133,9,128,15500,600,15200,5600,280,2.6,10,10,2.4,90,9,999999999,409,0.1010,0,88,999.000,999.0,99.0 +1988,8,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.8,94,97800,877,1337,420,356,90,297,39200,9200,33200,10030,280,3.1,10,9,2.4,240,9,999999999,409,0.1010,0,88,999.000,999.0,99.0 +1988,8,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.8,88,97800,1060,1337,406,438,112,349,48200,11900,38800,12340,280,2.6,8,6,2.4,7620,9,999999999,409,0.1010,0,88,999.000,999.0,99.0 +1988,8,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,22.2,74,97800,1180,1337,418,732,408,371,77500,42500,39900,18580,270,2.1,10,6,8.0,7620,9,999999999,390,0.1010,0,88,999.000,999.0,99.0 +1988,8,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,22.2,70,97700,1229,1337,420,840,508,372,89600,53100,40700,22610,270,2.1,10,5,11.3,77777,9,999999999,400,0.1010,0,88,999.000,999.0,99.0 +1988,8,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,22.8,70,97600,1204,1337,421,817,541,328,87900,56600,36800,17850,270,3.1,10,4,16.1,77777,9,999999999,409,0.1010,0,88,999.000,999.0,99.0 +1988,8,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,22.2,65,97500,1106,1337,442,664,282,430,71500,30500,46200,16810,270,3.1,10,8,16.1,7620,9,999999999,390,0.1010,0,88,999.000,999.0,99.0 +1988,8,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,21.1,59,97500,943,1337,437,435,143,334,47500,15100,36800,10190,310,3.6,9,7,16.1,7620,9,999999999,370,0.1010,0,88,999.000,999.0,99.0 +1988,8,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.7,65,97500,725,1337,431,360,292,201,38900,30700,22200,4620,320,5.2,9,7,16.1,7620,9,999999999,379,0.1010,0,88,999.000,999.0,99.0 +1988,8,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,21.1,65,97500,467,1337,419,219,248,132,23300,23600,15000,2680,310,3.6,9,5,16.1,7620,9,999999999,370,0.1010,0,88,999.000,999.0,99.0 +1988,8,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,19.4,61,97500,188,1337,403,76,238,42,7900,14900,5800,750,300,3.1,3,2,16.1,77777,9,999999999,340,0.1010,0,88,999.000,999.0,99.0 +1988,8,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,97500,5,256,380,5,7,3,0,0,0,0,290,3.1,0,0,16.1,77777,9,999999999,350,0.1010,0,88,999.000,999.0,99.0 +1988,8,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.6,76,97600,0,0,377,0,0,0,0,0,0,0,290,2.1,0,0,16.1,77777,9,999999999,359,0.1930,0,88,999.000,999.0,99.0 +1988,8,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,97600,0,0,373,0,0,0,0,0,0,0,280,2.6,0,0,16.1,77777,9,999999999,370,0.1930,0,88,999.000,999.0,99.0 +1988,8,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.1,87,97600,0,0,370,0,0,0,0,0,0,0,300,3.1,0,0,16.1,77777,9,999999999,370,0.1930,0,88,999.000,999.0,99.0 +1988,8,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.1,97,97500,0,0,362,0,0,0,0,0,0,0,290,2.1,0,0,16.1,77777,9,999999999,370,0.1930,0,88,999.000,999.0,99.0 +1988,8,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,97500,0,0,358,0,0,0,0,0,0,0,280,2.1,0,0,16.1,77777,9,999999999,309,0.1920,0,88,999.000,999.0,99.0 +1988,8,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.9,84,97600,0,0,359,0,0,0,0,0,0,0,300,3.6,0,0,16.1,77777,9,999999999,320,0.1920,0,88,999.000,999.0,99.0 +1988,8,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,97600,0,0,353,0,0,0,0,0,0,0,300,3.6,0,0,16.1,77777,9,999999999,309,0.1920,0,88,999.000,999.0,99.0 +1988,8,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,97500,0,0,349,0,0,0,0,0,0,0,310,3.1,0,0,16.1,77777,9,999999999,290,0.1920,0,88,999.000,999.0,99.0 +1988,8,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,97500,0,0,346,0,0,0,0,0,0,0,310,4.6,0,0,16.1,77777,9,999999999,290,0.1920,0,88,999.000,999.0,99.0 +1988,8,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,97600,0,0,340,0,0,0,0,0,0,0,310,3.6,0,0,16.1,77777,9,999999999,279,0.1920,0,88,999.000,999.0,99.0 +1988,8,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.1,84,97600,99,1148,343,32,7,31,3500,0,3500,1010,310,3.6,0,0,16.1,77777,9,999999999,279,0.3990,0,88,999.000,999.0,99.0 +1988,8,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,97700,375,1338,355,159,191,105,16800,16800,12100,2070,320,4.1,0,0,16.1,77777,9,999999999,270,0.3990,0,88,999.000,999.0,99.0 +1988,8,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,97700,642,1338,367,367,391,178,38200,38800,19600,3730,310,3.1,0,0,19.3,77777,9,999999999,250,0.3990,0,88,999.000,999.0,99.0 +1988,8,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,13.9,43,97700,875,1338,384,575,518,236,61000,53400,26000,6090,310,2.6,0,0,19.3,77777,9,999999999,240,0.3990,0,88,999.000,999.0,99.0 +1988,8,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,11.7,35,97700,1058,1338,387,749,596,276,80300,62200,31100,9700,20,4.1,0,0,32.2,77777,9,999999999,209,0.3990,0,88,999.000,999.0,99.0 +1988,8,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,12.2,35,97700,1177,1338,390,863,639,299,90000,64200,33400,14090,350,3.6,0,0,32.2,77777,9,999999999,220,0.3990,0,88,999.000,999.0,99.0 +1988,8,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,12.8,35,97600,1226,1338,394,908,651,309,94900,65400,34800,17710,310,3.6,0,0,40.2,77777,9,999999999,229,0.3990,0,88,999.000,999.0,99.0 +1988,8,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,11.7,30,97500,1201,1338,398,885,645,304,92400,64800,34100,15650,340,4.6,0,0,40.2,77777,9,999999999,209,0.3990,0,88,999.000,999.0,99.0 +1988,8,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,12.8,33,97500,1103,1338,399,792,611,286,85100,63800,32400,11210,330,3.6,0,0,40.2,77777,9,999999999,229,0.3990,0,88,999.000,999.0,99.0 +1988,8,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,13.3,33,97400,939,1338,403,639,550,251,67900,57000,27800,7080,310,5.2,0,0,40.2,77777,9,999999999,229,0.3990,0,88,999.000,999.0,99.0 +1988,8,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,13.3,34,97400,720,1338,400,441,445,200,46200,45000,21900,4430,330,3.1,0,0,40.2,77777,9,999999999,229,0.3990,0,88,999.000,999.0,99.0 +1988,8,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,13.3,36,97400,462,1338,394,225,272,130,23800,25800,14900,2630,270,4.6,0,0,40.2,77777,9,999999999,229,0.3990,0,88,999.000,999.0,99.0 +1988,8,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,13.3,38,97400,183,1338,389,59,42,53,6400,3000,6000,1250,290,2.6,0,0,40.2,77777,9,999999999,229,0.3990,0,88,999.000,999.0,99.0 +1988,8,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.0,51,97500,4,234,376,3,0,3,0,0,0,0,300,2.1,0,0,40.2,77777,9,999999999,259,0.3990,0,88,999.000,999.0,99.0 +1988,8,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,14.4,49,97500,0,0,376,0,0,0,0,0,0,0,290,2.1,0,0,40.2,77777,9,999999999,250,0.1920,0,88,999.000,999.0,99.0 +1988,8,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,14.4,50,97500,0,0,373,0,0,0,0,0,0,0,260,2.1,0,0,24.1,77777,9,999999999,250,0.1920,0,88,999.000,999.0,99.0 +1988,8,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,97500,0,0,367,0,0,0,0,0,0,0,280,1.5,0,0,24.1,77777,9,999999999,250,0.1920,0,88,999.000,999.0,99.0 +1988,8,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.0,58,97500,0,0,365,0,0,0,0,0,0,0,280,2.1,0,0,24.1,77777,9,999999999,259,0.1920,0,88,999.000,999.0,99.0 +1988,8,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,97500,0,0,355,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,270,0.1910,0,88,999.000,999.0,99.0 +1988,8,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,97500,0,0,369,0,0,0,0,0,0,0,0,0.0,2,2,24.1,77777,9,999999999,259,0.1910,0,88,999.000,999.0,99.0 +1988,8,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,97500,0,0,367,0,0,0,0,0,0,0,260,2.6,2,2,24.1,77777,9,999999999,270,0.1910,0,88,999.000,999.0,99.0 +1988,8,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,14.4,64,97400,0,0,354,0,0,0,0,0,0,0,280,2.1,0,0,24.1,77777,9,999999999,250,0.1910,0,88,999.000,999.0,99.0 +1988,8,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,14.4,64,97500,0,0,354,0,0,0,0,0,0,0,250,3.1,0,0,24.1,77777,9,999999999,250,0.1910,0,88,999.000,999.0,99.0 +1988,8,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,97500,0,0,355,0,0,0,0,0,0,0,250,3.6,0,0,16.1,77777,9,999999999,259,0.1910,0,88,999.000,999.0,99.0 +1988,8,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.6,66,97500,96,1127,358,42,133,27,4100,6400,3500,480,250,3.1,0,0,24.1,77777,9,999999999,270,0.1180,0,88,999.000,999.0,99.0 +1988,8,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,97600,372,1338,361,206,522,60,21400,45300,8800,1140,290,2.1,0,0,24.1,77777,9,999999999,279,0.1180,0,88,999.000,999.0,99.0 +1988,8,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,97600,640,1338,370,425,703,89,45300,69500,12000,1920,290,2.1,0,0,19.3,77777,9,999999999,279,0.1180,0,88,999.000,999.0,99.0 +1988,8,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.2,54,97600,873,1338,385,630,792,112,66400,79400,14500,2790,270,3.1,0,0,19.3,77777,9,999999999,290,0.1180,0,88,999.000,999.0,99.0 +1988,8,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,97600,1055,1338,407,728,655,210,76800,66500,24300,7220,270,2.6,2,2,24.1,77777,9,999999999,300,0.1180,0,88,999.000,999.0,99.0 +1988,8,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,18.3,48,97600,1175,1338,421,820,673,227,87200,68600,26700,10850,310,1.5,3,3,19.3,77777,9,999999999,309,0.1180,0,88,999.000,999.0,99.0 +1988,8,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,17.2,42,97600,1224,1338,426,947,806,207,98000,80600,24100,10810,280,4.1,3,3,19.3,77777,9,999999999,290,0.1180,0,88,999.000,999.0,99.0 +1988,8,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,14.4,33,97400,1198,1338,432,883,687,265,92900,69600,30500,13610,0,0.0,4,4,19.3,77777,9,999999999,250,0.1180,0,88,999.000,999.0,99.0 +1988,8,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,16.7,42,97400,1099,1338,437,692,490,287,74300,51200,32100,11140,210,6.2,7,7,24.1,7620,9,999999999,279,0.1180,0,88,999.000,999.0,99.0 +1988,8,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,16.7,42,97400,935,1338,432,436,143,336,47600,15100,37000,10160,240,4.1,7,6,24.1,7620,9,999999999,279,0.1180,0,88,999.000,999.0,99.0 +1988,8,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,15.6,40,97500,716,1338,424,466,534,178,49200,54000,20300,3880,240,4.1,8,5,19.3,7620,9,999999999,259,0.1180,0,88,999.000,999.0,99.0 +1988,8,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,16.1,42,97400,457,1338,414,261,423,115,27100,38900,13800,2190,190,3.1,6,2,19.3,77777,9,999999999,279,0.1180,0,88,999.000,999.0,99.0 +1988,8,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,97400,177,1338,407,74,225,44,7600,13600,5800,790,230,2.6,3,2,19.3,77777,9,999999999,300,0.1180,0,88,999.000,999.0,99.0 +1988,8,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,97500,3,212,394,1,3,0,0,0,0,0,250,2.6,1,1,19.3,77777,9,999999999,320,0.1180,0,88,999.000,999.0,99.0 +1988,8,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.9,60,97600,0,0,387,0,0,0,0,0,0,0,200,3.6,0,0,19.3,77777,9,999999999,320,0.1910,0,88,999.000,999.0,99.0 +1988,8,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,97600,0,0,379,0,0,0,0,0,0,0,200,3.1,0,0,19.3,77777,9,999999999,329,0.1910,0,88,999.000,999.0,99.0 +1988,8,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.8,67,97700,0,0,371,0,0,0,0,0,0,0,240,2.6,0,0,19.3,77777,9,999999999,309,0.1910,0,88,999.000,999.0,99.0 +1988,8,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,97700,0,0,376,0,0,0,0,0,0,0,170,2.6,4,1,16.1,77777,9,999999999,309,0.1910,0,88,999.000,999.0,99.0 +1988,8,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.2,69,97700,0,0,372,0,0,0,0,0,0,0,190,1.5,3,1,16.1,77777,9,999999999,300,0.1900,0,88,999.000,999.0,99.0 +1988,8,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,17.8,74,97700,0,0,363,0,0,0,0,0,0,0,130,1.5,0,0,16.1,77777,9,999999999,309,0.1900,0,88,999.000,999.0,99.0 +1988,8,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,97700,0,0,360,0,0,0,0,0,0,0,130,2.1,0,0,16.1,77777,9,999999999,300,0.1900,0,88,999.000,999.0,99.0 +1988,8,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,17.8,79,97700,0,0,358,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,309,0.1900,0,88,999.000,999.0,99.0 +1988,8,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,97700,0,0,353,0,0,0,0,0,0,0,120,1.5,0,0,16.1,77777,9,999999999,300,0.1900,0,88,999.000,999.0,99.0 +1988,8,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,97800,0,0,353,0,0,0,0,0,0,0,120,2.1,0,0,16.1,77777,9,999999999,309,0.1900,0,88,999.000,999.0,99.0 +1988,8,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,97900,94,1127,356,41,144,26,4100,6900,3500,460,130,1.5,0,0,9.7,77777,9,999999999,320,0.1060,0,88,999.000,999.0,99.0 +1988,8,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,97900,370,1339,366,203,528,56,21100,45800,8500,1070,140,2.1,0,0,8.0,77777,9,999999999,350,0.1060,0,88,999.000,999.0,99.0 +1988,8,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,20.0,74,97900,637,1339,377,419,704,83,43700,68600,11000,1750,0,0.0,0,0,9.7,77777,9,999999999,350,0.1060,0,88,999.000,999.0,99.0 +1988,8,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,19.4,63,97900,870,1339,387,625,798,105,66400,80200,14100,2660,90,1.5,0,0,11.3,77777,9,999999999,340,0.1060,0,88,999.000,999.0,99.0 +1988,8,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,98000,1053,1339,405,784,823,135,83200,83200,17600,4440,10,1.5,2,0,11.3,77777,9,999999999,340,0.1060,0,88,999.000,999.0,99.0 +1988,8,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,18.3,47,97900,1173,1339,406,890,860,135,91300,86100,15700,4930,100,2.1,1,0,11.3,77777,9,999999999,320,0.1060,0,88,999.000,999.0,99.0 +1988,8,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.9,47,97900,1221,1339,428,869,672,253,92000,68300,29500,14310,160,4.6,3,3,11.3,77777,9,999999999,329,0.1060,0,88,999.000,999.0,99.0 +1988,8,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,18.3,45,97800,1195,1339,431,835,649,254,88200,65900,29300,12910,160,5.2,4,4,11.3,77777,9,999999999,309,0.1060,0,88,999.000,999.0,99.0 +1988,8,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,16.7,41,97800,1096,1339,432,691,514,268,74600,53700,30600,10250,150,4.1,5,5,11.3,77777,9,999999999,290,0.1060,0,88,999.000,999.0,99.0 +1988,8,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.7,16.7,41,97800,931,1339,421,654,701,163,69100,71200,19400,4530,140,4.6,4,2,12.9,77777,9,999999999,290,0.1060,0,88,999.000,999.0,99.0 +1988,8,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,16.7,42,97800,711,1339,425,402,352,214,43100,36800,23500,4950,140,5.7,7,4,12.9,7620,9,999999999,290,0.1060,0,88,999.000,999.0,99.0 +1988,8,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,18.3,50,97800,451,1339,424,245,304,141,25700,28500,16100,2910,140,5.7,9,5,12.9,7620,9,999999999,320,0.1060,0,88,999.000,999.0,99.0 +1988,8,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,17.8,51,97900,172,1339,414,59,84,48,6400,5300,5700,1010,140,5.2,10,4,12.9,77777,9,999999999,300,0.1060,0,88,999.000,999.0,99.0 +1988,8,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,17.8,56,97900,2,167,402,1,2,1,0,0,0,0,120,4.1,7,3,12.9,77777,9,999999999,300,0.1060,0,88,999.000,999.0,99.0 +1988,8,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,98000,0,0,395,0,0,0,0,0,0,0,150,3.6,2,2,12.9,77777,9,999999999,350,0.1900,0,88,999.000,999.0,99.0 +1988,8,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,98000,0,0,378,0,0,0,0,0,0,0,140,3.6,2,0,11.3,77777,9,999999999,370,0.1900,0,88,999.000,999.0,99.0 +1988,8,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.6,82,98000,0,0,372,0,0,0,0,0,0,0,100,3.6,0,0,11.3,77777,9,999999999,359,0.1900,0,88,999.000,999.0,99.0 +1988,8,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,98100,0,0,365,0,0,0,0,0,0,0,90,3.1,0,0,11.3,77777,9,999999999,340,0.1900,0,88,999.000,999.0,99.0 +1988,8,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,98100,0,0,362,0,0,0,0,0,0,0,120,2.1,0,0,11.3,77777,9,999999999,329,0.1890,0,88,999.000,999.0,99.0 +1988,8,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,98000,0,0,363,0,0,0,0,0,0,0,90,2.1,0,0,11.3,77777,9,999999999,350,0.1890,0,88,999.000,999.0,99.0 +1988,8,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98000,0,0,360,0,0,0,0,0,0,0,90,3.6,0,0,11.3,77777,9,999999999,350,0.1890,0,88,999.000,999.0,99.0 +1988,8,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,98000,0,0,357,0,0,0,0,0,0,0,60,2.6,0,0,11.3,77777,9,999999999,350,0.1890,0,88,999.000,999.0,99.0 +1988,8,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,98000,0,0,360,0,0,0,0,0,0,0,60,2.1,0,0,11.3,77777,9,999999999,350,0.1890,0,88,999.000,999.0,99.0 +1988,8,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,98000,0,0,369,0,0,0,0,0,0,0,60,4.6,2,2,11.3,77777,9,999999999,350,0.1890,0,88,999.000,999.0,99.0 +1988,8,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,98100,91,1105,382,30,29,26,3100,1500,3000,540,70,5.2,7,6,9.7,90,9,999999999,350,0.1130,0,88,999.000,999.0,99.0 +1988,8,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,98100,367,1340,379,188,401,78,19900,34400,10500,1420,70,5.2,4,2,11.3,77777,9,999999999,359,0.1130,0,88,999.000,999.0,99.0 +1988,8,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.6,79,98100,635,1340,387,373,435,166,39100,43200,18600,3440,40,4.1,5,2,11.3,77777,9,999999999,359,0.1130,0,88,999.000,999.0,99.0 +1988,8,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,98100,868,1340,402,534,523,194,57600,54100,22500,4880,50,5.7,5,4,40.2,77777,9,999999999,350,0.1130,0,88,999.000,999.0,99.0 +1988,8,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,19.4,65,98100,1051,1340,405,600,484,219,65800,50600,26000,7450,70,5.7,4,4,40.2,77777,9,999999999,340,0.1130,0,88,999.000,999.0,99.0 +1988,8,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.9,59,98000,1170,1340,410,869,706,251,91700,71600,29000,11660,10,4.6,4,4,40.2,77777,9,999999999,329,0.1130,0,88,999.000,999.0,99.0 +1988,8,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,98000,1218,1340,432,702,320,410,76900,34800,45200,21390,60,4.6,8,8,40.2,1280,9,999999999,340,0.1130,0,88,999.000,999.0,99.0 +1988,8,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,19.4,59,97900,1192,1340,432,442,148,310,49600,15900,35400,14230,80,3.6,8,8,40.2,1280,9,999999999,340,0.1130,0,88,999.000,999.0,99.0 +1988,8,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,97800,1092,1340,448,278,50,237,30800,5100,26700,10280,40,2.6,9,9,40.2,1220,9,999999999,340,0.1130,0,88,999.000,999.0,99.0 +1988,8,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,97800,927,1340,426,565,449,253,59900,46500,27600,7010,340,3.1,8,5,40.2,7620,9,999999999,329,0.1130,0,88,999.000,999.0,99.0 +1988,8,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,31.1,19.4,50,97800,706,1340,425,455,597,138,47200,58900,16100,2960,60,2.6,5,3,40.2,77777,9,999999999,340,0.1130,0,88,999.000,999.0,99.0 +1988,8,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,97800,446,1340,419,247,345,131,26100,32300,15300,2670,50,4.1,9,3,40.2,77777,9,999999999,329,0.1130,0,88,999.000,999.0,99.0 +1988,8,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,97800,166,1340,419,61,74,51,6500,4600,5900,1070,60,3.1,9,4,40.2,77777,9,999999999,340,0.1130,0,88,999.000,999.0,99.0 +1988,8,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.0,63,97900,1,145,408,1,1,1,0,0,0,0,60,2.6,7,3,32.2,77777,9,999999999,350,0.1130,0,88,999.000,999.0,99.0 +1988,8,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.6,72,97900,0,0,403,0,0,0,0,0,0,0,70,3.6,4,4,32.2,77777,9,999999999,359,0.1890,0,88,999.000,999.0,99.0 +1988,8,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.1,79,98000,0,0,385,0,0,0,0,0,0,0,110,3.1,1,1,24.1,77777,9,999999999,370,0.1890,0,88,999.000,999.0,99.0 +1988,8,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.1,82,98000,0,0,375,0,0,0,0,0,0,0,130,3.1,1,0,24.1,77777,9,999999999,370,0.1890,0,88,999.000,999.0,99.0 +1988,8,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,98000,0,0,373,0,0,0,0,0,0,0,150,3.1,0,0,24.1,77777,9,999999999,379,0.1890,0,88,999.000,999.0,99.0 +1988,8,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,21.7,90,98000,0,0,370,0,0,0,0,0,0,0,170,7.2,1,0,24.1,77777,9,999999999,379,0.1880,0,88,999.000,999.0,99.0 +1988,8,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98000,0,0,367,0,0,0,0,0,0,0,170,7.2,2,0,24.1,77777,9,999999999,370,0.1880,0,88,999.000,999.0,99.0 +1988,8,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,97900,0,0,367,0,0,0,0,0,0,0,170,7.2,2,0,24.1,77777,9,999999999,370,0.1880,0,88,999.000,999.0,99.0 +1988,8,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.1,94,97900,0,0,371,0,0,0,0,0,0,0,140,6.2,2,1,24.1,77777,9,999999999,370,0.1880,0,88,999.000,999.0,99.0 +1988,8,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,97900,0,0,367,0,0,0,0,0,0,0,150,6.2,1,0,24.1,77777,9,999999999,370,0.1880,0,88,999.000,999.0,99.0 +1988,8,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.1,94,98000,0,0,364,0,0,0,0,0,0,0,150,6.7,1,0,24.1,77777,9,999999999,370,0.1880,0,88,999.000,999.0,99.0 +1988,8,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,98000,89,1083,367,35,39,31,3700,2000,3600,640,190,6.2,3,0,19.3,77777,9,999999999,370,0.2050,0,88,999.000,999.0,99.0 +1988,8,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,21.7,85,98000,364,1340,376,189,308,105,19900,26700,12700,2080,150,6.2,8,0,16.1,77777,9,999999999,379,0.2050,0,88,999.000,999.0,99.0 +1988,8,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,21.7,74,98000,632,1340,395,382,500,145,40600,49700,17100,2960,300,7.2,5,1,16.1,77777,9,999999999,379,0.2050,0,88,999.000,999.0,99.0 +1988,8,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,21.1,63,98100,866,1340,406,569,602,179,59400,60400,20300,4450,280,7.2,3,1,19.3,77777,9,999999999,370,0.2050,0,88,999.000,999.0,99.0 +1988,8,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,98000,1048,1340,419,719,577,266,77300,60200,30100,9110,230,6.7,3,3,24.1,77777,9,999999999,340,0.2050,0,88,999.000,999.0,99.0 +1988,8,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,98000,1168,1340,438,728,368,407,79400,39900,44500,18110,210,6.7,7,7,24.1,7620,9,999999999,340,0.2050,0,88,999.000,999.0,99.0 +1988,8,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,20.0,55,98000,1216,1340,452,540,147,407,59700,15700,45500,19980,330,8.2,9,9,19.3,2440,9,999999999,350,0.2050,0,88,999.000,999.0,99.0 +1988,8,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.8,18.3,42,97900,1188,1340,437,698,399,342,74500,41700,37400,17420,320,6.2,5,4,19.3,77777,9,999999999,309,0.2050,0,88,999.000,999.0,99.0 +1988,8,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,33.3,17.2,38,97800,1088,1340,435,688,492,287,73800,51400,32000,10800,330,7.2,4,3,19.3,77777,9,999999999,290,0.2050,0,88,999.000,999.0,99.0 +1988,8,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.8,42,97700,922,1340,429,604,511,250,64000,52900,27500,6870,340,8.2,4,3,19.3,77777,9,999999999,300,0.2050,0,88,999.000,999.0,99.0 +1988,8,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,32.2,17.8,42,97700,701,1340,433,431,483,176,45400,48700,19900,3800,320,8.8,4,4,16.1,77777,9,999999999,300,0.2050,0,88,999.000,999.0,99.0 +1988,8,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,20.0,57,97700,441,1340,407,230,382,103,24100,34800,12600,1940,340,10.3,4,1,16.1,77777,9,999999999,350,0.2050,0,88,999.000,999.0,99.0 +1988,8,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,20.6,65,97700,160,1340,399,58,107,45,6100,5800,5400,840,360,9.8,4,1,11.3,77777,9,999999999,359,0.2050,0,88,999.000,999.0,99.0 +1988,8,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,21.1,69,97800,1,123,397,0,0,0,0,0,0,0,40,8.2,3,1,11.3,77777,9,999999999,370,0.2050,0,88,999.000,999.0,99.0 +1988,8,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.6,74,97900,0,0,397,0,0,0,0,0,0,0,140,8.8,3,3,11.3,77777,9,999999999,359,0.1880,0,88,999.000,999.0,99.0 +1988,8,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,97900,0,0,385,0,0,0,0,0,0,0,160,7.2,2,2,11.3,77777,9,999999999,340,0.1880,0,88,999.000,999.0,99.0 +1988,8,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,97900,0,0,385,0,0,0,0,0,0,0,0,0.0,2,2,11.3,77777,9,999999999,340,0.1880,0,88,999.000,999.0,99.0 +1988,8,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,20.6,85,97900,0,0,369,0,0,0,0,0,0,0,300,3.6,0,0,11.3,77777,9,999999999,359,0.1880,0,88,999.000,999.0,99.0 +1988,8,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.1,90,97900,0,0,367,0,0,0,0,0,0,0,310,2.6,0,0,11.3,77777,9,999999999,370,0.1880,0,88,999.000,999.0,99.0 +1988,8,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.0,87,97800,0,0,363,0,0,0,0,0,0,0,310,3.1,2,0,11.3,77777,9,999999999,350,0.1880,0,88,999.000,999.0,99.0 +1988,8,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.6,97,97800,0,0,358,0,0,0,0,0,0,0,330,2.6,2,0,11.3,77777,9,999999999,359,0.1880,0,88,999.000,999.0,99.0 +1988,8,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,97700,0,0,371,0,0,0,0,0,0,0,320,2.6,7,3,11.3,77777,9,999999999,309,0.1880,0,88,999.000,999.0,99.0 +1988,8,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,97800,0,0,388,0,0,0,0,0,0,0,320,3.1,10,8,11.3,3050,9,999999999,309,0.1880,0,88,999.000,999.0,99.0 +1988,8,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,97800,0,0,396,0,0,0,0,0,0,0,320,1.5,10,9,11.3,3050,9,999999999,309,0.1880,0,88,999.000,999.0,99.0 +1988,8,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.9,93,97900,87,1084,375,36,13,35,3900,800,3900,800,310,2.6,9,6,4.0,3050,9,999999999,320,0.1110,0,88,999.000,999.0,99.0 +1988,8,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,97900,361,1341,385,138,116,106,14900,10200,12200,2340,310,4.1,9,7,4.0,3050,9,999999999,320,0.1110,0,88,999.000,999.0,99.0 +1988,8,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,97900,630,1341,391,353,327,199,37600,33500,21800,4430,320,3.1,10,7,4.0,7620,9,999999999,329,0.1110,0,88,999.000,999.0,99.0 +1988,8,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,19.4,71,97900,863,1341,407,427,140,337,46300,14700,36800,9530,30,1.5,10,7,6.4,7620,9,999999999,329,0.1110,0,88,999.000,999.0,99.0 +1988,8,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,20.0,72,97900,1046,1341,411,499,181,357,54700,19200,39700,12320,330,3.1,10,7,6.4,7620,9,999999999,350,0.1110,0,88,999.000,999.0,99.0 +1988,8,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,21.1,77,97900,1165,1341,440,202,17,188,22600,1700,21100,9140,320,3.1,10,10,8.0,7620,9,999999999,370,0.1110,0,88,999.000,999.0,99.0 +1988,8,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,20.0,67,97900,1213,1341,445,365,12,354,43300,1100,42300,15940,320,4.1,10,10,4.8,3050,9,999999999,350,0.1110,0,88,999.000,999.0,99.0 +1988,8,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,19.4,55,97700,1185,1341,438,637,298,373,70000,32400,41300,17240,60,1.5,10,8,8.0,3050,9,999999999,329,0.1110,0,88,999.000,999.0,99.0 +1988,8,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,18.9,53,97700,1085,1341,459,273,3,270,32400,300,32200,12670,90,1.5,10,10,9.7,3050,9,999999999,320,0.1110,0,88,999.000,999.0,99.0 +1988,8,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,19.4,53,97600,918,1341,419,587,536,218,63000,55600,24900,5890,0,0.0,7,3,16.1,77777,9,999999999,329,0.1110,0,88,999.000,999.0,99.0 +1988,8,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.6,19.4,52,97600,696,1341,445,275,102,221,30100,10200,24800,6720,350,2.6,8,8,11.3,7620,9,999999999,340,0.1110,0,88,999.000,999.0,99.0 +1988,8,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,19.4,57,97600,435,1341,445,170,99,137,18300,9200,15300,3100,340,5.2,9,9,11.3,1220,9,999999999,340,0.1110,0,88,999.000,999.0,99.0 +1988,8,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,20.0,69,97600,154,1341,390,58,192,36,6100,10700,4800,640,320,4.6,3,1,11.3,77777,9,999999999,350,0.1110,0,88,999.000,999.0,99.0 +1988,8,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,19.4,74,97700,1,101,373,2,1,1,0,0,0,0,10,4.1,3,0,11.3,77777,9,999999999,340,0.1110,0,88,999.000,999.0,99.0 +1988,8,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,97800,0,0,406,0,0,0,0,0,0,0,360,3.6,8,8,11.3,910,9,999999999,329,0.1880,0,88,999.000,999.0,99.0 +1988,8,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.0,84,97800,0,0,402,0,0,0,0,0,0,0,110,3.1,8,8,11.3,910,9,999999999,350,0.1880,0,88,999.000,999.0,99.0 +1988,8,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,20.6,87,97800,0,0,385,0,0,0,0,0,0,0,130,3.1,4,4,11.3,77777,9,999999999,359,0.1880,0,88,999.000,999.0,99.0 +1988,8,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,20.6,90,97800,0,0,399,0,0,0,0,0,0,0,140,2.1,8,8,11.3,910,9,999999999,359,0.1880,0,88,999.000,999.0,99.0 +1988,8,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,97800,0,0,383,0,0,0,0,0,0,0,80,2.1,5,5,9.7,77777,9,999999999,359,0.1870,0,88,999.000,999.0,99.0 +1988,8,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,97800,0,0,386,0,0,0,0,0,0,0,40,3.1,8,6,6.4,910,9,999999999,359,0.1870,0,88,999.000,999.0,99.0 +1988,8,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.1,94,97800,0,0,409,0,0,0,0,0,0,0,50,3.6,9,9,3.2,910,9,999999999,370,0.1870,0,88,999.000,999.0,99.0 +1988,8,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,21.1,94,97800,0,0,400,0,0,0,0,0,0,0,70,5.2,10,8,3.2,120,9,999999999,370,0.1870,0,88,999.000,999.0,99.0 +1988,8,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,97800,0,0,417,0,0,0,0,0,0,0,60,6.7,10,10,3.2,150,9,999999999,359,0.1870,0,88,999.000,999.0,99.0 +1988,8,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.0,90,97900,0,0,416,0,0,0,0,0,0,0,70,5.2,10,10,3.2,150,9,999999999,350,0.1870,0,88,999.000,999.0,99.0 +1988,8,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,97900,84,1062,412,27,2,27,3000,0,3000,890,60,4.6,10,10,3.2,150,9,999999999,350,0.2360,0,88,999.000,999.0,99.0 +1988,8,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,97900,359,1342,412,57,0,57,6700,0,6700,2300,80,5.2,10,10,3.2,150,9,999999999,350,0.2360,0,88,999.000,999.0,99.0 +1988,8,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,98000,627,1342,412,134,0,134,15600,0,15600,5730,80,5.7,10,10,2.4,150,9,999999999,350,0.2360,0,88,999.000,999.0,99.0 +1988,8,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,98100,861,1342,418,321,9,316,36500,900,35900,12490,70,6.2,10,10,2.4,240,9,999999999,329,0.2360,0,88,999.000,999.0,99.0 +1988,8,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,98100,1044,1342,421,300,5,296,35200,400,34800,13370,90,5.2,10,10,4.0,310,9,999999999,340,0.2360,0,88,999.000,999.0,99.0 +1988,8,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,20.0,79,98100,1163,1342,428,351,7,345,41400,600,40900,15450,100,6.2,10,10,6.4,430,9,999999999,350,0.2360,0,88,999.000,999.0,99.0 +1988,8,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,98100,1210,1342,419,381,90,299,42800,9700,34100,14370,90,5.7,10,9,6.4,430,9,999999999,350,0.2360,0,88,999.000,999.0,99.0 +1988,8,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,98100,1182,1342,428,381,2,379,44700,200,44500,16570,60,6.2,10,10,8.0,430,9,999999999,340,0.2360,0,88,999.000,999.0,99.0 +1988,8,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,19.4,76,98100,1081,1342,428,272,25,252,30100,2500,28100,10700,70,5.7,10,10,8.0,430,9,999999999,340,0.2360,0,88,999.000,999.0,99.0 +1988,8,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,18.9,76,98000,913,1342,424,268,7,263,31100,600,30700,11500,70,6.2,10,10,8.0,520,9,999999999,320,0.2360,0,88,999.000,999.0,99.0 +1988,8,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,98000,691,1342,421,198,7,195,22700,600,22400,7950,70,6.2,10,10,6.4,460,9,999999999,329,0.2360,0,88,999.000,999.0,99.0 +1988,8,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,98000,430,1342,421,123,4,122,13800,300,13700,4410,70,5.7,10,10,6.4,460,9,999999999,329,0.2360,0,88,999.000,999.0,99.0 +1988,8,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,98100,149,1342,417,37,1,37,4100,0,4100,1220,70,5.7,10,10,8.0,400,9,999999999,329,0.2360,0,88,999.000,999.0,99.0 +1988,8,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,98100,0,56,418,1,0,1,0,0,0,0,100,4.6,10,10,8.0,430,9,999999999,329,0.2360,0,88,999.000,999.0,99.0 +1988,8,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,98200,0,0,404,0,0,0,0,0,0,0,100,4.6,9,9,9.7,7620,9,999999999,340,0.1870,0,88,999.000,999.0,99.0 +1988,8,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.6,19.1,84,98300,0,0,414,0,0,0,0,0,0,0,100,4.3,10,10,9.7,760,9,999999999,329,0.1870,0,88,999.000,999.0,99.0 +1988,8,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.5,18.8,79,98300,0,0,413,0,0,0,0,0,0,0,90,4.0,10,10,11.3,760,9,999999999,309,0.1870,0,88,999.000,999.0,99.0 +1988,8,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.4,18.5,76,98300,0,0,412,0,0,0,0,0,0,0,90,3.7,10,10,11.3,760,9,999999999,300,0.1870,0,88,999.000,999.0,99.0 +1996,9,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.4,18.1,76,97800,0,0,357,0,0,0,0,0,0,0,90,3.5,0,0,8.0,77777,9,999999999,379,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.3,17.8,78,97800,0,0,368,0,0,0,0,0,0,0,70,3.2,2,2,8.0,77777,9,999999999,379,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.2,17.5,78,97800,0,0,399,0,0,0,0,0,0,0,70,2.9,9,9,8.0,1402,9,999999999,379,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.2,78,97800,0,0,409,0,0,0,0,0,0,0,90,2.6,10,10,8.0,2438,9,999999999,390,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,97800,0,0,407,0,0,0,0,0,0,0,60,3.6,10,10,6.4,2134,9,999999999,390,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.2,81,97900,0,0,406,0,0,0,0,0,0,0,80,4.1,10,10,6.4,2743,9,999999999,390,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.2,81,97900,82,1040,395,33,2,33,3600,0,3600,1020,80,4.1,9,9,4.8,2438,9,999999999,390,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.7,81,97900,356,1342,391,130,27,123,14200,2400,13600,3020,60,5.7,9,9,8.0,1036,9,999999999,400,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.8,81,97900,625,1342,398,248,98,203,27300,9700,22800,5880,60,5.2,9,9,6.4,2743,9,999999999,400,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.3,81,98000,858,1342,402,320,70,275,35200,7100,30600,9240,60,5.7,9,9,6.4,2438,9,999999999,400,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.3,76,98000,1041,1342,408,442,231,262,49000,25100,29500,8440,60,4.1,9,9,8.0,2591,9,999999999,409,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,17.8,69,97900,1160,1342,391,721,469,315,77400,49000,35000,14430,70,6.2,5,5,11.2,77777,9,999999999,409,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,17.2,62,97900,1206,1342,396,548,237,335,60900,25800,37700,16330,70,5.7,5,5,14.4,77777,9,999999999,409,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.2,60,97900,1178,1342,423,393,0,392,45900,0,45900,16930,80,6.7,9,9,16.0,2438,9,999999999,419,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.8,58,97800,1077,1342,430,474,218,299,52300,23700,33300,10420,70,6.7,9,9,14.4,2438,9,999999999,419,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,16.7,62,97800,909,1342,415,338,78,285,37200,7900,31800,9970,70,5.7,9,9,16.0,2438,9,999999999,419,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,16.7,62,97800,686,1342,415,160,62,128,17700,6100,14500,4210,60,5.2,9,9,16.0,2438,9,999999999,419,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,17.2,66,97800,424,1342,425,66,0,66,7800,0,7800,2750,80,5.2,10,10,14.4,2438,9,999999999,430,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,17.2,69,97800,142,1342,421,27,0,27,3100,0,3100,960,80,4.6,10,10,14.4,2134,9,999999999,430,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,97800,0,34,419,0,0,0,0,0,0,0,80,4.1,10,10,16.0,1829,9,999999999,430,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,97800,0,0,419,0,0,0,0,0,0,0,110,3.6,10,10,16.0,1219,9,999999999,440,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.3,79,97900,0,0,416,0,0,0,0,0,0,0,120,2.6,10,10,12.8,1524,9,999999999,440,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,16.1,73,97900,0,0,407,0,0,0,0,0,0,0,120,3.1,10,10,16.0,1981,9,999999999,440,0.1890,0,88,0.180,0.0,1.0 +1996,9,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.0,17.0,88,97900,0,0,397,0,0,0,0,0,0,0,60,3.6,10,10,8.0,1350,9,999999999,450,0.1890,0,88,0.180,0.0,1.0 +1996,9,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.8,87,97800,0,0,404,0,0,0,0,0,0,0,80,2.6,10,10,11.2,701,9,999999999,450,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.8,87,97800,0,0,404,0,0,0,0,0,0,0,90,3.1,10,10,11.2,1372,9,999999999,450,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.2,84,97800,0,0,403,0,0,0,0,0,0,0,60,2.6,10,10,12.8,1158,9,999999999,459,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.2,81,97800,0,0,406,0,0,0,0,0,0,0,80,4.1,10,10,16.0,1189,9,999999999,459,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.8,87,97800,0,0,404,0,0,0,0,0,0,0,70,4.6,10,10,14.4,1006,9,999999999,459,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.3,87,97800,0,0,408,0,0,0,0,0,0,0,60,5.2,10,10,12.8,183,9,999999999,459,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.3,87,97800,79,1041,408,14,0,14,1600,0,1600,530,60,4.1,10,10,16.0,975,9,999999999,469,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.8,81,97900,353,1343,410,56,0,56,6500,0,6500,2260,50,5.2,10,10,16.0,762,9,999999999,469,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.9,90,97900,622,1343,408,113,0,113,13300,0,13300,4980,70,4.6,10,10,4.8,914,9,999999999,469,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.9,87,97900,856,1343,411,174,0,174,20700,0,20700,8130,80,4.6,10,10,6.4,701,9,999999999,459,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,19.4,87,97900,1038,1343,415,187,0,187,22700,0,22700,9300,80,5.2,10,10,11.2,244,9,999999999,459,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,97900,1157,1343,418,213,0,213,26000,0,26000,10610,90,4.1,10,10,4.8,274,9,999999999,459,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,97900,1203,1343,421,223,0,223,27300,0,27300,11100,90,3.6,10,10,16.0,366,9,999999999,459,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.0,84,97800,1175,1343,422,216,0,216,26400,0,26400,10760,90,4.6,10,10,11.2,305,9,999999999,459,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,97800,1072,1343,425,194,0,194,23600,0,23600,9680,80,4.6,10,10,12.8,244,9,999999999,459,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,97700,904,1343,425,157,0,157,18900,0,18900,7650,100,3.6,10,10,12.8,305,9,999999999,459,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,97700,681,1343,425,107,0,107,12800,0,12800,4940,90,4.1,10,10,12.8,305,9,999999999,450,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,97700,418,1343,426,54,0,54,6400,0,6400,2310,80,4.1,10,10,14.4,305,9,999999999,450,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,97700,136,1343,423,21,0,21,2400,0,2400,770,70,3.6,10,10,12.8,305,9,999999999,450,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,97800,0,11,423,0,0,0,0,0,0,0,80,4.6,10,10,14.4,396,9,999999999,450,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,97800,0,0,419,0,0,0,0,0,0,0,70,5.7,10,10,16.0,274,9,999999999,450,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,97800,0,0,419,0,0,0,0,0,0,0,80,6.2,10,10,16.0,213,9,999999999,450,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,97800,0,0,416,0,0,0,0,0,0,0,80,3.6,10,10,16.0,152,9,999999999,450,0.1880,0,88,0.180,0.0,1.0 +1996,9,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,97800,0,0,416,0,0,0,0,0,0,0,80,3.6,10,10,12.8,152,9,999999999,440,0.1880,0,88,0.180,0.0,1.0 +1996,9,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,97800,0,0,416,0,0,0,0,0,0,0,90,3.1,10,10,12.8,91,9,999999999,440,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.0,21.0,94,97600,0,0,419,0,0,0,0,0,0,0,80,5.7,10,10,2.0,30,9,999999999,440,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.6,93,97700,0,0,417,0,0,0,0,0,0,0,90,3.6,10,10,2.0,30,9,999999999,440,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.7,94,97700,0,0,417,0,0,0,0,0,0,0,70,4.1,10,10,2.0,30,9,999999999,440,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.6,93,97700,0,0,417,0,0,0,0,0,0,0,50,3.1,10,10,2.0,30,9,999999999,440,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.6,93,97800,0,0,417,0,0,0,0,0,0,0,70,2.6,10,10,2.0,30,9,999999999,440,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.6,93,97800,77,1019,417,8,0,8,1000,0,1000,320,90,3.1,10,10,0.4,30,9,999999999,430,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,97800,350,1344,419,41,0,41,4900,0,4900,1730,100,3.1,10,10,6.8,30,9,999999999,430,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,97800,619,1344,423,87,0,87,10500,0,10500,3990,130,2.1,10,10,4.8,91,9,999999999,430,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.6,79,97800,853,1344,432,154,0,154,18500,0,18500,7350,130,1.5,10,10,4.8,274,9,999999999,430,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,97800,1036,1344,436,230,0,230,27500,0,27500,11010,130,2.1,10,10,16.0,427,9,999999999,419,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.1,71,97800,1154,1344,446,259,0,259,31200,0,31200,12440,120,1.5,10,10,16.0,945,9,999999999,419,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.6,63,97700,1200,1344,418,667,464,252,73700,48700,30100,13090,120,2.6,5,5,16.0,77777,9,999999999,419,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.1,65,97700,1171,1344,456,263,0,263,31700,0,31700,12630,110,1.5,10,10,16.0,1158,9,999999999,419,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,20.0,57,97600,1068,1344,448,479,54,435,52600,5600,48200,16620,70,1.5,9,9,16.0,1676,9,999999999,409,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,21.1,59,97500,899,1344,428,553,492,223,59200,50900,25000,5870,40,2.1,5,5,16.0,77777,9,999999999,409,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,19.4,53,97500,675,1344,451,166,64,133,18200,6300,15100,4320,0,0.0,9,9,16.0,2743,9,999999999,409,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.6,65,97500,412,1344,440,118,48,103,12900,4400,11600,2810,280,4.1,9,9,16.0,1097,9,999999999,409,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.3,64,97500,131,1310,409,38,73,31,4100,3600,3700,550,40,5.7,7,7,16.0,1433,9,999999999,409,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,97600,0,0,385,0,0,0,0,0,0,0,50,3.6,5,5,16.0,77777,9,999999999,400,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.3,79,97700,0,0,382,0,0,0,0,0,0,0,130,2.1,5,5,16.0,77777,9,999999999,400,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,97700,0,0,409,0,0,0,0,0,0,0,140,1.5,9,9,16.0,1158,9,999999999,400,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.2,76,97600,0,0,373,0,0,0,0,0,0,0,220,2.1,3,3,16.0,77777,9,999999999,400,0.1870,0,88,0.180,0.0,1.0 +1996,9,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.2,78,97500,0,0,354,0,0,0,0,0,0,0,240,1.5,0,0,16.0,77777,9,999999999,390,0.1870,0,88,0.180,0.0,1.0 +1996,9,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.8,81,97600,0,0,355,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,390,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,97600,0,0,353,0,0,0,0,0,0,0,20,2.1,0,0,16.0,77777,9,999999999,390,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.8,84,97500,0,0,364,0,0,0,0,0,0,0,100,1.5,2,2,16.0,77777,9,999999999,390,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.8,87,97600,0,0,392,0,0,0,0,0,0,0,70,2.1,10,9,16.0,244,9,999999999,379,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.8,87,97600,0,0,350,0,0,0,0,0,0,0,60,2.6,0,0,16.0,77777,9,999999999,379,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.3,90,97600,0,0,365,0,0,0,0,0,0,0,0,0.0,3,3,14.4,77777,9,999999999,379,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.3,84,97600,75,997,367,24,117,16,2800,5300,2300,270,0,0.0,2,2,12.8,77777,9,999999999,379,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,97700,347,1344,380,192,437,79,20200,36600,10700,1450,70,4.1,3,3,14.4,77777,9,999999999,379,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,97700,617,1344,399,347,311,204,36800,31700,22200,4560,90,2.6,5,5,12.8,77777,9,999999999,379,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.6,69,97700,851,1344,403,567,646,158,59700,65100,18400,3910,60,2.6,3,3,16.0,77777,9,999999999,379,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.7,67,97700,1033,1344,419,446,328,194,49500,34300,23000,6280,40,2.1,5,5,16.0,77777,9,999999999,379,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.6,67,97600,1151,1344,436,500,51,456,55100,5300,50500,19430,20,3.1,10,9,16.0,1250,9,999999999,379,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.0,63,97500,1197,1344,439,244,61,189,28200,6600,22300,8700,0,0.0,10,9,12.8,1067,9,999999999,379,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,21.1,74,97500,1167,1344,431,411,55,363,45400,5600,40500,16490,0,0.0,10,9,8.0,610,9,999999999,390,0.1860,0,88,0.180,5.0,1.0 +1996,9,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,19.4,59,97400,1064,1344,416,636,410,312,67600,42700,33700,11100,70,1.5,5,5,16.0,77777,9,999999999,390,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.1,67,97400,895,1344,416,568,547,204,61400,56600,23600,5300,140,4.1,5,5,16.0,77777,9,999999999,390,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,19.4,59,97400,670,1344,416,369,493,123,38600,48500,14400,2590,170,2.1,5,5,16.0,77777,9,999999999,390,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.9,61,97400,406,1344,410,157,118,122,17100,10800,13900,2730,200,2.1,5,5,16.0,77777,9,999999999,390,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,97400,125,1288,398,41,103,31,4400,5000,3900,550,120,2.1,5,5,16.0,77777,9,999999999,390,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,18.9,67,97500,0,0,401,0,0,0,0,0,0,0,40,3.1,5,5,16.0,77777,9,999999999,400,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,19.4,71,97500,0,0,422,0,0,0,0,0,0,0,50,3.6,10,9,16.0,1829,9,999999999,400,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.0,79,97600,0,0,393,0,0,0,0,0,0,0,50,3.6,5,5,16.0,77777,9,999999999,400,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,97600,0,0,414,0,0,0,0,0,0,0,80,2.6,10,9,14.4,640,9,999999999,400,0.1860,0,88,0.180,0.0,1.0 +1996,9,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,97600,0,0,413,0,0,0,0,0,0,0,90,1.5,10,9,16.0,2134,9,999999999,400,0.1860,0,88,0.180,0.0,1.0 +1996,9,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,97500,0,0,419,0,0,0,0,0,0,0,70,2.1,10,10,14.4,3353,9,999999999,400,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,97500,0,0,407,0,0,0,0,0,0,0,60,5.2,9,9,14.4,305,9,999999999,400,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,97500,0,0,419,0,0,0,0,0,0,0,60,4.1,10,10,14.4,213,9,999999999,409,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,19.4,90,97500,0,0,369,0,0,0,0,0,0,0,70,4.6,2,2,12.8,77777,9,999999999,409,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,97500,0,0,416,0,0,0,0,0,0,0,60,4.1,10,10,11.2,152,9,999999999,409,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,97500,0,0,416,0,0,0,0,0,0,0,70,4.1,10,10,9.6,91,9,999999999,409,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,97600,73,998,419,16,0,16,1900,0,1900,590,60,4.1,10,10,9.6,3658,9,999999999,409,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,97600,345,1345,423,52,0,52,6100,0,6100,2100,70,4.6,10,10,9.6,640,9,999999999,409,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,97600,614,1345,421,284,41,265,31000,4100,29200,7040,80,5.2,9,9,12.8,274,9,999999999,409,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,97700,848,1345,428,371,68,328,40700,7000,36300,10480,80,5.7,9,9,16.0,792,9,999999999,409,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,97600,1030,1345,436,223,0,223,26700,0,26700,10720,60,5.7,10,10,16.0,579,9,999999999,409,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,21.1,67,97600,1148,1345,440,746,228,551,80400,24000,59800,22610,60,4.1,9,9,16.0,853,9,999999999,409,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.6,61,97500,1194,1345,446,398,41,361,44000,4200,40200,17150,40,4.1,9,9,16.0,1829,9,999999999,400,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.6,63,97500,1163,1345,443,444,97,360,49200,10400,40200,15250,40,4.6,9,9,16.0,1829,9,999999999,400,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.0,55,97400,1060,1345,427,517,260,312,56700,28200,34500,10580,40,4.1,5,5,16.0,77777,9,999999999,400,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,18.3,55,97300,890,1345,405,575,600,178,60300,60400,20300,4570,80,3.6,2,2,16.0,77777,9,999999999,400,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,18.9,53,97300,665,1345,415,400,485,160,42500,48500,18400,3350,80,3.6,3,3,16.0,77777,9,999999999,400,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,18.3,53,97300,401,1345,418,181,160,133,19500,14500,15200,2970,40,3.6,5,5,16.0,77777,9,999999999,400,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,18.3,58,97300,119,1267,403,37,107,27,4000,5100,3500,470,60,4.6,3,3,16.0,77777,9,999999999,400,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.9,65,97400,0,0,404,0,0,0,0,0,0,0,70,4.6,5,5,16.0,77777,9,999999999,400,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,18.9,62,97500,0,0,443,0,0,0,0,0,0,0,80,3.1,10,10,16.0,1829,9,999999999,390,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.9,65,97500,0,0,440,0,0,0,0,0,0,0,80,1.5,10,10,16.0,2134,9,999999999,390,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.9,65,97500,0,0,440,0,0,0,0,0,0,0,0,0.0,10,10,16.0,2134,9,999999999,390,0.1850,0,88,0.180,0.0,1.0 +1996,9,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,97400,0,0,371,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,390,0.1850,0,88,0.180,0.0,1.0 +1996,9,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,97400,0,0,362,0,0,0,0,0,0,0,280,2.6,2,0,16.0,77777,9,999999999,390,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.9,84,97400,0,0,359,0,0,0,0,0,0,0,280,2.6,3,0,16.0,77777,9,999999999,390,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,19.4,87,97400,0,0,360,0,0,0,0,0,0,0,280,2.6,2,0,14.4,77777,9,999999999,390,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,97400,0,0,360,0,0,0,0,0,0,0,280,2.6,3,0,14.4,77777,9,999999999,390,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,19.4,90,97400,0,0,357,0,0,0,0,0,0,0,270,2.6,2,0,16.0,77777,9,999999999,379,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,97500,0,0,360,0,0,0,0,0,0,0,280,2.6,3,0,14.4,77777,9,999999999,379,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,97500,71,976,363,21,58,17,2400,2300,2200,290,280,3.1,2,0,11.2,77777,9,999999999,379,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,97600,342,1346,375,173,402,71,18400,33500,9900,1290,290,3.6,3,0,16.0,77777,9,999999999,379,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.1,71,97600,611,1346,387,387,617,106,40500,60000,13200,2170,260,4.1,2,0,16.0,77777,9,999999999,390,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.6,63,97600,846,1346,394,541,578,177,56400,57800,20000,4270,280,3.6,3,0,16.0,77777,9,999999999,390,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,20.6,61,97600,1028,1346,411,690,574,251,74400,59800,28600,8140,310,5.7,7,2,16.0,77777,9,999999999,390,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,21.1,57,97600,1145,1346,425,755,612,234,80000,62200,26900,9930,280,6.2,8,3,16.0,77777,9,999999999,390,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,21.1,55,97500,1190,1346,434,854,488,423,89500,50800,44400,21600,290,5.2,10,5,16.0,77777,9,999999999,390,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,21.1,55,97500,1160,1346,434,787,490,364,83300,51100,39100,16670,310,3.6,10,5,16.0,77777,9,999999999,400,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,20.0,57,97500,1055,1346,423,684,408,364,74200,44100,39500,12510,300,4.1,10,5,16.0,77777,9,999999999,400,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.0,55,97500,885,1346,427,419,118,341,46000,12100,38000,11190,260,3.1,10,5,16.0,77777,9,999999999,400,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,20.0,53,97500,659,1346,419,397,437,183,41500,43600,20100,3870,260,2.6,7,2,16.0,77777,9,999999999,400,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,20.6,59,97500,395,1346,418,198,294,112,21000,26300,13300,2230,250,3.1,8,3,16.0,77777,9,999999999,400,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.6,65,97500,113,1222,405,36,55,30,3900,3000,3600,620,230,1.5,7,2,16.0,77777,9,999999999,409,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,97500,0,0,389,0,0,0,0,0,0,0,240,1.5,3,0,16.0,77777,9,999999999,409,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.6,69,97600,0,0,386,0,0,0,0,0,0,0,240,1.5,2,0,16.0,77777,9,999999999,409,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.1,71,97600,0,0,410,0,0,0,0,0,0,0,240,3.1,10,5,16.0,77777,9,999999999,409,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,97600,0,0,378,0,0,0,0,0,0,0,220,1.5,2,0,12.8,77777,9,999999999,409,0.1840,0,88,0.180,0.0,1.0 +1996,9,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,97600,0,0,375,0,0,0,0,0,0,0,260,2.1,3,0,11.2,77777,9,999999999,419,0.1840,0,88,0.180,0.0,1.0 +1996,9,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,97600,0,0,373,0,0,0,0,0,0,0,240,2.1,3,0,9.6,77777,9,999999999,419,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.1,87,97600,0,0,370,0,0,0,0,0,0,0,260,2.6,2,0,9.6,77777,9,999999999,419,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,97600,0,0,369,0,0,0,0,0,0,0,260,2.1,3,0,8.0,77777,9,999999999,419,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,97600,0,0,366,0,0,0,0,0,0,0,270,2.1,2,0,11.2,77777,9,999999999,419,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,97600,0,0,363,0,0,0,0,0,0,0,270,2.6,3,0,8.0,77777,9,999999999,419,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,97700,0,0,363,0,0,0,0,0,0,0,270,2.6,2,0,6.4,77777,9,999999999,430,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,97700,69,954,366,22,66,17,2400,2600,2200,290,0,0.0,3,0,4.8,77777,9,999999999,430,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,97800,339,1346,375,173,430,64,17700,35800,8700,1170,270,2.6,2,0,6.4,77777,9,999999999,430,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,97700,609,1346,387,387,623,105,40500,60500,13100,2150,280,3.1,3,0,8.0,77777,9,999999999,419,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.6,65,97800,843,1346,392,586,729,129,62500,74000,16100,3240,300,4.1,2,0,11.2,77777,9,999999999,419,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,21.1,61,97900,1025,1346,409,710,714,166,76000,73100,20300,5400,290,4.1,6,1,9.6,77777,9,999999999,419,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.0,52,97700,1142,1346,422,756,580,263,79300,58500,29500,10920,250,3.1,9,2,11.2,77777,9,999999999,419,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,20.0,53,97700,1187,1346,427,778,557,286,84700,58300,33100,14100,270,2.6,10,4,11.2,1280,9,999999999,419,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,20.0,52,97600,1156,1346,433,712,459,318,76400,47900,35100,14250,280,3.6,10,5,9.6,77777,9,999999999,409,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,19.4,48,97500,1051,1346,435,666,504,272,71500,52500,30400,9290,240,4.1,10,5,11.2,77777,9,999999999,409,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.7,20.6,52,97500,880,1346,426,608,635,192,63300,63600,21600,4790,290,3.6,9,2,9.6,77777,9,999999999,409,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,20.0,53,97500,654,1346,423,387,539,124,40200,52700,14600,2570,280,3.6,9,3,9.6,77777,9,999999999,409,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.0,55,97500,389,1346,416,194,344,95,20300,30000,11600,1770,270,3.1,9,2,8.0,77777,9,999999999,409,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.6,63,97500,108,1200,412,32,36,29,3600,1900,3400,600,250,2.1,9,3,11.2,77777,9,999999999,400,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.6,67,97600,0,0,402,0,0,0,0,0,0,0,260,3.1,9,2,9.6,77777,9,999999999,400,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,97600,0,0,380,0,0,0,0,0,0,0,310,3.6,3,0,12.8,77777,9,999999999,400,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,97700,0,0,372,0,0,0,0,0,0,0,320,2.1,2,0,12.8,77777,9,999999999,400,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.9,74,97700,0,0,370,0,0,0,0,0,0,0,0,0.0,3,0,12.8,77777,9,999999999,390,0.1830,0,88,0.180,0.0,1.0 +1996,9,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,97700,0,0,377,0,0,0,0,0,0,0,0,0.0,9,2,12.8,77777,9,999999999,390,0.1830,0,88,0.180,0.0,1.0 +1996,9,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,97600,0,0,365,0,0,0,0,0,0,0,0,0.0,0,0,12.8,77777,9,999999999,390,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.9,84,97600,0,0,359,0,0,0,0,0,0,0,270,2.6,0,0,12.8,77777,9,999999999,390,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.3,81,97600,0,0,358,0,0,0,0,0,0,0,280,2.6,0,0,12.8,77777,9,999999999,390,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.3,81,97500,0,0,358,0,0,0,0,0,0,0,280,2.6,0,0,12.8,77777,9,999999999,379,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.3,84,97600,0,0,356,0,0,0,0,0,0,0,280,2.6,0,0,11.2,77777,9,999999999,379,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.3,84,97600,0,0,356,0,0,0,0,0,0,0,280,2.1,0,0,11.2,77777,9,999999999,379,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.9,87,97700,66,954,356,22,128,13,2400,6500,1900,250,270,2.1,0,0,8.0,77777,9,999999999,379,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,19.4,79,97700,336,1347,368,184,543,48,19300,45700,7900,920,290,2.1,0,0,9.6,77777,9,999999999,379,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.0,69,97700,606,1347,382,400,728,72,42200,70600,10300,1550,290,3.1,0,0,11.2,77777,9,999999999,370,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.6,67,97800,840,1347,389,601,816,92,64500,82100,13100,2320,280,3.1,0,0,11.2,77777,9,999999999,370,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,21.1,61,98000,1022,1347,414,719,787,121,76900,79700,16300,3770,320,3.6,2,2,8.0,77777,9,999999999,370,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,20.6,55,97800,1139,1347,424,553,345,261,60400,36100,29700,11000,250,4.1,3,3,9.6,77777,9,999999999,370,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,20.0,53,97700,1183,1347,430,662,578,154,72500,59900,19800,7560,280,3.6,5,5,9.6,77777,9,999999999,370,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,19.4,50,97700,1152,1347,432,493,270,261,55300,29400,30100,10490,290,3.1,5,5,9.6,77777,9,999999999,359,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,18.3,47,97600,1047,1347,420,676,642,177,72300,65600,21100,5980,290,3.1,2,2,9.6,77777,9,999999999,359,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,31.1,18.3,47,97500,875,1347,424,528,527,185,57300,54500,21800,4650,300,5.2,3,3,9.6,77777,9,999999999,359,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,18.3,48,97500,648,1347,404,436,748,76,46100,73300,10800,1670,300,3.6,0,0,9.6,77777,9,999999999,359,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,18.9,55,97500,383,1347,396,219,588,52,22600,51800,7900,1030,290,3.1,0,0,9.6,77777,9,999999999,359,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,19.4,59,97500,102,1156,393,38,199,21,4000,10800,3100,380,340,2.1,0,0,8.0,77777,9,999999999,350,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,19.4,60,97600,0,0,390,0,0,0,0,0,0,0,10,2.6,0,0,9.6,77777,9,999999999,350,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,20.0,71,97700,0,0,380,0,0,0,0,0,0,0,0,0.0,0,0,8.0,77777,9,999999999,350,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,97700,0,0,377,0,0,0,0,0,0,0,0,0.0,0,0,8.0,77777,9,999999999,350,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.0,79,97700,0,0,371,0,0,0,0,0,0,0,0,0.0,0,0,9.6,77777,9,999999999,340,0.1820,0,88,0.180,0.0,1.0 +1996,9,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,97700,0,0,368,0,0,0,0,0,0,0,0,0.0,0,0,9.6,77777,9,999999999,340,0.1820,0,88,0.180,0.0,1.0 +1996,9,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,97700,0,0,365,0,0,0,0,0,0,0,0,0.0,0,0,6.4,77777,9,999999999,340,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,97600,0,0,362,0,0,0,0,0,0,0,200,1.5,0,0,6.4,77777,9,999999999,340,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.9,82,97600,0,0,362,0,0,0,0,0,0,0,0,0.0,0,0,6.4,77777,9,999999999,340,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,19.4,87,97600,0,0,360,0,0,0,0,0,0,0,0,0.0,0,0,8.0,77777,9,999999999,329,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.9,84,97600,0,0,359,0,0,0,0,0,0,0,0,0.0,0,0,6.4,77777,9,999999999,329,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.9,82,97700,0,0,362,0,0,0,0,0,0,0,0,0.0,0,0,6.4,77777,9,999999999,329,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.9,82,97700,64,932,362,18,53,15,2100,2000,1900,250,0,0.0,0,0,4.8,77777,9,999999999,329,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.0,74,97800,333,1348,377,167,414,64,17100,34200,8600,1160,0,0.0,0,0,4.8,77777,9,999999999,329,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,21.1,65,97800,603,1348,395,381,627,100,40000,60900,12700,2050,230,2.1,0,0,8.0,77777,9,999999999,340,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,21.1,63,97800,837,1348,398,585,733,129,62400,74300,16100,3210,230,2.1,0,0,9.6,77777,9,999999999,350,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,21.7,59,97800,1019,1348,426,573,449,233,62200,46800,26700,7380,240,2.6,4,3,9.6,77777,9,999999999,350,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,21.1,59,97800,1136,1348,428,674,515,239,71100,52200,27000,9800,250,2.1,5,5,11.2,77777,9,999999999,359,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,20.0,53,97700,1180,1348,430,635,401,284,69200,42000,32300,13610,290,2.1,5,5,11.2,77777,9,999999999,359,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,19.4,64,97700,1148,1348,408,633,489,216,67400,49900,24800,9250,320,9.3,5,5,14.4,77777,9,999999999,370,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.6,82,97700,1042,1348,417,462,216,294,50700,23400,32500,9570,360,4.6,10,9,11.2,3048,9,999999999,379,0.1810,0,88,0.180,2.0,1.0 +1996,9,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,97700,870,1348,391,468,406,205,50200,41900,23100,5160,190,1.5,5,5,12.8,77777,9,999999999,379,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,97600,643,1348,393,360,327,204,38300,33600,22300,4580,0,0.0,5,5,16.0,77777,9,999999999,390,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.0,79,97700,376,1348,393,167,230,103,17800,20200,12100,2020,150,2.1,5,5,16.0,77777,9,999999999,390,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,97700,97,1134,388,33,46,29,3600,2400,3400,600,100,1.5,5,4,16.0,2286,9,999999999,400,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,97800,0,0,379,0,0,0,0,0,0,0,50,1.5,4,2,14.4,77777,9,999999999,400,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,97900,0,0,411,0,0,0,0,0,0,0,0,0.0,10,9,12.8,2438,9,999999999,409,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.1,90,97900,0,0,389,0,0,0,0,0,0,0,250,2.6,5,5,9.6,77777,9,999999999,419,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,97900,0,0,379,0,0,0,0,0,0,0,230,2.6,4,3,11.2,77777,9,999999999,419,0.1810,0,88,0.180,0.0,1.0 +1996,9,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,97800,0,0,363,0,0,0,0,0,0,0,230,1.5,0,0,11.2,77777,9,999999999,430,0.1810,0,88,0.180,0.0,1.0 +1996,9,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,97800,0,0,360,0,0,0,0,0,0,0,290,1.5,0,0,11.2,77777,9,999999999,430,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,97800,0,0,376,0,0,0,0,0,0,0,0,0.0,5,3,6.4,77777,9,999999999,440,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,19.4,90,97800,0,0,369,0,0,0,0,0,0,0,20,2.6,5,2,9.6,77777,9,999999999,450,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,97800,0,0,376,0,0,0,0,0,0,0,10,2.6,5,3,8.0,77777,9,999999999,450,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,19.4,87,97800,0,0,381,0,0,0,0,0,0,0,310,2.6,6,5,8.0,77777,9,999999999,459,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,97900,0,0,360,0,0,0,0,0,0,0,0,0.0,0,0,8.0,77777,9,999999999,459,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,97900,62,910,385,17,68,12,1900,2900,1700,200,0,0.0,5,5,6.4,3353,9,999999999,469,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.0,20.0,83,97900,330,1348,412,171,102,145,18500,9000,16300,3230,290,2.1,10,9,9.7,3300,9,999999999,459,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,98000,600,1348,411,162,38,145,17800,3700,16200,4380,0,0.0,10,9,9.6,3048,9,999999999,459,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,98000,835,1348,411,310,18,299,35200,1700,34100,11780,0,0.0,10,9,8.0,3353,9,999999999,459,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,21.1,84,98000,1016,1348,418,458,70,405,50400,7200,44900,14680,300,2.6,10,9,9.6,2896,9,999999999,450,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.0,76,98000,1133,1348,419,516,70,457,56800,7300,50700,18810,290,2.1,10,9,16.0,3658,9,999999999,450,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,19.4,69,97900,1176,1348,425,313,101,225,35800,10900,26200,9740,0,0.0,10,9,16.0,2743,9,999999999,440,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,20.6,72,97800,1144,1348,430,472,69,413,52000,7100,46000,17620,300,2.1,10,9,14.4,3048,9,999999999,440,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.0,65,97700,1037,1348,435,395,62,346,43400,6400,38500,13270,0,0.0,10,9,14.4,3658,9,999999999,430,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,19.4,59,97700,864,1348,416,386,283,204,42500,30400,23000,5110,20,2.1,6,5,16.0,77777,9,999999999,430,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.0,20.0,62,97700,637,1348,416,294,357,125,31800,35500,15000,2520,0,0.0,6,5,14.5,77777,9,999999999,419,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,20.6,69,97800,370,1348,433,119,19,113,13100,1100,12800,3850,360,2.6,10,9,12.8,1036,9,999999999,419,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,97800,92,1112,404,28,123,18,3100,5900,2600,310,0,0.0,5,5,12.8,975,9,999999999,409,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,97700,0,0,377,0,0,0,0,0,0,0,360,2.1,0,0,12.8,77777,9,999999999,409,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,97800,0,0,369,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,409,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,97800,0,0,366,0,0,0,0,0,0,0,0,0.0,0,0,9.6,77777,9,999999999,400,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.0,84,97800,0,0,410,0,0,0,0,0,0,0,0,0.0,10,9,11.2,1372,9,999999999,400,0.1800,0,88,0.180,0.0,1.0 +1996,9,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,19.4,84,97800,0,0,384,0,0,0,0,0,0,0,0,0.0,6,5,11.2,77777,9,999999999,390,0.1800,0,88,0.180,0.0,1.0 +1996,9,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,19.4,90,97800,0,0,357,0,0,0,0,0,0,0,330,1.5,0,0,11.2,77777,9,999999999,390,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.9,87,97700,0,0,356,0,0,0,0,0,0,0,310,2.6,0,0,9.6,77777,9,999999999,379,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.3,90,97700,0,0,350,0,0,0,0,0,0,0,0,0.0,0,0,9.6,77777,9,999999999,379,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.3,90,97700,0,0,350,0,0,0,0,0,0,0,0,0.0,0,0,8.0,77777,9,999999999,370,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.9,90,97700,0,0,408,0,0,0,0,0,0,0,0,0.0,10,10,11.2,122,9,999999999,370,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.8,90,97700,0,0,358,0,0,0,0,0,0,0,300,2.1,2,2,9.6,77777,9,999999999,370,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.3,90,97800,60,911,365,20,100,13,2200,4200,1900,220,0,0.0,3,3,4.8,77777,9,999999999,359,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,19.4,87,97800,327,1349,360,179,550,46,18900,45900,7700,880,300,2.1,0,0,4.8,77777,9,999999999,359,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,97800,598,1349,369,396,737,69,41800,71400,10100,1490,260,2.1,0,0,4.8,77777,9,999999999,359,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,21.1,79,97800,832,1349,378,597,825,89,62300,81700,11800,1980,270,2.6,0,0,8.0,77777,9,999999999,350,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,21.7,74,97800,1013,1349,404,653,646,167,69700,66000,20000,5290,290,3.6,3,3,9.6,77777,9,999999999,350,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,97700,1129,1349,413,770,645,229,81400,65500,26400,9220,320,3.1,5,5,9.6,77777,9,999999999,350,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,21.1,69,97700,1172,1349,406,763,680,172,82800,70100,21700,8050,310,4.6,3,3,9.6,77777,9,999999999,340,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,20.6,65,97600,1139,1349,405,844,761,200,90200,77900,24300,8380,310,2.1,2,2,9.6,77777,9,999999999,340,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,20.6,59,97600,1033,1349,418,735,668,224,77200,67400,25400,7140,300,2.6,3,3,11.2,77777,9,999999999,340,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,20.0,55,97500,859,1349,416,575,724,113,60400,72400,14200,2730,330,4.1,2,2,12.8,77777,9,999999999,340,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,18.9,53,97500,631,1349,415,371,551,113,38800,53700,13600,2330,300,3.1,3,3,12.8,77777,9,999999999,329,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,17.2,56,97500,364,1349,405,207,238,143,21400,20500,15800,3060,330,4.1,5,5,16.0,77777,9,999999999,329,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.2,60,97500,87,1068,399,34,143,23,3700,6700,3200,400,280,2.6,5,5,16.0,77777,9,999999999,329,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,17.8,69,97600,0,0,369,0,0,0,0,0,0,0,300,2.6,0,0,16.0,77777,9,999999999,329,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,97600,0,0,365,0,0,0,0,0,0,0,310,2.6,0,0,12.8,77777,9,999999999,320,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.3,74,97600,0,0,366,0,0,0,0,0,0,0,330,3.1,0,0,14.4,77777,9,999999999,320,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.3,76,97600,0,0,364,0,0,0,0,0,0,0,330,3.6,0,0,14.4,77777,9,999999999,320,0.1790,0,88,0.180,0.0,1.0 +1996,9,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.9,84,97600,0,0,359,0,0,0,0,0,0,0,350,2.6,0,0,12.8,77777,9,999999999,320,0.1790,0,88,0.180,0.0,1.0 +1996,9,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.9,87,97500,0,0,356,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,309,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.3,90,97500,0,0,350,0,0,0,0,0,0,0,310,2.1,0,0,11.2,77777,9,999999999,309,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,18.3,87,97500,0,0,353,0,0,0,0,0,0,0,20,2.1,0,0,11.2,77777,9,999999999,309,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.9,87,97600,0,0,363,0,0,0,0,0,0,0,20,2.1,1,1,11.2,77777,9,999999999,300,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.9,87,97600,0,0,363,0,0,0,0,0,0,0,40,2.6,1,1,9.6,77777,9,999999999,300,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.9,87,97600,0,0,368,0,0,0,0,0,0,0,50,3.1,2,2,8.0,77777,9,999999999,300,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.8,87,97600,58,889,361,14,0,14,1600,0,1600,510,0,0.0,2,2,6.4,77777,9,999999999,300,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,19.4,81,97600,324,1350,381,115,86,94,12500,7200,10700,2050,70,4.6,3,3,8.0,77777,9,999999999,290,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.9,71,97700,595,1350,372,320,332,174,34200,33600,19400,3750,100,3.1,0,0,11.2,77777,9,999999999,290,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.9,65,97600,829,1350,381,525,466,239,55200,47800,25800,5840,30,2.6,0,0,14.4,77777,9,999999999,290,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,19.4,60,97600,1010,1350,403,623,381,337,67400,41200,36500,10660,320,2.1,2,2,16.0,77777,9,999999999,290,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,19.4,57,97600,1126,1350,420,645,306,390,70200,33200,42400,15330,310,2.1,5,5,14.4,77777,9,999999999,290,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,19.4,57,97500,1169,1350,420,490,173,340,54500,18500,38400,14440,290,3.1,5,5,14.4,77777,9,999999999,279,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,18.9,53,97400,1135,1350,422,646,344,356,70800,37400,39300,14110,320,4.6,5,5,12.8,77777,9,999999999,279,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,18.3,48,97400,1028,1350,428,531,324,284,58400,35100,31600,8980,330,3.6,5,5,14.4,77777,9,999999999,279,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.0,17.8,48,97300,854,1350,417,519,403,264,56100,43100,28800,6840,290,4.6,3,3,16.0,77777,9,999999999,279,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,17.8,50,97300,625,1350,410,320,225,216,34700,22700,24200,5250,310,5.2,2,2,16.0,77777,9,999999999,270,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.8,55,97300,358,1350,388,145,156,104,15800,13600,12200,2290,290,5.7,0,0,14.4,77777,9,999999999,270,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,18.3,62,97300,82,1046,380,21,3,21,2400,0,2400,740,300,4.6,0,0,11.2,77777,9,999999999,270,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.3,69,97400,0,0,372,0,0,0,0,0,0,0,280,2.6,0,0,12.8,77777,9,999999999,270,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,97400,0,0,367,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,259,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.3,74,97400,0,0,366,0,0,0,0,0,0,0,280,1.5,0,0,11.2,77777,9,999999999,259,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,17.8,73,97300,0,0,363,0,0,0,0,0,0,0,260,1.5,0,0,11.2,77777,9,999999999,259,0.1780,0,88,0.180,0.0,1.0 +1996,9,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.2,78,97300,0,0,354,0,0,0,0,0,0,0,280,3.1,0,0,12.8,77777,9,999999999,259,0.1780,0,88,0.180,0.0,1.0 +1996,9,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,17.2,81,97300,0,0,352,0,0,0,0,0,0,0,280,3.1,0,0,12.8,77777,9,999999999,250,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.2,87,97300,0,0,346,0,0,0,0,0,0,0,290,3.1,0,0,9.6,77777,9,999999999,250,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.7,84,97200,0,0,346,0,0,0,0,0,0,0,300,3.6,0,0,9.6,77777,9,999999999,250,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.1,81,97200,0,0,345,0,0,0,0,0,0,0,310,4.1,0,0,12.8,77777,9,999999999,250,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.6,81,97300,0,0,342,0,0,0,0,0,0,0,320,4.1,0,0,12.8,77777,9,999999999,250,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.6,87,97300,0,0,337,0,0,0,0,0,0,0,310,3.6,0,0,11.2,77777,9,999999999,240,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.1,87,97400,56,867,355,14,3,13,1500,0,1500,480,300,3.6,4,3,6.4,77777,9,999999999,240,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.6,81,97400,321,1351,384,90,36,81,9800,3100,9100,2100,300,5.7,10,9,11.2,457,9,999999999,240,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.1,54,97500,592,1351,366,307,340,158,33000,34400,17900,3340,310,7.2,5,5,16.0,77777,9,999999999,229,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,9.4,45,97500,826,1351,348,549,575,197,58800,59100,22500,4710,300,7.2,0,0,16.0,77777,9,999999999,229,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,10.0,44,97500,1007,1351,375,627,439,299,66200,45600,32100,9400,300,5.7,5,5,16.0,77777,9,999999999,229,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,10.0,44,97500,1123,1351,398,412,39,380,45500,4000,42200,15910,280,6.2,10,9,16.0,3658,9,999999999,220,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,10.6,43,97400,1165,1351,360,863,703,257,91000,71100,29500,11350,330,5.7,0,0,16.0,77777,9,999999999,220,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.0,10.0,41,97400,1131,1351,360,832,693,251,87400,70000,28600,10020,320,5.7,0,0,16.1,77777,9,999999999,220,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,10.0,37,97300,1023,1351,368,732,658,233,76400,66200,26200,7220,310,5.7,0,0,16.0,77777,9,999999999,220,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,10.0,40,97300,848,1351,374,529,458,240,55600,47100,26000,5980,300,6.7,4,2,16.0,77777,9,999999999,209,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,10.0,43,97300,619,1351,357,366,463,153,38600,45700,17600,3120,320,4.6,0,0,16.0,77777,9,999999999,209,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,9.4,44,97400,352,1351,351,155,245,91,16500,20900,11000,1760,330,5.7,0,0,16.0,77777,9,999999999,209,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.6,53,97400,77,1024,345,20,11,19,2200,700,2100,480,300,4.1,0,0,16.0,77777,9,999999999,200,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.1,63,97500,0,0,334,0,0,0,0,0,0,0,300,2.6,0,0,16.0,77777,9,999999999,200,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.7,67,97500,0,0,333,0,0,0,0,0,0,0,310,3.1,0,0,16.0,77777,9,999999999,200,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.7,72,97600,0,0,328,0,0,0,0,0,0,0,290,3.1,0,0,16.0,77777,9,999999999,189,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.0,12.0,77,97600,0,0,325,0,0,0,0,0,0,0,290,3.1,0,0,16.1,77777,9,999999999,189,0.1760,0,88,0.180,0.0,1.0 +1996,9,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,97600,0,0,323,0,0,0,0,0,0,0,300,3.1,0,0,16.0,77777,9,999999999,189,0.1760,0,88,0.180,0.0,1.0 +1996,9,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,97600,0,0,317,0,0,0,0,0,0,0,290,2.1,0,0,16.0,77777,9,999999999,179,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,97500,0,0,317,0,0,0,0,0,0,0,310,2.6,0,0,16.0,77777,9,999999999,179,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.1,83,97600,0,0,315,0,0,0,0,0,0,0,290,2.1,0,0,16.0,77777,9,999999999,179,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,97600,0,0,309,0,0,0,0,0,0,0,290,2.6,0,0,16.0,77777,9,999999999,170,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,97600,0,0,306,0,0,0,0,0,0,0,290,3.1,0,0,16.0,77777,9,999999999,170,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.0,86,97700,0,0,306,0,0,0,0,0,0,0,300,3.1,0,0,16.0,77777,9,999999999,170,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,97800,54,867,309,14,23,12,1600,1100,1500,250,310,4.1,0,0,12.8,77777,9,999999999,160,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,97800,318,1351,320,150,337,71,15800,27200,9400,1290,310,4.1,0,0,16.0,77777,9,999999999,170,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,97900,589,1351,335,365,572,116,37900,54800,13900,2290,280,3.1,0,0,16.0,77777,9,999999999,170,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,10.0,51,97900,823,1351,344,574,693,151,60300,69600,17800,3610,320,4.6,0,0,16.0,77777,9,999999999,170,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,9.4,44,97900,1004,1351,351,739,758,175,78600,77300,21000,5400,330,3.1,0,0,16.0,77777,9,999999999,179,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,7.8,37,97800,1119,1351,354,845,791,189,90500,81000,23200,7480,300,4.6,0,0,16.0,77777,9,999999999,179,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,6.1,30,97800,1161,1351,360,883,802,194,91500,80100,22500,7630,330,3.6,0,0,16.0,77777,9,999999999,179,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,6.1,29,97700,1126,1351,363,851,793,190,91300,81300,23400,7670,270,4.1,0,0,16.0,77777,9,999999999,189,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,6.7,29,97700,1018,1351,366,751,761,177,80000,77600,21300,5610,290,5.2,0,0,16.0,77777,9,999999999,189,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,7.8,32,97700,843,1351,365,590,699,154,62200,70400,18200,3760,280,4.1,0,0,16.0,77777,9,999999999,189,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,8.3,35,97600,613,1351,363,385,585,120,40000,56500,14300,2410,310,3.6,0,0,16.0,77777,9,999999999,200,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,8.9,40,97600,345,1351,355,169,365,75,17800,30500,10000,1370,320,2.6,0,0,16.0,77777,9,999999999,200,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,8.9,44,97700,72,980,348,20,37,18,2300,1800,2200,370,300,2.6,0,0,16.0,77777,9,999999999,200,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,9.4,45,97700,0,0,348,0,0,0,0,0,0,0,320,1.5,0,0,16.0,77777,9,999999999,209,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,9.4,50,97700,0,0,340,0,0,0,0,0,0,0,310,2.1,0,0,16.0,77777,9,999999999,209,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,10.6,59,97800,0,0,337,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,209,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,10.6,65,97800,0,0,329,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,220,0.1750,0,88,0.180,0.0,1.0 +1996,9,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.1,67,97800,0,0,329,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,220,0.1750,0,88,0.180,0.0,1.0 +1996,9,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.1,72,97800,0,0,324,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,220,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.1,75,97800,0,0,322,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,229,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,97800,0,0,319,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,229,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,97700,0,0,319,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,229,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,10.6,75,97800,0,0,319,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,240,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,10.6,78,97800,0,0,316,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,240,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.1,77,97800,53,845,320,15,48,12,1700,1700,1600,200,0,0.0,0,0,16.0,77777,9,999999999,240,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.7,63,97900,315,1352,338,158,420,60,16200,34000,8300,1090,0,0.0,0,0,16.0,77777,9,999999999,250,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,10.6,49,97900,586,1352,350,373,642,95,39200,62100,12300,1940,120,2.6,0,0,16.0,77777,9,999999999,259,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.1,45,98000,820,1352,361,578,750,122,61600,76000,15400,2980,170,2.1,0,0,16.0,77777,9,999999999,259,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,11.7,42,98000,1000,1352,370,739,807,141,77500,81000,17400,3990,210,3.1,0,0,16.0,77777,9,999999999,270,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,11.7,39,97900,1115,1352,375,842,836,152,89000,84300,19300,5530,290,2.6,0,0,16.0,77777,9,999999999,270,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,12.2,38,97800,1157,1352,382,879,845,156,93200,85300,20000,6390,0,0.0,0,0,16.0,77777,9,999999999,279,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,13.3,40,97800,1122,1352,385,847,836,153,89600,84300,19400,5660,230,3.6,0,0,16.0,77777,9,999999999,290,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,13.9,39,97700,1013,1352,392,748,808,142,78500,81200,17500,4120,190,2.6,0,0,16.0,77777,9,999999999,290,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,13.9,40,97600,837,1352,389,591,753,124,63200,76400,15700,3090,160,3.1,0,0,16.0,77777,9,999999999,300,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,13.9,42,97600,607,1352,406,338,339,185,36000,34400,20500,4040,120,2.6,5,5,16.0,77777,9,999999999,309,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,15.0,47,97600,339,1352,382,174,442,63,17900,36800,8700,1150,110,2.1,0,0,16.0,77777,9,999999999,309,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,15.0,50,97600,68,958,376,20,66,16,2300,2600,2100,270,120,2.1,0,0,16.0,77777,9,999999999,320,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,15.0,52,97600,0,0,374,0,0,0,0,0,0,0,130,2.1,0,0,16.0,77777,9,999999999,329,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,14.4,52,97600,0,0,370,0,0,0,0,0,0,0,110,3.6,0,0,16.0,77777,9,999999999,329,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,14.4,55,97600,0,0,365,0,0,0,0,0,0,0,110,3.1,0,0,16.0,77777,9,999999999,340,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,13.9,52,97600,0,0,388,0,0,0,0,0,0,0,120,3.6,5,5,16.0,77777,9,999999999,340,0.1740,0,88,0.180,0.0,1.0 +1996,9,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,14.4,57,97600,0,0,418,0,0,0,0,0,0,0,120,2.1,10,10,16.0,2134,9,999999999,350,0.1740,0,88,0.180,0.0,1.0 +1996,9,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,14.4,57,97500,0,0,418,0,0,0,0,0,0,0,140,2.6,10,10,16.0,2896,9,999999999,359,0.1730,0,88,0.180,0.0,1.0 +1996,9,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,15.0,61,97500,0,0,381,0,0,0,0,0,0,0,140,3.1,5,5,16.0,77777,9,999999999,359,0.1730,0,88,0.180,0.0,1.0 +1996,9,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,15.6,64,97500,0,0,416,0,0,0,0,0,0,0,130,2.6,10,10,16.0,3048,9,999999999,370,0.1730,0,88,0.180,0.0,1.0 +1996,9,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.7,71,97500,0,0,403,0,0,0,0,0,0,0,150,3.1,10,9,16.0,427,9,999999999,379,0.1730,0,88,0.180,0.0,1.0 +1996,9,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,17.8,76,97500,0,0,416,0,0,0,0,0,0,0,150,3.1,10,10,14.4,427,9,999999999,379,0.1730,0,88,0.180,0.0,1.0 +1996,9,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,97500,0,0,421,0,0,0,0,0,0,0,140,2.6,10,10,12.8,366,9,999999999,390,0.1730,0,88,0.180,0.0,1.0 +1996,9,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,97500,51,823,419,8,0,8,1000,0,1000,310,170,2.6,10,10,4.0,1128,9,999999999,400,0.1730,0,88,0.180,0.0,1.0 +1996,9,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,97500,312,1353,419,39,0,39,4600,0,4600,1600,180,2.6,10,10,2.8,244,9,999999999,400,0.1730,0,88,0.180,1.0,1.0 +1996,9,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.1,90,97500,583,1353,424,76,0,76,9200,0,9200,3460,180,2.6,10,10,2.4,122,9,999999999,400,0.1730,0,88,0.180,1.0,1.0 +1996,9,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.1,90,97500,817,1353,424,142,0,142,17000,0,17000,6730,170,4.1,10,10,6.4,244,9,999999999,390,0.1730,0,88,0.180,5.0,1.0 +1996,9,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.2,90,97400,997,1353,431,181,0,181,21900,0,21900,8910,180,2.1,10,10,6.4,244,9,999999999,390,0.1730,0,88,0.180,0.0,1.0 +1996,9,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,22.8,82,97500,1112,1353,445,214,0,213,25900,0,25900,10530,180,2.6,10,10,11.2,549,9,999999999,390,0.1730,0,88,0.180,0.0,1.0 +1996,9,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,22.8,74,97300,1153,1353,443,369,68,311,40800,6900,34900,13960,190,4.1,10,9,16.0,762,9,999999999,390,0.1730,0,88,0.180,0.0,1.0 +1996,9,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,22.8,79,97200,1117,1353,436,619,169,479,67100,17900,52300,18270,190,4.1,10,9,2.8,1158,9,999999999,390,0.1730,0,88,0.180,1.0,1.0 +1996,9,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,97200,1008,1353,438,183,0,183,22100,0,22100,9030,0,0.0,10,10,16.0,274,9,999999999,390,0.1730,0,88,0.180,1.0,1.0 +1996,9,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.8,94,97100,832,1353,432,121,0,121,14700,0,14700,5910,280,5.2,10,10,0.4,152,9,999999999,390,0.1730,0,88,0.180,20.0,1.0 +1996,9,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.3,87,97200,601,1353,431,189,87,150,20900,8800,16900,3600,230,2.1,10,9,16.0,640,9,999999999,390,0.1730,0,88,0.180,1.0,1.0 +1996,9,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,23.3,87,97200,332,1353,431,73,28,66,8000,2400,7400,1800,180,3.6,10,9,16.0,3353,9,999999999,390,0.1730,0,88,0.180,0.0,1.0 +1996,9,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,97200,63,913,399,16,25,14,1800,1200,1700,290,190,2.1,5,5,16.0,77777,9,999999999,390,0.1730,0,88,0.180,0.0,1.0 +1996,9,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,97200,0,0,399,0,0,0,0,0,0,0,200,3.1,5,5,16.0,77777,9,999999999,390,0.1730,0,88,0.180,0.0,1.0 +1996,9,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.8,88,97200,0,0,426,0,0,0,0,0,0,0,200,3.1,10,9,16.0,335,9,999999999,390,0.1730,0,88,0.180,0.0,1.0 +1996,9,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.8,88,97200,0,0,439,0,0,0,0,0,0,0,210,2.6,10,10,16.0,335,9,999999999,390,0.1730,0,88,0.180,0.0,1.0 +1996,9,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,22.8,91,97300,0,0,423,0,0,0,0,0,0,0,260,4.6,10,9,4.0,2134,9,999999999,390,0.1730,0,88,0.180,1.0,1.0 +1996,9,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,22.2,90,97300,0,0,431,0,0,0,0,0,0,0,250,3.6,10,10,16.0,1372,9,999999999,390,0.1730,0,88,0.180,0.0,1.0 +1996,9,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.7,94,97300,0,0,424,0,0,0,0,0,0,0,240,3.6,10,10,16.0,2896,9,999999999,390,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,97300,0,0,419,0,0,0,0,0,0,0,230,4.6,10,10,16.0,122,9,999999999,390,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,97300,0,0,419,0,0,0,0,0,0,0,230,4.1,10,10,14.4,122,9,999999999,390,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,97300,0,0,419,0,0,0,0,0,0,0,240,3.6,10,10,14.4,122,9,999999999,379,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,21.1,93,97400,0,0,420,0,0,0,0,0,0,0,260,5.2,10,10,12.8,122,9,999999999,379,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,21.1,93,97400,0,0,420,0,0,0,0,0,0,0,270,5.2,10,10,8.0,61,9,999999999,379,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.1,90,97500,49,823,424,5,0,5,600,0,600,200,260,3.6,10,10,6.4,122,9,999999999,379,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.7,91,97500,309,1354,427,48,0,48,5600,0,5600,1900,260,3.6,10,10,8.0,518,9,999999999,379,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,22.2,84,97600,580,1354,426,109,45,89,12000,4300,10100,2820,280,5.2,9,9,11.2,549,9,999999999,370,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.1,82,97600,814,1354,421,239,144,152,26700,15400,17400,3510,320,5.2,9,9,14.4,457,9,999999999,370,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,97700,994,1354,428,217,70,165,24800,7500,19300,5250,300,5.7,9,9,16.0,1067,9,999999999,359,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.6,67,97600,1108,1354,412,623,544,178,67000,55800,21200,6850,310,6.7,5,5,16.0,77777,9,999999999,359,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.6,67,97600,1149,1354,412,664,488,250,72900,51100,29400,10650,320,6.2,5,5,16.0,77777,9,999999999,350,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,20.0,65,97600,1113,1354,435,570,197,408,62400,20900,45200,15410,320,5.7,9,9,16.0,1981,9,999999999,340,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,20.0,61,97500,1003,1354,417,498,448,165,53100,45800,19100,5100,310,6.2,5,5,16.0,77777,9,999999999,340,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,19.4,64,97500,826,1354,408,442,363,220,48200,38700,24500,5410,310,7.7,5,5,16.0,77777,9,999999999,329,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,97600,595,1354,392,316,346,164,34000,35000,18500,3490,310,6.7,3,3,16.0,77777,9,999999999,329,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,18.3,69,97600,326,1354,384,154,412,54,15900,34000,7700,1010,330,5.2,2,2,16.0,77777,9,999999999,320,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.1,68,97700,59,891,358,19,93,12,2100,3900,1800,200,320,4.1,0,0,16.0,77777,9,999999999,320,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.0,68,97800,0,0,352,0,0,0,0,0,0,0,330,5.2,0,0,16.0,77777,9,999999999,309,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.0,73,97800,0,0,347,0,0,0,0,0,0,0,320,4.6,0,0,16.0,77777,9,999999999,309,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.0,78,97800,0,0,341,0,0,0,0,0,0,0,310,4.1,0,0,16.0,77777,9,999999999,300,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.0,84,97800,0,0,336,0,0,0,0,0,0,0,320,4.6,0,0,16.0,77777,9,999999999,300,0.1720,0,88,0.180,0.0,1.0 +1996,9,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,14.4,84,97800,0,0,333,0,0,0,0,0,0,0,310,4.1,0,0,16.0,77777,9,999999999,290,0.1720,0,88,0.180,0.0,1.0 +1996,9,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,14.4,90,97900,0,0,328,0,0,0,0,0,0,0,290,3.6,0,0,16.0,77777,9,999999999,290,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,13.9,90,97800,0,0,325,0,0,0,0,0,0,0,300,2.6,0,0,12.8,77777,9,999999999,279,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.9,93,97800,0,0,322,0,0,0,0,0,0,0,300,3.1,0,0,11.2,77777,9,999999999,270,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,97800,0,0,322,0,0,0,0,0,0,0,310,2.6,0,0,9.6,77777,9,999999999,270,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,97800,0,0,338,0,0,0,0,0,0,0,320,2.6,7,5,9.6,77777,9,999999999,259,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,13.3,93,97900,0,0,368,0,0,0,0,0,0,0,320,3.6,10,10,6.4,91,9,999999999,259,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,13.3,90,98000,47,801,341,11,3,11,1300,0,1300,410,320,3.6,7,5,4.8,77777,9,999999999,250,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.9,87,98100,306,1354,342,120,145,88,13100,11900,10400,1910,320,2.6,8,3,8.0,77777,9,999999999,250,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,14.4,75,98100,577,1354,341,343,520,122,36800,50700,15100,2390,330,2.6,0,0,12.8,77777,9,999999999,250,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,13.9,61,98100,810,1354,353,549,647,161,57300,64600,18500,3740,20,2.6,0,0,16.0,77777,9,999999999,240,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,13.3,53,98100,990,1354,372,652,579,228,70600,60300,26400,6800,350,1.5,7,2,16.0,77777,9,999999999,240,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,13.3,50,98100,1104,1354,382,777,570,311,82800,59400,34200,11900,320,2.1,8,3,16.0,77777,9,999999999,240,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,14.4,50,98000,1145,1354,389,751,525,307,80700,54800,34200,13030,290,4.6,8,3,16.0,1372,9,999999999,240,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,14.4,52,97900,1108,1354,386,648,411,312,69200,42900,34000,12050,310,4.6,8,3,16.0,77777,9,999999999,229,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,13.3,53,97900,998,1354,372,703,564,287,74400,58500,31200,8810,320,4.6,7,2,16.0,77777,9,999999999,229,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,13.3,47,97900,821,1354,388,532,498,230,56000,51000,25000,5540,320,3.1,8,3,16.0,77777,9,999999999,229,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.2,46,97900,589,1354,377,314,342,165,33600,34500,18600,3510,330,6.2,7,2,16.0,77777,9,999999999,229,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,12.2,51,98000,319,1354,357,145,296,75,15200,23900,9500,1370,320,5.7,0,0,16.0,77777,9,999999999,220,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,11.7,57,98000,55,869,346,14,16,13,1600,700,1600,270,310,4.6,0,0,16.0,77777,9,999999999,220,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,11.7,63,98000,0,0,338,0,0,0,0,0,0,0,310,4.1,0,0,16.0,77777,9,999999999,220,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,11.7,65,98100,0,0,335,0,0,0,0,0,0,0,320,3.6,0,0,16.0,77777,9,999999999,220,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,11.7,70,98100,0,0,330,0,0,0,0,0,0,0,330,3.1,0,0,16.0,77777,9,999999999,209,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.1,65,98000,0,0,332,0,0,0,0,0,0,0,360,4.1,0,0,16.0,77777,9,999999999,209,0.1700,0,88,0.180,0.0,1.0 +1996,9,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,11.1,65,98000,0,0,332,0,0,0,0,0,0,0,20,4.6,0,0,16.0,77777,9,999999999,209,0.1700,0,88,0.180,0.0,1.0 +1996,9,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,11.1,70,98000,0,0,327,0,0,0,0,0,0,0,40,3.1,0,0,16.0,77777,9,999999999,209,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,11.7,78,98000,0,0,323,0,0,0,0,0,0,0,50,3.1,0,0,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,11.7,81,98000,0,0,320,0,0,0,0,0,0,0,70,2.1,0,0,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,97900,0,0,317,0,0,0,0,0,0,0,70,3.1,0,0,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,11.1,81,98000,0,0,317,0,0,0,0,0,0,0,70,3.1,0,0,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,10.6,80,98100,0,0,314,0,0,0,0,0,0,0,50,2.1,0,0,16.0,77777,9,999999999,189,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.1,72,98100,45,779,344,11,23,9,1200,800,1100,140,50,2.6,5,5,16.0,1524,9,999999999,189,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,10.6,63,98100,303,1355,372,84,1,84,9400,0,9400,2860,50,3.6,10,9,16.0,1524,9,999999999,189,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,11.7,61,98200,574,1355,360,320,360,168,34200,36100,18900,3580,90,2.6,5,5,16.0,77777,9,999999999,189,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,10.0,49,98100,807,1355,346,572,761,119,61200,77000,15200,2870,120,3.1,0,0,16.0,77777,9,999999999,189,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,11.1,46,98100,987,1355,358,735,820,137,77100,82300,17000,3800,50,1.5,0,0,16.0,77777,9,999999999,189,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.1,45,98100,1101,1355,361,838,849,148,88600,85700,18900,5180,30,4.6,0,0,16.0,77777,9,999999999,189,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.7,43,98000,1140,1355,389,738,574,254,77500,58000,28600,10300,100,2.6,5,5,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,11.7,45,97900,1103,1355,376,750,678,197,79900,69200,23400,7410,190,2.1,2,2,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,11.7,43,97800,992,1355,383,510,462,172,54300,47100,19700,5180,280,2.6,3,3,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,11.7,42,97800,815,1355,382,555,655,161,58100,65500,18600,3760,290,2.1,2,2,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.2,45,97800,583,1355,383,330,453,135,35000,44200,15900,2680,290,3.1,3,3,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,11.7,46,97800,313,1355,374,155,382,67,16400,30600,9300,1210,320,3.6,2,2,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,12.2,55,97800,51,824,352,14,50,11,1600,2000,1500,190,330,2.6,0,0,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,12.8,61,97800,0,0,347,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,12.8,63,97900,0,0,344,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.8,70,97900,0,0,336,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.8,70,97900,0,0,336,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.8,73,97900,0,0,334,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1690,0,88,0.180,0.0,1.0 +1996,9,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,97900,0,0,326,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,97900,0,0,326,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,200,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,97900,0,0,326,0,0,0,0,0,0,0,80,2.1,0,0,14.4,77777,9,999999999,200,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,97900,0,0,326,0,0,0,0,0,0,0,0,0.0,0,0,12.8,77777,9,999999999,200,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,98000,0,0,323,0,0,0,0,0,0,0,0,0.0,0,0,12.8,77777,9,999999999,200,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,98000,0,0,323,0,0,0,0,0,0,0,0,0.0,0,0,11.2,77777,9,999999999,209,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,11.1,72,98100,43,780,324,10,16,9,1200,700,1100,190,70,2.6,0,0,9.6,77777,9,999999999,209,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,12.8,70,98100,300,1356,336,137,312,68,14400,24500,8900,1240,100,3.1,0,0,9.6,77777,9,999999999,209,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.3,65,98100,570,1356,345,347,556,113,35900,52900,13600,2210,70,3.6,0,0,14.4,77777,9,999999999,209,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,12.2,51,98100,804,1356,357,553,681,148,58000,68200,17400,3460,150,3.1,0,0,16.0,77777,9,999999999,209,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,12.2,46,98100,983,1356,365,716,748,173,76000,76100,20700,5120,140,4.1,0,0,16.0,77777,9,999999999,209,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,12.2,48,98100,1097,1356,378,725,597,241,76100,60300,27100,8720,70,3.1,3,3,16.0,77777,9,999999999,209,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.8,47,98000,1136,1356,380,780,692,200,83400,70800,23900,8170,100,4.6,2,2,16.0,77777,9,999999999,220,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.2,45,97900,1099,1356,389,420,113,328,46500,12100,36700,12050,120,1.5,5,5,16.0,77777,9,999999999,220,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,12.2,43,97900,987,1356,416,372,0,372,42400,0,42400,14990,130,3.6,9,9,16.0,1524,9,999999999,220,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,12.8,45,97800,809,1356,387,539,608,176,56000,60400,19800,4020,150,2.6,3,3,16.0,77777,9,999999999,220,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.2,45,97800,577,1356,389,316,300,188,33400,30100,20600,4110,120,2.1,5,5,16.0,77777,9,999999999,220,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,12.2,48,97800,306,1356,362,141,319,69,14800,25300,9100,1250,100,3.1,0,0,16.0,77777,9,999999999,220,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.8,55,97800,47,802,355,12,18,11,1400,800,1300,230,100,1.5,0,0,16.0,77777,9,999999999,229,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,13.3,61,97800,0,0,350,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,229,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,13.3,63,97900,0,0,348,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,229,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.9,76,97800,0,0,337,0,0,0,0,0,0,0,90,2.6,0,0,12.8,77777,9,999999999,229,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.9,76,97800,0,0,337,0,0,0,0,0,0,0,80,2.1,0,0,12.8,77777,9,999999999,229,0.1680,0,88,0.180,0.0,1.0 +1996,9,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.9,76,97800,0,0,337,0,0,0,0,0,0,0,90,2.1,0,0,14.4,77777,9,999999999,229,0.1680,0,88,0.180,0.0,1.0 +1996,9,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,14.4,78,97800,0,0,390,0,0,0,0,0,0,0,0,0.0,10,10,14.4,1829,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.3,68,97900,0,0,395,0,0,0,0,0,0,0,110,2.6,10,10,16.0,1829,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.3,73,97800,0,0,351,0,0,0,0,0,0,0,120,3.1,3,3,16.0,77777,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.9,76,97800,0,0,337,0,0,0,0,0,0,0,120,1.5,0,0,14.4,77777,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,97700,0,0,336,0,0,0,0,0,0,0,110,1.5,0,0,14.4,77777,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,14.4,78,97800,0,0,390,0,0,0,0,0,0,0,110,1.5,10,10,14.4,1829,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.0,84,97800,42,758,351,10,16,9,1200,700,1100,190,110,2.1,3,3,11.2,77777,9,999999999,250,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,15.6,81,97800,296,1357,342,138,344,63,14600,26900,8700,1140,130,3.1,0,0,11.2,77777,9,999999999,250,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.1,75,97800,567,1357,366,336,427,157,34900,41300,17600,3150,130,3.6,3,3,14.4,77777,9,999999999,250,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.1,66,97700,800,1357,383,422,290,250,45300,30800,27100,6180,120,4.1,5,5,16.0,77777,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,16.1,58,97600,980,1357,388,612,462,279,64900,47900,30200,8280,140,3.6,3,3,16.0,77777,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,16.7,60,97500,1093,1357,418,206,64,154,23900,6900,18300,5590,140,5.7,9,9,16.0,945,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.8,62,97300,1132,1357,435,248,0,248,29800,0,29800,11940,140,3.1,10,10,16.0,975,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,17.8,67,97200,1094,1357,417,432,67,378,47700,6900,42100,15150,140,6.2,9,9,16.0,1067,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,97200,982,1357,421,208,0,208,24800,0,24800,9920,90,3.1,10,10,4.8,1067,9,999999999,240,0.1670,0,88,0.180,1.0,1.0 +1996,9,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.8,93,97300,803,1357,398,161,0,161,19000,0,19000,7390,0,0.0,10,10,6.4,610,9,999999999,240,0.1670,0,88,0.180,35.0,1.0 +1996,9,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,18.3,93,97300,571,1357,390,155,20,147,17700,1500,17100,5820,0,0.0,9,9,16.0,1829,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,18.3,90,97300,300,1357,404,33,0,33,3900,0,3900,1370,200,1.5,10,10,16.0,122,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.8,90,97300,43,780,400,6,0,6,700,0,700,240,280,1.5,10,10,16.0,305,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.8,90,97400,0,0,389,0,0,0,0,0,0,0,310,2.6,9,9,16.0,366,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.8,90,97400,0,0,400,0,0,0,0,0,0,0,270,2.1,10,10,11.2,1036,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.8,93,97400,0,0,365,0,0,0,0,0,0,0,310,3.1,5,5,9.6,77777,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.8,93,97500,0,0,398,0,0,0,0,0,0,0,320,2.6,10,10,9.6,30,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,17.8,93,97500,0,0,398,0,0,0,0,0,0,0,310,2.6,10,10,11.2,579,9,999999999,240,0.1670,0,88,0.180,0.0,1.0 +1996,9,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,16.7,90,97500,0,0,382,0,0,0,0,0,0,0,320,2.1,10,9,16.0,457,9,999999999,240,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.7,93,97500,0,0,379,0,0,0,0,0,0,0,320,2.6,10,9,11.2,427,9,999999999,240,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,16.7,93,97500,0,0,390,0,0,0,0,0,0,0,320,4.6,10,10,11.2,213,9,999999999,240,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.6,90,97500,0,0,354,0,0,0,0,0,0,0,310,3.1,6,5,11.2,77777,9,999999999,240,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,97600,0,0,342,0,0,0,0,0,0,0,310,3.6,5,2,9.6,77777,9,999999999,240,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,14.4,93,97700,0,0,345,0,0,0,0,0,0,0,290,2.6,6,5,8.0,77777,9,999999999,240,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,14.4,93,97800,40,735,336,9,0,9,1100,0,1100,340,280,3.6,5,2,6.4,77777,9,999999999,240,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.6,90,97800,293,1357,354,102,99,81,11100,8000,9400,1750,280,2.6,6,5,8.0,77777,9,999999999,240,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,97900,564,1357,339,305,363,154,32700,36300,17600,3220,290,4.1,0,0,14.4,77777,9,999999999,240,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.1,75,97900,797,1357,366,433,272,273,46200,28800,29200,6860,280,5.2,5,3,16.0,77777,9,999999999,229,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,15.0,60,97900,976,1357,363,674,585,253,72000,60800,28200,7400,290,4.6,0,0,16.0,77777,9,999999999,229,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,12.2,45,97900,1089,1357,368,779,627,275,83900,65400,31200,10010,310,5.2,0,0,16.0,77777,9,999999999,229,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,11.1,39,97800,1127,1357,384,713,423,361,75000,44000,38400,14680,350,6.7,5,2,16.0,77777,9,999999999,229,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,12.2,41,97800,1089,1357,392,755,458,388,81800,49600,41900,14030,310,8.8,5,3,16.0,77777,9,999999999,229,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,12.2,41,97800,977,1357,388,630,398,343,67800,42900,36800,10370,300,7.7,5,2,16.0,77777,9,999999999,229,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,11.7,39,97800,798,1357,375,510,505,213,53900,51600,23500,4980,320,7.2,0,0,16.0,77777,9,999999999,229,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,12.2,42,97800,564,1357,373,306,364,154,32800,36400,17600,3220,320,6.2,0,0,16.0,77777,9,999999999,229,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,11.7,45,97800,293,1357,364,112,138,82,12200,11100,9800,1770,320,4.6,0,0,16.0,77777,9,999999999,229,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,12.2,53,97800,40,735,354,9,1,9,1100,0,1100,340,280,2.6,0,0,16.0,77777,9,999999999,220,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,12.8,57,97900,0,0,352,0,0,0,0,0,0,0,260,2.1,0,0,16.0,77777,9,999999999,220,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,13.3,68,97900,0,0,342,0,0,0,0,0,0,0,260,2.1,0,0,16.0,77777,9,999999999,220,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.9,13.3,70,98000,0,0,340,0,0,0,0,0,0,0,280,3.6,0,0,16.0,77777,9,999999999,220,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,13.3,73,98000,0,0,337,0,0,0,0,0,0,0,280,3.6,0,0,16.0,77777,9,999999999,220,0.1650,0,88,0.180,0.0,1.0 +1996,9,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.3,75,98000,0,0,335,0,0,0,0,0,0,0,280,3.1,0,0,16.0,77777,9,999999999,220,0.1650,0,88,0.180,0.0,1.0 +1996,9,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,13.3,75,98000,0,0,335,0,0,0,0,0,0,0,280,3.6,0,0,16.0,77777,9,999999999,220,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,98000,0,0,332,0,0,0,0,0,0,0,280,2.6,0,0,16.0,77777,9,999999999,220,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,12.8,75,98000,0,0,331,0,0,0,0,0,0,0,290,2.6,0,0,16.0,77777,9,999999999,220,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,98000,0,0,329,0,0,0,0,0,0,0,300,3.1,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.8,81,98000,0,0,326,0,0,0,0,0,0,0,280,2.6,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,12.2,78,98100,0,0,326,0,0,0,0,0,0,0,280,3.6,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,12.8,73,98100,38,713,334,11,54,8,1300,2000,1200,130,270,3.6,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,13.3,65,98200,290,1358,345,147,458,49,15200,36100,7500,900,280,4.1,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,14.4,61,98200,561,1358,356,362,687,78,38400,66200,11000,1600,290,4.1,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,14.4,52,98200,794,1358,370,565,793,101,59400,78900,13200,2310,310,5.7,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,13.9,45,98200,972,1358,378,725,848,117,77200,85600,15700,3310,320,5.2,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,13.3,41,98200,1085,1358,383,826,875,127,85100,87400,15100,3460,300,5.7,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,13.3,38,98200,1123,1358,389,860,883,130,88600,88300,15400,3890,340,5.2,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,13.9,39,98100,1084,1358,392,825,875,127,85100,87400,15100,3460,300,5.2,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,14.4,41,98100,971,1358,390,724,847,117,77000,85500,15700,3300,300,5.7,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,13.3,38,98000,792,1358,389,563,792,101,59200,78800,13200,2310,290,5.7,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,13.9,42,98100,558,1358,384,360,685,78,38200,66000,11000,1600,300,4.6,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,15.6,52,98100,287,1358,377,145,454,49,15000,35600,7400,900,290,3.6,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,15.6,58,98100,37,713,369,10,51,7,1100,1900,1000,120,290,2.1,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.1,66,98100,0,0,361,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,16.1,68,98200,0,0,358,0,0,0,0,0,0,0,270,2.1,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.1,70,98200,0,0,356,0,0,0,0,0,0,0,280,1.5,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.1,78,98100,0,0,348,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.1,81,98100,0,0,345,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,209,0.1640,0,88,0.180,0.0,1.0 +1996,9,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,98100,0,0,339,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,209,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.0,81,98100,0,0,339,0,0,0,0,0,0,0,290,1.5,0,0,16.0,77777,9,999999999,209,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.0,81,98000,0,0,339,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,209,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.0,84,98000,0,0,336,0,0,0,0,0,0,0,260,2.1,0,0,16.0,77777,9,999999999,209,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,14.4,90,98100,0,0,328,0,0,0,0,0,0,0,290,3.1,0,0,16.0,77777,9,999999999,209,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.9,87,98100,0,0,327,0,0,0,0,0,0,0,290,3.1,0,0,16.0,77777,9,999999999,209,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.9,81,98100,37,714,332,8,14,7,900,600,900,140,270,2.6,0,0,16.0,77777,9,999999999,209,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,15.6,71,98200,287,1359,353,129,310,64,13600,23900,8600,1160,300,3.6,0,0,16.0,77777,9,999999999,209,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,16.1,64,98200,557,1359,364,337,561,107,35000,53200,13100,2090,290,2.6,0,0,16.0,77777,9,999999999,209,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.1,14.4,48,98200,790,1359,376,541,687,141,56900,68800,16800,3260,290,3.1,0,0,16.0,77777,9,999999999,209,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,15.0,46,98200,969,1359,385,702,754,165,74800,76800,19900,4770,280,3.1,0,0,16.0,77777,9,999999999,220,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,15.6,46,98200,1081,1359,388,804,787,178,86200,80600,21900,6350,320,3.6,0,0,16.0,77777,9,999999999,220,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,15.6,44,98100,1118,1359,404,842,749,225,89000,76100,26300,8610,350,4.1,2,2,16.0,77777,9,999999999,220,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,15.6,46,98000,1079,1359,405,723,535,297,77100,55700,32700,10600,290,4.1,3,3,16.0,77777,9,999999999,229,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,16.7,48,98000,966,1359,406,645,677,164,68700,68900,19500,4720,290,3.6,2,2,16.0,77777,9,999999999,229,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,16.1,46,98000,786,1359,409,281,255,133,31000,26200,15800,2960,280,2.1,3,3,16.0,77777,9,999999999,229,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,15.6,47,97900,552,1359,386,332,555,106,34300,52500,13000,2060,260,2.1,0,0,16.0,77777,9,999999999,229,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,16.7,54,98000,280,1359,381,125,301,62,13000,22900,8300,1120,0,0.0,0,0,16.0,77777,9,999999999,240,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,16.7,58,97900,33,668,376,7,12,7,900,500,900,140,320,2.6,0,0,16.0,77777,9,999999999,240,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,15.6,56,98000,0,0,372,0,0,0,0,0,0,0,340,2.1,0,0,16.0,77777,9,999999999,240,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,15.6,60,98000,0,0,366,0,0,0,0,0,0,0,320,2.1,0,0,16.0,77777,9,999999999,240,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,15.6,60,98000,0,0,366,0,0,0,0,0,0,0,310,1.5,0,0,16.0,77777,9,999999999,250,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.1,66,98000,0,0,361,0,0,0,0,0,0,0,300,1.5,0,0,16.0,77777,9,999999999,250,0.1630,0,88,0.180,0.0,1.0 +1996,9,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,16.7,68,98000,0,0,362,0,0,0,0,0,0,0,310,1.5,0,0,16.0,77777,9,999999999,250,0.1630,0,88,0.180,0.0,1.0 +1996,9,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,15.6,66,98000,0,0,358,0,0,0,0,0,0,0,320,1.5,0,0,16.0,77777,9,999999999,250,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,16.1,73,98000,0,0,353,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,259,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.7,81,97900,0,0,349,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,259,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.1,75,97900,0,0,351,0,0,0,0,0,0,0,300,2.1,0,0,16.0,77777,9,999999999,259,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,16.1,81,98000,0,0,345,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,259,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.0,76,98000,0,0,344,0,0,0,0,0,0,0,0,0.0,0,0,16.0,77777,9,999999999,270,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.6,79,98100,35,691,359,8,40,6,1000,1500,900,100,0,0.0,3,3,12.8,77777,9,999999999,270,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.7,73,98100,283,1360,357,148,509,42,15500,40100,7100,790,20,1.5,0,0,16.0,77777,9,999999999,270,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,16.7,62,98200,554,1360,370,361,724,66,38000,69200,9700,1390,40,2.1,0,0,14.4,77777,9,999999999,270,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,26.7,15.6,51,98200,787,1360,380,561,822,85,60100,82300,12300,2050,30,3.1,0,0,16.0,77777,9,999999999,270,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.3,15.0,44,98200,965,1360,388,718,872,99,74600,86900,12700,2470,0,0.0,0,0,16.0,77777,9,999999999,270,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,14.4,41,98100,1076,1360,390,817,897,107,84700,89700,13500,3170,210,1.5,0,0,16.0,77777,9,999999999,270,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,13.9,42,98000,1114,1360,406,533,389,214,59100,40800,25600,8120,0,0.0,5,5,16.0,77777,9,999999999,270,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,30.6,15.0,39,98000,1074,1360,448,360,64,309,39700,6500,34500,12470,360,1.5,9,9,16.0,1829,9,999999999,270,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,14.4,40,97900,960,1360,409,667,665,197,70000,67100,22500,5480,0,0.0,3,3,16.0,77777,9,999999999,279,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,29.4,15.0,42,97900,780,1360,406,516,617,162,53700,61200,18500,3620,110,3.1,2,2,16.0,77777,9,999999999,279,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,15.6,44,97900,545,1360,391,354,719,65,37200,68500,9600,1370,140,2.6,0,0,16.0,77777,9,999999999,279,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,16.1,51,98000,274,1360,383,141,496,41,14700,38500,6900,770,150,1.5,0,0,16.0,77777,9,999999999,279,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,16.7,58,98000,30,646,376,8,65,5,900,2900,800,100,0,0.0,0,0,16.0,77777,9,999999999,279,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,16.7,60,98000,0,0,373,0,0,0,0,0,0,0,110,2.1,0,0,16.0,77777,9,999999999,279,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,16.7,60,98100,0,0,373,0,0,0,0,0,0,0,110,2.6,0,0,16.0,77777,9,999999999,279,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,17.2,69,98100,0,0,410,0,0,0,0,0,0,0,90,2.1,9,9,14.4,2743,9,999999999,279,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,17.2,76,98100,0,0,378,0,0,0,0,0,0,0,70,3.6,5,5,12.8,77777,9,999999999,279,0.1610,0,88,0.180,0.0,1.0 +1996,9,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,16.1,62,98100,0,0,412,0,0,0,0,0,0,0,100,2.1,9,9,16.0,1829,9,999999999,279,0.1610,0,88,0.180,0.0,1.0 +1996,9,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,16.7,76,98100,0,0,354,0,0,0,0,0,0,0,90,3.6,0,0,14.4,77777,9,999999999,279,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,16.7,73,98100,0,0,357,0,0,0,0,0,0,0,110,1.5,0,0,14.4,77777,9,999999999,290,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.7,78,98100,0,0,351,0,0,0,0,0,0,0,130,2.6,0,0,14.4,77777,9,999999999,290,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,16.1,75,98100,0,0,351,0,0,0,0,0,0,0,150,3.1,0,0,16.0,77777,9,999999999,290,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.1,78,98100,0,0,348,0,0,0,0,0,0,0,150,2.6,0,0,16.0,77777,9,999999999,290,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.7,81,98200,0,0,349,0,0,0,0,0,0,0,150,2.1,0,0,16.0,77777,9,999999999,290,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,17.2,84,98300,33,669,370,7,20,6,800,600,800,90,140,1.5,5,5,12.8,77777,9,999999999,290,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,17.2,78,98300,280,1361,354,142,469,45,14700,36600,7200,840,140,2.6,0,0,12.8,77777,9,999999999,290,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,18.3,79,98400,550,1361,405,160,40,143,17500,3800,15900,4140,140,3.1,10,9,16.0,1036,9,999999999,300,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,19.4,76,98300,783,1361,428,165,0,165,19400,0,19400,7440,140,2.6,10,10,16.0,549,9,999999999,300,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,18.9,69,98300,961,1361,433,210,0,210,24900,0,24900,9890,140,3.6,10,10,16.0,732,9,999999999,309,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,18.3,56,98300,1072,1361,412,584,419,253,63200,43700,28600,8780,120,3.6,5,5,16.0,77777,9,999999999,309,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,17.2,54,98200,1109,1361,408,578,417,237,63300,43600,27600,8920,150,4.1,5,5,16.0,1676,9,999999999,320,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,16.7,51,98300,1069,1361,410,625,521,215,65900,52800,24300,7310,140,3.6,5,5,16.0,1676,9,999999999,320,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,28.9,16.7,48,98100,954,1361,416,508,334,273,55400,36000,30100,7740,150,5.2,5,5,16.0,77777,9,999999999,329,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,16.7,51,98100,774,1361,434,279,57,246,30600,5700,27300,7760,140,4.6,10,9,16.0,2286,9,999999999,329,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.8,17.2,53,98100,539,1361,401,260,449,82,27400,42800,10400,1650,120,3.6,2,2,16.0,77777,9,999999999,340,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,27.2,17.2,54,98000,267,1361,401,109,281,54,11600,21000,7500,960,130,3.6,3,3,16.0,77777,9,999999999,340,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.8,62,98100,27,624,390,6,34,5,800,1200,700,80,130,2.1,2,2,16.0,77777,9,999999999,340,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.8,62,98100,0,0,394,0,0,0,0,0,0,0,140,3.1,3,3,16.0,77777,9,999999999,350,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.2,60,98200,0,0,423,0,0,0,0,0,0,0,140,2.6,10,9,16.0,3658,9,999999999,350,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,17.2,60,98300,0,0,423,0,0,0,0,0,0,0,140,5.2,10,9,16.0,3658,9,999999999,359,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,17.8,67,98300,0,0,371,0,0,0,0,0,0,0,130,4.1,0,0,16.0,77777,9,999999999,359,0.1600,0,88,0.180,0.0,1.0 +1996,9,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.3,71,98300,0,0,426,0,0,0,0,0,0,0,130,4.6,10,10,16.0,2743,9,999999999,370,0.1600,0,88,0.180,0.0,1.0 +1996,9,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,18.3,71,98200,0,0,426,0,0,0,0,0,0,0,140,4.6,10,10,16.0,762,9,999999999,370,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,98200,0,0,424,0,0,0,0,0,0,0,140,3.1,10,10,16.0,640,9,999999999,379,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,18.9,76,98200,0,0,424,0,0,0,0,0,0,0,130,3.6,10,10,16.0,640,9,999999999,379,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,98300,0,0,421,0,0,0,0,0,0,0,140,4.1,10,10,16.0,640,9,999999999,390,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.9,79,98300,0,0,421,0,0,0,0,0,0,0,130,3.6,10,10,16.0,3048,9,999999999,390,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,18.3,76,98300,0,0,420,0,0,0,0,0,0,0,150,3.1,10,10,16.0,2743,9,999999999,390,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,19.4,87,98300,32,669,415,4,0,4,500,0,500,160,150,3.1,10,10,4.0,610,9,999999999,400,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,98300,277,1361,416,46,0,46,5300,0,5300,1770,150,4.1,10,10,14.4,427,9,999999999,400,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.0,87,98400,547,1361,419,92,0,92,10800,0,10800,3970,170,5.2,10,10,16.0,366,9,999999999,400,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.0,84,98400,779,1361,422,141,0,141,16800,0,16800,6540,150,3.6,10,10,16.0,366,9,999999999,409,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,98400,957,1361,426,213,0,213,25300,0,25300,9980,160,3.6,10,10,16.0,427,9,999999999,409,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.0,82,98400,1068,1361,425,240,0,240,28700,0,28700,11450,140,3.1,10,10,16.0,579,9,999999999,409,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,20.6,85,98300,1104,1361,426,209,0,209,25400,0,25400,10340,140,2.6,10,10,16.0,396,9,999999999,409,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,20.6,79,98200,1064,1361,432,200,0,200,24200,0,24200,9870,140,3.6,10,10,16.0,366,9,999999999,409,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.0,20.6,77,98200,949,1361,436,211,0,211,25000,0,25000,9870,150,2.1,10,10,16.0,914,9,999999999,419,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,25.6,21.1,76,98100,768,1361,428,199,59,165,21900,5900,18600,5540,150,1.5,9,9,16.0,1128,9,999999999,419,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,24.4,21.7,85,98200,533,1361,434,106,0,106,12300,0,12300,4400,150,2.6,10,10,14.4,1280,9,999999999,419,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.3,21.7,91,98200,260,1361,427,43,0,43,5000,0,5000,1640,130,1.5,10,10,12.8,1524,9,999999999,419,0.1580,0,88,0.180,1.0,1.0 +1996,9,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,98100,25,579,423,3,0,3,400,0,400,120,0,0.0,10,10,16.0,2438,9,999999999,430,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.6,87,98200,0,0,423,0,0,0,0,0,0,0,90,2.1,10,10,14.4,2438,9,999999999,430,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.1,90,98200,0,0,424,0,0,0,0,0,0,0,0,0.0,10,10,11.2,3353,9,999999999,430,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,98200,0,0,419,0,0,0,0,0,0,0,0,0.0,10,10,9.6,2743,9,999999999,430,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,98200,0,0,408,0,0,0,0,0,0,0,0,0.0,9,9,14.4,2286,9,999999999,430,0.1580,0,88,0.180,0.0,1.0 +1996,9,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,98100,0,0,408,0,0,0,0,0,0,0,0,0.0,9,9,9.6,2286,9,999999999,440,0.1580,0,88,0.180,0.0,1.0 +1996,9,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,98100,0,0,419,0,0,0,0,0,0,0,0,0.0,10,10,8.0,2438,9,999999999,440,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,98000,0,0,419,0,0,0,0,0,0,0,60,1.5,10,10,9.6,1067,9,999999999,440,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.2,20.6,91,97900,0,0,385,0,0,0,0,0,0,0,120,2.1,5,5,11.2,77777,9,999999999,440,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.0,90,97900,0,0,382,0,0,0,0,0,0,0,140,2.6,5,5,14.4,77777,9,999999999,450,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.9,87,97900,0,0,356,0,0,0,0,0,0,0,160,3.1,0,0,16.0,77777,9,999999999,450,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.3,84,97900,0,0,377,0,0,0,0,0,0,0,140,2.6,5,5,16.0,77777,9,999999999,450,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.1,18.3,84,97900,30,647,399,6,7,6,700,300,700,120,140,2.6,9,9,16.0,1981,9,999999999,450,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,18.9,84,97800,273,1362,403,55,27,50,6100,2200,5700,1340,140,4.1,9,9,16.0,1128,9,999999999,440,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,20.0,84,97900,544,1362,410,233,102,192,25500,9900,21500,5160,170,4.1,9,9,16.0,305,9,999999999,440,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,23.9,20.6,82,97900,776,1362,429,158,0,158,18600,0,18600,7150,190,5.2,10,10,16.0,427,9,999999999,430,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.1,90,97900,953,1362,424,204,0,204,24300,0,24300,9630,200,2.6,10,10,3.2,427,9,999999999,419,0.1570,0,88,0.180,1.0,1.0 +1996,9,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,22.8,21.1,90,98000,1064,1362,424,162,0,162,19900,0,19900,8260,200,1.5,10,10,2.4,152,9,999999999,419,0.1570,0,88,0.180,6.0,1.0 +1996,9,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,20.6,93,97800,1099,1362,417,169,0,169,20800,0,20800,8630,230,4.6,10,10,6.4,152,9,999999999,409,0.1570,0,88,0.180,4.0,1.0 +1996,9,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.8,90,97900,1058,1362,400,193,0,193,23400,0,23400,9570,300,7.7,10,10,12.8,366,9,999999999,400,0.1570,0,88,0.180,4.0,1.0 +1996,9,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,17.2,87,97800,943,1362,400,141,0,141,17200,0,17200,7050,330,6.2,10,10,16.0,183,9,999999999,400,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.6,84,97800,762,1362,381,213,57,181,23500,5700,20300,5970,320,6.2,9,9,16.0,366,9,999999999,390,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,14.4,84,97900,526,1362,384,79,0,79,9400,0,9400,3440,320,6.2,10,10,16.0,305,9,999999999,379,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,13.3,83,97900,254,1362,367,51,20,47,5600,1600,5300,1240,320,6.7,9,9,16.0,3658,9,999999999,379,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,97900,22,556,350,4,11,4,0,0,0,0,310,4.1,7,7,16.0,3048,9,999999999,370,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.8,83,97900,0,0,343,0,0,0,0,0,0,0,320,4.1,5,5,16.0,77777,9,999999999,359,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.6,12.2,80,98000,0,0,363,0,0,0,0,0,0,0,310,4.1,9,9,16.0,3658,9,999999999,350,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,15.0,12.2,83,98000,0,0,370,0,0,0,0,0,0,0,310,4.1,10,10,16.0,3658,9,999999999,350,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.9,11.7,87,98000,0,0,326,0,0,0,0,0,0,0,290,2.6,2,2,16.0,77777,9,999999999,340,0.1570,0,88,0.180,0.0,1.0 +1996,9,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,98000,0,0,331,0,0,0,0,0,0,0,310,2.6,5,5,16.0,77777,9,999999999,329,0.1570,0,88,0.180,0.0,1.0 +1996,9,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,11.1,89,98000,0,0,310,0,0,0,0,0,0,0,310,3.1,0,0,16.0,77777,9,999999999,329,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,98000,0,0,307,0,0,0,0,0,0,0,310,2.1,0,0,16.0,77777,9,999999999,320,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,98000,0,0,307,0,0,0,0,0,0,0,310,4.1,0,0,16.0,77777,9,999999999,309,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,11.7,10.6,93,98000,0,0,305,0,0,0,0,0,0,0,310,2.6,0,0,16.0,77777,9,999999999,309,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.2,10.6,90,98100,0,0,325,0,0,0,0,0,0,0,340,4.6,6,5,16.0,77777,9,999999999,300,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,12.8,10.6,86,98100,0,0,357,0,0,0,0,0,0,0,340,3.1,10,10,16.0,244,9,999999999,290,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,13.3,11.1,87,98100,29,625,360,3,0,3,400,0,400,120,340,2.6,10,10,16.0,122,9,999999999,279,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,14.4,12.2,87,98200,270,1363,367,36,0,36,4200,0,4200,1430,350,2.6,10,10,16.0,305,9,999999999,290,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,12.8,78,98300,540,1363,369,147,31,135,16200,3000,15000,3910,10,3.6,10,9,16.0,549,9,999999999,290,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,13.3,78,98300,772,1363,383,154,0,154,18200,0,18200,6990,50,5.2,10,10,16.0,549,9,999999999,290,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,14.4,73,98300,949,1363,396,200,0,200,23800,0,23800,9460,70,4.6,10,10,16.0,488,9,999999999,290,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,15.0,73,98300,1059,1363,400,229,0,229,27400,0,27400,11000,70,3.1,10,10,16.0,488,9,999999999,290,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.6,79,98300,1095,1363,398,238,0,238,28500,0,28500,11460,70,2.1,10,10,16.0,488,9,999999999,290,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.1,78,98200,1053,1363,390,348,60,301,38400,6100,33600,11880,60,3.1,10,9,16.0,488,9,999999999,290,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,21.7,15.6,68,98200,938,1363,399,337,88,277,37200,9000,31000,9880,90,4.6,10,9,16.0,549,9,999999999,290,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.0,70,98200,756,1363,392,267,46,241,29300,4600,26700,7500,40,5.2,10,9,16.0,610,9,999999999,300,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.6,73,98200,520,1363,404,89,0,89,10400,0,10400,3780,80,3.1,10,10,16.0,610,9,999999999,300,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.6,15.6,73,98300,247,1363,404,41,0,41,4700,0,4700,1560,80,3.6,10,10,16.0,671,9,999999999,300,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,20.0,16.1,78,98300,20,511,401,2,0,2,0,0,0,0,70,3.6,10,10,16.0,1433,9,999999999,300,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,15.6,79,98400,0,0,398,0,0,0,0,0,0,0,60,5.2,10,10,16.0,1372,9,999999999,300,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,19.4,14.4,73,98400,0,0,396,0,0,0,0,0,0,0,50,4.1,10,10,16.0,1433,9,999999999,300,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,14.4,78,98500,0,0,379,0,0,0,0,0,0,0,80,4.1,10,9,16.0,1372,9,999999999,300,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,14.4,78,98500,0,0,390,0,0,0,0,0,0,0,80,4.6,10,10,16.0,549,9,999999999,309,0.1560,0,88,0.180,0.0,1.0 +1996,9,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,98500,0,0,387,0,0,0,0,0,0,0,80,4.6,10,10,16.0,488,9,999999999,309,0.1560,0,88,0.180,0.0,1.0 +1996,9,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,98500,0,0,382,0,0,0,0,0,0,0,60,5.7,10,10,11.2,427,9,999999999,309,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,14.4,86,98500,0,0,382,0,0,0,0,0,0,0,50,4.1,10,10,16.0,427,9,999999999,309,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,98500,0,0,382,0,0,0,0,0,0,0,60,4.6,10,10,6.4,152,9,999999999,309,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,98500,0,0,382,0,0,0,0,0,0,0,60,5.2,10,10,6.4,122,9,999999999,309,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,98500,0,0,382,0,0,0,0,0,0,0,70,5.7,10,10,4.8,122,9,999999999,309,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,98600,0,0,382,0,0,0,0,0,0,0,70,6.7,10,10,2.8,122,9,999999999,309,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,98600,27,625,382,2,0,2,300,0,300,80,60,6.2,10,10,3.2,122,9,999999999,320,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,15.0,90,98600,266,1364,382,27,0,27,3200,0,3200,1110,60,5.2,10,10,2.4,122,9,999999999,320,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,98700,536,1364,385,69,0,69,8300,0,8300,3090,60,6.2,10,10,8.0,183,9,999999999,320,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,15.0,87,98700,768,1364,385,110,0,110,13300,0,13300,5270,60,6.7,10,10,11.2,183,9,999999999,320,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.0,84,98800,945,1364,388,142,0,142,17300,0,17300,7100,70,6.7,10,10,11.2,183,9,999999999,320,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.0,84,98800,1055,1364,388,194,0,194,23500,0,23500,9600,70,6.2,10,10,14.4,244,9,999999999,320,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,98700,1090,1364,387,201,0,201,24400,0,24400,9970,70,8.2,10,10,16.0,305,9,999999999,320,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.0,84,98700,1048,1364,388,192,0,192,23200,0,23200,9490,70,6.2,10,10,16.0,305,9,999999999,320,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,15.0,84,98700,932,1364,388,168,0,168,20200,0,20200,8140,50,6.7,10,10,16.0,305,9,999999999,329,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,18.3,15.0,81,98700,750,1364,391,128,0,128,15300,0,15300,5930,70,6.2,10,10,16.0,305,9,999999999,329,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.8,14.4,80,98700,514,1364,387,78,0,78,9200,0,9200,3370,70,7.2,10,10,16.0,305,9,999999999,329,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,17.2,14.4,84,98700,241,1364,384,28,0,28,3300,0,3300,1120,70,7.2,10,10,16.0,244,9,999999999,329,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.7,13.9,84,98800,17,489,381,1,0,1,0,0,0,0,60,7.2,10,10,16.0,244,9,999999999,329,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,14.4,90,99000,0,0,378,0,0,0,0,0,0,0,80,5.7,10,10,9.6,122,9,999999999,329,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.1,14.4,90,99000,0,0,378,0,0,0,0,0,0,0,70,5.7,10,10,4.0,122,9,999999999,329,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.3,14.8,90,99000,0,0,380,0,0,0,0,0,0,0,70,5.6,10,10,2.0,61,9,999999999,329,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.6,15.2,90,99000,0,0,382,0,0,0,0,0,0,0,70,5.6,10,10,4.0,61,9,999999999,329,0.1540,0,88,0.180,0.0,1.0 +1996,9,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9?9?9?9,16.8,15.6,90,98900,0,0,384,0,0,0,0,0,0,0,60,5.5,10,10,2.4,61,9,999999999,340,0.1540,0,88,0.180,0.0,1.0 +1980,10,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.1,16.0,97,97300,0,0,386,0,0,0,0,0,0,0,40,5.4,10,10,19.3,370,9,999999999,359,0.1500,0,88,999.000,999.0,99.0 +1980,10,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.3,16.4,97,97300,0,0,387,0,0,0,0,0,0,0,40,5.3,10,10,24.1,270,9,999999999,359,0.1500,0,88,999.000,999.0,99.0 +1980,10,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.6,16.8,97,97300,0,0,389,0,0,0,0,0,0,0,50,5.3,10,10,24.1,310,9,999999999,359,0.1500,0,88,999.000,999.0,99.0 +1980,10,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,97300,0,0,391,0,0,0,0,0,0,0,40,5.2,10,10,24.1,310,9,999999999,359,0.1500,0,88,999.000,999.0,99.0 +1980,10,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,97400,0,0,391,0,0,0,0,0,0,0,40,5.7,10,10,24.1,310,9,999999999,359,0.1500,0,88,999.000,999.0,99.0 +1980,10,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,97400,0,0,391,0,0,0,0,0,0,0,40,5.2,10,10,24.1,550,9,999999999,359,0.1500,0,88,999.000,999.0,99.0 +1980,10,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,97500,26,603,366,1,0,1,100,0,100,40,20,4.1,8,7,32.2,460,9,999999999,359,0.1500,0,88,999.000,999.0,99.0 +1980,10,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.8,90,97500,263,1365,375,67,12,65,7500,400,7500,2250,20,5.2,7,7,32.2,700,9,999999999,350,0.1500,0,88,999.000,999.0,99.0 +1980,10,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.8,90,97500,533,1365,400,118,0,118,13600,0,13600,4770,360,5.7,10,10,32.2,340,9,999999999,350,0.1500,0,88,999.000,999.0,99.0 +1980,10,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,97500,765,1365,404,75,0,75,9300,0,9300,3740,30,5.2,10,10,32.2,340,9,999999999,350,0.1500,0,88,999.000,999.0,99.0 +1980,10,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,18.3,90,97500,941,1365,404,142,0,142,17300,0,17300,7090,30,4.1,10,10,32.2,340,9,999999999,340,0.1500,0,88,999.000,999.0,99.0 +1980,10,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,97500,1051,1365,411,401,1,400,45900,100,45800,16190,70,4.1,10,10,48.3,340,9,999999999,329,0.1180,0,88,999.000,999.0,99.0 +1980,10,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,97500,1086,1365,417,411,2,410,47200,200,47100,16730,90,3.1,10,10,48.3,1070,9,999999999,329,0.1180,0,88,999.000,999.0,99.0 +1980,10,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,97400,1043,1365,421,375,0,375,43100,0,43100,15520,0,0.0,10,10,48.3,1070,9,999999999,329,0.1180,0,88,999.000,999.0,99.0 +1980,10,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,97400,927,1365,421,309,1,309,35500,100,35400,12800,60,3.1,10,10,48.3,1070,9,999999999,320,0.1180,0,88,999.000,999.0,99.0 +1980,10,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,97400,744,1365,415,285,112,224,31200,11600,24900,5770,70,1.5,9,9,40.2,910,9,999999999,320,0.1180,0,88,999.000,999.0,99.0 +1980,10,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,97400,508,1365,400,206,163,145,22500,15800,16600,3350,50,2.1,7,7,40.2,980,9,999999999,309,0.1180,0,88,999.000,999.0,99.0 +1980,10,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,18.9,79,97400,235,1365,390,74,72,62,8100,5300,7200,1320,90,3.1,6,6,40.2,980,9,999999999,300,0.1180,0,88,999.000,999.0,99.0 +1980,10,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,97400,15,466,386,8,4,8,0,0,0,0,140,3.1,6,6,24.1,980,9,999999999,300,0.1180,0,88,999.000,999.0,99.0 +1980,10,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,19.4,87,97500,0,0,404,0,0,0,0,0,0,0,130,4.1,9,9,24.1,640,9,999999999,300,0.1500,0,88,999.000,999.0,99.0 +1980,10,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,97600,0,0,412,0,0,0,0,0,0,0,300,3.6,10,10,24.1,640,9,999999999,300,0.1500,0,88,999.000,999.0,99.0 +1980,10,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,97600,0,0,400,0,0,0,0,0,0,0,220,3.6,10,9,24.1,640,9,999999999,300,0.1500,0,88,999.000,999.0,99.0 +1980,10,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,19.4,93,97500,0,0,398,0,0,0,0,0,0,0,290,3.1,10,9,24.1,910,9,999999999,290,0.1500,0,88,999.000,999.0,99.0 +1980,10,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,19.4,97,97500,0,0,394,0,0,0,0,0,0,0,290,4.1,10,9,19.3,980,9,999999999,290,0.1500,0,88,999.000,999.0,99.0 +1980,10,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,19.4,97,97500,0,0,406,0,0,0,0,0,0,0,280,2.6,10,10,12.9,1160,9,999999999,290,0.1490,0,88,999.000,999.0,99.0 +1980,10,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,19.4,97,97500,0,0,406,0,0,0,0,0,0,0,280,3.1,10,10,12.9,1220,9,999999999,290,0.1490,0,88,999.000,999.0,99.0 +1980,10,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,19.4,97,97500,0,0,406,0,0,0,0,0,0,0,290,3.1,10,10,12.9,1370,9,999999999,290,0.1490,0,88,999.000,999.0,99.0 +1980,10,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,18.9,100,97400,0,0,370,0,0,0,0,0,0,0,270,3.1,6,6,11.3,1370,9,999999999,279,0.1490,0,88,999.000,999.0,99.0 +1980,10,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,18.3,100,97500,0,0,376,0,0,0,0,0,0,0,270,3.6,8,8,9.7,1370,9,999999999,279,0.1490,0,88,999.000,999.0,99.0 +1980,10,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.8,100,97500,0,0,363,0,0,0,0,0,0,0,290,3.1,6,6,8.0,3050,9,999999999,279,0.1490,0,88,999.000,999.0,99.0 +1980,10,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,17.2,100,97500,25,580,336,13,5,13,1500,300,1400,320,270,3.6,0,0,4.8,77777,9,999999999,279,0.2110,0,88,999.000,999.0,99.0 +1980,10,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.8,97,97600,260,1365,342,110,247,62,11400,18100,7900,1130,290,3.1,0,0,9.7,77777,9,999999999,279,0.2110,0,88,999.000,999.0,99.0 +1980,10,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.3,84,97600,530,1365,362,294,482,106,31500,46000,13600,2020,280,4.1,1,1,11.3,77777,9,999999999,279,0.2110,0,88,999.000,999.0,99.0 +1980,10,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,97600,761,1365,388,424,383,209,45800,40400,23200,4890,290,4.1,5,5,11.3,77777,9,999999999,279,0.2110,0,88,999.000,999.0,99.0 +1980,10,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,97600,937,1365,381,655,638,214,67800,63800,23900,5630,260,5.2,2,2,19.3,77777,9,999999999,279,0.2110,0,88,999.000,999.0,99.0 +1980,10,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.2,62,97600,1046,1365,399,744,536,331,77900,55600,35100,11050,280,5.2,6,6,19.3,940,9,999999999,279,0.2110,0,88,999.000,999.0,99.0 +1980,10,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,17.8,64,97500,1081,1365,400,635,232,451,68800,24500,49300,15940,300,5.2,6,6,16.1,980,9,999999999,279,0.2110,0,88,999.000,999.0,99.0 +1980,10,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,16.7,54,97400,1038,1365,404,650,485,279,69100,50500,30700,9040,340,4.1,5,5,16.1,77777,9,999999999,279,0.2110,0,88,999.000,999.0,99.0 +1980,10,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.2,56,97400,921,1365,405,565,350,328,60400,37500,35100,9270,260,6.2,5,5,16.1,77777,9,999999999,279,0.2110,0,88,999.000,999.0,99.0 +1980,10,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,17.8,58,97400,738,1365,395,432,452,185,45500,45800,20700,4070,270,3.6,2,2,19.3,77777,9,999999999,279,0.2110,0,88,999.000,999.0,99.0 +1980,10,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.2,60,97400,502,1365,377,285,484,106,30300,45600,13500,2010,250,7.2,1,0,19.3,77777,9,999999999,279,0.2110,0,88,999.000,999.0,99.0 +1980,10,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,17.2,64,97400,229,1365,393,75,64,65,8200,4600,7400,1380,270,3.1,7,5,12.9,2740,9,999999999,279,0.2110,0,88,999.000,999.0,99.0 +1980,10,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,97400,13,444,391,5,0,5,0,0,0,0,240,4.1,8,6,12.9,1520,9,999999999,279,0.2110,0,88,999.000,999.0,99.0 +1980,10,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,18.3,81,97400,0,0,402,0,0,0,0,0,0,0,300,6.2,10,9,11.3,1070,9,999999999,270,0.1490,0,88,999.000,999.0,99.0 +1980,10,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,18.3,87,97500,0,0,408,0,0,0,0,0,0,0,340,6.2,10,10,11.3,610,9,999999999,250,0.1490,0,88,999.000,999.0,99.0 +1980,10,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,97600,0,0,352,0,0,0,0,0,0,0,330,5.7,6,4,12.9,2740,9,999999999,240,0.1490,0,88,999.000,999.0,99.0 +1980,10,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,97600,0,0,351,0,0,0,0,0,0,0,320,4.6,7,5,16.1,2740,9,999999999,229,0.1490,0,88,999.000,999.0,99.0 +1980,10,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,97600,0,0,346,0,0,0,0,0,0,0,310,4.6,7,5,16.1,2740,9,999999999,220,0.1490,0,88,999.000,999.0,99.0 +1980,10,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,97600,0,0,335,0,0,0,0,0,0,0,310,4.6,5,3,16.1,77777,9,999999999,200,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,97500,0,0,333,0,0,0,0,0,0,0,300,5.7,5,4,16.1,77777,9,999999999,189,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.8,100,97500,0,0,322,0,0,0,0,0,0,0,300,2.1,2,2,16.1,77777,9,999999999,179,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,97500,0,0,314,0,0,0,0,0,0,0,300,5.7,1,1,16.1,77777,9,999999999,170,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.7,100,97500,0,0,312,0,0,0,0,0,0,0,300,5.2,1,1,16.1,77777,9,999999999,150,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,11.1,100,97500,0,0,308,0,0,0,0,0,0,0,300,5.2,1,1,16.1,77777,9,999999999,139,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,11.1,100,97600,23,581,308,8,1,8,1000,0,1000,300,300,5.2,1,1,24.1,77777,9,999999999,129,0.2790,0,88,999.000,999.0,99.0 +1980,10,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,97600,256,1366,314,94,159,63,9900,11500,7700,1180,300,4.6,1,1,48.3,77777,9,999999999,129,0.2790,0,88,999.000,999.0,99.0 +1980,10,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,97600,526,1366,335,296,435,127,31000,41400,15000,2470,300,4.1,1,1,48.3,77777,9,999999999,129,0.2790,0,88,999.000,999.0,99.0 +1980,10,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,11.1,59,97600,757,1366,346,510,834,45,53900,82300,8200,1310,310,4.1,1,1,48.3,77777,9,999999999,129,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,97500,933,1366,352,672,899,54,70700,89800,9200,1690,300,5.2,0,0,48.3,77777,9,999999999,129,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.8,42,97500,1042,1366,359,758,886,79,79000,88700,11100,2490,280,6.2,3,3,48.3,77777,9,999999999,129,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.8,41,97400,1076,1366,370,610,478,232,66500,50000,27100,8000,300,7.2,6,6,48.3,1830,9,999999999,139,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.2,39,97300,1033,1366,366,686,656,188,72600,66700,22000,5960,280,8.2,6,5,48.3,9140,9,999999999,139,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,5.6,34,97300,915,1366,370,584,624,164,61600,63200,19100,4330,260,8.2,7,6,48.3,9140,9,999999999,139,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,6.1,37,97300,732,1366,362,472,597,150,48800,58800,17200,3210,270,8.2,5,4,40.2,77777,9,999999999,139,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,6.1,38,97400,495,1366,362,281,448,117,29400,42000,14200,2240,260,7.2,5,5,40.2,77777,9,999999999,139,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,6.1,43,97400,222,1366,338,96,310,45,10100,21100,6700,800,300,4.1,3,1,40.2,77777,9,999999999,139,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.2,54,97400,12,398,329,1,0,1,0,0,0,0,290,3.1,2,1,40.2,77777,9,999999999,139,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.8,67,97500,0,0,317,0,0,0,0,0,0,0,270,3.1,2,1,24.1,77777,9,999999999,139,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,97500,0,0,308,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,139,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,97500,0,0,307,0,0,0,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,129,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,97600,0,0,302,0,0,0,0,0,0,0,280,4.1,0,0,16.1,77777,9,999999999,129,0.2660,0,88,999.000,999.0,99.0 +1980,10,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,97600,0,0,300,0,0,0,0,0,0,0,280,4.1,0,0,16.1,77777,9,999999999,129,0.2660,0,88,999.000,999.0,99.0 +1980,10,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,97500,0,0,295,0,0,0,0,0,0,0,300,3.1,0,0,16.1,77777,9,999999999,129,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,97600,0,0,295,0,0,0,0,0,0,0,310,5.2,0,0,16.1,77777,9,999999999,120,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,97600,0,0,291,0,0,0,0,0,0,0,310,3.1,0,0,16.1,77777,9,999999999,120,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,97600,0,0,288,0,0,0,0,0,0,0,310,6.2,0,0,16.1,77777,9,999999999,120,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,97600,0,0,285,0,0,0,0,0,0,0,300,2.6,1,0,16.1,77777,9,999999999,110,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,97600,0,0,295,0,0,0,0,0,0,0,300,2.6,4,3,16.1,77777,9,999999999,110,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,97700,22,558,292,8,45,2,500,2300,400,60,260,2.6,6,2,24.1,77777,9,999999999,110,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,97800,252,1367,301,91,117,69,9900,8800,8200,1480,300,3.1,9,4,12.9,77777,9,999999999,120,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.1,77,97800,522,1367,306,292,465,113,30900,44200,14000,2160,300,2.6,8,3,12.9,77777,9,999999999,120,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,5.6,57,97900,753,1367,322,469,502,191,49500,50900,21400,4260,270,2.6,8,3,12.9,77777,9,999999999,129,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,5.6,54,97800,929,1367,327,626,662,174,65800,66900,20200,4650,170,2.6,8,3,48.3,77777,9,999999999,139,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,4.4,45,97800,1037,1367,334,795,861,138,83600,86700,17600,4150,160,5.2,8,3,48.3,77777,9,999999999,139,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,5.6,42,97700,1071,1367,345,799,913,80,83200,91500,11300,2640,220,3.1,8,3,48.3,77777,9,999999999,150,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.7,44,97600,1027,1367,352,767,868,112,79100,86600,13800,2860,230,5.2,5,4,48.3,77777,9,999999999,160,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.2,41,97600,910,1367,363,646,711,171,67900,71800,20000,4450,230,5.2,5,5,48.3,77777,9,999999999,160,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,7.8,44,97500,726,1367,362,251,62,218,27600,6200,24300,6740,220,4.1,6,5,48.3,7620,9,999999999,170,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,7.8,44,97500,489,1367,365,99,0,99,11400,0,11400,4010,200,5.2,7,6,48.3,2440,9,999999999,179,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.9,49,97500,216,1367,367,12,2,12,1500,0,1500,510,200,4.1,7,7,48.3,1460,9,999999999,179,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,9.4,54,97600,10,376,358,1,17,0,0,0,0,0,220,4.1,7,6,48.3,1520,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.0,67,97700,0,0,334,0,0,0,0,0,0,0,260,2.1,3,2,40.2,77777,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,9.4,60,97800,0,0,338,0,0,0,0,0,0,0,220,2.6,3,2,40.2,77777,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,97800,0,0,345,0,0,0,0,0,0,0,180,2.6,5,4,32.2,77777,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.0,65,97800,0,0,345,0,0,0,0,0,0,0,170,2.6,6,5,32.2,2130,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1980,10,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.0,67,97700,0,0,350,0,0,0,0,0,0,0,180,2.6,7,7,16.1,1370,9,999999999,189,0.1460,0,88,999.000,999.0,99.0 +1980,10,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.0,67,97700,0,0,350,0,0,0,0,0,0,0,180,2.6,8,7,16.1,1370,9,999999999,200,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,97700,0,0,344,0,0,0,0,0,0,0,160,1.5,8,7,16.1,1370,9,999999999,200,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,97700,0,0,347,0,0,0,0,0,0,0,160,1.5,8,8,16.1,1370,9,999999999,200,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,97700,0,0,332,0,0,0,0,0,0,0,280,1.5,6,6,16.1,1370,9,999999999,200,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,86,97700,0,0,331,0,0,0,0,0,0,0,300,1.5,6,6,16.1,1370,9,999999999,200,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,11.1,100,97700,0,0,327,0,0,0,0,0,0,0,300,4.6,7,7,16.1,1370,9,999999999,200,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,97800,20,536,318,2,0,2,0,0,0,0,320,5.2,7,7,8.0,120,9,999999999,200,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,97900,249,1368,338,81,36,74,8800,2900,8300,1780,310,5.7,10,10,6.4,120,9,999999999,200,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,97900,518,1368,309,310,623,72,32600,59000,10200,1450,320,6.2,4,1,12.9,77777,9,999999999,189,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,98000,749,1368,326,498,748,86,52700,74300,11800,1970,320,6.2,2,2,16.1,77777,9,999999999,189,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.6,70,98000,924,1368,338,537,409,259,56600,42300,27900,6990,320,6.7,4,3,24.1,77777,9,999999999,189,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,11.7,63,98100,1032,1368,355,637,305,406,68000,32900,43200,13420,320,6.7,5,4,32.2,77777,9,999999999,179,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,98100,1065,1368,367,649,337,385,69800,36400,41400,13210,320,6.2,8,6,32.2,850,9,999999999,179,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,98000,1022,1368,367,661,469,309,69500,48700,33000,9780,320,3.1,7,6,32.2,850,9,999999999,179,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.2,59,98000,904,1368,367,528,472,214,56500,48800,24100,5540,320,7.2,6,5,32.2,850,9,999999999,170,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.1,57,98100,720,1368,363,423,486,166,45000,49100,19100,3570,320,7.7,6,5,32.2,850,9,999999999,170,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,10.6,61,98100,483,1368,345,302,609,86,31300,56100,11400,1640,320,7.2,3,2,32.2,77777,9,999999999,170,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,98200,209,1368,337,97,336,45,9800,22700,6300,780,320,4.6,2,2,24.1,77777,9,999999999,160,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,98300,8,353,329,2,20,0,0,0,0,0,340,5.2,2,2,24.1,77777,9,999999999,160,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,98400,0,0,316,0,0,0,0,0,0,0,330,4.1,1,1,16.1,77777,9,999999999,160,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,98400,0,0,326,0,0,0,0,0,0,0,350,4.1,6,5,16.1,980,9,999999999,150,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,98500,0,0,310,0,0,0,0,0,0,0,350,4.6,1,1,16.1,77777,9,999999999,150,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,98500,0,0,300,0,0,0,0,0,0,0,350,3.1,0,0,16.1,77777,9,999999999,139,0.1450,0,88,999.000,999.0,99.0 +1980,10,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,98500,0,0,307,0,0,0,0,0,0,0,30,3.1,2,2,16.1,77777,9,999999999,139,0.1450,0,88,999.000,999.0,99.0 +1980,10,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,98500,0,0,305,0,0,0,0,0,0,0,360,1.5,2,2,16.1,77777,9,999999999,139,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,98500,0,0,303,0,0,0,0,0,0,0,310,3.1,2,2,16.1,77777,9,999999999,129,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,98500,0,0,295,0,0,0,0,0,0,0,320,3.1,2,2,16.1,77777,9,999999999,129,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,98600,0,0,295,0,0,0,0,0,0,0,350,3.1,2,2,16.1,77777,9,999999999,120,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,98600,0,0,288,0,0,0,0,0,0,0,340,2.1,1,1,16.1,77777,9,999999999,120,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,98700,0,0,288,0,0,0,0,0,0,0,340,3.6,1,1,16.1,77777,9,999999999,110,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,98700,19,513,288,5,44,0,0,0,0,0,20,3.6,1,1,16.1,77777,9,999999999,110,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,98800,245,1369,296,115,506,23,12100,40100,4900,610,340,3.1,0,0,16.1,77777,9,999999999,110,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,98800,514,1369,309,320,746,37,33800,70200,7400,1020,50,5.2,0,0,19.3,77777,9,999999999,110,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.8,65,98800,745,1369,313,516,852,49,54400,83900,8600,1380,60,7.2,0,0,24.1,77777,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.8,58,98800,920,1369,321,660,882,63,69100,88000,9800,1850,40,4.1,0,0,48.3,77777,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,6.7,48,98800,1027,1369,327,774,938,66,81100,94000,10300,2170,350,5.2,0,0,48.3,77777,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,6.1,45,98700,1060,1369,329,802,945,66,84000,94800,10300,2270,40,4.1,0,0,48.3,77777,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.7,44,98700,1016,1369,335,769,947,62,80700,94900,10000,2040,100,4.1,0,0,48.3,77777,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.8,45,98600,898,1369,339,662,911,61,69500,90800,9700,1770,100,3.1,0,0,48.3,77777,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,5.6,38,98500,714,1369,339,503,863,50,53000,84600,8700,1370,70,3.6,0,0,48.3,77777,9,999999999,89,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,5.6,39,98500,476,1369,336,294,731,38,31100,67800,7400,1010,50,4.1,0,0,48.3,77777,9,999999999,89,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,3.9,39,98500,203,1369,326,88,449,21,9300,33600,4300,540,50,3.6,0,0,48.3,77777,9,999999999,89,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,3.9,43,98500,7,308,319,4,1,4,0,0,0,0,50,3.1,0,0,48.3,77777,9,999999999,89,0.2140,0,88,999.000,999.0,99.0 +1980,10,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.1,56,98600,0,0,314,0,0,0,0,0,0,0,60,2.1,0,0,40.2,77777,9,999999999,89,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,98600,0,0,309,0,0,0,0,0,0,0,350,2.6,0,0,40.2,77777,9,999999999,89,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,98600,0,0,305,0,0,0,0,0,0,0,360,3.1,0,0,32.2,77777,9,999999999,89,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.9,83,98700,0,0,303,0,0,0,0,0,0,0,340,3.6,0,0,32.2,77777,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1980,10,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,98600,0,0,302,0,0,0,0,0,0,0,360,1.5,0,0,16.1,77777,9,999999999,100,0.1680,0,88,999.000,999.0,99.0 +1980,10,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,98600,0,0,302,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,100,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,98600,0,0,300,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,100,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,98500,0,0,297,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,100,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,98500,0,0,290,0,0,0,0,0,0,0,0,0.0,0,0,16.1,77777,9,999999999,100,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,98500,0,0,286,0,0,0,0,0,0,0,310,2.1,0,0,16.1,77777,9,999999999,110,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,98500,0,0,286,0,0,0,0,0,0,0,330,2.1,0,0,16.1,77777,9,999999999,110,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,98500,18,514,286,4,44,0,0,0,0,0,330,2.1,0,0,24.1,77777,9,999999999,110,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.8,80,98500,241,1369,299,114,516,21,12000,40700,4800,580,0,0.0,0,0,12.9,77777,9,999999999,110,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,98500,511,1369,312,315,777,22,33700,73200,6400,710,320,2.6,0,0,16.1,77777,9,999999999,110,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,8.3,62,98500,741,1369,319,500,856,34,53300,84400,7500,1070,290,4.6,0,0,19.3,77777,9,999999999,120,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.1,42,98500,915,1369,334,661,927,37,70300,92700,8200,1250,300,3.6,0,0,40.2,77777,9,999999999,120,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.7,41,98400,1023,1369,340,750,924,55,78800,92600,9400,1890,340,5.2,0,0,40.2,77777,9,999999999,120,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,7.2,39,98300,1055,1369,346,790,946,57,83100,94900,9700,2030,260,5.2,0,0,40.2,77777,9,999999999,129,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,5.0,32,98200,1011,1369,348,750,936,55,78900,93800,9500,1860,10,4.1,0,0,40.2,77777,9,999999999,129,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,4.4,29,98100,892,1369,350,643,904,51,67900,90100,9000,1570,350,3.1,0,0,48.3,77777,9,999999999,129,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,3.9,26,98100,707,1369,355,479,829,48,50500,81200,8400,1330,320,3.6,0,0,48.3,77777,9,999999999,129,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,4.4,29,98100,470,1369,350,279,701,37,29500,64900,7200,990,290,2.6,0,0,48.3,77777,9,999999999,139,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.2,41,98100,196,1369,343,81,409,22,8500,29400,4200,480,320,2.1,0,0,48.3,77777,9,999999999,139,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.3,51,98100,6,285,334,4,0,4,0,0,0,0,320,2.1,0,0,40.2,77777,9,999999999,139,0.2590,0,88,999.000,999.0,99.0 +1980,10,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,7.8,52,98100,0,0,328,0,0,0,0,0,0,0,320,2.1,0,0,40.2,77777,9,999999999,139,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,8.3,56,98200,0,0,326,0,0,0,0,0,0,0,0,0.0,0,0,40.2,77777,9,999999999,139,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.9,63,98200,0,0,322,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,150,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,98200,0,0,317,0,0,0,0,0,0,0,320,1.5,0,0,32.2,77777,9,999999999,150,0.1880,0,88,999.000,999.0,99.0 +1980,10,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.3,67,98100,0,0,314,0,0,0,0,0,0,0,290,3.6,0,0,16.1,77777,9,999999999,150,0.1880,0,88,999.000,999.0,99.0 +1980,10,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,98100,0,0,309,0,0,0,0,0,0,0,270,2.6,0,0,16.1,77777,9,999999999,150,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,98000,0,0,309,0,0,0,0,0,0,0,270,2.6,0,0,16.1,77777,9,999999999,150,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,98000,0,0,307,0,0,0,0,0,0,0,280,3.1,0,0,16.1,77777,9,999999999,150,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,98000,0,0,302,0,0,0,0,0,0,0,280,3.1,0,0,16.1,77777,9,999999999,150,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,98000,0,0,302,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,160,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,98000,0,0,300,0,0,0,0,0,0,0,280,1.5,0,0,16.1,77777,9,999999999,160,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,98000,17,491,300,2,24,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,160,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,9.4,78,98100,238,1370,310,98,412,25,10200,31700,4700,550,250,1.5,0,0,32.2,77777,9,999999999,170,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,9.4,58,98100,507,1370,337,285,658,39,30000,61700,7100,1040,290,1.5,2,1,24.1,77777,9,999999999,170,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.7,59,98100,736,1370,343,471,769,55,49500,75600,8800,1460,300,4.1,3,0,19.3,77777,9,999999999,179,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,12.8,52,98100,911,1370,360,618,829,63,64700,82600,9600,1830,320,4.6,0,0,19.3,77777,9,999999999,179,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,98000,1018,1370,363,708,844,77,73700,84500,10800,2350,320,3.1,0,0,24.1,77777,9,999999999,189,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.9,52,98000,1050,1370,367,752,869,82,78200,87000,11300,2570,300,3.1,0,0,40.2,77777,9,999999999,200,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,14.4,47,97900,1005,1370,386,719,864,82,74800,86400,11300,2390,300,5.7,1,1,40.2,77777,9,999999999,200,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,14.4,46,97800,886,1370,389,618,828,79,64300,82300,10900,2000,290,3.6,1,1,40.2,77777,9,999999999,209,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,14.4,46,97800,701,1370,381,463,776,63,48400,75800,9500,1520,320,3.1,0,0,48.3,77777,9,999999999,209,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,14.4,47,97800,464,1370,379,265,632,50,28000,58500,8100,1080,290,2.6,0,0,48.3,77777,9,999999999,220,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,14.4,56,97800,190,1370,365,72,340,24,7500,22800,4300,460,270,2.6,0,0,40.2,77777,9,999999999,220,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,97800,4,263,357,0,7,0,0,0,0,0,280,3.1,0,0,40.2,77777,9,999999999,229,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.0,71,97800,0,0,349,0,0,0,0,0,0,0,290,3.1,0,0,40.2,77777,9,999999999,229,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,97800,0,0,342,0,0,0,0,0,0,0,290,2.6,0,0,32.2,77777,9,999999999,229,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.0,81,97900,0,0,339,0,0,0,0,0,0,0,280,3.6,0,0,32.2,77777,9,999999999,220,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,14.4,81,97900,0,0,336,0,0,0,0,0,0,0,280,3.6,0,0,24.1,77777,9,999999999,220,0.2870,0,88,999.000,999.0,99.0 +1980,10,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.9,81,97900,0,0,332,0,0,0,0,0,0,0,280,3.6,0,0,24.1,77777,9,999999999,220,0.2870,0,88,999.000,999.0,99.0 +1980,10,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,97800,0,0,329,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,220,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,97800,0,0,329,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,209,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,97800,0,0,324,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,209,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,97800,0,0,321,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,209,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,97800,0,0,318,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,200,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,97800,0,0,318,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,200,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,97900,16,468,313,2,16,0,0,0,0,0,310,3.1,0,0,11.3,77777,9,999999999,200,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,13.3,75,97900,234,1371,335,85,117,65,9200,8500,7800,1390,310,3.6,0,0,19.3,77777,9,999999999,200,0.3200,0,88,999.000,999.0,99.0 +1980,10,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,97900,503,1371,351,268,558,61,28400,52700,9000,1240,290,3.1,0,0,19.3,77777,9,999999999,200,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,14.4,62,97900,732,1371,356,449,679,83,47400,67300,11300,1890,290,3.6,0,0,19.3,77777,9,999999999,200,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.0,56,97900,906,1371,368,601,756,98,64300,76300,13600,2600,290,3.6,0,0,19.3,77777,9,999999999,189,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,97900,1013,1371,366,694,784,111,74400,79500,15400,3360,320,4.1,0,0,19.3,77777,9,999999999,189,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,15.0,50,97900,1045,1371,376,724,768,136,76300,77400,17200,4150,300,4.1,0,0,19.3,77777,9,999999999,189,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,15.6,49,97800,999,1371,390,635,618,182,67000,62800,21100,5410,300,3.6,1,1,19.3,77777,9,999999999,189,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,98100,880,1371,386,591,709,133,62900,72100,16500,3420,300,4.1,0,0,19.3,77777,9,999999999,189,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,15.6,47,97700,695,1371,386,437,668,96,46400,66600,12600,2120,290,4.6,0,0,24.1,77777,9,999999999,189,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.7,15.6,51,97700,457,1371,380,249,535,69,26000,49000,9600,1340,310,3.1,0,0,24.1,77777,9,999999999,179,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,97700,184,1371,369,66,260,31,6800,16900,4500,570,310,2.1,0,0,24.1,77777,9,999999999,179,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.1,66,97800,3,217,361,0,2,0,0,0,0,0,300,1.5,0,0,19.3,77777,9,999999999,179,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,97800,0,0,356,0,0,0,0,0,0,0,280,2.1,0,0,19.3,77777,9,999999999,179,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.1,76,97800,0,0,351,0,0,0,0,0,0,0,270,2.1,0,0,19.3,77777,9,999999999,179,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.1,78,97900,0,0,348,0,0,0,0,0,0,0,290,2.6,0,0,19.3,77777,9,999999999,179,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.1,84,97900,0,0,343,0,0,0,0,0,0,0,280,3.1,0,0,19.3,77777,9,999999999,179,0.3270,0,88,999.000,999.0,99.0 +1980,10,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.1,84,97900,0,0,343,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,179,0.3270,0,88,999.000,999.0,99.0 +1980,10,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,97900,0,0,334,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,179,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,97900,0,0,334,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,179,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,14.4,90,97900,0,0,328,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,179,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,14.4,90,97900,0,0,328,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,179,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,14.4,90,97900,0,0,328,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,179,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,97900,0,0,322,0,0,0,0,0,0,0,280,2.6,0,0,11.3,77777,9,999999999,179,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,97900,14,446,322,2,10,1,0,0,0,0,0,0.0,0,0,8.0,77777,9,999999999,179,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,97900,230,1372,342,87,307,35,9000,22100,5300,650,310,3.1,0,0,11.3,77777,9,999999999,189,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.1,76,97900,499,1372,351,261,570,52,27600,53600,8000,1140,270,3.1,0,0,11.3,77777,9,999999999,189,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,98000,728,1372,364,433,678,71,46500,67600,10600,1690,290,4.1,0,0,11.3,77777,9,999999999,200,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,16.7,56,97900,902,1372,378,580,733,95,62200,74000,13300,2520,290,3.1,0,0,16.1,77777,9,999999999,209,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,17.8,55,97900,1008,1372,388,690,790,106,71200,78800,13100,2690,340,3.1,0,0,16.1,77777,9,999999999,209,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.3,17.2,51,97900,1039,1372,390,725,803,113,77800,81500,15900,3580,290,3.1,0,0,16.1,77777,9,999999999,220,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,29.4,17.2,48,97800,994,1372,396,739,782,170,78400,79600,20500,5030,320,3.6,0,0,19.3,77777,9,999999999,229,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.7,48,97700,874,1372,400,567,687,127,60500,69900,15800,3250,260,3.1,1,1,19.3,77777,9,999999999,229,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,30.0,16.1,43,97700,689,1372,405,436,632,117,45700,62400,14300,2500,270,3.6,1,1,32.2,77777,9,999999999,240,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,28.9,16.1,46,97700,451,1372,392,239,490,77,24800,44400,10100,1470,300,3.1,0,0,32.2,77777,9,999999999,250,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,17.8,60,97700,178,1372,380,61,232,31,6300,14800,4400,560,290,2.6,0,0,32.2,77777,9,999999999,250,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,17.8,71,97700,3,194,366,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,259,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,97700,0,0,360,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,259,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.8,81,97800,0,0,355,0,0,0,0,0,0,0,280,3.6,0,0,19.3,77777,9,999999999,250,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,97800,0,0,354,0,0,0,0,0,0,0,290,3.1,0,0,19.3,77777,9,999999999,250,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.8,84,97800,0,0,353,0,0,0,0,0,0,0,290,3.6,0,0,19.3,77777,9,999999999,250,0.3250,0,88,999.000,999.0,99.0 +1980,10,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,17.2,84,97800,0,0,349,0,0,0,0,0,0,0,280,4.6,0,0,19.3,77777,9,999999999,250,0.3250,0,88,999.000,999.0,99.0 +1980,10,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,97800,0,0,346,0,0,0,0,0,0,0,290,4.6,0,0,19.3,77777,9,999999999,250,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,97700,0,0,337,0,0,0,0,0,0,0,280,3.6,0,0,19.3,77777,9,999999999,240,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,97700,0,0,337,0,0,0,0,0,0,0,280,4.1,0,0,19.3,77777,9,999999999,240,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,97700,0,0,337,0,0,0,0,0,0,0,280,4.1,1,1,19.3,77777,9,999999999,240,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,97600,0,0,342,0,0,0,0,0,0,0,250,4.1,0,0,19.3,77777,9,999999999,229,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,97700,0,0,343,0,0,0,0,0,0,0,280,4.1,1,1,16.1,77777,9,999999999,229,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,97700,13,446,340,1,3,1,0,0,0,0,280,4.1,1,1,16.1,77777,9,999999999,229,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,97700,226,1373,339,85,251,43,9000,17200,6200,760,270,4.6,0,0,11.3,77777,9,999999999,220,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.1,76,97700,495,1373,351,257,501,75,26900,46700,10000,1480,300,5.2,0,0,11.3,77777,9,999999999,200,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,16.7,69,97700,724,1373,362,434,624,103,46100,62400,13100,2300,300,6.2,0,0,11.3,77777,9,999999999,189,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,17.8,62,97700,897,1373,377,592,725,115,62100,72600,14500,2850,310,4.6,0,0,11.3,77777,9,999999999,179,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,97700,1003,1373,380,694,764,133,72900,76800,16600,3750,290,4.1,0,0,11.3,77777,9,999999999,170,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,18.3,58,97600,1034,1373,386,721,749,154,74900,75000,18200,4400,290,5.2,0,0,11.3,77777,9,999999999,150,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.8,18.3,56,97500,988,1373,389,679,708,166,72000,72100,19900,4880,300,5.7,0,0,11.3,77777,9,999999999,139,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,27.2,16.7,53,97500,868,1373,384,585,690,146,61800,69800,17500,3650,280,6.2,0,0,11.3,77777,9,999999999,129,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,11.7,41,97500,683,1373,372,465,769,80,48900,75600,11200,1760,310,5.2,0,0,24.1,77777,9,999999999,120,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,5.6,30,97500,445,1373,357,282,723,46,29600,66100,8100,1050,310,6.2,0,0,24.1,77777,9,999999999,100,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.7,37,97500,172,1373,348,78,415,25,7800,28000,4300,490,320,3.6,0,0,24.1,77777,9,999999999,89,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,5.0,39,97600,2,172,333,0,3,0,0,0,0,0,290,4.1,0,0,24.1,77777,9,999999999,80,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,3.3,37,97700,0,0,326,0,0,0,0,0,0,0,290,4.6,0,0,24.1,77777,9,999999999,80,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,3.3,43,97700,0,0,316,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,80,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,3.9,49,97700,0,0,309,0,0,0,0,0,0,0,290,3.1,0,0,24.1,77777,9,999999999,80,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,3.9,49,97700,0,0,309,0,0,0,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,80,0.3230,0,88,999.000,999.0,99.0 +1980,10,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,2.8,49,97700,0,0,303,0,0,0,0,0,0,0,290,4.1,0,0,32.2,77777,9,999999999,80,0.3230,0,88,999.000,999.0,99.0 +1980,10,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.8,53,97700,0,0,299,0,0,0,0,0,0,0,300,4.1,0,0,40.2,77777,9,999999999,80,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,2.2,53,97800,0,0,296,0,0,0,0,0,0,0,300,5.2,0,0,40.2,77777,9,999999999,80,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,2.2,55,97800,0,0,294,0,0,0,0,0,0,0,320,5.7,0,0,40.2,77777,9,999999999,80,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.8,61,97800,0,0,290,0,0,0,0,0,0,0,320,3.1,0,0,40.2,77777,9,999999999,80,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.3,66,97800,0,0,288,0,0,0,0,0,0,0,300,3.6,0,0,40.2,77777,9,999999999,80,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,97900,0,0,283,0,0,0,0,0,0,0,300,3.1,0,0,40.2,77777,9,999999999,80,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,98000,12,423,279,3,30,0,0,0,0,0,280,4.1,0,0,40.2,77777,9,999999999,80,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.0,71,98000,223,1373,292,110,518,25,11600,39800,5100,600,300,4.1,0,0,40.2,77777,9,999999999,80,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.6,60,98100,490,1373,306,303,783,21,32600,73200,6300,680,340,4.1,0,0,40.2,77777,9,999999999,80,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,5.6,54,98100,719,1373,314,498,894,26,53400,87900,7200,850,10,4.6,0,0,40.2,77777,9,999999999,80,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,5.6,45,98100,892,1373,326,659,946,40,69900,94400,8400,1310,340,5.2,0,0,40.2,77777,9,999999999,80,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.6,43,98100,998,1373,328,762,844,144,79100,84500,17500,3910,350,5.7,0,0,40.2,77777,9,999999999,80,0.1500,0,88,999.000,999.0,99.0 +1980,10,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,5.6,40,98000,1029,1373,333,790,852,147,82200,85500,18000,4210,300,5.2,0,0,40.2,77777,9,999999999,80,0.1500,0,88,999.000,999.0,99.0 +1980,10,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,4.4,35,97900,983,1373,337,745,838,143,77500,83800,17300,3770,310,4.1,0,0,40.2,77777,9,999999999,69,0.1500,0,88,999.000,999.0,99.0 +1980,10,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.9,34,97900,863,1373,337,654,958,49,69100,95300,9000,1490,310,5.2,0,0,40.2,77777,9,999999999,69,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,2.8,31,97900,677,1373,336,493,896,49,52000,87400,8800,1320,310,5.2,0,0,40.2,77777,9,999999999,69,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,4.4,36,97900,439,1373,335,287,769,39,30200,70100,7700,990,300,7.2,0,0,40.2,77777,9,999999999,69,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.9,40,98000,165,1373,324,79,431,26,7900,28500,4400,490,310,4.1,0,0,40.2,77777,9,999999999,69,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,4.4,51,98000,1,149,310,1,1,1,0,0,0,0,340,3.1,0,0,24.1,77777,9,999999999,69,0.1500,0,88,999.000,999.0,99.0 +1980,10,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.6,62,98100,0,0,304,0,0,0,0,0,0,0,300,3.1,0,0,24.1,77777,9,999999999,69,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.1,67,98100,0,0,302,0,0,0,0,0,0,0,340,3.1,0,0,24.1,77777,9,999999999,69,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.1,72,98200,0,0,298,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,69,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.0,71,98200,0,0,292,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,69,0.1100,0,88,999.000,999.0,99.0 +1980,10,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.9,71,98200,0,0,286,0,0,0,0,0,0,0,320,4.1,0,0,32.2,77777,9,999999999,69,0.1100,0,88,999.000,999.0,99.0 +1980,10,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.9,71,98200,0,0,286,0,0,0,0,0,0,0,320,5.2,0,0,32.2,77777,9,999999999,69,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,3.3,71,98200,0,0,283,0,0,0,0,0,0,0,330,5.2,0,0,32.2,77777,9,999999999,69,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,98200,0,0,281,0,0,0,0,0,0,0,340,4.1,0,0,32.2,77777,9,999999999,69,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,76,98200,0,0,276,0,0,0,0,0,0,0,310,1.5,0,0,32.2,77777,9,999999999,69,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,79,98300,0,0,274,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,69,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,98400,0,0,272,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,69,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,98400,11,401,272,3,30,0,0,0,0,0,330,2.1,0,0,32.2,77777,9,999999999,69,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.0,69,98500,219,1374,294,108,536,21,11300,41000,4800,560,60,2.6,0,0,40.2,77777,9,999999999,69,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,4.4,59,98500,486,1374,300,307,788,25,32700,73500,6600,780,100,4.6,0,0,32.2,77777,9,999999999,69,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.0,57,98600,715,1374,306,506,892,39,53700,87600,8000,1160,90,3.1,0,0,32.2,77777,9,999999999,80,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,5.6,54,98500,888,1374,314,654,937,45,69200,93400,8700,1420,250,1.5,0,0,32.2,77777,9,999999999,80,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,3.9,43,98500,993,1374,319,743,958,46,78500,96000,9000,1590,70,2.1,0,0,32.2,77777,9,999999999,80,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.9,40,98400,1023,1374,324,757,926,64,79400,92800,10100,2100,120,2.6,0,0,32.2,77777,9,999999999,80,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.9,34,98300,977,1374,337,731,939,60,76800,93900,9800,1890,40,3.1,0,0,32.2,77777,9,999999999,80,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,3.9,31,98300,857,1374,342,618,900,53,65000,89500,9100,1560,30,2.6,0,0,32.2,77777,9,999999999,80,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,5.0,33,98300,671,1374,346,455,816,54,47800,79400,8900,1380,340,4.6,0,0,32.2,77777,9,999999999,89,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,4.4,34,98300,432,1374,340,251,670,38,26400,60900,7200,970,350,2.1,0,0,32.2,77777,9,999999999,89,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,5.6,42,98300,159,1374,331,64,359,22,6500,23700,3800,440,300,2.1,0,0,24.1,77777,9,999999999,89,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,6.7,54,98400,1,103,320,1,0,1,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,89,0.1630,0,88,999.000,999.0,99.0 +1980,10,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.7,62,98400,0,0,310,0,0,0,0,0,0,0,340,2.1,0,0,24.1,77777,9,999999999,89,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.7,64,98400,0,0,307,0,0,0,0,0,0,0,330,2.6,0,0,24.1,77777,9,999999999,89,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.6,64,98400,0,0,302,0,0,0,0,0,0,0,330,2.6,0,0,24.1,77777,9,999999999,89,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,5.0,59,98400,0,0,304,0,0,0,0,0,0,0,340,1.5,0,0,24.1,77777,9,999999999,89,0.1580,0,88,999.000,999.0,99.0 +1980,10,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,3.9,59,98400,0,0,298,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,89,0.1580,0,88,999.000,999.0,99.0 +1980,10,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.6,71,98400,0,0,295,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,89,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,98400,0,0,295,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,89,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.1,77,98400,0,0,293,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,89,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,4.4,80,98400,0,0,282,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,89,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,98400,0,0,284,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,89,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,98500,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,19.3,77777,9,999999999,89,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,98600,10,378,286,3,15,1,0,0,0,0,0,0.0,0,0,11.3,77777,9,999999999,89,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,98700,215,1375,302,97,420,30,9800,30700,5000,590,80,2.1,0,0,32.2,77777,9,999999999,89,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.8,67,98700,482,1375,311,283,671,45,29700,62300,7800,1090,140,3.1,0,0,19.3,77777,9,999999999,89,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.2,54,98700,710,1375,323,484,813,61,50700,79500,9500,1510,170,3.6,0,0,24.1,77777,9,999999999,89,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.8,47,98700,883,1375,336,629,866,69,65700,86100,10200,1870,170,4.6,0,0,32.2,77777,9,999999999,89,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,8.3,47,98600,988,1375,339,727,897,79,75700,89600,11100,2270,130,4.1,0,0,32.2,77777,9,999999999,89,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.2,41,98500,1018,1375,343,755,899,85,78400,89900,11600,2470,160,5.2,0,0,32.2,77777,9,999999999,89,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,7.2,38,98400,971,1375,348,715,886,85,74200,88400,11600,2300,140,5.7,0,0,32.2,77777,9,999999999,100,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,7.2,38,98400,851,1375,348,608,846,81,63200,83800,11200,1930,130,3.6,0,0,32.2,77777,9,999999999,100,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,7.8,40,98300,665,1375,349,456,787,73,48300,77300,10800,1630,120,3.1,0,0,24.1,77777,9,999999999,100,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,7.2,38,98300,426,1375,348,249,651,45,26200,59200,7800,970,170,4.1,0,0,24.1,77777,9,999999999,100,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,7.2,42,98300,154,1375,341,61,317,25,6200,18900,4100,460,150,3.6,0,0,24.1,77777,9,999999999,100,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.8,47,98400,0,80,336,0,0,0,0,0,0,0,130,3.6,0,0,24.1,77777,9,999999999,100,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.9,56,98400,0,0,330,0,0,0,0,0,0,0,140,4.1,0,0,24.1,77777,9,999999999,100,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.3,60,98400,0,0,321,0,0,0,0,0,0,0,140,3.6,0,0,24.1,77777,9,999999999,100,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,98400,0,0,317,0,0,0,0,0,0,0,130,2.6,0,0,24.1,77777,9,999999999,110,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.8,62,98400,0,0,316,0,0,0,0,0,0,0,120,3.1,0,0,24.1,77777,9,999999999,110,0.1990,0,88,999.000,999.0,99.0 +1980,10,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.8,69,98400,0,0,309,0,0,0,0,0,0,0,90,2.6,0,0,24.1,77777,9,999999999,110,0.1990,0,88,999.000,999.0,99.0 +1980,10,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.8,72,98400,0,0,306,0,0,0,0,0,0,0,90,3.1,0,0,24.1,77777,9,999999999,110,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,7.8,75,98500,0,0,304,0,0,0,0,0,0,0,90,3.1,0,0,19.3,77777,9,999999999,120,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.7,69,98500,0,0,303,0,0,0,0,0,0,0,80,2.6,0,0,16.1,77777,9,999999999,120,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.7,69,98500,0,0,303,0,0,0,0,0,0,0,100,2.6,0,0,16.1,77777,9,999999999,120,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,98500,0,0,296,0,0,0,0,0,0,0,70,2.6,0,0,16.1,77777,9,999999999,129,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,98500,0,0,298,0,0,0,0,0,0,0,60,2.1,0,0,16.1,77777,9,999999999,129,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,98500,9,355,294,2,5,1,0,0,0,0,70,2.1,0,0,12.9,77777,9,999999999,129,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.3,77,98600,211,1376,304,85,293,39,8600,20100,5500,700,80,2.6,0,0,12.9,77777,9,999999999,129,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,98700,478,1376,316,259,536,71,27100,49600,9800,1390,90,3.1,0,0,12.9,77777,9,999999999,139,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.2,73,98700,706,1376,331,428,449,196,44600,45100,21400,4250,90,2.1,0,0,12.9,77777,9,999999999,139,0.3940,0,88,999.000,999.0,99.0 +1980,10,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,98700,878,1376,368,504,465,205,53900,48000,23200,5110,150,2.1,4,4,14.5,77777,9,999999999,139,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,98600,983,1376,377,696,781,135,72700,78300,16600,3630,170,3.6,5,5,19.3,77777,9,999999999,139,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,98500,1013,1376,378,555,470,207,60600,49000,24400,6200,110,3.1,5,5,24.1,77777,9,999999999,150,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.9,54,98400,966,1376,386,754,773,209,78500,77600,23800,5710,160,3.6,5,5,24.1,77777,9,999999999,150,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.3,54,98400,845,1376,379,559,608,183,57800,60500,20500,4280,120,2.1,4,4,24.1,77777,9,999999999,150,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,13.3,50,98400,659,1376,385,390,502,148,41400,50000,17400,3040,160,5.2,4,4,24.1,77777,9,999999999,150,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,13.3,52,98400,420,1376,370,145,209,81,15800,19100,10000,1510,140,4.1,1,1,24.1,77777,9,999999999,150,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,13.3,57,98400,148,1376,355,50,179,31,5300,9600,4300,550,120,3.6,0,0,19.3,77777,9,999999999,160,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,98400,0,57,348,0,0,0,0,0,0,0,120,3.6,0,0,19.3,77777,9,999999999,160,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.9,68,98500,0,0,345,0,0,0,0,0,0,0,120,3.6,0,0,19.3,77777,9,999999999,160,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,14.4,73,98500,0,0,343,0,0,0,0,0,0,0,120,3.6,0,0,19.3,77777,9,999999999,160,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.9,81,98500,0,0,332,0,0,0,0,0,0,0,90,3.6,0,0,19.3,77777,9,999999999,160,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.9,87,98500,0,0,327,0,0,0,0,0,0,0,90,3.1,0,0,19.3,77777,9,999999999,170,0.2370,0,88,999.000,999.0,99.0 +1980,10,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.9,90,98500,0,0,325,0,0,0,0,0,0,0,100,3.6,0,0,19.3,77777,9,999999999,170,0.2370,0,88,999.000,999.0,99.0 +1980,10,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,98600,0,0,322,0,0,0,0,0,0,0,80,3.1,0,0,16.1,77777,9,999999999,170,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,98600,0,0,319,0,0,0,0,0,0,0,100,3.1,0,0,16.1,77777,9,999999999,170,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,96,98500,0,0,317,0,0,0,0,0,0,0,80,3.6,0,0,16.1,77777,9,999999999,170,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,98500,0,0,314,0,0,0,0,0,0,0,90,2.6,0,0,12.9,77777,9,999999999,179,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98500,0,0,314,0,0,0,0,0,0,0,100,3.1,0,0,9.7,77777,9,999999999,179,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.8,100,98500,0,0,312,0,0,0,0,0,0,0,80,3.1,0,0,9.7,77777,9,999999999,179,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.8,100,98600,8,356,322,1,3,1,0,0,0,0,80,3.1,2,2,3.2,77777,9,999999999,179,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,14.4,100,98700,207,1377,331,83,259,44,8700,16900,6200,780,80,3.1,3,2,3.2,77777,9,999999999,179,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.6,93,98700,474,1377,343,275,569,77,28500,52300,10500,1490,90,4.1,6,2,8.0,77777,9,999999999,189,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,98700,701,1377,361,419,529,147,44900,53300,17600,3080,130,5.2,9,3,16.1,77777,9,999999999,189,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.2,73,98700,873,1377,372,577,662,154,60600,66800,18100,3840,150,4.6,9,2,19.3,77777,9,999999999,189,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.7,62,98700,978,1377,386,504,350,254,55300,37800,28400,7220,110,6.2,9,3,24.1,77777,9,999999999,200,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,98600,1007,1377,395,672,495,308,70400,51300,32800,9420,160,6.2,9,6,32.2,7620,9,999999999,200,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.1,58,98500,960,1377,409,529,334,295,57300,36000,32100,8420,160,4.6,10,8,40.2,7620,9,999999999,200,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.1,58,98400,839,1377,418,370,114,300,40600,11600,33500,9530,140,5.2,10,9,40.2,7620,9,999999999,209,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,16.1,58,98400,653,1377,418,282,139,216,30600,14100,23900,5290,150,5.2,9,9,40.2,7620,9,999999999,209,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,98400,414,1377,399,162,104,130,17500,9500,14600,2910,90,5.2,10,7,40.2,7620,9,999999999,209,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,98400,142,1377,408,36,0,36,4000,0,4000,1170,100,3.6,10,9,24.1,4270,9,999999999,220,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,68,98400,0,34,402,0,0,0,0,0,0,0,120,4.6,10,9,19.3,4270,9,999999999,220,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,98400,0,0,407,0,0,0,0,0,0,0,110,5.7,10,10,19.3,7620,9,999999999,220,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.1,73,98500,0,0,368,0,0,0,0,0,0,0,110,5.7,7,3,19.3,77777,9,999999999,229,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.1,78,98500,0,0,369,0,0,0,0,0,0,0,110,3.6,7,5,19.3,7620,9,999999999,229,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.6,76,98500,0,0,368,0,0,0,0,0,0,0,90,3.6,7,5,19.3,7620,9,999999999,240,0.1300,0,88,999.000,999.0,99.0 +1980,10,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,98400,0,0,362,0,0,0,0,0,0,0,100,5.2,6,5,16.1,7620,9,999999999,240,0.1300,0,88,999.000,999.0,99.0 +1980,10,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,98400,0,0,369,0,0,0,0,0,0,0,140,5.2,7,6,16.1,7620,9,999999999,250,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,98400,0,0,364,0,0,0,0,0,0,0,130,3.6,7,6,16.1,7620,9,999999999,250,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.7,97,98400,0,0,342,0,0,0,0,0,0,0,90,4.1,4,1,11.3,77777,9,999999999,250,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.7,97,98300,0,0,342,0,0,0,0,0,0,0,90,4.1,3,1,11.3,77777,9,999999999,259,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,98300,0,0,339,0,0,0,0,0,0,0,90,3.1,3,1,11.3,77777,9,999999999,259,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,16.1,100,98300,0,0,336,0,0,0,0,0,0,0,110,4.1,3,1,4.8,77777,9,999999999,270,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,98400,7,333,366,2,1,2,0,0,0,0,120,4.1,9,8,4.0,180,9,999999999,270,0.1050,0,88,999.000,999.0,99.0 +1980,10,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,17.2,100,98400,203,1377,377,55,16,52,6000,1200,5800,1270,100,3.6,10,9,2.4,150,9,999999999,279,0.1050,0,88,999.000,999.0,99.0 +1980,10,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,18.3,97,98400,469,1377,379,175,79,147,19100,7400,16500,3890,120,6.2,9,8,4.8,180,9,999999999,279,0.1050,0,88,999.000,999.0,99.0 +1980,10,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,98400,697,1377,385,357,247,231,38700,25300,25900,5780,150,5.2,9,7,11.3,5180,9,999999999,279,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,98300,869,1377,404,505,299,315,53600,31900,33500,8440,150,5.2,9,8,16.1,460,9,999999999,290,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,20.0,76,98300,973,1377,404,528,255,347,57500,26900,38400,10610,160,5.7,9,7,24.1,700,9,999999999,300,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.9,67,98200,1002,1377,409,451,97,380,49600,10000,42300,13430,160,5.2,10,7,24.1,4880,9,999999999,300,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,18.3,67,98100,954,1377,421,384,40,356,42200,4100,39300,12150,170,6.2,10,9,24.1,4880,9,999999999,300,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.9,65,98100,833,1377,440,239,22,226,27700,1900,26500,9670,160,5.2,10,10,24.1,7620,9,999999999,309,0.1050,0,88,999.000,999.0,99.0 +1980,10,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,26.1,18.3,62,98000,647,1377,418,275,84,235,30100,8400,26200,6600,140,7.2,10,8,24.1,7620,9,999999999,320,0.1050,0,88,999.000,999.0,99.0 +1980,10,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,18.3,64,98000,408,1377,415,81,33,70,8800,3000,7900,2000,150,5.7,9,8,24.1,7620,9,999999999,320,0.1050,0,88,999.000,999.0,99.0 +1980,10,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,18.9,71,98100,136,1366,430,42,0,42,4600,0,4600,1290,150,3.1,10,10,24.1,3960,9,999999999,329,0.1050,0,88,999.000,999.0,99.0 +1980,10,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,18.9,74,98100,0,0,427,0,0,0,0,0,0,0,120,3.1,10,10,24.1,3960,9,999999999,329,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,98100,0,0,424,0,0,0,0,0,0,0,140,4.1,10,10,24.1,3960,9,999999999,329,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,19.4,79,98100,0,0,424,0,0,0,0,0,0,0,140,4.1,10,10,24.1,3960,9,999999999,329,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,19.4,82,98100,0,0,421,0,0,0,0,0,0,0,150,4.1,10,10,24.1,7620,9,999999999,340,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.9,82,98100,0,0,417,0,0,0,0,0,0,0,150,4.1,10,10,24.1,3960,9,999999999,340,0.1280,0,88,999.000,999.0,99.0 +1980,10,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,18.9,87,98100,0,0,411,0,0,0,0,0,0,0,150,4.1,10,10,16.1,3660,9,999999999,340,0.1280,0,88,999.000,999.0,99.0 +1980,10,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,19.4,90,98100,0,0,412,0,0,0,0,0,0,0,170,4.1,10,10,16.1,1070,9,999999999,350,0.1270,0,88,999.000,999.0,99.0 +1980,10,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,98000,0,0,410,0,0,0,0,0,0,0,160,5.2,10,10,12.9,1070,9,999999999,350,0.1270,0,88,999.000,999.0,99.0 +1980,10,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,97900,0,0,410,0,0,0,0,0,0,0,160,6.2,10,10,11.3,3660,9,999999999,350,0.1270,0,88,999.000,999.0,99.0 +1980,10,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,97900,0,0,395,0,0,0,0,0,0,0,170,4.1,10,9,11.3,3660,9,999999999,350,0.1270,0,88,999.000,999.0,99.0 +1980,10,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,97900,0,0,406,0,0,0,0,0,0,0,160,4.1,10,10,11.3,3660,9,999999999,350,0.1270,0,88,999.000,999.0,99.0 +1980,10,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,97900,0,0,406,0,0,0,0,0,0,0,170,3.6,10,10,11.3,3660,9,999999999,359,0.1270,0,88,999.000,999.0,99.0 +1980,10,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,97900,7,310,377,0,0,0,0,0,0,0,170,3.1,10,7,8.0,7620,9,999999999,359,0.1420,0,88,999.000,999.0,99.0 +1980,10,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,97900,199,1378,406,55,17,52,6000,1200,5800,1260,160,4.1,10,10,8.0,7620,9,999999999,370,0.1420,0,88,999.000,999.0,99.0 +1980,10,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,20.0,93,97900,465,1378,412,140,13,136,15700,900,15400,4880,200,4.6,10,10,8.0,150,9,999999999,370,0.1420,0,88,999.000,999.0,99.0 +1980,10,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,20.6,93,98000,692,1378,417,95,12,90,11600,800,11200,4240,190,4.1,10,10,11.3,1370,9,999999999,379,0.1420,0,88,999.000,999.0,99.0 +1980,10,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.1,85,98000,864,1378,430,241,7,237,27900,600,27500,10210,220,6.2,10,10,12.9,370,9,999999999,379,0.1420,0,88,999.000,999.0,99.0 +1980,10,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,97900,967,1378,431,303,8,297,35000,700,34400,12730,220,8.2,10,10,19.3,430,9,999999999,390,0.1420,0,88,999.000,999.0,99.0 +1980,10,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,21.7,87,97900,996,1378,431,342,3,340,39300,300,39100,14140,200,5.2,10,10,22.5,430,9,999999999,400,0.1420,0,88,999.000,999.0,99.0 +1980,10,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,21.7,82,97800,949,1378,437,314,3,312,36000,300,35800,12990,220,6.2,10,10,19.3,580,9,999999999,400,0.1420,0,88,999.000,999.0,99.0 +1980,10,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,97700,827,1378,438,268,1,268,30600,100,30500,10800,220,4.6,10,10,19.3,3050,9,999999999,409,0.1420,0,88,999.000,999.0,99.0 +1980,10,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.6,22.2,82,97700,641,1378,441,202,3,201,22800,300,22700,7610,220,5.7,10,10,24.1,3050,9,999999999,409,0.1420,0,88,999.000,999.0,99.0 +1980,10,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,25.0,22.2,85,97700,402,1378,438,118,1,117,13100,100,13000,4080,200,6.2,10,10,19.3,5490,9,999999999,419,0.1420,0,88,999.000,999.0,99.0 +1980,10,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,22.2,87,97600,131,1344,434,38,0,38,4200,0,4200,1200,180,3.6,10,10,19.3,5180,9,999999999,419,0.1420,0,88,999.000,999.0,99.0 +1980,10,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,22.2,90,97700,0,0,431,0,0,0,0,0,0,0,170,4.1,10,10,16.1,5180,9,999999999,430,0.1270,0,88,999.000,999.0,99.0 +1980,10,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,97700,0,0,428,0,0,0,0,0,0,0,190,5.2,10,10,19.3,980,9,999999999,419,0.1270,0,88,999.000,999.0,99.0 +1980,10,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,22.2,94,97700,0,0,428,0,0,0,0,0,0,0,200,4.6,10,10,19.3,3660,9,999999999,419,0.1270,0,88,999.000,999.0,99.0 +1980,10,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,21.7,93,97700,0,0,424,0,0,0,0,0,0,0,210,4.6,10,10,19.3,7620,9,999999999,409,0.1270,0,88,999.000,999.0,99.0 +1980,10,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,22.2,97,97700,0,0,425,0,0,0,0,0,0,0,230,6.7,10,10,16.1,7620,9,999999999,400,0.1270,0,88,999.000,999.0,99.0 +1980,10,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,22.2,100,97600,0,0,422,0,0,0,0,0,0,0,220,6.7,10,10,16.1,370,9,999999999,400,0.1270,0,88,999.000,999.0,99.0 +1980,10,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,22.2,100,97600,0,0,422,0,0,0,0,0,0,0,230,6.2,10,10,16.1,240,9,999999999,390,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,22.2,100,97600,0,0,422,0,0,0,0,0,0,0,260,5.7,10,10,11.3,180,9,999999999,379,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.7,100,97500,0,0,418,0,0,0,0,0,0,0,250,5.2,10,10,11.3,150,9,999999999,379,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,21.7,100,97500,0,0,418,0,0,0,0,0,0,0,270,4.6,10,10,11.3,90,9,999999999,370,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,21.1,100,97500,0,0,414,0,0,0,0,0,0,0,290,5.2,10,10,11.3,1070,9,999999999,359,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,97600,0,0,406,0,0,0,0,0,0,0,280,4.1,10,10,11.3,1220,9,999999999,359,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,18.9,97,97600,6,287,391,0,0,0,0,0,0,0,290,4.1,10,9,11.3,1370,9,999999999,350,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,19.4,100,97600,195,1379,402,24,0,24,2800,0,2800,930,310,3.1,10,10,11.3,1370,9,999999999,340,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,20.0,100,97700,461,1379,406,92,0,92,10600,0,10600,3680,310,3.6,10,10,9.7,210,9,999999999,320,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,20.0,97,97700,688,1379,410,153,1,152,17700,100,17700,6510,310,3.1,10,10,11.3,1520,9,999999999,309,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,19.4,84,97700,859,1379,418,238,0,238,27500,0,27500,10200,320,3.1,10,10,14.5,1830,9,999999999,290,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,18.3,79,97700,962,1379,416,334,15,323,38200,1400,37200,13390,290,2.6,10,10,24.1,1830,9,999999999,279,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,17.8,76,97600,991,1379,416,208,0,208,24800,0,24800,9890,270,3.6,10,10,24.1,1830,9,999999999,270,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,17.8,69,97600,943,1379,425,278,38,252,30700,3900,28000,9090,270,3.6,10,10,24.1,2130,9,999999999,250,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,97500,822,1379,396,535,472,252,55500,48200,26700,6060,260,4.1,9,7,32.2,7620,9,999999999,240,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,15.6,58,97500,635,1379,399,239,156,167,26300,15800,19000,4050,270,5.7,8,7,32.2,2740,9,999999999,220,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,97500,396,1379,388,163,73,142,17800,6700,15900,3480,270,4.1,8,5,32.2,7620,9,999999999,209,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.0,68,97500,125,1322,370,31,11,30,3400,700,3300,730,270,4.1,7,4,32.2,7620,9,999999999,189,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.6,78,97500,0,0,356,0,0,0,0,0,0,0,270,4.1,6,2,24.1,77777,9,999999999,179,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.0,81,97600,0,0,345,0,0,0,0,0,0,0,280,4.1,3,1,24.1,77777,9,999999999,170,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,97600,0,0,340,0,0,0,0,0,0,0,280,3.1,3,1,24.1,77777,9,999999999,160,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,97600,0,0,338,0,0,0,0,0,0,0,290,4.1,3,1,24.1,77777,9,999999999,160,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,97700,0,0,338,0,0,0,0,0,0,0,300,4.6,4,1,24.1,77777,9,999999999,150,0.1260,0,88,999.000,999.0,99.0 +1980,10,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,97700,0,0,326,0,0,0,0,0,0,0,310,5.2,3,1,19.3,77777,9,999999999,139,0.1260,0,88,999.000,999.0,99.0 +1980,10,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,97700,0,0,320,0,0,0,0,0,0,0,320,5.2,3,1,19.3,77777,9,999999999,139,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,97800,0,0,309,0,0,0,0,0,0,0,320,5.2,0,0,19.3,77777,9,999999999,129,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,97800,0,0,306,0,0,0,0,0,0,0,300,5.2,0,0,19.3,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,97800,0,0,301,0,0,0,0,0,0,0,310,5.2,1,0,19.3,77777,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,97900,0,0,296,0,0,0,0,0,0,0,310,5.7,1,0,19.3,77777,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,97900,0,0,292,0,0,0,0,0,0,0,330,4.1,1,0,24.1,77777,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,97900,5,264,286,1,7,0,0,0,0,0,310,5.2,1,0,24.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,97900,191,1380,286,88,500,18,9300,36700,4200,490,320,6.2,0,0,24.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.1,72,98000,456,1380,307,287,799,20,30800,73700,6400,650,320,5.2,2,2,24.1,77777,9,999999999,89,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,4.4,55,98000,683,1380,315,479,751,105,50500,74300,13600,2260,340,6.2,2,2,24.1,77777,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.0,50,98000,854,1380,337,586,688,158,61400,69100,18500,3820,320,4.1,6,6,24.1,7620,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,4.4,43,98000,957,1380,341,584,517,223,62700,53600,25300,6140,320,3.6,7,5,24.1,7620,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.0,42,98000,985,1380,350,455,177,328,49800,18700,36400,10150,320,4.6,8,6,24.1,7620,9,999999999,100,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,5.6,45,97900,937,1380,366,502,318,285,54300,34200,31000,7900,320,3.6,9,9,24.1,7620,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,5.0,39,97900,816,1380,356,429,232,291,46500,24200,32200,7810,320,3.6,9,6,32.2,7620,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.0,42,97900,629,1380,368,265,84,226,29000,8300,25200,6300,320,4.1,10,9,32.2,6710,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,5.0,43,97900,391,1380,352,177,187,124,19100,16700,14400,2750,310,6.2,9,7,32.2,6710,9,999999999,110,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.0,50,98000,120,1299,329,27,9,26,2900,600,2900,650,300,2.6,7,3,32.2,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.6,60,98000,0,0,320,0,0,0,0,0,0,0,290,3.6,7,3,32.2,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.1,69,98000,0,0,313,0,0,0,0,0,0,0,290,3.6,6,3,32.2,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,98100,0,0,316,0,0,0,0,0,0,0,290,4.1,7,5,32.2,6710,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,98100,0,0,314,0,0,0,0,0,0,0,290,4.6,7,5,32.2,6710,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,98100,0,0,321,0,0,0,0,0,0,0,290,3.6,10,7,32.2,6710,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1980,10,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,98100,0,0,314,0,0,0,0,0,0,0,290,3.6,10,5,32.2,77777,9,999999999,120,0.1010,0,88,999.000,999.0,99.0 +1980,10,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.7,80,98100,0,0,294,0,0,0,0,0,0,0,330,5.2,3,0,40.2,77777,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.1,74,98100,0,0,308,0,0,0,0,0,0,0,330,4.1,6,3,40.2,77777,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,98100,0,0,288,0,0,0,0,0,0,0,340,4.1,2,0,40.2,77777,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,98100,0,0,286,0,0,0,0,0,0,0,320,4.1,1,0,40.2,77777,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,98100,0,0,301,0,0,0,0,0,0,0,350,3.1,8,4,40.2,77777,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,98200,0,0,298,0,0,0,0,0,0,0,350,4.1,9,4,32.2,77777,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.6,80,98200,4,265,311,0,2,0,0,0,0,0,40,3.1,9,7,32.2,9140,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,5.6,69,98200,187,1381,321,47,10,46,5300,100,5300,1530,20,4.1,9,7,32.2,7620,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.7,62,98300,452,1381,331,225,378,100,23700,34400,12400,1870,60,2.6,9,6,32.2,7620,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,7.8,58,98300,678,1381,343,385,371,202,41100,38300,22200,4540,60,2.6,9,6,32.2,7620,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.3,51,98300,849,1381,354,550,681,129,58400,69000,15900,3180,90,3.6,7,5,32.2,7620,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.8,45,98300,952,1381,359,641,703,154,68100,71600,18600,4260,90,1.5,7,5,32.2,7620,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,7.2,44,98200,980,1381,358,668,623,223,69300,62400,24800,6150,160,2.6,9,5,32.2,7620,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.2,41,98100,932,1381,371,567,362,321,60700,38800,34400,9040,90,1.5,7,7,32.2,7620,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.7,37,98000,810,1381,368,546,637,170,56500,63300,19300,3840,330,2.1,5,5,32.2,77777,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,6.7,37,98000,624,1381,363,400,753,58,42000,72600,9100,1370,270,1.5,3,3,32.2,77777,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,7.2,41,98000,385,1381,361,201,549,46,20800,48400,7300,950,60,2.6,5,4,32.2,77777,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.7,44,98000,115,1277,352,39,160,21,3900,8000,3200,360,100,2.6,5,4,32.2,77777,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.2,45,98100,0,0,352,0,0,0,0,0,0,0,140,3.6,5,4,24.1,77777,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,9.4,70,98100,0,0,334,0,0,0,0,0,0,0,300,2.6,4,4,24.1,77777,9,999999999,120,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.9,63,98100,0,0,339,0,0,0,0,0,0,0,250,2.6,10,4,32.2,77777,9,999999999,129,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,8.9,70,98100,0,0,333,0,0,0,0,0,0,0,290,1.5,10,5,32.2,77777,9,999999999,129,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,98100,0,0,320,0,0,0,0,0,0,0,320,2.1,7,2,32.2,77777,9,999999999,139,0.1230,0,88,999.000,999.0,99.0 +1980,10,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.9,72,98100,0,0,326,0,0,0,0,0,0,0,300,1.5,5,3,32.2,77777,9,999999999,139,0.1230,0,88,999.000,999.0,99.0 +1980,10,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,9.4,75,98100,0,0,338,0,0,0,0,0,0,0,270,1.5,8,7,32.2,4270,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,98100,0,0,356,0,0,0,0,0,0,0,320,1.5,10,10,32.2,3660,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,98100,0,0,352,0,0,0,0,0,0,0,340,1.0,10,9,24.1,3660,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,98100,0,0,336,0,0,0,0,0,0,0,10,2.1,9,8,24.1,3660,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,98200,0,0,327,0,0,0,0,0,0,0,320,2.1,9,6,19.3,7620,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.0,83,98200,0,0,334,0,0,0,0,0,0,0,0,0.0,9,7,19.3,3660,9,999999999,170,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,10.6,86,98200,4,242,335,0,0,0,0,0,0,0,350,2.6,9,7,19.3,3660,9,999999999,170,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,98200,182,1381,342,39,0,39,4400,0,4400,1350,0,0.0,9,8,16.1,3660,9,999999999,170,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,98300,447,1381,352,140,107,105,15400,10000,12100,2370,40,1.5,8,8,16.1,3050,9,999999999,170,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,98400,674,1381,343,299,392,107,33000,39300,13700,2150,90,3.1,5,4,24.1,77777,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.1,55,98400,844,1381,356,587,865,55,61700,85900,9100,1580,60,5.2,2,2,24.1,77777,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,10.6,48,98300,947,1381,359,678,902,56,71300,90100,9400,1740,90,6.2,1,1,24.1,77777,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,10.0,43,98300,975,1381,363,703,901,64,73700,90100,10000,1960,60,6.7,1,1,24.1,77777,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,9.4,41,98200,926,1381,363,662,878,69,69100,87500,10300,1940,70,3.6,1,1,24.1,77777,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,9.4,41,98200,804,1381,363,559,818,80,58200,80700,11000,1820,30,2.1,1,1,24.1,77777,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,8.9,40,98200,618,1381,362,401,754,61,42800,73600,9800,1380,70,5.2,1,1,24.1,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,8.9,43,98200,379,1381,362,208,603,41,21800,53200,7200,880,80,5.2,2,2,24.1,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,9.4,49,98300,110,1255,354,37,232,12,3600,14400,2200,280,100,4.6,3,2,24.1,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,10.0,57,98300,0,0,356,0,0,0,0,0,0,0,80,3.6,6,5,24.1,7620,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,98400,0,0,342,0,0,0,0,0,0,0,80,3.6,6,3,24.1,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,10.6,67,98500,0,0,337,0,0,0,0,0,0,0,80,3.1,3,2,24.1,77777,9,999999999,150,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,10.0,67,98500,0,0,337,0,0,0,0,0,0,0,70,4.1,6,3,24.1,77777,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.6,78,98500,0,0,333,0,0,0,0,0,0,0,90,3.6,7,4,24.1,7620,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,10,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.0,78,98500,0,0,330,0,0,0,0,0,0,0,70,3.1,10,4,24.1,77777,9,999999999,160,0.1210,0,88,999.000,999.0,99.0 +1980,10,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.0,80,98500,0,0,342,0,0,0,0,0,0,0,80,3.6,10,8,24.1,7620,9,999999999,160,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,98500,0,0,333,0,0,0,0,0,0,0,60,4.6,10,6,19.3,7620,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,98500,0,0,334,0,0,0,0,0,0,0,70,4.1,10,6,19.3,7620,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,98500,0,0,351,0,0,0,0,0,0,0,70,4.6,10,9,16.1,4270,9,999999999,170,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,98500,0,0,361,0,0,0,0,0,0,0,60,4.6,10,10,12.9,4270,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,98500,0,0,361,0,0,0,0,0,0,0,70,5.2,10,10,12.9,4270,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,98600,3,219,361,0,0,0,0,0,0,0,70,6.2,10,10,11.3,3660,9,999999999,179,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,98700,178,1382,361,40,0,40,4500,0,4500,1360,60,4.6,10,10,11.3,3660,9,999999999,189,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,98700,443,1382,366,72,0,72,8400,0,8400,2980,90,7.2,10,10,11.3,7620,9,999999999,189,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.7,73,98700,669,1382,378,167,0,167,19200,0,19200,6880,90,5.2,10,10,11.3,7620,9,999999999,200,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.7,73,98700,839,1382,378,140,0,140,16800,0,16800,6660,90,6.2,10,10,11.3,3660,9,999999999,209,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.1,65,98600,941,1382,383,166,0,166,20000,0,20000,8050,80,9.3,10,10,11.3,1070,9,999999999,209,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,11.1,72,98600,969,1382,374,145,0,145,17700,0,17700,7260,70,5.2,10,10,11.3,3660,9,999999999,220,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.6,63,98600,921,1382,383,239,0,239,27900,0,27900,10620,90,7.2,10,10,11.3,3660,9,999999999,229,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.9,56,98600,799,1382,380,283,2,282,31900,200,31800,10840,90,9.8,10,10,24.1,3660,9,999999999,229,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.9,60,98600,612,1382,364,153,0,153,17500,0,17500,6160,90,10.3,10,9,24.1,3660,9,999999999,240,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,10.0,70,98600,374,1382,360,79,0,79,9000,0,9000,3000,90,7.7,10,9,24.1,1370,9,999999999,250,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,98600,105,1232,363,12,0,12,1400,0,1400,470,80,8.2,10,10,16.1,1070,9,999999999,250,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,98600,0,0,363,0,0,0,0,0,0,0,70,6.7,10,10,16.1,1070,9,999999999,259,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.1,87,98600,0,0,350,0,0,0,0,0,0,0,80,6.2,10,9,16.1,1070,9,999999999,259,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,98700,0,0,361,0,0,0,0,0,0,0,70,6.2,10,10,11.3,430,9,999999999,250,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,98700,0,0,361,0,0,0,0,0,0,0,80,7.2,10,10,11.3,340,9,999999999,250,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,96,98700,0,0,359,0,0,0,0,0,0,0,90,7.7,10,10,11.3,340,9,999999999,250,0.1200,0,88,999.000,999.0,99.0 +1980,10,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,98700,0,0,356,0,0,0,0,0,0,0,80,8.2,10,10,9.7,310,9,999999999,240,0.1200,0,88,999.000,999.0,99.0 +1980,10,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,98700,0,0,355,0,0,0,0,0,0,0,80,7.7,10,10,9.7,270,9,999999999,240,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.7,100,98600,0,0,353,0,0,0,0,0,0,0,80,7.2,10,10,9.7,270,9,999999999,240,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,11.1,100,98600,0,0,349,0,0,0,0,0,0,0,80,8.2,10,10,9.7,270,9,999999999,229,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.6,96,98600,0,0,349,0,0,0,0,0,0,0,80,7.2,10,10,11.3,310,9,999999999,229,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,98600,0,0,348,0,0,0,0,0,0,0,80,8.2,10,10,11.3,430,9,999999999,229,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,98600,0,0,345,0,0,0,0,0,0,0,80,9.3,10,10,11.3,550,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,98600,3,196,335,0,0,0,0,0,0,0,80,6.7,10,9,12.9,550,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,98600,174,1383,344,26,0,26,3000,0,3000,970,90,6.2,10,10,12.9,400,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,98600,438,1383,337,159,3,158,17400,200,17400,5090,90,6.2,10,9,16.1,400,9,999999999,229,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,98600,664,1383,352,225,5,223,25300,400,25100,8280,90,8.8,10,10,16.1,400,9,999999999,229,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,98600,834,1383,357,221,0,221,25600,0,25600,9500,70,7.2,10,10,16.1,610,9,999999999,240,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,98500,936,1383,357,290,1,289,33400,100,33300,12230,120,8.2,10,10,24.1,610,9,999999999,240,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,98400,964,1383,355,128,0,128,15800,0,15800,6500,110,7.2,10,10,24.1,400,9,999999999,250,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,98300,915,1383,353,116,0,116,14300,0,14300,5850,90,6.7,10,10,24.1,370,9,999999999,250,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,98300,793,1383,353,150,0,150,17800,0,17800,6880,90,6.7,10,10,24.1,370,9,999999999,250,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,98200,607,1383,351,99,0,99,11700,0,11700,4370,100,7.7,10,10,12.9,340,9,999999999,259,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.6,96,98100,368,1383,349,50,0,50,5900,0,5900,2060,160,7.7,10,10,12.9,270,9,999999999,259,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.6,100,98100,101,1187,346,9,0,9,1100,0,1100,360,90,6.7,10,10,9.7,210,9,999999999,270,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,98100,0,0,343,0,0,0,0,0,0,0,100,6.2,10,10,3.2,150,9,999999999,270,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,98100,0,0,343,0,0,0,0,0,0,0,100,6.2,10,10,3.2,120,9,999999999,259,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,98100,0,0,343,0,0,0,0,0,0,0,110,5.2,10,10,3.2,120,9,999999999,250,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,98100,0,0,343,0,0,0,0,0,0,0,150,4.1,10,10,3.2,150,9,999999999,229,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,97900,0,0,343,0,0,0,0,0,0,0,110,3.6,10,10,3.2,120,9,999999999,220,0.1190,0,88,999.000,999.0,99.0 +1980,10,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,97800,0,0,343,0,0,0,0,0,0,0,120,3.1,10,10,3.2,120,9,999999999,209,0.1190,0,88,999.000,999.0,99.0 +1980,10,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,97800,0,0,343,0,0,0,0,0,0,0,0,0.0,10,10,8.0,90,9,999999999,200,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,97700,0,0,343,0,0,0,0,0,0,0,150,2.6,10,10,6.4,90,9,999999999,189,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,97500,0,0,343,0,0,0,0,0,0,0,90,4.1,10,10,6.4,90,9,999999999,179,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,97600,0,0,343,0,0,0,0,0,0,0,220,4.1,10,10,4.8,60,9,999999999,160,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,97600,0,0,343,0,0,0,0,0,0,0,290,8.2,10,10,8.0,180,9,999999999,150,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,97600,0,0,339,0,0,0,0,0,0,0,280,6.2,10,10,11.3,180,9,999999999,139,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,97700,2,173,332,0,0,0,0,0,0,0,290,7.2,10,10,16.1,180,9,999999999,129,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,97800,170,1384,305,18,0,18,2100,0,2100,700,310,10.8,7,7,24.1,340,9,999999999,129,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,97900,434,1384,308,58,4,57,6900,200,6900,2430,300,7.7,7,7,24.1,520,9,999999999,120,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,98000,659,1384,308,383,282,248,41200,28500,27600,6090,310,11.3,7,7,24.1,700,9,999999999,120,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.3,68,98000,829,1384,305,540,607,174,55900,60400,19600,4000,300,8.2,6,6,32.2,700,9,999999999,110,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.3,61,98000,931,1384,305,661,748,155,69900,75900,18700,4150,300,8.2,3,3,40.2,77777,9,999999999,110,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,2.2,53,97900,958,1384,306,792,948,132,82600,94900,16700,3390,310,11.8,3,2,48.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.1,47,97900,909,1384,297,687,910,85,71400,90500,11700,2100,310,7.2,0,0,48.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,1.1,45,97900,788,1384,299,588,915,64,61600,90300,10000,1640,300,11.3,0,0,48.3,77777,9,999999999,100,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.7,49,97900,601,1384,298,426,838,59,44500,80300,9500,1340,290,6.7,0,0,48.3,77777,9,999999999,89,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.6,49,97900,363,1384,292,221,687,39,23200,60000,7400,890,310,7.2,0,0,48.3,77777,9,999999999,89,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.1,56,98000,97,1165,286,42,280,12,3900,17900,2300,330,290,5.2,0,0,48.3,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.1,63,98000,0,0,279,0,0,0,0,0,0,0,290,3.1,0,0,48.3,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.7,68,98100,0,0,277,0,0,0,0,0,0,0,260,2.1,0,0,40.2,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.7,73,98100,0,0,273,0,0,0,0,0,0,0,270,2.1,0,0,24.1,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,98200,0,0,271,0,0,0,0,0,0,0,280,2.6,0,0,24.1,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,98200,0,0,269,0,0,0,0,0,0,0,280,2.6,0,0,24.1,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1980,10,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,98200,0,0,267,0,0,0,0,0,0,0,260,2.6,0,0,32.2,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1980,10,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,2.2,89,98200,0,0,265,0,0,0,0,0,0,0,280,3.1,0,0,32.2,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,98200,0,0,264,0,0,0,0,0,0,0,260,3.6,0,0,32.2,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,98200,0,0,264,0,0,0,0,0,0,0,260,3.6,0,0,32.2,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,98200,0,0,260,0,0,0,0,0,0,0,260,3.6,0,0,32.2,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,98300,0,0,258,0,0,0,0,0,0,0,270,3.1,0,0,32.2,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,98300,0,0,258,0,0,0,0,0,0,0,270,4.1,0,0,32.2,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.7,96,98400,2,150,263,1,3,0,0,0,0,0,270,3.6,1,1,40.2,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,98500,166,1385,267,58,272,25,6000,16900,4000,460,270,3.1,0,0,48.3,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,98600,429,1385,283,261,745,28,27800,67700,6700,820,300,3.6,0,0,48.3,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,4.4,59,98700,654,1385,300,450,860,41,47700,83500,8100,1170,300,6.2,1,0,48.3,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,4.4,53,98700,824,1385,308,599,920,48,63200,91200,8800,1420,290,6.7,1,0,48.3,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,3.9,44,98600,925,1385,317,688,936,59,72300,93400,9700,1760,270,7.2,1,0,48.3,77777,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,3.9,43,98500,953,1385,336,582,625,150,62000,63700,18000,4160,290,7.7,7,4,48.3,7320,9,999999999,89,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,3.3,37,98400,904,1385,342,657,595,266,68600,61300,28500,6940,260,6.7,7,4,48.3,6710,9,999999999,100,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,2.8,34,98400,782,1385,347,509,636,148,53100,63300,17200,3310,280,5.7,7,5,48.3,7620,9,999999999,100,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.3,38,98300,596,1385,343,349,491,136,36800,47900,16200,2700,300,5.2,7,5,48.3,7620,9,999999999,100,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,3.3,38,98300,357,1385,343,147,189,98,15500,16100,11400,1920,280,5.2,8,5,48.3,7620,9,999999999,100,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.0,53,98400,92,1142,332,24,0,24,2700,0,2700,820,260,3.6,8,6,24.1,7620,9,999999999,100,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,5.6,60,98400,0,0,327,0,0,0,0,0,0,0,310,3.6,8,6,24.1,7620,9,999999999,100,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.6,64,98400,0,0,320,0,0,0,0,0,0,0,320,3.1,7,5,24.1,7620,9,999999999,100,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.1,72,98400,0,0,310,0,0,0,0,0,0,0,320,3.1,3,3,24.1,77777,9,999999999,100,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.1,80,98400,0,0,303,0,0,0,0,0,0,0,340,3.6,4,3,16.1,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,6.7,77,98400,0,0,314,0,0,0,0,0,0,0,290,2.1,10,5,12.9,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1980,10,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,98400,0,0,315,0,0,0,0,0,0,0,170,2.1,10,5,12.9,77777,9,999999999,110,0.1360,0,88,999.000,999.0,99.0 +1980,10,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,6.1,69,98300,0,0,346,0,0,0,0,0,0,0,160,1.5,10,10,12.9,2440,9,999999999,110,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,98400,0,0,344,0,0,0,0,0,0,0,200,2.1,10,10,12.9,2440,9,999999999,120,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.7,74,98300,0,0,344,0,0,0,0,0,0,0,190,1.5,10,10,12.9,2440,9,999999999,120,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,98300,0,0,339,0,0,0,0,0,0,0,0,0.0,10,10,12.9,2440,9,999999999,120,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,89,98300,0,0,337,0,0,0,0,0,0,0,100,2.1,10,10,12.9,2440,9,999999999,129,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,98400,0,0,339,0,0,0,0,0,0,0,90,2.6,10,10,12.9,2440,9,999999999,129,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,98400,1,150,336,0,0,0,0,0,0,0,90,3.1,10,10,19.3,2440,9,999999999,129,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,98500,162,1385,330,18,0,18,2100,0,2100,700,90,3.6,10,9,24.1,2440,9,999999999,129,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,6.7,67,98400,425,1385,335,99,29,90,10900,2600,10100,2520,120,6.7,9,8,19.3,2440,9,999999999,129,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.1,58,98500,650,1385,342,327,209,228,35300,21100,25300,5570,50,5.2,9,8,19.3,5490,9,999999999,129,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,7.2,58,98400,819,1385,344,414,196,298,44900,20400,32800,8000,120,7.2,8,7,40.2,5490,9,999999999,129,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.8,56,98300,920,1385,343,659,840,98,68200,83500,12600,2230,120,6.2,5,5,48.3,77777,9,999999999,129,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,7.2,45,98200,947,1385,350,708,900,89,73500,89600,12000,2250,120,6.2,3,3,48.3,77777,9,999999999,139,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,6.7,42,98100,898,1385,352,662,902,73,69100,89700,10700,1940,140,7.2,3,3,48.3,77777,9,999999999,139,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,5.6,38,98000,777,1385,353,533,734,119,56400,73700,14900,2730,130,7.7,6,3,48.3,77777,9,999999999,139,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.1,39,98000,590,1385,392,226,33,212,25100,2900,23800,7380,160,7.7,10,10,48.3,2740,9,999999999,139,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,4.4,37,98000,352,1385,372,72,0,72,8200,0,8200,2720,160,5.7,10,9,48.3,2740,9,999999999,139,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.0,42,98100,88,1120,368,10,0,10,1200,0,1200,390,140,3.6,10,9,24.1,2740,9,999999999,139,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.1,48,98000,0,0,374,0,0,0,0,0,0,0,100,5.2,10,10,19.3,1220,9,999999999,139,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.7,50,98000,0,0,375,0,0,0,0,0,0,0,120,4.1,10,10,16.1,980,9,999999999,150,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,7.2,54,97900,0,0,373,0,0,0,0,0,0,0,140,6.2,10,10,12.9,730,9,999999999,160,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.3,58,97900,0,0,374,0,0,0,0,0,0,0,140,5.2,10,10,12.9,670,9,999999999,179,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,9.4,65,97900,0,0,372,0,0,0,0,0,0,0,360,3.1,10,10,12.9,670,9,999999999,189,0.1150,0,88,999.000,999.0,99.0 +1980,10,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,98000,0,0,356,0,0,0,0,0,0,0,330,6.2,10,10,6.4,120,9,999999999,200,0.1150,0,88,999.000,999.0,99.0 +1980,10,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,11.1,100,97900,0,0,349,0,0,0,0,0,0,0,360,7.7,10,10,6.4,120,9,999999999,220,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.6,100,98000,0,0,346,0,0,0,0,0,0,0,60,7.2,10,10,6.4,120,9,999999999,229,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,11.1,100,97900,0,0,349,0,0,0,0,0,0,0,90,5.2,10,10,4.8,120,9,999999999,240,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,11.1,100,97300,0,0,349,0,0,0,0,0,0,0,130,9.3,10,10,6.4,120,9,999999999,250,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,97700,0,0,356,0,0,0,0,0,0,0,330,3.6,10,10,6.4,120,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,97700,0,0,356,0,0,0,0,0,0,0,340,1.5,10,10,6.4,180,9,999999999,279,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,97700,1,127,356,0,0,0,0,0,0,0,60,2.1,10,10,6.4,90,9,999999999,290,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,97800,157,1386,356,8,0,8,1000,0,1000,330,120,2.1,10,10,2.4,210,9,999999999,290,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,97900,420,1386,363,38,0,38,4600,0,4600,1680,170,3.1,10,10,3.2,240,9,999999999,279,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.9,100,97900,645,1386,366,72,0,72,8800,0,8800,3390,150,2.6,10,10,4.8,180,9,999999999,279,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,14.4,100,97800,813,1386,370,97,0,97,11900,0,11900,4790,190,3.6,10,10,4.8,150,9,999999999,279,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,15.0,100,97800,915,1386,373,114,0,114,14000,0,14000,5760,220,4.1,10,10,4.8,90,9,999999999,279,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.6,100,97800,942,1386,377,135,0,135,16500,0,16500,6750,240,3.1,10,10,4.8,150,9,999999999,279,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,97700,893,1386,384,143,39,118,15900,3900,13400,4440,270,3.6,10,10,8.0,210,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,17.2,100,97800,771,1386,388,137,56,106,15800,5900,12500,2750,260,5.2,10,10,9.7,210,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,17.2,100,97800,585,1386,388,71,0,71,8600,0,8600,3240,270,6.2,10,10,9.7,210,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,17.2,100,97800,347,1386,388,32,0,32,3900,0,3900,1370,270,3.6,10,10,9.7,180,9,999999999,270,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,97900,84,1097,384,4,0,4,500,0,500,160,260,4.1,10,10,3.2,90,9,999999999,259,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,17.2,100,97900,0,0,388,0,0,0,0,0,0,0,260,3.1,10,10,8.0,90,9,999999999,259,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,97900,0,0,384,0,0,0,0,0,0,0,260,3.6,10,10,9.7,90,9,999999999,250,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,16.1,100,98000,0,0,380,0,0,0,0,0,0,0,270,3.6,10,10,9.7,90,9,999999999,250,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,16.1,100,98000,0,0,380,0,0,0,0,0,0,0,280,3.1,10,10,9.7,580,9,999999999,250,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.6,100,97900,0,0,377,0,0,0,0,0,0,0,280,3.1,10,10,9.7,580,9,999999999,240,0.1130,0,88,999.000,999.0,99.0 +1980,10,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.6,100,97900,0,0,377,0,0,0,0,0,0,0,270,3.1,10,10,9.7,60,9,999999999,229,0.1130,0,88,999.000,999.0,99.0 +1980,10,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,15.0,100,98000,0,0,363,0,0,0,0,0,0,0,260,4.1,10,9,8.0,60,9,999999999,229,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,15.0,100,98000,0,0,373,0,0,0,0,0,0,0,240,3.1,10,10,8.0,3050,9,999999999,229,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,15.0,100,98100,0,0,373,0,0,0,0,0,0,0,300,2.6,10,10,8.0,3050,9,999999999,220,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,14.4,100,98100,0,0,370,0,0,0,0,0,0,0,290,2.6,10,10,8.0,270,9,999999999,220,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.9,100,98100,0,0,366,0,0,0,0,0,0,0,290,0.5,10,10,8.0,150,9,999999999,209,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,98200,0,0,363,0,0,0,0,0,0,0,300,5.2,10,10,6.4,120,9,999999999,200,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.8,100,98200,1,104,360,0,0,0,0,0,0,0,340,3.6,10,10,4.0,90,9,999999999,200,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,98200,153,1387,356,12,1,12,1500,0,1500,480,340,5.7,10,10,4.0,90,9,999999999,209,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,98300,416,1387,355,49,0,49,5900,0,5900,2100,300,4.1,10,10,6.4,120,9,999999999,220,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,98300,640,1387,348,134,0,134,15600,0,15600,5690,320,3.6,10,9,6.4,240,9,999999999,229,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.7,87,98300,808,1387,354,198,0,198,23000,0,23000,8610,320,4.1,10,9,6.4,1520,9,999999999,240,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,83,98300,910,1387,363,272,1,271,31300,100,31200,11500,290,3.1,10,10,9.7,1070,9,999999999,250,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.1,78,98200,937,1387,369,167,0,167,20100,0,20100,8070,310,4.1,10,10,8.0,1070,9,999999999,259,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,10.6,80,98100,888,1387,363,166,0,166,19800,0,19800,7850,310,4.1,10,10,11.3,980,9,999999999,270,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,10.6,83,98100,766,1387,359,110,0,110,13300,0,13300,5230,330,3.6,10,10,12.9,980,9,999999999,279,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,98200,580,1387,353,78,0,78,9300,0,9300,3500,340,4.1,10,10,12.9,980,9,999999999,290,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,98300,342,1387,347,29,0,29,3500,0,3500,1250,320,4.1,10,10,9.7,980,9,999999999,300,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,98300,81,1075,342,4,0,4,500,0,500,160,310,2.6,10,10,6.4,980,9,999999999,309,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,98400,0,0,343,0,0,0,0,0,0,0,330,4.1,10,10,6.4,310,9,999999999,320,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,9.4,100,98400,0,0,339,0,0,0,0,0,0,0,340,2.6,10,10,6.4,120,9,999999999,329,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,98300,0,0,336,0,0,0,0,0,0,0,340,3.1,10,10,6.4,120,9,999999999,329,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,98400,0,0,336,0,0,0,0,0,0,0,330,4.1,10,10,6.4,120,9,999999999,340,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,98400,0,0,336,0,0,0,0,0,0,0,330,2.1,10,10,6.4,120,9,999999999,340,0.1120,0,88,999.000,999.0,99.0 +1980,10,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,98300,0,0,336,0,0,0,0,0,0,0,40,2.1,10,10,6.4,120,9,999999999,350,0.1120,0,88,999.000,999.0,99.0 +1980,10,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,98400,0,0,336,0,0,0,0,0,0,0,320,3.1,10,10,6.4,120,9,999999999,350,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,98400,0,0,336,0,0,0,0,0,0,0,330,3.1,10,10,6.4,90,9,999999999,359,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,98300,0,0,336,0,0,0,0,0,0,0,350,2.1,10,10,2.4,90,9,999999999,370,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,98300,0,0,336,0,0,0,0,0,0,0,360,2.1,10,10,3.2,90,9,999999999,370,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,98400,0,0,336,0,0,0,0,0,0,0,320,2.1,10,10,3.2,90,9,999999999,379,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,98400,0,0,336,0,0,0,0,0,0,0,330,2.6,10,10,3.2,90,9,999999999,379,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,98400,0,81,336,0,0,0,0,0,0,0,330,2.1,10,10,3.2,90,9,999999999,390,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,98500,149,1388,336,4,0,4,500,0,500,170,340,2.6,10,10,3.2,60,9,999999999,370,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,98500,411,1388,343,12,0,12,1600,0,1600,560,30,2.1,10,10,3.2,60,9,999999999,359,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,11.1,100,98500,635,1388,349,51,0,51,6400,0,6400,2470,70,4.1,10,10,3.2,90,9,999999999,340,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.7,100,98500,803,1388,353,53,0,53,6800,0,6800,2740,60,3.1,10,10,8.0,120,9,999999999,329,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,98500,904,1388,355,58,0,58,7500,0,7500,3080,90,6.7,10,10,8.0,120,9,999999999,309,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,98400,931,1388,355,70,0,70,9000,0,9000,3710,60,3.6,10,10,8.0,150,9,999999999,300,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.1,96,98400,882,1388,352,59,0,59,7600,0,7600,3110,70,3.6,10,10,8.0,150,9,999999999,279,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.1,96,98400,760,1388,352,232,1,231,26300,100,26300,9250,70,4.1,10,10,9.7,180,9,999999999,259,0.2410,0,88,999.000,999.0,99.0 +1980,10,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,11.1,100,98400,574,1388,349,186,0,185,20700,0,20700,6700,50,4.1,10,10,8.0,150,9,999999999,250,0.2410,0,88,999.000,999.0,99.0 +1980,10,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,11.1,100,98500,337,1388,349,8,0,8,1100,0,1100,370,50,3.6,10,10,8.0,120,9,999999999,229,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.6,100,98500,77,1052,346,17,0,17,2000,0,2000,610,50,3.6,10,10,3.2,120,9,999999999,220,0.2410,0,88,999.000,999.0,99.0 +1980,10,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.6,100,98500,0,0,346,0,0,0,0,0,0,0,40,3.1,10,10,3.2,120,9,999999999,200,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.6,100,98600,0,0,346,0,0,0,0,0,0,0,40,3.1,10,10,3.2,120,9,999999999,189,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,98600,0,0,345,0,0,0,0,0,0,0,10,4.1,10,10,8.0,180,9,999999999,179,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,98600,0,0,345,0,0,0,0,0,0,0,360,3.1,10,10,8.0,180,9,999999999,179,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,98600,0,0,345,0,0,0,0,0,0,0,10,2.6,10,10,8.0,180,9,999999999,170,0.1110,0,88,999.000,999.0,99.0 +1980,10,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,98500,0,0,345,0,0,0,0,0,0,0,40,1.5,10,10,8.0,340,9,999999999,160,0.1110,0,88,999.000,999.0,99.0 +1980,10,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,98500,0,0,345,0,0,0,0,0,0,0,340,3.1,10,10,8.0,370,9,999999999,150,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,98500,0,0,333,0,0,0,0,0,0,0,350,3.1,9,9,8.0,340,9,999999999,139,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,98500,0,0,336,0,0,0,0,0,0,0,330,4.1,10,10,8.0,150,9,999999999,129,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,98500,0,0,336,0,0,0,0,0,0,0,10,5.2,10,10,8.0,150,9,999999999,129,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,98500,0,0,323,0,0,0,0,0,0,0,340,3.1,10,9,8.0,150,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,98500,0,0,332,0,0,0,0,0,0,0,320,3.1,10,10,8.0,150,9,999999999,110,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,98600,0,58,330,0,0,0,0,0,0,0,330,3.1,10,10,6.4,120,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,98600,144,1388,321,19,0,19,2200,0,2200,720,360,3.6,10,9,3.2,90,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,98700,406,1388,320,90,0,90,10200,0,10200,3410,350,3.6,9,9,6.4,150,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.8,83,98700,630,1388,303,394,514,159,41300,50600,18200,3250,310,3.6,1,1,9.7,77777,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.8,72,98600,798,1388,306,565,859,68,59100,84800,10100,1690,320,4.1,0,0,12.9,77777,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.2,62,98600,899,1388,313,663,924,61,69600,92000,9800,1750,290,3.6,0,0,12.9,77777,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,6.1,52,98500,926,1388,319,692,942,60,72700,94000,9800,1780,360,4.6,0,0,24.1,77777,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,5.0,43,98400,877,1388,325,659,955,52,69500,95000,9200,1550,330,5.2,0,0,48.3,77777,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,3.3,36,98300,755,1388,328,553,928,45,58500,91400,8600,1300,320,4.6,0,0,48.3,77777,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-1.1,26,98300,569,1388,323,396,861,40,41900,82100,8100,1100,320,5.7,0,0,48.3,77777,9,999999999,89,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-2.2,27,98300,332,1388,315,201,718,27,21200,61500,6500,740,300,3.6,0,0,48.3,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-0.6,42,98300,74,1030,295,31,276,1,2500,17200,1200,40,310,4.6,0,0,48.3,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-0.6,42,98300,0,0,295,0,0,0,0,0,0,0,310,4.6,0,0,48.3,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,46,98400,0,0,289,0,0,0,0,0,0,0,320,3.6,0,0,40.2,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,0.0,52,98400,0,0,284,0,0,0,0,0,0,0,310,4.1,0,0,40.2,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.5,1.2,52,98400,0,0,286,0,0,0,0,0,0,0,320,4.5,0,0,40.2,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.6,2.4,56,98400,0,0,288,0,0,0,0,0,0,0,310,5.0,0,0,40.2,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1980,10,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.7,3.6,61,98300,0,0,289,0,0,0,0,0,0,0,300,5.4,0,0,40.2,77777,9,999999999,80,0.1060,0,88,999.000,999.0,99.0 +1981,11,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.7,4.7,83,99100,0,0,290,0,0,0,0,0,0,0,70,5.9,0,0,16.1,77777,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1981,11,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.8,5.9,89,99100,0,0,292,0,0,0,0,0,0,0,70,6.3,0,0,16.1,77777,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1981,11,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.9,7.1,93,99100,0,0,294,0,0,0,0,0,0,0,60,6.8,0,0,16.1,77777,9,999999999,160,0.1090,0,88,999.000,999.0,99.0 +1981,11,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.3,89,99100,0,0,341,0,0,0,0,0,0,0,80,7.2,10,10,11.3,340,9,999999999,150,0.1090,0,88,999.000,999.0,99.0 +1981,11,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,99100,0,0,341,0,0,0,0,0,0,0,80,7.7,10,10,11.3,340,9,999999999,150,0.1090,0,88,999.000,999.0,99.0 +1981,11,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,99100,0,0,341,0,0,0,0,0,0,0,60,5.7,10,10,11.3,340,9,999999999,150,0.1090,0,88,999.000,999.0,99.0 +1981,11,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,99100,0,35,338,0,0,0,0,0,0,0,60,7.2,10,10,11.3,340,9,999999999,150,0.1090,0,88,999.000,999.0,99.0 +1981,11,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,99100,141,1388,338,28,0,28,3200,0,3200,970,70,6.7,10,10,11.3,340,9,999999999,160,0.0930,0,88,999.000,999.0,99.0 +1981,11,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.9,86,99200,403,1388,347,127,7,125,14100,400,13900,4230,90,6.2,10,10,16.1,370,9,999999999,160,0.0930,0,88,999.000,999.0,99.0 +1981,11,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,99200,626,1388,352,151,7,148,17400,500,17100,6070,90,7.7,10,10,19.3,400,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1981,11,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,9.4,67,99100,794,1388,331,557,751,122,58600,75500,15300,2840,60,5.7,5,2,24.1,77777,9,999999999,179,0.0930,0,88,999.000,999.0,99.0 +1981,11,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,10.6,63,99100,895,1388,332,663,826,125,68600,82300,15400,2950,70,4.1,4,0,24.1,77777,9,999999999,189,0.0930,0,88,999.000,999.0,99.0 +1981,11,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,11.1,57,99000,922,1388,354,640,711,163,67200,71900,19200,4260,80,4.6,7,2,24.1,77777,9,999999999,200,0.0930,0,88,999.000,999.0,99.0 +1981,11,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.1,55,98900,873,1388,363,449,344,230,48700,36800,25500,5800,90,4.6,10,4,32.2,77777,9,999999999,200,0.0930,0,88,999.000,999.0,99.0 +1981,11,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,11.7,57,98800,751,1388,364,502,464,248,53200,48600,26800,5940,110,5.2,10,4,32.2,77777,9,999999999,209,0.0930,0,88,999.000,999.0,99.0 +1981,11,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,98800,565,1388,364,340,516,127,35800,49800,15400,2480,90,6.2,9,3,32.2,77777,9,999999999,220,0.0930,0,88,999.000,999.0,99.0 +1981,11,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,98800,328,1388,386,141,103,116,15000,8600,13000,2530,80,5.2,10,9,32.2,760,9,999999999,229,0.0930,0,88,999.000,999.0,99.0 +1981,11,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,13.3,70,98800,71,1030,381,28,8,27,3000,500,3000,630,80,5.2,10,9,32.2,640,9,999999999,229,0.0930,0,88,999.000,999.0,99.0 +1981,11,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.9,75,98800,0,0,389,0,0,0,0,0,0,0,90,5.2,10,10,24.1,640,9,999999999,240,0.1090,0,88,999.000,999.0,99.0 +1981,11,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,98900,0,0,383,0,0,0,0,0,0,0,80,3.6,10,10,24.1,640,9,999999999,240,0.1090,0,88,999.000,999.0,99.0 +1981,11,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.3,78,98900,0,0,383,0,0,0,0,0,0,0,80,3.6,10,10,24.1,610,9,999999999,240,0.1090,0,88,999.000,999.0,99.0 +1981,11,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.3,84,98900,0,0,367,0,0,0,0,0,0,0,90,3.6,10,9,24.1,610,9,999999999,229,0.1090,0,88,999.000,999.0,99.0 +1981,11,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,98900,0,0,374,0,0,0,0,0,0,0,100,5.7,10,10,24.1,610,9,999999999,229,0.1090,0,88,999.000,999.0,99.0 +1981,11,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.3,87,98800,0,0,364,0,0,0,0,0,0,0,90,4.1,10,9,24.1,610,9,999999999,229,0.1090,0,88,999.000,999.0,99.0 +1981,11,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,98800,0,0,371,0,0,0,0,0,0,0,90,5.2,10,10,19.3,700,9,999999999,229,0.1080,0,88,999.000,999.0,99.0 +1981,11,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,98800,0,0,371,0,0,0,0,0,0,0,90,4.6,10,10,19.3,700,9,999999999,229,0.1080,0,88,999.000,999.0,99.0 +1981,11,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,98700,0,0,368,0,0,0,0,0,0,0,90,5.2,10,10,19.3,850,9,999999999,229,0.1080,0,88,999.000,999.0,99.0 +1981,11,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,98700,0,0,368,0,0,0,0,0,0,0,70,4.1,10,10,19.3,700,9,999999999,229,0.1080,0,88,999.000,999.0,99.0 +1981,11,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,98700,0,0,348,0,0,0,0,0,0,0,90,4.6,8,8,19.3,1010,9,999999999,220,0.1080,0,88,999.000,999.0,99.0 +1981,11,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,98700,0,0,348,0,0,0,0,0,0,0,80,5.2,8,8,19.3,1010,9,999999999,220,0.1080,0,88,999.000,999.0,99.0 +1981,11,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,96,98700,0,12,345,0,0,0,0,0,0,0,70,4.1,8,8,19.3,1520,9,999999999,220,0.1080,0,88,999.000,999.0,99.0 +1981,11,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,98800,137,1389,348,42,20,40,4600,1300,4500,920,80,4.1,8,8,19.3,7620,9,999999999,220,0.0660,0,88,999.000,999.0,99.0 +1981,11,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,98800,398,1389,348,189,92,163,20700,8400,18200,3810,70,5.2,10,7,19.3,7620,9,999999999,209,0.0660,0,88,999.000,999.0,99.0 +1981,11,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,14.4,76,98900,621,1389,361,351,482,132,37200,47400,15900,2630,90,5.2,10,5,24.1,77777,9,999999999,209,0.0660,0,88,999.000,999.0,99.0 +1981,11,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,14.4,71,98800,789,1389,374,451,351,249,48000,37000,26900,6060,80,4.1,9,7,24.1,7620,9,999999999,209,0.0660,0,88,999.000,999.0,99.0 +1981,11,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,98800,890,1389,386,417,167,309,45300,17500,34000,8710,130,4.1,10,8,24.1,7620,9,999999999,200,0.0660,0,88,999.000,999.0,99.0 +1981,11,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,14.4,58,98700,916,1389,397,345,174,229,38300,18500,26100,6600,120,5.2,9,8,24.1,7620,9,999999999,200,0.0660,0,88,999.000,999.0,99.0 +1981,11,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,13.3,54,98600,867,1389,390,395,216,259,43300,22700,29100,7180,120,6.2,10,7,24.1,7620,9,999999999,200,0.0660,0,88,999.000,999.0,99.0 +1981,11,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.8,53,98500,746,1389,387,371,320,198,40100,33600,22000,4530,80,4.6,10,7,32.2,7620,9,999999999,189,0.0660,0,88,999.000,999.0,99.0 +1981,11,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,98500,560,1389,389,236,148,175,25500,14600,19600,4110,100,5.2,10,8,32.2,2440,9,999999999,189,0.0660,0,88,999.000,999.0,99.0 +1981,11,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.2,57,98500,324,1389,391,104,62,89,11300,5300,10100,2250,110,4.6,10,9,32.2,7620,9,999999999,189,0.0660,0,88,999.000,999.0,99.0 +1981,11,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.8,66,98500,68,1007,375,16,15,15,1800,900,1700,380,90,3.6,10,8,32.2,7620,9,999999999,179,0.0660,0,88,999.000,999.0,99.0 +1981,11,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.8,68,98500,0,0,362,0,0,0,0,0,0,0,80,2.6,9,6,32.2,7620,9,999999999,179,0.1080,0,88,999.000,999.0,99.0 +1981,11,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,98500,0,0,361,0,0,0,0,0,0,0,90,2.6,9,7,24.1,7620,9,999999999,179,0.1080,0,88,999.000,999.0,99.0 +1981,11,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,98500,0,0,382,0,0,0,0,0,0,0,60,2.1,10,10,24.1,7620,9,999999999,189,0.1080,0,88,999.000,999.0,99.0 +1981,11,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,98500,0,0,376,0,0,0,0,0,0,0,60,2.1,10,10,24.1,7620,9,999999999,189,0.1080,0,88,999.000,999.0,99.0 +1981,11,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,98500,0,0,366,0,0,0,0,0,0,0,70,2.6,10,9,24.1,7620,9,999999999,189,0.1080,0,88,999.000,999.0,99.0 +1981,11,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,98600,0,0,338,0,0,0,0,0,0,0,40,2.6,8,4,24.1,77777,9,999999999,200,0.1080,0,88,999.000,999.0,99.0 +1981,11,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.2,84,98600,0,0,335,0,0,0,0,0,0,0,60,2.1,3,3,24.1,77777,9,999999999,200,0.1070,0,88,999.000,999.0,99.0 +1981,11,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,12.8,87,98500,0,0,332,0,0,0,0,0,0,0,60,2.1,3,2,24.1,77777,9,999999999,200,0.1070,0,88,999.000,999.0,99.0 +1981,11,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,98500,0,0,329,0,0,0,0,0,0,0,60,2.1,7,2,16.1,77777,9,999999999,209,0.1070,0,88,999.000,999.0,99.0 +1981,11,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,98500,0,0,326,0,0,0,0,0,0,0,60,3.1,7,2,16.1,77777,9,999999999,209,0.1070,0,88,999.000,999.0,99.0 +1981,11,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,98500,0,0,329,0,0,0,0,0,0,0,40,2.1,7,3,16.1,77777,9,999999999,209,0.1070,0,88,999.000,999.0,99.0 +1981,11,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,98500,0,0,329,0,0,0,0,0,0,0,50,1.5,5,3,16.1,77777,9,999999999,220,0.1070,0,88,999.000,999.0,99.0 +1981,11,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.2,93,98600,0,12,327,0,0,0,0,0,0,0,60,2.1,8,3,24.1,77777,9,999999999,220,0.1070,0,88,999.000,999.0,99.0 +1981,11,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.2,90,98600,133,1390,329,47,53,42,5100,2800,4800,880,70,2.1,8,3,24.1,77777,9,999999999,220,0.1160,0,88,999.000,999.0,99.0 +1981,11,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,98700,393,1390,349,178,234,111,18700,20600,12900,2210,100,4.6,9,6,16.1,7620,9,999999999,220,0.1160,0,88,999.000,999.0,99.0 +1981,11,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,13.9,68,98700,616,1390,374,290,171,213,31200,17100,23600,5120,100,4.1,9,7,19.3,3050,9,999999999,220,0.1160,0,88,999.000,999.0,99.0 +1981,11,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,13.9,61,98600,784,1390,382,353,186,247,38500,19400,27500,6470,80,5.2,10,7,19.3,2440,9,999999999,220,0.1160,0,88,999.000,999.0,99.0 +1981,11,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,14.4,64,98600,885,1390,397,279,56,243,30700,5700,27100,8330,100,4.6,10,9,19.3,7620,9,999999999,220,0.1160,0,88,999.000,999.0,99.0 +1981,11,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,98500,911,1390,405,248,1,247,28700,100,28700,10780,120,5.2,10,10,19.3,2130,9,999999999,229,0.1160,0,88,999.000,999.0,99.0 +1981,11,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,98500,862,1390,409,252,3,250,29000,300,28800,10530,60,3.1,10,10,24.1,1830,9,999999999,229,0.1160,0,88,999.000,999.0,99.0 +1981,11,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.0,66,98400,741,1390,409,185,10,180,21400,800,21000,7650,70,3.6,10,10,24.1,1830,9,999999999,229,0.1160,0,88,999.000,999.0,99.0 +1981,11,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,14.4,66,98400,555,1390,405,142,8,139,16200,600,16000,5440,110,6.7,10,10,32.2,850,9,999999999,229,0.1160,0,88,999.000,999.0,99.0 +1981,11,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.0,68,98400,319,1390,395,65,18,60,7100,1500,6700,1620,90,4.6,10,9,40.2,1830,9,999999999,229,0.1160,0,88,999.000,999.0,99.0 +1981,11,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,15.0,73,98400,65,984,400,23,10,22,2500,600,2400,530,80,4.1,10,10,40.2,1680,9,999999999,229,0.1160,0,88,999.000,999.0,99.0 +1981,11,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.0,76,98400,0,0,397,0,0,0,0,0,0,0,90,4.1,10,10,32.2,1680,9,999999999,229,0.1070,0,88,999.000,999.0,99.0 +1981,11,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.0,78,98400,0,0,394,0,0,0,0,0,0,0,90,4.1,10,10,32.2,1680,9,999999999,229,0.1070,0,88,999.000,999.0,99.0 +1981,11,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.0,81,98400,0,0,391,0,0,0,0,0,0,0,90,3.1,10,10,24.1,1520,9,999999999,229,0.1070,0,88,999.000,999.0,99.0 +1981,11,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.0,84,98500,0,0,369,0,0,0,0,0,0,0,90,2.1,9,8,24.1,1520,9,999999999,229,0.1070,0,88,999.000,999.0,99.0 +1981,11,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.0,84,98500,0,0,388,0,0,0,0,0,0,0,90,3.1,10,10,24.1,1520,9,999999999,229,0.1070,0,88,999.000,999.0,99.0 +1981,11,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.0,81,98500,0,0,391,0,0,0,0,0,0,0,90,3.6,10,10,24.1,1220,9,999999999,229,0.1070,0,88,999.000,999.0,99.0 +1981,11,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.0,84,98500,0,0,388,0,0,0,0,0,0,0,90,4.6,10,10,24.1,1220,9,999999999,229,0.1050,0,88,999.000,999.0,99.0 +1981,11,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,98500,0,0,385,0,0,0,0,0,0,0,130,4.1,10,10,24.1,1220,9,999999999,240,0.1050,0,88,999.000,999.0,99.0 +1981,11,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,98400,0,0,385,0,0,0,0,0,0,0,120,2.1,10,10,24.1,1220,9,999999999,240,0.1050,0,88,999.000,999.0,99.0 +1981,11,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,98400,0,0,385,0,0,0,0,0,0,0,90,2.1,10,10,16.1,1220,9,999999999,240,0.1050,0,88,999.000,999.0,99.0 +1981,11,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,98400,0,0,382,0,0,0,0,0,0,0,90,2.1,10,10,16.1,1520,9,999999999,240,0.1050,0,88,999.000,999.0,99.0 +1981,11,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,14.4,90,98400,0,0,378,0,0,0,0,0,0,0,80,2.6,10,10,16.1,1520,9,999999999,240,0.1050,0,88,999.000,999.0,99.0 +1981,11,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,14.4,90,98500,0,0,378,0,0,0,0,0,0,0,70,3.1,10,10,16.1,850,9,999999999,240,0.1050,0,88,999.000,999.0,99.0 +1981,11,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,98500,128,1379,382,23,1,23,2600,0,2600,830,80,2.6,10,10,24.1,850,9,999999999,240,0.0990,0,88,999.000,999.0,99.0 +1981,11,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.0,93,98600,388,1391,379,43,2,43,5200,100,5200,1840,130,2.1,10,10,24.1,3050,9,999999999,250,0.0990,0,88,999.000,999.0,99.0 +1981,11,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,98600,611,1391,384,182,8,178,20500,600,20200,6800,330,1.5,10,10,19.3,3050,9,999999999,250,0.0990,0,88,999.000,999.0,99.0 +1981,11,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,98700,779,1391,384,123,3,121,14700,200,14600,5700,290,1.5,10,10,16.1,3050,9,999999999,250,0.0990,0,88,999.000,999.0,99.0 +1981,11,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,98600,879,1391,386,164,8,159,19600,600,19200,7540,310,3.1,10,10,11.3,1010,9,999999999,250,0.0990,0,88,999.000,999.0,99.0 +1981,11,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.1,97,98500,906,1391,384,159,0,158,19000,0,19000,7590,350,1.5,10,10,11.3,1010,9,999999999,250,0.0990,0,88,999.000,999.0,99.0 +1981,11,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,98400,857,1391,391,294,3,292,33400,300,33200,11590,320,3.6,10,10,19.3,1070,9,999999999,259,0.0990,0,88,999.000,999.0,99.0 +1981,11,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.7,90,98400,736,1391,393,262,2,261,29400,200,29300,9730,360,2.1,10,10,40.2,1160,9,999999999,259,0.0990,0,88,999.000,999.0,99.0 +1981,11,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,98300,551,1391,389,202,72,173,22100,7000,19300,4760,40,3.1,9,8,19.3,3050,9,999999999,259,0.0990,0,88,999.000,999.0,99.0 +1981,11,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,98300,314,1391,381,126,95,104,13500,7800,11700,2260,120,3.1,8,6,24.1,3050,9,999999999,270,0.0990,0,88,999.000,999.0,99.0 +1981,11,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.6,78,98300,62,962,359,33,33,29,3400,1500,3300,600,90,4.1,7,3,24.1,77777,9,999999999,270,0.0990,0,88,999.000,999.0,99.0 +1981,11,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,98300,0,0,354,0,0,0,0,0,0,0,60,2.6,6,3,24.1,77777,9,999999999,270,0.1050,0,88,999.000,999.0,99.0 +1981,11,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,98300,0,0,351,0,0,0,0,0,0,0,70,2.6,6,2,19.3,77777,9,999999999,270,0.1050,0,88,999.000,999.0,99.0 +1981,11,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,98300,0,0,343,0,0,0,0,0,0,0,70,2.1,5,1,19.3,77777,9,999999999,279,0.1050,0,88,999.000,999.0,99.0 +1981,11,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,98300,0,0,345,0,0,0,0,0,0,0,70,2.6,5,2,19.3,77777,9,999999999,279,0.1050,0,88,999.000,999.0,99.0 +1981,11,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,98400,0,0,354,0,0,0,0,0,0,0,60,2.6,7,5,19.3,7620,9,999999999,279,0.1050,0,88,999.000,999.0,99.0 +1981,11,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,98300,0,0,351,0,0,0,0,0,0,0,70,3.1,8,5,19.3,7620,9,999999999,290,0.1050,0,88,999.000,999.0,99.0 +1981,11,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,14.4,90,98300,0,0,378,0,0,0,0,0,0,0,90,2.6,10,10,19.3,7620,9,999999999,290,0.1040,0,88,999.000,999.0,99.0 +1981,11,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,13.9,90,98300,0,0,339,0,0,0,0,0,0,0,130,2.6,7,3,16.1,77777,9,999999999,290,0.1040,0,88,999.000,999.0,99.0 +1981,11,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,98300,0,0,344,0,0,0,0,0,0,0,70,1.5,8,6,16.1,7620,9,999999999,300,0.1040,0,88,999.000,999.0,99.0 +1981,11,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,98200,0,0,361,0,0,0,0,0,0,0,50,2.1,9,9,16.1,3050,9,999999999,300,0.1040,0,88,999.000,999.0,99.0 +1981,11,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,98200,0,0,372,0,0,0,0,0,0,0,20,2.1,10,10,16.1,3050,9,999999999,300,0.1040,0,88,999.000,999.0,99.0 +1981,11,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.9,93,98200,0,0,349,0,0,0,0,0,0,0,0,0.0,7,7,16.1,3050,9,999999999,309,0.1040,0,88,999.000,999.0,99.0 +1981,11,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,98200,0,0,345,0,0,0,0,0,0,0,60,2.1,7,7,16.1,3050,9,999999999,309,0.1040,0,88,999.000,999.0,99.0 +1981,11,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,98200,124,1356,341,43,46,39,4700,2500,4500,810,50,2.1,7,6,16.1,3050,9,999999999,309,0.1350,0,88,999.000,999.0,99.0 +1981,11,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.0,93,98300,384,1391,369,100,25,92,10900,2200,10200,2460,40,2.1,10,9,12.9,2740,9,999999999,300,0.1350,0,88,999.000,999.0,99.0 +1981,11,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,98200,606,1391,375,124,49,102,13600,4700,11600,3210,50,2.1,10,9,9.7,2740,9,999999999,300,0.1350,0,88,999.000,999.0,99.0 +1981,11,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,98200,774,1391,385,331,92,279,36300,9300,31100,8410,0,0.0,10,9,9.7,2740,9,999999999,290,0.1350,0,88,999.000,999.0,99.0 +1981,11,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,17.2,81,98200,874,1391,381,490,292,305,52200,31100,32500,8100,120,1.5,8,7,11.3,2740,9,999999999,290,0.1350,0,88,999.000,999.0,99.0 +1981,11,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,68,98000,901,1391,383,559,463,256,58500,47700,27500,6600,230,2.6,7,6,12.9,2740,9,999999999,279,0.1350,0,88,999.000,999.0,99.0 +1981,11,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,16.1,64,97900,852,1391,383,582,646,181,60000,64300,20400,4230,290,2.1,5,4,24.1,77777,9,999999999,279,0.1350,0,88,999.000,999.0,99.0 +1981,11,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,97900,731,1391,385,400,442,165,42500,44600,18900,3540,340,1.5,4,4,24.1,77777,9,999999999,279,0.1350,0,88,999.000,999.0,99.0 +1981,11,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,14.4,54,97800,546,1391,386,313,414,148,32300,39500,16700,2930,350,2.1,5,4,19.3,77777,9,999999999,270,0.1350,0,88,999.000,999.0,99.0 +1981,11,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,97800,310,1391,376,157,309,87,16000,24300,10500,1630,340,3.1,4,4,24.1,77777,9,999999999,270,0.1350,0,88,999.000,999.0,99.0 +1981,11,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,16.7,87,97800,60,939,361,30,11,28,3100,600,3100,640,330,2.1,5,4,24.1,77777,9,999999999,259,0.1350,0,88,999.000,999.0,99.0 +1981,11,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,17.2,97,97900,0,0,391,0,0,0,0,0,0,0,300,3.1,10,10,24.1,910,9,999999999,259,0.1040,0,88,999.000,999.0,99.0 +1981,11,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,97900,0,0,347,0,0,0,0,0,0,0,270,3.6,3,3,19.3,77777,9,999999999,250,0.1040,0,88,999.000,999.0,99.0 +1981,11,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,97800,0,0,339,0,0,0,0,0,0,0,300,3.1,1,1,16.1,77777,9,999999999,240,0.1040,0,88,999.000,999.0,99.0 +1981,11,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,15.6,100,97900,0,0,327,0,0,0,0,0,0,0,290,3.6,0,0,16.1,77777,9,999999999,229,0.1040,0,88,999.000,999.0,99.0 +1981,11,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,15.0,100,97800,0,0,324,0,0,0,0,0,0,0,290,4.1,0,0,12.9,77777,9,999999999,220,0.1040,0,88,999.000,999.0,99.0 +1981,11,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,97800,0,0,314,0,0,0,0,0,0,0,280,3.1,0,0,12.9,77777,9,999999999,209,0.1040,0,88,999.000,999.0,99.0 +1981,11,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,97800,0,0,314,0,0,0,0,0,0,0,300,4.1,0,0,11.3,77777,9,999999999,200,0.1030,0,88,999.000,999.0,99.0 +1981,11,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,96,97800,0,0,311,0,0,0,0,0,0,0,310,4.1,0,0,11.3,77777,9,999999999,179,0.1030,0,88,999.000,999.0,99.0 +1981,11,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,97800,0,0,308,0,0,0,0,0,0,0,310,4.1,0,0,11.3,77777,9,999999999,170,0.1030,0,88,999.000,999.0,99.0 +1981,11,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,97800,0,0,301,0,0,0,0,0,0,0,300,4.1,0,0,11.3,77777,9,999999999,160,0.1030,0,88,999.000,999.0,99.0 +1981,11,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,97800,0,0,296,0,0,0,0,0,0,0,310,4.1,0,0,11.3,77777,9,999999999,150,0.1030,0,88,999.000,999.0,99.0 +1981,11,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,97800,0,0,293,0,0,0,0,0,0,0,300,4.1,0,0,11.3,77777,9,999999999,139,0.1030,0,88,999.000,999.0,99.0 +1981,11,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,97800,0,0,290,0,0,0,0,0,0,0,300,4.1,0,0,11.3,77777,9,999999999,129,0.1030,0,88,999.000,999.0,99.0 +1981,11,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,97800,120,1334,296,48,178,30,4900,8900,4100,530,300,5.2,0,0,12.9,77777,9,999999999,120,0.1170,0,88,999.000,999.0,99.0 +1981,11,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,97900,379,1392,306,216,556,62,22200,47800,9100,1160,300,4.1,0,0,12.9,77777,9,999999999,120,0.1170,0,88,999.000,999.0,99.0 +1981,11,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.1,81,97800,601,1392,317,402,721,86,42100,70000,11800,1780,310,5.7,0,0,19.3,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1981,11,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,10.0,63,97800,769,1392,334,499,689,114,52600,69100,14300,2600,320,8.2,1,1,19.3,77777,9,999999999,110,0.1170,0,88,999.000,999.0,99.0 +1981,11,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.9,56,97800,869,1392,330,644,841,113,67100,83900,14500,2670,320,10.3,0,0,24.1,77777,9,999999999,100,0.1170,0,88,999.000,999.0,99.0 +1981,11,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,8.3,51,97700,896,1392,334,660,837,115,68900,83700,14800,2800,310,7.2,0,0,24.1,77777,9,999999999,89,0.1170,0,88,999.000,999.0,99.0 +1981,11,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,3.3,32,97600,847,1392,336,626,837,111,65100,83400,14200,2560,300,9.8,0,0,24.1,77777,9,999999999,89,0.1170,0,88,999.000,999.0,99.0 +1981,11,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,0.6,26,97600,726,1392,333,519,796,99,53500,78100,12600,2070,330,8.2,0,0,32.2,77777,9,999999999,80,0.1170,0,88,999.000,999.0,99.0 +1981,11,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,0.6,26,97500,541,1392,333,358,704,80,37300,66800,11200,1600,310,8.2,0,0,40.2,77777,9,999999999,80,0.1170,0,88,999.000,999.0,99.0 +1981,11,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,0.0,28,97500,306,1392,325,166,497,54,16800,39500,8100,990,320,7.7,0,0,48.3,77777,9,999999999,69,0.1170,0,88,999.000,999.0,99.0 +1981,11,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.8,26,97600,57,916,312,30,82,21,2800,2900,2600,370,320,8.8,0,0,48.3,77777,9,999999999,69,0.1170,0,88,999.000,999.0,99.0 +1981,11,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-1.7,33,97600,0,0,303,0,0,0,0,0,0,0,300,6.7,0,0,40.2,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1981,11,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.1,39,97700,0,0,297,0,0,0,0,0,0,0,300,7.2,0,0,40.2,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1981,11,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.1,40,97700,0,0,295,0,0,0,0,0,0,0,310,6.2,0,0,40.2,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1981,11,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-0.6,45,97700,0,0,291,0,0,0,0,0,0,0,310,5.7,0,0,40.2,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1981,11,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-1.1,45,97800,0,0,288,0,0,0,0,0,0,0,310,6.2,0,0,40.2,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1981,11,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.7,46,97800,0,0,283,0,0,0,0,0,0,0,310,7.2,0,0,40.2,77777,9,999999999,60,0.1030,0,88,999.000,999.0,99.0 +1981,11,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.7,48,97800,0,0,281,0,0,0,0,0,0,0,320,8.2,0,0,40.2,77777,9,999999999,60,0.1010,0,88,999.000,999.0,99.0 +1981,11,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-2.2,48,97800,0,0,278,0,0,0,0,0,0,0,320,10.8,0,0,40.2,77777,9,999999999,60,0.1010,0,88,999.000,999.0,99.0 +1981,11,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-2.2,50,97800,0,0,276,0,0,0,0,0,0,0,310,8.2,0,0,40.2,77777,9,999999999,60,0.1010,0,88,999.000,999.0,99.0 +1981,11,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.2,51,97800,0,0,273,0,0,0,0,0,0,0,310,9.3,0,0,40.2,77777,9,999999999,60,0.1010,0,88,999.000,999.0,99.0 +1981,11,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.2,53,97800,0,0,272,0,0,0,0,0,0,0,300,8.2,0,0,40.2,77777,9,999999999,60,0.1010,0,88,999.000,999.0,99.0 +1981,11,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.7,58,97900,0,0,270,0,0,0,0,0,0,0,300,6.2,0,0,40.2,77777,9,999999999,60,0.1010,0,88,999.000,999.0,99.0 +1981,11,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-2.2,58,97900,0,0,267,0,0,0,0,0,0,0,300,7.7,0,0,40.2,77777,9,999999999,60,0.1010,0,88,999.000,999.0,99.0 +1981,11,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.1,60,98000,116,1311,270,46,143,31,4600,7100,3900,560,300,9.3,0,0,40.2,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1981,11,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.0,54,98000,374,1393,282,211,523,68,21500,44500,9500,1250,320,7.7,0,0,40.2,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1981,11,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.1,41,98000,597,1393,293,400,702,96,41700,67700,12600,1940,340,6.2,0,0,40.2,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1981,11,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.1,36,98100,764,1393,302,552,788,115,58200,79000,14700,2610,310,7.7,0,0,40.2,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1981,11,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-1.1,31,98100,864,1393,311,646,829,126,66400,82200,15200,2820,300,4.1,0,0,40.2,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1981,11,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-2.2,26,98000,891,1393,317,670,836,129,69000,83100,15600,2970,310,6.2,0,0,40.2,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1981,11,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-3.3,23,97900,842,1393,318,627,822,124,64300,81400,14900,2710,310,6.2,0,0,40.2,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1981,11,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-3.3,22,97900,722,1393,321,515,770,111,54000,76600,14200,2430,320,7.2,0,0,40.2,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1981,11,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-3.9,22,97900,537,1393,317,349,665,89,36100,62700,11900,1750,310,5.7,0,0,40.2,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1981,11,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-3.3,25,97900,302,1393,311,157,443,59,15900,34800,8300,1050,320,6.2,0,0,40.2,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1981,11,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-3.3,32,98000,55,894,297,29,59,22,2700,2000,2600,390,310,4.6,0,0,40.2,77777,9,999999999,60,0.1410,0,88,999.000,999.0,99.0 +1981,11,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-3.3,35,98000,0,0,290,0,0,0,0,0,0,0,330,3.1,0,0,32.2,77777,9,999999999,60,0.1010,0,88,999.000,999.0,99.0 +1981,11,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-2.8,41,98100,0,0,284,0,0,0,0,0,0,0,330,3.1,0,0,32.2,77777,9,999999999,60,0.1010,0,88,999.000,999.0,99.0 +1981,11,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-2.2,44,98100,0,0,282,0,0,0,0,0,0,0,310,3.1,0,0,32.2,77777,9,999999999,60,0.1010,0,88,999.000,999.0,99.0 +1981,11,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.7,50,98100,0,0,278,0,0,0,0,0,0,0,310,2.6,0,0,32.2,77777,9,999999999,60,0.1010,0,88,999.000,999.0,99.0 +1981,11,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.7,50,98100,0,0,278,0,0,0,0,0,0,0,310,3.1,0,0,32.2,77777,9,999999999,69,0.1010,0,88,999.000,999.0,99.0 +1981,11,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,98100,0,0,268,0,0,0,0,0,0,0,280,2.6,0,0,32.2,77777,9,999999999,69,0.1010,0,88,999.000,999.0,99.0 +1981,11,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,98100,0,0,268,0,0,0,0,0,0,0,290,3.6,0,0,40.2,77777,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,98100,0,0,268,0,0,0,0,0,0,0,300,2.6,0,0,40.2,77777,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.7,62,98100,0,0,265,0,0,0,0,0,0,0,300,3.6,0,0,40.2,77777,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.7,62,98100,0,0,265,0,0,0,0,0,0,0,310,3.6,0,0,40.2,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,98200,0,0,258,0,0,0,0,0,0,0,310,2.1,0,0,40.2,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,98200,0,0,263,0,0,0,0,0,0,0,310,2.1,0,0,40.2,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,98300,0,0,263,0,0,0,0,0,0,0,310,3.1,0,0,40.2,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.1,68,98400,112,1289,264,48,201,27,4800,9800,3900,480,320,2.6,0,0,40.2,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-0.6,50,98400,370,1393,284,217,598,56,22500,51200,8800,1060,50,2.6,0,0,40.2,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-0.6,43,98500,592,1393,293,405,762,78,41800,72900,10700,1570,80,2.6,0,0,40.2,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-0.6,35,98500,759,1393,307,556,840,94,58000,83100,12600,2080,130,2.1,0,0,40.2,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-0.6,29,98400,859,1393,319,649,876,103,68100,87700,13900,2480,160,2.1,0,0,40.2,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-1.7,24,98400,886,1393,325,670,880,105,70600,88300,14200,2600,110,2.6,0,0,40.2,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,-2.8,21,98300,837,1393,329,627,866,101,65800,86500,13600,2380,120,2.1,0,0,40.2,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-2.8,19,98300,717,1393,334,517,819,90,53700,80500,12100,1940,240,1.5,0,0,40.2,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,-3.3,19,98300,533,1393,333,354,724,73,36100,67900,10100,1430,160,3.1,0,0,40.2,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-2.2,21,98300,298,1393,332,163,517,50,16600,40800,7900,920,130,3.1,0,0,40.2,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-2.8,22,98300,52,894,324,30,95,20,2700,3700,2500,350,130,3.1,0,0,40.2,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.7,29,98400,0,0,313,0,0,0,0,0,0,0,120,2.1,0,0,40.2,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-1.7,30,98400,0,0,310,0,0,0,0,0,0,0,130,4.1,1,0,40.2,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.7,32,98500,0,0,312,0,0,0,0,0,0,0,150,3.1,4,1,40.2,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.1,36,98500,0,0,302,0,0,0,0,0,0,0,130,3.1,2,0,40.2,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-0.6,42,98500,0,0,295,0,0,0,0,0,0,0,0,0.0,2,0,40.2,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1981,11,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,0.0,47,98500,0,0,291,0,0,0,0,0,0,0,0,0.0,0,0,40.2,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1981,11,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.6,52,98500,0,0,287,0,0,0,0,0,0,0,120,2.1,2,0,40.2,77777,9,999999999,89,0.0990,0,88,999.000,999.0,99.0 +1981,11,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.6,58,98500,0,0,286,0,0,0,0,0,0,0,70,2.1,4,1,40.2,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1981,11,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.0,58,98500,0,0,283,0,0,0,0,0,0,0,0,0.0,4,1,40.2,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1981,11,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-0.6,58,98500,0,0,284,0,0,0,0,0,0,0,0,0.0,5,2,40.2,77777,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1981,11,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.0,58,98500,0,0,297,0,0,0,0,0,0,0,0,0.0,9,6,40.2,7620,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1981,11,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,60,98500,0,0,298,0,0,0,0,0,0,0,50,2.6,10,7,40.2,7620,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1981,11,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.1,60,98500,0,0,286,0,0,0,0,0,0,0,40,2.1,8,5,40.2,7620,9,999999999,100,0.0990,0,88,999.000,999.0,99.0 +1981,11,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.6,58,98600,108,1266,308,29,31,26,3200,1600,3000,540,70,2.1,9,8,32.2,1520,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1981,11,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,1.7,61,98700,365,1394,328,88,7,86,9900,300,9800,3140,90,2.6,10,10,32.2,1520,9,999999999,110,0.0730,0,88,999.000,999.0,99.0 +1981,11,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.8,59,98600,587,1394,328,166,59,141,18200,5700,15800,4170,60,2.6,10,9,32.2,1520,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1981,11,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,3.9,53,98700,754,1394,335,303,213,187,32900,22400,20700,4240,0,0.0,9,8,32.2,3660,9,999999999,120,0.0730,0,88,999.000,999.0,99.0 +1981,11,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.0,50,98600,854,1394,341,506,490,202,53700,50300,22700,4850,120,1.0,8,7,19.3,3660,9,999999999,129,0.0730,0,88,999.000,999.0,99.0 +1981,11,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,5.6,46,98600,881,1394,363,304,53,270,33400,5400,30000,9030,180,2.6,9,9,19.3,4570,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1981,11,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.1,42,98500,833,1394,375,302,105,239,33200,11000,26600,6450,230,2.1,9,9,32.2,4570,9,999999999,139,0.0730,0,88,999.000,999.0,99.0 +1981,11,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,5.6,39,98400,712,1394,377,244,81,203,26900,8100,22700,6220,240,3.6,9,9,32.2,4270,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1981,11,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,6.1,41,98400,528,1394,378,241,149,184,25900,14400,20400,4270,230,3.6,10,9,40.2,3960,9,999999999,150,0.0730,0,88,999.000,999.0,99.0 +1981,11,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,6.1,39,98400,294,1394,373,121,130,93,13000,10400,10800,2010,260,1.5,10,8,40.2,2440,9,999999999,160,0.0730,0,88,999.000,999.0,99.0 +1981,11,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,6.1,43,98400,50,871,364,14,10,13,1500,500,1500,330,0,0.0,8,8,19.3,2440,9,999999999,160,0.0730,0,88,999.000,999.0,99.0 +1981,11,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,7.8,54,98500,0,0,358,0,0,0,0,0,0,0,170,3.1,8,8,19.3,2440,9,999999999,170,0.0990,0,88,999.000,999.0,99.0 +1981,11,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.3,58,98500,0,0,356,0,0,0,0,0,0,0,190,4.1,8,8,19.3,2440,9,999999999,170,0.0990,0,88,999.000,999.0,99.0 +1981,11,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.3,65,98500,0,0,348,0,0,0,0,0,0,0,150,1.5,8,8,19.3,2440,9,999999999,170,0.0990,0,88,999.000,999.0,99.0 +1981,11,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,98500,0,0,333,0,0,0,0,0,0,0,200,2.1,6,6,19.3,3660,9,999999999,179,0.0990,0,88,999.000,999.0,99.0 +1981,11,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,98500,0,0,350,0,0,0,0,0,0,0,260,1.5,9,9,19.3,2440,9,999999999,179,0.0990,0,88,999.000,999.0,99.0 +1981,11,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,98500,0,0,350,0,0,0,0,0,0,0,310,1.5,9,9,19.3,2440,9,999999999,179,0.0990,0,88,999.000,999.0,99.0 +1981,11,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,8.3,69,98500,0,0,342,0,0,0,0,0,0,0,0,0.0,8,8,24.1,2440,9,999999999,179,0.0980,0,88,999.000,999.0,99.0 +1981,11,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,98400,0,0,347,0,0,0,0,0,0,0,0,0.0,9,9,24.1,2440,9,999999999,179,0.0980,0,88,999.000,999.0,99.0 +1981,11,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,98400,0,0,347,0,0,0,0,0,0,0,0,0.0,9,9,24.1,2440,9,999999999,179,0.0980,0,88,999.000,999.0,99.0 +1981,11,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,98400,0,0,347,0,0,0,0,0,0,0,0,0.0,9,9,24.1,2440,9,999999999,189,0.0980,0,88,999.000,999.0,99.0 +1981,11,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,98500,0,0,349,0,0,0,0,0,0,0,0,0.0,10,10,16.1,1830,9,999999999,189,0.0980,0,88,999.000,999.0,99.0 +1981,11,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,98500,0,0,349,0,0,0,0,0,0,0,0,0.0,10,10,12.9,1830,9,999999999,189,0.0980,0,88,999.000,999.0,99.0 +1981,11,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,8.3,83,98500,0,0,346,0,0,0,0,0,0,0,60,2.1,10,10,11.3,1830,9,999999999,189,0.0980,0,88,999.000,999.0,99.0 +1981,11,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,98500,104,1244,339,24,5,24,2800,0,2800,830,50,2.1,10,9,9.7,1830,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1981,11,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.9,77,98500,360,1395,345,125,26,118,13600,2300,13000,2900,50,3.6,10,9,8.0,3660,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1981,11,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.9,75,98500,582,1395,357,122,23,113,13500,2200,12600,3450,70,3.1,10,10,8.0,1830,9,999999999,189,0.1020,0,88,999.000,999.0,99.0 +1981,11,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,8.9,67,98500,749,1395,366,185,8,181,21400,600,21100,7710,70,3.6,10,10,9.7,3660,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1981,11,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,8.9,63,98400,849,1395,372,221,14,212,25600,1200,24900,9270,80,2.6,10,10,11.3,3660,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1981,11,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,8.9,60,98400,876,1395,364,345,62,306,37900,6300,33900,9920,50,3.6,9,9,14.5,6100,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1981,11,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,8.3,54,98300,828,1395,369,349,62,311,38200,6300,34400,9590,50,3.1,10,9,24.1,7010,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1981,11,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,7.2,47,98200,708,1395,366,387,148,311,42300,15000,34600,8470,50,5.7,9,8,24.1,7010,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1981,11,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,5.0,42,98300,524,1395,368,187,46,169,20400,4400,18800,4550,60,4.6,10,9,24.1,7010,9,999999999,179,0.1020,0,88,999.000,999.0,99.0 +1981,11,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,5.0,45,98300,290,1395,362,107,49,97,11700,4100,10900,2290,30,3.1,10,9,24.1,6100,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1981,11,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,5.6,52,98300,48,848,355,10,3,10,1100,200,1100,260,50,2.1,10,9,24.1,6100,9,999999999,170,0.1020,0,88,999.000,999.0,99.0 +1981,11,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.6,55,98300,0,0,342,0,0,0,0,0,0,0,60,2.6,9,8,24.1,6100,9,999999999,170,0.0980,0,88,999.000,999.0,99.0 +1981,11,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.1,60,98400,0,0,335,0,0,0,0,0,0,0,70,3.1,7,7,24.1,6100,9,999999999,160,0.0980,0,88,999.000,999.0,99.0 +1981,11,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.8,72,98400,0,0,328,0,0,0,0,0,0,0,20,4.1,6,6,24.1,6100,9,999999999,160,0.0980,0,88,999.000,999.0,99.0 +1981,11,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,8.3,75,98400,0,0,332,0,0,0,0,0,0,0,40,4.6,9,7,19.3,6100,9,999999999,150,0.0980,0,88,999.000,999.0,99.0 +1981,11,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,98400,0,0,327,0,0,0,0,0,0,0,50,3.1,9,7,19.3,6100,9,999999999,150,0.0980,0,88,999.000,999.0,99.0 +1981,11,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,98400,0,0,317,0,0,0,0,0,0,0,50,3.6,9,4,19.3,77777,9,999999999,139,0.0980,0,88,999.000,999.0,99.0 +1981,11,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,98400,0,0,309,0,0,0,0,0,0,0,20,4.6,6,2,19.3,77777,9,999999999,139,0.0960,0,88,999.000,999.0,99.0 +1981,11,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,98300,0,0,300,0,0,0,0,0,0,0,30,4.6,4,1,19.3,77777,9,999999999,129,0.0960,0,88,999.000,999.0,99.0 +1981,11,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,6.7,83,98300,0,0,301,0,0,0,0,0,0,0,20,4.1,2,2,19.3,77777,9,999999999,120,0.0960,0,88,999.000,999.0,99.0 +1981,11,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,98300,0,0,286,0,0,0,0,0,0,0,360,2.6,0,0,12.9,77777,9,999999999,120,0.0960,0,88,999.000,999.0,99.0 +1981,11,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,98300,0,0,285,0,0,0,0,0,0,0,340,3.1,0,0,11.3,77777,9,999999999,110,0.0960,0,88,999.000,999.0,99.0 +1981,11,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,98300,0,0,277,0,0,0,0,0,0,0,320,1.5,0,0,11.3,77777,9,999999999,110,0.0960,0,88,999.000,999.0,99.0 +1981,11,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,98400,0,0,279,0,0,0,0,0,0,0,290,1.5,0,0,8.0,77777,9,999999999,100,0.0960,0,88,999.000,999.0,99.0 +1981,11,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,98400,100,1221,276,53,301,21,4800,15900,3500,380,270,1.5,0,0,9.7,77777,9,999999999,100,0.0510,0,88,999.000,999.0,99.0 +1981,11,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,98400,355,1395,288,221,702,39,23100,60900,7500,870,320,2.6,0,0,8.0,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,11,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.7,64,98400,577,1395,307,403,835,54,42200,79500,9100,1270,320,3.6,0,0,9.7,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,11,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.1,50,98400,744,1395,322,549,899,65,57300,88200,10100,1580,330,4.1,0,0,16.1,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,11,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,5.6,40,98300,844,1395,333,642,933,72,66800,92400,10700,1810,10,4.6,0,0,20.9,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,11,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,3.3,31,98200,871,1395,338,668,942,73,69400,93500,10800,1870,300,5.2,0,0,24.1,77777,9,999999999,89,0.0510,0,88,999.000,999.0,99.0 +1981,11,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,3.3,31,98100,823,1395,338,629,937,70,65400,92600,10600,1750,330,5.2,0,0,24.1,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1981,11,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,3.9,32,98100,704,1395,339,523,902,63,54500,88000,10000,1500,320,4.6,0,0,32.2,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1981,11,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,2.2,28,98100,520,1395,340,360,818,50,37500,76700,8800,1170,320,4.1,0,0,32.2,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1981,11,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,2.2,32,98100,286,1395,329,169,638,35,17200,51400,6700,720,310,5.2,0,0,32.2,77777,9,999999999,80,0.0510,0,88,999.000,999.0,99.0 +1981,11,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,2.8,40,98100,46,849,318,33,162,16,2600,7200,2200,290,310,4.6,0,0,32.2,77777,9,999999999,69,0.0510,0,88,999.000,999.0,99.0 +1981,11,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.2,44,98100,0,0,307,0,0,0,0,0,0,0,310,5.2,0,0,24.1,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1981,11,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,3.3,51,98100,0,0,304,0,0,0,0,0,0,0,320,6.2,0,0,24.1,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1981,11,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,3.9,57,98200,0,0,300,0,0,0,0,0,0,0,320,4.6,0,0,24.1,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1981,11,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,3.9,61,98200,0,0,295,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1981,11,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.9,71,98200,0,0,286,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1981,11,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,98200,0,0,281,0,0,0,0,0,0,0,320,2.6,0,0,24.1,77777,9,999999999,69,0.0960,0,88,999.000,999.0,99.0 +1981,11,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,76,98200,0,0,276,0,0,0,0,0,0,0,320,3.1,0,0,24.1,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1981,11,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,76,98200,0,0,276,0,0,0,0,0,0,0,330,3.1,0,0,24.1,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1981,11,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,79,98200,0,0,274,0,0,0,0,0,0,0,360,2.6,0,0,19.3,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1981,11,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,2.8,74,98200,0,0,278,0,0,0,0,0,0,0,20,2.6,0,0,19.3,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1981,11,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.7,66,98200,0,0,280,0,0,0,0,0,0,0,80,2.6,0,0,16.1,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1981,11,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.1,65,98200,0,0,277,0,0,0,0,0,0,0,60,2.6,0,0,16.1,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1981,11,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.6,63,98300,0,0,276,0,0,0,0,0,0,0,60,2.1,0,0,19.3,77777,9,999999999,80,0.0950,0,88,999.000,999.0,99.0 +1981,11,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.6,58,98400,96,1198,281,39,108,28,3900,4600,3600,500,100,1.5,0,0,19.3,77777,9,999999999,80,0.1420,0,88,999.000,999.0,99.0 +1981,11,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.1,54,98500,351,1396,288,191,492,65,19400,40900,9100,1180,70,6.2,0,0,24.1,77777,9,999999999,80,0.1420,0,88,999.000,999.0,99.0 +1981,11,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.1,49,98500,572,1396,295,374,679,93,38900,64900,12200,1860,100,6.7,0,0,24.1,77777,9,999999999,80,0.1420,0,88,999.000,999.0,99.0 +1981,11,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,1.7,44,98500,739,1396,305,525,772,113,55300,77000,14400,2510,110,4.6,0,0,24.1,77777,9,999999999,69,0.1420,0,88,999.000,999.0,99.0 +1981,11,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,2.2,38,98500,839,1396,317,620,817,124,63700,80800,14900,2690,90,3.1,0,0,32.2,77777,9,999999999,69,0.1420,0,88,999.000,999.0,99.0 +1981,11,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,2.2,35,98400,867,1396,322,645,826,127,66300,81900,15300,2830,80,3.6,0,0,32.2,77777,9,999999999,69,0.1420,0,88,999.000,999.0,99.0 +1981,11,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,2.8,34,98300,819,1396,328,601,809,122,61600,79800,14600,2590,90,2.1,0,0,24.1,77777,9,999999999,69,0.1420,0,88,999.000,999.0,99.0 +1981,11,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,2.2,31,98300,699,1396,332,491,755,108,51400,74700,13900,2330,10,2.1,0,0,24.1,77777,9,999999999,69,0.1420,0,88,999.000,999.0,99.0 +1981,11,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,2.2,32,98300,516,1396,329,330,649,86,34100,60600,11500,1670,40,3.1,0,0,24.1,77777,9,999999999,60,0.1420,0,88,999.000,999.0,99.0 +1981,11,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,2.8,37,98300,283,1396,323,143,417,57,14400,31900,8000,1010,90,2.1,0,0,24.1,77777,9,999999999,60,0.1420,0,88,999.000,999.0,99.0 +1981,11,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,2.8,44,98300,44,826,317,19,38,15,1900,1200,1800,250,80,3.1,1,1,24.1,77777,9,999999999,60,0.1420,0,88,999.000,999.0,99.0 +1981,11,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,2.8,47,98300,0,0,312,0,0,0,0,0,0,0,90,3.1,1,1,19.3,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,98400,0,0,301,0,0,0,0,0,0,0,90,3.1,0,0,19.3,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,2.2,55,98400,0,0,294,0,0,0,0,0,0,0,90,4.1,0,0,19.3,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,0.6,50,98500,0,0,290,0,0,0,0,0,0,0,90,3.1,0,0,19.3,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.0,54,98500,0,0,282,0,0,0,0,0,0,0,80,3.6,2,0,19.3,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.1,52,98500,0,0,279,0,0,0,0,0,0,0,70,2.1,2,0,19.3,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-2.2,50,98500,0,0,276,0,0,0,0,0,0,0,70,2.6,0,0,19.3,77777,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1981,11,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.2,53,98600,0,0,272,0,0,0,0,0,0,0,100,2.1,0,0,16.1,77777,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1981,11,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.8,51,98600,0,0,271,0,0,0,0,0,0,0,80,3.6,0,0,16.1,77777,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1981,11,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-2.8,55,98600,0,0,267,0,0,0,0,0,0,0,70,4.6,2,0,16.1,77777,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1981,11,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.8,60,98700,0,0,262,0,0,0,0,0,0,0,90,4.1,3,0,16.1,77777,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1981,11,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.8,62,98800,0,0,269,0,0,0,0,0,0,0,80,4.1,8,2,16.1,77777,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1981,11,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.3,62,98800,0,0,266,0,0,0,0,0,0,0,80,5.2,7,2,24.1,77777,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1981,11,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-3.3,60,98900,93,1176,273,38,54,32,4000,2700,3700,660,90,4.1,10,4,24.1,77777,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1981,11,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-3.3,57,98900,346,1397,280,170,134,136,18000,11300,15200,2980,90,5.7,10,6,32.2,7620,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1981,11,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-3.3,49,98900,567,1397,292,241,205,157,25700,20400,17400,3300,70,5.2,10,7,32.2,7620,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1981,11,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-3.3,41,98900,734,1397,300,468,409,251,49400,42600,26900,5990,70,3.6,10,6,32.2,7620,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1981,11,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-3.3,39,98800,835,1397,311,408,181,299,44200,18900,32900,8070,90,2.1,10,8,32.2,7620,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1981,11,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-2.8,35,98700,862,1397,329,299,87,244,32800,8800,27400,8170,110,2.1,10,9,24.1,7620,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1981,11,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-2.8,33,98600,815,1397,343,262,51,232,28800,5100,25800,7540,40,2.1,10,10,24.1,7620,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1981,11,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-2.2,32,98500,695,1397,349,195,12,189,22300,1000,21800,7630,100,2.1,10,10,24.1,7620,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1981,11,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-2.2,32,98500,512,1397,349,131,6,129,14900,400,14700,4940,0,0.0,10,10,24.1,7620,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1981,11,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.7,36,98400,279,1397,328,83,57,71,9000,4600,8100,1780,0,0.0,10,8,19.3,7620,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1981,11,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-2.2,37,98400,43,803,311,29,40,25,3000,1600,2900,520,70,1.0,10,5,19.3,77777,9,999999999,60,0.0530,0,88,999.000,999.0,99.0 +1981,11,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,46,98500,0,0,304,0,0,0,0,0,0,0,0,0.0,9,4,19.3,77777,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1981,11,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-0.6,48,98500,0,0,301,0,0,0,0,0,0,0,0,0.0,9,4,19.3,77777,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1981,11,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-0.6,50,98500,0,0,298,0,0,0,0,0,0,0,0,0.0,10,4,16.1,77777,9,999999999,60,0.0940,0,88,999.000,999.0,99.0 +1981,11,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.0,58,98500,0,0,292,0,0,0,0,0,0,0,0,0.0,10,4,24.1,77777,9,999999999,69,0.0940,0,88,999.000,999.0,99.0 +1981,11,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.0,60,98500,0,0,290,0,0,0,0,0,0,0,0,0.0,10,4,24.1,77777,9,999999999,69,0.0940,0,88,999.000,999.0,99.0 +1981,11,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.0,65,98500,0,0,283,0,0,0,0,0,0,0,330,1.5,10,3,24.1,77777,9,999999999,69,0.0940,0,88,999.000,999.0,99.0 +1981,11,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.6,68,98500,0,0,272,0,0,0,0,0,0,0,0,0.0,4,0,24.1,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1981,11,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-0.6,63,98500,0,0,271,0,0,0,0,0,0,0,30,1.5,3,0,24.1,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1981,11,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-0.6,65,98500,0,0,269,0,0,0,0,0,0,0,20,1.5,0,0,24.1,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1981,11,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.7,60,98400,0,0,268,0,0,0,0,0,0,0,40,2.6,0,0,24.1,77777,9,999999999,80,0.0930,0,88,999.000,999.0,99.0 +1981,11,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,98400,0,0,263,0,0,0,0,0,0,0,70,3.1,0,0,24.1,77777,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1981,11,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.8,62,98500,0,0,265,0,0,0,0,0,0,0,60,2.6,3,1,19.3,77777,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1981,11,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,98500,0,0,258,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0930,0,88,999.000,999.0,99.0 +1981,11,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.7,79,98600,89,1153,253,44,203,23,4000,10300,3200,410,310,3.1,0,0,40.2,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1981,11,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.1,50,98600,341,1397,281,197,601,48,20000,50600,7500,920,0,0.0,1,0,40.2,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1981,11,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-7.8,25,98600,563,1397,286,385,786,65,40200,75000,9900,1370,60,2.1,0,0,24.1,77777,9,999999999,89,0.0760,0,88,999.000,999.0,99.0 +1981,11,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-9.4,19,98500,729,1397,293,531,852,83,56000,84200,11900,1860,40,2.1,1,0,32.2,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1981,11,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-8.3,19,98500,830,1397,298,625,890,91,64600,87900,12200,1900,110,1.5,1,0,32.2,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1981,11,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-4.4,23,98300,857,1397,312,649,896,94,67000,88600,12500,1990,300,3.6,1,0,32.2,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1981,11,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-3.9,22,98200,810,1397,317,606,880,90,64000,87900,12800,2130,290,4.1,1,0,32.2,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1981,11,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-2.2,22,98100,691,1397,327,502,850,76,52800,83600,11300,1700,260,4.1,0,0,32.2,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1981,11,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,-2.2,23,98000,509,1397,324,343,762,61,35500,71300,9400,1260,340,2.6,0,0,32.2,77777,9,999999999,80,0.0760,0,88,999.000,999.0,99.0 +1981,11,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-1.7,27,98000,276,1397,318,154,556,42,15400,43700,6700,780,360,3.1,0,0,24.1,77777,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1981,11,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.7,32,98000,41,803,306,27,100,16,2300,3600,2100,280,310,1.5,0,0,19.3,77777,9,999999999,69,0.0760,0,88,999.000,999.0,99.0 +1981,11,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.1,39,98000,0,0,297,0,0,0,0,0,0,0,300,2.6,0,0,19.3,77777,9,999999999,69,0.0930,0,88,999.000,999.0,99.0 +1981,11,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-0.6,43,98000,0,0,293,0,0,0,0,0,0,0,290,2.6,0,0,19.3,77777,9,999999999,69,0.0930,0,88,999.000,999.0,99.0 +1981,11,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.6,52,98000,0,0,287,0,0,0,0,0,0,0,300,3.6,0,0,19.3,77777,9,999999999,69,0.0930,0,88,999.000,999.0,99.0 +1981,11,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.6,58,98000,0,0,281,0,0,0,0,0,0,0,270,4.1,0,0,19.3,77777,9,999999999,69,0.0930,0,88,999.000,999.0,99.0 +1981,11,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.6,61,98000,0,0,279,0,0,0,0,0,0,0,270,4.6,0,0,19.3,77777,9,999999999,69,0.0930,0,88,999.000,999.0,99.0 +1981,11,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.1,65,98000,0,0,277,0,0,0,0,0,0,0,270,5.2,0,0,19.3,77777,9,999999999,69,0.0930,0,88,999.000,999.0,99.0 +1981,11,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.1,68,97900,0,0,275,0,0,0,0,0,0,0,270,4.6,0,0,19.3,77777,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1981,11,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.1,65,97900,0,0,277,0,0,0,0,0,0,0,300,4.1,0,0,19.3,77777,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1981,11,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.7,68,97900,0,0,277,0,0,0,0,0,0,0,290,4.1,0,0,19.3,77777,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1981,11,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,97900,0,0,275,0,0,0,0,0,0,0,310,5.2,0,0,19.3,77777,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1981,11,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,97900,0,0,275,0,0,0,0,0,0,0,300,4.6,0,0,19.3,77777,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1981,11,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.1,76,97900,0,0,268,0,0,0,0,0,0,0,290,2.6,0,0,16.1,77777,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1981,11,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,97900,0,0,264,0,0,0,0,0,0,0,270,3.1,0,0,11.3,77777,9,999999999,60,0.0910,0,88,999.000,999.0,99.0 +1981,11,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.7,76,97900,86,1153,271,41,184,23,4000,8300,3300,400,280,3.6,0,0,11.3,77777,9,999999999,60,0.0820,0,88,999.000,999.0,99.0 +1981,11,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.2,66,97900,337,1398,282,197,613,48,20000,51400,7600,910,290,5.7,0,0,11.3,77777,9,999999999,60,0.0820,0,88,999.000,999.0,99.0 +1981,11,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,97900,558,1398,301,384,785,67,39900,74600,10000,1390,280,4.6,0,0,12.9,77777,9,999999999,60,0.0820,0,88,999.000,999.0,99.0 +1981,11,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,2.8,38,97900,725,1398,320,534,864,82,56200,85400,11800,1840,320,6.2,0,0,19.3,77777,9,999999999,60,0.0820,0,88,999.000,999.0,99.0 +1981,11,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,2.8,34,97900,825,1398,328,627,879,103,65500,87500,13700,2370,310,5.7,2,0,19.3,77777,9,999999999,60,0.0820,0,88,999.000,999.0,99.0 +1981,11,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,2.8,32,97800,853,1398,333,654,890,106,68500,88800,14100,2500,330,6.2,2,0,24.1,77777,9,999999999,60,0.0820,0,88,999.000,999.0,99.0 +1981,11,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,2.2,29,97700,806,1398,337,606,880,93,63700,87700,13000,2170,330,5.2,1,0,24.1,77777,9,999999999,69,0.0820,0,88,999.000,999.0,99.0 +1981,11,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,2.2,28,97600,687,1398,340,499,845,78,52300,83000,11300,1720,310,5.7,0,0,24.1,77777,9,999999999,69,0.0820,0,88,999.000,999.0,99.0 +1981,11,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,2.2,29,97600,505,1398,344,335,729,68,34300,67700,9700,1330,270,4.6,2,1,19.3,77777,9,999999999,69,0.0820,0,88,999.000,999.0,99.0 +1981,11,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,1.7,30,97600,273,1398,346,122,250,72,12800,18500,9100,1370,280,5.2,7,3,19.3,77777,9,999999999,69,0.0820,0,88,999.000,999.0,99.0 +1981,11,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,1.7,37,97600,39,781,327,24,47,19,2300,1400,2200,340,280,2.6,8,2,19.3,77777,9,999999999,69,0.0820,0,88,999.000,999.0,99.0 +1981,11,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,2.2,44,97600,0,0,338,0,0,0,0,0,0,0,280,2.6,9,8,19.3,3660,9,999999999,69,0.0910,0,88,999.000,999.0,99.0 +1981,11,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,97600,0,0,331,0,0,0,0,0,0,0,280,3.6,10,8,19.3,7620,9,999999999,80,0.0910,0,88,999.000,999.0,99.0 +1981,11,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.2,51,97600,0,0,328,0,0,0,0,0,0,0,280,3.6,10,8,19.3,3660,9,999999999,80,0.0910,0,88,999.000,999.0,99.0 +1981,11,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,97600,0,0,348,0,0,0,0,0,0,0,300,3.6,10,10,19.3,3050,9,999999999,89,0.0910,0,88,999.000,999.0,99.0 +1981,11,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.8,53,97600,0,0,345,0,0,0,0,0,0,0,280,3.6,10,10,19.3,3050,9,999999999,89,0.0910,0,88,999.000,999.0,99.0 +1981,11,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,2.8,53,97600,0,0,345,0,0,0,0,0,0,0,280,3.6,10,10,19.3,3050,9,999999999,89,0.0910,0,88,999.000,999.0,99.0 +1981,11,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,2.8,55,97600,0,0,326,0,0,0,0,0,0,0,270,3.6,10,8,19.3,3050,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1981,11,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,2.8,55,97500,0,0,326,0,0,0,0,0,0,0,280,3.1,10,8,19.3,3050,9,999999999,100,0.0900,0,88,999.000,999.0,99.0 +1981,11,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,2.8,59,97500,0,0,309,0,0,0,0,0,0,0,280,3.1,10,5,16.1,77777,9,999999999,110,0.0900,0,88,999.000,999.0,99.0 +1981,11,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,2.2,61,97500,0,0,299,0,0,0,0,0,0,0,280,3.6,8,3,16.1,77777,9,999999999,110,0.0900,0,88,999.000,999.0,99.0 +1981,11,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,2.2,63,97500,0,0,297,0,0,0,0,0,0,0,270,2.6,4,3,16.1,77777,9,999999999,120,0.0900,0,88,999.000,999.0,99.0 +1981,11,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,2.8,61,97500,0,0,325,0,0,0,0,0,0,0,290,3.6,10,9,12.9,1520,9,999999999,129,0.0900,0,88,999.000,999.0,99.0 +1981,11,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,3.9,66,97500,0,0,319,0,0,0,0,0,0,0,260,5.7,9,8,11.3,1520,9,999999999,129,0.0900,0,88,999.000,999.0,99.0 +1981,11,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,97500,82,1131,327,18,22,16,2000,1100,1900,330,260,2.1,10,9,8.0,1220,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1981,11,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,97400,332,1399,338,54,1,54,6300,0,6300,2120,310,2.1,10,10,1.6,370,9,999999999,129,0.0700,0,88,999.000,999.0,99.0 +1981,11,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,9.4,93,97400,553,1399,345,163,5,161,18300,400,18200,5970,310,5.2,10,10,6.4,430,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1981,11,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,97300,720,1399,347,232,9,227,26200,800,25800,8780,220,6.2,10,10,6.4,340,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1981,11,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,97200,821,1399,358,228,7,225,26400,600,26000,9480,250,5.2,10,10,6.4,240,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1981,11,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,97100,849,1399,358,272,3,270,31000,300,30800,10930,240,4.6,10,10,6.4,240,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1981,11,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,11.7,81,97000,802,1399,369,278,6,275,31400,600,31100,10630,240,7.7,10,10,6.4,310,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1981,11,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.2,78,97000,683,1399,365,221,13,214,24800,1100,24300,8180,250,6.2,10,9,6.4,2440,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1981,11,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.2,75,97000,502,1399,368,145,48,128,16000,4500,14300,3580,270,4.1,10,9,9.7,1830,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1981,11,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,11.1,70,97000,270,1399,367,78,29,72,8500,2300,8000,1780,290,4.6,10,9,8.0,1830,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1981,11,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.6,75,97100,38,758,350,23,6,22,2500,0,2500,680,290,5.7,10,8,8.0,7620,9,999999999,150,0.0700,0,88,999.000,999.0,99.0 +1981,11,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,10.0,75,97100,0,0,364,0,0,0,0,0,0,0,290,4.6,10,10,8.0,7620,9,999999999,150,0.0900,0,88,999.000,999.0,99.0 +1981,11,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.8,67,97200,0,0,359,0,0,0,0,0,0,0,280,5.7,10,10,9.7,7620,9,999999999,150,0.0900,0,88,999.000,999.0,99.0 +1981,11,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,6.1,62,97200,0,0,317,0,0,0,0,0,0,0,290,8.8,5,2,16.1,77777,9,999999999,150,0.0900,0,88,999.000,999.0,99.0 +1981,11,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,4.4,62,97200,0,0,298,0,0,0,0,0,0,0,280,6.7,3,0,16.1,77777,9,999999999,139,0.0900,0,88,999.000,999.0,99.0 +1981,11,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,4.4,62,97200,0,0,316,0,0,0,0,0,0,0,290,9.8,7,5,16.1,7620,9,999999999,139,0.0900,0,88,999.000,999.0,99.0 +1981,11,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,5.0,62,97200,0,0,338,0,0,0,0,0,0,0,290,7.2,9,9,24.1,850,9,999999999,139,0.0900,0,88,999.000,999.0,99.0 +1981,11,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.6,66,97200,0,0,346,0,0,0,0,0,0,0,300,7.2,10,10,24.1,850,9,999999999,139,0.0890,0,88,999.000,999.0,99.0 +1981,11,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.1,77,97300,0,0,329,0,0,0,0,0,0,0,300,7.2,9,9,24.1,850,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1981,11,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,97300,0,0,301,0,0,0,0,0,0,0,290,4.6,3,3,24.1,77777,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1981,11,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.1,86,97300,0,0,286,0,0,0,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1981,11,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,97400,0,0,281,0,0,0,0,0,0,0,290,5.2,0,0,24.1,77777,9,999999999,129,0.0890,0,88,999.000,999.0,99.0 +1981,11,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,97400,0,0,328,0,0,0,0,0,0,0,280,3.6,10,10,24.1,580,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1981,11,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,97500,0,0,309,0,0,0,0,0,0,0,280,3.1,8,8,24.1,700,9,999999999,120,0.0890,0,88,999.000,999.0,99.0 +1981,11,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,97500,79,1108,294,28,53,23,2900,2100,2700,400,280,4.1,3,3,9.7,77777,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1981,11,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,97600,328,1399,300,178,491,62,18200,39800,8800,1120,290,5.2,1,1,9.7,77777,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1981,11,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.2,69,97700,548,1399,336,231,38,216,25300,3700,23800,5540,320,6.2,8,8,11.3,910,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1981,11,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,5.6,55,97700,715,1399,342,249,180,156,27200,18800,17600,3380,300,6.2,8,8,11.3,910,9,999999999,110,0.0820,0,88,999.000,999.0,99.0 +1981,11,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,3.9,46,97600,816,1399,353,275,29,258,31300,2600,29700,10340,330,7.2,9,9,16.1,1070,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1981,11,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,3.3,40,97600,844,1399,347,569,547,236,59400,56000,25500,5690,320,6.2,7,7,40.2,1070,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1981,11,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,-0.6,29,97500,798,1399,336,573,734,151,59600,73100,17800,3400,310,8.2,4,4,40.2,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1981,11,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,1.1,32,97500,680,1399,334,465,697,122,48200,68200,14900,2530,320,9.3,2,2,40.2,77777,9,999999999,89,0.0820,0,88,999.000,999.0,99.0 +1981,11,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,0.0,29,97500,499,1399,322,328,734,62,33700,68200,9300,1260,320,4.6,0,0,40.2,77777,9,999999999,89,0.0820,0,88,999.000,999.0,99.0 +1981,11,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-0.6,30,97600,267,1399,316,145,522,42,14700,39500,7100,780,300,7.2,0,0,56.3,77777,9,999999999,89,0.0820,0,88,999.000,999.0,99.0 +1981,11,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,0.0,37,97600,37,758,305,25,83,16,2200,2900,2000,280,280,5.2,0,0,56.3,77777,9,999999999,80,0.0820,0,88,999.000,999.0,99.0 +1981,11,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.1,37,97600,0,0,299,0,0,0,0,0,0,0,290,5.2,0,0,56.3,77777,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1981,11,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,46,97700,0,0,289,0,0,0,0,0,0,0,280,4.6,0,0,56.3,77777,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1981,11,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,46,97700,0,0,289,0,0,0,0,0,0,0,290,4.6,0,0,56.3,77777,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1981,11,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-0.6,52,97700,0,0,282,0,0,0,0,0,0,0,290,4.1,0,0,48.3,77777,9,999999999,80,0.0890,0,88,999.000,999.0,99.0 +1981,11,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-0.6,56,97800,0,0,277,0,0,0,0,0,0,0,290,4.1,0,0,48.3,77777,9,999999999,69,0.0890,0,88,999.000,999.0,99.0 +1981,11,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-0.6,60,97800,0,0,273,0,0,0,0,0,0,0,280,4.1,0,0,48.3,77777,9,999999999,69,0.0890,0,88,999.000,999.0,99.0 +1981,11,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,97800,0,0,267,0,0,0,0,0,0,0,270,4.1,0,0,40.2,77777,9,999999999,69,0.0880,0,88,999.000,999.0,99.0 +1981,11,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-0.6,68,97800,0,0,267,0,0,0,0,0,0,0,270,3.6,0,0,40.2,77777,9,999999999,69,0.0880,0,88,999.000,999.0,99.0 +1981,11,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,97800,0,0,268,0,0,0,0,0,0,0,290,3.6,0,0,40.2,77777,9,999999999,69,0.0880,0,88,999.000,999.0,99.0 +1981,11,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.1,65,97800,0,0,266,0,0,0,0,0,0,0,290,3.6,0,0,40.2,77777,9,999999999,60,0.0880,0,88,999.000,999.0,99.0 +1981,11,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.1,65,97800,0,0,266,0,0,0,0,0,0,0,280,4.1,0,0,40.2,77777,9,999999999,60,0.0880,0,88,999.000,999.0,99.0 +1981,11,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.1,68,97800,0,0,264,0,0,0,0,0,0,0,280,4.1,0,0,40.2,77777,9,999999999,60,0.0880,0,88,999.000,999.0,99.0 +1981,11,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.1,70,97900,0,0,262,0,0,0,0,0,0,0,280,4.6,0,0,40.2,77777,9,999999999,60,0.0880,0,88,999.000,999.0,99.0 +1981,11,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.1,68,97900,76,1085,264,37,142,22,3400,6100,3000,390,270,5.2,0,0,56.3,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.0,58,97900,323,1400,278,182,554,52,18700,45100,8200,970,290,4.1,1,0,48.3,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.6,45,97900,544,1400,296,366,730,80,38400,69300,11300,1600,290,4.1,2,0,40.2,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.7,39,98000,711,1400,312,515,815,97,53100,79700,12500,2000,270,5.2,2,0,40.2,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,1.1,33,97900,812,1400,321,610,857,109,63300,84900,13900,2400,290,3.6,2,0,40.2,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,0.0,27,97800,840,1400,327,638,868,112,66200,86300,14300,2530,310,5.2,2,0,40.2,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-1.1,23,97800,794,1400,333,596,853,107,61600,84400,13600,2330,290,5.2,2,0,40.2,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-1.7,22,97700,676,1400,332,486,824,84,50600,80400,11500,1780,290,5.2,0,0,40.2,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,-2.8,20,97700,495,1400,331,327,724,67,33400,66900,9600,1310,320,3.1,0,0,40.2,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,-2.8,21,97700,264,1400,326,140,484,47,14200,36200,7400,850,320,2.6,1,0,48.3,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-1.7,28,97700,35,735,315,22,63,16,2100,1800,2000,280,300,2.1,1,0,48.3,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1981,11,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.1,33,97800,0,0,306,0,0,0,0,0,0,0,300,3.1,0,0,48.3,77777,9,999999999,60,0.0880,0,88,999.000,999.0,99.0 +1981,11,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.0,40,97800,0,0,300,0,0,0,0,0,0,0,320,2.1,0,0,32.2,77777,9,999999999,60,0.0880,0,88,999.000,999.0,99.0 +1981,11,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.0,43,97800,0,0,296,0,0,0,0,0,0,0,260,2.1,0,0,24.1,77777,9,999999999,69,0.0880,0,88,999.000,999.0,99.0 +1981,11,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-0.6,45,97800,0,0,291,0,0,0,0,0,0,0,270,2.1,0,0,32.2,77777,9,999999999,69,0.0880,0,88,999.000,999.0,99.0 +1981,11,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.0,43,97800,0,0,296,0,0,0,0,0,0,0,250,3.1,0,0,32.2,77777,9,999999999,80,0.0880,0,88,999.000,999.0,99.0 +1981,11,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,46,97800,0,0,289,0,0,0,0,0,0,0,240,2.6,0,0,32.2,77777,9,999999999,80,0.0880,0,88,999.000,999.0,99.0 +1981,11,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-0.6,40,97800,0,0,298,0,0,0,0,0,0,0,200,2.1,0,0,32.2,77777,9,999999999,89,0.0870,0,88,999.000,999.0,99.0 +1981,11,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-0.6,48,97800,0,0,286,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0870,0,88,999.000,999.0,99.0 +1981,11,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.0,54,97800,0,0,282,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,89,0.0870,0,88,999.000,999.0,99.0 +1981,11,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.6,58,97800,0,0,281,0,0,0,0,0,0,0,0,0.0,0,0,24.1,77777,9,999999999,100,0.0870,0,88,999.000,999.0,99.0 +1981,11,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.0,56,97800,0,0,280,0,0,0,0,0,0,0,230,2.6,0,0,24.1,77777,9,999999999,100,0.0870,0,88,999.000,999.0,99.0 +1981,11,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,0.6,52,97800,0,0,302,0,0,0,0,0,0,0,230,4.1,4,4,19.3,77777,9,999999999,110,0.0870,0,88,999.000,999.0,99.0 +1981,11,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.6,66,97800,0,0,346,0,0,0,0,0,0,0,230,3.1,10,10,16.1,1520,9,999999999,110,0.0870,0,88,999.000,999.0,99.0 +1981,11,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,97800,72,1062,335,24,6,23,2600,0,2600,770,230,2.6,10,9,8.0,1520,9,999999999,120,0.0640,0,88,999.000,999.0,99.0 +1981,11,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,97800,318,1400,355,94,3,93,10400,100,10300,3080,200,3.1,10,10,0.0,0,9,999999999,139,0.0640,0,88,999.000,999.0,99.0 +1981,11,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,96,97800,539,1400,362,111,4,110,12900,300,12800,4500,160,4.1,10,10,0.0,0,9,999999999,150,0.0640,0,88,999.000,999.0,99.0 +1981,11,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,13.3,93,97800,706,1400,368,184,7,181,21200,600,20900,7450,180,4.1,10,10,0.0,0,9,999999999,160,0.0640,0,88,999.000,999.0,99.0 +1981,11,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.4,84,97800,807,1400,384,234,2,233,26800,200,26700,9600,230,5.2,10,10,3.2,150,9,999999999,170,0.0640,0,88,999.000,999.0,99.0 +1981,11,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,15.6,81,97700,836,1400,395,285,6,282,32400,600,32000,11100,240,5.2,10,10,4.8,240,9,999999999,189,0.0640,0,88,999.000,999.0,99.0 +1981,11,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,97600,790,1400,412,273,3,271,30800,300,30600,10420,190,6.2,10,10,9.7,430,9,999999999,200,0.0640,0,88,999.000,999.0,99.0 +1981,11,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,24.4,16.1,60,97500,673,1400,385,472,671,146,48300,64900,17000,2910,200,8.2,3,3,16.1,77777,9,999999999,209,0.0640,0,88,999.000,999.0,99.0 +1981,11,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.9,15.6,60,97400,492,1400,402,176,98,140,19000,9400,15700,3200,190,8.2,8,8,16.1,1220,9,999999999,220,0.0640,0,88,999.000,999.0,99.0 +1981,11,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,23.3,15.0,60,97300,261,1400,374,121,319,60,12500,23200,8100,1090,190,6.2,2,2,24.1,77777,9,999999999,229,0.0640,0,88,999.000,999.0,99.0 +1981,11,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,15.0,62,97400,34,735,389,22,5,22,2400,0,2400,670,180,5.2,9,7,16.1,1220,9,999999999,250,0.0640,0,88,999.000,999.0,99.0 +1981,11,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,97400,0,0,399,0,0,0,0,0,0,0,180,4.6,10,9,16.1,1370,9,999999999,259,0.0870,0,88,999.000,999.0,99.0 +1981,11,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,15.6,68,97300,0,0,371,0,0,0,0,0,0,0,180,7.2,4,3,19.3,77777,9,999999999,250,0.0870,0,88,999.000,999.0,99.0 +1981,11,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,97200,0,0,374,0,0,0,0,0,0,0,180,6.7,6,5,19.3,1010,9,999999999,229,0.0870,0,88,999.000,999.0,99.0 +1981,11,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.1,71,97100,0,0,385,0,0,0,0,0,0,0,180,7.7,8,7,19.3,700,9,999999999,220,0.0870,0,88,999.000,999.0,99.0 +1981,11,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,97100,0,0,381,0,0,0,0,0,0,0,190,9.3,7,6,19.3,700,9,999999999,209,0.0870,0,88,999.000,999.0,99.0 +1981,11,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,17.2,79,97000,0,0,398,0,0,0,0,0,0,0,210,11.3,10,9,11.3,550,9,999999999,200,0.0870,0,88,999.000,999.0,99.0 +1981,11,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,17.2,87,97100,0,0,400,0,0,0,0,0,0,0,240,6.2,10,10,12.9,1520,9,999999999,189,0.0860,0,88,999.000,999.0,99.0 +1981,11,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,13.9,87,97200,0,0,378,0,0,0,0,0,0,0,300,7.7,10,10,16.1,430,9,999999999,170,0.0860,0,88,999.000,999.0,99.0 +1981,11,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,8.3,72,97200,0,0,347,0,0,0,0,0,0,0,300,6.7,9,9,19.3,1520,9,999999999,160,0.0860,0,88,999.000,999.0,99.0 +1981,11,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,97200,0,0,316,0,0,0,0,0,0,0,300,8.2,5,5,24.1,77777,9,999999999,150,0.0860,0,88,999.000,999.0,99.0 +1981,11,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,2.8,68,97300,0,0,283,0,0,0,0,0,0,0,320,9.8,0,0,24.1,77777,9,999999999,139,0.0860,0,88,999.000,999.0,99.0 +1981,11,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,79,97400,0,0,274,0,0,0,0,0,0,0,280,6.7,0,0,24.1,77777,9,999999999,120,0.0860,0,88,999.000,999.0,99.0 +1981,11,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.7,76,97400,0,0,280,0,0,0,0,0,0,0,280,4.6,2,2,32.2,77777,9,999999999,110,0.0860,0,88,999.000,999.0,99.0 +1981,11,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.2,76,97500,69,1039,307,34,25,32,3700,1500,3600,710,280,4.1,10,9,40.2,850,9,999999999,110,0.0870,0,88,999.000,999.0,99.0 +1981,11,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,97600,314,1401,302,80,26,74,8800,2200,8300,1920,300,10.3,9,9,40.2,850,9,999999999,100,0.0870,0,88,999.000,999.0,99.0 +1981,11,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.1,65,97700,535,1401,299,171,56,150,18800,5400,16800,4180,300,8.2,10,9,40.2,850,9,999999999,100,0.0870,0,88,999.000,999.0,99.0 +1981,11,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.1,68,97700,701,1401,296,274,142,202,29900,14600,22600,5040,300,7.2,10,9,40.2,850,9,999999999,100,0.0870,0,88,999.000,999.0,99.0 +1981,11,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-1.7,67,97800,803,1401,293,381,162,288,41300,16800,31600,7600,300,8.2,10,9,40.2,790,9,999999999,89,0.0870,0,88,999.000,999.0,99.0 +1981,11,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,97800,832,1401,304,254,8,249,29000,700,28600,10230,300,8.2,10,10,40.2,640,9,999999999,89,0.0870,0,88,999.000,999.0,99.0 +1981,11,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.7,60,97700,786,1401,300,259,43,234,28400,4300,26000,7400,300,8.2,10,9,40.2,670,9,999999999,89,0.0870,0,88,999.000,999.0,99.0 +1981,11,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.8,58,97700,669,1401,297,271,66,239,29700,6600,26500,6760,300,8.2,10,9,40.2,700,9,999999999,80,0.0870,0,88,999.000,999.0,99.0 +1981,11,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.8,58,97800,489,1401,297,146,45,130,16000,4200,14500,3580,300,7.2,10,9,40.2,700,9,999999999,80,0.0870,0,88,999.000,999.0,99.0 +1981,11,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-1.7,65,97800,259,1401,295,82,25,77,8900,2000,8600,1850,300,5.2,10,9,40.2,640,9,999999999,80,0.0870,0,88,999.000,999.0,99.0 +1981,11,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,97800,33,712,295,7,2,7,900,0,900,270,290,7.7,10,9,24.1,640,9,999999999,69,0.0870,0,88,999.000,999.0,99.0 +1981,11,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-3.3,60,97900,0,0,292,0,0,0,0,0,0,0,300,7.2,9,9,24.1,640,9,999999999,69,0.0860,0,88,999.000,999.0,99.0 +1981,11,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,97900,0,0,283,0,0,0,0,0,0,0,300,6.7,9,8,24.1,640,9,999999999,69,0.0860,0,88,999.000,999.0,99.0 +1981,11,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.3,62,97900,0,0,289,0,0,0,0,0,0,0,300,6.2,10,9,24.1,700,9,999999999,69,0.0860,0,88,999.000,999.0,99.0 +1981,11,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.3,62,97900,0,0,289,0,0,0,0,0,0,0,290,7.2,10,9,24.1,700,9,999999999,69,0.0860,0,88,999.000,999.0,99.0 +1981,11,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.9,62,97900,0,0,280,0,0,0,0,0,0,0,300,6.7,8,8,24.1,700,9,999999999,69,0.0860,0,88,999.000,999.0,99.0 +1981,11,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.3,65,98000,0,0,281,0,0,0,0,0,0,0,290,5.2,8,8,24.1,700,9,999999999,69,0.0860,0,88,999.000,999.0,99.0 +1981,11,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.0,69,97900,0,0,254,0,0,0,0,0,0,0,290,5.2,3,3,24.1,77777,9,999999999,60,0.0840,0,88,999.000,999.0,99.0 +1981,11,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.6,67,98000,0,0,263,0,0,0,0,0,0,0,300,5.7,7,7,24.1,880,9,999999999,60,0.0840,0,88,999.000,999.0,99.0 +1981,11,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-5.6,72,98000,0,0,247,0,0,0,0,0,0,0,310,4.6,2,2,24.1,77777,9,999999999,60,0.0840,0,88,999.000,999.0,99.0 +1981,11,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-6.1,72,98000,0,0,237,0,0,0,0,0,0,0,300,6.7,0,0,24.1,77777,9,999999999,60,0.0840,0,88,999.000,999.0,99.0 +1981,11,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-6.1,75,98000,0,0,235,0,0,0,0,0,0,0,300,5.7,0,0,24.1,77777,9,999999999,60,0.0840,0,88,999.000,999.0,99.0 +1981,11,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-6.1,78,98100,0,0,233,0,0,0,0,0,0,0,290,4.6,0,0,32.2,77777,9,999999999,60,0.0840,0,88,999.000,999.0,99.0 +1981,11,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-6.1,78,98100,0,0,233,0,0,0,0,0,0,0,290,5.2,0,0,32.2,77777,9,999999999,60,0.0840,0,88,999.000,999.0,99.0 +1981,11,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-5.6,81,98100,66,1016,234,36,178,18,3100,8500,2500,330,290,4.1,0,0,32.2,77777,9,999999999,60,0.0630,0,88,999.000,999.0,99.0 +1981,11,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-5.0,72,98200,309,1402,242,181,631,40,18500,51900,7000,800,280,6.2,0,0,32.2,77777,9,999999999,60,0.0630,0,88,999.000,999.0,99.0 +1981,11,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-4.4,62,98200,530,1402,252,362,801,56,37800,75200,9300,1210,290,7.7,0,0,32.2,77777,9,999999999,60,0.0630,0,88,999.000,999.0,99.0 +1981,11,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-4.4,53,98200,697,1402,261,512,883,69,53400,86000,10400,1530,290,7.7,0,0,32.2,77777,9,999999999,69,0.0630,0,88,999.000,999.0,99.0 +1981,11,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-4.4,47,98100,799,1402,267,600,912,76,62400,89900,11000,1750,300,6.7,0,0,32.2,77777,9,999999999,69,0.0630,0,88,999.000,999.0,99.0 +1981,11,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-5.0,42,98100,828,1402,271,629,924,78,65300,91300,11200,1830,300,6.7,0,0,32.2,77777,9,999999999,69,0.0630,0,88,999.000,999.0,99.0 +1981,11,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-4.4,39,98100,783,1402,278,592,880,96,61900,87300,13000,2150,300,5.7,3,0,40.2,77777,9,999999999,69,0.0630,0,88,999.000,999.0,99.0 +1981,11,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-5.0,35,98000,666,1402,282,489,818,96,50000,79100,12200,1890,290,8.8,5,0,40.2,77777,9,999999999,69,0.0630,0,88,999.000,999.0,99.0 +1981,11,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-5.6,35,98000,487,1402,295,233,289,131,24700,27500,15100,2660,290,4.6,8,5,40.2,7620,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1981,11,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-5.0,42,98000,257,1402,287,92,54,82,10000,4300,9200,1920,300,4.6,7,5,40.2,7620,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1981,11,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-5.0,47,98000,32,713,283,17,8,17,1900,400,1900,400,300,4.6,8,6,32.2,7620,9,999999999,80,0.0630,0,88,999.000,999.0,99.0 +1981,11,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-5.0,51,98000,0,0,269,0,0,0,0,0,0,0,280,4.6,7,2,24.1,77777,9,999999999,80,0.0840,0,88,999.000,999.0,99.0 +1981,11,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-5.0,55,98000,0,0,271,0,0,0,0,0,0,0,290,3.6,8,5,24.1,7620,9,999999999,80,0.0840,0,88,999.000,999.0,99.0 +1981,11,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-5.0,57,98000,0,0,269,0,0,0,0,0,0,0,300,4.1,8,5,24.1,7620,9,999999999,80,0.0840,0,88,999.000,999.0,99.0 +1981,11,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-4.4,62,98100,0,0,263,0,0,0,0,0,0,0,300,5.2,4,3,24.1,77777,9,999999999,80,0.0840,0,88,999.000,999.0,99.0 +1981,11,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-4.4,67,98100,0,0,253,0,0,0,0,0,0,0,300,4.1,4,1,24.1,77777,9,999999999,80,0.0840,0,88,999.000,999.0,99.0 +1981,11,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-5.0,72,98200,0,0,242,0,0,0,0,0,0,0,290,3.6,3,0,24.1,77777,9,999999999,80,0.0840,0,88,999.000,999.0,99.0 +1981,11,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-5.0,75,98200,0,0,245,0,0,0,0,0,0,0,330,6.2,5,1,24.1,77777,9,999999999,80,0.0830,0,88,999.000,999.0,99.0 +1981,11,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-5.0,82,98100,0,0,236,0,0,0,0,0,0,0,320,4.6,0,0,24.1,77777,9,999999999,80,0.0830,0,88,999.000,999.0,99.0 +1981,11,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-5.6,81,98100,0,0,234,0,0,0,0,0,0,0,330,4.1,0,0,24.1,77777,9,999999999,80,0.0830,0,88,999.000,999.0,99.0 +1981,11,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-5.6,81,98100,0,0,234,0,0,0,0,0,0,0,320,4.6,0,0,24.1,77777,9,999999999,80,0.0830,0,88,999.000,999.0,99.0 +1981,11,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-5.6,81,98100,0,0,234,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,80,0.0830,0,88,999.000,999.0,99.0 +1981,11,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-5.6,85,98100,0,0,232,0,0,0,0,0,0,0,320,5.2,0,0,19.3,77777,9,999999999,80,0.0830,0,88,999.000,999.0,99.0 +1981,11,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-5.6,85,98100,0,0,236,0,0,0,0,0,0,0,310,4.6,3,1,19.3,77777,9,999999999,80,0.0830,0,88,999.000,999.0,99.0 +1981,11,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-5.6,81,98200,63,993,234,31,104,20,2900,4300,2600,350,310,4.6,0,0,24.1,77777,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1981,11,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-5.6,64,98200,305,1402,246,167,506,56,17100,40000,8300,1010,300,5.7,3,0,24.1,77777,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1981,11,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-5.0,55,98200,526,1402,261,320,596,94,33000,55600,12000,1810,310,3.1,7,1,24.1,77777,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1981,11,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-5.0,47,98200,693,1402,273,456,610,152,46700,59200,17400,3060,300,5.2,7,2,32.2,77777,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1981,11,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-5.6,42,98200,794,1402,284,417,390,195,44100,39700,21600,4420,300,5.7,7,5,32.2,7620,9,999999999,80,0.0940,0,88,999.000,999.0,99.0 +1981,11,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-5.6,36,98100,824,1402,293,551,645,169,57000,64100,19200,3830,300,4.6,7,5,32.2,7620,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1981,11,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-7.8,26,98100,779,1402,289,543,784,103,56300,77500,13100,2230,300,3.6,3,1,32.2,77777,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1981,11,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-8.3,23,98000,663,1402,287,463,788,86,47900,76600,11500,1780,310,5.2,1,0,32.2,77777,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1981,11,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-7.2,25,98000,484,1402,288,311,701,65,31700,64500,9400,1270,310,3.1,0,0,40.2,77777,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1981,11,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-6.7,28,98000,254,1402,284,132,476,44,13500,35100,7000,800,280,3.6,0,0,40.2,77777,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1981,11,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-6.1,34,98000,31,713,276,20,56,14,1800,1500,1700,240,300,2.1,0,0,32.2,77777,9,999999999,89,0.0940,0,88,999.000,999.0,99.0 +1981,11,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-5.0,42,98000,0,0,271,0,0,0,0,0,0,0,320,2.1,0,0,32.2,77777,9,999999999,89,0.0830,0,88,999.000,999.0,99.0 +1981,11,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-5.0,45,98100,0,0,266,0,0,0,0,0,0,0,320,2.1,0,0,32.2,77777,9,999999999,89,0.0830,0,88,999.000,999.0,99.0 +1981,11,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-5.6,45,98100,0,0,264,0,0,0,0,0,0,0,310,2.6,0,0,24.1,77777,9,999999999,89,0.0830,0,88,999.000,999.0,99.0 +1981,11,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-5.0,49,98100,0,0,262,0,0,0,0,0,0,0,330,1.5,0,0,24.1,77777,9,999999999,89,0.0830,0,88,999.000,999.0,99.0 +1981,11,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-5.6,51,98100,0,0,258,0,0,0,0,0,0,0,320,1.5,0,0,24.1,77777,9,999999999,89,0.0830,0,88,999.000,999.0,99.0 +1981,11,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-4.4,57,98100,0,0,257,0,0,0,0,0,0,0,350,2.1,0,0,24.1,77777,9,999999999,89,0.0830,0,88,999.000,999.0,99.0 +1981,11,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-4.4,55,98100,0,0,267,0,0,0,0,0,0,0,0,0.0,7,2,24.1,77777,9,999999999,89,0.0820,0,88,999.000,999.0,99.0 +1981,11,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-4.4,59,98100,0,0,263,0,0,0,0,0,0,0,0,0.0,7,2,24.1,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1981,11,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-3.9,67,98100,0,0,256,0,0,0,0,0,0,0,320,1.5,6,1,24.1,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1981,11,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-3.9,64,98100,0,0,258,0,0,0,0,0,0,0,0,0.0,6,1,24.1,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1981,11,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.9,62,98100,0,0,260,0,0,0,0,0,0,0,0,0.0,5,1,24.1,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1981,11,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-3.9,72,98100,0,0,247,0,0,0,0,0,0,0,0,0.0,3,0,19.3,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1981,11,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-3.9,70,98200,0,0,249,0,0,0,0,0,0,0,0,0.0,3,0,19.3,77777,9,999999999,100,0.0820,0,88,999.000,999.0,99.0 +1981,11,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-3.3,67,98200,60,970,253,32,106,21,2900,4300,2700,370,0,0.0,3,0,24.1,77777,9,999999999,100,0.0850,0,88,999.000,999.0,99.0 +1981,11,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.2,60,98200,301,1403,265,165,515,53,16900,40600,8100,970,0,0.0,3,0,9.7,77777,9,999999999,100,0.0850,0,88,999.000,999.0,99.0 +1981,11,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-3.3,41,98300,521,1403,293,319,481,139,33000,45200,16100,2720,0,0.0,7,3,9.7,77777,9,999999999,110,0.0850,0,88,999.000,999.0,99.0 +1981,11,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-2.8,37,98300,688,1403,311,324,274,189,34800,28300,20800,4190,230,1.0,8,6,9.7,7620,9,999999999,110,0.0850,0,88,999.000,999.0,99.0 +1981,11,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-2.8,34,98200,790,1403,319,417,342,223,44900,36100,24500,5300,190,1.5,9,7,12.9,7620,9,999999999,110,0.0850,0,88,999.000,999.0,99.0 +1981,11,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.7,36,98000,820,1403,335,337,81,289,37000,8200,32100,8970,180,4.1,10,9,16.1,7010,9,999999999,110,0.0850,0,88,999.000,999.0,99.0 +1981,11,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.7,34,98000,776,1403,338,288,165,196,31800,17200,22200,5080,170,2.6,10,9,19.3,3660,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1981,11,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.7,34,97900,660,1403,331,293,98,246,32000,9800,27400,6830,180,3.6,9,8,19.3,3660,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1981,11,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-1.1,35,97900,481,1403,329,215,207,143,22600,19600,15900,2960,160,4.6,8,7,19.3,3050,9,999999999,120,0.0850,0,88,999.000,999.0,99.0 +1981,11,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.1,36,97800,252,1403,317,114,248,68,11600,17600,8400,1260,150,3.6,7,4,24.1,7620,9,999999999,129,0.0850,0,88,999.000,999.0,99.0 +1981,11,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-0.6,37,97800,31,690,320,17,12,16,1800,600,1800,380,140,4.1,8,5,24.1,7620,9,999999999,129,0.0850,0,88,999.000,999.0,99.0 +1981,11,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.1,37,97800,0,0,336,0,0,0,0,0,0,0,170,5.2,10,9,24.1,3050,9,999999999,129,0.0820,0,88,999.000,999.0,99.0 +1981,11,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.1,39,97700,0,0,333,0,0,0,0,0,0,0,150,6.2,10,9,24.1,2740,9,999999999,129,0.0820,0,88,999.000,999.0,99.0 +1981,11,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.0,43,97700,0,0,341,0,0,0,0,0,0,0,170,4.1,10,10,19.3,1220,9,999999999,129,0.0820,0,88,999.000,999.0,99.0 +1981,11,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.7,53,97600,0,0,329,0,0,0,0,0,0,0,170,4.1,10,9,16.1,1070,9,999999999,129,0.0820,0,88,999.000,999.0,99.0 +1981,11,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,3.9,69,97500,0,0,333,0,0,0,0,0,0,0,180,6.7,10,10,16.1,980,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1981,11,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.0,77,97400,0,0,322,0,0,0,0,0,0,0,180,4.6,10,9,12.9,700,9,999999999,120,0.0820,0,88,999.000,999.0,99.0 +1981,11,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,97200,0,0,329,0,0,0,0,0,0,0,190,8.8,10,10,12.9,700,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1981,11,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,97200,0,0,331,0,0,0,0,0,0,0,220,9.8,10,10,11.3,700,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1981,11,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,97300,0,0,335,0,0,0,0,0,0,0,310,5.2,10,10,9.7,340,9,999999999,120,0.0810,0,88,999.000,999.0,99.0 +1981,11,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,97300,0,0,335,0,0,0,0,0,0,0,280,2.6,10,10,11.3,700,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1981,11,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,97300,0,0,336,0,0,0,0,0,0,0,270,2.6,10,10,11.3,150,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1981,11,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,97300,0,0,336,0,0,0,0,0,0,0,310,3.1,10,10,11.3,120,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1981,11,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,97300,0,0,317,0,0,0,0,0,0,0,280,3.1,8,8,12.9,150,9,999999999,110,0.0810,0,88,999.000,999.0,99.0 +1981,11,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,97400,58,947,302,24,49,19,2400,1700,2300,330,280,4.6,4,4,6.4,77777,9,999999999,110,0.0880,0,88,999.000,999.0,99.0 +1981,11,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,97400,296,1403,304,138,341,65,14400,26300,8800,1180,290,5.7,2,2,8.0,77777,9,999999999,100,0.0880,0,88,999.000,999.0,99.0 +1981,11,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,8.3,80,97400,517,1403,312,322,613,94,33200,56900,12100,1800,260,8.2,2,2,11.3,77777,9,999999999,100,0.0880,0,88,999.000,999.0,99.0 +1981,11,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,4.4,55,97400,684,1403,321,464,717,111,48500,70500,14000,2350,290,9.8,4,4,12.9,77777,9,999999999,100,0.0880,0,88,999.000,999.0,99.0 +1981,11,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,97500,786,1403,326,447,385,229,47900,40600,25100,5460,310,11.3,7,7,16.1,1010,9,999999999,100,0.0880,0,88,999.000,999.0,99.0 +1981,11,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,2.8,51,97600,817,1403,326,418,302,241,44900,32000,26200,5890,310,10.3,7,7,32.2,1070,9,999999999,89,0.0880,0,88,999.000,999.0,99.0 +1981,11,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,1.7,45,97600,773,1403,323,402,312,228,43000,32800,24800,5400,330,9.8,6,6,40.2,1070,9,999999999,89,0.0880,0,88,999.000,999.0,99.0 +1981,11,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.1,47,97600,657,1403,312,453,648,145,46100,62300,16800,2850,330,9.3,4,4,40.2,77777,9,999999999,89,0.0880,0,88,999.000,999.0,99.0 +1981,11,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,1.1,45,97700,479,1403,309,259,494,88,26600,45000,11100,1660,340,7.7,2,2,40.2,77777,9,999999999,89,0.0880,0,88,999.000,999.0,99.0 +1981,11,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,1.1,50,97700,250,1403,298,120,362,54,12500,25800,7800,970,330,6.7,1,1,32.2,77777,9,999999999,89,0.0880,0,88,999.000,999.0,99.0 +1981,11,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.1,61,97800,30,690,281,21,56,14,1800,1500,1700,240,300,5.2,0,0,32.2,77777,9,999999999,80,0.0880,0,88,999.000,999.0,99.0 +1981,11,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,1.1,63,97900,0,0,279,0,0,0,0,0,0,0,320,6.2,0,0,32.2,77777,9,999999999,80,0.0810,0,88,999.000,999.0,99.0 +1981,11,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.1,71,97900,0,0,272,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,80,0.0810,0,88,999.000,999.0,99.0 +1981,11,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.6,73,98000,0,0,268,0,0,0,0,0,0,0,320,4.6,0,0,24.1,77777,9,999999999,80,0.0810,0,88,999.000,999.0,99.0 +1981,11,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.6,76,98000,0,0,265,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,89,0.0810,0,88,999.000,999.0,99.0 +1981,11,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,0.6,79,98000,0,0,263,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,89,0.0810,0,88,999.000,999.0,99.0 +1981,11,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.6,82,98000,0,0,261,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,89,0.0810,0,88,999.000,999.0,99.0 +1981,11,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,0.0,82,98000,0,0,259,0,0,0,0,0,0,0,310,4.6,0,0,24.1,77777,9,999999999,89,0.0800,0,88,999.000,999.0,99.0 +1981,11,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,0.0,82,98000,0,0,259,0,0,0,0,0,0,0,320,5.2,0,0,24.1,77777,9,999999999,89,0.0800,0,88,999.000,999.0,99.0 +1981,11,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,0.0,82,98100,0,0,259,0,0,0,0,0,0,0,310,5.2,0,0,24.1,77777,9,999999999,89,0.0800,0,88,999.000,999.0,99.0 +1981,11,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,98000,0,0,256,0,0,0,0,0,0,0,310,5.2,0,0,24.1,77777,9,999999999,89,0.0800,0,88,999.000,999.0,99.0 +1981,11,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,0.0,89,98000,0,0,255,0,0,0,0,0,0,0,330,5.7,0,0,24.1,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1981,11,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-0.6,92,98100,0,0,250,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1981,11,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-0.6,89,98100,0,0,252,0,0,0,0,0,0,0,360,1.5,0,0,24.1,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1981,11,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-0.6,89,98100,55,924,260,32,138,18,2800,5400,2500,310,300,4.1,3,2,24.1,77777,9,999999999,100,0.0460,0,88,999.000,999.0,99.0 +1981,11,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.0,73,98100,292,1404,265,166,577,44,16700,46100,7000,810,20,3.6,5,0,8.0,77777,9,999999999,100,0.0460,0,88,999.000,999.0,99.0 +1981,11,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,0.6,63,98200,512,1404,276,344,728,76,36000,68100,11000,1500,70,3.1,7,0,12.9,77777,9,999999999,100,0.0460,0,88,999.000,999.0,99.0 +1981,11,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,0.6,50,98200,680,1404,290,498,828,93,51300,80500,12100,1890,70,3.1,6,0,16.1,77777,9,999999999,100,0.0460,0,88,999.000,999.0,99.0 +1981,11,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.1,47,98200,782,1404,303,517,729,107,54900,73400,13900,2480,100,3.1,5,1,19.3,77777,9,999999999,100,0.0460,0,88,999.000,999.0,99.0 +1981,11,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,1.1,42,98100,813,1404,310,606,854,107,63000,84700,13700,2380,110,2.6,7,1,24.1,77777,9,999999999,100,0.0460,0,88,999.000,999.0,99.0 +1981,11,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,0.6,35,98100,769,1404,319,516,707,125,54100,70600,15300,2800,130,4.1,7,1,24.1,77777,9,999999999,100,0.0460,0,88,999.000,999.0,99.0 +1981,11,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,0.6,33,98100,655,1404,318,476,852,74,49900,83100,11000,1610,150,2.6,3,0,32.2,77777,9,999999999,100,0.0460,0,88,999.000,999.0,99.0 +1981,11,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,0.6,33,98100,477,1404,324,300,724,51,31500,67100,8600,1090,150,3.6,4,1,32.2,77777,9,999999999,100,0.0460,0,88,999.000,999.0,99.0 +1981,11,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,1.1,38,98000,249,1404,311,137,580,32,13900,44500,6000,640,190,3.1,1,0,32.2,77777,9,999999999,100,0.0460,0,88,999.000,999.0,99.0 +1981,11,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,1.1,42,98000,29,690,304,25,118,12,1800,4800,1600,220,130,3.1,0,0,32.2,77777,9,999999999,100,0.0460,0,88,999.000,999.0,99.0 +1981,11,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,1.7,47,98000,0,0,300,0,0,0,0,0,0,0,140,3.1,0,0,32.2,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1981,11,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,1.7,54,98100,0,0,291,0,0,0,0,0,0,0,140,4.6,0,0,32.2,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1981,11,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,1.7,54,98100,0,0,291,0,0,0,0,0,0,0,150,4.1,0,0,32.2,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1981,11,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,1.7,61,98100,0,0,284,0,0,0,0,0,0,0,140,3.6,0,0,32.2,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1981,11,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.7,63,98200,0,0,282,0,0,0,0,0,0,0,120,4.6,0,0,32.2,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1981,11,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,1.7,61,98200,0,0,284,0,0,0,0,0,0,0,140,4.1,0,0,32.2,77777,9,999999999,100,0.0800,0,88,999.000,999.0,99.0 +1981,11,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.7,68,98100,0,0,277,0,0,0,0,0,0,0,130,2.6,0,0,24.1,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1981,11,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.7,76,98100,0,0,280,0,0,0,0,0,0,0,130,2.6,2,2,24.1,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1981,11,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.7,73,98100,0,0,273,0,0,0,0,0,0,0,130,2.1,0,0,16.1,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1981,11,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.1,79,98100,0,0,266,0,0,0,0,0,0,0,90,3.1,0,0,16.1,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1981,11,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,98200,0,0,262,0,0,0,0,0,0,0,90,3.1,0,0,16.1,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1981,11,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,98200,0,0,262,0,0,0,0,0,0,0,90,4.1,0,0,16.1,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1981,11,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,98200,0,0,260,0,0,0,0,0,0,0,90,4.1,0,0,16.1,77777,9,999999999,100,0.0790,0,88,999.000,999.0,99.0 +1981,11,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,98300,52,901,262,35,196,15,2800,8900,2300,280,80,3.1,0,0,11.3,77777,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1981,11,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,98400,288,1404,274,169,659,32,17700,54100,6600,730,80,4.1,1,1,8.0,77777,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1981,11,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,98400,508,1404,294,313,674,67,32200,62700,9400,1320,70,3.1,2,2,8.0,77777,9,999999999,100,0.0400,0,88,999.000,999.0,99.0 +1981,11,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,6.7,69,98400,676,1404,313,485,856,69,50500,83000,10400,1500,140,3.6,3,2,11.3,77777,9,999999999,110,0.0400,0,88,999.000,999.0,99.0 +1981,11,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,6.7,56,98400,779,1404,328,540,831,76,56200,81700,10800,1710,130,5.2,3,2,12.9,77777,9,999999999,110,0.0400,0,88,999.000,999.0,99.0 +1981,11,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,6.1,48,98200,810,1404,335,551,688,150,57300,68600,17600,3410,130,5.7,5,2,12.9,77777,9,999999999,110,0.0400,0,88,999.000,999.0,99.0 +1981,11,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,6.1,42,98100,766,1404,345,537,816,88,56600,81000,12200,2000,140,4.6,5,2,16.1,77777,9,999999999,110,0.0400,0,88,999.000,999.0,99.0 +1981,11,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,4.4,36,98100,652,1404,355,340,420,143,36100,41600,16700,2900,120,4.1,7,5,19.3,7620,9,999999999,110,0.0400,0,88,999.000,999.0,99.0 +1981,11,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,4.4,36,98100,475,1404,358,218,190,153,23500,17900,17400,3480,120,4.6,9,6,24.1,7620,9,999999999,110,0.0400,0,88,999.000,999.0,99.0 +1981,11,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,5.0,40,98000,247,1404,363,78,49,69,8500,3900,7800,1670,150,5.2,9,8,24.1,7620,9,999999999,120,0.0400,0,88,999.000,999.0,99.0 +1981,11,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,5.6,46,98100,29,667,355,19,11,18,2000,600,2000,420,110,2.1,10,8,24.1,7620,9,999999999,120,0.0400,0,88,999.000,999.0,99.0 +1981,11,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,6.1,50,98200,0,0,353,0,0,0,0,0,0,0,140,3.6,10,8,24.1,7620,9,999999999,120,0.0790,0,88,999.000,999.0,99.0 +1981,11,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.1,58,98100,0,0,342,0,0,0,0,0,0,0,130,3.6,10,8,24.1,7620,9,999999999,129,0.0790,0,88,999.000,999.0,99.0 +1981,11,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.7,62,98100,0,0,326,0,0,0,0,0,0,0,150,3.6,8,4,24.1,77777,9,999999999,150,0.0790,0,88,999.000,999.0,99.0 +1981,11,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.2,64,98100,0,0,321,0,0,0,0,0,0,0,160,3.6,5,2,19.3,77777,9,999999999,160,0.0790,0,88,999.000,999.0,99.0 +1981,11,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.2,62,98000,0,0,319,0,0,0,0,0,0,0,180,4.6,4,1,19.3,77777,9,999999999,170,0.0790,0,88,999.000,999.0,99.0 +1981,11,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.2,62,98100,0,0,323,0,0,0,0,0,0,0,180,4.1,5,2,19.3,77777,9,999999999,189,0.0790,0,88,999.000,999.0,99.0 +1981,11,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.2,64,98100,0,0,321,0,0,0,0,0,0,0,170,3.1,5,2,16.1,77777,9,999999999,200,0.0780,0,88,999.000,999.0,99.0 +1981,11,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,7.8,72,98000,0,0,328,0,0,0,0,0,0,0,190,4.6,8,6,16.1,310,9,999999999,209,0.0780,0,88,999.000,999.0,99.0 +1981,11,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,11.1,83,98000,0,0,363,0,0,0,0,0,0,0,190,2.6,10,10,11.3,210,9,999999999,229,0.0780,0,88,999.000,999.0,99.0 +1981,11,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.2,87,98000,0,0,367,0,0,0,0,0,0,0,200,3.1,10,10,11.3,150,9,999999999,240,0.0780,0,88,999.000,999.0,99.0 +1981,11,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,98000,0,0,371,0,0,0,0,0,0,0,240,2.6,10,10,9.7,120,9,999999999,250,0.0780,0,88,999.000,999.0,99.0 +1981,11,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.0,87,98000,0,0,385,0,0,0,0,0,0,0,210,4.1,10,10,9.7,210,9,999999999,270,0.0780,0,88,999.000,999.0,99.0 +1981,11,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.0,84,98000,0,0,388,0,0,0,0,0,0,0,220,7.2,10,10,9.7,210,9,999999999,279,0.0780,0,88,999.000,999.0,99.0 +1981,11,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,98000,50,878,389,11,0,11,1300,0,1300,410,220,6.2,10,10,9.7,240,9,999999999,279,0.1030,0,88,999.000,999.0,99.0 +1981,11,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,15.6,87,98100,283,1405,389,45,0,45,5200,0,5200,1730,200,8.2,10,10,9.7,210,9,999999999,290,0.1030,0,88,999.000,999.0,99.0 +1981,11,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,15.6,84,98100,504,1405,392,111,3,110,12700,200,12700,4350,220,6.2,10,10,9.7,270,9,999999999,290,0.1030,0,88,999.000,999.0,99.0 +1981,11,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,15.6,78,98100,672,1405,398,171,1,170,19500,100,19500,6920,230,8.2,10,10,12.9,460,9,999999999,300,0.1030,0,88,999.000,999.0,99.0 +1981,11,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,15.6,71,98000,775,1405,407,202,5,199,23300,400,23000,8390,230,6.7,10,10,12.9,7620,9,999999999,300,0.1030,0,88,999.000,999.0,99.0 +1981,11,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,98000,806,1405,401,380,188,271,41200,19600,30000,7160,230,7.7,10,9,24.1,670,9,999999999,300,0.1030,0,88,999.000,999.0,99.0 +1981,11,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,97900,764,1405,412,292,11,286,32600,1100,32000,10430,220,6.7,10,10,24.1,730,9,999999999,309,0.1030,0,88,999.000,999.0,99.0 +1981,11,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,15.0,64,97800,650,1405,412,203,9,199,22900,800,22500,7540,220,6.2,10,10,24.1,2740,9,999999999,309,0.1030,0,88,999.000,999.0,99.0 +1981,11,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,68,97800,473,1405,414,86,6,84,10000,300,9900,3440,220,5.2,10,10,16.1,730,9,999999999,320,0.1030,0,88,999.000,999.0,99.0 +1981,11,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,16.1,68,97800,246,1405,402,58,12,56,6500,300,6500,1950,200,4.1,10,9,24.1,850,9,999999999,320,0.1030,0,88,999.000,999.0,99.0 +1981,11,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,16.7,73,97800,28,667,392,15,3,15,1700,0,1700,500,210,4.1,10,8,19.3,1830,9,999999999,329,0.1030,0,88,999.000,999.0,99.0 +1981,11,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,16.7,76,97800,0,0,408,0,0,0,0,0,0,0,210,5.2,10,10,19.3,1830,9,999999999,329,0.0780,0,88,999.000,999.0,99.0 +1981,11,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,16.7,79,97900,0,0,405,0,0,0,0,0,0,0,210,5.7,10,10,19.3,1520,9,999999999,320,0.0780,0,88,999.000,999.0,99.0 +1981,11,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,97800,0,0,399,0,0,0,0,0,0,0,220,4.1,10,10,16.1,2130,9,999999999,309,0.0780,0,88,999.000,999.0,99.0 +1981,11,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.2,93,97900,0,0,394,0,0,0,0,0,0,0,270,2.6,10,10,12.9,180,9,999999999,300,0.0780,0,88,999.000,999.0,99.0 +1981,11,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,97900,0,0,397,0,0,0,0,0,0,0,220,2.6,10,10,11.3,180,9,999999999,279,0.0780,0,88,999.000,999.0,99.0 +1981,11,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,17.2,90,97900,0,0,397,0,0,0,0,0,0,0,260,2.6,10,10,9.7,180,9,999999999,270,0.0780,0,88,999.000,999.0,99.0 +1981,11,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,17.2,93,97800,0,0,383,0,0,0,0,0,0,0,240,3.1,10,9,9.7,180,9,999999999,259,0.0770,0,88,999.000,999.0,99.0 +1981,11,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,14.4,87,97900,0,0,382,0,0,0,0,0,0,0,290,5.7,10,10,9.7,340,9,999999999,250,0.0770,0,88,999.000,999.0,99.0 +1981,11,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,11.7,84,97900,0,0,331,0,0,0,0,0,0,0,300,6.2,3,3,11.3,77777,9,999999999,240,0.0770,0,88,999.000,999.0,99.0 +1981,11,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,98000,0,0,323,0,0,0,0,0,0,0,310,8.2,3,3,11.3,77777,9,999999999,229,0.0770,0,88,999.000,999.0,99.0 +1981,11,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,9.4,83,98000,0,0,353,0,0,0,0,0,0,0,290,8.2,10,10,11.3,340,9,999999999,209,0.0770,0,88,999.000,999.0,99.0 +1981,11,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,98100,0,0,340,0,0,0,0,0,0,0,310,5.2,9,9,11.3,340,9,999999999,200,0.0770,0,88,999.000,999.0,99.0 +1981,11,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.9,90,98200,0,0,344,0,0,0,0,0,0,0,310,6.2,10,10,9.7,340,9,999999999,189,0.0770,0,88,999.000,999.0,99.0 +1981,11,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,8.3,86,98200,47,878,343,17,0,17,1900,0,1900,580,310,5.2,10,10,12.9,340,9,999999999,189,0.1360,0,88,999.000,999.0,99.0 +1981,11,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.8,86,98300,279,1405,340,67,5,66,7500,200,7500,2310,320,7.2,10,10,19.3,7620,9,999999999,189,0.1360,0,88,999.000,999.0,99.0 +1981,11,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.6,66,98400,500,1405,329,177,47,160,19400,4500,17800,4240,300,6.2,10,8,32.2,7620,9,999999999,189,0.1360,0,88,999.000,999.0,99.0 +1981,11,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.0,40,98500,668,1405,318,349,329,191,37200,33800,21100,4230,290,3.1,10,5,32.2,77777,9,999999999,189,0.1360,0,88,999.000,999.0,99.0 +1981,11,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-2.8,32,98400,771,1405,315,521,616,180,55200,62500,20800,3980,320,6.7,10,4,40.2,77777,9,999999999,189,0.1360,0,88,999.000,999.0,99.0 +1981,11,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-3.9,26,98400,803,1405,322,482,401,250,51400,42400,27100,6110,340,5.2,10,4,40.2,77777,9,999999999,189,0.1360,0,88,999.000,999.0,99.0 +1981,11,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-5.6,21,98300,761,1405,324,462,429,228,49400,45000,24900,5370,300,7.2,10,3,40.2,77777,9,999999999,189,0.1360,0,88,999.000,999.0,99.0 +1981,11,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-6.1,21,98300,648,1405,321,379,417,185,39100,41100,20100,3860,310,5.2,10,3,40.2,77777,9,999999999,189,0.1360,0,88,999.000,999.0,99.0 +1981,11,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-6.1,21,98300,471,1405,321,217,274,124,23000,25700,14400,2490,310,4.6,10,3,40.2,77777,9,999999999,189,0.1360,0,88,999.000,999.0,99.0 +1981,11,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-6.1,23,98300,244,1405,311,108,212,70,11200,14700,8600,1350,310,4.6,8,2,56.3,77777,9,999999999,189,0.1360,0,88,999.000,999.0,99.0 +1981,11,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-6.1,27,98400,28,668,297,14,15,12,1400,600,1400,250,310,4.1,6,1,48.3,77777,9,999999999,189,0.1360,0,88,999.000,999.0,99.0 +1981,11,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-5.0,31,98300,0,0,288,0,0,0,0,0,0,0,310,5.7,0,0,40.2,77777,9,999999999,189,0.0770,0,88,999.000,999.0,99.0 +1981,11,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-3.9,36,98400,0,0,285,0,0,0,0,0,0,0,320,4.1,0,0,40.2,77777,9,999999999,189,0.0770,0,88,999.000,999.0,99.0 +1981,11,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-3.3,41,98400,0,0,281,0,0,0,0,0,0,0,300,3.1,0,0,40.2,77777,9,999999999,189,0.0770,0,88,999.000,999.0,99.0 +1981,11,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-2.8,46,98500,0,0,294,0,0,0,0,0,0,0,300,3.6,7,5,32.2,3960,9,999999999,179,0.0770,0,88,999.000,999.0,99.0 +1981,11,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-2.2,50,98400,0,0,288,0,0,0,0,0,0,0,290,2.1,4,3,32.2,77777,9,999999999,179,0.0770,0,88,999.000,999.0,99.0 +1981,11,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.2,51,98400,0,0,273,0,0,0,0,0,0,0,300,3.6,0,0,32.2,77777,9,999999999,179,0.0770,0,88,999.000,999.0,99.0 +1981,11,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.2,53,98400,0,0,272,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,179,0.0760,0,88,999.000,999.0,99.0 +1981,11,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.8,51,98400,0,0,271,0,0,0,0,0,0,0,320,4.6,0,0,24.1,77777,9,999999999,170,0.0760,0,88,999.000,999.0,99.0 +1981,11,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-2.8,53,98400,0,0,269,0,0,0,0,0,0,0,320,4.1,0,0,24.1,77777,9,999999999,170,0.0760,0,88,999.000,999.0,99.0 +1981,11,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.2,60,98400,0,0,265,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,170,0.0760,0,88,999.000,999.0,99.0 +1981,11,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-2.2,60,98400,0,0,265,0,0,0,0,0,0,0,310,3.1,0,0,24.1,77777,9,999999999,160,0.0760,0,88,999.000,999.0,99.0 +1981,11,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.7,60,98400,0,0,300,0,0,0,0,0,0,0,290,3.6,10,9,24.1,2440,9,999999999,160,0.0760,0,88,999.000,999.0,99.0 +1981,11,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,98400,0,0,287,0,0,0,0,0,0,0,290,4.1,7,6,24.1,2440,9,999999999,160,0.0760,0,88,999.000,999.0,99.0 +1981,11,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.1,60,98500,45,855,292,29,76,21,2700,2400,2500,380,20,2.6,8,7,32.2,2440,9,999999999,160,0.0310,0,88,999.000,999.0,99.0 +1981,11,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.1,54,98500,275,1406,311,72,36,65,7900,2900,7300,1650,340,3.1,10,9,32.2,2440,9,999999999,170,0.0310,0,88,999.000,999.0,99.0 +1981,11,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-0.6,50,98500,496,1406,318,155,92,123,17100,8800,14000,2810,340,2.1,10,9,32.2,2440,9,999999999,179,0.0310,0,88,999.000,999.0,99.0 +1981,11,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.1,41,98500,664,1406,338,217,0,217,24300,0,24300,8060,310,2.1,10,10,24.1,2130,9,999999999,179,0.0310,0,88,999.000,999.0,99.0 +1981,11,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,0.0,43,98500,768,1406,316,467,489,198,49000,49500,21900,4410,340,2.1,9,6,24.1,2290,9,999999999,189,0.0310,0,88,999.000,999.0,99.0 +1981,11,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-0.6,39,98400,800,1406,346,276,2,275,31100,200,31000,10570,280,2.6,10,10,24.1,980,9,999999999,189,0.0310,0,88,999.000,999.0,99.0 +1981,11,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.1,36,98300,758,1406,348,258,11,252,29100,1000,28500,9660,310,2.1,10,10,24.1,2740,9,999999999,200,0.0310,0,88,999.000,999.0,99.0 +1981,11,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.1,36,98300,645,1406,348,179,4,177,20300,300,20200,6950,310,1.5,10,10,24.1,980,9,999999999,200,0.0310,0,88,999.000,999.0,99.0 +1981,11,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-0.6,39,98200,469,1406,346,170,6,168,18700,500,18500,5460,40,1.5,10,10,24.1,980,9,999999999,200,0.0310,0,88,999.000,999.0,99.0 +1981,11,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,0.0,40,98300,243,1406,347,69,5,68,7600,100,7600,2200,290,2.6,10,10,24.1,1160,9,999999999,209,0.0310,0,88,999.000,999.0,99.0 +1981,11,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.6,43,98300,27,668,345,12,0,12,1400,0,1400,420,320,2.1,10,10,19.3,1100,9,999999999,220,0.0310,0,88,999.000,999.0,99.0 +1981,11,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.0,42,98300,0,0,344,0,0,0,0,0,0,0,50,3.1,10,10,19.3,1160,9,999999999,220,0.0760,0,88,999.000,999.0,99.0 +1981,11,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,0.6,43,98200,0,0,345,0,0,0,0,0,0,0,110,2.6,10,10,19.3,1160,9,999999999,220,0.0760,0,88,999.000,999.0,99.0 +1981,11,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.1,49,98300,0,0,340,0,0,0,0,0,0,0,340,1.5,10,10,16.1,2130,9,999999999,229,0.0760,0,88,999.000,999.0,99.0 +1981,11,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.7,51,98200,0,0,341,0,0,0,0,0,0,0,90,2.6,10,10,16.1,2130,9,999999999,229,0.0760,0,88,999.000,999.0,99.0 +1981,11,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.7,51,98200,0,0,341,0,0,0,0,0,0,0,30,2.1,10,10,16.1,2130,9,999999999,240,0.0760,0,88,999.000,999.0,99.0 +1981,11,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.1,83,98200,0,0,333,0,0,0,0,0,0,0,0,0.0,10,10,12.9,1040,9,999999999,240,0.0760,0,88,999.000,999.0,99.0 +1981,11,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,98100,0,0,336,0,0,0,0,0,0,0,70,2.6,10,10,9.7,980,9,999999999,250,0.0750,0,88,999.000,999.0,99.0 +1981,11,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,98100,0,0,334,0,0,0,0,0,0,0,50,2.6,10,10,9.7,910,9,999999999,250,0.0750,0,88,999.000,999.0,99.0 +1981,11,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,98100,0,0,334,0,0,0,0,0,0,0,40,3.6,10,10,9.7,2440,9,999999999,250,0.0750,0,88,999.000,999.0,99.0 +1981,11,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,98000,0,0,334,0,0,0,0,0,0,0,50,3.6,10,10,9.7,980,9,999999999,259,0.0750,0,88,999.000,999.0,99.0 +1981,11,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,98000,0,0,328,0,0,0,0,0,0,0,50,3.1,10,10,9.7,980,9,999999999,259,0.0750,0,88,999.000,999.0,99.0 +1981,11,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,97900,0,0,329,0,0,0,0,0,0,0,60,5.2,10,10,9.7,1160,9,999999999,270,0.0750,0,88,999.000,999.0,99.0 +1981,11,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,4.4,89,98000,0,0,318,0,0,0,0,0,0,0,70,5.7,10,10,8.0,1070,9,999999999,270,0.0750,0,88,999.000,999.0,99.0 +1981,11,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,98000,43,832,319,11,0,11,1300,0,1300,400,80,5.2,10,10,4.8,820,9,999999999,270,0.0660,0,88,999.000,999.0,99.0 +1981,11,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,98000,271,1406,316,44,2,43,5000,0,5000,1650,60,6.2,10,10,3.2,120,9,999999999,270,0.0660,0,88,999.000,999.0,99.0 +1981,11,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,98000,492,1406,317,96,2,95,11100,100,11000,3850,60,5.7,10,10,1.6,120,9,999999999,279,0.0660,0,88,999.000,999.0,99.0 +1981,11,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,98000,660,1406,320,131,1,130,15200,100,15200,5610,80,6.2,10,10,1.6,90,9,999999999,279,0.0660,0,88,999.000,999.0,99.0 +1981,11,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,97800,764,1406,323,157,1,156,18400,100,18300,6930,90,8.2,10,10,3.2,90,9,999999999,279,0.0660,0,88,999.000,999.0,99.0 +1981,11,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,97700,797,1406,323,173,0,173,20200,0,20200,7670,90,6.7,10,10,1.3,90,9,999999999,279,0.0660,0,88,999.000,999.0,99.0 +1981,11,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,97700,756,1406,323,171,1,171,19900,100,19900,7400,90,7.2,10,10,1.6,90,9,999999999,279,0.0660,0,88,999.000,999.0,99.0 +1981,11,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,97700,643,1406,326,135,0,135,15700,0,15700,5700,100,8.2,10,10,4.0,120,9,999999999,279,0.0660,0,88,999.000,999.0,99.0 +1981,11,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,97700,468,1406,326,96,0,96,11000,0,11000,3800,90,7.2,10,10,3.2,120,9,999999999,279,0.0660,0,88,999.000,999.0,99.0 +1981,11,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,97600,242,1406,326,43,1,43,4900,0,4900,1590,90,8.8,10,10,8.0,150,9,999999999,290,0.0660,0,88,999.000,999.0,99.0 +1981,11,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,97700,27,668,323,7,0,7,800,0,800,260,90,8.2,10,10,8.0,150,9,999999999,290,0.0660,0,88,999.000,999.0,99.0 +1981,11,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,97700,0,0,323,0,0,0,0,0,0,0,90,8.2,10,10,11.3,180,9,999999999,290,0.0750,0,88,999.000,999.0,99.0 +1981,11,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,97700,0,0,323,0,0,0,0,0,0,0,90,8.8,10,10,11.3,120,9,999999999,290,0.0750,0,88,999.000,999.0,99.0 +1981,11,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,97700,0,0,317,0,0,0,0,0,0,0,80,9.8,10,10,11.3,120,9,999999999,300,0.0750,0,88,999.000,999.0,99.0 +1981,11,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.7,100,97700,0,0,310,0,0,0,0,0,0,0,90,9.0,10,10,8.0,120,9,999999999,300,0.0750,0,88,999.000,999.0,99.0 +1981,11,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.2,1.8,100,97700,0,0,302,0,0,0,0,0,0,0,90,8.2,10,10,8.0,120,9,999999999,300,0.0750,0,88,999.000,999.0,99.0 +1981,11,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.0,0.0,100,97600,0,0,295,0,0,0,0,0,0,0,90,7.4,10,10,4.8,90,9,999999999,300,0.0750,0,88,999.000,999.0,99.0 +1979,12,1,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.8,-2.0,72,98500,0,0,250,0,0,0,0,0,0,0,270,6.5,3,0,40.2,77777,9,999999999,50,0.0740,0,88,999.000,999.0,99.0 +1979,12,1,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.3,-3.9,72,98600,0,0,244,0,0,0,0,0,0,0,270,5.7,3,0,40.2,77777,9,999999999,50,0.0740,0,88,999.000,999.0,99.0 +1979,12,1,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.5,-5.8,72,98600,0,0,238,0,0,0,0,0,0,0,270,4.9,2,0,40.2,77777,9,999999999,50,0.0740,0,88,999.000,999.0,99.0 +1979,12,1,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-7.8,69,98500,0,0,232,0,0,0,0,0,0,0,300,4.1,2,0,40.2,77777,9,999999999,50,0.0740,0,88,999.000,999.0,99.0 +1979,12,1,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-7.2,72,98500,0,0,232,0,0,0,0,0,0,0,270,4.6,0,0,40.2,77777,9,999999999,50,0.0740,0,88,999.000,999.0,99.0 +1979,12,1,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-6.7,81,98600,0,0,229,0,0,0,0,0,0,0,260,3.6,0,0,40.2,77777,9,999999999,50,0.0740,0,88,999.000,999.0,99.0 +1979,12,1,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-6.7,81,98600,0,0,229,0,0,0,0,0,0,0,270,4.1,1,0,40.2,77777,9,999999999,50,0.0740,0,88,999.000,999.0,99.0 +1979,12,1,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-6.7,78,98600,42,809,231,19,30,16,2000,1200,1900,330,280,3.6,0,0,40.2,77777,9,999999999,50,0.1500,0,88,999.000,999.0,99.0 +1979,12,1,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-6.1,66,98700,269,1407,241,127,372,56,13400,27400,8200,1010,280,3.6,0,0,32.2,77777,9,999999999,50,0.1500,0,88,999.000,999.0,99.0 +1979,12,1,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-5.0,62,98700,490,1407,250,299,612,85,31000,56200,11300,1620,260,3.6,0,0,32.2,77777,9,999999999,60,0.1500,0,88,999.000,999.0,99.0 +1979,12,1,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-4.4,53,98700,659,1407,261,446,722,107,46800,70600,13600,2220,280,4.1,0,0,32.2,77777,9,999999999,60,0.1500,0,88,999.000,999.0,99.0 +1979,12,1,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-5.6,42,98700,763,1407,268,539,770,119,56800,76900,15000,2670,250,4.1,0,0,40.2,77777,9,999999999,60,0.1500,0,88,999.000,999.0,99.0 +1979,12,1,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-6.1,37,98600,796,1407,272,571,787,123,60300,79000,15400,2830,250,4.1,0,0,40.2,77777,9,999999999,60,0.1500,0,88,999.000,999.0,99.0 +1979,12,1,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-6.1,32,98500,755,1407,281,535,771,119,56300,76900,14900,2650,260,2.6,0,0,48.3,77777,9,999999999,60,0.1500,0,88,999.000,999.0,99.0 +1979,12,1,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-8.3,26,98400,643,1407,281,434,714,105,45300,69500,13400,2160,270,4.1,0,0,48.3,77777,9,999999999,60,0.1500,0,88,999.000,999.0,99.0 +1979,12,1,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-10.0,22,98400,467,1407,281,282,594,82,29000,53900,11000,1550,250,3.6,0,0,48.3,77777,9,999999999,60,0.1500,0,88,999.000,999.0,99.0 +1979,12,1,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-9.4,25,98500,242,1407,277,111,334,52,11500,23300,7500,930,250,3.6,0,0,48.3,77777,9,999999999,69,0.1500,0,88,999.000,999.0,99.0 +1979,12,1,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-10.0,26,98500,27,645,270,14,17,12,1400,600,1400,250,260,4.1,0,0,48.3,77777,9,999999999,69,0.1500,0,88,999.000,999.0,99.0 +1979,12,1,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-8.9,35,98500,0,0,261,0,0,0,0,0,0,0,260,4.1,0,0,48.3,77777,9,999999999,69,0.0740,0,88,999.000,999.0,99.0 +1979,12,1,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-7.8,40,98600,0,0,260,0,0,0,0,0,0,0,280,4.1,0,0,48.3,77777,9,999999999,69,0.0740,0,88,999.000,999.0,99.0 +1979,12,1,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-7.8,41,98700,0,0,257,0,0,0,0,0,0,0,280,4.6,0,0,48.3,77777,9,999999999,69,0.0740,0,88,999.000,999.0,99.0 +1979,12,1,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-7.2,45,98700,0,0,256,0,0,0,0,0,0,0,270,4.6,0,0,48.3,77777,9,999999999,69,0.0740,0,88,999.000,999.0,99.0 +1979,12,1,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.7,48,98700,0,0,254,0,0,0,0,0,0,0,270,4.6,0,0,48.3,77777,9,999999999,69,0.0740,0,88,999.000,999.0,99.0 +1979,12,1,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-6.7,50,98800,0,0,252,0,0,0,0,0,0,0,280,4.6,0,0,48.3,77777,9,999999999,69,0.0740,0,88,999.000,999.0,99.0 +1979,12,2,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.7,48,98700,0,0,254,0,0,0,0,0,0,0,290,6.2,0,0,40.2,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1979,12,2,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-6.7,50,98700,0,0,252,0,0,0,0,0,0,0,290,6.7,0,0,40.2,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1979,12,2,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.7,52,98800,0,0,250,0,0,0,0,0,0,0,310,5.7,0,0,40.2,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1979,12,2,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-6.1,59,98900,0,0,247,0,0,0,0,0,0,0,330,6.2,0,0,40.2,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1979,12,2,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-5.0,69,99000,0,0,244,0,0,0,0,0,0,0,320,7.2,0,0,40.2,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1979,12,2,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-6.7,66,99000,0,0,239,0,0,0,0,0,0,0,320,6.7,0,0,40.2,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1979,12,2,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-8.3,63,99100,0,0,233,0,0,0,0,0,0,0,330,7.7,0,0,40.2,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1979,12,2,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-8.9,63,99100,39,786,235,26,126,13,2100,5400,1800,240,320,9.3,1,1,40.2,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1979,12,2,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-8.9,56,99200,265,1407,241,141,562,34,14500,44000,6100,680,330,8.8,1,1,40.2,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1979,12,2,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-9.4,48,99300,486,1407,247,296,648,71,31100,59900,10300,1390,330,7.2,1,1,40.2,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1979,12,2,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-10.0,42,99300,655,1407,245,477,898,57,50100,86900,9500,1380,320,7.7,0,0,40.2,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1979,12,2,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-10.0,37,99300,760,1407,251,555,885,75,57900,86800,10900,1670,340,6.7,2,0,40.2,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1979,12,2,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-10.0,35,99300,793,1407,255,597,908,82,62100,89300,11500,1770,350,6.7,3,0,40.2,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1979,12,2,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-10.0,33,99200,752,1407,257,566,883,91,59300,87300,12500,2010,350,6.2,4,0,40.2,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1979,12,2,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-10.0,31,99200,641,1407,262,465,859,71,49000,83600,10800,1550,340,5.7,3,0,40.2,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1979,12,2,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-10.0,31,99200,466,1407,262,314,768,56,32500,70400,9000,1150,300,4.1,3,0,40.2,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1979,12,2,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-10.6,33,99300,241,1407,255,133,567,34,13400,42700,6000,660,310,5.7,2,0,40.2,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1979,12,2,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-11.7,35,99400,26,645,246,24,100,12,1800,3200,1600,210,310,6.2,2,0,40.2,77777,9,999999999,60,0.0470,0,88,999.000,999.0,99.0 +1979,12,2,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-11.7,38,99400,0,0,242,0,0,0,0,0,0,0,320,5.7,2,0,40.2,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1979,12,2,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-11.7,42,99400,0,0,238,0,0,0,0,0,0,0,340,5.2,2,0,40.2,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1979,12,2,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-11.1,45,99500,0,0,236,0,0,0,0,0,0,0,330,3.1,3,0,40.2,77777,9,999999999,60,0.0730,0,88,999.000,999.0,99.0 +1979,12,2,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-10.6,49,99500,0,0,235,0,0,0,0,0,0,0,340,3.6,2,0,40.2,77777,9,999999999,50,0.0730,0,88,999.000,999.0,99.0 +1979,12,2,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-10.6,49,99600,0,0,235,0,0,0,0,0,0,0,60,3.1,1,0,40.2,77777,9,999999999,50,0.0730,0,88,999.000,999.0,99.0 +1979,12,2,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-11.7,42,99600,0,0,238,0,0,0,0,0,0,0,60,5.2,0,0,40.2,77777,9,999999999,50,0.0730,0,88,999.000,999.0,99.0 +1979,12,3,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-11.1,43,99600,0,0,238,0,0,0,0,0,0,0,70,4.1,1,0,40.2,77777,9,999999999,40,0.0720,0,88,999.000,999.0,99.0 +1979,12,3,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-11.1,47,99600,0,0,235,0,0,0,0,0,0,0,50,4.1,1,0,40.2,77777,9,999999999,40,0.0720,0,88,999.000,999.0,99.0 +1979,12,3,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-11.1,49,99500,0,0,233,0,0,0,0,0,0,0,80,5.2,2,0,40.2,77777,9,999999999,40,0.0720,0,88,999.000,999.0,99.0 +1979,12,3,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-11.1,53,99600,0,0,229,0,0,0,0,0,0,0,90,4.6,1,0,40.2,77777,9,999999999,40,0.0720,0,88,999.000,999.0,99.0 +1979,12,3,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-11.1,55,99600,0,0,227,0,0,0,0,0,0,0,60,4.1,1,0,40.2,77777,9,999999999,30,0.0720,0,88,999.000,999.0,99.0 +1979,12,3,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-11.1,55,99600,0,0,227,0,0,0,0,0,0,0,50,4.1,1,0,40.2,77777,9,999999999,30,0.0720,0,88,999.000,999.0,99.0 +1979,12,3,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-11.1,55,99600,0,0,231,0,0,0,0,0,0,0,80,5.2,4,1,40.2,77777,9,999999999,30,0.0720,0,88,999.000,999.0,99.0 +1979,12,3,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-11.7,55,99600,37,786,229,24,87,14,2000,3100,1800,240,90,4.1,4,1,40.2,77777,9,999999999,30,0.0540,0,88,999.000,999.0,99.0 +1979,12,3,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-12.2,43,99700,261,1408,241,131,394,58,13300,28900,7900,1000,90,7.7,9,2,40.2,77777,9,999999999,30,0.0540,0,88,999.000,999.0,99.0 +1979,12,3,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-12.2,40,99800,483,1408,251,253,375,124,26300,34500,14400,2380,90,5.2,10,5,40.2,77777,9,999999999,30,0.0540,0,88,999.000,999.0,99.0 +1979,12,3,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-11.7,37,99900,652,1408,254,379,487,153,40100,48200,17700,3130,90,3.6,10,3,40.2,77777,9,999999999,40,0.0540,0,88,999.000,999.0,99.0 +1979,12,3,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-11.1,34,99800,757,1408,258,521,699,143,54200,69100,16900,3090,90,4.1,10,2,40.2,77777,9,999999999,40,0.0540,0,88,999.000,999.0,99.0 +1979,12,3,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-11.1,30,99700,790,1408,265,535,671,157,55600,66500,18100,3460,80,2.6,10,2,40.2,77777,9,999999999,40,0.0540,0,88,999.000,999.0,99.0 +1979,12,3,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-11.7,27,99600,750,1408,268,523,666,166,53700,65200,18900,3470,120,3.6,9,2,40.2,77777,9,999999999,40,0.0540,0,88,999.000,999.0,99.0 +1979,12,3,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-12.2,26,99400,639,1408,268,439,689,124,45300,66400,15000,2470,90,3.6,8,2,40.2,77777,9,999999999,40,0.0540,0,88,999.000,999.0,99.0 +1979,12,3,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-12.2,25,99400,465,1408,267,293,653,75,30400,59400,10700,1440,110,4.1,7,1,40.2,77777,9,999999999,40,0.0540,0,88,999.000,999.0,99.0 +1979,12,3,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-12.2,27,99400,240,1408,257,129,529,38,12900,39500,6200,690,110,3.6,3,0,40.2,77777,9,999999999,50,0.0540,0,88,999.000,999.0,99.0 +1979,12,3,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-12.2,29,99400,26,645,253,22,89,12,1700,2800,1600,210,160,2.6,1,0,40.2,77777,9,999999999,50,0.0540,0,88,999.000,999.0,99.0 +1979,12,3,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-12.2,31,99400,0,0,249,0,0,0,0,0,0,0,100,2.6,0,0,24.1,77777,9,999999999,50,0.0720,0,88,999.000,999.0,99.0 +1979,12,3,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-12.2,33,99400,0,0,247,0,0,0,0,0,0,0,360,1.5,0,0,24.1,77777,9,999999999,50,0.0720,0,88,999.000,999.0,99.0 +1979,12,3,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-11.7,34,99400,0,0,248,0,0,0,0,0,0,0,110,2.6,0,0,24.1,77777,9,999999999,50,0.0720,0,88,999.000,999.0,99.0 +1979,12,3,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-11.7,37,99300,0,0,244,0,0,0,0,0,0,0,160,2.1,0,0,24.1,77777,9,999999999,50,0.0720,0,88,999.000,999.0,99.0 +1979,12,3,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-11.1,38,99400,0,0,244,0,0,0,0,0,0,0,150,1.5,0,0,24.1,77777,9,999999999,50,0.0720,0,88,999.000,999.0,99.0 +1979,12,3,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-11.1,38,99300,0,0,244,0,0,0,0,0,0,0,150,2.1,0,0,24.1,77777,9,999999999,50,0.0720,0,88,999.000,999.0,99.0 +1979,12,4,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-10.6,44,99200,0,0,241,0,0,0,0,0,0,0,170,2.1,0,0,24.1,77777,9,999999999,60,0.0710,0,88,999.000,999.0,99.0 +1979,12,4,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-9.4,56,99200,0,0,234,0,0,0,0,0,0,0,270,2.6,0,0,24.1,77777,9,999999999,60,0.0710,0,88,999.000,999.0,99.0 +1979,12,4,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-8.3,66,99100,0,0,231,0,0,0,0,0,0,0,290,2.1,0,0,24.1,77777,9,999999999,60,0.0710,0,88,999.000,999.0,99.0 +1979,12,4,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-8.9,61,99100,0,0,233,0,0,0,0,0,0,0,290,2.6,0,0,24.1,77777,9,999999999,60,0.0710,0,88,999.000,999.0,99.0 +1979,12,4,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-8.9,63,99100,0,0,231,0,0,0,0,0,0,0,270,3.1,0,0,24.1,77777,9,999999999,60,0.0710,0,88,999.000,999.0,99.0 +1979,12,4,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.8,-8.9,63,99100,0,0,231,0,0,0,0,0,0,0,290,3.1,0,0,24.1,77777,9,999999999,60,0.0710,0,88,999.000,999.0,99.0 +1979,12,4,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-8.9,66,99100,0,0,229,0,0,0,0,0,0,0,300,3.1,1,0,24.1,77777,9,999999999,60,0.0710,0,88,999.000,999.0,99.0 +1979,12,4,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-8.9,66,99100,35,763,229,27,151,11,2000,6400,1600,210,290,3.1,1,0,24.1,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1979,12,4,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-8.3,54,99000,258,1408,246,132,518,36,13400,39900,6000,700,290,5.2,1,1,24.1,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1979,12,4,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-8.9,39,99000,479,1408,254,323,822,42,34100,75900,8200,1050,300,4.1,1,0,24.1,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1979,12,4,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-8.9,32,99000,648,1408,265,469,901,53,49500,87100,9200,1330,320,5.2,1,0,24.1,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1979,12,4,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-8.9,26,99000,754,1408,278,570,954,56,59900,93700,9600,1480,320,5.2,0,0,32.2,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1979,12,4,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-9.4,23,98800,788,1408,281,599,961,58,62900,94700,9700,1540,310,5.2,0,0,32.2,77777,9,999999999,60,0.0340,0,88,999.000,999.0,99.0 +1979,12,4,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-10.0,20,98700,748,1408,285,565,952,56,59400,93400,9600,1470,280,5.2,0,0,32.2,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1979,12,4,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-10.0,20,98700,638,1408,288,465,910,49,48900,87800,8900,1270,290,4.6,0,0,32.2,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1979,12,4,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-10.0,19,98600,464,1408,290,315,828,39,33200,76000,8000,1000,280,4.1,0,0,32.2,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1979,12,4,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-9.4,21,98600,240,1408,286,136,635,27,14300,49500,5900,630,290,2.6,0,0,32.2,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1979,12,4,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-8.3,26,98600,26,645,281,25,133,10,1700,5300,1400,190,290,2.1,0,0,32.2,77777,9,999999999,69,0.0340,0,88,999.000,999.0,99.0 +1979,12,4,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-10.6,25,98600,0,0,269,0,0,0,0,0,0,0,310,2.1,0,0,32.2,77777,9,999999999,69,0.0710,0,88,999.000,999.0,99.0 +1979,12,4,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-7.2,37,98500,0,0,267,0,0,0,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,69,0.0710,0,88,999.000,999.0,99.0 +1979,12,4,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-6.1,45,98500,0,0,261,0,0,0,0,0,0,0,300,2.1,0,0,24.1,77777,9,999999999,69,0.0710,0,88,999.000,999.0,99.0 +1979,12,4,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-6.1,45,98500,0,0,261,0,0,0,0,0,0,0,260,3.1,0,0,24.1,77777,9,999999999,69,0.0710,0,88,999.000,999.0,99.0 +1979,12,4,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.1,47,98500,0,0,259,0,0,0,0,0,0,0,250,3.6,0,0,24.1,77777,9,999999999,69,0.0710,0,88,999.000,999.0,99.0 +1979,12,4,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.7,45,98400,0,0,258,0,0,0,0,0,0,0,270,3.1,0,0,24.1,77777,9,999999999,69,0.0710,0,88,999.000,999.0,99.0 +1979,12,5,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.1,50,98400,0,0,255,0,0,0,0,0,0,0,280,4.1,0,0,24.1,77777,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1979,12,5,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-6.7,50,98300,0,0,252,0,0,0,0,0,0,0,270,3.1,0,0,24.1,77777,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1979,12,5,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.7,52,98300,0,0,250,0,0,0,0,0,0,0,280,3.1,0,0,24.1,77777,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1979,12,5,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.7,52,98200,0,0,250,0,0,0,0,0,0,0,280,3.6,0,0,16.1,77777,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1979,12,5,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.7,54,98200,0,0,248,0,0,0,0,0,0,0,270,3.6,0,0,16.1,77777,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1979,12,5,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.7,54,98100,0,0,248,0,0,0,0,0,0,0,280,3.1,0,0,16.1,77777,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1979,12,5,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-6.7,57,98100,0,0,246,0,0,0,0,0,0,0,280,3.1,0,0,16.1,77777,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1979,12,5,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-6.7,59,98100,34,740,245,19,51,14,1800,1400,1700,240,260,2.1,0,0,12.9,77777,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1979,12,5,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-5.0,47,98100,254,1409,265,127,456,45,13100,33500,7000,810,210,1.5,0,0,12.9,77777,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1979,12,5,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-3.9,42,98100,475,1409,276,301,692,66,30800,63200,9400,1260,200,2.1,0,0,12.9,77777,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1979,12,5,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-4.4,34,98100,645,1409,287,448,785,87,46300,75800,11500,1750,200,2.1,1,0,12.9,77777,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1979,12,5,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-4.4,30,98000,751,1409,294,545,835,98,56700,82200,12800,2090,200,3.6,1,0,12.9,77777,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1979,12,5,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-4.4,26,97900,785,1409,309,551,801,102,57400,79200,13100,2230,210,4.1,2,1,19.3,77777,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1979,12,5,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-4.4,23,97800,746,1409,320,502,678,141,52200,66900,16600,3030,240,3.6,3,2,24.1,77777,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1979,12,5,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-6.7,19,97700,636,1409,323,394,532,152,41400,52400,17700,3080,170,4.1,4,3,32.2,77777,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1979,12,5,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,-7.2,20,97600,463,1409,325,204,220,131,21600,20500,14800,2670,190,5.2,7,6,32.2,7620,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1979,12,5,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-6.1,24,97600,239,1409,314,105,168,76,10900,11500,8900,1510,180,3.1,6,4,32.2,7620,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1979,12,5,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-5.6,28,97600,26,646,316,13,5,13,1500,300,1400,320,180,3.6,7,7,32.2,7620,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1979,12,5,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-6.1,29,97600,0,0,307,0,0,0,0,0,0,0,180,3.6,7,6,32.2,7620,9,999999999,69,0.0700,0,88,999.000,999.0,99.0 +1979,12,5,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-5.6,30,97600,0,0,308,0,0,0,0,0,0,0,180,3.1,6,6,24.1,7620,9,999999999,89,0.0700,0,88,999.000,999.0,99.0 +1979,12,5,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-5.6,31,97600,0,0,314,0,0,0,0,0,0,0,160,2.1,9,8,16.1,7620,9,999999999,100,0.0700,0,88,999.000,999.0,99.0 +1979,12,5,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-4.4,36,97600,0,0,305,0,0,0,0,0,0,0,160,2.1,8,7,24.1,7620,9,999999999,120,0.0700,0,88,999.000,999.0,99.0 +1979,12,5,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-3.3,41,97500,0,0,309,0,0,0,0,0,0,0,140,2.6,8,8,24.1,7620,9,999999999,139,0.0700,0,88,999.000,999.0,99.0 +1979,12,5,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-2.8,41,97500,0,0,319,0,0,0,0,0,0,0,150,2.1,10,9,24.1,3660,9,999999999,160,0.0700,0,88,999.000,999.0,99.0 +1979,12,6,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-3.3,38,97500,0,0,330,0,0,0,0,0,0,0,170,2.1,10,10,24.1,3050,9,999999999,179,0.0690,0,88,999.000,999.0,99.0 +1979,12,6,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.7,44,97500,0,0,329,0,0,0,0,0,0,0,150,2.1,10,10,19.3,3050,9,999999999,189,0.0690,0,88,999.000,999.0,99.0 +1979,12,6,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-0.6,52,97400,0,0,325,0,0,0,0,0,0,0,160,1.5,10,10,19.3,3050,9,999999999,209,0.0690,0,88,999.000,999.0,99.0 +1979,12,6,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,2.8,66,97400,0,0,329,0,0,0,0,0,0,0,160,1.5,10,10,12.9,460,9,999999999,229,0.0690,0,88,999.000,999.0,99.0 +1979,12,6,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,97300,0,0,329,0,0,0,0,0,0,0,140,2.1,10,10,12.9,2440,9,999999999,250,0.0690,0,88,999.000,999.0,99.0 +1979,12,6,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.6,83,97300,0,0,329,0,0,0,0,0,0,0,190,3.1,10,10,11.3,2130,9,999999999,259,0.0690,0,88,999.000,999.0,99.0 +1979,12,6,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,97300,0,0,336,0,0,0,0,0,0,0,180,2.6,10,10,8.0,2130,9,999999999,279,0.0690,0,88,999.000,999.0,99.0 +1979,12,6,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.9,100,97300,32,716,336,7,1,7,800,0,800,270,140,1.5,10,10,3.2,1220,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1979,12,6,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,10.0,100,97200,250,1409,343,21,4,21,2600,0,2600,870,140,2.1,10,10,3.2,1220,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1979,12,6,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.6,96,97200,472,1409,349,66,8,63,7800,400,7700,2700,110,3.1,10,10,3.2,2130,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1979,12,6,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.6,96,97200,642,1409,349,109,1,108,12800,100,12800,4770,100,3.6,10,10,2.4,2130,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1979,12,6,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.1,93,97000,748,1409,355,116,8,112,13900,500,13700,5230,110,3.1,10,10,1.6,120,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1979,12,6,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,96,96900,783,1409,359,134,7,130,16000,500,15700,6040,100,3.1,10,10,1.6,90,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1979,12,6,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.8,100,96800,744,1409,360,131,1,130,15500,100,15400,5910,130,1.5,10,10,1.6,90,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1979,12,6,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,96,96900,635,1409,362,128,4,126,14900,300,14800,5370,240,1.5,10,10,1.6,90,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1979,12,6,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,96900,462,1409,363,78,0,78,9100,0,9100,3210,140,2.1,10,10,2.4,90,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1979,12,6,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,96900,239,1409,363,59,0,59,6600,0,6600,1990,210,2.1,10,10,2.4,60,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1979,12,6,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,13.3,100,96900,26,646,363,15,0,15,1700,0,1700,500,240,3.1,10,10,1.6,90,9,999999999,279,0.1530,0,88,999.000,999.0,99.0 +1979,12,6,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.9,100,96900,0,0,366,0,0,0,0,0,0,0,260,3.1,10,10,3.2,90,9,999999999,279,0.0690,0,88,999.000,999.0,99.0 +1979,12,6,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.8,100,97000,0,0,350,0,0,0,0,0,0,0,260,3.1,10,9,4.8,150,9,999999999,259,0.0690,0,88,999.000,999.0,99.0 +1979,12,6,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.8,100,97000,0,0,360,0,0,0,0,0,0,0,260,3.6,10,10,4.8,150,9,999999999,240,0.0690,0,88,999.000,999.0,99.0 +1979,12,6,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,96,97100,0,0,359,0,0,0,0,0,0,0,310,4.6,10,10,6.4,180,9,999999999,220,0.0690,0,88,999.000,999.0,99.0 +1979,12,6,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.7,100,97100,0,0,353,0,0,0,0,0,0,0,310,2.6,10,10,8.0,580,9,999999999,200,0.0690,0,88,999.000,999.0,99.0 +1979,12,6,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,97200,0,0,348,0,0,0,0,0,0,0,310,5.2,10,10,9.7,340,9,999999999,179,0.0690,0,88,999.000,999.0,99.0 +1979,12,7,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.8,89,97300,0,0,337,0,0,0,0,0,0,0,320,5.2,10,10,11.3,550,9,999999999,160,0.0680,0,88,999.000,999.0,99.0 +1979,12,7,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,97300,0,0,284,0,0,0,0,0,0,0,330,2.6,0,0,16.1,77777,9,999999999,150,0.0680,0,88,999.000,999.0,99.0 +1979,12,7,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.6,93,97300,0,0,279,0,0,0,0,0,0,0,320,2.1,0,0,16.1,77777,9,999999999,129,0.0680,0,88,999.000,999.0,99.0 +1979,12,7,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,97400,0,0,274,0,0,0,0,0,0,0,310,2.6,0,0,11.3,77777,9,999999999,110,0.0680,0,88,999.000,999.0,99.0 +1979,12,7,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,4.4,96,97400,0,0,271,0,0,0,0,0,0,0,300,3.1,0,0,11.3,77777,9,999999999,89,0.0680,0,88,999.000,999.0,99.0 +1979,12,7,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,3.3,96,97500,0,0,266,0,0,0,0,0,0,0,310,5.2,0,0,11.3,77777,9,999999999,69,0.0680,0,88,999.000,999.0,99.0 +1979,12,7,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,2.8,100,97600,0,0,261,0,0,0,0,0,0,0,300,5.2,0,0,11.3,77777,9,999999999,50,0.0680,0,88,999.000,999.0,99.0 +1979,12,7,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,1.1,96,97700,30,693,256,16,43,12,1500,1200,1500,200,310,5.2,0,0,11.3,77777,9,999999999,50,0.1000,0,88,999.000,999.0,99.0 +1979,12,7,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.7,92,97800,247,1409,260,123,449,44,12600,32600,6900,790,290,4.1,0,0,11.3,77777,9,999999999,60,0.1000,0,88,999.000,999.0,99.0 +1979,12,7,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,76,97900,468,1409,276,295,687,66,30200,62500,9400,1250,300,5.2,0,0,12.9,77777,9,999999999,60,0.1000,0,88,999.000,999.0,99.0 +1979,12,7,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.6,56,97900,639,1409,283,445,796,82,46200,76900,11200,1680,300,5.7,0,0,32.2,77777,9,999999999,60,0.1000,0,88,999.000,999.0,99.0 +1979,12,7,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.1,41,97900,745,1409,293,539,839,92,56300,82700,12400,2000,300,6.2,0,0,48.3,77777,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1979,12,7,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-3.3,33,97900,781,1409,295,571,854,96,59900,84600,12900,2140,310,5.7,0,0,48.3,77777,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1979,12,7,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-4.4,28,97800,743,1409,298,539,843,92,56400,83100,12400,2000,310,5.2,0,0,48.3,77777,9,999999999,69,0.1000,0,88,999.000,999.0,99.0 +1979,12,7,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-4.4,26,97800,634,1409,303,438,785,82,45300,75800,11100,1670,310,5.2,0,0,48.3,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1979,12,7,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-3.9,27,97900,462,1409,303,290,678,65,29500,61500,9200,1240,230,5.2,0,0,48.3,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1979,12,7,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-3.3,29,98000,239,1409,301,118,435,43,12000,31100,6700,770,270,3.1,0,0,48.3,77777,9,999999999,80,0.1000,0,88,999.000,999.0,99.0 +1979,12,7,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-2.8,35,98000,26,646,293,17,42,13,1600,1100,1600,220,220,2.6,0,0,48.3,77777,9,999999999,89,0.1000,0,88,999.000,999.0,99.0 +1979,12,7,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-3.3,37,98100,0,0,288,0,0,0,0,0,0,0,250,3.6,0,0,32.2,77777,9,999999999,89,0.0680,0,88,999.000,999.0,99.0 +1979,12,7,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-2.8,41,98200,0,0,284,0,0,0,0,0,0,0,260,4.1,0,0,32.2,77777,9,999999999,89,0.0680,0,88,999.000,999.0,99.0 +1979,12,7,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.7,50,98200,0,0,278,0,0,0,0,0,0,0,270,4.1,0,0,32.2,77777,9,999999999,89,0.0680,0,88,999.000,999.0,99.0 +1979,12,7,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.7,52,98300,0,0,276,0,0,0,0,0,0,0,270,4.1,0,0,32.2,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1979,12,7,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.1,58,98400,0,0,273,0,0,0,0,0,0,0,280,3.1,0,0,32.2,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1979,12,7,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.1,60,98400,0,0,270,0,0,0,0,0,0,0,290,3.6,0,0,32.2,77777,9,999999999,80,0.0680,0,88,999.000,999.0,99.0 +1979,12,8,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,98400,0,0,268,0,0,0,0,0,0,0,280,4.6,0,0,32.2,77777,9,999999999,80,0.0670,0,88,999.000,999.0,99.0 +1979,12,8,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.1,63,98400,0,0,268,0,0,0,0,0,0,0,290,3.6,0,0,32.2,77777,9,999999999,69,0.0670,0,88,999.000,999.0,99.0 +1979,12,8,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.7,58,98400,0,0,270,0,0,0,0,0,0,0,300,4.1,0,0,32.2,77777,9,999999999,69,0.0670,0,88,999.000,999.0,99.0 +1979,12,8,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.7,58,98500,0,0,270,0,0,0,0,0,0,0,270,3.1,0,0,32.2,77777,9,999999999,69,0.0670,0,88,999.000,999.0,99.0 +1979,12,8,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.7,62,98500,0,0,265,0,0,0,0,0,0,0,290,4.1,0,0,32.2,77777,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1979,12,8,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.7,60,98700,0,0,268,0,0,0,0,0,0,0,310,4.6,0,0,32.2,77777,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1979,12,8,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.7,62,98700,0,0,265,0,0,0,0,0,0,0,310,4.6,0,0,32.2,77777,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1979,12,8,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,98800,28,693,263,17,47,12,1500,1200,1500,200,310,6.2,0,0,40.2,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1979,12,8,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.8,51,98900,243,1410,271,121,455,43,12500,32900,6800,780,320,7.7,0,0,40.2,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1979,12,8,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-2.2,48,98900,465,1410,278,295,697,64,30300,63400,9300,1230,320,10.8,0,0,48.3,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1979,12,8,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.7,44,99000,636,1410,285,445,804,80,46300,77700,11100,1650,310,6.2,0,0,48.3,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1979,12,8,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-2.8,37,99000,743,1410,291,541,852,90,56700,84100,12300,1970,340,8.2,0,0,48.3,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1979,12,8,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-3.3,35,98900,779,1410,290,574,856,98,59900,84700,13000,2160,320,7.7,1,0,56.3,77777,9,999999999,60,0.0950,0,88,999.000,999.0,99.0 +1979,12,8,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-4.4,30,98900,741,1410,294,543,847,95,56600,83300,12600,2030,340,8.2,1,0,56.3,77777,9,999999999,50,0.0950,0,88,999.000,999.0,99.0 +1979,12,8,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-5.0,29,98900,633,1410,293,446,808,80,46300,78000,11100,1650,310,8.8,0,0,56.3,77777,9,999999999,50,0.0950,0,88,999.000,999.0,99.0 +1979,12,8,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-5.0,29,98900,462,1410,293,294,689,67,30800,62800,10100,1300,330,6.7,1,0,56.3,77777,9,999999999,50,0.0950,0,88,999.000,999.0,99.0 +1979,12,8,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-4.4,34,98900,239,1410,287,120,443,44,12200,31700,6800,790,330,5.2,1,0,56.3,77777,9,999999999,50,0.0950,0,88,999.000,999.0,99.0 +1979,12,8,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-5.6,37,99000,26,646,274,18,47,13,1600,1200,1600,220,320,5.2,0,0,48.3,77777,9,999999999,50,0.0950,0,88,999.000,999.0,99.0 +1979,12,8,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-6.7,37,99000,0,0,269,0,0,0,0,0,0,0,310,6.7,0,0,48.3,77777,9,999999999,50,0.0670,0,88,999.000,999.0,99.0 +1979,12,8,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-6.7,40,99100,0,0,265,0,0,0,0,0,0,0,310,5.7,0,0,48.3,77777,9,999999999,50,0.0670,0,88,999.000,999.0,99.0 +1979,12,8,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-6.7,41,99100,0,0,263,0,0,0,0,0,0,0,320,6.7,0,0,48.3,77777,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1979,12,8,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-6.7,45,99100,0,0,258,0,0,0,0,0,0,0,310,6.7,0,0,48.3,77777,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1979,12,8,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-6.7,48,99100,0,0,254,0,0,0,0,0,0,0,330,5.2,0,0,48.3,77777,9,999999999,60,0.0670,0,88,999.000,999.0,99.0 +1979,12,8,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.7,52,99100,0,0,250,0,0,0,0,0,0,0,330,5.2,0,0,48.3,77777,9,999999999,69,0.0670,0,88,999.000,999.0,99.0 +1979,12,9,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.7,54,99100,0,0,248,0,0,0,0,0,0,0,340,4.1,0,0,32.2,77777,9,999999999,69,0.0670,0,88,999.000,999.0,99.0 +1979,12,9,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-6.7,57,99100,0,0,246,0,0,0,0,0,0,0,340,3.6,0,0,32.2,77777,9,999999999,69,0.0670,0,88,999.000,999.0,99.0 +1979,12,9,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-6.7,59,99200,0,0,245,0,0,0,0,0,0,0,340,3.6,0,0,32.2,77777,9,999999999,80,0.0670,0,88,999.000,999.0,99.0 +1979,12,9,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-6.7,59,99200,0,0,245,0,0,0,0,0,0,0,340,3.1,0,0,32.2,77777,9,999999999,80,0.0670,0,88,999.000,999.0,99.0 +1979,12,9,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-6.1,61,99200,0,0,245,0,0,0,0,0,0,0,360,3.6,0,0,32.2,77777,9,999999999,80,0.0670,0,88,999.000,999.0,99.0 +1979,12,9,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.1,55,99200,0,0,251,0,0,0,0,0,0,0,60,4.6,0,0,32.2,77777,9,999999999,89,0.0670,0,88,999.000,999.0,99.0 +1979,12,9,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-6.7,52,99300,0,0,250,0,0,0,0,0,0,0,60,5.2,0,0,32.2,77777,9,999999999,89,0.0670,0,88,999.000,999.0,99.0 +1979,12,9,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-6.7,54,99300,27,670,248,21,108,10,1600,4400,1400,190,70,5.2,0,0,40.2,77777,9,999999999,89,0.0430,0,88,999.000,999.0,99.0 +1979,12,9,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-7.2,46,99400,240,1410,254,131,594,29,13800,46200,5900,630,90,6.7,0,0,48.3,77777,9,999999999,89,0.0430,0,88,999.000,999.0,99.0 +1979,12,9,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-7.2,40,99500,462,1410,262,307,801,43,32400,73400,8200,1040,80,5.7,0,0,48.3,77777,9,999999999,89,0.0430,0,88,999.000,999.0,99.0 +1979,12,9,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-7.2,35,99500,633,1410,268,454,886,54,47700,85400,9300,1320,90,5.2,0,0,48.3,77777,9,999999999,89,0.0430,0,88,999.000,999.0,99.0 +1979,12,9,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-7.2,30,99400,740,1410,277,550,927,61,57800,90800,9900,1520,80,4.1,0,0,48.3,77777,9,999999999,89,0.0430,0,88,999.000,999.0,99.0 +1979,12,9,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-7.8,27,99300,777,1410,281,582,938,63,61100,92300,10000,1590,70,3.1,0,0,48.3,77777,9,999999999,89,0.0430,0,88,999.000,999.0,99.0 +1979,12,9,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-6.7,26,99200,740,1410,289,548,923,61,57500,90400,9900,1520,80,2.1,0,0,48.3,77777,9,999999999,100,0.0430,0,88,999.000,999.0,99.0 +1979,12,9,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-5.0,28,99200,632,1410,295,453,884,54,47600,85200,9300,1320,110,3.1,0,0,48.3,77777,9,999999999,100,0.0430,0,88,999.000,999.0,99.0 +1979,12,9,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-4.4,27,99200,461,1410,300,306,796,43,32200,72900,8200,1040,150,2.6,0,0,48.3,77777,9,999999999,100,0.0430,0,88,999.000,999.0,99.0 +1979,12,9,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-3.9,31,99200,239,1410,294,131,594,29,13800,46200,5900,630,160,2.6,0,0,48.3,77777,9,999999999,100,0.0430,0,88,999.000,999.0,99.0 +1979,12,9,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-3.3,35,99200,27,670,290,24,112,11,1700,4500,1500,200,140,3.1,0,0,48.3,77777,9,999999999,100,0.0430,0,88,999.000,999.0,99.0 +1979,12,9,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-2.8,39,99100,0,0,286,0,0,0,0,0,0,0,140,3.1,0,0,48.3,77777,9,999999999,100,0.0670,0,88,999.000,999.0,99.0 +1979,12,9,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-2.8,41,99100,0,0,284,0,0,0,0,0,0,0,150,3.1,0,0,48.3,77777,9,999999999,100,0.0670,0,88,999.000,999.0,99.0 +1979,12,9,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-2.8,46,99100,0,0,277,0,0,0,0,0,0,0,140,3.1,0,0,48.3,77777,9,999999999,100,0.0670,0,88,999.000,999.0,99.0 +1979,12,9,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.8,51,99100,0,0,271,0,0,0,0,0,0,0,70,1.5,0,0,48.3,77777,9,999999999,100,0.0670,0,88,999.000,999.0,99.0 +1979,12,9,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.8,51,99200,0,0,271,0,0,0,0,0,0,0,120,2.1,0,0,48.3,77777,9,999999999,100,0.0670,0,88,999.000,999.0,99.0 +1979,12,9,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-2.8,53,99100,0,0,269,0,0,0,0,0,0,0,130,3.1,0,0,48.3,77777,9,999999999,100,0.0670,0,88,999.000,999.0,99.0 +1979,12,10,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-2.8,55,99000,0,0,267,0,0,0,0,0,0,0,160,2.6,0,0,32.2,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.8,59,99000,0,0,262,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.8,62,99000,0,0,260,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,99000,0,0,258,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-2.8,70,99000,0,0,254,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.8,67,99000,0,0,256,0,0,0,0,0,0,0,0,0.0,0,0,32.2,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-2.8,70,99000,0,0,254,0,0,0,0,0,0,0,320,1.5,0,0,32.2,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.8,73,99000,25,647,252,19,69,11,1500,2200,1400,190,0,0.0,0,0,32.2,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-3.3,46,99100,236,1411,275,122,515,35,12300,38400,5900,660,230,1.5,0,0,32.2,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-2.2,40,99100,459,1411,289,295,743,52,30900,68000,8700,1090,230,5.2,0,0,9.7,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.7,38,99100,630,1411,294,442,839,65,46200,80700,10000,1400,170,3.1,0,0,11.3,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.1,37,99000,738,1411,299,538,884,74,56200,86500,10800,1620,200,1.5,0,0,24.1,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,-1.7,31,98900,775,1411,308,572,897,76,59600,88100,11000,1700,230,2.1,0,0,24.1,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.8,26,98800,739,1411,312,539,885,74,56400,86600,10800,1620,150,2.1,0,0,24.1,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-2.8,24,98800,632,1411,319,445,842,66,46600,81000,10100,1410,190,2.6,0,0,24.1,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,-1.1,26,98700,461,1411,323,298,745,53,31200,68200,8700,1100,190,2.6,0,0,24.1,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,-1.1,29,98700,239,1411,316,125,523,36,12700,39100,6000,670,170,3.1,0,0,40.2,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.7,29,98700,27,670,313,21,76,12,1700,2400,1600,210,220,2.6,0,0,32.2,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.7,32,98700,0,0,306,0,0,0,0,0,0,0,180,3.1,0,0,32.2,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.1,37,98700,0,0,299,0,0,0,0,0,0,0,130,3.1,0,0,32.2,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-0.6,42,98700,0,0,295,0,0,0,0,0,0,0,150,3.1,0,0,32.2,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,0.6,50,98800,0,0,290,0,0,0,0,0,0,0,140,2.6,0,0,32.2,77777,9,999999999,100,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,2.2,61,98800,0,0,287,0,0,0,0,0,0,0,160,2.6,0,0,32.2,77777,9,999999999,110,0.0660,0,88,999.000,999.0,99.0 +1979,12,10,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.6,77,98800,0,0,290,0,0,0,0,0,0,0,170,3.6,0,0,24.1,77777,9,999999999,110,0.0660,0,88,999.000,999.0,99.0 +1979,12,11,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,4.4,77,98800,0,0,284,0,0,0,0,0,0,0,180,2.1,0,0,24.1,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1979,12,11,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.6,86,98800,0,0,283,0,0,0,0,0,0,0,150,3.1,0,0,24.1,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1979,12,11,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.1,89,98700,0,0,284,0,0,0,0,0,0,0,120,2.1,0,0,24.1,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1979,12,11,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.6,89,98700,0,0,281,0,0,0,0,0,0,0,120,2.1,0,0,24.1,77777,9,999999999,110,0.0650,0,88,999.000,999.0,99.0 +1979,12,11,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,5.0,89,98700,0,0,278,0,0,0,0,0,0,0,110,2.1,0,0,19.3,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,12,11,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,98700,0,0,274,0,0,0,0,0,0,0,110,2.6,0,0,19.3,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,12,11,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,98800,0,0,274,0,0,0,0,0,0,0,110,2.6,0,0,12.9,77777,9,999999999,120,0.0650,0,88,999.000,999.0,99.0 +1979,12,11,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,98800,24,623,303,6,2,5,0,0,0,0,70,2.6,8,8,6.4,1370,9,999999999,129,0.1250,0,88,999.000,999.0,99.0 +1979,12,11,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,98900,233,1411,313,74,45,67,8100,3500,7600,1600,100,2.1,8,8,6.4,670,9,999999999,129,0.1250,0,88,999.000,999.0,99.0 +1979,12,11,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,7.8,77,99000,456,1411,308,233,450,87,24900,40900,11700,1610,160,3.1,1,1,8.0,77777,9,999999999,139,0.1250,0,88,999.000,999.0,99.0 +1979,12,11,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,10.0,72,98900,627,1411,324,392,671,92,41300,65300,12100,1910,160,4.1,1,1,11.3,77777,9,999999999,139,0.1250,0,88,999.000,999.0,99.0 +1979,12,11,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,11.7,68,98900,736,1411,333,488,733,104,51800,73200,13500,2310,140,3.1,0,0,24.1,77777,9,999999999,150,0.1250,0,88,999.000,999.0,99.0 +1979,12,11,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,98800,774,1411,365,369,209,254,40100,21600,28200,6570,190,5.2,5,5,24.1,77777,9,999999999,150,0.1250,0,88,999.000,999.0,99.0 +1979,12,11,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,98700,738,1411,367,402,423,180,42500,42600,20100,3890,130,5.7,5,4,24.1,77777,9,999999999,150,0.1250,0,88,999.000,999.0,99.0 +1979,12,11,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,10.0,49,98700,631,1411,364,435,636,148,45800,62500,17700,2990,210,4.1,5,4,40.2,77777,9,999999999,160,0.1250,0,88,999.000,999.0,99.0 +1979,12,11,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,12.8,59,98700,461,1411,367,277,470,122,28600,42600,14600,2340,200,4.1,5,4,40.2,77777,9,999999999,160,0.1250,0,88,999.000,999.0,99.0 +1979,12,11,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,12.8,61,98700,240,1411,362,98,234,58,10100,16200,7400,1060,160,4.1,4,3,40.2,77777,9,999999999,170,0.1250,0,88,999.000,999.0,99.0 +1979,12,11,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.9,12.8,68,98700,27,670,350,13,20,11,1300,700,1300,230,140,3.6,2,2,40.2,77777,9,999999999,179,0.1250,0,88,999.000,999.0,99.0 +1979,12,11,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,98700,0,0,340,0,0,0,0,0,0,0,120,4.1,2,2,32.2,77777,9,999999999,179,0.0650,0,88,999.000,999.0,99.0 +1979,12,11,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,12.8,75,98700,0,0,348,0,0,0,0,0,0,0,140,3.6,4,4,32.2,77777,9,999999999,179,0.0650,0,88,999.000,999.0,99.0 +1979,12,11,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,98800,0,0,343,0,0,0,0,0,0,0,160,4.1,3,3,24.1,77777,9,999999999,189,0.0650,0,88,999.000,999.0,99.0 +1979,12,11,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,98800,0,0,330,0,0,0,0,0,0,0,130,2.6,1,1,24.1,77777,9,999999999,189,0.0650,0,88,999.000,999.0,99.0 +1979,12,11,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,98800,0,0,364,0,0,0,0,0,0,0,110,3.1,9,9,24.1,880,9,999999999,189,0.0650,0,88,999.000,999.0,99.0 +1979,12,11,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.6,12.8,84,98800,0,0,350,0,0,0,0,0,0,0,120,3.6,7,7,19.3,1220,9,999999999,189,0.0650,0,88,999.000,999.0,99.0 +1979,12,12,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,98800,0,0,335,0,0,0,0,0,0,0,120,3.6,6,5,16.1,1220,9,999999999,200,0.0640,0,88,999.000,999.0,99.0 +1979,12,12,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,12.8,90,98800,0,0,345,0,0,0,0,0,0,0,130,3.1,7,7,12.9,980,9,999999999,200,0.0640,0,88,999.000,999.0,99.0 +1979,12,12,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,12.8,93,98800,0,0,342,0,0,0,0,0,0,0,130,2.6,7,7,12.9,1130,9,999999999,200,0.0640,0,88,999.000,999.0,99.0 +1979,12,12,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,96,98800,0,0,330,0,0,0,0,0,0,0,140,3.1,8,4,11.3,77777,9,999999999,200,0.0640,0,88,999.000,999.0,99.0 +1979,12,12,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.8,100,98900,0,0,330,0,0,0,0,0,0,0,120,2.1,7,5,8.0,1220,9,999999999,200,0.0640,0,88,999.000,999.0,99.0 +1979,12,12,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.8,100,98900,0,0,360,0,0,0,0,0,0,0,110,2.6,10,10,6.4,1220,9,999999999,209,0.0640,0,88,999.000,999.0,99.0 +1979,12,12,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,98800,0,0,333,0,0,0,0,0,0,0,150,3.1,8,7,6.4,1370,9,999999999,209,0.0640,0,88,999.000,999.0,99.0 +1979,12,12,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,98800,23,623,356,8,0,8,0,0,0,0,150,2.1,10,10,0.6,30,9,999999999,209,0.0270,0,88,999.000,999.0,99.0 +1979,12,12,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,98800,230,1411,356,59,7,58,6600,200,6600,1940,160,2.6,10,10,0.0,0,9,999999999,220,0.0270,0,88,999.000,999.0,99.0 +1979,12,12,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,96,98900,453,1411,366,115,1,115,13000,100,13000,4250,180,1.0,10,10,1.6,60,9,999999999,220,0.0270,0,88,999.000,999.0,99.0 +1979,12,12,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,13.9,75,98900,625,1411,349,321,443,123,34400,43600,15000,2430,180,5.2,2,2,16.1,77777,9,999999999,229,0.0270,0,88,999.000,999.0,99.0 +1979,12,12,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,13.9,66,98800,734,1411,360,505,803,85,53200,79300,11800,1890,200,5.7,2,2,32.2,77777,9,999999999,229,0.0270,0,88,999.000,999.0,99.0 +1979,12,12,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.1,13.9,64,98700,772,1411,369,514,711,123,54200,71000,15100,2760,190,6.7,5,4,48.3,77777,9,999999999,229,0.0270,0,88,999.000,999.0,99.0 +1979,12,12,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,13.9,57,98600,737,1411,384,455,533,175,48100,53700,19900,3770,190,5.2,7,6,48.3,3050,9,999999999,240,0.0270,0,88,999.000,999.0,99.0 +1979,12,12,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.8,12.2,51,98500,631,1411,378,324,414,138,34400,40700,16100,2770,180,5.2,8,5,48.3,3050,9,999999999,240,0.0270,0,88,999.000,999.0,99.0 +1979,12,12,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,22.2,12.2,53,98500,461,1411,408,115,11,112,13100,700,12900,4210,180,4.1,10,10,48.3,3050,9,999999999,250,0.0270,0,88,999.000,999.0,99.0 +1979,12,12,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,21.7,12.8,57,98500,241,1411,406,76,13,74,8300,400,8300,2300,180,3.1,10,10,48.3,5490,9,999999999,250,0.0270,0,88,999.000,999.0,99.0 +1979,12,12,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,12.8,63,98400,28,670,397,15,0,15,1700,0,1700,500,150,3.1,10,10,40.2,5490,9,999999999,259,0.0270,0,88,999.000,999.0,99.0 +1979,12,12,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.8,66,98500,0,0,383,0,0,0,0,0,0,0,160,3.1,10,9,40.2,5490,9,999999999,259,0.0640,0,88,999.000,999.0,99.0 +1979,12,12,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,12.2,63,98500,0,0,374,0,0,0,0,0,0,0,140,4.1,9,8,32.2,4880,9,999999999,259,0.0640,0,88,999.000,999.0,99.0 +1979,12,12,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,98600,0,0,369,0,0,0,0,0,0,0,170,3.1,9,8,32.2,4880,9,999999999,259,0.0640,0,88,999.000,999.0,99.0 +1979,12,12,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.2,68,98500,0,0,377,0,0,0,0,0,0,0,170,2.6,10,9,32.2,2740,9,999999999,259,0.0640,0,88,999.000,999.0,99.0 +1979,12,12,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,12.8,70,98500,0,0,388,0,0,0,0,0,0,0,170,2.6,10,10,32.2,1010,9,999999999,259,0.0640,0,88,999.000,999.0,99.0 +1979,12,12,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.8,12.8,73,98500,0,0,385,0,0,0,0,0,0,0,170,3.1,10,10,32.2,1520,9,999999999,259,0.0640,0,88,999.000,999.0,99.0 +1979,12,13,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,12.8,78,98400,0,0,380,0,0,0,0,0,0,0,140,2.6,10,10,32.2,2130,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1979,12,13,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,12.8,81,98300,0,0,353,0,0,0,0,0,0,0,140,4.1,8,7,24.1,9140,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1979,12,13,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.3,81,98300,0,0,380,0,0,0,0,0,0,0,160,5.7,10,10,24.1,2440,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1979,12,13,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,13.9,81,98300,0,0,384,0,0,0,0,0,0,0,180,5.2,10,10,24.1,2440,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1979,12,13,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,14.4,84,98200,0,0,384,0,0,0,0,0,0,0,160,3.6,10,10,24.1,2440,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1979,12,13,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,98200,0,0,382,0,0,0,0,0,0,0,170,4.1,10,10,19.3,910,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1979,12,13,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,98200,0,0,382,0,0,0,0,0,0,0,170,4.1,10,10,16.1,2440,9,999999999,270,0.0630,0,88,999.000,999.0,99.0 +1979,12,13,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,15.0,90,98200,21,600,382,11,0,11,0,0,0,0,160,3.1,10,10,12.9,700,9,999999999,279,0.0260,0,88,999.000,999.0,99.0 +1979,12,13,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,15.6,90,98300,227,1412,386,83,1,83,9000,0,9000,2340,190,4.1,10,10,11.3,610,9,999999999,279,0.0260,0,88,999.000,999.0,99.0 +1979,12,13,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,98300,450,1412,381,125,44,110,13600,4000,12300,3020,190,4.1,10,9,11.3,610,9,999999999,290,0.0260,0,88,999.000,999.0,99.0 +1979,12,13,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,19.4,16.7,84,98300,623,1412,388,273,151,207,29600,15100,22900,4970,210,4.6,10,9,11.3,2740,9,999999999,300,0.0260,0,88,999.000,999.0,99.0 +1979,12,13,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.0,16.1,78,98300,732,1412,401,250,3,248,28000,300,27900,9310,240,4.1,10,10,12.9,700,9,999999999,309,0.0260,0,88,999.000,999.0,99.0 +1979,12,13,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,20.6,15.6,73,98200,771,1412,404,235,3,233,26700,300,26500,9280,230,5.2,10,10,16.1,610,9,999999999,320,0.0260,0,88,999.000,999.0,99.0 +1979,12,13,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,98200,736,1412,392,149,4,147,17500,300,17300,6490,290,3.1,10,10,12.9,460,9,999999999,320,0.0260,0,88,999.000,999.0,99.0 +1979,12,13,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,16.1,87,98200,631,1412,392,115,11,110,13500,700,13200,4800,250,3.1,10,10,11.3,370,9,999999999,329,0.0260,0,88,999.000,999.0,99.0 +1979,12,13,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,17.2,16.7,97,98300,462,1412,387,111,7,109,12600,400,12500,4140,290,2.6,10,10,4.8,430,9,999999999,340,0.0260,0,88,999.000,999.0,99.0 +1979,12,13,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,16.7,100,98200,241,1412,384,44,4,43,5000,100,5000,1590,310,3.6,10,10,6.4,90,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1979,12,13,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,16.1,100,98200,28,671,380,17,0,16,1800,0,1800,530,320,2.1,10,10,9.7,120,9,999999999,350,0.0260,0,88,999.000,999.0,99.0 +1979,12,13,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,16.1,100,98200,0,0,380,0,0,0,0,0,0,0,320,2.6,10,10,9.7,240,9,999999999,359,0.0630,0,88,999.000,999.0,99.0 +1979,12,13,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.1,15.6,97,98300,0,0,380,0,0,0,0,0,0,0,330,7.7,10,10,9.7,90,9,999999999,350,0.0630,0,88,999.000,999.0,99.0 +1979,12,13,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,13.3,96,98400,0,0,366,0,0,0,0,0,0,0,300,4.6,10,10,9.7,90,9,999999999,350,0.0630,0,88,999.000,999.0,99.0 +1979,12,13,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,96,98400,0,0,362,0,0,0,0,0,0,0,310,5.2,10,10,9.7,90,9,999999999,340,0.0630,0,88,999.000,999.0,99.0 +1979,12,13,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,12.2,96,98500,0,0,359,0,0,0,0,0,0,0,310,6.2,10,10,9.7,120,9,999999999,340,0.0630,0,88,999.000,999.0,99.0 +1979,12,13,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.1,96,98400,0,0,352,0,0,0,0,0,0,0,320,4.6,10,10,12.9,150,9,999999999,329,0.0630,0,88,999.000,999.0,99.0 +1979,12,14,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,9.4,90,98400,0,0,347,0,0,0,0,0,0,0,320,5.2,10,10,16.1,150,9,999999999,329,0.0630,0,88,999.000,999.0,99.0 +1979,12,14,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,98300,0,0,335,0,0,0,0,0,0,0,330,8.8,10,10,16.1,150,9,999999999,320,0.0630,0,88,999.000,999.0,99.0 +1979,12,14,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,98400,0,0,331,0,0,0,0,0,0,0,320,5.7,10,10,16.1,240,9,999999999,309,0.0630,0,88,999.000,999.0,99.0 +1979,12,14,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,98400,0,0,328,0,0,0,0,0,0,0,320,5.7,10,10,16.1,980,9,999999999,309,0.0630,0,88,999.000,999.0,99.0 +1979,12,14,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.1,93,98400,0,0,325,0,0,0,0,0,0,0,320,5.2,10,10,16.1,980,9,999999999,300,0.0630,0,88,999.000,999.0,99.0 +1979,12,14,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,98500,0,0,311,0,0,0,0,0,0,0,320,5.2,10,9,16.1,3660,9,999999999,300,0.0630,0,88,999.000,999.0,99.0 +1979,12,14,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,98500,0,0,297,0,0,0,0,0,0,0,320,4.1,8,7,19.3,3660,9,999999999,290,0.0630,0,88,999.000,999.0,99.0 +1979,12,14,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.3,86,98600,20,577,299,16,11,14,0,0,0,0,310,4.1,10,8,19.3,2440,9,999999999,270,0.0280,0,88,999.000,999.0,99.0 +1979,12,14,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,98700,224,1412,291,101,98,86,10800,6800,9700,1830,330,4.6,8,5,19.3,2130,9,999999999,259,0.0280,0,88,999.000,999.0,99.0 +1979,12,14,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,98800,447,1412,304,241,217,171,25600,19900,19300,3860,340,4.1,9,8,19.3,460,9,999999999,240,0.0280,0,88,999.000,999.0,99.0 +1979,12,14,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,3.9,64,98800,620,1412,313,256,97,213,28000,9600,23800,5900,320,3.6,10,6,19.3,7620,9,999999999,229,0.0280,0,88,999.000,999.0,99.0 +1979,12,14,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,4.4,59,98700,730,1412,316,477,642,143,49400,63100,16700,3010,10,3.6,9,4,19.3,77777,9,999999999,209,0.0280,0,88,999.000,999.0,99.0 +1979,12,14,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,6.1,60,98700,770,1412,335,390,267,244,41600,28000,26300,5840,350,2.6,10,7,24.1,7620,9,999999999,200,0.0280,0,88,999.000,999.0,99.0 +1979,12,14,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.1,58,98600,736,1412,360,206,9,201,23500,700,23100,8180,340,3.6,10,10,24.1,760,9,999999999,179,0.0280,0,88,999.000,999.0,99.0 +1979,12,14,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,6.7,58,98600,631,1412,363,184,11,179,20800,900,20400,6890,340,4.6,10,10,24.1,760,9,999999999,160,0.0280,0,88,999.000,999.0,99.0 +1979,12,14,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,7.2,60,98600,462,1412,337,197,291,102,20800,26500,12100,1920,340,2.6,10,6,24.1,760,9,999999999,150,0.0280,0,88,999.000,999.0,99.0 +1979,12,14,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.2,64,98700,242,1412,341,83,59,73,9100,4600,8300,1730,10,2.6,10,8,32.2,820,9,999999999,129,0.0280,0,88,999.000,999.0,99.0 +1979,12,14,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,7.2,64,98700,29,694,358,8,1,8,1000,0,1000,300,290,2.1,10,10,32.2,910,9,999999999,120,0.0280,0,88,999.000,999.0,99.0 +1979,12,14,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.6,71,98700,0,0,315,0,0,0,0,0,0,0,320,3.1,8,6,32.2,7620,9,999999999,100,0.0630,0,88,999.000,999.0,99.0 +1979,12,14,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,4.4,74,98800,0,0,299,0,0,0,0,0,0,0,310,2.6,7,3,32.2,77777,9,999999999,100,0.0630,0,88,999.000,999.0,99.0 +1979,12,14,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,3.9,80,98800,0,0,289,0,0,0,0,0,0,0,300,2.6,4,2,32.2,77777,9,999999999,100,0.0630,0,88,999.000,999.0,99.0 +1979,12,14,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.1,54,98800,0,0,303,0,0,0,0,0,0,0,70,3.6,8,4,32.2,77777,9,999999999,100,0.0630,0,88,999.000,999.0,99.0 +1979,12,14,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,0.6,54,98800,0,0,297,0,0,0,0,0,0,0,80,4.6,8,3,32.2,77777,9,999999999,100,0.0630,0,88,999.000,999.0,99.0 +1979,12,14,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.1,61,98800,0,0,304,0,0,0,0,0,0,0,80,5.2,9,7,32.2,1220,9,999999999,100,0.0630,0,88,999.000,999.0,99.0 +1979,12,15,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-0.6,60,98800,0,0,278,0,0,0,0,0,0,0,90,5.7,4,1,32.2,77777,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1979,12,15,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-0.6,60,98800,0,0,287,0,0,0,0,0,0,0,70,5.7,4,4,32.2,77777,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1979,12,15,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-1.7,62,98800,0,0,274,0,0,0,0,0,0,0,70,6.2,2,2,32.2,77777,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1979,12,15,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,98800,0,0,263,0,0,0,0,0,0,0,70,6.2,0,0,32.2,77777,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1979,12,15,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-2.2,62,98900,0,0,263,0,0,0,0,0,0,0,70,6.2,0,0,32.2,77777,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1979,12,15,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-2.8,62,98800,0,0,269,0,0,0,0,0,0,0,80,6.7,2,2,32.2,77777,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1979,12,15,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-2.8,65,98900,0,0,269,0,0,0,0,0,0,0,70,6.7,3,3,32.2,77777,9,999999999,100,0.0620,0,88,999.000,999.0,99.0 +1979,12,15,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-2.2,70,98900,19,553,278,14,31,11,0,0,0,0,70,5.7,7,7,32.2,1010,9,999999999,100,0.0250,0,88,999.000,999.0,99.0 +1979,12,15,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.1,73,99000,221,1412,275,104,250,64,10500,16600,7900,1190,70,6.2,5,5,32.2,77777,9,999999999,110,0.0250,0,88,999.000,999.0,99.0 +1979,12,15,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-0.6,63,99000,445,1412,280,245,567,66,25700,51100,9500,1270,80,8.8,2,2,24.1,77777,9,999999999,110,0.0250,0,88,999.000,999.0,99.0 +1979,12,15,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.1,52,99000,618,1412,284,381,685,80,39600,65800,10600,1620,80,8.2,3,1,24.1,77777,9,999999999,120,0.0250,0,88,999.000,999.0,99.0 +1979,12,15,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-1.7,46,98900,729,1412,306,377,246,250,40900,25200,27800,6310,90,6.2,7,7,24.1,980,9,999999999,129,0.0250,0,88,999.000,999.0,99.0 +1979,12,15,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.7,44,98800,769,1412,320,352,99,297,38500,10000,33000,8670,70,6.7,10,9,40.2,1010,9,999999999,129,0.0250,0,88,999.000,999.0,99.0 +1979,12,15,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-3.3,38,98700,735,1412,321,416,331,242,44000,34500,26000,5720,100,6.7,10,9,40.2,1010,9,999999999,139,0.0250,0,88,999.000,999.0,99.0 +1979,12,15,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-3.9,38,98700,631,1412,326,200,7,197,22500,600,22200,7320,100,5.2,10,10,40.2,700,9,999999999,139,0.0250,0,88,999.000,999.0,99.0 +1979,12,15,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-3.3,41,98600,463,1412,324,147,19,141,16400,1300,15900,4900,90,5.7,10,10,40.2,640,9,999999999,150,0.0250,0,88,999.000,999.0,99.0 +1979,12,15,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-3.3,39,98600,243,1412,327,61,7,60,6800,200,6800,2030,80,5.2,10,10,40.2,670,9,999999999,150,0.0250,0,88,999.000,999.0,99.0 +1979,12,15,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-3.3,42,98500,29,694,322,19,2,19,2100,0,2100,600,100,5.7,10,10,40.2,640,9,999999999,150,0.0250,0,88,999.000,999.0,99.0 +1979,12,15,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-2.8,48,98500,0,0,318,0,0,0,0,0,0,0,80,6.2,10,10,32.2,640,9,999999999,160,0.0620,0,88,999.000,999.0,99.0 +1979,12,15,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-2.8,49,98600,0,0,315,0,0,0,0,0,0,0,90,6.7,10,10,24.1,640,9,999999999,160,0.0620,0,88,999.000,999.0,99.0 +1979,12,15,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.1,56,98600,0,0,317,0,0,0,0,0,0,0,110,5.2,10,10,24.1,640,9,999999999,160,0.0620,0,88,999.000,999.0,99.0 +1979,12,15,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.7,76,98600,0,0,313,0,0,0,0,0,0,0,90,6.2,10,10,24.1,580,9,999999999,160,0.0620,0,88,999.000,999.0,99.0 +1979,12,15,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,98600,0,0,311,0,0,0,0,0,0,0,100,4.6,10,10,12.9,550,9,999999999,160,0.0620,0,88,999.000,999.0,99.0 +1979,12,15,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,98500,0,0,311,0,0,0,0,0,0,0,50,6.7,10,10,12.9,580,9,999999999,160,0.0620,0,88,999.000,999.0,99.0 +1979,12,16,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,98500,0,0,311,0,0,0,0,0,0,0,80,5.2,10,10,11.3,520,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1979,12,16,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,98400,0,0,311,0,0,0,0,0,0,0,80,5.2,10,10,11.3,520,9,999999999,170,0.0610,0,88,999.000,999.0,99.0 +1979,12,16,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,98400,0,0,311,0,0,0,0,0,0,0,80,5.2,10,10,11.3,430,9,999999999,170,0.0610,0,88,999.000,999.0,99.0 +1979,12,16,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,98400,0,0,311,0,0,0,0,0,0,0,80,4.1,10,10,11.3,310,9,999999999,170,0.0610,0,88,999.000,999.0,99.0 +1979,12,16,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,98300,0,0,311,0,0,0,0,0,0,0,50,5.2,10,10,11.3,310,9,999999999,170,0.0610,0,88,999.000,999.0,99.0 +1979,12,16,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,98200,0,0,310,0,0,0,0,0,0,0,90,5.2,10,10,11.3,310,9,999999999,170,0.0610,0,88,999.000,999.0,99.0 +1979,12,16,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,98300,0,0,310,0,0,0,0,0,0,0,140,3.1,10,10,12.9,370,9,999999999,170,0.0610,0,88,999.000,999.0,99.0 +1979,12,16,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,98400,18,553,311,8,0,8,0,0,0,0,70,3.6,10,10,11.3,370,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1979,12,16,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,98400,219,1412,311,43,1,43,4900,0,4900,1540,40,2.6,10,10,11.3,310,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1979,12,16,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.3,83,98400,442,1412,308,149,33,139,16400,3100,15400,3580,100,3.1,10,9,16.1,270,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1979,12,16,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.9,77,98300,616,1412,316,252,64,224,27600,6300,24800,6090,50,2.6,10,9,16.1,270,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1979,12,16,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,4.4,66,98300,727,1412,314,402,358,217,43000,37300,23700,5000,360,2.1,7,6,19.3,2290,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1979,12,16,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,5.0,64,98100,768,1412,320,382,326,204,41300,34300,22600,4710,20,2.6,7,6,19.3,2130,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1979,12,16,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,6.7,60,98100,735,1412,338,367,314,203,39500,32800,22400,4620,320,3.6,8,7,24.1,2130,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1979,12,16,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,7.2,62,98100,631,1412,361,223,4,222,24900,400,24700,7840,350,5.2,10,10,24.1,1520,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1979,12,16,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,7.8,69,98100,464,1412,346,158,75,134,17400,7000,15100,3570,350,5.7,10,9,24.1,1370,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1979,12,16,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,98200,245,1412,335,76,16,74,8400,500,8300,2320,320,5.7,10,9,32.2,1520,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1979,12,16,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,7.2,80,98200,30,694,333,11,2,11,1300,0,1300,390,310,3.6,10,9,24.1,1830,9,999999999,170,0.0930,0,88,999.000,999.0,99.0 +1979,12,16,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,98200,0,0,330,0,0,0,0,0,0,0,320,5.2,9,9,24.1,2440,9,999999999,170,0.0610,0,88,999.000,999.0,99.0 +1979,12,16,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,98300,0,0,304,0,0,0,0,0,0,0,310,6.2,4,4,19.3,77777,9,999999999,160,0.0610,0,88,999.000,999.0,99.0 +1979,12,16,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,98200,0,0,294,0,0,0,0,0,0,0,310,5.7,2,2,12.9,77777,9,999999999,150,0.0610,0,88,999.000,999.0,99.0 +1979,12,16,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,6.7,96,98200,0,0,291,0,0,0,0,0,0,0,310,6.2,2,2,16.1,77777,9,999999999,139,0.0610,0,88,999.000,999.0,99.0 +1979,12,16,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,5.0,86,98300,0,0,286,0,0,0,0,0,0,0,340,6.2,1,1,19.3,77777,9,999999999,129,0.0610,0,88,999.000,999.0,99.0 +1979,12,16,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.3,80,98300,0,0,282,0,0,0,0,0,0,0,320,7.2,1,1,19.3,77777,9,999999999,120,0.0610,0,88,999.000,999.0,99.0 +1979,12,17,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.1,76,98300,0,0,273,0,0,0,0,0,0,0,320,10.8,1,1,24.1,77777,9,999999999,110,0.0610,0,88,999.000,999.0,99.0 +1979,12,17,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,0.0,76,98300,0,0,272,0,0,0,0,0,0,0,320,8.2,2,2,24.1,77777,9,999999999,100,0.0610,0,88,999.000,999.0,99.0 +1979,12,17,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.2,76,98400,0,0,273,0,0,0,0,0,0,0,320,12.9,7,7,24.1,700,9,999999999,89,0.0610,0,88,999.000,999.0,99.0 +1979,12,17,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-3.3,75,98500,0,0,278,0,0,0,0,0,0,0,320,13.4,9,9,24.1,520,9,999999999,80,0.0610,0,88,999.000,999.0,99.0 +1979,12,17,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-3.9,75,98600,0,0,283,0,0,0,0,0,0,0,330,12.4,10,10,24.1,610,9,999999999,69,0.0610,0,88,999.000,999.0,99.0 +1979,12,17,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-6.1,69,98600,0,0,249,0,0,0,0,0,0,0,330,7.2,4,3,32.2,77777,9,999999999,60,0.0610,0,88,999.000,999.0,99.0 +1979,12,17,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-7.2,66,98800,0,0,236,0,0,0,0,0,0,0,320,6.2,0,0,32.2,77777,9,999999999,50,0.0610,0,88,999.000,999.0,99.0 +1979,12,17,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-7.8,66,98800,17,530,234,17,84,8,0,0,0,0,330,9.3,0,0,48.3,77777,9,999999999,50,0.0430,0,88,999.000,999.0,99.0 +1979,12,17,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-8.3,61,99000,216,1413,235,116,578,28,12300,43600,5600,580,330,7.7,0,0,48.3,77777,9,999999999,50,0.0430,0,88,999.000,999.0,99.0 +1979,12,17,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-8.9,54,99100,440,1413,238,293,806,41,31000,73100,8100,990,330,8.8,0,0,48.3,77777,9,999999999,50,0.0430,0,88,999.000,999.0,99.0 +1979,12,17,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-8.9,48,99200,614,1413,244,445,898,53,46900,86200,9300,1290,330,7.7,0,0,48.3,77777,9,999999999,50,0.0430,0,88,999.000,999.0,99.0 +1979,12,17,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-8.9,46,99100,726,1413,246,542,935,59,56900,91400,9800,1480,310,7.7,0,0,48.3,77777,9,999999999,50,0.0430,0,88,999.000,999.0,99.0 +1979,12,17,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-8.9,41,99100,767,1413,252,579,949,62,60900,93300,10000,1560,300,6.2,0,0,48.3,77777,9,999999999,50,0.0430,0,88,999.000,999.0,99.0 +1979,12,17,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-9.4,38,99000,735,1413,254,551,941,60,58000,92100,9800,1500,320,7.2,0,0,48.3,77777,9,999999999,50,0.0430,0,88,999.000,999.0,99.0 +1979,12,17,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-10.6,33,99000,632,1413,255,461,906,54,48500,87300,9400,1320,320,6.7,0,0,48.3,77777,9,999999999,50,0.0430,0,88,999.000,999.0,99.0 +1979,12,17,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-11.1,32,99000,465,1413,254,315,823,43,33300,75500,8300,1040,310,6.7,0,0,48.3,77777,9,999999999,50,0.0430,0,88,999.000,999.0,99.0 +1979,12,17,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-11.7,33,99000,246,1413,250,138,621,30,14600,48700,6100,650,310,5.2,0,0,48.3,77777,9,999999999,50,0.0430,0,88,999.000,999.0,99.0 +1979,12,17,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-11.7,38,99000,30,718,246,24,117,12,1800,4800,1600,220,310,5.2,1,1,48.3,77777,9,999999999,50,0.0430,0,88,999.000,999.0,99.0 +1979,12,17,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-12.2,40,99000,0,0,245,0,0,0,0,0,0,0,330,5.7,2,2,48.3,77777,9,999999999,50,0.0610,0,88,999.000,999.0,99.0 +1979,12,17,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-12.2,43,99000,0,0,244,0,0,0,0,0,0,0,310,4.6,3,3,48.3,77777,9,999999999,50,0.0610,0,88,999.000,999.0,99.0 +1979,12,17,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.1,-12.2,43,99000,0,0,247,0,0,0,0,0,0,0,310,3.6,6,5,48.3,7620,9,999999999,50,0.0610,0,88,999.000,999.0,99.0 +1979,12,17,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-12.2,45,99000,0,0,245,0,0,0,0,0,0,0,320,3.1,6,5,48.3,7620,9,999999999,50,0.0610,0,88,999.000,999.0,99.0 +1979,12,17,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-1.7,-12.2,45,99100,0,0,243,0,0,0,0,0,0,0,300,3.6,5,4,48.3,77777,9,999999999,50,0.0610,0,88,999.000,999.0,99.0 +1979,12,17,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-11.7,49,99200,0,0,238,0,0,0,0,0,0,0,280,4.1,3,2,48.3,77777,9,999999999,50,0.0610,0,88,999.000,999.0,99.0 +1979,12,18,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.3,-12.2,51,99100,0,0,226,0,0,0,0,0,0,0,330,3.1,0,0,48.3,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1979,12,18,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-12.2,53,99100,0,0,224,0,0,0,0,0,0,0,320,2.6,0,0,48.3,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1979,12,18,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-12.2,53,99100,0,0,224,0,0,0,0,0,0,0,320,2.6,0,0,48.3,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1979,12,18,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-3.9,-12.2,53,99000,0,0,224,0,0,0,0,0,0,0,320,2.1,0,0,48.3,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1979,12,18,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-11.7,60,99000,0,0,221,0,0,0,0,0,0,0,330,3.1,0,0,48.3,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1979,12,18,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-11.1,63,99000,0,0,221,0,0,0,0,0,0,0,320,2.1,0,0,48.3,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1979,12,18,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.0,-11.7,60,99100,0,0,225,0,0,0,0,0,0,0,320,3.6,1,1,48.3,77777,9,999999999,60,0.0600,0,88,999.000,999.0,99.0 +1979,12,18,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-5.6,-11.7,62,99100,16,530,223,14,68,7,0,0,0,0,310,2.6,1,1,24.1,77777,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1979,12,18,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-2.2,-10.6,53,99100,214,1413,231,114,573,27,12000,43100,5500,580,320,3.1,0,0,32.2,77777,9,999999999,60,0.0410,0,88,999.000,999.0,99.0 +1979,12,18,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-10.0,45,99100,438,1413,249,268,602,81,27600,53400,11000,1500,270,2.6,2,2,32.2,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1979,12,18,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-9.4,39,99100,613,1413,260,421,662,132,43100,62900,15700,2530,250,2.6,8,2,32.2,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1979,12,18,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-10.6,33,99000,725,1413,266,470,671,124,49200,66300,15000,2660,220,2.6,9,3,40.2,77777,9,999999999,69,0.0410,0,88,999.000,999.0,99.0 +1979,12,18,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-10.6,28,98900,766,1413,275,558,732,159,57700,72100,18400,3400,260,2.6,9,3,40.2,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1979,12,18,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-11.1,25,98800,735,1413,278,482,741,95,50200,72800,12200,2020,250,3.1,9,3,40.2,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1979,12,18,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-11.1,22,98800,632,1413,287,383,575,125,39600,55200,14700,2470,220,3.1,9,3,40.2,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1979,12,18,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-11.1,22,98700,466,1413,284,286,624,79,29600,56600,10900,1500,280,3.6,5,2,40.2,77777,9,999999999,80,0.0410,0,88,999.000,999.0,99.0 +1979,12,18,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-11.7,21,98700,247,1413,275,132,551,35,13400,41800,6100,670,270,2.6,3,0,40.2,77777,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1979,12,18,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-12.2,23,98700,31,718,266,26,119,13,1900,4800,1700,240,240,2.6,2,0,40.2,77777,9,999999999,89,0.0410,0,88,999.000,999.0,99.0 +1979,12,18,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-10.6,28,98600,0,0,263,0,0,0,0,0,0,0,240,3.1,2,0,40.2,77777,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1979,12,18,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-10.6,31,98700,0,0,259,0,0,0,0,0,0,0,290,2.1,2,0,40.2,77777,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1979,12,18,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-10.0,35,98600,0,0,255,0,0,0,0,0,0,0,230,3.1,1,0,40.2,77777,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1979,12,18,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-9.4,39,98600,0,0,252,0,0,0,0,0,0,0,270,3.1,0,0,40.2,77777,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1979,12,18,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-8.9,44,98600,0,0,248,0,0,0,0,0,0,0,270,2.6,0,0,32.2,77777,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1979,12,18,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-8.9,44,98600,0,0,248,0,0,0,0,0,0,0,260,2.6,0,0,32.2,77777,9,999999999,89,0.0600,0,88,999.000,999.0,99.0 +1979,12,19,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-8.9,46,98500,0,0,246,0,0,0,0,0,0,0,210,1.5,0,0,32.2,77777,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1979,12,19,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-8.9,48,98500,0,0,244,0,0,0,0,0,0,0,260,2.1,0,0,24.1,77777,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1979,12,19,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.6,-9.4,48,98500,0,0,242,0,0,0,0,0,0,0,250,2.6,0,0,24.1,77777,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1979,12,19,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-8.9,52,98400,0,0,240,0,0,0,0,0,0,0,280,3.6,0,0,24.1,77777,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1979,12,19,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-8.9,52,98400,0,0,240,0,0,0,0,0,0,0,270,3.6,0,0,24.1,77777,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1979,12,19,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-8.9,52,98400,0,0,240,0,0,0,0,0,0,0,300,3.6,0,0,24.1,77777,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1979,12,19,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,0.0,-8.9,52,98500,0,0,240,0,0,0,0,0,0,0,270,3.6,0,0,32.2,77777,9,999999999,89,0.0590,0,88,999.000,999.0,99.0 +1979,12,19,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,-0.6,-8.9,54,98500,15,506,238,18,93,7,0,0,0,0,290,3.1,0,0,32.2,77777,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,12,19,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-8.3,46,98500,211,1413,249,114,598,24,12100,44900,5300,560,290,3.6,0,0,32.2,77777,9,999999999,89,0.0310,0,88,999.000,999.0,99.0 +1979,12,19,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-8.3,39,98500,436,1413,257,286,807,36,30300,73200,7700,940,290,5.2,0,0,32.2,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1979,12,19,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-7.2,35,98500,611,1413,268,437,900,46,46200,86400,8700,1210,290,6.2,0,0,32.2,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1979,12,19,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-7.8,28,98400,724,1413,279,536,940,52,56500,92000,9200,1390,260,5.2,0,0,32.2,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1979,12,19,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-8.3,24,98300,766,1413,285,572,950,55,60300,93400,9500,1470,250,6.7,0,0,40.2,77777,9,999999999,100,0.0310,0,88,999.000,999.0,99.0 +1979,12,19,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-8.9,20,98200,735,1413,293,543,928,58,57100,90900,9600,1480,260,6.2,1,0,40.2,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1979,12,19,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-10.0,18,98200,633,1413,292,456,907,47,48100,87500,8800,1240,250,6.2,0,0,40.2,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1979,12,19,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-9.4,18,98200,467,1413,295,313,829,38,33200,76200,7900,990,250,5.2,0,0,40.2,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1979,12,19,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-8.3,21,98200,249,1413,294,139,627,28,14700,49300,6000,650,240,4.6,1,0,40.2,77777,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1979,12,19,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-7.8,24,98200,32,718,288,26,147,11,1900,6100,1600,210,250,3.6,1,0,32.2,77777,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1979,12,19,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-5.6,35,98200,0,0,279,0,0,0,0,0,0,0,280,3.1,2,0,32.2,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1979,12,19,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-4.4,41,98200,0,0,276,0,0,0,0,0,0,0,270,3.1,2,0,32.2,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1979,12,19,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-3.9,49,98200,0,0,268,0,0,0,0,0,0,0,270,3.6,2,0,32.2,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1979,12,19,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-3.9,51,98200,0,0,266,0,0,0,0,0,0,0,270,4.1,2,0,32.2,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1979,12,19,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-3.9,51,98300,0,0,274,0,0,0,0,0,0,0,280,4.1,6,2,32.2,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1979,12,19,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-3.3,53,98300,0,0,271,0,0,0,0,0,0,0,280,4.6,8,1,32.2,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1979,12,20,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,-3.3,57,98300,0,0,273,0,0,0,0,0,0,0,270,3.1,8,3,24.1,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1979,12,20,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-3.3,60,98300,0,0,271,0,0,0,0,0,0,0,270,4.1,8,3,24.1,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1979,12,20,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-3.3,60,98300,0,0,268,0,0,0,0,0,0,0,280,3.6,7,2,24.1,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1979,12,20,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.3,62,98300,0,0,266,0,0,0,0,0,0,0,270,3.6,8,2,24.1,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1979,12,20,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.3,65,98300,0,0,261,0,0,0,0,0,0,0,280,3.6,5,1,24.1,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1979,12,20,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.3,65,98400,0,0,261,0,0,0,0,0,0,0,280,4.1,5,1,24.1,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1979,12,20,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.3,65,98400,0,0,261,0,0,0,0,0,0,0,320,2.6,5,1,24.1,77777,9,999999999,120,0.0590,0,88,999.000,999.0,99.0 +1979,12,20,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-3.3,62,98500,15,483,266,8,10,7,0,0,0,0,350,2.1,7,2,24.1,77777,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1979,12,20,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-2.2,53,98600,209,1413,294,59,3,58,6400,100,6400,1850,350,3.6,9,7,24.1,7620,9,999999999,120,0.1060,0,88,999.000,999.0,99.0 +1979,12,20,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.7,44,98700,434,1413,313,154,152,107,16900,14000,12600,2400,30,4.6,10,8,24.1,7620,9,999999999,110,0.1060,0,88,999.000,999.0,99.0 +1979,12,20,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-3.3,37,98700,610,1413,316,224,125,170,24500,12500,19100,4060,100,5.2,10,8,24.1,7620,9,999999999,110,0.1060,0,88,999.000,999.0,99.0 +1979,12,20,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-3.9,35,98700,723,1413,307,462,453,229,49100,47100,24900,5330,100,5.7,9,6,24.1,7620,9,999999999,110,0.1060,0,88,999.000,999.0,99.0 +1979,12,20,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-3.9,29,98600,766,1413,312,420,283,267,44500,29600,28400,6510,90,6.2,8,3,24.1,77777,9,999999999,110,0.1060,0,88,999.000,999.0,99.0 +1979,12,20,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-4.4,27,98500,735,1413,313,451,540,169,47900,54500,19500,3620,110,4.6,8,3,24.1,77777,9,999999999,110,0.1060,0,88,999.000,999.0,99.0 +1979,12,20,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-4.4,26,98500,634,1413,316,362,370,196,38500,37500,21500,4340,90,6.2,8,3,24.1,77777,9,999999999,110,0.1060,0,88,999.000,999.0,99.0 +1979,12,20,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-4.4,26,98500,468,1413,318,220,253,136,23300,23600,15400,2790,100,4.6,9,4,24.1,77777,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1979,12,20,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-3.9,29,98600,251,1413,314,88,119,67,9600,8800,8000,1430,80,5.7,10,4,24.1,77777,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1979,12,20,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-3.9,34,98700,33,742,310,12,6,11,1200,300,1200,280,70,5.7,10,6,24.1,7620,9,999999999,100,0.1060,0,88,999.000,999.0,99.0 +1979,12,20,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-3.9,36,98700,0,0,298,0,0,0,0,0,0,0,90,5.7,9,3,24.1,77777,9,999999999,100,0.0590,0,88,999.000,999.0,99.0 +1979,12,20,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-3.9,36,98800,0,0,308,0,0,0,0,0,0,0,90,6.7,10,7,24.1,7620,9,999999999,100,0.0590,0,88,999.000,999.0,99.0 +1979,12,20,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-3.9,39,98800,0,0,297,0,0,0,0,0,0,0,80,6.2,10,5,24.1,77777,9,999999999,100,0.0590,0,88,999.000,999.0,99.0 +1979,12,20,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-3.9,42,98800,0,0,285,0,0,0,0,0,0,0,70,6.2,8,2,24.1,77777,9,999999999,100,0.0590,0,88,999.000,999.0,99.0 +1979,12,20,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-3.3,47,98900,0,0,281,0,0,0,0,0,0,0,90,6.7,8,2,24.1,77777,9,999999999,100,0.0590,0,88,999.000,999.0,99.0 +1979,12,20,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-3.3,49,98900,0,0,279,0,0,0,0,0,0,0,80,6.7,5,2,24.1,77777,9,999999999,100,0.0590,0,88,999.000,999.0,99.0 +1979,12,21,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-3.3,53,98900,0,0,271,0,0,0,0,0,0,0,70,6.2,5,1,24.1,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,12,21,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,-3.3,55,98900,0,0,269,0,0,0,0,0,0,0,60,5.7,4,1,24.1,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,12,21,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,-3.3,60,98900,0,0,265,0,0,0,0,0,0,0,70,5.2,4,1,24.1,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,12,21,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,-3.3,65,98900,0,0,261,0,0,0,0,0,0,0,80,6.2,4,1,24.1,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,12,21,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-2.2,76,98900,0,0,261,0,0,0,0,0,0,0,70,6.2,5,2,19.3,77777,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,12,21,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.1,-1.7,82,99000,0,0,271,0,0,0,0,0,0,0,70,7.7,8,7,16.1,340,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,12,21,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-1.1,82,99000,0,0,293,0,0,0,0,0,0,0,70,6.7,10,10,12.9,310,9,999999999,89,0.0580,0,88,999.000,999.0,99.0 +1979,12,21,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-0.6,85,99000,14,483,285,7,2,7,0,0,0,0,80,8.2,10,9,8.0,310,9,999999999,89,0.0710,0,88,999.000,999.0,99.0 +1979,12,21,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-0.6,82,99000,207,1414,295,50,3,49,5500,0,5500,1650,80,6.7,10,10,9.7,270,9,999999999,100,0.0710,0,88,999.000,999.0,99.0 +1979,12,21,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,0.0,82,99100,432,1414,299,169,9,166,18400,700,18100,5060,90,8.2,10,10,11.3,370,9,999999999,100,0.0710,0,88,999.000,999.0,99.0 +1979,12,21,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,0.0,73,99100,608,1414,306,221,4,219,24400,400,24300,7560,60,7.2,10,10,14.5,430,9,999999999,110,0.0710,0,88,999.000,999.0,99.0 +1979,12,21,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,0.0,70,99000,722,1414,308,252,10,247,28300,900,27800,9190,50,7.2,10,10,14.5,670,9,999999999,110,0.0710,0,88,999.000,999.0,99.0 +1979,12,21,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,0.0,68,99000,766,1414,311,247,8,243,28000,700,27600,9480,60,6.2,10,10,16.1,700,9,999999999,110,0.0710,0,88,999.000,999.0,99.0 +1979,12,21,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,0.6,68,98900,736,1414,314,276,1,275,30700,100,30600,9880,80,5.7,10,10,19.3,700,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1979,12,21,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.1,68,98800,635,1414,317,207,2,206,23200,200,23100,7550,100,5.2,10,10,19.3,820,9,999999999,120,0.0710,0,88,999.000,999.0,99.0 +1979,12,21,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.1,65,98800,470,1414,319,144,2,143,16000,100,15900,4990,110,6.2,10,10,19.3,700,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1979,12,21,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.1,68,98800,253,1414,317,69,1,69,7700,0,7600,2260,110,6.2,10,10,19.3,820,9,999999999,129,0.0710,0,88,999.000,999.0,99.0 +1979,12,21,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.1,71,98800,34,742,314,13,0,13,1500,0,1500,460,70,6.2,10,10,19.3,850,9,999999999,139,0.0710,0,88,999.000,999.0,99.0 +1979,12,21,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.1,73,98800,0,0,312,0,0,0,0,0,0,0,80,5.2,10,10,19.3,880,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1979,12,21,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.1,73,98800,0,0,312,0,0,0,0,0,0,0,80,5.7,10,10,19.3,980,9,999999999,139,0.0580,0,88,999.000,999.0,99.0 +1979,12,21,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.1,73,98800,0,0,312,0,0,0,0,0,0,0,90,5.2,10,10,19.3,980,9,999999999,150,0.0580,0,88,999.000,999.0,99.0 +1979,12,21,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.7,76,98700,0,0,313,0,0,0,0,0,0,0,90,6.7,10,10,19.3,1070,9,999999999,150,0.0580,0,88,999.000,999.0,99.0 +1979,12,21,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.7,76,98700,0,0,313,0,0,0,0,0,0,0,90,6.2,10,10,19.3,1070,9,999999999,150,0.0580,0,88,999.000,999.0,99.0 +1979,12,21,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.7,76,98600,0,0,313,0,0,0,0,0,0,0,100,6.2,10,10,19.3,1070,9,999999999,160,0.0580,0,88,999.000,999.0,99.0 +1979,12,22,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.2,79,98700,0,0,305,0,0,0,0,0,0,0,100,5.2,10,9,19.3,1220,9,999999999,160,0.0570,0,88,999.000,999.0,99.0 +1979,12,22,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,98500,0,0,291,0,0,0,0,0,0,0,100,6.2,7,7,19.3,1370,9,999999999,160,0.0570,0,88,999.000,999.0,99.0 +1979,12,22,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,98500,0,0,275,0,0,0,0,0,0,0,100,5.7,3,2,19.3,77777,9,999999999,170,0.0570,0,88,999.000,999.0,99.0 +1979,12,22,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,98500,0,0,307,0,0,0,0,0,0,0,80,5.2,10,10,12.9,1220,9,999999999,170,0.0570,0,88,999.000,999.0,99.0 +1979,12,22,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,98500,0,0,293,0,0,0,0,0,0,0,70,5.7,8,8,12.9,1220,9,999999999,170,0.0570,0,88,999.000,999.0,99.0 +1979,12,22,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,98500,0,0,310,0,0,0,0,0,0,0,60,5.2,10,10,12.9,1220,9,999999999,179,0.0570,0,88,999.000,999.0,99.0 +1979,12,22,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,98600,0,0,310,0,0,0,0,0,0,0,60,5.7,10,10,12.9,1160,9,999999999,179,0.0570,0,88,999.000,999.0,99.0 +1979,12,22,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,98600,13,459,310,9,0,9,0,0,0,0,70,6.2,10,10,11.3,1160,9,999999999,179,0.0250,0,88,999.000,999.0,99.0 +1979,12,22,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,98700,205,1414,311,43,1,42,4800,0,4800,1470,70,4.1,10,10,11.3,850,9,999999999,189,0.0250,0,88,999.000,999.0,99.0 +1979,12,22,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,2.8,79,98700,430,1414,316,152,2,151,16600,100,16600,4840,140,3.6,10,10,11.3,850,9,999999999,189,0.0250,0,88,999.000,999.0,99.0 +1979,12,22,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,2.8,76,98600,607,1414,319,219,0,219,24200,0,24200,7550,90,6.7,10,10,11.3,850,9,999999999,200,0.0250,0,88,999.000,999.0,99.0 +1979,12,22,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,98400,721,1414,325,256,1,256,28700,100,28600,9360,90,5.2,10,10,11.3,980,9,999999999,200,0.0250,0,88,999.000,999.0,99.0 +1979,12,22,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,3.3,68,98400,766,1414,330,284,1,284,31800,100,31700,10370,80,5.2,10,10,11.3,2740,9,999999999,200,0.0250,0,88,999.000,999.0,99.0 +1979,12,22,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,5.0,74,98300,736,1414,334,259,0,259,29000,0,29000,9570,130,5.7,10,10,11.3,3050,9,999999999,209,0.0250,0,88,999.000,999.0,99.0 +1979,12,22,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.0,71,98200,636,1414,337,222,2,221,24700,200,24600,7860,110,5.2,10,10,11.3,640,9,999999999,209,0.0250,0,88,999.000,999.0,99.0 +1979,12,22,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.0,71,98200,472,1414,337,161,1,160,17700,100,17600,5320,140,4.1,10,10,11.3,550,9,999999999,220,0.0250,0,88,999.000,999.0,99.0 +1979,12,22,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,6.1,72,98300,255,1414,343,49,1,49,5600,0,5600,1790,110,4.1,10,10,16.1,460,9,999999999,220,0.0250,0,88,999.000,999.0,99.0 +1979,12,22,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.7,80,98300,35,766,339,22,0,22,2400,0,2400,670,150,3.1,10,10,16.1,460,9,999999999,229,0.0250,0,88,999.000,999.0,99.0 +1979,12,22,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,7.2,83,98300,0,0,339,0,0,0,0,0,0,0,110,4.6,10,10,16.1,400,9,999999999,229,0.0570,0,88,999.000,999.0,99.0 +1979,12,22,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,7.2,86,98300,0,0,336,0,0,0,0,0,0,0,120,4.6,10,10,16.1,310,9,999999999,220,0.0570,0,88,999.000,999.0,99.0 +1979,12,22,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,6.7,86,98300,0,0,334,0,0,0,0,0,0,0,110,4.6,10,10,16.1,310,9,999999999,220,0.0570,0,88,999.000,999.0,99.0 +1979,12,22,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,98300,0,0,331,0,0,0,0,0,0,0,100,5.2,10,10,16.1,310,9,999999999,209,0.0570,0,88,999.000,999.0,99.0 +1979,12,22,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,6.7,89,98300,0,0,331,0,0,0,0,0,0,0,100,5.2,10,10,16.1,310,9,999999999,200,0.0570,0,88,999.000,999.0,99.0 +1979,12,22,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,98300,0,0,328,0,0,0,0,0,0,0,120,4.6,10,10,12.9,310,9,999999999,200,0.0570,0,88,999.000,999.0,99.0 +1979,12,23,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,6.7,93,98300,0,0,328,0,0,0,0,0,0,0,110,4.6,10,10,11.3,180,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,12,23,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,98300,0,0,329,0,0,0,0,0,0,0,90,5.7,10,10,9.7,120,9,999999999,179,0.0570,0,88,999.000,999.0,99.0 +1979,12,23,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,98400,0,0,330,0,0,0,0,0,0,0,80,4.1,10,10,6.4,90,9,999999999,179,0.0570,0,88,999.000,999.0,99.0 +1979,12,23,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,98300,0,0,330,0,0,0,0,0,0,0,100,3.6,10,10,1.6,60,9,999999999,170,0.0570,0,88,999.000,999.0,99.0 +1979,12,23,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,98300,0,0,330,0,0,0,0,0,0,0,90,3.6,10,10,0.4,0,9,999999999,160,0.0570,0,88,999.000,999.0,99.0 +1979,12,23,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,98300,0,0,330,0,0,0,0,0,0,0,110,4.1,10,10,0.4,0,9,999999999,160,0.0570,0,88,999.000,999.0,99.0 +1979,12,23,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,98300,0,0,332,0,0,0,0,0,0,0,100,4.1,10,10,0.4,0,9,999999999,150,0.0570,0,88,999.000,999.0,99.0 +1979,12,23,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,98400,12,460,330,8,0,8,0,0,0,0,100,4.1,10,10,0.4,0,9,999999999,150,0.0460,0,88,999.000,999.0,99.0 +1979,12,23,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,98300,203,1414,330,66,1,66,7200,0,7200,1960,110,5.2,10,10,0.4,0,9,999999999,150,0.0460,0,88,999.000,999.0,99.0 +1979,12,23,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,98400,429,1414,330,141,1,141,15600,100,15500,4660,130,4.1,10,10,0.4,0,9,999999999,160,0.0460,0,88,999.000,999.0,99.0 +1979,12,23,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,8.3,100,98400,606,1414,332,211,1,211,23500,100,23400,7400,80,3.6,10,10,0.4,30,9,999999999,160,0.0460,0,88,999.000,999.0,99.0 +1979,12,23,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,98400,721,1414,338,248,2,247,27800,200,27700,9180,120,4.1,10,10,1.6,60,9,999999999,160,0.0460,0,88,999.000,999.0,99.0 +1979,12,23,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,9.4,96,98200,766,1414,342,278,1,277,31100,100,31000,10230,110,4.1,10,10,2.4,90,9,999999999,160,0.0460,0,88,999.000,999.0,99.0 +1979,12,23,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,9.4,86,98200,737,1414,328,304,175,213,33300,18100,23900,5390,120,5.2,8,7,9.7,3050,9,999999999,170,0.0460,0,88,999.000,999.0,99.0 +1979,12,23,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,98100,637,1414,352,228,12,222,25300,1100,24800,7890,120,4.6,10,10,9.7,270,9,999999999,170,0.0460,0,88,999.000,999.0,99.0 +1979,12,23,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,8.9,80,98100,473,1414,352,127,10,124,14300,700,14100,4570,110,5.2,10,10,9.7,270,9,999999999,170,0.0460,0,88,999.000,999.0,99.0 +1979,12,23,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,98100,257,1414,353,64,2,63,7100,100,7100,2150,110,5.2,10,10,9.7,270,9,999999999,179,0.0460,0,88,999.000,999.0,99.0 +1979,12,23,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,10.0,86,98100,36,766,353,12,2,11,1300,0,1300,400,110,4.6,10,10,9.7,910,9,999999999,179,0.0460,0,88,999.000,999.0,99.0 +1979,12,23,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,98100,0,0,348,0,0,0,0,0,0,0,110,5.7,10,10,9.7,910,9,999999999,179,0.0570,0,88,999.000,999.0,99.0 +1979,12,23,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,98100,0,0,351,0,0,0,0,0,0,0,120,6.7,10,10,9.7,910,9,999999999,179,0.0570,0,88,999.000,999.0,99.0 +1979,12,23,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,10.0,96,98100,0,0,345,0,0,0,0,0,0,0,120,6.7,10,10,8.0,150,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,12,23,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,98100,0,0,348,0,0,0,0,0,0,0,120,5.7,10,10,6.4,150,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,12,23,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,98100,0,0,348,0,0,0,0,0,0,0,120,5.7,10,10,6.4,120,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,12,23,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.0,93,98000,0,0,348,0,0,0,0,0,0,0,120,6.7,10,10,1.6,60,9,999999999,189,0.0570,0,88,999.000,999.0,99.0 +1979,12,24,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,10.6,96,97900,0,0,349,0,0,0,0,0,0,0,130,5.2,10,10,0.4,0,9,999999999,200,0.0560,0,88,999.000,999.0,99.0 +1979,12,24,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.1,96,97900,0,0,352,0,0,0,0,0,0,0,120,3.6,10,10,0.4,0,9,999999999,200,0.0560,0,88,999.000,999.0,99.0 +1979,12,24,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.7,100,97900,0,0,353,0,0,0,0,0,0,0,130,4.1,10,10,0.8,30,9,999999999,200,0.0560,0,88,999.000,999.0,99.0 +1979,12,24,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,11.7,100,97700,0,0,353,0,0,0,0,0,0,0,130,6.7,10,10,0.4,30,9,999999999,200,0.0560,0,88,999.000,999.0,99.0 +1979,12,24,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,97600,0,0,356,0,0,0,0,0,0,0,140,6.2,10,10,0.4,30,9,999999999,200,0.0560,0,88,999.000,999.0,99.0 +1979,12,24,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,12.2,100,97600,0,0,356,0,0,0,0,0,0,0,160,6.7,10,10,3.2,90,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1979,12,24,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,96,97500,0,0,362,0,0,0,0,0,0,0,150,7.2,10,10,6.4,90,9,999999999,209,0.0560,0,88,999.000,999.0,99.0 +1979,12,24,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,12.8,96,97400,12,436,345,11,5,10,0,0,0,0,160,6.7,10,8,11.3,210,9,999999999,209,0.0270,0,88,999.000,999.0,99.0 +1979,12,24,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,13.3,90,97400,201,1414,371,59,0,59,6500,0,6500,1830,160,7.7,10,10,11.3,270,9,999999999,200,0.0270,0,88,999.000,999.0,99.0 +1979,12,24,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,13.9,84,97300,427,1414,381,102,18,97,11600,1000,11300,3660,170,8.2,10,10,6.4,340,9,999999999,200,0.0270,0,88,999.000,999.0,99.0 +1979,12,24,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,14.4,97,97400,605,1414,373,130,1,130,15100,100,15000,5370,240,9.8,10,10,2.4,150,9,999999999,189,0.0270,0,88,999.000,999.0,99.0 +1979,12,24,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,11.7,90,97400,721,1414,361,128,7,124,15100,500,14900,5600,280,7.7,10,10,9.7,1830,9,999999999,189,0.0270,0,88,999.000,999.0,99.0 +1979,12,24,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,97400,766,1414,358,151,8,146,17700,600,17400,6570,210,5.7,10,10,4.8,1370,9,999999999,189,0.0270,0,88,999.000,999.0,99.0 +1979,12,24,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,97200,738,1414,358,143,8,139,16900,600,16500,6210,220,5.7,10,10,4.8,270,9,999999999,179,0.0270,0,88,999.000,999.0,99.0 +1979,12,24,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,11.7,96,97100,639,1414,355,204,3,203,22900,300,22800,7510,220,6.2,10,10,16.1,240,9,999999999,179,0.0270,0,88,999.000,999.0,99.0 +1979,12,24,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.7,93,97100,475,1414,358,162,4,161,17900,300,17800,5370,210,5.7,10,10,19.3,310,9,999999999,170,0.0270,0,88,999.000,999.0,99.0 +1979,12,24,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,11.1,90,97100,259,1414,340,70,80,56,7800,6100,6700,1200,230,7.7,8,8,32.2,460,9,999999999,170,0.0270,0,88,999.000,999.0,99.0 +1979,12,24,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,10.0,90,97100,38,790,320,15,29,12,1500,900,1400,200,240,6.2,4,4,32.2,77777,9,999999999,160,0.0270,0,88,999.000,999.0,99.0 +1979,12,24,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,7.2,77,97200,0,0,309,0,0,0,0,0,0,0,240,5.2,2,2,32.2,77777,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1979,12,24,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,5.0,69,97200,0,0,323,0,0,0,0,0,0,0,250,6.2,8,8,32.2,1160,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1979,12,24,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,5.6,74,97200,0,0,338,0,0,0,0,0,0,0,270,7.7,10,10,32.2,1160,9,999999999,160,0.0560,0,88,999.000,999.0,99.0 +1979,12,24,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,6.1,77,97300,0,0,338,0,0,0,0,0,0,0,270,8.8,10,10,32.2,850,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1979,12,24,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,5.0,77,97300,0,0,304,0,0,0,0,0,0,0,270,7.7,5,5,32.2,77777,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1979,12,24,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,5.0,80,97300,0,0,329,0,0,0,0,0,0,0,260,7.2,10,10,32.2,850,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1979,12,25,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,97200,0,0,306,0,0,0,0,0,0,0,280,7.7,7,7,32.2,2440,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1979,12,25,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,5.0,83,97200,0,0,326,0,0,0,0,0,0,0,250,6.2,10,10,32.2,460,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1979,12,25,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.9,77,97100,0,0,305,0,0,0,0,0,0,0,270,7.7,7,7,24.1,760,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1979,12,25,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,2.8,71,97200,0,0,324,0,0,0,0,0,0,0,250,8.2,10,10,24.1,760,9,999999999,150,0.0560,0,88,999.000,999.0,99.0 +1979,12,25,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,3.3,74,97100,0,0,325,0,0,0,0,0,0,0,270,7.7,10,10,24.1,490,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,12,25,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,3.9,83,97100,0,0,320,0,0,0,0,0,0,0,270,10.3,10,10,24.1,370,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,12,25,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,3.9,86,97200,0,0,317,0,0,0,0,0,0,0,280,9.8,10,10,24.1,400,9,999999999,139,0.0560,0,88,999.000,999.0,99.0 +1979,12,25,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,97300,11,436,314,4,0,4,0,0,0,0,280,9.8,10,10,24.1,490,9,999999999,139,0.0390,0,88,999.000,999.0,99.0 +1979,12,25,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.2,82,97300,199,1414,311,40,1,40,4500,0,4500,1410,280,8.2,10,10,19.3,400,9,999999999,139,0.0390,0,88,999.000,999.0,99.0 +1979,12,25,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,97400,426,1414,311,73,11,70,8500,500,8400,2850,280,8.8,10,10,19.3,580,9,999999999,129,0.0390,0,88,999.000,999.0,99.0 +1979,12,25,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,2.8,83,97400,604,1414,314,184,2,183,20600,200,20600,6800,280,10.3,10,10,19.3,580,9,999999999,129,0.0390,0,88,999.000,999.0,99.0 +1979,12,25,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,2.8,86,97500,720,1414,311,210,8,206,23900,700,23500,8200,310,9.8,10,10,24.1,580,9,999999999,129,0.0390,0,88,999.000,999.0,99.0 +1979,12,25,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.8,89,97400,766,1414,309,137,1,136,16200,100,16100,6200,310,9.3,10,10,12.9,400,9,999999999,129,0.0390,0,88,999.000,999.0,99.0 +1979,12,25,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.7,73,97400,739,1414,306,249,82,206,27400,8200,23100,6380,300,9.8,10,9,19.3,700,9,999999999,120,0.0390,0,88,999.000,999.0,99.0 +1979,12,25,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,97400,641,1414,318,204,9,200,22900,800,22600,7460,300,8.2,10,10,24.1,640,9,999999999,120,0.0390,0,88,999.000,999.0,99.0 +1979,12,25,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.7,73,97500,477,1414,315,131,10,128,14800,700,14500,4690,310,8.2,10,10,32.2,700,9,999999999,120,0.0390,0,88,999.000,999.0,99.0 +1979,12,25,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.7,76,97500,261,1414,313,77,10,75,8500,400,8400,2420,310,7.7,10,10,48.3,700,9,999999999,110,0.0390,0,88,999.000,999.0,99.0 +1979,12,25,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,97600,39,790,310,15,1,15,1700,0,1700,520,310,7.7,10,10,32.2,610,9,999999999,110,0.0390,0,88,999.000,999.0,99.0 +1979,12,25,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.1,76,97700,0,0,309,0,0,0,0,0,0,0,320,8.2,10,10,24.1,610,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1979,12,25,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.1,76,97700,0,0,309,0,0,0,0,0,0,0,320,6.7,10,10,24.1,460,9,999999999,110,0.0560,0,88,999.000,999.0,99.0 +1979,12,25,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,97700,0,0,307,0,0,0,0,0,0,0,310,6.2,10,10,24.1,460,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1979,12,25,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,97800,0,0,307,0,0,0,0,0,0,0,310,6.2,10,10,24.1,400,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1979,12,25,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,97800,0,0,307,0,0,0,0,0,0,0,310,6.7,10,10,24.1,400,9,999999999,100,0.0560,0,88,999.000,999.0,99.0 +1979,12,25,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.7,82,97800,0,0,307,0,0,0,0,0,0,0,310,5.2,10,10,19.3,370,9,999999999,89,0.0560,0,88,999.000,999.0,99.0 +1979,12,26,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,97800,0,0,308,0,0,0,0,0,0,0,320,6.2,10,10,24.1,370,9,999999999,89,0.0550,0,88,999.000,999.0,99.0 +1979,12,26,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,2.2,86,97800,0,0,308,0,0,0,0,0,0,0,330,6.7,10,10,19.3,370,9,999999999,89,0.0550,0,88,999.000,999.0,99.0 +1979,12,26,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,97900,0,0,305,0,0,0,0,0,0,0,300,7.7,10,10,19.3,370,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1979,12,26,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,97900,0,0,305,0,0,0,0,0,0,0,290,5.7,10,10,19.3,370,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1979,12,26,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.7,86,97900,0,0,305,0,0,0,0,0,0,0,320,7.7,10,10,19.3,370,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1979,12,26,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,97900,0,0,302,0,0,0,0,0,0,0,340,6.7,10,10,19.3,310,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1979,12,26,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,98000,0,0,303,0,0,0,0,0,0,0,310,7.2,10,10,19.3,310,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1979,12,26,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.7,89,98000,11,436,294,4,0,4,0,0,0,0,320,8.2,10,9,19.3,310,9,999999999,69,0.1170,0,88,999.000,999.0,99.0 +1979,12,26,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,98100,198,1414,294,39,15,36,4200,1100,4000,920,310,7.7,9,9,24.1,340,9,999999999,69,0.1170,0,88,999.000,999.0,99.0 +1979,12,26,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.7,79,98200,425,1414,278,233,494,84,23900,43300,10800,1530,320,7.7,3,2,32.2,77777,9,999999999,80,0.1170,0,88,999.000,999.0,99.0 +1979,12,26,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.7,71,98200,604,1414,281,380,617,115,39200,58900,14000,2250,320,7.2,4,1,32.2,77777,9,999999999,80,0.1170,0,88,999.000,999.0,99.0 +1979,12,26,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.7,63,98200,720,1414,282,513,742,133,53300,73000,16000,2810,320,7.2,6,0,32.2,77777,9,999999999,80,0.1170,0,88,999.000,999.0,99.0 +1979,12,26,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,1.7,59,98100,767,1414,286,555,768,137,58000,76200,16500,3010,310,7.2,5,0,32.2,77777,9,999999999,80,0.1170,0,88,999.000,999.0,99.0 +1979,12,26,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,1.7,51,98100,740,1414,296,525,763,124,55100,75600,15300,2690,290,6.7,4,0,40.2,77777,9,999999999,80,0.1170,0,88,999.000,999.0,99.0 +1979,12,26,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.7,49,98000,642,1414,298,445,698,127,46000,67200,15300,2520,300,5.7,6,0,40.2,77777,9,999999999,80,0.1170,0,88,999.000,999.0,99.0 +1979,12,26,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,1.7,49,98000,480,1414,298,300,605,94,30800,54800,12100,1740,320,5.2,5,0,40.2,77777,9,999999999,89,0.1170,0,88,999.000,999.0,99.0 +1979,12,26,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,1.1,54,98000,264,1414,288,127,413,51,13100,30600,7400,910,310,5.2,1,0,40.2,77777,9,999999999,89,0.1170,0,88,999.000,999.0,99.0 +1979,12,26,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,1.1,61,98100,40,813,281,21,46,17,2100,1400,2000,300,310,5.2,1,0,24.1,77777,9,999999999,89,0.1170,0,88,999.000,999.0,99.0 +1979,12,26,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,1.1,68,98100,0,0,275,0,0,0,0,0,0,0,310,4.1,0,0,24.1,77777,9,999999999,89,0.0550,0,88,999.000,999.0,99.0 +1979,12,26,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.1,73,98100,0,0,270,0,0,0,0,0,0,0,300,3.6,0,0,24.1,77777,9,999999999,89,0.0550,0,88,999.000,999.0,99.0 +1979,12,26,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,1.1,79,98100,0,0,266,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,89,0.0550,0,88,999.000,999.0,99.0 +1979,12,26,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,98100,0,0,264,0,0,0,0,0,0,0,300,6.2,0,0,24.1,77777,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1979,12,26,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.6,82,98100,0,0,261,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1979,12,26,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,0.6,82,98100,0,0,261,0,0,0,0,0,0,0,300,4.1,0,0,24.1,77777,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1979,12,27,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,0.6,85,98100,0,0,259,0,0,0,0,0,0,0,300,5.7,0,0,24.1,77777,9,999999999,80,0.0550,0,88,999.000,999.0,99.0 +1979,12,27,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,0.6,85,98100,0,0,259,0,0,0,0,0,0,0,300,6.7,0,0,24.1,77777,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1979,12,27,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,98100,0,0,257,0,0,0,0,0,0,0,310,7.2,0,0,24.1,77777,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1979,12,27,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.6,89,98100,0,0,257,0,0,0,0,0,0,0,300,5.2,0,0,24.1,77777,9,999999999,69,0.0550,0,88,999.000,999.0,99.0 +1979,12,27,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,98200,0,0,256,0,0,0,0,0,0,0,310,5.7,0,0,24.1,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1979,12,27,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,0.0,85,98200,0,0,256,0,0,0,0,0,0,0,310,5.2,0,0,24.1,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1979,12,27,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,1.7,-0.6,85,98200,0,0,254,0,0,0,0,0,0,0,320,6.2,0,0,32.2,77777,9,999999999,60,0.0550,0,88,999.000,999.0,99.0 +1979,12,27,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,-1.1,79,98300,10,413,255,8,28,5,0,0,0,0,310,7.7,0,0,32.2,77777,9,999999999,69,0.0720,0,88,999.000,999.0,99.0 +1979,12,27,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,-1.1,73,98300,196,1415,265,94,408,37,9600,26700,5900,660,320,6.2,1,1,24.1,77777,9,999999999,69,0.0720,0,88,999.000,999.0,99.0 +1979,12,27,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-0.6,63,98400,424,1415,271,265,707,52,27500,63300,8400,1050,300,4.1,0,0,32.2,77777,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1979,12,27,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,-0.6,50,98400,603,1415,284,413,792,74,43100,76000,10500,1530,300,5.2,2,0,32.2,77777,9,999999999,80,0.0720,0,88,999.000,999.0,99.0 +1979,12,27,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-1.7,37,98400,721,1415,306,472,731,99,50300,72800,13000,2180,300,5.2,4,2,32.2,77777,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1979,12,27,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.7,32,98300,768,1415,316,525,687,151,54500,67800,17600,3260,300,5.2,6,2,32.2,77777,9,999999999,89,0.0720,0,88,999.000,999.0,99.0 +1979,12,27,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-2.2,28,98200,742,1415,326,495,579,190,52000,58400,21300,4140,300,5.2,8,3,32.2,77777,9,999999999,100,0.0720,0,88,999.000,999.0,99.0 +1979,12,27,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,18.3,-2.2,25,98200,644,1415,336,420,574,158,44200,56600,18300,3230,300,5.7,9,4,32.2,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1979,12,27,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,16.7,-1.1,30,98200,482,1415,330,226,330,113,23700,30400,13300,2150,340,6.2,10,4,32.2,77777,9,999999999,110,0.0720,0,88,999.000,999.0,99.0 +1979,12,27,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-1.1,33,98300,266,1415,325,98,120,75,10600,9100,8900,1610,300,5.2,10,5,32.2,77777,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1979,12,27,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.1,37,98300,42,837,315,25,27,22,2600,1100,2500,450,310,5.7,8,4,24.1,77777,9,999999999,120,0.0720,0,88,999.000,999.0,99.0 +1979,12,27,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-0.6,43,98300,0,0,306,0,0,0,0,0,0,0,330,6.2,7,3,24.1,77777,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,12,27,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,0.0,48,98400,0,0,302,0,0,0,0,0,0,0,340,5.7,8,3,24.1,77777,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,12,27,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,0.6,54,98400,0,0,297,0,0,0,0,0,0,0,310,4.6,8,3,24.1,77777,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,12,27,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,0.6,58,98400,0,0,293,0,0,0,0,0,0,0,320,5.2,8,3,24.1,77777,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,12,27,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,0.6,61,98400,0,0,291,0,0,0,0,0,0,0,360,2.6,10,3,24.1,77777,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,12,27,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,1.1,65,98400,0,0,289,0,0,0,0,0,0,0,320,5.2,10,3,24.1,77777,9,999999999,129,0.0550,0,88,999.000,999.0,99.0 +1979,12,28,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,1.1,73,98400,0,0,276,0,0,0,0,0,0,0,320,5.7,3,1,24.1,77777,9,999999999,129,0.0540,0,88,999.000,999.0,99.0 +1979,12,28,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,1.1,76,98400,0,0,273,0,0,0,0,0,0,0,350,3.1,3,1,24.1,77777,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1979,12,28,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.9,1.1,82,98400,0,0,269,0,0,0,0,0,0,0,340,4.6,2,1,24.1,77777,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1979,12,28,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,3.3,1.1,86,98500,0,0,262,0,0,0,0,0,0,0,350,4.1,0,0,16.1,77777,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1979,12,28,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,98600,0,0,260,0,0,0,0,0,0,0,340,4.6,0,0,12.9,77777,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1979,12,28,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,98600,0,0,265,0,0,0,0,0,0,0,340,3.1,1,1,12.9,77777,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1979,12,28,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.2,1.1,92,98700,0,0,269,0,0,0,0,0,0,0,360,4.1,4,3,11.3,77777,9,999999999,120,0.0540,0,88,999.000,999.0,99.0 +1979,12,28,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,2.8,1.1,89,98800,10,413,281,6,4,6,0,0,0,0,10,4.1,8,7,11.3,7620,9,999999999,120,0.0600,0,88,999.000,999.0,99.0 +1979,12,28,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,1.1,71,98900,195,1415,284,87,180,62,9000,10800,7500,1220,80,6.2,5,3,12.9,77777,9,999999999,120,0.0600,0,88,999.000,999.0,99.0 +1979,12,28,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,0.6,65,99000,423,1415,293,183,235,112,19400,21200,13000,2220,70,5.7,8,6,12.9,7620,9,999999999,120,0.0600,0,88,999.000,999.0,99.0 +1979,12,28,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,0.6,56,99100,603,1415,311,233,113,185,25400,11300,20500,4400,90,6.2,10,8,19.3,2740,9,999999999,120,0.0600,0,88,999.000,999.0,99.0 +1979,12,28,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-0.6,48,99000,721,1415,314,328,115,270,36000,11600,30100,7710,70,7.2,10,8,19.3,2740,9,999999999,120,0.0600,0,88,999.000,999.0,99.0 +1979,12,28,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-0.6,45,99000,769,1415,326,359,68,322,39300,6900,35500,9160,70,6.7,10,9,24.1,2740,9,999999999,110,0.0600,0,88,999.000,999.0,99.0 +1979,12,28,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-0.6,40,98900,743,1415,334,281,70,244,30800,7000,27100,7310,60,5.2,10,9,24.1,2440,9,999999999,110,0.0600,0,88,999.000,999.0,99.0 +1979,12,28,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-0.6,39,98900,646,1415,346,186,9,182,21100,700,20800,7060,110,5.2,10,10,24.1,7620,9,999999999,110,0.0600,0,88,999.000,999.0,99.0 +1979,12,28,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.8,-0.6,40,98900,484,1415,334,218,48,202,23900,4600,22300,4870,100,5.2,10,9,24.1,7620,9,999999999,110,0.0600,0,88,999.000,999.0,99.0 +1979,12,28,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.1,40,99000,269,1415,331,105,50,96,11500,4100,10700,2180,80,4.1,10,9,24.1,7620,9,999999999,110,0.0600,0,88,999.000,999.0,99.0 +1979,12,28,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-1.7,41,99000,44,837,325,13,7,12,1400,400,1300,300,80,4.6,10,9,24.1,7620,9,999999999,110,0.0600,0,88,999.000,999.0,99.0 +1979,12,28,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,-1.1,46,99000,0,0,321,0,0,0,0,0,0,0,70,5.2,10,9,24.1,7620,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1979,12,28,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.1,50,99000,0,0,316,0,0,0,0,0,0,0,70,5.2,10,9,24.1,7620,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1979,12,28,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,-1.1,52,99000,0,0,313,0,0,0,0,0,0,0,80,4.6,10,9,24.1,7620,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1979,12,28,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.1,54,99000,0,0,320,0,0,0,0,0,0,0,50,5.2,10,10,24.1,7620,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1979,12,28,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.1,54,99000,0,0,320,0,0,0,0,0,0,0,60,4.6,10,10,24.1,6710,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1979,12,28,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,-1.7,52,98900,0,0,319,0,0,0,0,0,0,0,90,5.2,10,10,24.1,6710,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1979,12,29,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,-1.7,56,98900,0,0,305,0,0,0,0,0,0,0,90,4.1,10,9,24.1,7620,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1979,12,29,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.7,58,98800,0,0,303,0,0,0,0,0,0,0,80,4.6,10,9,24.1,7620,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1979,12,29,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.7,60,98800,0,0,300,0,0,0,0,0,0,0,140,3.1,10,9,24.1,7620,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1979,12,29,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.7,60,98900,0,0,309,0,0,0,0,0,0,0,100,3.1,10,10,24.1,7620,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1979,12,29,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.7,60,98800,0,0,309,0,0,0,0,0,0,0,80,3.1,10,10,24.1,7620,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1979,12,29,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.7,60,98800,0,0,286,0,0,0,0,0,0,0,60,2.6,7,6,24.1,7620,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1979,12,29,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.7,60,98900,0,0,300,0,0,0,0,0,0,0,110,3.1,9,9,24.1,7620,9,999999999,110,0.0540,0,88,999.000,999.0,99.0 +1979,12,29,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,-1.7,60,98800,10,413,300,5,3,5,0,0,0,0,90,3.1,9,9,19.3,7620,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1979,12,29,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,-1.7,58,98800,194,1415,303,54,24,51,5900,1700,5700,1220,110,3.6,10,9,24.1,4880,9,999999999,110,0.0310,0,88,999.000,999.0,99.0 +1979,12,29,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,-1.7,54,98800,422,1415,307,167,46,153,18200,4200,17000,3740,120,4.6,10,9,24.1,7010,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1979,12,29,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,-1.1,50,98800,603,1415,325,180,8,177,20300,600,20000,6650,130,3.1,10,10,24.1,4880,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1979,12,29,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-3.9,33,98700,721,1415,327,234,60,203,25700,6000,22600,6210,140,4.6,10,9,24.1,4880,9,999999999,120,0.0310,0,88,999.000,999.0,99.0 +1979,12,29,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-4.4,29,98600,770,1415,313,483,541,188,51100,54800,21200,4160,130,4.1,10,5,24.1,77777,9,999999999,129,0.0310,0,88,999.000,999.0,99.0 +1979,12,29,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-5.0,26,98500,745,1415,346,188,5,185,21600,400,21400,7760,140,3.1,10,10,48.3,1070,9,999999999,129,0.0310,0,88,999.000,999.0,99.0 +1979,12,29,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,15.0,-4.4,26,98400,648,1415,349,183,2,182,20700,200,20700,7080,90,3.6,10,10,32.2,1070,9,999999999,129,0.0310,0,88,999.000,999.0,99.0 +1979,12,29,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-2.2,32,98400,487,1415,349,148,11,144,16500,800,16200,5120,140,2.1,10,10,24.1,850,9,999999999,129,0.0310,0,88,999.000,999.0,99.0 +1979,12,29,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.9,-1.7,34,98300,272,1415,347,96,5,95,10400,200,10400,2810,110,4.1,10,10,24.1,3660,9,999999999,139,0.0310,0,88,999.000,999.0,99.0 +1979,12,29,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.7,36,98300,45,861,345,16,1,16,1800,0,1800,550,130,3.1,10,10,24.1,1010,9,999999999,139,0.0310,0,88,999.000,999.0,99.0 +1979,12,29,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,13.3,-1.7,36,98300,0,0,345,0,0,0,0,0,0,0,130,3.6,10,10,19.3,1010,9,999999999,139,0.0540,0,88,999.000,999.0,99.0 +1979,12,29,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-1.7,33,98200,0,0,350,0,0,0,0,0,0,0,80,5.2,10,10,19.3,1070,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1979,12,29,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,14.4,-1.7,33,98200,0,0,350,0,0,0,0,0,0,0,110,6.2,10,10,19.3,1070,9,999999999,150,0.0540,0,88,999.000,999.0,99.0 +1979,12,29,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,12.2,-1.1,40,98200,0,0,331,0,0,0,0,0,0,0,90,4.1,10,9,16.1,3660,9,999999999,160,0.0540,0,88,999.000,999.0,99.0 +1979,12,29,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.1,-0.6,45,98100,0,0,319,0,0,0,0,0,0,0,110,4.1,8,8,16.1,3660,9,999999999,170,0.0540,0,88,999.000,999.0,99.0 +1979,12,29,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,11.7,-1.1,41,98000,0,0,321,0,0,0,0,0,0,0,110,4.1,8,8,16.1,4270,9,999999999,179,0.0540,0,88,999.000,999.0,99.0 +1979,12,30,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.6,-0.6,46,97900,0,0,333,0,0,0,0,0,0,0,110,3.1,10,10,16.1,820,9,999999999,189,0.0530,0,88,999.000,999.0,99.0 +1979,12,30,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,2.8,63,97800,0,0,331,0,0,0,0,0,0,0,110,3.1,10,10,16.1,820,9,999999999,189,0.0530,0,88,999.000,999.0,99.0 +1979,12,30,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,4.4,83,97800,0,0,323,0,0,0,0,0,0,0,120,3.1,10,10,8.0,460,9,999999999,200,0.0530,0,88,999.000,999.0,99.0 +1979,12,30,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,97700,0,0,320,0,0,0,0,0,0,0,110,4.1,10,10,6.4,180,9,999999999,209,0.0530,0,88,999.000,999.0,99.0 +1979,12,30,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,97600,0,0,323,0,0,0,0,0,0,0,80,4.1,10,10,4.8,120,9,999999999,220,0.0530,0,88,999.000,999.0,99.0 +1979,12,30,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,97500,0,0,326,0,0,0,0,0,0,0,110,2.6,10,10,4.8,90,9,999999999,220,0.0530,0,88,999.000,999.0,99.0 +1979,12,30,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,97600,0,0,330,0,0,0,0,0,0,0,30,2.6,10,10,3.2,90,9,999999999,229,0.0530,0,88,999.000,999.0,99.0 +1979,12,30,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.8,100,97600,9,389,330,5,1,5,0,0,0,0,70,2.6,10,10,3.2,90,9,999999999,220,0.0340,0,88,999.000,999.0,99.0 +1979,12,30,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.8,96,97600,193,1415,332,59,1,59,6500,0,6500,1790,160,2.1,10,10,3.2,240,9,999999999,220,0.0340,0,88,999.000,999.0,99.0 +1979,12,30,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,8.3,96,97600,422,1415,335,138,5,136,15200,300,15100,4510,220,2.6,10,10,2.4,90,9,999999999,209,0.0340,0,88,999.000,999.0,99.0 +1979,12,30,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.9,96,97600,603,1415,338,201,3,200,22400,300,22300,7150,250,4.1,10,10,6.4,120,9,999999999,200,0.0340,0,88,999.000,999.0,99.0 +1979,12,30,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,97600,722,1415,341,286,1,285,31600,100,31600,9890,290,6.2,10,10,11.3,150,9,999999999,200,0.0340,0,88,999.000,999.0,99.0 +1979,12,30,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,10.0,8.9,93,97500,771,1415,341,289,1,289,32300,100,32300,10510,290,5.7,10,10,11.3,210,9,999999999,189,0.0340,0,88,999.000,999.0,99.0 +1979,12,30,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,9.4,8.3,93,97400,747,1415,338,296,1,296,32900,100,32800,10360,300,5.2,10,10,6.4,120,9,999999999,179,0.0340,0,88,999.000,999.0,99.0 +1979,12,30,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,97500,651,1415,335,232,2,231,25800,200,25700,8190,300,5.2,10,10,9.7,340,9,999999999,179,0.0340,0,88,999.000,999.0,99.0 +1979,12,30,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.9,7.8,93,97500,490,1415,335,174,0,174,19100,0,19100,5700,300,5.2,10,10,9.7,310,9,999999999,170,0.0340,0,88,999.000,999.0,99.0 +1979,12,30,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,97500,275,1415,331,85,1,84,9200,0,9200,2650,340,5.2,10,10,9.7,430,9,999999999,160,0.0340,0,88,999.000,999.0,99.0 +1979,12,30,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,8.3,7.2,93,97500,47,884,331,21,0,21,2300,0,2300,680,340,6.2,10,10,8.0,270,9,999999999,160,0.0340,0,88,999.000,999.0,99.0 +1979,12,30,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,97500,0,0,329,0,0,0,0,0,0,0,300,5.2,10,10,8.0,270,9,999999999,150,0.0530,0,88,999.000,999.0,99.0 +1979,12,30,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,97600,0,0,329,0,0,0,0,0,0,0,310,5.7,10,10,6.4,210,9,999999999,150,0.0530,0,88,999.000,999.0,99.0 +1979,12,30,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,97600,0,0,329,0,0,0,0,0,0,0,310,3.6,10,10,8.0,210,9,999999999,150,0.0530,0,88,999.000,999.0,99.0 +1979,12,30,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.8,7.2,96,97500,0,0,313,0,0,0,0,0,0,0,300,4.1,10,8,9.7,610,9,999999999,150,0.0530,0,88,999.000,999.0,99.0 +1979,12,30,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,97500,0,0,326,0,0,0,0,0,0,0,300,4.1,10,10,9.7,310,9,999999999,150,0.0530,0,88,999.000,999.0,99.0 +1979,12,30,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,97500,0,0,326,0,0,0,0,0,0,0,270,3.1,10,10,9.7,180,9,999999999,150,0.0530,0,88,999.000,999.0,99.0 +1979,12,31,1,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,7.2,7.2,100,97500,0,0,326,0,0,0,0,0,0,0,300,4.6,10,10,9.7,210,9,999999999,150,0.0530,0,88,999.000,999.0,99.0 +1979,12,31,2,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,97400,0,0,323,0,0,0,0,0,0,0,300,6.2,10,10,9.7,210,9,999999999,139,0.0530,0,88,999.000,999.0,99.0 +1979,12,31,3,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.7,6.7,100,97400,0,0,323,0,0,0,0,0,0,0,310,4.6,10,10,8.0,180,9,999999999,139,0.0530,0,88,999.000,999.0,99.0 +1979,12,31,4,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,97400,0,0,320,0,0,0,0,0,0,0,300,5.7,10,10,4.8,90,9,999999999,139,0.0530,0,88,999.000,999.0,99.0 +1979,12,31,5,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,97400,0,0,320,0,0,0,0,0,0,0,310,5.2,10,10,4.8,90,9,999999999,139,0.0530,0,88,999.000,999.0,99.0 +1979,12,31,6,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,6.1,100,97400,0,0,320,0,0,0,0,0,0,0,310,6.2,10,10,3.2,90,9,999999999,139,0.0530,0,88,999.000,999.0,99.0 +1979,12,31,7,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,97400,0,0,317,0,0,0,0,0,0,0,290,5.2,10,10,4.8,90,9,999999999,139,0.0530,0,88,999.000,999.0,99.0 +1979,12,31,8,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,97500,9,389,317,4,0,4,0,0,0,0,290,5.7,10,10,3.2,120,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1979,12,31,9,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,97500,192,1415,317,34,0,34,3900,0,3900,1230,300,5.2,10,10,3.2,90,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1979,12,31,10,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,97600,421,1415,319,137,1,137,15100,100,15100,4530,290,5.7,10,10,11.3,150,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1979,12,31,11,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.6,96,97600,603,1415,319,212,1,212,23600,100,23500,7380,300,5.2,10,10,9.7,150,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1979,12,31,12,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,97500,723,1415,317,240,2,239,27000,200,26900,9010,310,6.7,10,10,4.8,150,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1979,12,31,13,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.6,100,97500,772,1415,317,262,1,261,29500,100,29400,9950,300,7.2,10,10,4.8,150,9,999999999,139,0.0780,0,88,999.000,999.0,99.0 +1979,12,31,14,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,97400,749,1415,319,249,2,248,28000,200,27900,9450,300,4.6,10,10,9.7,210,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1979,12,31,15,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,6.1,5.0,93,97400,653,1415,319,212,0,212,23700,0,23700,7820,280,6.7,10,10,9.7,240,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1979,12,31,16,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,5.0,96,97400,492,1415,316,162,1,161,17900,100,17800,5500,300,6.2,10,10,8.0,210,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1979,12,31,17,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,4.4,93,97400,278,1415,316,76,0,76,8400,0,8400,2520,300,4.6,10,10,8.0,240,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1979,12,31,18,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,97400,49,884,315,21,0,21,2300,0,2300,680,300,4.6,10,10,9.7,210,9,999999999,129,0.0780,0,88,999.000,999.0,99.0 +1979,12,31,19,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.6,3.9,89,97500,0,0,315,0,0,0,0,0,0,0,290,5.7,10,10,9.7,270,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 +1979,12,31,20,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.9,93,97500,0,0,312,0,0,0,0,0,0,0,300,5.2,10,10,9.7,240,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 +1979,12,31,21,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,97500,0,0,312,0,0,0,0,0,0,0,300,5.7,10,10,9.7,270,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 +1979,12,31,22,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,5.0,3.3,89,97500,0,0,312,0,0,0,0,0,0,0,300,5.2,10,10,9.7,340,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 +1979,12,31,23,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,97500,0,0,309,0,0,0,0,0,0,0,300,5.7,10,10,9.7,340,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 +1979,12,31,24,0,?9?9?9?9E0?9?9?9?9?9?9?9?9?9?9?9?9?9?9?9*9*9*9*9*9,4.4,3.3,93,97500,0,0,309,0,0,0,0,0,0,0,300,5.2,10,10,9.7,310,9,999999999,129,0.0530,0,88,999.000,999.0,99.0 diff --git a/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3.stat b/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3.stat new file mode 100644 index 00000000..4d091709 --- /dev/null +++ b/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3.stat @@ -0,0 +1,553 @@ + -EnergyPlus Weather Converter V7.2.0.007 + Statistics for USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3 + Location -- Atlanta Hartsfield Intl Ap GA USA + {N 33° 37'} {W 84° 25'} {GMT -5.0 Hours} + Elevation -- 308m above sea level + Standard Pressure at Elevation -- 97679Pa + Data Source -- TMY3 + + WMO Station 722190 + + - Displaying Design Conditions from "Climate Design Data 2009 ASHRAE Handbook" + - ASHRAE design conditions are carefully generated from a period of record + - (typically 30 years) to be representative of that location and to be suitable + - for use in heating/cooling load calculations. + + Design Stat ColdestMonth DB996 DB990 DP996 HR_DP996 DB_DP996 DP990 HR_DP990 DB_DP990 WS004c DB_WS004c WS010c DB_WS010c WS_DB996 WD_DB996 + Units {} {°C} {°C} {°C} {} {°C} {°C} {} {°C} {m/s} {°C} {m/s} {°C} {m/s} {deg} + Heating 1 -6.3 -3.5 -15.8 1 -2.6 -12.9 1.3 0.1 11.4 3 10.7 3.4 5.3 320 + + Design Stat HottestMonth DBR DB004 WB_DB004 DB010 WB_DB010 DB020 WB_DB020 WB004 DB_WB004 WB010 DB_WB010 WB020 DB_WB020 WS_DB004 WD_DB004 DP004 HR_DP004 DB_DP004 DP010 HR_DP010 DB_DP010 DP020 HR_DP020 DB_DP020 EN004 DB_EN004 EN010 DB_EN010 EN020 DB_EN020 #Hrs_8-4_&_DB-12.8/20.6 + Units {} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {m/s} {deg} {°C} {} {°C} {°C} {} {°C} {°C} {} {°C} {kJ/kg} {°C} {kJ/kg} {°C} {kJ/kg} {°C} {} + Cooling 7 9.5 34.4 23.5 33 23.3 31.9 23 25.1 31.2 24.5 30.3 24 29.4 4 300 23.4 19 27.3 22.9 18.3 26.7 22.5 17.8 26.3 77.9 31.3 75.6 30.4 73.5 29.7 813 + + Design Stat WS010 WS025 WS050 WBmax DBmin_mean DBmax_mean DBmin_stddev DBmax_stddev DBmin05years DBmax05years DBmin10years DBmax10years DBmin20years DBmax20years DBmin50years DBmax50years + Units {m/s} {m/s} {m/s} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} {°C} + Extremes 9.8 8.6 7.7 28 -11.2 35.9 4.2 1.8 -14.2 37.2 -16.7 38.2 -19 39.2 -22.1 40.6 + + - Displaying Monthly Design Conditions "Climate Design Data 2009 ASHRAE Handbook" + - Monthly Optical Sky Depth Beam (taub) and Diffuse (taud) + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + taub (beam) 0.325 0.349 0.383 0.395 0.448 0.505 0.556 0.593 0.431 0.373 0.339 0.320 + taud (diffuse) 2.461 2.316 2.176 2.175 2.028 1.892 1.779 1.679 2.151 2.317 2.422 2.514 + + taub = Clear Sky Optical Depth for Beam Irradiance + taud = Clear Sky Optical Depth for Diffuse Irradiance + + - Monthly Solar Irradiance Wh/m˛ (noon on 21st of month) + ib (beam) 888 898 890 893 845 794 751 714 832 859 862 874 + id (diffuse) 95 117 143 148 173 198 220 239 144 115 97 87 + + ib = Clear Sky Noon Beam Normal Irradiance on 21st Day + id = Clear Sky Noon Diffuse Horizontal Irradiance on 21st Day + + - Monthly Drybulb and Mean Coincident Wetbulb Temperatures °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Drybulb 0.4% 21.4 23.2 27.0 29.9 32.3 34.9 36.6 35.7 33.4 28.7 25.6 22.2 + Coincident Wetbulb 0.4% 15.3 16.1 17.2 18.9 22.1 23.2 23.8 23.9 22.9 21.0 17.9 16.9 + Drybulb 2.0% 18.9 20.7 24.8 28.0 30.5 33.2 34.8 33.8 31.3 27.1 23.3 20.0 + Coincident Wetbulb 2.0% 14.6 15.0 15.7 17.9 21.0 22.6 23.8 23.8 22.2 19.5 17.2 16.1 + Drybulb 5.0% 16.9 18.8 22.9 26.4 29.1 31.8 33.3 32.4 30.0 25.7 21.7 17.9 + Coincident Wetbulb 5.0% 13.2 14.0 14.9 17.1 20.5 22.3 23.5 23.5 21.8 18.5 16.6 14.8 + Drybulb 10.% 14.9 17.0 20.9 24.4 27.6 30.5 31.9 31.1 28.6 24.0 20.0 16.0 + Coincident Wetbulb 10.% 11.5 12.8 14.3 16.4 19.8 21.9 23.5 23.1 21.5 18.0 15.8 12.6 + + Drybulb 0.4% = 0.4% Monthly Design Drybulb Temperature + Coincident Wetbulb 0.4% = 0.4% Monthly Mean Coincident Wetbulb Temperature + Drybulb 2.0% = 2.0% Monthly Design Drybulb Temperature + Coincident Wetbulb 2.0% = 2.0% Monthly Mean Coincident Wetbulb Temperature + Drybulb 5.0% = 5.0% Monthly Design Drybulb Temperature + Coincident Wetbulb 5.0% = 5.0% Monthly Mean Coincident Wetbulb Temperature + Drybulb 10.% = 10.% Monthly Design Drybulb Temperature + Coincident Wetbulb 10.% = 10.% Monthly Mean Coincident Wetbulb Temperature + + - Monthly Drybulb and Wetbulb Daily Ranges delta°C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Drybulb 9.7 9.9 10.8 11.1 10.4 9.6 9.5 9.1 9.2 9.9 10.1 9.5 + Drybulb range - DB 5% 11.6 11.8 12.9 12.8 11.3 11.4 11.5 10.8 10.5 11.0 11.2 10.9 + Wetbulb range - DB 5% 8.0 7.2 6.6 5.5 4.4 3.7 3.5 3.4 3.7 4.9 6.4 7.4 + + Drybulb = Mean Daily Dry Bulb Temperature Range + Drybulb range - DB 5% = Mean Daily Dry Bulb Temperature Range Coincident with 5% Design Dry Bulb Temperature + Wetbulb range - DB 5% = Mean Daily Wet Bulb Temperature Range Coincident with 5% Design Dry Bulb Temperature + + - Displaying Heating/Cooling Degree Days/Hours from "Climate Design Data 2009 ASHRAE Handbook" + - Monthly Standard Heating/Cooling Degree Days/Hours + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + HDD base 10°C 132 76 32 4 0 0 0 0 0 2 29 107 + HDD base 18.3°C 365 268 185 81 13 1 0 0 6 63 184 331 + + CDD base 10°C 26 41 112 203 348 444 519 501 386 234 101 34 + CDD base 18.3°C 0 1 7 29 102 195 261 243 142 37 6 1 + + CDH base 23.3°C 0 3 53 251 796 1712 2498 2196 1030 196 18 1 + CDH base 26.7°C 0 0 4 46 215 668 1104 884 321 22 1 0 + + - 2949 annual (standard) cooling degree-days (10°C baseline) + - 381 annual (standard) heating degree-days (10°C baseline) + + - 1023 annual (standard) cooling degree-days (18.3°C baseline) + - 1497 annual (standard) heating degree-days (18.3°C baseline) + + - Monthly Statistics for Dry Bulb temperatures °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 21.1 25.0 27.8 28.9 30.6 34.4 36.7 35.0 31.7 30.0 24.4 22.8 + Day:Hour 31:15 26:15 30:14 12:14 19:14 6:15 8:15 1:15 7:15 10:16 5:16 12:14 + + Minimum -6.7 -12.8 1.1 0.0 7.8 11.1 17.2 18.3 11.7 2.2 -3.3 -5.6 + Day:Hour 14:06 12:07 19:07 6:05 11:06 10:05 28:23 25:06 29:04 26:05 22:06 18:08 + + Daily Avg 4.0 7.9 13.8 17.2 20.8 24.8 26.1 26.5 22.5 16.0 11.9 7.7 + + - Maximum Dry Bulb temperature of 36.7°C on Jul 8 + - Minimum Dry Bulb temperature of -12.8°C on Feb 12 + + - Monthly Statistics for Extreme Dry Bulb temperatures °C + #Days Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Max >= 32 14 17 14 + Max <= 0 3 + Min <= 0 18 11 1 2 7 + Min <=-18 + + - Monthly Statistics for Dew Point temperatures °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 15.6 15.0 16.1 17.8 20.6 22.8 23.3 23.9 23.3 22.2 17.2 16.7 + Day:Hour 19:18 18:16 31:11 4:09 30:20 18:17 26:10 8:20 16:17 18:15 4:14 13:11 + + Minimum -18.3 -18.9 -12.8 -5.0 -2.2 0.6 14.4 11.7 6.1 -2.2 -9.4 -12.2 + Day:Hour 5:14 12:03 18:16 5:19 9:20 10:17 24:24 25:11 14:13 31:17 14:11 3:09 + + Daily Avg -3.0 -1.3 3.8 8.8 13.7 16.5 19.8 20.7 16.8 10.8 4.2 0.3 + + - Maximum Dew Point temperature of 23.9°C on Aug 8 + - Minimum Dew Point temperature of -18.9°C on Feb 12 + + - Average Hourly Statistics for Dry Bulb temperatures °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 2.6 6.3 11.8 13.6 17.3 21.1 23.1 23.8 20.0 13.7 9.8 6.0 + 1:01- 2:00 2.3 5.5 11.1 13.0 16.9 20.4 22.5 23.7 19.6 13.2 9.1 5.4 + 2:01- 3:00 1.9 5.1 10.6 12.9 16.2 19.9 22.0 23.3 19.4 12.8 8.6 4.8 + 3:01- 4:00 1.5 4.5 10.1 12.4 15.9 19.6 21.6 22.9 19.2 12.2 8.1 4.4 + 4:01- 5:00 1.2 4.3 9.7 11.8 15.7 19.1 21.4 22.7 18.9 11.9 7.6 4.1 + 5:01- 6:00 1.0 4.1 9.4 11.4 15.8 19.3 21.3 22.5 18.9 11.6 7.4 3.9 + 6:01- 7:00 0.8 3.7 9.2 11.9 16.5 20.5 22.0 22.9 19.2 11.3 7.1 3.7 + 7:01- 8:00 0.8 3.9 9.8 14.4 18.3 22.5 23.8 24.2 20.6 12.6 7.4 3.5 + 8:01- 9:00 1.5 5.1 11.1 16.3 20.5 24.8 25.7 25.7 22.3 14.7 9.3 5.1 + 9:01-10:00 3.0 6.8 12.7 18.2 22.4 26.6 27.2 27.5 23.7 16.5 11.5 6.9 + 10:01-11:00 4.3 8.4 14.4 19.9 23.8 28.1 28.5 28.8 25.0 18.5 13.6 8.6 + 11:01-12:00 5.6 9.7 15.7 21.4 24.9 29.0 29.5 29.7 25.9 19.5 15.0 10.1 + 12:01-13:00 6.5 11.0 16.6 22.2 25.7 29.8 30.4 30.3 26.4 20.2 16.2 11.2 + 13:01-14:00 7.2 12.0 17.5 22.8 25.5 30.3 30.6 30.9 26.3 21.1 17.3 12.2 + 14:01-15:00 7.8 12.6 18.3 23.1 26.2 30.3 31.0 31.0 26.6 21.4 17.8 12.6 + 15:01-16:00 7.8 12.6 18.7 23.1 26.2 30.1 31.1 31.1 26.3 21.3 17.8 12.5 + 16:01-17:00 7.3 12.4 18.5 22.8 25.6 29.8 30.4 30.5 25.9 20.6 16.9 11.7 + 17:01-18:00 6.5 11.4 17.9 21.7 24.8 29.1 29.8 29.5 24.9 18.8 15.1 10.5 + 18:01-19:00 5.6 10.5 16.8 20.0 23.3 27.8 28.2 28.4 23.5 17.5 13.9 9.5 + 19:01-20:00 5.1 9.7 15.9 18.3 21.7 25.5 26.6 26.9 22.8 16.3 12.9 8.8 + 20:01-21:00 4.5 8.6 14.9 17.0 20.5 24.0 25.6 26.1 22.2 15.6 12.1 8.0 + 21:01-22:00 4.0 7.9 14.1 15.7 19.6 23.1 25.1 25.4 21.6 14.9 11.3 7.5 + 22:01-23:00 3.4 7.4 13.1 14.9 18.8 22.4 24.3 24.9 21.0 14.5 10.7 7.0 + 23:01-24:00 3.1 7.0 12.4 14.4 18.1 21.9 23.8 24.4 20.5 13.8 10.0 6.8 + Max Hour 16 15 16 15 15 15 16 16 15 15 16 15 + Min Hour 8 7 7 6 5 5 6 6 6 7 7 8 + + - Average Hourly Statistics for Dew Point temperatures °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 -3.1 -1.4 3.5 8.6 13.4 16.2 19.7 21.2 16.7 11.0 4.5 0.2 + 1:01- 2:00 -3.3 -1.8 3.7 8.4 13.5 16.2 19.8 21.2 16.6 11.0 4.3 0.2 + 2:01- 3:00 -3.3 -1.9 3.7 8.3 13.4 16.2 19.7 21.0 16.5 10.8 4.1 0.1 + 3:01- 4:00 -3.4 -1.9 3.8 8.3 13.5 16.0 19.7 20.9 16.4 10.5 3.9 0.1 + 4:01- 5:00 -3.4 -1.7 3.8 8.2 13.2 16.2 19.8 20.7 16.4 10.6 3.7 0.2 + 5:01- 6:00 -3.3 -1.7 3.9 8.0 13.4 16.1 19.7 20.7 16.3 10.4 3.7 0.0 + 6:01- 7:00 -3.3 -1.7 4.0 8.1 13.5 16.2 19.9 20.9 16.6 10.2 3.7 0.0 + 7:01- 8:00 -3.0 -1.5 4.2 9.2 14.0 16.8 20.5 21.1 17.1 10.7 4.1 -0.1 + 8:01- 9:00 -2.7 -1.3 4.6 9.3 14.5 17.1 20.7 21.2 17.5 11.0 4.6 0.2 + 9:01-10:00 -2.5 -1.4 4.7 9.3 14.6 17.4 20.7 21.0 17.2 11.2 4.8 0.6 + 10:01-11:00 -2.4 -1.6 4.4 9.4 14.6 17.4 20.7 20.7 17.5 11.6 4.6 0.7 + 11:01-12:00 -2.4 -1.7 4.1 9.1 14.3 16.9 20.3 20.6 17.1 11.3 4.6 0.4 + 12:01-13:00 -2.4 -1.5 4.0 8.7 14.0 16.8 20.1 20.4 17.0 11.1 4.5 0.4 + 13:01-14:00 -2.7 -1.4 3.8 8.5 13.8 16.5 19.8 20.1 17.0 10.9 4.0 0.2 + 14:01-15:00 -2.8 -1.2 3.7 8.7 13.7 16.3 19.7 20.0 16.9 10.6 3.8 -0.1 + 15:01-16:00 -3.1 -0.9 3.5 8.4 13.7 16.3 19.6 20.2 16.8 10.3 3.6 0.2 + 16:01-17:00 -3.2 -1.0 3.4 8.7 13.4 16.3 19.4 20.1 16.6 10.0 3.8 0.3 + 17:01-18:00 -3.2 -1.1 3.3 9.0 13.2 15.8 19.2 20.0 16.7 10.3 3.8 0.2 + 18:01-19:00 -3.0 -0.9 3.4 9.1 13.2 16.0 19.5 20.4 16.7 10.6 4.1 0.2 + 19:01-20:00 -3.0 -0.7 3.4 9.1 13.4 16.2 19.7 20.7 16.8 10.8 4.3 0.2 + 20:01-21:00 -3.2 -0.8 3.6 9.3 13.5 16.5 19.6 21.0 16.8 11.0 4.3 0.4 + 21:01-22:00 -3.1 -0.8 3.7 9.4 13.6 16.5 19.6 21.1 16.9 10.9 4.4 0.5 + 22:01-23:00 -3.2 -0.8 3.7 9.4 13.5 16.5 19.5 21.1 16.7 10.8 4.4 0.6 + 23:01-24:00 -3.4 -1.1 3.5 9.2 13.5 16.4 19.6 21.1 16.7 10.7 4.4 0.6 + Max Hour 12 20 10 23 11 10 10 1 11 11 10 11 + Min Hour 5 4 18 6 18 18 18 15 6 17 16 15 + + - Monthly Statistics for Relative Humidity % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 100 100 96 100 100 100 100 100 94 100 100 100 + Day:Hour 4:02 1:23 2:03 2:08 1:01 17:04 9:05 8:04 3:02 2:04 4:11 6:07 + + Minimum 18 13 14 22 23 15 35 30 29 26 19 18 + Day:Hour 29:16 9:13 19:15 8:14 10:19 10:17 8:15 25:14 14:14 7:16 8:15 19:15 + + Daily Avg 65 57 55 62 67 63 71 73 72 74 63 64 + + - Average Hourly Relative Humidity % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 69 61 59 73 79 75 82 85 82 85 72 68 + 1:01- 2:00 69 62 63 75 81 78 85 86 83 87 74 71 + 2:01- 3:00 71 64 65 75 84 80 87 87 84 88 75 73 + 3:01- 4:00 72 66 67 77 86 81 89 89 84 90 76 75 + 4:01- 5:00 73 67 68 80 86 84 91 89 86 92 77 77 + 5:01- 6:00 75 68 70 81 87 82 91 90 85 93 78 77 + 6:01- 7:00 76 70 72 79 83 78 88 89 85 93 80 78 + 7:01- 8:00 77 70 70 73 77 72 82 83 81 88 81 78 + 8:01- 9:00 76 66 67 66 71 64 75 77 75 80 74 73 + 9:01-10:00 71 60 62 59 64 58 69 69 68 72 66 67 + 10:01-11:00 66 56 54 54 58 53 64 63 65 66 58 61 + 11:01-12:00 61 52 50 48 54 49 59 59 60 61 54 56 + 12:01-13:00 57 49 47 45 50 47 56 57 58 58 50 53 + 13:01-14:00 54 46 44 43 51 45 54 54 59 55 46 50 + 14:01-15:00 52 45 42 43 48 44 53 53 57 53 43 48 + 15:01-16:00 52 46 41 42 49 45 52 53 58 53 43 49 + 16:01-17:00 53 46 41 43 50 47 54 56 59 54 45 51 + 17:01-18:00 55 48 42 47 51 47 55 58 62 61 50 54 + 18:01-19:00 58 50 45 51 56 51 61 64 67 66 55 57 + 19:01-20:00 60 53 47 57 62 59 68 70 70 72 58 59 + 20:01-21:00 61 56 50 63 66 65 71 75 72 76 61 62 + 21:01-22:00 63 58 53 68 70 68 73 78 75 78 65 64 + 22:01-23:00 66 60 55 71 73 71 76 80 77 80 67 66 + 23:01-24:00 66 60 57 73 75 73 79 82 79 82 70 67 + Max Hour 8 8 7 6 6 5 5 6 5 7 8 8 + Min Hour 16 15 17 16 15 15 16 16 15 16 16 15 + + - Monthly Indicators for Precipitation/Moisture (kPa) + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0.6 0.7 0.9 1.2 1.6 1.9 2.3 2.4 2.0 1.4 0.9 0.7 + + - Monthly Statistics for Wind Chill/Heat Index temperatures °C ** + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Minimum WC -21 -30 -9 -5 3 -5 -13 -18 + Day:Hour 7:19 12:06 18:07 6:07 10:04 25:08 21:04 2:08 + + Average WC -5 -5 2 1 4 4 0 -2 + Avg Del WC 7 7 5 4 5 4 6 6 + # Hours WC 588 368 186 62 7 83 248 476 + + Maximum HI 31 35 38 36 34 30 + Day:Hour 30:15 22:17 7:12 17:13 7:16 10:16 + + Average HI 29 32 32 32 30 28 + Avg Del HI 0 2 2 2 1 0 + # Hours HI 54 186 299 288 106 14 + + - **WindChill/HeatIndex Temps -- statistics...only those different from Air Temps + + - Monthly Wind Direction % {N=0 or 360,E=90,S=180,W=270} + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + North 8 4 11 10 15 12 11 10 17 12 9 6 + NorthEast 7 6 2 3 10 1 5 10 9 6 8 3 + East 17 22 17 7 19 3 13 24 15 14 18 17 + SouthEast 11 15 10 13 13 2 10 12 11 7 7 13 + South 7 6 11 14 8 4 13 11 5 8 6 10 + SouthWest 7 3 15 10 5 10 11 7 3 3 5 4 + West 10 14 12 26 11 35 23 11 13 16 10 15 + NorthWest 33 29 22 17 19 32 14 15 27 33 37 32 + + - Monthly Statistics for Wind Speed m/s + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Maximum 11.3 14.4 13.9 12.9 8.2 15.9 9.3 10.3 9.3 11.8 11.3 13.4 + Day:Hour 25:20 11:01 31:11 4:15 20:18 30:16 22:14 29:18 9:14 25:13 19:24 17:04 + + Minimum 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 + Day:Hour 3:24 19:04 3:01 1:06 3:09 10:01 1:22 1:07 3:17 1:14 5:06 10:02 + + Daily Avg 4.6 5.2 4.9 4.0 3.5 3.9 3.2 3.4 3.1 4.0 4.2 4.7 + + - Maximum Wind Speed of 15.9 m/s on Jun 30 + - Minimum Wind Speed of 0.0 m/s on Jan 3 + + - Average Hourly Statistics for Wind Speed m/s + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 4.2 5.4 4.3 3.8 3.0 3.2 2.5 2.5 2.0 3.5 3.9 4.6 + 1:01- 2:00 4.3 4.7 4.0 3.4 3.0 3.0 2.5 2.5 2.5 3.8 4.1 4.5 + 2:01- 3:00 4.3 4.9 4.4 3.1 3.1 3.0 2.6 2.6 2.5 3.6 3.6 4.5 + 3:01- 4:00 4.2 4.6 4.1 3.1 3.1 2.9 2.5 2.6 2.6 3.6 3.8 4.5 + 4:01- 5:00 4.2 4.7 4.2 3.1 2.9 3.0 2.6 2.8 2.8 3.3 3.8 4.6 + 5:01- 6:00 4.1 4.8 4.1 3.0 3.0 3.5 2.8 2.9 2.6 3.4 3.5 4.6 + 6:01- 7:00 4.4 4.8 4.0 3.0 3.3 3.5 3.0 2.8 2.4 3.4 3.7 4.6 + 7:01- 8:00 4.3 4.6 4.3 3.5 3.7 4.0 3.4 3.2 3.3 3.7 3.7 4.7 + 8:01- 9:00 4.4 5.6 4.9 4.0 3.6 3.9 3.5 3.2 3.5 4.2 4.5 4.9 + 9:01-10:00 4.9 5.5 5.4 4.4 3.5 4.2 3.6 3.4 3.8 4.7 4.5 5.2 + 10:01-11:00 5.2 5.7 5.6 4.6 3.7 4.1 3.4 3.3 3.6 4.6 4.6 5.3 + 11:01-12:00 5.0 5.8 5.4 4.4 4.0 4.5 3.7 3.5 3.8 5.1 4.7 5.3 + 12:01-13:00 5.1 5.7 5.7 4.6 3.7 4.6 3.9 3.5 3.6 4.9 4.9 5.2 + 13:01-14:00 5.0 5.6 5.3 4.9 3.6 4.6 3.8 4.0 4.2 4.7 5.0 4.9 + 14:01-15:00 4.9 5.6 5.8 5.3 3.5 5.2 3.7 4.0 3.9 4.9 5.1 5.0 + 15:01-16:00 5.1 5.8 5.8 5.0 3.8 5.3 4.0 4.3 4.0 5.1 4.6 4.7 + 16:01-17:00 4.8 5.9 5.8 4.9 4.4 4.6 3.7 4.5 3.4 4.9 4.3 4.4 + 17:01-18:00 4.5 5.5 5.6 4.6 4.6 4.3 3.7 4.4 3.6 3.7 3.9 4.2 + 18:01-19:00 4.5 5.1 5.0 4.2 3.8 4.1 3.9 4.3 2.8 3.7 4.0 4.5 + 19:01-20:00 4.5 4.8 5.0 3.7 3.5 3.3 3.9 3.8 2.9 3.6 4.2 4.6 + 20:01-21:00 4.5 4.7 4.6 3.8 3.3 3.3 3.2 3.9 2.5 3.7 3.9 4.4 + 21:01-22:00 4.5 4.7 4.6 3.3 3.2 3.3 2.5 3.3 2.6 3.6 3.8 4.5 + 22:01-23:00 4.4 4.9 4.7 3.5 3.3 3.3 2.7 2.9 2.4 3.6 4.0 4.3 + 23:01-24:00 4.3 5.0 4.8 3.5 3.4 3.6 2.8 2.8 2.2 3.6 3.8 4.6 + Max Hour 11 17 17 15 18 16 16 17 14 16 15 11 + Min Hour 6 8 2 6 5 4 22 2 1 5 6 18 + + - Average Hourly Statistics for Wind Direction ° {N=0 or 360,E=90,S=180,W=270} + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 215 203 199 210 156 237 171 179 142 208 181 211 + 1:01- 2:00 214 191 197 207 143 254 186 150 165 212 185 207 + 2:01- 3:00 200 183 210 187 140 236 196 146 137 213 194 212 + 3:01- 4:00 204 174 208 196 183 227 183 140 157 196 180 212 + 4:01- 5:00 199 186 201 194 135 246 174 143 157 226 190 206 + 5:01- 6:00 198 189 208 186 152 242 197 151 156 219 186 204 + 6:01- 7:00 219 194 204 202 169 251 191 145 136 194 186 216 + 7:01- 8:00 207 195 202 209 170 248 206 162 174 200 188 192 + 8:01- 9:00 217 200 190 219 175 236 208 170 170 214 176 207 + 9:01-10:00 195 186 191 236 168 223 191 165 166 196 188 204 + 10:01-11:00 203 181 199 217 184 248 206 128 199 213 190 203 + 11:01-12:00 202 198 211 226 185 273 182 155 199 221 201 208 + 12:01-13:00 202 188 219 214 179 280 198 159 185 213 222 205 + 13:01-14:00 192 202 219 197 177 273 180 161 217 204 220 220 + 14:01-15:00 212 187 212 201 177 272 195 157 191 214 227 221 + 15:01-16:00 196 193 221 208 195 282 212 166 197 226 205 224 + 16:01-17:00 219 194 214 207 208 274 189 170 188 216 218 211 + 17:01-18:00 214 194 222 193 216 271 197 171 211 213 203 222 + 18:01-19:00 214 196 207 194 175 262 195 179 186 214 199 221 + 19:01-20:00 223 194 209 191 189 266 180 158 181 224 201 230 + 20:01-21:00 207 199 213 195 191 245 188 180 159 228 206 222 + 21:01-22:00 211 204 209 197 165 260 171 145 170 240 201 211 + 22:01-23:00 203 205 222 194 184 236 190 133 150 245 195 208 + 23:01-24:00 207 195 212 213 195 268 197 157 142 207 207 206 + Max Hour 20 23 18 10 18 16 16 21 14 23 15 20 + Min Hour 14 4 9 6 5 10 1 11 7 7 9 8 + + - Monthly Statistics for Liquid Precipitation mm + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Total 0 0 0 0 0 0 0 0 90 0 0 0 + Max Hourly 0 0 0 0 0 0 0 0 35 0 0 0 + + - Monthly Statistics for Albedo + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Average 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.180 0.000 0.000 0.000 + + - Monthly Statistics for Solar Radiation (Direct Normal, Diffuse, Global Horizontal) Wh/m˛ + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + Direct Avg 3658 4095 4674 5118 4810 5125 4674 4313 3781 4595 3650 3452 + + Direct Max 8543 9297 10363 10147 8930 9699 8885 7489 8302 8815 8069 7765 + Day 28 24 18 8 13 7 7 18 23 6 11 4 + + Diffuse Avg 1181 1249 1860 2300 2827 2936 2889 2773 2018 1277 1267 1089 + + Global Avg 2777 3328 4649 5741 6320 6731 6306 5815 4361 3836 2953 2525 + - Maximum Direct Normal Solar of 10363 Wh/m˛ on Mar 18 + + - Average Hourly Statistics for Direct Normal Solar Radiation Wh/m˛ + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0 + 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0 + 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0 + 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0 + 4:01- 5:00 0 0 0 0 0 0 0 0 0 0 0 0 + 5:01- 6:00 0 0 0 0 4 8 2 0 0 0 0 0 + 6:01- 7:00 0 0 8 74 120 133 112 53 29 9 0 0 + 7:01- 8:00 27 52 165 270 281 299 294 221 215 178 87 34 + 8:01- 9:00 206 313 295 371 401 423 424 344 337 365 299 229 + 9:01-10:00 329 440 423 442 491 498 462 424 402 456 371 364 + 10:01-11:00 388 492 440 525 517 516 447 455 397 531 446 431 + 11:01-12:00 469 496 494 578 523 528 488 414 391 558 462 488 + 12:01-13:00 494 504 509 522 475 504 403 440 378 513 439 461 + 13:01-14:00 464 464 510 508 433 482 424 452 317 521 441 448 + 14:01-15:00 443 390 492 495 420 429 412 380 349 509 451 393 + 15:01-16:00 387 390 520 447 394 434 415 407 375 434 365 335 + 16:01-17:00 318 338 426 395 363 372 374 353 333 354 251 231 + 17:01-18:00 134 197 317 341 271 319 271 259 212 166 38 37 + 18:01-19:00 0 18 75 149 109 158 129 107 46 2 0 0 + 19:01-20:00 0 0 0 1 8 22 16 4 0 0 0 0 + 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0 + 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0 + 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0 + 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0 + Max Hour* 13 13 16* 12 12 12 12 11* 10* 12 12 12 + Min Hour 1 1 1 1 1 1 1 1 1 1 1 1 + + - Average Hourly Statistics for Diffuse Horizontal Solar Radiation Wh/m˛ + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0 + 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0 + 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0 + 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0 + 4:01- 5:00 0 0 0 0 0 0 0 0 0 0 0 0 + 5:01- 6:00 0 0 0 0 6 11 5 0 0 0 0 0 + 6:01- 7:00 0 0 4 26 53 63 50 32 11 1 0 0 + 7:01- 8:00 6 6 44 83 119 132 109 97 64 36 24 9 + 8:01- 9:00 42 39 106 140 190 190 162 170 126 73 70 48 + 9:01-10:00 101 72 161 206 233 232 222 224 167 119 115 94 + 10:01-11:00 141 114 205 235 259 274 293 276 205 137 152 133 + 11:01-12:00 178 148 220 254 310 318 314 312 253 169 178 153 + 12:01-13:00 174 171 240 283 342 335 344 335 247 181 192 172 + 13:01-14:00 169 194 242 290 336 338 341 344 288 179 184 159 + 14:01-15:00 153 210 222 262 300 304 322 316 245 161 156 144 + 15:01-16:00 119 159 182 216 279 269 269 268 190 126 113 107 + 16:01-17:00 73 94 132 171 194 215 213 201 131 70 66 57 + 17:01-18:00 25 39 78 93 131 152 147 136 75 25 17 14 + 18:01-19:00 0 3 25 38 64 82 76 54 16 1 0 0 + 19:01-20:00 0 0 0 2 11 22 21 8 0 0 0 0 + 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0 + 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0 + 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0 + 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0 + Max Hour 12 15 14 14 13 14 13 14 14 13 13 13 + Min Hour 1 1 1 1 1 1 1 1 1 1 1 1 + + - Average Hourly Statistics for Global Horizontal Solar Radiation Wh/m˛ + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0 + 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0 + 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0 + 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0 + 4:01- 5:00 0 0 0 0 0 0 0 0 0 0 0 0 + 5:01- 6:00 0 0 0 0 7 12 6 0 0 0 0 0 + 6:01- 7:00 0 0 5 35 72 89 69 38 13 2 0 0 + 7:01- 8:00 9 12 69 157 222 248 216 163 114 65 33 12 + 8:01- 9:00 73 108 207 317 414 434 396 342 272 205 142 86 + 9:01-10:00 206 247 380 493 589 600 554 510 411 358 265 213 + 10:01-11:00 317 381 497 648 700 722 674 645 499 481 386 326 + 11:01-12:00 433 466 597 760 799 819 773 686 574 571 454 409 + 12:01-13:00 462 517 651 757 801 830 738 748 570 561 465 427 + 13:01-14:00 434 508 646 741 743 802 749 760 550 548 442 396 + 14:01-15:00 378 448 579 666 662 687 692 639 506 477 381 322 + 15:01-16:00 274 355 499 524 572 606 594 565 424 338 248 218 + 16:01-17:00 152 212 325 379 406 445 448 403 281 183 117 97 + 17:01-18:00 39 71 160 206 238 292 268 235 127 47 21 18 + 18:01-19:00 0 5 33 57 84 120 108 73 19 1 0 0 + 19:01-20:00 0 0 0 2 12 24 23 8 0 0 0 0 + 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0 + 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0 + 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0 + 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0 + Max Hour 13 13 13 12 13 13 12 14 12 12 13 13 + Min Hour 1 1 1 1 1 1 1 1 1 1 1 1 + + - Average Hourly Statistics for Total Sky Cover % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 59 48 49 40 53 46 52 40 35 50 44 51 + 1:01- 2:00 59 48 54 43 53 45 48 40 35 51 44 47 + 2:01- 3:00 62 49 55 44 51 43 43 40 36 48 38 46 + 3:01- 4:00 60 46 53 41 57 49 37 44 35 45 38 49 + 4:01- 5:00 58 47 56 44 61 45 35 41 40 48 39 47 + 5:01- 6:00 60 49 58 43 67 51 53 50 44 49 49 48 + 6:01- 7:00 61 55 64 49 68 52 55 59 49 50 49 50 + 7:01- 8:00 66 57 68 50 62 46 48 58 51 50 51 57 + 8:01- 9:00 67 62 66 51 59 42 40 55 46 50 55 57 + 9:01-10:00 65 60 64 51 51 40 47 54 45 49 61 54 + 10:01-11:00 66 63 61 45 48 41 53 55 54 47 61 55 + 11:01-12:00 65 66 62 46 53 47 55 61 60 48 61 57 + 12:01-13:00 63 72 64 47 61 52 59 64 61 53 63 62 + 13:01-14:00 62 75 64 53 61 53 60 63 67 51 62 63 + 14:01-15:00 61 75 63 53 62 56 57 64 62 50 55 65 + 15:01-16:00 63 74 61 52 62 55 55 62 55 49 58 65 + 16:01-17:00 62 69 60 51 60 52 56 63 51 47 55 61 + 17:01-18:00 60 64 59 44 62 50 63 65 47 47 57 58 + 18:01-19:00 63 57 55 45 66 51 69 66 40 47 56 55 + 19:01-20:00 61 55 51 38 65 52 68 65 34 45 51 56 + 20:01-21:00 61 52 50 36 61 50 68 62 43 46 50 57 + 21:01-22:00 64 52 45 36 60 50 62 56 45 45 49 56 + 22:01-23:00 57 50 44 38 61 47 56 50 41 48 51 58 + 23:01-24:00 57 51 45 39 58 46 54 47 44 48 50 58 + Max Hour 9 14 8 14 7 15 19 19 14 13 13 16 + Min Hour 23 4 23 21 11 10 5 1 20 22 3 3 + + - Average Hourly Statistics for Opaque Sky Cover % + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0:01- 1:00 56 46 40 38 38 39 42 32 33 46 36 44 + 1:01- 2:00 55 47 45 41 39 33 40 29 33 47 37 42 + 2:01- 3:00 58 48 49 41 39 34 35 29 34 45 31 41 + 3:01- 4:00 55 44 44 38 46 38 30 32 31 43 31 44 + 4:01- 5:00 54 45 47 39 47 34 28 32 36 44 34 44 + 5:01- 6:00 55 46 49 38 53 36 41 37 42 45 43 45 + 6:01- 7:00 55 49 54 43 54 39 37 44 45 45 43 46 + 7:01- 8:00 59 49 54 48 49 36 36 44 46 46 44 52 + 8:01- 9:00 60 49 57 48 44 33 31 42 44 44 46 52 + 9:01-10:00 57 46 53 47 38 32 36 42 42 41 50 49 + 10:01-11:00 57 48 52 42 37 33 44 44 48 41 49 45 + 11:01-12:00 53 50 48 43 44 40 46 52 53 42 50 45 + 12:01-13:00 51 53 49 43 53 46 52 55 54 45 52 47 + 13:01-14:00 50 58 48 50 54 46 54 54 60 48 49 50 + 14:01-15:00 51 61 48 49 54 50 49 57 55 46 45 53 + 15:01-16:00 54 63 45 49 54 48 47 49 47 45 47 53 + 16:01-17:00 52 58 43 48 51 44 46 51 45 41 45 52 + 17:01-18:00 52 58 43 41 52 39 52 48 43 41 44 52 + 18:01-19:00 56 55 42 42 55 40 58 50 36 42 48 49 + 19:01-20:00 53 53 39 37 53 39 56 50 30 41 44 50 + 20:01-21:00 54 51 37 35 52 39 54 55 40 40 41 50 + 21:01-22:00 57 50 35 35 50 42 49 48 42 39 40 48 + 22:01-23:00 50 49 34 37 45 35 43 45 38 40 43 50 + 23:01-24:00 54 50 35 39 44 36 41 40 40 41 40 52 + Max Hour 9 16 9 14 19 15 19 15 14 14 13 16 + Min Hour 14 4 23 21 11 10 5 3 20 22 3 3 + + - Monthly Calculated "undisturbed" Ground Temperatures** °C + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + 0.5 m 10.8 7.3 6.4 7.2 11.9 17.2 22.2 25.8 26.8 25.1 21.1 15.9 + 2.0 m 14.0 10.7 9.1 9.1 11.6 15.2 19.1 22.4 24.1 23.8 21.5 18.0 + 4.0 m 16.0 13.5 11.9 11.4 12.4 14.5 17.1 19.6 21.4 21.8 20.8 18.7 + + - **These ground temperatures should NOT BE USED in the GroundTemperatures object to compute building floor losses. + - The temperatures for 0.5 m depth can be used for GroundTemperatures:Surface. + - The temperatures for 4.0 m depth can be used for GroundTemperatures:Deep. + - Calculations use a standard soil diffusivity of 2.3225760E-03 {m**2/day} + + - Heating/Cooling Degree Days/Hours calculated from this weather file. + - Heating/Cooling Degree Days/Hours from design conditions shown earlier in this report. + - Monthly Weather File Heating/Cooling Degree Days/Hours + Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec + HDD base 10C 202 110 8 3 0 0 0 0 0 1 26 93 + HDD base 18C 435 282 141 53 5 0 0 0 2 89 183 319 + + CDD base 10C 15 52 125 219 336 444 498 513 376 188 84 21 + CDD base 18C 0 0 9 29 93 204 250 265 138 28 1 0 + + CDH base 20C 2 78 283 878 1744 3718 4570 4873 2347 600 106 16 + CDH base 23C 0 12 77 330 803 2136 2733 2764 1022 185 6 0 + CDH base 27C 0 0 2 22 143 796 1134 1021 211 15 0 0 + + - 2871 annual (wthr file) cooling degree-days (10°C baseline) + - 443 annual (wthr file) heating degree-days (10°C baseline) + + - 1017 annual (wthr file) cooling degree-days (18°C baseline) + - 1508 annual (wthr file) heating degree-days (18°C baseline) + + - Climate type "Cfa" (Köppen classification)** + - Humid subtropical (mild with no dry season, hot summer, lat. 20-35°N) + - **Note that the Köppen classification shown here is derived algorithmically from the source weather data. + - It may not be indicative of the long term climate for this location. + + - Climate type "3A" (ASHRAE Standard 196-2006 Climate Zone)** + - Warm - Humid, Probable Köppen classification=Cfa, Humid Subtropical (Warm Summer) + - **Note that the ASHRAE classification shown here is derived algorithmically from the source weather data. + - It may not be indicative of the long term climate for this location. + + - Typical/Extreme Period Determination + + - Summer is Jun:Aug + Extreme Summer Week (nearest maximum temperature for summer) + Extreme Hot Week Period selected: Jul 6:Jul 12, Maximum Temp= 36.70°C, Deviation=| 9.089|°C + Typical Summer Week (nearest average temperature for summer) + Typical Week Period selected: Aug 24:Aug 30, Average Temp= 25.81°C, Deviation=| 0.097|°C + + - Winter is Dec:Feb + Extreme Winter Week (nearest minimum temperature for winter) + Extreme Cold Week Period selected: Jan 6:Jan 12, Minimum Temp= -12.80°C, Deviation=|11.949|°C + Typical Winter Week (nearest average temperature for winter) + Typical Week Period selected: Jan 27:Feb 2, Average Temp= 6.49°C, Deviation=| 0.541|°C + + - Autumn is Sep:Nov + Typical Autumn Week (nearest average temperature for autumn) + Typical Week Period selected: Sep 29:Oct 5, Average Temp= 16.82°C, Deviation=| 0.493|°C + + - Spring is Mar:May + Typical Spring Week (nearest average temperature for spring) + Typical Week Period selected: Apr 26:May 2, Average Temp= 17.27°C, Deviation=| 0.759|°C diff --git a/example_files/weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3-cache.csv b/example_files/weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3-cache.csv new file mode 100644 index 00000000..b3872118 --- /dev/null +++ b/example_files/weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3-cache.csv @@ -0,0 +1,35 @@ +WeatherHeader.City,String,Buffalo Niagara Intl Ap +WeatherHeader.State,String,NY +WeatherHeader.Country,String,USA +WeatherHeader.DataSource,String,TMY3 +WeatherHeader.Station,String,725280 +WeatherHeader.Latitude,Float,42.93 +WeatherHeader.Longitude,Float,-78.73 +WeatherHeader.Timezone,Float,-5.0 +WeatherHeader.Altitude,Float,705.3805774278214 +WeatherHeader.LocalPressure,Float,0.9743760074270538 +WeatherHeader.RecordsPerHour,Fixnum,1 +WeatherData.AnnualAvgDrybulb,Float,48.287904109589114 +WeatherData.AnnualMinDrybulb,Float,-2.019999999999996 +WeatherData.AnnualMaxDrybulb,Float,89.06 +WeatherData.CDD50F,Float,2478.7125000000015 +WeatherData.CDD65F,Float,478.9425000000001 +WeatherData.HDD50F,Float,3103.6275000000005 +WeatherData.HDD65F,Float,6578.857499999999 +WeatherData.AnnualAvgWindspeed,Float,5.239965753424115 +WeatherData.MonthlyAvgDrybulbs,Array,25.87830645161291,24.378392857142845,36.80967741935484,45.45224999999998,56.7265322580645,65.52825000000003,71.6551612903227,69.23701612903221,61.78150000000005,49.497258064516096,42.86099999999999,28.06056451612903 +WeatherData.GroundMonthlyTemps,Array,39.74373312302896,36.12789049374504,35.838320848808905,37.5542229329472,44.44261362495553,51.298915270911266,57.2429623680635,61.0083700132505,61.32826207462318,58.26573583391263,52.47326542757554,45.82728718991018 +WeatherData.WSF,Float,0.65 +WeatherData.MonthlyAvgDailyHighDrybulbs,Array,31.62258064516129,31.389285714285716,44.43741935483871,54.757999999999996,65.98516129032258,74.114,80.28645161290324,78.30064516129033,69.75200000000001,56.99677419354839,49.13000000000001,33.37612903225806 +WeatherData.MonthlyAvgDailyLowDrybulbs,Array,20.20709677419355,16.295,29.044516129032257,37.418,47.38129032258064,55.83800000000001,62.86709677419355,59.5516129032258,53.198,41.83032258064516,36.494,22.52967741935484 +WeatherDesign.HeatingDrybulb,Float,6.620000000000001 +WeatherDesign.HeatingWindspeed,Float,14.6 +WeatherDesign.CoolingDrybulb,Float,84.02 +WeatherDesign.CoolingWetbulb,Float,69.98 +WeatherDesign.CoolingHumidityRatio,Float,0.012780369535440319 +WeatherDesign.CoolingWindspeed,Float,5.7 +WeatherDesign.DailyTemperatureRange,Float,16.740000000000002 +WeatherDesign.DehumidDrybulb,Float,76.1 +WeatherDesign.DehumidHumidityRatio,Float,0.015670700178990075 +WeatherDesign.CoolingDirectNormal,Float,965.0 +WeatherDesign.CoolingDiffuseHorizontal,Float,98.0 diff --git a/example_files/xml_building/17/README.md b/example_files/xml_building/17/README.md index 47ae7c4b..8b04c22d 100644 --- a/example_files/xml_building/17/README.md +++ b/example_files/xml_building/17/README.md @@ -1,4 +1,5 @@ -The HPXML files contained in this folder may need to be re-generated due to HPXML schema updates. They are generated by modifying properties of `id=17` in `example_project_combined.json` to: +The `feature.xml` HPXML file contained in this folder may need to be re-generated due to HPXML schema updates. +It is generated by modifying properties of the "Single-Family Attached" feature (i.e., `"id": "17"`) in `example_project_combined.json` to: ```json "type": "Feature", @@ -21,4 +22,5 @@ The HPXML files contained in this folder may need to be re-generated due to HPXM } ``` -as well as opening each HPXML file (unit 1.xml, etc) and removing the entire `` line (if present). They are then copied (overwritten) back into this folder. +After running the feature (e.g., using `bundle exec rake run_baseline`), the resulting `feature.xml` HPXML file from the `run` folder is copied (overwritten) into this folder. +The changes to properties for the "Single-Family Attached" feature in `example_project_combined.json` are then reverted back to using the `hpxml_directory` field. diff --git a/example_files/xml_building/17/feature.xml b/example_files/xml_building/17/feature.xml new file mode 100644 index 00000000..477ab565 --- /dev/null +++ b/example_files/xml_building/17/feature.xml @@ -0,0 +1,2112 @@ + + + + HPXML + BuildResidentialHPXML + 2023-11-30T15:05:03-07:00 + create + + + uo-example-project + + + 60 + 1 + 1 + 12 + 31 + 2017 + + + + + + + proposed workscope + + + + + attached on one side + no units above or below + 180 + + + single-family attached + 2.0 + 2.0 + 8.0 + 1 + 4580.0 + 36640.0 + + + schedules.csv + + + + + + USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 + + ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 36640.0 + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + attic - vented + 1280.1 + 0 + 6.0 + false + + + 2.3 + + + + + attic - vented + 1280.1 + 180 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1082.8 + 0 + + + 16.66666667 + + + + + outside + conditioned space + + + + 541.4 + 90 + + + 16.66666667 + + + + + outside + conditioned space + + + + 1082.8 + 180 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 270 + + + 4.0 + + + + + outside + attic - vented + gable + + + + 143.1 + 90 + + + 4.0 + + + + + + + attic - vented + conditioned space + ceiling + + + + 2290.0 + + + 38.46153846 + + + + + + + conditioned space + 2290.0 + 169.2 + + + + 10.0 + 2.0 + + + + + + 0.0 + 0.0 + + + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.8 + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + 48.7 + 90 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.6 + + + + + + 48.7 + 90 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.6 + + + + + + 94.9 + 180 + 0.32 + 0.4 + + 2.0 + 9.0 + 13.0 + + + + + + 100.0 + 180 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + fuel oil + + AFUE + 0.85 + + 1.0 + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + + + + + + + + + + regular velocity + + supply + + Percent + 0.1 + to outside + + + + return + + Percent + 0.1 + to outside + + + + + supply + 8.0 + + + + return + 8.0 + + + + 4580.0 + + + + + + + energy recovery ventilator + true + 0.48 + 0.72 + + + + kitchen + true + + + + bath + true + + + + + + + fuel oil + storage water heater + 40.0 + 1.0 + 0.53 + + + + + + + + + + shower head + false + + + + faucet + false + + + 1.0 + + + + + + + 2.92 + 75.0 + 0.12 + 1.09 + 7.0 + 6.0 + 4.5 + + + + fuel oil + 3.03 + + + + 199.0 + 12 + 0.12 + 1.09 + 18.0 + 4.0 + + + + 423.0 + true + + + + fuel oil + + + + + + + + + interior + 0.1 + + + + + + + interior + 0.0 + + + + + + + interior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + + + + + + TV other + + + + other + + + + + + + + proposed workscope + + + + + attached on two sides + no units above or below + 180 + + + single-family attached + 2.0 + 2.0 + 8.0 + 1 + 4580.0 + 36640.0 + + + schedules_2.csv + + + + + + USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 + + ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 36640.0 + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + attic - vented + 1280.1 + 0 + 6.0 + false + + + 2.3 + + + + + attic - vented + 1280.1 + 180 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1082.8 + 0 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 90 + + + 4.0 + + + + + outside + conditioned space + + + + 1082.8 + 180 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 90 + + + 4.0 + + + + + + + attic - vented + conditioned space + ceiling + + + + 2290.0 + + + 38.46153846 + + + + + + + conditioned space + 2290.0 + 135.4 + + + + 10.0 + 2.0 + + + + + + 0.0 + 0.0 + + + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.8 + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + 94.9 + 180 + 0.32 + 0.4 + + 2.0 + 9.0 + 13.0 + + + + + + 100.0 + 180 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + fuel oil + + AFUE + 0.85 + + 1.0 + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + + + + + + + + + + regular velocity + + supply + + Percent + 0.1 + to outside + + + + return + + Percent + 0.1 + to outside + + + + + supply + 8.0 + + + + return + 8.0 + + + + 4580.0 + + + + + + + energy recovery ventilator + true + 0.48 + 0.72 + + + + kitchen + true + + + + bath + true + + + + + + + fuel oil + storage water heater + 40.0 + 1.0 + 0.53 + + + + + + + + + + shower head + false + + + + faucet + false + + + 1.0 + + + + + + + 2.92 + 75.0 + 0.12 + 1.09 + 7.0 + 6.0 + 4.5 + + + + fuel oil + 3.03 + + + + 199.0 + 12 + 0.12 + 1.09 + 18.0 + 4.0 + + + + 423.0 + true + + + + fuel oil + + + + + + + + + interior + 0.1 + + + + + + + interior + 0.0 + + + + + + + interior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + + + + + + TV other + + + + other + + + + + + + + proposed workscope + + + + + attached on two sides + no units above or below + 180 + + + single-family attached + 2.0 + 2.0 + 8.0 + 1 + 4580.0 + 36640.0 + + + schedules_3.csv + + + + + + USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 + + ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 36640.0 + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + attic - vented + 1280.1 + 0 + 6.0 + false + + + 2.3 + + + + + attic - vented + 1280.1 + 180 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1082.8 + 0 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 90 + + + 4.0 + + + + + outside + conditioned space + + + + 1082.8 + 180 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 90 + + + 4.0 + + + + + + + attic - vented + conditioned space + ceiling + + + + 2290.0 + + + 38.46153846 + + + + + + + conditioned space + 2290.0 + 135.4 + + + + 10.0 + 2.0 + + + + + + 0.0 + 0.0 + + + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.8 + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + 94.9 + 180 + 0.32 + 0.4 + + 2.0 + 9.0 + 13.0 + + + + + + 100.0 + 180 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + fuel oil + + AFUE + 0.85 + + 1.0 + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + + + + + + + + + + regular velocity + + supply + + Percent + 0.1 + to outside + + + + return + + Percent + 0.1 + to outside + + + + + supply + 8.0 + + + + return + 8.0 + + + + 4580.0 + + + + + + + energy recovery ventilator + true + 0.48 + 0.72 + + + + kitchen + true + + + + bath + true + + + + + + + fuel oil + storage water heater + 40.0 + 1.0 + 0.53 + + + + + + + + + + shower head + false + + + + faucet + false + + + 1.0 + + + + + + + 2.92 + 75.0 + 0.12 + 1.09 + 7.0 + 6.0 + 4.5 + + + + fuel oil + 3.03 + + + + 199.0 + 12 + 0.12 + 1.09 + 18.0 + 4.0 + + + + 423.0 + true + + + + fuel oil + + + + + + + + + interior + 0.1 + + + + + + + interior + 0.0 + + + + + + + interior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + + + + + + TV other + + + + other + + + + + + + + proposed workscope + + + + + attached on one side + no units above or below + 180 + + + single-family attached + 2.0 + 2.0 + 8.0 + 1 + 4580.0 + 36640.0 + + + schedules_4.csv + + + + + + USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 + + ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 36640.0 + + + + + + + + true + + + + + + + + + + + + + + + + + + + + + + attic - vented + 1280.1 + 0 + 6.0 + false + + + 2.3 + + + + + attic - vented + 1280.1 + 180 + 6.0 + false + + + 2.3 + + + + + + + outside + conditioned space + + + + 1082.8 + 0 + + + 16.66666667 + + + + + other housing unit + conditioned space + + + + 541.4 + 90 + + + 4.0 + + + + + outside + conditioned space + + + + 1082.8 + 180 + + + 16.66666667 + + + + + outside + conditioned space + + + + 541.4 + 270 + + + 16.66666667 + + + + + outside + attic - vented + gable + + + + 143.1 + 270 + + + 4.0 + + + + + attic - vented + attic - vented + + + + 143.1 + 90 + + + 4.0 + + + + + + + attic - vented + conditioned space + ceiling + + + + 2290.0 + + + 38.46153846 + + + + + + + conditioned space + 2290.0 + 169.2 + + + + 10.0 + 2.0 + + + + + + 0.0 + 0.0 + + + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.8 + + + + + + 97.5 + 0 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + 94.9 + 180 + 0.32 + 0.4 + + 2.0 + 9.0 + 13.0 + + + + + + 100.0 + 180 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.8 + + + + + + 48.7 + 270 + 0.32 + 0.4 + + 2.0 + 9.0 + 12.6 + + + + + + 48.7 + 270 + 0.32 + 0.4 + + 2.0 + 1.0 + 4.6 + + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + + + + fuel oil + + AFUE + 0.85 + + 1.0 + + + + room air conditioner + electricity + 1.0 + + EER + 8.5 + + + + + + + + + + + regular velocity + + supply + + Percent + 0.1 + to outside + + + + return + + Percent + 0.1 + to outside + + + + + supply + 8.0 + + + + return + 8.0 + + + + 4580.0 + + + + + + + energy recovery ventilator + true + 0.48 + 0.72 + + + + kitchen + true + + + + bath + true + + + + + + + fuel oil + storage water heater + 40.0 + 1.0 + 0.53 + + + + + + + + + + shower head + false + + + + faucet + false + + + 1.0 + + + + + + + 2.92 + 75.0 + 0.12 + 1.09 + 7.0 + 6.0 + 4.5 + + + + fuel oil + 3.03 + + + + 199.0 + 12 + 0.12 + 1.09 + 18.0 + 4.0 + + + + 423.0 + true + + + + fuel oil + + + + + + + + + interior + 0.1 + + + + + + + interior + 0.0 + + + + + + + interior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + exterior + 0.0 + + + + + + + + + + + + TV other + + + + other + + + + + \ No newline at end of file diff --git a/example_files/xml_building/17/unit 1.xml b/example_files/xml_building/17/unit 1.xml deleted file mode 100644 index e9299248..00000000 --- a/example_files/xml_building/17/unit 1.xml +++ /dev/null @@ -1,580 +0,0 @@ - - - - HPXML - BuildResidentialHPXML - 2022-12-06T09:00:37-07:00 - create - - - urbanopt-example-geojson-project - - asset - - 60 - 1 - 1 - 12 - 31 - 2017 - - - - - - - proposed workscope - - - - - attached on one side - no units above or below - 180 - - - single-family attached - 2.0 - 2.0 - 8.0 - 1 - 4580.0 - 36640.0 - - - - - - USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 - - ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 36640.0 - - - - - - - - true - - - - - - - - - - - - - - - - - - - - - - attic - vented - 1280.1 - 0 - 6.0 - false - - - 2.3 - - - - - attic - vented - 1280.1 - 180 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1082.8 - 0 - - - 16.66666667 - - - - - outside - living space - - - - 541.4 - 90 - - - 16.66666667 - - - - - outside - living space - - - - 1082.8 - 180 - - - 16.66666667 - - - - - other housing unit - living space - - - - 541.4 - 270 - - - 4.0 - - - - - attic - vented - attic - vented - - - - 143.1 - 270 - - - 4.0 - - - - - outside - attic - vented - gable - - - - 143.1 - 90 - - - 4.0 - - - - - - - attic - vented - living space - ceiling - - - - 2290.0 - - - 38.46153846 - - - - - - - living space - 2290.0 - 169.2 - 0.0 - - - - 10.0 - 2.0 - - - - - - 0.0 - 0.0 - - - - - - - - 97.5 - 0 - 0.32 - 0.4 - - 2.0 - 9.0 - 12.8 - - - - - - 97.5 - 0 - 0.32 - 0.4 - - 2.0 - 1.0 - 4.8 - - - - - - 48.7 - 90 - 0.32 - 0.4 - - 2.0 - 9.0 - 12.6 - - - - - - 48.7 - 90 - 0.32 - 0.4 - - 2.0 - 1.0 - 4.6 - - - - - - 94.9 - 180 - 0.32 - 0.4 - - 2.0 - 9.0 - 13.0 - - - - - - 100.0 - 180 - 0.32 - 0.4 - - 2.0 - 1.0 - 4.8 - - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - fuel oil - - AFUE - 0.85 - - 1.0 - - - - room air conditioner - electricity - 1.0 - - EER - 8.5 - - - - - - - - - - - regular velocity - - supply - - Percent - 0.1 - to outside - - - - return - - Percent - 0.1 - to outside - - - - - supply - 8.0 - - - - return - 8.0 - - - - 4580.0 - - - - - - - energy recovery ventilator - true - 0.48 - 0.72 - - - - kitchen - true - - - - bath - true - - - - - - - fuel oil - storage water heater - 40.0 - 1.0 - 0.53 - - - - - - - - - - shower head - false - - - - faucet - false - - - 1.0 - - - - - - - 2.92 - 75.0 - 0.12 - 1.09 - 7.0 - 6.0 - 4.5 - - - - fuel oil - 3.03 - - - - 199.0 - 12 - 0.12 - 1.09 - 18.0 - 4.0 - - - - 423.0 - true - - - - fuel oil - - - - - - - - - interior - 0.1 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - interior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - interior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - - - - - - TV other - - - - other - - - - - \ No newline at end of file diff --git a/example_files/xml_building/17/unit 2.xml b/example_files/xml_building/17/unit 2.xml deleted file mode 100644 index 2726696c..00000000 --- a/example_files/xml_building/17/unit 2.xml +++ /dev/null @@ -1,553 +0,0 @@ - - - - HPXML - BuildResidentialHPXML - 2022-12-06T09:00:42-07:00 - create - - - urbanopt-example-geojson-project - - asset - - 60 - 1 - 1 - 12 - 31 - 2017 - - - - - - - proposed workscope - - - - - attached on two sides - no units above or below - 180 - - - single-family attached - 2.0 - 2.0 - 8.0 - 1 - 4580.0 - 36640.0 - - - - - - USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 - - ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 36640.0 - - - - - - - - true - - - - - - - - - - - - - - - - - - - - - - attic - vented - 1280.1 - 0 - 6.0 - false - - - 2.3 - - - - - attic - vented - 1280.1 - 180 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1082.8 - 0 - - - 16.66666667 - - - - - other housing unit - living space - - - - 541.4 - 90 - - - 4.0 - - - - - outside - living space - - - - 1082.8 - 180 - - - 16.66666667 - - - - - other housing unit - living space - - - - 541.4 - 270 - - - 4.0 - - - - - attic - vented - attic - vented - - - - 143.1 - 270 - - - 4.0 - - - - - attic - vented - attic - vented - - - - 143.1 - 90 - - - 4.0 - - - - - - - attic - vented - living space - ceiling - - - - 2290.0 - - - 38.46153846 - - - - - - - living space - 2290.0 - 135.4 - 0.0 - - - - 10.0 - 2.0 - - - - - - 0.0 - 0.0 - - - - - - - - 97.5 - 0 - 0.32 - 0.4 - - 2.0 - 9.0 - 12.8 - - - - - - 97.5 - 0 - 0.32 - 0.4 - - 2.0 - 1.0 - 4.8 - - - - - - 94.9 - 180 - 0.32 - 0.4 - - 2.0 - 9.0 - 13.0 - - - - - - 100.0 - 180 - 0.32 - 0.4 - - 2.0 - 1.0 - 4.8 - - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - fuel oil - - AFUE - 0.85 - - 1.0 - - - - room air conditioner - electricity - 1.0 - - EER - 8.5 - - - - - - - - - - - regular velocity - - supply - - Percent - 0.1 - to outside - - - - return - - Percent - 0.1 - to outside - - - - - supply - 8.0 - - - - return - 8.0 - - - - 4580.0 - - - - - - - energy recovery ventilator - true - 0.48 - 0.72 - - - - kitchen - true - - - - bath - true - - - - - - - fuel oil - storage water heater - 40.0 - 1.0 - 0.53 - - - - - - - - - - shower head - false - - - - faucet - false - - - 1.0 - - - - - - - 2.92 - 75.0 - 0.12 - 1.09 - 7.0 - 6.0 - 4.5 - - - - fuel oil - 3.03 - - - - 199.0 - 12 - 0.12 - 1.09 - 18.0 - 4.0 - - - - 423.0 - true - - - - fuel oil - - - - - - - - - interior - 0.1 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - interior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - interior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - - - - - - TV other - - - - other - - - - - \ No newline at end of file diff --git a/example_files/xml_building/17/unit 3.xml b/example_files/xml_building/17/unit 3.xml deleted file mode 100644 index e7987d1c..00000000 --- a/example_files/xml_building/17/unit 3.xml +++ /dev/null @@ -1,553 +0,0 @@ - - - - HPXML - BuildResidentialHPXML - 2022-12-06T09:00:46-07:00 - create - - - urbanopt-example-geojson-project - - asset - - 60 - 1 - 1 - 12 - 31 - 2017 - - - - - - - proposed workscope - - - - - attached on two sides - no units above or below - 180 - - - single-family attached - 2.0 - 2.0 - 8.0 - 1 - 4580.0 - 36640.0 - - - - - - USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 - - ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 36640.0 - - - - - - - - true - - - - - - - - - - - - - - - - - - - - - - attic - vented - 1280.1 - 0 - 6.0 - false - - - 2.3 - - - - - attic - vented - 1280.1 - 180 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1082.8 - 0 - - - 16.66666667 - - - - - other housing unit - living space - - - - 541.4 - 90 - - - 4.0 - - - - - outside - living space - - - - 1082.8 - 180 - - - 16.66666667 - - - - - other housing unit - living space - - - - 541.4 - 270 - - - 4.0 - - - - - attic - vented - attic - vented - - - - 143.1 - 270 - - - 4.0 - - - - - attic - vented - attic - vented - - - - 143.1 - 90 - - - 4.0 - - - - - - - attic - vented - living space - ceiling - - - - 2290.0 - - - 38.46153846 - - - - - - - living space - 2290.0 - 135.4 - 0.0 - - - - 10.0 - 2.0 - - - - - - 0.0 - 0.0 - - - - - - - - 97.5 - 0 - 0.32 - 0.4 - - 2.0 - 9.0 - 12.8 - - - - - - 97.5 - 0 - 0.32 - 0.4 - - 2.0 - 1.0 - 4.8 - - - - - - 94.9 - 180 - 0.32 - 0.4 - - 2.0 - 9.0 - 13.0 - - - - - - 100.0 - 180 - 0.32 - 0.4 - - 2.0 - 1.0 - 4.8 - - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - fuel oil - - AFUE - 0.85 - - 1.0 - - - - room air conditioner - electricity - 1.0 - - EER - 8.5 - - - - - - - - - - - regular velocity - - supply - - Percent - 0.1 - to outside - - - - return - - Percent - 0.1 - to outside - - - - - supply - 8.0 - - - - return - 8.0 - - - - 4580.0 - - - - - - - energy recovery ventilator - true - 0.48 - 0.72 - - - - kitchen - true - - - - bath - true - - - - - - - fuel oil - storage water heater - 40.0 - 1.0 - 0.53 - - - - - - - - - - shower head - false - - - - faucet - false - - - 1.0 - - - - - - - 2.92 - 75.0 - 0.12 - 1.09 - 7.0 - 6.0 - 4.5 - - - - fuel oil - 3.03 - - - - 199.0 - 12 - 0.12 - 1.09 - 18.0 - 4.0 - - - - 423.0 - true - - - - fuel oil - - - - - - - - - interior - 0.1 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - interior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - interior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - - - - - - TV other - - - - other - - - - - \ No newline at end of file diff --git a/example_files/xml_building/17/unit 4.xml b/example_files/xml_building/17/unit 4.xml deleted file mode 100644 index 7b6bb135..00000000 --- a/example_files/xml_building/17/unit 4.xml +++ /dev/null @@ -1,580 +0,0 @@ - - - - HPXML - BuildResidentialHPXML - 2022-12-06T09:00:51-07:00 - create - - - urbanopt-example-geojson-project - - asset - - 60 - 1 - 1 - 12 - 31 - 2017 - - - - - - - proposed workscope - - - - - attached on one side - no units above or below - 180 - - - single-family attached - 2.0 - 2.0 - 8.0 - 1 - 4580.0 - 36640.0 - - - - - - USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3 - - ../../../weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 36640.0 - - - - - - - - true - - - - - - - - - - - - - - - - - - - - - - attic - vented - 1280.1 - 0 - 6.0 - false - - - 2.3 - - - - - attic - vented - 1280.1 - 180 - 6.0 - false - - - 2.3 - - - - - - - outside - living space - - - - 1082.8 - 0 - - - 16.66666667 - - - - - other housing unit - living space - - - - 541.4 - 90 - - - 4.0 - - - - - outside - living space - - - - 1082.8 - 180 - - - 16.66666667 - - - - - outside - living space - - - - 541.4 - 270 - - - 16.66666667 - - - - - outside - attic - vented - gable - - - - 143.1 - 270 - - - 4.0 - - - - - attic - vented - attic - vented - - - - 143.1 - 90 - - - 4.0 - - - - - - - attic - vented - living space - ceiling - - - - 2290.0 - - - 38.46153846 - - - - - - - living space - 2290.0 - 169.2 - 0.0 - - - - 10.0 - 2.0 - - - - - - 0.0 - 0.0 - - - - - - - - 97.5 - 0 - 0.32 - 0.4 - - 2.0 - 9.0 - 12.8 - - - - - - 97.5 - 0 - 0.32 - 0.4 - - 2.0 - 1.0 - 4.8 - - - - - - 94.9 - 180 - 0.32 - 0.4 - - 2.0 - 9.0 - 13.0 - - - - - - 100.0 - 180 - 0.32 - 0.4 - - 2.0 - 1.0 - 4.8 - - - - - - 48.7 - 270 - 0.32 - 0.4 - - 2.0 - 9.0 - 12.6 - - - - - - 48.7 - 270 - 0.32 - 0.4 - - 2.0 - 1.0 - 4.6 - - - - - - - - - 20.0 - 180 - 4.4 - - - - - - - - - - - - - - - - - fuel oil - - AFUE - 0.85 - - 1.0 - - - - room air conditioner - electricity - 1.0 - - EER - 8.5 - - - - - - - - - - - regular velocity - - supply - - Percent - 0.1 - to outside - - - - return - - Percent - 0.1 - to outside - - - - - supply - 8.0 - - - - return - 8.0 - - - - 4580.0 - - - - - - - energy recovery ventilator - true - 0.48 - 0.72 - - - - kitchen - true - - - - bath - true - - - - - - - fuel oil - storage water heater - 40.0 - 1.0 - 0.53 - - - - - - - - - - shower head - false - - - - faucet - false - - - 1.0 - - - - - - - 2.92 - 75.0 - 0.12 - 1.09 - 7.0 - 6.0 - 4.5 - - - - fuel oil - 3.03 - - - - 199.0 - 12 - 0.12 - 1.09 - 18.0 - 4.0 - - - - 423.0 - true - - - - fuel oil - - - - - - - - - interior - 0.1 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - interior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - interior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - - - - - - TV other - - - - other - - - - - \ No newline at end of file diff --git a/lib/uo_cli.rb b/lib/uo_cli.rb index 3cfff78a..7c997391 100755 --- a/lib/uo_cli.rb +++ b/lib/uo_cli.rb @@ -24,7 +24,7 @@ module CLI class UrbanOptCLI COMMAND_MAP = { 'create' => 'Make new things - project directory or files', - 'install_python' => 'Install python and other dependencies to run OpenDSS and DISCO analysis', + 'install_python' => 'Install python and other dependencies to run OpenDSS, DISCO, GMT analysis', 'update' => 'Update files in an existing URBANopt project', 'run' => 'Use files in your directory to simulate district energy use', 'process' => 'Post-process URBANopt simulations for additional insights', @@ -36,7 +36,8 @@ class UrbanOptCLI 'delete' => 'Delete simulations for a specified scenario', 'des_params' => 'Make a DES system parameters config file', 'des_create' => 'Create a Modelica model', - 'des_run' => 'Run a Modelica DES model' + 'des_run' => 'Run a Modelica DES model', + 'ghe_size' => 'Run a Ground Heat Exchanger model for sizing' }.freeze def initialize @@ -104,6 +105,9 @@ def opt_create opt :photovoltaic, "\nCreate default project with FeatureFile containing community photovoltaic for the district and ground-mount photovoltaic associated with buildings, used for REopt analysis \n" \ 'Example: uo create --project-folder urbanopt_example_project --photovoltaic', short: :v + opt :ghe, "\nCreate default project with FeatureFile containing Ground Heat Exchanger Network\n" \ + 'Example: uo create --project-folder urbanopt_example_project --ghe', short: :g + opt :class_coincident, "\nCreate default class project with buildings that have coincident schedules \n" \ "Refer to https://docs.urbanopt.net/ for more details about the class project \n" \ "Used with --project-folder\n" \ @@ -143,6 +147,8 @@ def opt_create def opt_install_python @subopts = Optimist.options do banner "\nURBANopt #{@command}:\n \n" + opt :verbose, "\Verbose output \n" \ + 'Example: uo install_python --verbose' end end @@ -356,7 +362,7 @@ def opt_des_params @subopts = Optimist.options do banner "\nURBANopt #{@command}:\n \n" - opt :sys_param_file, "\nBuild a system parameters JSON config file for Modelica DES simulation using URBANopt SDK outputs\n" \ + opt :sys_param_file, "\nBuild a system parameters JSON config file for Modelica District Energy System or Ground Heat Exchanger simulation using URBANopt SDK outputs\n" \ "Provide path/name of json file to be created\n" \ 'Example: uo des_params --sys-param-file path/to/sys_params.json', type: String, required: true, short: :y @@ -368,16 +374,18 @@ def opt_des_params opt :model_type, "\nSelection for which kind of DES simulation to perform\n" \ "Valid choices: 'time_series'", type: String, default: 'time_series' + + opt :ghe, "\nUse this argument to add Ground Heat Exchanger properties to the System Parameter File.\n", short: :g end end def opt_des_create @subopts = Optimist.options do banner "\nURBANopt #{@command}:\n" - banner '' + opt :sys_param, "Path to system parameters config file, possibly created with 'des_params' command in this CLI\n" \ "Example: uo des_create --sys-param system_parameters.json\n", type: String, required: true, short: :y - banner '' + opt :feature, "Path to the feature JSON file\n" \ 'Example: uo des_create --feature path/to/example_project.json', type: String, required: true, short: :f @@ -386,6 +394,7 @@ def opt_des_create opt :model_type, "\nSelection for which kind of DES simulation to perform\n" \ "Valid choices: 'time_series'", type: String, default: 'time_series' + end end @@ -398,6 +407,21 @@ def opt_des_run end end + def opt_ghe_size + @subopts = Optimist.options do + banner "\nURBANopt #{@command}:\n \n" + + opt :sys_param, "Path to system parameters config file, possibly created with 'des_params' command in this CLI\n" \ + "Example: uo ghe_size --sys-param path/to/sys_params.json --scenario path/to/baseline_scenario.csv --feature path/to/example_project.json\n", type: String, required: true, short: :y + + opt :scenario, "\nPath to the scenario CSV file\n" \ + "Example: uo ghe_size --sys-param-file path/to/sys_params.json --scenario path/to/baseline_scenario.csv --feature path/to/example_project.json\n", type: String, required: true, short: :s + + opt :feature, "\nPath to the feature JSON file\n" \ + "Example: uo ghe_size --sys-param-file path/to/sys_params.json --feature path/to/example_project.json\n", type: String, required: true, short: :f + end + end + attr_reader :mainopts, :command, :subopts end @@ -630,6 +654,8 @@ def self.create_project_folder(dir_name, empty_folder: false, overwrite_project: disco_files = File.join(path_item, 'disco') Pathname.new(disco_files).children.each { |file| FileUtils.cp(file, File.join(dir_name, 'disco')) } end + elsif @opthash.subopts[:ghe] == true + FileUtils.cp(File.join(path_item, 'example_project_with_ghe.json'), dir_name) elsif @opthash.subopts[:streets] == true FileUtils.cp(File.join(path_item, 'example_project_with_streets.json'), dir_name) elsif @opthash.subopts[:photovoltaic] == true @@ -639,7 +665,7 @@ def self.create_project_folder(dir_name, empty_folder: false, overwrite_project: case @opthash.subopts[:floorspace] when false - if @opthash.subopts[:electric] != true && @opthash.subopts[:streets] != true && @opthash.subopts[:photovoltaic] != true && @opthash.subopts[:disco] != true + if @opthash.subopts[:electric] != true && @opthash.subopts[:streets] != true && @opthash.subopts[:photovoltaic] != true && @opthash.subopts[:disco] != true && @opthash.subopts[:ghe] != true # copy feature file FileUtils.cp(File.join(path_item, 'example_project.json'), dir_name) end @@ -731,11 +757,10 @@ def self.create_project_folder(dir_name, empty_folder: false, overwrite_project: if @opthash.subopts[:combined] # copy residential files - FileUtils.cp_r(File.join(path_item, 'residential'), File.join(dir_name, 'mappers', 'residential')) + FileUtils.cp_r(File.join(path_item, 'mappers', 'residential'), File.join(dir_name, 'mappers', 'residential')) FileUtils.cp_r(File.join(path_item, 'measures'), File.join(dir_name, 'measures')) FileUtils.cp_r(File.join(path_item, 'resources'), File.join(dir_name, 'resources')) FileUtils.cp(File.join(path_item, 'example_project_combined.json'), dir_name) - FileUtils.cp(File.join(path_item, 'base_workflow_res.osw'), File.join(dir_name, 'mappers', 'base_workflow.osw')) FileUtils.cp_r(File.join(path_item, 'xml_building'), File.join(dir_name, 'xml_building')) if File.exist?(File.join(dir_name, 'example_project.json')) FileUtils.remove(File.join(dir_name, 'example_project.json')) @@ -751,7 +776,6 @@ def self.create_project_folder(dir_name, empty_folder: false, overwrite_project: if @opthash.subopts[:combined] # copy residential files FileUtils.cp_r(File.join(path_item, 'residential'), File.join(dir_name, 'mappers', 'residential')) - FileUtils.cp(File.join(path_item, 'base_workflow_res.osw'), File.join(dir_name, 'mappers', 'base_workflow.osw')) FileUtils.cp_r(File.join(path_item, 'measures'), File.join(dir_name, 'measures')) FileUtils.cp_r(File.join(path_item, 'resources'), File.join(dir_name, 'resources')) FileUtils.cp(File.join(path_item, 'example_project_combined.json'), dir_name) @@ -822,7 +846,6 @@ def self.update_project(existing_project_folder, new_project_directory) Pathname.new(File.join(path_item, 'resources')).children.each { |res| FileUtils.cp_r(res, File.join(new_path, 'resources'), remove_destination: true) } end # adjust for residential workflow - FileUtils.cp_r(File.join(path_item, 'base_workflow_res.osw'), File.join(new_path, 'mappers', 'base_workflow.osw'), remove_destination: true) if Dir.exist?(File.join(path, 'xml_building')) Pathname.new(File.join(path_item, 'xml_building')).children.each { |res| FileUtils.cp_r(res, File.join(new_path, 'xml_building'), remove_destination: true) } end @@ -863,7 +886,8 @@ def self.setup_python_variables python_path: nil, pip_path: nil, ditto_path: nil, - gmt_path: nil + gmt_path: nil, + ghe_path: nil } # get location @@ -884,6 +908,7 @@ def self.setup_python_variables pvars[:ditto_path] = configs[:ditto_path] pvars[:gmt_path] = configs[:gmt_path] pvars[:disco_path] = configs[:disco_path] + pvars[:ghe_path] = configs[:ghe_path] end return pvars end @@ -1004,7 +1029,7 @@ def self.install_python_dependencies # cd into script dir wd = Dir.getwd FileUtils.cd(pvars[:python_install_path]) - puts 'Installing python...' + puts "Installing Python #{pvars[:python_version]}..." if (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM).nil? # not windows script = File.join(pvars[:python_install_path], 'install_python.sh') @@ -1022,12 +1047,14 @@ def self.install_python_dependencies pvars[:ditto_path] = File.join(mac_path_base, 'bin', 'ditto_reader_cli') pvars[:gmt_path] = File.join(mac_path_base, 'bin', 'uo_des') pvars[:disco_path] = File.join(mac_path_base, 'bin', 'disco') + pvars[:ghe_path] = File.join(mac_path_base, 'bin', 'thermalnetwork') configs = { python_path: pvars[:python_path], pip_path: pvars[:pip_path], ditto_path: pvars[:ditto_path], gmt_path: pvars[:gmt_path], - disco_path: pvars[:disco_path] + disco_path: pvars[:disco_path], + ghe_path: pvars[:ghe_path] } else # windows @@ -1054,13 +1081,15 @@ def self.install_python_dependencies pvars[:ditto_path] = File.join(windows_path_base, 'Scripts', 'ditto_reader_cli.exe') pvars[:gmt_path] = File.join(windows_path_base, 'Scripts', 'uo_des.exe') pvars[:disco_path] = File.join(windows_path_base, 'Scripts', 'disco.exe') + pvars[:ghe_path] = File.join(windows_path_base, 'Scripts', 'thermalnetwork.exe') configs = { python_path: pvars[:python_path], pip_path: pvars[:pip_path], ditto_path: pvars[:ditto_path], gmt_path: pvars[:gmt_path], - disco_path: pvars[:disco_path] + disco_path: pvars[:disco_path], + ghe_path: pvars[:ghe_path] } end @@ -1077,16 +1106,22 @@ def self.install_python_dependencies if !results[:python_deps] deps = get_python_deps deps.each do |dep| - puts "Installing #{dep[:name]}..." + puts "Installing #{dep[:name]} #{dep[:version]}" the_command = '' if dep[:version].nil? the_command = "#{pvars[:pip_path]} install #{dep[:name]}" else the_command = "#{pvars[:pip_path]} install #{dep[:name]}~=#{dep[:version]}" end - # system(the_command) - # puts "INSTALL COMMAND: #{the_command}" + + if @opthash.subopts[:verbose] + puts "INSTALL COMMAND: #{the_command}" + end stdout, stderr, status = Open3.capture3(the_command) + if @opthash.subopts[:verbose] + puts "status: #{status}" + puts "stdout: #{stdout}" + end if stderr && !stderr == '' puts "Error installing: #{stderr}" end @@ -1713,6 +1748,16 @@ def self.install_python_dependencies if @opthash.subopts[:model_type] des_cli_addition += " #{@opthash.subopts[:model_type]}" end + if @opthash.subopts[:ghe] + run_dir = @root_dir / 'run' / @scenario_name.downcase + ghe_run_dir = run_dir / 'ghe_dir' + # make ghe run dir + unless Dir.exist?(ghe_run_dir) + Dir.mkdir ghe_run_dir + puts "Creating GHE results folder #{ghe_run_dir}" + end + des_cli_addition += " --ghe" + end else abort("\nCommand must include new system parameter file name, ScenarioFile, & FeatureFile. Please try again") end @@ -1776,6 +1821,54 @@ def self.install_python_dependencies end end + if @opthash.command == 'ghe_size' + + # first check python + res = check_python + if res[:python] == false + puts "\nPython error: #{res[:message]}" + abort("\nPython dependencies are needed to run this workflow. Install with the CLI command: uo install_python \n") + end + + ghe_cli_root = res[:pvars][:ghe_path].to_s + + if @opthash.subopts[:sys_param] + ghe_cli_addition = " -y #{@opthash.subopts[:sys_param]}" + + if @opthash.subopts[:scenario] + # GHE cli needs the scenario folder name + root_dir, scenario_file_name = Pathname(File.expand_path(@opthash.subopts[:scenario])).split + scenario_name = File.basename(scenario_file_name, File.extname(scenario_file_name)) + run_dir = root_dir / 'run' / scenario_name.downcase + ghe_run_dir = run_dir / 'ghe_dir' + unless Dir.exist?(ghe_run_dir) + Dir.mkdir ghe_run_dir + puts "Creating GHE results folder #{ghe_run_dir}" + end + ghe_cli_addition += " -s #{run_dir}" + ghe_cli_addition += " -o #{ghe_run_dir}" + end + + if @opthash.subopts[:feature] + ghe_cli_addition += " -f #{@opthash.subopts[:feature]}" + end + + else + abort("\nCommand must include ScenarioFile & FeatureFile. Please try again") + end + # if @opthash.subopts[:verbose] + # puts "ghe_cli_root: #{ghe_cli_root}" + # puts "ghe_cli_addition: #{ghe_cli_addition}" + # puts "comand: #{ghe_cli_root + ghe_cli_addition}" + # end + begin + system(ghe_cli_root + ghe_cli_addition) + rescue FileNotFoundError + abort("\nFile Not Found Error Holder.") + end + + end + # Delete simulations from a scenario if @opthash.command == 'delete' scenario_results_dir = File.join(@root_dir, 'run', @scenario_name.downcase) diff --git a/lib/uo_cli/version.rb b/lib/uo_cli/version.rb index b73c1d9c..031109d6 100644 --- a/lib/uo_cli/version.rb +++ b/lib/uo_cli/version.rb @@ -5,6 +5,6 @@ module URBANopt module CLI - VERSION = '0.10.0'.freeze + VERSION = '0.11.0'.freeze end end diff --git a/spec/spec_files/baseline_scenario_ghe.csv b/spec/spec_files/baseline_scenario_ghe.csv new file mode 100644 index 00000000..096be7a6 --- /dev/null +++ b/spec/spec_files/baseline_scenario_ghe.csv @@ -0,0 +1,3 @@ +Feature Id,Feature Name,Mapper Class +4,Restaurant 12,URBANopt::Scenario::BaselineMapper +5,District Office 1,URBANopt::Scenario::BaselineMapper diff --git a/spec/spec_files/ghp/find_design_rectangle_single_u_tube.json b/spec/spec_files/ghp/find_design_rectangle_single_u_tube.json new file mode 100644 index 00000000..7b6d0adc --- /dev/null +++ b/spec/spec_files/ghp/find_design_rectangle_single_u_tube.json @@ -0,0 +1,8812 @@ +{ + "version": "0.6", + "fluid": { + "fluid_name": "WATER", + "concentration_percent": 0.0, + "temperature": 20 + }, + "grout": { + "conductivity": 1.0, + "rho_cp": 3901000 + }, + "soil": { + "conductivity": 2.0, + "rho_cp": 2343493, + "undisturbed_temp": 18.3 + }, + "pipe": { + "inner_diameter": 0.0216, + "outer_diameter": 0.02667, + "shank_spacing": 0.0323, + "roughness": 0.000001, + "conductivity": 0.4, + "rho_cp": 1542000, + "arrangement": "SINGLEUTUBE" + }, + "borehole": { + "buried_depth": 2.0, + "diameter": 0.150 + }, + "simulation": { + "num_months": 240 + }, + "geometric_constraints": { + "length": 100, + "width": 100, + "b_min": 3.0, + "b_max": 10.0, + "max_height": 135.0, + "min_height": 60.0, + "method": "RECTANGLE" + }, + "design": { + "flow_rate": 0.2, + "flow_type": "BOREHOLE", + "max_eft": 35.0, + "min_eft": 5.0 + }, + "loads": { + "ground_loads": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 88964.3734177778, + 122073.202982222, + 63902.6904222222, + 52317.2963288889, + 41514.9882444444, + 29434.3039733333, + 32753.9204488889, + 17284.982448, + 15288.7578817778, + 11017.8325795556, + 8217.36227022222, + 32409.2688222222, + 51278.9453822222, + 55786.086, + 58907.0002622222, + 59597.7688711111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 41261.1886622222, + 94426.0466444445, + 39088.0663733333, + 22820.2751377778, + 3928.03210222222, + -3923.54811422222, + 13260.5006431111, + -19509.30426, + -27926.1600355556, + -22575.6779884444, + -14158.1774564444, + 21174.6808488889, + 22526.9402626667, + 39041.1749955556, + 49278.1489066667, + 57193.9996177778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 75889.8850088889, + 129885.599591111, + 69544.6023822222, + 50567.6617955556, + 28604.0042084444, + 9723.54263155556, + 14641.9499395556, + -15588.188636, + -24385.9782417778, + -20769.2755808889, + -13236.4395048889, + 23332.5927471111, + 44427.2358755555, + 57191.6550488889, + 69121.7007688889, + 77919.1093822222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 18264.0158017778, + 86297.7193777778, + 141136.013404444, + 82539.9615911111, + 64681.0872933333, + 51027.4903688889, + 35500.8759733333, + 39895.7703555556, + 23758.6888355556, + 18831.9876151111, + 16533.8411902222, + 14627.9997546667, + 41958.1117644445, + 63313.3244177778, + 69317.4722711111, + 73835.1634488889, + 77274.6460088889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 78453.96416, + 133601.74128, + 119131.355168889, + 104141.94012, + 94641.7469822222, + 86884.1546711111, + 86776.0114311111, + 86429.8944488889, + 85929.6220622222, + 87441.5759244445, + 93968.2695688889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 12990.5821497778, + 14682.5989026667, + 14619.2076213333, + 14677.2357013333, + 14371.18154, + 3897.61132088889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8801.13061644444, + 12797.82928, + 13262.9331333333, + 13595.979144, + 68476.9443244444, + 151989.608933333, + 175980.410088889, + 126174.440111111, + 99703.9642844445, + 73253.4172933333, + 55307.2078044444, + 45939.4828088889, + 24878.1032515556, + 11603.1248955556, + 12236.0705742222, + 224.653953293333, + 38597.1722622222, + 57383.6166266667, + 69498.0040755556, + 77745.3182133333, + 84529.3282933333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 6933.06604711111, + 99460.7152622222, + 153355.320311111, + 97590.04236, + 75572.1959244444, + 58324.3748933333, + 27107.0848942222, + 21543.3056924445, + 0, + -21944.5493506667, + -26846.163684, + -27160.834136, + 12674.2998066667, + 34262.0643866667, + 50241.1805777778, + 65188.1003155556, + 73411.3826222222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 86810.3007511111, + 138299.37812, + 70408.5760177778, + 41696.1061911111, + 8072.58514133333, + -1906.89063013333, + -12989.9080862222, + -23864.2237426667, + -32266.8362622222, + -33333.9081777778, + -28793.4453746667, + 7430.70079377778, + 16430.5922377778, + 29677.2599244444, + 46644.3188311111, + 60608.2780622222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 79698.3440977778, + 127704.271311111, + 65651.1526711111, + 39199.4333955556, + 15841.1969262222, + -4769.46856933333, + 13448.0368471111, + -9911.43052088889, + -27850.3425391111, + -30625.3449688889, + -25635.0473173333, + 6017.68773866667, + 8435.67094088889, + 22427.7943057778, + 32530.6002622222, + 37846.9102177778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 18665.786988, + 75233.1126488889, + 25548.0051973333, + 11640.0811626667, + 1866.1303, + 0, + 5645.54604177778, + -25981.6918275555, + -31033.8860977778, + -28908.3878644444, + -23248.4813382222, + -705.791434044444, + 26969.2242435556, + 39034.7274311111, + 54631.6788933333, + 67639.9332311111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 20573.2989288889, + 94228.5167155556, + 147449.937422222, + 118903.345844444, + 87726.4410444445, + 70720.40368, + 49318.0065777778, + 41806.594, + 35245.0248933333, + 31750.7380355556, + 29839.3282488889, + 32946.76124, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 63225.1100133333, + 116162.251742222, + 58147.3599422222, + 46259.2233911111, + 34594.9931688889, + 22900.2249368889, + 23444.0476906667, + 8618.43008577778, + 6449.557328, + 3203.32585866667, + 934.395692844444, + 23198.3661782222, + 43016.3915466667, + 46922.7363866667, + 51682.2112311111, + 54425.9429733333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 27703.4259911111, + 80129.7447733333, + 24337.2991302222, + 11511.2177951111, + -780.0556536, + 3080.32391333333, + 4063.98779066667, + -17188.708588, + -25987.611864, + -35929.3459377778, + -38302.6357955556, + 0, + 0, + 9146.544228, + 15054.7405995556, + 19760.3196666667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -13526.3161408889, + 16871.8401026667, + 0, + -27126.5741231111, + -13303.9337817778, + -16353.4852284444, + -20572.1559515556, + -21302.0495537778, + -40322.7749644445, + -75202.3401822222, + -79782.7485777778, + -41123.7383111111, + -6700.16243511111, + -2181.97303644444, + -778.1565528, + -2088.15511235556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -191.082071373333, + -15516.8258204444, + -32980.1713466667, + -32443.5581422222, + -15160.8323417778, + -18214.8384693333, + -27473.130712, + -33280.8623066667, + -70771.9841955556, + -83326.2713822222, + -85492.6530355556, + -43300.3774533333, + -10490.8614146667, + -2572.19135946667, + -2828.13915293333, + -7847.00830711111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -10136.5091342222, + 29068.8442977778, + 30558.8178266667, + 18813.8758204445, + 12087.1904497778, + 7378.73928577778, + 12094.9275271111, + 7333.10811377778, + -847.365295688889, + 4279.48297866667, + 3748.26228266667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 16299.3256871111, + 73783.8760044445, + 130205.633244444, + 53613.8429244445, + 25291.3335182222, + 3083.31323866667, + 6512.62623111111, + -7082.03409288889, + -29622.4556266667, + -38657.8379822222, + -42871.9074888889, + -34973.0549022222, + -13752.5084244444, + 2313.63816382222, + 7828.45690577778, + 26505.5564386667, + 39588.9249022222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 41745.0490666667, + 100216.252586667, + 33500.9587111111, + 9357.43819955556, + 4123.83291155556, + -13011.741884, + -16365.8235222222, + -36592.5658622222, + -10110.3964982222, + -7845.51364444444, + -8836.97321333333, + -15038.9440666667, + 0, + -1800.7959572, + 11574.1694697778, + 19879.8047586667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 61513.5747244444, + 40284.9687911111, + 23324.0057635556, + 14658.8601426667, + -3981.13658755556, + 3209.30450933333, + -19331.1170244444, + -32549.0637422222, + -37182.2249377778, + -28859.5329102222, + 7429.93880888889, + 3220.55844, + 23090.1057097778, + 38415.4681733333, + 47490.4151288889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 72077.0298533333, + 133462.239431111, + 63956.0293644445, + 43974.73408, + 22637.6918355556, + 6478.835132, + 13707.0530951111, + -2686.62976693333, + -29735.5810755556, + -35753.2102, + -30325.8262933333, + 13258.7129093333, + 36070.3131422222, + 46987.7981733333, + 60952.0504755556, + 71662.9203733333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 20551.8168164444, + 93398.5393288889, + 148270.829604444, + 77011.4681511111, + 52111.5604088889, + 25851.0993404444, + 9133.41464222222, + 13904.7295595556, + -20776.2799804444, + -34751.7862133333, + -35649.4630266667, + -23262.4315231111, + 340.422610533333, + 27692.5530528889, + 37877.6826844444, + 53375.5761111111, + 64355.1922177778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 10209.6303764444, + 80581.3673555556, + 134642.729866667, + 100967.686915556, + 67513.03344, + 37703.3053733333, + 23547.3552573333, + 25341.9468991111, + 4929.51470311111, + -6441.11688, + -7250.93097422222, + -6577.39494666667, + -134.72010064, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -4708.04086444444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8875.42414311111, + 71883.3098488889, + 16228.0214857778, + 4217.058832, + -13238.3444671111, + -12116.3217182222, + -23985.7017182222, + -25693.0753973333, + -29758.1475511111, + -32481.9504577778, + -48911.5169466667, + -22465.9228573333, + -42.6655854266667, + -1654.4860664, + -1194.72783013333, + -13008.312952, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -5630.833872, + 10992.4233142222, + -1683.605612, + -19244.1628257778, + -18341.6503391111, + -26832.6824128889, + -39124.9933333333, + -75759.1752933333, + -87977.8960577778, + -97853.2202177778, + -101654.6456, + -59547.6537111111, + -21993.8439115556, + -12587.3749151111, + -2932.35230933333, + -1768.14490471111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -21866.2700568889, + 46789.6821022222, + 40494.8077066667, + 6372.94853955556, + 5685.02272044445, + 1040.01852128889, + 29643.8498177778, + 7491.27859244444, + -10524.9455848889, + -19007.7716675556, + -35971.5481777778, + 1888.08132622222, + -12761.7522262222, + -3890.40177155556, + -3137.41416577778, + 8061.56566755556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 9592.48123066667, + 83718.1074577778, + 30303.2598177778, + 16276.4661404445, + -5337.64553244444, + -10304.6440306667, + 15828.741404, + -18685.4813666667, + -44011.0748977778, + -39932.4042444444, + -28314.8602502222, + 10977.6818373333, + 36203.0743555556, + 52154.9349333333, + 65790.9475911111, + 76291.9785733333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 22638.1607493333, + 100633.292777778, + 158350.424328889, + 87668.4129644445, + 59119.7698888889, + 33730.4333911111, + 7968.10529022222, + 22622.7159017778, + 0, + -19181.2404582222, + -28865.6874035556, + -22652.4333124444, + 18673.17238, + 38572.5542888889, + 51277.1869555556, + 65865.9737955556, + 77114.3361111111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 19058.7074266667, + 95045.0128311111, + 145842.149306667, + 121280.738697778, + 82700.2714888889, + 59968.7968977778, + 38319.63392, + 36258.4647955556, + 31317.5789333333, + 24132.7354946667, + 14317.1685342222, + 18670.0658262222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 14780.4260395556, + 90280.8488488889, + 137288.282786667, + 77176.1741155556, + 61711.3977244444, + 47878.7343511111, + 32201.1883333333, + 29266.9310617778, + 7380.76147644445, + -10485.6154417778, + -17548.2775342222, + -3768.60141777778, + 0, + 30193.6512222222, + 39255.99612, + 44657.2966977778, + 50613.9670311111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 43510.8025111111, + 98452.8437111111, + 42554.8045466667, + 29309.1626088889, + 20198.255828, + 8785.451312, + 29833.7598977778, + 15588.0421004444, + -5773.38366044444, + 6882.04236666667, + 5466.68474266667, + 30846.0275155556, + 30970.8758088889, + 39423.0466533333, + 43727.9682044444, + 48123.1556577778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8187.55693822222, + 56505.8686488889, + 33359.4053644444, + 15438.6930622222, + 2146.97741506667, + -3204.43952888889, + -2757.35075675555, + -25895.0893142222, + -37259.5957111111, + -28277.0247697778, + -35699.2851155555, + -10864.43916, + 2117.74064102222, + 9863.39616577778, + 32992.7734044444, + 46989.5566, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 78484.4435555556, + 137739.026155556, + 53077.5227911111, + 23093.3587991111, + -4517.95494177778, + 0, + -11521.9148906667, + -35254.9893111111, + -22933.488508, + -10875.1948697778, + -8375.47413466667, + -17476.2699622222, + -10330.6394382222, + 3302.97003644445, + 17338.0576262222, + 26267.6413106667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 5990.78381066667, + 63924.9638266667, + 43227.1096755556, + 10271.5856093333, + 5924.25666844444, + 13820.969836, + 15317.6253862222, + -116.993108342222, + -5212.12317555555, + -7858.93630133333, + -7913.24237822222, + 22036.8960577778, + 17776.6678511111, + 27385.2386857778, + 29390.3433066667, + 31987.8325644444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -3371.46075511111, + 29332.0221555556, + 32797.0019022222, + 33287.3098711111, + 42957.4842533333, + 51200.9884666667, + 54518.8465155556, + 52105.9920577778, + 56329.43984, + 61921.23664, + 66213.5561333333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 17361.737772, + 19848.3582284444, + 20870.7367995556, + 22360.1828004444, + 23280.2795537778, + 23033.5722924444, + 16250.9982608889, + 9359.31385466667, + 7162.89241244445, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 4105.92626666667, + 7222.47376933333, + 68003.0483377778, + 147921.781911111, + 180003.397231111, + 113331.184808889, + 76657.73132, + 46752.4620711111, + 14841.8830515555, + 18315.8014671111, + -904.827748444445, + -26393.2222817778, + -24993.221584, + -24251.9861297778, + 11180.0181324445, + 30216.5107688889, + 42175.8636, + 51767.7879955556, + 57523.9976888889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 61644.5775111111, + 117151.073671111, + 48611.9982711111, + 20134.6593968889, + -4745.02643866667, + -1194.97107915556, + -13879.9064364444, + -35990.8908711111, + -17204.9740346667, + -18012.9417808889, + -17394.5910435556, + -15063.0931262222, + -20796.8535724444, + 0, + 13764.4364186667, + 27304.1459093333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 20532.6206586667, + 79060.62136, + 25411.815052, + 23062.732868, + 1979.42279942222, + -18218.8242364444, + -16717.0106346667, + -3835.392324, + -9665.01633066667, + -17047.3603911111, + -25913.0545733333, + -15926.4513124445, + -2055.67404111111, + -1967.8640748, + -15031.5586746667, + -12885.398928, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -13830.1136546667, + 18834.5080266667, + 8988.52028488889, + -16676.2444431111, + -21886.6971133333, + -13886.3246937778, + -17971.5308328889, + -32864.1151866667, + -66610.3744177778, + -82380.8239777778, + -99216.5870266667, + -54502.4345333333, + -18160.415164, + -6028.35552711111, + -704.217642177778, + -1901.66810293333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -238.832733648889, + -5325.24862444445, + -37605.1265511111, + -29937.5070711111, + -26544.7400462222, + -20154.3244684444, + -21740.3667075556, + -26430.9405337778, + -22140.0277817778, + -23904.1693351111, + -28128.8773231111, + -25146.4098537778, + -10371.0246373333, + -9411.74427644445, + -13110.5947697778, + -10395.4081537778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -2390.9679072, + -4482.81571555556, + -9504.999504, + -15619.4886306667, + -20231.1090995555, + -11164.0164497778, + -10339.021272, + -10337.3800737778, + -16061.4398662222, + -14721.2549822222, + -424.273186133333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -9135.70059688889, + -11355.2160426667, + -12126.4619786667, + -11638.5865, + -7201.98809866667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -10797.443104, + 4788.16650622222, + -15495.8126217778, + -27206.3773866667, + -34430.8733466667, + -52828.1192755556, + -83881.0549955556, + -120761.123617778, + -143668.440875556, + -148461.618897778, + -145847.131515555, + -94292.6992888889, + -50219.2002444444, + -29066.7048786667, + -14392.6343453333, + -332.811553777778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -532.114562888889, + -12298.4067995556, + -31546.7605422222, + -20994.7058795555, + -15752.8359862222, + -30510.4610933333, + -61743.0494044444, + -104286.717248889, + -105187.910915556, + -97812.7764044445, + -100758.727213333, + -49099.9616711111, + -15489.3943644444, + -8717.25366444444, + -4745.08505288889, + -4423.55673688889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -8490.38731733334, + 23245.4040915556, + -6148.33884, + -20088.4127755556, + -33668.3023155556, + -38083.4186044444, + -38753.9653066667, + -48900.9663866667, + -50756.3995911111, + -74498.0903022222, + -91803.9394133333, + -50254.0757066667, + -15698.4712951111, + -4632.92673866667, + -7189.26881244444, + -28043.9453151111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 4645.23572533333, + 28801.5341373333, + 7512.49694088889, + -9706.36866444444, + -29023.8578822222, + -39409.2723111111, + -43012.8746933333, + -56026.9904533333, + -64517.5536133333, + -85818.8411822222, + -102370.325253333, + -62400.4079066667, + -22977.1854106667, + -7406.81549822222, + -4335.10787555556, + -22314.2878644444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -3669.80714622222, + 42168.2437511111, + 21758.3612737778, + 12901.1075395556, + -169.27845992, + -18185.3848226667, + -21762.0832768889, + -25389.1606551111, + -31818.1443911111, + -29993.4836533333, + -25275.449064, + -46.0877767911111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -10783.0240053333, + -14972.5927671111, + -15031.2362964444, + -19111.5188408889, + -14732.1279204444, + -1755.37286568889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -597.566134133333, + -10114.294344, + -28204.28452, + -25736.0396222222, + -43148.8596888889, + -67077.5297688889, + -96135.8235066667, + -124298.785, + -133839.12888, + -152409.579835556, + -156974.455462222, + -120461.898013333, + -72988.4810088889, + -48112.8981688889, + -26800.2101337778, + -8879.82020977778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -12863.9754297778, + -28449.2040475556, + -24372.5262777778, + -68799.6156177778, + -107417.889, + -127485.05412, + -160611.761022222, + -163658.821364444, + -163320.324231111, + -168583.588315556, + -123440.086644444, + -80489.9291688889, + -58327.0125333333, + -44831.3809377778, + -27823.3799968889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -7940.878984, + -53979.8887422222, + -46838.0388355556, + -42354.0508355556, + -24654.0503871111, + -36167.9058222222, + -24054.9251146667, + -19737.7531911111, + -21260.7265271111, + -23780.1123337778, + -19563.8741008889, + -26805.1630355556, + -27241.1063133333, + -8167.83325244444, + -2591.78023253333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -9391.844748, + 20848.3754737778, + -30310.5865955556, + -29389.7571644444, + -32601.2304, + -40203.2019511111, + -43173.1845911111, + -62102.0615155556, + -87311.15928, + -87789.7444044444, + -79135.3544933333, + -47049.9292488889, + -13072.671368, + -5391.89299511111, + -4808.21257022222, + -12296.150152, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -16117.3871413333, + 28388.0401066667, + -25293.0919448889, + -23444.4872973333, + -19997.6193453333, + -40532.61388, + -48593.5347911111, + -95149.0530755556, + -111293.461373333, + -130591.607897778, + -136892.343715556, + -89780.2833911111, + -51153.8040177778, + -27219.2139013333, + -10932.9884928889, + -2954.83086355555, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -14.0429418955556, + 2569.7998992, + -11974.358072, + -19541.3955466667, + -23872.224584, + -11578.4190008889, + -499.8855328, + -23941.066988, + -37919.0057111111, + -53211.74936, + -60855.9231511111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -5359.03972355556, + -8735.36545911111, + -9133.12157111111, + -11530.5897955556, + -6706.05316444445, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -10240.4028431111, + 0, + -7499.80696177778, + -25263.9899835556, + -19023.5095862222, + -39619.6973688889, + -41569.2064, + -59112.7361822222, + -102729.044293333, + -116765.392088889, + -121843.435231111, + -84787.2308711111, + -41805.7147866667, + -22521.4305257778, + -5876.51538444444, + -2266.58852764444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -20877.711892, + 20189.5223088889, + -8037.18215111111, + -24868.0509124445, + -35194.03052, + -25973.6909862222, + -34082.1187244444, + -38266.0019066667, + -49879.2377555556, + -70911.1929733333, + -99401.2218266667, + -59183.36632, + -24295.8002608889, + -10453.3483124444, + -3982.77778577778, + -1368.74173306667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -4275.350676, + 8076.01407333333, + -30227.9405422222, + -31831.03952, + -54445.2856666667, + -102155.211057778, + -124133.785964444, + -162502.948902222, + -183820.355382222, + -188243.384591111, + -193529.508222222, + -142416.73416, + -90536.993, + -62633.6925111111, + -41626.9414088889, + -25391.0363102222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -745.997859777778, + -18880.1978128889, + -48185.5798044445, + -100762.537137778, + -142568.544995556, + -153729.279048889, + -160541.423955556, + -181762.116968889, + -185163.793355556, + -187824.879044444, + -177383.634568889, + -114302.422471111, + -65283.0553555556, + -33796.3743911111, + -16287.954528, + -4999.73454133333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + 1918.3028192, + -43352.5441111111, + -21319.9561986667, + -33108.8295644444, + -52827.2400622222, + -65895.8670488889, + -115465.621711111, + -131122.945822222, + -145111.229955556, + -145325.758008889, + -107594.024737778, + -64965.9524133333, + -49777.54208, + -26387.6246235556, + -13770.6788333333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -12370.4436786667, + -9592.42261644445, + -7848.88396222222, + -13515.0329031111, + -42522.5667244445, + -53844.78296, + -83173.8744044445, + -103680.939262222, + -106960.404995556, + -102963.794253333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -8873.46056666667, + -11065.1049497778, + -15854.2972048889, + -12539.1647173333, + -9205.42221422222, + -1998.42259955556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -636.181183733333, + -16382.4406542222, + -47509.4647511111, + -26390.379492, + -36085.55284, + -71644.4568933333, + -93042.1648577778, + -134224.810462222, + -153269.157404444, + -173343.06316, + -194715.86008, + -173270.381524444, + -135327.930124445, + -109494.297822222, + -89694.4135555556, + -66224.9859066667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -92.5518568888889, + -25340.3936222222, + -48658.5965777778, + -62797.2261911111, + -116970.248795556, + -156033.404124444, + -170967.428733333, + -191766.97856, + -184415.289737778, + -180552.905564445, + -178978.234484445, + -143465.342595556, + -87614.7809511111, + -49638.9194444444, + -25934.5073786667, + -4331.76686488889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + 0, + -36674.9188444444, + -33426.5186488889, + -34658.8826711111, + -33400.1422488889, + -45674.5465244444, + -57123.6625511111, + -99388.6197688889, + -112940.814088889, + -131964.352982222, + -101448.323537778, + -75168.3439333333, + -52495.4835644444, + -28143.2378075555, + -6504.97707511111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2802.65368911111, + 1555.07927622222, + -29550.9462755556, + -31458.2530666667, + -35121.3488844444, + -24593.7949666667, + -21442.1961591111, + -22625.8517626667, + -20660.1652062222, + -20568.4925626667, + -22419.8520786667, + -19739.2185466667, + -10312.908636, + -24370.6213155556, + -17435.5037706667, + -796.579002844444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -9371.62284133333, + 26171.1036866667, + -18092.2761306667, + -32162.5029466667, + -27774.8181137778, + -28481.9987048889, + -20777.8625644444, + -20874.8397951111, + -30101.0407511111, + -49298.0777422222, + -87394.0984044445, + -62091.5109555556, + -35715.6970977778, + -16568.599424, + -6475.84580666667, + -7693.96657288889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -16926.5857862222, + 38228.7818755556, + 35134.2440133333, + 15308.8332528889, + 10799.3773733333, + -4222.53926177778, + -2420.8787448, + -2805.84523351111, + -13818.6252671111, + -18678.3304315556, + -21316.7031093333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -4085.968124, + -1923.84772462222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -23025.9524435556, + 23631.144288, + 13145.3530035556, + -10784.518668, + -15343.2691084445, + -24377.2154155555, + -39061.1038311111, + -58899.3804133333, + -89823.9509866667, + -112527.290751111, + -123403.452755556, + -88527.9905333333, + -54805.4700622222, + -31855.6574933333, + -13181.4593644444, + -3758.87145688889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -10176.542648, + -35850.5098088889, + -29967.6933955556, + -23927.2926457778, + -23440.0619235556, + -18971.8997635556, + -21512.1522333333, + -19682.0989871111, + -20229.4972084444, + -22785.8978964444, + -20969.8241422222, + -6863.84265066667, + -26056.1611968889, + -13730.498784, + -2280.30425564445, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -5111.68770577778, + 28816.8617564444, + 24040.4767088889, + 12421.3208235556, + 5969.53615511111, + 1517.70684813333, + 10047.9137373333, + -10246.2056511111, + -17096.1567311111, + -24103.8972973333, + -26623.8985533333, + 8786.242604, + 0, + 10019.8082177778, + 19937.92076, + 26909.3498155556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2386.40185928889, + 44323.4887022222, + 31680.9871111111, + 8446.92487155556, + -9874.03464711111, + -27254.7048128889, + -17166.6989475556, + -21697.5490182222, + -30389.1296533333, + -44908.45864, + -77427.6291288889, + -59401.9973688889, + -34531.98288, + -15707.4392711111, + -6097.66684488889, + -1975.54546862222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -37177.8288711111, + -40254.1963244445, + -28835.1200866667, + -21715.5728915556, + -33631.3753555556, + -41622.5453422222, + -57693.3927911111, + -82845.63476, + -95167.2234844444, + -70803.0497333333, + -41476.5959288889, + -20790.2008582222, + -5761.80735155556, + -1421.15163986667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -21199.2109008889, + 16003.0014866667, + 10322.140376, + 12409.9203573333, + -1540.07403533333, + -8506.916528, + -7391.48787911111, + -20699.9935702222, + -18206.6617853333, + -19442.3375111111, + -21145.6081946667, + -334.713585288889, + -2581.88908253333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -7118.11114666667, + -8166.13344, + -10363.0531031111, + -8393.38077955556, + -5165.14387644444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -648.317258444445, + -5496.78314577778, + -28383.2044333333, + -15698.2954524444, + -25845.8240604444, + -55748.5728977778, + -88387.0233288889, + -122158.486675556, + -128765.188733333, + -141017.905746667, + -153540.248182222, + -104490.1086, + -64542.4646577778, + -44493.1768755556, + -33959.9080711111, + -23196.72498, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -17607.8881982222, + -33015.33988, + -43494.3905288889, + -82756.5411422222, + -113452.223177778, + -129837.829, + -166762.444431111, + -179621.232502222, + -187197.706866667, + -195415.713893333, + -171655.266631111, + -123766.567862222, + -108322.59952, + -90969.56596, + -70499.1349911111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -32064.9102666667, + -96841.2456711111, + -124649.884191111, + -138448.551315556, + -172699.185928889, + -157474.141706667, + -199329.971653333, + -206157.063186667, + -220773.984853333, + -241437.549684444, + -201760.99652, + -163432.277395555, + -140653.618355556, + -111764.133577778, + -92666.4476933333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -53189.7690266667, + -135589.642626667, + -139575.409737778, + -156733.257937778, + -192619.815493333, + -211421.792626667, + -236616.822977778, + -241885.069271111, + -243615.654182222, + -249857.189635556, + -220760.210511111, + -175753.573048889, + -143003.462524444, + -119934.076942222, + -98757.0515244444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -1550.11172088889, + -55541.6646933333, + -142384.789408889, + -150757.244911111, + -161477.493084444, + -184039.279502222, + -130345.721235556, + -117999.807608889, + -120908.245315556, + -130596.297035556, + -159203.847404444, + -118902.466631111, + -76515.0056888889, + -53749.2417777778, + -24379.2082991111, + -9072.25070133333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -7544.177928, + -20552.9304866667, + -18102.5336195556, + -14585.0355297778, + -17844.2500493333, + -14004.1099733333, + -11784.0376924445, + -6201.97085333333, + -5551.11852977778, + -5743.22664311111, + -728.434108088889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -1860.54729533333, + -61319.85472, + -102445.644528889, + -106063.607395556, + -110047.909151111, + -113517.871106667, + -114220.069488889, + -136823.472004445, + -147247.718355556, + -145561.387182222, + -152437.421591111, + -114853.689231111, + -80832.5292977778, + -58264.0022444445, + -33433.2592844444, + -16729.1437786667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -23650.3697528889, + -93961.8220044444, + -140278.194262222, + -158889.382102222, + -188950.272111111, + -184857.827115556, + -215964.980991111, + -234021.385217778, + -236963.819173333, + -234682.260573333, + -192739.974648889, + -149086.446506667, + -124546.430088889, + -107891.198844444, + -73193.0446444444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -19216.5555271111, + -31733.7399111111, + -24382.5786168889, + -23033.8360564444, + -22814.8533222222, + -23907.6861884444, + -33343.5795244445, + -36700.12296, + -42719.21744, + -48874.5899866667, + -36531.9001422222, + -20522.6269337778, + -38505.7340755556, + -15363.4910151111, + 2124.12372982222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 45405.2141733333, + 23974.565016, + 3445.49051777778, + -22028.3676884444, + -41876.9310666667, + -29311.8002488889, + -40652.1868933333, + -42394.4946488889, + -69212.5528133333, + -80420.1782444445, + -63381.6099866667, + -38777.4109955555, + -19210.4889551111, + -7242.05091955556, + -17327.6536017778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -1961.44581746667, + 30341.6521333333, + 9272.97510533333, + -27377.0033875556, + -26207.2100475556, + -35068.0099422222, + -49315.95508, + -103514.767942222, + -126187.33524, + -152970.811013333, + -171076.158115556, + -135688.407591111, + -102684.497484445, + -72395.8912222222, + -31758.9440266667, + -15523.1268493333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -213.221249248889, + -15596.0429417778, + -7669.49513511111, + -11200.1521177778, + -28004.4100222222, + -42330.0190044445, + -49693.7237422222, + -65762.8127644445, + -84417.6682, + -93009.6339644445, + -98512.6302177778, + -4228.01969155556, + -11445.9801657778, + -9217.760508, + -2696.97810786667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2408.65474875556, + -5147.03208177778, + -4669.32617066667, + -2353.41377502222, + -10160.3944297778, + -12787.8355551111, + -19995.2454693333, + -21985.6672275555, + -19034.2359888889, + -9705.723908, + -3365.80448266667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 280.612072035556, + -18013.0590093333, + -38253.1067777778, + -48455.4982977778, + -91000.3384266667, + -122441.007226667, + -139812.211195556, + -167725.183031111, + -187581.336951111, + -197289.024435556, + -204599.09716, + -187188.621662222, + -133704.902311111, + -95594.5211644445, + -65426.6602, + -43530.4382755556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -13915.8662617778, + -56281.0831066667, + -70388.06104, + -123875.883386667, + -156793.923657778, + -178207.457462222, + -208070.524471111, + -209646.660906667, + -232619.333022222, + -225197.014062222, + -199581.133595556, + -145718.180226667, + -114179.918746667, + -83570.1065466667, + -67095.9932488889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -124.52825968, + -25777.3040346667, + -73334.30492, + -103717.866222222, + -152241.357017778, + -189557.808524444, + -198788.962382222, + -220542.751746667, + -236322.286511111, + -237870.581191111, + -236340.45692, + -202136.127542222, + -147784.33156, + -124551.99844, + -83485.4089955556, + -58658.47596, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -84.1114088888889, + -22166.7558671111, + -66021.3014844444, + -97015.9160533333, + -149711.274115556, + -190441.417924445, + -202867.339964444, + -211837.660533333, + -210948.482782222, + -218473.08356, + -219149.198613333, + -188266.537208889, + -146743.342973333, + -111734.826466667, + -80720.2830622222, + -55645.4118666667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 28.6188629137778, + -23718.5087862222, + -67816.0689688889, + -99769.9052844444, + -141092.931951111, + -174490.43656, + -192393.857666667, + -206179.629662222, + -216000.735666667, + -229050.606102222, + -229894.650902222, + -194782.094151111, + -154411.841666667, + -117668.637253333, + -87203.6021822222, + -63021.7186622222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -13400.0904133333, + -17568.528748, + -34044.6056222222, + -59658.14152, + -96113.8431733333, + -105652.428626667, + -113482.409502222, + -123986.957337778, + -131581.895182222, + -140022.636253333, + -6466.35030266667, + -9987.160096, + -7094.75337911111, + -2345.74996546667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2713.91468737778, + -8168.65385155555, + -10905.3811942222, + -15285.4168711111, + -23510.6920613333, + -33477.2199511111, + -38368.5767955556, + -41425.0154133333, + -54998.6039244445, + -28739.7547471111, + -16223.5374977778, + -2560.34542515556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -17550.6807173333, + -89099.4792, + -154172.402568889, + -171054.177782222, + -196169.785862222, + -223924.499297778, + -226409.156177778, + -242154.987764444, + -248312.411808889, + -248403.849995556, + -254221.01848, + -225779.34636, + -176644.509226667, + -149732.082164444, + -117742.491173333, + -80909.9000711111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -41971.0068933333, + -134799.522911111, + -148426.157293333, + -177735.026831111, + -210086.853715556, + -218935.549773333, + -231753.60096, + -226470.114968889, + -230513.617088889, + -227142.713168889, + -187725.234866667, + -150031.893911111, + -112638.657773333, + -98503.8380844444, + -74927.1464088889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -1877.6567868, + -42702.8054577778, + -113102.0032, + -136907.583413333, + -171616.874315556, + -202113.854137778, + -219343.50476, + -237608.282546667, + -236017.199484445, + -253095.332342222, + -234423.771853333, + -200105.730884444, + -143727.64124, + -125272.367231111, + -101369.194337778, + -72910.8171644445, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -125.946723857778, + -33369.9559244445, + -63091.1765155556, + -101448.90968, + -143186.631968889, + -174241.326115556, + -185586.98804, + -205623.673764445, + -217706.409533333, + -222297.075417778, + -231790.820991111, + -173448.275688889, + -129869.773751111, + -109558.773466667, + -76363.1948533333, + -57760.7991466667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -210.012999795556, + -34136.33688, + -88733.7264533333, + -105775.518493333, + -144197.434231111, + -167162.193426667, + -173197.699888889, + -204774.353684444, + -209637.282631111, + -222246.667186667, + -214929.560755555, + -178309.153137778, + -137069.944808889, + -114292.164982222, + -83928.5325155556, + -68613.8085333333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -26324.4677991111, + -28908.8860853333, + -35347.01364, + -68119.1044977778, + -95572.8339022222, + -95821.0651333333, + -99538.3791066667, + -99293.9578, + -108511.044244444, + -105328.87812, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -9467.72085866667, + -19082.534108, + -27872.6159435556, + -31535.9169111111, + -24281.586312, + -6888.51923822222, + -3046.26905022222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -16894.2893497778, + -82126.1451822222, + -142692.807146667, + -124151.663302222, + -144407.273146667, + -164633.57588, + -155992.960311111, + -180468.208013333, + -173722.590248889, + -179869.170662222, + -186030.404631111, + -147748.869955556, + -115294.468182222, + -85308.3113066667, + -49111.3914444445, + -20027.9228982222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -25155.3485226667, + -48712.2285911111, + -48344.1312755556, + -56127.5138444445, + -86310.0283644445, + -102301.746613333, + -127578.250733333, + -140910.934791111, + -144905.787106667, + -146267.68856, + -108183.683813333, + -73234.6607422222, + -45526.8386844444, + -18820.0596208889, + -5503.93408088889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -20160.4496546667, + 10373.2226706667, + -40262.1092444444, + -41993.2802977778, + -34516.7431822222, + -36385.9507288889, + -46331.6119555556, + -62019.7085333333, + -85494.9976044444, + -93848.9896266667, + -108612.446848889, + -82469.3314533333, + -54605.5955644445, + -36869.2249911111, + -9014.54499955556, + -5277.74179733333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -23619.1576795556, + 20590.0332893333, + -36009.06128, + -33645.1496977778, + -30591.6417911111, + -42000.3140044444, + -76381.9514044445, + -112900.663346667, + -132869.649644444, + -144504.572755556, + -155178.515693333, + -128548.902253333, + -96297.0126177778, + -63398.6081111111, + -27294.8555551111, + -10967.6294982222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -6282.44818044444, + -35486.80856, + -47623.7624844444, + -61371.4352355556, + -109905.769662222, + -138747.190777778, + -170759.055173333, + -176008.837986667, + -205303.933182222, + -205873.07728, + -164055.053506667, + -128510.216866667, + -100602.813382222, + -71898.2564755556, + -45092.2142266667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -10582.3582155556, + -12495.2333577778, + -14820.8698528889, + -14761.2298817778, + -33002.7378222222, + -55159.7930355556, + -69541.3786, + -89681.8114977778, + -104420.357675556, + -106638.319844444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -3197.02482977778, + -11483.2001968889, + -12726.4371573333, + -2782.00976004444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -17767.14304, + -85457.4845022222, + -152345.983404444, + -152182.742795556, + -158644.960795556, + -175621.397977778, + -175532.890502222, + -201069.641768889, + -215492.843431111, + -222399.357235556, + -232074.513826667, + -200484.671831111, + -156992.918942222, + -134206.053911111, + -99923.7676177778, + -76249.4832622222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -36307.4076711111, + -117843.893777778, + -138070.489582222, + -168828.595764444, + -196496.26708, + -211683.212057778, + -229062.328946667, + -235404.09472, + -241166.458906667, + -243326.392995556, + -200291.537968889, + -156334.681226667, + -126792.820155556, + -105280.814457778, + -80953.8607377778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -1462.14349617778, + -40898.3666266667, + -126377.538391111, + -161088.001577778, + -182003.314493333, + -219155.939248889, + -225198.186346667, + -242396.185288889, + -239715.463835556, + -278460.050866667, + -259189.453026667, + -217528.515368889, + -174823.365342222, + -132099.458764445, + -107400.304733333, + -87655.5178355556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -284.488230551111, + -36514.9020177778, + -110190.634782222, + -155667.944448889, + -192395.029951111, + -221194.248826667, + -231547.86504, + -241491.474768889, + -243857.73092, + -250985.806484444, + -256630.649155556, + -212801.864488889, + -169100.565755556, + -136528.935537778, + -99206.0364666667, + -82246.3043377778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -382.249719511111, + -36823.7989688889, + -125239.836337778, + -169110.823244444, + -195278.263542222, + -218792.824142222, + -235302.105973333, + -252766.799626667, + -265638.189755555, + -271703.882542222, + -277822.328128889, + -239227.500435556, + -189659.211128889, + -165254.007422222, + -124063.448897778, + -102980.792377778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -4611.59116177778, + -64086.73908, + -105665.323755556, + -131630.838057778, + -154802.212386667, + -178518.11284, + -165210.925968889, + -171532.176764444, + -173317.272902222, + -181981.627231111, + -185216.546155556, + -10325.2469297778, + -13420.7519266667, + -12841.877868, + -7601.414716, + -3233.30703333333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -7255.73734044444, + -12059.1435444445, + -18556.6473062222, + -18747.9934346667, + -31021.28404, + -36410.2756311111, + -18486.163704, + -26836.7561013333, + -22498.6002862222, + -32707.6152133333, + -19465.3435933333, + -5340.165944, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -24563.9310204444, + -68940.5828222222, + -148455.757475556, + -211114.654102222, + -234992.915951111, + -244483.730813333, + -266917.445155556, + -259520.03724, + -287107.114, + -290776.950453333, + -313565.573911111, + -299146.475244444, + -266043.800173333, + -209966.987631111, + -182399.546635556, + -142936.935382222, + -109083.412124444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -7350.69238044444, + -60558.7490444445, + -136398.225822222, + -140248.59408, + -141601.996471111, + -162245.046324444, + -165654.049488889, + -189331.264555556, + -185872.439302222, + -191360.488928889, + -192237.650764444, + -152765.368164444, + -116975.231004444, + -86548.5882488889, + -50438.4174355556, + -22027.2833253333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 300.107748488889, + -25577.8984506667, + -39157.8172977778, + -45987.8395422222, + -56625.7347333333, + -93916.3959822222, + -102622.073337778, + -140341.497622222, + -151909.307448889, + -169482.437413333, + -177740.595182222, + -142391.823115556, + -112498.569782222, + -90910.3655955556, + -50850.7684888889, + -26365.2926048889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -18637.0660191111, + -36826.4366088889, + -40562.8002044444, + -71258.1891688889, + -129767.491933333, + -140962.808377778, + -164593.425137778, + -173566.383346667, + -175735.109568889, + -195292.037884444, + -160182.411844444, + -122487.898604444, + -90899.5219644445, + -67141.4192711111, + -38905.7761422222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 87.3199514133333, + -17073.3851057778, + -37779.2107911111, + -63041.0613555555, + -116257.792924445, + -143268.398808889, + -158008.410342222, + -176921.461426667, + -190804.826102222, + -198294.258346667, + -212409.442271111, + -178607.7926, + -139578.047377778, + -111544.916386667, + -77036.6722666667, + -56118.1355688889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -14350.4614124445, + -21425.6376413333, + -35913.5200977778, + -55173.5673777778, + -84941.3862755556, + -86141.5124755556, + -96418.6371288889, + -107026.345995556, + -115471.776204444, + -126700.795826667, + -4583.10464977778, + -11200.9141026667, + -9515.87244222222, + -3132.31472844444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -6869.64545866667, + -8291.77302533333, + -8491.03207377778, + -7599.65628933333, + -15814.6446835556, + -18462.6300937778, + -18071.5853102222, + -24712.6353022222, + -16639.9329324444, + -2730.34718457778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -10956.4341817778, + -74645.7981422222, + -137372.980337778, + -161395.726244444, + -192131.852093333, + -215664.876173333, + -226725.672977778, + -249357.503391111, + -247871.339786667, + -254640.110168889, + -261851.417928889, + -222212.084795556, + -180819.014133333, + -153162.47952, + -121024.594546667, + -96716.3973777778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -3907.42920311111, + -71837.0046133333, + -173828.681991111, + -169011.472137778, + -206146.219555556, + -234470.077088889, + -232580.940706667, + -256400.295262222, + -251646.095697778, + -268230.989875556, + -261944.907613333, + -236064.090862222, + -185312.087337778, + -166862.088608889, + -132181.518675556, + -107543.909577778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -5896.26837733333, + -65447.4682488889, + -149449.268542222, + -174141.975008889, + -198467.170302222, + -229805.850355556, + -234825.572346667, + -255318.569791111, + -252798.451306667, + -258639.06548, + -263545.368951111, + -236491.974684444, + -187337.794857778, + -158440.690231111, + -134082.084831111, + -117751.869448889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -3234.36208933333, + -81259.8269777778, + -177222.738528889, + -199113.978244444, + -214636.196573333, + -238177.426644444, + -250050.616568889, + -258046.475693333, + -259072.810724445, + -259823.36584, + -273502.753022222, + -242032.48404, + -193497.2704, + -167868.787875556, + -144229.378982222, + -110018.895111111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -6511.95216755556, + -102979.620093333, + -176124.894146667, + -204956.643915556, + -224818.952328889, + -254913.545515556, + -250829.599582222, + -264648.781684444, + -260930.295426667, + -276280.481013333, + -290121.93652, + -251551.7268, + -209446.493337778, + -178093.745871111, + -139655.12508, + -109065.534786667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -7210.86815333333, + -63441.3964933333, + -96009.8029288889, + -127807.432342222, + -155118.143044444, + -171841.952928889, + -173363.285066667, + -176692.86596, + -174298.768053333, + -175604.106782222, + -172457.695333333, + -449.7703728, + -3271.201128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2946.771408, + -7607.89158755556, + -9761.43672622222, + -15227.4180982222, + -16847.1635151111, + -30800.6014933333, + -35933.7420044444, + -41920.8917333333, + -69211.3805288889, + -73412.2618355556, + -36294.8056133333, + -35552.1634177778, + -13540.2663257778, + -6550.75478266667, + -3044.77438755556, + 0, + 0, + 0, + 0, + 0, + 0, + -27864.5271808889, + -87120.9561288889, + -154703.447422222, + -220937.225462222, + -234686.070497778, + -251195.938471111, + -263404.694817778, + -264736.703017778, + -279543.534764445, + -283935.791506667, + -276757.600782222, + -275782.260124444, + -234008.490088889, + -175033.497328889, + -142909.679768889, + -114169.075115556, + -97931.7632755556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -12799.2946355556, + -91262.344, + -180398.164017778, + -200315.5698, + -210836.822688889, + -234665.262448889, + -249409.376977778, + -257209.757671111, + -274689.984093333, + -268367.561013333, + -275819.480155555, + -238911.276706667, + -175197.32408, + -146700.847662222, + -115408.472844444, + -98972.16572, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -12229.681624, + -93426.0880133333, + -161080.967871111, + -147655.966413333, + -165578.144071111, + -170719.490573333, + -165997.23576, + -186593.687306667, + -185167.017137778, + -191464.822244445, + -192319.710675556, + -151381.486377778, + -118399.556604444, + -102389.374875556, + -85364.8740311111, + -65412.8858577778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2961.42496355556, + -46790.8543866667, + -137251.941968889, + -146216.694186667, + -173996.611737778, + -193783.893946667, + -188822.786177778, + -219235.36152, + -214067.638617778, + -225600.866053333, + -229586.926235556, + -185999.046022222, + -145741.918986667, + -125124.073248889, + -98905.0524355556, + -74518.0191377778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -7852.10774444445, + -96263.6025111111, + -172367.13636, + -179963.832631111, + -219189.349355555, + -212144.212915555, + -228122.156822222, + -258314.928831111, + -256203.937617778, + -272174.261675556, + -287328.089617778, + -224315.45616, + -145956.740111111, + -118539.644595556, + -88291.4821466667, + -70944.3100088889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -3393.55831688889, + -39974.6064844444, + -56461.9079822222, + -66099.2584, + -99121.0458444445, + -114528.087226667, + -110893.712377778, + -130610.364448889, + -140048.426511111, + -141954.854088889, + -149048.054191111, + -1330.57508226667, + -6452.98626, + -6494.30928666667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -7737.253176, + -7992.72326355556, + -7911.63048711111, + -21227.1405777778, + -32437.1105777778, + -39789.6786133333, + -41694.3477644444, + -20401.2368795556, + -15637.8641893333, + -2962.09902711111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -10709.2580066667, + -20742.3716528889, + -42454.2811555556, + -70872.8006577778, + -79020.7636888889, + -86133.3064844444, + -90472.2242844444, + -90873.1455644445, + -82898.38756, + -71755.5308444445, + -24585.8234324445, + -10957.4892377778, + -3185.09683555556, + 0, + 0, + 0, + 0, + 0, + 0, + -55874.5934755556, + -121073.830493333, + -204618.146782222, + -261937.873906667, + -285111.299733333, + -299105.445288889, + -307173.692977778, + -312182.278266667, + -313014.600222222, + -325833.530622222, + -328673.389688889, + -337116.7684, + -293938.6016, + -247294.57584, + -208965.856715556, + -183938.756111111, + -155901.522124445, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -53954.3915555556, + -141148.908533333, + -214246.118924444, + -243077.868693333, + -262044.844862222, + -281833.299355556, + -286945.631817778, + -312220.377511111, + -307279.198577778, + -310643.654933333, + -310713.992, + -223851.23152, + -189652.470493333, + -161340.921946667, + -136074.968386667, + -123530.059475556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -20765.7587275556, + -130227.320506667, + -211759.117475556, + -224340.660275556, + -243245.212297778, + -241047.765106667, + -263797.703177778, + -280823.669377778, + -278813.494626667, + -277665.828155556, + -297862.823777778, + -266828.351537778, + -207161.417884444, + -185758.141568889, + -140982.737213333, + -121263.447502222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -7136.10571288889, + -91931.4253466667, + -175095.335333333, + -183993.85348, + -213918.465422222, + -229115.667888889, + -214348.986884444, + -234930.491804444, + -249464.181275556, + -253519.40624, + -256416.121102222, + -230285.314693333, + -176199.62728, + -157180.777524444, + -114208.932786667, + -86786.5619911111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -6196.78349466667, + -73401.1251333333, + -111573.344284445, + -132513.568244444, + -154678.536377778, + -168016.495715556, + -158071.420631111, + -172820.224297778, + -174890.478626667, + -177576.182288889, + -174241.912257778, + -11450.4934608889, + -11417.8746462222, + -9890.03632977778, + -3858.72078444445, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -8556.12316755556, + -17445.1458102222, + -21819.2907577778, + -23007.2838137778, + -37653.4832844445, + -51998.43496, + -77853.1683822222, + -84632.7823955556, + -90923.8468666667, + -89027.0906355556, + -85402.3871333333, + -70395.3878177778, + -28393.4326151111, + -15004.4202897778, + -5963.41096888889, + 0, + 0, + 0, + 0, + 0, + 0, + -57765.1952133333, + -115417.264977778, + -192839.325755556, + -255885.955462222, + -278057.664231111, + -294161.335644444, + -295855.286666667, + -290749.987911111, + -308093.936266667, + -308480.790133333, + -311537.521822222, + -320068.821866667, + -290922.899866667, + -244745.736386667, + -214773.646924444, + -180590.125595556, + -147908.593711111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -32363.2566577778, + -127580.595302222, + -225289.038391111, + -251652.250191111, + -287605.62796, + -307554.685422222, + -316411.2944, + -324757.959644445, + -329218.501955556, + -335288.004666667, + -340680.513111111, + -306748.739866667, + -252753.025284444, + -187831.912751111, + -146841.228724445, + -122395.874275556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2519.05756702222, + -57405.59696, + -120116.660244444, + -146824.2306, + -159806.401608889, + -177012.606542222, + -178769.567853333, + -200967.946093333, + -202484.002951111, + -209508.917484444, + -217852.065875556, + -177261.716986667, + -138986.043733333, + -118197.92368, + -90180.3254577778, + -67002.5035644444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -30403.1970666667, + -78124.5522311111, + -111555.173875556, + -137239.926053333, + -160418.041017778, + -162158.883417778, + -175691.148902222, + -185599.003955556, + -205090.284342222, + -206268.430208889, + -184382.465773333, + -151559.673613333, + -133041.682386667, + -96032.6624755556, + -72157.3313377778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -781.679267555556, + -36018.7326266667, + -111462.563404444, + -138599.482937778, + -176331.50928, + -208223.21452, + -228545.058435555, + -252072.807235555, + -266184.181235556, + -270351.945506667, + -283706.609897778, + -251608.289524444, + -192464.780875556, + -162727.148302222, + -131718.46632, + -83687.9211333333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -69.9420068088889, + -16719.9413457778, + -27823.7609893333, + -53325.16788, + -67386.7197911111, + -102112.129604444, + -104921.509275556, + -113623.376706667, + -128466.842342222, + -134664.124057778, + -141364.608871111, + -4849.44767555556, + -11354.7178217778, + -10494.4661893333, + -6017.07228933333, + -2342.84563075556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -4870.57810266667, + -12056.124912, + -15750.4621102222, + -17343.010528, + -16901.8212773333, + -33241.0046355556, + -44639.7124311111, + -90096.50712, + -94506.3481288889, + -90807.7907066667, + -89252.1692488889, + -77356.9989911111, + -30183.6868044444, + -21992.7595484444, + -6865.65969155556, + -3377.90831955555, + 0, + 0, + 0, + 0, + 0, + -89424.2019911111, + -147146.315751111, + -209565.480208889, + -284446.028311111, + -300207.392666667, + -315095.405111111, + -332046.638177778, + -335795.017688889, + -325950.759066667, + -332832.068755555, + -350093.9572, + -337275.0268, + -310435.574444444, + -260079.21692, + -242089.046764444, + -214802.074822222, + -180389.078813333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -71305.3736177778, + -178432.243004444, + -260747.419053333, + -281384.900555555, + -299462.992044444, + -321091.640044444, + -326621.891911111, + -325804.223511111, + -331138.117733333, + -325900.936977778, + -341946.580311111, + -310001.8292, + -253352.355706667, + -238926.809475556, + -211559.82912, + -182462.263853333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -86373.3317244444, + -175708.733168889, + -234612.80272, + -253517.061671111, + -259827.761906667, + -290313.311955556, + -299518.675555556, + -313887.952133333, + -324294.907288889, + -312472.418666667, + -314318.766666667, + -264638.231124445, + -213429.036666667, + -188188.580293333, + -169893.323111111, + -165353.358528889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -70905.6246222222, + -163678.7502, + -230251.025373333, + -236964.698386667, + -241497.04312, + -261263.51728, + -269418.807088889, + -270002.604742222, + -271628.856337778, + -281773.219777778, + -282014.124231111, + -244867.653968889, + -191395.364391111, + -167710.529475556, + -140614.932968889, + -124879.945013333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -47233.3917644444, + -152361.809244444, + -230525.046862222, + -248322.962368889, + -271469.718724444, + -281171.251715556, + -282502.673773333, + -315259.524933333, + -304717.757066667, + -274303.423297778, + -316229.590311111, + -274801.058044444, + -212859.306426667, + -200282.452764444, + -164939.835191111, + -145650.773871111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -33408.6413111111, + -120100.541333333, + -149807.987582222, + -166302.322786667, + -193727.038151111, + -207721.476777778, + -202151.074168889, + -198159.738706667, + -212416.182906667, + -179236.723204445, + -194928.043564444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -21198.4782231111, + -41722.18952, + -51852.4855466667, + -81828.6780044445, + -87720.5796222222, + -88304.6703466667, + -42803.3288488889, + -31809.6453288889, + -21090.4522115556, + -3457.53574044444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -67370.0147377778, + -125698.492626667, + -198727.417448889, + -281874.622382222, + -280161.035595556, + -307751.043066667, + -307030.088133333, + -293745.174666667, + -341123.050488889, + -348042.459422222, + -345354.997333333, + -351166.597466667, + -307135.593733333, + -253510.907177778, + -234738.823297778, + -200358.358182222, + -177293.954808889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -60213.8043466667, + -149139.492377778, + -232865.805826667, + -265865.612937778, + -292907.28436, + -321592.791644444, + -305828.496577778, + -329397.275333333, + -314655.798444444, + -334203.641555556, + -331844.419111111, + -304767.579155556, + -257790.038471111, + -222408.44244, + -164560.015031111, + -135754.05552, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -35735.3328622222, + -143179.598262222, + -233774.326271111, + -259757.717911111, + -281698.486644445, + -295090.371066667, + -305620.416088889, + -316059.609066667, + -328834.5788, + -335009.587111111, + -330288.211511111, + -303375.491377778, + -246199.369097778, + -224449.9758, + -191158.269862222, + -169716.015088889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -56043.1093644444, + -168393.092093333, + -252340.967302222, + -262408.25304, + -286180.423146667, + -306848.384044444, + -323204.682755556, + -330214.943733333, + -317302.230577778, + -299231.465866667, + -326070.918222222, + -318070.076888889, + -247564.201262222, + -227908.214911111, + -201494.59488, + -132949.951128889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -57995.5491066667, + -158197.73428, + -235519.564737778, + -267548.720328889, + -288732.779453333, + -314227.914622222, + -328981.114355556, + -331724.259955555, + -342222.067155556, + -325317.725466667, + -349836.054622222, + -322715.254, + -241955.406337778, + -207237.909444444, + -190539.596746667, + -157364.826182222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -48460.7735777778, + -142082.633093333, + -163812.097555555, + -186292.996346667, + -204016.471791111, + -226436.997933333, + -228490.84028, + -223418.65856, + -215263.368751111, + -223122.363666667, + -227551.254297778, + -25584.1701724444, + -24185.0779951111, + -32139.3503288889, + -8668.51593866667, + -4793.09010088889, + -3493.52487288889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -1468.93688453333, + -12591.0089968889, + -29632.1269733333, + -58937.4796577778, + -86917.5647777778, + -93834.6291422222, + -102822.533977778, + -106731.809528889, + -112301.039853333, + -108354.2512, + -102364.756902222, + -87838.1011377778, + -42999.3934222222, + -24860.3431422222, + -16043.0350004444, + -3797.52753644444, + 0, + 0, + 0, + 0, + 0, + -122297.988524444, + -178637.685853333, + -243375.335871111, + -303870.781555556, + -307088.702355555, + -293997.215822222, + -317398.944044444, + -322858.858844444, + -346254.725644444, + -347048.948355555, + -354501.746711111, + -351550.520622222, + -271038.318048889, + -229865.343791111, + -203595.328604445, + -178744.94988, + -160303.450213333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -69427.0808666667, + -178879.762591111, + -263887.96908, + -285404.663915556, + -304418.824533333, + -325789.569955555, + -334590.495422222, + -345331.551644445, + -341293.031733333, + -348868.919955556, + -357063.188222222, + -327196.311288889, + -261247.984511111, + -241428.757551111, + -199012.57564, + -179123.304684444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -86421.6884577778, + -166713.501555556, + -268414.15932, + -277933.109008889, + -315757.745822222, + -326255.553022222, + -337313.126044444, + -346266.448488889, + -336738.706666667, + -330346.825733333, + -306593.412177778, + -294518.8824, + -257163.745506667, + -236766.875386667, + -201920.427204444, + -166477.579311111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -84406.8245688889, + -185678.426226667, + -262307.729648889, + -277690.153057778, + -309225.190755556, + -320065.891155556, + -331340.3368, + -303240.678666667, + -311179.975066667, + -327609.541555555, + -346055.437288889, + -326706.882533333, + -253614.36128, + -232063.670195555, + -185213.322373333, + -173864.143595556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -68420.0885288889, + -169367.260466667, + -248502.028817778, + -268039.321368889, + -301948.235066667, + -323793.755688889, + -331498.5952, + -330628.174, + -338634.876755556, + -336700.607422222, + -275012.362315556, + -270089.939933333, + -211712.81224, + -194657.832, + -160589.194546667, + -136022.508657778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -47999.77272, + -146973.989937778, + -185451.882257778, + -209497.487711111, + -223396.092084444, + -240056.89168, + -221208.31624, + -236379.435377778, + -209223.759293333, + -212237.116457778, + -202823.379297778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -6003.67893955556, + -15985.5344484444, + -18904.493408, + -33816.0101555556, + -53159.2896311111, + -77814.4829955556, + -91857.8644977778, + -99146.5430311111, + -94559.394, + -94704.4642, + -74931.8355466667, + -27895.3289546667, + -13270.758132, + -5574.76936844444, + 0, + 0, + 0, + 0, + 0, + 0, + -26330.8567493333, + -100679.011871111, + -187748.094413333, + -276938.132586667, + -281579.499773333, + -293830.165288889, + -300491.671644445, + -314526.847155556, + -332752.939555556, + -332550.720488889, + -335724.680622222, + -331785.804888889, + -293402.281466667, + -252236.927057778, + -216573.103546667, + -184701.034071111, + -164288.338111111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -16240.9459217778, + -21624.427776, + -23746.1160848889, + -54473.4204933333, + -58602.4993777778, + -96110.32632, + -100804.153235556, + -120063.028231111, + -102751.610768889, + -96753.91048, + -87214.4458133333, + -44905.2348577778, + -29026.1438368889, + -8172.78615422222, + -7279.73986444445, + 0, + 0, + 0, + 0, + 0, + -126383.399813333, + -164170.816595555, + -255451.624075556, + -321449.1868, + -330540.252666667, + -347333.227333333, + -353604.949111111, + -340366.927022222, + -350337.206222222, + -363765.724533333, + -364703.552088889, + -359146.923822222, + -342227.928577778, + -278720.884155556, + -256441.325217778, + -230753.642328889, + -198576.192755556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -124013.91988, + -214423.133875556, + -295529.977733333, + -318796.893244444, + -317527.895333333, + -350586.316666667, + -357605.369777778, + -362452.765955555, + -363918.121511111, + -350984.893377778, + -372182.726844444, + -346814.491466667, + -292231.462377778, + -268606.413968889, + -237328.399635556, + -205988.547297778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -123184.821706667, + -231865.554124444, + -303141.034488889, + -317908.887777778, + -337512.4144, + -337374.670977778, + -370773.0548, + -359102.963155555, + -352459.041066667, + -362613.955066667, + -371579.000355556, + -338585.054666667, + -289180.592111111, + -265464.398586667, + -238945.859097778, + -209142.578595556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -110961.118733333, + -181360.316475556, + -215061.442755556, + -236706.209666667, + -253805.150573333, + -266925.065004444, + -250332.257906667, + -264052.381973333, + -264002.852955555, + -258391.420391111, + -264955.334066667, + -43229.4542444445, + -37520.1359288889, + -30371.5453866667, + -22709.9338644444, + -3878.79615555556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -3987.81860888889, + -19383.6060604444, + -34159.4894977778, + -60264.5056488889, + -90603.5201422222, + -104457.870777778, + -117913.05856, + -120604.037502222, + -133146.894915556, + -130485.809226667, + -113042.216693333, + -108062.645444444, + -84887.4611911111, + -39952.9192222222, + -25004.7978928889, + -6550.81339688889, + -3447.83508666667, + 0, + 0, + 0, + 0, + -121755.806968889, + -146912.445004445, + -221777.167266667, + -288334.202742222, + -296755.014977778, + -295682.374711111, + -325109.644977778, + -328315.842933333, + -337491.899422222, + -347019.641244444, + -349759.856133333, + -353997.6644, + -314459.4408, + -261570.362733333, + -243873.55676, + -207587.836351111, + -179350.727866667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -78162.9445466667, + -185295.968426667, + -268563.625586667, + -273702.041377778, + -296250.932666667, + -308855.921155556, + -307569.338977778, + -322422.182888889, + -335923.968977778, + -330132.883822222, + -339563.912177778, + -304204.882622222, + -234325.886102222, + -207827.56852, + -182821.275964444, + -161362.609208889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -66331.0776488889, + -168130.500377778, + -244095.997733333, + -265277.712288889, + -295691.166844445, + -307853.617955556, + -315971.687733333, + -324664.176888889, + -322199.448844444, + -341208.041111111, + -347966.260933333, + -311437.877644444, + -261325.355284444, + -250926.313048889, + -222338.398444444, + -196963.422431111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -100108.695488889, + -185480.310155555, + -275173.551426667, + -283452.224173333, + -306455.668755556, + -321302.651244444, + -334329.662133333, + -353358.769377778, + -345826.841822222, + -354970.660488889, + -361775.771688889, + -315959.964888889, + -278677.802702222, + -230874.387626667, + -178669.630604445, + -163587.312013333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -92329.1228444444, + -183302.498728889, + -270403.526022222, + -286391.141275555, + -308867.644, + -331659.784311111, + -354457.786044444, + -359073.656044444, + -353637.186933333, + -362042.4664, + -357174.555244445, + -342157.591511111, + -270042.755484444, + -216463.494951111, + -199254.652377778, + -174029.435702222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -99660.8828311111, + -168359.975057778, + -195402.818764444, + -206943.95912, + -220071.786471111, + -247060.412022222, + -240883.645284444, + -253169.186262222, + -243572.279657778, + -246735.103088889, + -239954.02372, + -34308.0765511111, + -18444.6062204445, + -34816.5549288889, + -26634.2732706667, + -4862.07904044444, + -4277.37286666667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -10832.4944088889, + -52230.54728, + -63113.1568488889, + -97764.1266, + -115067.338071111, + -118536.420813333, + -116851.554995556, + -124831.881351111, + -130776.82884, + -116125.324782222, + -93163.2032266667, + -76051.6602622222, + -37243.4768, + -23436.75022, + -7093.55178755556, + -9131.27522311111, + 0, + 0, + 0, + 0, + -123352.458382222, + -156938.700786667, + -222136.76552, + -296728.638577778, + -308568.711466667, + -312276.061022222, + -330285.2808, + -331123.464177778, + -335074.062755556, + -324672.969022222, + -339467.198711111, + -338432.657688889, + -325042.238622222, + -266949.096835556, + -249056.51936, + -214312.352995556, + -176965.715164444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -95283.8657866667, + -178065.904115556, + -251218.211875556, + -267306.35052, + -279352.745471111, + -302466.970933333, + -310590.902133333, + -321938.615555556, + -323852.369911111, + -338927.947866667, + -343203.855377778, + -313357.493422222, + -259234.292906667, + -217287.903986667, + -184661.762542222, + -154916.803191111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -67402.25256, + -167568.389986667, + -237306.712373333, + -243389.989426667, + -255018.758044444, + -273974.890582222, + -291963.888453333, + -307765.696622222, + -316598.859911111, + -336545.279733333, + -338453.172666667, + -316935.891688889, + -260723.973364444, + -240730.369093333, + -203765.309848889, + -179051.795333333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -70289.5891466667, + -171559.432377778, + -253527.905302222, + -262625.125662222, + -278173.42732, + -302616.4372, + -319869.533511111, + -324256.808044444, + -329587.771555556, + -346395.399777778, + -353909.743066667, + -326235.038044445, + -268041.959008889, + -248628.928608889, + -214222.673235556, + -191838.780982222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -90844.4245955556, + -186157.890564444, + -271297.685982222, + -296661.232222222, + -306569.966488889, + -329576.048711111, + -330792.293822222, + -350870.595644445, + -342945.9528, + -349161.991066667, + -355542.149155556, + -332538.997644445, + -281974.26656, + -251517.144408889, + -215949.448222222, + -188008.634631111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -77191.9999555556, + -161481.303008889, + -193421.364982222, + -215149.364088889, + -238832.147506667, + -249671.968693333, + -242474.728346667, + -245037.928284444, + -230561.38768, + -224066.052644444, + -231966.077515555, + -4882.94570355556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -4738.31511022222, + -17821.4198097778, + -22128.9203866667, + -37890.8708844444, + -41438.7897555555, + -57504.6549955556, + -79769.5603777778, + -90657.4452266667, + -96382.8824533333, + -101437.186835556, + -91478.63048, + -74694.1548755556, + -36989.3841466667, + -18854.4368622222, + -7195.51122711111, + -3240.31143288889, + 0, + 0, + 0, + 0, + 0, + -75832.7361422222, + -140157.448964445, + -208972.30428, + -280390.217204445, + -297077.3932, + -279210.605982222, + -302918.300444445, + -306783.9084, + -315863.251422222, + -317715.460844445, + -322310.815866667, + -336920.410755556, + -306669.610666667, + -249541.84512, + -231425.068244444, + -199262.565297778, + -175734.816497778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -78599.6205022222, + -164015.488906667, + -235085.233351111, + -253124.053311111, + -286758.066306667, + -324376.9672, + -317073.635111111, + -334933.388622222, + -334106.928088889, + -341378.022355556, + -338130.794444444, + -247943.728351111, + -201716.15664, + -178977.648342222, + -164871.549622222, + -147451.98892, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -86700.6921555556, + -176772.288231111, + -253849.404311111, + -266805.785062222, + -285305.898951111, + -313275.433511111, + -336902.826488889, + -337896.337555556, + -336181.871555556, + -353669.424755556, + -344938.836355556, + -319309.767688889, + -264538.293875556, + -235230.596622222, + -198950.737635556, + -177658.828342222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -85315.9311555556, + -172573.751493333, + -228052.698968889, + -220526.046693333, + -230612.968195556, + -249651.453715556, + -241197.231373333, + -262873.649964445, + -267855.858853333, + -279316.111582222, + -266173.337604444, + -220802.412751111, + -175832.116106667, + -153973.700355556, + -134088.239324444, + -110439.159084444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -23090.164324, + -119372.259622222, + -192193.397026667, + -192013.744435556, + -196516.195915556, + -203927.671244444, + -193487.599053333, + -213194.286706667, + -219622.508457778, + -219376.621795555, + -218981.268866667, + -166353.024088889, + -132380.807031111, + -113280.483506667, + -86975.8859288889, + -72000.2452222222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -5539.835292, + -52022.7598622222, + -57776.9180577778, + -58433.9834888889, + -66182.7836666667, + -113613.412288889, + -106482.406013333, + -104828.898804444, + -124988.088253333, + -150814.686848889, + -148963.35664, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -7525.714448, + -24296.5915528889, + -40084.5081511111, + -55500.9278088889, + -63569.1754977778, + -87065.5656888889, + -91209.8842711111, + -69503.2793555556, + -28943.8201617778, + -12799.0601786667, + -3966.80541022222, + 0, + 0, + 0, + 0, + 0, + 0, + -60376.1657422222, + -123257.796413333, + -210793.155093333, + -297475.969911111, + -302880.2012, + -329142.303466667, + -336061.7124, + -337318.987466667, + -357441.249955555, + -369849.8808, + -358226.680533333, + -343672.769155556, + -330475.777022222, + -269133.941968889, + -244307.595075556, + -216666.886302222, + -185574.972124444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -111190.007271111, + -196688.8148, + -281806.043742222, + -288327.462106667, + -320807.361066667, + -333796.272711111, + -335490.223733333, + -346099.397955556, + -353704.593288889, + -370043.307733333, + -364246.361155556, + -342383.256266667, + -287558.443511111, + -239057.812262222, + -205974.479884444, + -195091.284173333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -113458.377671111, + -196900.412142222, + -271198.041804444, + -296080.951422222, + -318389.5244, + -331850.280533333, + -354097.308577778, + -351588.619866667, + -347327.365911111, + -357007.504711111, + -365184.188711111, + -340006.449555555, + -277725.614662222, + -270250.249831111, + -230034.445822222, + -176784.304146667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -112215.170017778, + -203783.187186667, + -268007.083546667, + -277453.058528889, + -300582.523688889, + -324807.781733333, + -334836.675155555, + -362578.786533333, + -353156.550311111, + -358771.7928, + -367783.729466667, + -342096.046577778, + -267369.360808889, + -244544.689604444, + -213040.131302222, + -185223.579862222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -114703.929893333, + -193755.75912, + -270975.30776, + -285605.124555556, + -306792.700533333, + -318081.799733333, + -340657.067422222, + -336829.558711111, + -344472.853288889, + -318530.198533333, + -334974.418577778, + -336703.538133333, + -268332.39248, + -235011.379431111, + -202019.192168889, + -182228.686177778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -100496.135497778, + -170495.584244444, + -189204.364764444, + -174478.713715556, + -204237.74048, + -224755.062826667, + -215672.496022222, + -223655.166946667, + -222577.544471111, + -219638.334297778, + -214212.415746667, + 0, + -4244.226524, + -8572.066236, + -4010.56092711111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2620.31949733333, + -17762.659052, + -22344.9137955556, + -47292.8852, + -64604.0095911111, + -97797.5367066667, + -120155.345631111, + -121829.074746667, + -123623.842231111, + -120295.726693333, + -101416.378786667, + -95493.11856, + -54917.1301555556, + -34027.9005688889, + -23963.0473213333, + -7639.77772444444, + -4002.67731422222, + 0, + 0, + -19290.7904395556, + 0, + -122227.944528889, + -173705.885195555, + -258998.370662222, + -323987.182622222, + -333019.634266667, + -331911.825466667, + -346547.796755556, + -363079.938133333, + -366004.787822222, + -374788.129022222, + -372590.095688889, + -379231.087066667, + -329672.762177778, + -206535.417991111, + -230758.331466667, + -168310.152968889, + -161362.90228, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -77484.1918533333, + -168434.41512, + -254466.612071111, + -265955.292697778, + -303267.055066667, + -324409.205022222, + -346826.214311111, + -353865.7824, + -348086.420088889, + -364551.155111111, + -364510.125155556, + -271437.187831111, + -244666.607186667, + -235678.40928, + -209684.760151111, + -175734.523426667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -115490.825826667, + -199593.735653333, + -291757.566391111, + -294556.981644445, + -310116.126933333, + -318509.683555556, + -351559.312755556, + -347239.444577778, + -352494.2096, + -350093.9572, + -355627.139777778, + -346008.545911111, + -270678.133653333, + -231782.321928889, + -209130.855751111, + -182848.531577778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -113887.726848889, + -210440.004404444, + -284569.70432, + -301414.845644445, + -322946.780177778, + -337178.313333333, + -347051.879066667, + -344367.347688889, + -349205.951733333, + -355252.008755556, + -364325.490355556, + -331841.4884, + -268021.737102222, + -248827.04468, + -223148.446995556, + -202850.34184, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -100601.934168889, + -188427.140177778, + -260682.650337778, + -270714.474471111, + -287684.464088889, + -298539.818044444, + -310787.259777778, + -323304.326933333, + -332234.203688889, + -342567.891066667, + -352250.960577778, + -292545.92768, + -233983.285973333, + -216843.901253333, + -189725.152128889, + -170202.806204444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -85960.3945288889, + -162440.231684444, + -176564.500813333, + -182577.733871111, + -195436.521942222, + -211794.872151111, + -204441.717973333, + -207877.097537778, + -214100.462582222, + -236985.213364444, + -229666.641577778, + -24677.0564693333, + -20906.5207822222, + -24716.8262191111, + -10472.2513991111, + -5053.77685422222, + -3915.63519422222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -6409.14282177778, + -18757.9578524444, + -29705.6878222222, + -45869.7318844445, + -56495.0250177778, + -96723.7241555556, + -105257.66184, + -111248.914564445, + -113846.989964445, + -120285.176133333, + -93930.1703244445, + -87088.1321644444, + -50666.1336888889, + -29443.6822488889, + -7298.43780133333, + -7563.98953511111, + -3505.01326044444, + 0, + 0, + 0, + 0, + -134422.04732, + -169150.387844445, + -243996.353555556, + -293812.581022222, + -310221.632533333, + -316546.107111111, + -336073.435244444, + -328667.528266667, + -346497.974666667, + -345264.145288889, + -348048.320844444, + -370720.302, + -330868.492311111, + -279322.266075556, + -246268.826951111, + -226656.801266667, + -192843.428751111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -121138.013066667, + -200987.581857778, + -273425.089177778, + -287176.278782222, + -308217.026133333, + -322041.190444444, + -331401.881733333, + -350894.041333333, + -344264.7728, + -364035.349955556, + -368390.386666667, + -327146.4892, + -281413.035382222, + -246904.791262222, + -211012.079213333, + -192943.659071111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -110066.372631111, + -197034.931782222, + -274620.233168889, + -285231.458888889, + -309591.529644445, + -325742.678577778, + -336296.169288889, + -353297.224444445, + -366614.375733333, + -368548.645066667, + -372294.093866667, + -323993.044044444, + -276435.808702222, + -244941.507888889, + -228350.752288889, + -212317.124871111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -112219.273013333, + -197323.313755556, + -280219.063675556, + -297168.245244445, + -309670.658844444, + -326434.3264, + -352283.1984, + -358806.961333333, + -355961.240844444, + -364070.518488889, + -371142.3244, + -342670.465955556, + -285210.65084, + -254832.95096, + -228287.742, + -206701.29624, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -104689.690026667, + -201550.571462222, + -277750.818777778, + -304128.684133333, + -315807.567911111, + -331952.855422222, + -348540.680311111, + -339707.517022222, + -356986.989733333, + -352110.286444444, + -370283.626044444, + -322715.254, + -291270.775275556, + -261099.9836, + -217680.326204444, + -207707.116293333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -123890.830013333, + -197092.37372, + -212676.723124444, + -230995.132924444, + -252344.191084444, + -256691.021804444, + -253585.054168889, + -247259.407306667, + -261684.660466667, + -259548.465137778, + -256451.582706667, + -30729.9713555556, + -10074.6418226667, + -11336.3422631111, + -4157.36024666667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -1804.02560084445, + -33814.5448, + -54723.4101511111, + -79554.1531111111, + -102433.042471111, + -107028.690564444, + -120306.863395556, + -111135.789115556, + -76173.2847733333, + -32786.4513422222, + -20028.3331977778, + -3430.54389111111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -123668.095968889, + -174758.010484444, + -242386.513942222, + -294565.773777778, + -298161.756311111, + -294498.367422222, + -311566.828933333, + -323981.3212, + -333649.737155556, + -332823.276622222, + -364346.005333333, + -361259.966533333, + -346093.536533333, + -291442.221875556, + -255189.911573333, + -228652.029391111, + -200261.058573333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -115489.360471111, + -210029.411777778, + -271135.324586667, + -287334.244111111, + -316765.910444444, + -337236.927555555, + -333321.497511111, + -345897.178888889, + -359481.024888889, + -353206.3724, + -357532.102, + -330660.411822222, + -270911.125186667, + -235277.194928889, + -202450.592844444, + -185604.572306667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -88124.7246844444, + -187382.341666667, + -243890.847955556, + -249671.675622222, + -252242.202337778, + -271341.060506667, + -271923.685875556, + -305573.524711111, + -317434.112577778, + -326698.0904, + -334247.602222222, + -302021.502844444, + -250154.070671111, + -219935.215333333, + -185747.297937778, + -168040.234475556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -104347.382968889, + -191717.156471111, + -255406.198053333, + -255294.53796, + -274262.686413333, + -286092.794884444, + -299043.900355556, + -327750.215688889, + -345149.847555556, + -342245.512844444, + -336952.648577778, + -317665.638755556, + -251441.238991111, + -205757.314191111, + -183180.288075556, + -162826.499408889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -23009.3646186667, + -114750.235128889, + -196257.121053333, + -204789.593382222, + -240155.363573333, + -245309.605204444, + -261407.415195556, + -283077.093151111, + -288423.003288889, + -302206.137644444, + -307891.7172, + -273251.004937778, + -215153.467084444, + -188469.049346667, + -159617.663813333, + -136766.030066667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -37541.2370488889, + -124478.730662222, + -142542.461666667, + -160760.641146667, + -187882.907124444, + -209585.702115556, + -218905.65652, + -213862.195768889, + -206889.154822222, + -220224.47652, + -213899.122728889, + -19952.2812444445, + -17427.151244, + -22142.9291857778, + -9090.65556711111, + -4350.99232977778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -7772.27517377778, + -17812.1001484445, + -22307.7523786667, + -40931.7767333333, + -61520.6084311111, + -105122.556057778, + -111307.235715556, + -111349.731026667, + -115850.131008889, + -108744.62192, + -93060.6283377778, + -75527.9421866667, + -27677.1375124444, + -14019.2617497778, + -6958.70976933333, + 0, + 0, + 0, + 0, + 0, + 0, + -89744.5287155556, + -155012.930515556, + -217259.76916, + -285346.635835556, + -292606.886471111, + -300327.551822222, + -310236.286088889, + -316431.809377778, + -336858.865822222, + -331527.902311111, + -327269.579066667, + -333866.609777778, + -318263.503822222, + -258257.486893333, + -234713.912253333, + -208582.812773333, + -186181.922395556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -109261.306288889, + -191412.069444444, + -268313.049786667, + -295002.449733333, + -307962.054266667, + -315986.341288889, + -329236.086222222, + -337043.500622222, + -339616.664977778, + -338948.462844444, + -346093.536533333, + -317636.331644444, + -268170.324155556, + -234434.029342222, + -204713.981035556, + -174277.960004444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -61278.8247644444, + -154554.860368889, + -219315.663004444, + -233312.4462, + -261219.849684444, + -281008.89032, + -281864.071822222, + -291111.637662222, + -300263.076177778, + -304014.3864, + -316704.365511111, + -296435.567466667, + -235511.651817778, + -201952.665026667, + -167908.938617778, + -143504.614124444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -70999.1143066667, + -157788.90008, + -220898.540075556, + -219222.17332, + -222587.508888889, + -241424.654555555, + -249293.90696, + -263118.071271111, + -256984.385986667, + -258750.139431111, + -253207.871648889, + -211445.824457778, + -167314.004262222, + -146437.376733333, + -128070.903271111, + -112490.949933333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -30212.9939155555, + -125641.050688889, + -186602.47944, + -203003.031888889, + -217029.122195556, + -229695.069475556, + -243926.30956, + -253189.70124, + -264778.612186667, + -277032.794555556, + -259817.504417778, + -217762.386115556, + -168613.188497778, + -147062.204342222, + -126973.938102222, + -113723.313955556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -22398.3406591111, + -104299.026235556, + -117561.666297778, + -119726.582595556, + -120597.883008889, + -131793.199453333, + -118326.581897778, + -123189.510844444, + -125930.898017778, + -123825.475155556, + -122271.612124444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -6614.937356, + -13624.465656, + -35288.3994177778, + -46633.4752, + -44799.4361866667, + -36194.2822222222, + -21334.6097542222, + -3191.60301422222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -8514.94667644444, + -11919.2020888889, + -25755.9391506667, + -44637.6609333333, + -53084.2634266667, + -70284.6069377778, + -76173.2847733333, + -85885.9544666667, + -98265.8643422222, + -93985.8538355555, + -74944.4376044445, + -34179.7114044445, + -21983.0588946667, + -7380.46840533333, + -3472.01345333333, + 0, + 0, + 0, + 0, + 0, + 0, + -125797.843733333, + -162012.054791111, + -234216.277506667, + -282656.829177778, + -297071.531777778, + -299029.2468, + -300283.591155556, + -322375.291511111, + -329177.472, + -331372.574622222, + -335847.770488889, + -316235.451733333, + -310945.518177778, + -248216.284484444, + -215078.733951111, + -190460.760617778, + -174872.308217778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -95474.9481511111, + -179611.854226667, + -272487.261622222, + -286243.726506667, + -299169.920933333, + -316856.762488889, + -348567.056711111, + -354639.490133333, + -358068.422133333, + -343171.617555555, + -345947.000977778, + -316144.599688889, + -270396.785386667, + -228049.768257778, + -202321.055413333, + -175575.092742222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -90708.4396, + -178193.390048889, + -264411.101013333, + -289749.150066667, + -293076.972533333, + -321768.634311111, + -333787.480577778, + -333790.411288889, + -348487.927511111, + -344270.634222222, + -369814.712266667, + -314858.017511111, + -262319.159422222, + -230816.359546667, + -195714.353355556, + -166809.042737778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -57897.0772133333, + -150819.669057778, + -238830.096008889, + -264536.242377778, + -286276.550471111, + -320775.123244444, + -325927.313377778, + -322762.145377778, + -324769.682488889, + -323937.360533333, + -332876.029422222, + -305060.650266667, + -242678.998911111, + -223975.786742222, + -188883.158826667, + -165867.112186667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -55418.8678977778, + -136430.170573333, + -178298.016435556, + -211233.934044444, + -220284.263026667, + -243224.404248889, + -226032.5598, + -219949.575817778, + -201273.03312, + -191576.189266667, + -176464.563564445, + -1474.64004835556, + -8050.45827244445, + -3631.26829511111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -4456.17555155556, + -20460.5544724444, + -26795.6968386667, + -43305.0665911111, + -45983.7365466667, + -53688.8691288889, + -75098.88608, + -59770.0946844445, + -27613.6876168889, + -7244.42479555556, + -3372.63303955556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -68657.4761288889, + -115558.232182222, + -191081.19216, + -267440.577088889, + -281334.199253333, + -306168.459066667, + -332656.226088889, + -325678.202933333, + -334625.663955556, + -339308.940311111, + -355858.665955556, + -352271.475555555, + -310831.220444444, + -225711.646933333, + -203365.853924444, + -173042.3722, + -148992.37068, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -65272.7978666667, + -136098.414075556, + -238233.989368889, + -241104.620902222, + -266003.942502222, + -291880.070115555, + -310561.595022222, + -316865.554622222, + -321358.334755556, + -325467.191733333, + -323371.733288889, + -282045.775911111, + -229133.545226667, + -190566.266217778, + -158023.943111111, + -137709.425973333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -18831.8117724444, + -104911.251786667, + -171882.103671111, + -162591.163306667, + -176409.173124444, + -197864.616097778, + -191332.647173333, + -218719.849435555, + -224195.883146667, + -240014.68944, + -236025.405475556, + -188367.939813333, + -139971.348808889, + -110713.473644444, + -78478.5821333333, + -59033.6069822222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -168.485409493333, + -31562.00024, + -69478.6613822222, + -109839.535591111, + -142605.471955555, + -169863.722928889, + -177935.1944, + -203154.256582222, + -210366.736626667, + -225169.465377778, + -230225.235115556, + -191383.934617778, + -146808.111688889, + -112933.487311111, + -91882.7755422222, + -66923.3743644444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2108.05757151111, + -36401.4834977778, + -113089.694213333, + -137884.389426667, + -178177.85728, + -208984.320195556, + -224341.246417778, + -249745.236471111, + -264762.493275555, + -287607.972528889, + -285241.423306667, + -247078.582431111, + -197942.279942222, + -169194.348511111, + -145229.337613333, + -122453.023142222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -53310.2212533333, + -136413.758591111, + -148898.880995555, + -149168.213346667, + -147009.451542222, + -167675.360942222, + -170744.98776, + -175733.058071111, + -186711.208822222, + -163701.316675556, + -164899.098306667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -12625.4741595556, + -25424.0654244444, + -38299.7050844445, + -50727.3855511111, + -52215.6006533333, + -42215.7212711111, + -50527.2179822222, + -13084.1011413333, + -5692.34949822222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -4239.06847244445, + -43961.54588, + -115937.759271111, + -180460.588164444, + -193632.376182222, + -215197.13468, + -238052.578351111, + -241567.087115556, + -272222.91148, + -272695.04904, + -254250.325591111, + -274458.457915556, + -217121.146524445, + -164393.257568889, + -122731.147626667, + -92330.0020577778, + -72305.3322488889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -4158.03431022222, + -47813.6725644445, + -108807.632208889, + -135705.112644445, + -160573.075635556, + -197226.89336, + -209160.749004444, + -234969.177191111, + -238328.651337778, + -241137.444866667, + -248910.569946667, + -216783.528604444, + -159587.77056, + -124983.399115556, + -100441.038128889, + -81000.7521155556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -4244.13860266667, + -42478.3129866667, + -125077.474942222, + -147276.439324445, + -178693.955506667, + -209508.917484444, + -213098.745524444, + -238680.922813333, + -236663.714355556, + -237617.953893333, + -246138.996448889, + -207704.478653333, + -157566.752177778, + -124068.138035556, + -100750.228151111, + -82122.6283288889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -9120.78327733333, + -72327.0195111111, + -156840.521964445, + -179678.088297778, + -204257.962386667, + -233897.416137778, + -234591.994671111, + -251987.230471111, + -252535.273448889, + -245891.35136, + -214565.566435555, + -173145.533231111, + -131186.835324444, + -105150.690884444, + -87869.4597466667, + -75486.9122311111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -3313.90158888889, + -43578.7950088889, + -126544.881995556, + -146824.523671111, + -179410.514373333, + -207266.044271111, + -213252.900928889, + -229727.600368889, + -251219.970302222, + -255941.345902222, + -253345.322, + -213691.335311111, + -157697.461893333, + -121851.641222222, + -99684.9146622222, + -71727.98216, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2786.12447844444, + -36368.9526044444, + -58702.4366266667, + -95848.0276755556, + -135418.489097778, + -158045.337302222, + -158569.055377778, + -171444.255431111, + -183201.389195556, + -185806.791373333, + -181057.867088889, + -17874.2605311111, + -12087.0146071111, + -7678.08211866667, + -2964.61943866667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -3475.94060622222, + -9956.91515733333, + -28800.5670026667, + -41984.7812355556, + -46765.9433422222, + -58516.0434, + -68480.1681066667, + -80103.0753022222, + -76978.3511155556, + -41886.6024133333, + -23667.5144128889, + -11596.0032675556, + -3028.97785466667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -31232.5883111111, + -106162.37236, + -165932.760115556, + -243270.709484444, + -257300.023573333, + -271208.885435555, + -287540.273102222, + -294061.691466667, + -290295.727688889, + -304873.084755556, + -302009.78, + -316628.167022222, + -281965.767497778, + -227844.61848, + -188166.893031111, + -163406.194066667, + -145749.538835555, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -49249.7210088889, + -139403.963137778, + -208977.872631111, + -219464.8362, + -238080.127035555, + -243792.669133333, + -267214.326191111, + -274930.302404444, + -277685.46392, + -296626.063688889, + -286700.624368889, + -261894.499382222, + -209764.182422222, + -175098.559115556, + -155345.273155556, + -140887.782173333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -85429.9358177778, + -164254.634933333, + -228501.683911111, + -222904.611831111, + -232595.887333333, + -247103.200404444, + -234525.7606, + -256178.440431111, + -256436.929151111, + -259087.757351111, + -274582.133924444, + -232182.657066667, + -181801.681568889, + -146427.119244444, + -133883.382617778, + -128625.979955556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -38044.4401466667, + -135699.837364445, + -209576.32384, + -229328.144444444, + -239765.872066667, + -242874.184271111, + -234992.329808889, + -237348.328471111, + -196994.194897778, + -195666.875835556, + -187191.552373333, + -121840.211448889, + -75842.70056, + -51390.8985466667, + -34413.5821511111, + -24753.9290217778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -30702.4226711111, + -54978.0889466667, + -63116.9667733333, + -83408.3312933333, + -129501.969506667, + -133990.646644444, + -160467.863106667, + -175860.250933333, + -194440.373235556, + -193601.017573333, + -147028.794235556, + -109636.730382222, + -90463.7252222222, + -68435.9143688889, + -55155.3969688889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2375.83078431111, + -29012.7504871111, + -30577.8674488889, + -31602.4440533333, + -30420.7813333333, + -37759.5750266667, + -28374.2950715556, + -24407.1086688889, + -23467.1416942222, + -21134.9697133333, + -21661.7943426667, + -181.930632857778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -32593.0244088889, + -108561.745546667, + -186219.142426667, + -211707.243888889, + -224505.659311111, + -251772.995488889, + -251440.652848889, + -276373.970697778, + -280582.764924444, + -285847.787435555, + -296995.333288889, + -248085.281697778, + -183935.239257778, + -155345.859297778, + -128603.120408889, + -101920.461097778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -31255.4478577778, + -51000.2347555556, + -77975.9651777778, + -126062.780017778, + -174417.168782222, + -152038.551808889, + -181607.668493333, + -181937.373493333, + -183590.880702222, + -188115.312515556, + -146243.656728889, + -96278.8422088889, + -64449.8541866667, + -28556.2922315556, + -13343.2639248889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -781.679267555556, + -13640.8776382222, + -45825.1850755556, + -39332.7807511111, + -35818.2719866667, + -54326.8849377778, + -71413.8099288889, + -128300.964093333, + -143727.055097778, + -170797.154417778, + -167830.39556, + -120551.870844444, + -80668.9956177778, + -59618.8699911111, + -29498.1934755556, + -24503.411836, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 72.8319810355556, + -32759.4888, + -36817.9375466667, + -30635.3093866667, + -44940.4033911111, + -81404.6041066667, + -119462.818595556, + -157580.52652, + -170987.943711111, + -187592.766724444, + -183252.090497778, + -134066.258991111, + -87216.20424, + -48660.9411466667, + -19896.6563475556, + -7984.400044, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2864.6352984, + -21574.4591515556, + -51948.3198, + -33723.9858266667, + -45348.94452, + -65259.9027377778, + -79076.7402711111, + -125009.775515556, + -141462.787693333, + -165055.305208889, + -165920.451128889, + -127300.126248889, + -82725.7686755556, + -50931.6561155555, + -25141.8379444444, + -9108.76736177778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2999.84658622222, + -17525.6817515556, + -19652.3815764444, + -13798.6964315556, + -28776.6524, + -40636.3610533333, + -44393.2396266667, + -50213.0457511111, + -60941.2068444444, + -77590.2835955556, + -92378.06572, + -3919.44511866667, + -5287.47175822222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -3374.68453733333, + -10327.1225848889, + -18755.5253622222, + -31229.6576, + -36299.7878222222, + -42502.0517466667, + -37973.8100088889, + -23639.2916648889, + -11343.9328048889, + -2482.93362186667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -6108.89146844445, + -18822.8437964444, + -29517.82924, + -36640.6295244444, + -43583.7772177778, + -56359.9192355556, + -59068.7755155556, + -56106.1196533333, + -33530.5588933333, + -13631.0011417778, + -3298.48604844444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -17009.6714462222, + -52549.1155777778, + -113742.363577778, + -201000.770057778, + -211859.933937778, + -233494.736431111, + -273507.735231111, + -296371.091822222, + -299334.040755556, + -317346.191244444, + -313562.6432, + -319939.870577778, + -274668.882973333, + -221928.39196, + -170914.382862222, + -144918.975306667, + -117111.216, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -19722.2790364444, + -80679.5461777778, + -169052.795164445, + -187906.645884444, + -220408.525177778, + -255611.347831111, + -271866.537008889, + -295401.026444444, + -301350.37, + -291658.801426667, + -262139.506831111, + -186542.106791111, + -135511.685711111, + -93505.2172133333, + -65993.4597288889, + -38543.83332, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -24677.9649897778, + -41936.1314311111, + -40524.4078888889, + -70290.1752888889, + -96098.3104044444, + -116449.461431111, + -149747.321862222, + -161341.80116, + -171501.111226667, + -176386.89972, + -142003.210822222, + -93065.9036177778, + -49457.8014977778, + -23648.7871688889, + -10769.8944195556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -5626.99464044444, + -14090.2142657778, + -41678.2288533333, + -45072.2853911111, + -40857.3366711111, + -62537.8582577778, + -75652.2043377778, + -112647.156835556, + -140863.750342222, + -160462.001684444, + -177246.77036, + -135867.180968889, + -87816.7069466667, + -51495.2318622222, + -22560.7020546667, + -10624.677684, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2687.03420506667, + -16208.3857213333, + -5999.60525111111, + -12787.27872, + -32052.3082088889, + -44730.2714044444, + -48020.5807688889, + -52154.9349333333, + -61699.3818088889, + -76085.9495822222, + -86027.5078133333, + -1512.24693333333, + -2534.47310746667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -4976.90430177778, + -11600.4286413333, + -17537.4339031111, + -24497.2866497778, + -28636.4764875556, + -21038.9010031111, + -11344.5482542222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1088.90864404445, + -48149.2389866667, + -110713.766715556, + -144337.229151111, + -186959.733124444, + -222816.397426667, + -235746.694848889, + -248504.666457778, + -254856.396648889, + -255827.927382222, + -256534.814902222, + -213225.645315556, + -153947.030884445, + -130347.186591111, + -103809.890551111, + -89334.5222311111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -3973.60466, + -48118.7595911111, + -134712.18772, + -160792.878968889, + -192193.397026667, + -230675.685413333, + -247764.954973333, + -263910.828626667, + -259263.306946667, + -268471.015115556, + -263784.514977778, + -221440.42856, + -171224.452097778, + -148018.788448889, + -130180.136057778, + -117984.567911111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -25741.3149022222, + -111139.012897778, + -194589.546431111, + -204204.330373333, + -214433.684435556, + -234489.712853333, + -243949.755248889, + -258412.22844, + -271792.97616, + -273621.153751111, + -286539.142186667, + -236428.964395556, + -187644.933382222, + -165139.416617778, + -146575.120155556, + -134290.16532, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -33090.9522266667, + -113479.18572, + -193121.846306667, + -197643.933551111, + -200263.989284445, + -212455.747506667, + -207522.481493333, + -223756.27648, + -235741.126497778, + -230133.210786667, + -238356.200022222, + -197321.262257778, + -132410.993355555, + -101502.248622222, + -72394.4258666667, + -48484.5123377778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -29313.2656044444, + -37226.4786755555, + -32369.9972933333, + -45037.703, + -81455.0123377778, + -86484.6987466667, + -128269.898555556, + -132026.190986667, + -146515.040577778, + -141832.936506667, + -100174.050346667, + -52159.331, + -24141.6741635556, + -7873.67777822222, + -5063.65335066667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -5413.72679288889, + -12632.9474728889, + -11696.9955724445, + -11351.7578035556, + -16604.998856, + -34257.3752488889, + -38523.9044844444, + -42931.4009244445, + -49990.3117066667, + -66240.8117466667, + -73333.4257066667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -4188.89469822222, + -14015.7742035556, + -17399.5439453333, + -23690.7842591111, + -25411.0530671111, + -23485.1948746667, + -14475.5734697778, + -1899.90967626667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 1214.17016764445, + -41616.9769911111, + -72215.94556, + -72083.4774177778, + -105559.818155556, + -117731.354471111, + -110763.588804444, + -123192.441555556, + -130695.648142222, + -132194.120733333, + -127112.853808889, + -78398.57372, + -33876.3828044445, + -21000.1570022222, + -12816.820288, + -9659.828972, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -24989.8512662222, + -53197.3888755556, + -27971.7619004444, + -28471.9170586667, + -27672.8293671111, + -29601.3545066667, + -28784.6239342222, + -26464.9953968889, + -27390.7484226667, + -28618.2474644444, + -24108.4692066667, + -31137.9263422222, + -18698.6988737778, + -17147.5027897778, + -6098.42882977778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -12359.0139053333, + 16607.2848106667, + -26800.6497404444, + -29886.8057688889, + -46424.2224266667, + -41149.5285688889, + -37537.7201955556, + -38708.2462133333, + -44204.20876, + -53035.6136222222, + -59939.1967155555, + -45191.8584044444, + -36552.1220488889, + -14521.1753346667, + -3569.48890488889, + 3624.99657333333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2407.40333511111, + 44439.8379333333, + 30160.8272577778, + -4842.38466177778, + -32202.94676, + -46214.9696533333, + -43212.45612, + -55770.5532311111, + -67485.1916844445, + -105042.254573333, + -109381.758515556, + -70802.7566622222, + -24365.5218782222, + -8903.00213466667, + -4112.95997333333, + -6095.17574044444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2661.15602595556, + 7250.22760355556, + -43691.3343155556, + -33557.8145066667, + -19939.767108, + -23022.4648973333, + -42411.7858444444, + -92671.7229733333, + -118804.58088, + -133103.520391111, + -139231.637324445, + -82964.6216311111, + -45261.0231866667, + -26849.1823164444, + -17169.3952017778, + -9341.17275288889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -15900.6610546667, + -12487.2618235556, + -8816.10655022222, + -9842.03128177778, + -9988.53753022222, + -16673.9584884444, + -17772.7993124444, + -8624.76042177778, + -7907.08788488889, + -8636.65910888889, + -651.473634311111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -12188.3879044444, + 21551.1306911111, + -24874.4984768889, + -35069.1822266667, + -32432.7145111111, + -42689.9103288889, + -36594.0312177778, + -50754.6411644445, + -47822.4646977778, + -25986.9084933333, + -26051.178988, + -38567.8651511111, + -10239.4650155556, + -145.443279524444, + 6868.23871733333, + 11501.956748, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -6407.882616, + 37713.2697911111, + 12165.4111293333, + -120.776363315556, + -27610.8741342222, + -37044.4815155556, + -34725.7028844444, + -48920.8952222222, + -60039.1339644445, + -94924.2675333333, + -111131.393048889, + -72664.9305022222, + -25736.5378431111, + -11839.1936755556, + -5603.54895155556, + -25773.6699528889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -1314.59391457778, + 20242.2751088889, + -26684.3005093333, + -27622.4504431111, + -36425.2222577778, + -23012.2074084444, + -43998.7659111111, + -80688.3383111111, + -120584.694808889, + -142415.268804444, + -162145.695217778, + -113301.584626667, + -68173.6157244445, + -47929.1425822222, + -23815.0757173333, + -14498.7260875555, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -23498.9106026667, + -30784.4825822222, + -27171.6777671111, + -75171.2746444445, + -126849.38288, + -136613.046946667, + -179952.695928889, + -183191.717848889, + -187066.70408, + -183715.142853333, + -131066.676168889, + -84490.6429066667, + -58364.5256355555, + -37124.783, + -22241.6062288889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -22919.4504017778, + -33279.6900222222, + -45258.6786177778, + -103257.451506667, + -139707.87788, + -149239.136555556, + -164159.093751111, + -174986.019808889, + -177311.832146667, + -173722.004106667, + -133848.507155556, + -87684.5318755556, + -69254.4619822222, + -51042.4369955556, + -36065.6240044444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -15697.0352466667, + -17413.69928, + -18500.4655742222, + -18274.0681408889, + -21118.4405026667, + -16521.7080462222, + -13222.8116982222, + -12846.5083915556, + -14510.9471528889, + -34426.47728, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -12091.9382017778, + -14338.5627253333, + -20078.3311293333, + -18449.764272, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -597.566134133333, + -21087.9318, + -47723.4066622222, + -77298.67784, + -115648.498084444, + -139636.954671111, + -140188.221431111, + -158967.045946667, + -163476.824204444, + -166680.38452, + -154744.184306667, + -92452.2127111111, + -44983.7779155556, + -21004.9340613333, + -8477.28703866667, + -3765.87585644444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -483.608363288889, + 1088.97018897778, + -31577.82608, + -28504.97548, + -47222.2550622222, + -59938.3175022222, + -76097.9654977778, + -119455.198746667, + -130175.44692, + -135026.946093333, + -126040.213542222, + -60685.6488355556, + -20187.1484328889, + -7747.30551511111, + -9985.81196888889, + -18691.4600173333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -5615.41833155556, + 36579.3776622222, + -29886.2196266667, + -19199.2057173333, + -43802.9944088889, + -60027.7041911111, + -76471.9242355556, + -124128.510684445, + -141213.384177778, + -151136.772, + -150049.478177778, + -96115.0154577778, + -45090.1627288889, + -26463.7351911111, + -10776.4885195556, + -4371.39007911111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -1980.99659128889, + 5340.92792888889, + -25956.2825622222, + -29438.1138977778, + -18932.5403133333, + -35461.6044444444, + -35082.3704266667, + -87115.97392, + -99405.3248222222, + -113063.317813333, + -124865.291457778, + -69019.12588, + -34471.6102311111, + -23259.6473475555, + -8150.51274977778, + -4565.02216222222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -4478.74202711111, + 2053.0862232, + -6590.70037511111, + -9891.06207866667, + -27693.8718728889, + -42438.4553155555, + -46675.67744, + -50161.4652355556, + -57320.8994088889, + -65863.6292266667, + -55015.6020488889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -7456.46174444445, + -12287.5631684445, + -14360.8068226667, + -13025.8092973333, + -8249.83454933333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -22148.7026866667, + 20250.1587217778, + -2867.63341586667, + -24594.3518017778, + -11214.6005235556, + -35568.5754, + -21572.202504, + -23631.7597373333, + -26041.8300195555, + -26242.5544235556, + -27500.3570182222, + -20067.1065057778, + -9136.14020355555, + -26814.0430902222, + -9473.55297377778, + 6533.46358711111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -8863.49614888889, + 41993.2802977778, + 0, + -23922.1052871111, + -37395.8737777778, + -48563.3484666667, + -55495.0663866667, + -73353.0614711111, + -115348.100195556, + -121385.072013333, + -117149.022173333, + -57821.7579377778, + -16802.1184853333, + -6125.86028577778, + -5807.73159466667, + -24731.3332391111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -3655.82765422222, + 39571.3406355556, + -21967.0865191111, + -17883.726728, + -44345.7621066667, + -58721.4862488889, + -74157.5416711111, + -119588.546102222, + -135447.796208889, + -141071.53776, + -132060.480306667, + -69048.4329911111, + -24706.1877377778, + -7135.84194888889, + -4217.61566711111, + -1873.73842604444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -3568.87345555556, + 768.074906577778, + -33505.3547777778, + -37662.2754177778, + -42206.9291377778, + -25946.4939871111, + -25450.2366746667, + -27776.8403044444, + -31209.1426222222, + -38253.69292, + -62631.0548711111, + -30136.2092844444, + -9994.83855911111, + -5340.10732977778, + -7142.67050577778, + -16037.9355631111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -13230.4901613333, + 26480.0006377778, + -43435.4832355556, + -29968.5726088889, + -19585.3269062222, + -20637.8624946667, + -39129.9755422222, + -62032.01752, + -98871.0561866667, + -108096.348622222, + -107629.193271111, + -51347.2309511111, + -15854.7661186667, + -4370.12987333333, + -8652.98316977778, + -32930.9354, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2823.74601697778, + 28674.575732, + 27883.4302675556, + 6589.58670488889, + -5122.50202977778, + -23630.2064604444, + -31655.1968533333, + -38467.6348311111, + -44336.6769022222, + -46787.0444622222, + -40042.5989822222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -270.676375226667, + 57.7865894044444, + -14219.4000115556, + -18936.7019231111, + -23641.0793986667, + -26827.6122826667, + -11899.3025604444, + -30381.5098044444, + -30796.4984977778, + -26684.6521946667, + -19816.58932, + 16060.6485742222, + 7518.94450533333, + 20621.2160555556, + 29893.8394755556, + 36279.5659155555, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 30700.6642444444, + 97398.0807822222, + 30332.5669288889, + 22511.7591791111, + 2594.70215151111, + -2285.53557497778, + -20929.2924075556, + -42813.5863377778, + -45704.4397777778, + -29523.10452, + -39551.9979422222, + 2310.23267751111, + -3378.553076, + 19042.1489088889, + 33206.1291733333, + 44225.30988, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 53672.4571466667, + 111845.314275556, + 35717.7485955556, + 9175.70480355556, + 4947.421348, + -3716.05376755556, + -10449.4211595556, + -39129.3894, + -21167.2661497778, + -26353.5111462222, + -37165.2268133333, + -29127.986048, + 0, + -6475.55273555556, + 15675.3186773333, + 29008.3837275556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 29671.6915733333, + 10261.1229706667, + -8959.71139466667, + -13829.8498906667, + -28296.338156, + -26299.2343764444, + -28020.7340831111, + -29577.9088177778, + -38930.1010444444, + -34534.9135911111, + -39692.9651466667, + -8473.00820044445, + -12931.7334706667, + 11100.4786328889, + 25615.177096, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 14914.3302302222, + 81785.0104088889, + 51623.89008, + 19461.7974328889, + 6081.43070533333, + 9135.87643955556, + -7438.20341422222, + -22975.426984, + -28827.8812302222, + -26860.1724831111, + -23380.6271022222, + -100.321758186667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -481.937857955556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -1076.73447008889, + -27352.5026426667, + -22908.2257782222, + -39291.7507955556, + -95627.0520577778, + -113601.982515556, + -145072.83764, + -152635.537662222, + -160070.165608889, + -161685.573573333, + -113807.425364444, + -72497.2938266667, + -52253.4068266667, + -35533.6999377778, + -19847.0980226667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -18886.8798342222, + -42030.5003288889, + -20401.1782653333, + -15121.2677417778, + -34832.3807688889, + -39502.1758533333, + -83455.5157422222, + -91633.6650977778, + -96569.8618222222, + -89365.0016266667, + -37819.9476755556, + -6842.00885288889, + -3463.07478444445, + -8888.583036, + -25974.8925777778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2905.18168662222, + 38215.0075333333, + 7987.91689733333, + -13397.1597022222, + -27209.8063186667, + -26608.4243986667, + -20778.3607853333, + -19929.0993195556, + -18404.7485493333, + -18620.2437373333, + -21114.5133497778, + -18309.8521235556, + -9693.854528, + -19303.1580404445, + -13415.2714968889, + -2223.73566977778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -8140.43110355556, + 39755.0962222222, + 17005.7442933333, + 5619.90231955556, + -2260.34611297778, + -10098.7908822222, + -901.554144133333, + -17946.9714737778, + -22709.8459431111, + -22719.839668, + -21045.8467884444, + 14746.8107831111, + 20168.6263386667, + 9234.14318311111, + 21741.7734488889, + 31421.0330355556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 42876.3035555556, + 108029.82148, + 37853.9439244444, + 13984.2983662222, + 9877.9618, + -4001.47572266667, + -14528.12112, + -40716.3694666667, + -44801.7807555556, + -20369.0576715556, + -17720.8964186667, + -12528.3210862222, + -6713.37994222222, + 7250.98958844445, + 25233.3054382222, + 36532.4862844444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 48481.2885555555, + 109591.597431111, + 83941.7207155556, + 58593.1211022222, + 39927.7151066667, + 23956.3946071111, + 29062.8656471111, + 29697.4818311111, + 12803.1631742222, + 10702.0777644444, + 16986.6360568889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 23436.3692275556, + 101629.148413333, + 148742.381022222, + 67144.3499822222, + 31942.1134711111, + 2197.50287462222, + 0, + -15527.0833093333, + -38940.3585333333, + -24047.7155653333, + -31560.2418133333, + -27083.3461342222, + -24681.2473862222, + -6528.83306355556, + 8937.08630488889, + 26813.0173413333, + 37089.3213955555, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 38477.0131066667, + 102320.210093333, + 25617.6682004444, + 11518.5445728889, + -320.062960444444, + -25100.1925395556, + -32350.6546, + -39675.6739511111, + -44564.1000844444, + -40762.3816311111, + -36485.5949066667, + -18570.6854124445, + -3054.32850577778, + -19845.3982102222, + -7314.41017688889, + 153.318393351111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -2376.08575617778, + 23050.5411097778, + 12945.7129626667, + -7557.65919911111, + -20419.4365955556, + -21591.6038115556, + -38242.2631466667, + -34660.0549555556, + -19026.9971324444, + -18959.8545408889, + -22565.4204995556, + -30673.9947733333, + -24277.3953951111, + -7509.77137955556, + 1839.27619408889, + 6698.52123688889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 5224.28562666667, + 58564.9862755556, + 35495.8937644444, + -1655.71989577778, + -4975.87855288889, + -30088.4386933333, + -45219.4070888889, + -41187.3347422222, + -42826.1883955556, + -50383.6131377778, + -47863.4946533333, + -27620.9264733333, + -4211.08018133333, + -16034.0377173333, + -14587.1749488889, + 4860.17407822222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 6317.76324933333, + 51304.4425688889, + 27619.0215111111, + -4403.95027955556, + -6104.96431555556, + -31418.6884666667, + -44785.9549155556, + -39232.8435022222, + -41628.4067644444, + -46920.3918177778, + -40876.0932222222, + -43217.4383288889, + -5062.97928711111, + -11109.8862155556, + 8802.91835022222, + 25675.9893515556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 17669.3159031111, + 84128.1139422222, + 59027.1594177778, + 29730.3057955556, + 10059.0504395556, + 4786.43738666667, + -5851.04750488889, + -14845.5171333333, + -24647.2511373333, + -26459.7201168889, + -16966.2676146667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -7936.04331066667, + -8369.26102711111, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -13606.9693106667, + 38096.3137333333, + 18734.0432497778, + -18870.4971591111, + -13746.7642306667, + -40696.7337022222, + -49684.6385377778, + -99798.6262533333, + -112439.076346667, + -142072.375604444, + -138252.486742222, + -77831.7741911111, + -28477.4267955556, + -16417.99018, + -2494.91436888889, + -1910.30197786667, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -11038.1717146667, + -46561.3797066667, + -24760.7868857778, + -28510.8955164444, + -86800.9224755556, + -120247.956102222, + -164354.865253333, + -164341.677053333, + -160511.530702222, + -159084.274391111, + -99789.2479777778, + -61130.5307822222, + -43087.0216844444, + -24543.0350502222, + -17196.9731933333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -778.1565528, + -19905.214024, + -53630.2549066667, + -88953.8228577778, + -133233.643964444, + -141618.701524444, + -142930.780888889, + -150570.265542222, + -148036.958857778, + -144477.903284444, + -141595.841977778, + -82222.8586488889, + -41170.6296888889, + -24629.6082564444, + -7616.53718533333, + -3630.24254622222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -5148.17505911111, + 11311.9587466667, + -32257.1649155556, + -40792.5679555556, + -31288.2718222222, + -24670.1399911111, + -33017.3913777778, + -32626.1414444444, + -32031.7932311111, + -43884.7612488889, + -40115.5736888889, + -26358.3761266667, + -9408.78425822222, + -18226.7957706667, + -11019.4151635556, + -857.754666577778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -9354.88848088889, + 39109.1674933333, + 28895.6978853333, + -2744.71353044445, + -8712.94551911111, + -18400.3817897778, + -39187.1244088889, + -43785.1170711111, + -22641.6482955555, + -23809.8297444444, + -23378.194612, + -29349.6064222222, + 0, + 11417.4936537778, + 19459.3063284444, + 16220.8998577778, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 5979.17819466667, + 50191.0654177778, + 44647.33228, + 28346.453316, + 16952.5518866667, + 9022.80960488889, + 11554.7388551111, + 3305.93005466667, + -344.288218488889, + 328.309981511111, + -3054.79741955555, + -217.35736184, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 20973.0772315556, + 92140.3850488889, + 149047.468048889, + 67067.8584222222, + 39552.8771555556, + 6897.92682088889, + -2339.17638044444, + 6671.08978088889, + -25310.0607622222, + -33598.25832, + -38766.5673644444, + -36206.88428, + 0, + 1197.61751128889, + 15578.165604, + 33707.8669155555, + 44548.5673155556, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 47254.7859555556, + 109941.231266667, + 34553.084, + 8150.835128, + 7671.42940444444, + -13771.7925035556, + -27705.5947173333, + -24327.8329333333, + -30963.25596, + -46981.9367511111, + -44144.1291822222, + -25807.0507524444, + -16401.109284, + -12831.4738435556, + 6574.52284977778, + 23918.7642764444, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 14380.4425871111, + 74172.4882977778, + 40339.4800177778, + 11365.1804604444, + -6702.30185422222, + -13663.6785706667, + -26282.2069448889, + -24631.1029191111, + -24929.9475311111, + -30465.3281422222, + -29012.2522662222, + -14967.6105582222, + -21474.3753671111, + -7618.85244711111, + -5669.98817244444, + 11288.9233573333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 11120.6126182222, + 76817.4550755556, + 50630.6720844444, + 11615.1408111111, + 19441.4876048889, + 8770.09438577778, + 13155.7277208889, + -5481.33829822222, + -11460.8388711111, + -14292.6970964444, + -10607.0641102222, + 20729.1541457778, + 15974.1339822222, + 27234.3949848889, + 34257.0821777778, + 39180.0907022222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 7254.97535555556, + 66132.9615777778, + 43034.2688844444, + 23440.9118297778, + 10673.0637244444, + -973.157278, + -2146.8807016, + -26067.4737417778, + -30182.51452, + -29877.7205644444, + -37012.5367644444, + 0, + 10681.6214008889, + 5653.69341866667, + 16174.7411577778, + 23593.7484142222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 48121.6903022222, + 39818.6926533333, + 27173.4068866667, + 20271.9045982222, + 8953.61551555556, + 11266.1224248889, + 3444.02516222222, + 2798.84376466667, + 6142.21365377778, + 8322.57479911111, + -150.739367573333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 11525.1093657778, + 60229.3371155556, + 112483.037013333, + 49611.37076, + 25463.0145751111, + -719.647836177778, + 3686.57081377778, + -8337.93172533333, + -33542.86788, + -30704.76724, + -20687.8897333333, + -31062.3139955556, + -5298.28608222222, + 1531.89442062222, + 16252.4636164444, + 34206.0878044444, + 43642.9775822222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 36461.8561466667, + 96058.7458044444, + 29876.8413511111, + 20499.2398591111, + 2563.98243764444, + -21246.981492, + -28307.416244, + -31195.0752088889, + -45564.3517866667, + -42909.7136622222, + -36861.019, + -20486.7843368889, + -5884.13523333333, + -19734.0018808889, + -13262.581448, + 9840.82969022222, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8322.545492, + 71167.3371244444, + 35873.9554977778, + 14789.6870866667, + -3574.96933466667, + -16252.9325302222, + -12563.07932, + -18959.8545408889, + -2224.51230822222, + -1919.73593693333, + -17072.9454991111, + -30390.88808, + -3970.46879911111, + -3283.598036, + 10150.2834764444, + 20394.4669368889, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 10593.2604608889, + 52404.63152, + 35691.3721955556, + 14469.3603622222, + 0, + -20827.5381177778, + -23855.9591373333, + -14165.2111631111, + -11747.5503391111, + -12604.0506613333, + -15097.9978955556, + -14427.8321857778, + -5895.94599911111, + -16316.1479688889, + -6108.18809777778, + 5555.133604, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + -12618.6162955556, + 34125.78632, + 27918.4229582222, + 15448.0127235556, + 8667.78326088889, + -639.012250666667, + 3682.17474711111, + 6657.57920266667, + 10344.7947728889, + 13405.4243075556, + 18355.4246813333, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 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/spec/spec_files/two_building_res_hpxml.csv b/spec/spec_files/two_building_res_hpxml.csv new file mode 100644 index 00000000..577a4774 --- /dev/null +++ b/spec/spec_files/two_building_res_hpxml.csv @@ -0,0 +1,3 @@ +Feature Id,Feature Name,Mapper Class,REopt Assumptions +16,Residential 3,URBANopt::Scenario::BaselineMapper,multiPV_assumptions.json +17,Residential 4,URBANopt::Scenario::BaselineMapper,multiPV_assumptions.json diff --git a/spec/uo_cli_spec.rb b/spec/uo_cli_spec.rb index 23d0a0d7..9e53b5f8 100644 --- a/spec/uo_cli_spec.rb +++ b/spec/uo_cli_spec.rb @@ -3,36 +3,46 @@ # See also https://github.com/urbanopt/urbanopt-cli/blob/develop/LICENSE.md # ********************************************************************************* +require 'csv' require 'json' +require 'open3' RSpec.describe URBANopt::CLI do example_dir = Pathname(__FILE__).dirname.parent / 'example_files' spec_dir = Pathname(__FILE__).dirname test_directory = spec_dir / 'test_directory' test_directory_res = spec_dir / 'test_directory_res' + test_directory_res_hpxml = spec_dir / 'test_directory_res_hpxml' test_directory_elec = spec_dir / 'test_directory_elec' test_directory_disco = spec_dir / 'test_directory_disco' test_directory_pv = spec_dir / 'test_directory_pv' + test_directory_ghe = spec_dir / 'test_directory_ghe' test_scenario = test_directory / 'two_building_scenario.csv' test_scenario_res = test_directory_res / 'two_building_res' - test_reopt_scenario = test_directory_pv / 'REopt_scenario.csv' + test_scenario_res_hpxml = test_directory_res_hpxml / 'two_building_res_hpxml.csv' + test_scenario_reopt = test_directory_pv / 'REopt_scenario.csv' test_scenario_pv = test_directory_pv / 'two_building_scenario.csv' test_scenario_elec = test_directory_elec / 'electrical_scenario.csv' test_scenario_disco = test_directory_disco / 'electrical_scenario.csv' - test_ev_scenario = test_directory / 'two_building_ev_scenario.csv' + test_scenario_ev = test_directory / 'two_building_ev_scenario.csv' test_scenario_chilled = test_directory_res / 'two_building_chilled.csv' test_scenario_mels_reduction = test_directory_res / 'two_building_mels_reduction.csv' test_scenario_stat_adjustment = test_directory_res / 'two_building_stat_adjustment.csv' test_scenario_flexible_hot_water = test_directory / 'two_building_flexible_hot_water.csv' test_scenario_thermal_storage = test_directory / 'two_building_thermal_storage.csv' + test_scenario_ghe = test_directory_ghe / 'baseline_scenario_ghe.csv' test_feature = test_directory / 'example_project.json' test_feature_res = test_directory_res / 'example_project_combined.json' test_feature_elec = test_directory_elec / 'example_project_with_electric_network.json' test_feature_disco = test_directory_disco / 'example_project_with_electric_network.json' test_feature_pv = test_directory_pv / 'example_project_with_PV.json' test_feature_rnm = test_directory / 'example_project_with_streets.json' + test_feature_ghe = test_directory_ghe / 'example_project_with_ghe.json' test_validate_bounds = test_directory_res / 'out_of_bounds_validation.yaml' test_reopt_scenario_assumptions_file = test_directory_pv / 'reopt' / 'multiPV_assumptions.json' + system_parameters_file = test_directory / 'run' / 'two_building_scenario' / 'system_parameter.json' + ghe_system_parameters_file = test_directory_ghe / 'run' / 'baseline_scenario_ghe' / 'ghe_system_parameter.json' + test_weather_file = test_directory_res / 'weather' / 'USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw' call_cli = 'bundle exec uo' # Ensure clean slate for testing @@ -184,6 +194,11 @@ def select_measures(test_dir, measure_name_list, workflow = 'base_workflow.osw', expect(test_feature_rnm.exist?).to be true end + it 'creates an example project directory for ghe workflow' do + system("#{call_cli} create --project-folder #{test_directory_ghe} --ghe") + expect(test_feature_ghe.exist?).to be true + end + it 'creates an empty project directory' do system("#{call_cli} create --empty --project-folder #{test_directory}") expect(test_feature.exist?).to be false @@ -289,23 +304,19 @@ def select_measures(test_dir, measure_name_list, workflow = 'base_workflow.osw', expect(configs['ditto_path']).not_to be_falsey expect(configs['gmt_path']).not_to be_falsey expect(configs['disco_path']).not_to be_falsey + expect(configs['ghe_path']).not_to be_falsey end end - context 'Run and work with a small simulation' do + context 'Run and work with a small basic simulation' do before :all do delete_directory_or_file(test_directory) system("#{call_cli} create --project-folder #{test_directory}") - delete_directory_or_file(test_directory_res) - system("#{call_cli} create --project-folder #{test_directory_res} --combined") - delete_directory_or_file(test_directory_elec) - # use this to test both opendss and disco workflows - system("#{call_cli} create --project-folder #{test_directory_elec} --disco") - delete_directory_or_file(test_directory_pv) - system("#{call_cli} create --project-folder #{test_directory_pv} --photovoltaic") + delete_directory_or_file(test_directory_ghe) + system("#{call_cli} create --project-folder #{test_directory_ghe} --ghe") end - it 'runs a 2 building scenario using default geometry method' do + it 'runs a 2 building scenario using default geometry method', :basic do # Use a ScenarioFile with only 2 buildings to reduce test time system("cp #{spec_dir / 'spec_files' / 'two_building_scenario.csv'} #{test_scenario}") system("#{call_cli} run --scenario #{test_scenario} --feature #{test_feature}") @@ -314,7 +325,173 @@ def select_measures(test_dir, measure_name_list, workflow = 'base_workflow.osw', expect((test_directory / 'run' / 'two_building_scenario' / '3' / 'finished.job').exist?).to be false end - it 'runs a chilled water scenario with residential and commercial buildings' do + it 'creates a system parameter file', :basic do + system("#{call_cli} des_params --scenario #{test_scenario} --feature #{test_feature} --sys-param-file #{system_parameters_file}") + expect(system_parameters_file.exist?).to be true + end + + it 'runs a 2 building scenario using create bar geometry method', :basic do + # Copy create bar specific files + system("cp #{example_dir / 'mappers' / 'CreateBar.rb'} #{test_directory / 'mappers' / 'CreateBar.rb'}") + system("cp #{example_dir / 'mappers' / 'createbar_workflow.osw'} #{test_directory / 'mappers' / 'createbar_workflow.osw'}") + system("cp #{spec_dir / 'spec_files' / 'two_building_create_bar.csv'} #{test_directory / 'two_building_create_bar.csv'}") + system("#{call_cli} run --scenario #{test_directory / 'two_building_create_bar.csv'} --feature #{test_feature}") + expect((test_directory / 'run' / 'two_building_create_bar' / '2' / 'finished.job').exist?).to be true + end + + it 'runs a 2 building scenario using floorspace geometry method', :basic do + # Copy floorspace specific files + system("cp #{example_dir / 'mappers' / 'Floorspace.rb'} #{test_directory / 'mappers' / 'Floorspace.rb'}") + system("cp #{example_dir / 'mappers' / 'floorspace_workflow.osw'} #{test_directory / 'mappers' / 'floorspace_workflow.osw'}") + system("cp #{example_dir / 'osm_building' / '7_floorspace.json'} #{test_directory / 'osm_building' / '7_floorspace.json'}") + system("cp #{example_dir / 'osm_building' / '7_floorspace.osm'} #{test_directory / 'osm_building' / '7_floorspace.osm'}") + system("cp #{example_dir / 'example_floorspace_project.json'} #{test_directory / 'example_floorspace_project.json'}") + system("cp #{spec_dir / 'spec_files' / 'two_building_floorspace.csv'} #{test_directory / 'two_building_floorspace.csv'}") + expect((test_directory / 'osm_building' / '7_floorspace.osm').exist?).to be true + system("#{call_cli} run --scenario #{test_directory / 'two_building_floorspace.csv'} --feature #{test_directory / 'example_floorspace_project.json'}") + expect((test_directory / 'run' / 'two_building_floorspace' / '5' / 'finished.job').exist?).to be true + expect((test_directory / 'run' / 'two_building_floorspace' / '7' / 'finished.job').exist?).to be true + end + + it 'runs an ev-charging scenario', :basic do + # copy ev-charging specific files + system("cp #{spec_dir / 'spec_files' / 'two_building_ev_scenario.csv'} #{test_scenario_ev}") + system("#{call_cli} run --scenario #{test_scenario_ev} --feature #{test_feature}") + expect((test_directory / 'run' / 'two_building_ev_scenario' / '5' / 'finished.job').exist?).to be true + expect((test_directory / 'run' / 'two_building_ev_scenario' / '2' / 'finished.job').exist?).to be true + end + + it 'post-processor closes gracefully if given an invalid type', :basic do + # Type is totally random + expect { system("#{call_cli} process --foobar --scenario #{test_scenario} --feature #{test_feature}") } + .to output(a_string_including("unknown argument '--foobar'")) + .to_stderr_from_any_process + # Type is valid, but with extra characters + expect { system("#{call_cli} process --reopt-scenariot --scenario #{test_scenario} --feature #{test_feature}") } + .to output(a_string_including("unknown argument '--reopt-scenariot'")) + .to_stderr_from_any_process + # Type would be valid if not missing characters + expect { system("#{call_cli} process --reopt-scenari --scenario #{test_scenario} --feature #{test_feature}") } + .to output(a_string_including("unknown argument '--reopt-scenari'")) + .to_stderr_from_any_process + end + + it 'post-processor closes gracefully if not given a type', :basic do + expect { system("#{call_cli} process --scenario #{test_scenario} --feature #{test_feature}") } + .to output(a_string_including('No valid process type entered')) + .to_stderr_from_any_process + end + + it 'default post-processes a scenario', :basic do + # This test requires the 'runs a 2 building scenario using default geometry method' be run first + test_scenario_report = test_directory / 'run' / 'two_building_scenario' / 'default_scenario_report.csv' + system("#{call_cli} process --default --scenario #{test_scenario} --feature #{test_feature}") + expect(`wc -l < #{test_scenario_report}`.to_i).to be > 2 + expect((test_directory / 'run' / 'two_building_scenario' / 'process_status.json').exist?).to be true + end + + it 'successfully runs the rnm workflow', :basic do + # This test requires the 'runs a 2 building scenario using default geometry method' be run first + # copy featurefile in dir + rnm_file = 'example_project_with_streets.json' + system("cp #{spec_dir / 'spec_files' / rnm_file} #{test_directory / rnm_file}") + # call rnm + test_rnm_file = test_directory / rnm_file + system("#{call_cli} rnm --scenario #{test_scenario} --feature #{test_rnm_file}") + # check that rnm inputs and outputs were created + expect((test_directory / 'run' / 'two_building_scenario' / 'rnm-us' / 'inputs.zip').exist?).to be true + expect((test_directory / 'run' / 'two_building_scenario' / 'rnm-us' / 'results').exist?).to be true + expect((test_directory / 'run' / 'two_building_scenario' / 'scenario_report_rnm.json').exist?).to be true + expect((test_directory / 'run' / 'two_building_scenario' / 'feature_file_rnm.json').exist?).to be true + end + + it 'runs a ghe project', :basic do + system("cp #{spec_dir / 'spec_files' / 'baseline_scenario_ghe.csv'} #{test_scenario_ghe}") + puts "copied #{test_scenario_ghe}" + system("#{call_cli} run --scenario #{test_scenario_ghe} --feature #{test_feature_ghe}") + expect((test_directory_ghe / 'run' / 'baseline_scenario_ghe' / '4' / 'finished.job').exist?).to be true + expect((test_directory_ghe / 'run' / 'baseline_scenario_ghe' / '5' / 'finished.job').exist?).to be true + end + + it 'default post-processes ghe scenario', :basic do + # This test requires the 'run ghe project' be run first + test_scenario_report = test_directory_ghe / 'run' / 'baseline_scenario_ghe' / 'default_scenario_report.csv' + system("#{call_cli} process --default --scenario #{test_scenario_ghe} --feature #{test_feature_ghe}") + #expect(`wc -l < #{test_scenario_report}`.to_i).to be > 2 + expect((test_directory_ghe / 'run' / 'baseline_scenario_ghe' / 'process_status.json').exist?).to be true + end + + it 'creates a system parameter file with GHE properties', :basic do + system("#{call_cli} des_params --scenario #{test_scenario_ghe} --feature #{test_feature_ghe} --sys-param-file #{ghe_system_parameters_file} --ghe") + expect(ghe_system_parameters_file.exist?).to be true + expect((test_directory_ghe / 'run' / 'baseline_scenario_ghe' / 'ghe_dir').exist?).to be true + end + + it 'successfully calls the Thermal Network repository for GHE Sizing', :basic do + system("#{call_cli} ghe_size --sys-param #{ghe_system_parameters_file} --scenario #{test_scenario_ghe} --feature #{test_feature_ghe}") + expect((test_directory_ghe / 'run' / 'baseline_scenario_ghe' / 'ghe_dir').exist?).to be true + expect((test_directory_ghe / 'run' / 'baseline_scenario_ghe' / 'ghe_dir').empty?).to be false + end + + it 'saves post-process output as a database file', :basic do + # This test requires the 'runs a 2 building scenario using default geometry method' be run first + db_filename = test_directory / 'run' / 'two_building_scenario' / 'default_scenario_report.db' + system("#{call_cli} process --default --with-database --scenario #{test_scenario} --feature #{test_feature}") + expect(`wc -l < #{db_filename}`.to_i).to be > 20 + expect((test_directory / 'run' / 'two_building_scenario' / 'process_status.json').exist?).to be true + end + + it 'creates scenario visualization for default post processor', :basic do + # This test requires the 'runs a 2 building scenario using default geometry method' be run first + # visualizing via the FeatureFile will throw error to stdout (but not crash) if a scenario that uses those features isn't processed first. + system("#{call_cli} process --default --scenario #{test_scenario} --feature #{test_feature}") + system("#{call_cli} process --default --scenario #{test_scenario_ev} --feature #{test_feature}") + system("#{call_cli} visualize --feature #{test_feature}") + expect((test_directory / 'run' / 'scenario_comparison.html').exist?).to be true + end + + it 'creates feature visualization for default post processor', :basic do + # This test requires the 'runs a 2 building scenario using default geometry method' be run first + system("#{call_cli} process --default --scenario #{test_scenario} --feature #{test_feature}") + system("#{call_cli} visualize --scenario #{test_scenario}") + expect((test_directory / 'run' / 'two_building_scenario' / 'feature_comparison.html').exist?).to be true + end + + it 'ensures viz files are in the project directory', :basic do + # This test requires the 'runs a 2 building scenario using default geometry method' be run first + if (test_directory / 'visualization' / 'input_visualization_feature.html').exist? + FileUtils.rm_rf(test_directory / 'visualization' / 'input_visualization_feature.html') + end + if (test_directory / 'run' / 'two_building_scenario' / 'feature_comparison.html').exist? + FileUtils.rm_rf(test_directory / 'run' / 'two_building_scenario' / 'feature_comparison.html') + end + if (test_directory / 'run' / 'two_building_scenario' / 'scenarioData.js').exist? + FileUtils.rm_rf(test_directory / 'run' / 'two_building_scenario' / 'scenarioData.js') + end + expect((test_directory / 'visualization' / 'input_visualization_feature.html').exist?).to be false + expect((test_directory / 'run' / 'two_building_scenario' / 'feature_comparison.html').exist?).to be false + expect((test_directory / 'run' / 'two_building_scenario' / 'scenarioData.js').exist?).to be false + system("#{call_cli} visualize --scenario #{test_scenario}") + expect((test_directory / 'run' / 'two_building_scenario' / 'feature_comparison.html').exist?).to be true + end + + it 'deletes a scenario', :basic do + expect((test_directory / 'run' / 'two_building_create_bar' / '2' / 'data_point_out.json').exist?).to be true + bar_scenario = test_directory / 'two_building_create_bar.csv' + system("#{call_cli} delete --scenario #{bar_scenario}") + expect((test_directory / 'run' / 'two_building_create_bar' / '2' / 'data_point_out.json').exist?).to be false + end + end + + context 'Run and work with a small GEB simulation' do + before :all do + delete_directory_or_file(test_directory) + system("#{call_cli} create --project-folder #{test_directory}") + delete_directory_or_file(test_directory_res) + system("#{call_cli} create --project-folder #{test_directory_res} --combined") + end + + it 'runs a chilled water scenario with residential and commercial buildings', :GEB do # Use a ScenarioFile with only 2 buildings to reduce test time system("cp #{spec_dir / 'spec_files' / 'two_building_res_chilled_water_scenario.csv'} #{test_scenario_chilled}") # Include the chilled water mapper file @@ -330,7 +507,7 @@ def select_measures(test_dir, measure_name_list, workflow = 'base_workflow.osw', expect((test_directory_res / 'run' / 'two_building_chilled' / '16' / 'finished.job').exist?).to be true end - it 'runs a peak-hours MEL reduction scenario with residential and commercial buildings' do + it 'runs a peak-hours MEL reduction scenario with residential and commercial buildings', :GEB do # Use a ScenarioFile with only 2 buildings to reduce test time system("cp #{spec_dir / 'spec_files' / 'two_building_res_peak_hours_mel_reduction.csv'} #{test_scenario_mels_reduction}") # Include the MEL reduction mapper file @@ -346,7 +523,7 @@ def select_measures(test_dir, measure_name_list, workflow = 'base_workflow.osw', expect((test_directory_res / 'run' / 'two_building_mels_reduction' / '16' / 'finished.job').exist?).to be true end - it 'runs a peak-hours thermostat adjustment scenario with residential and commercial buildings' do + it 'runs a peak-hours thermostat adjustment scenario with residential and commercial buildings', :GEB do # Use a ScenarioFile with only 2 buildings to reduce test time system("cp #{spec_dir / 'spec_files' / 'two_building_res_stat_adjustment.csv'} #{test_scenario_stat_adjustment}") # Include the thermostat adjustment mapper file @@ -362,7 +539,7 @@ def select_measures(test_dir, measure_name_list, workflow = 'base_workflow.osw', expect((test_directory_res / 'run' / 'two_building_stat_adjustment' / '16' / 'finished.job').exist?).to be true end - it 'runs a flexible hot water scenario' do + it 'runs a flexible hot water scenario', :GEB do # https://github.com/NREL/openstudio-load-flexibility-measures-gem/tree/master/lib/measures/add_hpwh # Use a ScenarioFile with only 2 buildings to reduce test time system("cp #{spec_dir / 'spec_files' / 'two_building_flexible_hot_water.csv'} #{test_scenario_flexible_hot_water}") @@ -379,7 +556,7 @@ def select_measures(test_dir, measure_name_list, workflow = 'base_workflow.osw', expect((test_directory / 'run' / 'two_building_flexible_hot_water' / '2' / 'finished.job').exist?).to be true end - it 'runs a ice-storage scenario' do + it 'runs a ice-storage scenario', :GEB do # https://github.com/NREL/openstudio-load-flexibility-measures-gem/tree/master/lib/measures/add_central_ice_storage # Use a ScenarioFile with only 2 buildings to reduce test time system("cp #{spec_dir / 'spec_files' / 'two_building_thermal_storage_scenario.csv'} #{test_scenario_thermal_storage}") @@ -395,56 +572,101 @@ def select_measures(test_dir, measure_name_list, workflow = 'base_workflow.osw', expect((test_directory / 'run' / 'two_building_thermal_storage' / '1' / 'finished.job').exist?).to be true expect((test_directory / 'run' / 'two_building_thermal_storage' / '12' / 'finished.job').exist?).to be true end + end - it 'runs a 2 building scenario with residential and commercial buildings' do + context 'Run and work with a small residential simulation' do + before :all do + delete_directory_or_file(test_directory_res) + system("#{call_cli} create --project-folder #{test_directory_res} --combined") + delete_directory_or_file(test_directory_res_hpxml) + system("#{call_cli} create --project-folder #{test_directory_res_hpxml} --combined") + end + + it 'runs a 2 building scenario with residential and commercial buildings', :residential do system("cp #{spec_dir / 'spec_files' / 'two_building_res.csv'} #{test_scenario_res}") system("#{call_cli} run --scenario #{test_scenario_res} --feature #{test_feature_res}") expect((test_directory_res / 'run' / 'two_building_res' / '5' / 'finished.job').exist?).to be true expect((test_directory_res / 'run' / 'two_building_res' / '16' / 'finished.job').exist?).to be true end - it 'runs a 2 building scenario using create bar geometry method' do - # Copy create bar specific files - system("cp #{example_dir / 'mappers' / 'CreateBar.rb'} #{test_directory / 'mappers' / 'CreateBar.rb'}") - system("cp #{example_dir / 'mappers' / 'createbar_workflow.osw'} #{test_directory / 'mappers' / 'createbar_workflow.osw'}") - system("cp #{spec_dir / 'spec_files' / 'two_building_create_bar.csv'} #{test_directory / 'two_building_create_bar.csv'}") - system("#{call_cli} run --scenario #{test_directory / 'two_building_create_bar.csv'} --feature #{test_feature}") - expect((test_directory / 'run' / 'two_building_create_bar' / '2' / 'finished.job').exist?).to be true + it 'runs a 2 building residential scenario with an hpxml building', :residential do + system("cp #{spec_dir / 'spec_files' / 'two_building_res_hpxml.csv'} #{test_scenario_res_hpxml}") + system("#{call_cli} run --scenario #{test_scenario_res_hpxml} --feature #{test_feature_res}") + expect((test_directory_res_hpxml / 'run' / 'two_building_res_hpxml' / '16' / 'finished.job').exist?).to be true + expect((test_directory_res_hpxml / 'run' / 'two_building_res_hpxml' / '17' / 'finished.job').exist?).to be true + end + + it 'returns graceful error message when non-US weather file is provided', :residential do + skip('Skipping for GHA CI only. Error message is returned as expected but GHA runner does not see it.') + csv_data = CSV.read(test_weather_file) + original_wmo = csv_data[0][5] # first row, 5th column + # Confirm we're using the correct piece of data + expect(original_wmo).to eq '725280' + # Re-write the weather file using a non-US WMO (Vancouver, BC) + csv_data[0][5] = 718920 + CSV.open(test_weather_file, 'w') do |csv| + csv_data.each do |row| + csv << row + end + end + + # Attempt to run the residential project, expecting a graceful error message to be returned + system("cp #{spec_dir / 'spec_files' / 'two_building_res.csv'} #{test_scenario_res}") + + stdout, stderr, status = Open3.capture3("#{call_cli} run --scenario #{test_scenario_res} --feature #{test_feature_res}") + expect(stderr).to include('This is known to happen when your weather file is from somewhere outside of the United States.') + + csv_data = CSV.read(test_weather_file) + # Put the original WMO back into the weather file + csv_data[0][5] = original_wmo + CSV.open(test_weather_file, 'w') do |csv| + csv_data.each do |row| + csv << row + end + end + # Confirm we have restored the original WMO + expect(CSV.open(test_weather_file, 'r', &:first)[5]).to eq(original_wmo) end - it 'runs a 2 building scenario using floorspace geometry method' do - # Copy floorspace specific files - system("cp #{example_dir / 'mappers' / 'Floorspace.rb'} #{test_directory / 'mappers' / 'Floorspace.rb'}") - system("cp #{example_dir / 'mappers' / 'floorspace_workflow.osw'} #{test_directory / 'mappers' / 'floorspace_workflow.osw'}") - system("cp #{example_dir / 'osm_building' / '7_floorspace.json'} #{test_directory / 'osm_building' / '7_floorspace.json'}") - system("cp #{example_dir / 'osm_building' / '7_floorspace.osm'} #{test_directory / 'osm_building' / '7_floorspace.osm'}") - system("cp #{example_dir / 'example_floorspace_project.json'} #{test_directory / 'example_floorspace_project.json'}") - system("cp #{spec_dir / 'spec_files' / 'two_building_floorspace.csv'} #{test_directory / 'two_building_floorspace.csv'}") - expect((test_directory / 'osm_building' / '7_floorspace.osm').exist?).to be true - system("#{call_cli} run --scenario #{test_directory / 'two_building_floorspace.csv'} --feature #{test_directory / 'example_floorspace_project.json'}") - expect((test_directory / 'run' / 'two_building_floorspace' / '5' / 'finished.job').exist?).to be true - expect((test_directory / 'run' / 'two_building_floorspace' / '7' / 'finished.job').exist?).to be true + it 'validates eui', :residential do + # This test requires the 'runs a 2 building scenario with residential and commercial buildings' be run first + test_validation_file = test_directory_res / 'validation_schema.yaml' + expect { system("#{call_cli} validate --eui #{test_validation_file} --scenario #{test_scenario_res} --feature #{test_feature_res}") } + .to output(a_string_including('is within bounds set by')) + .to_stdout_from_any_process + system("cp #{spec_dir / 'spec_files' / 'out_of_bounds_validation.yaml'} #{test_validate_bounds}") + expect { system("#{call_cli} validate --eui #{test_validate_bounds} --scenario #{test_scenario_res} --feature #{test_feature_res}") } + .to output(a_string_including('kBtu/ft2/yr is greater than the validation maximum')) + .to_stdout_from_any_process + expect { system("#{call_cli} validate --eui #{test_validate_bounds} --scenario #{test_scenario_res} --feature #{test_feature_res}") } + .to output(a_string_including('is less than the validation minimum')) + .to_stdout_from_any_process + expect { system("#{call_cli} validate --eui #{test_validate_bounds} --scenario #{test_scenario_res} --feature #{test_feature_res} --units SI") } + .to output(a_string_including('kWh/m2/yr is less than the validation minimum')) + .to_stdout_from_any_process end + end - it 'runs an ev-charging scenario' do - # copy ev-charging specific files - system("cp #{spec_dir / 'spec_files' / 'two_building_ev_scenario.csv'} #{test_ev_scenario}") - system("#{call_cli} run --scenario #{test_ev_scenario} --feature #{test_feature}") - expect((test_directory / 'run' / 'two_building_ev_scenario' / '5' / 'finished.job').exist?).to be true - expect((test_directory / 'run' / 'two_building_ev_scenario' / '2' / 'finished.job').exist?).to be true + context 'Run and work with a small electric simulation' do + before :all do + delete_directory_or_file(test_directory_elec) + # use this to test both opendss and disco workflows + system("#{call_cli} create --project-folder #{test_directory_elec} --disco") + delete_directory_or_file(test_directory_pv) + system("#{call_cli} create --project-folder #{test_directory_pv} --photovoltaic") end - it 'runs an electrical network scenario' do + it 'runs an electrical network scenario', :electric do system("cp #{spec_dir / 'spec_files' / 'electrical_scenario.csv'} #{test_scenario_elec}") system("#{call_cli} run --scenario #{test_scenario_elec} --feature #{test_feature_elec}") expect((test_directory_elec / 'run' / 'electrical_scenario' / '13' / 'finished.job').exist?).to be true end - it 'runs a PV scenario when called with reopt' do - system("cp #{spec_dir / 'spec_files' / 'REopt_scenario.csv'} #{test_reopt_scenario}") + it 'runs a PV scenario when called with reopt', :electric do + system("cp #{spec_dir / 'spec_files' / 'REopt_scenario.csv'} #{test_scenario_reopt}") # Copy in reopt folder system("cp -R #{spec_dir / 'spec_files' / 'reopt'} #{test_directory_pv / 'reopt'}") - system("#{call_cli} run --scenario #{test_reopt_scenario} --feature #{test_feature_pv}") + system("#{call_cli} run --scenario #{test_scenario_reopt} --feature #{test_feature_pv}") expect((test_directory_pv / 'reopt').exist?).to be true expect((test_directory_pv / 'reopt' / 'base_assumptions.json').exist?).to be true expect((test_directory_pv / 'run' / 'reopt_scenario' / '5' / 'finished.job').exist?).to be true @@ -452,51 +674,7 @@ def select_measures(test_dir, measure_name_list, workflow = 'base_workflow.osw', expect((test_directory_pv / 'run' / 'reopt_scenario' / '3' / 'finished.job').exist?).to be false end - it 'post-processor closes gracefully if given an invalid type' do - # Type is totally random - expect { system("#{call_cli} process --foobar --scenario #{test_scenario} --feature #{test_feature}") } - .to output(a_string_including("unknown argument '--foobar'")) - .to_stderr_from_any_process - # Type is valid, but with extra characters - expect { system("#{call_cli} process --reopt-scenariot --scenario #{test_scenario} --feature #{test_feature}") } - .to output(a_string_including("unknown argument '--reopt-scenariot'")) - .to_stderr_from_any_process - # Type would be valid if not missing characters - expect { system("#{call_cli} process --reopt-scenari --scenario #{test_scenario} --feature #{test_feature}") } - .to output(a_string_including("unknown argument '--reopt-scenari'")) - .to_stderr_from_any_process - end - - it 'post-processor closes gracefully if not given a type' do - expect { system("#{call_cli} process --scenario #{test_scenario} --feature #{test_feature}") } - .to output(a_string_including('No valid process type entered')) - .to_stderr_from_any_process - end - - it 'default post-processes a scenario' do - # This test requires the 'runs a 2 building scenario using default geometry method' be run first - test_scenario_report = test_directory / 'run' / 'two_building_scenario' / 'default_scenario_report.csv' - system("#{call_cli} process --default --scenario #{test_scenario} --feature #{test_feature}") - expect(`wc -l < #{test_scenario_report}`.to_i).to be > 2 - expect((test_directory / 'run' / 'two_building_scenario' / 'process_status.json').exist?).to be true - end - - it 'successfully runs the rnm workflow' do - # This test requires the 'runs a 2 building scenario using default geometry method' be run first - # copy featurefile in dir - rnm_file = 'example_project_with_streets.json' - system("cp #{spec_dir / 'spec_files' / rnm_file} #{test_directory / rnm_file}") - # call rnm - test_rnm_file = test_directory / rnm_file - system("#{call_cli} rnm --scenario #{test_scenario} --feature #{test_rnm_file}") - # check that rnm inputs and outputs were created - expect((test_directory / 'run' / 'two_building_scenario' / 'rnm-us' / 'inputs.zip').exist?).to be true - expect((test_directory / 'run' / 'two_building_scenario' / 'rnm-us' / 'results').exist?).to be true - expect((test_directory / 'run' / 'two_building_scenario' / 'scenario_report_rnm.json').exist?).to be true - expect((test_directory / 'run' / 'two_building_scenario' / 'feature_file_rnm.json').exist?).to be true - end - - it 'successfully gets results from the opendss cli' do + it 'successfully gets results from the opendss cli', :electric do # This test requires the 'runs an electrical network scenario' be run first system("#{call_cli} process --default --scenario #{test_scenario_elec} --feature #{test_feature_elec}") system("#{call_cli} opendss --scenario #{test_scenario_elec} --feature #{test_feature_elec} --start-date 2017/01/15 --start-time 01:00:00 --end-date 2017/01/16 --end-time 00:00:00") @@ -507,24 +685,16 @@ def select_measures(test_dir, measure_name_list, workflow = 'base_workflow.osw', expect((test_directory_elec / 'run' / 'electrical_scenario' / 'opendss' / 'profiles' / 'load_1.csv').exist?).to be true end - it 'successfully runs disco simulation' do + it 'successfully runs disco simulation', :electric do # This test requires the 'runs an electrical network scenario' be run first system("#{call_cli} disco --scenario #{test_scenario_elec} --feature #{test_feature_elec}") expect((test_directory_elec / 'run' / 'electrical_scenario' / 'disco').exist?).to be true end - it 'saves post-process output as a database file' do - # This test requires the 'runs a 2 building scenario using default geometry method' be run first - db_filename = test_directory / 'run' / 'two_building_scenario' / 'default_scenario_report.db' - system("#{call_cli} process --default --with-database --scenario #{test_scenario} --feature #{test_feature}") - expect(`wc -l < #{db_filename}`.to_i).to be > 20 - expect((test_directory / 'run' / 'two_building_scenario' / 'process_status.json').exist?).to be true - end - - it 'reopt post-processes a scenario and visualize' do + it 'reopt post-processes a scenario and visualize', :electric do # This test requires the 'runs a PV scenario when called with reopt' be run first - system("#{call_cli} process --default --scenario #{test_reopt_scenario} --feature #{test_feature_pv}") - system("#{call_cli} process --reopt-scenario --scenario #{test_reopt_scenario} --feature #{test_feature_pv}") + system("#{call_cli} process --default --scenario #{test_scenario_reopt} --feature #{test_feature_pv}") + system("#{call_cli} process --reopt-scenario --scenario #{test_scenario_reopt} --feature #{test_feature_pv}") expect((test_directory_pv / 'run' / 'reopt_scenario' / 'scenario_optimization.json').exist?).to be true expect((test_directory_pv / 'run' / 'reopt_scenario' / 'process_status.json').exist?).to be true # and visualize @@ -532,100 +702,41 @@ def select_measures(test_dir, measure_name_list, workflow = 'base_workflow.osw', expect((test_directory_pv / 'run' / 'scenario_comparison.html').exist?).to be true end - it 'reopt post-processes a scenario with specified scenario assumptions file' do + it 'reopt post-processes a scenario with specified scenario assumptions file', :electric do # This test requires the 'runs a PV scenario when called with reopt' be run first - system("#{call_cli} process --default --scenario #{test_reopt_scenario} --feature #{test_feature_pv}") - expect { system("#{call_cli} process --reopt-scenario -a #{test_reopt_scenario_assumptions_file} --scenario #{test_reopt_scenario} --feature #{test_feature_pv}") } + system("#{call_cli} process --default --scenario #{test_scenario_reopt} --feature #{test_feature_pv}") + expect { system("#{call_cli} process --reopt-scenario -a #{test_reopt_scenario_assumptions_file} --scenario #{test_scenario_reopt} --feature #{test_feature_pv}") } .to output(a_string_including('multiPV_assumptions.json')) .to_stdout_from_any_process expect((test_directory_pv / 'run' / 'reopt_scenario' / 'scenario_optimization.json').exist?).to be true expect((test_directory_pv / 'run' / 'reopt_scenario' / 'process_status.json').exist?).to be true end - it 'reopt post-processes a scenario with resilience reporting' do + it 'reopt post-processes a scenario with resilience reporting', :electric do # This test requires the 'runs a PV scenario when called with reopt' be run first - system("#{call_cli} process --default --scenario #{test_reopt_scenario} --feature #{test_feature_pv}") - system("#{call_cli} process --reopt-scenario --reopt-resilience --scenario #{test_reopt_scenario} --feature #{test_feature_pv}") + system("#{call_cli} process --default --scenario #{test_scenario_reopt} --feature #{test_feature_pv}") + system("#{call_cli} process --reopt-scenario --reopt-resilience --scenario #{test_scenario_reopt} --feature #{test_feature_pv}") expect((test_directory_pv / 'run' / 'reopt_scenario' / 'scenario_optimization.json').exist?).to be true expect((test_directory_pv / 'run' / 'reopt_scenario' / 'process_status.json').exist?).to be true # path_to_resilience_report_file = test_directory_pv / 'run' / 'reopt_scenario' / 'reopt' / 'scenario_report_reopt_scenario_reopt_run_resilience.json' end - it 'reopt post-processes each feature and visualize' do + it 'reopt post-processes each feature and visualize', :electric do # This test requires the 'runs a PV scenario when called with reopt' be run first - system("#{call_cli} process --default --scenario #{test_reopt_scenario} --feature #{test_feature_pv}") - system("#{call_cli} process --reopt-feature --scenario #{test_reopt_scenario} --feature #{test_feature_pv}") + system("#{call_cli} process --default --scenario #{test_scenario_reopt} --feature #{test_feature_pv}") + system("#{call_cli} process --reopt-feature --scenario #{test_scenario_reopt} --feature #{test_feature_pv}") expect((test_directory_pv / 'run' / 'reopt_scenario' / 'feature_optimization.csv').exist?).to be true # and visualize - system("#{call_cli} visualize --scenario #{test_reopt_scenario}") + system("#{call_cli} visualize --scenario #{test_scenario_reopt}") expect((test_directory_pv / 'run' / 'reopt_scenario' / 'feature_comparison.html').exist?).to be true end - it 'opendss post-processes a scenario' do + it 'opendss post-processes a scenario', :electric do # This test requires the 'successfully gets results from the opendss cli' be run first expect((test_directory_elec / 'run' / 'electrical_scenario' / '2' / 'feature_reports' / 'default_feature_report_opendss.csv').exist?).to be false system("#{call_cli} process --opendss --scenario #{test_scenario_elec} --feature #{test_feature_elec}") expect((test_directory_elec / 'run' / 'electrical_scenario' / '2' / 'feature_reports' / 'default_feature_report_opendss.csv').exist?).to be true expect((test_directory_elec / 'run' / 'electrical_scenario' / 'process_status.json').exist?).to be true end - - it 'creates scenario visualization for default post processor' do - # This test requires the 'runs a 2 building scenario using default geometry method' be run first - # visualizing via the FeatureFile will throw error to stdout (but not crash) if a scenario that uses those features isn't processed first. - system("#{call_cli} process --default --scenario #{test_scenario} --feature #{test_feature}") - system("#{call_cli} process --default --scenario #{test_ev_scenario} --feature #{test_feature}") - system("#{call_cli} visualize --feature #{test_feature}") - expect((test_directory / 'run' / 'scenario_comparison.html').exist?).to be true - end - - it 'creates feature visualization for default post processor' do - # This test requires the 'runs a 2 building scenario using default geometry method' be run first - system("#{call_cli} process --default --scenario #{test_scenario} --feature #{test_feature}") - system("#{call_cli} visualize --scenario #{test_scenario}") - expect((test_directory / 'run' / 'two_building_scenario' / 'feature_comparison.html').exist?).to be true - end - - it 'ensures viz files are in the project directory' do - # This test requires the 'runs a 2 building scenario using default geometry method' be run first - if (test_directory / 'visualization' / 'input_visualization_feature.html').exist? - FileUtils.rm_rf(test_directory / 'visualization' / 'input_visualization_feature.html') - end - if (test_directory / 'run' / 'two_building_scenario' / 'feature_comparison.html').exist? - FileUtils.rm_rf(test_directory / 'run' / 'two_building_scenario' / 'feature_comparison.html') - end - if (test_directory / 'run' / 'two_building_scenario' / 'scenarioData.js').exist? - FileUtils.rm_rf(test_directory / 'run' / 'two_building_scenario' / 'scenarioData.js') - end - expect((test_directory / 'visualization' / 'input_visualization_feature.html').exist?).to be false - expect((test_directory / 'run' / 'two_building_scenario' / 'feature_comparison.html').exist?).to be false - expect((test_directory / 'run' / 'two_building_scenario' / 'scenarioData.js').exist?).to be false - system("#{call_cli} visualize --scenario #{test_scenario}") - expect((test_directory / 'run' / 'two_building_scenario' / 'feature_comparison.html').exist?).to be true - end - - it 'validates eui' do - # This test requires the 'runs a 2 building scenario with residential and commercial buildings' be run first - test_validation_file = test_directory_res / 'validation_schema.yaml' - expect { system("#{call_cli} validate --eui #{test_validation_file} --scenario #{test_scenario_res} --feature #{test_feature_res}") } - .to output(a_string_including('is within bounds set by')) - .to_stdout_from_any_process - system("cp #{spec_dir / 'spec_files' / 'out_of_bounds_validation.yaml'} #{test_validate_bounds}") - expect { system("#{call_cli} validate --eui #{test_validate_bounds} --scenario #{test_scenario_res} --feature #{test_feature_res}") } - .to output(a_string_including('kBtu/ft2/yr is greater than the validation maximum')) - .to_stdout_from_any_process - expect { system("#{call_cli} validate --eui #{test_validate_bounds} --scenario #{test_scenario_res} --feature #{test_feature_res}") } - .to output(a_string_including('is less than the validation minimum')) - .to_stdout_from_any_process - expect { system("#{call_cli} validate --eui #{test_validate_bounds} --scenario #{test_scenario_res} --feature #{test_feature_res} --units SI") } - .to output(a_string_including('kWh/m2/yr is less than the validation minimum')) - .to_stdout_from_any_process - end - - it 'deletes a scenario' do - expect((test_directory / 'run' / 'two_building_create_bar' / '2' / 'data_point_out.json').exist?).to be true - bar_scenario = test_directory / 'two_building_create_bar.csv' - system("#{call_cli} delete --scenario #{bar_scenario}") - expect((test_directory / 'run' / 'two_building_create_bar' / '2' / 'data_point_out.json').exist?).to be false - end end end diff --git a/uo_cli.gemspec b/uo_cli.gemspec index ea8e1693..12590b6b 100644 --- a/uo_cli.gemspec +++ b/uo_cli.gemspec @@ -3,7 +3,7 @@ require_relative 'lib/uo_cli/version' Gem::Specification.new do |spec| spec.name = 'urbanopt-cli' spec.version = URBANopt::CLI::VERSION - spec.authors = ['Nathan Moore'] + spec.authors = ['NREL URBANopt team'] spec.email = ['nathan.moore@nrel.gov'] spec.license = 'Nonstandard' @@ -34,11 +34,11 @@ Gem::Specification.new do |spec| # use specific versions of urbanopt and openstudio dependencies while under heavy development spec.add_runtime_dependency 'optimist', '~> 3' - spec.add_runtime_dependency 'urbanopt-geojson', '~> 0.10.0' - spec.add_runtime_dependency 'urbanopt-reopt', '~> 0.10.0' - spec.add_runtime_dependency 'urbanopt-reporting', '~> 0.8.0' - spec.add_runtime_dependency 'urbanopt-rnm-us', '~> 0.6.0' - spec.add_runtime_dependency 'urbanopt-scenario', '~> 0.10.0' + spec.add_runtime_dependency 'urbanopt-geojson', '~> 0.11.1' + spec.add_runtime_dependency 'urbanopt-reopt', '~> 0.11.0' + spec.add_runtime_dependency 'urbanopt-reporting', '~> 0.9.1' + spec.add_runtime_dependency 'urbanopt-rnm-us', '~> 0.7.0' + spec.add_runtime_dependency 'urbanopt-scenario', '~> 0.11.0' spec.add_development_dependency 'bundler', '~> 2.1' spec.add_development_dependency 'rake', '~> 13.0' @@ -46,6 +46,4 @@ Gem::Specification.new do |spec| spec.add_development_dependency 'rubocop', '~> 1.15.0' spec.add_development_dependency 'rubocop-checkstyle_formatter', '~> 0.4.0' spec.add_development_dependency 'rubocop-performance', '~> 1.11.3' - spec.add_development_dependency 'simplecov', '~> 0.18.2' - spec.add_development_dependency 'simplecov-lcov', '~> 0.8.0' end